diff --git a/api/client/client.go b/api/client/client.go index 055c57723a295..950a46d214e4d 100644 --- a/api/client/client.go +++ b/api/client/client.go @@ -2488,7 +2488,7 @@ func (c *Client) StreamSessionEvents(ctx context.Context, sessionID string, star oneOf, err := stream.Recv() if err != nil { if err != io.EOF { - e <- trace.Wrap(trace.Wrap(err)) + e <- trace.Wrap(err) } else { close(ch) } @@ -2498,7 +2498,7 @@ func (c *Client) StreamSessionEvents(ctx context.Context, sessionID string, star event, err := events.FromOneOf(*oneOf) if err != nil { - e <- trace.Wrap(trace.Wrap(err)) + e <- trace.Wrap(err) break outer } @@ -2593,7 +2593,7 @@ func (c *Client) StreamUnstructuredSessionEvents(ctx context.Context, sessionID // on the client grpc side. c.streamUnstructuredSessionEventsFallback(ctx, sessionID, startIndex, ch, e) } else { - e <- trace.Wrap(trace.Wrap(err)) + e <- trace.Wrap(err) } return ch, e } @@ -2616,7 +2616,7 @@ func (c *Client) StreamUnstructuredSessionEvents(ctx context.Context, sessionID go c.streamUnstructuredSessionEventsFallback(ctx, sessionID, startIndex, ch, e) return } - e <- trace.Wrap(trace.Wrap(err)) + e <- trace.Wrap(err) } else { close(ch) } @@ -2663,7 +2663,7 @@ func (c *Client) streamUnstructuredSessionEventsFallback(ctx context.Context, se oneOf, err := stream.Recv() if err != nil { if err != io.EOF { - e <- trace.Wrap(trace.Wrap(err)) + e <- trace.Wrap(err) } else { close(ch) } @@ -2673,7 +2673,7 @@ func (c *Client) streamUnstructuredSessionEventsFallback(ctx context.Context, se event, err := events.FromOneOf(*oneOf) if err != nil { - e <- trace.Wrap(trace.Wrap(err)) + e <- trace.Wrap(err) return } @@ -3753,52 +3753,41 @@ type ResourcePage[T types.ResourceWithLabels] struct { NextKey string } -// getResourceFromProtoPage extracts the resource from the PaginatedResource returned -// from the rpc ListUnifiedResources -func getResourceFromProtoPage(resource *proto.PaginatedResource) (types.ResourceWithLabels, error) { - var out types.ResourceWithLabels +// convertEnrichedResource extracts the resource and any enriched information from the +// PaginatedResource returned from the rpc ListUnifiedResources. +func convertEnrichedResource(resource *proto.PaginatedResource) (*types.EnrichedResource, error) { if r := resource.GetNode(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r, Logins: resource.Logins}, nil } else if r := resource.GetDatabaseServer(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else if r := resource.GetDatabaseService(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else if r := resource.GetAppServerOrSAMLIdPServiceProvider(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else if r := resource.GetWindowsDesktop(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else if r := resource.GetWindowsDesktopService(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else if r := resource.GetKubeCluster(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else if r := resource.GetKubernetesServer(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else if r := resource.GetUserGroup(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else if r := resource.GetAppServer(); r != nil { - out = r - return out, nil + return &types.EnrichedResource{ResourceWithLabels: r}, nil } else { return nil, trace.BadParameter("received unsupported resource %T", resource.Resource) } } -// ListUnifiedResourcePage is a helper for getting a single page of unified resources that match the provided request. -func ListUnifiedResourcePage(ctx context.Context, clt ListUnifiedResourcesClient, req *proto.ListUnifiedResourcesRequest) (ResourcePage[types.ResourceWithLabels], error) { - var out ResourcePage[types.ResourceWithLabels] +// GetUnifiedResourcePage is a helper for getting a single page of unified resources that match the provided request. +func GetUnifiedResourcePage(ctx context.Context, clt ListUnifiedResourcesClient, req *proto.ListUnifiedResourcesRequest) ([]*types.EnrichedResource, string, error) { + var out []*types.EnrichedResource // Set the limit to the default size if one was not provided within // an acceptable range. - if req.Limit == 0 || req.Limit > int32(defaults.DefaultChunkSize) { + if req.Limit <= 0 || req.Limit > int32(defaults.DefaultChunkSize) { req.Limit = int32(defaults.DefaultChunkSize) } @@ -3810,24 +3799,87 @@ func ListUnifiedResourcePage(ctx context.Context, clt ListUnifiedResourcesClient req.Limit /= 2 // This is an extremely unlikely scenario, but better to cover it anyways. if req.Limit == 0 { - return out, trace.Wrap(trace.Wrap(err), "resource is too large to retrieve") + return nil, "", trace.Wrap(err, "resource is too large to retrieve") } continue } - return out, trace.Wrap(err) + return nil, "", trace.Wrap(err) } for _, respResource := range resp.Resources { - resource, err := getResourceFromProtoPage(respResource) + resource, err := convertEnrichedResource(respResource) if err != nil { - return out, trace.Wrap(err) + return nil, "", trace.Wrap(err) + } + out = append(out, resource) + } + + return out, resp.NextKey, nil + } +} + +// GetEnrichedResourcePage is a helper for getting a single page of enriched resources. +func GetEnrichedResourcePage(ctx context.Context, clt GetResourcesClient, req *proto.ListResourcesRequest) (ResourcePage[*types.EnrichedResource], error) { + var out ResourcePage[*types.EnrichedResource] + + // Set the limit to the default size if one was not provided within + // an acceptable range. + if req.Limit <= 0 || req.Limit > int32(defaults.DefaultChunkSize) { + req.Limit = int32(defaults.DefaultChunkSize) + } + + for { + resp, err := clt.GetResources(ctx, req) + if err != nil { + if trace.IsLimitExceeded(err) { + // Cut chunkSize in half if gRPC max message size is exceeded. + req.Limit /= 2 + // This is an extremely unlikely scenario, but better to cover it anyways. + if req.Limit == 0 { + return out, trace.Wrap(err, "resource is too large to retrieve") + } + + continue } - out.Resources = append(out.Resources, resource) + + return out, trace.Wrap(err) + } + + for _, respResource := range resp.Resources { + var resource types.ResourceWithLabels + switch req.ResourceType { + case types.KindDatabaseServer: + resource = respResource.GetDatabaseServer() + case types.KindDatabaseService: + resource = respResource.GetDatabaseService() + case types.KindAppServer: + resource = respResource.GetAppServer() + case types.KindNode: + resource = respResource.GetNode() + case types.KindWindowsDesktop: + resource = respResource.GetWindowsDesktop() + case types.KindWindowsDesktopService: + resource = respResource.GetWindowsDesktopService() + case types.KindKubernetesCluster: + resource = respResource.GetKubeCluster() + case types.KindKubeServer: + resource = respResource.GetKubernetesServer() + case types.KindUserGroup: + resource = respResource.GetUserGroup() + case types.KindAppOrSAMLIdPServiceProvider: + resource = respResource.GetAppServerOrSAMLIdPServiceProvider() + default: + out.Resources = nil + return out, trace.NotImplemented("resource type %s does not support pagination", req.ResourceType) + } + + out.Resources = append(out.Resources, &types.EnrichedResource{ResourceWithLabels: resource, Logins: respResource.Logins}) } out.NextKey = resp.NextKey + out.Total = int(resp.TotalCount) return out, nil } @@ -3839,7 +3891,7 @@ func GetResourcePage[T types.ResourceWithLabels](ctx context.Context, clt GetRes // Set the limit to the default size if one was not provided within // an acceptable range. - if req.Limit == 0 || req.Limit > int32(defaults.DefaultChunkSize) { + if req.Limit <= 0 || req.Limit > int32(defaults.DefaultChunkSize) { req.Limit = int32(defaults.DefaultChunkSize) } @@ -3851,7 +3903,7 @@ func GetResourcePage[T types.ResourceWithLabels](ctx context.Context, clt GetRes req.Limit /= 2 // This is an extremely unlikely scenario, but better to cover it anyways. if req.Limit == 0 { - return out, trace.Wrap(trace.Wrap(err), "resource is too large to retrieve") + return out, trace.Wrap(err, "resource is too large to retrieve") } continue @@ -3964,7 +4016,7 @@ func GetResourcesWithFilters(ctx context.Context, clt ListResourcesClient, req p chunkSize = chunkSize / 2 // This is an extremely unlikely scenario, but better to cover it anyways. if chunkSize == 0 { - return nil, trace.Wrap(trace.Wrap(err), "resource is too large to retrieve") + return nil, trace.Wrap(err, "resource is too large to retrieve") } continue @@ -4015,7 +4067,7 @@ func GetKubernetesResourcesWithFilters(ctx context.Context, clt kubeproto.KubeSe chunkSize = chunkSize / 2 // This is an extremely unlikely scenario, but better to cover it anyways. if chunkSize == 0 { - return nil, trace.Wrap(trace.Wrap(err), "resource is too large to retrieve") + return nil, trace.Wrap(err, "resource is too large to retrieve") } continue } diff --git a/api/client/proto/authservice.pb.go b/api/client/proto/authservice.pb.go index b653d659e2586..51d247d1cc865 100644 --- a/api/client/proto/authservice.pb.go +++ b/api/client/proto/authservice.pb.go @@ -10966,10 +10966,12 @@ type PaginatedResource struct { // *PaginatedResource_DatabaseService // *PaginatedResource_UserGroup // *PaginatedResource_AppServerOrSAMLIdPServiceProvider - Resource isPaginatedResource_Resource `protobuf_oneof:"resource"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Resource isPaginatedResource_Resource `protobuf_oneof:"resource"` + // Logins allowed for the included resource. Only to be populated for SSH and Desktops. + Logins []string `protobuf:"bytes,13,rep,name=Logins,proto3" json:"logins,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *PaginatedResource) Reset() { *m = PaginatedResource{} } @@ -11130,6 +11132,13 @@ func (m *PaginatedResource) GetAppServerOrSAMLIdPServiceProvider() *types.AppSer return nil } +func (m *PaginatedResource) GetLogins() []string { + if m != nil { + return m.Logins + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*PaginatedResource) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -11175,7 +11184,10 @@ type ListUnifiedResourcesRequest struct { UsePreviewAsRoles bool `protobuf:"varint,10,opt,name=UsePreviewAsRoles,proto3" json:"use_preview_as_roles,omitempty"` // PinnedOnly indicates that the request will pull only the pinned resources // of the requesting user - PinnedOnly bool `protobuf:"varint,11,opt,name=PinnedOnly,proto3" json:"pinned_only,omitempty"` + PinnedOnly bool `protobuf:"varint,11,opt,name=PinnedOnly,proto3" json:"pinned_only,omitempty"` + // IncludeLogins indicates that the response should include a users allowed logins + // for all returned resources. + IncludeLogins bool `protobuf:"varint,12,opt,name=IncludeLogins,proto3" json:"include_logins,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -11291,6 +11303,13 @@ func (m *ListUnifiedResourcesRequest) GetPinnedOnly() bool { return false } +func (m *ListUnifiedResourcesRequest) GetIncludeLogins() bool { + if m != nil { + return m.IncludeLogins + } + return false +} + // ListUnifiedResourceResponse response of ListUnifiedResources. type ListUnifiedResourcesResponse struct { // Resources is a list of resource. @@ -11391,7 +11410,10 @@ type ListResourcesRequest struct { UseSearchAsRoles bool `protobuf:"varint,11,opt,name=UseSearchAsRoles,proto3" json:"use_search_as_roles,omitempty"` // UsePreviewAsRoles indicates that the response should include all resources // the caller would be able to access with their preview_as_roles - UsePreviewAsRoles bool `protobuf:"varint,12,opt,name=UsePreviewAsRoles,proto3" json:"use_preview_as_roles,omitempty"` + UsePreviewAsRoles bool `protobuf:"varint,12,opt,name=UsePreviewAsRoles,proto3" json:"use_preview_as_roles,omitempty"` + // IncludeLogins indicates that the response should include a users allowed logins + // for all returned resources. + IncludeLogins bool `protobuf:"varint,13,opt,name=IncludeLogins,proto3" json:"include_logins,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -11514,6 +11536,13 @@ func (m *ListResourcesRequest) GetUsePreviewAsRoles() bool { return false } +func (m *ListResourcesRequest) GetIncludeLogins() bool { + if m != nil { + return m.IncludeLogins + } + return false +} + // GetSSHTargetsRequest gets all servers that might match an equivalent ssh dial request. type GetSSHTargetsRequest struct { // Host is the target host as would be sent to the proxy during a dial request. @@ -15476,878 +15505,881 @@ func init() { } var fileDescriptor_0ffcffcda38ae159 = []byte{ - // 13934 bytes of a gzipped FileDescriptorProto + // 13981 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7d, 0x5b, 0x6c, 0x5c, 0x49, 0x76, 0x18, 0xbb, 0xf9, 0x3e, 0x7c, 0xb5, 0x8a, 0xa4, 0x48, 0xb5, 0x28, 0xb5, 0x74, 0x35, 0xd2, 0x68, 0xb4, 0x3b, 0x7a, 0x50, 0x33, 0xb3, 0xf3, 0x9e, 0xe9, 0x6e, 0x52, 0x24, 0x25, 0x8a, 0xec, 0xb9, 0x4d, 0x52, 0x33, 0x3b, 0xe3, 0xed, 0xbd, 0xec, 0x2e, 0x91, 0x37, 0x6a, 0xde, 0xdb, 0x7b, - 0xef, 0x6d, 0x3d, 0xd6, 0xb1, 0x13, 0xdb, 0x89, 0x91, 0x9f, 0x38, 0x0e, 0x60, 0x07, 0x76, 0x12, - 0xc0, 0x09, 0x92, 0x00, 0x49, 0x80, 0x04, 0xfe, 0x09, 0xfc, 0x91, 0xaf, 0x20, 0x01, 0xb2, 0x09, - 0x60, 0x20, 0x80, 0x9d, 0x9f, 0x7c, 0xd0, 0xf6, 0x02, 0xf9, 0x08, 0xe1, 0x7c, 0x04, 0x41, 0x12, + 0xef, 0x6d, 0x3d, 0xd6, 0xb1, 0x13, 0xdb, 0x89, 0x93, 0x9f, 0x38, 0x0e, 0x60, 0x07, 0x76, 0x12, + 0xc0, 0x09, 0x92, 0x00, 0x49, 0x80, 0x04, 0xfe, 0x09, 0xfc, 0x91, 0xaf, 0x00, 0x01, 0xb2, 0x09, + 0x60, 0x20, 0x80, 0x9d, 0x9f, 0x7c, 0xd0, 0xf6, 0x02, 0xf9, 0x30, 0xe1, 0x7c, 0x04, 0x41, 0x02, 0x64, 0x81, 0x00, 0x41, 0x3d, 0x6f, 0xd5, 0x7d, 0x75, 0x53, 0xd2, 0x6c, 0xf2, 0x23, 0xb1, 0xab, - 0xce, 0x39, 0x55, 0x75, 0xea, 0x71, 0x4f, 0x9d, 0x3a, 0x0f, 0xb8, 0x19, 0xe0, 0x36, 0xee, 0xb8, - 0x5e, 0x70, 0xab, 0x8d, 0x0f, 0xac, 0xe6, 0x8b, 0x5b, 0xcd, 0xb6, 0x8d, 0x9d, 0xe0, 0x56, 0xc7, - 0x73, 0x03, 0xf7, 0x96, 0xd5, 0x0d, 0x0e, 0x7d, 0xec, 0x3d, 0xb5, 0x9b, 0xf8, 0x26, 0x2d, 0x41, - 0xc3, 0xf4, 0xbf, 0xe2, 0xdc, 0x81, 0x7b, 0xe0, 0x32, 0x18, 0xf2, 0x17, 0xab, 0x2c, 0x9e, 0x3f, - 0x70, 0xdd, 0x83, 0x36, 0x66, 0xc8, 0xfb, 0xdd, 0xc7, 0xb7, 0xf0, 0x51, 0x27, 0x78, 0xc1, 0x2b, - 0x4b, 0xd1, 0xca, 0xc0, 0x3e, 0xc2, 0x7e, 0x60, 0x1d, 0x75, 0x38, 0xc0, 0x5b, 0xb2, 0x2b, 0x56, - 0x10, 0x90, 0x9a, 0xc0, 0x76, 0x9d, 0x5b, 0x4f, 0xef, 0xa8, 0x3f, 0x39, 0xe8, 0xf5, 0xcc, 0x5e, - 0x37, 0xb1, 0x17, 0xf8, 0x7d, 0x41, 0xe2, 0xa7, 0xd8, 0x09, 0x62, 0xcd, 0x73, 0xc8, 0xe0, 0x45, - 0x07, 0xfb, 0x0c, 0x44, 0xfc, 0xc7, 0x41, 0x2f, 0x27, 0x83, 0xd2, 0x7f, 0x39, 0xc8, 0xdb, 0xc9, - 0x20, 0xcf, 0xf0, 0x3e, 0xe1, 0xa9, 0x23, 0xff, 0xe8, 0x01, 0xee, 0x59, 0x9d, 0x0e, 0xf6, 0xc2, - 0x3f, 0x38, 0xf8, 0x39, 0x09, 0x7e, 0xf4, 0xd8, 0x22, 0x2c, 0x3a, 0x7a, 0x6c, 0xc5, 0x86, 0xd1, - 0xf5, 0xad, 0x03, 0xcc, 0xbb, 0xff, 0xf4, 0x8e, 0xfa, 0x93, 0x81, 0x1a, 0xbf, 0x97, 0x83, 0xe1, - 0x47, 0x56, 0xd0, 0x3c, 0x44, 0x9f, 0xc1, 0xf0, 0x03, 0xdb, 0x69, 0xf9, 0x8b, 0xb9, 0x4b, 0x83, - 0xd7, 0x27, 0x96, 0x0b, 0x37, 0xd9, 0x50, 0x68, 0x25, 0xa9, 0xa8, 0x2c, 0xfc, 0xe4, 0xb8, 0x34, - 0x70, 0x72, 0x5c, 0x9a, 0x79, 0x42, 0xc0, 0xbe, 0xeb, 0x1e, 0xd9, 0x01, 0x9d, 0x5b, 0x93, 0xe1, - 0xa1, 0x5d, 0x98, 0x2d, 0xb7, 0xdb, 0xee, 0xb3, 0x9a, 0xe5, 0x05, 0xb6, 0xd5, 0xae, 0x77, 0x9b, - 0x4d, 0xec, 0xfb, 0x8b, 0xf9, 0x4b, 0xb9, 0xeb, 0x63, 0x95, 0x2b, 0x27, 0xc7, 0xa5, 0x92, 0x45, - 0xaa, 0x1b, 0x1d, 0x56, 0xdf, 0xf0, 0x19, 0x80, 0x42, 0x28, 0x09, 0xdf, 0xf8, 0xf3, 0x61, 0x28, - 0xac, 0xbb, 0x7e, 0x50, 0x25, 0x33, 0x6a, 0xe2, 0x1f, 0x75, 0xb1, 0x1f, 0xa0, 0x2b, 0x30, 0x42, - 0xca, 0x36, 0x56, 0x16, 0x73, 0x97, 0x72, 0xd7, 0xc7, 0x2b, 0x13, 0x27, 0xc7, 0xa5, 0xd1, 0x43, - 0xd7, 0x0f, 0x1a, 0x76, 0xcb, 0xe4, 0x55, 0xe8, 0x2d, 0x18, 0xdb, 0x72, 0x5b, 0x78, 0xcb, 0x3a, - 0xc2, 0xb4, 0x17, 0xe3, 0x95, 0xa9, 0x93, 0xe3, 0xd2, 0xb8, 0xe3, 0xb6, 0x70, 0xc3, 0xb1, 0x8e, - 0xb0, 0x29, 0xab, 0xd1, 0x1e, 0x0c, 0x99, 0x6e, 0x1b, 0x2f, 0x0e, 0x52, 0xb0, 0xca, 0xc9, 0x71, - 0x69, 0xc8, 0x73, 0xdb, 0xf8, 0x67, 0xc7, 0xa5, 0xf7, 0x0e, 0xec, 0xe0, 0xb0, 0xbb, 0x7f, 0xb3, - 0xe9, 0x1e, 0xdd, 0x3a, 0xf0, 0xac, 0xa7, 0x36, 0x5b, 0x84, 0x56, 0xfb, 0x56, 0xb8, 0x54, 0x3b, - 0x36, 0x9f, 0xf7, 0xfa, 0x0b, 0x3f, 0xc0, 0x47, 0x84, 0x92, 0x49, 0xe9, 0xa1, 0x47, 0x30, 0x57, - 0x6e, 0xb5, 0x6c, 0x86, 0x51, 0xf3, 0x6c, 0xa7, 0x69, 0x77, 0xac, 0xb6, 0xbf, 0x38, 0x74, 0x69, - 0xf0, 0xfa, 0x38, 0x67, 0x8a, 0xac, 0x6f, 0x74, 0x24, 0x80, 0xc2, 0x94, 0x44, 0x02, 0xe8, 0x2e, - 0x8c, 0xad, 0x6c, 0xd5, 0x49, 0xdf, 0xfd, 0xc5, 0x61, 0x4a, 0x6c, 0xe1, 0xe4, 0xb8, 0x34, 0xdb, - 0x72, 0x7c, 0x3a, 0x34, 0x95, 0x80, 0x04, 0x44, 0xef, 0xc1, 0x64, 0xad, 0xbb, 0xdf, 0xb6, 0x9b, - 0x3b, 0x9b, 0xf5, 0x07, 0xf8, 0xc5, 0xe2, 0xc8, 0xa5, 0xdc, 0xf5, 0xc9, 0x0a, 0x3a, 0x39, 0x2e, - 0x4d, 0x77, 0x68, 0x79, 0x23, 0x68, 0xfb, 0x8d, 0x27, 0xf8, 0x85, 0xa9, 0xc1, 0x85, 0x78, 0xf5, - 0xfa, 0x3a, 0xc1, 0x1b, 0x8d, 0xe1, 0xf9, 0xfe, 0xa1, 0x8a, 0xc7, 0xe0, 0xd0, 0x2d, 0x00, 0x13, - 0x1f, 0xb9, 0x01, 0x2e, 0xb7, 0x5a, 0xde, 0xe2, 0x18, 0xe5, 0xed, 0xcc, 0xc9, 0x71, 0x69, 0xc2, - 0xa3, 0xa5, 0x0d, 0xab, 0xd5, 0xf2, 0x4c, 0x05, 0x04, 0x55, 0x61, 0xcc, 0x74, 0x19, 0x83, 0x17, - 0xc7, 0x2f, 0xe5, 0xae, 0x4f, 0x2c, 0xcf, 0xf0, 0x65, 0x28, 0x8a, 0x2b, 0x67, 0x4f, 0x8e, 0x4b, - 0xc8, 0xe3, 0xbf, 0xd4, 0x51, 0x0a, 0x08, 0x54, 0x82, 0xd1, 0x2d, 0xb7, 0x6a, 0x35, 0x0f, 0xf1, - 0x22, 0xd0, 0xb5, 0x37, 0x7c, 0x72, 0x5c, 0xca, 0xbd, 0x6d, 0x8a, 0x52, 0xf4, 0x14, 0x26, 0xc2, - 0x89, 0xf2, 0x17, 0x27, 0x28, 0xfb, 0x76, 0x4e, 0x8e, 0x4b, 0x67, 0x7d, 0x5a, 0xdc, 0x20, 0x53, - 0xaf, 0x70, 0xf0, 0x15, 0x56, 0x81, 0xda, 0xd0, 0xfd, 0xa1, 0xb1, 0xc9, 0xc2, 0x94, 0x79, 0x61, - 0xd7, 0xf1, 0x03, 0x6b, 0xbf, 0x8d, 0xc3, 0xaa, 0xb2, 0xef, 0x63, 0x8f, 0xd0, 0xdb, 0x58, 0x31, - 0xfe, 0x4f, 0x0e, 0xd0, 0x76, 0x07, 0x3b, 0xf5, 0xfa, 0x3a, 0x59, 0xf1, 0x62, 0xc1, 0x7f, 0x17, - 0xc6, 0x19, 0x6b, 0x09, 0xff, 0xf3, 0x94, 0xff, 0xd3, 0x27, 0xc7, 0x25, 0xe0, 0xfc, 0x27, 0xbc, - 0x0f, 0x01, 0xd0, 0x55, 0x18, 0xdc, 0xd9, 0xd9, 0xa4, 0xab, 0x79, 0xb0, 0x32, 0x7b, 0x72, 0x5c, - 0x1a, 0x0c, 0x82, 0xf6, 0xcf, 0x8e, 0x4b, 0x63, 0x2b, 0x5d, 0x8f, 0x76, 0xdc, 0x24, 0xf5, 0xe8, - 0x2a, 0x8c, 0x56, 0xdb, 0x5d, 0x3f, 0xc0, 0xde, 0xe2, 0x50, 0xb8, 0x8d, 0x9a, 0xac, 0xc8, 0x14, - 0x75, 0xe8, 0x3b, 0x30, 0xb4, 0xeb, 0x63, 0x6f, 0x71, 0x98, 0xce, 0xc8, 0x14, 0x9f, 0x11, 0x52, - 0xb4, 0xb7, 0x5c, 0x19, 0x23, 0x7b, 0xa5, 0xeb, 0x63, 0xcf, 0xa4, 0x40, 0xe8, 0x26, 0x0c, 0x33, - 0xb6, 0x8e, 0xd0, 0x63, 0x64, 0x4a, 0xce, 0x5f, 0x1b, 0xef, 0xbd, 0x57, 0x19, 0x3f, 0x39, 0x2e, - 0x0d, 0x53, 0xf6, 0x9a, 0xc3, 0x82, 0x29, 0xb9, 0x42, 0xde, 0x1c, 0x23, 0xb8, 0x64, 0xe1, 0x1a, - 0xdf, 0x81, 0x09, 0x65, 0xf8, 0x68, 0x09, 0x86, 0xc8, 0xff, 0x74, 0x9b, 0x4f, 0xb2, 0xc6, 0xc8, - 0xd1, 0x6e, 0xd2, 0x52, 0xe3, 0xef, 0xce, 0x40, 0x81, 0x60, 0x6a, 0x67, 0x83, 0xc6, 0xaa, 0x5c, - 0x2f, 0x56, 0x5d, 0x07, 0xd9, 0x36, 0x3f, 0x24, 0x26, 0x4f, 0x8e, 0x4b, 0x63, 0x5d, 0x5e, 0x16, - 0xf6, 0x0c, 0xd5, 0x61, 0x74, 0xf5, 0x79, 0xc7, 0xf6, 0xb0, 0x4f, 0x19, 0x3b, 0xb1, 0x5c, 0xbc, - 0xc9, 0x3e, 0x67, 0x37, 0xc5, 0xe7, 0xec, 0xe6, 0x8e, 0xf8, 0x9c, 0x55, 0x2e, 0xf0, 0xc3, 0xf2, - 0x0c, 0x66, 0x28, 0xe1, 0x6a, 0xfa, 0xcd, 0x3f, 0x29, 0xe5, 0x4c, 0x41, 0x09, 0x7d, 0x17, 0x46, - 0xee, 0xb9, 0xde, 0x91, 0x15, 0xf0, 0x19, 0x98, 0x3b, 0x39, 0x2e, 0x15, 0x1e, 0xd3, 0x12, 0x65, - 0x71, 0x73, 0x18, 0x74, 0x0f, 0xa6, 0x4d, 0xb7, 0x1b, 0xe0, 0x1d, 0x57, 0xcc, 0xdb, 0x30, 0xc5, - 0xba, 0x78, 0x72, 0x5c, 0x2a, 0x7a, 0xa4, 0xa6, 0x11, 0xb8, 0x0d, 0x3e, 0x81, 0x0a, 0x7e, 0x04, - 0x0b, 0xad, 0xc2, 0x74, 0x99, 0x9e, 0xae, 0x9c, 0x67, 0x6c, 0xb6, 0xc6, 0x2b, 0x17, 0x4e, 0x8e, - 0x4b, 0xe7, 0x2c, 0x5a, 0xd3, 0xf0, 0x78, 0x95, 0x4a, 0x46, 0x47, 0x42, 0x5b, 0x70, 0xe6, 0x41, - 0x77, 0x1f, 0x7b, 0x0e, 0x0e, 0xb0, 0x2f, 0x7a, 0x34, 0x4a, 0x7b, 0x74, 0xe9, 0xe4, 0xb8, 0xb4, - 0xf4, 0x44, 0x56, 0x26, 0xf4, 0x29, 0x8e, 0x8a, 0x30, 0xcc, 0xf0, 0x8e, 0xae, 0x58, 0x81, 0xb5, - 0x6f, 0xf9, 0x98, 0x1e, 0x1a, 0x13, 0xcb, 0x67, 0x19, 0x8b, 0x6f, 0x46, 0x6a, 0x2b, 0x57, 0x38, - 0x97, 0xcf, 0xcb, 0xb1, 0xb7, 0x78, 0x95, 0xd2, 0x50, 0x94, 0x26, 0x39, 0x3b, 0xe5, 0x77, 0x61, - 0x9c, 0xf6, 0x96, 0x9e, 0x9d, 0xf2, 0xbb, 0xa0, 0x9e, 0x2a, 0xf2, 0x0b, 0xb1, 0x09, 0xc3, 0xbb, - 0xe4, 0xeb, 0x49, 0xcf, 0x94, 0xe9, 0xe5, 0xcb, 0xbc, 0x47, 0xd1, 0xd5, 0x77, 0x93, 0xfc, 0xa0, - 0x80, 0x74, 0xdf, 0xcd, 0xd0, 0x2f, 0xae, 0xfa, 0xad, 0xa4, 0x75, 0xe8, 0x0b, 0x00, 0xde, 0xab, - 0x72, 0xa7, 0xb3, 0x38, 0x41, 0x07, 0x79, 0x46, 0x1f, 0x64, 0xb9, 0xd3, 0xa9, 0x5c, 0xe4, 0xe3, - 0x3b, 0x2b, 0xc7, 0x67, 0x75, 0x3a, 0x0a, 0x35, 0x85, 0x08, 0xfa, 0x0c, 0x26, 0xe9, 0x91, 0x23, - 0x66, 0x74, 0x92, 0xce, 0xe8, 0xf9, 0x93, 0xe3, 0xd2, 0x02, 0xd9, 0x70, 0x49, 0xf3, 0xa9, 0x21, - 0xa0, 0x5f, 0x86, 0x79, 0x4e, 0xee, 0x91, 0xed, 0xb4, 0xdc, 0x67, 0xfe, 0x0a, 0xf6, 0x9f, 0x04, - 0x6e, 0x67, 0x71, 0x8a, 0x76, 0x6f, 0x49, 0xef, 0x9e, 0x0e, 0x53, 0xb9, 0xc1, 0x7b, 0x6a, 0xc8, - 0x9e, 0x3e, 0x63, 0x00, 0x8d, 0x16, 0x83, 0x50, 0x9a, 0x4d, 0x6e, 0x06, 0x6d, 0xc0, 0xcc, 0xae, - 0x8f, 0xb5, 0x31, 0x4c, 0xd3, 0xf3, 0xbb, 0x44, 0x66, 0xb8, 0xeb, 0xe3, 0x46, 0xda, 0x38, 0xa2, + 0xce, 0x39, 0x55, 0x75, 0xaa, 0xea, 0xdc, 0x53, 0xa7, 0x4e, 0x9d, 0x03, 0x37, 0x03, 0xdc, 0xc6, + 0x1d, 0xd7, 0x0b, 0x6e, 0xb5, 0xf1, 0x81, 0xd5, 0x7c, 0x71, 0xab, 0xd9, 0xb6, 0xb1, 0x13, 0xdc, + 0xea, 0x78, 0x6e, 0xe0, 0xde, 0xb2, 0xba, 0xc1, 0xa1, 0x8f, 0xbd, 0xa7, 0x76, 0x13, 0xdf, 0xa4, + 0x25, 0x68, 0x98, 0xfe, 0x57, 0x9c, 0x3b, 0x70, 0x0f, 0x5c, 0x06, 0x43, 0xfe, 0x62, 0x95, 0xc5, + 0xf3, 0x07, 0xae, 0x7b, 0xd0, 0xc6, 0x0c, 0x79, 0xbf, 0xfb, 0xf8, 0x16, 0x3e, 0xea, 0x04, 0x2f, + 0x78, 0x65, 0x29, 0x5a, 0x19, 0xd8, 0x47, 0xd8, 0x0f, 0xac, 0xa3, 0x0e, 0x07, 0x78, 0x4b, 0x76, + 0xc5, 0x0a, 0x02, 0x52, 0x13, 0xd8, 0xae, 0x73, 0xeb, 0xe9, 0x1d, 0xf5, 0x27, 0x07, 0xbd, 0x9e, + 0xd9, 0xeb, 0x26, 0xf6, 0x02, 0xbf, 0x2f, 0x48, 0xfc, 0x14, 0x3b, 0x41, 0xac, 0x79, 0x0e, 0x19, + 0xbc, 0xe8, 0x60, 0x9f, 0x81, 0x88, 0xff, 0x38, 0xe8, 0xe5, 0x64, 0x50, 0xfa, 0x2f, 0x07, 0x79, + 0x3b, 0x19, 0xe4, 0x19, 0xde, 0x27, 0x3c, 0x75, 0xe4, 0x1f, 0x3d, 0xc0, 0x3d, 0xab, 0xd3, 0xc1, + 0x5e, 0xf8, 0x07, 0x07, 0x3f, 0x27, 0xc1, 0x8f, 0x1e, 0x5b, 0x84, 0x45, 0x47, 0x8f, 0xad, 0xd8, + 0x30, 0xba, 0xbe, 0x75, 0x80, 0x79, 0xf7, 0x9f, 0xde, 0x51, 0x7f, 0x32, 0x50, 0xe3, 0xf7, 0x72, + 0x30, 0xfc, 0xc8, 0x0a, 0x9a, 0x87, 0xe8, 0x33, 0x18, 0x7e, 0x60, 0x3b, 0x2d, 0x7f, 0x31, 0x77, + 0x69, 0xf0, 0xfa, 0xc4, 0x72, 0xe1, 0x26, 0x1b, 0x0a, 0xad, 0x24, 0x15, 0x95, 0x85, 0x9f, 0x1c, + 0x97, 0x06, 0x4e, 0x8e, 0x4b, 0x33, 0x4f, 0x08, 0xd8, 0x77, 0xdd, 0x23, 0x3b, 0xa0, 0x73, 0x6b, + 0x32, 0x3c, 0xb4, 0x0b, 0xb3, 0xe5, 0x76, 0xdb, 0x7d, 0x56, 0xb3, 0xbc, 0xc0, 0xb6, 0xda, 0xf5, + 0x6e, 0xb3, 0x89, 0x7d, 0x7f, 0x31, 0x7f, 0x29, 0x77, 0x7d, 0xac, 0x72, 0xe5, 0xe4, 0xb8, 0x54, + 0xb2, 0x48, 0x75, 0xa3, 0xc3, 0xea, 0x1b, 0x3e, 0x03, 0x50, 0x08, 0x25, 0xe1, 0x1b, 0x7f, 0x31, + 0x0c, 0x85, 0x75, 0xd7, 0x0f, 0xaa, 0x64, 0x46, 0x4d, 0xfc, 0xa3, 0x2e, 0xf6, 0x03, 0x74, 0x05, + 0x46, 0x48, 0xd9, 0xc6, 0xca, 0x62, 0xee, 0x52, 0xee, 0xfa, 0x78, 0x65, 0xe2, 0xe4, 0xb8, 0x34, + 0x7a, 0xe8, 0xfa, 0x41, 0xc3, 0x6e, 0x99, 0xbc, 0x0a, 0xbd, 0x05, 0x63, 0x5b, 0x6e, 0x0b, 0x6f, + 0x59, 0x47, 0x98, 0xf6, 0x62, 0xbc, 0x32, 0x75, 0x72, 0x5c, 0x1a, 0x77, 0xdc, 0x16, 0x6e, 0x38, + 0xd6, 0x11, 0x36, 0x65, 0x35, 0xda, 0x83, 0x21, 0xd3, 0x6d, 0xe3, 0xc5, 0x41, 0x0a, 0x56, 0x39, + 0x39, 0x2e, 0x0d, 0x79, 0x6e, 0x1b, 0xff, 0xec, 0xb8, 0xf4, 0xde, 0x81, 0x1d, 0x1c, 0x76, 0xf7, + 0x6f, 0x36, 0xdd, 0xa3, 0x5b, 0x07, 0x9e, 0xf5, 0xd4, 0x66, 0x8b, 0xd0, 0x6a, 0xdf, 0x0a, 0x97, + 0x6a, 0xc7, 0xe6, 0xf3, 0x5e, 0x7f, 0xe1, 0x07, 0xf8, 0x88, 0x50, 0x32, 0x29, 0x3d, 0xf4, 0x08, + 0xe6, 0xca, 0xad, 0x96, 0xcd, 0x30, 0x6a, 0x9e, 0xed, 0x34, 0xed, 0x8e, 0xd5, 0xf6, 0x17, 0x87, + 0x2e, 0x0d, 0x5e, 0x1f, 0xe7, 0x4c, 0x91, 0xf5, 0x8d, 0x8e, 0x04, 0x50, 0x98, 0x92, 0x48, 0x00, + 0xdd, 0x85, 0xb1, 0x95, 0xad, 0x3a, 0xe9, 0xbb, 0xbf, 0x38, 0x4c, 0x89, 0x2d, 0x9c, 0x1c, 0x97, + 0x66, 0x5b, 0x8e, 0x4f, 0x87, 0xa6, 0x12, 0x90, 0x80, 0xe8, 0x3d, 0x98, 0xac, 0x75, 0xf7, 0xdb, + 0x76, 0x73, 0x67, 0xb3, 0xfe, 0x00, 0xbf, 0x58, 0x1c, 0xb9, 0x94, 0xbb, 0x3e, 0x59, 0x41, 0x27, + 0xc7, 0xa5, 0xe9, 0x0e, 0x2d, 0x6f, 0x04, 0x6d, 0xbf, 0xf1, 0x04, 0xbf, 0x30, 0x35, 0xb8, 0x10, + 0xaf, 0x5e, 0x5f, 0x27, 0x78, 0xa3, 0x31, 0x3c, 0xdf, 0x3f, 0x54, 0xf1, 0x18, 0x1c, 0xba, 0x05, + 0x60, 0xe2, 0x23, 0x37, 0xc0, 0xe5, 0x56, 0xcb, 0x5b, 0x1c, 0xa3, 0xbc, 0x9d, 0x39, 0x39, 0x2e, + 0x4d, 0x78, 0xb4, 0xb4, 0x61, 0xb5, 0x5a, 0x9e, 0xa9, 0x80, 0xa0, 0x2a, 0x8c, 0x99, 0x2e, 0x63, + 0xf0, 0xe2, 0xf8, 0xa5, 0xdc, 0xf5, 0x89, 0xe5, 0x19, 0xbe, 0x0c, 0x45, 0x71, 0xe5, 0xec, 0xc9, + 0x71, 0x09, 0x79, 0xfc, 0x97, 0x3a, 0x4a, 0x01, 0x81, 0x4a, 0x30, 0xba, 0xe5, 0x56, 0xad, 0xe6, + 0x21, 0x5e, 0x04, 0xba, 0xf6, 0x86, 0x4f, 0x8e, 0x4b, 0xb9, 0xb7, 0x4d, 0x51, 0x8a, 0x9e, 0xc2, + 0x44, 0x38, 0x51, 0xfe, 0xe2, 0x04, 0x65, 0xdf, 0xce, 0xc9, 0x71, 0xe9, 0xac, 0x4f, 0x8b, 0x1b, + 0x64, 0xea, 0x15, 0x0e, 0xbe, 0xc2, 0x2a, 0x50, 0x1b, 0xba, 0x3f, 0x34, 0x36, 0x59, 0x98, 0x32, + 0x2f, 0xec, 0x3a, 0x7e, 0x60, 0xed, 0xb7, 0x71, 0x58, 0x55, 0xf6, 0x7d, 0xec, 0x11, 0x7a, 0x1b, + 0x2b, 0xc6, 0xff, 0xc9, 0x01, 0xda, 0xee, 0x60, 0xa7, 0x5e, 0x5f, 0x27, 0x2b, 0x5e, 0x2c, 0xf8, + 0xef, 0xc2, 0x38, 0x63, 0x2d, 0xe1, 0x7f, 0x9e, 0xf2, 0x7f, 0xfa, 0xe4, 0xb8, 0x04, 0x9c, 0xff, + 0x84, 0xf7, 0x21, 0x00, 0xba, 0x0a, 0x83, 0x3b, 0x3b, 0x9b, 0x74, 0x35, 0x0f, 0x56, 0x66, 0x4f, + 0x8e, 0x4b, 0x83, 0x41, 0xd0, 0xfe, 0xd9, 0x71, 0x69, 0x6c, 0xa5, 0xeb, 0xd1, 0x8e, 0x9b, 0xa4, + 0x1e, 0x5d, 0x85, 0xd1, 0x6a, 0xbb, 0xeb, 0x07, 0xd8, 0x5b, 0x1c, 0x0a, 0xb7, 0x51, 0x93, 0x15, + 0x99, 0xa2, 0x0e, 0x7d, 0x07, 0x86, 0x76, 0x7d, 0xec, 0x2d, 0x0e, 0xd3, 0x19, 0x99, 0xe2, 0x33, + 0x42, 0x8a, 0xf6, 0x96, 0x2b, 0x63, 0x64, 0xaf, 0x74, 0x7d, 0xec, 0x99, 0x14, 0x08, 0xdd, 0x84, + 0x61, 0xc6, 0xd6, 0x11, 0x2a, 0x46, 0xa6, 0xe4, 0xfc, 0xb5, 0xf1, 0xde, 0x7b, 0x95, 0xf1, 0x93, + 0xe3, 0xd2, 0x30, 0x65, 0xaf, 0x39, 0x2c, 0x98, 0x92, 0x2b, 0xe4, 0xcd, 0x31, 0x82, 0x4b, 0x16, + 0xae, 0xf1, 0x1d, 0x98, 0x50, 0x86, 0x8f, 0x96, 0x60, 0x88, 0xfc, 0x4f, 0xb7, 0xf9, 0x24, 0x6b, + 0x8c, 0x88, 0x76, 0x93, 0x96, 0x1a, 0xff, 0x60, 0x06, 0x0a, 0x04, 0x53, 0x93, 0x0d, 0x1a, 0xab, + 0x72, 0xbd, 0x58, 0x75, 0x1d, 0x64, 0xdb, 0x5c, 0x48, 0x4c, 0x9e, 0x1c, 0x97, 0xc6, 0xba, 0xbc, + 0x2c, 0xec, 0x19, 0xaa, 0xc3, 0xe8, 0xea, 0xf3, 0x8e, 0xed, 0x61, 0x9f, 0x32, 0x76, 0x62, 0xb9, + 0x78, 0x93, 0x7d, 0xce, 0x6e, 0x8a, 0xcf, 0xd9, 0xcd, 0x1d, 0xf1, 0x39, 0xab, 0x5c, 0xe0, 0xc2, + 0xf2, 0x0c, 0x66, 0x28, 0xe1, 0x6a, 0xfa, 0xcd, 0x3f, 0x29, 0xe5, 0x4c, 0x41, 0x09, 0x7d, 0x17, + 0x46, 0xee, 0xb9, 0xde, 0x91, 0x15, 0xf0, 0x19, 0x98, 0x3b, 0x39, 0x2e, 0x15, 0x1e, 0xd3, 0x12, + 0x65, 0x71, 0x73, 0x18, 0x74, 0x0f, 0xa6, 0x4d, 0xb7, 0x1b, 0xe0, 0x1d, 0x57, 0xcc, 0xdb, 0x30, + 0xc5, 0xba, 0x78, 0x72, 0x5c, 0x2a, 0x7a, 0xa4, 0xa6, 0x11, 0xb8, 0x0d, 0x3e, 0x81, 0x0a, 0x7e, + 0x04, 0x0b, 0xad, 0xc2, 0x74, 0x99, 0x4a, 0x57, 0xce, 0x33, 0x36, 0x5b, 0xe3, 0x95, 0x0b, 0x27, + 0xc7, 0xa5, 0x73, 0x16, 0xad, 0x69, 0x78, 0xbc, 0x4a, 0x25, 0xa3, 0x23, 0xa1, 0x2d, 0x38, 0xf3, + 0xa0, 0xbb, 0x8f, 0x3d, 0x07, 0x07, 0xd8, 0x17, 0x3d, 0x1a, 0xa5, 0x3d, 0xba, 0x74, 0x72, 0x5c, + 0x5a, 0x7a, 0x22, 0x2b, 0x13, 0xfa, 0x14, 0x47, 0x45, 0x18, 0x66, 0x78, 0x47, 0x57, 0xac, 0xc0, + 0xda, 0xb7, 0x7c, 0x4c, 0x85, 0xc6, 0xc4, 0xf2, 0x59, 0xc6, 0xe2, 0x9b, 0x91, 0xda, 0xca, 0x15, + 0xce, 0xe5, 0xf3, 0x72, 0xec, 0x2d, 0x5e, 0xa5, 0x34, 0x14, 0xa5, 0x49, 0x64, 0xa7, 0xfc, 0x2e, + 0x8c, 0xd3, 0xde, 0x52, 0xd9, 0x29, 0xbf, 0x0b, 0xaa, 0x54, 0x91, 0x5f, 0x88, 0x4d, 0x18, 0xde, + 0x25, 0x5f, 0x4f, 0x2a, 0x53, 0xa6, 0x97, 0x2f, 0xf3, 0x1e, 0x45, 0x57, 0xdf, 0x4d, 0xf2, 0x83, + 0x02, 0xd2, 0x7d, 0x37, 0x43, 0xbf, 0xb8, 0xea, 0xb7, 0x92, 0xd6, 0xa1, 0x2f, 0x00, 0x78, 0xaf, + 0xca, 0x9d, 0xce, 0xe2, 0x04, 0x1d, 0xe4, 0x19, 0x7d, 0x90, 0xe5, 0x4e, 0xa7, 0x72, 0x91, 0x8f, + 0xef, 0xac, 0x1c, 0x9f, 0xd5, 0xe9, 0x28, 0xd4, 0x14, 0x22, 0xe8, 0x33, 0x98, 0xa4, 0x22, 0x47, + 0xcc, 0xe8, 0x24, 0x9d, 0xd1, 0xf3, 0x27, 0xc7, 0xa5, 0x05, 0xb2, 0xe1, 0x92, 0xe6, 0x53, 0x43, + 0x40, 0xbf, 0x0c, 0xf3, 0x9c, 0xdc, 0x23, 0xdb, 0x69, 0xb9, 0xcf, 0xfc, 0x15, 0xec, 0x3f, 0x09, + 0xdc, 0xce, 0xe2, 0x14, 0xed, 0xde, 0x92, 0xde, 0x3d, 0x1d, 0xa6, 0x72, 0x83, 0xf7, 0xd4, 0x90, + 0x3d, 0x7d, 0xc6, 0x00, 0x1a, 0x2d, 0x06, 0xa1, 0x34, 0x9b, 0xdc, 0x0c, 0xda, 0x80, 0x99, 0x5d, + 0x1f, 0x6b, 0x63, 0x98, 0xa6, 0xf2, 0xbb, 0x44, 0x66, 0xb8, 0xeb, 0xe3, 0x46, 0xda, 0x38, 0xa2, 0x78, 0xc8, 0x04, 0xb4, 0xe2, 0xb9, 0x9d, 0xc8, 0x1a, 0x9f, 0xa1, 0x1c, 0x31, 0x4e, 0x8e, 0x4b, 0x17, 0x5b, 0x9e, 0xdb, 0x69, 0xa4, 0x2f, 0xf4, 0x04, 0x6c, 0xf4, 0x03, 0x38, 0x5b, 0x75, 0x1d, - 0x07, 0x37, 0xc9, 0xf9, 0xb9, 0x62, 0x5b, 0x07, 0x8e, 0xeb, 0x07, 0x76, 0x73, 0x63, 0x65, 0xb1, - 0x40, 0xd7, 0xd0, 0x35, 0x32, 0xfa, 0xa6, 0x84, 0x68, 0xb4, 0x24, 0x48, 0xc3, 0x6e, 0x29, 0xb4, - 0x53, 0xa8, 0xa0, 0xaf, 0x61, 0x8a, 0xb7, 0x85, 0x3d, 0xba, 0x34, 0xcf, 0x64, 0x2f, 0x34, 0x09, - 0xcc, 0x3e, 0xc4, 0x9e, 0xf8, 0xc9, 0x44, 0x1b, 0x9d, 0x16, 0xfa, 0x06, 0x26, 0x1e, 0xde, 0x2b, - 0x9b, 0xd8, 0xef, 0xb8, 0x8e, 0x8f, 0x17, 0x11, 0x9d, 0xd1, 0x8b, 0x9c, 0xf4, 0xc3, 0x7b, 0xe5, - 0x72, 0x37, 0x38, 0xc4, 0x4e, 0x60, 0x37, 0xad, 0x00, 0x0b, 0xa8, 0x4a, 0x91, 0xac, 0xbc, 0xa3, - 0xc7, 0x56, 0xc3, 0xe3, 0x25, 0xca, 0x28, 0x54, 0x72, 0xa8, 0x08, 0x63, 0xf5, 0xfa, 0xfa, 0xa6, - 0x7b, 0x60, 0x3b, 0x8b, 0xb3, 0x84, 0x19, 0xa6, 0xfc, 0x8d, 0xf6, 0x61, 0x5e, 0x91, 0xdd, 0x1b, - 0xe4, 0x7f, 0x7c, 0x84, 0x9d, 0x60, 0x71, 0x8e, 0xf6, 0xe1, 0x6d, 0x79, 0xf9, 0xb8, 0xa9, 0x8a, - 0xf8, 0x4f, 0xef, 0xdc, 0x2c, 0x87, 0x3f, 0xeb, 0x02, 0xc9, 0x9c, 0xb3, 0x12, 0x4a, 0xd1, 0x0e, - 0x8c, 0xd6, 0xba, 0x5e, 0xc7, 0xf5, 0xf1, 0xe2, 0x3c, 0x65, 0xda, 0x95, 0xac, 0xdd, 0xc9, 0x41, - 0x2b, 0xf3, 0xe4, 0x78, 0xee, 0xb0, 0x1f, 0xca, 0xc8, 0x04, 0x29, 0xe3, 0x4b, 0x18, 0x97, 0x9b, - 0x19, 0x8d, 0xc2, 0x60, 0xb9, 0xdd, 0x2e, 0x0c, 0x90, 0x3f, 0xea, 0xf5, 0xf5, 0x42, 0x0e, 0x4d, - 0x03, 0x84, 0x27, 0x58, 0x21, 0x8f, 0x26, 0x61, 0x4c, 0x9c, 0x30, 0x85, 0x41, 0x0a, 0xdf, 0xe9, - 0x14, 0x86, 0x10, 0x82, 0x69, 0x7d, 0x9d, 0x17, 0x86, 0x8d, 0xe7, 0x30, 0x2e, 0xa7, 0x07, 0xcd, - 0xc0, 0xc4, 0xee, 0x56, 0xbd, 0xb6, 0x5a, 0xdd, 0xb8, 0xb7, 0xb1, 0xba, 0x52, 0x18, 0x40, 0x17, - 0xe0, 0xdc, 0x4e, 0x7d, 0xbd, 0xb1, 0x52, 0x69, 0x6c, 0x6e, 0x57, 0xcb, 0x9b, 0x8d, 0x9a, 0xb9, - 0xfd, 0xe5, 0x57, 0x8d, 0x9d, 0xdd, 0xad, 0xad, 0xd5, 0xcd, 0x42, 0x0e, 0x2d, 0xc2, 0x1c, 0xa9, - 0x7e, 0xb0, 0x5b, 0x59, 0x55, 0x01, 0x0a, 0x79, 0x74, 0x19, 0x2e, 0x24, 0xd5, 0x34, 0xd6, 0x57, - 0xcb, 0x2b, 0x9b, 0xab, 0xf5, 0x7a, 0x61, 0xd0, 0x68, 0xc3, 0x84, 0xc2, 0x02, 0xb4, 0x04, 0x8b, - 0xd5, 0x55, 0x73, 0xa7, 0x51, 0xdb, 0x35, 0x6b, 0xdb, 0xf5, 0xd5, 0x86, 0xde, 0x91, 0x68, 0xed, - 0xe6, 0xf6, 0xda, 0xc6, 0x56, 0x83, 0x14, 0xd5, 0x0b, 0x39, 0xd2, 0x9a, 0x56, 0x5b, 0xdf, 0xd8, - 0x5a, 0xdb, 0x5c, 0x6d, 0xec, 0xd6, 0x57, 0x39, 0x48, 0xde, 0xf8, 0xd5, 0x7c, 0xec, 0x40, 0x47, - 0xcb, 0x30, 0x51, 0x67, 0xb7, 0x49, 0xba, 0xc8, 0x99, 0xf8, 0x5e, 0x38, 0x39, 0x2e, 0x4d, 0xf2, - 0x4b, 0x26, 0x5b, 0xbf, 0x2a, 0x10, 0xf9, 0x46, 0xd7, 0xc8, 0x7c, 0x36, 0xdd, 0xb6, 0xfa, 0x8d, - 0xee, 0xf0, 0x32, 0x53, 0xd6, 0xa2, 0x65, 0xe5, 0x6b, 0xce, 0x64, 0x79, 0x2a, 0x2f, 0x8a, 0xaf, - 0xb9, 0x7a, 0xb2, 0xcb, 0xef, 0xfa, 0x72, 0x38, 0x71, 0xfc, 0x23, 0x4c, 0x71, 0x12, 0xbe, 0x24, - 0x12, 0x0e, 0xbd, 0x25, 0xa4, 0x1c, 0x26, 0x7b, 0xd3, 0xa3, 0x3e, 0x22, 0x35, 0x72, 0x01, 0xc7, - 0xe8, 0xa6, 0x1c, 0xab, 0xe8, 0xa3, 0xe8, 0xca, 0xe0, 0xcc, 0xa0, 0xc4, 0x22, 0xa7, 0xa7, 0x19, - 0x01, 0x45, 0x25, 0x18, 0x66, 0xfb, 0x8d, 0xf1, 0x83, 0xca, 0x55, 0x6d, 0x52, 0x60, 0xb2, 0x72, - 0xe3, 0x37, 0x06, 0xd5, 0x4f, 0x0c, 0x91, 0xa3, 0x14, 0x7e, 0x53, 0x39, 0x8a, 0xf2, 0x99, 0x96, - 0x12, 0x91, 0xa9, 0x8e, 0x7d, 0x9f, 0x4a, 0xa0, 0x9c, 0x22, 0x15, 0x99, 0x7c, 0x56, 0x48, 0x2e, - 0x55, 0x21, 0x00, 0x11, 0xeb, 0x99, 0xfc, 0x44, 0xc5, 0xfa, 0xc1, 0x50, 0xac, 0xe7, 0x12, 0x16, - 0x13, 0xeb, 0x43, 0x10, 0x32, 0xe7, 0xfc, 0x13, 0x4f, 0xfb, 0x30, 0x14, 0xce, 0x39, 0x17, 0x0b, - 0xf8, 0x9c, 0x2b, 0x40, 0xe8, 0x43, 0x80, 0xf2, 0xa3, 0x3a, 0x95, 0x8e, 0xcd, 0x2d, 0x2e, 0xe6, - 0xd0, 0x03, 0xc9, 0x7a, 0xe6, 0xb3, 0x0f, 0x81, 0xe5, 0xa9, 0xf2, 0xbf, 0x02, 0x8d, 0x2a, 0x30, - 0x55, 0xfe, 0x71, 0xd7, 0xc3, 0x1b, 0x2d, 0x72, 0xa6, 0x05, 0xec, 0xa2, 0x33, 0x5e, 0x59, 0x3a, - 0x39, 0x2e, 0x2d, 0x5a, 0xa4, 0xa2, 0x61, 0xf3, 0x1a, 0x85, 0x80, 0x8e, 0x82, 0xb6, 0xe1, 0xcc, - 0x5a, 0xb5, 0xc6, 0x57, 0x61, 0xb9, 0xd9, 0x74, 0xbb, 0x4e, 0xc0, 0x65, 0x9b, 0xcb, 0x27, 0xc7, - 0xa5, 0x0b, 0x07, 0xcd, 0x4e, 0x43, 0xac, 0x58, 0x8b, 0x55, 0xab, 0xc2, 0x4d, 0x0c, 0xd7, 0x68, - 0xc3, 0xf4, 0x1a, 0x0e, 0xc8, 0xaa, 0x13, 0x82, 0x6a, 0xf6, 0x9c, 0x7c, 0x0c, 0x13, 0x8f, 0xec, - 0xe0, 0xb0, 0x8e, 0x9b, 0x1e, 0x0e, 0xc4, 0x35, 0x9a, 0x72, 0xe0, 0x99, 0x1d, 0x1c, 0x36, 0x7c, - 0x56, 0xae, 0x1e, 0xc9, 0x0a, 0xb8, 0xb1, 0x0a, 0x33, 0xbc, 0x35, 0x29, 0x17, 0x2f, 0xeb, 0x04, - 0x73, 0x94, 0x20, 0x9d, 0x05, 0x95, 0xa0, 0x4e, 0xe6, 0x5f, 0xe4, 0x61, 0xbe, 0x7a, 0x68, 0x39, - 0x07, 0xb8, 0x66, 0xf9, 0xfe, 0x33, 0xd7, 0x6b, 0x29, 0x9d, 0xa7, 0x97, 0x82, 0x58, 0xe7, 0xe9, - 0x2d, 0x60, 0x19, 0x26, 0xb6, 0xdb, 0x2d, 0x81, 0xc3, 0x2f, 0x2c, 0xb4, 0x2d, 0xb7, 0xdd, 0x6a, - 0x74, 0x04, 0x2d, 0x15, 0x88, 0xe0, 0x6c, 0xe1, 0x67, 0x12, 0x67, 0x30, 0xc4, 0x71, 0xf0, 0x33, - 0x05, 0x47, 0x01, 0x42, 0xab, 0x70, 0xa6, 0x8e, 0x9b, 0xae, 0xd3, 0xba, 0x67, 0x35, 0x03, 0xd7, - 0xdb, 0x71, 0x9f, 0x60, 0x87, 0xaf, 0x2f, 0x2a, 0xd3, 0xf9, 0xb4, 0xb2, 0xf1, 0x98, 0xd6, 0x36, - 0x02, 0x52, 0x6d, 0xc6, 0x31, 0xd0, 0x36, 0x8c, 0x3d, 0xe2, 0xca, 0x18, 0x7e, 0xcb, 0xb9, 0x7a, - 0x53, 0x6a, 0x67, 0xaa, 0x1e, 0xa6, 0x8b, 0xc2, 0x6a, 0xcb, 0x7b, 0x9a, 0xfc, 0x44, 0xd2, 0x73, - 0x48, 0x40, 0x9a, 0x92, 0x88, 0xb1, 0x0b, 0x53, 0xb5, 0x76, 0xf7, 0xc0, 0x76, 0xc8, 0x89, 0x51, - 0xc7, 0x3f, 0x42, 0x2b, 0x00, 0x61, 0x01, 0x57, 0xb1, 0xcc, 0xf2, 0xbb, 0x51, 0x58, 0xb1, 0x77, - 0x97, 0x6f, 0x24, 0x5a, 0x42, 0x85, 0x59, 0x53, 0xc1, 0x33, 0xfe, 0xf7, 0x20, 0x20, 0x3e, 0x01, - 0xf4, 0xeb, 0x57, 0xc7, 0x01, 0xf9, 0x84, 0x9c, 0x85, 0xbc, 0xd4, 0x84, 0x8c, 0x9c, 0x1c, 0x97, - 0xf2, 0x76, 0xcb, 0xcc, 0x6f, 0xac, 0xa0, 0x77, 0x60, 0x98, 0x82, 0x51, 0xfe, 0x4f, 0xcb, 0xf6, - 0x54, 0x0a, 0xec, 0xe4, 0xa0, 0x5f, 0x65, 0x93, 0x01, 0xa3, 0x77, 0x61, 0x7c, 0x05, 0xb7, 0xf1, - 0x81, 0x15, 0xb8, 0x62, 0x77, 0x33, 0xdd, 0x82, 0x28, 0x54, 0xd6, 0x5c, 0x08, 0x49, 0x6e, 0x32, - 0x26, 0xb6, 0x7c, 0xd7, 0x51, 0x6f, 0x32, 0x1e, 0x2d, 0x51, 0x6f, 0x32, 0x0c, 0x06, 0xfd, 0x76, - 0x0e, 0x26, 0xca, 0x8e, 0xc3, 0xef, 0xec, 0x3e, 0xe7, 0xfa, 0xfc, 0x4d, 0xa9, 0xe4, 0xda, 0xb4, - 0xf6, 0x71, 0x7b, 0xcf, 0x6a, 0x77, 0xb1, 0x5f, 0xf9, 0x86, 0x08, 0x97, 0xff, 0xe9, 0xb8, 0xf4, - 0xd1, 0x29, 0x6e, 0xe1, 0xa1, 0xba, 0x6c, 0xc7, 0xb3, 0xec, 0xc0, 0x3f, 0x39, 0x2e, 0xcd, 0x5b, - 0x61, 0x83, 0xea, 0xbe, 0x51, 0xfa, 0x11, 0x1e, 0xec, 0x23, 0xbd, 0x0e, 0x76, 0x74, 0x04, 0x33, - 0x65, 0xdf, 0xef, 0x1e, 0xe1, 0x7a, 0x60, 0x79, 0x01, 0xb9, 0xfa, 0xd1, 0xf3, 0x21, 0xfb, 0x5e, - 0xf8, 0xe6, 0x4f, 0x8e, 0x4b, 0x39, 0x22, 0xcf, 0x5a, 0x14, 0x95, 0xc8, 0x43, 0x5e, 0xd0, 0x08, - 0x6c, 0xf5, 0xdb, 0x44, 0x6f, 0x88, 0x51, 0xda, 0xc6, 0x15, 0x29, 0x34, 0x6c, 0xac, 0xa4, 0xcd, - 0xb8, 0x51, 0x85, 0xa5, 0x35, 0x1c, 0x98, 0xd8, 0xc7, 0x81, 0xd8, 0x23, 0x74, 0x85, 0x87, 0x7a, - 0xb3, 0x51, 0xfa, 0x5b, 0x22, 0xd3, 0xe9, 0x67, 0xfb, 0x42, 0xd4, 0x18, 0x7f, 0x25, 0x07, 0xa5, - 0xaa, 0x87, 0x99, 0x28, 0x98, 0x42, 0x28, 0xfb, 0xec, 0x5a, 0x82, 0xa1, 0x9d, 0x17, 0x1d, 0x71, - 0xa1, 0xa6, 0xb5, 0x64, 0x52, 0x4c, 0x5a, 0xda, 0xa7, 0x76, 0xc2, 0x78, 0x0c, 0xf3, 0x26, 0x76, - 0xf0, 0x33, 0x6b, 0xbf, 0x8d, 0xb5, 0x0b, 0x7e, 0x09, 0x86, 0xd9, 0x46, 0x8f, 0x0d, 0x81, 0x95, - 0x9f, 0x4e, 0x59, 0x62, 0xfc, 0x93, 0x3c, 0x14, 0xd8, 0x70, 0x2b, 0x6e, 0xd0, 0xdf, 0xf8, 0xf8, - 0x08, 0xf2, 0x3d, 0xf4, 0x2b, 0xd7, 0x42, 0x6e, 0x0f, 0x86, 0x62, 0x0b, 0xed, 0x2a, 0xf9, 0xa4, - 0x8a, 0x4a, 0x32, 0x20, 0xb6, 0xe8, 0x98, 0x5a, 0x30, 0xa6, 0x24, 0x41, 0xbf, 0x9e, 0x83, 0x11, - 0xb6, 0x8c, 0xb3, 0x37, 0xca, 0xa3, 0xd7, 0xb3, 0x51, 0x0a, 0x01, 0xfd, 0x4b, 0xdd, 0xb6, 0xac, - 0xce, 0xf8, 0x67, 0x79, 0x38, 0xa3, 0xf0, 0x8a, 0xcb, 0xff, 0x6f, 0x31, 0xa9, 0x4b, 0x61, 0x18, - 0x55, 0xb4, 0x12, 0xa9, 0xab, 0x11, 0x2a, 0x51, 0x28, 0xe7, 0xde, 0x82, 0x31, 0x32, 0xa4, 0xa8, - 0x4e, 0x96, 0x7e, 0xd0, 0x19, 0xa8, 0xa8, 0xee, 0x9b, 0x7b, 0xb7, 0x60, 0x8c, 0xfe, 0x49, 0x66, - 0x64, 0x28, 0x7d, 0x46, 0x24, 0x10, 0xb2, 0x01, 0xee, 0xbb, 0xb6, 0xf3, 0x10, 0x07, 0x87, 0x6e, - 0x8b, 0x8b, 0x16, 0x1b, 0xe4, 0xd8, 0xfd, 0x0b, 0xae, 0xed, 0x34, 0x8e, 0x68, 0xf1, 0x69, 0x75, - 0x7e, 0x21, 0x41, 0x53, 0x21, 0x6e, 0xdc, 0x86, 0x02, 0x39, 0x21, 0xfb, 0x5f, 0x5a, 0xc6, 0x1c, - 0xa0, 0x35, 0x1c, 0x54, 0x5c, 0xed, 0xdb, 0x6d, 0x4c, 0xc1, 0x44, 0xcd, 0x76, 0x0e, 0xc4, 0xcf, - 0xdf, 0x1f, 0x84, 0x49, 0xf6, 0x9b, 0xcf, 0x40, 0x44, 0xc2, 0xca, 0xf5, 0x23, 0x61, 0xbd, 0x0f, - 0x53, 0x44, 0x44, 0xc1, 0xde, 0x1e, 0xf6, 0x88, 0x64, 0xc7, 0xe7, 0x83, 0xde, 0x26, 0x7d, 0x5a, - 0xd1, 0x78, 0xca, 0x6a, 0x4c, 0x1d, 0x10, 0x6d, 0xc2, 0x34, 0x2b, 0xb8, 0x87, 0xad, 0xa0, 0x1b, - 0x2a, 0xc4, 0x66, 0xf8, 0xb5, 0x4b, 0x14, 0xb3, 0xe3, 0x93, 0xd3, 0x7a, 0xcc, 0x0b, 0xcd, 0x08, - 0x2e, 0xfa, 0x0c, 0x66, 0x6a, 0x9e, 0xfb, 0xfc, 0x85, 0x22, 0x53, 0xb2, 0x2f, 0x08, 0xbb, 0xa0, - 0x91, 0xaa, 0x86, 0x2a, 0x59, 0x46, 0xa1, 0xc9, 0x9a, 0xda, 0xf0, 0x2b, 0xae, 0x67, 0x3b, 0x07, - 0x74, 0x36, 0xc7, 0xd8, 0x9a, 0xb2, 0xfd, 0xc6, 0x3e, 0x2d, 0x34, 0x65, 0x75, 0x44, 0x23, 0x3d, - 0xda, 0x5b, 0x23, 0x7d, 0x1b, 0x60, 0xd3, 0xb5, 0x5a, 0xe5, 0x76, 0xbb, 0x5a, 0xf6, 0xa9, 0x36, - 0x8a, 0xcb, 0x4c, 0x6d, 0xd7, 0x6a, 0x35, 0xac, 0x76, 0xbb, 0xd1, 0xb4, 0x7c, 0x53, 0x81, 0xb9, - 0x3f, 0x34, 0x36, 0x52, 0x18, 0x35, 0x67, 0x36, 0xed, 0x26, 0x76, 0x7c, 0xfc, 0xc8, 0xf2, 0x1c, - 0xdb, 0x39, 0xf0, 0x8d, 0x3f, 0x9d, 0x80, 0x31, 0x39, 0xe4, 0x9b, 0xea, 0xdd, 0x91, 0x4b, 0x62, - 0xf4, 0x84, 0x0a, 0x35, 0x66, 0xa6, 0x02, 0x81, 0xce, 0xd1, 0xdb, 0x24, 0x97, 0x01, 0x47, 0xc9, - 0xea, 0xb6, 0x3a, 0x1d, 0x93, 0x94, 0x91, 0x2f, 0xc1, 0x4a, 0x85, 0xf2, 0x7f, 0x8c, 0x7d, 0x09, - 0x5a, 0xfb, 0x66, 0x7e, 0xa5, 0x42, 0x56, 0xd9, 0xf6, 0xc6, 0x4a, 0x95, 0xb2, 0x72, 0x8c, 0xad, - 0x32, 0xd7, 0x6e, 0x35, 0x4d, 0x5a, 0x4a, 0x6a, 0xeb, 0xe5, 0x87, 0x9b, 0x9c, 0x5d, 0xb4, 0xd6, - 0xb7, 0x8e, 0xda, 0x26, 0x2d, 0x25, 0x37, 0x13, 0xa6, 0xfc, 0xa8, 0xba, 0x4e, 0xe0, 0xb9, 0x6d, - 0x9f, 0x0a, 0xd0, 0x63, 0x6c, 0x3a, 0xb9, 0xd6, 0xa4, 0xc9, 0xab, 0xcc, 0x08, 0x28, 0x7a, 0x04, - 0x0b, 0xe5, 0xd6, 0x53, 0xcb, 0x69, 0xe2, 0x16, 0xab, 0x79, 0xe4, 0x7a, 0x4f, 0x1e, 0xb7, 0xdd, - 0x67, 0x3e, 0xe5, 0xf7, 0x18, 0x57, 0x32, 0x72, 0x10, 0xa1, 0x84, 0x79, 0x26, 0x80, 0xcc, 0x34, - 0x6c, 0x72, 0x4a, 0x56, 0xdb, 0x6e, 0xb7, 0xc5, 0x67, 0x81, 0x9e, 0x92, 0x4d, 0x52, 0x60, 0xb2, - 0x72, 0xc2, 0xa5, 0xf5, 0xfa, 0x43, 0xaa, 0xd2, 0xe3, 0x5c, 0x3a, 0xf4, 0x8f, 0x4c, 0x52, 0x86, - 0xae, 0xc2, 0xa8, 0xb8, 0x64, 0xb1, 0x37, 0x01, 0xaa, 0xe9, 0x16, 0x97, 0x2b, 0x51, 0x47, 0xb6, - 0x84, 0x89, 0x9b, 0xee, 0x53, 0xec, 0xbd, 0xa8, 0xba, 0x2d, 0x2c, 0x14, 0x50, 0x5c, 0xc1, 0xc2, - 0x2a, 0x1a, 0x4d, 0x52, 0x63, 0xea, 0x80, 0xa4, 0x01, 0x26, 0xa7, 0xf9, 0x8b, 0x33, 0x61, 0x03, - 0x4c, 0x8e, 0xf3, 0x4d, 0x51, 0x87, 0x56, 0xe0, 0x4c, 0xb9, 0x1b, 0xb8, 0x47, 0x56, 0x60, 0x37, - 0x77, 0x3b, 0x07, 0x9e, 0x45, 0x1a, 0x29, 0x50, 0x04, 0x7a, 0xe9, 0xb4, 0x44, 0x65, 0xa3, 0xcb, - 0x6b, 0xcd, 0x38, 0x02, 0x7a, 0x0f, 0x26, 0x37, 0x7c, 0xa6, 0x64, 0xb4, 0x7c, 0xdc, 0xa2, 0x9a, - 0x22, 0xde, 0x4b, 0xdb, 0x6f, 0x50, 0x95, 0x63, 0x83, 0x5c, 0x53, 0x5b, 0xa6, 0x06, 0x87, 0x0c, - 0x18, 0x29, 0xfb, 0xbe, 0xed, 0x07, 0x54, 0x01, 0x34, 0x56, 0x81, 0x93, 0xe3, 0xd2, 0x88, 0x45, - 0x4b, 0x4c, 0x5e, 0x83, 0x1e, 0xc1, 0xc4, 0x0a, 0x26, 0xf7, 0x96, 0x1d, 0xaf, 0xeb, 0x07, 0x54, - 0x9d, 0x33, 0xb1, 0x7c, 0x8e, 0x6f, 0x6c, 0xa5, 0x86, 0xaf, 0x65, 0x76, 0x23, 0x69, 0xd1, 0xf2, - 0x46, 0x40, 0x2a, 0x54, 0xc9, 0x4a, 0x81, 0x27, 0x97, 0x32, 0x8e, 0xb3, 0x6e, 0xb7, 0xc8, 0x56, - 0x9d, 0xa3, 0x7d, 0xa0, 0x97, 0x32, 0x7e, 0x36, 0x34, 0x0e, 0x69, 0x8d, 0x7a, 0x29, 0xd3, 0x50, - 0x50, 0x33, 0xa6, 0xb7, 0x9e, 0xd7, 0x74, 0x93, 0x7a, 0xa5, 0xe8, 0xe2, 0x29, 0xb5, 0xda, 0x1f, - 0xc3, 0x44, 0xb5, 0xeb, 0x07, 0xee, 0xd1, 0xce, 0x21, 0x3e, 0xc2, 0x8b, 0x67, 0xc3, 0xab, 0x67, - 0x93, 0x16, 0x37, 0x02, 0x52, 0xae, 0x0e, 0x53, 0x01, 0x47, 0x5f, 0x00, 0x12, 0x77, 0xc8, 0x35, - 0xb2, 0x3e, 0x1c, 0xb2, 0x96, 0x17, 0x17, 0xe8, 0x58, 0xe9, 0xc5, 0x51, 0x5c, 0x3d, 0x1b, 0x07, - 0xb2, 0x5a, 0xd5, 0x3c, 0xc6, 0x91, 0x49, 0x87, 0x58, 0x17, 0xd7, 0x3c, 0xab, 0x73, 0xb8, 0xb8, - 0x18, 0xde, 0x04, 0xf9, 0xa0, 0x0e, 0x48, 0xb9, 0x26, 0xd1, 0x86, 0xe0, 0xa8, 0x0e, 0xc0, 0x7e, - 0x6e, 0x92, 0x89, 0x3f, 0x47, 0xf9, 0xb5, 0xa8, 0xf1, 0x8b, 0x54, 0x08, 0x5e, 0x9d, 0xa3, 0x72, - 0x32, 0x23, 0xdb, 0xb6, 0xb5, 0xd9, 0x54, 0xc8, 0xa0, 0x27, 0x50, 0x60, 0xbf, 0x1e, 0xba, 0x8e, - 0x1d, 0xb0, 0xa3, 0xb7, 0xa8, 0x29, 0x15, 0xa3, 0xd5, 0xa2, 0x01, 0xaa, 0xcc, 0xe5, 0x0d, 0x1c, - 0xc9, 0x5a, 0xa5, 0x99, 0x18, 0x61, 0x54, 0x83, 0x89, 0x9a, 0xe7, 0xb6, 0xba, 0xcd, 0x80, 0x0a, - 0x95, 0xe7, 0xe9, 0x65, 0x06, 0xf1, 0x76, 0x94, 0x1a, 0xc6, 0x93, 0x0e, 0x2b, 0x68, 0x90, 0xef, - 0xb2, 0xca, 0x13, 0x05, 0x10, 0x55, 0x60, 0xa4, 0xe6, 0xb6, 0xed, 0xe6, 0x8b, 0xc5, 0x25, 0xda, - 0xe9, 0x39, 0x41, 0x8c, 0x16, 0x8a, 0xae, 0xd2, 0x1b, 0x4c, 0x87, 0x16, 0xa9, 0xa2, 0x10, 0x03, - 0xba, 0x3f, 0x34, 0x36, 0x51, 0x98, 0x64, 0x6f, 0x7a, 0xf7, 0x87, 0xc6, 0xa6, 0x0a, 0xd3, 0xc6, - 0xef, 0xe4, 0x00, 0xc5, 0x77, 0x08, 0xba, 0x05, 0xa3, 0xd8, 0x21, 0x42, 0x6c, 0x8b, 0x9f, 0xf4, - 0xf4, 0xbb, 0xc6, 0x8b, 0x54, 0xc5, 0x23, 0x2f, 0x42, 0x5f, 0xc0, 0x2c, 0xdb, 0x50, 0x62, 0x2f, - 0xb7, 0xed, 0x23, 0x3b, 0xa0, 0xa7, 0xff, 0x30, 0x5b, 0x43, 0x09, 0xd5, 0xaa, 0xf2, 0x81, 0x57, - 0xd3, 0x9d, 0xbf, 0x49, 0x2a, 0x8d, 0x2e, 0xcc, 0x27, 0xee, 0x0d, 0xf4, 0x10, 0xe6, 0x8f, 0x5c, - 0x27, 0x38, 0x6c, 0xbf, 0x10, 0x5b, 0x83, 0xb7, 0x96, 0xa3, 0xad, 0xd1, 0xe5, 0x90, 0x08, 0x60, - 0xce, 0xf2, 0x62, 0x4e, 0x91, 0xb6, 0x73, 0x7f, 0x68, 0x2c, 0x5f, 0x18, 0x94, 0x23, 0x31, 0x4c, - 0x38, 0x13, 0x5b, 0x62, 0xe8, 0x13, 0x98, 0x6c, 0x52, 0x11, 0x52, 0x6b, 0x89, 0x6d, 0x30, 0xa5, - 0x5c, 0x9d, 0x3b, 0x56, 0xce, 0x86, 0xf2, 0x8f, 0x72, 0xb0, 0x90, 0xb2, 0xb8, 0x4e, 0xcf, 0xea, - 0xaf, 0xe0, 0xec, 0x91, 0xf5, 0xbc, 0xe1, 0x51, 0x71, 0xae, 0xe1, 0x59, 0x4e, 0x84, 0xdb, 0x6f, - 0x9c, 0x1c, 0x97, 0x2e, 0x25, 0x43, 0xa8, 0x76, 0x0b, 0x47, 0xd6, 0x73, 0x93, 0x02, 0x98, 0xa4, - 0x9e, 0xf5, 0xf3, 0x73, 0x98, 0xd2, 0x96, 0xd3, 0xa9, 0x3b, 0x67, 0xdc, 0x81, 0x33, 0x4c, 0x78, - 0xec, 0x5b, 0x69, 0x64, 0xd4, 0x00, 0xea, 0xf8, 0xc8, 0xea, 0x1c, 0xba, 0x44, 0xcc, 0xa8, 0xa8, - 0xbf, 0xb8, 0xd2, 0x01, 0x71, 0x25, 0x80, 0xac, 0xd8, 0xbb, 0x2b, 0x74, 0x7d, 0x02, 0xd2, 0x54, - 0xb0, 0x8c, 0x3f, 0xcc, 0x03, 0x2a, 0x77, 0x5b, 0x76, 0x50, 0x0f, 0x3c, 0x6c, 0x1d, 0x89, 0x6e, - 0x7c, 0x00, 0x93, 0xec, 0x1e, 0xc0, 0x8a, 0x69, 0x77, 0x26, 0x96, 0x67, 0xf9, 0x3e, 0x52, 0xab, - 0xd6, 0x07, 0x4c, 0x0d, 0x94, 0xa0, 0x9a, 0x98, 0xdd, 0x6d, 0x29, 0x6a, 0x5e, 0x43, 0x55, 0xab, - 0x08, 0xaa, 0xfa, 0x1b, 0x7d, 0x06, 0xd3, 0x55, 0xf7, 0xa8, 0x43, 0x78, 0xc2, 0x91, 0x07, 0xf9, - 0x75, 0x88, 0xb7, 0xab, 0x55, 0xae, 0x0f, 0x98, 0x11, 0x70, 0xb4, 0x05, 0xb3, 0xf7, 0xda, 0x5d, - 0xff, 0xb0, 0xec, 0xb4, 0xaa, 0x6d, 0xd7, 0x17, 0x54, 0x86, 0xf8, 0xbd, 0x9d, 0x8b, 0xaf, 0x71, - 0x88, 0xf5, 0x01, 0x33, 0x09, 0x11, 0x5d, 0x85, 0xe1, 0xd5, 0xa7, 0xd8, 0x09, 0xe4, 0xdb, 0x38, - 0x37, 0xae, 0xd9, 0x76, 0xf0, 0xf6, 0xe3, 0xf5, 0x01, 0x93, 0xd5, 0x56, 0xc6, 0x61, 0x54, 0x88, - 0xee, 0xb7, 0x88, 0x04, 0x20, 0xd9, 0x59, 0x0f, 0xac, 0xa0, 0xeb, 0xa3, 0x22, 0x8c, 0xed, 0x76, - 0x88, 0x44, 0x29, 0xee, 0xe5, 0xa6, 0xfc, 0x6d, 0x7c, 0x57, 0xe7, 0x34, 0x5a, 0x52, 0x75, 0xb5, - 0x0c, 0x38, 0x2c, 0x30, 0xd6, 0x75, 0xe6, 0x66, 0x43, 0x6b, 0xed, 0xe6, 0x23, 0xed, 0x16, 0xa2, - 0xbc, 0x36, 0xe6, 0x13, 0x99, 0x67, 0x7c, 0x09, 0x17, 0x77, 0x3b, 0x3e, 0xf6, 0x82, 0x72, 0xa7, - 0xd3, 0xb6, 0x9b, 0xec, 0x6d, 0x86, 0x8a, 0xf8, 0x62, 0xb1, 0xbc, 0x07, 0x23, 0xac, 0x80, 0x2f, - 0x13, 0xb1, 0x06, 0xcb, 0x9d, 0x0e, 0xbf, 0x58, 0xdc, 0x65, 0xb2, 0x08, 0xbb, 0x2a, 0x98, 0x1c, - 0xda, 0xf8, 0xcd, 0x1c, 0x5c, 0x64, 0x3b, 0x20, 0x95, 0xf4, 0x77, 0x60, 0x9c, 0xda, 0xb6, 0x74, - 0xac, 0xa6, 0x76, 0xf7, 0x74, 0x44, 0xa1, 0x19, 0xd6, 0x2b, 0x56, 0x43, 0xf9, 0x74, 0xab, 0x21, - 0xb1, 0xc1, 0x06, 0x13, 0x37, 0xd8, 0x17, 0x60, 0xf0, 0x1e, 0xb5, 0xdb, 0xb1, 0x4e, 0xf9, 0x2f, - 0xd3, 0x2b, 0xe3, 0xbf, 0xe6, 0x61, 0x61, 0x0d, 0x3b, 0xd8, 0xb3, 0xe8, 0x38, 0x35, 0x35, 0x8b, - 0x6a, 0x9d, 0x90, 0xcb, 0xb4, 0x4e, 0x90, 0x3a, 0x84, 0x7c, 0x8a, 0x0e, 0xe1, 0x1c, 0x0c, 0xee, - 0x9a, 0x1b, 0x7c, 0x58, 0x54, 0x3a, 0xee, 0x7a, 0xb6, 0x49, 0xca, 0xd0, 0x46, 0x68, 0xd9, 0x30, - 0xd4, 0x53, 0x83, 0x35, 0xcb, 0x5f, 0x7a, 0x47, 0xb9, 0x65, 0x83, 0x6e, 0xcf, 0xb0, 0xa5, 0x28, - 0x2a, 0xc8, 0x71, 0x73, 0x83, 0xef, 0xa9, 0x94, 0x01, 0x72, 0x9d, 0xc3, 0xaa, 0x13, 0x78, 0x2f, - 0xd8, 0x12, 0x60, 0xaa, 0x07, 0xa1, 0x70, 0x28, 0x7e, 0x01, 0x13, 0x0a, 0x08, 0x2a, 0xc0, 0xe0, - 0x13, 0x6e, 0xd5, 0x31, 0x6e, 0x92, 0x3f, 0xd1, 0x77, 0x61, 0xf8, 0xa9, 0xd5, 0xee, 0x62, 0x7e, - 0x8c, 0x9c, 0x0d, 0x15, 0x23, 0xf5, 0x80, 0x7c, 0x1a, 0x98, 0x66, 0xc4, 0x64, 0x40, 0x1f, 0xe6, - 0xdf, 0xcf, 0x19, 0x1f, 0xc1, 0x62, 0xbc, 0x37, 0xfc, 0x1e, 0xdd, 0x4b, 0xb5, 0x64, 0xac, 0xc0, - 0xdc, 0x1a, 0x0e, 0xe8, 0xc2, 0xa5, 0x9b, 0x48, 0x31, 0x3a, 0x89, 0xec, 0xb3, 0x8c, 0x17, 0x14, - 0xa3, 0x0e, 0xf3, 0x11, 0x2a, 0xbc, 0xfd, 0x0f, 0x61, 0x94, 0x17, 0xc9, 0x13, 0x95, 0x9b, 0xe1, - 0xe1, 0x7d, 0x5e, 0xb1, 0xb7, 0xcc, 0xd6, 0x2d, 0xa7, 0x6c, 0x0a, 0x04, 0xe3, 0x10, 0xce, 0x92, - 0xcf, 0x6c, 0x48, 0x55, 0x2e, 0xc7, 0xf3, 0x30, 0xde, 0x21, 0x82, 0x82, 0x6f, 0xff, 0x98, 0x2d, - 0xa3, 0x61, 0x73, 0x8c, 0x14, 0xd4, 0xed, 0x1f, 0x63, 0x74, 0x01, 0x80, 0x56, 0xd2, 0x61, 0xf2, - 0x53, 0x80, 0x82, 0x33, 0x5d, 0x1a, 0x02, 0x6a, 0xdd, 0xc3, 0xd6, 0x8d, 0x49, 0xff, 0x36, 0x3c, - 0x58, 0x88, 0xb5, 0xc4, 0x07, 0x70, 0x0b, 0xc6, 0x78, 0xc7, 0xfc, 0x88, 0x96, 0x5b, 0x1d, 0x81, - 0x29, 0x81, 0xd0, 0x35, 0x98, 0x71, 0xf0, 0xf3, 0xa0, 0x11, 0xeb, 0xc3, 0x14, 0x29, 0xae, 0x89, - 0x7e, 0x18, 0xbf, 0x40, 0x35, 0x9b, 0x75, 0xc7, 0x7d, 0xf6, 0xb8, 0x6d, 0x3d, 0xc1, 0xb1, 0x86, - 0x3f, 0x81, 0xb1, 0x7a, 0xef, 0x86, 0xd9, 0xf6, 0x11, 0x8d, 0x9b, 0x12, 0xc5, 0x68, 0x43, 0x91, - 0x0c, 0x89, 0x5c, 0x7f, 0x37, 0x5a, 0xb5, 0x6f, 0x9b, 0x81, 0x4f, 0xe1, 0x7c, 0x62, 0x6b, 0xdf, - 0x36, 0x13, 0xff, 0x2c, 0x0f, 0x0b, 0xec, 0x63, 0x12, 0x5f, 0xc1, 0xfd, 0x1f, 0x35, 0x3f, 0x97, - 0xf7, 0xbf, 0xdb, 0x09, 0xef, 0x7f, 0x14, 0x45, 0x7d, 0xff, 0xd3, 0x5e, 0xfd, 0xde, 0x4f, 0x7e, - 0xf5, 0xa3, 0xd7, 0x62, 0xfd, 0xd5, 0x2f, 0xfa, 0xd6, 0xb7, 0x9a, 0xfe, 0xd6, 0x47, 0x5f, 0x3e, - 0x12, 0xde, 0xfa, 0x12, 0x5e, 0xf8, 0x98, 0xf0, 0x6b, 0xec, 0xc1, 0x62, 0x9c, 0xc5, 0xaf, 0x61, - 0x7b, 0xff, 0x41, 0x0e, 0x2e, 0x70, 0x41, 0x20, 0xb2, 0x09, 0x4e, 0x3f, 0x83, 0xef, 0xc2, 0x24, - 0xc7, 0xdd, 0x09, 0x17, 0x4b, 0xe5, 0xcc, 0xc9, 0x71, 0x69, 0x4a, 0x1c, 0x58, 0xec, 0xd4, 0xd3, - 0xc0, 0xd0, 0xbb, 0x8a, 0xa6, 0x95, 0x69, 0xef, 0xc9, 0xfd, 0x60, 0x9c, 0xa9, 0x64, 0x53, 0xf5, - 0xad, 0xc6, 0x37, 0x70, 0x31, 0xad, 0xe3, 0xaf, 0x81, 0x2f, 0xff, 0x2a, 0x07, 0xe7, 0x39, 0x79, - 0x6d, 0x3b, 0xbd, 0xd4, 0xc9, 0x7c, 0x0a, 0x73, 0xc0, 0xfb, 0x30, 0x41, 0x1a, 0x14, 0xfd, 0x1e, - 0xe4, 0x9f, 0x1f, 0x2e, 0x5d, 0x87, 0x35, 0x2b, 0x56, 0x60, 0x71, 0x03, 0x07, 0xeb, 0xa8, 0xdd, - 0x10, 0xfd, 0x57, 0x91, 0x8d, 0xef, 0xc3, 0x52, 0xf2, 0x10, 0x5e, 0x03, 0x7f, 0xee, 0x43, 0x31, - 0xe1, 0xe0, 0x7c, 0xb9, 0xef, 0xd6, 0x57, 0x70, 0x3e, 0x91, 0xd6, 0x6b, 0xe8, 0xe6, 0x3a, 0xf9, - 0x2a, 0x07, 0xaf, 0x61, 0x0a, 0x8d, 0x47, 0x70, 0x2e, 0x81, 0xd2, 0x6b, 0xe8, 0xe2, 0x1a, 0x2c, - 0x48, 0x69, 0xf4, 0x95, 0x7a, 0xf8, 0x10, 0x2e, 0x30, 0x42, 0xaf, 0x67, 0x56, 0x1e, 0xc0, 0x79, - 0x4e, 0xee, 0x35, 0x70, 0x6f, 0x1d, 0x96, 0xc2, 0x4b, 0x67, 0x82, 0x2c, 0xd1, 0xf7, 0x21, 0x63, - 0x6c, 0xc2, 0xa5, 0x90, 0x52, 0xca, 0x87, 0xb5, 0x7f, 0x6a, 0x4c, 0x64, 0x0a, 0x67, 0xe9, 0xb5, - 0xcc, 0xe8, 0x23, 0x38, 0xab, 0x11, 0x7d, 0x6d, 0xe2, 0xc4, 0x06, 0xcc, 0x32, 0xc2, 0xba, 0x78, - 0xb9, 0xac, 0x8a, 0x97, 0x13, 0xcb, 0x67, 0x42, 0x92, 0xb4, 0x78, 0xef, 0x6e, 0x82, 0xc4, 0xf9, - 0x90, 0x4a, 0x9c, 0x02, 0x24, 0xec, 0xe1, 0xbb, 0x30, 0xc2, 0x4a, 0x78, 0xff, 0x12, 0x88, 0x31, - 0x81, 0x9a, 0xa1, 0x71, 0x60, 0xe3, 0x07, 0x70, 0x81, 0xdd, 0xd6, 0xc2, 0xe7, 0x05, 0xfd, 0x46, - 0xf5, 0x49, 0xe4, 0xb2, 0x76, 0x8e, 0xd3, 0x8d, 0xc2, 0xa7, 0xdc, 0xd9, 0xf6, 0xc5, 0xda, 0x4e, - 0xa3, 0xdf, 0x97, 0xeb, 0x86, 0xb8, 0x84, 0xe5, 0x13, 0x2f, 0x61, 0x57, 0xe0, 0xb2, 0xbc, 0x84, - 0x45, 0x9b, 0x91, 0x4f, 0x66, 0xdf, 0x87, 0xf3, 0x6c, 0xa0, 0xc2, 0x68, 0x4b, 0xef, 0xc6, 0x47, - 0x91, 0x61, 0x2e, 0xf0, 0x61, 0xea, 0xd0, 0x29, 0x83, 0xfc, 0xeb, 0x39, 0xb1, 0xe5, 0x92, 0x89, - 0xff, 0xbc, 0x6f, 0xa5, 0x5b, 0x50, 0x92, 0x0c, 0xd1, 0x7b, 0xf4, 0x72, 0x57, 0xd2, 0x87, 0x30, - 0xaf, 0x92, 0xb1, 0x9b, 0x78, 0xef, 0x0e, 0xd5, 0xfb, 0xbe, 0x43, 0xb6, 0x05, 0x2d, 0x10, 0xcb, - 0x6e, 0x31, 0x81, 0x6f, 0x14, 0xde, 0x94, 0x90, 0x46, 0x03, 0x96, 0xe2, 0x53, 0x61, 0x37, 0x85, - 0xbd, 0x2e, 0xfa, 0x8c, 0x6c, 0x61, 0x5a, 0xc2, 0x27, 0x23, 0x95, 0xa8, 0xd8, 0xc7, 0x0c, 0x5d, - 0x60, 0x19, 0x86, 0x38, 0x6a, 0x22, 0xe3, 0x27, 0xad, 0x8b, 0xf5, 0xf0, 0x4b, 0x80, 0x44, 0x55, - 0xb5, 0x6e, 0x8a, 0xa6, 0xcf, 0xc1, 0x60, 0xb5, 0x6e, 0x72, 0x37, 0x01, 0x7a, 0x2b, 0x6e, 0xfa, - 0x9e, 0x49, 0xca, 0xa2, 0x52, 0x6b, 0xbe, 0x0f, 0xa9, 0xf5, 0xfe, 0xd0, 0xd8, 0x60, 0x61, 0xc8, - 0x44, 0x75, 0xfb, 0xc0, 0x79, 0x64, 0x07, 0x87, 0xb2, 0xc1, 0xb2, 0xf1, 0x35, 0xcc, 0x6a, 0xcd, - 0xf3, 0x5d, 0x9c, 0xe9, 0xdf, 0x80, 0xae, 0xc1, 0x68, 0xb5, 0x4c, 0x6d, 0x1f, 0xe8, 0xb5, 0x7e, - 0x92, 0x9d, 0x37, 0x4d, 0xab, 0x41, 0xdd, 0xdb, 0x4c, 0x51, 0x69, 0xfc, 0xc3, 0x21, 0x85, 0xba, - 0xe2, 0x35, 0x92, 0x31, 0xba, 0x3b, 0x00, 0x6c, 0x85, 0x28, 0x83, 0x23, 0x02, 0xe0, 0x04, 0x7f, - 0xae, 0x65, 0x47, 0xb2, 0xa9, 0x00, 0xf5, 0xeb, 0x55, 0xc2, 0x2d, 0x3c, 0x19, 0x92, 0xb0, 0x69, - 0x90, 0x16, 0x9e, 0x9c, 0xb4, 0x6f, 0xaa, 0x40, 0xe8, 0x07, 0x51, 0xe3, 0xe7, 0x61, 0xaa, 0xe4, - 0x7f, 0x43, 0xbc, 0x3b, 0xc5, 0xc7, 0x76, 0x3a, 0xfb, 0xe7, 0x67, 0x30, 0x4f, 0x70, 0xed, 0xc7, - 0xd4, 0xc2, 0x79, 0xf5, 0x79, 0x80, 0x1d, 0x76, 0xb6, 0x8f, 0xd0, 0x76, 0xae, 0x66, 0xb4, 0x13, - 0x02, 0x73, 0x1d, 0x75, 0x48, 0xa7, 0x81, 0x65, 0x9d, 0x99, 0x4c, 0x9f, 0x2e, 0x22, 0x73, 0x73, - 0xd5, 0x69, 0x75, 0x5c, 0x5b, 0x5e, 0x2a, 0xd8, 0x22, 0xf2, 0xda, 0x0d, 0xcc, 0xcb, 0x4d, 0x15, - 0xc8, 0xb8, 0x96, 0x69, 0x1e, 0x3c, 0x06, 0x43, 0x3b, 0xd5, 0x9d, 0xcd, 0x42, 0xce, 0xb8, 0x05, - 0xa0, 0xb4, 0x04, 0x30, 0xb2, 0xb5, 0x6d, 0x3e, 0x2c, 0x6f, 0x16, 0x06, 0xd0, 0x3c, 0x9c, 0x79, - 0xb4, 0xb1, 0xb5, 0xb2, 0xfd, 0xa8, 0xde, 0xa8, 0x3f, 0x2c, 0x9b, 0x3b, 0xd5, 0xb2, 0xb9, 0x52, - 0xc8, 0x19, 0xdf, 0xc0, 0x9c, 0x3e, 0xc2, 0xd7, 0xba, 0x08, 0x03, 0x98, 0x95, 0xf2, 0xcc, 0xfd, - 0x47, 0x3b, 0x8a, 0xd9, 0x21, 0xbf, 0x20, 0x45, 0x4d, 0x13, 0xf8, 0x55, 0x8a, 0x6f, 0x23, 0x05, - 0x48, 0x33, 0x28, 0xc9, 0x67, 0x1a, 0x94, 0x18, 0xdf, 0x83, 0x39, 0xbd, 0xd5, 0x7e, 0x35, 0x39, - 0x6f, 0x50, 0x7b, 0x4c, 0xc5, 0x6d, 0x80, 0xdc, 0xd4, 0xc3, 0x2e, 0xf2, 0x93, 0xf5, 0x7b, 0x50, - 0xe0, 0x50, 0xe1, 0x97, 0xf7, 0x8a, 0x50, 0xb5, 0xe5, 0x12, 0x5c, 0x9c, 0x84, 0xd9, 0xaf, 0x0b, - 0x05, 0x72, 0x62, 0x72, 0x4c, 0xd6, 0xc0, 0x1c, 0x0c, 0x6f, 0x86, 0x4f, 0x1e, 0x26, 0xfb, 0x41, - 0xad, 0xe7, 0x03, 0xcb, 0x0b, 0x84, 0xb1, 0xd2, 0xb8, 0x29, 0x7f, 0xa3, 0xb7, 0x60, 0xe4, 0x9e, - 0xdd, 0x0e, 0xb8, 0xfa, 0x20, 0xfc, 0xc8, 0x13, 0xb2, 0xac, 0xc2, 0xe4, 0x00, 0x86, 0x09, 0x67, - 0x94, 0x06, 0x4f, 0xd1, 0x55, 0xb4, 0x08, 0xa3, 0x5b, 0xf8, 0xb9, 0xd2, 0xbe, 0xf8, 0x69, 0xbc, - 0x27, 0xac, 0x7d, 0x54, 0x36, 0x5d, 0xe6, 0xbe, 0x92, 0x39, 0xcd, 0x1d, 0x8c, 0x93, 0xa4, 0x55, - 0x04, 0x6f, 0xb7, 0xd3, 0x7a, 0x49, 0x3c, 0xf2, 0xa1, 0x38, 0x25, 0xde, 0x9b, 0xe2, 0xa5, 0xa4, - 0xd7, 0x74, 0xfe, 0x61, 0x0e, 0x16, 0x23, 0xee, 0x0e, 0xd5, 0x43, 0xab, 0xdd, 0xc6, 0xce, 0x01, - 0x46, 0xd7, 0x61, 0x68, 0x67, 0x7b, 0xa7, 0xc6, 0x35, 0x89, 0xe2, 0x4d, 0x90, 0x14, 0x49, 0x18, - 0x93, 0x42, 0xa0, 0x07, 0x70, 0x46, 0x98, 0x7a, 0xca, 0x2a, 0x3e, 0x43, 0x17, 0xb2, 0x0d, 0x47, - 0xe3, 0x78, 0xe8, 0x1d, 0xee, 0x9b, 0xf1, 0xa3, 0xae, 0xed, 0xe1, 0x16, 0xd5, 0x8e, 0x84, 0xcf, - 0x9b, 0x4a, 0x8d, 0xa9, 0x82, 0x31, 0xbf, 0x39, 0xe3, 0xb7, 0x73, 0xb0, 0x90, 0xe2, 0xbe, 0x81, - 0xde, 0xd2, 0x86, 0x33, 0xab, 0x0c, 0x47, 0x80, 0xac, 0x0f, 0xf0, 0xf1, 0x54, 0x15, 0xfb, 0xd7, - 0xc1, 0x53, 0xd8, 0xbf, 0xae, 0x0f, 0x84, 0x36, 0xaf, 0x15, 0x80, 0x31, 0x51, 0x6e, 0xcc, 0xc0, - 0x94, 0xc6, 0x37, 0xc3, 0x80, 0x49, 0xb5, 0x65, 0x32, 0x39, 0x55, 0xb7, 0x25, 0x27, 0x87, 0xfc, - 0x6d, 0xfc, 0xcd, 0x1c, 0xcc, 0xd1, 0x21, 0x1e, 0xd8, 0xe4, 0xe8, 0x0b, 0x39, 0xb4, 0xac, 0x8d, - 0x64, 0x49, 0x1b, 0x49, 0x04, 0x56, 0x0e, 0xe9, 0xc3, 0xd8, 0x90, 0x96, 0x92, 0x86, 0x44, 0x97, - 0xb7, 0xed, 0x3a, 0xda, 0x48, 0x94, 0xe7, 0x9a, 0xdf, 0xc9, 0xc1, 0xac, 0xd2, 0x27, 0xd9, 0xff, - 0x3b, 0x5a, 0x97, 0xce, 0x27, 0x74, 0x29, 0xc6, 0xe4, 0x4a, 0xac, 0x47, 0x6f, 0x64, 0xf5, 0xa8, - 0x27, 0x8f, 0xff, 0x73, 0x0e, 0xe6, 0x13, 0x79, 0x80, 0xce, 0x12, 0xd9, 0xb6, 0xe9, 0xe1, 0x80, - 0xb3, 0x97, 0xff, 0x22, 0xe5, 0x1b, 0xbe, 0xdf, 0xc5, 0x1e, 0xdf, 0xe7, 0xfc, 0x17, 0x7a, 0x03, - 0xa6, 0x6a, 0xd8, 0xb3, 0xdd, 0x16, 0xb3, 0x8c, 0x66, 0xe6, 0x5c, 0x53, 0xa6, 0x5e, 0x88, 0x96, - 0x60, 0xbc, 0xdc, 0x3e, 0x70, 0x3d, 0x3b, 0x38, 0x64, 0x2f, 0x66, 0xe3, 0x66, 0x58, 0x40, 0x68, - 0xaf, 0xd8, 0x07, 0xc2, 0x42, 0x71, 0xca, 0xe4, 0xbf, 0xc8, 0xe1, 0x22, 0x34, 0x6a, 0x23, 0xec, - 0x70, 0xe1, 0x3f, 0x09, 0xc6, 0x17, 0x26, 0x5d, 0x04, 0xd4, 0x9f, 0xd8, 0xe4, 0xbf, 0xd0, 0x34, - 0xb5, 0x6d, 0xa5, 0xde, 0xc2, 0xd4, 0xa6, 0xf5, 0x43, 0x98, 0x4b, 0xe2, 0x6b, 0xd2, 0x12, 0xe2, - 0xb8, 0x79, 0x89, 0xfb, 0x97, 0xf3, 0x30, 0x5b, 0x6e, 0xb5, 0x1e, 0xde, 0x2b, 0xb3, 0x87, 0x79, - 0x71, 0x36, 0xbc, 0x03, 0x43, 0x1b, 0x0e, 0x3f, 0x88, 0x15, 0x9b, 0x85, 0x38, 0x24, 0x81, 0x22, - 0x33, 0x48, 0xfe, 0x47, 0x26, 0xcc, 0xae, 0x3e, 0xb7, 0xfd, 0xc0, 0x76, 0x0e, 0x54, 0x6f, 0xaa, - 0x7c, 0x3f, 0xde, 0x54, 0xeb, 0x03, 0x66, 0x12, 0x32, 0xda, 0x81, 0xb3, 0x5b, 0xf8, 0x59, 0xc2, - 0x12, 0x93, 0x4e, 0xa6, 0xca, 0x41, 0x10, 0x5b, 0x59, 0x29, 0xb8, 0xea, 0x0a, 0xfe, 0xf5, 0x3c, - 0xf5, 0x41, 0x57, 0x06, 0xc6, 0x5b, 0xde, 0x85, 0x39, 0xa5, 0x43, 0xe1, 0x39, 0xc6, 0x78, 0x52, - 0x4a, 0x1e, 0x8e, 0xba, 0xd1, 0x12, 0xd1, 0xd1, 0x23, 0x58, 0xd0, 0x3b, 0x15, 0x52, 0xd6, 0x37, - 0x4b, 0x12, 0xc8, 0xfa, 0x80, 0x99, 0x86, 0x8d, 0x96, 0x61, 0xb0, 0xdc, 0x7c, 0xc2, 0xd9, 0x92, - 0x3c, 0x65, 0x6c, 0x64, 0xe5, 0xe6, 0x93, 0xf5, 0x01, 0x93, 0x00, 0x6b, 0xfb, 0xe5, 0xdf, 0xe4, - 0x60, 0x21, 0x65, 0x86, 0xd1, 0x45, 0x00, 0x56, 0xa8, 0x7c, 0x31, 0x94, 0x12, 0x22, 0x2d, 0x73, - 0xcb, 0x8e, 0x17, 0x1d, 0x36, 0x33, 0xd3, 0xd2, 0x5f, 0x33, 0xac, 0x30, 0x15, 0x20, 0x54, 0x13, - 0x86, 0x54, 0xcc, 0x6d, 0x54, 0x3f, 0xd6, 0x95, 0x1a, 0xcd, 0x82, 0x2a, 0xea, 0x2e, 0xaa, 0x92, - 0xe0, 0xfa, 0xe5, 0x6a, 0x74, 0x14, 0x72, 0xd0, 0xe8, 0x3a, 0x8c, 0xb0, 0x42, 0x3e, 0x87, 0x22, - 0x86, 0x43, 0x08, 0xcc, 0xeb, 0x8d, 0xbf, 0x97, 0x83, 0xb3, 0xec, 0x8b, 0x19, 0xdb, 0x1a, 0xdf, - 0xd3, 0xb6, 0xc6, 0x65, 0xd9, 0xe1, 0x24, 0x60, 0x6d, 0x77, 0x54, 0x74, 0x1f, 0xc3, 0x7e, 0x77, - 0x85, 0x8a, 0xa4, 0xae, 0xdb, 0x7f, 0x90, 0x13, 0xea, 0xb6, 0xf8, 0xd2, 0x5d, 0x85, 0xc9, 0x97, - 0x5b, 0xb2, 0x1a, 0x1a, 0x7a, 0x97, 0xad, 0xa8, 0x7c, 0xf6, 0x48, 0x33, 0x17, 0xd5, 0xc7, 0x50, - 0x4c, 0x67, 0x4d, 0xaf, 0x65, 0x65, 0xdc, 0x4b, 0xc0, 0x7e, 0x99, 0xe9, 0xfc, 0xf3, 0x5c, 0x8c, - 0x50, 0xfd, 0x85, 0xd3, 0x14, 0x53, 0x7a, 0x2d, 0x6a, 0xf5, 0x9f, 0x6a, 0x49, 0xad, 0x76, 0x37, - 0x1f, 0x3e, 0xec, 0xf0, 0xd5, 0x49, 0x45, 0x6f, 0x75, 0x5b, 0x74, 0x93, 0x0f, 0xc4, 0xc1, 0xbe, - 0xdc, 0x4b, 0x69, 0xf4, 0x0b, 0xcc, 0xd1, 0x1b, 0x29, 0x7e, 0xa6, 0x49, 0xf4, 0x8d, 0xdf, 0x18, - 0xd4, 0xf7, 0xc0, 0xcb, 0x8c, 0xb5, 0x06, 0x13, 0x55, 0xd7, 0x09, 0xf0, 0xf3, 0x40, 0x89, 0x6d, - 0x80, 0xa4, 0x1d, 0x89, 0xac, 0xe1, 0x97, 0x3e, 0x56, 0xd0, 0x20, 0x37, 0x10, 0xcd, 0xf2, 0x2f, - 0x04, 0x44, 0x55, 0x98, 0xda, 0xc2, 0xcf, 0x62, 0x0c, 0xa4, 0xd6, 0x87, 0x0e, 0x7e, 0xd6, 0x50, - 0x98, 0xa8, 0x5a, 0x38, 0x6a, 0x38, 0x68, 0x1f, 0xa6, 0xc5, 0xf9, 0xd7, 0xef, 0x67, 0x80, 0x79, - 0xff, 0x93, 0x16, 0x52, 0x78, 0x18, 0xa1, 0xf8, 0xfa, 0x4f, 0x26, 0xa3, 0x06, 0x8b, 0xf1, 0xf9, - 0xe0, 0xad, 0xbd, 0xd3, 0x6b, 0x15, 0x33, 0x0d, 0x5b, 0x4b, 0x5f, 0xd1, 0xeb, 0x54, 0xeb, 0x29, - 0x61, 0xe4, 0x15, 0xea, 0x76, 0x74, 0x7a, 0xa9, 0xd9, 0xac, 0x98, 0x5e, 0xd5, 0x8a, 0x4a, 0x78, - 0xb3, 0x54, 0xa9, 0xe2, 0x58, 0xa5, 0xc4, 0x3b, 0x76, 0x03, 0x46, 0x79, 0x51, 0x24, 0xe4, 0x4d, - 0xb8, 0xbf, 0x04, 0x80, 0xf1, 0xbb, 0x39, 0x38, 0x47, 0xd5, 0xd8, 0xb6, 0x73, 0xd0, 0xc6, 0xbb, - 0xbe, 0xee, 0x90, 0xf2, 0xb6, 0x76, 0x64, 0x2e, 0xa4, 0x38, 0x1f, 0x7f, 0x5b, 0x07, 0xe5, 0xef, - 0xe5, 0xa0, 0x98, 0xd4, 0xb7, 0xd7, 0x7b, 0x56, 0xde, 0xe4, 0x3a, 0x82, 0xbc, 0x66, 0x40, 0x2a, - 0xdb, 0x14, 0x83, 0x25, 0x83, 0x24, 0xff, 0x6b, 0x87, 0xe4, 0x3f, 0xcf, 0xc3, 0xdc, 0x86, 0xaf, - 0x5e, 0x65, 0x38, 0xe3, 0x6e, 0x26, 0x05, 0x90, 0xa0, 0xf3, 0xba, 0x3e, 0x90, 0x14, 0x20, 0xe2, - 0x1d, 0xc5, 0x55, 0x37, 0x9f, 0x15, 0x19, 0x82, 0x08, 0xcd, 0xd2, 0x59, 0xf7, 0x1a, 0x0c, 0x6d, - 0x11, 0x41, 0x71, 0x90, 0xaf, 0x3f, 0x86, 0x41, 0x8a, 0xa8, 0xab, 0x2c, 0xe9, 0x32, 0xf9, 0x81, - 0xee, 0xc5, 0x1c, 0x72, 0x87, 0x7a, 0x47, 0x3e, 0x58, 0x1f, 0x88, 0xf9, 0xe6, 0xbe, 0x07, 0x13, - 0xe5, 0xd6, 0x91, 0xed, 0x94, 0xa9, 0x93, 0x7f, 0xe4, 0x68, 0x51, 0x6a, 0xc8, 0x9c, 0x2a, 0x3f, - 0x2b, 0x63, 0x30, 0xb2, 0x63, 0x79, 0x07, 0x38, 0x30, 0xbe, 0x0f, 0x45, 0x6e, 0x1f, 0xc6, 0x1e, - 0x14, 0xa8, 0x15, 0x99, 0x1f, 0x9a, 0x00, 0x66, 0xd9, 0x74, 0x5d, 0x04, 0xa0, 0xea, 0x83, 0x0d, - 0xa7, 0x85, 0x9f, 0x33, 0x33, 0x46, 0x53, 0x29, 0x31, 0xde, 0x85, 0x71, 0x39, 0x74, 0x7a, 0x47, - 0x56, 0x64, 0x68, 0xca, 0x86, 0x39, 0xcd, 0xb5, 0x58, 0xf8, 0x13, 0x9f, 0xd3, 0x06, 0xc5, 0xc3, - 0xb6, 0xb0, 0x4b, 0xb5, 0x0d, 0xf3, 0x91, 0xd9, 0x0d, 0xe3, 0x02, 0xc8, 0x6b, 0x2d, 0x35, 0x79, - 0x34, 0xe5, 0xef, 0xe8, 0xad, 0x37, 0xdf, 0xd7, 0xad, 0xd7, 0xa8, 0xc2, 0x99, 0xd8, 0x92, 0x43, - 0x88, 0xba, 0xe4, 0x33, 0xed, 0x15, 0xf9, 0x46, 0xd7, 0xeb, 0xeb, 0xa4, 0x6c, 0x67, 0xb3, 0xce, - 0x9c, 0xbf, 0x48, 0xd9, 0xce, 0x66, 0xbd, 0x32, 0xc2, 0x96, 0xb0, 0xf1, 0x4f, 0xf3, 0x54, 0xa9, - 0x13, 0x63, 0x6a, 0x44, 0x3f, 0xae, 0xea, 0xe8, 0x2b, 0x30, 0x4e, 0x59, 0xb8, 0x22, 0xbc, 0x29, - 0xb3, 0x6d, 0xa4, 0xc6, 0x7e, 0x72, 0x5c, 0x1a, 0xa0, 0x86, 0x51, 0x21, 0x1a, 0xfa, 0x14, 0x46, - 0x57, 0x9d, 0x16, 0xa5, 0x30, 0x78, 0x0a, 0x0a, 0x02, 0x89, 0x4c, 0x2c, 0xed, 0x32, 0x91, 0x2e, - 0xb9, 0x5a, 0xd5, 0x54, 0x4a, 0x42, 0xed, 0xd2, 0x70, 0x9a, 0x76, 0x69, 0x24, 0xa2, 0x5d, 0x32, - 0x60, 0x78, 0xdb, 0x6b, 0xf1, 0x98, 0x2d, 0xd3, 0xcb, 0x93, 0x9c, 0xfb, 0xb4, 0xcc, 0x64, 0x55, - 0xc6, 0x7f, 0xcf, 0xc1, 0xc2, 0x1a, 0x0e, 0x12, 0x17, 0xa2, 0xc6, 0x95, 0xdc, 0x2b, 0x73, 0x25, - 0xff, 0x32, 0x5c, 0x91, 0xa3, 0x1e, 0x4c, 0x1b, 0xf5, 0x50, 0xda, 0xa8, 0x87, 0xd3, 0x47, 0xbd, - 0x06, 0x23, 0x6c, 0xa8, 0xe8, 0x0a, 0x0c, 0x6f, 0x04, 0xf8, 0x28, 0xd4, 0xa0, 0xa9, 0x16, 0x9e, - 0x26, 0xab, 0x23, 0x97, 0xdc, 0x4d, 0xcb, 0x57, 0x35, 0x68, 0xfc, 0xa7, 0xf1, 0x43, 0xea, 0x87, - 0xbd, 0xe9, 0x36, 0x9f, 0x28, 0x2f, 0x31, 0xa3, 0x6c, 0x9b, 0x47, 0x5f, 0xee, 0x08, 0x14, 0xab, - 0x31, 0x05, 0x04, 0xba, 0x04, 0x13, 0x1b, 0xce, 0x3d, 0xd7, 0x6b, 0xe2, 0x6d, 0xa7, 0xcd, 0xa8, - 0x8f, 0x99, 0x6a, 0x11, 0xd7, 0x50, 0xf2, 0x16, 0x42, 0xb5, 0x1f, 0x2d, 0x88, 0xa8, 0xfd, 0x48, - 0xd9, 0xde, 0xb2, 0xc9, 0xea, 0xb8, 0x02, 0x94, 0xfc, 0x9d, 0xa5, 0x31, 0x93, 0xaa, 0xb5, 0x5e, - 0x80, 0xfb, 0x70, 0xce, 0xc4, 0x9d, 0xb6, 0x45, 0x64, 0xd8, 0x23, 0x97, 0xc1, 0xcb, 0x31, 0x5f, - 0x4a, 0xf0, 0x4f, 0xd3, 0xed, 0x7d, 0x64, 0x97, 0xf3, 0x19, 0x5d, 0x3e, 0x82, 0xcb, 0x6b, 0x38, - 0xd0, 0x8f, 0xdb, 0xf0, 0x9d, 0x87, 0x0f, 0x7e, 0x1d, 0xc6, 0x7c, 0xfd, 0x8d, 0xea, 0xa2, 0x78, - 0x1a, 0x4d, 0x42, 0xdc, 0xbb, 0x2b, 0x5e, 0x71, 0x39, 0x1d, 0xf9, 0x97, 0xf1, 0x19, 0x94, 0xd2, - 0x9a, 0xeb, 0xcf, 0x1c, 0xdb, 0x86, 0x4b, 0xe9, 0x04, 0xe4, 0xf7, 0x59, 0xbc, 0x67, 0x49, 0x6d, - 0x44, 0x76, 0x6f, 0xf5, 0x27, 0x30, 0xfe, 0x87, 0x51, 0x11, 0x86, 0xa9, 0xaf, 0xd0, 0xdd, 0x06, - 0x35, 0x15, 0xd1, 0x09, 0x84, 0x7c, 0x2d, 0xc3, 0x98, 0x28, 0xe3, 0x7c, 0x5d, 0x48, 0xec, 0xa9, - 0x60, 0x68, 0x4b, 0x10, 0x90, 0x68, 0xc6, 0x0f, 0xc5, 0xb3, 0xa9, 0x8e, 0xd1, 0x9f, 0xd3, 0x6d, - 0x3f, 0xef, 0xa4, 0x86, 0x0b, 0xe7, 0x74, 0xda, 0xea, 0x73, 0x58, 0x41, 0x79, 0x0e, 0x63, 0xaf, - 0x60, 0x97, 0xf4, 0xe7, 0x99, 0x3c, 0x5f, 0x97, 0x61, 0x11, 0xba, 0xa8, 0x3e, 0x7a, 0x4d, 0xc6, - 0xbd, 0x94, 0x6f, 0x43, 0x31, 0xa9, 0x41, 0x45, 0x47, 0x25, 0x5f, 0x56, 0x78, 0xd0, 0xb2, 0x5f, - 0xc9, 0x81, 0xa1, 0x59, 0xff, 0xd1, 0x19, 0xaa, 0x79, 0xee, 0x53, 0xbb, 0xa5, 0x3c, 0xd8, 0xbe, - 0xa5, 0x3d, 0x16, 0x30, 0xdf, 0xbb, 0xa8, 0xe3, 0x01, 0x3f, 0xed, 0x6e, 0x47, 0x14, 0xf8, 0x4c, - 0x28, 0xa6, 0x16, 0x81, 0x4f, 0xb0, 0xea, 0xbb, 0x22, 0x15, 0xfb, 0xff, 0x33, 0x07, 0x57, 0x32, - 0xfb, 0xc0, 0xfb, 0xbf, 0x0f, 0x85, 0x68, 0x1d, 0x9f, 0xfb, 0x92, 0x62, 0xe9, 0x14, 0xa7, 0xb0, - 0x77, 0x87, 0x79, 0x37, 0x08, 0xab, 0xb9, 0x8e, 0xa4, 0x1c, 0xa3, 0x77, 0xfa, 0xde, 0xa3, 0x0f, - 0x00, 0x76, 0xdc, 0xc0, 0x6a, 0x57, 0xa9, 0x5a, 0x71, 0x30, 0xf4, 0x54, 0x09, 0x48, 0x69, 0x23, - 0x1a, 0x8c, 0x43, 0x01, 0x36, 0x3e, 0xa7, 0x3b, 0x32, 0xb9, 0xd3, 0xfd, 0x6d, 0x92, 0x2a, 0x5c, - 0x89, 0x58, 0xdb, 0xbc, 0x04, 0x91, 0x00, 0xe6, 0x09, 0xfb, 0x89, 0x08, 0xb3, 0xe6, 0xb9, 0xdd, - 0xce, 0xcf, 0x67, 0xd6, 0xff, 0x7d, 0x8e, 0x99, 0x08, 0xab, 0xcd, 0xf2, 0x89, 0xae, 0x02, 0x84, - 0xa5, 0x11, 0x57, 0x11, 0x59, 0xb1, 0x77, 0x87, 0xa9, 0x03, 0xe8, 0x3b, 0xdc, 0x01, 0x23, 0xa0, - 0xa0, 0xfd, 0x7c, 0x67, 0xf2, 0x2e, 0x35, 0xb1, 0x91, 0xad, 0xf7, 0xc7, 0xf7, 0xf7, 0x84, 0xda, - 0xeb, 0x94, 0x78, 0x87, 0x30, 0x47, 0xf6, 0x2e, 0xb9, 0x2a, 0xb9, 0x9e, 0x1d, 0x08, 0xa7, 0x27, - 0x54, 0xe3, 0x81, 0x0e, 0x18, 0xd6, 0xc7, 0x3f, 0x3b, 0x2e, 0xbd, 0x7f, 0x1a, 0xaf, 0x71, 0x41, - 0x73, 0x47, 0x06, 0x47, 0x30, 0x16, 0x60, 0xb0, 0x6a, 0x6e, 0xd2, 0xa3, 0xca, 0xdc, 0x94, 0x47, - 0x95, 0xb9, 0x69, 0xfc, 0xb7, 0x3c, 0x94, 0x58, 0x28, 0x16, 0x6a, 0x99, 0x15, 0x5e, 0xda, 0x14, - 0x53, 0xaf, 0x7e, 0x95, 0x1f, 0x91, 0x50, 0x2b, 0xf9, 0x7e, 0x42, 0xad, 0xfc, 0xe2, 0xcb, 0x2b, - 0xaa, 0x2b, 0x6f, 0x9e, 0x1c, 0x97, 0xae, 0x84, 0x1a, 0x0a, 0x56, 0x9b, 0xa4, 0xaa, 0x48, 0x69, - 0x22, 0xae, 0x5b, 0x19, 0x7a, 0x09, 0xdd, 0xca, 0x6d, 0x18, 0xa5, 0x77, 0x99, 0x8d, 0x1a, 0xb7, - 0x27, 0xa6, 0xcb, 0x93, 0x46, 0x4d, 0x6a, 0xd8, 0x6a, 0x80, 0x3a, 0x01, 0x66, 0xfc, 0xad, 0x3c, - 0x5c, 0x4a, 0xe7, 0x39, 0xef, 0xdb, 0x0a, 0x40, 0x68, 0x13, 0x96, 0x65, 0x83, 0x46, 0xf7, 0xce, - 0x33, 0xbc, 0x2f, 0x6d, 0x40, 0x15, 0x3c, 0x22, 0xb5, 0x08, 0x8f, 0xe2, 0xc8, 0x03, 0xa4, 0xe6, - 0x68, 0xcc, 0xe3, 0x9f, 0xf2, 0x22, 0x2d, 0xfe, 0x29, 0x2f, 0x43, 0xfb, 0xb0, 0x50, 0xf3, 0xec, - 0xa7, 0x56, 0x80, 0x1f, 0xe0, 0x17, 0xcc, 0x05, 0x6d, 0x95, 0xfb, 0x9d, 0x31, 0x37, 0xf1, 0xeb, - 0x27, 0xc7, 0xa5, 0x37, 0x3a, 0x0c, 0x84, 0x6c, 0xcc, 0x06, 0xf3, 0x71, 0x6c, 0xc4, 0x5d, 0xd1, - 0xd2, 0x08, 0x19, 0xff, 0x2e, 0x07, 0xe7, 0xa9, 0x40, 0xcd, 0x1f, 0x73, 0x44, 0xe3, 0x2f, 0x65, - 0x8a, 0xac, 0x0e, 0x90, 0xaf, 0x45, 0x6a, 0x8a, 0xac, 0x79, 0x5c, 0x9b, 0x1a, 0x18, 0xda, 0x80, - 0x09, 0xfe, 0x5b, 0xd1, 0xc8, 0xcf, 0x2b, 0x07, 0x16, 0x5d, 0xea, 0x4c, 0x8d, 0x45, 0x17, 0x36, - 0x27, 0x46, 0xdd, 0x42, 0x4d, 0x15, 0xd7, 0xf8, 0x69, 0x1e, 0x96, 0xf6, 0xb0, 0x67, 0x3f, 0x7e, - 0x91, 0x32, 0x98, 0x6d, 0x98, 0x13, 0x45, 0x2c, 0x1c, 0x8b, 0xb6, 0xc5, 0x58, 0x84, 0x45, 0xd1, - 0x55, 0x1e, 0xcf, 0x45, 0xec, 0xb8, 0x44, 0xc4, 0x53, 0x18, 0x19, 0xbf, 0x03, 0x63, 0x91, 0x80, - 0x48, 0x74, 0xfe, 0xc5, 0x0e, 0x0d, 0xa7, 0x6a, 0x7d, 0xc0, 0x94, 0x90, 0xe8, 0xd7, 0xd2, 0x5f, - 0x85, 0xb9, 0x4a, 0xa3, 0x97, 0x6e, 0x96, 0x6e, 0x58, 0xb2, 0x59, 0x2d, 0xa5, 0x36, 0x61, 0xc3, - 0xae, 0x0f, 0x98, 0x69, 0x2d, 0x55, 0x26, 0x60, 0xbc, 0x4c, 0x5f, 0xba, 0xc9, 0xc5, 0xfd, 0x7f, - 0xe4, 0xe1, 0xa2, 0x70, 0x27, 0x4b, 0x61, 0xf3, 0x97, 0xb0, 0x20, 0x8a, 0xca, 0x1d, 0x22, 0x30, - 0xe0, 0x96, 0xce, 0x69, 0x16, 0xe5, 0x54, 0x70, 0xda, 0xe2, 0x30, 0x21, 0xb3, 0xd3, 0xd0, 0x5f, - 0x8f, 0x66, 0xf6, 0xd3, 0xa4, 0xf0, 0x54, 0x54, 0x43, 0xaa, 0x9e, 0x99, 0x1a, 0x6b, 0xb4, 0xf3, - 0xb3, 0x15, 0xd3, 0xec, 0x0e, 0xbd, 0xaa, 0x66, 0x77, 0x7d, 0x20, 0xaa, 0xdb, 0xad, 0x4c, 0xc3, - 0xe4, 0x16, 0x7e, 0x16, 0xf2, 0xfd, 0xaf, 0xe6, 0x22, 0x21, 0x0d, 0x88, 0x84, 0xc1, 0x62, 0x1b, - 0xe4, 0xc2, 0x08, 0x47, 0x34, 0xa4, 0x81, 0x2a, 0x61, 0x30, 0xd0, 0x0d, 0x18, 0x65, 0xe6, 0x1f, - 0xad, 0x3e, 0xee, 0xe6, 0xd2, 0x2f, 0x8c, 0x39, 0xeb, 0xb6, 0xd8, 0x35, 0x9d, 0xe3, 0x1b, 0x0f, - 0xe0, 0x32, 0xf7, 0x8a, 0xd0, 0x27, 0x9f, 0x36, 0x74, 0xca, 0xcf, 0x97, 0x61, 0xc1, 0xc5, 0x35, - 0x1c, 0x3d, 0x7a, 0x34, 0xbf, 0xb9, 0xcf, 0x60, 0x46, 0x2b, 0x97, 0x14, 0xa9, 0x54, 0x2a, 0xd7, - 0x90, 0x24, 0x1d, 0x85, 0x36, 0x2e, 0x25, 0x35, 0xa1, 0x76, 0xd6, 0xc0, 0x34, 0x5c, 0xa9, 0x17, - 0x3e, 0xdc, 0xfb, 0xa7, 0x38, 0xf5, 0xae, 0x2b, 0xfb, 0x9a, 0x9d, 0x78, 0x2c, 0xa2, 0xa1, 0xf8, - 0xf2, 0xca, 0x5a, 0x63, 0x4a, 0x7b, 0xa7, 0x30, 0xa6, 0x61, 0x52, 0x54, 0xb5, 0xb1, 0xef, 0x1b, - 0xbf, 0x3a, 0x0c, 0x06, 0x67, 0x6c, 0x92, 0x1a, 0x57, 0xf0, 0x63, 0x3f, 0xd6, 0x59, 0xfe, 0xa1, - 0x3a, 0xab, 0x2a, 0xab, 0xc3, 0x5a, 0xb6, 0xf2, 0xa8, 0x9c, 0xd7, 0x0c, 0x4b, 0xb5, 0x95, 0x17, - 0x1b, 0xfd, 0xd7, 0x29, 0xc7, 0x24, 0xdb, 0x6c, 0x57, 0x4f, 0x8e, 0x4b, 0x97, 0x53, 0x8e, 0x49, - 0x8d, 0x6e, 0xf2, 0x91, 0x69, 0xea, 0xcf, 0x35, 0x83, 0x2f, 0xf3, 0x5c, 0x43, 0x76, 0xa4, 0xfa, - 0x60, 0xb3, 0xab, 0xf3, 0x92, 0xef, 0x47, 0x61, 0x28, 0xa3, 0x56, 0xf1, 0xc8, 0x02, 0x4a, 0x89, - 0x46, 0x55, 0x23, 0x83, 0x6c, 0x28, 0x28, 0x2a, 0xcb, 0xea, 0x21, 0x6e, 0x3e, 0xe1, 0x3a, 0x60, - 0xf1, 0xf2, 0x9d, 0xa4, 0x0b, 0x67, 0x11, 0x93, 0xd9, 0x3e, 0x67, 0x15, 0x8d, 0x26, 0x41, 0x55, - 0x23, 0x23, 0x44, 0xc9, 0xa2, 0x1f, 0xc3, 0xac, 0x9c, 0xea, 0x88, 0x51, 0xe3, 0xc4, 0xf2, 0x1b, - 0x61, 0x68, 0xd5, 0xa3, 0xc7, 0xd6, 0xcd, 0xa7, 0x77, 0x6e, 0x26, 0xc0, 0xb2, 0x70, 0xb8, 0x4d, - 0x51, 0xa1, 0x58, 0x34, 0xaa, 0x8f, 0x70, 0x49, 0x88, 0xca, 0x0b, 0xc4, 0x6f, 0x49, 0x17, 0x1c, - 0x22, 0x2f, 0xd8, 0x6d, 0xcc, 0xfd, 0xcd, 0xc4, 0xea, 0x4b, 0x79, 0x26, 0xcc, 0x7d, 0xcb, 0xcf, - 0x84, 0xbf, 0x9f, 0x17, 0x8e, 0x47, 0x31, 0x63, 0x82, 0xd3, 0xbf, 0x16, 0x26, 0x8e, 0xa0, 0xaf, - 0x8f, 0x69, 0xb2, 0xdd, 0x47, 0x45, 0xb3, 0x28, 0xc8, 0xa7, 0x58, 0x14, 0x68, 0xcf, 0xaf, 0x41, - 0x0f, 0x13, 0x83, 0xc1, 0x57, 0x7f, 0xc8, 0xfb, 0x97, 0xa3, 0x70, 0xa6, 0x66, 0x1d, 0xd8, 0x0e, - 0x39, 0xb4, 0x4d, 0xec, 0xbb, 0x5d, 0xaf, 0x89, 0x51, 0x19, 0xa6, 0x75, 0xab, 0xf2, 0x1e, 0x36, - 0xf3, 0xe4, 0xbb, 0xa4, 0x97, 0xa1, 0x65, 0x18, 0x97, 0xde, 0xde, 0xfc, 0x63, 0x92, 0xe0, 0x05, - 0xbe, 0x3e, 0x60, 0x86, 0x60, 0xe8, 0x03, 0xed, 0xdd, 0x66, 0x46, 0x06, 0x2e, 0xa0, 0xb0, 0xcb, - 0xcc, 0xec, 0xd7, 0x71, 0x5b, 0xfa, 0x07, 0x91, 0xbd, 0x61, 0xfc, 0x30, 0xf6, 0x94, 0x33, 0xac, - 0xf5, 0x38, 0xa6, 0xb1, 0xa2, 0xb2, 0x40, 0x6a, 0xc8, 0xea, 0x84, 0x47, 0x9e, 0xef, 0xc3, 0xc4, - 0x83, 0xee, 0x3e, 0x16, 0x8f, 0x56, 0x23, 0xfc, 0xfb, 0x18, 0xf5, 0x95, 0xe0, 0xf5, 0x7b, 0x77, - 0xd9, 0x1c, 0x3c, 0xe9, 0xee, 0xe3, 0x78, 0x2c, 0x74, 0x72, 0x30, 0x29, 0xc4, 0xd0, 0x21, 0x14, - 0xa2, 0x6e, 0x0d, 0x3c, 0xb4, 0x60, 0x86, 0x33, 0x06, 0x0d, 0xac, 0xa2, 0x44, 0x5c, 0x67, 0xc6, - 0xd6, 0x5a, 0x23, 0x31, 0xaa, 0xe8, 0x97, 0x60, 0x3e, 0x51, 0x5f, 0xc8, 0xe3, 0xae, 0xf7, 0x52, - 0x45, 0xd2, 0x43, 0x3d, 0xc2, 0x35, 0xe1, 0x29, 0xa9, 0xb5, 0x9c, 0xdc, 0x0a, 0x6a, 0xc1, 0x4c, - 0xc4, 0x5c, 0x9f, 0xa7, 0x7d, 0x48, 0x77, 0x00, 0xa0, 0x1f, 0x26, 0x11, 0x9b, 0x37, 0xb1, 0xad, - 0x28, 0x49, 0xb4, 0x09, 0xe3, 0xf2, 0xba, 0x4f, 0xc3, 0x3f, 0x25, 0xab, 0x36, 0x16, 0x4f, 0x8e, - 0x4b, 0x73, 0xa1, 0x6a, 0x43, 0xa3, 0x19, 0x12, 0x40, 0x3f, 0x86, 0xcb, 0x72, 0x89, 0x6e, 0x7b, - 0xc9, 0x4a, 0x20, 0x1e, 0xd1, 0xfd, 0x46, 0x74, 0x85, 0xa7, 0xc1, 0xef, 0xdd, 0x59, 0x1f, 0x30, - 0x7b, 0x93, 0xad, 0x00, 0x8c, 0x79, 0x7c, 0x53, 0xde, 0x1f, 0x1a, 0x1b, 0x2a, 0x0c, 0xb3, 0x75, - 0x23, 0xdc, 0x20, 0xfe, 0xd7, 0x08, 0xf3, 0x2b, 0xde, 0x75, 0xec, 0xc7, 0x76, 0xb8, 0x7f, 0x55, - 0xe5, 0x52, 0x98, 0xe2, 0x85, 0x8b, 0x7e, 0x29, 0xc9, 0x5c, 0xa4, 0x1e, 0x2a, 0xdf, 0x53, 0x0f, - 0x75, 0x57, 0x79, 0x6b, 0x51, 0xc2, 0x85, 0xb2, 0x4f, 0xbc, 0xae, 0xf7, 0x09, 0x1f, 0x61, 0xbe, - 0x81, 0x11, 0x1a, 0xb8, 0x90, 0x3d, 0x64, 0x4d, 0x2c, 0xdf, 0xe4, 0xa7, 0x56, 0x46, 0xf7, 0x59, - 0xa4, 0x43, 0x1e, 0x2b, 0x80, 0xc6, 0xe6, 0x69, 0xd3, 0x02, 0x35, 0x36, 0x0f, 0x03, 0x41, 0x3b, - 0x30, 0x5b, 0xf3, 0x70, 0x8b, 0x1b, 0xe3, 0x77, 0x3c, 0x7e, 0x37, 0x67, 0xb7, 0x7e, 0xfa, 0xc5, - 0xeb, 0x88, 0xea, 0x06, 0x96, 0xf5, 0xea, 0xf7, 0x24, 0x01, 0x1d, 0xad, 0xc2, 0x74, 0x1d, 0x5b, - 0x5e, 0xf3, 0xf0, 0x01, 0x7e, 0x41, 0xbe, 0xf6, 0x5a, 0xd6, 0x04, 0x9f, 0xd6, 0x90, 0xf1, 0xd2, - 0x2a, 0xd5, 0xfc, 0x42, 0x47, 0x42, 0x9f, 0xc3, 0x48, 0xdd, 0xf5, 0x82, 0xca, 0x0b, 0xbe, 0xa7, - 0xc5, 0x53, 0x07, 0x2b, 0xac, 0x9c, 0x13, 0x99, 0x23, 0x7c, 0xd7, 0x0b, 0x1a, 0xfb, 0x5a, 0xe8, - 0x21, 0x06, 0x82, 0x5e, 0xc0, 0x9c, 0xbe, 0x9f, 0xb8, 0x8d, 0xf8, 0x18, 0x97, 0x32, 0x92, 0x36, - 0x2d, 0x03, 0xa9, 0x5c, 0xe7, 0xd4, 0x2f, 0x45, 0x77, 0xed, 0x63, 0x5a, 0xaf, 0xe6, 0x9d, 0x49, - 0xc2, 0x47, 0x0f, 0x69, 0xc2, 0x0d, 0x36, 0xa2, 0xb2, 0xcf, 0x6c, 0xcb, 0xc7, 0xc3, 0xe0, 0x56, - 0x5d, 0xba, 0x27, 0x29, 0x27, 0x2c, 0x3f, 0x9a, 0x47, 0xc5, 0x8c, 0xa1, 0xa2, 0x1a, 0x9c, 0xd9, - 0xf5, 0x71, 0xcd, 0xc3, 0x4f, 0x6d, 0xfc, 0x4c, 0xd0, 0x63, 0x11, 0xda, 0xe8, 0x34, 0x11, 0x7a, - 0x1d, 0x56, 0x9b, 0x44, 0x30, 0x8e, 0x8c, 0x3e, 0x00, 0xa8, 0xd9, 0x8e, 0x83, 0x5b, 0xf4, 0xbd, - 0x6c, 0x82, 0x92, 0xa2, 0x1a, 0xc5, 0x0e, 0x2d, 0x6d, 0xb8, 0x4e, 0x5b, 0x65, 0xa9, 0x02, 0x5c, - 0xfc, 0x00, 0x26, 0x94, 0x25, 0x96, 0x10, 0x6b, 0x62, 0x4e, 0x8d, 0x35, 0x31, 0xae, 0xc6, 0x94, - 0xf8, 0xfb, 0x39, 0x58, 0x4a, 0x5e, 0xba, 0xfc, 0x73, 0xbf, 0x0d, 0xe3, 0xb2, 0x50, 0x7a, 0x4e, - 0x09, 0x41, 0x33, 0xf2, 0xbd, 0x65, 0xfb, 0x47, 0x6c, 0x74, 0x75, 0xbc, 0x21, 0x8d, 0x97, 0xd0, - 0xfe, 0xfe, 0xeb, 0x51, 0x98, 0xa3, 0x1e, 0x02, 0xd1, 0x63, 0xe1, 0x33, 0x1a, 0x33, 0x86, 0x96, - 0x29, 0xca, 0x4c, 0xae, 0xd7, 0x60, 0xe5, 0xd1, 0x68, 0x5a, 0x1a, 0x02, 0x7a, 0x57, 0x7d, 0x3b, - 0xcf, 0x2b, 0x19, 0x35, 0x44, 0xa1, 0x3a, 0x84, 0xf0, 0x51, 0xfd, 0x2d, 0xed, 0xe9, 0xb6, 0xef, - 0x33, 0x66, 0xa8, 0xdf, 0x33, 0x66, 0x57, 0x9e, 0x31, 0x2c, 0x16, 0xc9, 0x9b, 0xca, 0x19, 0xf3, - 0xfa, 0x0f, 0x97, 0x91, 0xd7, 0x7d, 0xb8, 0x8c, 0xbe, 0xda, 0xe1, 0x32, 0xf6, 0x92, 0x87, 0xcb, - 0x3d, 0x98, 0xde, 0xc2, 0xb8, 0xa5, 0xa8, 0xe5, 0xd9, 0xfe, 0xe6, 0xba, 0x08, 0xaa, 0x70, 0x49, - 0xd2, 0xcd, 0x47, 0xb0, 0x52, 0x0f, 0x29, 0xf8, 0x7f, 0x73, 0x48, 0x4d, 0xbc, 0xe6, 0x43, 0x6a, - 0xf2, 0x15, 0x0e, 0xa9, 0x57, 0x39, 0x69, 0x3e, 0xa5, 0x86, 0x71, 0xf5, 0xfa, 0x3a, 0xb7, 0x10, - 0x50, 0x9e, 0xe4, 0xd7, 0x5d, 0x5f, 0x58, 0xfc, 0xd3, 0xbf, 0x49, 0x59, 0xcd, 0xf5, 0xc4, 0xb3, - 0x26, 0xfd, 0xdb, 0xa8, 0x50, 0x73, 0x38, 0x15, 0x5f, 0xba, 0x8b, 0x8c, 0x72, 0x97, 0x51, 0x7e, - 0x3e, 0x45, 0x05, 0x6e, 0x53, 0xd4, 0x1b, 0xff, 0x31, 0xc7, 0x9e, 0xaf, 0xfe, 0x7f, 0x3c, 0xe6, - 0x5e, 0xe5, 0x49, 0xe9, 0xd7, 0xc2, 0x50, 0x12, 0x3c, 0xec, 0x85, 0x67, 0x35, 0x9f, 0x84, 0x6f, - 0x7a, 0x3f, 0x20, 0x7b, 0x54, 0xad, 0xa0, 0xb1, 0x3e, 0xc3, 0x5b, 0x85, 0x5e, 0xb9, 0x77, 0x47, - 0x6c, 0x5e, 0x1e, 0x51, 0x83, 0x15, 0xeb, 0x9b, 0x57, 0x45, 0xa0, 0x46, 0x55, 0x33, 0x86, 0xc9, - 0x22, 0x21, 0x24, 0xf6, 0xe0, 0xbd, 0xb8, 0x2f, 0x3f, 0x15, 0x5b, 0x43, 0x5f, 0x7e, 0x95, 0x8d, - 0xa1, 0x57, 0xff, 0x2e, 0x9c, 0x37, 0xf1, 0x91, 0xfb, 0x14, 0xbf, 0x5e, 0xb2, 0x5f, 0xc3, 0x39, - 0x9d, 0x20, 0xf3, 0xfa, 0x62, 0x71, 0xe4, 0x3f, 0x4d, 0x8e, 0x3e, 0xcf, 0x11, 0x58, 0xf4, 0x79, - 0x16, 0x20, 0x98, 0xfc, 0xa9, 0x9e, 0xf9, 0xb4, 0xce, 0x70, 0x61, 0x49, 0x27, 0x5e, 0x6e, 0xb5, - 0x68, 0x6e, 0xc0, 0xa6, 0xdd, 0xb1, 0x9c, 0x00, 0x6d, 0xc3, 0x84, 0xf2, 0x33, 0x72, 0xa9, 0x54, - 0x6a, 0xf8, 0xe7, 0x3f, 0x2c, 0xd0, 0xa2, 0x42, 0x86, 0xc5, 0x06, 0x86, 0x52, 0x94, 0x3d, 0x84, - 0x65, 0x6a, 0x9b, 0x15, 0x98, 0x52, 0x7e, 0x4a, 0xe5, 0x16, 0x0d, 0x62, 0xaa, 0xb4, 0xa0, 0x33, - 0x4c, 0x47, 0x31, 0x9a, 0x50, 0x4c, 0x62, 0x1a, 0x8d, 0xa0, 0xf5, 0x02, 0xad, 0x86, 0xb1, 0xb8, - 0x7a, 0x5b, 0x54, 0xcd, 0xa4, 0xc5, 0xe1, 0x32, 0xfe, 0xc6, 0x10, 0x9c, 0xe7, 0x93, 0xf1, 0x3a, - 0x67, 0x1c, 0xfd, 0x10, 0x26, 0x94, 0x39, 0xe6, 0x4c, 0xbf, 0x24, 0xac, 0x41, 0xd3, 0xd6, 0x02, - 0xbb, 0xfc, 0x76, 0x69, 0x41, 0x23, 0x32, 0xdd, 0xe4, 0xf2, 0xab, 0x2e, 0x9b, 0x36, 0x4c, 0xeb, - 0x13, 0xcd, 0xef, 0xff, 0x57, 0x12, 0x1b, 0xd1, 0x41, 0x45, 0x6c, 0xe1, 0x56, 0x23, 0x71, 0xba, - 0xc9, 0x35, 0x3e, 0xb2, 0x88, 0x9e, 0xc3, 0x99, 0xd8, 0x2c, 0x73, 0xb5, 0xce, 0xb5, 0xc4, 0x06, - 0x63, 0xd0, 0x4c, 0x71, 0xe7, 0xd1, 0xe2, 0xd4, 0x66, 0xe3, 0x8d, 0xa0, 0x16, 0x4c, 0xaa, 0x13, - 0xcf, 0x15, 0x14, 0x97, 0x33, 0x58, 0xc9, 0x00, 0x99, 0x60, 0xc6, 0x79, 0x49, 0xe7, 0xfe, 0x85, - 0xae, 0x8c, 0xd4, 0x80, 0xc7, 0x60, 0x84, 0xfd, 0x26, 0x47, 0x40, 0xcd, 0xc3, 0x3e, 0x76, 0x9a, - 0x58, 0x35, 0xec, 0x7d, 0xd5, 0x23, 0xe0, 0xdf, 0xe6, 0x60, 0x31, 0x89, 0x6e, 0x1d, 0x3b, 0x2d, - 0x54, 0x83, 0x42, 0xb4, 0x21, 0xbe, 0xaa, 0x0d, 0x19, 0xbe, 0x35, 0xb5, 0x4b, 0xeb, 0x03, 0x66, - 0x0c, 0x1b, 0x6d, 0xc1, 0x19, 0xa5, 0xec, 0x94, 0x16, 0xd4, 0x71, 0x54, 0x55, 0x8b, 0xb9, 0x4e, - 0xbf, 0x8c, 0x2b, 0xee, 0x91, 0x65, 0x3b, 0x44, 0x48, 0x55, 0xc2, 0x71, 0x41, 0x58, 0xca, 0x79, - 0xc3, 0xf4, 0x72, 0xb4, 0x54, 0xb8, 0x45, 0x48, 0x10, 0xe3, 0x63, 0x7a, 0x82, 0x73, 0x6d, 0x0e, - 0x73, 0x8f, 0x96, 0xc4, 0x2e, 0xc1, 0xf0, 0xce, 0x66, 0xbd, 0x5a, 0xe6, 0xce, 0xd6, 0x2c, 0x44, - 0x47, 0xdb, 0x6f, 0x34, 0x2d, 0x93, 0x55, 0x18, 0x1f, 0xd1, 0x08, 0xf0, 0x3c, 0x7e, 0xb8, 0xc4, - 0xbb, 0x0a, 0xa3, 0xbc, 0x88, 0x63, 0x52, 0xf3, 0xa7, 0x36, 0x87, 0x12, 0x75, 0x46, 0x4d, 0xc8, - 0xf8, 0x6d, 0x6c, 0xf9, 0xca, 0x87, 0xf9, 0x7d, 0x18, 0xf3, 0x78, 0x19, 0xff, 0x2e, 0x4f, 0xcb, - 0x6c, 0x20, 0xb4, 0x98, 0x69, 0x3e, 0x05, 0x8c, 0x29, 0xff, 0x32, 0x36, 0x69, 0x38, 0x9d, 0xed, - 0x8d, 0x95, 0x2a, 0xe1, 0x2a, 0x67, 0x96, 0x98, 0x8e, 0x5b, 0xd4, 0xd8, 0x38, 0xc0, 0xaa, 0xab, - 0x35, 0x65, 0x0d, 0xdd, 0xe4, 0x3c, 0x88, 0x94, 0x02, 0x62, 0xdc, 0x95, 0xc1, 0x79, 0x12, 0xa8, - 0xa5, 0x65, 0xb5, 0xd8, 0xa2, 0x61, 0x87, 0xd6, 0xa8, 0x61, 0xc5, 0xeb, 0xe8, 0x84, 0x05, 0x45, - 0xf6, 0x99, 0x27, 0xa3, 0xe2, 0xe9, 0xd8, 0x5c, 0x79, 0x34, 0x56, 0x61, 0x5c, 0x96, 0xc9, 0x57, - 0x12, 0xc6, 0x2b, 0x0d, 0x7e, 0xef, 0x2e, 0xf3, 0x4a, 0x6f, 0x4a, 0x02, 0x21, 0x1e, 0x69, 0x82, - 0xed, 0xbb, 0x6f, 0xb9, 0x09, 0x1f, 0x7b, 0xc1, 0xb7, 0xda, 0x44, 0x18, 0x97, 0xea, 0x34, 0x4d, - 0x68, 0xf0, 0x7b, 0xcb, 0xfd, 0x30, 0xea, 0x5b, 0x6e, 0x82, 0x30, 0xea, 0xdb, 0x6b, 0x02, 0x8b, - 0x00, 0x5e, 0x6c, 0x91, 0xc6, 0x1a, 0x59, 0x8d, 0x37, 0x22, 0x54, 0x9c, 0x11, 0x8c, 0xcc, 0xf9, - 0xc0, 0xb0, 0xc4, 0x98, 0xf5, 0x73, 0x68, 0x86, 0x30, 0xec, 0xdb, 0x6d, 0xe6, 0x77, 0x73, 0x2c, - 0x9c, 0x58, 0x7d, 0x5b, 0x49, 0x84, 0xe8, 0x3c, 0x76, 0x95, 0x47, 0x5c, 0x65, 0xb7, 0x3f, 0xb0, - 0x9d, 0x96, 0xfa, 0x88, 0x6b, 0x75, 0x83, 0x43, 0x19, 0x92, 0xfa, 0x89, 0xed, 0xb4, 0xcc, 0x28, - 0x34, 0xfa, 0x00, 0xa6, 0x94, 0x22, 0x29, 0xad, 0xb1, 0x34, 0x06, 0x2a, 0xba, 0xdd, 0x32, 0x75, - 0x48, 0xe3, 0xb7, 0xf2, 0x70, 0x76, 0xb7, 0xe3, 0x53, 0x27, 0x8c, 0x0d, 0xe7, 0x29, 0x76, 0x02, - 0xd7, 0x7b, 0x41, 0x6d, 0xbe, 0xd1, 0xbb, 0x30, 0xbc, 0x8e, 0xdb, 0x6d, 0x97, 0x8f, 0xfc, 0x82, - 0x78, 0x41, 0x8d, 0x42, 0x53, 0xa0, 0xf5, 0x01, 0x93, 0x41, 0xa3, 0x0f, 0x60, 0x7c, 0x1d, 0x5b, - 0x5e, 0xb0, 0x8f, 0x2d, 0x21, 0xac, 0x8a, 0xb0, 0xfa, 0x0a, 0x0a, 0x07, 0x58, 0x1f, 0x30, 0x43, - 0x68, 0xb4, 0x4c, 0xee, 0x71, 0xce, 0x81, 0xf4, 0x63, 0x4f, 0x69, 0x90, 0xc0, 0xac, 0x0f, 0x98, - 0x14, 0x16, 0x3d, 0x84, 0xa9, 0xf2, 0x01, 0x76, 0x82, 0x87, 0x38, 0xb0, 0x5a, 0x56, 0x60, 0x71, - 0xa1, 0xe6, 0x6a, 0x1a, 0xb2, 0x06, 0xbc, 0x3e, 0x60, 0xea, 0xd8, 0x95, 0x61, 0x18, 0x7c, 0xe8, - 0x1f, 0x18, 0xc7, 0x39, 0x58, 0x5c, 0x71, 0x9f, 0x39, 0x89, 0x8c, 0xf9, 0x9e, 0xce, 0x18, 0xe1, - 0x62, 0x94, 0x00, 0x1f, 0x61, 0xcd, 0x3b, 0x30, 0x54, 0xb3, 0x9d, 0x83, 0xc8, 0x77, 0x3c, 0x01, - 0x8f, 0x40, 0xd1, 0x11, 0xda, 0xce, 0x01, 0xda, 0x14, 0x02, 0x14, 0x57, 0xf2, 0x0c, 0x6a, 0x52, - 0x5b, 0x02, 0xb6, 0x0a, 0x1d, 0x0a, 0x4a, 0xec, 0xb7, 0x18, 0xe0, 0x5b, 0xb0, 0x90, 0xd2, 0x2e, - 0xf7, 0x2d, 0x27, 0x63, 0x1b, 0xa2, 0x5f, 0xa5, 0x37, 0x61, 0x3e, 0x71, 0x0a, 0x62, 0x80, 0xff, - 0x38, 0x69, 0x2d, 0xb1, 0x91, 0x2f, 0xc2, 0xa8, 0xc8, 0xbe, 0xc2, 0x2e, 0xee, 0xe2, 0x27, 0xf5, - 0x60, 0xa0, 0xd7, 0xed, 0x30, 0x34, 0xb3, 0xf8, 0x8d, 0xf6, 0x94, 0x28, 0x4c, 0x83, 0x54, 0x4b, - 0xf4, 0xe1, 0x2b, 0xe4, 0xa8, 0x96, 0xb4, 0x48, 0x9b, 0xeb, 0xae, 0x1f, 0x38, 0xd2, 0xc0, 0xce, - 0x94, 0xbf, 0xd1, 0x0d, 0x28, 0xac, 0x3e, 0x0f, 0xb0, 0xe7, 0x58, 0x6d, 0x9e, 0x87, 0x82, 0x27, - 0x1f, 0x36, 0x63, 0xe5, 0xe8, 0x7d, 0x58, 0x88, 0x96, 0x89, 0x51, 0x32, 0x17, 0x94, 0xb4, 0x6a, - 0xe3, 0x8f, 0xf3, 0x34, 0x98, 0x74, 0xc6, 0xd2, 0x24, 0xdc, 0xdd, 0xae, 0x73, 0x6e, 0xe5, 0xb7, - 0xeb, 0x68, 0x09, 0xc6, 0xb7, 0xeb, 0x5a, 0x0a, 0x1b, 0x33, 0x2c, 0x20, 0xdd, 0x26, 0x43, 0x28, - 0x7b, 0xcd, 0x43, 0x3b, 0xc0, 0xcd, 0xa0, 0xeb, 0xf1, 0x18, 0x5a, 0x66, 0xac, 0x1c, 0x19, 0x30, - 0xb9, 0xd6, 0xb6, 0xf7, 0x9b, 0x82, 0x18, 0x63, 0x81, 0x56, 0x86, 0xae, 0xc1, 0xf4, 0x86, 0xe3, - 0x07, 0x56, 0xbb, 0xcd, 0x32, 0xfc, 0xf0, 0x0c, 0x90, 0x66, 0xa4, 0x94, 0xb4, 0x5b, 0x75, 0x9d, - 0xc0, 0xb2, 0x1d, 0xec, 0x99, 0x5d, 0x27, 0xb0, 0x8f, 0x30, 0x1f, 0x7b, 0xac, 0x1c, 0xbd, 0x03, - 0xf3, 0xb2, 0x6c, 0xdb, 0x6b, 0x1e, 0x62, 0x3f, 0xf0, 0x68, 0xf2, 0x35, 0x1a, 0x2d, 0xc8, 0x4c, - 0xae, 0xa4, 0x2d, 0xb4, 0xdd, 0x6e, 0x6b, 0xd5, 0x79, 0x6a, 0x7b, 0xae, 0x43, 0x73, 0xaa, 0x8e, - 0xf1, 0x16, 0x22, 0xe5, 0x46, 0x2d, 0x71, 0xd7, 0xbe, 0xc2, 0x12, 0x34, 0x4e, 0x72, 0xb0, 0x94, - 0xb8, 0xb1, 0xc4, 0xe1, 0xad, 0x22, 0xe7, 0x22, 0xeb, 0xf7, 0x06, 0x0c, 0xd1, 0xd3, 0x9c, 0x29, - 0x06, 0x84, 0x09, 0x0a, 0xc5, 0x67, 0xa4, 0x48, 0xad, 0x49, 0x61, 0xd0, 0x9a, 0x54, 0xe2, 0x0e, - 0x52, 0xb1, 0xf5, 0x56, 0xf4, 0xcc, 0x4c, 0x68, 0x5c, 0x55, 0xe6, 0x0a, 0xb5, 0xed, 0xab, 0xe8, - 0xdc, 0xfe, 0x38, 0x07, 0xa5, 0x1e, 0xe7, 0x89, 0x1c, 0x53, 0xae, 0x8f, 0x31, 0xdd, 0x97, 0x63, - 0x62, 0xce, 0x2e, 0xcb, 0xfd, 0x9d, 0x59, 0xaf, 0x7b, 0x58, 0x55, 0x40, 0xf1, 0x2f, 0x0f, 0x7a, - 0x1b, 0xc6, 0xeb, 0xf5, 0x75, 0xed, 0x9d, 0x3f, 0xa6, 0x09, 0x0c, 0x21, 0x8c, 0xf7, 0xe0, 0xac, - 0x24, 0xc2, 0xa2, 0xd9, 0x2b, 0x1e, 0x75, 0xfc, 0x5b, 0x2f, 0xdd, 0xff, 0xc2, 0x02, 0xe3, 0x8f, - 0x86, 0x62, 0x88, 0xf5, 0xee, 0xd1, 0x91, 0xe5, 0xbd, 0x40, 0x65, 0x1d, 0x71, 0xb0, 0xe7, 0x47, - 0xb6, 0x32, 0xf4, 0x93, 0xe3, 0xd2, 0x80, 0x42, 0x1d, 0xbd, 0x01, 0x53, 0x74, 0x43, 0x3a, 0x4d, - 0xcc, 0xf4, 0x80, 0x79, 0x16, 0xd1, 0x44, 0x2b, 0x44, 0x7b, 0x30, 0xc5, 0xd7, 0x3a, 0xfd, 0x2d, - 0x96, 0xd8, 0xed, 0xe8, 0x12, 0xd3, 0xba, 0x77, 0x53, 0x43, 0x61, 0x93, 0xa1, 0x93, 0x41, 0x5f, - 0xc1, 0xb4, 0x38, 0xd8, 0x38, 0x61, 0xf6, 0xc8, 0x79, 0x27, 0x9b, 0xb0, 0x8e, 0xc3, 0x28, 0x47, - 0x08, 0x91, 0x2e, 0xf3, 0xe3, 0x9a, 0x53, 0x1e, 0xee, 0xa7, 0xcb, 0x1a, 0x0a, 0xef, 0xb2, 0x56, - 0x56, 0xfc, 0x1c, 0x50, 0x7c, 0x5c, 0xbd, 0x56, 0xd3, 0x94, 0xb2, 0x9a, 0x8a, 0x65, 0x98, 0x4d, - 0x18, 0xc0, 0xa9, 0x48, 0x7c, 0x0e, 0x28, 0xde, 0xd3, 0xd3, 0x50, 0x30, 0xae, 0xc3, 0x35, 0xc9, - 0x02, 0xb9, 0x1a, 0x34, 0x9a, 0xe2, 0xb6, 0xff, 0x2b, 0x79, 0x28, 0xf5, 0x00, 0x45, 0x7f, 0x27, - 0x17, 0xe5, 0x36, 0x5b, 0x8d, 0x1f, 0x44, 0xb9, 0x9d, 0x8c, 0x9f, 0xc0, 0xf6, 0xca, 0x87, 0xbf, - 0xfa, 0x27, 0x2f, 0xfd, 0xa1, 0x8e, 0x4f, 0xd9, 0xe9, 0xb9, 0x35, 0xa4, 0x72, 0xcb, 0x84, 0x39, - 0x4d, 0xc4, 0xe9, 0xe7, 0xec, 0xbe, 0x08, 0xc0, 0x53, 0x7d, 0x6d, 0xba, 0x07, 0xdc, 0x1f, 0x51, - 0x29, 0x31, 0xee, 0xc1, 0x7c, 0x84, 0x26, 0xd7, 0x40, 0xbc, 0x0d, 0xd2, 0x73, 0x8a, 0x12, 0x1d, - 0xac, 0x9c, 0xf9, 0xd9, 0x71, 0x69, 0x8a, 0x7c, 0x01, 0x6f, 0x86, 0x41, 0xa3, 0xc5, 0x5f, 0xc6, - 0x43, 0x55, 0x87, 0x52, 0x6e, 0x6b, 0x2e, 0xed, 0x77, 0x60, 0x84, 0x95, 0x44, 0x42, 0xb3, 0xaa, - 0xd0, 0xfc, 0x4c, 0xe0, 0x80, 0xc6, 0x3c, 0xf5, 0x16, 0xa1, 0x3f, 0xca, 0xa1, 0x5f, 0xa2, 0xb1, - 0xcb, 0xc2, 0xf9, 0x87, 0xc5, 0x32, 0xfc, 0xeb, 0x50, 0x39, 0xf4, 0x9f, 0x14, 0x8f, 0x55, 0x02, - 0xce, 0x71, 0x9f, 0xb5, 0x71, 0xeb, 0x80, 0x26, 0x1f, 0xaf, 0x4c, 0xf2, 0xc7, 0xaa, 0x21, 0x8b, - 0x10, 0xa0, 0x68, 0xc6, 0x67, 0x30, 0x5f, 0x6d, 0x63, 0xcb, 0x8b, 0xb6, 0x87, 0xae, 0xc1, 0x28, - 0x2d, 0xd3, 0xed, 0xcd, 0x2c, 0x52, 0x44, 0xed, 0xcd, 0x78, 0xa5, 0xb1, 0x09, 0xe7, 0xd8, 0x0d, - 0x4c, 0x1d, 0x52, 0xa8, 0xef, 0x18, 0xa6, 0xbf, 0x23, 0xbe, 0x06, 0x09, 0xa3, 0x67, 0x70, 0xc6, - 0xa7, 0xd4, 0x98, 0x35, 0x29, 0xef, 0x7c, 0x7f, 0xde, 0x2f, 0x7f, 0x09, 0x96, 0xca, 0x9d, 0x0e, - 0x76, 0x5a, 0x21, 0xe2, 0x8e, 0x67, 0xf5, 0xe9, 0x55, 0x88, 0xca, 0x30, 0x4c, 0xa1, 0xa5, 0xb2, - 0x98, 0x77, 0x37, 0xa1, 0x3b, 0x14, 0x8e, 0xc7, 0xea, 0xa3, 0x0d, 0x30, 0x4c, 0xa3, 0x05, 0x0b, - 0xf5, 0xee, 0xfe, 0x91, 0xcd, 0x92, 0xb1, 0x53, 0xcf, 0x5c, 0xd1, 0xf6, 0x86, 0xc8, 0xc0, 0xc2, - 0x98, 0x71, 0x3d, 0x34, 0x7a, 0xa4, 0x86, 0x6e, 0xdc, 0x5b, 0xf7, 0xe9, 0x9d, 0x9b, 0x21, 0x2a, - 0xbd, 0xad, 0xb0, 0x56, 0x68, 0x35, 0xcf, 0xd2, 0x62, 0xcc, 0xc2, 0x19, 0x55, 0xf1, 0xc6, 0x56, - 0xc8, 0x3c, 0xcc, 0xea, 0x0a, 0x35, 0x56, 0xfc, 0x0d, 0xcc, 0xb1, 0x0b, 0x3f, 0x8b, 0xb5, 0xbb, - 0x1c, 0x86, 0x95, 0xcd, 0xef, 0x2d, 0x47, 0xcc, 0xe3, 0xa8, 0xf9, 0x8e, 0x8c, 0xa2, 0xbe, 0xb7, - 0xcc, 0x1c, 0x12, 0x9e, 0x2e, 0x6b, 0x6a, 0xdb, 0xfc, 0xde, 0x72, 0x65, 0x94, 0xc7, 0x2c, 0x24, - 0xd4, 0xd9, 0xf4, 0x7f, 0x2b, 0xd4, 0x97, 0xa9, 0x0f, 0xdc, 0x3a, 0xb6, 0xa8, 0xbd, 0x6a, 0xb2, - 0x27, 0xd1, 0x34, 0xe4, 0xed, 0x96, 0x90, 0xb2, 0xed, 0x96, 0xf1, 0x07, 0x39, 0xb8, 0xce, 0x64, - 0x91, 0x64, 0x3c, 0xaa, 0x5d, 0x4b, 0x41, 0x46, 0xef, 0x03, 0xcb, 0x30, 0xcc, 0x05, 0x3e, 0x83, - 0xf7, 0x3c, 0x8b, 0x12, 0x43, 0x40, 0x65, 0x98, 0x54, 0x2d, 0x3e, 0xfb, 0x8b, 0x2c, 0x63, 0x4e, - 0x1c, 0x3d, 0xb6, 0xa4, 0x15, 0xe8, 0x13, 0x38, 0xbf, 0xfa, 0x9c, 0x2c, 0x08, 0xfe, 0x75, 0xe2, - 0x2f, 0xc6, 0xa1, 0xa7, 0xca, 0xcc, 0x0e, 0x5f, 0x31, 0xba, 0x18, 0x1c, 0x2d, 0x26, 0xd7, 0x03, - 0xf1, 0x81, 0x93, 0xd2, 0xeb, 0xb8, 0xa9, 0x95, 0x19, 0x7f, 0x94, 0x83, 0xa5, 0xe4, 0xd6, 0xf8, - 0xc1, 0xb2, 0x01, 0x67, 0xaa, 0x96, 0xe3, 0x3a, 0x76, 0xd3, 0x6a, 0xd7, 0x9b, 0x87, 0xb8, 0xd5, - 0x95, 0x91, 0x0d, 0xe5, 0x29, 0x43, 0xae, 0x3b, 0x1c, 0x5d, 0x80, 0x98, 0x71, 0x2c, 0xf4, 0x1e, - 0x9c, 0xa5, 0x46, 0x83, 0xec, 0xec, 0x6d, 0x63, 0x4f, 0xd2, 0x63, 0x3d, 0x4b, 0xa9, 0x45, 0xb7, - 0x61, 0x96, 0x7d, 0x54, 0x5a, 0xbb, 0x8e, 0x1d, 0x48, 0x24, 0x76, 0x2b, 0x4a, 0xaa, 0x32, 0x6a, - 0xf0, 0x86, 0x96, 0x3d, 0xac, 0xdc, 0x6e, 0xbb, 0xcf, 0x70, 0xab, 0xe6, 0xb9, 0x47, 0x6e, 0xa0, - 0x25, 0x20, 0xe0, 0xd9, 0x21, 0x43, 0x8d, 0x0b, 0xe7, 0x65, 0xa4, 0xd8, 0xf8, 0x8b, 0x70, 0xb5, - 0x07, 0x45, 0xce, 0xaf, 0x3a, 0x9c, 0xb1, 0x22, 0x75, 0xe2, 0x61, 0xec, 0xaa, 0xe0, 0x57, 0x16, - 0x21, 0xdf, 0x8c, 0xe3, 0xdf, 0xd8, 0xd1, 0x12, 0xca, 0xa1, 0x45, 0x98, 0xab, 0x99, 0xdb, 0x2b, - 0xbb, 0xd5, 0x9d, 0xc6, 0xce, 0x57, 0xb5, 0xd5, 0xc6, 0xee, 0xd6, 0x83, 0xad, 0xed, 0x47, 0x5b, - 0x2c, 0x8e, 0xaa, 0x56, 0xb3, 0xb3, 0x5a, 0x7e, 0x58, 0xc8, 0xa1, 0x39, 0x28, 0x68, 0xc5, 0xab, - 0xbb, 0x95, 0x42, 0xfe, 0x46, 0x43, 0xb5, 0xe8, 0x45, 0xe7, 0x61, 0x61, 0x65, 0x75, 0x6f, 0xa3, - 0xba, 0x2a, 0x68, 0xaa, 0x31, 0x5c, 0xe7, 0xa0, 0xa0, 0x56, 0xee, 0x6c, 0xef, 0xd4, 0x0a, 0x39, - 0xd2, 0x0f, 0xb5, 0xf4, 0xd1, 0x6a, 0xa5, 0xbc, 0xbb, 0xb3, 0xbe, 0x55, 0x18, 0x34, 0x86, 0xc6, - 0xf2, 0x85, 0xfc, 0x8d, 0x1f, 0x6a, 0xe6, 0xbe, 0x68, 0x09, 0x16, 0x39, 0xf8, 0x6e, 0xbd, 0xbc, - 0x96, 0xde, 0x04, 0xab, 0x7d, 0x78, 0xaf, 0x5c, 0xc8, 0xa1, 0x0b, 0x70, 0x4e, 0x2b, 0xad, 0x95, - 0xeb, 0xf5, 0x47, 0xdb, 0xe6, 0xca, 0xe6, 0x6a, 0xbd, 0x5e, 0xc8, 0xdf, 0xd8, 0xd3, 0x82, 0x72, - 0x90, 0x16, 0x1e, 0xde, 0x2b, 0x37, 0xcc, 0xd5, 0x2f, 0x76, 0x37, 0xcc, 0xd5, 0x95, 0x78, 0x0b, - 0x5a, 0xed, 0x57, 0xab, 0xf5, 0x42, 0x0e, 0xcd, 0xc2, 0x8c, 0x56, 0xba, 0xb5, 0x5d, 0xc8, 0xdf, - 0xb8, 0xc6, 0x43, 0x2e, 0xa0, 0x69, 0x80, 0x95, 0xd5, 0x7a, 0x75, 0x75, 0x6b, 0x65, 0x63, 0x6b, - 0xad, 0x30, 0x80, 0xa6, 0x60, 0xbc, 0x2c, 0x7f, 0xe6, 0x6e, 0x7c, 0x08, 0x33, 0x91, 0x1b, 0x13, - 0x81, 0x90, 0x97, 0x8d, 0xc2, 0x00, 0xe1, 0x91, 0xfc, 0x49, 0xaf, 0xb9, 0xec, 0xf2, 0x53, 0xc8, - 0x2d, 0xff, 0x97, 0xbf, 0x9d, 0x83, 0x09, 0x72, 0x1c, 0x08, 0xb3, 0xcf, 0x6f, 0x94, 0x0b, 0x06, - 0xdf, 0x06, 0x3c, 0x29, 0x56, 0xea, 0x6d, 0x82, 0x7e, 0x19, 0x8a, 0x19, 0x8a, 0x2b, 0x0a, 0x70, - 0x3d, 0x77, 0x3b, 0x87, 0x4c, 0xfa, 0x4a, 0x13, 0x91, 0xb7, 0x25, 0xe5, 0xe4, 0x2b, 0x51, 0xf1, - 0x42, 0xa6, 0x98, 0x8e, 0x7e, 0x11, 0x0c, 0x95, 0x66, 0x8a, 0x54, 0xfa, 0x76, 0x7f, 0xd2, 0xa7, - 0x68, 0xf3, 0x5a, 0x7f, 0xe0, 0xe8, 0x3e, 0x4c, 0x11, 0x79, 0x4d, 0x82, 0xa1, 0xf3, 0x51, 0x44, - 0x45, 0x44, 0x2c, 0x2e, 0x25, 0x57, 0xca, 0x98, 0xfc, 0x93, 0x74, 0x20, 0xec, 0xb2, 0xe5, 0x23, - 0xe1, 0x98, 0x27, 0x4a, 0x98, 0x9d, 0x4e, 0xf1, 0x4c, 0xa4, 0x78, 0xef, 0xce, 0xed, 0x1c, 0xaa, - 0xd3, 0x78, 0x16, 0x9a, 0xe0, 0x87, 0x84, 0x1d, 0x72, 0x5c, 0x22, 0x64, 0xbd, 0x29, 0xc9, 0x2c, - 0x53, 0x29, 0x12, 0xe3, 0x16, 0xa0, 0xb8, 0x3c, 0x85, 0x2e, 0x85, 0xeb, 0x20, 0x59, 0xd4, 0x2a, - 0x9e, 0x8d, 0x3d, 0xbe, 0xaf, 0x92, 0x2f, 0x2a, 0x5a, 0x85, 0x69, 0xee, 0x75, 0xc3, 0x25, 0x3c, - 0x94, 0x25, 0x23, 0xa6, 0x92, 0x59, 0xa3, 0x7c, 0x92, 0x52, 0x22, 0x2a, 0x86, 0xe3, 0x88, 0x8a, - 0x8e, 0xc5, 0xf3, 0x89, 0x75, 0x7c, 0x7c, 0xf7, 0x60, 0x5a, 0x17, 0x38, 0x91, 0x98, 0xa0, 0x44, - 0x39, 0x34, 0xb5, 0x43, 0x0d, 0x58, 0x78, 0x68, 0xd9, 0x54, 0xdd, 0xc4, 0x9f, 0x78, 0xc5, 0x03, - 0x2d, 0x2a, 0x65, 0xbc, 0xd8, 0xd6, 0xb1, 0xd3, 0x2a, 0xf6, 0x0a, 0x29, 0x45, 0xb7, 0x4d, 0x5d, - 0xc8, 0x4d, 0xfa, 0x03, 0x37, 0x32, 0xf4, 0xcc, 0x81, 0x49, 0x36, 0x0b, 0xc5, 0x34, 0x33, 0x1b, - 0xf4, 0x90, 0x0a, 0x6e, 0x11, 0x8a, 0xca, 0x9a, 0x38, 0x35, 0xb9, 0x45, 0xea, 0xfb, 0x15, 0xd8, - 0x51, 0x7b, 0x19, 0x1f, 0xa5, 0x30, 0x2e, 0x95, 0xd8, 0xed, 0x1c, 0xfa, 0x86, 0xee, 0xea, 0x44, - 0x72, 0x8f, 0xec, 0xe0, 0x90, 0xdb, 0xac, 0x9d, 0x4f, 0x24, 0xc0, 0x37, 0x4a, 0x06, 0x75, 0x13, - 0xe6, 0x92, 0x2c, 0x7b, 0x24, 0x43, 0x33, 0xcc, 0x7e, 0x52, 0x57, 0x81, 0x49, 0xc4, 0xcf, 0x56, - 0xfa, 0x24, 0x65, 0x18, 0x96, 0xa4, 0xd2, 0xfc, 0x18, 0xa6, 0xc9, 0x2a, 0x79, 0x80, 0x71, 0xa7, - 0xdc, 0xb6, 0x9f, 0x62, 0x1f, 0x89, 0x70, 0x6b, 0xb2, 0x28, 0x0d, 0xf7, 0x7a, 0x0e, 0x7d, 0x07, - 0x26, 0x1e, 0x59, 0x41, 0xf3, 0x90, 0x07, 0xe5, 0x11, 0x31, 0x7b, 0x68, 0x59, 0x51, 0xfc, 0xa2, - 0x95, 0xb7, 0x73, 0xe8, 0x13, 0x18, 0x5d, 0xc3, 0x01, 0xf5, 0x03, 0xb9, 0x2c, 0x1f, 0xb9, 0x99, - 0x41, 0xd9, 0x86, 0x23, 0xcd, 0x4f, 0x45, 0x87, 0xa3, 0xca, 0x2d, 0x74, 0x0b, 0x80, 0x1d, 0x08, - 0x94, 0x42, 0xb4, 0xba, 0x18, 0xeb, 0x36, 0x5a, 0x23, 0x1f, 0xfe, 0x36, 0x0e, 0x70, 0xbf, 0x4d, - 0xa6, 0xf1, 0x68, 0x13, 0xa6, 0x65, 0x1a, 0x83, 0x2d, 0xea, 0x81, 0x69, 0x44, 0x88, 0xf9, 0xa7, - 0xa0, 0xf6, 0x21, 0xd9, 0x15, 0x2c, 0xcf, 0x9d, 0x0c, 0x45, 0x87, 0xd2, 0x82, 0xd3, 0x49, 0x26, - 0x32, 0x30, 0x05, 0x77, 0xdd, 0xf5, 0x03, 0x1d, 0x57, 0x96, 0x24, 0xe3, 0x62, 0x28, 0xaa, 0xed, - 0xea, 0x61, 0xe9, 0xc2, 0x33, 0x37, 0x2d, 0x9a, 0x5e, 0xf1, 0x72, 0x06, 0x04, 0x3b, 0xee, 0xe8, - 0x49, 0xb2, 0x42, 0x6e, 0xf4, 0xac, 0x99, 0xed, 0x0e, 0x76, 0xea, 0xf5, 0x75, 0x1a, 0x0c, 0x4c, - 0xbc, 0xa9, 0x29, 0x65, 0x82, 0x30, 0x8a, 0x57, 0x91, 0xaf, 0x9e, 0xe6, 0x8d, 0x87, 0xb2, 0x7c, - 0xf4, 0xc2, 0xaf, 0x5e, 0x62, 0xb8, 0xb3, 0x07, 0x4c, 0xc7, 0xa0, 0xe5, 0xd9, 0xdd, 0x5b, 0x46, - 0xc5, 0x24, 0x39, 0x95, 0x6f, 0xec, 0xb3, 0x49, 0x75, 0x7b, 0x77, 0x6f, 0xe7, 0xd0, 0x2a, 0xcc, - 0x4a, 0x87, 0xd9, 0xb0, 0x0a, 0xa5, 0x20, 0x64, 0x7c, 0x61, 0xe6, 0x13, 0xc8, 0xec, 0x2d, 0x67, - 0x10, 0x4a, 0x2c, 0x47, 0x9f, 0xc1, 0x2c, 0x5f, 0x9b, 0x5a, 0x7f, 0x0a, 0xf2, 0x98, 0xe1, 0xa2, - 0x7d, 0x6a, 0x4f, 0xee, 0xc3, 0x7c, 0x3d, 0xc2, 0x1d, 0x66, 0xf0, 0x75, 0x4e, 0x27, 0x41, 0x0b, - 0xeb, 0x38, 0x60, 0xec, 0x49, 0xa6, 0xf5, 0x00, 0x10, 0xd3, 0x07, 0x08, 0x72, 0x4f, 0x6d, 0xfc, - 0x0c, 0x5d, 0x88, 0x74, 0x9d, 0x14, 0x52, 0x30, 0x7a, 0x4e, 0xa5, 0x8e, 0x6c, 0x87, 0x25, 0x63, - 0x64, 0x59, 0xec, 0xad, 0x8e, 0xb5, 0x6f, 0xb7, 0xed, 0xc0, 0xc6, 0x64, 0xa9, 0xaa, 0x08, 0x6a, - 0x95, 0x58, 0x0f, 0xe7, 0x52, 0x21, 0xd0, 0x2f, 0xd3, 0x50, 0x55, 0xd9, 0x77, 0x13, 0xf4, 0x9d, - 0xa4, 0xbc, 0xe5, 0x29, 0xb7, 0xab, 0xe2, 0x77, 0xfb, 0x03, 0xe6, 0x8b, 0xf1, 0x53, 0x98, 0x5a, - 0xc3, 0x01, 0xcb, 0x3b, 0xbf, 0x62, 0x05, 0x16, 0x92, 0xfa, 0x02, 0x59, 0xc4, 0xd7, 0xa0, 0x4c, - 0x7e, 0x2d, 0x2b, 0xea, 0xf8, 0x47, 0x68, 0x03, 0x0a, 0xec, 0x98, 0x57, 0x48, 0x5c, 0x88, 0x91, - 0xe0, 0x20, 0x96, 0x67, 0x1d, 0xf9, 0xa9, 0xb3, 0x75, 0x8b, 0x3d, 0xef, 0x22, 0x99, 0xb2, 0x5b, - 0x91, 0x23, 0x67, 0xb5, 0x32, 0x19, 0xa0, 0x94, 0xcc, 0x88, 0x89, 0x7d, 0x1c, 0x08, 0xcf, 0x5a, - 0x96, 0x80, 0xee, 0x4a, 0xf8, 0x4d, 0x8f, 0xd7, 0x86, 0xdb, 0x3c, 0x12, 0x05, 0x62, 0xef, 0x2e, - 0x92, 0x49, 0xf9, 0x12, 0x88, 0x5e, 0xd3, 0x44, 0x8f, 0xd3, 0xd1, 0xad, 0xc2, 0x38, 0x43, 0xab, - 0xb8, 0x81, 0x3c, 0x1f, 0x65, 0x89, 0xc0, 0x5c, 0x8c, 0x57, 0x70, 0xe5, 0xc4, 0xe0, 0x5f, 0xcb, - 0xe7, 0x50, 0x19, 0xc6, 0xd9, 0xd6, 0x52, 0x89, 0xc8, 0x92, 0x1e, 0xc7, 0x3c, 0x23, 0xf1, 0x29, - 0x4c, 0xac, 0xe1, 0xa0, 0xe2, 0x52, 0xc7, 0x66, 0x5f, 0x6e, 0x29, 0xa5, 0x4c, 0x90, 0x99, 0x52, - 0x46, 0xb1, 0xb7, 0x4c, 0xb1, 0x6f, 0xe7, 0xd0, 0x3b, 0xf4, 0x93, 0x49, 0xbd, 0xa2, 0xe7, 0x43, - 0x5c, 0x25, 0xef, 0x74, 0x12, 0x1e, 0xf9, 0xa6, 0x13, 0x89, 0xbb, 0xeb, 0x79, 0xd8, 0x61, 0xc8, - 0x69, 0xe2, 0x51, 0x12, 0xf6, 0xa7, 0xf4, 0xb8, 0x54, 0xb0, 0x99, 0xb5, 0x7d, 0x2f, 0x12, 0x2c, - 0xf1, 0xc3, 0xed, 0x1c, 0x7a, 0x1f, 0xc6, 0x78, 0x1f, 0x09, 0x92, 0xd6, 0xe9, 0x1e, 0xa3, 0x7d, - 0x1f, 0x80, 0x4d, 0x05, 0xed, 0xb3, 0x0e, 0x93, 0xcd, 0xe7, 0xf7, 0x89, 0x6c, 0xd0, 0x7a, 0x19, - 0xcc, 0xaa, 0x10, 0x12, 0x28, 0xe6, 0xa2, 0x36, 0xcb, 0x2a, 0x9f, 0x33, 0x89, 0x10, 0x31, 0x9f, - 0x86, 0xa3, 0x91, 0x51, 0x25, 0xa4, 0x98, 0xaf, 0x15, 0xf7, 0x12, 0x0d, 0x36, 0xa0, 0x50, 0x6e, - 0xd2, 0xaf, 0x97, 0xcc, 0xf4, 0x2d, 0xef, 0x58, 0xd1, 0x0a, 0x41, 0x6b, 0x3e, 0x9a, 0x38, 0x7c, - 0x13, 0x5b, 0x34, 0xda, 0xde, 0x82, 0x94, 0x84, 0x22, 0x55, 0xc9, 0x18, 0x19, 0x77, 0xaa, 0xb9, - 0x2a, 0xb9, 0x05, 0xb6, 0x5f, 0x8d, 0xcc, 0x87, 0xf4, 0xe0, 0x53, 0xb2, 0xa0, 0x9f, 0x8d, 0xe2, - 0xcb, 0xdb, 0xa7, 0x30, 0xb5, 0x95, 0xa0, 0x65, 0x98, 0xe1, 0xb1, 0xbd, 0x24, 0x5b, 0xd2, 0xb0, - 0xd3, 0x9a, 0xff, 0x1e, 0x4c, 0xaf, 0x92, 0x0f, 0x53, 0xb7, 0x65, 0xb3, 0x08, 0xa3, 0x48, 0x0f, - 0x19, 0x99, 0x8a, 0xb8, 0x2e, 0x72, 0xad, 0x28, 0xe9, 0xc1, 0xe5, 0x46, 0x8e, 0x67, 0x60, 0x2f, - 0xce, 0x09, 0xb2, 0x6a, 0x26, 0x71, 0xae, 0x9a, 0x58, 0x48, 0x49, 0xc8, 0x8d, 0xae, 0x6a, 0x37, - 0xde, 0xb4, 0xac, 0xda, 0x09, 0x32, 0xee, 0x97, 0x4a, 0xee, 0xc3, 0x14, 0x9a, 0xd9, 0x99, 0xba, - 0x53, 0xc7, 0x2d, 0x63, 0x02, 0x26, 0x66, 0xd4, 0x46, 0x6f, 0xe9, 0xd4, 0x33, 0xb2, 0x6e, 0xa7, - 0xb6, 0x40, 0x35, 0x0a, 0x7a, 0xc2, 0x67, 0x74, 0x31, 0x3b, 0x2f, 0xb5, 0xa2, 0x51, 0x48, 0xc9, - 0x14, 0x7d, 0x9f, 0x2e, 0xb3, 0x30, 0x41, 0x22, 0x52, 0xef, 0xe7, 0xd1, 0xfc, 0x90, 0x52, 0x70, - 0x4c, 0xce, 0xfa, 0x5c, 0x83, 0x99, 0x48, 0x3e, 0x65, 0xa9, 0x48, 0x4a, 0xce, 0xe8, 0x5c, 0xbc, - 0x98, 0x56, 0x2d, 0xd5, 0xa6, 0x85, 0x68, 0x12, 0x5a, 0x39, 0xe4, 0x94, 0x04, 0xc0, 0x72, 0xc8, - 0xa9, 0xd9, 0x6b, 0xef, 0x43, 0x21, 0x9a, 0xff, 0x52, 0x12, 0x4d, 0x49, 0x8c, 0x99, 0x3a, 0x27, - 0xf7, 0x60, 0x4e, 0x9d, 0x51, 0x39, 0xee, 0xb4, 0xd3, 0x3f, 0x8d, 0xce, 0x0e, 0xcc, 0x27, 0xa6, - 0xab, 0x94, 0xa2, 0x42, 0x56, 0x32, 0xcb, 0x54, 0xaa, 0x18, 0xce, 0x26, 0x67, 0xac, 0x45, 0x6f, - 0xe8, 0x7a, 0x8a, 0xe4, 0xfc, 0x9d, 0xc5, 0xab, 0x3d, 0xa0, 0x38, 0x43, 0xbf, 0xa1, 0x5f, 0xc0, - 0x58, 0x1b, 0x97, 0x15, 0xcd, 0x45, 0x4a, 0x03, 0x46, 0x16, 0x88, 0x5c, 0x03, 0x73, 0x49, 0x19, - 0xb3, 0x53, 0x59, 0x7c, 0x25, 0x9d, 0x66, 0xb8, 0xb0, 0xf6, 0x44, 0x00, 0xbd, 0x54, 0xce, 0x64, - 0x66, 0x36, 0xcd, 0xb8, 0xfa, 0x16, 0xe5, 0x7a, 0xe8, 0xbf, 0xcb, 0xe9, 0x6a, 0xac, 0xb9, 0xa4, - 0x7c, 0xba, 0x51, 0x2d, 0x53, 0x52, 0xba, 0x54, 0xc9, 0x86, 0xcc, 0x84, 0xbc, 0x7b, 0x4c, 0xe3, - 0xa4, 0x53, 0x57, 0x35, 0x4e, 0x89, 0xa4, 0x2f, 0xa5, 0x03, 0x84, 0x2b, 0x22, 0x21, 0x31, 0xb8, - 0x5c, 0x11, 0xe9, 0x29, 0xca, 0xe5, 0x8a, 0xc8, 0xca, 0x2b, 0x6e, 0x8a, 0x4d, 0x97, 0xc2, 0x96, - 0x8c, 0x2c, 0xb2, 0x19, 0xd7, 0xba, 0xc5, 0x70, 0xe2, 0x22, 0xdd, 0x3e, 0xed, 0xb4, 0x7d, 0x03, - 0xe7, 0x52, 0x33, 0xc6, 0xa2, 0x37, 0x63, 0x1b, 0x3a, 0x85, 0x13, 0xe9, 0x3d, 0x9d, 0xd2, 0x92, - 0xbd, 0x4a, 0x95, 0x5b, 0x24, 0xaf, 0x6c, 0xec, 0xc4, 0x4e, 0x48, 0x3a, 0xbb, 0x46, 0x25, 0x5f, - 0x25, 0x71, 0x6c, 0xea, 0x58, 0x2f, 0x24, 0xd1, 0xf1, 0xe3, 0x67, 0xaa, 0xd2, 0x2f, 0x21, 0x89, - 0x45, 0x2b, 0x4e, 0x73, 0xa6, 0xf6, 0xd3, 0xb5, 0x34, 0x3a, 0x2b, 0xf4, 0x32, 0x21, 0xf2, 0xc8, - 0xa2, 0x73, 0x1a, 0x9b, 0xb4, 0xaf, 0x64, 0x51, 0x1b, 0x9c, 0xfe, 0x81, 0xac, 0x52, 0xdd, 0xb6, - 0xcc, 0x5b, 0x9b, 0xda, 0x8b, 0xf3, 0x71, 0x1a, 0x9a, 0x5e, 0x5b, 0x72, 0x81, 0xf5, 0x66, 0x29, - 0xca, 0x1c, 0xad, 0x43, 0xe9, 0x43, 0x42, 0x2a, 0x6b, 0x7a, 0x74, 0x29, 0x5d, 0x42, 0x9d, 0xe5, - 0x69, 0xed, 0x68, 0x84, 0x6b, 0x11, 0xae, 0xe5, 0xac, 0x54, 0xd2, 0x29, 0xa5, 0x19, 0x3a, 0x99, - 0x1a, 0x35, 0x07, 0x4e, 0x48, 0xc1, 0x2b, 0xcf, 0xd0, 0xcc, 0x0c, 0xbd, 0x09, 0xd2, 0x99, 0x3c, - 0x95, 0x53, 0x29, 0x66, 0xe6, 0xe4, 0x4d, 0xed, 0xe9, 0x0f, 0x94, 0x53, 0x39, 0x96, 0x68, 0x17, - 0x5d, 0x8f, 0x8a, 0x66, 0x69, 0xb9, 0x78, 0x33, 0x4e, 0xfd, 0xb9, 0xa4, 0x1c, 0xbd, 0x8a, 0xa2, - 0x39, 0x35, 0x81, 0x6f, 0x02, 0x17, 0xe4, 0xf1, 0x96, 0x42, 0x2d, 0x23, 0x63, 0x6f, 0x6a, 0x0f, - 0xbf, 0xaf, 0x1c, 0x6f, 0x91, 0xcc, 0xba, 0x52, 0x71, 0xd0, 0x23, 0xf5, 0x6e, 0x2a, 0xed, 0x2d, - 0x6a, 0x40, 0x1e, 0x4f, 0x8b, 0x2b, 0x65, 0x97, 0xac, 0xa4, 0xb9, 0x89, 0x7a, 0xe8, 0xf9, 0xf8, - 0x10, 0x09, 0xbd, 0xb3, 0x11, 0x2d, 0x72, 0xaf, 0x8e, 0xc9, 0x73, 0x38, 0x21, 0x9d, 0x6e, 0xe4, - 0x1c, 0x4e, 0x4f, 0xb8, 0x9b, 0x71, 0xd1, 0x99, 0xa9, 0xdb, 0x07, 0x8e, 0x92, 0x0d, 0x57, 0x5e, - 0x73, 0xe2, 0x09, 0x7a, 0xe5, 0x11, 0x93, 0x94, 0x3c, 0x77, 0x9b, 0x48, 0x38, 0x4c, 0x3e, 0x57, - 0xf3, 0x9a, 0xa2, 0x62, 0x7a, 0x3a, 0x57, 0x79, 0xdc, 0x24, 0x26, 0x42, 0x55, 0x08, 0xaa, 0x49, - 0x45, 0x25, 0xc1, 0x84, 0xfc, 0xa6, 0x92, 0x60, 0x62, 0x16, 0xd2, 0x5b, 0x54, 0xaf, 0x62, 0xba, - 0x6d, 0xac, 0xea, 0x55, 0x94, 0x2c, 0x95, 0x11, 0xb5, 0x06, 0xfa, 0x88, 0x2a, 0x35, 0xb2, 0x35, - 0x21, 0x0b, 0x3a, 0x25, 0x5f, 0xd1, 0xf9, 0x8d, 0xcb, 0x14, 0xa0, 0x52, 0x91, 0x14, 0xcd, 0x42, - 0x2a, 0xb5, 0x51, 0xf1, 0x6c, 0xa1, 0xef, 0x0a, 0xbd, 0x08, 0xed, 0xb0, 0xae, 0xb5, 0xca, 0xe8, - 0xf3, 0xbb, 0x42, 0x29, 0xa2, 0xa1, 0xc5, 0x12, 0x80, 0x46, 0xd1, 0xbe, 0x07, 0x93, 0x61, 0xb2, - 0xcf, 0xbd, 0x65, 0x05, 0x31, 0x92, 0x01, 0x34, 0x8a, 0xf8, 0xbe, 0x78, 0xa0, 0xa1, 0xed, 0xe9, - 0x95, 0xbd, 0xd4, 0x64, 0x10, 0xe6, 0x09, 0x8d, 0x28, 0x61, 0xd4, 0x06, 0xd3, 0x4f, 0xee, 0x49, - 0x35, 0xcf, 0x91, 0x5c, 0x17, 0x09, 0x69, 0xe5, 0xe4, 0xba, 0x48, 0x4a, 0xd6, 0x46, 0x7b, 0x43, - 0xef, 0xea, 0x5f, 0x09, 0x8d, 0x43, 0x48, 0xf4, 0x42, 0x66, 0xca, 0xb5, 0xe2, 0xc5, 0xec, 0x3c, - 0x65, 0x21, 0xe9, 0x3a, 0x14, 0xa2, 0x49, 0x99, 0x50, 0x52, 0xda, 0x3c, 0x25, 0x7b, 0x96, 0xbc, - 0x03, 0xa6, 0x66, 0x73, 0xaa, 0x89, 0x67, 0x00, 0x9d, 0x6e, 0x4a, 0xf2, 0x34, 0x95, 0x74, 0xb6, - 0x58, 0x16, 0xe6, 0x67, 0x52, 0x2f, 0xd2, 0xb1, 0xfc, 0x4f, 0xaa, 0x58, 0x96, 0x90, 0xd2, 0xc9, - 0x16, 0xf1, 0x1b, 0x92, 0x13, 0xbc, 0xbe, 0xa5, 0xdf, 0x70, 0x33, 0x02, 0x66, 0xf6, 0x7c, 0xcc, - 0x46, 0xbf, 0x00, 0x0b, 0x29, 0xb1, 0x05, 0xd1, 0xd5, 0x88, 0x42, 0x39, 0x39, 0xf6, 0x60, 0x31, - 0x2b, 0x0f, 0x22, 0x7a, 0x48, 0xad, 0x20, 0x34, 0x4f, 0xcd, 0xd8, 0xcb, 0xe2, 0x23, 0x3b, 0x38, - 0x64, 0x99, 0x3d, 0x95, 0x33, 0x37, 0xd1, 0xc5, 0x13, 0xd5, 0xe9, 0x7d, 0x45, 0x2b, 0x4d, 0x78, - 0x5c, 0x4c, 0x20, 0x58, 0x4c, 0x26, 0x48, 0x93, 0xc1, 0xd7, 0xc4, 0x13, 0x55, 0xb4, 0x9b, 0xea, - 0xf0, 0x93, 0x9c, 0x53, 0x53, 0xbb, 0x59, 0x13, 0x02, 0x56, 0x32, 0xc5, 0x74, 0x8f, 0xda, 0x54, - 0x8a, 0xf7, 0x09, 0xc5, 0x98, 0x93, 0x2c, 0x4a, 0x01, 0xcf, 0x3e, 0x3d, 0x4c, 0xf1, 0xbd, 0xd6, - 0xb1, 0x96, 0x95, 0xfe, 0xa5, 0xb9, 0xe3, 0xa6, 0xf6, 0x6f, 0x55, 0xec, 0xa7, 0xe4, 0xfe, 0xf5, - 0xfb, 0xc5, 0x96, 0xcf, 0x7c, 0x11, 0x3f, 0x6d, 0x6d, 0xa0, 0x4a, 0x79, 0x31, 0xa5, 0x1c, 0x6d, - 0x51, 0xb3, 0xa6, 0x68, 0xa9, 0x72, 0x71, 0x4d, 0x76, 0x04, 0x4f, 0xa5, 0xc7, 0xd6, 0xb1, 0xe6, - 0x48, 0x7b, 0x9a, 0x75, 0x1c, 0xf1, 0xc0, 0xe5, 0xeb, 0x58, 0x2b, 0x3d, 0xdd, 0x3a, 0x8e, 0x10, - 0xd4, 0xd7, 0x71, 0xb4, 0x9b, 0x51, 0x45, 0x40, 0xea, 0xac, 0x46, 0xbb, 0x29, 0xd7, 0x71, 0x32, - 0xc5, 0x74, 0x87, 0xe7, 0x54, 0x8a, 0x72, 0x1d, 0xeb, 0x14, 0x53, 0xc0, 0xfb, 0x5c, 0xc7, 0xd1, - 0x46, 0xf4, 0x75, 0x7c, 0xaa, 0xfe, 0xc9, 0x75, 0x9c, 0xdc, 0xbf, 0x53, 0xaf, 0xe3, 0x48, 0x84, - 0x00, 0x6d, 0xa0, 0x49, 0xeb, 0x38, 0x0a, 0xcf, 0xd6, 0x71, 0xb4, 0x34, 0xa2, 0x80, 0xc9, 0x58, - 0xc7, 0x51, 0xcc, 0x2f, 0x28, 0xbd, 0x88, 0x77, 0x73, 0x3f, 0x2b, 0x39, 0xd5, 0x31, 0x1a, 0x3d, - 0xa2, 0xda, 0xbf, 0x48, 0x79, 0x7f, 0xab, 0x79, 0x29, 0x8d, 0x28, 0x5d, 0xcf, 0x7b, 0x82, 0x89, - 0xd1, 0xee, 0xea, 0xaa, 0xad, 0x64, 0xe7, 0xee, 0x8c, 0x0e, 0xef, 0x91, 0x75, 0xd3, 0xca, 0xa0, - 0x9b, 0xe5, 0x9b, 0x9e, 0x41, 0x57, 0xde, 0x83, 0xa2, 0x74, 0x53, 0x51, 0xb2, 0xd7, 0xf7, 0x97, - 0xe2, 0xfd, 0x23, 0x8a, 0xb7, 0x1c, 0xb9, 0x59, 0x9d, 0xba, 0xa7, 0xf2, 0x86, 0x15, 0xed, 0xe9, - 0x69, 0xd7, 0xf9, 0x43, 0x21, 0x3d, 0xc4, 0x82, 0x5a, 0x44, 0x06, 0xad, 0xae, 0xf5, 0xd4, 0x1a, - 0xb4, 0x43, 0x55, 0xbd, 0xf1, 0x72, 0x45, 0x4d, 0x9c, 0x16, 0x3d, 0xa3, 0x27, 0xd5, 0x98, 0x7b, - 0xbe, 0x4a, 0x35, 0xcd, 0x77, 0x5f, 0x52, 0x8d, 0x63, 0x7f, 0x46, 0x55, 0x67, 0xdc, 0x9f, 0xc8, - 0x79, 0xec, 0xa6, 0xdf, 0x73, 0x66, 0x35, 0xd3, 0x2b, 0x02, 0x4b, 0x2d, 0xde, 0x3e, 0xe6, 0x0f, - 0x7c, 0xa2, 0x30, 0x95, 0xf9, 0x49, 0xf8, 0xe8, 0x33, 0x28, 0xf0, 0xe3, 0x2d, 0x24, 0x90, 0x04, - 0x98, 0x3a, 0x75, 0x15, 0xa1, 0xb1, 0xeb, 0xa3, 0x07, 0xfd, 0x68, 0xea, 0xfa, 0xe1, 0x44, 0xba, - 0x5a, 0x8b, 0x7c, 0x0e, 0x77, 0xbc, 0xae, 0x1f, 0xe0, 0x56, 0x5c, 0x1d, 0xa5, 0x77, 0x46, 0x18, - 0x80, 0xe8, 0xe0, 0x7b, 0xcb, 0x68, 0x83, 0x9e, 0x6d, 0x7a, 0x71, 0x96, 0xbe, 0x2e, 0x99, 0x0c, - 0x3d, 0x7a, 0xd6, 0xa5, 0xe3, 0x8a, 0xde, 0xa7, 0xb4, 0xb6, 0xd3, 0x3b, 0x25, 0x59, 0xd4, 0xe7, - 0xe8, 0xd2, 0x58, 0xc4, 0x2e, 0xd4, 0x4c, 0x77, 0xd8, 0x8b, 0x33, 0x51, 0x57, 0x1a, 0xf4, 0x39, - 0x8c, 0x0b, 0xe4, 0xde, 0x0c, 0x89, 0x62, 0x53, 0x86, 0xac, 0xc0, 0x94, 0xe6, 0x27, 0x24, 0x6f, - 0x37, 0x49, 0xde, 0x43, 0x19, 0xf3, 0x3c, 0xa5, 0xf9, 0x03, 0x49, 0x2a, 0x49, 0x5e, 0x42, 0xa9, - 0x54, 0x3e, 0x81, 0x09, 0xce, 0xd2, 0x4c, 0x6e, 0xa4, 0x2b, 0xeb, 0xe6, 0x15, 0xfb, 0xea, 0x6e, - 0xcb, 0x0e, 0xaa, 0xae, 0xf3, 0xd8, 0x3e, 0xe8, 0xc9, 0x98, 0x38, 0xca, 0xde, 0x32, 0xfa, 0x9a, - 0xe6, 0x9a, 0x13, 0x19, 0x00, 0x71, 0xf0, 0xcc, 0xf5, 0x9e, 0xd8, 0xce, 0x41, 0x0f, 0x92, 0x97, - 0x74, 0x92, 0x51, 0x3c, 0x61, 0x5a, 0xf2, 0x35, 0x14, 0xeb, 0xe9, 0xc4, 0x7b, 0x12, 0xc9, 0xfe, - 0xbc, 0xd4, 0x61, 0x89, 0x1a, 0x09, 0x9d, 0xb6, 0xef, 0x99, 0x44, 0xbf, 0x62, 0x71, 0x91, 0x84, - 0xa2, 0xbf, 0xe9, 0x7a, 0xad, 0xde, 0x14, 0x4b, 0xba, 0x59, 0x70, 0x04, 0x4d, 0x30, 0xe3, 0x2b, - 0x38, 0x57, 0x4f, 0x25, 0xdd, 0x8b, 0x44, 0x2f, 0x49, 0xf2, 0x3c, 0x65, 0xc5, 0x29, 0xfb, 0x9d, - 0x49, 0x73, 0x83, 0x9e, 0x69, 0xe4, 0x3b, 0x54, 0xf3, 0xf0, 0x63, 0xec, 0x51, 0xe3, 0xf3, 0x5e, - 0x66, 0xd7, 0x3a, 0xb8, 0x18, 0xf9, 0x06, 0x9c, 0xa9, 0xc7, 0x48, 0xa5, 0xa1, 0x64, 0xf7, 0xea, - 0x3e, 0xcc, 0xd2, 0x91, 0xf6, 0xd9, 0xaf, 0x1e, 0x46, 0x44, 0x13, 0x6b, 0x38, 0xd8, 0xdd, 0xe8, - 0xc1, 0x25, 0xe1, 0x1d, 0x21, 0x00, 0xf7, 0xee, 0x10, 0xcc, 0xba, 0x82, 0x19, 0x87, 0x48, 0xdd, - 0xbc, 0x9f, 0x8b, 0x87, 0x94, 0x9e, 0xcd, 0xa6, 0x51, 0xb8, 0x4b, 0xcf, 0x42, 0x6e, 0x80, 0xad, - 0xa8, 0x20, 0xb5, 0x94, 0xb0, 0xc5, 0x29, 0xd5, 0x16, 0xdb, 0x47, 0x65, 0x76, 0xfd, 0x53, 0x93, - 0xc7, 0x2a, 0xa6, 0x17, 0x89, 0x59, 0x65, 0xa3, 0x24, 0x98, 0x0a, 0x75, 0xd3, 0x6d, 0x3e, 0x51, - 0x55, 0xa8, 0x4a, 0x36, 0xd2, 0xa2, 0x9e, 0x2b, 0x94, 0x9f, 0xf8, 0x34, 0x61, 0xa8, 0x6a, 0x17, - 0xa6, 0xe6, 0x23, 0x55, 0x55, 0xa8, 0x7a, 0xe6, 0xd4, 0xbb, 0x42, 0xb7, 0x48, 0x1b, 0xd4, 0x29, - 0xa7, 0xb2, 0x46, 0xaa, 0x15, 0x29, 0x92, 0xae, 0x56, 0x54, 0x3b, 0x9a, 0xfe, 0x10, 0x80, 0xe2, - 0xa9, 0x53, 0xe5, 0x65, 0x25, 0x35, 0xab, 0x6a, 0x86, 0x79, 0xd7, 0x6c, 0x42, 0xfa, 0x68, 0x79, - 0xbd, 0x4b, 0x4f, 0x2d, 0x5d, 0xd4, 0x6d, 0x95, 0x6e, 0xe7, 0xd0, 0x16, 0x9c, 0x5d, 0xc3, 0x01, - 0x3f, 0xe3, 0x4c, 0xec, 0x07, 0x9e, 0xdd, 0x0c, 0x32, 0x5f, 0x15, 0xc5, 0xdd, 0x24, 0x01, 0x67, - 0xef, 0x1d, 0x42, 0xaf, 0x9e, 0x4c, 0x2f, 0x13, 0x2f, 0xc3, 0x12, 0x98, 0x3f, 0x55, 0x9c, 0xa6, - 0x8b, 0xe9, 0x4b, 0x7c, 0x94, 0x19, 0xe8, 0xa4, 0xa3, 0x16, 0xc2, 0x90, 0xfe, 0xfc, 0xb6, 0x75, - 0x13, 0x46, 0x18, 0x52, 0xea, 0x07, 0x75, 0x52, 0xc5, 0x41, 0x77, 0x84, 0xc9, 0x28, 0x41, 0xd1, - 0xaa, 0x52, 0xfb, 0x75, 0x07, 0xc6, 0xd9, 0xd5, 0xaa, 0x7f, 0x94, 0x8f, 0x84, 0x4d, 0x69, 0x56, - 0xc7, 0xd2, 0x90, 0x3f, 0x83, 0x29, 0xd5, 0x38, 0xe7, 0xf4, 0x8c, 0xfc, 0x84, 0xbe, 0xfd, 0x8a, - 0x27, 0x96, 0x74, 0xfc, 0xf9, 0x48, 0x9a, 0x07, 0xce, 0x52, 0x76, 0x40, 0xca, 0xfc, 0xed, 0x69, - 0xdd, 0x3f, 0x13, 0xc3, 0x46, 0x1f, 0x09, 0xbf, 0x2c, 0x89, 0x1c, 0x07, 0xca, 0xe0, 0xd9, 0x34, - 0x63, 0xf3, 0xcb, 0x20, 0xcb, 0x03, 0xb6, 0x67, 0xb7, 0xfb, 0x79, 0xa3, 0xee, 0xcd, 0xba, 0x34, - 0x2a, 0xdb, 0x54, 0x4a, 0x8b, 0x25, 0x20, 0x49, 0x27, 0x74, 0x31, 0x3d, 0x67, 0x09, 0x9d, 0x8c, - 0xfb, 0xf4, 0x16, 0x18, 0xcf, 0xc5, 0x9f, 0x36, 0xbc, 0x8c, 0x1c, 0x28, 0xe1, 0xb5, 0x37, 0x4e, - 0x2e, 0x03, 0x2d, 0xeb, 0x16, 0xcd, 0x3d, 0x45, 0x5f, 0x0b, 0xb9, 0x0d, 0x61, 0xe3, 0xd8, 0xff, - 0x60, 0xd3, 0x7b, 0x76, 0x3e, 0xe1, 0x55, 0xbc, 0xe7, 0x5c, 0xa4, 0x91, 0xfb, 0x05, 0x2a, 0x1d, - 0x26, 0xe7, 0xbd, 0x4e, 0x25, 0x76, 0x5d, 0x31, 0xac, 0xc8, 0xce, 0x98, 0xfd, 0x84, 0x3a, 0xbc, - 0x25, 0xa7, 0x68, 0xb9, 0xd6, 0x83, 0x8a, 0xe0, 0xc4, 0x9b, 0x3d, 0xe1, 0xe4, 0x1b, 0xeb, 0x79, - 0xf6, 0x85, 0x4d, 0x6e, 0xaf, 0x47, 0xca, 0x99, 0x84, 0x67, 0xef, 0x94, 0xa4, 0xd2, 0x82, 0xa0, - 0x6e, 0x40, 0x9a, 0x39, 0x86, 0x34, 0xf6, 0x7f, 0x01, 0xa5, 0xd0, 0x7a, 0xe4, 0x74, 0x93, 0x90, - 0x6e, 0xb7, 0x88, 0xe2, 0xa9, 0xb6, 0x51, 0x56, 0x54, 0xfc, 0xe2, 0xe5, 0x34, 0x0e, 0xfb, 0x8a, - 0x59, 0x12, 0xb7, 0x7b, 0x8b, 0x24, 0x2b, 0x4a, 0x4b, 0x7b, 0x94, 0xa1, 0x87, 0xe5, 0x1e, 0x80, - 0xaf, 0x85, 0x50, 0x7c, 0xb6, 0x4f, 0x4f, 0x48, 0x1a, 0x77, 0x44, 0x08, 0x19, 0x19, 0xd3, 0x7b, - 0x1a, 0xdb, 0xb5, 0xe8, 0x54, 0x9c, 0x76, 0x42, 0xad, 0xd0, 0xeb, 0x2d, 0x9e, 0x0f, 0x5c, 0xca, - 0x72, 0xa9, 0xb9, 0xc9, 0xe5, 0xec, 0x66, 0x24, 0x13, 0xaf, 0x92, 0x6d, 0xca, 0x9a, 0xd0, 0x92, - 0x11, 0x57, 0xcd, 0xcd, 0x50, 0xad, 0x90, 0x90, 0xa5, 0xb8, 0x08, 0xa2, 0xd2, 0xdc, 0x44, 0x75, - 0x11, 0xd2, 0x35, 0x29, 0xfe, 0x8a, 0xf4, 0xf0, 0x49, 0xaa, 0xcc, 0xb8, 0x5d, 0xd4, 0x45, 0x10, - 0xd7, 0xd7, 0x49, 0xb4, 0x01, 0x0b, 0x29, 0x51, 0x6b, 0xe4, 0x0b, 0x6b, 0x76, 0x54, 0x9b, 0x62, - 0x76, 0xc3, 0xe8, 0x6b, 0x98, 0x4f, 0x0c, 0x6b, 0x23, 0xb5, 0xc4, 0x59, 0x41, 0x6f, 0x7a, 0x11, - 0x7f, 0x02, 0x8b, 0x69, 0x99, 0x83, 0x43, 0x8f, 0xa3, 0xec, 0x74, 0xce, 0xf2, 0x4c, 0xed, 0x99, - 0x82, 0x78, 0x0b, 0xe6, 0x92, 0xb2, 0xf1, 0xca, 0xcd, 0x91, 0x91, 0xaa, 0x37, 0xd1, 0xad, 0xa9, - 0x06, 0xf3, 0x89, 0x19, 0x71, 0x25, 0x67, 0xb2, 0xf2, 0xe5, 0x26, 0x52, 0xfc, 0x12, 0x16, 0x52, - 0xd2, 0xbf, 0x86, 0xcf, 0xe5, 0x99, 0xe9, 0x61, 0x33, 0x8c, 0x95, 0x8a, 0xe9, 0x99, 0x45, 0xa5, - 0x8d, 0x5a, 0xcf, 0xe4, 0xa3, 0xc5, 0xc4, 0x74, 0xcb, 0x68, 0x87, 0x2e, 0xc2, 0xa4, 0x54, 0xa3, - 0xea, 0x22, 0xcc, 0x48, 0x45, 0x9a, 0xe2, 0x8e, 0xb6, 0x90, 0x92, 0x5d, 0x34, 0x83, 0x6a, 0x1f, - 0xbd, 0xdd, 0x12, 0xe7, 0xbf, 0x9e, 0x87, 0x31, 0x62, 0xf7, 0x9c, 0x98, 0xa4, 0x31, 0xb1, 0x9f, - 0x4a, 0x1c, 0x87, 0x76, 0x3b, 0x43, 0x0c, 0x42, 0x6a, 0x20, 0x07, 0x02, 0x49, 0x15, 0xed, 0x53, - 0x2a, 0x6e, 0xd6, 0x89, 0x1a, 0x43, 0xa6, 0x82, 0xe7, 0x87, 0x30, 0x59, 0x57, 0x1b, 0x4f, 0x68, - 0x24, 0x75, 0x51, 0x48, 0x47, 0x9e, 0xde, 0x7d, 0xcf, 0x30, 0xf6, 0x94, 0x1f, 0x87, 0xbe, 0x46, - 0x91, 0x6a, 0xde, 0xa2, 0xa5, 0x4a, 0x91, 0x27, 0x75, 0x52, 0x16, 0x22, 0x69, 0xde, 0x92, 0x9c, - 0x5d, 0xa5, 0xc1, 0x82, 0xbb, 0x47, 0x93, 0x4c, 0x21, 0xa3, 0x77, 0xf2, 0x34, 0x69, 0xd6, 0x9e, - 0x99, 0xa5, 0x8a, 0xd9, 0xe2, 0x84, 0xc9, 0x61, 0x54, 0x5b, 0x9c, 0x58, 0xca, 0x19, 0xd5, 0x16, - 0x27, 0x21, 0x9f, 0xcc, 0x2a, 0xa5, 0x15, 0x46, 0xc5, 0xcf, 0x50, 0x18, 0x48, 0x32, 0x09, 0xc1, - 0xf7, 0x1f, 0xa8, 0xe1, 0x40, 0x58, 0x2c, 0xfd, 0x0c, 0x7d, 0x68, 0x34, 0x0c, 0x48, 0x24, 0xf8, - 0xfe, 0x7d, 0x28, 0x44, 0xe3, 0x88, 0x49, 0x75, 0x54, 0x4a, 0x80, 0xb1, 0x8c, 0x25, 0x06, 0x61, - 0xb4, 0x30, 0xa9, 0xf4, 0x89, 0x05, 0x10, 0x2b, 0x9e, 0x4b, 0xa8, 0x91, 0xe2, 0xda, 0xa4, 0x1a, - 0x5b, 0x4c, 0x9a, 0x93, 0x25, 0x04, 0x1c, 0x2b, 0x9e, 0x4f, 0xac, 0xe3, 0x84, 0x02, 0x96, 0xf7, - 0x2f, 0x39, 0x6b, 0x60, 0xe8, 0x43, 0x95, 0x01, 0x23, 0x9a, 0xb9, 0xd1, 0x0f, 0x28, 0x6f, 0x15, - 0xcb, 0x58, 0xfe, 0x71, 0x28, 0xf4, 0x66, 0x82, 0xaf, 0x83, 0x06, 0x11, 0x5a, 0x5a, 0x85, 0x2f, - 0xee, 0x49, 0x99, 0x11, 0xd1, 0x23, 0x11, 0x5b, 0x3d, 0xa5, 0xa5, 0x5e, 0x04, 0x52, 0x67, 0xf0, - 0x91, 0x88, 0xa6, 0xfe, 0xba, 0x09, 0xef, 0xc3, 0x52, 0xc4, 0x95, 0x42, 0x27, 0x7c, 0x23, 0xd9, - 0xdf, 0x22, 0x91, 0x3d, 0xe9, 0xf2, 0xf0, 0xa5, 0xb8, 0xdf, 0x45, 0x64, 0xde, 0x4f, 0x7b, 0x56, - 0x3d, 0x84, 0x69, 0x7a, 0x3c, 0x88, 0x5c, 0x97, 0x61, 0x14, 0x19, 0xbd, 0x38, 0x1a, 0xce, 0x28, - 0x5a, 0x2b, 0xcd, 0x51, 0x27, 0xb9, 0x3f, 0x2e, 0xcb, 0x9c, 0x59, 0xd4, 0x9d, 0x74, 0x69, 0x61, - 0xd2, 0xd7, 0x87, 0x27, 0xe4, 0x44, 0x9f, 0xc0, 0x4c, 0xe8, 0xa6, 0xcb, 0x48, 0x24, 0x80, 0x65, - 0x28, 0xa1, 0x66, 0x42, 0x5f, 0xdd, 0xd3, 0xa3, 0xaf, 0x8b, 0x4f, 0x48, 0x88, 0x7e, 0x21, 0xe6, - 0x82, 0xa2, 0x8d, 0xa1, 0x9f, 0x2f, 0x89, 0xc2, 0xdb, 0xd3, 0xce, 0x4e, 0x93, 0x6e, 0xb7, 0xe4, - 0xa0, 0x79, 0xea, 0x76, 0xcb, 0x0c, 0xec, 0x27, 0xc5, 0xd6, 0x14, 0x3a, 0x0f, 0xe1, 0x0a, 0x0d, - 0xaa, 0x52, 0xc3, 0x4e, 0xcb, 0x76, 0x0e, 0x92, 0xa1, 0xd2, 0xfb, 0x1e, 0x0d, 0xc5, 0xd2, 0x86, - 0xcb, 0x3d, 0xa3, 0x06, 0xa2, 0x5b, 0x9a, 0xf9, 0x48, 0xef, 0xf8, 0x82, 0x59, 0x6e, 0x5f, 0x49, - 0xc1, 0xf7, 0xe4, 0xf7, 0x31, 0x23, 0x0e, 0xa0, 0xfc, 0x3e, 0x66, 0x46, 0xef, 0xfb, 0x92, 0x26, - 0x2c, 0xe0, 0xdf, 0x16, 0x1a, 0x28, 0x09, 0x3b, 0x2c, 0x9c, 0x70, 0xe6, 0x93, 0xca, 0x65, 0xfd, - 0xc1, 0x31, 0x86, 0x48, 0xef, 0x22, 0x17, 0xf9, 0x0d, 0x2a, 0x8d, 0x78, 0x6f, 0x22, 0x19, 0x66, - 0xcb, 0x17, 0xd9, 0x02, 0x3c, 0x75, 0xcf, 0x53, 0xca, 0x2b, 0x2b, 0x3f, 0xf9, 0xb3, 0x8b, 0xb9, - 0x9f, 0xfc, 0xf4, 0x62, 0xee, 0x3f, 0xfc, 0xf4, 0x62, 0xee, 0x4f, 0x7f, 0x7a, 0x31, 0xf7, 0xfd, - 0xe5, 0xfe, 0x82, 0xda, 0x36, 0xdb, 0x36, 0x76, 0x82, 0x5b, 0x8c, 0xdc, 0x08, 0xfd, 0xef, 0xee, - 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x03, 0x31, 0xc1, 0x28, 0x81, 0xde, 0x00, 0x00, + 0x07, 0x37, 0x89, 0xfc, 0x5c, 0xb1, 0xad, 0x03, 0xc7, 0xf5, 0x03, 0xbb, 0xb9, 0xb1, 0xb2, 0x58, + 0xa0, 0x6b, 0xe8, 0x1a, 0x19, 0x7d, 0x53, 0x42, 0x34, 0x5a, 0x12, 0xa4, 0x61, 0xb7, 0x14, 0xda, + 0x29, 0x54, 0xd0, 0xd7, 0x30, 0xc5, 0xdb, 0xc2, 0x1e, 0x5d, 0x9a, 0x67, 0xb2, 0x17, 0x9a, 0x04, + 0x66, 0x1f, 0x62, 0x4f, 0xfc, 0x64, 0xaa, 0x8d, 0x4e, 0x0b, 0x7d, 0x03, 0x13, 0x0f, 0xef, 0x95, + 0x4d, 0xec, 0x77, 0x5c, 0xc7, 0xc7, 0x8b, 0x88, 0xce, 0xe8, 0x45, 0x4e, 0xfa, 0xe1, 0xbd, 0x72, + 0xb9, 0x1b, 0x1c, 0x62, 0x27, 0xb0, 0x9b, 0x56, 0x80, 0x05, 0x54, 0xa5, 0x48, 0x56, 0xde, 0xd1, + 0x63, 0xab, 0xe1, 0xf1, 0x12, 0x65, 0x14, 0x2a, 0x39, 0x54, 0x84, 0xb1, 0x7a, 0x7d, 0x7d, 0xd3, + 0x3d, 0xb0, 0x9d, 0xc5, 0x59, 0xc2, 0x0c, 0x53, 0xfe, 0x46, 0xfb, 0x30, 0xaf, 0xe8, 0xee, 0x0d, + 0xf2, 0x3f, 0x3e, 0xc2, 0x4e, 0xb0, 0x38, 0x47, 0xfb, 0xf0, 0xb6, 0x3c, 0x7c, 0xdc, 0x54, 0x55, + 0xfc, 0xa7, 0x77, 0x6e, 0x96, 0xc3, 0x9f, 0x75, 0x81, 0x64, 0xce, 0x59, 0x09, 0xa5, 0x68, 0x07, + 0x46, 0x6b, 0x5d, 0xaf, 0xe3, 0xfa, 0x78, 0x71, 0x9e, 0x32, 0xed, 0x4a, 0xd6, 0xee, 0xe4, 0xa0, + 0x95, 0x79, 0x22, 0x9e, 0x3b, 0xec, 0x87, 0x32, 0x32, 0x41, 0xca, 0xf8, 0x12, 0xc6, 0xe5, 0x66, + 0x46, 0xa3, 0x30, 0x58, 0x6e, 0xb7, 0x0b, 0x03, 0xe4, 0x8f, 0x7a, 0x7d, 0xbd, 0x90, 0x43, 0xd3, + 0x00, 0xa1, 0x04, 0x2b, 0xe4, 0xd1, 0x24, 0x8c, 0x09, 0x09, 0x53, 0x18, 0xa4, 0xf0, 0x9d, 0x4e, + 0x61, 0x08, 0x21, 0x98, 0xd6, 0xd7, 0x79, 0x61, 0xd8, 0x78, 0x0e, 0xe3, 0x72, 0x7a, 0xd0, 0x0c, + 0x4c, 0xec, 0x6e, 0xd5, 0x6b, 0xab, 0xd5, 0x8d, 0x7b, 0x1b, 0xab, 0x2b, 0x85, 0x01, 0x74, 0x01, + 0xce, 0xed, 0xd4, 0xd7, 0x1b, 0x2b, 0x95, 0xc6, 0xe6, 0x76, 0xb5, 0xbc, 0xd9, 0xa8, 0x99, 0xdb, + 0x5f, 0x7e, 0xd5, 0xd8, 0xd9, 0xdd, 0xda, 0x5a, 0xdd, 0x2c, 0xe4, 0xd0, 0x22, 0xcc, 0x91, 0xea, + 0x07, 0xbb, 0x95, 0x55, 0x15, 0xa0, 0x90, 0x47, 0x97, 0xe1, 0x42, 0x52, 0x4d, 0x63, 0x7d, 0xb5, + 0xbc, 0xb2, 0xb9, 0x5a, 0xaf, 0x17, 0x06, 0x8d, 0x36, 0x4c, 0x28, 0x2c, 0x40, 0x4b, 0xb0, 0x58, + 0x5d, 0x35, 0x77, 0x1a, 0xb5, 0x5d, 0xb3, 0xb6, 0x5d, 0x5f, 0x6d, 0xe8, 0x1d, 0x89, 0xd6, 0x6e, + 0x6e, 0xaf, 0x6d, 0x6c, 0x35, 0x48, 0x51, 0xbd, 0x90, 0x23, 0xad, 0x69, 0xb5, 0xf5, 0x8d, 0xad, + 0xb5, 0xcd, 0xd5, 0xc6, 0x6e, 0x7d, 0x95, 0x83, 0xe4, 0x8d, 0x5f, 0xcd, 0xc7, 0x04, 0x3a, 0x5a, + 0x86, 0x89, 0x3a, 0x3b, 0x4d, 0xd2, 0x45, 0xce, 0xd4, 0xf7, 0xc2, 0xc9, 0x71, 0x69, 0x92, 0x1f, + 0x32, 0xd9, 0xfa, 0x55, 0x81, 0xc8, 0x37, 0xba, 0x46, 0xe6, 0xb3, 0xe9, 0xb6, 0xd5, 0x6f, 0x74, + 0x87, 0x97, 0x99, 0xb2, 0x16, 0x2d, 0x2b, 0x5f, 0x73, 0xa6, 0xcb, 0x53, 0x7d, 0x51, 0x7c, 0xcd, + 0x55, 0xc9, 0x2e, 0xbf, 0xeb, 0xcb, 0xe1, 0xc4, 0xf1, 0x8f, 0x30, 0xc5, 0x49, 0xf8, 0x92, 0x48, + 0x38, 0xf4, 0x96, 0xd0, 0x72, 0x98, 0xee, 0x4d, 0x45, 0x7d, 0x44, 0x6b, 0xe4, 0x0a, 0x8e, 0xd1, + 0x4d, 0x11, 0xab, 0xe8, 0xa3, 0xe8, 0xca, 0xe0, 0xcc, 0xa0, 0xc4, 0x22, 0xd2, 0xd3, 0x8c, 0x80, + 0xa2, 0x12, 0x0c, 0xb3, 0xfd, 0xc6, 0xf8, 0x41, 0xf5, 0xaa, 0x36, 0x29, 0x30, 0x59, 0xb9, 0xf1, + 0x1b, 0x83, 0xea, 0x27, 0x86, 0xe8, 0x51, 0x0a, 0xbf, 0xa9, 0x1e, 0x45, 0xf9, 0x4c, 0x4b, 0x89, + 0xca, 0x54, 0xc7, 0xbe, 0x4f, 0x35, 0x50, 0x4e, 0x91, 0xaa, 0x4c, 0x3e, 0x2b, 0x24, 0x87, 0xaa, + 0x10, 0x80, 0xa8, 0xf5, 0x4c, 0x7f, 0xa2, 0x6a, 0xfd, 0x60, 0xa8, 0xd6, 0x73, 0x0d, 0x8b, 0xa9, + 0xf5, 0x21, 0x08, 0x99, 0x73, 0xfe, 0x89, 0xa7, 0x7d, 0x18, 0x0a, 0xe7, 0x9c, 0xab, 0x05, 0x7c, + 0xce, 0x15, 0x20, 0xf4, 0x21, 0x40, 0xf9, 0x51, 0x9d, 0x6a, 0xc7, 0xe6, 0x16, 0x57, 0x73, 0xa8, + 0x40, 0xb2, 0x9e, 0xf9, 0xec, 0x43, 0x60, 0x79, 0xaa, 0xfe, 0xaf, 0x40, 0xa3, 0x0a, 0x4c, 0x95, + 0x7f, 0xdc, 0xf5, 0xf0, 0x46, 0x8b, 0xc8, 0xb4, 0x80, 0x1d, 0x74, 0xc6, 0x2b, 0x4b, 0x27, 0xc7, + 0xa5, 0x45, 0x8b, 0x54, 0x34, 0x6c, 0x5e, 0xa3, 0x10, 0xd0, 0x51, 0xd0, 0x36, 0x9c, 0x59, 0xab, + 0xd6, 0xf8, 0x2a, 0x2c, 0x37, 0x9b, 0x6e, 0xd7, 0x09, 0xb8, 0x6e, 0x73, 0xf9, 0xe4, 0xb8, 0x74, + 0xe1, 0xa0, 0xd9, 0x69, 0x88, 0x15, 0x6b, 0xb1, 0x6a, 0x55, 0xb9, 0x89, 0xe1, 0x1a, 0x6d, 0x98, + 0x5e, 0xc3, 0x01, 0x59, 0x75, 0x42, 0x51, 0xcd, 0x9e, 0x93, 0x8f, 0x61, 0xe2, 0x91, 0x1d, 0x1c, + 0xd6, 0x71, 0xd3, 0xc3, 0x81, 0x38, 0x46, 0x53, 0x0e, 0x3c, 0xb3, 0x83, 0xc3, 0x86, 0xcf, 0xca, + 0x55, 0x91, 0xac, 0x80, 0x1b, 0xab, 0x30, 0xc3, 0x5b, 0x93, 0x7a, 0xf1, 0xb2, 0x4e, 0x30, 0x47, + 0x09, 0xd2, 0x59, 0x50, 0x09, 0xea, 0x64, 0xfe, 0x75, 0x1e, 0xe6, 0xab, 0x87, 0x96, 0x73, 0x80, + 0x6b, 0x96, 0xef, 0x3f, 0x73, 0xbd, 0x96, 0xd2, 0x79, 0x7a, 0x28, 0x88, 0x75, 0x9e, 0x9e, 0x02, + 0x96, 0x61, 0x62, 0xbb, 0xdd, 0x12, 0x38, 0xfc, 0xc0, 0x42, 0xdb, 0x72, 0xdb, 0xad, 0x46, 0x47, + 0xd0, 0x52, 0x81, 0x08, 0xce, 0x16, 0x7e, 0x26, 0x71, 0x06, 0x43, 0x1c, 0x07, 0x3f, 0x53, 0x70, + 0x14, 0x20, 0xb4, 0x0a, 0x67, 0xea, 0xb8, 0xe9, 0x3a, 0xad, 0x7b, 0x56, 0x33, 0x70, 0xbd, 0x1d, + 0xf7, 0x09, 0x76, 0xf8, 0xfa, 0xa2, 0x3a, 0x9d, 0x4f, 0x2b, 0x1b, 0x8f, 0x69, 0x6d, 0x23, 0x20, + 0xd5, 0x66, 0x1c, 0x03, 0x6d, 0xc3, 0xd8, 0x23, 0x6e, 0x8c, 0xe1, 0xa7, 0x9c, 0xab, 0x37, 0xa5, + 0x75, 0xa6, 0xea, 0x61, 0xba, 0x28, 0xac, 0xb6, 0x3c, 0xa7, 0xc9, 0x4f, 0x24, 0x95, 0x43, 0x02, + 0xd2, 0x94, 0x44, 0x8c, 0x5d, 0x98, 0xaa, 0xb5, 0xbb, 0x07, 0xb6, 0x43, 0x24, 0x46, 0x1d, 0xff, + 0x08, 0xad, 0x00, 0x84, 0x05, 0xdc, 0xc4, 0x32, 0xcb, 0xcf, 0x46, 0x61, 0xc5, 0xde, 0x5d, 0xbe, + 0x91, 0x68, 0x09, 0x55, 0x66, 0x4d, 0x05, 0xcf, 0xf8, 0xdf, 0x83, 0x80, 0xf8, 0x04, 0xd0, 0xaf, + 0x5f, 0x1d, 0x07, 0xe4, 0x13, 0x72, 0x16, 0xf2, 0xd2, 0x12, 0x32, 0x72, 0x72, 0x5c, 0xca, 0xdb, + 0x2d, 0x33, 0xbf, 0xb1, 0x82, 0xde, 0x81, 0x61, 0x0a, 0x46, 0xf9, 0x3f, 0x2d, 0xdb, 0x53, 0x29, + 0x30, 0xc9, 0x41, 0xbf, 0xca, 0x26, 0x03, 0x46, 0xef, 0xc2, 0xf8, 0x0a, 0x6e, 0xe3, 0x03, 0x2b, + 0x70, 0xc5, 0xee, 0x66, 0xb6, 0x05, 0x51, 0xa8, 0xac, 0xb9, 0x10, 0x92, 0x9c, 0x64, 0x4c, 0x6c, + 0xf9, 0xae, 0xa3, 0x9e, 0x64, 0x3c, 0x5a, 0xa2, 0x9e, 0x64, 0x18, 0x0c, 0xfa, 0xed, 0x1c, 0x4c, + 0x94, 0x1d, 0x87, 0x9f, 0xd9, 0x7d, 0xce, 0xf5, 0xf9, 0x9b, 0xd2, 0xc8, 0xb5, 0x69, 0xed, 0xe3, + 0xf6, 0x9e, 0xd5, 0xee, 0x62, 0xbf, 0xf2, 0x0d, 0x51, 0x2e, 0xff, 0xcb, 0x71, 0xe9, 0xa3, 0x53, + 0x9c, 0xc2, 0x43, 0x73, 0xd9, 0x8e, 0x67, 0xd9, 0x81, 0x7f, 0x72, 0x5c, 0x9a, 0xb7, 0xc2, 0x06, + 0xd5, 0x7d, 0xa3, 0xf4, 0x23, 0x14, 0xec, 0x23, 0xbd, 0x04, 0x3b, 0x3a, 0x82, 0x99, 0xb2, 0xef, + 0x77, 0x8f, 0x70, 0x3d, 0xb0, 0xbc, 0x80, 0x1c, 0xfd, 0xa8, 0x7c, 0xc8, 0x3e, 0x17, 0xbe, 0xf9, + 0x93, 0xe3, 0x52, 0x8e, 0xe8, 0xb3, 0x16, 0x45, 0x25, 0xfa, 0x90, 0x17, 0x34, 0x02, 0x5b, 0xfd, + 0x36, 0xd1, 0x13, 0x62, 0x94, 0xb6, 0x71, 0x45, 0x2a, 0x0d, 0x1b, 0x2b, 0x69, 0x33, 0x6e, 0x54, + 0x61, 0x69, 0x0d, 0x07, 0x26, 0xf6, 0x71, 0x20, 0xf6, 0x08, 0x5d, 0xe1, 0xa1, 0xdd, 0x6c, 0x94, + 0xfe, 0x96, 0xc8, 0x74, 0xfa, 0xd9, 0xbe, 0x10, 0x35, 0xc6, 0x5f, 0xcb, 0x41, 0xa9, 0xea, 0x61, + 0xa6, 0x0a, 0xa6, 0x10, 0xca, 0x96, 0x5d, 0x4b, 0x30, 0xb4, 0xf3, 0xa2, 0x23, 0x0e, 0xd4, 0xb4, + 0x96, 0x4c, 0x8a, 0x49, 0x4b, 0xfb, 0xb4, 0x4e, 0x18, 0x8f, 0x61, 0xde, 0xc4, 0x0e, 0x7e, 0x66, + 0xed, 0xb7, 0xb1, 0x76, 0xc0, 0x2f, 0xc1, 0x30, 0xdb, 0xe8, 0xb1, 0x21, 0xb0, 0xf2, 0xd3, 0x19, + 0x4b, 0x8c, 0x7f, 0x9e, 0x87, 0x02, 0x1b, 0x6e, 0xc5, 0x0d, 0xfa, 0x1b, 0x1f, 0x1f, 0x41, 0xbe, + 0x87, 0x7d, 0xe5, 0x5a, 0xc8, 0xed, 0xc1, 0x50, 0x6d, 0xa1, 0x5d, 0x25, 0x9f, 0x54, 0x51, 0x49, + 0x06, 0xc4, 0x16, 0x1d, 0x33, 0x0b, 0xc6, 0x8c, 0x24, 0xe8, 0xd7, 0x73, 0x30, 0xc2, 0x96, 0x71, + 0xf6, 0x46, 0x79, 0xf4, 0x7a, 0x36, 0x4a, 0x21, 0xa0, 0x7f, 0xa9, 0xdb, 0x96, 0xd5, 0x19, 0xff, + 0x32, 0x0f, 0x67, 0x14, 0x5e, 0x71, 0xfd, 0xff, 0x2d, 0xa6, 0x75, 0x29, 0x0c, 0xa3, 0x86, 0x56, + 0xa2, 0x75, 0x35, 0x42, 0x23, 0x0a, 0xe5, 0xdc, 0x5b, 0x30, 0x46, 0x86, 0x14, 0xb5, 0xc9, 0xd2, + 0x0f, 0x3a, 0x03, 0x15, 0xd5, 0x7d, 0x73, 0xef, 0x16, 0x8c, 0xd1, 0x3f, 0xc9, 0x8c, 0x0c, 0xa5, + 0xcf, 0x88, 0x04, 0x42, 0x36, 0xc0, 0x7d, 0xd7, 0x76, 0x1e, 0xe2, 0xe0, 0xd0, 0x6d, 0x71, 0xd5, + 0x62, 0x83, 0x88, 0xdd, 0xbf, 0xe4, 0xda, 0x4e, 0xe3, 0x88, 0x16, 0x9f, 0xd6, 0xe6, 0x17, 0x12, + 0x34, 0x15, 0xe2, 0xc6, 0x6d, 0x28, 0x10, 0x09, 0xd9, 0xff, 0xd2, 0x32, 0xe6, 0x00, 0xad, 0xe1, + 0xa0, 0xe2, 0x6a, 0xdf, 0x6e, 0x63, 0x0a, 0x26, 0x6a, 0xb6, 0x73, 0x20, 0x7e, 0xfe, 0xfe, 0x20, + 0x4c, 0xb2, 0xdf, 0x7c, 0x06, 0x22, 0x1a, 0x56, 0xae, 0x1f, 0x0d, 0xeb, 0x7d, 0x98, 0x22, 0x2a, + 0x0a, 0xf6, 0xf6, 0xb0, 0x47, 0x34, 0x3b, 0x3e, 0x1f, 0xf4, 0x34, 0xe9, 0xd3, 0x8a, 0xc6, 0x53, + 0x56, 0x63, 0xea, 0x80, 0x68, 0x13, 0xa6, 0x59, 0xc1, 0x3d, 0x6c, 0x05, 0xdd, 0xd0, 0x20, 0x36, + 0xc3, 0x8f, 0x5d, 0xa2, 0x98, 0x89, 0x4f, 0x4e, 0xeb, 0x31, 0x2f, 0x34, 0x23, 0xb8, 0xe8, 0x33, + 0x98, 0xa9, 0x79, 0xee, 0xf3, 0x17, 0x8a, 0x4e, 0xc9, 0xbe, 0x20, 0xec, 0x80, 0x46, 0xaa, 0x1a, + 0xaa, 0x66, 0x19, 0x85, 0x26, 0x6b, 0x6a, 0xc3, 0xaf, 0xb8, 0x9e, 0xed, 0x1c, 0xd0, 0xd9, 0x1c, + 0x63, 0x6b, 0xca, 0xf6, 0x1b, 0xfb, 0xb4, 0xd0, 0x94, 0xd5, 0x11, 0x8b, 0xf4, 0x68, 0x6f, 0x8b, + 0xf4, 0x6d, 0x80, 0x4d, 0xd7, 0x6a, 0x95, 0xdb, 0xed, 0x6a, 0xd9, 0xa7, 0xd6, 0x28, 0xae, 0x33, + 0xb5, 0x5d, 0xab, 0xd5, 0xb0, 0xda, 0xed, 0x46, 0xd3, 0xf2, 0x4d, 0x05, 0xe6, 0xfe, 0xd0, 0xd8, + 0x48, 0x61, 0xd4, 0x9c, 0xd9, 0xb4, 0x9b, 0xd8, 0xf1, 0xf1, 0x23, 0xcb, 0x73, 0x6c, 0xe7, 0xc0, + 0x37, 0xfe, 0x74, 0x02, 0xc6, 0xe4, 0x90, 0x6f, 0xaa, 0x67, 0x47, 0xae, 0x89, 0x51, 0x09, 0x15, + 0x5a, 0xcc, 0x4c, 0x05, 0x02, 0x9d, 0xa3, 0xa7, 0x49, 0xae, 0x03, 0x8e, 0x92, 0xd5, 0x6d, 0x75, + 0x3a, 0x26, 0x29, 0x23, 0x5f, 0x82, 0x95, 0x0a, 0xe5, 0xff, 0x18, 0xfb, 0x12, 0xb4, 0xf6, 0xcd, + 0xfc, 0x4a, 0x85, 0xac, 0xb2, 0xed, 0x8d, 0x95, 0x2a, 0x65, 0xe5, 0x18, 0x5b, 0x65, 0xae, 0xdd, + 0x6a, 0x9a, 0xb4, 0x94, 0xd4, 0xd6, 0xcb, 0x0f, 0x37, 0x39, 0xbb, 0x68, 0xad, 0x6f, 0x1d, 0xb5, + 0x4d, 0x5a, 0x4a, 0x4e, 0x26, 0xcc, 0xf8, 0x51, 0x75, 0x9d, 0xc0, 0x73, 0xdb, 0x3e, 0x55, 0xa0, + 0xc7, 0xd8, 0x74, 0x72, 0xab, 0x49, 0x93, 0x57, 0x99, 0x11, 0x50, 0xf4, 0x08, 0x16, 0xca, 0xad, + 0xa7, 0x96, 0xd3, 0xc4, 0x2d, 0x56, 0xf3, 0xc8, 0xf5, 0x9e, 0x3c, 0x6e, 0xbb, 0xcf, 0x7c, 0xca, + 0xef, 0x31, 0x6e, 0x64, 0xe4, 0x20, 0xc2, 0x08, 0xf3, 0x4c, 0x00, 0x99, 0x69, 0xd8, 0x44, 0x4a, + 0x56, 0xdb, 0x6e, 0xb7, 0xc5, 0x67, 0x81, 0x4a, 0xc9, 0x26, 0x29, 0x30, 0x59, 0x39, 0xe1, 0xd2, + 0x7a, 0xfd, 0x21, 0x35, 0xe9, 0x71, 0x2e, 0x1d, 0xfa, 0x47, 0x26, 0x29, 0x43, 0x57, 0x61, 0x54, + 0x1c, 0xb2, 0xd8, 0x9d, 0x00, 0xb5, 0x74, 0x8b, 0xc3, 0x95, 0xa8, 0x23, 0x5b, 0xc2, 0xc4, 0x4d, + 0xf7, 0x29, 0xf6, 0x5e, 0x54, 0xdd, 0x16, 0x16, 0x06, 0x28, 0x6e, 0x60, 0x61, 0x15, 0x8d, 0x26, + 0xa9, 0x31, 0x75, 0x40, 0xd2, 0x00, 0xd3, 0xd3, 0xfc, 0xc5, 0x99, 0xb0, 0x01, 0xa6, 0xc7, 0xf9, + 0xa6, 0xa8, 0x43, 0x2b, 0x70, 0xa6, 0xdc, 0x0d, 0xdc, 0x23, 0x2b, 0xb0, 0x9b, 0xbb, 0x9d, 0x03, + 0xcf, 0x22, 0x8d, 0x14, 0x28, 0x02, 0x3d, 0x74, 0x5a, 0xa2, 0xb2, 0xd1, 0xe5, 0xb5, 0x66, 0x1c, + 0x01, 0xbd, 0x07, 0x93, 0x1b, 0x3e, 0x33, 0x32, 0x5a, 0x3e, 0x6e, 0x51, 0x4b, 0x11, 0xef, 0xa5, + 0xed, 0x37, 0xa8, 0xc9, 0xb1, 0x41, 0x8e, 0xa9, 0x2d, 0x53, 0x83, 0x43, 0x06, 0x8c, 0x94, 0x7d, + 0xdf, 0xf6, 0x03, 0x6a, 0x00, 0x1a, 0xab, 0xc0, 0xc9, 0x71, 0x69, 0xc4, 0xa2, 0x25, 0x26, 0xaf, + 0x41, 0x8f, 0x60, 0x62, 0x05, 0x93, 0x73, 0xcb, 0x8e, 0xd7, 0xf5, 0x03, 0x6a, 0xce, 0x99, 0x58, + 0x3e, 0xc7, 0x37, 0xb6, 0x52, 0xc3, 0xd7, 0x32, 0x3b, 0x91, 0xb4, 0x68, 0x79, 0x23, 0x20, 0x15, + 0xaa, 0x66, 0xa5, 0xc0, 0x93, 0x43, 0x19, 0xc7, 0x59, 0xb7, 0x5b, 0x64, 0xab, 0xce, 0xd1, 0x3e, + 0xd0, 0x43, 0x19, 0x97, 0x0d, 0x8d, 0x43, 0x5a, 0xa3, 0x1e, 0xca, 0x34, 0x14, 0xd4, 0x8c, 0xd9, + 0xad, 0xe7, 0x35, 0xdb, 0xa4, 0x5e, 0x29, 0xba, 0x78, 0x4a, 0xab, 0xf6, 0xc7, 0x30, 0x51, 0xed, + 0xfa, 0x81, 0x7b, 0xb4, 0x73, 0x88, 0x8f, 0xf0, 0xe2, 0xd9, 0xf0, 0xe8, 0xd9, 0xa4, 0xc5, 0x8d, + 0x80, 0x94, 0xab, 0xc3, 0x54, 0xc0, 0xd1, 0x17, 0x80, 0xc4, 0x19, 0x72, 0x8d, 0xac, 0x0f, 0x87, + 0xac, 0xe5, 0xc5, 0x05, 0x3a, 0x56, 0x7a, 0x70, 0x14, 0x47, 0xcf, 0xc6, 0x81, 0xac, 0x56, 0x2d, + 0x8f, 0x71, 0x64, 0xd2, 0x21, 0xd6, 0xc5, 0x35, 0xcf, 0xea, 0x1c, 0x2e, 0x2e, 0x86, 0x27, 0x41, + 0x3e, 0xa8, 0x03, 0x52, 0xae, 0x69, 0xb4, 0x21, 0x38, 0xaa, 0x03, 0xb0, 0x9f, 0x9b, 0x64, 0xe2, + 0xcf, 0x51, 0x7e, 0x2d, 0x6a, 0xfc, 0x22, 0x15, 0x82, 0x57, 0xe7, 0xa8, 0x9e, 0xcc, 0xc8, 0xb6, + 0x6d, 0x6d, 0x36, 0x15, 0x32, 0xe8, 0x09, 0x14, 0xd8, 0xaf, 0x87, 0xae, 0x63, 0x07, 0x4c, 0xf4, + 0x16, 0x35, 0xa3, 0x62, 0xb4, 0x5a, 0x34, 0x40, 0x8d, 0xb9, 0xbc, 0x81, 0x23, 0x59, 0xab, 0x34, + 0x13, 0x23, 0x8c, 0x6a, 0x30, 0x51, 0xf3, 0xdc, 0x56, 0xb7, 0x19, 0x50, 0xa5, 0xf2, 0x3c, 0x3d, + 0xcc, 0x20, 0xde, 0x8e, 0x52, 0xc3, 0x78, 0xd2, 0x61, 0x05, 0x0d, 0xf2, 0x5d, 0x56, 0x79, 0xa2, + 0x00, 0xa2, 0x0a, 0x8c, 0xd4, 0xdc, 0xb6, 0xdd, 0x7c, 0xb1, 0xb8, 0x44, 0x3b, 0x3d, 0x27, 0x88, + 0xd1, 0x42, 0xd1, 0x55, 0x7a, 0x82, 0xe9, 0xd0, 0x22, 0x55, 0x15, 0x62, 0x40, 0xf7, 0x87, 0xc6, + 0x26, 0x0a, 0x93, 0xec, 0x4e, 0xef, 0xfe, 0xd0, 0xd8, 0x54, 0x61, 0xda, 0xf8, 0x9d, 0x1c, 0xa0, + 0xf8, 0x0e, 0x41, 0xb7, 0x60, 0x14, 0x3b, 0x44, 0x89, 0x6d, 0x71, 0x49, 0x4f, 0xbf, 0x6b, 0xbc, + 0x48, 0x35, 0x3c, 0xf2, 0x22, 0xf4, 0x05, 0xcc, 0xb2, 0x0d, 0x25, 0xf6, 0x72, 0xdb, 0x3e, 0xb2, + 0x03, 0x2a, 0xfd, 0x87, 0xd9, 0x1a, 0x4a, 0xa8, 0x56, 0x8d, 0x0f, 0xbc, 0x9a, 0xee, 0xfc, 0x4d, + 0x52, 0x69, 0x74, 0x61, 0x3e, 0x71, 0x6f, 0xa0, 0x87, 0x30, 0x7f, 0xe4, 0x3a, 0xc1, 0x61, 0xfb, + 0x85, 0xd8, 0x1a, 0xbc, 0xb5, 0x1c, 0x6d, 0x8d, 0x2e, 0x87, 0x44, 0x00, 0x73, 0x96, 0x17, 0x73, + 0x8a, 0xb4, 0x9d, 0xfb, 0x43, 0x63, 0xf9, 0xc2, 0xa0, 0x1c, 0x89, 0x61, 0xc2, 0x99, 0xd8, 0x12, + 0x43, 0x9f, 0xc0, 0x64, 0x93, 0xaa, 0x90, 0x5a, 0x4b, 0x6c, 0x83, 0x29, 0xe5, 0xea, 0xdc, 0xb1, + 0x72, 0x36, 0x94, 0x7f, 0x9a, 0x83, 0x85, 0x94, 0xc5, 0x75, 0x7a, 0x56, 0x7f, 0x05, 0x67, 0x8f, + 0xac, 0xe7, 0x0d, 0x8f, 0xaa, 0x73, 0x0d, 0xcf, 0x72, 0x22, 0xdc, 0x7e, 0xe3, 0xe4, 0xb8, 0x74, + 0x29, 0x19, 0x42, 0xf5, 0x5b, 0x38, 0xb2, 0x9e, 0x9b, 0x14, 0xc0, 0x24, 0xf5, 0xac, 0x9f, 0x9f, + 0xc3, 0x94, 0xb6, 0x9c, 0x4e, 0xdd, 0x39, 0xe3, 0x0e, 0x9c, 0x61, 0xca, 0x63, 0xdf, 0x46, 0x23, + 0xa3, 0x06, 0x50, 0xc7, 0x47, 0x56, 0xe7, 0xd0, 0x25, 0x6a, 0x46, 0x45, 0xfd, 0xc5, 0x8d, 0x0e, + 0x88, 0x1b, 0x01, 0x64, 0xc5, 0xde, 0x5d, 0x61, 0xeb, 0x13, 0x90, 0xa6, 0x82, 0x65, 0xfc, 0x61, + 0x1e, 0x50, 0xb9, 0xdb, 0xb2, 0x83, 0x7a, 0xe0, 0x61, 0xeb, 0x48, 0x74, 0xe3, 0x03, 0x98, 0x64, + 0xe7, 0x00, 0x56, 0x4c, 0xbb, 0x33, 0xb1, 0x3c, 0xcb, 0xf7, 0x91, 0x5a, 0xb5, 0x3e, 0x60, 0x6a, + 0xa0, 0x04, 0xd5, 0xc4, 0xec, 0x6c, 0x4b, 0x51, 0xf3, 0x1a, 0xaa, 0x5a, 0x45, 0x50, 0xd5, 0xdf, + 0xe8, 0x33, 0x98, 0xae, 0xba, 0x47, 0x1d, 0xc2, 0x13, 0x8e, 0x3c, 0xc8, 0x8f, 0x43, 0xbc, 0x5d, + 0xad, 0x72, 0x7d, 0xc0, 0x8c, 0x80, 0xa3, 0x2d, 0x98, 0xbd, 0xd7, 0xee, 0xfa, 0x87, 0x65, 0xa7, + 0x55, 0x6d, 0xbb, 0xbe, 0xa0, 0x32, 0xc4, 0xcf, 0xed, 0x5c, 0x7d, 0x8d, 0x43, 0xac, 0x0f, 0x98, + 0x49, 0x88, 0xe8, 0x2a, 0x0c, 0xaf, 0x3e, 0xc5, 0x4e, 0x20, 0xef, 0xc6, 0xb9, 0x73, 0xcd, 0xb6, + 0x83, 0xb7, 0x1f, 0xaf, 0x0f, 0x98, 0xac, 0xb6, 0x32, 0x0e, 0xa3, 0x42, 0x75, 0xbf, 0x45, 0x34, + 0x00, 0xc9, 0xce, 0x7a, 0x60, 0x05, 0x5d, 0x1f, 0x15, 0x61, 0x6c, 0xb7, 0x43, 0x34, 0x4a, 0x71, + 0x2e, 0x37, 0xe5, 0x6f, 0xe3, 0xbb, 0x3a, 0xa7, 0xd1, 0x92, 0x6a, 0xab, 0x65, 0xc0, 0x61, 0x81, + 0xb1, 0xae, 0x33, 0x37, 0x1b, 0x5a, 0x6b, 0x37, 0x1f, 0x69, 0xb7, 0x10, 0xe5, 0xb5, 0x31, 0x9f, + 0xc8, 0x3c, 0xe3, 0x4b, 0xb8, 0xb8, 0xdb, 0xf1, 0xb1, 0x17, 0x94, 0x3b, 0x9d, 0xb6, 0xdd, 0x64, + 0x77, 0x33, 0x54, 0xc5, 0x17, 0x8b, 0xe5, 0x3d, 0x18, 0x61, 0x05, 0x7c, 0x99, 0x88, 0x35, 0x58, + 0xee, 0x74, 0xf8, 0xc1, 0xe2, 0x2e, 0xd3, 0x45, 0xd8, 0x51, 0xc1, 0xe4, 0xd0, 0xc6, 0x6f, 0xe6, + 0xe0, 0x22, 0xdb, 0x01, 0xa9, 0xa4, 0xbf, 0x03, 0xe3, 0xd4, 0xb7, 0xa5, 0x63, 0x35, 0xb5, 0xb3, + 0xa7, 0x23, 0x0a, 0xcd, 0xb0, 0x5e, 0xf1, 0x1a, 0xca, 0xa7, 0x7b, 0x0d, 0x89, 0x0d, 0x36, 0x98, + 0xb8, 0xc1, 0xbe, 0x00, 0x83, 0xf7, 0xa8, 0xdd, 0x8e, 0x75, 0xca, 0x7f, 0x99, 0x5e, 0x19, 0xff, + 0x2d, 0x0f, 0x0b, 0x6b, 0xd8, 0xc1, 0x9e, 0x45, 0xc7, 0xa9, 0x99, 0x59, 0x54, 0xef, 0x84, 0x5c, + 0xa6, 0x77, 0x82, 0xb4, 0x21, 0xe4, 0x53, 0x6c, 0x08, 0xe7, 0x60, 0x70, 0xd7, 0xdc, 0xe0, 0xc3, + 0xa2, 0xda, 0x71, 0xd7, 0xb3, 0x4d, 0x52, 0x86, 0x36, 0x42, 0xcf, 0x86, 0xa1, 0x9e, 0x16, 0xac, + 0x59, 0x7e, 0xd3, 0x3b, 0xca, 0x3d, 0x1b, 0x74, 0x7f, 0x86, 0x2d, 0xc5, 0x50, 0x41, 0xc4, 0xcd, + 0x0d, 0xbe, 0xa7, 0x52, 0x06, 0xc8, 0x6d, 0x0e, 0xab, 0x4e, 0xe0, 0xbd, 0x60, 0x4b, 0x80, 0x99, + 0x1e, 0x84, 0xc1, 0xa1, 0xf8, 0x05, 0x4c, 0x28, 0x20, 0xa8, 0x00, 0x83, 0x4f, 0xb8, 0x57, 0xc7, + 0xb8, 0x49, 0xfe, 0x44, 0xdf, 0x85, 0xe1, 0xa7, 0x56, 0xbb, 0x8b, 0xb9, 0x18, 0x39, 0x1b, 0x1a, + 0x46, 0xea, 0x01, 0xf9, 0x34, 0x30, 0xcb, 0x88, 0xc9, 0x80, 0x3e, 0xcc, 0xbf, 0x9f, 0x33, 0x3e, + 0x82, 0xc5, 0x78, 0x6f, 0xf8, 0x39, 0xba, 0x97, 0x69, 0xc9, 0x58, 0x81, 0xb9, 0x35, 0x1c, 0xd0, + 0x85, 0x4b, 0x37, 0x91, 0xe2, 0x74, 0x12, 0xd9, 0x67, 0x19, 0x37, 0x28, 0x46, 0x1d, 0xe6, 0x23, + 0x54, 0x78, 0xfb, 0x1f, 0xc2, 0x28, 0x2f, 0x92, 0x12, 0x95, 0xbb, 0xe1, 0xe1, 0x7d, 0x5e, 0xb1, + 0xb7, 0xcc, 0xd6, 0x2d, 0xa7, 0x6c, 0x0a, 0x04, 0xe3, 0x10, 0xce, 0x92, 0xcf, 0x6c, 0x48, 0x55, + 0x2e, 0xc7, 0xf3, 0x30, 0xde, 0x21, 0x8a, 0x82, 0x6f, 0xff, 0x98, 0x2d, 0xa3, 0x61, 0x73, 0x8c, + 0x14, 0xd4, 0xed, 0x1f, 0x63, 0x74, 0x01, 0x80, 0x56, 0xd2, 0x61, 0x72, 0x29, 0x40, 0xc1, 0x99, + 0x2d, 0x0d, 0x01, 0xf5, 0xee, 0x61, 0xeb, 0xc6, 0xa4, 0x7f, 0x1b, 0x1e, 0x2c, 0xc4, 0x5a, 0xe2, + 0x03, 0xb8, 0x05, 0x63, 0xbc, 0x63, 0x7e, 0xc4, 0xca, 0xad, 0x8e, 0xc0, 0x94, 0x40, 0xe8, 0x1a, + 0xcc, 0x38, 0xf8, 0x79, 0xd0, 0x88, 0xf5, 0x61, 0x8a, 0x14, 0xd7, 0x44, 0x3f, 0x8c, 0x5f, 0xa0, + 0x96, 0xcd, 0xba, 0xe3, 0x3e, 0x7b, 0xdc, 0xb6, 0x9e, 0xe0, 0x58, 0xc3, 0x9f, 0xc0, 0x58, 0xbd, + 0x77, 0xc3, 0x6c, 0xfb, 0x88, 0xc6, 0x4d, 0x89, 0x62, 0xb4, 0xa1, 0x48, 0x86, 0x44, 0x8e, 0xbf, + 0x1b, 0xad, 0xda, 0xb7, 0xcd, 0xc0, 0xa7, 0x70, 0x3e, 0xb1, 0xb5, 0x6f, 0x9b, 0x89, 0x7f, 0x96, + 0x87, 0x05, 0xf6, 0x31, 0x89, 0xaf, 0xe0, 0xfe, 0x45, 0xcd, 0xcf, 0xe5, 0xfe, 0xef, 0x76, 0xc2, + 0xfd, 0x1f, 0x45, 0x51, 0xef, 0xff, 0xb4, 0x5b, 0xbf, 0xf7, 0x93, 0x6f, 0xfd, 0xe8, 0xb1, 0x58, + 0xbf, 0xf5, 0x8b, 0xde, 0xf5, 0xad, 0xa6, 0xdf, 0xf5, 0xd1, 0x9b, 0x8f, 0x84, 0xbb, 0xbe, 0x84, + 0x1b, 0x3e, 0xa6, 0xfc, 0x1a, 0x7b, 0xb0, 0x18, 0x67, 0xf1, 0x6b, 0xd8, 0xde, 0x7f, 0x90, 0x83, + 0x0b, 0x5c, 0x11, 0x88, 0x6c, 0x82, 0xd3, 0xcf, 0xe0, 0xbb, 0x30, 0xc9, 0x71, 0x77, 0xc2, 0xc5, + 0x52, 0x39, 0x73, 0x72, 0x5c, 0x9a, 0x12, 0x02, 0x8b, 0x49, 0x3d, 0x0d, 0x0c, 0xbd, 0xab, 0x58, + 0x5a, 0x99, 0xf5, 0x9e, 0x9c, 0x0f, 0xc6, 0x99, 0x49, 0x36, 0xd5, 0xde, 0x6a, 0x7c, 0x03, 0x17, + 0xd3, 0x3a, 0xfe, 0x1a, 0xf8, 0xf2, 0x6f, 0x73, 0x70, 0x9e, 0x93, 0xd7, 0xb6, 0xd3, 0x4b, 0x49, + 0xe6, 0x53, 0xb8, 0x03, 0xde, 0x87, 0x09, 0xd2, 0xa0, 0xe8, 0xf7, 0x20, 0xff, 0xfc, 0x70, 0xed, + 0x3a, 0xac, 0x59, 0xb1, 0x02, 0x8b, 0x3b, 0x38, 0x58, 0x47, 0xed, 0x86, 0xe8, 0xbf, 0x8a, 0x6c, + 0x7c, 0x1f, 0x96, 0x92, 0x87, 0xf0, 0x1a, 0xf8, 0x73, 0x1f, 0x8a, 0x09, 0x82, 0xf3, 0xe5, 0xbe, + 0x5b, 0x5f, 0xc1, 0xf9, 0x44, 0x5a, 0xaf, 0xa1, 0x9b, 0xeb, 0xe4, 0xab, 0x1c, 0xbc, 0x86, 0x29, + 0x34, 0x1e, 0xc1, 0xb9, 0x04, 0x4a, 0xaf, 0xa1, 0x8b, 0x6b, 0xb0, 0x20, 0xb5, 0xd1, 0x57, 0xea, + 0xe1, 0x43, 0xb8, 0xc0, 0x08, 0xbd, 0x9e, 0x59, 0x79, 0x00, 0xe7, 0x39, 0xb9, 0xd7, 0xc0, 0xbd, + 0x75, 0x58, 0x0a, 0x0f, 0x9d, 0x09, 0xba, 0x44, 0xdf, 0x42, 0xc6, 0xd8, 0x84, 0x4b, 0x21, 0xa5, + 0x94, 0x0f, 0x6b, 0xff, 0xd4, 0x98, 0xca, 0x14, 0xce, 0xd2, 0x6b, 0x99, 0xd1, 0x47, 0x70, 0x56, + 0x23, 0xfa, 0xda, 0xd4, 0x89, 0x0d, 0x98, 0x65, 0x84, 0x75, 0xf5, 0x72, 0x59, 0x55, 0x2f, 0x27, + 0x96, 0xcf, 0x84, 0x24, 0x69, 0xf1, 0xde, 0xdd, 0x04, 0x8d, 0xf3, 0x21, 0xd5, 0x38, 0x05, 0x48, + 0xd8, 0xc3, 0x77, 0x61, 0x84, 0x95, 0xf0, 0xfe, 0x25, 0x10, 0x63, 0x0a, 0x35, 0x43, 0xe3, 0xc0, + 0xc6, 0x0f, 0xe0, 0x02, 0x3b, 0xad, 0x85, 0xd7, 0x0b, 0xfa, 0x89, 0xea, 0x93, 0xc8, 0x61, 0xed, + 0x1c, 0xa7, 0x1b, 0x85, 0x4f, 0x39, 0xb3, 0xed, 0x8b, 0xb5, 0x9d, 0x46, 0xbf, 0xaf, 0xa7, 0x1b, + 0xe2, 0x10, 0x96, 0x4f, 0x3c, 0x84, 0x5d, 0x81, 0xcb, 0xf2, 0x10, 0x16, 0x6d, 0x46, 0x5e, 0x99, + 0x7d, 0x1f, 0xce, 0xb3, 0x81, 0x0a, 0xa7, 0x2d, 0xbd, 0x1b, 0x1f, 0x45, 0x86, 0xb9, 0xc0, 0x87, + 0xa9, 0x43, 0xa7, 0x0c, 0xf2, 0x6f, 0xe5, 0xc4, 0x96, 0x4b, 0x26, 0xfe, 0xf3, 0x3e, 0x95, 0x6e, + 0x41, 0x49, 0x32, 0x44, 0xef, 0xd1, 0xcb, 0x1d, 0x49, 0x1f, 0xc2, 0xbc, 0x4a, 0xc6, 0x6e, 0xe2, + 0xbd, 0x3b, 0xd4, 0xee, 0xfb, 0x0e, 0xd9, 0x16, 0xb4, 0x40, 0x2c, 0xbb, 0xc5, 0x04, 0xbe, 0x51, + 0x78, 0x53, 0x42, 0x1a, 0x0d, 0x58, 0x8a, 0x4f, 0x85, 0xdd, 0x14, 0xfe, 0xba, 0xe8, 0x33, 0xb2, + 0x85, 0x69, 0x09, 0x9f, 0x8c, 0x54, 0xa2, 0x62, 0x1f, 0x33, 0x74, 0x81, 0x65, 0x18, 0x42, 0xd4, + 0x44, 0xc6, 0x4f, 0x5a, 0x17, 0xeb, 0xe1, 0x97, 0x00, 0x89, 0xaa, 0x6a, 0xdd, 0x14, 0x4d, 0x9f, + 0x83, 0xc1, 0x6a, 0xdd, 0xe4, 0xcf, 0x04, 0xe8, 0xa9, 0xb8, 0xe9, 0x7b, 0x26, 0x29, 0x8b, 0x6a, + 0xad, 0xf9, 0x3e, 0xb4, 0xd6, 0xfb, 0x43, 0x63, 0x83, 0x85, 0x21, 0x13, 0xd5, 0xed, 0x03, 0xe7, + 0x91, 0x1d, 0x1c, 0xca, 0x06, 0xcb, 0xc6, 0xd7, 0x30, 0xab, 0x35, 0xcf, 0x77, 0x71, 0xe6, 0xfb, + 0x06, 0x74, 0x0d, 0x46, 0xab, 0x65, 0xea, 0xfb, 0x40, 0x8f, 0xf5, 0x93, 0x4c, 0xde, 0x34, 0xad, + 0x06, 0x7d, 0xde, 0x66, 0x8a, 0x4a, 0xe3, 0x9f, 0x0c, 0x29, 0xd4, 0x95, 0x57, 0x23, 0x19, 0xa3, + 0xbb, 0x03, 0xc0, 0x56, 0x88, 0x32, 0x38, 0xa2, 0x00, 0x4e, 0xf0, 0xeb, 0x5a, 0x26, 0x92, 0x4d, + 0x05, 0xa8, 0xdf, 0x57, 0x25, 0xdc, 0xc3, 0x93, 0x21, 0x09, 0x9f, 0x06, 0xe9, 0xe1, 0xc9, 0x49, + 0xfb, 0xa6, 0x0a, 0x84, 0x7e, 0x10, 0x75, 0x7e, 0x1e, 0xa6, 0x46, 0xfe, 0x37, 0xc4, 0xbd, 0x53, + 0x7c, 0x6c, 0xa7, 0xf3, 0x7f, 0x7e, 0x06, 0xf3, 0x04, 0xd7, 0x7e, 0x4c, 0x3d, 0x9c, 0x57, 0x9f, + 0x07, 0xd8, 0x61, 0xb2, 0x7d, 0x84, 0xb6, 0x73, 0x35, 0xa3, 0x9d, 0x10, 0x98, 0xdb, 0xa8, 0x43, + 0x3a, 0x0d, 0x2c, 0xeb, 0xcc, 0x64, 0xfa, 0x74, 0x11, 0x99, 0x9b, 0xab, 0x4e, 0xab, 0xe3, 0xda, + 0xf2, 0x50, 0xc1, 0x16, 0x91, 0xd7, 0x6e, 0x60, 0x5e, 0x6e, 0xaa, 0x40, 0xc6, 0xb5, 0x4c, 0xf7, + 0xe0, 0x31, 0x18, 0xda, 0xa9, 0xee, 0x6c, 0x16, 0x72, 0xc6, 0x2d, 0x00, 0xa5, 0x25, 0x80, 0x91, + 0xad, 0x6d, 0xf3, 0x61, 0x79, 0xb3, 0x30, 0x80, 0xe6, 0xe1, 0xcc, 0xa3, 0x8d, 0xad, 0x95, 0xed, + 0x47, 0xf5, 0x46, 0xfd, 0x61, 0xd9, 0xdc, 0xa9, 0x96, 0xcd, 0x95, 0x42, 0xce, 0xf8, 0x06, 0xe6, + 0xf4, 0x11, 0xbe, 0xd6, 0x45, 0x18, 0xc0, 0xac, 0xd4, 0x67, 0xee, 0x3f, 0xda, 0x51, 0xdc, 0x0e, + 0xf9, 0x01, 0x29, 0xea, 0x9a, 0xc0, 0x8f, 0x52, 0x7c, 0x1b, 0x29, 0x40, 0x9a, 0x43, 0x49, 0x3e, + 0xd3, 0xa1, 0xc4, 0xf8, 0x1e, 0xcc, 0xe9, 0xad, 0xf6, 0x6b, 0xc9, 0x79, 0x83, 0xfa, 0x63, 0x2a, + 0xcf, 0x06, 0xc8, 0x49, 0x3d, 0xec, 0x22, 0x97, 0xac, 0xdf, 0x83, 0x02, 0x87, 0x0a, 0xbf, 0xbc, + 0x57, 0x84, 0xa9, 0x2d, 0x97, 0xf0, 0xc4, 0x49, 0xb8, 0xfd, 0xba, 0x50, 0x20, 0x12, 0x93, 0x63, + 0xb2, 0x06, 0xe6, 0x60, 0x78, 0x33, 0xbc, 0xf2, 0x30, 0xd9, 0x0f, 0xea, 0x3d, 0x1f, 0x58, 0x5e, + 0x20, 0x9c, 0x95, 0xc6, 0x4d, 0xf9, 0x1b, 0xbd, 0x05, 0x23, 0xf7, 0xec, 0x76, 0xc0, 0xcd, 0x07, + 0xe1, 0x47, 0x9e, 0x90, 0x65, 0x15, 0x26, 0x07, 0x30, 0x4c, 0x38, 0xa3, 0x34, 0x78, 0x8a, 0xae, + 0xa2, 0x45, 0x18, 0xdd, 0xc2, 0xcf, 0x95, 0xf6, 0xc5, 0x4f, 0xe3, 0x3d, 0xe1, 0xed, 0xa3, 0xb2, + 0xe9, 0x32, 0x7f, 0x2b, 0x99, 0xd3, 0x9e, 0x83, 0x71, 0x92, 0xb4, 0x8a, 0xe0, 0xed, 0x76, 0x5a, + 0x2f, 0x89, 0x47, 0x3e, 0x14, 0xa7, 0xc4, 0x7b, 0x53, 0xdc, 0x94, 0xf4, 0x9a, 0xce, 0x3f, 0xcc, + 0xc1, 0x62, 0xe4, 0xb9, 0x43, 0xf5, 0xd0, 0x6a, 0xb7, 0xb1, 0x73, 0x80, 0xd1, 0x75, 0x18, 0xda, + 0xd9, 0xde, 0xa9, 0x71, 0x4b, 0xa2, 0xb8, 0x13, 0x24, 0x45, 0x12, 0xc6, 0xa4, 0x10, 0xe8, 0x01, + 0x9c, 0x11, 0xae, 0x9e, 0xb2, 0x8a, 0xcf, 0xd0, 0x85, 0x6c, 0xc7, 0xd1, 0x38, 0x1e, 0x7a, 0x87, + 0xbf, 0xcd, 0xf8, 0x51, 0xd7, 0xf6, 0x70, 0x8b, 0x5a, 0x47, 0xc2, 0xeb, 0x4d, 0xa5, 0xc6, 0x54, + 0xc1, 0xd8, 0xbb, 0x39, 0xe3, 0xb7, 0x73, 0xb0, 0x90, 0xf2, 0x7c, 0x03, 0xbd, 0xa5, 0x0d, 0x67, + 0x56, 0x19, 0x8e, 0x00, 0x59, 0x1f, 0xe0, 0xe3, 0xa9, 0x2a, 0xfe, 0xaf, 0x83, 0xa7, 0xf0, 0x7f, + 0x5d, 0x1f, 0x08, 0x7d, 0x5e, 0x2b, 0x00, 0x63, 0xa2, 0xdc, 0x98, 0x81, 0x29, 0x8d, 0x6f, 0x86, + 0x01, 0x93, 0x6a, 0xcb, 0x64, 0x72, 0xaa, 0x6e, 0x4b, 0x4e, 0x0e, 0xf9, 0xdb, 0xf8, 0x3b, 0x39, + 0x98, 0xa3, 0x43, 0x3c, 0xb0, 0x89, 0xe8, 0x0b, 0x39, 0xb4, 0xac, 0x8d, 0x64, 0x49, 0x1b, 0x49, + 0x04, 0x56, 0x0e, 0xe9, 0xc3, 0xd8, 0x90, 0x96, 0x92, 0x86, 0x44, 0x97, 0xb7, 0xed, 0x3a, 0xda, + 0x48, 0x94, 0xeb, 0x9a, 0xdf, 0xc9, 0xc1, 0xac, 0xd2, 0x27, 0xd9, 0xff, 0x3b, 0x5a, 0x97, 0xce, + 0x27, 0x74, 0x29, 0xc6, 0xe4, 0x4a, 0xac, 0x47, 0x6f, 0x64, 0xf5, 0xa8, 0x27, 0x8f, 0xff, 0x6b, + 0x0e, 0xe6, 0x13, 0x79, 0x80, 0xce, 0x12, 0xdd, 0xb6, 0xe9, 0xe1, 0x80, 0xb3, 0x97, 0xff, 0x22, + 0xe5, 0x1b, 0xbe, 0xdf, 0xc5, 0x1e, 0xdf, 0xe7, 0xfc, 0x17, 0x7a, 0x03, 0xa6, 0x6a, 0xd8, 0xb3, + 0xdd, 0x16, 0xf3, 0x8c, 0x66, 0xee, 0x5c, 0x53, 0xa6, 0x5e, 0x88, 0x96, 0x60, 0xbc, 0xdc, 0x3e, + 0x70, 0x3d, 0x3b, 0x38, 0x64, 0x37, 0x66, 0xe3, 0x66, 0x58, 0x40, 0x68, 0xaf, 0xd8, 0x07, 0xc2, + 0x43, 0x71, 0xca, 0xe4, 0xbf, 0x88, 0x70, 0x11, 0x16, 0xb5, 0x11, 0x26, 0x5c, 0xf8, 0x4f, 0x82, + 0xf1, 0x85, 0x49, 0x17, 0x01, 0x7d, 0x4f, 0x6c, 0xf2, 0x5f, 0x68, 0x9a, 0xfa, 0xb6, 0xd2, 0xd7, + 0xc2, 0xd4, 0xa7, 0xf5, 0x43, 0x98, 0x4b, 0xe2, 0x6b, 0xd2, 0x12, 0xe2, 0xb8, 0x79, 0x89, 0xfb, + 0x57, 0xf3, 0x30, 0x5b, 0x6e, 0xb5, 0x1e, 0xde, 0x2b, 0xb3, 0x8b, 0x79, 0x21, 0x1b, 0xde, 0x81, + 0xa1, 0x0d, 0x87, 0x0b, 0x62, 0xc5, 0x67, 0x21, 0x0e, 0x49, 0xa0, 0xc8, 0x0c, 0x92, 0xff, 0x91, + 0x09, 0xb3, 0xab, 0xcf, 0x6d, 0x3f, 0xb0, 0x9d, 0x03, 0xf5, 0x35, 0x55, 0xbe, 0x9f, 0xd7, 0x54, + 0xeb, 0x03, 0x66, 0x12, 0x32, 0xda, 0x81, 0xb3, 0x5b, 0xf8, 0x59, 0xc2, 0x12, 0x93, 0x8f, 0x4c, + 0x15, 0x41, 0x10, 0x5b, 0x59, 0x29, 0xb8, 0xea, 0x0a, 0xfe, 0xf5, 0x3c, 0x7d, 0x83, 0xae, 0x0c, + 0x8c, 0xb7, 0xbc, 0x0b, 0x73, 0x4a, 0x87, 0x42, 0x39, 0xc6, 0x78, 0x52, 0x4a, 0x1e, 0x8e, 0xba, + 0xd1, 0x12, 0xd1, 0xd1, 0x23, 0x58, 0xd0, 0x3b, 0x15, 0x52, 0xd6, 0x37, 0x4b, 0x12, 0xc8, 0xfa, + 0x80, 0x99, 0x86, 0x8d, 0x96, 0x61, 0xb0, 0xdc, 0x7c, 0xc2, 0xd9, 0x92, 0x3c, 0x65, 0x6c, 0x64, + 0xe5, 0xe6, 0x93, 0xf5, 0x01, 0x93, 0x00, 0x6b, 0xfb, 0xe5, 0xdf, 0xe5, 0x60, 0x21, 0x65, 0x86, + 0xd1, 0x45, 0x00, 0x56, 0xa8, 0x7c, 0x31, 0x94, 0x12, 0xa2, 0x2d, 0x73, 0xcf, 0x8e, 0x17, 0x1d, + 0x36, 0x33, 0xd3, 0xf2, 0xbd, 0x66, 0x58, 0x61, 0x2a, 0x40, 0xa8, 0x26, 0x1c, 0xa9, 0xd8, 0xb3, + 0x51, 0x5d, 0xac, 0x2b, 0x35, 0x9a, 0x07, 0x55, 0xf4, 0xb9, 0xa8, 0x4a, 0x82, 0xdb, 0x97, 0xab, + 0xd1, 0x51, 0xc8, 0x41, 0xa3, 0xeb, 0x30, 0xc2, 0x0a, 0xf9, 0x1c, 0x8a, 0x18, 0x0e, 0x21, 0x30, + 0xaf, 0x37, 0xfe, 0x61, 0x0e, 0xce, 0xb2, 0x2f, 0x66, 0x6c, 0x6b, 0x7c, 0x4f, 0xdb, 0x1a, 0x97, + 0x65, 0x87, 0x93, 0x80, 0xb5, 0xdd, 0x51, 0xd1, 0xdf, 0x18, 0xf6, 0xbb, 0x2b, 0x54, 0x24, 0x75, + 0xdd, 0xfe, 0xe3, 0x9c, 0x30, 0xb7, 0xc5, 0x97, 0xee, 0x2a, 0x4c, 0xbe, 0xdc, 0x92, 0xd5, 0xd0, + 0xd0, 0xbb, 0x6c, 0x45, 0xe5, 0xb3, 0x47, 0x9a, 0xb9, 0xa8, 0x3e, 0x86, 0x62, 0x3a, 0x6b, 0x7a, + 0x2d, 0x2b, 0xe3, 0x5e, 0x02, 0xf6, 0xcb, 0x4c, 0xe7, 0x5f, 0xe4, 0x62, 0x84, 0xea, 0x2f, 0x9c, + 0xa6, 0x98, 0xd2, 0x6b, 0x51, 0xaf, 0xff, 0x54, 0x4f, 0x6a, 0xb5, 0xbb, 0xf9, 0xf0, 0x62, 0x87, + 0xaf, 0x4e, 0xaa, 0x7a, 0xab, 0xdb, 0xa2, 0x9b, 0x2c, 0x10, 0x07, 0xfb, 0x7a, 0x5e, 0x4a, 0xa3, + 0x5f, 0x60, 0x8e, 0xde, 0x48, 0x79, 0x67, 0x9a, 0x44, 0xdf, 0xf8, 0x8d, 0x41, 0x7d, 0x0f, 0xbc, + 0xcc, 0x58, 0x6b, 0x30, 0x51, 0x75, 0x9d, 0x00, 0x3f, 0x0f, 0x94, 0xd8, 0x06, 0x48, 0xfa, 0x91, + 0xc8, 0x1a, 0x7e, 0xe8, 0x63, 0x05, 0x0d, 0x72, 0x02, 0xd1, 0x3c, 0xff, 0x42, 0x40, 0x54, 0x85, + 0xa9, 0x2d, 0xfc, 0x2c, 0xc6, 0x40, 0xea, 0x7d, 0xe8, 0xe0, 0x67, 0x0d, 0x85, 0x89, 0xaa, 0x87, + 0xa3, 0x86, 0x83, 0xf6, 0x61, 0x5a, 0xc8, 0xbf, 0x7e, 0x3f, 0x03, 0xec, 0xf5, 0x3f, 0x69, 0x21, + 0x85, 0x87, 0x11, 0x8a, 0xaf, 0x5f, 0x32, 0x19, 0x35, 0x58, 0x8c, 0xcf, 0x07, 0x6f, 0xed, 0x9d, + 0x5e, 0xab, 0x98, 0x59, 0xd8, 0x5a, 0xfa, 0x8a, 0x5e, 0xa7, 0x56, 0x4f, 0x09, 0x23, 0x8f, 0x50, + 0xb7, 0xa3, 0xd3, 0x4b, 0xdd, 0x66, 0xc5, 0xf4, 0xaa, 0x5e, 0x54, 0xe2, 0x35, 0x4b, 0x95, 0x1a, + 0x8e, 0x55, 0x4a, 0xbc, 0x63, 0x37, 0x60, 0x94, 0x17, 0x45, 0x42, 0xde, 0x84, 0xfb, 0x4b, 0x00, + 0x18, 0xbf, 0x9b, 0x83, 0x73, 0xd4, 0x8c, 0x6d, 0x3b, 0x07, 0x6d, 0xbc, 0xeb, 0xeb, 0x0f, 0x52, + 0xde, 0xd6, 0x44, 0xe6, 0x42, 0xca, 0xe3, 0xe3, 0x6f, 0x4b, 0x50, 0xfe, 0x5e, 0x0e, 0x8a, 0x49, + 0x7d, 0x7b, 0xbd, 0xb2, 0xf2, 0x26, 0xb7, 0x11, 0xe4, 0x35, 0x07, 0x52, 0xd9, 0xa6, 0x18, 0x2c, + 0x19, 0x24, 0xf9, 0x5f, 0x13, 0x92, 0xff, 0x2a, 0x0f, 0x73, 0x1b, 0xbe, 0x7a, 0x94, 0xe1, 0x8c, + 0xbb, 0x99, 0x14, 0x40, 0x82, 0xce, 0xeb, 0xfa, 0x40, 0x52, 0x80, 0x88, 0x77, 0x94, 0xa7, 0xba, + 0xf9, 0xac, 0xc8, 0x10, 0x44, 0x69, 0x96, 0x8f, 0x75, 0xaf, 0xc1, 0xd0, 0x16, 0x51, 0x14, 0x07, + 0xf9, 0xfa, 0x63, 0x18, 0xa4, 0x88, 0x3e, 0x95, 0x25, 0x5d, 0x26, 0x3f, 0xd0, 0xbd, 0xd8, 0x83, + 0xdc, 0xa1, 0xde, 0x91, 0x0f, 0xd6, 0x07, 0x62, 0x6f, 0x73, 0xdf, 0x83, 0x89, 0x72, 0xeb, 0xc8, + 0x76, 0xca, 0xf4, 0x91, 0x7f, 0x44, 0xb4, 0x28, 0x35, 0x64, 0x4e, 0x95, 0x9f, 0x95, 0x31, 0x18, + 0xd9, 0xb1, 0xbc, 0x03, 0x1c, 0x18, 0xdf, 0x87, 0x22, 0xf7, 0x0f, 0x63, 0x17, 0x0a, 0xd4, 0x8b, + 0xcc, 0x0f, 0x5d, 0x00, 0xb3, 0x7c, 0xba, 0x2e, 0x02, 0x50, 0xf3, 0xc1, 0x86, 0xd3, 0xc2, 0xcf, + 0x99, 0x1b, 0xa3, 0xa9, 0x94, 0x18, 0xef, 0xc2, 0xb8, 0x1c, 0x3a, 0x3d, 0x23, 0x2b, 0x3a, 0x34, + 0x65, 0xc3, 0x9c, 0xf6, 0xb4, 0x58, 0xbc, 0x27, 0x3e, 0xa7, 0x0d, 0x8a, 0x87, 0x6d, 0x61, 0x87, + 0x6a, 0x1b, 0xe6, 0x23, 0xb3, 0x1b, 0xc6, 0x05, 0x90, 0xc7, 0x5a, 0xea, 0xf2, 0x68, 0xca, 0xdf, + 0xd1, 0x53, 0x6f, 0xbe, 0xaf, 0x53, 0xaf, 0x51, 0x85, 0x33, 0xb1, 0x25, 0x87, 0x10, 0x7d, 0x92, + 0xcf, 0xac, 0x57, 0xe4, 0x1b, 0x5d, 0xaf, 0xaf, 0x93, 0xb2, 0x9d, 0xcd, 0x3a, 0x7b, 0xfc, 0x45, + 0xca, 0x76, 0x36, 0xeb, 0x95, 0x11, 0xb6, 0x84, 0x8d, 0x7f, 0x91, 0xa7, 0x46, 0x9d, 0x18, 0x53, + 0x23, 0xf6, 0x71, 0xd5, 0x46, 0x5f, 0x81, 0x71, 0xca, 0xc2, 0x15, 0xf1, 0x9a, 0x32, 0xdb, 0x47, + 0x6a, 0xec, 0x27, 0xc7, 0xa5, 0x01, 0xea, 0x18, 0x15, 0xa2, 0xa1, 0x4f, 0x61, 0x74, 0xd5, 0x69, + 0x51, 0x0a, 0x83, 0xa7, 0xa0, 0x20, 0x90, 0xc8, 0xc4, 0xd2, 0x2e, 0x13, 0xed, 0x92, 0x9b, 0x55, + 0x4d, 0xa5, 0x24, 0xb4, 0x2e, 0x0d, 0xa7, 0x59, 0x97, 0x46, 0x22, 0xd6, 0x25, 0x03, 0x86, 0xb7, + 0xbd, 0x16, 0x8f, 0xd9, 0x32, 0xbd, 0x3c, 0xc9, 0xb9, 0x4f, 0xcb, 0x4c, 0x56, 0x65, 0xfc, 0x8f, + 0x1c, 0x2c, 0xac, 0xe1, 0x20, 0x71, 0x21, 0x6a, 0x5c, 0xc9, 0xbd, 0x32, 0x57, 0xf2, 0x2f, 0xc3, + 0x15, 0x39, 0xea, 0xc1, 0xb4, 0x51, 0x0f, 0xa5, 0x8d, 0x7a, 0x38, 0x7d, 0xd4, 0x6b, 0x30, 0xc2, + 0x86, 0x8a, 0xae, 0xc0, 0xf0, 0x46, 0x80, 0x8f, 0x42, 0x0b, 0x9a, 0xea, 0xe1, 0x69, 0xb2, 0x3a, + 0x72, 0xc8, 0xdd, 0xb4, 0x7c, 0xd5, 0x82, 0xc6, 0x7f, 0x1a, 0x3f, 0xa4, 0xef, 0xb0, 0x37, 0xdd, + 0xe6, 0x13, 0xe5, 0x26, 0x66, 0x94, 0x6d, 0xf3, 0xe8, 0xcd, 0x1d, 0x81, 0x62, 0x35, 0xa6, 0x80, + 0x40, 0x97, 0x60, 0x62, 0xc3, 0xb9, 0xe7, 0x7a, 0x4d, 0xbc, 0xed, 0xb4, 0x19, 0xf5, 0x31, 0x53, + 0x2d, 0xe2, 0x16, 0x4a, 0xde, 0x42, 0x68, 0xf6, 0xa3, 0x05, 0x11, 0xb3, 0x1f, 0x29, 0xdb, 0x5b, + 0x36, 0x59, 0x1d, 0x37, 0x80, 0x92, 0xbf, 0xb3, 0x2c, 0x66, 0xd2, 0xb4, 0xd6, 0x0b, 0x70, 0x1f, + 0xce, 0x99, 0xb8, 0xd3, 0xb6, 0x88, 0x0e, 0x7b, 0xe4, 0x32, 0x78, 0x39, 0xe6, 0x4b, 0x09, 0xef, + 0xd3, 0x74, 0x7f, 0x1f, 0xd9, 0xe5, 0x7c, 0x46, 0x97, 0x8f, 0xe0, 0xf2, 0x1a, 0x0e, 0x74, 0x71, + 0x1b, 0xde, 0xf3, 0xf0, 0xc1, 0xaf, 0xc3, 0x98, 0xaf, 0xdf, 0x51, 0x5d, 0x14, 0x57, 0xa3, 0x49, + 0x88, 0x7b, 0x77, 0xc5, 0x2d, 0x2e, 0xa7, 0x23, 0xff, 0x32, 0x3e, 0x83, 0x52, 0x5a, 0x73, 0xfd, + 0xb9, 0x63, 0xdb, 0x70, 0x29, 0x9d, 0x80, 0xfc, 0x3e, 0x8b, 0xfb, 0x2c, 0x69, 0x8d, 0xc8, 0xee, + 0xad, 0x7e, 0x05, 0xc6, 0xff, 0x30, 0x2a, 0xc2, 0x31, 0xf5, 0x15, 0xba, 0xdb, 0xa0, 0xae, 0x22, + 0x3a, 0x81, 0x90, 0xaf, 0x65, 0x18, 0x13, 0x65, 0x9c, 0xaf, 0x0b, 0x89, 0x3d, 0x15, 0x0c, 0x6d, + 0x09, 0x02, 0x12, 0xcd, 0xf8, 0xa1, 0xb8, 0x36, 0xd5, 0x31, 0xfa, 0x7b, 0x74, 0xdb, 0xcf, 0x3d, + 0xa9, 0xe1, 0xc2, 0x39, 0x9d, 0xb6, 0x7a, 0x1d, 0x56, 0x50, 0xae, 0xc3, 0xd8, 0x2d, 0xd8, 0x25, + 0xfd, 0x7a, 0x26, 0xcf, 0xd7, 0x65, 0x58, 0x84, 0x2e, 0xaa, 0x97, 0x5e, 0x93, 0xf1, 0x57, 0xca, + 0xb7, 0xa1, 0x98, 0xd4, 0xa0, 0x62, 0xa3, 0x92, 0x37, 0x2b, 0x3c, 0x68, 0xd9, 0xaf, 0xe4, 0xc0, + 0xd0, 0xbc, 0xff, 0xe8, 0x0c, 0xd5, 0x3c, 0xf7, 0xa9, 0xdd, 0x52, 0x2e, 0x6c, 0xdf, 0xd2, 0x2e, + 0x0b, 0xd8, 0xdb, 0xbb, 0xe8, 0xc3, 0x03, 0x2e, 0xed, 0x6e, 0x47, 0x0c, 0xf8, 0x4c, 0x29, 0xa6, + 0x1e, 0x81, 0x4f, 0xb0, 0xfa, 0x76, 0x45, 0x1a, 0xf6, 0xff, 0x57, 0x0e, 0xae, 0x64, 0xf6, 0x81, + 0xf7, 0x7f, 0x1f, 0x0a, 0xd1, 0x3a, 0x3e, 0xf7, 0x25, 0xc5, 0xd3, 0x29, 0x4e, 0x61, 0xef, 0x0e, + 0x7b, 0xdd, 0x20, 0xbc, 0xe6, 0x3a, 0x92, 0x72, 0x8c, 0xde, 0xe9, 0x7b, 0x8f, 0x3e, 0x00, 0xd8, + 0x71, 0x03, 0xab, 0x5d, 0xa5, 0x66, 0xc5, 0xc1, 0xf0, 0xa5, 0x4a, 0x40, 0x4a, 0x1b, 0xd1, 0x60, + 0x1c, 0x0a, 0xb0, 0xf1, 0x39, 0xdd, 0x91, 0xc9, 0x9d, 0xee, 0x6f, 0x93, 0x54, 0xe1, 0x4a, 0xc4, + 0xdb, 0xe6, 0x25, 0x88, 0x04, 0x30, 0x4f, 0xd8, 0x4f, 0x54, 0x98, 0x35, 0xcf, 0xed, 0x76, 0x7e, + 0x3e, 0xb3, 0xfe, 0x1f, 0x73, 0xcc, 0x45, 0x58, 0x6d, 0x96, 0x4f, 0x74, 0x15, 0x20, 0x2c, 0x8d, + 0x3c, 0x15, 0x91, 0x15, 0x7b, 0x77, 0x98, 0x39, 0x80, 0xde, 0xc3, 0x1d, 0x30, 0x02, 0x0a, 0xda, + 0xcf, 0x77, 0x26, 0xef, 0x52, 0x17, 0x1b, 0xd9, 0x7a, 0x7f, 0x7c, 0x7f, 0x4f, 0x98, 0xbd, 0x4e, + 0x89, 0x77, 0x08, 0x73, 0x64, 0xef, 0x92, 0xa3, 0x92, 0xeb, 0xd9, 0x81, 0x78, 0xf4, 0x84, 0x6a, + 0x3c, 0xd0, 0x01, 0xc3, 0xfa, 0xf8, 0x67, 0xc7, 0xa5, 0xf7, 0x4f, 0xf3, 0x6a, 0x5c, 0xd0, 0xdc, + 0x91, 0xc1, 0x11, 0x8c, 0x05, 0x18, 0xac, 0x9a, 0x9b, 0x54, 0x54, 0x99, 0x9b, 0x52, 0x54, 0x99, + 0x9b, 0xc6, 0x7f, 0xcf, 0x43, 0x89, 0x85, 0x62, 0xa1, 0x9e, 0x59, 0xe1, 0xa1, 0x4d, 0x71, 0xf5, + 0xea, 0xd7, 0xf8, 0x11, 0x09, 0xb5, 0x92, 0xef, 0x27, 0xd4, 0xca, 0x2f, 0xbe, 0xbc, 0xa1, 0xba, + 0xf2, 0xe6, 0xc9, 0x71, 0xe9, 0x4a, 0x68, 0xa1, 0x60, 0xb5, 0x49, 0xa6, 0x8a, 0x94, 0x26, 0xe2, + 0xb6, 0x95, 0xa1, 0x97, 0xb0, 0xad, 0xdc, 0x86, 0x51, 0x7a, 0x96, 0xd9, 0xa8, 0x71, 0x7f, 0x62, + 0xba, 0x3c, 0x69, 0xd4, 0xa4, 0x86, 0xad, 0x06, 0xa8, 0x13, 0x60, 0xc6, 0xdf, 0xcd, 0xc3, 0xa5, + 0x74, 0x9e, 0xf3, 0xbe, 0xad, 0x00, 0x84, 0x3e, 0x61, 0x59, 0x3e, 0x68, 0x74, 0xef, 0x3c, 0xc3, + 0xfb, 0xd2, 0x07, 0x54, 0xc1, 0x23, 0x5a, 0x8b, 0x78, 0x51, 0x1c, 0xb9, 0x80, 0xd4, 0x1e, 0x1a, + 0xf3, 0xf8, 0xa7, 0xbc, 0x48, 0x8b, 0x7f, 0xca, 0xcb, 0xd0, 0x3e, 0x2c, 0xd4, 0x3c, 0xfb, 0xa9, + 0x15, 0xe0, 0x07, 0xf8, 0x05, 0x7b, 0x82, 0xb6, 0xca, 0xdf, 0x9d, 0xb1, 0x67, 0xe2, 0xd7, 0x4f, + 0x8e, 0x4b, 0x6f, 0x74, 0x18, 0x08, 0xd9, 0x98, 0x0d, 0xf6, 0xc6, 0xb1, 0x11, 0x7f, 0x8a, 0x96, + 0x46, 0xc8, 0xf8, 0x0f, 0x39, 0x38, 0x4f, 0x15, 0x6a, 0x7e, 0x99, 0x23, 0x1a, 0x7f, 0x29, 0x57, + 0x64, 0x75, 0x80, 0x7c, 0x2d, 0x52, 0x57, 0x64, 0xed, 0xc5, 0xb5, 0xa9, 0x81, 0xa1, 0x0d, 0x98, + 0xe0, 0xbf, 0x15, 0x8b, 0xfc, 0xbc, 0x22, 0xb0, 0xe8, 0x52, 0x67, 0x66, 0x2c, 0xba, 0xb0, 0x39, + 0x31, 0xfa, 0x2c, 0xd4, 0x54, 0x71, 0x8d, 0x9f, 0xe6, 0x61, 0x69, 0x0f, 0x7b, 0xf6, 0xe3, 0x17, + 0x29, 0x83, 0xd9, 0x86, 0x39, 0x51, 0xc4, 0xc2, 0xb1, 0x68, 0x5b, 0x8c, 0x45, 0x58, 0x14, 0x5d, + 0xe5, 0xf1, 0x5c, 0xc4, 0x8e, 0x4b, 0x44, 0x3c, 0x85, 0x93, 0xf1, 0x3b, 0x30, 0x16, 0x09, 0x88, + 0x44, 0xe7, 0x5f, 0xec, 0xd0, 0x70, 0xaa, 0xd6, 0x07, 0x4c, 0x09, 0x89, 0x7e, 0x2d, 0xfd, 0x56, + 0x98, 0x9b, 0x34, 0x7a, 0xd9, 0x66, 0xe9, 0x86, 0x25, 0x9b, 0xd5, 0x52, 0x6a, 0x13, 0x36, 0xec, + 0xfa, 0x80, 0x99, 0xd6, 0x52, 0x65, 0x02, 0xc6, 0xcb, 0xf4, 0xa6, 0x9b, 0x1c, 0xdc, 0xff, 0x67, + 0x1e, 0x2e, 0x8a, 0xe7, 0x64, 0x29, 0x6c, 0xfe, 0x12, 0x16, 0x44, 0x51, 0xb9, 0x43, 0x14, 0x06, + 0xdc, 0xd2, 0x39, 0xcd, 0xa2, 0x9c, 0x0a, 0x4e, 0x5b, 0x1c, 0x26, 0x64, 0x76, 0x1a, 0xfa, 0xeb, + 0xb1, 0xcc, 0x7e, 0x9a, 0x14, 0x9e, 0x8a, 0x5a, 0x48, 0x55, 0x99, 0xa9, 0xb1, 0x46, 0x93, 0x9f, + 0xad, 0x98, 0x65, 0x77, 0xe8, 0x55, 0x2d, 0xbb, 0xeb, 0x03, 0x51, 0xdb, 0x6e, 0x65, 0x1a, 0x26, + 0xb7, 0xf0, 0xb3, 0x90, 0xef, 0x7f, 0x3d, 0x17, 0x09, 0x69, 0x40, 0x34, 0x0c, 0x16, 0xdb, 0x20, + 0x17, 0x46, 0x38, 0xa2, 0x21, 0x0d, 0x54, 0x0d, 0x83, 0x81, 0x6e, 0xc0, 0x28, 0x73, 0xff, 0x68, + 0xf5, 0x71, 0x36, 0x97, 0xef, 0xc2, 0xd8, 0x63, 0xdd, 0x16, 0x3b, 0xa6, 0x73, 0x7c, 0xe3, 0x01, + 0x5c, 0xe6, 0xaf, 0x22, 0xf4, 0xc9, 0xa7, 0x0d, 0x9d, 0xf2, 0xf3, 0x65, 0x58, 0x70, 0x71, 0x0d, + 0x47, 0x45, 0x8f, 0xf6, 0x6e, 0xee, 0x33, 0x98, 0xd1, 0xca, 0x25, 0x45, 0xaa, 0x95, 0xca, 0x35, + 0x24, 0x49, 0x47, 0xa1, 0x8d, 0x4b, 0x49, 0x4d, 0xa8, 0x9d, 0x35, 0x30, 0x0d, 0x57, 0xea, 0x85, + 0x17, 0xf7, 0xfe, 0x29, 0xa4, 0xde, 0x75, 0x65, 0x5f, 0x33, 0x89, 0xc7, 0x22, 0x1a, 0x8a, 0x2f, + 0xaf, 0xac, 0x35, 0xa6, 0xb4, 0x7b, 0x0a, 0x63, 0x1a, 0x26, 0x45, 0x55, 0x1b, 0xfb, 0xbe, 0xf1, + 0xab, 0xc3, 0x60, 0x70, 0xc6, 0x26, 0x99, 0x71, 0x05, 0x3f, 0xf6, 0x63, 0x9d, 0xe5, 0x1f, 0xaa, + 0xb3, 0xaa, 0xb1, 0x3a, 0xac, 0x65, 0x2b, 0x8f, 0xea, 0x79, 0xcd, 0xb0, 0x54, 0x5b, 0x79, 0xb1, + 0xd1, 0x7f, 0x9d, 0x22, 0x26, 0xd9, 0x66, 0xbb, 0x7a, 0x72, 0x5c, 0xba, 0x9c, 0x22, 0x26, 0x35, + 0xba, 0xc9, 0x22, 0xd3, 0xd4, 0xaf, 0x6b, 0x06, 0x5f, 0xe6, 0xba, 0x86, 0xec, 0x48, 0xf5, 0xc2, + 0x66, 0x57, 0xe7, 0x25, 0xdf, 0x8f, 0xc2, 0x51, 0x46, 0xad, 0xe2, 0x91, 0x05, 0x94, 0x12, 0x8d, + 0xaa, 0x46, 0x06, 0xd9, 0x50, 0x50, 0x4c, 0x96, 0xd5, 0x43, 0xdc, 0x7c, 0xc2, 0x6d, 0xc0, 0xe2, + 0xe6, 0x3b, 0xc9, 0x16, 0xce, 0x22, 0x26, 0xb3, 0x7d, 0xce, 0x2a, 0x1a, 0x4d, 0x82, 0xaa, 0x46, + 0x46, 0x88, 0x92, 0x45, 0x3f, 0x86, 0x59, 0x39, 0xd5, 0x11, 0xa7, 0xc6, 0x89, 0xe5, 0x37, 0xc2, + 0xd0, 0xaa, 0x47, 0x8f, 0xad, 0x9b, 0x4f, 0xef, 0xdc, 0x4c, 0x80, 0x65, 0xe1, 0x70, 0x9b, 0xa2, + 0x42, 0xf1, 0x68, 0x54, 0x2f, 0xe1, 0x92, 0x10, 0x95, 0x1b, 0x88, 0xdf, 0x92, 0x4f, 0x70, 0x88, + 0xbe, 0x60, 0xb7, 0x31, 0x7f, 0x6f, 0x26, 0x56, 0x5f, 0xca, 0x35, 0x61, 0xee, 0x5b, 0xbe, 0x26, + 0xfc, 0xfd, 0xbc, 0x78, 0x78, 0x14, 0x73, 0x26, 0x38, 0xfd, 0x6d, 0x61, 0xe2, 0x08, 0xfa, 0xfa, + 0x98, 0x26, 0xfb, 0x7d, 0x54, 0x34, 0x8f, 0x82, 0x7c, 0x8a, 0x47, 0x81, 0x76, 0xfd, 0x1a, 0xf4, + 0x70, 0x31, 0x18, 0x7c, 0xf5, 0x8b, 0xbc, 0x3f, 0x1f, 0x85, 0x33, 0x35, 0xeb, 0xc0, 0x76, 0x88, + 0xd0, 0x36, 0xb1, 0xef, 0x76, 0xbd, 0x26, 0x46, 0x65, 0x98, 0xd6, 0xbd, 0xca, 0x7b, 0xf8, 0xcc, + 0x93, 0xef, 0x92, 0x5e, 0x86, 0x96, 0x61, 0x5c, 0xbe, 0xf6, 0xe6, 0x1f, 0x93, 0x84, 0x57, 0xe0, + 0xeb, 0x03, 0x66, 0x08, 0x86, 0x3e, 0xd0, 0xee, 0x6d, 0x66, 0x64, 0xe0, 0x02, 0x0a, 0xbb, 0xcc, + 0xdc, 0x7e, 0x1d, 0xb7, 0xa5, 0x7f, 0x10, 0xd9, 0x1d, 0xc6, 0x0f, 0x63, 0x57, 0x39, 0xc3, 0x5a, + 0x8f, 0x63, 0x16, 0x2b, 0xaa, 0x0b, 0xa4, 0x86, 0xac, 0x4e, 0xb8, 0xe4, 0xf9, 0x3e, 0x4c, 0x3c, + 0xe8, 0xee, 0x63, 0x71, 0x69, 0x35, 0xc2, 0xbf, 0x8f, 0xd1, 0xb7, 0x12, 0xbc, 0x7e, 0xef, 0x2e, + 0x9b, 0x83, 0x27, 0xdd, 0x7d, 0x1c, 0x8f, 0x85, 0x4e, 0x04, 0x93, 0x42, 0x0c, 0x1d, 0x42, 0x21, + 0xfa, 0xac, 0x81, 0x87, 0x16, 0xcc, 0x78, 0x8c, 0x41, 0x03, 0xab, 0x28, 0x11, 0xd7, 0x99, 0xb3, + 0xb5, 0xd6, 0x48, 0x8c, 0x2a, 0xfa, 0x25, 0x98, 0x4f, 0xb4, 0x17, 0xf2, 0xb8, 0xeb, 0xbd, 0x4c, + 0x91, 0x54, 0xa8, 0x47, 0xb8, 0x26, 0x5e, 0x4a, 0x6a, 0x2d, 0x27, 0xb7, 0x82, 0x5a, 0x30, 0x13, + 0x71, 0xd7, 0xe7, 0x69, 0x1f, 0xd2, 0x1f, 0x00, 0xd0, 0x0f, 0x93, 0x88, 0xcd, 0x9b, 0xd8, 0x56, + 0x94, 0x24, 0xda, 0x84, 0x71, 0x79, 0xdc, 0xa7, 0xe1, 0x9f, 0x92, 0x4d, 0x1b, 0x8b, 0x27, 0xc7, + 0xa5, 0xb9, 0xd0, 0xb4, 0xa1, 0xd1, 0x0c, 0x09, 0xa0, 0x1f, 0xc3, 0x65, 0xb9, 0x44, 0xb7, 0xbd, + 0x64, 0x23, 0x10, 0x8f, 0xe8, 0x7e, 0x23, 0xba, 0xc2, 0xd3, 0xe0, 0xf7, 0xee, 0xac, 0x0f, 0x98, + 0xbd, 0xc9, 0xa2, 0xef, 0xc2, 0x08, 0x3d, 0x9a, 0xfa, 0x8b, 0x53, 0x54, 0x79, 0xa3, 0x11, 0x6a, + 0xe8, 0x01, 0x56, 0x0b, 0xd6, 0xc7, 0x60, 0x2a, 0x00, 0x63, 0x1e, 0xdf, 0xc2, 0xf7, 0x87, 0xc6, + 0x86, 0x0a, 0xc3, 0x6c, 0x95, 0x89, 0x47, 0x13, 0xff, 0x66, 0x94, 0xbd, 0x42, 0xde, 0x75, 0xec, + 0xc7, 0x76, 0xb8, 0xdb, 0x55, 0x53, 0x54, 0x98, 0x10, 0x86, 0x2b, 0x8a, 0x29, 0xa9, 0x5f, 0xa4, + 0xd5, 0x2a, 0xdf, 0xd3, 0x6a, 0x75, 0x57, 0xb9, 0x99, 0x51, 0x82, 0x8b, 0x32, 0x85, 0x40, 0xb7, + 0x12, 0x85, 0x57, 0x36, 0xdf, 0xc0, 0x08, 0x0d, 0x73, 0xc8, 0xae, 0xbd, 0x26, 0x96, 0x6f, 0x72, + 0x19, 0x97, 0xd1, 0x7d, 0x16, 0x17, 0x91, 0x47, 0x16, 0x60, 0x7c, 0xa2, 0x05, 0x1a, 0x9f, 0x68, + 0x09, 0xda, 0x81, 0xd9, 0x9a, 0x87, 0x5b, 0xdc, 0x75, 0xbf, 0xe3, 0xf1, 0x93, 0x3c, 0xb3, 0x11, + 0xd0, 0xef, 0x63, 0x47, 0x54, 0x37, 0xb0, 0xac, 0x57, 0xbf, 0x3e, 0x09, 0xe8, 0x68, 0x15, 0xa6, + 0xeb, 0xd8, 0xf2, 0x9a, 0x87, 0x0f, 0xf0, 0x0b, 0xa2, 0x1b, 0x68, 0x39, 0x16, 0x7c, 0x5a, 0x43, + 0xc6, 0x4b, 0xab, 0x54, 0x67, 0x0d, 0x1d, 0x09, 0x7d, 0x0e, 0x23, 0x75, 0xd7, 0x0b, 0x2a, 0x2f, + 0xb8, 0x04, 0x10, 0x17, 0x23, 0xac, 0xb0, 0x72, 0x4e, 0xe4, 0x99, 0xf0, 0x5d, 0x2f, 0x68, 0xec, + 0x6b, 0x81, 0x8a, 0x18, 0x08, 0x7a, 0x01, 0x73, 0xfa, 0xee, 0xe3, 0x1e, 0xe5, 0x63, 0x5c, 0x27, + 0x49, 0xda, 0xe2, 0x0c, 0xa4, 0x72, 0x9d, 0x53, 0xbf, 0x14, 0xdd, 0xe3, 0x8f, 0x69, 0xbd, 0x9a, + 0xa5, 0x26, 0x09, 0x1f, 0x3d, 0xa4, 0xe9, 0x39, 0xd8, 0x88, 0xca, 0x3e, 0xf3, 0x44, 0x1f, 0x0f, + 0x43, 0x61, 0x75, 0xe9, 0x0e, 0xa6, 0x9c, 0xb0, 0xfc, 0x68, 0xd6, 0x15, 0x33, 0x86, 0x8a, 0x6a, + 0x70, 0x66, 0xd7, 0xc7, 0x35, 0x0f, 0x3f, 0xb5, 0xf1, 0x33, 0x41, 0x8f, 0xc5, 0x73, 0xa3, 0xd3, + 0x44, 0xe8, 0x75, 0x58, 0x6d, 0x12, 0xc1, 0x38, 0x32, 0xfa, 0x00, 0xa0, 0x66, 0x3b, 0x0e, 0x6e, + 0xd1, 0xdb, 0xb5, 0x09, 0x4a, 0x8a, 0xda, 0x1f, 0x3b, 0xb4, 0xb4, 0xe1, 0x3a, 0x6d, 0x95, 0xa5, + 0x0a, 0x30, 0xaa, 0xc0, 0xd4, 0x86, 0xd3, 0x6c, 0x77, 0xf9, 0x55, 0xba, 0xbf, 0x38, 0x19, 0xc6, + 0x33, 0xb3, 0x59, 0x45, 0x23, 0xb6, 0x35, 0x75, 0x94, 0xe2, 0x07, 0x30, 0xa1, 0x2c, 0xd3, 0x84, + 0xe8, 0x16, 0x73, 0x6a, 0x74, 0x8b, 0x71, 0x35, 0x8a, 0xc5, 0x3f, 0xca, 0xc1, 0x52, 0xf2, 0xf2, + 0xe7, 0x0a, 0xc6, 0x36, 0x8c, 0xcb, 0x42, 0xf9, 0x56, 0x4b, 0xa8, 0xb6, 0x91, 0x2f, 0x3c, 0xdb, + 0x83, 0x42, 0x58, 0xa8, 0x1d, 0x0e, 0x69, 0xbc, 0x84, 0xbd, 0xf9, 0x6f, 0x8c, 0xc1, 0x1c, 0x7d, + 0x93, 0x10, 0x15, 0x2d, 0x9f, 0xd1, 0x28, 0x35, 0xb4, 0x4c, 0x31, 0x9f, 0x72, 0x4b, 0x0a, 0x2b, + 0x8f, 0xc6, 0xef, 0xd2, 0x10, 0xd0, 0xbb, 0xea, 0x6d, 0x7d, 0x5e, 0xc9, 0xe1, 0x21, 0x0a, 0xd5, + 0x21, 0x84, 0xd7, 0xf8, 0x6f, 0x69, 0x97, 0xc5, 0x7d, 0xcb, 0xa9, 0xa1, 0x7e, 0xe5, 0xd4, 0xae, + 0x94, 0x53, 0x2c, 0xfa, 0xc9, 0x9b, 0x8a, 0x9c, 0x7a, 0xfd, 0x02, 0x6a, 0xe4, 0x75, 0x0b, 0xa8, + 0xd1, 0x57, 0x13, 0x50, 0x63, 0x2f, 0x29, 0xa0, 0xee, 0xc1, 0xf4, 0x16, 0xc6, 0x2d, 0xe5, 0x22, + 0x80, 0xc9, 0x08, 0x6e, 0xfd, 0xa0, 0x26, 0x9e, 0xa4, 0xdb, 0x80, 0x08, 0x56, 0xaa, 0xa0, 0x83, + 0xff, 0x37, 0x82, 0x6e, 0xe2, 0x35, 0x0b, 0xba, 0xc9, 0x57, 0x11, 0x74, 0x31, 0x69, 0x35, 0xf5, + 0x73, 0x95, 0x56, 0x9f, 0x52, 0x77, 0xbe, 0x7a, 0x7d, 0x9d, 0xfb, 0x35, 0x28, 0x8e, 0x04, 0xeb, + 0xae, 0x2f, 0xde, 0x29, 0xd0, 0xbf, 0x49, 0x59, 0xcd, 0xf5, 0xc4, 0x65, 0x2c, 0xfd, 0xdb, 0xa8, + 0x50, 0x27, 0x3e, 0x15, 0x5f, 0x3e, 0x72, 0x19, 0xe5, 0x0f, 0x5d, 0xb9, 0x8c, 0x8b, 0x1e, 0x13, + 0x4c, 0x51, 0x6f, 0xfc, 0xe7, 0x1c, 0xbb, 0x74, 0xfb, 0xff, 0x51, 0x54, 0xbe, 0xca, 0x45, 0xd8, + 0xaf, 0x85, 0x01, 0x30, 0x78, 0xb0, 0x0e, 0xcf, 0x6a, 0x3e, 0x09, 0x6f, 0x22, 0x7f, 0x40, 0xf6, + 0xb9, 0x5a, 0x41, 0x23, 0x94, 0x86, 0x67, 0x21, 0xbd, 0x72, 0xef, 0x8e, 0x10, 0x00, 0x3c, 0x0e, + 0x08, 0x2b, 0xd6, 0x05, 0x80, 0x8a, 0x40, 0x5d, 0xc1, 0x66, 0x0c, 0x93, 0xc5, 0x6f, 0x48, 0xec, + 0xc1, 0x7b, 0xf1, 0x08, 0x04, 0x54, 0xd9, 0x0e, 0x23, 0x10, 0xa8, 0x6c, 0x0c, 0x63, 0x11, 0xec, + 0xc2, 0x79, 0x13, 0x1f, 0xb9, 0x4f, 0xf1, 0xeb, 0x25, 0xfb, 0x35, 0x9c, 0xd3, 0x09, 0xb2, 0xb7, + 0x6a, 0x2c, 0xfa, 0xfd, 0xa7, 0xc9, 0x31, 0xf3, 0x39, 0x02, 0x8b, 0x99, 0xcf, 0xc2, 0x1a, 0x93, + 0x3f, 0xd5, 0xef, 0x06, 0xad, 0x33, 0x5c, 0x58, 0xd2, 0x89, 0x97, 0x5b, 0x2d, 0x9a, 0xd1, 0xb0, + 0x69, 0x77, 0x2c, 0x27, 0x40, 0xdb, 0x30, 0xa1, 0xfc, 0x8c, 0x1c, 0x85, 0x95, 0x1a, 0xae, 0x86, + 0x84, 0x05, 0x5a, 0x2c, 0xcb, 0xb0, 0xd8, 0xc0, 0x50, 0x8a, 0xb2, 0x87, 0xb0, 0x4c, 0x6d, 0xb3, + 0x02, 0x53, 0xca, 0x4f, 0x69, 0x92, 0xa3, 0x9b, 0x5f, 0x69, 0x41, 0x67, 0x98, 0x8e, 0x62, 0x34, + 0xa1, 0x98, 0xc4, 0x34, 0x1a, 0xf7, 0xeb, 0x05, 0x5a, 0x0d, 0x23, 0x88, 0xf5, 0xf6, 0x03, 0x9b, + 0x49, 0x8b, 0x1e, 0x66, 0xfc, 0xed, 0x21, 0x38, 0xcf, 0x27, 0xe3, 0x75, 0xce, 0x38, 0xfa, 0x21, + 0x4c, 0x28, 0x73, 0xcc, 0x99, 0x7e, 0x49, 0xf8, 0xb0, 0xa6, 0xad, 0x05, 0x76, 0x64, 0xef, 0xd2, + 0x82, 0x46, 0x64, 0xba, 0xc9, 0x91, 0x5d, 0x5d, 0x36, 0x6d, 0x98, 0xd6, 0x27, 0x9a, 0x5b, 0x2d, + 0xae, 0x24, 0x36, 0xa2, 0x83, 0x8a, 0x88, 0xc8, 0xad, 0x46, 0xe2, 0x74, 0xaf, 0x0f, 0x98, 0x11, + 0xda, 0xe8, 0x39, 0x9c, 0x89, 0xcd, 0x32, 0x37, 0x46, 0x5d, 0x4b, 0x6c, 0x30, 0x06, 0xcd, 0xcc, + 0x8d, 0x1e, 0x2d, 0x4e, 0x6d, 0x36, 0xde, 0x08, 0x6a, 0xc1, 0xa4, 0x3a, 0xf1, 0xdc, 0xac, 0x72, + 0x39, 0x83, 0x95, 0x0c, 0x90, 0x29, 0x77, 0x9c, 0x97, 0x74, 0xee, 0x5f, 0xe8, 0x26, 0x54, 0x0d, + 0x78, 0x0c, 0x46, 0xd8, 0x6f, 0x22, 0x02, 0x6a, 0x1e, 0xf6, 0xb1, 0xd3, 0xc4, 0xaa, 0x3b, 0xf2, + 0xab, 0x8a, 0x80, 0x7f, 0x9f, 0x83, 0xc5, 0x24, 0xba, 0x75, 0xec, 0xb4, 0x50, 0x0d, 0x0a, 0xd1, + 0x86, 0xf8, 0xaa, 0x36, 0x64, 0xd0, 0xd9, 0xd4, 0x2e, 0xad, 0x0f, 0x98, 0x31, 0x6c, 0xb4, 0x05, + 0x67, 0x94, 0xb2, 0x53, 0xfa, 0x7d, 0xc7, 0x51, 0x55, 0xdb, 0xeb, 0x3a, 0xfd, 0x32, 0xae, 0xb8, + 0x47, 0x96, 0xed, 0x10, 0x45, 0x57, 0x09, 0x22, 0x06, 0x61, 0x29, 0xe7, 0x0d, 0xb3, 0x26, 0xd2, + 0x52, 0xf1, 0x98, 0x43, 0x82, 0x18, 0x1f, 0x53, 0x09, 0xce, 0x6d, 0x50, 0xec, 0x51, 0xb7, 0x24, + 0x76, 0x09, 0x86, 0x77, 0x36, 0xeb, 0xd5, 0x32, 0x7f, 0x22, 0xce, 0x02, 0x8b, 0xb4, 0xfd, 0x46, + 0xd3, 0x32, 0x59, 0x85, 0xf1, 0x11, 0x8d, 0x5b, 0xcf, 0xa3, 0x9e, 0x4b, 0xbc, 0xab, 0x30, 0xca, + 0x8b, 0x38, 0x26, 0x75, 0xda, 0x6a, 0x73, 0x28, 0x51, 0x67, 0xd4, 0xc4, 0x39, 0xa1, 0x8d, 0x2d, + 0x5f, 0xf9, 0x30, 0xbf, 0x0f, 0x63, 0x1e, 0x2f, 0xe3, 0xdf, 0xe5, 0x69, 0x99, 0xc3, 0x84, 0x16, + 0x33, 0x7b, 0xad, 0x80, 0x31, 0xe5, 0x5f, 0xc6, 0x26, 0x0d, 0x02, 0xb4, 0xbd, 0xb1, 0x52, 0x25, + 0x5c, 0xe5, 0xcc, 0x12, 0xd3, 0x71, 0x8b, 0xba, 0x48, 0x07, 0x58, 0x7d, 0x20, 0x4e, 0x59, 0x43, + 0x37, 0x39, 0x0f, 0x7d, 0xa5, 0x80, 0x18, 0x77, 0x65, 0x48, 0xa1, 0x04, 0x6a, 0x69, 0xb9, 0x38, + 0xb6, 0x68, 0xb0, 0xa4, 0x35, 0xea, 0x0e, 0xf2, 0x3a, 0x3a, 0x61, 0x41, 0x91, 0x7d, 0xe6, 0xc9, + 0xa8, 0x78, 0x12, 0x39, 0x57, 0x8a, 0xc6, 0x2a, 0x8c, 0xcb, 0x32, 0x79, 0xb7, 0xc3, 0x78, 0xa5, + 0xc1, 0xef, 0xdd, 0x65, 0x6f, 0xe9, 0x9b, 0x92, 0x40, 0x88, 0x47, 0x9a, 0x60, 0xfb, 0xee, 0x5b, + 0x6e, 0xc2, 0xc7, 0x5e, 0xf0, 0xad, 0x36, 0x11, 0x46, 0xd3, 0x3a, 0x4d, 0x13, 0x1a, 0xfc, 0xde, + 0x72, 0x3f, 0x8c, 0xfa, 0x96, 0x9b, 0x20, 0x8c, 0xfa, 0xf6, 0x9a, 0xc0, 0x22, 0xec, 0x18, 0x5b, + 0xa4, 0xb1, 0x46, 0x56, 0xe3, 0x8d, 0x08, 0xc3, 0x6c, 0x04, 0x23, 0x73, 0x3e, 0x30, 0x2c, 0x31, + 0x66, 0xfd, 0x1c, 0x9a, 0x21, 0x0c, 0xfb, 0x76, 0x9b, 0xf9, 0xdd, 0x1c, 0x0b, 0x82, 0x56, 0xdf, + 0x56, 0xd2, 0x37, 0x3a, 0x8f, 0x5d, 0xe5, 0xea, 0x59, 0xd9, 0xed, 0x0f, 0x6c, 0xa7, 0xa5, 0x5e, + 0x3d, 0x5b, 0xdd, 0xe0, 0x50, 0x06, 0xd2, 0x7e, 0x62, 0x3b, 0x2d, 0x33, 0x0a, 0x8d, 0x3e, 0x80, + 0x29, 0xa5, 0x48, 0x6a, 0x6b, 0x2c, 0xf9, 0x82, 0x8a, 0x6e, 0xb7, 0x4c, 0x1d, 0xd2, 0xf8, 0xad, + 0x3c, 0x9c, 0xdd, 0xed, 0xf8, 0xf4, 0xe9, 0xc8, 0x86, 0xf3, 0x14, 0x3b, 0x81, 0xeb, 0xbd, 0xa0, + 0x9e, 0xea, 0xe8, 0x5d, 0x18, 0x5e, 0xc7, 0xed, 0xb6, 0xcb, 0x47, 0x7e, 0x41, 0xdc, 0xfb, 0x46, + 0xa1, 0x29, 0xd0, 0xfa, 0x80, 0xc9, 0xa0, 0xd1, 0x07, 0x30, 0xbe, 0x8e, 0x2d, 0x2f, 0xd8, 0xc7, + 0x96, 0x50, 0x56, 0x45, 0x32, 0x00, 0x05, 0x85, 0x03, 0xac, 0x0f, 0x98, 0x21, 0x34, 0x5a, 0x26, + 0xe7, 0x38, 0xe7, 0x40, 0xbe, 0xbe, 0x4f, 0x69, 0x90, 0xc0, 0xac, 0x0f, 0x98, 0x14, 0x16, 0x3d, + 0x84, 0xa9, 0xf2, 0x01, 0x76, 0x82, 0x87, 0x38, 0xb0, 0x5a, 0x56, 0x60, 0x71, 0xa5, 0xe6, 0x6a, + 0x1a, 0xb2, 0x06, 0xbc, 0x3e, 0x60, 0xea, 0xd8, 0x95, 0x61, 0x18, 0x7c, 0xe8, 0x1f, 0x18, 0xc7, + 0x39, 0x58, 0x5c, 0x71, 0x9f, 0x39, 0x89, 0x8c, 0xf9, 0x9e, 0xce, 0x18, 0xf1, 0x30, 0x2a, 0x01, + 0x3e, 0xc2, 0x9a, 0x77, 0x60, 0xa8, 0x66, 0x3b, 0x07, 0x91, 0xef, 0x78, 0x02, 0x1e, 0x81, 0xa2, + 0x23, 0xb4, 0x9d, 0x03, 0xb4, 0x29, 0x14, 0x28, 0x6e, 0x28, 0x1a, 0xd4, 0xb4, 0xb6, 0x04, 0x6c, + 0x15, 0x3a, 0x54, 0x94, 0xd8, 0x6f, 0x31, 0xc0, 0xb7, 0x60, 0x21, 0xa5, 0x5d, 0xfe, 0x22, 0x9e, + 0x8c, 0x6d, 0x88, 0x7e, 0x95, 0xde, 0x84, 0xf9, 0xc4, 0x29, 0x88, 0x01, 0xfe, 0xb3, 0xa4, 0xb5, + 0xc4, 0x46, 0xbe, 0x08, 0xa3, 0x22, 0x67, 0x0c, 0x3b, 0xb8, 0x8b, 0x9f, 0xf4, 0xdd, 0x05, 0x3d, + 0x6e, 0x87, 0x01, 0xa5, 0xc5, 0x6f, 0xb4, 0xa7, 0xc4, 0x8e, 0x1a, 0xa4, 0x96, 0xa6, 0x0f, 0x5f, + 0x21, 0xb3, 0xb6, 0xa4, 0x45, 0xda, 0x5c, 0x77, 0xfd, 0xc0, 0x91, 0x6e, 0x81, 0xa6, 0xfc, 0x8d, + 0x6e, 0x40, 0x61, 0xf5, 0x79, 0x80, 0x3d, 0xc7, 0x6a, 0xf3, 0xec, 0x19, 0x3c, 0x65, 0xb2, 0x19, + 0x2b, 0x47, 0xef, 0xc3, 0x42, 0xb4, 0x4c, 0x8c, 0x92, 0x3d, 0x9c, 0x49, 0xab, 0x36, 0xfe, 0x38, + 0x4f, 0x43, 0x60, 0x67, 0x2c, 0x4d, 0xc2, 0xdd, 0xed, 0x3a, 0xe7, 0x56, 0x7e, 0xbb, 0x8e, 0x96, + 0x60, 0x7c, 0xbb, 0xae, 0x25, 0xde, 0x31, 0xc3, 0x02, 0xd2, 0x6d, 0x32, 0x84, 0xb2, 0xd7, 0x3c, + 0xb4, 0x03, 0xdc, 0x0c, 0xba, 0x1e, 0x8f, 0xfc, 0x65, 0xc6, 0xca, 0x91, 0x01, 0x93, 0x6b, 0x6d, + 0x7b, 0xbf, 0x29, 0x88, 0x31, 0x16, 0x68, 0x65, 0xe8, 0x1a, 0x4c, 0x6f, 0x38, 0x7e, 0x60, 0xb5, + 0xdb, 0x2c, 0x2f, 0x11, 0xcf, 0x5b, 0x69, 0x46, 0x4a, 0x49, 0xbb, 0x55, 0xd7, 0x09, 0x2c, 0xdb, + 0xc1, 0x9e, 0xd9, 0x75, 0x02, 0xfb, 0x08, 0xf3, 0xb1, 0xc7, 0xca, 0xd1, 0x3b, 0x30, 0x2f, 0xcb, + 0xb6, 0xbd, 0xe6, 0x21, 0xf6, 0x03, 0x8f, 0xa6, 0x8c, 0xa3, 0x31, 0x8e, 0xcc, 0xe4, 0x4a, 0xda, + 0x42, 0xdb, 0xed, 0xb6, 0x56, 0x9d, 0xa7, 0xb6, 0xe7, 0x3a, 0x34, 0x13, 0xec, 0x18, 0x6f, 0x21, + 0x52, 0x6e, 0xd4, 0x12, 0x77, 0xed, 0x2b, 0x2c, 0x41, 0xe3, 0x24, 0x07, 0x4b, 0x89, 0x1b, 0x4b, + 0x08, 0x6f, 0x15, 0x39, 0x17, 0x59, 0xbf, 0x37, 0x60, 0x88, 0x4a, 0x73, 0x66, 0x18, 0x10, 0x8e, + 0x33, 0x14, 0x9f, 0x91, 0x22, 0xb5, 0x26, 0x85, 0x41, 0x6b, 0xd2, 0x10, 0x3c, 0x48, 0xd5, 0xd6, + 0x5b, 0x51, 0x99, 0x99, 0xd0, 0xb8, 0x6a, 0x10, 0x16, 0xa6, 0xdf, 0x57, 0xb1, 0xb9, 0xfd, 0x71, + 0x0e, 0x4a, 0x3d, 0xe4, 0x89, 0x1c, 0x53, 0xae, 0x8f, 0x31, 0xdd, 0x97, 0x63, 0x62, 0x4f, 0x74, + 0x96, 0xfb, 0x93, 0x59, 0xaf, 0x7b, 0x58, 0x55, 0x40, 0xf1, 0x2f, 0x0f, 0x7a, 0x1b, 0xc6, 0xeb, + 0xf5, 0x75, 0xcd, 0x3b, 0x21, 0x66, 0x09, 0x0c, 0x21, 0x8c, 0xf7, 0xe0, 0xac, 0x24, 0xc2, 0x62, + 0xf0, 0x2b, 0xef, 0x00, 0xf9, 0xb7, 0x5e, 0x3e, 0x5a, 0x0c, 0x0b, 0x8c, 0x3f, 0x1a, 0x8a, 0x21, + 0xd6, 0xbb, 0x47, 0x47, 0x96, 0xf7, 0x02, 0x95, 0x75, 0xc4, 0xc1, 0x9e, 0x1f, 0xd9, 0xca, 0xd0, + 0x4f, 0x8e, 0x4b, 0x03, 0x0a, 0x75, 0xf4, 0x06, 0x4c, 0xd1, 0x0d, 0xe9, 0x34, 0x31, 0xb3, 0x03, + 0xe6, 0x59, 0x1c, 0x16, 0xad, 0x10, 0xed, 0xc1, 0x14, 0x5f, 0xeb, 0xf4, 0xb7, 0x58, 0x62, 0xb7, + 0xa3, 0x4b, 0x4c, 0xeb, 0xde, 0x4d, 0x0d, 0x85, 0x4d, 0x86, 0x4e, 0x06, 0x7d, 0x05, 0xd3, 0x42, + 0xb0, 0x71, 0xc2, 0xec, 0xb2, 0xf5, 0x4e, 0x36, 0x61, 0x1d, 0x87, 0x51, 0x8e, 0x10, 0x22, 0x5d, + 0xe6, 0xe2, 0x9a, 0x53, 0x1e, 0xee, 0xa7, 0xcb, 0x1a, 0x0a, 0xef, 0xb2, 0x56, 0x56, 0xfc, 0x1c, + 0x50, 0x7c, 0x5c, 0xbd, 0x56, 0xd3, 0x94, 0xb2, 0x9a, 0x8a, 0x65, 0x98, 0x4d, 0x18, 0xc0, 0xa9, + 0x48, 0x7c, 0x0e, 0x28, 0xde, 0xd3, 0xd3, 0x50, 0x30, 0xae, 0xc3, 0x35, 0xc9, 0x02, 0xb9, 0x1a, + 0x34, 0x9a, 0xe2, 0xb4, 0xff, 0x2b, 0x79, 0x28, 0xf5, 0x00, 0x45, 0x7f, 0x3f, 0x17, 0xe5, 0x36, + 0x5b, 0x8d, 0x1f, 0x44, 0xb9, 0x9d, 0x8c, 0x9f, 0xc0, 0xf6, 0xca, 0x87, 0xbf, 0xfa, 0x27, 0x2f, + 0xfd, 0xa1, 0x8e, 0x4f, 0xd9, 0xe9, 0xb9, 0x35, 0xa4, 0x72, 0xcb, 0x84, 0x39, 0x4d, 0xc5, 0xe9, + 0x47, 0x76, 0x5f, 0x04, 0xe0, 0x09, 0xca, 0x36, 0xdd, 0x03, 0xfe, 0x8a, 0x52, 0x29, 0x31, 0xee, + 0xc1, 0x7c, 0x84, 0x26, 0xb7, 0x40, 0xbc, 0x0d, 0xf2, 0xbd, 0x17, 0x25, 0x3a, 0x58, 0x39, 0xf3, + 0xb3, 0xe3, 0xd2, 0x14, 0xf9, 0x02, 0xde, 0x0c, 0x43, 0x5d, 0x8b, 0xbf, 0x8c, 0x87, 0xaa, 0x0d, + 0xa5, 0xdc, 0xd6, 0x1e, 0xe2, 0xdf, 0x81, 0x11, 0x56, 0x12, 0x09, 0x28, 0xab, 0x42, 0x73, 0x99, + 0xc0, 0x01, 0x8d, 0x79, 0xfa, 0xc6, 0x85, 0xfe, 0x28, 0x87, 0xaf, 0x29, 0x8d, 0x5d, 0x96, 0x84, + 0x20, 0x2c, 0x96, 0x41, 0x6b, 0x87, 0xca, 0xe1, 0xab, 0x4f, 0x71, 0xe1, 0x25, 0xe0, 0x1c, 0xf7, + 0x59, 0x1b, 0xb7, 0x0e, 0x68, 0xca, 0xf4, 0xca, 0x24, 0xbf, 0xf0, 0x1a, 0xb2, 0x08, 0x01, 0x8a, + 0x66, 0x7c, 0x06, 0xf3, 0xd5, 0x36, 0xb6, 0xbc, 0x68, 0x7b, 0xe8, 0x1a, 0x8c, 0xd2, 0x32, 0xdd, + 0x4b, 0xce, 0x22, 0x45, 0xd4, 0x4b, 0x8e, 0x57, 0x1a, 0x9b, 0x70, 0x8e, 0x9d, 0xc0, 0xd4, 0x21, + 0x85, 0xf6, 0x8e, 0x61, 0xfa, 0x3b, 0xf2, 0x42, 0x22, 0x61, 0xf4, 0x0c, 0xce, 0xf8, 0x94, 0xba, + 0xe0, 0x26, 0x65, 0xcb, 0xef, 0xef, 0xcd, 0xce, 0x5f, 0x81, 0xa5, 0x72, 0xa7, 0x83, 0x9d, 0x56, + 0x88, 0xb8, 0xe3, 0x59, 0x7d, 0xbe, 0x85, 0x44, 0x65, 0x18, 0xa6, 0xd0, 0xd2, 0x58, 0xcc, 0xbb, + 0x9b, 0xd0, 0x1d, 0x0a, 0xc7, 0x23, 0x0c, 0xd2, 0x06, 0x18, 0xa6, 0xd1, 0x82, 0x85, 0x7a, 0x77, + 0xff, 0xc8, 0x66, 0x29, 0xe4, 0xe9, 0x7b, 0x62, 0xd1, 0xf6, 0x86, 0xc8, 0x1b, 0xc3, 0x98, 0x71, + 0x3d, 0x74, 0xd5, 0xa4, 0xee, 0x79, 0xfc, 0x8d, 0xf1, 0xd3, 0x3b, 0x37, 0x43, 0x54, 0x7a, 0x5a, + 0x61, 0xad, 0xd0, 0x6a, 0x9e, 0x5b, 0xc6, 0x98, 0x85, 0x33, 0xaa, 0xe1, 0x8d, 0xad, 0x90, 0x79, + 0x98, 0xd5, 0x0d, 0x6a, 0xac, 0xf8, 0x1b, 0x98, 0x63, 0x07, 0x7e, 0x16, 0x21, 0x78, 0x39, 0x0c, + 0x86, 0x9b, 0xdf, 0x5b, 0x8e, 0x38, 0xf5, 0x51, 0xa7, 0x23, 0x19, 0xfb, 0x7d, 0x6f, 0x99, 0x3d, + 0xa3, 0x78, 0xba, 0xac, 0x99, 0x6d, 0xf3, 0x7b, 0xcb, 0x95, 0x51, 0x1e, 0x69, 0x91, 0x50, 0x67, + 0xd3, 0xff, 0xad, 0x50, 0x5f, 0xa6, 0x2f, 0xf7, 0xd6, 0xb1, 0x45, 0xbd, 0x6c, 0x93, 0xdf, 0x3f, + 0x4d, 0x43, 0xde, 0x6e, 0x09, 0x2d, 0xdb, 0x6e, 0x19, 0x7f, 0x90, 0x83, 0xeb, 0x4c, 0x17, 0x49, + 0xc6, 0xa3, 0xd6, 0xb5, 0x14, 0x64, 0xf4, 0x3e, 0xb0, 0xbc, 0xc8, 0x5c, 0xe1, 0x33, 0x78, 0xcf, + 0xb3, 0x28, 0x31, 0x04, 0x54, 0x86, 0x49, 0xd5, 0x4f, 0xb5, 0xbf, 0x78, 0x38, 0xe6, 0xc4, 0xd1, + 0x63, 0x4b, 0xfa, 0xae, 0x3e, 0x81, 0xf3, 0xab, 0xcf, 0xc9, 0x82, 0xe0, 0x5f, 0x27, 0x7e, 0xeb, + 0x1c, 0xbe, 0xaf, 0x99, 0xd9, 0xe1, 0x2b, 0x46, 0x57, 0x83, 0xa3, 0xc5, 0xe4, 0x78, 0x20, 0x3e, + 0x70, 0x52, 0x7b, 0x1d, 0x37, 0xb5, 0x32, 0xe3, 0x8f, 0x72, 0xb0, 0x94, 0xdc, 0x1a, 0x17, 0x2c, + 0x1b, 0x70, 0xa6, 0x6a, 0x39, 0xae, 0x63, 0x37, 0xad, 0x76, 0xbd, 0x79, 0x88, 0x5b, 0x5d, 0x19, + 0x8f, 0x51, 0x4a, 0x19, 0x72, 0xdc, 0xe1, 0xe8, 0x02, 0xc4, 0x8c, 0x63, 0xa1, 0xf7, 0xe0, 0x2c, + 0x75, 0x75, 0x64, 0xb2, 0xb7, 0x8d, 0x3d, 0x49, 0x8f, 0xf5, 0x2c, 0xa5, 0x16, 0xdd, 0x86, 0x59, + 0xf6, 0x51, 0x69, 0xed, 0x3a, 0x76, 0x20, 0x91, 0xd8, 0xa9, 0x28, 0xa9, 0xca, 0xa8, 0xc1, 0x1b, + 0x5a, 0xce, 0xb3, 0x72, 0xbb, 0xed, 0x3e, 0xc3, 0xad, 0x9a, 0xe7, 0x1e, 0xb9, 0x81, 0x96, 0x36, + 0x81, 0xe7, 0xb4, 0x0c, 0x2d, 0x2e, 0x9c, 0x97, 0x91, 0x62, 0xe3, 0x2f, 0xc3, 0xd5, 0x1e, 0x14, + 0x39, 0xbf, 0xea, 0x70, 0xc6, 0x8a, 0xd4, 0x89, 0x8b, 0xb1, 0xab, 0x82, 0x5f, 0x59, 0x84, 0x7c, + 0x33, 0x8e, 0x7f, 0x63, 0x47, 0x4b, 0x83, 0x87, 0x16, 0x61, 0xae, 0x66, 0x6e, 0xaf, 0xec, 0x56, + 0x77, 0x1a, 0x3b, 0x5f, 0xd5, 0x56, 0x1b, 0xbb, 0x5b, 0x0f, 0xb6, 0xb6, 0x1f, 0x6d, 0xb1, 0xe8, + 0xaf, 0x5a, 0xcd, 0xce, 0x6a, 0xf9, 0x61, 0x21, 0x87, 0xe6, 0xa0, 0xa0, 0x15, 0xaf, 0xee, 0x56, + 0x0a, 0xf9, 0x1b, 0x0d, 0xd5, 0x0f, 0x19, 0x9d, 0x87, 0x85, 0x95, 0xd5, 0xbd, 0x8d, 0xea, 0xaa, + 0xa0, 0xa9, 0x46, 0x9e, 0x9d, 0x83, 0x82, 0x5a, 0xb9, 0xb3, 0xbd, 0x53, 0x2b, 0xe4, 0x48, 0x3f, + 0xd4, 0xd2, 0x47, 0xab, 0x95, 0xf2, 0xee, 0xce, 0xfa, 0x56, 0x61, 0xd0, 0x18, 0x1a, 0xcb, 0x17, + 0xf2, 0x37, 0x7e, 0xa8, 0x39, 0x29, 0xa3, 0x25, 0x58, 0xe4, 0xe0, 0xbb, 0xf5, 0xf2, 0x5a, 0x7a, + 0x13, 0xac, 0xf6, 0xe1, 0xbd, 0x72, 0x21, 0x87, 0x2e, 0xc0, 0x39, 0xad, 0xb4, 0x56, 0xae, 0xd7, + 0x1f, 0x6d, 0x9b, 0x2b, 0x9b, 0xab, 0xf5, 0x7a, 0x21, 0x7f, 0x63, 0x4f, 0x0b, 0x25, 0x42, 0x5a, + 0x78, 0x78, 0xaf, 0xdc, 0x30, 0x57, 0xbf, 0xd8, 0xdd, 0x30, 0x57, 0x57, 0xe2, 0x2d, 0x68, 0xb5, + 0x5f, 0xad, 0xd6, 0x0b, 0x39, 0x34, 0x0b, 0x33, 0x5a, 0xe9, 0xd6, 0x76, 0x21, 0x7f, 0xe3, 0x1a, + 0x0f, 0x14, 0x81, 0xa6, 0x01, 0x56, 0x56, 0xeb, 0xd5, 0xd5, 0xad, 0x95, 0x8d, 0xad, 0xb5, 0xc2, + 0x00, 0x9a, 0x82, 0xf1, 0xb2, 0xfc, 0x99, 0xbb, 0xf1, 0x21, 0xcc, 0x44, 0x4e, 0x4c, 0x04, 0x42, + 0x1e, 0x36, 0x0a, 0x03, 0x84, 0x47, 0xf2, 0x27, 0x3d, 0xe6, 0xb2, 0xc3, 0x4f, 0x21, 0xb7, 0xfc, + 0xe7, 0x7f, 0x2f, 0x07, 0x13, 0x44, 0x1c, 0x08, 0x67, 0xd5, 0x6f, 0x94, 0x03, 0x06, 0xdf, 0x06, + 0x3c, 0x95, 0x57, 0xea, 0x69, 0x82, 0x7e, 0x19, 0x8a, 0x19, 0x86, 0x2b, 0x0a, 0x70, 0x3d, 0x77, + 0x3b, 0x87, 0x4c, 0x7a, 0x4b, 0x13, 0xd1, 0xb7, 0x25, 0xe5, 0xe4, 0x23, 0x51, 0xf1, 0x42, 0xa6, + 0x9a, 0x8e, 0x7e, 0x11, 0x0c, 0x95, 0x66, 0x8a, 0x56, 0xfa, 0x76, 0x7f, 0xda, 0xa7, 0x68, 0xf3, + 0x5a, 0x7f, 0xe0, 0xe8, 0x3e, 0x4c, 0x11, 0x7d, 0x4d, 0x82, 0xa1, 0xf3, 0x51, 0x44, 0x45, 0x45, + 0x2c, 0x2e, 0x25, 0x57, 0xca, 0x4c, 0x02, 0x93, 0x74, 0x20, 0xec, 0xb0, 0xe5, 0x23, 0xf1, 0x9c, + 0x50, 0x94, 0x30, 0x5f, 0x9f, 0xe2, 0x99, 0x48, 0xf1, 0xde, 0x9d, 0xdb, 0x39, 0x54, 0xa7, 0x51, + 0x38, 0x34, 0xc5, 0x0f, 0x09, 0xef, 0xe9, 0xb8, 0x46, 0xc8, 0x7a, 0x53, 0x92, 0xb9, 0xb1, 0x52, + 0x34, 0xc6, 0x2d, 0x40, 0x71, 0x7d, 0x0a, 0x5d, 0x0a, 0xd7, 0x41, 0xb2, 0xaa, 0x55, 0x3c, 0x1b, + 0xbb, 0x7c, 0x5f, 0x25, 0x5f, 0x54, 0xb4, 0x0a, 0xd3, 0xfc, 0xad, 0x10, 0xd7, 0xf0, 0x50, 0x96, + 0x8e, 0x98, 0x4a, 0x66, 0x8d, 0xf2, 0x49, 0x6a, 0x89, 0xa8, 0x18, 0x8e, 0x23, 0xaa, 0x3a, 0x16, + 0xcf, 0x27, 0xd6, 0xf1, 0xf1, 0xdd, 0x83, 0x69, 0x5d, 0xe1, 0x44, 0x62, 0x82, 0x12, 0xf5, 0xd0, + 0xd4, 0x0e, 0x35, 0x60, 0xe1, 0xa1, 0x65, 0x53, 0x73, 0x13, 0xbf, 0xe2, 0x15, 0x17, 0xb4, 0xa8, + 0x94, 0x71, 0x63, 0x5b, 0xc7, 0x4e, 0xab, 0xd8, 0x2b, 0x10, 0x16, 0xdd, 0x36, 0x75, 0xa1, 0x37, + 0xe9, 0x17, 0xdc, 0xc8, 0xd0, 0xf3, 0x1d, 0x26, 0xf9, 0x2c, 0x14, 0xd3, 0xdc, 0x6c, 0xd0, 0x43, + 0xaa, 0xb8, 0x45, 0x28, 0x2a, 0x6b, 0xe2, 0xd4, 0xe4, 0x16, 0xe9, 0x8b, 0xb5, 0xc0, 0x8e, 0xfa, + 0xcb, 0xf8, 0x28, 0x85, 0x71, 0xa9, 0xc4, 0x6e, 0xe7, 0xd0, 0x37, 0x74, 0x57, 0x27, 0x92, 0x7b, + 0x64, 0x07, 0x87, 0xdc, 0xef, 0xed, 0x7c, 0x22, 0x01, 0xbe, 0x51, 0x32, 0xa8, 0x9b, 0x30, 0x97, + 0xe4, 0xd9, 0x23, 0x19, 0x9a, 0xe1, 0xf6, 0x93, 0xba, 0x0a, 0x4c, 0xa2, 0x7e, 0xb6, 0xd2, 0x27, + 0x29, 0xc3, 0xb1, 0x24, 0x95, 0xe6, 0xc7, 0x30, 0x4d, 0x56, 0xc9, 0x03, 0x8c, 0x3b, 0xe5, 0xb6, + 0xfd, 0x14, 0xfb, 0x48, 0x04, 0x89, 0x93, 0x45, 0x69, 0xb8, 0xd7, 0x73, 0xe8, 0x3b, 0x30, 0xf1, + 0xc8, 0x0a, 0x9a, 0x87, 0x3c, 0x94, 0x90, 0x88, 0x34, 0x44, 0xcb, 0x8a, 0xe2, 0x17, 0xad, 0xbc, + 0x9d, 0x43, 0x9f, 0xc0, 0xe8, 0x1a, 0x0e, 0xe8, 0xeb, 0x95, 0xcb, 0xf2, 0x92, 0x9b, 0x39, 0x94, + 0x6d, 0x38, 0xd2, 0x85, 0x55, 0x74, 0x38, 0x6a, 0xdc, 0x42, 0xb7, 0x00, 0x98, 0x40, 0xa0, 0x14, + 0xa2, 0xd5, 0xc5, 0x58, 0xb7, 0xd1, 0x1a, 0xf9, 0xf0, 0xb7, 0x71, 0x80, 0xfb, 0x6d, 0x32, 0x8d, + 0x47, 0x9b, 0x30, 0x2d, 0x93, 0x2f, 0x6c, 0xd1, 0x77, 0xa3, 0x46, 0x84, 0x98, 0x7f, 0x0a, 0x6a, + 0x1f, 0x92, 0x5d, 0xc1, 0xb2, 0xf3, 0xc9, 0x00, 0x7a, 0x28, 0x2d, 0xa4, 0x9e, 0x64, 0x22, 0x03, + 0x53, 0x70, 0xd7, 0x5d, 0x3f, 0xd0, 0x71, 0x65, 0x49, 0x32, 0x2e, 0x86, 0xa2, 0xda, 0xae, 0x1e, + 0x4c, 0x2f, 0x94, 0xb9, 0x69, 0x31, 0x00, 0x8b, 0x97, 0x33, 0x20, 0x98, 0xb8, 0xa3, 0x92, 0x64, + 0x85, 0x9c, 0xe8, 0x59, 0x33, 0xdb, 0x1d, 0xec, 0xd4, 0xeb, 0xeb, 0x34, 0x84, 0x99, 0xb8, 0x53, + 0x53, 0xca, 0x04, 0x61, 0x14, 0xaf, 0x22, 0x5f, 0x3d, 0xed, 0x0d, 0x21, 0xca, 0x7a, 0x59, 0x18, + 0x7e, 0xf5, 0x12, 0x83, 0xb4, 0x3d, 0x60, 0x36, 0x06, 0x2d, 0x3b, 0xf0, 0xde, 0x32, 0x2a, 0x26, + 0xe9, 0xa9, 0x7c, 0x63, 0x9f, 0x4d, 0xaa, 0xdb, 0xbb, 0x7b, 0x3b, 0x87, 0x56, 0x61, 0x56, 0x3e, + 0xf3, 0x0d, 0xab, 0x50, 0x0a, 0x42, 0xc6, 0x17, 0x66, 0x3e, 0x81, 0xcc, 0xde, 0x72, 0x06, 0xa1, + 0xc4, 0x72, 0xf4, 0x19, 0xcc, 0xf2, 0xb5, 0xa9, 0xf5, 0xa7, 0x20, 0xc5, 0x0c, 0x57, 0xed, 0x53, + 0x7b, 0x72, 0x1f, 0xe6, 0xeb, 0x11, 0xee, 0x30, 0x87, 0xaf, 0x73, 0x3a, 0x09, 0x5a, 0x58, 0xc7, + 0x01, 0x63, 0x4f, 0x32, 0xad, 0x07, 0x80, 0x98, 0x3d, 0x40, 0x90, 0x7b, 0x6a, 0xe3, 0x67, 0xe8, + 0x42, 0xa4, 0xeb, 0xa4, 0x90, 0x82, 0x51, 0x39, 0x95, 0x3a, 0xb2, 0x1d, 0x96, 0x42, 0x92, 0xe5, + 0xde, 0xb7, 0x3a, 0xd6, 0xbe, 0xdd, 0xb6, 0x03, 0x1b, 0x93, 0xa5, 0xaa, 0x22, 0xa8, 0x55, 0x62, + 0x3d, 0x9c, 0x4b, 0x85, 0x40, 0xbf, 0x4c, 0x03, 0x6c, 0x65, 0x9f, 0x4d, 0xd0, 0x77, 0x92, 0xb2, + 0xad, 0xa7, 0x9c, 0xae, 0x8a, 0xdf, 0xed, 0x0f, 0x98, 0x2f, 0xc6, 0x4f, 0x61, 0x6a, 0x0d, 0x07, + 0x2c, 0x5b, 0xfe, 0x8a, 0x15, 0x58, 0x48, 0xda, 0x0b, 0x64, 0x11, 0x5f, 0x83, 0x32, 0x65, 0xb7, + 0xac, 0xa8, 0xe3, 0x1f, 0xa1, 0x0d, 0x28, 0x30, 0x31, 0xaf, 0x90, 0xb8, 0x10, 0x23, 0xc1, 0x41, + 0x2c, 0xcf, 0x3a, 0xf2, 0x53, 0x67, 0xeb, 0x16, 0xbb, 0xde, 0x45, 0x32, 0xd1, 0xb8, 0xa2, 0x47, + 0xce, 0x6a, 0x65, 0x32, 0xac, 0x2a, 0x99, 0x11, 0x13, 0xfb, 0x38, 0x10, 0xef, 0x81, 0x59, 0xda, + 0xbc, 0x2b, 0xe1, 0x37, 0x3d, 0x5e, 0x1b, 0x6e, 0xf3, 0x48, 0xec, 0x8a, 0xbd, 0xbb, 0x48, 0xa6, + 0x12, 0x4c, 0x20, 0x7a, 0x4d, 0x53, 0x3d, 0x4e, 0x47, 0xb7, 0x0a, 0xe3, 0x0c, 0xad, 0xe2, 0x06, + 0x52, 0x3e, 0xca, 0x12, 0x81, 0xb9, 0x18, 0xaf, 0xe0, 0xc6, 0x89, 0xc1, 0xbf, 0x99, 0xcf, 0xa1, + 0x32, 0x8c, 0xb3, 0xad, 0xa5, 0x12, 0x91, 0x25, 0x3d, 0xc4, 0x3c, 0x23, 0xf1, 0x29, 0x4c, 0xac, + 0xe1, 0xa0, 0xe2, 0xd2, 0xe7, 0xd8, 0xbe, 0xdc, 0x52, 0x4a, 0x99, 0x20, 0x33, 0xa5, 0x8c, 0x62, + 0x6f, 0x99, 0x62, 0xdf, 0xce, 0xa1, 0x77, 0xe8, 0x27, 0x93, 0xbe, 0xe5, 0x9e, 0x0f, 0x71, 0x95, + 0x6c, 0xd9, 0x49, 0x78, 0xe4, 0x9b, 0x4e, 0x34, 0xee, 0xae, 0xe7, 0x61, 0x87, 0x21, 0xa7, 0xa9, + 0x47, 0x49, 0xd8, 0x9f, 0x52, 0x71, 0xa9, 0x60, 0x33, 0xff, 0xfa, 0x5e, 0x24, 0x58, 0xba, 0x8a, + 0xdb, 0x39, 0xf4, 0x3e, 0x8c, 0xf1, 0x3e, 0x12, 0x24, 0xad, 0xd3, 0x3d, 0x46, 0xfb, 0x3e, 0x00, + 0x9b, 0x0a, 0xda, 0x67, 0x1d, 0x26, 0x9b, 0xcf, 0xef, 0x13, 0xdd, 0xa0, 0xf5, 0x32, 0x98, 0x55, + 0xa1, 0x24, 0x50, 0xcc, 0x45, 0x6d, 0x96, 0x55, 0x3e, 0x67, 0x12, 0x21, 0x6a, 0x3e, 0x0d, 0xa2, + 0x23, 0x63, 0x61, 0x48, 0x35, 0x5f, 0x2b, 0xee, 0xa5, 0x1a, 0x6c, 0x40, 0xa1, 0xdc, 0xa4, 0x5f, + 0x2f, 0x99, 0x9f, 0x5c, 0x9e, 0xb1, 0xa2, 0x15, 0x82, 0xd6, 0x7c, 0x34, 0xdd, 0xf9, 0x26, 0xb6, + 0x68, 0x8c, 0xc0, 0x05, 0xa9, 0x09, 0x45, 0xaa, 0x92, 0x31, 0x32, 0xce, 0x54, 0x73, 0x55, 0x72, + 0x0a, 0x6c, 0xbf, 0x1a, 0x99, 0x0f, 0xa9, 0xe0, 0x53, 0x72, 0xb7, 0x9f, 0x8d, 0xe2, 0xcb, 0xd3, + 0xa7, 0x70, 0xb5, 0x95, 0xa0, 0x65, 0x98, 0xe1, 0x11, 0xc9, 0x24, 0x5b, 0xd2, 0xb0, 0xd3, 0x9a, + 0xff, 0x1e, 0x4c, 0xaf, 0x92, 0x0f, 0x53, 0xb7, 0x65, 0xb3, 0xb8, 0xa8, 0x48, 0x0f, 0x74, 0x99, + 0x8a, 0xb8, 0x2e, 0x32, 0xc4, 0x28, 0x49, 0xcd, 0xe5, 0x46, 0x8e, 0xe7, 0x8d, 0x2f, 0xce, 0x09, + 0xb2, 0x6a, 0xfe, 0x73, 0x6e, 0x9a, 0x58, 0x48, 0x49, 0x23, 0x8e, 0xae, 0x6a, 0x27, 0xde, 0xb4, + 0x5c, 0xe0, 0x09, 0x3a, 0xee, 0x97, 0x4a, 0xc6, 0xc6, 0x14, 0x9a, 0xd9, 0xf9, 0xc5, 0x53, 0xc7, + 0x2d, 0x23, 0x19, 0x26, 0xe6, 0x01, 0x47, 0x6f, 0xe9, 0xd4, 0x33, 0x72, 0x85, 0xa7, 0xb6, 0x40, + 0x2d, 0x0a, 0x7a, 0x9a, 0x6a, 0x74, 0x31, 0x3b, 0x9b, 0xb6, 0x62, 0x51, 0x48, 0xc9, 0x6f, 0x7d, + 0x9f, 0x2e, 0xb3, 0x30, 0xad, 0x23, 0x52, 0xcf, 0xe7, 0xd1, 0xac, 0x96, 0x52, 0x71, 0x4c, 0xce, + 0x55, 0x5d, 0x83, 0x99, 0x48, 0x16, 0x68, 0x69, 0x48, 0x4a, 0xce, 0x43, 0x5d, 0xbc, 0x98, 0x56, + 0x2d, 0xcd, 0xa6, 0x85, 0x68, 0xea, 0x5c, 0x39, 0xe4, 0x94, 0xb4, 0xc5, 0x72, 0xc8, 0xa9, 0x39, + 0x77, 0xef, 0x43, 0x21, 0x9a, 0xb5, 0x53, 0x12, 0x4d, 0x49, 0xe7, 0x99, 0x3a, 0x27, 0xf7, 0x60, + 0x4e, 0x9d, 0x51, 0x39, 0xee, 0x34, 0xe9, 0x9f, 0x46, 0x67, 0x07, 0xe6, 0x13, 0x93, 0x6c, 0x4a, + 0x55, 0x21, 0x2b, 0x05, 0x67, 0x2a, 0x55, 0x0c, 0x67, 0x93, 0xf3, 0xec, 0xa2, 0x37, 0x74, 0x3b, + 0x45, 0x72, 0xd6, 0xd1, 0xe2, 0xd5, 0x1e, 0x50, 0x9c, 0xa1, 0xdf, 0xd0, 0x2f, 0x60, 0xac, 0x8d, + 0xcb, 0x8a, 0xe5, 0x22, 0xa5, 0x01, 0x23, 0x0b, 0x44, 0xae, 0x81, 0xb9, 0xa4, 0x3c, 0xdf, 0xa9, + 0x2c, 0xbe, 0x92, 0x4e, 0x33, 0x5c, 0x58, 0x7b, 0x22, 0xec, 0x5f, 0x2a, 0x67, 0x32, 0xf3, 0xb1, + 0x66, 0x1c, 0x7d, 0x8b, 0x72, 0x3d, 0xf4, 0xdf, 0xe5, 0x74, 0x33, 0xd6, 0x5c, 0x52, 0x16, 0xe0, + 0xa8, 0x95, 0x29, 0x29, 0xc9, 0xab, 0x64, 0x43, 0x66, 0x1a, 0xe1, 0x3d, 0x66, 0x71, 0xd2, 0xa9, + 0xab, 0x16, 0xa7, 0x44, 0xd2, 0x97, 0xd2, 0x01, 0xc2, 0x15, 0x91, 0x90, 0xce, 0x5c, 0xae, 0x88, + 0xf4, 0xc4, 0xea, 0x72, 0x45, 0x64, 0x65, 0x43, 0x37, 0xc5, 0xa6, 0x4b, 0x61, 0x4b, 0x46, 0xee, + 0xdb, 0x8c, 0x63, 0xdd, 0x62, 0x38, 0x71, 0x91, 0x6e, 0x9f, 0x76, 0xda, 0xbe, 0x81, 0x73, 0xa9, + 0x79, 0x6e, 0xd1, 0x9b, 0xb1, 0x0d, 0x9d, 0xc2, 0x89, 0xf4, 0x9e, 0x4e, 0x69, 0x29, 0x6a, 0xa5, + 0xc9, 0x2d, 0x92, 0x0d, 0x37, 0x26, 0xb1, 0x13, 0x52, 0xe5, 0xae, 0x51, 0xcd, 0x57, 0x49, 0x77, + 0x9b, 0x3a, 0xd6, 0x0b, 0x49, 0x74, 0xfc, 0xb8, 0x4c, 0x55, 0xfa, 0x25, 0x34, 0xb1, 0x68, 0xc5, + 0x69, 0x64, 0x6a, 0x3f, 0x5d, 0x4b, 0xa3, 0xb3, 0x42, 0x0f, 0x13, 0x22, 0xfb, 0x2d, 0x3a, 0xa7, + 0xb1, 0x49, 0xfb, 0x4a, 0x16, 0xb5, 0xc1, 0xe9, 0x1f, 0xc8, 0x2a, 0xb5, 0x6d, 0xcb, 0x6c, 0xbb, + 0xa9, 0xbd, 0x38, 0x1f, 0xa7, 0xa1, 0xd9, 0xb5, 0x25, 0x17, 0x58, 0x6f, 0x96, 0xa2, 0xcc, 0xd1, + 0x3a, 0x94, 0x3e, 0x24, 0xa4, 0xb2, 0xa6, 0x47, 0x97, 0xd2, 0x35, 0xd4, 0x59, 0x9e, 0x8c, 0x8f, + 0xc6, 0xe5, 0x16, 0x41, 0x66, 0xce, 0x4a, 0x23, 0x9d, 0x52, 0x9a, 0x61, 0x93, 0xa9, 0x51, 0x77, + 0xe0, 0x84, 0xc4, 0xc1, 0x52, 0x86, 0x66, 0xe6, 0x15, 0x4e, 0xd0, 0xce, 0xa4, 0x54, 0x4e, 0xa5, + 0x98, 0x99, 0x49, 0x38, 0xb5, 0xa7, 0x3f, 0x50, 0xa4, 0x72, 0x2c, 0x3d, 0x30, 0xba, 0x1e, 0x55, + 0xcd, 0xd2, 0x32, 0x08, 0x67, 0x48, 0xfd, 0xb9, 0xa4, 0xcc, 0xc2, 0x8a, 0xa1, 0x39, 0x35, 0xed, + 0x70, 0x02, 0x17, 0xa4, 0x78, 0x4b, 0xa1, 0x96, 0x91, 0x67, 0x38, 0xb5, 0x87, 0xdf, 0x57, 0xc4, + 0x5b, 0x24, 0x1f, 0xb0, 0x34, 0x1c, 0xf4, 0x48, 0x18, 0x9c, 0x4a, 0x7b, 0x8b, 0x3a, 0x90, 0xc7, + 0x93, 0xf9, 0x4a, 0xdd, 0x25, 0x2b, 0xd5, 0x6f, 0xa2, 0x1d, 0x7a, 0x3e, 0x3e, 0x44, 0x42, 0xef, + 0x6c, 0xc4, 0x8a, 0xdc, 0xab, 0x63, 0x52, 0x0e, 0x27, 0x24, 0x01, 0x8e, 0xc8, 0xe1, 0xf4, 0x34, + 0xc1, 0x19, 0x07, 0x9d, 0x99, 0xba, 0x7d, 0xe0, 0x28, 0x39, 0x7c, 0xe5, 0x31, 0x27, 0x9e, 0x56, + 0x58, 0x8a, 0x98, 0xa4, 0x94, 0xbf, 0xdb, 0x44, 0xc3, 0x61, 0xfa, 0xb9, 0x9a, 0x8d, 0x15, 0x15, + 0xd3, 0x93, 0xd0, 0x4a, 0x71, 0x93, 0x98, 0xbe, 0x55, 0x21, 0xa8, 0xa6, 0x42, 0x95, 0x04, 0x13, + 0xb2, 0xb2, 0x4a, 0x82, 0x89, 0xb9, 0x53, 0x6f, 0x51, 0xbb, 0x8a, 0xe9, 0xb6, 0xb1, 0x6a, 0x57, + 0x51, 0x72, 0x6b, 0x46, 0xcc, 0x1a, 0xe8, 0x23, 0x6a, 0xd4, 0xc8, 0xb6, 0x84, 0x2c, 0xe8, 0x94, + 0x7c, 0xc5, 0xe6, 0x37, 0x2e, 0x13, 0x97, 0x4a, 0x43, 0x52, 0x34, 0x77, 0xaa, 0xb4, 0x46, 0xc5, + 0x73, 0x9c, 0xbe, 0x2b, 0xec, 0x22, 0xb4, 0xc3, 0xba, 0xd5, 0x2a, 0xa3, 0xcf, 0xef, 0x0a, 0xa3, + 0x88, 0x86, 0x16, 0x4b, 0x5b, 0x1a, 0x45, 0xfb, 0x1e, 0x4c, 0x86, 0x29, 0x4a, 0xf7, 0x96, 0x15, + 0xc4, 0x48, 0xde, 0xd2, 0x28, 0xe2, 0xfb, 0xe2, 0x82, 0x86, 0xb6, 0xa7, 0x57, 0xf6, 0x32, 0x93, + 0x41, 0x98, 0xdd, 0x34, 0x62, 0x84, 0x51, 0x1b, 0x4c, 0x97, 0xdc, 0x93, 0x6a, 0x76, 0x26, 0xb9, + 0x2e, 0x12, 0x92, 0xe1, 0xc9, 0x75, 0x91, 0x94, 0x62, 0x8e, 0xf6, 0x86, 0x9e, 0xd5, 0xbf, 0x12, + 0x16, 0x87, 0x90, 0xe8, 0x85, 0xcc, 0x44, 0x71, 0xc5, 0x8b, 0xd9, 0xd9, 0xd5, 0x42, 0xd2, 0x75, + 0x28, 0x44, 0x53, 0x49, 0xa1, 0xa4, 0x64, 0x7f, 0x4a, 0xce, 0x2f, 0x79, 0x06, 0x4c, 0xcd, 0x41, + 0x55, 0x13, 0xd7, 0x00, 0x3a, 0xdd, 0x94, 0x94, 0x6f, 0x2a, 0xe9, 0x6c, 0xb5, 0x2c, 0xcc, 0x2a, + 0xa5, 0x1e, 0xa4, 0x63, 0x59, 0xab, 0x54, 0xb5, 0x2c, 0x21, 0x11, 0x95, 0x2d, 0xe2, 0x37, 0x24, + 0xa7, 0xa5, 0x7d, 0x4b, 0x3f, 0xe1, 0x66, 0x84, 0xf9, 0xec, 0x79, 0x99, 0x8d, 0x7e, 0x01, 0x16, + 0x52, 0x22, 0x22, 0xa2, 0xab, 0x11, 0x83, 0x72, 0x72, 0xc4, 0xc4, 0x62, 0x56, 0xf6, 0x46, 0xf4, + 0x90, 0x7a, 0x41, 0x68, 0x2f, 0x35, 0x63, 0x37, 0x8b, 0x8f, 0xec, 0xe0, 0x90, 0xe5, 0x23, 0x55, + 0x64, 0x6e, 0xe2, 0x13, 0x4f, 0x54, 0xa7, 0xe7, 0x15, 0xad, 0x34, 0xe1, 0x72, 0x31, 0x81, 0x60, + 0x31, 0x99, 0x20, 0x4d, 0x61, 0x5f, 0x13, 0x57, 0x54, 0xd1, 0x6e, 0xaa, 0xc3, 0x4f, 0x7a, 0x9c, + 0x9a, 0xda, 0xcd, 0x9a, 0x50, 0xb0, 0x92, 0x29, 0xa6, 0xbf, 0xa8, 0x4d, 0xa5, 0x78, 0x9f, 0x50, + 0x8c, 0x3d, 0x92, 0x45, 0x29, 0xe0, 0xd9, 0xd2, 0xc3, 0x14, 0xdf, 0x6b, 0x1d, 0x6b, 0x59, 0xe9, + 0x5f, 0xda, 0x73, 0xdc, 0xd4, 0xfe, 0xad, 0x8a, 0xfd, 0x94, 0xdc, 0xbf, 0x7e, 0xbf, 0xd8, 0xf2, + 0x9a, 0x2f, 0xf2, 0x4e, 0x5b, 0x1b, 0xa8, 0x52, 0x5e, 0x4c, 0x29, 0x47, 0x5b, 0xd4, 0xad, 0x29, + 0x5a, 0xaa, 0x1c, 0x5c, 0x93, 0x1f, 0x82, 0xa7, 0xd2, 0x63, 0xeb, 0x58, 0x7b, 0x48, 0x7b, 0x9a, + 0x75, 0x1c, 0x79, 0x81, 0xcb, 0xd7, 0xb1, 0x56, 0x7a, 0xba, 0x75, 0x1c, 0x21, 0xa8, 0xaf, 0xe3, + 0x68, 0x37, 0xa3, 0x86, 0x80, 0xd4, 0x59, 0x8d, 0x76, 0x53, 0xae, 0xe3, 0x64, 0x8a, 0xe9, 0x0f, + 0x9e, 0x53, 0x29, 0xca, 0x75, 0xac, 0x53, 0x4c, 0x01, 0xef, 0x73, 0x1d, 0x47, 0x1b, 0xd1, 0xd7, + 0xf1, 0xa9, 0xfa, 0x27, 0xd7, 0x71, 0x72, 0xff, 0x4e, 0xbd, 0x8e, 0x23, 0x11, 0x02, 0xb4, 0x81, + 0x26, 0xad, 0xe3, 0x28, 0x3c, 0x5b, 0xc7, 0xd1, 0xd2, 0x88, 0x01, 0x26, 0x63, 0x1d, 0x47, 0x31, + 0xbf, 0xa0, 0xf4, 0x22, 0xaf, 0x9b, 0xfb, 0x59, 0xc9, 0xa9, 0x0f, 0xa3, 0xd1, 0x23, 0x6a, 0xfd, + 0x8b, 0x94, 0xf7, 0xb7, 0x9a, 0x97, 0xd2, 0x88, 0xd2, 0xf5, 0xbc, 0x27, 0x98, 0x18, 0xed, 0xae, + 0x6e, 0xda, 0x4a, 0x7e, 0xdc, 0x9d, 0xd1, 0xe1, 0x3d, 0xb2, 0x6e, 0x5a, 0x19, 0x74, 0xb3, 0xde, + 0xa6, 0x67, 0xd0, 0x95, 0xe7, 0xa0, 0x28, 0xdd, 0x54, 0x94, 0xec, 0xf5, 0xfd, 0xa5, 0xb8, 0xff, + 0x88, 0xe2, 0x2d, 0x47, 0x4e, 0x56, 0xa7, 0xee, 0xa9, 0x3c, 0x61, 0x45, 0x7b, 0x7a, 0xda, 0x75, + 0xfe, 0x50, 0x68, 0x0f, 0xb1, 0xa0, 0x16, 0x91, 0x41, 0xab, 0x6b, 0x3d, 0xb5, 0x06, 0xed, 0x50, + 0x53, 0x6f, 0xbc, 0x5c, 0x31, 0x13, 0xa7, 0x45, 0xcf, 0xe8, 0x49, 0x35, 0xf6, 0x3c, 0x5f, 0xa5, + 0x9a, 0xf6, 0x76, 0x5f, 0x52, 0x8d, 0x63, 0x7f, 0x46, 0x4d, 0x67, 0xfc, 0x3d, 0x91, 0xf3, 0xd8, + 0x4d, 0x3f, 0xe7, 0xcc, 0x6a, 0xae, 0x57, 0x04, 0x96, 0x7a, 0xbc, 0x7d, 0xcc, 0x2f, 0xf8, 0x44, + 0x61, 0x2a, 0xf3, 0x93, 0xf0, 0xd1, 0x67, 0x50, 0xe0, 0xe2, 0x2d, 0x24, 0x90, 0x04, 0x98, 0x3a, + 0x75, 0x15, 0x61, 0xb1, 0xeb, 0xa3, 0x07, 0xfd, 0x58, 0xea, 0xfa, 0xe1, 0x44, 0xba, 0x59, 0x8b, + 0x7c, 0x0e, 0x77, 0xbc, 0xae, 0x1f, 0xe0, 0x56, 0xdc, 0x1c, 0xa5, 0x77, 0x46, 0x38, 0x80, 0xe8, + 0xe0, 0x7b, 0xcb, 0x68, 0x83, 0xca, 0x36, 0xbd, 0x38, 0xcb, 0x5e, 0x97, 0x4c, 0x86, 0x8a, 0x9e, + 0x75, 0xf9, 0x70, 0x45, 0xef, 0x53, 0x5a, 0xdb, 0xe9, 0x9d, 0x92, 0x2c, 0xea, 0x73, 0x74, 0x69, + 0x2c, 0x62, 0x07, 0x6a, 0x66, 0x3b, 0xec, 0xc5, 0x99, 0xe8, 0x53, 0x1a, 0xf4, 0x39, 0x8c, 0x0b, + 0xe4, 0xde, 0x0c, 0x89, 0x62, 0x53, 0x86, 0xac, 0xc0, 0x94, 0xf6, 0x4e, 0x48, 0x9e, 0x6e, 0x92, + 0x5e, 0x0f, 0x65, 0xcc, 0xf3, 0x94, 0xf6, 0x1e, 0x48, 0x52, 0x49, 0x7a, 0x25, 0x94, 0x4a, 0xe5, + 0x13, 0x98, 0xe0, 0x2c, 0xcd, 0xe4, 0x46, 0xba, 0xb1, 0x6e, 0x5e, 0xf1, 0xaf, 0xee, 0xb6, 0xec, + 0xa0, 0xea, 0x3a, 0x8f, 0xed, 0x83, 0x9e, 0x8c, 0x89, 0xa3, 0xec, 0x2d, 0xa3, 0xaf, 0x69, 0x86, + 0x3c, 0x91, 0xb7, 0x10, 0x07, 0xcf, 0x5c, 0xef, 0x89, 0xed, 0x1c, 0xf4, 0x20, 0x79, 0x49, 0x27, + 0x19, 0xc5, 0x13, 0xae, 0x25, 0x5f, 0x43, 0xb1, 0x9e, 0x4e, 0xbc, 0x27, 0x91, 0xec, 0xcf, 0x4b, + 0x1d, 0x96, 0xa8, 0x93, 0xd0, 0x69, 0xfb, 0x9e, 0x49, 0xf4, 0x2b, 0x16, 0x17, 0x49, 0x18, 0xfa, + 0x9b, 0xae, 0xd7, 0xea, 0x4d, 0xb1, 0xa4, 0xbb, 0x05, 0x47, 0xd0, 0x04, 0x33, 0xbe, 0x82, 0x73, + 0xf5, 0x54, 0xd2, 0xbd, 0x48, 0xf4, 0xd2, 0x24, 0xcf, 0x53, 0x56, 0x9c, 0xb2, 0xdf, 0x99, 0x34, + 0x37, 0xa8, 0x4c, 0x23, 0xdf, 0xa1, 0x9a, 0x87, 0x1f, 0x63, 0x8f, 0x3a, 0x9f, 0xf7, 0x72, 0xbb, + 0xd6, 0xc1, 0xc5, 0xc8, 0x37, 0xe0, 0x4c, 0x3d, 0x46, 0x2a, 0x0d, 0x25, 0xbb, 0x57, 0xf7, 0x61, + 0x96, 0x8e, 0xb4, 0xcf, 0x7e, 0xf5, 0x70, 0x22, 0x9a, 0x58, 0xc3, 0xc1, 0xee, 0x46, 0x0f, 0x2e, + 0x89, 0xd7, 0x11, 0x02, 0x70, 0xef, 0x0e, 0xc1, 0xac, 0x2b, 0x98, 0x71, 0x88, 0xd4, 0xcd, 0xfb, + 0xb9, 0xb8, 0x48, 0xe9, 0xd9, 0x6c, 0x1a, 0x85, 0xbb, 0x54, 0x16, 0x72, 0x07, 0x6c, 0xc5, 0x04, + 0xa9, 0x25, 0xb2, 0x2d, 0x4e, 0xa9, 0xbe, 0xd8, 0x3e, 0x2a, 0xb3, 0xe3, 0x9f, 0x9a, 0xf2, 0x56, + 0x71, 0xbd, 0x48, 0xcc, 0x85, 0x1b, 0x25, 0xc1, 0x4c, 0xa8, 0x9b, 0x6e, 0xf3, 0x89, 0x6a, 0x42, + 0x55, 0x72, 0xa8, 0x16, 0xf5, 0x0c, 0xa7, 0x5c, 0xe2, 0xd3, 0x34, 0xa7, 0xaa, 0x5f, 0x98, 0x9a, + 0x45, 0x55, 0x35, 0xa1, 0xea, 0xf9, 0x5e, 0xef, 0x0a, 0xdb, 0x22, 0x6d, 0x50, 0xa7, 0x9c, 0xca, + 0x1a, 0x69, 0x56, 0xa4, 0x48, 0xba, 0x59, 0x51, 0xed, 0x68, 0xfa, 0x45, 0x00, 0x8a, 0x27, 0x7c, + 0x95, 0x87, 0x95, 0xd4, 0x5c, 0xb0, 0x19, 0xee, 0x5d, 0xb3, 0x09, 0x49, 0xaf, 0xe5, 0xf1, 0x2e, + 0x3d, 0x21, 0x76, 0x51, 0xf7, 0x55, 0xba, 0x9d, 0x43, 0x5b, 0x70, 0x76, 0x0d, 0x07, 0x5c, 0xc6, + 0x99, 0xd8, 0x0f, 0x3c, 0xbb, 0x19, 0x64, 0xde, 0x2a, 0x8a, 0xb3, 0x49, 0x02, 0xce, 0xde, 0x3b, + 0x84, 0x5e, 0x3d, 0x99, 0x5e, 0x26, 0x5e, 0x86, 0x27, 0x30, 0xbf, 0xaa, 0x38, 0x4d, 0x17, 0xd3, + 0x97, 0xf8, 0x28, 0x73, 0xd0, 0x49, 0x47, 0x2d, 0x84, 0x89, 0x08, 0xf8, 0x69, 0xeb, 0x26, 0x8c, + 0x30, 0xa4, 0xd4, 0x0f, 0xea, 0xa4, 0x8a, 0x83, 0xee, 0x08, 0x97, 0x51, 0x82, 0xa2, 0x55, 0xa5, + 0xf6, 0xeb, 0x0e, 0x8c, 0xb3, 0xa3, 0x55, 0xff, 0x28, 0x1f, 0x09, 0x9f, 0xd2, 0xac, 0x8e, 0xa5, + 0x21, 0x7f, 0x06, 0x53, 0xaa, 0x73, 0xce, 0xe9, 0x19, 0xf9, 0x09, 0xbd, 0xfb, 0x15, 0x57, 0x2c, + 0xe9, 0xf8, 0xf3, 0x91, 0xe4, 0x14, 0x9c, 0xa5, 0x4c, 0x40, 0xca, 0xac, 0xf3, 0x69, 0xdd, 0x3f, + 0x13, 0xc3, 0x46, 0x1f, 0x89, 0x77, 0x59, 0x12, 0x39, 0x0e, 0x94, 0xc1, 0xb3, 0x69, 0xc6, 0xe6, + 0x97, 0x41, 0x96, 0x02, 0xb6, 0x67, 0xb7, 0xfb, 0xb9, 0xa3, 0xee, 0xcd, 0xba, 0x34, 0x2a, 0xdb, + 0x54, 0x4b, 0x8b, 0xa5, 0x4d, 0x49, 0x27, 0x74, 0x31, 0x3d, 0xd3, 0x0a, 0x9d, 0x8c, 0xfb, 0xf4, + 0x14, 0x18, 0xab, 0x4d, 0x1d, 0x5e, 0x46, 0xe6, 0x96, 0xf0, 0xd8, 0x1b, 0x27, 0x97, 0x81, 0x96, + 0x75, 0x8a, 0xe6, 0x2f, 0x45, 0x5f, 0x0b, 0xb9, 0x0d, 0xe1, 0xe3, 0xd8, 0xff, 0x60, 0xd3, 0x7b, + 0x76, 0x3e, 0xe1, 0x56, 0xbc, 0xe7, 0x5c, 0xa4, 0x91, 0xfb, 0x05, 0xaa, 0x1d, 0x26, 0x67, 0xeb, + 0x4e, 0x25, 0x76, 0x5d, 0x71, 0xac, 0xc8, 0xce, 0xf3, 0xfd, 0x84, 0x3e, 0x78, 0x4b, 0x4e, 0x2c, + 0x73, 0xad, 0x07, 0x15, 0xc1, 0x89, 0x37, 0x7b, 0xc2, 0xc9, 0x3b, 0xd6, 0xf3, 0xec, 0x0b, 0x9b, + 0xdc, 0x5e, 0x8f, 0x44, 0x39, 0x09, 0xd7, 0xde, 0x29, 0xa9, 0xb0, 0x05, 0x41, 0xdd, 0x81, 0x34, + 0x73, 0x0c, 0x69, 0xec, 0xff, 0x02, 0x4a, 0xa1, 0xf7, 0xc8, 0xe9, 0x26, 0x21, 0xdd, 0x6f, 0x11, + 0xc5, 0x13, 0x84, 0xa3, 0xac, 0xc8, 0xfa, 0xc5, 0xcb, 0x69, 0x1c, 0xf6, 0x15, 0xb7, 0x24, 0xee, + 0xf7, 0x16, 0x49, 0xb1, 0x94, 0x96, 0xac, 0x29, 0xc3, 0x0e, 0xcb, 0x5f, 0x00, 0xbe, 0x16, 0x42, + 0xf1, 0xd9, 0x3e, 0x3d, 0x21, 0xe9, 0xdc, 0x11, 0x21, 0x64, 0x64, 0x4c, 0xef, 0x69, 0x7c, 0xd7, + 0xa2, 0x53, 0x71, 0xda, 0x09, 0xb5, 0xc2, 0x57, 0x6f, 0xf1, 0x2c, 0xe6, 0x52, 0x97, 0x4b, 0xcd, + 0xa8, 0x2e, 0x67, 0x37, 0x23, 0x05, 0x7a, 0x95, 0x6c, 0x53, 0xd6, 0x84, 0x96, 0x42, 0xb9, 0x6a, + 0x6e, 0x86, 0x66, 0x85, 0x84, 0xdc, 0xca, 0x45, 0x10, 0x95, 0xe6, 0x26, 0xaa, 0x8b, 0x90, 0xae, + 0x49, 0xf1, 0x57, 0xe4, 0x0b, 0x9f, 0xa4, 0xca, 0x8c, 0xd3, 0x45, 0x5d, 0x04, 0x71, 0x7d, 0x9d, + 0x44, 0x1b, 0xb0, 0x90, 0x12, 0xb5, 0x46, 0xde, 0xb0, 0x66, 0x47, 0xb5, 0x29, 0x66, 0x37, 0x8c, + 0xbe, 0x86, 0xf9, 0xc4, 0xb0, 0x36, 0xd2, 0x4a, 0x9c, 0x15, 0xf4, 0xa6, 0x17, 0xf1, 0x27, 0xb0, + 0x98, 0x96, 0xef, 0x38, 0x7c, 0x71, 0x94, 0x9d, 0x84, 0x5a, 0xca, 0xd4, 0x9e, 0x89, 0x93, 0xb7, + 0x60, 0x2e, 0x29, 0x87, 0xb0, 0xdc, 0x1c, 0x19, 0x09, 0x86, 0x13, 0x9f, 0x35, 0xd5, 0x60, 0x3e, + 0x31, 0x8f, 0xaf, 0xe4, 0x4c, 0x56, 0x96, 0xdf, 0x44, 0x8a, 0x5f, 0xc2, 0x42, 0x4a, 0xd2, 0xda, + 0xf0, 0xba, 0x3c, 0x33, 0xa9, 0x6d, 0x86, 0xb3, 0x52, 0x31, 0x3d, 0x1f, 0xaa, 0xf4, 0x51, 0xeb, + 0x99, 0x32, 0xb5, 0x98, 0x98, 0x24, 0x1a, 0xed, 0xd0, 0x45, 0x98, 0x94, 0x20, 0x55, 0x5d, 0x84, + 0x19, 0x09, 0x54, 0x53, 0x9e, 0xa3, 0x2d, 0xa4, 0xe4, 0x44, 0xcd, 0xa0, 0xda, 0x47, 0x6f, 0xb7, + 0x84, 0xfc, 0xd7, 0xb3, 0x47, 0x46, 0xfc, 0x9e, 0x13, 0x53, 0x4b, 0x26, 0xf6, 0x53, 0x89, 0xe3, + 0xd0, 0x6e, 0x67, 0xa8, 0x41, 0x48, 0x0d, 0xe4, 0x40, 0x20, 0xa9, 0xa1, 0x7d, 0x4a, 0xc5, 0xcd, + 0x92, 0xa8, 0x31, 0x64, 0xaa, 0x78, 0x7e, 0x08, 0x93, 0x75, 0xb5, 0xf1, 0x84, 0x46, 0x52, 0x17, + 0x85, 0x7c, 0xc8, 0xd3, 0xbb, 0xef, 0x19, 0xce, 0x9e, 0xf2, 0xe3, 0xd0, 0xd7, 0x28, 0x52, 0xdd, + 0x5b, 0xb4, 0x54, 0x29, 0x52, 0x52, 0x27, 0x65, 0x32, 0x92, 0xee, 0x2d, 0xc9, 0xd9, 0x55, 0x1a, + 0x2c, 0xb8, 0x7b, 0x34, 0x51, 0x15, 0x32, 0x7a, 0x27, 0x71, 0x93, 0x6e, 0xed, 0x99, 0x99, 0xae, + 0x98, 0x2f, 0x4e, 0x98, 0x1c, 0x46, 0xf5, 0xc5, 0x89, 0xa5, 0x9c, 0x51, 0x7d, 0x71, 0x12, 0xf2, + 0xc9, 0xac, 0x52, 0x5a, 0x61, 0x54, 0xfc, 0x0c, 0x83, 0x81, 0x24, 0x93, 0x10, 0x7c, 0xff, 0x81, + 0x1a, 0x0e, 0x84, 0xc5, 0xd2, 0xcf, 0xb0, 0x87, 0x46, 0xc3, 0x80, 0x44, 0x82, 0xef, 0xdf, 0x87, + 0x42, 0x34, 0x8e, 0x98, 0x34, 0x47, 0xa5, 0x04, 0x18, 0xcb, 0x58, 0x62, 0x10, 0x46, 0x0b, 0x93, + 0x46, 0x9f, 0x58, 0x00, 0xb1, 0xe2, 0xb9, 0x84, 0x1a, 0xa9, 0xae, 0x4d, 0xaa, 0xb1, 0xc5, 0xa4, + 0x3b, 0x59, 0x42, 0xc0, 0xb1, 0xe2, 0xf9, 0xc4, 0x3a, 0x4e, 0x28, 0x60, 0xf9, 0x07, 0x93, 0x73, + 0x1d, 0x86, 0x6f, 0xa8, 0x32, 0x60, 0x44, 0x33, 0x37, 0xfa, 0x01, 0xe5, 0xad, 0x62, 0x19, 0xcb, + 0x3f, 0x21, 0xc1, 0xe2, 0x9b, 0x09, 0x6f, 0x1d, 0x34, 0x88, 0xd0, 0xd3, 0x2a, 0xbc, 0x71, 0x4f, + 0xca, 0xe7, 0x88, 0x1e, 0x89, 0xd8, 0xea, 0x29, 0x2d, 0xf5, 0x22, 0x90, 0x3a, 0x83, 0x8f, 0x44, + 0x34, 0xf5, 0xd7, 0x4d, 0x78, 0x1f, 0x96, 0x22, 0x4f, 0x29, 0x74, 0xc2, 0x37, 0x92, 0xdf, 0x5b, + 0x24, 0xb2, 0x27, 0x5d, 0x1f, 0xbe, 0x14, 0x7f, 0x77, 0x11, 0x99, 0xf7, 0xd3, 0xca, 0xaa, 0x87, + 0x30, 0x4d, 0xc5, 0x83, 0xc8, 0xd0, 0x19, 0x46, 0x91, 0xd1, 0x8b, 0xa3, 0xe1, 0x8c, 0xa2, 0xb5, + 0xd2, 0x1d, 0x75, 0x92, 0xbf, 0xc7, 0x65, 0xf9, 0x3e, 0x8b, 0xfa, 0x23, 0x5d, 0x5a, 0x98, 0xf4, + 0xf5, 0xe1, 0x69, 0x44, 0xd1, 0x27, 0x30, 0x13, 0x3e, 0xd3, 0x65, 0x24, 0x12, 0xc0, 0x32, 0x8c, + 0x50, 0x33, 0xe1, 0x5b, 0xdd, 0xd3, 0xa3, 0xaf, 0x8b, 0x4f, 0x48, 0x88, 0x7e, 0x21, 0xf6, 0x04, + 0x45, 0x1b, 0x43, 0x3f, 0x5f, 0x12, 0x85, 0xb7, 0xa7, 0x9d, 0x9d, 0x26, 0xdd, 0x6e, 0xc9, 0x41, + 0xf3, 0xd4, 0xed, 0x96, 0x19, 0xd8, 0x4f, 0xaa, 0xad, 0x29, 0x74, 0x1e, 0xc2, 0x15, 0x1a, 0x54, + 0xa5, 0x86, 0x9d, 0x96, 0xed, 0x1c, 0x24, 0x43, 0xa5, 0xf7, 0x3d, 0x1a, 0x8a, 0xa5, 0x0d, 0x97, + 0x7b, 0x46, 0x0d, 0x44, 0xb7, 0x34, 0xf7, 0x91, 0xde, 0xf1, 0x05, 0xb3, 0x9e, 0x7d, 0x25, 0x05, + 0xdf, 0x93, 0xdf, 0xc7, 0x8c, 0x38, 0x80, 0xf2, 0xfb, 0x98, 0x19, 0xbd, 0xef, 0x4b, 0x9a, 0xb0, + 0x80, 0x7f, 0x5b, 0x68, 0xa0, 0x24, 0xec, 0xb0, 0x70, 0xc2, 0x99, 0x57, 0x2a, 0x97, 0xf5, 0x0b, + 0xc7, 0x18, 0x22, 0x3d, 0x8b, 0x5c, 0xe4, 0x27, 0xa8, 0x34, 0xe2, 0xbd, 0x89, 0x64, 0xb8, 0x2d, + 0x5f, 0x64, 0x0b, 0xf0, 0xd4, 0x3d, 0x4f, 0x29, 0xaf, 0xac, 0xfc, 0xe4, 0xcf, 0x2e, 0xe6, 0x7e, + 0xf2, 0xd3, 0x8b, 0xb9, 0xff, 0xf4, 0xd3, 0x8b, 0xb9, 0x3f, 0xfd, 0xe9, 0xc5, 0xdc, 0xf7, 0x97, + 0xfb, 0x0b, 0x6a, 0xdb, 0x6c, 0xdb, 0xd8, 0x09, 0x6e, 0x31, 0x72, 0x23, 0xf4, 0xbf, 0xbb, 0xff, + 0x37, 0x00, 0x00, 0xff, 0xff, 0x8e, 0x52, 0x86, 0xf4, 0x37, 0xdf, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -35153,6 +35185,15 @@ func (m *PaginatedResource) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if len(m.Logins) > 0 { + for iNdEx := len(m.Logins) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Logins[iNdEx]) + copy(dAtA[i:], m.Logins[iNdEx]) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.Logins[iNdEx]))) + i-- + dAtA[i] = 0x6a + } + } if m.Resource != nil { { size := m.Resource.Size() @@ -35399,6 +35440,16 @@ func (m *ListUnifiedResourcesRequest) MarshalToSizedBuffer(dAtA []byte) (int, er i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.IncludeLogins { + i-- + if m.IncludeLogins { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x60 + } if m.PinnedOnly { i-- if m.PinnedOnly { @@ -35580,6 +35631,16 @@ func (m *ListResourcesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.IncludeLogins { + i-- + if m.IncludeLogins { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x68 + } if m.UsePreviewAsRoles { i-- if m.UsePreviewAsRoles { @@ -42381,6 +42442,12 @@ func (m *PaginatedResource) Size() (n int) { if m.Resource != nil { n += m.Resource.Size() } + if len(m.Logins) > 0 { + for _, s := range m.Logins { + l = len(s) + n += 1 + l + sovAuthservice(uint64(l)) + } + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -42557,6 +42624,9 @@ func (m *ListUnifiedResourcesRequest) Size() (n int) { if m.PinnedOnly { n += 2 } + if m.IncludeLogins { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -42637,6 +42707,9 @@ func (m *ListResourcesRequest) Size() (n int) { if m.UsePreviewAsRoles { n += 2 } + if m.IncludeLogins { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -64159,6 +64232,38 @@ func (m *PaginatedResource) Unmarshal(dAtA []byte) error { } m.Resource = &PaginatedResource_AppServerOrSAMLIdPServiceProvider{v} iNdEx = postIndex + case 13: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Logins", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthAuthservice + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Logins = append(m.Logins, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAuthservice(dAtA[iNdEx:]) @@ -64610,6 +64715,26 @@ func (m *ListUnifiedResourcesRequest) Unmarshal(dAtA []byte) error { } } m.PinnedOnly = bool(v != 0) + case 12: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IncludeLogins", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IncludeLogins = bool(v != 0) default: iNdEx = preIndex skippy, err := skipAuthservice(dAtA[iNdEx:]) @@ -65210,6 +65335,26 @@ func (m *ListResourcesRequest) Unmarshal(dAtA []byte) error { } } m.UsePreviewAsRoles = bool(v != 0) + case 13: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IncludeLogins", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IncludeLogins = bool(v != 0) default: iNdEx = preIndex skippy, err := skipAuthservice(dAtA[iNdEx:]) diff --git a/api/proto/teleport/legacy/client/proto/authservice.proto b/api/proto/teleport/legacy/client/proto/authservice.proto index c0e9c58333dd8..76c1bd03b9ec1 100644 --- a/api/proto/teleport/legacy/client/proto/authservice.proto +++ b/api/proto/teleport/legacy/client/proto/authservice.proto @@ -1956,6 +1956,9 @@ message PaginatedResource { types.AppServerOrSAMLIdPServiceProviderV1 AppServerOrSAMLIdPServiceProvider = 11; } + // Logins allowed for the included resource. Only to be populated for SSH and Desktops. + repeated string Logins = 13 [(gogoproto.jsontag) = "logins,omitempty"]; + reserved 4; reserved "KubeService"; } @@ -1996,6 +1999,9 @@ message ListUnifiedResourcesRequest { // PinnedOnly indicates that the request will pull only the pinned resources // of the requesting user bool PinnedOnly = 11 [(gogoproto.jsontag) = "pinned_only,omitempty"]; + // IncludeLogins indicates that the response should include a users allowed logins + // for all returned resources. + bool IncludeLogins = 12 [(gogoproto.jsontag) = "include_logins,omitempty"]; } // ListUnifiedResourceResponse response of ListUnifiedResources. @@ -2055,6 +2061,9 @@ message ListResourcesRequest { // UsePreviewAsRoles indicates that the response should include all resources // the caller would be able to access with their preview_as_roles bool UsePreviewAsRoles = 12 [(gogoproto.jsontag) = "use_preview_as_roles,omitempty"]; + // IncludeLogins indicates that the response should include a users allowed logins + // for all returned resources. + bool IncludeLogins = 13 [(gogoproto.jsontag) = "include_logins,omitempty"]; } // GetSSHTargetsRequest gets all servers that might match an equivalent ssh dial request. diff --git a/api/types/resource.go b/api/types/resource.go index 57293f4729046..aa79cb9a654fa 100644 --- a/api/types/resource.go +++ b/api/types/resource.go @@ -120,6 +120,15 @@ type ResourceWithLabels interface { MatchSearch(searchValues []string) bool } +// EnrichedResource is a [ResourceWithLabels] wrapped with +// additional user-specific information. +type EnrichedResource struct { + // ResourceWithLabels is the underlying resource. + ResourceWithLabels + // Logins that the user is allowed to access the above resource with. + Logins []string +} + // ResourcesWithLabels is a list of labeled resources. type ResourcesWithLabels []ResourceWithLabels diff --git a/lib/auth/auth_with_roles.go b/lib/auth/auth_with_roles.go index 51e14e1ac2915..379e4de843e00 100644 --- a/lib/auth/auth_with_roles.go +++ b/lib/auth/auth_with_roles.go @@ -1458,6 +1458,26 @@ func (a *ServerWithRoles) ListUnifiedResources(ctx context.Context, req *proto.L return nil, trace.Wrap(err, "making paginated unified resources") } + if req.IncludeLogins { + for _, r := range paginatedResources { + if n := r.GetNode(); n != nil { + logins, err := checker.GetAllowedLoginsForResource(n) + if err != nil { + log.WithError(err).WithField("resource", n.GetName()).Warn("Unable to determine logins for node") + continue + } + r.Logins = logins + } else if d := r.GetWindowsDesktop(); d != nil { + logins, err := checker.GetAllowedLoginsForResource(d) + if err != nil { + log.WithError(err).WithField("resource", d.GetName()).Warn("Unable to determine logins for desktop") + continue + } + r.Logins = logins + } + } + } + return &proto.ListUnifiedResourcesResponse{ NextKey: nextKey, Resources: paginatedResources, @@ -1720,6 +1740,17 @@ func (a *ServerWithRoles) ListResources(ctx context.Context, req proto.ListResou case err != nil: return trace.Wrap(err) case match: + if req.IncludeLogins { + logins, err := resourceChecker.GetAllowedLoginsForResource(resource) + if err != nil { + log.WithError(err).WithField("resource", resource.GetName()).Warn("Unable to determine logins for resource") + } + + resource = &types.EnrichedResource{ + ResourceWithLabels: resource, + Logins: logins, + } + } resp.Resources = append(resp.Resources, resource) return nil } @@ -1735,6 +1766,7 @@ func (a *ServerWithRoles) ListResources(ctx context.Context, req proto.ListResou // resourceAccessChecker allows access to be checked differently per resource type. type resourceAccessChecker interface { CanAccess(resource types.Resource) error + GetAllowedLoginsForResource(resource services.AccessCheckable) ([]string, error) } // resourceChecker is a pass through checker that utilizes the provided @@ -1923,6 +1955,23 @@ func (a *ServerWithRoles) listResourcesWithSort(ctx context.Context, req proto.L SearchKeywords: req.SearchKeywords, PredicateExpression: req.PredicateExpression, StartKey: req.StartKey, + EnrichResourceFn: func(r types.ResourceWithLabels) (types.ResourceWithLabels, error) { + if req.IncludeLogins && (r.GetKind() == types.KindNode || r.GetKind() == types.KindWindowsDesktop) { + resourceChecker, err := a.newResourceAccessChecker(req.ResourceType) + if err != nil { + return nil, trace.Wrap(err) + } + + logins, err := resourceChecker.GetAllowedLoginsForResource(r) + if err != nil { + log.WithError(err).WithField("resource", r.GetName()).Warn("Unable to determine logins for resource") + } + + return &types.EnrichedResource{ResourceWithLabels: r, Logins: logins}, nil + } + + return r, nil + }, }) if err != nil { return nil, trace.Wrap(err) diff --git a/lib/auth/auth_with_roles_test.go b/lib/auth/auth_with_roles_test.go index 61912e7b26f76..132b8fee2a03b 100644 --- a/lib/auth/auth_with_roles_test.go +++ b/lib/auth/auth_with_roles_test.go @@ -25,6 +25,7 @@ import ( "fmt" "io" "slices" + "strconv" "strings" "testing" "time" @@ -41,6 +42,7 @@ import ( "google.golang.org/protobuf/types/known/durationpb" "github.com/gravitational/teleport" + apiclient "github.com/gravitational/teleport/api/client" "github.com/gravitational/teleport/api/client/proto" "github.com/gravitational/teleport/api/constants" apidefaults "github.com/gravitational/teleport/api/defaults" @@ -3447,6 +3449,137 @@ func TestListResources_SearchAsRoles(t *testing.T) { } } +// TestListResources_WithLogins will generate multiple resources +// and get them with login information. +func TestListResources_WithLogins(t *testing.T) { + t.Parallel() + ctx := context.Background() + srv := newTestTLSServer(t, withCacheEnabled(true)) + + require.Eventually(t, func() bool { + return srv.Auth().UnifiedResourceCache.IsInitialized() + }, 5*time.Second, 200*time.Millisecond, "unified resource watcher never initialized") + + for i := 0; i < 5; i++ { + name := uuid.New().String() + node, err := types.NewServerWithLabels( + name, + types.KindNode, + types.ServerSpecV2{}, + map[string]string{"name": name}, + ) + require.NoError(t, err) + + _, err = srv.Auth().UpsertNode(ctx, node) + require.NoError(t, err) + + db, err := types.NewDatabaseServerV3(types.Metadata{ + Name: name, + }, types.DatabaseServerSpecV3{ + HostID: "_", + Hostname: "_", + Database: &types.DatabaseV3{ + Metadata: types.Metadata{ + Name: fmt.Sprintf("name-%d", i), + }, + Spec: types.DatabaseSpecV3{ + Protocol: "_", + URI: "_", + }, + }, + }) + require.NoError(t, err) + + _, err = srv.Auth().UpsertDatabaseServer(ctx, db) + require.NoError(t, err) + + desktop, err := types.NewWindowsDesktopV3(name, nil, types.WindowsDesktopSpecV3{ + HostID: strconv.Itoa(i), + Addr: "1.2.3.4", + }) + require.NoError(t, err) + + require.NoError(t, srv.Auth().UpsertWindowsDesktop(ctx, desktop)) + } + + // create user and client + logins := []string{"llama", "fish"} + user, role, err := CreateUserAndRole(srv.Auth(), "user", logins, nil) + require.NoError(t, err) + role.SetWindowsDesktopLabels(types.Allow, types.Labels{types.Wildcard: []string{types.Wildcard}}) + role.SetWindowsLogins(types.Allow, logins) + _, err = srv.Auth().UpdateRole(ctx, role) + require.NoError(t, err) + + clt, err := srv.NewClient(TestUser(user.GetName())) + require.NoError(t, err) + + t.Run("with fake pagination", func(t *testing.T) { + for _, resourceType := range []string{types.KindNode, types.KindWindowsDesktop, types.KindDatabaseServer} { + var results []*types.EnrichedResource + var start string + + for len(results) != 5 { + resp, err := apiclient.GetEnrichedResourcePage(ctx, clt, &proto.ListResourcesRequest{ + ResourceType: resourceType, + Limit: 2, + IncludeLogins: true, + SortBy: types.SortBy{IsDesc: true, Field: types.ResourceMetadataName}, + StartKey: start, + }) + require.NoError(t, err) + + results = append(results, resp.Resources...) + start = resp.NextKey + } + + // Check that only server and desktop resources contain the expected logins + for _, resource := range results { + switch resource.ResourceWithLabels.(type) { + case types.Server, types.WindowsDesktop: + require.Empty(t, cmp.Diff(resource.Logins, logins, cmpopts.SortSlices(func(a, b string) bool { + return strings.Compare(a, b) < 0 + }))) + default: + require.Empty(t, resource.Logins) + } + } + } + }) + + t.Run("without fake pagination", func(t *testing.T) { + for _, resourceType := range []string{types.KindNode, types.KindWindowsDesktop, types.KindDatabaseServer} { + var results []*types.EnrichedResource + var start string + + for len(results) != 5 { + resp, err := apiclient.GetEnrichedResourcePage(ctx, clt, &proto.ListResourcesRequest{ + ResourceType: resourceType, + Limit: 2, + IncludeLogins: true, + StartKey: start, + }) + require.NoError(t, err) + + results = append(results, resp.Resources...) + start = resp.NextKey + } + + // Check that only server and desktop resources contain the expected logins + for _, resource := range results { + switch resource.ResourceWithLabels.(type) { + case types.Server, types.WindowsDesktop: + require.Empty(t, cmp.Diff(resource.Logins, logins, cmpopts.SortSlices(func(a, b string) bool { + return strings.Compare(a, b) < 0 + }))) + default: + require.Empty(t, resource.Logins) + } + } + } + }) +} + func TestGetAndList_WindowsDesktops(t *testing.T) { t.Parallel() ctx := context.Background() @@ -4305,6 +4438,99 @@ func TestListResources_WithRoles(t *testing.T) { } } +// TestListUnifiedResources_WithLogins will generate multiple resources +// and retrieve them with login information. +func TestListUnifiedResources_WithLogins(t *testing.T) { + t.Parallel() + ctx := context.Background() + srv := newTestTLSServer(t, withCacheEnabled(true)) + + require.Eventually(t, func() bool { + return srv.Auth().UnifiedResourceCache.IsInitialized() + }, 5*time.Second, 200*time.Millisecond, "unified resource watcher never initialized") + + for i := 0; i < 5; i++ { + name := uuid.New().String() + node, err := types.NewServerWithLabels( + name, + types.KindNode, + types.ServerSpecV2{}, + map[string]string{"name": name}, + ) + require.NoError(t, err) + + _, err = srv.Auth().UpsertNode(ctx, node) + require.NoError(t, err) + + db, err := types.NewDatabaseServerV3(types.Metadata{ + Name: name, + }, types.DatabaseServerSpecV3{ + HostID: "_", + Hostname: "_", + Database: &types.DatabaseV3{ + Metadata: types.Metadata{ + Name: fmt.Sprintf("name-%d", i), + }, + Spec: types.DatabaseSpecV3{ + Protocol: "_", + URI: "_", + }, + }, + }) + require.NoError(t, err) + + _, err = srv.Auth().UpsertDatabaseServer(ctx, db) + require.NoError(t, err) + + desktop, err := types.NewWindowsDesktopV3(name, nil, types.WindowsDesktopSpecV3{ + HostID: strconv.Itoa(i), + Addr: "1.2.3.4", + }) + require.NoError(t, err) + + require.NoError(t, srv.Auth().UpsertWindowsDesktop(ctx, desktop)) + } + + // create user and client + logins := []string{"llama", "fish"} + user, role, err := CreateUserAndRole(srv.Auth(), "user", logins, nil) + require.NoError(t, err) + role.SetWindowsDesktopLabels(types.Allow, types.Labels{types.Wildcard: []string{types.Wildcard}}) + role.SetWindowsLogins(types.Allow, logins) + _, err = srv.Auth().UpdateRole(ctx, role) + require.NoError(t, err) + + clt, err := srv.NewClient(TestUser(user.GetName())) + require.NoError(t, err) + + var results []*proto.PaginatedResource + var start string + for len(results) != 15 { + resp, err := clt.ListUnifiedResources(ctx, &proto.ListUnifiedResourcesRequest{ + Limit: 5, + IncludeLogins: true, + SortBy: types.SortBy{IsDesc: true, Field: types.ResourceMetadataName}, + StartKey: start, + }) + require.NoError(t, err) + + results = append(results, resp.Resources...) + start = resp.NextKey + } + + // Check that only server and desktop resources contain the expected logins + for _, resource := range results { + if resource.GetNode() != nil || resource.GetWindowsDesktop() != nil { + require.Empty(t, cmp.Diff(resource.Logins, logins, cmpopts.SortSlices(func(a, b string) bool { + return strings.Compare(a, b) < 0 + }))) + continue + } + + require.Empty(t, resource.Logins) + } +} + // TestListUnifiedResources_KindsFilter will generate multiple resources // and filter for only one kind. func TestListUnifiedResources_KindsFilter(t *testing.T) { diff --git a/lib/client/api.go b/lib/client/api.go index 75916ff4f87fd..8fe6afbaeb69c 100644 --- a/lib/client/api.go +++ b/lib/client/api.go @@ -2409,13 +2409,13 @@ func (tc *TeleportClient) ListNodesWithFilters(ctx context.Context) ([]types.Ser var servers []types.Server for { - page, err := client.ListUnifiedResourcePage(ctx, clt.AuthClient, &req) + page, next, err := client.GetUnifiedResourcePage(ctx, clt.AuthClient, &req) if err != nil { return nil, trace.Wrap(err) } - for _, r := range page.Resources { - srv, ok := r.(types.Server) + for _, r := range page { + srv, ok := r.ResourceWithLabels.(types.Server) if !ok { log.Warnf("expected types.Server but received unexpected type %T", r) continue @@ -2424,7 +2424,7 @@ func (tc *TeleportClient) ListNodesWithFilters(ctx context.Context) ([]types.Ser servers = append(servers, srv) } - req.StartKey = page.NextKey + req.StartKey = next if req.StartKey == "" { break } diff --git a/lib/services/local/presence.go b/lib/services/local/presence.go index 00e76793a4cac..996750f69534d 100644 --- a/lib/services/local/presence.go +++ b/lib/services/local/presence.go @@ -1765,6 +1765,9 @@ type FakePaginateParams struct { Kinds []string // NeedTotalCount indicates whether or not the caller also wants the total number of resources after filtering. NeedTotalCount bool + // EnrichResourceFn if provided allows the resource to be enriched with additional + // information (logins, db names, etc.) before being added to the response. + EnrichResourceFn func(types.ResourceWithLabels) (types.ResourceWithLabels, error) } // GetWindowsDesktopFilter retrieves the WindowsDesktopFilter from params @@ -1819,6 +1822,12 @@ func FakePaginate(resources []types.ResourceWithLabels, req FakePaginateParams) continue } + if req.EnrichResourceFn != nil { + if enriched, err := req.EnrichResourceFn(resource); err == nil { + resource = enriched + } + } + filtered = append(filtered, resource) } diff --git a/lib/services/unified_resource.go b/lib/services/unified_resource.go index 5f75645761900..c5bda1f4b4ba5 100644 --- a/lib/services/unified_resource.go +++ b/lib/services/unified_resource.go @@ -737,12 +737,20 @@ const ( // MakePaginatedResources converts a list of resources into a list of paginated proto representations. func MakePaginatedResources(requestType string, resources []types.ResourceWithLabels) ([]*proto.PaginatedResource, error) { paginatedResources := make([]*proto.PaginatedResource, 0, len(resources)) - for _, resource := range resources { + for _, r := range resources { var protoResource *proto.PaginatedResource resourceKind := requestType if requestType == types.KindUnifiedResource { - resourceKind = resource.GetKind() + resourceKind = r.GetKind() + } + + var logins []string + resource := r + if enriched, ok := r.(*types.EnrichedResource); ok { + resource = enriched.ResourceWithLabels + logins = enriched.Logins } + switch resourceKind { case types.KindDatabaseServer: database, ok := resource.(*types.DatabaseServerV3) @@ -771,7 +779,7 @@ func MakePaginatedResources(requestType string, resources []types.ResourceWithLa return nil, trace.BadParameter("%s has invalid type %T", resourceKind, resource) } - protoResource = &proto.PaginatedResource{Resource: &proto.PaginatedResource_Node{Node: srv}} + protoResource = &proto.PaginatedResource{Resource: &proto.PaginatedResource_Node{Node: srv}, Logins: logins} case types.KindKubeServer: srv, ok := resource.(*types.KubernetesServerV3) if !ok { @@ -785,7 +793,7 @@ func MakePaginatedResources(requestType string, resources []types.ResourceWithLa return nil, trace.BadParameter("%s has invalid type %T", resourceKind, resource) } - protoResource = &proto.PaginatedResource{Resource: &proto.PaginatedResource_WindowsDesktop{WindowsDesktop: desktop}} + protoResource = &proto.PaginatedResource{Resource: &proto.PaginatedResource_WindowsDesktop{WindowsDesktop: desktop}, Logins: logins} case types.KindWindowsDesktopService: desktopService, ok := resource.(*types.WindowsDesktopServiceV3) if !ok { diff --git a/lib/web/apiserver.go b/lib/web/apiserver.go index e615bcfb179f6..398c71f89e83d 100644 --- a/lib/web/apiserver.go +++ b/lib/web/apiserver.go @@ -92,6 +92,7 @@ import ( "github.com/gravitational/teleport/lib/secret" "github.com/gravitational/teleport/lib/services" "github.com/gravitational/teleport/lib/session" + "github.com/gravitational/teleport/lib/tlsca" "github.com/gravitational/teleport/lib/utils" "github.com/gravitational/teleport/lib/web/app" websession "github.com/gravitational/teleport/lib/web/session" @@ -2650,9 +2651,67 @@ func makeUnifiedResourceRequest(r *http.Request) (*proto.ListUnifiedResourcesReq PredicateExpression: values.Get("query"), SearchKeywords: client.ParseSearchKeywords(values.Get("search"), ' '), UseSearchAsRoles: values.Get("searchAsRoles") == "yes", + IncludeLogins: true, }, nil } +type loginGetter interface { + GetAllowedLoginsForResource(resource services.AccessCheckable) ([]string, error) +} + +// calculateSSHLogins returns the subset of the allowedLogins that exist in +// the principals of the identity. This is required because SSH authorization +// only allows using a login that exists in the certificates valid principals. +// When connecting to servers in a leaf cluster, the root certificate is used, +// so we need to ensure that we only present the allowed logins that would +// result in a successful connection, if any exists. +func calculateSSHLogins(identity *tlsca.Identity, loginGetter loginGetter, r types.ResourceWithLabels, allowedLogins []string) ([]string, error) { + // TODO(tross) DELETE IN V17.0.0 + // This is here for backward compatibility in case the auth server + // does not support enriched resources yet. + if len(allowedLogins) == 0 { + logins, err := loginGetter.GetAllowedLoginsForResource(r) + if err != nil { + return nil, trace.Wrap(err) + } + slices.Sort(logins) + return logins, nil + } + + localLogins := identity.Principals + + allowed := make(map[string]struct{}) + for _, login := range allowedLogins { + allowed[login] = struct{}{} + } + + var logins []string + for _, local := range localLogins { + if _, ok := allowed[local]; ok { + logins = append(logins, local) + } + } + + slices.Sort(logins) + return logins, nil +} + +// calculateDesktopLogins determines the desktop logins allowed for the provided resource. +// If no logins are provided, then the checker is interrogated to determine which logins +// are allowed. +// +// TODO(tross) DELETE IN V17.0.0 +// This is here for backward compatibility if the auth server doesn't yet support enriching +// resources with login information. +func calculateDesktopLogins(loginGetter loginGetter, r types.ResourceWithLabels, allowedLogins []string) ([]string, error) { + if len(allowedLogins) > 0 { + return allowedLogins, nil + } + + logins, err := loginGetter.GetAllowedLoginsForResource(r) + return logins, trace.Wrap(err) +} + // clusterUnifiedResourcesGet returns a list of resources for a given cluster site. This includes all resources available to be displayed in the web ui // such as Nodes, Apps, Desktops, etc etc func (h *Handler) clusterUnifiedResourcesGet(w http.ResponseWriter, request *http.Request, p httprouter.Params, sctx *SessionContext, site reversetunnelclient.RemoteSite) (interface{}, error) { @@ -2671,7 +2730,7 @@ func (h *Handler) clusterUnifiedResourcesGet(w http.ResponseWriter, request *htt return nil, trace.Wrap(err) } - page, err := apiclient.ListUnifiedResourcePage(request.Context(), clt, req) + page, next, err := apiclient.GetUnifiedResourcePage(request.Context(), clt, req) if err != nil { return nil, trace.Wrap(err) } @@ -2714,15 +2773,16 @@ func (h *Handler) clusterUnifiedResourcesGet(w http.ResponseWriter, request *htt var dbNames, dbUsers []string hasFetchedDBUsersAndNames := false - unifiedResources := make([]any, 0, len(page.Resources)) - for _, resource := range page.Resources { - switch r := resource.(type) { + unifiedResources := make([]any, 0, len(page)) + for _, enriched := range page { + switch r := enriched.ResourceWithLabels.(type) { case types.Server: - server, err := ui.MakeServer(site.GetName(), r, accessChecker) + logins, err := calculateSSHLogins(identity, accessChecker, r, enriched.Logins) if err != nil { return nil, trace.Wrap(err) } - unifiedResources = append(unifiedResources, server) + + unifiedResources = append(unifiedResources, ui.MakeServer(site.GetName(), r, logins)) case types.DatabaseServer: if !hasFetchedDBUsersAndNames { dbNames, dbUsers, err = getDatabaseUsersAndNames(accessChecker) @@ -2764,11 +2824,12 @@ func (h *Handler) clusterUnifiedResourcesGet(w http.ResponseWriter, request *htt unifiedResources = append(unifiedResources, app) } case types.WindowsDesktop: - desktop, err := ui.MakeDesktop(r, accessChecker) + logins, err := calculateDesktopLogins(accessChecker, r, enriched.Logins) if err != nil { return nil, trace.Wrap(err) } - unifiedResources = append(unifiedResources, desktop) + + unifiedResources = append(unifiedResources, ui.MakeDesktop(r, logins)) case types.KubeCluster: kube := ui.MakeKubeCluster(r, accessChecker) unifiedResources = append(unifiedResources, kube) @@ -2776,14 +2837,13 @@ func (h *Handler) clusterUnifiedResourcesGet(w http.ResponseWriter, request *htt kube := ui.MakeKubeCluster(r.GetCluster(), accessChecker) unifiedResources = append(unifiedResources, kube) default: - return nil, trace.Errorf("UI Resource has unknown type: %T", resource) + return nil, trace.Errorf("UI Resource has unknown type: %T", enriched) } } resp := listResourcesGetResponse{ - Items: unifiedResources, - StartKey: page.NextKey, - TotalCount: page.Total, + Items: unifiedResources, + StartKey: next, } return resp, nil @@ -2802,22 +2862,38 @@ func (h *Handler) clusterNodesGet(w http.ResponseWriter, r *http.Request, p http if err != nil { return nil, trace.Wrap(err) } + req.IncludeLogins = true - page, err := apiclient.GetResourcePage[types.Server](r.Context(), clt, req) + page, err := apiclient.GetEnrichedResourcePage(r.Context(), clt, req) if err != nil { return nil, trace.Wrap(err) } - accessChecker, err := sctx.GetUserAccessChecker() + identity, err := sctx.GetIdentity() if err != nil { return nil, trace.Wrap(err) } - uiServers, err := ui.MakeServers(site.GetName(), page.Resources, accessChecker) + accessChecker, err := sctx.GetUserAccessChecker() if err != nil { return nil, trace.Wrap(err) } + uiServers := make([]ui.Server, 0, len(page.Resources)) + for _, resource := range page.Resources { + server, ok := resource.ResourceWithLabels.(types.Server) + if !ok { + continue + } + + logins, err := calculateSSHLogins(identity, accessChecker, server, resource.Logins) + if err != nil { + return nil, trace.Wrap(err) + } + + uiServers = append(uiServers, ui.MakeServer(site.GetName(), server, logins)) + } + return listResourcesGetResponse{ Items: uiServers, StartKey: page.NextKey, diff --git a/lib/web/apiserver_test.go b/lib/web/apiserver_test.go index e1ad6dc13ac60..2545fbcbad5fe 100644 --- a/lib/web/apiserver_test.go +++ b/lib/web/apiserver_test.go @@ -9752,3 +9752,129 @@ func TestGithubConnector(t *testing.T) { assert.Empty(t, item) assert.Equal(t, http.StatusOK, resp.Code(), "unexpected status code getting connectors") } + +func TestCalculateSSHLogins(t *testing.T) { + cases := []struct { + name string + allowedLogins []string + grantedPrincipals []string + expectedLogins []string + loginGetter loginGetterFunc + }{ + { + name: "no matching logins", + allowedLogins: []string{"llama"}, + grantedPrincipals: []string{"fish"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return nil, nil + }, + }, + { + name: "no matching logins ignores fallback", + allowedLogins: []string{"llama"}, + grantedPrincipals: []string{"fish"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return []string{"apple", "banana"}, nil + }, + }, + { + name: "identical logins", + allowedLogins: []string{"llama", "shark", "goose"}, + grantedPrincipals: []string{"shark", "goose", "llama"}, + expectedLogins: []string{"goose", "shark", "llama"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return []string{"apple", "banana"}, nil + }, + }, + { + name: "subset of logins", + allowedLogins: []string{"llama"}, + grantedPrincipals: []string{"shark", "goose", "llama"}, + expectedLogins: []string{"llama"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return []string{"apple", "banana"}, nil + }, + }, + { + name: "no allowed logins", + grantedPrincipals: []string{"shark", "goose", "llama"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return nil, nil + }, + }, + { + name: "no allowed logins with fallback", + grantedPrincipals: []string{"shark", "goose", "llama"}, + expectedLogins: []string{"apple", "banana"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return []string{"apple", "banana"}, nil + }, + }, + { + name: "no granted logins", + allowedLogins: []string{"shark", "goose", "llama"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return nil, nil + }, + }, + } + + for _, test := range cases { + t.Run(test.name, func(t *testing.T) { + identity := &tlsca.Identity{Principals: test.grantedPrincipals} + + logins, err := calculateSSHLogins(identity, test.loginGetter, nil, test.allowedLogins) + require.NoError(t, err) + require.Empty(t, cmp.Diff(logins, test.expectedLogins, cmpopts.SortSlices(func(a, b string) bool { + return strings.Compare(a, b) < 0 + }))) + }) + } +} + +func TestCalculateDesktopLogins(t *testing.T) { + cases := []struct { + name string + allowedLogins []string + expectedLogins []string + loginGetter loginGetterFunc + }{ + { + name: "allowed logins", + allowedLogins: []string{"llama", "fish", "dog"}, + expectedLogins: []string{"llama", "fish", "dog"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return nil, nil + }, + }, + { + name: "no allowed logins", + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return nil, nil + }, + }, + { + name: "no allowed logins with fallback", + expectedLogins: []string{"apple", "banana"}, + loginGetter: func(resource services.AccessCheckable) ([]string, error) { + return []string{"apple", "banana"}, nil + }, + }, + } + + for _, test := range cases { + t.Run(test.name, func(t *testing.T) { + logins, err := calculateDesktopLogins(test.loginGetter, nil, test.allowedLogins) + require.NoError(t, err) + require.Empty(t, cmp.Diff(logins, test.expectedLogins, cmpopts.SortSlices(func(a, b string) bool { + return strings.Compare(a, b) < 0 + }))) + }) + } +} + +type loginGetterFunc func(resource services.AccessCheckable) ([]string, error) + +func (f loginGetterFunc) GetAllowedLoginsForResource(resource services.AccessCheckable) ([]string, error) { + return f(resource) +} diff --git a/lib/web/integrations_awsoidc.go b/lib/web/integrations_awsoidc.go index 142e80dce01d4..4ebcbdd78bf28 100644 --- a/lib/web/integrations_awsoidc.go +++ b/lib/web/integrations_awsoidc.go @@ -476,6 +476,11 @@ func (h *Handler) awsOIDCListEC2(w http.ResponseWriter, r *http.Request, p httpr return nil, trace.Wrap(err) } + identity, err := sctx.GetIdentity() + if err != nil { + return nil, trace.Wrap(err) + } + accessChecker, err := sctx.GetUserAccessChecker() if err != nil { return nil, trace.Wrap(err) @@ -483,11 +488,12 @@ func (h *Handler) awsOIDCListEC2(w http.ResponseWriter, r *http.Request, p httpr servers := make([]ui.Server, 0, len(listResp.Servers)) for _, s := range listResp.Servers { - serverUI, err := ui.MakeServer(h.auth.clusterName, s, accessChecker) + logins, err := calculateSSHLogins(identity, accessChecker, s, nil) if err != nil { return nil, trace.Wrap(err) } - servers = append(servers, serverUI) + + servers = append(servers, ui.MakeServer(h.auth.clusterName, s, logins)) } return ui.AWSOIDCListEC2Response{ diff --git a/lib/web/servers.go b/lib/web/servers.go index 1bea139e44925..1543c5a96de34 100644 --- a/lib/web/servers.go +++ b/lib/web/servers.go @@ -187,7 +187,7 @@ func (h *Handler) clusterDesktopsGet(w http.ResponseWriter, r *http.Request, p h return nil, trace.Wrap(err) } - page, err := client.GetResourcePage[types.WindowsDesktop](r.Context(), clt, req) + page, err := client.GetEnrichedResourcePage(r.Context(), clt, req) if err != nil { return nil, trace.Wrap(err) } @@ -197,9 +197,19 @@ func (h *Handler) clusterDesktopsGet(w http.ResponseWriter, r *http.Request, p h return nil, trace.Wrap(err) } - uiDesktops, err := ui.MakeDesktops(page.Resources, accessChecker) - if err != nil { - return nil, trace.Wrap(err) + uiDesktops := make([]ui.Desktop, 0, len(page.Resources)) + for _, r := range page.Resources { + desktop, ok := r.ResourceWithLabels.(types.WindowsDesktop) + if !ok { + continue + } + + logins, err := calculateDesktopLogins(accessChecker, desktop, r.Logins) + if err != nil { + return nil, trace.Wrap(err) + } + + uiDesktops = append(uiDesktops, ui.MakeDesktop(desktop, logins)) } return listResourcesGetResponse{ @@ -244,8 +254,7 @@ func (h *Handler) getDesktopHandle(w http.ResponseWriter, r *http.Request, p htt desktopName := p.ByName("desktopName") - windowsDesktops, err := clt.GetWindowsDesktops(r.Context(), - types.WindowsDesktopFilter{Name: desktopName}) + windowsDesktops, err := clt.GetWindowsDesktops(r.Context(), types.WindowsDesktopFilter{Name: desktopName}) if err != nil { return nil, trace.Wrap(err) } @@ -261,12 +270,14 @@ func (h *Handler) getDesktopHandle(w http.ResponseWriter, r *http.Request, p htt // windowsDesktops may contain the same desktop multiple times // if multiple Windows Desktop Services are in use. We only need // to see the desktop once in the UI, so just take the first one. - uiDesktop, err := ui.MakeDesktop(windowsDesktops[0], accessChecker) + desktop := windowsDesktops[0] + + logins, err := accessChecker.GetAllowedLoginsForResource(desktop) if err != nil { return nil, trace.Wrap(err) } - return uiDesktop, nil + return ui.MakeDesktop(desktop, logins), nil } // desktopIsActive checks if a desktop has an active session and returns a desktopIsActive. @@ -429,10 +440,10 @@ func (h *Handler) handleNodeCreate(w http.ResponseWriter, r *http.Request, p htt return nil, trace.Wrap(err) } - uiServer, err := ui.MakeServer(site.GetName(), server, accessChecker) + logins, err := accessChecker.GetAllowedLoginsForResource(server) if err != nil { return nil, trace.Wrap(err) } - return uiServer, nil + return ui.MakeServer(site.GetName(), server, logins), nil } diff --git a/lib/web/ui/server.go b/lib/web/ui/server.go index 6f710ff3b7472..6037c1540e6ae 100644 --- a/lib/web/ui/server.go +++ b/lib/web/ui/server.go @@ -22,8 +22,6 @@ import ( "strconv" "strings" - "github.com/gravitational/trace" - "github.com/gravitational/teleport/api/constants" integrationv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/integration/v1" "github.com/gravitational/teleport/api/types" @@ -104,16 +102,11 @@ func (s sortedLabels) Swap(i, j int) { } // MakeServer creates a server object for the web ui -func MakeServer(clusterName string, server types.Server, accessChecker services.AccessChecker) (Server, error) { +func MakeServer(clusterName string, server types.Server, logins []string) Server { serverLabels := server.GetStaticLabels() serverCmdLabels := server.GetCmdLabels() uiLabels := makeLabels(serverLabels, transformCommandLabels(serverCmdLabels)) - serverLogins, err := accessChecker.GetAllowedLoginsForResource(server) - if err != nil { - return Server{}, trace.Wrap(err) - } - uiServer := Server{ Kind: server.GetKind(), ClusterName: clusterName, @@ -123,7 +116,7 @@ func MakeServer(clusterName string, server types.Server, accessChecker services. Addr: server.GetAddr(), Tunnel: server.GetUseTunnel(), SubKind: server.GetSubKind(), - SSHLogins: serverLogins, + SSHLogins: logins, } if server.GetSubKind() == types.SubKindOpenSSHEICENode { @@ -138,21 +131,7 @@ func MakeServer(clusterName string, server types.Server, accessChecker services. } } - return uiServer, nil -} - -// MakeServers creates server objects for webapp -func MakeServers(clusterName string, servers []types.Server, accessChecker services.AccessChecker) ([]Server, error) { - uiServers := []Server{} - for _, s := range servers { - server, err := MakeServer(clusterName, s, accessChecker) - if err != nil { - return nil, trace.Wrap(err, "making server for ui") - } - uiServers = append(uiServers, server) - } - - return uiServers, nil + return uiServer } // EKSCluster represents and EKS cluster, analog of awsoidc.EKSCluster, but used by web ui. @@ -455,7 +434,7 @@ type Desktop struct { } // MakeDesktop converts a desktop from its API form to a type the UI can display. -func MakeDesktop(windowsDesktop types.WindowsDesktop, accessChecker services.AccessChecker) (Desktop, error) { +func MakeDesktop(windowsDesktop types.WindowsDesktop, logins []string) Desktop { // stripRdpPort strips the default rdp port from an ip address since it is unimportant to display stripRdpPort := func(addr string) string { splitAddr := strings.Split(addr, ":") @@ -467,11 +446,6 @@ func MakeDesktop(windowsDesktop types.WindowsDesktop, accessChecker services.Acc uiLabels := makeLabels(windowsDesktop.GetAllLabels()) - logins, err := accessChecker.GetAllowedLoginsForResource(windowsDesktop) - if err != nil { - return Desktop{}, trace.Wrap(err) - } - return Desktop{ Kind: windowsDesktop.GetKind(), OS: constants.WindowsOS, @@ -480,22 +454,7 @@ func MakeDesktop(windowsDesktop types.WindowsDesktop, accessChecker services.Acc Labels: uiLabels, HostID: windowsDesktop.GetHostID(), Logins: logins, - }, nil -} - -// MakeDesktops converts desktops from their API form to a type the UI can display. -func MakeDesktops(windowsDesktops []types.WindowsDesktop, accessChecker services.AccessChecker) ([]Desktop, error) { - uiDesktops := make([]Desktop, 0, len(windowsDesktops)) - - for _, windowsDesktop := range windowsDesktops { - uiDesktop, err := MakeDesktop(windowsDesktop, accessChecker) - if err != nil { - return nil, trace.Wrap(err) - } - uiDesktops = append(uiDesktops, uiDesktop) } - - return uiDesktops, nil } // DesktopService describes a desktop service to pass to the ui. @@ -510,7 +469,7 @@ type DesktopService struct { Labels []Label `json:"labels"` } -// MakeDesktop converts a desktop from its API form to a type the UI can display. +// MakeDesktopService converts a desktop from its API form to a type the UI can display. func MakeDesktopService(desktopService types.WindowsDesktopService) DesktopService { uiLabels := makeLabels(desktopService.GetAllLabels()) diff --git a/lib/web/ui/server_test.go b/lib/web/ui/server_test.go index 5982bb8597953..97e47f3e668f7 100644 --- a/lib/web/ui/server_test.go +++ b/lib/web/ui/server_test.go @@ -21,6 +21,7 @@ package ui import ( "testing" + "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" apidefaults "github.com/gravitational/teleport/api/defaults" @@ -379,7 +380,6 @@ func TestMakeServersHiddenLabels(t *testing.T) { clusterName string servers []types.Server expectedLabels [][]Label - roleSet services.RoleSet } testCases := []testCase{ @@ -405,11 +405,9 @@ func TestMakeServersHiddenLabels(t *testing.T) { for _, tc := range testCases { t.Run(tc.name, func(t *testing.T) { - accessChecker := services.NewAccessCheckerWithRoleSet(&services.AccessInfo{}, "clustername", tc.roleSet) - servers, err := MakeServers(tc.clusterName, tc.servers, accessChecker) - require.NoError(t, err) - for i, server := range servers { - require.Equal(t, tc.expectedLabels[i], server.Labels) + for i, srv := range tc.servers { + server := MakeServer(tc.clusterName, srv, nil) + assert.Equal(t, tc.expectedLabels[i], server.Labels) } }) } @@ -453,9 +451,7 @@ func TestMakeDesktopHiddenLabel(t *testing.T) { ) require.NoError(t, err) - accessChecker := services.NewAccessCheckerWithRoleSet(&services.AccessInfo{}, "clustername", services.RoleSet{}) - desktop, err := MakeDesktop(windowsDesktop, accessChecker) - require.NoError(t, err) + desktop := MakeDesktop(windowsDesktop, nil) labels := []Label{ { Name: "label3", @@ -495,7 +491,6 @@ func TestSortedLabels(t *testing.T) { clusterName string servers []types.Server expectedLabels [][]Label - roleSet services.RoleSet } testCases := []testCase{ @@ -587,11 +582,9 @@ func TestSortedLabels(t *testing.T) { for _, tc := range testCases { t.Run(tc.name, func(t *testing.T) { - accessChecker := services.NewAccessCheckerWithRoleSet(&services.AccessInfo{}, "clustername", tc.roleSet) - servers, err := MakeServers(tc.clusterName, tc.servers, accessChecker) - require.NoError(t, err) - for i, server := range servers { - require.Equal(t, tc.expectedLabels[i], server.Labels) + for i, srv := range tc.servers { + server := MakeServer(tc.clusterName, srv, nil) + assert.Equal(t, tc.expectedLabels[i], server.Labels) } }) } diff --git a/tool/tctl/common/resource_command.go b/tool/tctl/common/resource_command.go index 118d97aadaef0..6aeff388a4826 100644 --- a/tool/tctl/common/resource_command.go +++ b/tool/tctl/common/resource_command.go @@ -1908,13 +1908,13 @@ func (rc *ResourceCommand) getCollection(ctx context.Context, client *auth.Clien var collection serverCollection for { - page, err := apiclient.ListUnifiedResourcePage(ctx, client, &req) + page, next, err := apiclient.GetUnifiedResourcePage(ctx, client, &req) if err != nil { return nil, trace.Wrap(err) } - for _, r := range page.Resources { - srv, ok := r.(types.Server) + for _, r := range page { + srv, ok := r.ResourceWithLabels.(types.Server) if !ok { log.Warnf("expected types.Server but received unexpected type %T", r) continue @@ -1931,7 +1931,7 @@ func (rc *ResourceCommand) getCollection(ctx context.Context, client *auth.Clien } } - req.StartKey = page.NextKey + req.StartKey = next if req.StartKey == "" { break }