Rename some rpc commands to something more generic.

StartBtcdRpc becomes StartConsensusRpc.

This is useful for forks such as decred or if someone were to write
another compatible server.

Bump up the api version as this is a change.
This commit is contained in:
John C. Vernaleo 2016-03-03 12:42:54 -05:00
parent 5140086f6e
commit 82e743754f
4 changed files with 190 additions and 190 deletions

View file

@ -46,7 +46,7 @@ service WalletLoaderService {
rpc CreateWallet (CreateWalletRequest) returns (CreateWalletResponse);
rpc OpenWallet (OpenWalletRequest) returns (OpenWalletResponse);
rpc CloseWallet (CloseWalletRequest) returns (CloseWalletResponse);
rpc StartBtcdRpc (StartBtcdRpcRequest) returns (StartBtcdRpcResponse);
rpc StartConsensusRpc (StartConsensusRpcRequest) returns (StartConsensusRpcResponse);
}
message TransactionDetails {
@ -313,10 +313,10 @@ message WalletExistsResponse {
bool exists = 1;
}
message StartBtcdRpcRequest {
message StartConsensusRpcRequest {
string network_address = 1;
string username = 2;
bytes password = 3;
bytes certificate = 4;
}
message StartBtcdRpcResponse {}
message StartConsensusRpcResponse {}

View file

@ -1,6 +1,6 @@
# RPC API Specification
Version: 0.3.0
Version: 1.0.0
**Note:** This document assumes the reader is familiar with gRPC concepts.
Refer to the [gRPC Concepts documentation](http://www.grpc.io/docs/guides/concepts.html)
@ -87,7 +87,7 @@ dependencies and is always running.
- [`CreateWallet`](#createwallet)
- [`OpenWallet`](#openwallet)
- [`CloseWallet`](#closewallet)
- [`StartBtcdRpc`](#startbtcdrpc)
- [`StartConsensusRpc`](#startconsensusrpc)
**Shared messages:**
@ -208,13 +208,13 @@ unusable.
___
#### `StartBtcdRpc`
#### `StartConsensusRpc`
The `StartBtcdRpc` method is used to provide clients the ability to dynamically
The `StartConsensusRpc` method is used to provide clients the ability to dynamically
start the btcd RPC client. This RPC client is used for wallet syncing and
publishing transactions to the Bitcoin network.
**Request:** `StartBtcdRpcRequest`
**Request:** `StartConsensusRpcRequest`
- `string network_address`: The host/IP and optional port of the RPC server to
connect to. IP addresses may be IPv4 or IPv6. If the port is missing, a
@ -230,7 +230,7 @@ publishing transactions to the Bitcoin network.
field has zero length and the network address describes a loopback connection
(`localhost`, `127.0.0.1`, or `::1`) TLS will be disabled.
**Response:** `StartBtcdRpcResponse`
**Response:** `StartConsensusRpcResponse`
**Expected errors:**

View file

@ -43,9 +43,9 @@ import (
// Public API version constants
const (
semverString = "0.3.0"
semverMajor = 0
semverMinor = 3
semverString = "1.0.0"
semverMajor = 1
semverMinor = 0
semverPatch = 0
)
@ -817,8 +817,8 @@ func (s *loaderServer) CloseWallet(ctx context.Context, req *pb.CloseWalletReque
return &pb.CloseWalletResponse{}, nil
}
func (s *loaderServer) StartBtcdRpc(ctx context.Context, req *pb.StartBtcdRpcRequest) (
*pb.StartBtcdRpcResponse, error) {
func (s *loaderServer) StartConsensusRpc(ctx context.Context, req *pb.StartConsensusRpcRequest) (
*pb.StartConsensusRpcResponse, error) {
defer zero.Bytes(req.Password)
@ -866,5 +866,5 @@ func (s *loaderServer) StartBtcdRpc(ctx context.Context, req *pb.StartBtcdRpcReq
wallet.SynchronizeRPC(rpcClient)
}
return &pb.StartBtcdRpcResponse{}, nil
return &pb.StartConsensusRpcResponse{}, nil
}

View file

@ -56,8 +56,8 @@ It has these top-level messages:
CloseWalletResponse
WalletExistsRequest
WalletExistsResponse
StartBtcdRpcRequest
StartBtcdRpcResponse
StartConsensusRpcRequest
StartConsensusRpcResponse
*/
package walletrpc
@ -761,25 +761,25 @@ func (m *WalletExistsResponse) String() string { return proto.Compact
func (*WalletExistsResponse) ProtoMessage() {}
func (*WalletExistsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{46} }
type StartBtcdRpcRequest struct {
type StartConsensusRpcRequest struct {
NetworkAddress string `protobuf:"bytes,1,opt,name=network_address,json=networkAddress" json:"network_address,omitempty"`
Username string `protobuf:"bytes,2,opt,name=username" json:"username,omitempty"`
Password []byte `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
Certificate []byte `protobuf:"bytes,4,opt,name=certificate,proto3" json:"certificate,omitempty"`
}
func (m *StartBtcdRpcRequest) Reset() { *m = StartBtcdRpcRequest{} }
func (m *StartBtcdRpcRequest) String() string { return proto.CompactTextString(m) }
func (*StartBtcdRpcRequest) ProtoMessage() {}
func (*StartBtcdRpcRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{47} }
func (m *StartConsensusRpcRequest) Reset() { *m = StartConsensusRpcRequest{} }
func (m *StartConsensusRpcRequest) String() string { return proto.CompactTextString(m) }
func (*StartConsensusRpcRequest) ProtoMessage() {}
func (*StartConsensusRpcRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{47} }
type StartBtcdRpcResponse struct {
type StartConsensusRpcResponse struct {
}
func (m *StartBtcdRpcResponse) Reset() { *m = StartBtcdRpcResponse{} }
func (m *StartBtcdRpcResponse) String() string { return proto.CompactTextString(m) }
func (*StartBtcdRpcResponse) ProtoMessage() {}
func (*StartBtcdRpcResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{48} }
func (m *StartConsensusRpcResponse) Reset() { *m = StartConsensusRpcResponse{} }
func (m *StartConsensusRpcResponse) String() string { return proto.CompactTextString(m) }
func (*StartConsensusRpcResponse) ProtoMessage() {}
func (*StartConsensusRpcResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{48} }
func init() {
proto.RegisterType((*VersionRequest)(nil), "walletrpc.VersionRequest")
@ -834,8 +834,8 @@ func init() {
proto.RegisterType((*CloseWalletResponse)(nil), "walletrpc.CloseWalletResponse")
proto.RegisterType((*WalletExistsRequest)(nil), "walletrpc.WalletExistsRequest")
proto.RegisterType((*WalletExistsResponse)(nil), "walletrpc.WalletExistsResponse")
proto.RegisterType((*StartBtcdRpcRequest)(nil), "walletrpc.StartBtcdRpcRequest")
proto.RegisterType((*StartBtcdRpcResponse)(nil), "walletrpc.StartBtcdRpcResponse")
proto.RegisterType((*StartConsensusRpcRequest)(nil), "walletrpc.StartConsensusRpcRequest")
proto.RegisterType((*StartConsensusRpcResponse)(nil), "walletrpc.StartConsensusRpcResponse")
proto.RegisterEnum("walletrpc.NextAddressRequest_Kind", NextAddressRequest_Kind_name, NextAddressRequest_Kind_value)
proto.RegisterEnum("walletrpc.ChangePassphraseRequest_Key", ChangePassphraseRequest_Key_name, ChangePassphraseRequest_Key_value)
}
@ -1503,7 +1503,7 @@ type WalletLoaderServiceClient interface {
CreateWallet(ctx context.Context, in *CreateWalletRequest, opts ...grpc.CallOption) (*CreateWalletResponse, error)
OpenWallet(ctx context.Context, in *OpenWalletRequest, opts ...grpc.CallOption) (*OpenWalletResponse, error)
CloseWallet(ctx context.Context, in *CloseWalletRequest, opts ...grpc.CallOption) (*CloseWalletResponse, error)
StartBtcdRpc(ctx context.Context, in *StartBtcdRpcRequest, opts ...grpc.CallOption) (*StartBtcdRpcResponse, error)
StartConsensusRpc(ctx context.Context, in *StartConsensusRpcRequest, opts ...grpc.CallOption) (*StartConsensusRpcResponse, error)
}
type walletLoaderServiceClient struct {
@ -1550,9 +1550,9 @@ func (c *walletLoaderServiceClient) CloseWallet(ctx context.Context, in *CloseWa
return out, nil
}
func (c *walletLoaderServiceClient) StartBtcdRpc(ctx context.Context, in *StartBtcdRpcRequest, opts ...grpc.CallOption) (*StartBtcdRpcResponse, error) {
out := new(StartBtcdRpcResponse)
err := grpc.Invoke(ctx, "/walletrpc.WalletLoaderService/StartBtcdRpc", in, out, c.cc, opts...)
func (c *walletLoaderServiceClient) StartConsensusRpc(ctx context.Context, in *StartConsensusRpcRequest, opts ...grpc.CallOption) (*StartConsensusRpcResponse, error) {
out := new(StartConsensusRpcResponse)
err := grpc.Invoke(ctx, "/walletrpc.WalletLoaderService/StartConsensusRpc", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
@ -1566,7 +1566,7 @@ type WalletLoaderServiceServer interface {
CreateWallet(context.Context, *CreateWalletRequest) (*CreateWalletResponse, error)
OpenWallet(context.Context, *OpenWalletRequest) (*OpenWalletResponse, error)
CloseWallet(context.Context, *CloseWalletRequest) (*CloseWalletResponse, error)
StartBtcdRpc(context.Context, *StartBtcdRpcRequest) (*StartBtcdRpcResponse, error)
StartConsensusRpc(context.Context, *StartConsensusRpcRequest) (*StartConsensusRpcResponse, error)
}
func RegisterWalletLoaderServiceServer(s *grpc.Server, srv WalletLoaderServiceServer) {
@ -1621,12 +1621,12 @@ func _WalletLoaderService_CloseWallet_Handler(srv interface{}, ctx context.Conte
return out, nil
}
func _WalletLoaderService_StartBtcdRpc_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error) (interface{}, error) {
in := new(StartBtcdRpcRequest)
func _WalletLoaderService_StartConsensusRpc_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error) (interface{}, error) {
in := new(StartConsensusRpcRequest)
if err := dec(in); err != nil {
return nil, err
}
out, err := srv.(WalletLoaderServiceServer).StartBtcdRpc(ctx, in)
out, err := srv.(WalletLoaderServiceServer).StartConsensusRpc(ctx, in)
if err != nil {
return nil, err
}
@ -1654,164 +1654,164 @@ var _WalletLoaderService_serviceDesc = grpc.ServiceDesc{
Handler: _WalletLoaderService_CloseWallet_Handler,
},
{
MethodName: "StartBtcdRpc",
Handler: _WalletLoaderService_StartBtcdRpc_Handler,
MethodName: "StartConsensusRpc",
Handler: _WalletLoaderService_StartConsensusRpc_Handler,
},
},
Streams: []grpc.StreamDesc{},
}
var fileDescriptor0 = []byte{
// 2403 bytes of a gzipped FileDescriptorProto
// 2413 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x59, 0x5b, 0x73, 0xdc, 0x48,
0x15, 0x66, 0x2c, 0xdf, 0x72, 0xe6, 0xde, 0xbe, 0x4d, 0x94, 0x38, 0x17, 0x85, 0xcd, 0x66, 0x77,
0xc1, 0x04, 0x13, 0x60, 0x29, 0xb6, 0xc2, 0x26, 0x26, 0xcb, 0x0e, 0x09, 0xce, 0x94, 0x9c, 0x6c,
0x52, 0x05, 0x55, 0x53, 0xb2, 0xa6, 0x1d, 0x0b, 0xcf, 0x48, 0x13, 0x49, 0x13, 0x27, 0x3c, 0x51,
0x54, 0xf1, 0xc8, 0x0b, 0xf0, 0xb0, 0x05, 0xc5, 0x03, 0xfc, 0x05, 0x5e, 0x78, 0xe5, 0x37, 0xf0,
0x08, 0xbf, 0x82, 0x5f, 0xc0, 0xe9, 0xdb, 0xa8, 0x5b, 0xd2, 0x8c, 0xed, 0x2d, 0xde, 0x46, 0x5f,
0x9f, 0x3e, 0x7d, 0xce, 0xe9, 0x73, 0xed, 0x81, 0x4b, 0xde, 0x38, 0xd8, 0x19, 0xc7, 0x51, 0x1a,
0x91, 0x4b, 0xa7, 0xde, 0x70, 0x48, 0xd3, 0x78, 0xec, 0x3b, 0x2d, 0x68, 0x7c, 0x41, 0xe3, 0x24,
0x88, 0x42, 0x97, 0xbe, 0x9e, 0xd0, 0x24, 0x75, 0xfe, 0x59, 0x81, 0xe6, 0x14, 0x4a, 0xc6, 0x51,
0x98, 0x50, 0xf2, 0x1e, 0x34, 0xde, 0x08, 0xa8, 0x9f, 0xa4, 0x71, 0x10, 0xbe, 0xea, 0x54, 0x6e,
0x54, 0xee, 0x5c, 0x72, 0xeb, 0x12, 0x3d, 0xe0, 0x20, 0x59, 0x87, 0xa5, 0x91, 0xf7, 0xcb, 0x28,
0xee, 0x2c, 0xe0, 0x6a, 0xdd, 0x15, 0x1f, 0x1c, 0x0d, 0x42, 0x44, 0x2d, 0x89, 0xb2, 0x0f, 0x86,
0x8e, 0xbd, 0xd4, 0x3f, 0xee, 0x2c, 0x0a, 0x94, 0x7f, 0x90, 0x6b, 0x00, 0xe3, 0x98, 0xc6, 0x74,
0x48, 0xbd, 0x84, 0x76, 0x96, 0xf8, 0x21, 0x1a, 0xc2, 0x04, 0x39, 0x9c, 0x04, 0xc3, 0x41, 0x7f,
0x44, 0x53, 0x6f, 0xe0, 0xa5, 0x5e, 0x67, 0x59, 0x08, 0xc2, 0xd1, 0x9f, 0x49, 0xd0, 0xf9, 0x8f,
0x05, 0xe4, 0x59, 0xec, 0x85, 0x89, 0xe7, 0xa7, 0x28, 0xde, 0x8f, 0x11, 0x0f, 0x86, 0x09, 0x21,
0xb0, 0x78, 0xec, 0x25, 0xc7, 0x5c, 0xf8, 0x9a, 0xcb, 0x7f, 0x93, 0x1b, 0x50, 0x4d, 0x33, 0x4a,
0x2e, 0x79, 0xcd, 0xd5, 0x21, 0xf2, 0x43, 0x58, 0x1e, 0xd0, 0xc3, 0x20, 0x4d, 0x50, 0x01, 0xeb,
0x4e, 0x75, 0xf7, 0xd6, 0xce, 0xd4, 0x7c, 0x3b, 0xc5, 0x43, 0x76, 0xba, 0xe1, 0x78, 0x92, 0xba,
0x72, 0x0b, 0xb9, 0x0f, 0x2b, 0xd1, 0x24, 0x45, 0x24, 0x41, 0x45, 0xd9, 0xee, 0xaf, 0xcf, 0xdf,
0xfd, 0x94, 0x13, 0xbb, 0x6a, 0x13, 0x69, 0x81, 0x75, 0x44, 0x85, 0x25, 0x2c, 0x97, 0xfd, 0x24,
0x57, 0xe1, 0x52, 0x1a, 0x8c, 0xf0, 0xa6, 0xbc, 0xd1, 0x98, 0x6b, 0x6f, 0xb9, 0x19, 0x60, 0xbf,
0x86, 0x25, 0x2e, 0x00, 0xb3, 0x6f, 0x10, 0x0e, 0xe8, 0x5b, 0xae, 0x2c, 0xda, 0x97, 0x7f, 0x90,
0x0f, 0xa0, 0x85, 0xd6, 0x7c, 0x13, 0x44, 0x93, 0xa4, 0xef, 0xf9, 0x7e, 0x34, 0x09, 0x53, 0x79,
0x59, 0x4d, 0x85, 0x3f, 0x10, 0x30, 0x79, 0x1f, 0x9a, 0x19, 0xe9, 0x88, 0x53, 0x5a, 0xfc, 0xb4,
0xc6, 0x94, 0x92, 0xa3, 0xf6, 0x18, 0x96, 0x85, 0xd4, 0xcc, 0xbe, 0x78, 0xb9, 0x94, 0xd3, 0xad,
0xba, 0xfc, 0x37, 0xe9, 0xc0, 0x8a, 0x3a, 0x48, 0xdc, 0xb4, 0xfa, 0x24, 0x36, 0xac, 0x06, 0x61,
0x4a, 0xe3, 0xd0, 0x1b, 0x72, 0xfd, 0x56, 0xdd, 0xe9, 0x37, 0x53, 0xd2, 0x1b, 0x0c, 0x62, 0x9a,
0x24, 0x34, 0x41, 0x25, 0x2d, 0xbc, 0xe2, 0x0c, 0x70, 0xfe, 0x5c, 0x81, 0xda, 0xc3, 0x61, 0xe4,
0x9f, 0xcc, 0xbb, 0xd8, 0x4d, 0x58, 0x3e, 0xa6, 0xc1, 0xab, 0x63, 0xa1, 0xe0, 0x92, 0x2b, 0xbf,
0x4c, 0xfb, 0x59, 0x39, 0xfb, 0x91, 0x07, 0x50, 0xd3, 0xee, 0x5e, 0x5d, 0xda, 0xf6, 0xdc, 0x4b,
0x73, 0x8d, 0x2d, 0xce, 0x53, 0x68, 0x48, 0x1b, 0x3e, 0xf4, 0x86, 0x5e, 0xe8, 0x1b, 0x36, 0xa8,
0x98, 0x36, 0xb8, 0x05, 0xf5, 0x34, 0x4a, 0xbd, 0x61, 0xff, 0x50, 0x90, 0x72, 0x59, 0x2d, 0x64,
0xc8, 0x40, 0xb9, 0xdd, 0xa9, 0x43, 0xb5, 0x87, 0xe1, 0xa5, 0x02, 0xb4, 0x01, 0x35, 0xf1, 0x29,
0x82, 0x93, 0x85, 0xf0, 0x3e, 0x4d, 0x4f, 0xa3, 0xf8, 0x44, 0x51, 0x7c, 0x0c, 0xcd, 0x29, 0x92,
0x45, 0x30, 0x93, 0xef, 0x0d, 0xed, 0x87, 0x62, 0x45, 0x4a, 0x52, 0x17, 0xa8, 0x24, 0x77, 0x7e,
0x00, 0xeb, 0x52, 0xf6, 0xfd, 0xc9, 0xe8, 0x90, 0xc6, 0x92, 0x23, 0xb9, 0x09, 0x35, 0x29, 0x72,
0x3f, 0xf4, 0x46, 0x54, 0x86, 0x7f, 0x55, 0x62, 0xfb, 0x08, 0x39, 0xf7, 0x61, 0x23, 0xb7, 0x55,
0x3f, 0x5a, 0xee, 0xe5, 0x2b, 0xd9, 0xd1, 0x1a, 0xb9, 0xd3, 0x86, 0xa6, 0xdc, 0x9f, 0x28, 0x3d,
0xfe, 0x61, 0x41, 0x2b, 0xc3, 0x24, 0xbb, 0x1f, 0xc1, 0xaa, 0xdc, 0x98, 0x20, 0xa3, 0x7c, 0x40,
0xe6, 0xc9, 0x15, 0xe0, 0x4e, 0x37, 0x91, 0x6f, 0x00, 0xf1, 0x27, 0x71, 0x4c, 0x51, 0x9e, 0x43,
0xe6, 0x44, 0x7d, 0xee, 0x3a, 0x22, 0xf0, 0x5b, 0x72, 0x85, 0x7b, 0xd7, 0xe7, 0xcc, 0x8d, 0xee,
0xc2, 0x7a, 0x8e, 0x5a, 0x38, 0x95, 0xc5, 0x9d, 0x8a, 0x18, 0xf4, 0x7c, 0xc5, 0xfe, 0xcd, 0x02,
0xac, 0xa8, 0x20, 0x3a, 0x9f, 0xee, 0x05, 0xf3, 0x2e, 0x14, 0xcc, 0x5b, 0xf4, 0x14, 0xab, 0xe8,
0x29, 0x4c, 0x35, 0xfa, 0x56, 0x84, 0x50, 0xff, 0x84, 0xbe, 0xeb, 0xeb, 0x71, 0xd7, 0x52, 0x2b,
0x8f, 0xe9, 0xbb, 0x3d, 0x2e, 0x1c, 0x52, 0xab, 0x80, 0xd3, 0xa8, 0x97, 0x04, 0xb5, 0x5a, 0x31,
0xa8, 0x47, 0xe3, 0x28, 0x4e, 0xe9, 0x40, 0xa3, 0x5e, 0x96, 0xd4, 0x72, 0x45, 0x51, 0x3b, 0x2f,
0x61, 0xdd, 0xa5, 0x4c, 0x17, 0x65, 0x7f, 0xe9, 0x48, 0xe7, 0x34, 0xc8, 0x65, 0x58, 0x0d, 0xe9,
0xa9, 0x6e, 0x8c, 0x15, 0xfc, 0xe6, 0x7e, 0xb6, 0x05, 0x1b, 0x39, 0xce, 0x32, 0x0e, 0x5e, 0x00,
0xd9, 0x47, 0x1d, 0x73, 0x07, 0xb2, 0x8a, 0xe2, 0x25, 0xc9, 0xf8, 0x38, 0x66, 0x15, 0x45, 0x24,
0x08, 0x0d, 0x39, 0x87, 0xe9, 0x9d, 0x4f, 0x60, 0xcd, 0x60, 0x7c, 0x31, 0xbf, 0xfe, 0x53, 0x45,
0xca, 0x25, 0xd2, 0x97, 0x92, 0x6b, 0x76, 0x4e, 0xf8, 0x1e, 0x2c, 0x9e, 0x60, 0xb6, 0xe6, 0x92,
0x34, 0x76, 0x1d, 0xcd, 0xb9, 0x8b, 0x6c, 0x76, 0x1e, 0x23, 0xa5, 0xcb, 0xe9, 0x9d, 0x5d, 0x58,
0x64, 0x5f, 0x98, 0xf9, 0x5b, 0x0f, 0xbb, 0xbd, 0xbb, 0x77, 0xef, 0xdd, 0xeb, 0x3f, 0x7a, 0xf9,
0xec, 0x91, 0xbb, 0xff, 0xe0, 0x49, 0xeb, 0x6b, 0x3a, 0xda, 0xdd, 0x97, 0x68, 0xc5, 0xf9, 0x96,
0x54, 0x4d, 0x31, 0x95, 0xaa, 0x31, 0xe1, 0x04, 0x24, 0x23, 0x5d, 0x7d, 0x3a, 0x7f, 0xa8, 0xc0,
0x56, 0x97, 0x5f, 0x76, 0x2f, 0x0e, 0xde, 0x78, 0x29, 0xc5, 0x1b, 0x3f, 0xaf, 0xa9, 0x35, 0x95,
0x17, 0x4c, 0x95, 0x6f, 0xb3, 0x5a, 0xc3, 0xd9, 0x71, 0xd7, 0x3a, 0x0d, 0x8e, 0xb8, 0x7b, 0x63,
0x5d, 0x1f, 0x4f, 0x4f, 0x79, 0x11, 0x1c, 0xb1, 0x9c, 0x8e, 0x52, 0xf8, 0x5e, 0xc8, 0x7d, 0x7a,
0xd5, 0x95, 0x5f, 0x8e, 0x0d, 0x9d, 0xa2, 0x50, 0xd2, 0x2d, 0x42, 0x68, 0xc8, 0xf0, 0xb8, 0xa0,
0x0f, 0x7e, 0x17, 0x36, 0x63, 0xdc, 0x11, 0xc4, 0xe8, 0xf0, 0x7e, 0x14, 0x1e, 0x05, 0xf1, 0xc8,
0x13, 0x45, 0x41, 0x14, 0x94, 0x0d, 0xb5, 0xba, 0xa7, 0x2f, 0xe2, 0x79, 0xcd, 0xe9, 0x79, 0xd2,
0x9c, 0x58, 0x8b, 0x79, 0x98, 0xf2, 0x73, 0x2c, 0x57, 0x7c, 0xb0, 0x42, 0x94, 0x8c, 0x69, 0x38,
0xf0, 0x0e, 0x87, 0x2a, 0xef, 0x67, 0x00, 0x2b, 0xbf, 0xc1, 0x08, 0x79, 0x4e, 0x62, 0xda, 0x8f,
0xe9, 0xa9, 0x17, 0x0f, 0x54, 0xf9, 0x55, 0xb0, 0xcb, 0x51, 0xe7, 0xcb, 0x05, 0xd8, 0xfc, 0x09,
0x4d, 0xb5, 0xb2, 0x34, 0xf5, 0xb1, 0x1d, 0x58, 0xc3, 0xaa, 0x16, 0xa7, 0x58, 0x2d, 0xf4, 0x54,
0x27, 0x6e, 0xa6, 0xad, 0x96, 0xb2, 0x5c, 0xb7, 0x0b, 0x1b, 0x79, 0xfa, 0xac, 0x82, 0xb6, 0xdd,
0x35, 0x73, 0x87, 0x28, 0xa7, 0x1f, 0x42, 0x1b, 0x45, 0xce, 0x9d, 0x60, 0xf1, 0x13, 0x9a, 0x62,
0x21, 0xe3, 0x8f, 0xf2, 0x98, 0xb4, 0x82, 0xfb, 0x22, 0x37, 0x67, 0x5b, 0xa7, 0x16, 0xbc, 0xef,
0xc3, 0x15, 0xec, 0x21, 0x82, 0xd1, 0x64, 0x84, 0x26, 0xf0, 0x59, 0x0a, 0x36, 0x6a, 0xf3, 0x12,
0xdf, 0x77, 0x59, 0x92, 0xb8, 0x9c, 0x42, 0x37, 0x83, 0xf3, 0x77, 0x74, 0xd6, 0x82, 0x69, 0xe4,
0x9d, 0x7c, 0x06, 0x84, 0xf5, 0x27, 0x03, 0x93, 0xa5, 0x28, 0x28, 0x5b, 0x5a, 0xcc, 0xe9, 0x7d,
0x86, 0xdb, 0xe6, 0x5b, 0x74, 0x7e, 0xa4, 0x07, 0xeb, 0x93, 0xb0, 0x84, 0xd3, 0xc2, 0x79, 0x1a,
0x87, 0x35, 0xb9, 0xd5, 0x90, 0x1a, 0x1b, 0xf0, 0xad, 0xbd, 0x63, 0x2f, 0x7c, 0x45, 0x7b, 0xd3,
0xd8, 0x51, 0x37, 0xfa, 0x31, 0x58, 0x18, 0x20, 0xfc, 0x06, 0x1b, 0xbb, 0xb7, 0x35, 0xe6, 0x33,
0x36, 0xec, 0xb0, 0x48, 0x60, 0x5b, 0x98, 0xd3, 0x47, 0xd8, 0x37, 0x6b, 0x01, 0x2a, 0x2a, 0x5e,
0x1d, 0xd1, 0x6c, 0x1b, 0x23, 0x63, 0x89, 0x57, 0x23, 0x13, 0x77, 0x59, 0x47, 0x34, 0x23, 0x73,
0xae, 0x81, 0x85, 0x9c, 0x49, 0x15, 0x56, 0x7a, 0x6e, 0xf7, 0x8b, 0x07, 0xcf, 0x1e, 0x61, 0x86,
0x01, 0x58, 0xee, 0x3d, 0x7f, 0xf8, 0xa4, 0xbb, 0x87, 0x79, 0x05, 0x03, 0xb2, 0x28, 0x91, 0x0c,
0xc8, 0x5f, 0xa3, 0xc3, 0x7e, 0x36, 0x09, 0x75, 0xa5, 0xcf, 0x4e, 0x8a, 0xac, 0xfc, 0x79, 0xf1,
0x2b, 0x9a, 0xaa, 0x5e, 0x54, 0x35, 0x4a, 0x1c, 0x14, 0x9d, 0xe8, 0x9c, 0x88, 0xb5, 0xe6, 0x44,
0x2c, 0xf9, 0x04, 0xec, 0x20, 0xf4, 0x87, 0x93, 0x01, 0xed, 0x4f, 0x43, 0xce, 0x8f, 0x82, 0xf0,
0xd0, 0x63, 0xdd, 0xa7, 0xc8, 0x34, 0x1d, 0x49, 0xd1, 0x95, 0x04, 0x7b, 0x6a, 0x9d, 0x05, 0x8d,
0xda, 0xed, 0x73, 0x95, 0xfb, 0x89, 0x1f, 0x07, 0xe3, 0x54, 0xf6, 0xb4, 0x6b, 0x72, 0x51, 0x98,
0xe3, 0x80, 0x2f, 0x39, 0x7f, 0xb3, 0x60, 0xab, 0x60, 0x02, 0xe9, 0x98, 0xbf, 0x80, 0x56, 0x82,
0xd3, 0x8e, 0xcf, 0xea, 0xac, 0x1a, 0x1d, 0x84, 0x5b, 0x7e, 0x5b, 0xbb, 0xef, 0x19, 0xbb, 0x77,
0x7a, 0xb2, 0x37, 0x97, 0x73, 0x44, 0x53, 0xb1, 0x7a, 0x2a, 0xe7, 0x09, 0x2c, 0x77, 0xa2, 0x8d,
0x30, 0xcc, 0x58, 0xe5, 0x98, 0xb4, 0xe2, 0x1d, 0x68, 0x49, 0x45, 0xc6, 0x27, 0x4a, 0x17, 0xe1,
0x04, 0x0d, 0x81, 0xf7, 0x4e, 0x84, 0x1a, 0xf6, 0xbf, 0x2b, 0xd0, 0x30, 0x0f, 0x64, 0x03, 0x86,
0x16, 0x06, 0x7a, 0xbe, 0x69, 0x6a, 0x38, 0xcf, 0x06, 0x28, 0x8a, 0xd0, 0xaf, 0x2f, 0x06, 0x15,
0x51, 0x13, 0xaa, 0x02, 0xeb, 0xf2, 0x71, 0x05, 0xf3, 0xbd, 0x31, 0x7a, 0xc8, 0x2f, 0x72, 0x05,
0x2e, 0x65, 0xb2, 0x2d, 0x72, 0xf6, 0xab, 0x63, 0x29, 0x15, 0xe3, 0xcb, 0xb2, 0x05, 0xeb, 0x75,
0x59, 0x5f, 0x2f, 0x67, 0xa7, 0xaa, 0xc4, 0x9e, 0x05, 0xa2, 0x99, 0x3a, 0x8a, 0xa3, 0xd1, 0xf4,
0x96, 0x79, 0x1b, 0xb3, 0xea, 0xd6, 0x18, 0xa8, 0x6e, 0xd6, 0xf9, 0x63, 0x05, 0x36, 0x0f, 0x82,
0x57, 0x61, 0x89, 0x9f, 0x9e, 0x55, 0xe9, 0xd0, 0x11, 0x13, 0x1a, 0x07, 0xde, 0x30, 0xf8, 0x95,
0x99, 0x17, 0x64, 0xd0, 0x6d, 0x64, 0xab, 0x1a, 0x77, 0x26, 0x56, 0x10, 0x4e, 0x0d, 0x42, 0xc5,
0xc0, 0x59, 0x77, 0x6b, 0x1c, 0xec, 0x0a, 0xcc, 0x79, 0x0d, 0x5b, 0x05, 0xa9, 0xa4, 0xeb, 0xe4,
0x66, 0xd9, 0x4a, 0x71, 0x96, 0xbd, 0x07, 0x9b, 0x93, 0x30, 0xc1, 0xed, 0x28, 0x96, 0x79, 0xd4,
0x02, 0x3f, 0x6a, 0x5d, 0xad, 0x76, 0xf5, 0x23, 0x7f, 0x0a, 0x97, 0x7b, 0x93, 0xc3, 0x61, 0x90,
0x1c, 0x97, 0xd8, 0xe2, 0x9b, 0x40, 0x24, 0xc3, 0xe2, 0xd9, 0x6d, 0xb1, 0xa2, 0xed, 0x72, 0xae,
0x82, 0x5d, 0xc6, 0x4b, 0xe6, 0x86, 0x9b, 0x70, 0x5d, 0x83, 0xf7, 0xa3, 0x34, 0x38, 0x0a, 0x7c,
0x4f, 0x2f, 0x6a, 0xce, 0x5f, 0x16, 0xe0, 0xc6, 0x6c, 0x1a, 0x69, 0x89, 0x4f, 0xa1, 0xe9, 0xa5,
0xa9, 0xe7, 0x1f, 0xa3, 0x58, 0xbc, 0xd6, 0x9c, 0x99, 0xda, 0x1b, 0x8a, 0x9e, 0xa3, 0x09, 0xab,
0xbf, 0x03, 0x6a, 0x72, 0x60, 0x26, 0xc2, 0x20, 0x50, 0xb0, 0x24, 0x9c, 0x55, 0x00, 0xac, 0xaf,
0x5a, 0x00, 0x58, 0x3e, 0x2a, 0xe1, 0xc8, 0x63, 0x89, 0x8a, 0x89, 0xb4, 0xe6, 0x76, 0x8a, 0x1b,
0x3f, 0xe7, 0xeb, 0xce, 0xef, 0x2a, 0xb0, 0x7d, 0x80, 0x6d, 0x44, 0x1a, 0x62, 0xbf, 0x56, 0x66,
0xc1, 0x39, 0x59, 0x16, 0x8b, 0x79, 0x18, 0xf5, 0x43, 0xb6, 0xe9, 0x5d, 0x1f, 0x5d, 0x81, 0xb1,
0xe1, 0x2e, 0xbb, 0xea, 0x36, 0xc3, 0x88, 0x33, 0x7b, 0xf7, 0x5c, 0xc0, 0xac, 0x67, 0xcb, 0x68,
0x05, 0xa5, 0x98, 0xfb, 0xeb, 0x8a, 0x92, 0x4b, 0xe1, 0xfc, 0x7e, 0x01, 0xae, 0xcd, 0x92, 0x47,
0xde, 0xd6, 0xff, 0x37, 0x69, 0x3c, 0x86, 0x15, 0xde, 0x46, 0x51, 0xf1, 0xe2, 0x64, 0xe6, 0xcd,
0xf9, 0x92, 0xf0, 0x65, 0xdc, 0xe8, 0x2a, 0x0e, 0xf6, 0x73, 0x58, 0x91, 0xd8, 0x45, 0xa4, 0xbc,
0x0e, 0x55, 0x2d, 0xba, 0xa4, 0x90, 0x90, 0x85, 0xb1, 0xb3, 0x0d, 0x57, 0xd4, 0xb0, 0x5c, 0xe6,
0xe3, 0xff, 0xad, 0xc0, 0xd5, 0xf2, 0xf5, 0x0b, 0xcd, 0x1e, 0xe7, 0x99, 0x2b, 0xcb, 0x47, 0x46,
0xeb, 0x42, 0x23, 0xe3, 0xe2, 0x85, 0x46, 0xc6, 0xa5, 0x19, 0x23, 0xe3, 0x6f, 0x2b, 0xb0, 0xb6,
0x17, 0x53, 0x6c, 0xdf, 0x5f, 0xf0, 0xeb, 0x52, 0xee, 0xfa, 0x11, 0xb4, 0xc7, 0x2c, 0x63, 0xf8,
0xfd, 0x42, 0xce, 0x6d, 0x89, 0x05, 0xad, 0x7f, 0xc1, 0x6c, 0xa4, 0x26, 0x89, 0x42, 0xab, 0xd3,
0x96, 0x2b, 0x1a, 0x39, 0x81, 0xc5, 0x84, 0xd2, 0x81, 0xac, 0x6f, 0xfc, 0xb7, 0xb3, 0x09, 0xeb,
0xa6, 0x18, 0x32, 0x37, 0x7d, 0x0a, 0xed, 0xa7, 0xe8, 0x0a, 0x5f, 0x5d, 0x38, 0x67, 0x1d, 0x88,
0xce, 0x41, 0xf2, 0x45, 0x74, 0x6f, 0x18, 0x25, 0xa6, 0xd6, 0xce, 0x06, 0x1a, 0x43, 0x47, 0x25,
0x31, 0xc2, 0x02, 0x79, 0xf4, 0x36, 0x48, 0xb2, 0x97, 0x92, 0x1d, 0x58, 0x37, 0x61, 0xe9, 0x27,
0x58, 0x40, 0x29, 0x47, 0xb8, 0x4c, 0x38, 0x30, 0x89, 0x2f, 0xe7, 0x4b, 0xb4, 0xf5, 0x01, 0xeb,
0xe6, 0x1f, 0xa6, 0xfe, 0xc0, 0x1d, 0xfb, 0x4a, 0x1d, 0xcc, 0x7a, 0xf2, 0x7d, 0xa8, 0x6f, 0x0e,
0x80, 0x0d, 0x09, 0xcb, 0x49, 0x91, 0x3d, 0xde, 0x4d, 0x12, 0x76, 0xdb, 0x53, 0xaf, 0x9a, 0x7e,
0xb3, 0x35, 0x66, 0x0c, 0x24, 0x57, 0x86, 0x9d, 0x7e, 0xb3, 0x12, 0xe5, 0xd3, 0x58, 0xba, 0x34,
0x95, 0xb5, 0x5b, 0x87, 0x98, 0xf9, 0x4d, 0xc9, 0x84, 0x2a, 0xbb, 0xee, 0xf4, 0xa5, 0xfa, 0x80,
0xc6, 0x6f, 0x02, 0x9f, 0x25, 0xf9, 0x15, 0x89, 0x90, 0xcb, 0x5a, 0x88, 0x9b, 0xef, 0xd9, 0xb6,
0x5d, 0xb6, 0x24, 0x79, 0xfe, 0xab, 0x0a, 0x75, 0x61, 0x37, 0xc5, 0xf3, 0xfb, 0xb0, 0xc8, 0x1e,
0xd7, 0xc8, 0xa6, 0xb6, 0x4b, 0x7b, 0x7c, 0xb3, 0xb7, 0x0a, 0xf8, 0xb4, 0xe2, 0xac, 0xc8, 0x47,
0x34, 0x43, 0x18, 0xf3, 0x65, 0xce, 0x10, 0x26, 0xff, 0x44, 0xe7, 0x42, 0xdd, 0x78, 0x40, 0x23,
0xd7, 0x8b, 0xef, 0x5a, 0xc6, 0xab, 0x9c, 0x7d, 0x63, 0x36, 0x81, 0xe4, 0xb9, 0x07, 0xab, 0xea,
0x45, 0x8c, 0xd8, 0xa5, 0xcf, 0x64, 0x82, 0xd3, 0x95, 0x39, 0x4f, 0x68, 0x4c, 0x35, 0xf5, 0xc0,
0xa4, 0xab, 0x66, 0x4e, 0xd5, 0x86, 0x6a, 0xf9, 0x01, 0xf8, 0x25, 0x34, 0x73, 0x73, 0x18, 0xb9,
0xa9, 0x91, 0x97, 0x8f, 0xaf, 0xb6, 0x33, 0x8f, 0x44, 0x72, 0x9e, 0x40, 0x67, 0x56, 0x33, 0x40,
0x3e, 0x2c, 0xaf, 0xbd, 0x65, 0x19, 0xd7, 0xfe, 0xe8, 0x5c, 0xb4, 0xe2, 0xd0, 0xbb, 0x15, 0x12,
0x61, 0x6b, 0x58, 0x5a, 0x49, 0xc8, 0x9d, 0x73, 0x14, 0x1b, 0x71, 0xe4, 0x07, 0xe7, 0x2e, 0x4b,
0x78, 0x60, 0x90, 0x3d, 0xcc, 0x1a, 0xc7, 0xdd, 0x2e, 0x71, 0x81, 0xb2, 0xc3, 0xde, 0x3f, 0x93,
0x6e, 0x7a, 0xd4, 0xcf, 0xa1, 0x95, 0x9f, 0xdd, 0x88, 0x73, 0xf6, 0xa8, 0x69, 0xdf, 0x9a, 0x4b,
0x93, 0x39, 0xb9, 0xf1, 0x7a, 0x67, 0x38, 0x79, 0xd9, 0x8b, 0xa1, 0xe1, 0xe4, 0xa5, 0x0f, 0x7f,
0xe4, 0x09, 0x54, 0xb5, 0xf7, 0x39, 0xb2, 0x9d, 0x7f, 0x31, 0x33, 0xf9, 0x5d, 0x9b, 0xb5, 0x9c,
0xe3, 0x26, 0x13, 0xdd, 0xf6, 0xdc, 0xf7, 0xb7, 0x22, 0xb7, 0xdc, 0x4b, 0x1a, 0x1a, 0x33, 0xff,
0x32, 0x65, 0x18, 0x73, 0xc6, 0x5b, 0x9a, 0x61, 0xcc, 0x59, 0x4f, 0x5b, 0x2c, 0xac, 0x72, 0x73,
0xa0, 0x11, 0x56, 0xe5, 0x43, 0xb6, 0x11, 0x56, 0xb3, 0x86, 0x50, 0xe4, 0x9c, 0x1b, 0x32, 0x0c,
0xce, 0xe5, 0x63, 0x91, 0xc1, 0x79, 0xd6, 0x8c, 0xe2, 0x01, 0x29, 0xf6, 0xff, 0x44, 0xff, 0x57,
0x6c, 0xe6, 0xa8, 0x61, 0xbf, 0x77, 0x06, 0x95, 0xcc, 0xea, 0x7f, 0xb5, 0x54, 0x91, 0x7c, 0x12,
0x79, 0xd8, 0xb9, 0xa9, 0xdc, 0xfe, 0x14, 0x6a, 0x7a, 0x91, 0x24, 0xfa, 0xdd, 0x95, 0x14, 0x55,
0xfb, 0xfa, 0xcc, 0x75, 0xa9, 0x0b, 0x32, 0xd4, 0x3b, 0x05, 0x83, 0x61, 0x49, 0x27, 0x63, 0x30,
0x2c, 0x6b, 0x31, 0x48, 0x17, 0x20, 0x6b, 0x10, 0xc8, 0x55, 0x8d, 0xbc, 0xd0, 0x79, 0xd8, 0xdb,
0x33, 0x56, 0x33, 0x37, 0xd6, 0xfa, 0x07, 0xc3, 0x8d, 0x8b, 0xdd, 0x86, 0xe1, 0xc6, 0x25, 0x6d,
0x07, 0xd3, 0x54, 0x2f, 0xca, 0x86, 0xa6, 0x25, 0x7d, 0x84, 0xa1, 0x69, 0x59, 0x35, 0x3f, 0x5c,
0xe6, 0xff, 0x44, 0x7f, 0xe7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x00, 0xfb, 0x05, 0x0c, 0x96,
0x1e, 0x00, 0x00,
0x15, 0x66, 0x2c, 0xdf, 0x72, 0xe6, 0xde, 0xbe, 0x4d, 0x94, 0x38, 0xc9, 0x2a, 0xbb, 0xd9, 0xec,
0x2e, 0x98, 0x60, 0x02, 0x2c, 0xc5, 0x56, 0xd8, 0xc4, 0x64, 0xd9, 0x21, 0xc1, 0x99, 0x92, 0x93,
0x4d, 0xaa, 0xa0, 0x98, 0x92, 0x35, 0xed, 0x58, 0x78, 0x46, 0x9a, 0x48, 0x9a, 0x38, 0xe1, 0x89,
0xa2, 0x8a, 0x47, 0x5e, 0x80, 0x07, 0x0a, 0x6a, 0x5f, 0xf8, 0x05, 0x54, 0xf1, 0xc2, 0x2b, 0xbf,
0x81, 0x47, 0xf8, 0x15, 0xfc, 0x02, 0xfa, 0x72, 0x7a, 0xd4, 0x2d, 0x69, 0xc6, 0xf6, 0x16, 0x6f,
0xa3, 0xaf, 0x4f, 0x9f, 0x3e, 0xe7, 0xf4, 0xb9, 0xf6, 0xc0, 0x25, 0x6f, 0x1c, 0xec, 0x8c, 0xe3,
0x28, 0x8d, 0xc8, 0xa5, 0x53, 0x6f, 0x38, 0xa4, 0x69, 0x3c, 0xf6, 0x9d, 0x16, 0x34, 0xbe, 0xa0,
0x71, 0x12, 0x44, 0xa1, 0x4b, 0x5f, 0x4d, 0x68, 0x92, 0x3a, 0xff, 0xac, 0x40, 0x73, 0x0a, 0x25,
0xe3, 0x28, 0x4c, 0x28, 0x79, 0x0f, 0x1a, 0xaf, 0x25, 0xd4, 0x4f, 0xd2, 0x38, 0x08, 0x5f, 0x76,
0x2a, 0x37, 0x2a, 0xb7, 0x2f, 0xb9, 0x75, 0x44, 0x0f, 0x04, 0x48, 0xd6, 0x61, 0x69, 0xe4, 0xfd,
0x32, 0x8a, 0x3b, 0x0b, 0x6c, 0xb5, 0xee, 0xca, 0x0f, 0x81, 0x06, 0x21, 0x43, 0x2d, 0x44, 0xf9,
0x07, 0x47, 0xc7, 0x5e, 0xea, 0x1f, 0x77, 0x16, 0x25, 0x2a, 0x3e, 0xc8, 0x35, 0x80, 0x71, 0x4c,
0x63, 0x3a, 0xa4, 0x5e, 0x42, 0x3b, 0x4b, 0xe2, 0x10, 0x0d, 0xe1, 0x82, 0x1c, 0x4e, 0x82, 0xe1,
0xa0, 0x3f, 0xa2, 0xa9, 0x37, 0xf0, 0x52, 0xaf, 0xb3, 0x2c, 0x05, 0x11, 0xe8, 0x4f, 0x11, 0x74,
0xfe, 0x63, 0x01, 0x79, 0x1a, 0x7b, 0x61, 0xe2, 0xf9, 0x29, 0x13, 0xef, 0x47, 0x0c, 0x0f, 0x86,
0x09, 0x21, 0xb0, 0x78, 0xec, 0x25, 0xc7, 0x42, 0xf8, 0x9a, 0x2b, 0x7e, 0x93, 0x1b, 0x50, 0x4d,
0x33, 0x4a, 0x21, 0x79, 0xcd, 0xd5, 0x21, 0xf2, 0x03, 0x58, 0x1e, 0xd0, 0xc3, 0x20, 0x4d, 0x98,
0x02, 0xd6, 0xed, 0xea, 0xee, 0xcd, 0x9d, 0xa9, 0xf9, 0x76, 0x8a, 0x87, 0xec, 0x74, 0xc3, 0xf1,
0x24, 0x75, 0x71, 0x0b, 0xb9, 0x07, 0x2b, 0xd1, 0x24, 0x65, 0x48, 0xc2, 0x14, 0xe5, 0xbb, 0xdf,
0x9d, 0xbf, 0xfb, 0x89, 0x20, 0x76, 0xd5, 0x26, 0xd2, 0x02, 0xeb, 0x88, 0x4a, 0x4b, 0x58, 0x2e,
0xff, 0x49, 0xae, 0xc2, 0xa5, 0x34, 0x18, 0xb1, 0x9b, 0xf2, 0x46, 0x63, 0xa1, 0xbd, 0xe5, 0x66,
0x80, 0xfd, 0x0a, 0x96, 0x84, 0x00, 0xdc, 0xbe, 0x41, 0x38, 0xa0, 0x6f, 0x84, 0xb2, 0xcc, 0xbe,
0xe2, 0x83, 0x7c, 0x00, 0x2d, 0x66, 0xcd, 0xd7, 0x41, 0x34, 0x49, 0xfa, 0x9e, 0xef, 0x47, 0x93,
0x30, 0xc5, 0xcb, 0x6a, 0x2a, 0xfc, 0xbe, 0x84, 0xc9, 0xfb, 0xd0, 0xcc, 0x48, 0x47, 0x82, 0xd2,
0x12, 0xa7, 0x35, 0xa6, 0x94, 0x02, 0xb5, 0xc7, 0xb0, 0x2c, 0xa5, 0xe6, 0xf6, 0x65, 0x97, 0x4b,
0x05, 0xdd, 0xaa, 0x2b, 0x7e, 0x93, 0x0e, 0xac, 0xa8, 0x83, 0xe4, 0x4d, 0xab, 0x4f, 0x62, 0xc3,
0x6a, 0x10, 0xa6, 0x34, 0x0e, 0xbd, 0xa1, 0xd0, 0x6f, 0xd5, 0x9d, 0x7e, 0x73, 0x25, 0xbd, 0xc1,
0x20, 0xa6, 0x49, 0x42, 0x13, 0xa6, 0xa4, 0xc5, 0xae, 0x38, 0x03, 0x9c, 0xbf, 0x54, 0xa0, 0xf6,
0x60, 0x18, 0xf9, 0x27, 0xf3, 0x2e, 0x76, 0x13, 0x96, 0x8f, 0x69, 0xf0, 0xf2, 0x58, 0x2a, 0xb8,
0xe4, 0xe2, 0x97, 0x69, 0x3f, 0x2b, 0x67, 0x3f, 0x72, 0x1f, 0x6a, 0xda, 0xdd, 0xab, 0x4b, 0xdb,
0x9e, 0x7b, 0x69, 0xae, 0xb1, 0xc5, 0x79, 0x02, 0x0d, 0xb4, 0xe1, 0x03, 0x6f, 0xe8, 0x85, 0xbe,
0x61, 0x83, 0x8a, 0x69, 0x83, 0x9b, 0x50, 0x4f, 0xa3, 0xd4, 0x1b, 0xf6, 0x0f, 0x25, 0xa9, 0x90,
0xd5, 0x62, 0x0c, 0x39, 0x88, 0xdb, 0x9d, 0x3a, 0x54, 0x7b, 0x2c, 0xbc, 0x54, 0x80, 0x36, 0xa0,
0x26, 0x3f, 0x65, 0x70, 0xf2, 0x10, 0xde, 0xa7, 0xe9, 0x69, 0x14, 0x9f, 0x28, 0x8a, 0x8f, 0xa1,
0x39, 0x45, 0xb2, 0x08, 0xe6, 0xf2, 0xbd, 0xa6, 0xfd, 0x50, 0xae, 0xa0, 0x24, 0x75, 0x89, 0x22,
0xb9, 0xf3, 0x7d, 0x58, 0x47, 0xd9, 0xf7, 0x27, 0xa3, 0x43, 0x1a, 0x23, 0x47, 0xf2, 0x0e, 0xd4,
0x50, 0xe4, 0x7e, 0xe8, 0x8d, 0x28, 0x86, 0x7f, 0x15, 0xb1, 0x7d, 0x06, 0x39, 0xf7, 0x60, 0x23,
0xb7, 0x55, 0x3f, 0x1a, 0xf7, 0x8a, 0x95, 0xec, 0x68, 0x8d, 0xdc, 0x69, 0x43, 0x13, 0xf7, 0x27,
0x4a, 0x8f, 0x7f, 0x58, 0xd0, 0xca, 0x30, 0x64, 0xf7, 0x43, 0x58, 0xc5, 0x8d, 0x09, 0x63, 0x94,
0x0f, 0xc8, 0x3c, 0xb9, 0x02, 0xdc, 0xe9, 0x26, 0xf2, 0x75, 0x20, 0xfe, 0x24, 0x8e, 0x29, 0x93,
0xe7, 0x90, 0x3b, 0x51, 0x5f, 0xb8, 0x8e, 0x0c, 0xfc, 0x16, 0xae, 0x08, 0xef, 0xfa, 0x9c, 0xbb,
0xd1, 0x1d, 0x58, 0xcf, 0x51, 0x4b, 0xa7, 0xb2, 0x84, 0x53, 0x11, 0x83, 0x5e, 0xac, 0xd8, 0xbf,
0x59, 0x80, 0x15, 0x15, 0x44, 0xe7, 0xd3, 0xbd, 0x60, 0xde, 0x85, 0x82, 0x79, 0x8b, 0x9e, 0x62,
0x15, 0x3d, 0x85, 0xab, 0x46, 0xdf, 0xc8, 0x10, 0xea, 0x9f, 0xd0, 0xb7, 0x7d, 0x3d, 0xee, 0x5a,
0x6a, 0xe5, 0x11, 0x7d, 0xbb, 0x27, 0x84, 0x63, 0xd4, 0x2a, 0xe0, 0x34, 0xea, 0x25, 0x49, 0xad,
0x56, 0x0c, 0xea, 0xd1, 0x38, 0x8a, 0x53, 0x3a, 0xd0, 0xa8, 0x97, 0x91, 0x1a, 0x57, 0x14, 0xb5,
0xf3, 0x02, 0xd6, 0x5d, 0xca, 0x75, 0x51, 0xf6, 0x47, 0x47, 0x3a, 0xa7, 0x41, 0x2e, 0xc3, 0x6a,
0x48, 0x4f, 0x75, 0x63, 0xac, 0xb0, 0x6f, 0xe1, 0x67, 0x5b, 0xb0, 0x91, 0xe3, 0x8c, 0x71, 0xf0,
0x1c, 0xc8, 0x3e, 0xd3, 0x31, 0x77, 0x20, 0xaf, 0x28, 0x5e, 0x92, 0x8c, 0x8f, 0x63, 0x5e, 0x51,
0x64, 0x82, 0xd0, 0x90, 0x73, 0x98, 0xde, 0xf9, 0x04, 0xd6, 0x0c, 0xc6, 0x17, 0xf3, 0xeb, 0x3f,
0x57, 0x50, 0x2e, 0x99, 0xbe, 0x94, 0x5c, 0xb3, 0x73, 0xc2, 0x77, 0x61, 0xf1, 0x84, 0x65, 0x6b,
0x21, 0x49, 0x63, 0xd7, 0xd1, 0x9c, 0xbb, 0xc8, 0x66, 0xe7, 0x11, 0xa3, 0x74, 0x05, 0xbd, 0xb3,
0x0b, 0x8b, 0xfc, 0x8b, 0x65, 0xfe, 0xd6, 0x83, 0x6e, 0xef, 0xce, 0x9d, 0xbb, 0x77, 0xfb, 0x0f,
0x5f, 0x3c, 0x7d, 0xe8, 0xee, 0xdf, 0x7f, 0xdc, 0xfa, 0x9a, 0x8e, 0x76, 0xf7, 0x11, 0xad, 0x38,
0xdf, 0x44, 0xd5, 0x14, 0x53, 0x54, 0x8d, 0x0b, 0x27, 0x21, 0x8c, 0x74, 0xf5, 0xe9, 0xfc, 0xa1,
0x02, 0x5b, 0x5d, 0x71, 0xd9, 0xbd, 0x38, 0x78, 0xed, 0xa5, 0x94, 0xdd, 0xf8, 0x79, 0x4d, 0xad,
0xa9, 0xbc, 0x60, 0xaa, 0x7c, 0x8b, 0xd7, 0x1a, 0xc1, 0x4e, 0xb8, 0xd6, 0x69, 0x70, 0x24, 0xdc,
0x9b, 0xd5, 0xf5, 0xf1, 0xf4, 0x94, 0xe7, 0xc1, 0x11, 0xcf, 0xe9, 0x4c, 0x0a, 0xdf, 0x0b, 0x85,
0x4f, 0xaf, 0xba, 0xf8, 0xe5, 0xd8, 0xd0, 0x29, 0x0a, 0x85, 0x6e, 0x11, 0x42, 0x03, 0xc3, 0xe3,
0x82, 0x3e, 0xf8, 0x1d, 0xd8, 0x8c, 0xd9, 0x8e, 0x20, 0x66, 0x0e, 0xef, 0x47, 0xe1, 0x51, 0x10,
0x8f, 0x3c, 0x59, 0x14, 0x64, 0x41, 0xd9, 0x50, 0xab, 0x7b, 0xfa, 0x22, 0x3b, 0xaf, 0x39, 0x3d,
0x0f, 0xcd, 0xc9, 0x6a, 0xb1, 0x08, 0x53, 0x71, 0x8e, 0xe5, 0xca, 0x0f, 0x5e, 0x88, 0x92, 0x31,
0x0d, 0x07, 0xde, 0xe1, 0x50, 0xe5, 0xfd, 0x0c, 0xe0, 0xe5, 0x37, 0x18, 0x31, 0x9e, 0x93, 0x98,
0xf6, 0x63, 0x7a, 0xea, 0xc5, 0x03, 0x55, 0x7e, 0x15, 0xec, 0x0a, 0xd4, 0xf9, 0xd3, 0x02, 0x6c,
0xfe, 0x98, 0xa6, 0x5a, 0x59, 0x9a, 0xfa, 0xd8, 0x0e, 0xac, 0xb1, 0xaa, 0x16, 0xa7, 0xac, 0x5a,
0xe8, 0xa9, 0x4e, 0xde, 0x4c, 0x5b, 0x2d, 0x65, 0xb9, 0x6e, 0x17, 0x36, 0xf2, 0xf4, 0x59, 0x05,
0x6d, 0xbb, 0x6b, 0xe6, 0x0e, 0x59, 0x4e, 0x3f, 0x84, 0x36, 0x13, 0x39, 0x77, 0x82, 0x25, 0x4e,
0x68, 0xca, 0x85, 0x8c, 0x3f, 0x93, 0xc7, 0xa4, 0x95, 0xdc, 0x17, 0x85, 0x39, 0xdb, 0x3a, 0xb5,
0xe4, 0x7d, 0x0f, 0xae, 0xb0, 0x1e, 0x22, 0x18, 0x4d, 0x46, 0xcc, 0x04, 0x3e, 0x4f, 0xc1, 0x46,
0x6d, 0x5e, 0x12, 0xfb, 0x2e, 0x23, 0x89, 0x2b, 0x28, 0x74, 0x33, 0x38, 0x7f, 0x67, 0xce, 0x5a,
0x30, 0x0d, 0xde, 0xc9, 0x67, 0x40, 0x78, 0x7f, 0x32, 0x30, 0x59, 0xca, 0x82, 0xb2, 0xa5, 0xc5,
0x9c, 0xde, 0x67, 0xb8, 0x6d, 0xb1, 0x45, 0xe7, 0x47, 0x7a, 0xb0, 0x3e, 0x09, 0x4b, 0x38, 0x2d,
0x9c, 0xa7, 0x71, 0x58, 0xc3, 0xad, 0x86, 0xd4, 0xac, 0x01, 0xdf, 0xda, 0x3b, 0xf6, 0xc2, 0x97,
0xb4, 0x37, 0x8d, 0x1d, 0x75, 0xa3, 0x1f, 0x83, 0xc5, 0x02, 0x44, 0xdc, 0x60, 0x63, 0xf7, 0x96,
0xc6, 0x7c, 0xc6, 0x86, 0x1d, 0x1e, 0x09, 0x7c, 0x0b, 0x77, 0xfa, 0x88, 0xf5, 0xcd, 0x5a, 0x80,
0xca, 0x8a, 0x57, 0x67, 0x68, 0xb6, 0x8d, 0x93, 0xf1, 0xc4, 0xab, 0x91, 0xc9, 0xbb, 0xac, 0x33,
0x34, 0x23, 0x73, 0xae, 0x81, 0xc5, 0x38, 0x93, 0x2a, 0xac, 0xf4, 0xdc, 0xee, 0x17, 0xf7, 0x9f,
0x3e, 0x64, 0x19, 0x06, 0x60, 0xb9, 0xf7, 0xec, 0xc1, 0xe3, 0xee, 0x1e, 0xcb, 0x2b, 0x2c, 0x20,
0x8b, 0x12, 0x61, 0x40, 0xfe, 0x9a, 0x39, 0xec, 0x67, 0x93, 0x50, 0x57, 0xfa, 0xec, 0xa4, 0xc8,
0xcb, 0x9f, 0x17, 0xbf, 0xa4, 0xa9, 0xea, 0x45, 0x55, 0xa3, 0x24, 0x40, 0xd9, 0x89, 0xce, 0x89,
0x58, 0x6b, 0x4e, 0xc4, 0x92, 0x4f, 0xc0, 0x0e, 0x42, 0x7f, 0x38, 0x19, 0xd0, 0xfe, 0x34, 0xe4,
0xfc, 0x28, 0x08, 0x0f, 0x3d, 0xde, 0x7d, 0xca, 0x4c, 0xd3, 0x41, 0x8a, 0x2e, 0x12, 0xec, 0xa9,
0x75, 0x1e, 0x34, 0x6a, 0xb7, 0x2f, 0x54, 0xee, 0x27, 0x7e, 0x1c, 0x8c, 0x53, 0xec, 0x69, 0xd7,
0x70, 0x51, 0x9a, 0xe3, 0x40, 0x2c, 0x39, 0x7f, 0xb5, 0x60, 0xab, 0x60, 0x02, 0x74, 0xcc, 0x9f,
0x43, 0x2b, 0x61, 0xd3, 0x8e, 0xcf, 0xeb, 0xac, 0x1a, 0x1d, 0xa4, 0x5b, 0x7e, 0x4b, 0xbb, 0xef,
0x19, 0xbb, 0x77, 0x7a, 0xd8, 0x9b, 0xe3, 0x1c, 0xd1, 0x54, 0xac, 0x9e, 0xe0, 0x3c, 0xc1, 0xca,
0x9d, 0x6c, 0x23, 0x0c, 0x33, 0x56, 0x05, 0x86, 0x56, 0xbc, 0x0d, 0x2d, 0x54, 0x64, 0x7c, 0xa2,
0x74, 0x91, 0x4e, 0xd0, 0x90, 0x78, 0xef, 0x44, 0xaa, 0x61, 0xff, 0xbb, 0x02, 0x0d, 0xf3, 0x40,
0x3e, 0x60, 0x68, 0x61, 0xa0, 0xe7, 0x9b, 0xa6, 0x86, 0x8b, 0x6c, 0xc0, 0x44, 0x91, 0xfa, 0xf5,
0xe5, 0xa0, 0x22, 0x6b, 0x42, 0x55, 0x62, 0x5d, 0x31, 0xae, 0xb0, 0x7c, 0x6f, 0x8c, 0x1e, 0xf8,
0x45, 0xae, 0xc0, 0xa5, 0x4c, 0xb6, 0x45, 0xc1, 0x7e, 0x75, 0x8c, 0x52, 0x71, 0xbe, 0x3c, 0x5b,
0xf0, 0x5e, 0x97, 0xf7, 0xf5, 0x38, 0x3b, 0x55, 0x11, 0x7b, 0x1a, 0xc8, 0x66, 0xea, 0x28, 0x8e,
0x46, 0xd3, 0x5b, 0x16, 0x6d, 0xcc, 0xaa, 0x5b, 0xe3, 0xa0, 0xba, 0x59, 0xe7, 0x8f, 0x15, 0xd8,
0x3c, 0x08, 0x5e, 0x86, 0x25, 0x7e, 0x7a, 0x56, 0xa5, 0x63, 0x8e, 0x98, 0xd0, 0x38, 0xf0, 0x86,
0xc1, 0xaf, 0xcc, 0xbc, 0x80, 0x41, 0xb7, 0x91, 0xad, 0x6a, 0xdc, 0xb9, 0x58, 0x41, 0x38, 0x35,
0x08, 0x95, 0x03, 0x67, 0xdd, 0xad, 0x09, 0xb0, 0x2b, 0x31, 0xe7, 0x15, 0x6c, 0x15, 0xa4, 0x42,
0xd7, 0xc9, 0xcd, 0xb2, 0x95, 0xe2, 0x2c, 0x7b, 0x17, 0x36, 0x27, 0x61, 0xc2, 0xb6, 0x33, 0xb1,
0xcc, 0xa3, 0x16, 0xc4, 0x51, 0xeb, 0x6a, 0xb5, 0xab, 0x1f, 0xf9, 0x13, 0xb8, 0xdc, 0x9b, 0x1c,
0x0e, 0x83, 0xe4, 0xb8, 0xc4, 0x16, 0xdf, 0x00, 0x82, 0x0c, 0x8b, 0x67, 0xb7, 0xe5, 0x8a, 0xb6,
0xcb, 0xb9, 0x0a, 0x76, 0x19, 0x2f, 0xcc, 0x0d, 0xef, 0xc0, 0x75, 0x0d, 0xde, 0x8f, 0xd2, 0xe0,
0x28, 0xf0, 0x3d, 0xbd, 0xa8, 0x39, 0x5f, 0x2e, 0xc0, 0x8d, 0xd9, 0x34, 0x68, 0x89, 0x4f, 0xa1,
0xe9, 0xa5, 0xa9, 0xe7, 0x1f, 0x33, 0xb1, 0x44, 0xad, 0x39, 0x33, 0xb5, 0x37, 0x14, 0xbd, 0x40,
0x13, 0x5e, 0x7f, 0x07, 0xd4, 0xe4, 0xc0, 0x4d, 0xc4, 0x82, 0x40, 0xc1, 0x48, 0x38, 0xab, 0x00,
0x58, 0x5f, 0xb5, 0x00, 0xf0, 0x7c, 0x54, 0xc2, 0x51, 0xc4, 0x12, 0x95, 0x13, 0x69, 0xcd, 0xed,
0x14, 0x37, 0x7e, 0x2e, 0xd6, 0x9d, 0xdf, 0x55, 0x60, 0xfb, 0x80, 0xb5, 0x11, 0x69, 0xc8, 0xfa,
0xb5, 0x32, 0x0b, 0xce, 0xc9, 0xb2, 0xac, 0x98, 0x87, 0x51, 0x3f, 0xe4, 0x9b, 0xde, 0xf6, 0x99,
0x2b, 0x70, 0x36, 0xc2, 0x65, 0x57, 0xdd, 0x66, 0x18, 0x09, 0x66, 0x6f, 0x9f, 0x49, 0x98, 0xf7,
0x6c, 0x19, 0xad, 0xa4, 0x94, 0x73, 0x7f, 0x5d, 0x51, 0x0a, 0x29, 0x9c, 0xdf, 0x2f, 0xc0, 0xb5,
0x59, 0xf2, 0xe0, 0x6d, 0xfd, 0x7f, 0x93, 0xc6, 0x23, 0x58, 0x11, 0x6d, 0x14, 0x95, 0x2f, 0x4e,
0x66, 0xde, 0x9c, 0x2f, 0x89, 0x58, 0x66, 0x1b, 0x5d, 0xc5, 0xc1, 0x7e, 0x06, 0x2b, 0x88, 0x5d,
0x44, 0xca, 0xeb, 0x50, 0xd5, 0xa2, 0x0b, 0x85, 0x84, 0x2c, 0x8c, 0x9d, 0x6d, 0xb8, 0xa2, 0x86,
0xe5, 0x32, 0x1f, 0xff, 0x6f, 0x05, 0xae, 0x96, 0xaf, 0x5f, 0x68, 0xf6, 0x38, 0xcf, 0x5c, 0x59,
0x3e, 0x32, 0x5a, 0x17, 0x1a, 0x19, 0x17, 0x2f, 0x34, 0x32, 0x2e, 0xcd, 0x18, 0x19, 0x7f, 0x5b,
0x81, 0xb5, 0xbd, 0x98, 0xb2, 0xf6, 0xfd, 0xb9, 0xb8, 0x2e, 0xe5, 0xae, 0x1f, 0x41, 0x7b, 0xcc,
0x33, 0x86, 0xdf, 0x2f, 0xe4, 0xdc, 0x96, 0x5c, 0xd0, 0xfa, 0x17, 0x96, 0x8d, 0xd4, 0x24, 0x51,
0x68, 0x75, 0xda, 0xb8, 0xa2, 0x91, 0x13, 0x58, 0x4c, 0x28, 0x1d, 0x60, 0x7d, 0x13, 0xbf, 0x9d,
0x4d, 0x58, 0x37, 0xc5, 0xc0, 0xdc, 0xf4, 0x29, 0xb4, 0x9f, 0x30, 0x57, 0xf8, 0xea, 0xc2, 0x39,
0xeb, 0x40, 0x74, 0x0e, 0xc8, 0x97, 0xa1, 0x7b, 0xc3, 0x28, 0x31, 0xb5, 0x76, 0x36, 0x98, 0x31,
0x74, 0x14, 0x89, 0x19, 0x2c, 0x91, 0x87, 0x6f, 0x82, 0x24, 0x7b, 0x29, 0xd9, 0x81, 0x75, 0x13,
0x46, 0x3f, 0x61, 0x05, 0x94, 0x0a, 0x44, 0xc8, 0xc4, 0x06, 0x26, 0xf9, 0xe5, 0x7c, 0x59, 0x81,
0xce, 0x01, 0xef, 0xe6, 0xf7, 0x38, 0x59, 0x98, 0x4c, 0x12, 0x77, 0xec, 0x2b, 0x9d, 0x58, 0xea,
0xc3, 0x47, 0xa2, 0xbe, 0x39, 0x05, 0x36, 0x10, 0xc6, 0x71, 0x91, 0xbf, 0xe0, 0x4d, 0x12, 0x7e,
0xe5, 0x53, 0xd7, 0x9a, 0x7e, 0xf3, 0x35, 0x6e, 0x11, 0x46, 0xae, 0xac, 0x3b, 0xfd, 0xe6, 0x75,
0xca, 0xa7, 0x31, 0xfa, 0x35, 0xc5, 0x02, 0xae, 0x43, 0xce, 0x15, 0xb8, 0x5c, 0x22, 0x9e, 0x54,
0x6a, 0xd7, 0x9d, 0xbe, 0x59, 0x1f, 0xd0, 0xf8, 0x75, 0xe0, 0xf3, 0x74, 0xbf, 0x82, 0x08, 0xb9,
0xac, 0x05, 0xbb, 0xf9, 0xb2, 0x6d, 0xdb, 0x65, 0x4b, 0xc8, 0xf3, 0x5f, 0x55, 0xa8, 0x4b, 0x0b,
0x2a, 0x9e, 0xdf, 0x83, 0x45, 0xfe, 0xcc, 0x46, 0x36, 0xb5, 0x5d, 0xda, 0x33, 0x9c, 0xbd, 0x55,
0xc0, 0xa7, 0xb5, 0x67, 0x05, 0x9f, 0xd3, 0x0c, 0x61, 0xcc, 0x37, 0x3a, 0x43, 0x98, 0xfc, 0x63,
0x9d, 0x0b, 0x75, 0xe3, 0x29, 0x8d, 0x5c, 0x2f, 0xbe, 0x70, 0x19, 0xef, 0x73, 0xf6, 0x8d, 0xd9,
0x04, 0xc8, 0x73, 0x0f, 0x56, 0xd5, 0xdb, 0x18, 0xb1, 0x4b, 0x1f, 0xcc, 0x24, 0xa7, 0x2b, 0x73,
0x1e, 0xd3, 0xb8, 0x6a, 0xea, 0xa9, 0x49, 0x57, 0xcd, 0x9c, 0xaf, 0x0d, 0xd5, 0xf2, 0xa3, 0xf0,
0x0b, 0x68, 0xe6, 0x26, 0x32, 0xf2, 0x8e, 0x46, 0x5e, 0x3e, 0xc8, 0xda, 0xce, 0x3c, 0x12, 0xe4,
0x3c, 0x81, 0xce, 0xac, 0xb6, 0x80, 0x7c, 0x58, 0x5e, 0x85, 0xcb, 0x72, 0xaf, 0xfd, 0xd1, 0xb9,
0x68, 0xe5, 0xa1, 0x77, 0x2a, 0x24, 0x62, 0x4d, 0x62, 0x69, 0x4d, 0x21, 0xb7, 0xcf, 0x51, 0x76,
0xe4, 0x91, 0x1f, 0x9c, 0xbb, 0x40, 0xb1, 0x03, 0x83, 0xec, 0x89, 0xd6, 0x38, 0xee, 0x56, 0x89,
0x0b, 0x94, 0x1d, 0xf6, 0xfe, 0x99, 0x74, 0xd3, 0xa3, 0x7e, 0x06, 0xad, 0xfc, 0x14, 0x47, 0x9c,
0xb3, 0x87, 0x4e, 0xfb, 0xe6, 0x5c, 0x9a, 0xcc, 0xc9, 0x8d, 0x77, 0x3c, 0xc3, 0xc9, 0xcb, 0xde,
0x0e, 0x0d, 0x27, 0x2f, 0x7d, 0x02, 0x24, 0x8f, 0xa1, 0xaa, 0xbd, 0xd4, 0x91, 0xed, 0xfc, 0xdb,
0x99, 0xc9, 0xef, 0xda, 0xac, 0xe5, 0x1c, 0x37, 0xcc, 0x76, 0xdb, 0x73, 0x5f, 0xe2, 0x8a, 0xdc,
0x72, 0x6f, 0x6a, 0xcc, 0x98, 0xf9, 0x37, 0x2a, 0xc3, 0x98, 0x33, 0x5e, 0xd5, 0x0c, 0x63, 0xce,
0x7a, 0xe4, 0xe2, 0x61, 0x95, 0x9b, 0x08, 0x8d, 0xb0, 0x2a, 0x1f, 0xb7, 0x8d, 0xb0, 0x9a, 0x35,
0x8e, 0x32, 0xce, 0xb9, 0x71, 0xc3, 0xe0, 0x5c, 0x3e, 0x20, 0x19, 0x9c, 0x67, 0x4d, 0x2b, 0x1e,
0x90, 0xe2, 0x24, 0x40, 0xf4, 0xff, 0xc7, 0x66, 0x0e, 0x1d, 0xf6, 0x7b, 0x67, 0x50, 0x61, 0x56,
0xff, 0x9b, 0xa5, 0xca, 0xe5, 0xe3, 0xc8, 0x63, 0x3d, 0x9c, 0xca, 0xed, 0x4f, 0xa0, 0xa6, 0x97,
0x4b, 0xa2, 0xdf, 0x5d, 0x49, 0x79, 0xb5, 0xaf, 0xcf, 0x5c, 0x47, 0x5d, 0x18, 0x43, 0xbd, 0x67,
0x30, 0x18, 0x96, 0xf4, 0x34, 0x06, 0xc3, 0xb2, 0x66, 0x83, 0x74, 0x01, 0xb2, 0x56, 0x81, 0x5c,
0xd5, 0xc8, 0x0b, 0x3d, 0x88, 0xbd, 0x3d, 0x63, 0x35, 0x73, 0x63, 0xad, 0x93, 0x30, 0xdc, 0xb8,
0xd8, 0x77, 0x18, 0x6e, 0x5c, 0xd2, 0x80, 0x90, 0x5f, 0x40, 0xbb, 0x50, 0x99, 0x89, 0xee, 0xa3,
0xb3, 0xda, 0x0a, 0xfb, 0xdd, 0xf9, 0x44, 0x92, 0xff, 0xe1, 0xb2, 0xf8, 0x8b, 0xfa, 0xdb, 0xff,
0x0b, 0x00, 0x00, 0xff, 0xff, 0xb2, 0x2a, 0xb8, 0xd3, 0xaf, 0x1e, 0x00, 0x00,
}