diff --git a/client/broadcast.go b/client/broadcast.go index 203a3677065c..84c8877fab86 100644 --- a/client/broadcast.go +++ b/client/broadcast.go @@ -16,7 +16,7 @@ import ( // based on the context parameters. The result of the broadcast is parsed into // an intermediate structure which is logged if the context has a logger // defined. -func (ctx Context) BroadcastTx(txBytes []byte) (res sdk.TxResponse, err error) { +func (ctx Context) BroadcastTx(txBytes []byte) (res *sdk.TxResponse, err error) { switch ctx.BroadcastMode { case flags.BroadcastSync: res, err = ctx.BroadcastTxSync(txBytes) @@ -28,7 +28,7 @@ func (ctx Context) BroadcastTx(txBytes []byte) (res sdk.TxResponse, err error) { res, err = ctx.BroadcastTxCommit(txBytes) default: - return sdk.TxResponse{}, fmt.Errorf("unsupported return type %s; supported types: sync, async, block", ctx.BroadcastMode) + return nil, fmt.Errorf("unsupported return type %s; supported types: sync, async, block", ctx.BroadcastMode) } return res, err @@ -84,16 +84,16 @@ func CheckTendermintError(err error, txBytes []byte) *sdk.TxResponse { // NOTE: This should ideally not be used as the request may timeout but the tx // may still be included in a block. Use BroadcastTxAsync or BroadcastTxSync // instead. -func (ctx Context) BroadcastTxCommit(txBytes []byte) (sdk.TxResponse, error) { +func (ctx Context) BroadcastTxCommit(txBytes []byte) (*sdk.TxResponse, error) { node, err := ctx.GetNode() if err != nil { - return sdk.TxResponse{}, err + return nil, err } res, err := node.BroadcastTxCommit(txBytes) if err != nil { if errRes := CheckTendermintError(err, txBytes); errRes != nil { - return *errRes, nil + return errRes, nil } return sdk.NewResponseFormatBroadcastTxCommit(res), err @@ -112,15 +112,15 @@ func (ctx Context) BroadcastTxCommit(txBytes []byte) (sdk.TxResponse, error) { // BroadcastTxSync broadcasts transaction bytes to a Tendermint node // synchronously (i.e. returns after CheckTx execution). -func (ctx Context) BroadcastTxSync(txBytes []byte) (sdk.TxResponse, error) { +func (ctx Context) BroadcastTxSync(txBytes []byte) (*sdk.TxResponse, error) { node, err := ctx.GetNode() if err != nil { - return sdk.TxResponse{}, err + return nil, err } res, err := node.BroadcastTxSync(txBytes) if errRes := CheckTendermintError(err, txBytes); errRes != nil { - return *errRes, nil + return errRes, nil } return sdk.NewResponseFormatBroadcastTx(res), err @@ -128,15 +128,15 @@ func (ctx Context) BroadcastTxSync(txBytes []byte) (sdk.TxResponse, error) { // BroadcastTxAsync broadcasts transaction bytes to a Tendermint node // asynchronously (i.e. returns immediately). -func (ctx Context) BroadcastTxAsync(txBytes []byte) (sdk.TxResponse, error) { +func (ctx Context) BroadcastTxAsync(txBytes []byte) (*sdk.TxResponse, error) { node, err := ctx.GetNode() if err != nil { - return sdk.TxResponse{}, err + return nil, err } res, err := node.BroadcastTxAsync(txBytes) if errRes := CheckTendermintError(err, txBytes); errRes != nil { - return *errRes, nil + return errRes, nil } return sdk.NewResponseFormatBroadcastTx(res), err diff --git a/codec/types/any.go b/codec/types/any.go index abdd78dd8628..feb937f9ec20 100644 --- a/codec/types/any.go +++ b/codec/types/any.go @@ -83,6 +83,21 @@ func (any *Any) Pack(x proto.Message) error { return nil } +// UnsafePackAny packs the value x in the Any and instead of returning the error +// in the case of a packing failure, keeps the cached value. This should only +// be used in situations where compatibility is needed with amino. Amino-only +// values can safely be packed using this method when they will only be +// marshaled with amino and not protobuf +func UnsafePackAny(x interface{}) *Any { + if msg, ok := x.(proto.Message); ok { + any, err := NewAnyWithValue(msg) + if err != nil { + return any + } + } + return &Any{cachedValue: x} +} + // GetCachedValue returns the cached value from the Any if present func (any *Any) GetCachedValue() interface{} { return any.cachedValue diff --git a/proto/cosmos/cosmos.proto b/proto/cosmos/cosmos.proto index 42a7abbe030c..595d23c5f2bb 100644 --- a/proto/cosmos/cosmos.proto +++ b/proto/cosmos/cosmos.proto @@ -3,6 +3,7 @@ package cosmos; import "gogoproto/gogo.proto"; import "tendermint/abci/types/types.proto"; +import "google/protobuf/any.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types"; option (gogoproto.goproto_stringer_all) = false; @@ -94,3 +95,50 @@ message TxData { repeated MsgData data = 1; } + +// TxResponse defines a structure containing relevant tx data and metadata. The +// tags are stringified and the log is JSON decoded. +message TxResponse { + option (gogoproto.goproto_getters) = false; + + int64 height = 1; + string txhash = 2 [(gogoproto.customname) = "TxHash"]; + string codespace = 3; + uint32 code = 4; + string data = 5; + string raw_log = 6; + repeated ABCIMessageLog logs = 7 [(gogoproto.castrepeated) = "ABCIMessageLogs", (gogoproto.nullable) = false]; + string info = 8; + int64 gas_wanted = 9; + int64 gas_used = 10; + google.protobuf.Any tx = 11; + string timestamp = 12; +} + +// ABCIMessageLog defines a structure containing an indexed tx ABCI message log. +message ABCIMessageLog { + option (gogoproto.stringer) = true; + + uint32 msg_index = 1; + string log = 2; + + // Events contains a slice of Event objects that were emitted during some + // execution. + repeated StringEvent events = 3 [(gogoproto.castrepeated) = "StringEvents", (gogoproto.nullable) = false]; +} + +// StringAttribute defines en Event object wrapper where all the attributes +// contain key/value pairs that are strings instead of raw bytes. +message StringEvent { + option (gogoproto.stringer) = true; + + string type = 1; + repeated Attribute attributes = 2 [(gogoproto.nullable) = false]; +} + +// Attribute defines an attribute wrapper where the key and value are +// strings instead of raw bytes. +message Attribute { + string key = 1; + string value = 2; +} \ No newline at end of file diff --git a/types/cosmos.pb.go b/types/cosmos.pb.go index 0915284ece01..7ef27a510176 100644 --- a/types/cosmos.pb.go +++ b/types/cosmos.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + types1 "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" types "github.com/tendermint/tendermint/abci/types" @@ -481,6 +482,223 @@ func (m *TxData) GetData() []*MsgData { return nil } +// TxResponse defines a structure containing relevant tx data and metadata. The +// tags are stringified and the log is JSON decoded. +type TxResponse struct { + Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"` + TxHash string `protobuf:"bytes,2,opt,name=txhash,proto3" json:"txhash,omitempty"` + Codespace string `protobuf:"bytes,3,opt,name=codespace,proto3" json:"codespace,omitempty"` + Code uint32 `protobuf:"varint,4,opt,name=code,proto3" json:"code,omitempty"` + Data string `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"` + RawLog string `protobuf:"bytes,6,opt,name=raw_log,json=rawLog,proto3" json:"raw_log,omitempty"` + Logs ABCIMessageLogs `protobuf:"bytes,7,rep,name=logs,proto3,castrepeated=ABCIMessageLogs" json:"logs"` + Info string `protobuf:"bytes,8,opt,name=info,proto3" json:"info,omitempty"` + GasWanted int64 `protobuf:"varint,9,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty"` + GasUsed int64 `protobuf:"varint,10,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"` + Tx *types1.Any `protobuf:"bytes,11,opt,name=tx,proto3" json:"tx,omitempty"` + Timestamp string `protobuf:"bytes,12,opt,name=timestamp,proto3" json:"timestamp,omitempty"` +} + +func (m *TxResponse) Reset() { *m = TxResponse{} } +func (*TxResponse) ProtoMessage() {} +func (*TxResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_809e58c688fefd51, []int{10} +} +func (m *TxResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *TxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_TxResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *TxResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_TxResponse.Merge(m, src) +} +func (m *TxResponse) XXX_Size() int { + return m.Size() +} +func (m *TxResponse) XXX_DiscardUnknown() { + xxx_messageInfo_TxResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_TxResponse proto.InternalMessageInfo + +// ABCIMessageLog defines a structure containing an indexed tx ABCI message log. +type ABCIMessageLog struct { + MsgIndex uint32 `protobuf:"varint,1,opt,name=msg_index,json=msgIndex,proto3" json:"msg_index,omitempty"` + Log string `protobuf:"bytes,2,opt,name=log,proto3" json:"log,omitempty"` + // Events contains a slice of Event objects that were emitted during some + // execution. + Events StringEvents `protobuf:"bytes,3,rep,name=events,proto3,castrepeated=StringEvents" json:"events"` +} + +func (m *ABCIMessageLog) Reset() { *m = ABCIMessageLog{} } +func (*ABCIMessageLog) ProtoMessage() {} +func (*ABCIMessageLog) Descriptor() ([]byte, []int) { + return fileDescriptor_809e58c688fefd51, []int{11} +} +func (m *ABCIMessageLog) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ABCIMessageLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ABCIMessageLog.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ABCIMessageLog) XXX_Merge(src proto.Message) { + xxx_messageInfo_ABCIMessageLog.Merge(m, src) +} +func (m *ABCIMessageLog) XXX_Size() int { + return m.Size() +} +func (m *ABCIMessageLog) XXX_DiscardUnknown() { + xxx_messageInfo_ABCIMessageLog.DiscardUnknown(m) +} + +var xxx_messageInfo_ABCIMessageLog proto.InternalMessageInfo + +func (m *ABCIMessageLog) GetMsgIndex() uint32 { + if m != nil { + return m.MsgIndex + } + return 0 +} + +func (m *ABCIMessageLog) GetLog() string { + if m != nil { + return m.Log + } + return "" +} + +func (m *ABCIMessageLog) GetEvents() StringEvents { + if m != nil { + return m.Events + } + return nil +} + +// StringAttribute defines en Event object wrapper where all the attributes +// contain key/value pairs that are strings instead of raw bytes. +type StringEvent struct { + Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` + Attributes []Attribute `protobuf:"bytes,2,rep,name=attributes,proto3" json:"attributes"` +} + +func (m *StringEvent) Reset() { *m = StringEvent{} } +func (*StringEvent) ProtoMessage() {} +func (*StringEvent) Descriptor() ([]byte, []int) { + return fileDescriptor_809e58c688fefd51, []int{12} +} +func (m *StringEvent) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *StringEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_StringEvent.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *StringEvent) XXX_Merge(src proto.Message) { + xxx_messageInfo_StringEvent.Merge(m, src) +} +func (m *StringEvent) XXX_Size() int { + return m.Size() +} +func (m *StringEvent) XXX_DiscardUnknown() { + xxx_messageInfo_StringEvent.DiscardUnknown(m) +} + +var xxx_messageInfo_StringEvent proto.InternalMessageInfo + +func (m *StringEvent) GetType() string { + if m != nil { + return m.Type + } + return "" +} + +func (m *StringEvent) GetAttributes() []Attribute { + if m != nil { + return m.Attributes + } + return nil +} + +// Attribute defines an attribute wrapper where the key and value are +// strings instead of raw bytes. +type Attribute struct { + Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` + Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` +} + +func (m *Attribute) Reset() { *m = Attribute{} } +func (*Attribute) ProtoMessage() {} +func (*Attribute) Descriptor() ([]byte, []int) { + return fileDescriptor_809e58c688fefd51, []int{13} +} +func (m *Attribute) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Attribute) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Attribute.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Attribute) XXX_Merge(src proto.Message) { + xxx_messageInfo_Attribute.Merge(m, src) +} +func (m *Attribute) XXX_Size() int { + return m.Size() +} +func (m *Attribute) XXX_DiscardUnknown() { + xxx_messageInfo_Attribute.DiscardUnknown(m) +} + +var xxx_messageInfo_Attribute proto.InternalMessageInfo + +func (m *Attribute) GetKey() string { + if m != nil { + return m.Key + } + return "" +} + +func (m *Attribute) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + func init() { proto.RegisterType((*Coin)(nil), "cosmos.Coin") proto.RegisterType((*DecCoin)(nil), "cosmos.DecCoin") @@ -492,48 +710,72 @@ func init() { proto.RegisterType((*SimulationResponse)(nil), "cosmos.SimulationResponse") proto.RegisterType((*MsgData)(nil), "cosmos.MsgData") proto.RegisterType((*TxData)(nil), "cosmos.TxData") + proto.RegisterType((*TxResponse)(nil), "cosmos.TxResponse") + proto.RegisterType((*ABCIMessageLog)(nil), "cosmos.ABCIMessageLog") + proto.RegisterType((*StringEvent)(nil), "cosmos.StringEvent") + proto.RegisterType((*Attribute)(nil), "cosmos.Attribute") } func init() { proto.RegisterFile("cosmos/cosmos.proto", fileDescriptor_809e58c688fefd51) } var fileDescriptor_809e58c688fefd51 = []byte{ - // 567 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xc1, 0x6f, 0xd3, 0x3e, - 0x14, 0x4e, 0x96, 0xfc, 0xd2, 0xee, 0x75, 0xda, 0x7e, 0x78, 0x43, 0x2a, 0x13, 0x24, 0x25, 0x93, - 0xd0, 0x90, 0x20, 0x95, 0xba, 0x9d, 0x7a, 0x40, 0x22, 0x14, 0x4d, 0x45, 0x42, 0x42, 0x61, 0x80, - 0xc4, 0x65, 0x72, 0x13, 0x2f, 0x44, 0x34, 0x76, 0x55, 0xbb, 0x40, 0x6f, 0x3b, 0x72, 0xe4, 0x4f, - 0xd8, 0x9f, 0xb3, 0x63, 0x8f, 0x13, 0x42, 0x11, 0xb4, 0x17, 0xce, 0x3b, 0x72, 0x42, 0xb6, 0xb3, - 0x66, 0xdb, 0x91, 0x4b, 0xf2, 0xfc, 0xde, 0xf7, 0x3e, 0x7f, 0xfe, 0xfc, 0x0c, 0x9b, 0x31, 0xe3, - 0x39, 0xe3, 0x6d, 0xfd, 0x0b, 0x46, 0x63, 0x26, 0x18, 0x72, 0xf4, 0x6a, 0x7b, 0x2b, 0x65, 0x29, - 0x53, 0xa9, 0xb6, 0x8c, 0x74, 0x75, 0xfb, 0xbe, 0x20, 0x34, 0x21, 0xe3, 0x3c, 0xa3, 0xa2, 0x8d, - 0x07, 0x71, 0xd6, 0x16, 0xd3, 0x11, 0xe1, 0xfa, 0xab, 0x21, 0xfe, 0x01, 0xd8, 0xcf, 0x58, 0x46, - 0xd1, 0x16, 0xfc, 0x97, 0x10, 0xca, 0xf2, 0xa6, 0xd9, 0x32, 0x77, 0x57, 0x23, 0xbd, 0x40, 0x3b, - 0xe0, 0xe0, 0x9c, 0x4d, 0xa8, 0x68, 0xae, 0xc8, 0x74, 0xd8, 0x38, 0x2b, 0x3c, 0xe3, 0x7b, 0xe1, - 0x59, 0x7d, 0x2a, 0xa2, 0xb2, 0xd4, 0xb5, 0x7f, 0x9f, 0x7a, 0xa6, 0xff, 0x02, 0x6a, 0x3d, 0x12, - 0xff, 0x0b, 0x57, 0x8f, 0xc4, 0x37, 0xb8, 0x1e, 0x42, 0xbd, 0x4f, 0xc5, 0x2b, 0x75, 0xc2, 0x7b, - 0x60, 0x65, 0x54, 0x68, 0xaa, 0xeb, 0xfb, 0xcb, 0xbc, 0x84, 0xf6, 0x48, 0xbc, 0x84, 0x26, 0x24, - 0xbe, 0x09, 0x95, 0xf4, 0x32, 0xef, 0x87, 0xb0, 0xf6, 0x16, 0x0f, 0x9f, 0x26, 0xc9, 0x98, 0x70, - 0x4e, 0x38, 0x7a, 0x04, 0xab, 0xf8, 0x72, 0xd1, 0x34, 0x5b, 0xd6, 0xee, 0x5a, 0xb8, 0xfe, 0xa7, - 0xf0, 0xa0, 0x02, 0x45, 0x15, 0xa0, 0x6b, 0x9f, 0xfc, 0x68, 0x99, 0x3e, 0x83, 0xda, 0x01, 0xe6, - 0x7d, 0x7a, 0xcc, 0xd0, 0x3e, 0x40, 0x8a, 0xf9, 0xd1, 0x67, 0x4c, 0x05, 0x49, 0xd4, 0xa6, 0x76, - 0x78, 0xfb, 0xa2, 0xf0, 0x6e, 0x4d, 0x71, 0x3e, 0xec, 0xfa, 0x55, 0xcd, 0x8f, 0x56, 0x53, 0xcc, - 0xdf, 0xa9, 0x18, 0x05, 0x50, 0x97, 0x95, 0x09, 0x27, 0x89, 0xf2, 0xc1, 0x0e, 0x37, 0x2f, 0x0a, - 0x6f, 0xa3, 0xea, 0x91, 0x15, 0x3f, 0xaa, 0xa5, 0x98, 0xbf, 0x91, 0xd1, 0x08, 0x9c, 0x88, 0xf0, - 0xc9, 0x50, 0x20, 0x04, 0x76, 0x82, 0x05, 0x56, 0x3b, 0xad, 0x45, 0x2a, 0x46, 0xff, 0x83, 0x35, - 0x64, 0xa9, 0x36, 0x34, 0x92, 0x21, 0xea, 0x82, 0x43, 0x3e, 0x11, 0x2a, 0x78, 0xd3, 0x6a, 0x59, - 0xbb, 0x8d, 0xce, 0xdd, 0xa0, 0x9a, 0x81, 0x40, 0xce, 0x40, 0xa0, 0x6f, 0xff, 0xb9, 0x04, 0x85, - 0xb6, 0x34, 0x29, 0x2a, 0x3b, 0xba, 0xf6, 0xd7, 0x53, 0xcf, 0xf0, 0xc7, 0x80, 0x5e, 0x67, 0xf9, - 0x64, 0x88, 0x45, 0xc6, 0x68, 0x44, 0xf8, 0x88, 0x51, 0x4e, 0xd0, 0xbe, 0xd6, 0x9d, 0xd1, 0x63, - 0xa6, 0x14, 0x34, 0x3a, 0x1b, 0x41, 0x39, 0x89, 0xa5, 0x21, 0x61, 0x5d, 0x92, 0xcd, 0x0a, 0xcf, - 0x54, 0xea, 0x95, 0x47, 0x0f, 0xc0, 0x19, 0x2b, 0xf5, 0x4a, 0x62, 0xa3, 0xb3, 0x7e, 0xd9, 0xa3, - 0xcf, 0x14, 0x95, 0x55, 0xff, 0x09, 0xd4, 0x5e, 0xf2, 0xb4, 0x27, 0x8f, 0x74, 0x07, 0xea, 0x39, - 0x4f, 0x8f, 0xa4, 0xca, 0x72, 0x7e, 0x6a, 0x39, 0x4f, 0x0f, 0xa7, 0x23, 0xb2, 0x74, 0x60, 0xa5, - 0x72, 0xa0, 0xbc, 0x96, 0x3d, 0x70, 0x0e, 0xbf, 0xa8, 0xf6, 0x9d, 0xa5, 0x4b, 0xd6, 0x55, 0x8d, - 0x25, 0xfb, 0xd5, 0xa6, 0xb0, 0x77, 0xfe, 0xcb, 0x35, 0x4e, 0xe6, 0xae, 0x71, 0x36, 0x77, 0xcd, - 0xd9, 0xdc, 0x35, 0x7f, 0xce, 0x5d, 0xf3, 0xdb, 0xc2, 0x35, 0x66, 0x0b, 0xd7, 0x38, 0x5f, 0xb8, - 0xc6, 0x7b, 0x3f, 0xcd, 0xc4, 0x87, 0xc9, 0x20, 0x88, 0x59, 0xde, 0xbe, 0xf6, 0xfa, 0x1e, 0xf3, - 0xe4, 0xa3, 0x7e, 0x46, 0x03, 0x47, 0xbd, 0xa3, 0xbd, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x39, - 0x8e, 0x45, 0x07, 0x9f, 0x03, 0x00, 0x00, + // 884 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0x4d, 0x6f, 0x1b, 0x45, + 0x18, 0xf6, 0x7a, 0xb7, 0x6b, 0xfb, 0xb5, 0x9b, 0xd0, 0x49, 0x68, 0x37, 0xa5, 0xf5, 0x9a, 0x2d, + 0x42, 0x41, 0x82, 0xb5, 0x94, 0x56, 0x42, 0xf2, 0x01, 0x29, 0x1b, 0xa3, 0x62, 0xd4, 0x4a, 0x68, + 0x1b, 0x40, 0xe2, 0x12, 0xc6, 0xde, 0xc9, 0x78, 0x55, 0xef, 0x8c, 0xe5, 0x19, 0x37, 0xf6, 0xad, + 0x07, 0x0e, 0x3d, 0xf2, 0x13, 0x7a, 0xe6, 0x97, 0xf4, 0x98, 0x63, 0x85, 0x90, 0x01, 0xe7, 0xc2, + 0xb9, 0x47, 0x4e, 0x68, 0x66, 0xd6, 0x6b, 0x3b, 0xe2, 0xd4, 0x4b, 0xf2, 0x7e, 0x7f, 0x3c, 0xef, + 0xe3, 0x59, 0xd8, 0x1b, 0x70, 0x91, 0x71, 0xd1, 0x36, 0xff, 0xc2, 0xf1, 0x84, 0x4b, 0x8e, 0x5c, + 0xa3, 0xdd, 0xdd, 0xa7, 0x9c, 0x72, 0x6d, 0x6a, 0x2b, 0xc9, 0x78, 0xef, 0x7e, 0x2c, 0x09, 0x4b, + 0xc8, 0x24, 0x4b, 0x99, 0x6c, 0xe3, 0xfe, 0x20, 0x6d, 0xcb, 0xf9, 0x98, 0x08, 0xf3, 0x37, 0x0f, + 0x39, 0xa0, 0x9c, 0xd3, 0x11, 0x69, 0x6b, 0xad, 0x3f, 0x3d, 0x6f, 0x63, 0x36, 0x37, 0xae, 0xe0, + 0x31, 0x38, 0x27, 0x3c, 0x65, 0x68, 0x1f, 0x6e, 0x24, 0x84, 0xf1, 0xcc, 0xb3, 0x5a, 0xd6, 0x61, + 0x2d, 0x36, 0x0a, 0x7a, 0x00, 0x2e, 0xce, 0xf8, 0x94, 0x49, 0xaf, 0xac, 0xcc, 0x51, 0xfd, 0xcd, + 0xc2, 0x2f, 0xfd, 0xbe, 0xf0, 0xed, 0x1e, 0x93, 0x71, 0xee, 0xea, 0x38, 0xff, 0xbc, 0xf6, 0xad, + 0xe0, 0x5b, 0xa8, 0x74, 0xc9, 0xe0, 0x7d, 0x6a, 0x75, 0xc9, 0xe0, 0x5a, 0xad, 0xcf, 0xa0, 0xda, + 0x63, 0xf2, 0x3b, 0xbd, 0xfc, 0x7d, 0xb0, 0x53, 0x26, 0x4d, 0xa9, 0xed, 0xfe, 0xca, 0xae, 0x42, + 0xbb, 0x64, 0x50, 0x84, 0x26, 0x64, 0x70, 0x3d, 0x54, 0x95, 0x57, 0xf6, 0x20, 0x82, 0xc6, 0x0f, + 0x78, 0x74, 0x9c, 0x24, 0x13, 0x22, 0x04, 0x11, 0xe8, 0x73, 0xa8, 0xe1, 0x95, 0xe2, 0x59, 0x2d, + 0xfb, 0xb0, 0x11, 0xed, 0xfc, 0xbb, 0xf0, 0x61, 0x1d, 0x14, 0xaf, 0x03, 0x3a, 0xce, 0xcb, 0x3f, + 0x5a, 0x56, 0xc0, 0xa1, 0xf2, 0x18, 0x8b, 0x1e, 0x3b, 0xe7, 0xe8, 0x11, 0x00, 0xc5, 0xe2, 0xec, + 0x02, 0x33, 0x49, 0x12, 0xdd, 0xd4, 0x89, 0x3e, 0x7c, 0xb7, 0xf0, 0x6f, 0xcd, 0x71, 0x36, 0xea, + 0x04, 0x6b, 0x5f, 0x10, 0xd7, 0x28, 0x16, 0x3f, 0x6a, 0x19, 0x85, 0x50, 0x55, 0x9e, 0xa9, 0x20, + 0x89, 0xc6, 0xc1, 0x89, 0xf6, 0xde, 0x2d, 0xfc, 0xdd, 0x75, 0x8e, 0xf2, 0x04, 0x71, 0x85, 0x62, + 0xf1, 0xbd, 0x92, 0xc6, 0xe0, 0xc6, 0x44, 0x4c, 0x47, 0x12, 0x21, 0x70, 0x12, 0x2c, 0xb1, 0xee, + 0xd4, 0x88, 0xb5, 0x8c, 0x3e, 0x00, 0x7b, 0xc4, 0xa9, 0x01, 0x34, 0x56, 0x22, 0xea, 0x80, 0x4b, + 0x5e, 0x10, 0x26, 0x85, 0x67, 0xb7, 0xec, 0xc3, 0xfa, 0xd1, 0xbd, 0x70, 0x4d, 0x8f, 0x50, 0xd1, + 0x23, 0x34, 0xc4, 0xf8, 0x5a, 0x05, 0x45, 0x8e, 0x02, 0x29, 0xce, 0x33, 0x3a, 0xce, 0xab, 0xd7, + 0x7e, 0x29, 0x98, 0x00, 0x7a, 0x96, 0x66, 0xd3, 0x11, 0x96, 0x29, 0x67, 0x31, 0x11, 0x63, 0xce, + 0x04, 0x41, 0x8f, 0xcc, 0xdc, 0x29, 0x3b, 0xe7, 0x7a, 0x82, 0xfa, 0xd1, 0x6e, 0x98, 0x93, 0x34, + 0x07, 0x24, 0xaa, 0xaa, 0x62, 0x97, 0x0b, 0xdf, 0xd2, 0xd3, 0x6b, 0x8c, 0x3e, 0x05, 0x77, 0xa2, + 0xa7, 0xd7, 0x23, 0xd6, 0x8f, 0x76, 0x56, 0x39, 0x66, 0xa7, 0x38, 0xf7, 0x06, 0x5f, 0x41, 0xe5, + 0xa9, 0xa0, 0x5d, 0xb5, 0xd2, 0x01, 0x54, 0x33, 0x41, 0xcf, 0xd4, 0x94, 0x39, 0x7f, 0x2a, 0x99, + 0xa0, 0xa7, 0xf3, 0x31, 0x29, 0x10, 0x28, 0xaf, 0x11, 0xc8, 0xcf, 0xf2, 0x10, 0xdc, 0xd3, 0x99, + 0x4e, 0x7f, 0x50, 0xa0, 0x64, 0x6f, 0xce, 0x98, 0x57, 0xdf, 0x4a, 0xfa, 0xc5, 0x06, 0x38, 0x9d, + 0x15, 0x1b, 0xde, 0x06, 0x77, 0x48, 0x52, 0x3a, 0x34, 0x5c, 0xb3, 0xe3, 0x5c, 0x43, 0x01, 0xb8, + 0x72, 0x36, 0xc4, 0x62, 0x98, 0xf3, 0x16, 0x96, 0x0b, 0xdf, 0x3d, 0x9d, 0x7d, 0x83, 0xc5, 0x30, + 0xce, 0x3d, 0xe8, 0x1e, 0xd4, 0x06, 0x3c, 0x21, 0x62, 0x8c, 0x07, 0xc4, 0xb3, 0xf5, 0xd4, 0x6b, + 0x83, 0x9a, 0x5b, 0x29, 0x9e, 0xd3, 0xb2, 0x0e, 0x6f, 0xc6, 0x5a, 0x2e, 0x76, 0xb9, 0xa1, 0x83, + 0xcd, 0x35, 0xef, 0x40, 0x65, 0x82, 0x2f, 0xce, 0xd4, 0x45, 0x5d, 0x6d, 0x76, 0x27, 0xf8, 0xe2, + 0x09, 0xa7, 0xe8, 0x04, 0x9c, 0x11, 0xa7, 0xc2, 0xab, 0xe8, 0xa5, 0x6e, 0xaf, 0x96, 0x3a, 0x8e, + 0x4e, 0x7a, 0x4f, 0x89, 0x10, 0x98, 0x92, 0x27, 0x9c, 0x46, 0x77, 0x14, 0xfe, 0xbf, 0xfd, 0xe9, + 0xef, 0x6e, 0xdb, 0x45, 0xac, 0x93, 0x55, 0x47, 0x7d, 0xbd, 0xaa, 0xe9, 0xa8, 0x64, 0x74, 0x7f, + 0x8b, 0xc3, 0x35, 0xbd, 0xf7, 0x06, 0x59, 0x0f, 0x36, 0xc8, 0x0a, 0xda, 0xb9, 0xe2, 0x25, 0xfa, + 0x04, 0xca, 0x72, 0xe6, 0xd5, 0xf5, 0x55, 0xf7, 0x43, 0xf3, 0xbe, 0x84, 0xab, 0xf7, 0x25, 0x3c, + 0x66, 0xf3, 0xb8, 0x2c, 0x67, 0x0a, 0x17, 0x99, 0x66, 0x44, 0x48, 0x9c, 0x8d, 0xbd, 0x86, 0xc1, + 0xa5, 0x30, 0xe4, 0x7c, 0x7b, 0x65, 0xc1, 0xce, 0xf6, 0xc4, 0xe8, 0x23, 0xa8, 0x29, 0x0e, 0xa4, + 0x2c, 0x21, 0x33, 0x7d, 0x8d, 0x9b, 0xb1, 0x22, 0x45, 0x4f, 0xe9, 0xff, 0xc3, 0xf9, 0xe3, 0x6b, + 0x9c, 0xdf, 0x5b, 0x01, 0xf4, 0x4c, 0x4e, 0x52, 0x46, 0x0d, 0xd5, 0xf7, 0x73, 0x74, 0x1a, 0x1b, + 0x46, 0xb1, 0xa6, 0xbe, 0x66, 0xc4, 0xcf, 0x50, 0xdf, 0xf0, 0x2a, 0xc4, 0x36, 0x68, 0xa8, 0x65, + 0xf4, 0x25, 0x00, 0x96, 0x72, 0x92, 0xf6, 0xa7, 0x92, 0x08, 0xaf, 0xac, 0xfb, 0xdd, 0x2a, 0x0e, + 0xb2, 0xf2, 0xe4, 0x3f, 0xac, 0x8d, 0xd0, 0x82, 0xa8, 0xb5, 0x22, 0x48, 0x6d, 0xf2, 0x9c, 0xcc, + 0xf3, 0xf2, 0x4a, 0x54, 0x2f, 0xe7, 0x0b, 0x3c, 0x9a, 0x92, 0x7c, 0x3b, 0xa3, 0x44, 0xdd, 0xb7, + 0x7f, 0x37, 0x4b, 0x2f, 0x97, 0xcd, 0xd2, 0x9b, 0x65, 0xd3, 0xba, 0x5c, 0x36, 0xad, 0xbf, 0x96, + 0x4d, 0xeb, 0xd7, 0xab, 0x66, 0xe9, 0xf2, 0xaa, 0x59, 0x7a, 0x7b, 0xd5, 0x2c, 0xfd, 0x14, 0xd0, + 0x54, 0x0e, 0xa7, 0xfd, 0x70, 0xc0, 0xb3, 0xf6, 0xd6, 0x17, 0xe4, 0x0b, 0x91, 0x3c, 0x37, 0x9f, + 0x82, 0xbe, 0xab, 0xaf, 0xf3, 0xf0, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x86, 0x78, 0x6d, + 0x63, 0x06, 0x00, 0x00, } func (this *Coin) Equal(that interface{}) bool { @@ -971,124 +1213,365 @@ func (m *TxData) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func encodeVarintCosmos(dAtA []byte, offset int, v uint64) int { - offset -= sovCosmos(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ - } - dAtA[offset] = uint8(v) - return base -} -func (m *Coin) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Denom) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) - } - l = m.Amount.Size() - n += 1 + l + sovCosmos(uint64(l)) - return n -} - -func (m *DecCoin) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Denom) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) +func (m *TxResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err } - l = m.Amount.Size() - n += 1 + l + sovCosmos(uint64(l)) - return n + return dAtA[:n], nil } -func (m *IntProto) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Int.Size() - n += 1 + l + sovCosmos(uint64(l)) - return n +func (m *TxResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *DecProto) Size() (n int) { - if m == nil { - return 0 - } +func (m *TxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i var l int _ = l - l = m.Dec.Size() - n += 1 + l + sovCosmos(uint64(l)) - return n -} - -func (m *ValAddresses) Size() (n int) { - if m == nil { - return 0 + if len(m.Timestamp) > 0 { + i -= len(m.Timestamp) + copy(dAtA[i:], m.Timestamp) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.Timestamp))) + i-- + dAtA[i] = 0x62 } - var l int - _ = l - if len(m.Addresses) > 0 { - for _, b := range m.Addresses { - l = len(b) - n += 1 + l + sovCosmos(uint64(l)) + if m.Tx != nil { + { + size, err := m.Tx.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCosmos(dAtA, i, uint64(size)) } + i-- + dAtA[i] = 0x5a } - return n -} - -func (m *GasInfo) Size() (n int) { - if m == nil { - return 0 + if m.GasUsed != 0 { + i = encodeVarintCosmos(dAtA, i, uint64(m.GasUsed)) + i-- + dAtA[i] = 0x50 } - var l int - _ = l if m.GasWanted != 0 { - n += 1 + sovCosmos(uint64(m.GasWanted)) + i = encodeVarintCosmos(dAtA, i, uint64(m.GasWanted)) + i-- + dAtA[i] = 0x48 } - if m.GasUsed != 0 { - n += 1 + sovCosmos(uint64(m.GasUsed)) + if len(m.Info) > 0 { + i -= len(m.Info) + copy(dAtA[i:], m.Info) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.Info))) + i-- + dAtA[i] = 0x42 } - return n -} - -func (m *Result) Size() (n int) { - if m == nil { - return 0 + if len(m.Logs) > 0 { + for iNdEx := len(m.Logs) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Logs[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCosmos(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } } - var l int - _ = l - l = len(m.Data) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + if len(m.RawLog) > 0 { + i -= len(m.RawLog) + copy(dAtA[i:], m.RawLog) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.RawLog))) + i-- + dAtA[i] = 0x32 } - l = len(m.Log) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + if len(m.Data) > 0 { + i -= len(m.Data) + copy(dAtA[i:], m.Data) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.Data))) + i-- + dAtA[i] = 0x2a } - if len(m.Events) > 0 { - for _, e := range m.Events { - l = e.Size() - n += 1 + l + sovCosmos(uint64(l)) - } + if m.Code != 0 { + i = encodeVarintCosmos(dAtA, i, uint64(m.Code)) + i-- + dAtA[i] = 0x20 } - return n -} - -func (m *SimulationResponse) Size() (n int) { - if m == nil { + if len(m.Codespace) > 0 { + i -= len(m.Codespace) + copy(dAtA[i:], m.Codespace) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.Codespace))) + i-- + dAtA[i] = 0x1a + } + if len(m.TxHash) > 0 { + i -= len(m.TxHash) + copy(dAtA[i:], m.TxHash) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.TxHash))) + i-- + dAtA[i] = 0x12 + } + if m.Height != 0 { + i = encodeVarintCosmos(dAtA, i, uint64(m.Height)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ABCIMessageLog) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ABCIMessageLog) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ABCIMessageLog) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Events) > 0 { + for iNdEx := len(m.Events) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Events[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCosmos(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if len(m.Log) > 0 { + i -= len(m.Log) + copy(dAtA[i:], m.Log) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.Log))) + i-- + dAtA[i] = 0x12 + } + if m.MsgIndex != 0 { + i = encodeVarintCosmos(dAtA, i, uint64(m.MsgIndex)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *StringEvent) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *StringEvent) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *StringEvent) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Attributes) > 0 { + for iNdEx := len(m.Attributes) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Attributes[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCosmos(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.Type) > 0 { + i -= len(m.Type) + copy(dAtA[i:], m.Type) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.Type))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *Attribute) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Attribute) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Attribute) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Value) > 0 { + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x12 + } + if len(m.Key) > 0 { + i -= len(m.Key) + copy(dAtA[i:], m.Key) + i = encodeVarintCosmos(dAtA, i, uint64(len(m.Key))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintCosmos(dAtA []byte, offset int, v uint64) int { + offset -= sovCosmos(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *Coin) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Denom) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + l = m.Amount.Size() + n += 1 + l + sovCosmos(uint64(l)) + return n +} + +func (m *DecCoin) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Denom) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + l = m.Amount.Size() + n += 1 + l + sovCosmos(uint64(l)) + return n +} + +func (m *IntProto) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Int.Size() + n += 1 + l + sovCosmos(uint64(l)) + return n +} + +func (m *DecProto) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Dec.Size() + n += 1 + l + sovCosmos(uint64(l)) + return n +} + +func (m *ValAddresses) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Addresses) > 0 { + for _, b := range m.Addresses { + l = len(b) + n += 1 + l + sovCosmos(uint64(l)) + } + } + return n +} + +func (m *GasInfo) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.GasWanted != 0 { + n += 1 + sovCosmos(uint64(m.GasWanted)) + } + if m.GasUsed != 0 { + n += 1 + sovCosmos(uint64(m.GasUsed)) + } + return n +} + +func (m *Result) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Data) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + l = len(m.Log) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + if len(m.Events) > 0 { + for _, e := range m.Events { + l = e.Size() + n += 1 + l + sovCosmos(uint64(l)) + } + } + return n +} + +func (m *SimulationResponse) Size() (n int) { + if m == nil { return 0 } var l int @@ -1134,28 +1617,141 @@ func (m *TxData) Size() (n int) { return n } -func sovCosmos(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozCosmos(x uint64) (n int) { - return sovCosmos(uint64((x << 1) ^ uint64((int64(x) >> 63)))) -} -func (this *ValAddresses) String() string { - if this == nil { - return "nil" +func (m *TxResponse) Size() (n int) { + if m == nil { + return 0 } - s := strings.Join([]string{`&ValAddresses{`, - `Addresses:` + fmt.Sprintf("%v", this.Addresses) + `,`, - `}`, - }, "") - return s -} -func (this *MsgData) String() string { - if this == nil { - return "nil" + var l int + _ = l + if m.Height != 0 { + n += 1 + sovCosmos(uint64(m.Height)) } - s := strings.Join([]string{`&MsgData{`, - `MsgType:` + fmt.Sprintf("%v", this.MsgType) + `,`, + l = len(m.TxHash) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + l = len(m.Codespace) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + if m.Code != 0 { + n += 1 + sovCosmos(uint64(m.Code)) + } + l = len(m.Data) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + l = len(m.RawLog) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + if len(m.Logs) > 0 { + for _, e := range m.Logs { + l = e.Size() + n += 1 + l + sovCosmos(uint64(l)) + } + } + l = len(m.Info) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + if m.GasWanted != 0 { + n += 1 + sovCosmos(uint64(m.GasWanted)) + } + if m.GasUsed != 0 { + n += 1 + sovCosmos(uint64(m.GasUsed)) + } + if m.Tx != nil { + l = m.Tx.Size() + n += 1 + l + sovCosmos(uint64(l)) + } + l = len(m.Timestamp) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + return n +} + +func (m *ABCIMessageLog) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.MsgIndex != 0 { + n += 1 + sovCosmos(uint64(m.MsgIndex)) + } + l = len(m.Log) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + if len(m.Events) > 0 { + for _, e := range m.Events { + l = e.Size() + n += 1 + l + sovCosmos(uint64(l)) + } + } + return n +} + +func (m *StringEvent) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Type) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + if len(m.Attributes) > 0 { + for _, e := range m.Attributes { + l = e.Size() + n += 1 + l + sovCosmos(uint64(l)) + } + } + return n +} + +func (m *Attribute) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Key) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovCosmos(uint64(l)) + } + return n +} + +func sovCosmos(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozCosmos(x uint64) (n int) { + return sovCosmos(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (this *ValAddresses) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&ValAddresses{`, + `Addresses:` + fmt.Sprintf("%v", this.Addresses) + `,`, + `}`, + }, "") + return s +} +func (this *MsgData) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&MsgData{`, + `MsgType:` + fmt.Sprintf("%v", this.MsgType) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `}`, }, "") @@ -1176,6 +1772,39 @@ func (this *TxData) String() string { }, "") return s } +func (this *ABCIMessageLog) String() string { + if this == nil { + return "nil" + } + repeatedStringForEvents := "[]StringEvent{" + for _, f := range this.Events { + repeatedStringForEvents += strings.Replace(strings.Replace(f.String(), "StringEvent", "StringEvent", 1), `&`, ``, 1) + "," + } + repeatedStringForEvents += "}" + s := strings.Join([]string{`&ABCIMessageLog{`, + `MsgIndex:` + fmt.Sprintf("%v", this.MsgIndex) + `,`, + `Log:` + fmt.Sprintf("%v", this.Log) + `,`, + `Events:` + repeatedStringForEvents + `,`, + `}`, + }, "") + return s +} +func (this *StringEvent) String() string { + if this == nil { + return "nil" + } + repeatedStringForAttributes := "[]Attribute{" + for _, f := range this.Attributes { + repeatedStringForAttributes += fmt.Sprintf("%v", f) + "," + } + repeatedStringForAttributes += "}" + s := strings.Join([]string{`&StringEvent{`, + `Type:` + fmt.Sprintf("%v", this.Type) + `,`, + `Attributes:` + repeatedStringForAttributes + `,`, + `}`, + }, "") + return s +} func valueToStringCosmos(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { @@ -1215,7 +1844,629 @@ func (m *Coin) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Denom", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Denom", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Denom = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCosmos(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *DecCoin) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: DecCoin: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DecCoin: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Denom", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Denom = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCosmos(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *IntProto) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: IntProto: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IntProto: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Int", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Int.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCosmos(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *DecProto) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: DecProto: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DecProto: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Dec", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Dec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCosmos(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ValAddresses) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ValAddresses: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ValAddresses: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthCosmos + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Addresses = append(m.Addresses, make([]byte, postIndex-iNdEx)) + copy(m.Addresses[len(m.Addresses)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCosmos(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *GasInfo) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: GasInfo: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GasInfo: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GasWanted", wireType) + } + m.GasWanted = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GasWanted |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GasUsed", wireType) + } + m.GasUsed = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GasUsed |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipCosmos(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCosmos + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Result) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Result: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Result: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthCosmos + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Log", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -1243,13 +2494,13 @@ func (m *Coin) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Denom = string(dAtA[iNdEx:postIndex]) + m.Log = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 2: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Events", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1259,23 +2510,23 @@ func (m *Coin) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Events = append(m.Events, types.Event{}) + if err := m.Events[len(m.Events)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -1303,7 +2554,7 @@ func (m *Coin) Unmarshal(dAtA []byte) error { } return nil } -func (m *DecCoin) Unmarshal(dAtA []byte) error { +func (m *SimulationResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -1326,17 +2577,17 @@ func (m *DecCoin) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: DecCoin: wiretype end group for non-group") + return fmt.Errorf("proto: SimulationResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: DecCoin: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: SimulationResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Denom", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field GasInfo", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1346,29 +2597,30 @@ func (m *DecCoin) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - m.Denom = string(dAtA[iNdEx:postIndex]) + if err := m.GasInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Result", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1378,23 +2630,25 @@ func (m *DecCoin) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if m.Result == nil { + m.Result = &Result{} + } + if err := m.Result.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -1422,7 +2676,7 @@ func (m *DecCoin) Unmarshal(dAtA []byte) error { } return nil } -func (m *IntProto) Unmarshal(dAtA []byte) error { +func (m *MsgData) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -1445,15 +2699,15 @@ func (m *IntProto) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: IntProto: wiretype end group for non-group") + return fmt.Errorf("proto: MsgData: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: IntProto: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MsgData: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Int", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field MsgType", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -1481,8 +2735,40 @@ func (m *IntProto) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Int.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.MsgType = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthCosmos + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} } iNdEx = postIndex default: @@ -1509,7 +2795,7 @@ func (m *IntProto) Unmarshal(dAtA []byte) error { } return nil } -func (m *DecProto) Unmarshal(dAtA []byte) error { +func (m *TxData) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -1532,17 +2818,17 @@ func (m *DecProto) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: DecProto: wiretype end group for non-group") + return fmt.Errorf("proto: TxData: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: DecProto: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: TxData: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Dec", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1552,23 +2838,23 @@ func (m *DecProto) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Dec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Data = append(m.Data, &MsgData{}) + if err := m.Data[len(m.Data)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -1596,7 +2882,7 @@ func (m *DecProto) Unmarshal(dAtA []byte) error { } return nil } -func (m *ValAddresses) Unmarshal(dAtA []byte) error { +func (m *TxResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -1619,17 +2905,36 @@ func (m *ValAddresses) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ValAddresses: wiretype end group for non-group") + return fmt.Errorf("proto: TxResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ValAddresses: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: TxResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Height", wireType) + } + m.Height = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Height |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TxHash", wireType) } - var byteLen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1639,82 +2944,80 @@ func (m *ValAddresses) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + byteLen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - m.Addresses = append(m.Addresses, make([]byte, postIndex-iNdEx)) - copy(m.Addresses[len(m.Addresses)-1], dAtA[iNdEx:postIndex]) + m.TxHash = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Codespace", wireType) } - if skippy < 0 { + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos } - if (iNdEx + skippy) < 0 { + postIndex := iNdEx + intStringLen + if postIndex < 0 { return ErrInvalidLengthCosmos } - if (iNdEx + skippy) > l { + if postIndex > l { return io.ErrUnexpectedEOF } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *GasInfo) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF + m.Codespace = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Code", wireType) } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break + m.Code = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Code |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: GasInfo: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: GasInfo: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field GasWanted", wireType) + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } - m.GasWanted = 0 + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1724,16 +3027,29 @@ func (m *GasInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.GasWanted |= uint64(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field GasUsed", wireType) + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF } - m.GasUsed = 0 + m.Data = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RawLog", wireType) + } + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1743,69 +3059,29 @@ func (m *GasInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.GasUsed |= uint64(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthCosmos } - if (iNdEx + skippy) < 0 { + postIndex := iNdEx + intStringLen + if postIndex < 0 { return ErrInvalidLengthCosmos } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *Result) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { + if postIndex > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: Result: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Result: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: + m.RawLog = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 7: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Logs", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1815,29 +3091,29 @@ func (m *Result) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) - if m.Data == nil { - m.Data = []byte{} + m.Logs = append(m.Logs, ABCIMessageLog{}) + if err := m.Logs[len(m.Logs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } iNdEx = postIndex - case 2: + case 8: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Log", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Info", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -1865,11 +3141,49 @@ func (m *Result) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Log = string(dAtA[iNdEx:postIndex]) + m.Info = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 3: + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GasWanted", wireType) + } + m.GasWanted = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GasWanted |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GasUsed", wireType) + } + m.GasUsed = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GasUsed |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 11: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Events", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Tx", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -1896,11 +3210,45 @@ func (m *Result) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Events = append(m.Events, types.Event{}) - if err := m.Events[len(m.Events)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if m.Tx == nil { + m.Tx = &types1.Any{} + } + if err := m.Tx.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex + case 12: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Timestamp = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipCosmos(dAtA[iNdEx:]) @@ -1925,7 +3273,7 @@ func (m *Result) Unmarshal(dAtA []byte) error { } return nil } -func (m *SimulationResponse) Unmarshal(dAtA []byte) error { +func (m *ABCIMessageLog) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -1948,17 +3296,36 @@ func (m *SimulationResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: SimulationResponse: wiretype end group for non-group") + return fmt.Errorf("proto: ABCIMessageLog: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: SimulationResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ABCIMessageLog: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MsgIndex", wireType) + } + m.MsgIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MsgIndex |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field GasInfo", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Log", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -1968,28 +3335,27 @@ func (m *SimulationResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.GasInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.Log = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 2: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Result", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Events", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -2016,10 +3382,8 @@ func (m *SimulationResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.Result == nil { - m.Result = &Result{} - } - if err := m.Result.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Events = append(m.Events, StringEvent{}) + if err := m.Events[len(m.Events)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -2047,7 +3411,7 @@ func (m *SimulationResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgData) Unmarshal(dAtA []byte) error { +func (m *StringEvent) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -2070,15 +3434,15 @@ func (m *MsgData) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MsgData: wiretype end group for non-group") + return fmt.Errorf("proto: StringEvent: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MsgData: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: StringEvent: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field MsgType", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -2106,13 +3470,13 @@ func (m *MsgData) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.MsgType = string(dAtA[iNdEx:postIndex]) + m.Type = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Attributes", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -2122,24 +3486,24 @@ func (m *MsgData) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) - if m.Data == nil { - m.Data = []byte{} + m.Attributes = append(m.Attributes, Attribute{}) + if err := m.Attributes[len(m.Attributes)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } iNdEx = postIndex default: @@ -2166,7 +3530,7 @@ func (m *MsgData) Unmarshal(dAtA []byte) error { } return nil } -func (m *TxData) Unmarshal(dAtA []byte) error { +func (m *Attribute) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -2189,17 +3553,17 @@ func (m *TxData) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: TxData: wiretype end group for non-group") + return fmt.Errorf("proto: Attribute: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: TxData: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: Attribute: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCosmos @@ -2209,25 +3573,55 @@ func (m *TxData) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthCosmos } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthCosmos } if postIndex > l { return io.ErrUnexpectedEOF } - m.Data = append(m.Data, &MsgData{}) - if err := m.Data[len(m.Data)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.Key = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCosmos + } + 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 ErrInvalidLengthCosmos + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCosmos + } + if postIndex > l { + return io.ErrUnexpectedEOF } + m.Value = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex diff --git a/types/decimal_test.go b/types/decimal_test.go index 98b6b58ad08d..dd7c497d88e8 100644 --- a/types/decimal_test.go +++ b/types/decimal_test.go @@ -10,8 +10,6 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" yaml "gopkg.in/yaml.v2" - - "github.com/cosmos/cosmos-sdk/codec" ) // create a decimal from a decimal string (ex. "1234.5678") @@ -271,8 +269,6 @@ func TestTruncate(t *testing.T) { } } -var cdc = codec.New() - func TestDecMarshalJSON(t *testing.T) { decimal := func(i int64) Dec { d := NewDec(0) diff --git a/types/events.go b/types/events.go index 10723931e9cd..30fe1ee39de2 100644 --- a/types/events.go +++ b/types/events.go @@ -48,13 +48,6 @@ type ( // Event is a type alias for an ABCI Event Event abci.Event - // Attribute defines an attribute wrapper where the key and value are - // strings instead of raw bytes. - Attribute struct { - Key string `json:"key"` - Value string `json:"value,omitempty"` - } - // Events defines a slice of Event objects Events []Event ) @@ -141,13 +134,6 @@ var ( ) type ( - // StringAttribute defines en Event object wrapper where all the attributes - // contain key/value pairs that are strings instead of raw bytes. - StringEvent struct { - Type string `json:"type,omitempty"` - Attributes []Attribute `json:"attributes,omitempty"` - } - // StringAttributes defines a slice of StringEvents objects. StringEvents []StringEvent ) diff --git a/types/result.go b/types/result.go index 156cd340c0f8..2070ef30c7b9 100644 --- a/types/result.go +++ b/types/result.go @@ -11,10 +11,12 @@ import ( ctypes "github.com/tendermint/tendermint/rpc/core/types" - "github.com/cosmos/cosmos-sdk/codec/legacy" + "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/codec/types" ) +var cdc = codec.New() + func (gi GasInfo) String() string { bz, _ := yaml.Marshal(gi) return string(bz) @@ -37,19 +39,9 @@ func (r Result) GetEvents() Events { // ABCIMessageLogs represents a slice of ABCIMessageLog. type ABCIMessageLogs []ABCIMessageLog -// ABCIMessageLog defines a structure containing an indexed tx ABCI message log. -type ABCIMessageLog struct { - MsgIndex uint16 `json:"msg_index"` - Log string `json:"log"` - - // Events contains a slice of Event objects that were emitted during some - // execution. - Events StringEvents `json:"events"` -} - func NewABCIMessageLog(i uint16, log string, events Events) ABCIMessageLog { return ABCIMessageLog{ - MsgIndex: i, + MsgIndex: uint32(i), Log: log, Events: StringifyEvents(events.ToABCIEvents()), } @@ -58,7 +50,7 @@ func NewABCIMessageLog(i uint16, log string, events Events) ABCIMessageLog { // String implements the fmt.Stringer interface for the ABCIMessageLogs type. func (logs ABCIMessageLogs) String() (str string) { if logs != nil { - raw, err := legacy.Cdc.MarshalJSON(logs) + raw, err := cdc.MarshalJSON(logs) if err == nil { str = string(raw) } @@ -67,32 +59,15 @@ func (logs ABCIMessageLogs) String() (str string) { return str } -// TxResponse defines a structure containing relevant tx data and metadata. The -// tags are stringified and the log is JSON decoded. -type TxResponse struct { - Height int64 `json:"height"` - TxHash string `json:"txhash"` - Codespace string `json:"codespace,omitempty"` - Code uint32 `json:"code,omitempty"` - Data string `json:"data,omitempty"` - RawLog string `json:"raw_log,omitempty"` - Logs ABCIMessageLogs `json:"logs,omitempty"` - Info string `json:"info,omitempty"` - GasWanted int64 `json:"gas_wanted,omitempty"` - GasUsed int64 `json:"gas_used,omitempty"` - Tx Tx `json:"tx,omitempty"` - Timestamp string `json:"timestamp,omitempty"` -} - // NewResponseResultTx returns a TxResponse given a ResultTx from tendermint -func NewResponseResultTx(res *ctypes.ResultTx, tx Tx, timestamp string) TxResponse { +func NewResponseResultTx(res *ctypes.ResultTx, tx Tx, timestamp string) *TxResponse { if res == nil { - return TxResponse{} + return nil } parsedLogs, _ := ParseABCILogs(res.TxResult.Log) - return TxResponse{ + return &TxResponse{ TxHash: res.Hash.String(), Height: res.Height, Codespace: res.TxResult.Codespace, @@ -103,16 +78,16 @@ func NewResponseResultTx(res *ctypes.ResultTx, tx Tx, timestamp string) TxRespon Info: res.TxResult.Info, GasWanted: res.TxResult.GasWanted, GasUsed: res.TxResult.GasUsed, - Tx: tx, + Tx: types.UnsafePackAny(tx), Timestamp: timestamp, } } // NewResponseFormatBroadcastTxCommit returns a TxResponse given a // ResultBroadcastTxCommit from tendermint. -func NewResponseFormatBroadcastTxCommit(res *ctypes.ResultBroadcastTxCommit) TxResponse { +func NewResponseFormatBroadcastTxCommit(res *ctypes.ResultBroadcastTxCommit) *TxResponse { if res == nil { - return TxResponse{} + return nil } if !res.CheckTx.IsOK() { @@ -122,9 +97,9 @@ func NewResponseFormatBroadcastTxCommit(res *ctypes.ResultBroadcastTxCommit) TxR return newTxResponseDeliverTx(res) } -func newTxResponseCheckTx(res *ctypes.ResultBroadcastTxCommit) TxResponse { +func newTxResponseCheckTx(res *ctypes.ResultBroadcastTxCommit) *TxResponse { if res == nil { - return TxResponse{} + return nil } var txHash string @@ -134,7 +109,7 @@ func newTxResponseCheckTx(res *ctypes.ResultBroadcastTxCommit) TxResponse { parsedLogs, _ := ParseABCILogs(res.CheckTx.Log) - return TxResponse{ + return &TxResponse{ Height: res.Height, TxHash: txHash, Codespace: res.CheckTx.Codespace, @@ -148,9 +123,9 @@ func newTxResponseCheckTx(res *ctypes.ResultBroadcastTxCommit) TxResponse { } } -func newTxResponseDeliverTx(res *ctypes.ResultBroadcastTxCommit) TxResponse { +func newTxResponseDeliverTx(res *ctypes.ResultBroadcastTxCommit) *TxResponse { if res == nil { - return TxResponse{} + return nil } var txHash string @@ -160,7 +135,7 @@ func newTxResponseDeliverTx(res *ctypes.ResultBroadcastTxCommit) TxResponse { parsedLogs, _ := ParseABCILogs(res.DeliverTx.Log) - return TxResponse{ + return &TxResponse{ Height: res.Height, TxHash: txHash, Codespace: res.DeliverTx.Codespace, @@ -175,14 +150,14 @@ func newTxResponseDeliverTx(res *ctypes.ResultBroadcastTxCommit) TxResponse { } // NewResponseFormatBroadcastTx returns a TxResponse given a ResultBroadcastTx from tendermint -func NewResponseFormatBroadcastTx(res *ctypes.ResultBroadcastTx) TxResponse { +func NewResponseFormatBroadcastTx(res *ctypes.ResultBroadcastTx) *TxResponse { if res == nil { - return TxResponse{} + return nil } parsedLogs, _ := ParseABCILogs(res.Log) - return TxResponse{ + return &TxResponse{ Code: res.Code, Codespace: res.Codespace, Data: res.Data.String(), @@ -240,15 +215,15 @@ func (r TxResponse) Empty() bool { // SearchTxsResult defines a structure for querying txs pageable type SearchTxsResult struct { - TotalCount int `json:"total_count"` // Count of all txs - Count int `json:"count"` // Count of txs in current page - PageNumber int `json:"page_number"` // Index of current page, start from 1 - PageTotal int `json:"page_total"` // Count of total pages - Limit int `json:"limit"` // Max count txs per page - Txs []TxResponse `json:"txs"` // List of txs in current page + TotalCount int `json:"total_count"` // Count of all txs + Count int `json:"count"` // Count of txs in current page + PageNumber int `json:"page_number"` // Index of current page, start from 1 + PageTotal int `json:"page_total"` // Count of total pages + Limit int `json:"limit"` // Max count txs per page + Txs []*TxResponse `json:"txs"` // List of txs in current page } -func NewSearchTxsResult(totalCount, count, page, limit int, txs []TxResponse) SearchTxsResult { +func NewSearchTxsResult(totalCount, count, page, limit int, txs []*TxResponse) SearchTxsResult { return SearchTxsResult{ TotalCount: totalCount, Count: count, @@ -284,5 +259,17 @@ func (s SearchTxsResult) UnpackInterfaces(unpacker types.AnyUnpacker) error { // UnpackInterfaces implements UnpackInterfacesMessage.UnpackInterfaces func (r TxResponse) UnpackInterfaces(unpacker types.AnyUnpacker) error { - return types.UnpackInterfaces(r.Tx, unpacker) + if r.Tx != nil { + var tx Tx + return unpacker.UnpackAny(r.Tx, &tx) + } + return nil +} + +// GetTx unpacks the Tx from within a TxResponse and returns it +func (r TxResponse) GetTx() Tx { + if tx, ok := r.Tx.GetCachedValue().(Tx); ok { + return tx + } + return nil } diff --git a/types/result_test.go b/types/result_test.go index 98e8ddca10a4..203d9415b9a8 100644 --- a/types/result_test.go +++ b/types/result_test.go @@ -10,7 +10,8 @@ import ( "github.com/tendermint/tendermint/libs/bytes" ctypes "github.com/tendermint/tendermint/rpc/core/types" - "github.com/cosmos/cosmos-sdk/codec/legacy" + "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" ) @@ -22,30 +23,31 @@ func TestParseABCILog(t *testing.T) { require.NoError(t, err) require.Len(t, res, 1) require.Equal(t, res[0].Log, "") - require.Equal(t, res[0].MsgIndex, uint16(1)) + require.Equal(t, res[0].MsgIndex, uint32(1)) } func TestABCIMessageLog(t *testing.T) { t.Parallel() + cdc := codec.New() events := sdk.Events{sdk.NewEvent("transfer", sdk.NewAttribute("sender", "foo"))} msgLog := sdk.NewABCIMessageLog(0, "", events) msgLogs := sdk.ABCIMessageLogs{msgLog} - bz, err := legacy.Cdc.MarshalJSON(msgLogs) + bz, err := cdc.MarshalJSON(msgLogs) require.NoError(t, err) require.Equal(t, string(bz), msgLogs.String()) } func TestNewSearchTxsResult(t *testing.T) { t.Parallel() - got := sdk.NewSearchTxsResult(150, 20, 2, 20, []sdk.TxResponse{}) + got := sdk.NewSearchTxsResult(150, 20, 2, 20, []*sdk.TxResponse{}) require.Equal(t, sdk.SearchTxsResult{ TotalCount: 150, Count: 20, PageNumber: 2, PageTotal: 8, Limit: 20, - Txs: []sdk.TxResponse{}, + Txs: []*sdk.TxResponse{}, }, got) } @@ -80,7 +82,7 @@ func TestResponseResultTx(t *testing.T) { } logs, err := sdk.ParseABCILogs(`[]`) require.NoError(t, err) - want := sdk.TxResponse{ + want := &sdk.TxResponse{ TxHash: "74657374", Height: 10, Codespace: "codespace", @@ -91,12 +93,12 @@ func TestResponseResultTx(t *testing.T) { Info: "info", GasWanted: 100, GasUsed: 90, - Tx: sdk.Tx(nil), + Tx: &types.Any{}, Timestamp: "timestamp", } require.Equal(t, want, sdk.NewResponseResultTx(resultTx, sdk.Tx(nil), "timestamp")) - require.Equal(t, sdk.TxResponse{}, sdk.NewResponseResultTx(nil, sdk.Tx(nil), "timestamp")) + require.Equal(t, (*sdk.TxResponse)(nil), sdk.NewResponseResultTx(nil, sdk.Tx(nil), "timestamp")) require.Equal(t, `Response: Height: 10 TxHash: 74657374 @@ -119,7 +121,7 @@ func TestResponseResultTx(t *testing.T) { Log: `[]`, Hash: bytes.HexBytes([]byte("test")), } - require.Equal(t, sdk.TxResponse{ + require.Equal(t, &sdk.TxResponse{ Code: 1, Codespace: "codespace", Data: "64617461", @@ -127,12 +129,13 @@ func TestResponseResultTx(t *testing.T) { Logs: logs, TxHash: "74657374", }, sdk.NewResponseFormatBroadcastTx(resultBroadcastTx)) - require.Equal(t, sdk.TxResponse{}, sdk.NewResponseFormatBroadcastTx(nil)) + + require.Equal(t, (*sdk.TxResponse)(nil), sdk.NewResponseFormatBroadcastTx(nil)) } func TestResponseFormatBroadcastTxCommit(t *testing.T) { // test nil - require.Equal(t, sdk.TxResponse{}, sdk.NewResponseFormatBroadcastTxCommit(nil)) + require.Equal(t, (*sdk.TxResponse)(nil), sdk.NewResponseFormatBroadcastTxCommit(nil)) logs, err := sdk.ParseABCILogs(`[]`) require.NoError(t, err) @@ -165,7 +168,7 @@ func TestResponseFormatBroadcastTxCommit(t *testing.T) { }, } - want := sdk.TxResponse{ + want := &sdk.TxResponse{ Height: 10, TxHash: "74657374", Codespace: "codespace", diff --git a/x/auth/client/query.go b/x/auth/client/query.go index 7d5cbacb88a1..d68c9cae1e3c 100644 --- a/x/auth/client/query.go +++ b/x/auth/client/query.go @@ -74,31 +74,31 @@ func QueryTxsByEvents(clientCtx client.Context, events []string, page, limit int // QueryTx queries for a single transaction by a hash string in hex format. An // error is returned if the transaction does not exist or cannot be queried. -func QueryTx(clientCtx client.Context, hashHexStr string) (sdk.TxResponse, error) { +func QueryTx(clientCtx client.Context, hashHexStr string) (*sdk.TxResponse, error) { hash, err := hex.DecodeString(hashHexStr) if err != nil { - return sdk.TxResponse{}, err + return nil, err } node, err := clientCtx.GetNode() if err != nil { - return sdk.TxResponse{}, err + return nil, err } resTx, err := node.Tx(hash, !clientCtx.TrustNode) if err != nil { - return sdk.TxResponse{}, err + return nil, err } if !clientCtx.TrustNode { if err = ValidateTxResult(clientCtx, resTx); err != nil { - return sdk.TxResponse{}, err + return nil, err } } resBlocks, err := getBlocksForTxResults(clientCtx, []*ctypes.ResultTx{resTx}) if err != nil { - return sdk.TxResponse{}, err + return nil, err } out, err := formatTxResult(clientCtx.Codec, resTx, resBlocks[resTx.Height]) @@ -110,9 +110,9 @@ func QueryTx(clientCtx client.Context, hashHexStr string) (sdk.TxResponse, error } // formatTxResults parses the indexed txs into a slice of TxResponse objects. -func formatTxResults(cdc *codec.Codec, resTxs []*ctypes.ResultTx, resBlocks map[int64]*ctypes.ResultBlock) ([]sdk.TxResponse, error) { +func formatTxResults(cdc *codec.Codec, resTxs []*ctypes.ResultTx, resBlocks map[int64]*ctypes.ResultBlock) ([]*sdk.TxResponse, error) { var err error - out := make([]sdk.TxResponse, len(resTxs)) + out := make([]*sdk.TxResponse, len(resTxs)) for i := range resTxs { out[i], err = formatTxResult(cdc, resTxs[i], resBlocks[resTxs[i].Height]) if err != nil { @@ -160,10 +160,10 @@ func getBlocksForTxResults(clientCtx client.Context, resTxs []*ctypes.ResultTx) return resBlocks, nil } -func formatTxResult(cdc *codec.Codec, resTx *ctypes.ResultTx, resBlock *ctypes.ResultBlock) (sdk.TxResponse, error) { +func formatTxResult(cdc *codec.Codec, resTx *ctypes.ResultTx, resBlock *ctypes.ResultBlock) (*sdk.TxResponse, error) { tx, err := parseTx(cdc, resTx.Tx) if err != nil { - return sdk.TxResponse{}, err + return nil, err } return sdk.NewResponseResultTx(resTx, tx, resBlock.Block.Time.Format(time.RFC3339)), nil diff --git a/x/gov/client/utils/query.go b/x/gov/client/utils/query.go index 1780b2c2aff8..f03d4393b23e 100644 --- a/x/gov/client/utils/query.go +++ b/x/gov/client/utils/query.go @@ -52,7 +52,7 @@ func QueryDepositsByTxQuery(clientCtx client.Context, params types.QueryProposal var deposits []types.Deposit for _, info := range searchResult.Txs { - for _, msg := range info.Tx.GetMsgs() { + for _, msg := range info.GetTx().GetMsgs() { if msg.Type() == types.TypeMsgDeposit { depMsg := msg.(*types.MsgDeposit) @@ -94,7 +94,7 @@ func QueryVotesByTxQuery(clientCtx client.Context, params types.QueryProposalVot } nextTxPage++ for _, info := range searchResult.Txs { - for _, msg := range info.Tx.GetMsgs() { + for _, msg := range info.GetTx().GetMsgs() { if msg.Type() == types.TypeMsgVote { voteMsg := msg.(*types.MsgVote) @@ -140,7 +140,7 @@ func QueryVoteByTxQuery(clientCtx client.Context, params types.QueryVoteParams) return nil, err } for _, info := range searchResult.Txs { - for _, msg := range info.Tx.GetMsgs() { + for _, msg := range info.GetTx().GetMsgs() { // there should only be a single vote under the given conditions if msg.Type() == types.TypeMsgVote { voteMsg := msg.(*types.MsgVote) @@ -181,7 +181,7 @@ func QueryDepositByTxQuery(clientCtx client.Context, params types.QueryDepositPa } for _, info := range searchResult.Txs { - for _, msg := range info.Tx.GetMsgs() { + for _, msg := range info.GetTx().GetMsgs() { // there should only be a single deposit under the given conditions if msg.Type() == types.TypeMsgDeposit { depMsg := msg.(*types.MsgDeposit) @@ -221,7 +221,7 @@ func QueryProposerByTxQuery(clientCtx client.Context, proposalID uint64) (Propos } for _, info := range searchResult.Txs { - for _, msg := range info.Tx.GetMsgs() { + for _, msg := range info.GetTx().GetMsgs() { // there should only be a single proposal under the given conditions if msg.Type() == types.TypeMsgSubmitProposal { subMsg := msg.(*types.MsgSubmitProposal) diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 3eca31a9cfe9..01ca5ad2668f 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -1569,580 +1569,599 @@ func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_ func StakingDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ - // 9157 bytes of a gzipped FileDescriptorSet - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x7d, 0x70, 0x24, 0xc7, - 0x75, 0x1f, 0xf6, 0x03, 0xfb, 0xf1, 0x16, 0x58, 0x2c, 0x1a, 0x38, 0x1c, 0x6e, 0x49, 0x62, 0xef, - 0xe6, 0xc8, 0x3b, 0xdc, 0x91, 0xc4, 0x51, 0xa7, 0x23, 0x29, 0xee, 0x49, 0xa4, 0xb0, 0x00, 0xee, - 0x0e, 0x24, 0x70, 0x07, 0x0e, 0x80, 0x23, 0x45, 0x59, 0x9e, 0x0c, 0x66, 0x1b, 0x8b, 0xe1, 0xed, - 0xce, 0x2c, 0x67, 0x66, 0xef, 0x00, 0x96, 0x52, 0xc5, 0x94, 0xfc, 0x21, 0x39, 0xb2, 0x25, 0x3b, - 0x76, 0x42, 0xcb, 0x92, 0x4c, 0x2b, 0x95, 0x48, 0x56, 0x62, 0xf9, 0x23, 0x8e, 0x2c, 0x39, 0xff, - 0xa8, 0x2a, 0xe5, 0x58, 0xa9, 0x72, 0xa5, 0xa4, 0x94, 0x93, 0x72, 0xa5, 0x52, 0xb0, 0x45, 0xa9, - 0xca, 0x8e, 0xc2, 0x24, 0xce, 0x85, 0x71, 0xb9, 0xa4, 0x3f, 0x92, 0xea, 0xaf, 0xf9, 0xda, 0x59, - 0xcc, 0xe0, 0x74, 0xa4, 0xe8, 0x92, 0xfe, 0xc2, 0x76, 0xcf, 0x7b, 0xbf, 0xee, 0x7e, 0xfd, 0xfa, - 0xbd, 0xd7, 0xaf, 0x7b, 0x06, 0xf0, 0x6b, 0x17, 0xe1, 0x78, 0xcb, 0x34, 0x5b, 0x6d, 0x7c, 0xae, - 0x6b, 0x99, 0x8e, 0xb9, 0xd5, 0xdb, 0x3e, 0xd7, 0xc4, 0xb6, 0x66, 0xe9, 0x5d, 0xc7, 0xb4, 0xe6, - 0x68, 0x1d, 0x1a, 0x63, 0x14, 0x73, 0x82, 0x42, 0x5a, 0x85, 0xf1, 0x4b, 0x7a, 0x1b, 0x2f, 0xba, - 0x84, 0xeb, 0xd8, 0x41, 0xef, 0x81, 0xec, 0xb6, 0xde, 0xc6, 0xd3, 0xa9, 0xe3, 0x99, 0xd9, 0xd2, - 0xf9, 0xfb, 0xe7, 0x42, 0x4c, 0x73, 0x41, 0x8e, 0x35, 0x52, 0x2d, 0x53, 0x0e, 0xe9, 0x3b, 0x59, - 0x98, 0x88, 0x78, 0x8a, 0x10, 0x64, 0x0d, 0xb5, 0x43, 0x10, 0x53, 0xb3, 0x45, 0x99, 0xfe, 0x46, - 0xd3, 0x90, 0xef, 0xaa, 0xda, 0x0d, 0xb5, 0x85, 0xa7, 0xd3, 0xb4, 0x5a, 0x14, 0xd1, 0x0c, 0x40, - 0x13, 0x77, 0xb1, 0xd1, 0xc4, 0x86, 0xb6, 0x37, 0x9d, 0x39, 0x9e, 0x99, 0x2d, 0xca, 0xbe, 0x1a, - 0xf4, 0x20, 0x8c, 0x77, 0x7b, 0x5b, 0x6d, 0x5d, 0x53, 0x7c, 0x64, 0x70, 0x3c, 0x33, 0x3b, 0x2c, - 0x57, 0xd8, 0x83, 0x45, 0x8f, 0xf8, 0x34, 0x8c, 0xdd, 0xc2, 0xea, 0x0d, 0x3f, 0x69, 0x89, 0x92, - 0x96, 0x49, 0xb5, 0x8f, 0x70, 0x01, 0x46, 0x3a, 0xd8, 0xb6, 0xd5, 0x16, 0x56, 0x9c, 0xbd, 0x2e, - 0x9e, 0xce, 0xd2, 0xd1, 0x1f, 0xef, 0x1b, 0x7d, 0x78, 0xe4, 0x25, 0xce, 0xb5, 0xb1, 0xd7, 0xc5, - 0x68, 0x1e, 0x8a, 0xd8, 0xe8, 0x75, 0x18, 0xc2, 0xf0, 0x00, 0xf9, 0x2d, 0x19, 0xbd, 0x4e, 0x18, - 0xa5, 0x40, 0xd8, 0x38, 0x44, 0xde, 0xc6, 0xd6, 0x4d, 0x5d, 0xc3, 0xd3, 0x39, 0x0a, 0x70, 0xba, - 0x0f, 0x60, 0x9d, 0x3d, 0x0f, 0x63, 0x08, 0x3e, 0xb4, 0x00, 0x45, 0xbc, 0xeb, 0x60, 0xc3, 0xd6, - 0x4d, 0x63, 0x3a, 0x4f, 0x41, 0x1e, 0x88, 0x98, 0x45, 0xdc, 0x6e, 0x86, 0x21, 0x3c, 0x3e, 0xf4, - 0x18, 0xe4, 0xcd, 0xae, 0xa3, 0x9b, 0x86, 0x3d, 0x5d, 0x38, 0x9e, 0x9a, 0x2d, 0x9d, 0xbf, 0x37, - 0x52, 0x11, 0xae, 0x31, 0x1a, 0x59, 0x10, 0xa3, 0x65, 0xa8, 0xd8, 0x66, 0xcf, 0xd2, 0xb0, 0xa2, - 0x99, 0x4d, 0xac, 0xe8, 0xc6, 0xb6, 0x39, 0x5d, 0xa4, 0x00, 0xb5, 0xfe, 0x81, 0x50, 0xc2, 0x05, - 0xb3, 0x89, 0x97, 0x8d, 0x6d, 0x53, 0x2e, 0xdb, 0x81, 0x32, 0x9a, 0x82, 0x9c, 0xbd, 0x67, 0x38, - 0xea, 0xee, 0xf4, 0x08, 0xd5, 0x10, 0x5e, 0x92, 0xbe, 0x9a, 0x83, 0xb1, 0x24, 0x2a, 0x76, 0x11, - 0x86, 0xb7, 0xc9, 0x28, 0xa7, 0xd3, 0x87, 0x91, 0x01, 0xe3, 0x09, 0x0a, 0x31, 0x77, 0x87, 0x42, - 0x9c, 0x87, 0x92, 0x81, 0x6d, 0x07, 0x37, 0x99, 0x46, 0x64, 0x12, 0xea, 0x14, 0x30, 0xa6, 0x7e, - 0x95, 0xca, 0xde, 0x91, 0x4a, 0x3d, 0x0f, 0x63, 0x6e, 0x97, 0x14, 0x4b, 0x35, 0x5a, 0x42, 0x37, - 0xcf, 0xc5, 0xf5, 0x64, 0x6e, 0x49, 0xf0, 0xc9, 0x84, 0x4d, 0x2e, 0xe3, 0x40, 0x19, 0x2d, 0x02, - 0x98, 0x06, 0x36, 0xb7, 0x95, 0x26, 0xd6, 0xda, 0xd3, 0x85, 0x01, 0x52, 0xba, 0x46, 0x48, 0xfa, - 0xa4, 0x64, 0xb2, 0x5a, 0xad, 0x8d, 0x9e, 0xf0, 0x54, 0x2d, 0x3f, 0x40, 0x53, 0x56, 0xd9, 0x22, - 0xeb, 0xd3, 0xb6, 0x4d, 0x28, 0x5b, 0x98, 0xe8, 0x3d, 0x6e, 0xf2, 0x91, 0x15, 0x69, 0x27, 0xe6, - 0x62, 0x47, 0x26, 0x73, 0x36, 0x36, 0xb0, 0x51, 0xcb, 0x5f, 0x44, 0x27, 0xc1, 0xad, 0x50, 0xa8, - 0x5a, 0x01, 0xb5, 0x42, 0x23, 0xa2, 0xf2, 0xaa, 0xda, 0xc1, 0xd5, 0x97, 0xa1, 0x1c, 0x14, 0x0f, - 0x9a, 0x84, 0x61, 0xdb, 0x51, 0x2d, 0x87, 0x6a, 0xe1, 0xb0, 0xcc, 0x0a, 0xa8, 0x02, 0x19, 0x6c, - 0x34, 0xa9, 0x95, 0x1b, 0x96, 0xc9, 0x4f, 0xf4, 0x7e, 0x6f, 0xc0, 0x19, 0x3a, 0xe0, 0x53, 0xfd, - 0x33, 0x1a, 0x40, 0x0e, 0x8f, 0xbb, 0xfa, 0x38, 0x8c, 0x06, 0x06, 0x90, 0xb4, 0x69, 0xe9, 0xc3, - 0x70, 0x24, 0x12, 0x1a, 0x3d, 0x0f, 0x93, 0x3d, 0x43, 0x37, 0x1c, 0x6c, 0x75, 0x2d, 0x4c, 0x34, - 0x96, 0x35, 0x35, 0xfd, 0x97, 0xf9, 0x01, 0x3a, 0xb7, 0xe9, 0xa7, 0x66, 0x28, 0xf2, 0x44, 0xaf, - 0xbf, 0xf2, 0x6c, 0xb1, 0xf0, 0x57, 0xf9, 0xca, 0x2b, 0xaf, 0xbc, 0xf2, 0x4a, 0x5a, 0x7a, 0x35, - 0x07, 0x93, 0x51, 0x6b, 0x26, 0x72, 0xf9, 0x4e, 0x41, 0xce, 0xe8, 0x75, 0xb6, 0xb0, 0x45, 0x85, - 0x34, 0x2c, 0xf3, 0x12, 0x9a, 0x87, 0xe1, 0xb6, 0xba, 0x85, 0xdb, 0xd3, 0xd9, 0xe3, 0xa9, 0xd9, - 0xf2, 0xf9, 0x07, 0x13, 0xad, 0xca, 0xb9, 0x15, 0xc2, 0x22, 0x33, 0x4e, 0xf4, 0x24, 0x64, 0xb9, - 0x89, 0x26, 0x08, 0x67, 0x93, 0x21, 0x90, 0xb5, 0x24, 0x53, 0x3e, 0x74, 0x0f, 0x14, 0xc9, 0x5f, - 0xa6, 0x1b, 0x39, 0xda, 0xe7, 0x02, 0xa9, 0x20, 0x7a, 0x81, 0xaa, 0x50, 0xa0, 0xcb, 0xa4, 0x89, - 0x85, 0x6b, 0x73, 0xcb, 0x44, 0xb1, 0x9a, 0x78, 0x5b, 0xed, 0xb5, 0x1d, 0xe5, 0xa6, 0xda, 0xee, - 0x61, 0xaa, 0xf0, 0x45, 0x79, 0x84, 0x57, 0x5e, 0x27, 0x75, 0xa8, 0x06, 0x25, 0xb6, 0xaa, 0x74, - 0xa3, 0x89, 0x77, 0xa9, 0xf5, 0x1c, 0x96, 0xd9, 0x42, 0x5b, 0x26, 0x35, 0xa4, 0xf9, 0x17, 0x6d, - 0xd3, 0x10, 0xaa, 0x49, 0x9b, 0x20, 0x15, 0xb4, 0xf9, 0xc7, 0xc3, 0x86, 0xfb, 0xbe, 0xe8, 0xe1, - 0x85, 0x75, 0x4a, 0xfa, 0x72, 0x1a, 0xb2, 0xd4, 0x5e, 0x8c, 0x41, 0x69, 0xe3, 0x03, 0x6b, 0x4b, - 0xca, 0xe2, 0xb5, 0xcd, 0xc6, 0xca, 0x52, 0x25, 0x85, 0xca, 0x00, 0xb4, 0xe2, 0xd2, 0xca, 0xb5, - 0xf9, 0x8d, 0x4a, 0xda, 0x2d, 0x2f, 0x5f, 0xdd, 0x78, 0xec, 0x42, 0x25, 0xe3, 0x32, 0x6c, 0xb2, - 0x8a, 0xac, 0x9f, 0xe0, 0xdd, 0xe7, 0x2b, 0xc3, 0xa8, 0x02, 0x23, 0x0c, 0x60, 0xf9, 0xf9, 0xa5, - 0xc5, 0xc7, 0x2e, 0x54, 0x72, 0xc1, 0x9a, 0x77, 0x9f, 0xaf, 0xe4, 0xd1, 0x28, 0x14, 0x69, 0x4d, - 0xe3, 0xda, 0xb5, 0x95, 0x4a, 0xc1, 0xc5, 0x5c, 0xdf, 0x90, 0x97, 0xaf, 0x5e, 0xae, 0x14, 0x5d, - 0xcc, 0xcb, 0xf2, 0xb5, 0xcd, 0xb5, 0x0a, 0xb8, 0x08, 0xab, 0x4b, 0xeb, 0xeb, 0xf3, 0x97, 0x97, - 0x2a, 0x25, 0x97, 0xa2, 0xf1, 0x81, 0x8d, 0xa5, 0xf5, 0xca, 0x48, 0xa0, 0x5b, 0xef, 0x3e, 0x5f, - 0x19, 0x75, 0x9b, 0x58, 0xba, 0xba, 0xb9, 0x5a, 0x29, 0xa3, 0x71, 0x18, 0x65, 0x4d, 0x88, 0x4e, - 0x8c, 0x85, 0xaa, 0x1e, 0xbb, 0x50, 0xa9, 0x78, 0x1d, 0x61, 0x28, 0xe3, 0x81, 0x8a, 0xc7, 0x2e, - 0x54, 0x90, 0xb4, 0x00, 0xc3, 0x54, 0xbb, 0x10, 0x82, 0xf2, 0xca, 0x7c, 0x63, 0x69, 0x45, 0xb9, - 0xb6, 0xb6, 0xb1, 0x7c, 0xed, 0xea, 0xfc, 0x4a, 0x25, 0xe5, 0xd5, 0xc9, 0x4b, 0xcf, 0x6e, 0x2e, - 0xcb, 0x4b, 0x8b, 0x95, 0xb4, 0xbf, 0x6e, 0x6d, 0x69, 0x7e, 0x63, 0x69, 0xb1, 0x92, 0x91, 0x34, - 0x98, 0x8c, 0xb2, 0x93, 0x91, 0x2b, 0xc3, 0x37, 0xc5, 0xe9, 0x01, 0x53, 0x4c, 0xb1, 0xfa, 0xa6, - 0xf8, 0xdb, 0x69, 0x98, 0x88, 0xf0, 0x15, 0x91, 0x8d, 0x3c, 0x05, 0xc3, 0x4c, 0x45, 0x99, 0xf7, - 0x3c, 0x13, 0xe9, 0x74, 0xa8, 0xc2, 0xf6, 0x79, 0x50, 0xca, 0xe7, 0x8f, 0x20, 0x32, 0x03, 0x22, - 0x08, 0x02, 0xd1, 0x67, 0xd3, 0x3f, 0xd4, 0x67, 0xd3, 0x99, 0xdb, 0x7b, 0x2c, 0x89, 0xdb, 0xa3, - 0x75, 0x87, 0xb3, 0xed, 0xc3, 0x11, 0xb6, 0xfd, 0x22, 0x8c, 0xf7, 0x01, 0x25, 0xb6, 0xb1, 0x1f, - 0x49, 0xc1, 0xf4, 0x20, 0xe1, 0xc4, 0x58, 0xba, 0x74, 0xc0, 0xd2, 0x5d, 0x0c, 0x4b, 0xf0, 0xc4, - 0xe0, 0x49, 0xe8, 0x9b, 0xeb, 0xcf, 0xa7, 0x60, 0x2a, 0x3a, 0x52, 0x8c, 0xec, 0xc3, 0x93, 0x90, - 0xeb, 0x60, 0x67, 0xc7, 0x14, 0xd1, 0xd2, 0xa9, 0x08, 0x1f, 0x4c, 0x1e, 0x87, 0x27, 0x9b, 0x73, - 0xf9, 0x9d, 0x78, 0x66, 0x50, 0xb8, 0xc7, 0x7a, 0xd3, 0xd7, 0xd3, 0x8f, 0xa5, 0xe1, 0x48, 0x24, - 0x78, 0x64, 0x47, 0xef, 0x03, 0xd0, 0x8d, 0x6e, 0xcf, 0x61, 0x11, 0x11, 0x33, 0xb0, 0x45, 0x5a, - 0x43, 0x8d, 0x17, 0x31, 0x9e, 0x3d, 0xc7, 0x7d, 0x9e, 0xa1, 0xcf, 0x81, 0x55, 0x51, 0x82, 0xf7, - 0x78, 0x1d, 0xcd, 0xd2, 0x8e, 0xce, 0x0c, 0x18, 0x69, 0x9f, 0x62, 0x3e, 0x02, 0x15, 0xad, 0xad, - 0x63, 0xc3, 0x51, 0x6c, 0xc7, 0xc2, 0x6a, 0x47, 0x37, 0x5a, 0xd4, 0x83, 0x14, 0xea, 0xc3, 0xdb, - 0x6a, 0xdb, 0xc6, 0xf2, 0x18, 0x7b, 0xbc, 0x2e, 0x9e, 0x12, 0x0e, 0xaa, 0x40, 0x96, 0x8f, 0x23, - 0x17, 0xe0, 0x60, 0x8f, 0x5d, 0x0e, 0xe9, 0x97, 0x8a, 0x50, 0xf2, 0xc5, 0xd5, 0xe8, 0x04, 0x8c, - 0xbc, 0xa8, 0xde, 0x54, 0x15, 0xb1, 0x57, 0x62, 0x92, 0x28, 0x91, 0xba, 0x35, 0xbe, 0x5f, 0x7a, - 0x04, 0x26, 0x29, 0x89, 0xd9, 0x73, 0xb0, 0xa5, 0x68, 0x6d, 0xd5, 0xb6, 0xa9, 0xd0, 0x0a, 0x94, - 0x14, 0x91, 0x67, 0xd7, 0xc8, 0xa3, 0x05, 0xf1, 0x04, 0x3d, 0x0a, 0x13, 0x94, 0xa3, 0xd3, 0x6b, - 0x3b, 0x7a, 0xb7, 0x8d, 0x15, 0xb2, 0x7b, 0xb3, 0xa9, 0x27, 0x71, 0x7b, 0x36, 0x4e, 0x28, 0x56, - 0x39, 0x01, 0xe9, 0x91, 0x8d, 0x16, 0xe1, 0x3e, 0xca, 0xd6, 0xc2, 0x06, 0xb6, 0x54, 0x07, 0x2b, - 0xf8, 0xa5, 0x9e, 0xda, 0xb6, 0x15, 0xd5, 0x68, 0x2a, 0x3b, 0xaa, 0xbd, 0x33, 0x3d, 0x49, 0x00, - 0x1a, 0xe9, 0xe9, 0x94, 0x7c, 0x8c, 0x10, 0x5e, 0xe6, 0x74, 0x4b, 0x94, 0x6c, 0xde, 0x68, 0x5e, - 0x51, 0xed, 0x1d, 0x54, 0x87, 0x29, 0x8a, 0x62, 0x3b, 0x96, 0x6e, 0xb4, 0x14, 0x6d, 0x07, 0x6b, - 0x37, 0x94, 0x9e, 0xb3, 0xfd, 0x9e, 0xe9, 0x7b, 0xfc, 0xed, 0xd3, 0x1e, 0xae, 0x53, 0x9a, 0x05, - 0x42, 0xb2, 0xe9, 0x6c, 0xbf, 0x07, 0xad, 0xc3, 0x08, 0x99, 0x8c, 0x8e, 0xfe, 0x32, 0x56, 0xb6, - 0x4d, 0x8b, 0xba, 0xc6, 0x72, 0x84, 0x69, 0xf2, 0x49, 0x70, 0xee, 0x1a, 0x67, 0x58, 0x35, 0x9b, - 0xb8, 0x3e, 0xbc, 0xbe, 0xb6, 0xb4, 0xb4, 0x28, 0x97, 0x04, 0xca, 0x25, 0xd3, 0x22, 0x0a, 0xd5, - 0x32, 0x5d, 0x01, 0x97, 0x98, 0x42, 0xb5, 0x4c, 0x21, 0xde, 0x47, 0x61, 0x42, 0xd3, 0xd8, 0x98, - 0x75, 0x4d, 0xe1, 0x7b, 0x2c, 0x7b, 0xba, 0x12, 0x10, 0x96, 0xa6, 0x5d, 0x66, 0x04, 0x5c, 0xc7, - 0x6d, 0xf4, 0x04, 0x1c, 0xf1, 0x84, 0xe5, 0x67, 0x1c, 0xef, 0x1b, 0x65, 0x98, 0xf5, 0x51, 0x98, - 0xe8, 0xee, 0xf5, 0x33, 0xa2, 0x40, 0x8b, 0xdd, 0xbd, 0x30, 0xdb, 0xe3, 0x30, 0xd9, 0xdd, 0xe9, - 0xf6, 0xf3, 0x9d, 0xf5, 0xf3, 0xa1, 0xee, 0x4e, 0x37, 0xcc, 0xf8, 0x00, 0xdd, 0x70, 0x5b, 0x58, - 0x53, 0x1d, 0xdc, 0x9c, 0x3e, 0xea, 0x27, 0xf7, 0x3d, 0x40, 0xe7, 0xa0, 0xa2, 0x69, 0x0a, 0x36, - 0xd4, 0xad, 0x36, 0x56, 0x54, 0x0b, 0x1b, 0xaa, 0x3d, 0x5d, 0xf3, 0x13, 0x97, 0x35, 0x6d, 0x89, - 0x3e, 0x9d, 0xa7, 0x0f, 0xd1, 0x59, 0x18, 0x37, 0xb7, 0x5e, 0xd4, 0x98, 0x4a, 0x2a, 0x5d, 0x0b, - 0x6f, 0xeb, 0xbb, 0xd3, 0xf7, 0x53, 0xf9, 0x8e, 0x91, 0x07, 0x54, 0x21, 0xd7, 0x68, 0x35, 0x3a, - 0x03, 0x15, 0xcd, 0xde, 0x51, 0xad, 0x2e, 0xb5, 0xc9, 0x76, 0x57, 0xd5, 0xf0, 0xf4, 0x03, 0x8c, - 0x94, 0xd5, 0x5f, 0x15, 0xd5, 0x64, 0x49, 0xd8, 0xb7, 0xf4, 0x6d, 0x47, 0x20, 0x9e, 0x66, 0x4b, - 0x82, 0xd6, 0x71, 0xb4, 0x59, 0xa8, 0x10, 0x51, 0x04, 0x1a, 0x9e, 0xa5, 0x64, 0xe5, 0xee, 0x4e, - 0xd7, 0xdf, 0xee, 0x49, 0x18, 0x25, 0x94, 0x5e, 0xa3, 0x67, 0x58, 0x40, 0xd6, 0xdd, 0xf1, 0xb5, - 0x78, 0x01, 0xa6, 0x08, 0x51, 0x07, 0x3b, 0x6a, 0x53, 0x75, 0x54, 0x1f, 0xf5, 0x43, 0x94, 0x9a, - 0xc8, 0x7d, 0x95, 0x3f, 0x0c, 0xf4, 0xd3, 0xea, 0x6d, 0xed, 0xb9, 0x9a, 0xf5, 0x30, 0xeb, 0x27, - 0xa9, 0x13, 0xba, 0xf5, 0x96, 0x05, 0xdd, 0x52, 0x1d, 0x46, 0xfc, 0x8a, 0x8f, 0x8a, 0xc0, 0x54, - 0xbf, 0x92, 0x22, 0x51, 0xd0, 0xc2, 0xb5, 0x45, 0x12, 0xbf, 0xbc, 0xb0, 0x54, 0x49, 0x93, 0x38, - 0x6a, 0x65, 0x79, 0x63, 0x49, 0x91, 0x37, 0xaf, 0x6e, 0x2c, 0xaf, 0x2e, 0x55, 0x32, 0xbe, 0x80, - 0xfd, 0xe9, 0x6c, 0xe1, 0x54, 0xe5, 0xb4, 0xf4, 0xcd, 0x34, 0x94, 0x83, 0x3b, 0x30, 0xf4, 0x5e, - 0x38, 0x2a, 0xd2, 0x25, 0x36, 0x76, 0x94, 0x5b, 0xba, 0x45, 0x57, 0x64, 0x47, 0x65, 0xde, 0xd1, - 0xd5, 0x89, 0x49, 0x4e, 0xb5, 0x8e, 0x9d, 0xe7, 0x74, 0x8b, 0xac, 0xb7, 0x8e, 0xea, 0xa0, 0x15, - 0xa8, 0x19, 0xa6, 0x62, 0x3b, 0xaa, 0xd1, 0x54, 0xad, 0xa6, 0xe2, 0x25, 0xaa, 0x14, 0x55, 0xd3, - 0xb0, 0x6d, 0x9b, 0xcc, 0x13, 0xba, 0x28, 0xf7, 0x1a, 0xe6, 0x3a, 0x27, 0xf6, 0x5c, 0xc4, 0x3c, - 0x27, 0x0d, 0xe9, 0x6f, 0x66, 0x90, 0xfe, 0xde, 0x03, 0xc5, 0x8e, 0xda, 0x55, 0xb0, 0xe1, 0x58, - 0x7b, 0x34, 0xee, 0x2e, 0xc8, 0x85, 0x8e, 0xda, 0x5d, 0x22, 0xe5, 0xb7, 0x65, 0xfb, 0xf3, 0x74, - 0xb6, 0x50, 0xa8, 0x14, 0x9f, 0xce, 0x16, 0x8a, 0x15, 0x90, 0x5e, 0xcf, 0xc0, 0x88, 0x3f, 0x0e, - 0x27, 0xdb, 0x1a, 0x8d, 0xba, 0xac, 0x14, 0x35, 0x6a, 0x27, 0x0f, 0x8c, 0xda, 0xe7, 0x16, 0x88, - 0x2f, 0xab, 0xe7, 0x58, 0x74, 0x2c, 0x33, 0x4e, 0x12, 0x47, 0x10, 0x65, 0xc3, 0x2c, 0x1a, 0x29, - 0xc8, 0xbc, 0x84, 0x2e, 0x43, 0xee, 0x45, 0x9b, 0x62, 0xe7, 0x28, 0xf6, 0xfd, 0x07, 0x63, 0x3f, - 0xbd, 0x4e, 0xc1, 0x8b, 0x4f, 0xaf, 0x2b, 0x57, 0xaf, 0xc9, 0xab, 0xf3, 0x2b, 0x32, 0x67, 0x47, - 0xc7, 0x20, 0xdb, 0x56, 0x5f, 0xde, 0x0b, 0x7a, 0x3d, 0x5a, 0x95, 0x74, 0x12, 0x8e, 0x41, 0xf6, - 0x16, 0x56, 0x6f, 0x04, 0x7d, 0x0d, 0xad, 0x7a, 0x0b, 0x17, 0xc3, 0x39, 0x18, 0xa6, 0xf2, 0x42, - 0x00, 0x5c, 0x62, 0x95, 0x21, 0x54, 0x80, 0xec, 0xc2, 0x35, 0x99, 0x2c, 0x88, 0x0a, 0x8c, 0xb0, - 0x5a, 0x65, 0x6d, 0x79, 0x69, 0x61, 0xa9, 0x92, 0x96, 0x1e, 0x85, 0x1c, 0x13, 0x02, 0x59, 0x2c, - 0xae, 0x18, 0x2a, 0x43, 0xbc, 0xc8, 0x31, 0x52, 0xe2, 0xe9, 0xe6, 0x6a, 0x63, 0x49, 0xae, 0xa4, - 0x83, 0x53, 0x9d, 0xad, 0x0c, 0x4b, 0x36, 0x8c, 0xf8, 0x03, 0xf1, 0xb7, 0x67, 0x93, 0xfd, 0xb5, - 0x14, 0x94, 0x7c, 0x81, 0x35, 0x89, 0x88, 0xd4, 0x76, 0xdb, 0xbc, 0xa5, 0xa8, 0x6d, 0x5d, 0xb5, - 0xb9, 0x6a, 0x00, 0xad, 0x9a, 0x27, 0x35, 0x49, 0xa7, 0xee, 0x6d, 0x5a, 0x22, 0xc3, 0x95, 0x9c, - 0xf4, 0xd9, 0x14, 0x54, 0xc2, 0x91, 0x6d, 0xa8, 0x9b, 0xa9, 0x1f, 0x66, 0x37, 0xa5, 0x4f, 0xa7, - 0xa0, 0x1c, 0x0c, 0x67, 0x43, 0xdd, 0x3b, 0xf1, 0x43, 0xed, 0xde, 0x5f, 0xa4, 0x61, 0x34, 0x10, - 0xc4, 0x26, 0xed, 0xdd, 0x4b, 0x30, 0xae, 0x37, 0x71, 0xa7, 0x6b, 0x3a, 0xd8, 0xd0, 0xf6, 0x94, - 0x36, 0xbe, 0x89, 0xdb, 0xd3, 0x12, 0x35, 0x1a, 0xe7, 0x0e, 0x0e, 0x93, 0xe7, 0x96, 0x3d, 0xbe, - 0x15, 0xc2, 0x56, 0x9f, 0x58, 0x5e, 0x5c, 0x5a, 0x5d, 0xbb, 0xb6, 0xb1, 0x74, 0x75, 0xe1, 0x03, - 0xca, 0xe6, 0xd5, 0x67, 0xae, 0x5e, 0x7b, 0xee, 0xaa, 0x5c, 0xd1, 0x43, 0x64, 0x6f, 0xe1, 0xb2, - 0x5f, 0x83, 0x4a, 0xb8, 0x53, 0xe8, 0x28, 0x44, 0x75, 0xab, 0x32, 0x84, 0x26, 0x60, 0xec, 0xea, - 0x35, 0x65, 0x7d, 0x79, 0x71, 0x49, 0x59, 0xba, 0x74, 0x69, 0x69, 0x61, 0x63, 0x9d, 0x25, 0x3e, - 0x5c, 0xea, 0x8d, 0xc0, 0x02, 0x97, 0x3e, 0x95, 0x81, 0x89, 0x88, 0x9e, 0xa0, 0x79, 0xbe, 0x65, - 0x61, 0xbb, 0xa8, 0x87, 0x93, 0xf4, 0x7e, 0x8e, 0xc4, 0x0c, 0x6b, 0xaa, 0xe5, 0xf0, 0x1d, 0xce, - 0x19, 0x20, 0x52, 0x32, 0x1c, 0x7d, 0x5b, 0xc7, 0x16, 0xcf, 0x13, 0xb1, 0x7d, 0xcc, 0x98, 0x57, - 0xcf, 0x52, 0x45, 0x0f, 0x01, 0xea, 0x9a, 0xb6, 0xee, 0xe8, 0x37, 0xb1, 0xa2, 0x1b, 0x22, 0xa9, - 0x44, 0xf6, 0x35, 0x59, 0xb9, 0x22, 0x9e, 0x2c, 0x1b, 0x8e, 0x4b, 0x6d, 0xe0, 0x96, 0x1a, 0xa2, - 0x26, 0xc6, 0x3c, 0x23, 0x57, 0xc4, 0x13, 0x97, 0xfa, 0x04, 0x8c, 0x34, 0xcd, 0x1e, 0x09, 0xf6, - 0x18, 0x1d, 0xf1, 0x1d, 0x29, 0xb9, 0xc4, 0xea, 0x5c, 0x12, 0x1e, 0xc6, 0x7b, 0xd9, 0xac, 0x11, - 0xb9, 0xc4, 0xea, 0x18, 0xc9, 0x69, 0x18, 0x53, 0x5b, 0x2d, 0x8b, 0x80, 0x0b, 0x20, 0xb6, 0x31, - 0x29, 0xbb, 0xd5, 0x94, 0xb0, 0xfa, 0x34, 0x14, 0x84, 0x1c, 0x88, 0xab, 0x26, 0x92, 0x50, 0xba, - 0x6c, 0xb7, 0x9d, 0x9e, 0x2d, 0xca, 0x05, 0x43, 0x3c, 0x3c, 0x01, 0x23, 0xba, 0xad, 0x78, 0xc9, - 0xf9, 0xf4, 0xf1, 0xf4, 0x6c, 0x41, 0x2e, 0xe9, 0xb6, 0x9b, 0xd8, 0x94, 0x3e, 0x9f, 0x86, 0x72, - 0xf0, 0x70, 0x01, 0x2d, 0x42, 0xa1, 0x6d, 0x6a, 0x2a, 0x55, 0x2d, 0x76, 0xb2, 0x35, 0x1b, 0x73, - 0x1e, 0x31, 0xb7, 0xc2, 0xe9, 0x65, 0x97, 0xb3, 0xfa, 0x1f, 0x52, 0x50, 0x10, 0xd5, 0x68, 0x0a, - 0xb2, 0x5d, 0xd5, 0xd9, 0xa1, 0x70, 0xc3, 0x8d, 0x74, 0x25, 0x25, 0xd3, 0x32, 0xa9, 0xb7, 0xbb, - 0xaa, 0x41, 0x55, 0x80, 0xd7, 0x93, 0x32, 0x99, 0xd7, 0x36, 0x56, 0x9b, 0x74, 0xd7, 0x63, 0x76, - 0x3a, 0xd8, 0x70, 0x6c, 0x31, 0xaf, 0xbc, 0x7e, 0x81, 0x57, 0xa3, 0x07, 0x61, 0xdc, 0xb1, 0x54, - 0xbd, 0x1d, 0xa0, 0xcd, 0x52, 0xda, 0x8a, 0x78, 0xe0, 0x12, 0xd7, 0xe1, 0x98, 0xc0, 0x6d, 0x62, - 0x47, 0xd5, 0x76, 0x70, 0xd3, 0x63, 0xca, 0xd1, 0xec, 0xc6, 0x51, 0x4e, 0xb0, 0xc8, 0x9f, 0x0b, - 0x5e, 0xe9, 0x9b, 0x29, 0x18, 0x17, 0xfb, 0xb4, 0xa6, 0x2b, 0xac, 0x55, 0x00, 0xd5, 0x30, 0x4c, - 0xc7, 0x2f, 0xae, 0x7e, 0x55, 0xee, 0xe3, 0x9b, 0x9b, 0x77, 0x99, 0x64, 0x1f, 0x40, 0xb5, 0x03, - 0xe0, 0x3d, 0x19, 0x28, 0xb6, 0x1a, 0x94, 0xf8, 0xc9, 0x11, 0x3d, 0x7e, 0x64, 0x3b, 0x7b, 0x60, - 0x55, 0x64, 0x43, 0x87, 0x26, 0x61, 0x78, 0x0b, 0xb7, 0x74, 0x83, 0xe7, 0x83, 0x59, 0x41, 0xe4, - 0x5f, 0xb2, 0x6e, 0xfe, 0xa5, 0xf1, 0x89, 0x14, 0x4c, 0x68, 0x66, 0x27, 0xdc, 0xdf, 0x46, 0x25, - 0x94, 0x5e, 0xb0, 0xaf, 0xa4, 0x5e, 0x78, 0xb2, 0xa5, 0x3b, 0x3b, 0xbd, 0xad, 0x39, 0xcd, 0xec, - 0x9c, 0x6b, 0x99, 0x6d, 0xd5, 0x68, 0x79, 0xe7, 0xa7, 0xf4, 0x87, 0xf6, 0x70, 0x0b, 0x1b, 0x0f, - 0xb7, 0x4c, 0xdf, 0x69, 0xea, 0x45, 0xef, 0xe7, 0xdf, 0xa6, 0x52, 0x9f, 0x4b, 0x67, 0x2e, 0xaf, - 0x35, 0xbe, 0x98, 0xae, 0x5e, 0x66, 0xcd, 0xad, 0x09, 0xf1, 0xc8, 0x78, 0xbb, 0x8d, 0x35, 0x32, - 0x64, 0xf8, 0xee, 0x83, 0x30, 0xd9, 0x32, 0x5b, 0x26, 0x45, 0x3c, 0x47, 0x7e, 0xf1, 0x13, 0xd9, - 0xa2, 0x5b, 0x5b, 0x8d, 0x3d, 0xbe, 0xad, 0x5f, 0x85, 0x09, 0x4e, 0xac, 0xd0, 0x23, 0x21, 0xb6, - 0xb1, 0x41, 0x07, 0xa6, 0xd5, 0xa6, 0x7f, 0xf7, 0x3b, 0xd4, 0xa1, 0xcb, 0xe3, 0x9c, 0x95, 0x3c, - 0x63, 0x7b, 0x9f, 0xba, 0x0c, 0x47, 0x02, 0x78, 0x6c, 0xd9, 0x62, 0x2b, 0x06, 0xf1, 0x8f, 0x38, - 0xe2, 0x84, 0x0f, 0x71, 0x9d, 0xb3, 0xd6, 0x17, 0x60, 0xf4, 0x30, 0x58, 0xff, 0x8e, 0x63, 0x8d, - 0x60, 0x3f, 0xc8, 0x65, 0x18, 0xa3, 0x20, 0x5a, 0xcf, 0x76, 0xcc, 0x0e, 0xb5, 0x89, 0x07, 0xc3, - 0xfc, 0xf1, 0x77, 0xd8, 0x3a, 0x2a, 0x13, 0xb6, 0x05, 0x97, 0xab, 0x5e, 0x07, 0x7a, 0x0a, 0xd6, - 0xc4, 0x5a, 0x3b, 0x06, 0xe1, 0xeb, 0xbc, 0x23, 0x2e, 0x7d, 0xfd, 0x3a, 0x4c, 0x92, 0xdf, 0xd4, - 0x64, 0xf9, 0x7b, 0x12, 0x9f, 0x83, 0x9b, 0xfe, 0xe6, 0x47, 0xd8, 0x52, 0x9d, 0x70, 0x01, 0x7c, - 0x7d, 0xf2, 0xcd, 0x62, 0x0b, 0x3b, 0x0e, 0xb6, 0x6c, 0x45, 0x6d, 0x47, 0x75, 0xcf, 0x97, 0xc4, - 0x98, 0xfe, 0xd5, 0x37, 0x82, 0xb3, 0x78, 0x99, 0x71, 0xce, 0xb7, 0xdb, 0xf5, 0x4d, 0x38, 0x1a, - 0xa1, 0x15, 0x09, 0x30, 0x3f, 0xc5, 0x31, 0x27, 0xfb, 0x34, 0x83, 0xc0, 0xae, 0x81, 0xa8, 0x77, - 0xe7, 0x32, 0x01, 0xe6, 0xaf, 0x71, 0x4c, 0xc4, 0x79, 0xc5, 0x94, 0x12, 0xc4, 0xa7, 0x61, 0xfc, - 0x26, 0xb6, 0xb6, 0x4c, 0x9b, 0x27, 0x8e, 0x12, 0xc0, 0x7d, 0x9a, 0xc3, 0x8d, 0x71, 0x46, 0x9a, - 0x49, 0x22, 0x58, 0x4f, 0x40, 0x61, 0x5b, 0xd5, 0x70, 0x02, 0x88, 0xcf, 0x70, 0x88, 0x3c, 0xa1, - 0x27, 0xac, 0xf3, 0x30, 0xd2, 0x32, 0xb9, 0xd7, 0x8a, 0x67, 0xff, 0x2c, 0x67, 0x2f, 0x09, 0x1e, - 0x0e, 0xd1, 0x35, 0xbb, 0xbd, 0x36, 0x71, 0x69, 0xf1, 0x10, 0xbf, 0x2e, 0x20, 0x04, 0x0f, 0x87, - 0x38, 0x84, 0x58, 0x5f, 0x13, 0x10, 0xb6, 0x4f, 0x9e, 0x4f, 0x41, 0xc9, 0x34, 0xda, 0x7b, 0xa6, - 0x91, 0xa4, 0x13, 0xbf, 0xc1, 0x11, 0x80, 0xb3, 0x10, 0x80, 0x8b, 0x50, 0x4c, 0x3a, 0x11, 0xff, - 0xec, 0x0d, 0xb1, 0x3c, 0xc4, 0x0c, 0x5c, 0x86, 0x31, 0x61, 0xa0, 0x74, 0xd3, 0x48, 0x00, 0xf1, - 0xcf, 0x39, 0x44, 0xd9, 0xc7, 0xc6, 0x87, 0xe1, 0x60, 0xdb, 0x69, 0xe1, 0x24, 0x20, 0x9f, 0x17, - 0xc3, 0xe0, 0x2c, 0x5c, 0x94, 0x5b, 0xd8, 0xd0, 0x76, 0x92, 0x21, 0x7c, 0x41, 0x88, 0x52, 0xf0, - 0x10, 0x88, 0x05, 0x18, 0xed, 0xa8, 0x96, 0xbd, 0xa3, 0xb6, 0x13, 0x4d, 0xc7, 0x6f, 0x72, 0x8c, - 0x11, 0x97, 0x89, 0x4b, 0xa4, 0x67, 0x1c, 0x06, 0xe6, 0x8b, 0x42, 0x22, 0x3e, 0x36, 0xbe, 0xf4, - 0x6c, 0x87, 0x66, 0xd9, 0x0e, 0x83, 0xf6, 0x2f, 0xc4, 0xd2, 0x63, 0xbc, 0xab, 0x7e, 0xc4, 0x8b, - 0x50, 0xb4, 0xf5, 0x97, 0x13, 0xc1, 0xfc, 0x4b, 0x31, 0xd3, 0x94, 0x81, 0x30, 0x7f, 0x00, 0x8e, - 0x45, 0xba, 0x89, 0x04, 0x60, 0xbf, 0xc5, 0xc1, 0xa6, 0x22, 0x5c, 0x05, 0x37, 0x09, 0x87, 0x85, - 0xfc, 0x92, 0x30, 0x09, 0x38, 0x84, 0xb5, 0x46, 0xf6, 0x11, 0xb6, 0xba, 0x7d, 0x38, 0xa9, 0xfd, - 0xb6, 0x90, 0x1a, 0xe3, 0x0d, 0x48, 0x6d, 0x03, 0xa6, 0x38, 0xe2, 0xe1, 0xe6, 0xf5, 0x77, 0x84, - 0x61, 0x65, 0xdc, 0x9b, 0xc1, 0xd9, 0xfd, 0x20, 0x54, 0x5d, 0x71, 0x8a, 0x80, 0xd5, 0x56, 0x3a, - 0x6a, 0x37, 0x01, 0xf2, 0xef, 0x72, 0x64, 0x61, 0xf1, 0xdd, 0x88, 0xd7, 0x5e, 0x55, 0xbb, 0x04, - 0xfc, 0x79, 0x98, 0x16, 0xe0, 0x3d, 0xc3, 0xc2, 0x9a, 0xd9, 0x32, 0xf4, 0x97, 0x71, 0x33, 0x01, - 0xf4, 0xef, 0x85, 0xa6, 0x6a, 0xd3, 0xc7, 0x4e, 0x90, 0x97, 0xa1, 0xe2, 0xc6, 0x2a, 0x8a, 0xde, - 0xe9, 0x9a, 0x96, 0x13, 0x83, 0xf8, 0xaf, 0xc4, 0x4c, 0xb9, 0x7c, 0xcb, 0x94, 0xad, 0xbe, 0x04, - 0x65, 0x5a, 0x4c, 0xaa, 0x92, 0xbf, 0xcf, 0x81, 0x46, 0x3d, 0x2e, 0x6e, 0x38, 0x34, 0xb3, 0xd3, - 0x55, 0xad, 0x24, 0xf6, 0xef, 0x5f, 0x0b, 0xc3, 0xc1, 0x59, 0xb8, 0xe1, 0x70, 0xf6, 0xba, 0x98, - 0x78, 0xfb, 0x04, 0x08, 0x5f, 0x16, 0x86, 0x43, 0xf0, 0x70, 0x08, 0x11, 0x30, 0x24, 0x80, 0xf8, - 0x03, 0x01, 0x21, 0x78, 0x08, 0xc4, 0xb3, 0x9e, 0xa3, 0xb5, 0x70, 0x4b, 0xb7, 0x1d, 0x8b, 0x85, - 0xc9, 0x07, 0x43, 0x7d, 0xe5, 0x8d, 0x60, 0x10, 0x26, 0xfb, 0x58, 0x89, 0x25, 0xe2, 0x69, 0x57, - 0xba, 0x8b, 0x8a, 0xef, 0xd8, 0x57, 0x85, 0x25, 0xf2, 0xb1, 0x91, 0xbe, 0xf9, 0x22, 0x44, 0x22, - 0x76, 0x8d, 0xec, 0x1d, 0x12, 0xc0, 0xfd, 0x61, 0xa8, 0x73, 0xeb, 0x82, 0x97, 0x60, 0xfa, 0xe2, - 0x9f, 0x9e, 0x71, 0x03, 0xef, 0x25, 0xd2, 0xce, 0x7f, 0x13, 0x8a, 0x7f, 0x36, 0x19, 0x27, 0xb3, - 0x21, 0x63, 0xa1, 0x78, 0x0a, 0xc5, 0xdd, 0x1f, 0x9a, 0xfe, 0x07, 0x6f, 0xf2, 0xf1, 0x06, 0xc3, - 0xa9, 0xfa, 0x0a, 0x51, 0xf2, 0x60, 0xd0, 0x13, 0x0f, 0xf6, 0x91, 0x37, 0x5d, 0x3d, 0x0f, 0xc4, - 0x3c, 0xf5, 0x4b, 0x30, 0x1a, 0x08, 0x78, 0xe2, 0xa1, 0x7e, 0x8a, 0x43, 0x8d, 0xf8, 0xe3, 0x9d, - 0xfa, 0xa3, 0x90, 0x25, 0xc1, 0x4b, 0x3c, 0xfb, 0x4f, 0x73, 0x76, 0x4a, 0x5e, 0x7f, 0x1f, 0x14, - 0x44, 0xd0, 0x12, 0xcf, 0xfa, 0x33, 0x9c, 0xd5, 0x65, 0x21, 0xec, 0x22, 0x60, 0x89, 0x67, 0xff, - 0x59, 0xc1, 0x2e, 0x58, 0x08, 0x7b, 0x72, 0x11, 0x7e, 0xed, 0x1f, 0x66, 0xb9, 0xd3, 0x11, 0xb2, - 0xbb, 0x08, 0x79, 0x1e, 0xa9, 0xc4, 0x73, 0x7f, 0x8c, 0x37, 0x2e, 0x38, 0xea, 0x8f, 0xc3, 0x70, - 0x42, 0x81, 0xff, 0x3c, 0x67, 0x65, 0xf4, 0xf5, 0x05, 0x28, 0xf9, 0xa2, 0x93, 0x78, 0xf6, 0x5f, - 0xe0, 0xec, 0x7e, 0x2e, 0xd2, 0x75, 0x1e, 0x9d, 0xc4, 0x03, 0x7c, 0x42, 0x74, 0x9d, 0x73, 0x10, - 0xb1, 0x89, 0xc0, 0x24, 0x9e, 0xfb, 0x93, 0x42, 0xea, 0x82, 0xa5, 0xfe, 0x14, 0x14, 0x5d, 0x67, - 0x13, 0xcf, 0xff, 0x8b, 0x9c, 0xdf, 0xe3, 0x21, 0x12, 0xf0, 0x39, 0xbb, 0x78, 0x88, 0x5f, 0x12, - 0x12, 0xf0, 0x71, 0x91, 0x65, 0x14, 0x0e, 0x60, 0xe2, 0x91, 0xfe, 0x91, 0x58, 0x46, 0xa1, 0xf8, - 0x85, 0xcc, 0x26, 0xb5, 0xf9, 0xf1, 0x10, 0xbf, 0x2c, 0x66, 0x93, 0xd2, 0x93, 0x6e, 0x84, 0x23, - 0x82, 0x78, 0x8c, 0x7f, 0x22, 0xba, 0x11, 0x0a, 0x08, 0xea, 0x6b, 0x80, 0xfa, 0xa3, 0x81, 0x78, - 0xbc, 0x57, 0x39, 0xde, 0x78, 0x5f, 0x30, 0x50, 0x7f, 0x0e, 0xa6, 0xa2, 0x23, 0x81, 0x78, 0xd4, - 0x5f, 0x7d, 0x33, 0xb4, 0x77, 0xf3, 0x07, 0x02, 0xf5, 0x0d, 0xcf, 0xa5, 0xf8, 0xa3, 0x80, 0x78, - 0xd8, 0x4f, 0xbd, 0x19, 0x34, 0xdc, 0xfe, 0x20, 0xa0, 0x3e, 0x0f, 0xe0, 0x39, 0xe0, 0x78, 0xac, - 0x4f, 0x73, 0x2c, 0x1f, 0x13, 0x59, 0x1a, 0xdc, 0xff, 0xc6, 0xf3, 0x7f, 0x46, 0x2c, 0x0d, 0xce, - 0x41, 0x96, 0x86, 0x70, 0xbd, 0xf1, 0xdc, 0x9f, 0x15, 0x4b, 0x43, 0xb0, 0x10, 0xcd, 0xf6, 0x79, - 0xb7, 0x78, 0x84, 0xdf, 0x10, 0x9a, 0xed, 0xe3, 0xaa, 0x5f, 0x85, 0xf1, 0x3e, 0x87, 0x18, 0x0f, - 0xf5, 0x39, 0x0e, 0x55, 0x09, 0xfb, 0x43, 0xbf, 0xf3, 0xe2, 0xce, 0x30, 0x1e, 0xed, 0x9f, 0x86, - 0x9c, 0x17, 0xf7, 0x85, 0xf5, 0x8b, 0x50, 0x30, 0x7a, 0xed, 0x36, 0x59, 0x3c, 0xe8, 0xe0, 0x3b, - 0x7f, 0xd3, 0xff, 0xed, 0xfb, 0x5c, 0x3a, 0x82, 0xa1, 0xfe, 0x28, 0x0c, 0xe3, 0xce, 0x16, 0x6e, - 0xc6, 0x71, 0x7e, 0xf7, 0xfb, 0xc2, 0x60, 0x12, 0xea, 0xfa, 0x53, 0x00, 0x2c, 0x35, 0x42, 0x8f, - 0x07, 0x63, 0x78, 0xff, 0xfb, 0xf7, 0xf9, 0x6d, 0x1c, 0x8f, 0xc5, 0x03, 0x60, 0x77, 0x7b, 0x0e, - 0x06, 0x78, 0x23, 0x08, 0x40, 0x67, 0xe4, 0x09, 0xc8, 0xbf, 0x68, 0x9b, 0x86, 0xa3, 0xb6, 0xe2, - 0xb8, 0xff, 0x07, 0xe7, 0x16, 0xf4, 0x44, 0x60, 0x1d, 0xd3, 0xc2, 0x8e, 0xda, 0xb2, 0xe3, 0x78, - 0xff, 0x27, 0xe7, 0x75, 0x19, 0x08, 0xb3, 0xa6, 0xda, 0x4e, 0x92, 0x71, 0xff, 0x2f, 0xc1, 0x2c, - 0x18, 0x48, 0xa7, 0xc9, 0xef, 0x1b, 0x78, 0x2f, 0x8e, 0xf7, 0xaf, 0x45, 0xa7, 0x39, 0x7d, 0xfd, - 0x7d, 0x50, 0x24, 0x3f, 0xd9, 0x15, 0xbb, 0x18, 0xe6, 0xff, 0xcd, 0x99, 0x3d, 0x0e, 0xd2, 0xb2, - 0xed, 0x34, 0x1d, 0x3d, 0x5e, 0xd8, 0xb7, 0xf9, 0x4c, 0x0b, 0xfa, 0xfa, 0x3c, 0x94, 0x6c, 0xa7, - 0xd9, 0xec, 0xf1, 0xf8, 0x34, 0x86, 0xfd, 0xff, 0x7c, 0xdf, 0x4d, 0x59, 0xb8, 0x3c, 0x64, 0xb6, - 0x6f, 0xdd, 0x70, 0xba, 0x26, 0x3d, 0x02, 0x89, 0x43, 0x78, 0x93, 0x23, 0xf8, 0x58, 0xea, 0x0b, - 0x30, 0x42, 0xc6, 0x62, 0xe1, 0x2e, 0xa6, 0xe7, 0x55, 0x31, 0x10, 0xff, 0x97, 0x0b, 0x20, 0xc0, - 0xd4, 0xf8, 0xd0, 0xd7, 0x5f, 0x9f, 0x49, 0x7d, 0xe3, 0xf5, 0x99, 0xd4, 0x5f, 0xbc, 0x3e, 0x93, - 0xfa, 0xe4, 0xb7, 0x67, 0x86, 0xbe, 0xf1, 0xed, 0x99, 0xa1, 0x3f, 0xfb, 0xf6, 0xcc, 0x50, 0x74, - 0xda, 0x18, 0x2e, 0x9b, 0x97, 0x4d, 0x96, 0x30, 0x7e, 0x41, 0x0a, 0xa4, 0x8b, 0x5b, 0xa6, 0x97, - 0xad, 0x75, 0x37, 0x39, 0xf0, 0x87, 0x69, 0x78, 0x80, 0x5e, 0xf7, 0xb5, 0x3a, 0xba, 0xe1, 0x9c, - 0xd3, 0xac, 0xbd, 0xae, 0x63, 0x9e, 0xeb, 0x60, 0xeb, 0x46, 0x1b, 0xf3, 0x3f, 0x3c, 0xfb, 0x3b, - 0xed, 0x91, 0xcd, 0x31, 0xb2, 0x39, 0xf6, 0xbc, 0x1a, 0x99, 0x2d, 0x96, 0x16, 0x20, 0xbf, 0x66, - 0x99, 0xe6, 0xf6, 0xb5, 0x2e, 0x42, 0xfc, 0x06, 0x33, 0xbf, 0x19, 0x47, 0xd5, 0xb0, 0x02, 0x99, - 0x1b, 0x78, 0x8f, 0x26, 0xce, 0x47, 0x64, 0xf2, 0x93, 0x50, 0x35, 0x55, 0x47, 0xa5, 0x09, 0xf3, - 0x11, 0x99, 0xfe, 0x96, 0x1a, 0x30, 0x4c, 0x41, 0xd0, 0x13, 0x90, 0x31, 0xbb, 0x36, 0xcf, 0xee, - 0x9f, 0x98, 0x1b, 0xd4, 0x97, 0x39, 0xde, 0x64, 0x23, 0xfb, 0xf5, 0xfd, 0xda, 0x90, 0x4c, 0x78, - 0x1a, 0x6b, 0x7f, 0xfb, 0xad, 0x99, 0xd4, 0x17, 0x5e, 0x9f, 0x49, 0x0d, 0x92, 0xe4, 0x0b, 0x73, - 0x3e, 0x41, 0xf9, 0x84, 0x31, 0x48, 0x2e, 0x5b, 0x39, 0x3a, 0xc2, 0x77, 0xc3, 0xcf, 0xa5, 0x61, - 0xc6, 0x47, 0xd4, 0xd6, 0xb7, 0xec, 0x73, 0x37, 0x6e, 0x9e, 0x23, 0xe3, 0xb3, 0xb9, 0xd4, 0x90, - 0xaf, 0xa7, 0xe4, 0xf9, 0xdc, 0x8d, 0x9b, 0x03, 0xe4, 0x35, 0x07, 0xd9, 0x35, 0x55, 0xb7, 0x84, - 0x60, 0x52, 0x9e, 0x60, 0x26, 0xbd, 0xcb, 0xad, 0xa4, 0x8e, 0x15, 0xa4, 0xf3, 0x50, 0x78, 0x66, - 0xf9, 0xb1, 0x0b, 0x49, 0x78, 0x32, 0x9c, 0xa7, 0x21, 0x0b, 0x51, 0x7c, 0x25, 0x42, 0x1c, 0x5f, - 0xfb, 0xf6, 0x4c, 0xca, 0x15, 0xc9, 0x6c, 0xac, 0x48, 0xf8, 0x68, 0x5d, 0x61, 0x7c, 0x32, 0x0d, - 0xb5, 0xf0, 0xa9, 0x00, 0x59, 0x8a, 0xb6, 0xa3, 0x76, 0xba, 0x83, 0xde, 0xe9, 0xba, 0x08, 0xc5, - 0x0d, 0x41, 0x83, 0xa6, 0x21, 0x6f, 0x63, 0xcd, 0x34, 0x9a, 0x36, 0x1d, 0x49, 0x46, 0x16, 0x45, - 0x32, 0x1a, 0x43, 0x35, 0x4c, 0x9b, 0x5f, 0x39, 0x65, 0x85, 0xc6, 0x3f, 0x4e, 0x1d, 0x6e, 0x6d, - 0x94, 0xdd, 0xa6, 0xe8, 0x02, 0x59, 0x4b, 0xbd, 0xf0, 0xe0, 0x41, 0x07, 0x2a, 0x74, 0x1a, 0xbd, - 0x21, 0xf8, 0x4e, 0x4f, 0x66, 0xc2, 0xa7, 0x27, 0xcf, 0xe1, 0x76, 0xfb, 0x19, 0xc3, 0xbc, 0x65, - 0x6c, 0x10, 0x1e, 0x57, 0x24, 0x1f, 0x4f, 0xc3, 0x4c, 0xdf, 0x41, 0x09, 0x37, 0x2f, 0x83, 0x24, - 0x52, 0x87, 0xc2, 0xa2, 0xb0, 0x5a, 0x87, 0x15, 0xc8, 0x2f, 0x1f, 0x52, 0x20, 0xa3, 0xa2, 0x25, - 0x21, 0x8f, 0xb3, 0xf1, 0xf2, 0x10, 0xfd, 0xbf, 0x03, 0x71, 0xfc, 0xd4, 0x93, 0x70, 0xc2, 0xa7, - 0x40, 0xea, 0x96, 0xa6, 0x9f, 0xe3, 0x42, 0xf6, 0xad, 0x98, 0x23, 0xbe, 0x15, 0x43, 0x48, 0xe6, - 0xe8, 0xc3, 0xe8, 0x45, 0x53, 0x4d, 0x66, 0xbb, 0xaa, 0x31, 0xab, 0xb4, 0x1a, 0xa7, 0xb8, 0xd5, - 0x98, 0x69, 0x94, 0xfe, 0x66, 0x18, 0xf2, 0x32, 0x7e, 0xa9, 0x87, 0x6d, 0xfa, 0x4a, 0x22, 0xd6, - 0x76, 0x4c, 0x7e, 0xdb, 0x5d, 0x9a, 0x8b, 0x1c, 0xcf, 0x1c, 0xa7, 0x5e, 0xd2, 0x76, 0xcc, 0x2b, - 0x43, 0x32, 0xe5, 0xa0, 0xef, 0x80, 0xb5, 0x7b, 0xf6, 0x0e, 0xbf, 0x94, 0x7c, 0xf2, 0x60, 0xd6, - 0x4b, 0x84, 0xf4, 0xca, 0x90, 0xcc, 0x78, 0x48, 0xb3, 0xf4, 0xfd, 0xb5, 0x6c, 0x92, 0x66, 0x97, - 0x8d, 0x6d, 0xda, 0x2c, 0xe1, 0x40, 0x57, 0x00, 0x6c, 0xec, 0x88, 0xab, 0x0c, 0xc3, 0x94, 0xff, - 0xf4, 0xc1, 0xfc, 0xeb, 0xd8, 0x61, 0x6e, 0xeb, 0xca, 0x90, 0x5c, 0xb4, 0x45, 0x81, 0x20, 0xe9, - 0x86, 0xee, 0x28, 0xda, 0x8e, 0xaa, 0x1b, 0xf4, 0x0c, 0x3e, 0x16, 0x69, 0xd9, 0xd0, 0x9d, 0x05, - 0x42, 0x4e, 0x90, 0x74, 0x51, 0x20, 0xa2, 0x78, 0xa9, 0x87, 0xf9, 0xdd, 0xb7, 0x58, 0x51, 0x3c, - 0x4b, 0x48, 0x89, 0x28, 0x28, 0x0f, 0x7a, 0x06, 0x4a, 0xf4, 0xb8, 0x55, 0xd9, 0x6a, 0x9b, 0xda, - 0x0d, 0xfe, 0x66, 0xc9, 0xec, 0xc1, 0x10, 0x0d, 0xc2, 0xd0, 0x20, 0xf4, 0x57, 0x86, 0x64, 0xd8, - 0x72, 0x4b, 0xa8, 0x01, 0x05, 0x76, 0xed, 0xd7, 0xd9, 0xe5, 0xef, 0x06, 0x3e, 0x70, 0x30, 0x12, - 0xbd, 0x01, 0xbc, 0xb1, 0x7b, 0x65, 0x48, 0xce, 0x6b, 0xec, 0x27, 0x5a, 0x82, 0x22, 0x36, 0x9a, - 0xbc, 0x3b, 0x25, 0xfe, 0x16, 0xd5, 0xc1, 0x7a, 0x61, 0x34, 0x45, 0x67, 0x0a, 0x98, 0xff, 0x46, - 0x4f, 0x42, 0x4e, 0x33, 0x3b, 0x1d, 0xdd, 0xa1, 0xef, 0x18, 0x96, 0xce, 0xdf, 0x1f, 0xd3, 0x11, - 0x4a, 0x7b, 0x65, 0x48, 0xe6, 0x5c, 0x64, 0x7a, 0x9a, 0xb8, 0xad, 0xdf, 0xc4, 0x16, 0x19, 0xcc, - 0x44, 0x92, 0xe9, 0x59, 0x64, 0xf4, 0x74, 0x38, 0xc5, 0xa6, 0x28, 0x34, 0xf2, 0xdc, 0xbd, 0x48, - 0xa7, 0xa1, 0xe4, 0xd3, 0x64, 0x62, 0xb1, 0xf8, 0x0e, 0x84, 0x3b, 0x7b, 0x51, 0x94, 0xca, 0x30, - 0xe2, 0xd7, 0x5b, 0xa9, 0xe3, 0x32, 0xd2, 0x43, 0xfc, 0x69, 0xc8, 0xdf, 0xc4, 0x96, 0xcd, 0x4e, - 0xf0, 0x29, 0x23, 0x2f, 0xa2, 0x93, 0x30, 0x4a, 0xe5, 0xa6, 0x88, 0xe7, 0x69, 0x7a, 0x61, 0x64, - 0x84, 0x56, 0x5e, 0xe7, 0x44, 0x35, 0x28, 0x75, 0xcf, 0x77, 0x5d, 0x92, 0x0c, 0x25, 0x81, 0xee, - 0xf9, 0x2e, 0x27, 0x90, 0xea, 0x50, 0x09, 0xab, 0xae, 0xdf, 0x6b, 0x16, 0x23, 0xbc, 0x66, 0x51, - 0x78, 0xda, 0xdf, 0x49, 0xbb, 0xcc, 0xae, 0xb6, 0x92, 0xe5, 0x46, 0x8c, 0x04, 0xe5, 0x2e, 0x9d, - 0xaf, 0xf6, 0x85, 0x76, 0xae, 0xaf, 0x69, 0x14, 0x48, 0x28, 0xf2, 0xc9, 0x3f, 0xaf, 0xa5, 0x64, - 0xca, 0x81, 0x8e, 0x11, 0x85, 0x52, 0x75, 0x43, 0xd1, 0x9b, 0xe2, 0x6d, 0x62, 0x5a, 0x5e, 0x6e, - 0xa2, 0x67, 0xa1, 0xa2, 0x99, 0x86, 0x8d, 0x0d, 0xbb, 0x67, 0x2b, 0x5d, 0xd5, 0x52, 0x3b, 0xde, - 0x4b, 0x77, 0xd1, 0xd3, 0xb4, 0x20, 0xc8, 0xd7, 0x28, 0xb5, 0x3c, 0xa6, 0x05, 0x2b, 0xd0, 0x0a, - 0xc0, 0x4d, 0xb5, 0xad, 0x37, 0x55, 0xc7, 0xb4, 0x6c, 0xfe, 0x72, 0xca, 0x20, 0xb0, 0xeb, 0x82, - 0x70, 0xb3, 0xdb, 0x54, 0x1d, 0xcc, 0x83, 0x28, 0x1f, 0x3f, 0x3a, 0x05, 0x63, 0x6a, 0xb7, 0xab, - 0xd8, 0x8e, 0xea, 0x60, 0x65, 0x6b, 0xcf, 0xc1, 0x36, 0xb5, 0x17, 0x23, 0xf2, 0xa8, 0xda, 0xed, - 0xae, 0x93, 0xda, 0x06, 0xa9, 0x94, 0x9a, 0xee, 0x6c, 0xd3, 0xa5, 0xe9, 0xc6, 0x76, 0x29, 0x2f, - 0xb6, 0x23, 0x75, 0xf4, 0x6a, 0x05, 0x93, 0x81, 0xb8, 0x8d, 0x92, 0xdb, 0xc1, 0x7a, 0x6b, 0xc7, - 0xa1, 0xc3, 0xce, 0xc8, 0xbc, 0x44, 0x26, 0xa6, 0x6b, 0x99, 0x37, 0xd9, 0x6d, 0xa1, 0x82, 0xcc, - 0x0a, 0xd2, 0xaf, 0xa4, 0x61, 0xbc, 0x6f, 0xf9, 0x12, 0x5c, 0x7a, 0xc1, 0x9f, 0xb7, 0x45, 0x7e, - 0xa3, 0x8b, 0x04, 0x57, 0x6d, 0xf2, 0x97, 0x56, 0x4a, 0xe7, 0xef, 0x1b, 0x20, 0x81, 0x2b, 0x94, - 0x88, 0x0f, 0x9c, 0xb3, 0xa0, 0x4d, 0xa8, 0xb4, 0x55, 0xdb, 0x51, 0xd8, 0x2a, 0x62, 0x6f, 0x09, - 0x67, 0x0e, 0xb4, 0x04, 0x2b, 0xaa, 0x58, 0x7d, 0x44, 0xb9, 0x39, 0x5c, 0xb9, 0x1d, 0xa8, 0x45, - 0xcf, 0xc3, 0xe4, 0xd6, 0xde, 0xcb, 0xaa, 0xe1, 0xe8, 0x06, 0xbd, 0x6c, 0x14, 0x9c, 0xa3, 0xda, - 0x00, 0xe8, 0xa5, 0x9b, 0x7a, 0x13, 0x1b, 0x9a, 0x98, 0x9c, 0x09, 0x17, 0xc2, 0x9d, 0x3c, 0x5b, - 0x7a, 0x1e, 0xca, 0x41, 0x5b, 0x84, 0xca, 0x90, 0x76, 0x76, 0xb9, 0x44, 0xd2, 0xce, 0x2e, 0x7a, - 0x8c, 0x47, 0xe4, 0x69, 0x7a, 0x5b, 0x6e, 0x90, 0xb3, 0xe0, 0xdc, 0xde, 0xbb, 0x84, 0x92, 0xe4, - 0xae, 0x04, 0xd7, 0x30, 0x84, 0xb1, 0xa5, 0x33, 0x30, 0x16, 0x32, 0x62, 0xbe, 0x69, 0x4d, 0xf9, - 0xa7, 0x55, 0x1a, 0x83, 0xd1, 0x80, 0xad, 0x92, 0xfe, 0x24, 0x07, 0x05, 0x19, 0xdb, 0x5d, 0xa2, - 0xc4, 0xe8, 0x0a, 0x14, 0xf1, 0xae, 0x86, 0xbb, 0x8e, 0xb0, 0x0a, 0x07, 0x19, 0x71, 0xc6, 0xb3, - 0x24, 0xe8, 0x89, 0xb9, 0x72, 0x99, 0xd1, 0x13, 0x01, 0x97, 0x7c, 0x32, 0x0e, 0xc4, 0xef, 0x93, - 0xdf, 0x1b, 0xf4, 0xc9, 0xf7, 0xc7, 0xf0, 0x86, 0x9c, 0xf2, 0x13, 0x01, 0xa7, 0x1c, 0xd7, 0x70, - 0xc0, 0x2b, 0x2f, 0x47, 0x78, 0xe5, 0xb8, 0xe1, 0x0f, 0x70, 0xcb, 0xcb, 0x11, 0x6e, 0x79, 0x36, - 0xb6, 0x2f, 0x91, 0x7e, 0xf9, 0xbd, 0x41, 0xbf, 0x1c, 0x27, 0x8e, 0x90, 0x63, 0x5e, 0x89, 0x72, - 0xcc, 0x67, 0x62, 0x30, 0x06, 0x7a, 0xe6, 0x85, 0x3e, 0xcf, 0x7c, 0x2a, 0x06, 0x2a, 0xc2, 0x35, - 0x2f, 0x07, 0x7c, 0x22, 0x24, 0x92, 0x4d, 0xb4, 0x53, 0x44, 0x97, 0xfa, 0xbd, 0xfc, 0xe9, 0x38, - 0x55, 0x8b, 0x72, 0xf3, 0x4f, 0x85, 0xdc, 0xfc, 0x03, 0x71, 0xa3, 0x0a, 0xf9, 0x79, 0xcf, 0x3b, - 0x9f, 0x21, 0xf6, 0x31, 0xb4, 0x32, 0x88, 0x2d, 0xc5, 0x96, 0x65, 0x5a, 0xdc, 0xf1, 0xb1, 0x82, - 0x34, 0x4b, 0x2c, 0xb6, 0xa7, 0xff, 0x07, 0x78, 0x72, 0xba, 0x68, 0x7d, 0xda, 0x2e, 0x7d, 0x25, - 0xe5, 0xf1, 0x52, 0xcb, 0xe6, 0xb7, 0xf6, 0x45, 0x6e, 0xed, 0x7d, 0x0e, 0x3e, 0x1d, 0x74, 0xf0, - 0x35, 0x28, 0x11, 0x9f, 0x12, 0xf2, 0xdd, 0x6a, 0x57, 0xf8, 0x6e, 0x74, 0x16, 0xc6, 0xa9, 0xfd, - 0x65, 0x61, 0x00, 0x37, 0x24, 0x59, 0x6a, 0x48, 0xc6, 0xc8, 0x03, 0x26, 0x41, 0xe6, 0x28, 0x1e, - 0x86, 0x09, 0x1f, 0x2d, 0xc1, 0xa5, 0xbe, 0x80, 0x39, 0xa9, 0x8a, 0x4b, 0x3d, 0xdf, 0xed, 0x5e, - 0x51, 0xed, 0x1d, 0x69, 0xd5, 0x13, 0x90, 0x17, 0x17, 0x20, 0xc8, 0x6a, 0x66, 0x93, 0x8d, 0x7b, - 0x54, 0xa6, 0xbf, 0x49, 0xac, 0xd0, 0x36, 0x5b, 0xfc, 0x06, 0x24, 0xf9, 0x49, 0xa8, 0xdc, 0xa5, - 0x5d, 0x64, 0x6b, 0x56, 0xfa, 0xfd, 0x94, 0x87, 0xe7, 0x85, 0x0a, 0x51, 0x5e, 0x3d, 0x75, 0x37, - 0xbd, 0x7a, 0xfa, 0x07, 0xf3, 0xea, 0xd2, 0x9b, 0x29, 0x6f, 0x4a, 0x5d, 0x7f, 0x7d, 0x67, 0x22, - 0x20, 0xda, 0xc5, 0xde, 0x04, 0x67, 0x37, 0x75, 0x59, 0x41, 0x84, 0x5a, 0xb9, 0x88, 0x04, 0x45, - 0xde, 0x97, 0xd4, 0x40, 0x8f, 0x52, 0x3f, 0x6f, 0x6e, 0x73, 0xd3, 0x50, 0x8b, 0x49, 0xf4, 0xc8, - 0x8c, 0xda, 0xe7, 0x5f, 0x8a, 0x81, 0xb0, 0xe1, 0x5e, 0x28, 0x92, 0xae, 0xb3, 0xd7, 0x9f, 0x80, - 0xa7, 0x17, 0x45, 0x85, 0xd4, 0x04, 0xd4, 0x6f, 0x63, 0xd0, 0x55, 0xc8, 0xe1, 0x9b, 0xf4, 0x36, - 0x2a, 0x4b, 0x36, 0xdd, 0x3b, 0xd0, 0x11, 0x63, 0xc3, 0x69, 0x4c, 0x13, 0x61, 0x7e, 0x77, 0xbf, - 0x56, 0x61, 0x3c, 0x0f, 0x99, 0x1d, 0xdd, 0xc1, 0x9d, 0xae, 0xb3, 0x27, 0x73, 0x14, 0xe9, 0x67, - 0xd3, 0xc4, 0x1f, 0x06, 0xec, 0x4f, 0xa4, 0x78, 0xc5, 0xa2, 0x49, 0xfb, 0x42, 0xa4, 0x64, 0x22, - 0xbf, 0x0f, 0xa0, 0xa5, 0xda, 0xca, 0x2d, 0xd5, 0x70, 0x70, 0x93, 0xcb, 0xbd, 0xd8, 0x52, 0xed, - 0xe7, 0x68, 0x05, 0x89, 0x37, 0xc9, 0xe3, 0x9e, 0x8d, 0x9b, 0x74, 0x02, 0x32, 0x72, 0xbe, 0xa5, - 0xda, 0x9b, 0x36, 0x6e, 0xfa, 0xc6, 0x9a, 0xbf, 0x1b, 0x63, 0x0d, 0xca, 0xbb, 0x10, 0x96, 0xf7, - 0xc7, 0xd2, 0xde, 0xea, 0xf0, 0xc2, 0x87, 0x1f, 0x4d, 0x59, 0x7c, 0x86, 0xee, 0x29, 0x82, 0x4e, - 0x00, 0x7d, 0x00, 0xc6, 0xdd, 0x55, 0xa9, 0xf4, 0xe8, 0x6a, 0x15, 0x5a, 0x78, 0xb8, 0xc5, 0x5d, - 0xb9, 0x19, 0xac, 0xb6, 0xd1, 0x4f, 0xc2, 0xd1, 0x90, 0x0d, 0x72, 0x1b, 0x48, 0x1f, 0xca, 0x14, - 0x1d, 0x09, 0x9a, 0x22, 0x81, 0xef, 0x49, 0x2f, 0x73, 0x57, 0x56, 0xcd, 0xfd, 0x24, 0x84, 0xf5, - 0xbb, 0xb7, 0x28, 0x9d, 0x90, 0xfe, 0x34, 0x05, 0x63, 0xa1, 0x0e, 0xa2, 0xf7, 0xc0, 0x30, 0xf3, - 0xc0, 0xa9, 0x03, 0x13, 0x21, 0x54, 0xe2, 0x7c, 0x4c, 0x8c, 0x01, 0xcd, 0x43, 0x01, 0xf3, 0xe8, - 0x9a, 0x0b, 0xe5, 0x81, 0x98, 0x20, 0x9c, 0xf3, 0xbb, 0x6c, 0x68, 0x11, 0x8a, 0xae, 0xe8, 0x63, - 0x76, 0x6e, 0xee, 0xcc, 0x71, 0x10, 0x8f, 0x51, 0x5a, 0x80, 0x92, 0xaf, 0x7b, 0xec, 0x5d, 0xc0, - 0x5d, 0xbe, 0xdd, 0x62, 0x01, 0x74, 0xa1, 0xa3, 0xee, 0xd2, 0x9d, 0x16, 0x3a, 0x0a, 0x79, 0xf2, - 0xb0, 0xc5, 0x5f, 0x96, 0xca, 0xc8, 0xb9, 0x8e, 0xba, 0x7b, 0x59, 0xb5, 0xa5, 0x8f, 0xa7, 0xa0, - 0x1c, 0xec, 0x27, 0x7a, 0x10, 0x10, 0xa1, 0x55, 0x5b, 0x58, 0x31, 0x7a, 0x1d, 0xe6, 0x23, 0x05, - 0xe2, 0x58, 0x47, 0xdd, 0x9d, 0x6f, 0xe1, 0xab, 0xbd, 0x0e, 0x6d, 0xda, 0x46, 0xab, 0x50, 0x11, - 0xc4, 0x22, 0xd9, 0xc5, 0xa5, 0x72, 0xac, 0xff, 0x7b, 0x35, 0x9c, 0x80, 0xed, 0x75, 0x5f, 0x25, - 0x7b, 0xdd, 0x32, 0xc3, 0x13, 0x4f, 0xa4, 0x47, 0x61, 0x2c, 0x34, 0x62, 0x24, 0xc1, 0x68, 0xb7, - 0xb7, 0xa5, 0xdc, 0xc0, 0x7b, 0xf4, 0xf5, 0x77, 0xa6, 0xea, 0x45, 0xb9, 0xd4, 0xed, 0x6d, 0x3d, - 0x83, 0xf7, 0x68, 0xee, 0x50, 0xd2, 0xa0, 0x1c, 0xdc, 0x4c, 0x11, 0xc7, 0x61, 0x99, 0x3d, 0xa3, - 0x29, 0x3e, 0x6c, 0x40, 0x0b, 0xe8, 0x22, 0x0c, 0xdf, 0x34, 0x99, 0x36, 0x1f, 0xb4, 0x7b, 0xba, - 0x6e, 0x3a, 0xd8, 0xb7, 0x25, 0x63, 0x3c, 0x92, 0x0d, 0xc3, 0x54, 0x2f, 0x23, 0x0f, 0x2a, 0xae, - 0x03, 0xa8, 0x8e, 0x63, 0xe9, 0x5b, 0x3d, 0x0f, 0x7e, 0x7a, 0xae, 0x3f, 0xad, 0x3f, 0xb7, 0xa6, - 0xea, 0x56, 0xe3, 0x5e, 0xae, 0xd9, 0x93, 0x1e, 0x8f, 0x4f, 0xbb, 0x7d, 0x48, 0xd2, 0x1b, 0x59, - 0xc8, 0xb1, 0xed, 0x26, 0x7a, 0x32, 0x98, 0xfc, 0x28, 0x9d, 0x9f, 0x19, 0xd4, 0x7d, 0x46, 0xc5, - 0x7b, 0xef, 0x46, 0x50, 0xa7, 0xc2, 0x19, 0x85, 0x46, 0xe9, 0xf5, 0xfd, 0x5a, 0x9e, 0x46, 0x1f, - 0xcb, 0x8b, 0x5e, 0x7a, 0x61, 0xd0, 0xee, 0x5a, 0xe4, 0x32, 0xb2, 0x87, 0xce, 0x65, 0x5c, 0x81, - 0x51, 0x5f, 0xb8, 0xa5, 0x37, 0xf9, 0x3e, 0x65, 0xe6, 0xa0, 0x45, 0xb7, 0xbc, 0xc8, 0xfb, 0x5f, - 0x72, 0xc3, 0xb1, 0xe5, 0x26, 0x9a, 0x0d, 0x6e, 0xb2, 0x69, 0xd4, 0xc6, 0xc2, 0x05, 0xdf, 0xbe, - 0x99, 0xbe, 0x93, 0x7f, 0x0f, 0x14, 0xe9, 0x8b, 0xcd, 0x94, 0x84, 0x45, 0x0f, 0x05, 0x52, 0x41, - 0x1f, 0x9e, 0x86, 0x31, 0x2f, 0xb0, 0x61, 0x24, 0x05, 0x86, 0xe2, 0x55, 0x53, 0xc2, 0x47, 0x60, - 0xd2, 0xc0, 0xbb, 0x8e, 0x12, 0xa6, 0x2e, 0x52, 0x6a, 0x44, 0x9e, 0x5d, 0x0f, 0x72, 0x3c, 0x00, - 0x65, 0xcf, 0x84, 0x52, 0x5a, 0x60, 0xa9, 0x0f, 0xb7, 0x96, 0x92, 0x1d, 0x83, 0x82, 0x1b, 0x76, - 0x96, 0x28, 0x41, 0x5e, 0x65, 0xd1, 0xa6, 0x1b, 0xc8, 0x5a, 0xd8, 0xee, 0xb5, 0x1d, 0x0e, 0x32, - 0x42, 0x69, 0x68, 0x20, 0x2b, 0xb3, 0x7a, 0x4a, 0x7b, 0x12, 0x46, 0x85, 0x55, 0x61, 0x74, 0xa3, - 0x94, 0x6e, 0x44, 0x54, 0x52, 0xa2, 0x33, 0x50, 0xe9, 0x5a, 0x66, 0xd7, 0xb4, 0xb1, 0xa5, 0xa8, - 0xcd, 0xa6, 0x85, 0x6d, 0x7b, 0xba, 0xcc, 0xf0, 0x44, 0xfd, 0x3c, 0xab, 0x96, 0xde, 0x05, 0x79, - 0x11, 0x4f, 0x4f, 0xc2, 0x70, 0xc3, 0xb5, 0x90, 0x59, 0x99, 0x15, 0x88, 0x7f, 0x9d, 0xef, 0x76, - 0x79, 0x76, 0x8d, 0xfc, 0x94, 0xda, 0x90, 0xe7, 0x13, 0x16, 0x99, 0x53, 0x59, 0x85, 0x91, 0xae, - 0x6a, 0x91, 0x61, 0xf8, 0x33, 0x2b, 0x83, 0x76, 0x84, 0x6b, 0xaa, 0xe5, 0xac, 0x63, 0x27, 0x90, - 0x60, 0x29, 0x51, 0x7e, 0x56, 0x25, 0x3d, 0x01, 0xa3, 0x01, 0x1a, 0xd2, 0x4d, 0xc7, 0x74, 0xd4, - 0xb6, 0x58, 0xe8, 0xb4, 0xe0, 0xf6, 0x24, 0xed, 0xf5, 0x44, 0xba, 0x08, 0x45, 0x77, 0xae, 0xc8, - 0x46, 0x43, 0x88, 0x22, 0xc5, 0xc5, 0xcf, 0x8a, 0x34, 0x89, 0x64, 0xde, 0xe2, 0x9f, 0x68, 0xca, - 0xc8, 0xac, 0x20, 0x61, 0x9f, 0x61, 0x62, 0xde, 0x0c, 0xbd, 0x17, 0xf2, 0xdc, 0x30, 0xf1, 0xf5, - 0x38, 0x28, 0x5d, 0xb4, 0x46, 0x2d, 0x95, 0x48, 0x17, 0x31, 0xbb, 0xe5, 0x35, 0x93, 0xf6, 0x37, - 0xf3, 0x61, 0x28, 0x08, 0xe3, 0x13, 0xf4, 0x12, 0xac, 0x85, 0xe3, 0x71, 0x5e, 0x82, 0x37, 0xe2, - 0x31, 0x12, 0x6d, 0xb2, 0xf5, 0x96, 0x81, 0x9b, 0x8a, 0xb7, 0x04, 0xf9, 0x0b, 0xb3, 0x63, 0xec, - 0xc1, 0x8a, 0x58, 0x5f, 0xd2, 0x23, 0x90, 0x63, 0x7d, 0x8d, 0x34, 0x71, 0x51, 0xae, 0xf5, 0x3b, - 0x29, 0x28, 0x08, 0xf7, 0x11, 0xc9, 0x14, 0x18, 0x44, 0xfa, 0x4e, 0x07, 0x71, 0xf7, 0x4d, 0xd2, - 0x43, 0x80, 0xa8, 0xa6, 0x28, 0x37, 0x4d, 0x47, 0x37, 0x5a, 0x0a, 0x9b, 0x0b, 0xfe, 0xde, 0x20, - 0x7d, 0x72, 0x9d, 0x3e, 0x58, 0x23, 0xf5, 0x67, 0x4f, 0x42, 0xc9, 0x97, 0xe5, 0x42, 0x79, 0xc8, - 0x5c, 0xc5, 0xb7, 0x2a, 0x43, 0xa8, 0x04, 0x79, 0x19, 0xd3, 0x1c, 0x41, 0x25, 0x75, 0xfe, 0x8d, - 0x3c, 0x8c, 0xcd, 0x37, 0x16, 0x96, 0xe7, 0xbb, 0xdd, 0xb6, 0xce, 0xdf, 0xa7, 0xbb, 0x06, 0x59, - 0xba, 0x4f, 0x4e, 0x70, 0xbe, 0x53, 0x4d, 0x92, 0x70, 0x42, 0x32, 0x0c, 0xd3, 0xed, 0x34, 0x4a, - 0x72, 0xec, 0x53, 0x4d, 0x94, 0x87, 0x22, 0x9d, 0xa4, 0x0a, 0x97, 0xe0, 0x34, 0xa8, 0x9a, 0x24, - 0x39, 0x85, 0x7e, 0x12, 0x8a, 0xde, 0x3e, 0x39, 0xe9, 0x19, 0x51, 0x35, 0x71, 0xda, 0x8a, 0xe0, - 0x7b, 0x3b, 0x83, 0xa4, 0x47, 0x13, 0xd5, 0xc4, 0xf9, 0x1a, 0xf4, 0x3c, 0xe4, 0xc5, 0x1e, 0x2c, - 0xd9, 0x29, 0x4e, 0x35, 0x61, 0x4a, 0x89, 0x4c, 0x1f, 0xdb, 0x3a, 0x27, 0x39, 0xaa, 0xaa, 0x26, - 0xca, 0x9b, 0xa1, 0x4d, 0xc8, 0xf1, 0xe0, 0x37, 0xd1, 0x49, 0x4f, 0x35, 0x59, 0xa2, 0x88, 0x08, - 0xd9, 0x4b, 0x4e, 0x24, 0x3d, 0x9e, 0xab, 0x26, 0x4e, 0x18, 0x22, 0x15, 0xc0, 0xb7, 0x9f, 0x4e, - 0x7c, 0xee, 0x56, 0x4d, 0x9e, 0x08, 0x44, 0x1f, 0x84, 0x82, 0xbb, 0x6b, 0x4a, 0x78, 0x92, 0x56, - 0x4d, 0x9a, 0x8b, 0x6b, 0x6c, 0x26, 0xbe, 0x25, 0xf1, 0x60, 0xec, 0x2d, 0x09, 0xef, 0x90, 0xdb, - 0x3d, 0x06, 0xff, 0xf5, 0x3c, 0x4c, 0x68, 0xa6, 0xdd, 0x31, 0xed, 0x73, 0xec, 0x0f, 0x3f, 0xf8, - 0xce, 0xb1, 0xd2, 0x80, 0x93, 0xee, 0xf8, 0x93, 0x73, 0xe9, 0x32, 0x64, 0x17, 0x4c, 0x9d, 0xfa, - 0xf7, 0x26, 0x36, 0xcc, 0x8e, 0x48, 0xf0, 0xd1, 0x02, 0x3a, 0x09, 0x39, 0xb5, 0x63, 0xf6, 0x0c, - 0x47, 0x84, 0x88, 0xc4, 0x6e, 0xfe, 0x97, 0xfd, 0x5a, 0x66, 0xd9, 0x70, 0x64, 0xfe, 0xa8, 0x9e, - 0xfd, 0xab, 0xd7, 0x6a, 0x29, 0xe9, 0x69, 0xc8, 0x2f, 0x62, 0xed, 0x4e, 0xb0, 0x16, 0xb1, 0x16, - 0xc2, 0x3a, 0x03, 0x85, 0x65, 0xc3, 0x61, 0x5f, 0xc8, 0xba, 0x0f, 0x32, 0xba, 0xc1, 0xce, 0x00, - 0x42, 0xed, 0x93, 0x7a, 0x42, 0xba, 0x88, 0x35, 0x97, 0xb4, 0x89, 0xb5, 0x30, 0x29, 0x81, 0x27, - 0xf5, 0x52, 0x03, 0x46, 0xae, 0xab, 0x6d, 0x1e, 0xdb, 0x60, 0x1b, 0x3d, 0x04, 0x45, 0x55, 0x14, - 0xe8, 0x36, 0x62, 0xa4, 0x51, 0xfe, 0xde, 0x7e, 0x0d, 0x3c, 0x22, 0xd9, 0x23, 0xa8, 0x67, 0x5f, - 0xf9, 0xaf, 0xc7, 0x53, 0x92, 0x09, 0xf9, 0xcb, 0xaa, 0x4d, 0xcd, 0xda, 0x85, 0x40, 0xd6, 0x80, - 0x86, 0x45, 0x8d, 0x23, 0xb7, 0xf7, 0x6b, 0xe3, 0x7b, 0x6a, 0xa7, 0x5d, 0x97, 0xbc, 0x67, 0x92, - 0x3f, 0x99, 0x30, 0xe7, 0x4b, 0x26, 0xd0, 0xb0, 0xa9, 0x31, 0x71, 0x7b, 0xbf, 0x36, 0xe6, 0xf1, - 0x90, 0x27, 0x92, 0x9b, 0x61, 0x90, 0xba, 0x90, 0x63, 0x11, 0x5e, 0xe4, 0x71, 0x18, 0xcf, 0x6f, - 0xa4, 0xbd, 0xfc, 0x46, 0xfd, 0x50, 0x7b, 0x6a, 0x1e, 0x84, 0x30, 0x8e, 0x7a, 0xf6, 0xa3, 0xaf, - 0xd5, 0x86, 0x24, 0x0b, 0xd0, 0xba, 0xde, 0xe9, 0xb5, 0xd9, 0x5b, 0xce, 0xe2, 0x5c, 0xe5, 0x02, - 0xeb, 0x37, 0xcd, 0x9d, 0xb0, 0xe8, 0x63, 0x6c, 0x8e, 0x6b, 0x22, 0x17, 0x08, 0x73, 0xaa, 0xdf, - 0xd8, 0xaf, 0xa5, 0x68, 0xef, 0xa9, 0x8c, 0x4e, 0x41, 0x8e, 0xc5, 0xad, 0xdc, 0xd9, 0x97, 0x05, - 0x0f, 0x1b, 0x93, 0xcc, 0x9f, 0x4a, 0x4f, 0x42, 0x7e, 0xd5, 0x6e, 0x2d, 0x92, 0x21, 0x1d, 0x83, - 0x42, 0xc7, 0x6e, 0x29, 0xbe, 0xd0, 0x21, 0xdf, 0xb1, 0x5b, 0x1b, 0x03, 0x42, 0x0e, 0x3e, 0x2d, - 0xef, 0x86, 0xdc, 0xc6, 0x2e, 0x65, 0x3f, 0xe9, 0x4a, 0x29, 0xe3, 0xef, 0x23, 0x47, 0xf7, 0x33, - 0x35, 0x16, 0xff, 0xec, 0x5b, 0x33, 0x43, 0xaf, 0xbc, 0x3e, 0x33, 0x34, 0xf0, 0x8e, 0x97, 0xff, - 0x32, 0x5c, 0x60, 0xf5, 0x3d, 0x6c, 0x37, 0x6f, 0x84, 0x56, 0xe8, 0xc7, 0xde, 0x0f, 0xf7, 0x72, - 0x1a, 0xdb, 0x51, 0x6f, 0xe8, 0x46, 0x4b, 0xfc, 0xe5, 0x4b, 0xb5, 0xcc, 0xbb, 0xc2, 0x6b, 0xef, - 0x78, 0xc9, 0xfe, 0xc0, 0x17, 0x4f, 0xaa, 0x51, 0x96, 0x44, 0xda, 0xcf, 0x02, 0x5a, 0xb5, 0x5b, - 0x0b, 0x16, 0x66, 0x1f, 0x2c, 0xe0, 0xb1, 0x56, 0xf0, 0x85, 0x01, 0x3e, 0xf5, 0xf7, 0xcc, 0x05, - 0xc7, 0xe2, 0x7e, 0x7b, 0xd6, 0xdb, 0x67, 0x06, 0x5e, 0x33, 0x58, 0x02, 0xa0, 0x5b, 0x34, 0xdb, - 0xf6, 0x12, 0x02, 0xb5, 0x30, 0xc6, 0x82, 0x4b, 0x21, 0xab, 0x0e, 0xb6, 0x45, 0xca, 0xd9, 0x63, - 0x44, 0x1f, 0x86, 0x89, 0x8e, 0x6e, 0x28, 0x36, 0x6e, 0x6f, 0x2b, 0x4d, 0xdc, 0xa6, 0x9f, 0x73, - 0xe0, 0xc9, 0xff, 0x62, 0x63, 0x85, 0xaf, 0xf7, 0x53, 0xf1, 0x73, 0x36, 0xb7, 0x6c, 0x38, 0xb7, - 0xf7, 0x6b, 0x55, 0xb6, 0xe8, 0x22, 0x20, 0x25, 0x79, 0xbc, 0xa3, 0x1b, 0xeb, 0xb8, 0xbd, 0xbd, - 0xe8, 0xd6, 0xa1, 0x97, 0x61, 0x9c, 0x53, 0x98, 0xde, 0xc6, 0x89, 0x84, 0x9a, 0x23, 0x8d, 0xd5, - 0xdb, 0xfb, 0xb5, 0x69, 0x86, 0xd6, 0x47, 0x22, 0x7d, 0x6f, 0xbf, 0xf6, 0x70, 0x82, 0x3e, 0xcd, - 0x6b, 0x9a, 0xb0, 0x3a, 0x15, 0x17, 0x84, 0xd7, 0x90, 0xb6, 0xbd, 0x24, 0x9f, 0x68, 0x7b, 0x38, - 0xdc, 0x76, 0x1f, 0x49, 0xd2, 0xb6, 0x7d, 0x16, 0xcf, 0xcb, 0x02, 0x8a, 0xb6, 0xa7, 0x80, 0x6c, - 0x52, 0x44, 0x26, 0xbe, 0x28, 0xf3, 0x12, 0x9a, 0xf5, 0x27, 0xe3, 0x4b, 0xe7, 0x47, 0xc4, 0x7c, - 0x12, 0x17, 0xe0, 0xa6, 0x4a, 0xe8, 0x95, 0x5c, 0x66, 0xd4, 0xbf, 0x92, 0x81, 0xca, 0xaa, 0xdd, - 0x5a, 0x6a, 0xea, 0xce, 0x5d, 0x56, 0xaf, 0x6e, 0x94, 0x74, 0xa8, 0x91, 0x68, 0x2c, 0xdc, 0xde, - 0xaf, 0x95, 0x99, 0x74, 0xee, 0xa6, 0x4c, 0x3a, 0x30, 0xe6, 0xe9, 0xa5, 0x62, 0xa9, 0x0e, 0xff, - 0x7e, 0x49, 0x63, 0x31, 0xa1, 0x06, 0x2e, 0x62, 0xed, 0xf6, 0x7e, 0x6d, 0x8a, 0xf5, 0x2c, 0x04, - 0x25, 0xc9, 0x65, 0x2d, 0xb0, 0x16, 0xd0, 0x6e, 0xb4, 0xe2, 0xd3, 0x1c, 0x76, 0xe3, 0xca, 0x5b, - 0xa8, 0xf4, 0x7c, 0xea, 0xfe, 0x20, 0x0d, 0x25, 0x62, 0x41, 0x59, 0x3d, 0x8e, 0x5e, 0x0a, 0xa9, - 0x1f, 0xe2, 0x52, 0x48, 0xbf, 0x3d, 0x4b, 0xe1, 0xac, 0x1b, 0xc2, 0x64, 0x06, 0xea, 0x7c, 0x30, - 0x92, 0xf9, 0x8f, 0x19, 0x6a, 0x55, 0x69, 0x14, 0x2a, 0xe3, 0xe6, 0x3b, 0x41, 0x80, 0x3f, 0x9d, - 0x82, 0x23, 0x9e, 0x78, 0x6c, 0x4b, 0x0b, 0x49, 0xf1, 0xd9, 0xdb, 0xfb, 0xb5, 0x7b, 0xc3, 0x52, - 0xf4, 0x91, 0xdd, 0x81, 0x24, 0x27, 0x5c, 0xa0, 0x75, 0x4b, 0x8b, 0xee, 0x47, 0xd3, 0x76, 0xdc, - 0x7e, 0x64, 0x06, 0xf7, 0xc3, 0x47, 0xf6, 0x03, 0xf5, 0x63, 0xd1, 0x76, 0xfa, 0x27, 0x35, 0x9b, - 0x70, 0x52, 0xbf, 0x9a, 0x86, 0xd1, 0x55, 0xbb, 0xb5, 0x69, 0x34, 0x7f, 0xbc, 0x20, 0x0e, 0xbb, - 0x20, 0x3e, 0x9e, 0x82, 0xf2, 0x15, 0xdd, 0x76, 0x4c, 0x4b, 0xd7, 0xd4, 0x36, 0x0d, 0x12, 0xbd, - 0x7b, 0x56, 0xa9, 0xc3, 0xdf, 0xb3, 0x7a, 0x1c, 0x72, 0x37, 0xd5, 0xb6, 0x8d, 0x1d, 0x9e, 0x65, - 0x3f, 0x16, 0xf6, 0x1d, 0xe1, 0x3c, 0x12, 0x27, 0xe7, 0xdd, 0xf9, 0xed, 0x34, 0x8c, 0x85, 0x02, - 0x0f, 0xd4, 0x80, 0x2c, 0xb5, 0xe8, 0x6c, 0x1f, 0x31, 0x77, 0x88, 0xb8, 0x82, 0x6c, 0x35, 0x28, - 0x2f, 0xfa, 0x09, 0x28, 0x74, 0xd4, 0x5d, 0xe6, 0x19, 0xd8, 0x76, 0x67, 0xfe, 0x70, 0x38, 0xde, - 0xa6, 0x40, 0xe0, 0x48, 0x72, 0xbe, 0xa3, 0xee, 0x52, 0x7f, 0xd0, 0x85, 0x31, 0x52, 0xab, 0xed, - 0xa8, 0x46, 0x0b, 0xfb, 0xdd, 0xcf, 0x95, 0x43, 0x37, 0x32, 0xe5, 0x35, 0xe2, 0x83, 0x93, 0xe4, - 0xd1, 0x8e, 0xba, 0xbb, 0x40, 0x2b, 0x48, 0x8b, 0xf5, 0xc2, 0xab, 0xaf, 0xd5, 0x86, 0xa8, 0xc4, - 0xfe, 0x7d, 0x0a, 0xc0, 0x93, 0x18, 0xda, 0x80, 0x4a, 0xc8, 0x7d, 0x89, 0x7b, 0x0a, 0xb1, 0x01, - 0x9e, 0xb7, 0x5f, 0x18, 0xd3, 0x42, 0x53, 0xf0, 0x41, 0x28, 0xb1, 0x93, 0x46, 0x85, 0x26, 0xf4, - 0xd2, 0xb1, 0x09, 0xbd, 0x19, 0x82, 0x75, 0x7b, 0xbf, 0x86, 0xd8, 0x70, 0x7c, 0xcc, 0x12, 0x4d, - 0xf3, 0x01, 0xab, 0x21, 0x0c, 0xc1, 0xb1, 0x94, 0x7c, 0xb1, 0x05, 0xbd, 0xbf, 0x62, 0x1a, 0xfa, - 0x0d, 0x6c, 0xb9, 0x5b, 0x0f, 0x56, 0x44, 0x55, 0x28, 0xb0, 0x2f, 0x93, 0x39, 0x7b, 0xe2, 0x93, - 0xf7, 0xa2, 0x4c, 0xb8, 0x6e, 0xe1, 0x2d, 0x5b, 0x17, 0xb3, 0x20, 0x8b, 0x22, 0xba, 0x04, 0x15, - 0x1b, 0x6b, 0x3d, 0x4b, 0x77, 0xf6, 0x14, 0xcd, 0x34, 0x1c, 0x55, 0x73, 0xb8, 0xd3, 0xbe, 0xe7, - 0xf6, 0x7e, 0xed, 0x28, 0xeb, 0x6b, 0x98, 0x42, 0x92, 0xc7, 0x44, 0xd5, 0x02, 0xab, 0x21, 0x2d, - 0x34, 0xb1, 0xa3, 0xea, 0x6d, 0x16, 0xf4, 0x15, 0x65, 0x51, 0xf4, 0x8d, 0xe5, 0x4b, 0x79, 0x7f, - 0x42, 0xfb, 0x16, 0x54, 0xcc, 0x2e, 0xb6, 0x22, 0xec, 0xd1, 0x8a, 0xd7, 0x72, 0x98, 0xe2, 0x0e, - 0x4c, 0xc2, 0x98, 0xc0, 0x10, 0x16, 0xe1, 0x52, 0xe0, 0xde, 0x0a, 0x8b, 0x1b, 0xd3, 0xe1, 0x21, - 0x87, 0x29, 0x24, 0xff, 0x65, 0x15, 0x16, 0x5d, 0x4e, 0x41, 0xee, 0x45, 0x55, 0x6f, 0x8b, 0xcf, - 0x35, 0xca, 0xbc, 0x84, 0x96, 0x21, 0x67, 0x3b, 0xaa, 0xd3, 0x63, 0xa1, 0xf7, 0x70, 0xe3, 0x5d, - 0x09, 0xfb, 0xdc, 0x30, 0x8d, 0xe6, 0x3a, 0x65, 0x94, 0x39, 0x00, 0xba, 0x04, 0x39, 0xc7, 0xbc, - 0x81, 0x0d, 0x2e, 0xd4, 0x43, 0xad, 0x74, 0x9a, 0xff, 0x60, 0xdc, 0xc8, 0x01, 0xcf, 0x28, 0x2b, - 0xf6, 0x8e, 0x6a, 0x61, 0x9b, 0x85, 0xca, 0x8d, 0xe5, 0x43, 0x2f, 0xc7, 0xa3, 0x61, 0x4f, 0xc1, - 0xf0, 0x24, 0x79, 0xcc, 0xad, 0x5a, 0xa7, 0x35, 0xe1, 0xc8, 0x39, 0x7f, 0x47, 0x91, 0xf3, 0x25, - 0xa8, 0xf4, 0x8c, 0x2d, 0xd3, 0xa0, 0x9f, 0x56, 0xe3, 0x39, 0xf5, 0xc2, 0xf1, 0xd4, 0x6c, 0xc6, - 0x3f, 0x5b, 0x61, 0x0a, 0x49, 0x1e, 0x73, 0xab, 0xf8, 0x0d, 0xaa, 0x26, 0x94, 0x3d, 0x2a, 0xba, - 0x64, 0x8b, 0xb1, 0x4b, 0xf6, 0x04, 0x5f, 0xb2, 0x47, 0xc2, 0xad, 0x78, 0xab, 0x76, 0xd4, 0xad, - 0x24, 0x6c, 0xe8, 0xfd, 0x81, 0x6d, 0x24, 0xf0, 0x16, 0x06, 0x5a, 0x99, 0xe4, 0x3b, 0xc8, 0xd2, - 0xdb, 0xb2, 0x83, 0xac, 0x8f, 0x7c, 0xf4, 0xb5, 0xda, 0x90, 0xbb, 0x60, 0x7f, 0x2e, 0x0d, 0xb9, - 0xc5, 0xeb, 0xf4, 0x55, 0xac, 0x1f, 0xd1, 0xf0, 0xc1, 0x67, 0xbd, 0xde, 0x07, 0x79, 0x26, 0x0b, - 0x1b, 0x9d, 0x87, 0xe1, 0x2e, 0xf9, 0xc1, 0x53, 0x38, 0x53, 0x7d, 0x2a, 0x4d, 0xe9, 0xc4, 0x0e, - 0x93, 0x92, 0x4a, 0x9f, 0xcb, 0x00, 0x2c, 0x5e, 0xbf, 0xbe, 0x61, 0xe9, 0xdd, 0x36, 0x76, 0x7e, - 0x1c, 0x5e, 0xbf, 0x73, 0xc2, 0x6b, 0xdf, 0x1c, 0x3f, 0x03, 0x25, 0x6f, 0x8e, 0x6c, 0xf4, 0x5e, - 0x28, 0x38, 0xfc, 0x37, 0x9f, 0xea, 0x6a, 0xff, 0x54, 0x0b, 0x72, 0x3e, 0xdd, 0x2e, 0x87, 0xf4, - 0x9f, 0xd3, 0x00, 0x71, 0xc9, 0x99, 0x1f, 0x81, 0x00, 0xfc, 0x12, 0xe4, 0xb8, 0xc7, 0xc9, 0xdc, - 0x51, 0xb4, 0xca, 0xb9, 0x7d, 0xb3, 0xf4, 0xad, 0x34, 0x4c, 0x6c, 0x0a, 0xb3, 0xfb, 0x63, 0x09, - 0xa3, 0x2b, 0x90, 0xc7, 0x86, 0x63, 0xe9, 0x58, 0x64, 0xd4, 0x67, 0xc3, 0x5a, 0x1a, 0x21, 0x2d, - 0xfa, 0xc9, 0x75, 0x71, 0xe3, 0x86, 0xb3, 0xfb, 0x64, 0xfc, 0x89, 0x0c, 0x4c, 0x0f, 0xe2, 0x42, - 0x0b, 0x30, 0xa6, 0x59, 0x98, 0x56, 0x28, 0xfe, 0x17, 0x20, 0x1a, 0x55, 0x5f, 0xc6, 0x28, 0x48, - 0x20, 0xc9, 0x65, 0x51, 0xc3, 0x1d, 0x72, 0x8b, 0x26, 0xa8, 0xc8, 0x52, 0x21, 0x54, 0x09, 0x83, - 0x68, 0x89, 0x7b, 0x64, 0x2f, 0x2d, 0xe5, 0x07, 0x60, 0x2e, 0xb9, 0xec, 0xd5, 0x52, 0x9f, 0xfc, - 0x12, 0x8c, 0xe9, 0x86, 0xee, 0xe8, 0x6a, 0x5b, 0xd9, 0x52, 0xdb, 0xaa, 0xa1, 0xdd, 0xc9, 0x56, - 0x84, 0x79, 0x53, 0xde, 0x6c, 0x08, 0x4e, 0x92, 0xcb, 0xbc, 0xa6, 0xc1, 0x2a, 0xc8, 0x8c, 0x88, - 0xa6, 0xb2, 0x77, 0x14, 0xb8, 0x09, 0x76, 0xdf, 0x8c, 0xfc, 0x7c, 0x06, 0xc6, 0xdd, 0xfc, 0xcc, - 0x8f, 0xa7, 0x22, 0xe9, 0x54, 0xac, 0x02, 0x30, 0x03, 0x42, 0x3c, 0xc7, 0x1d, 0xcc, 0x06, 0x31, - 0x41, 0x45, 0x86, 0xb0, 0x68, 0x3b, 0xbe, 0xf9, 0xf8, 0xcb, 0x0c, 0x8c, 0xf8, 0xe7, 0xe3, 0xc7, - 0x2e, 0xfd, 0x1d, 0x94, 0x31, 0x9b, 0xf7, 0x4c, 0x62, 0x96, 0x7f, 0x5b, 0x21, 0x64, 0x12, 0xfb, - 0x96, 0xd2, 0x60, 0x5b, 0xf8, 0x37, 0x69, 0xc8, 0xf1, 0xbb, 0x9d, 0x5a, 0xdf, 0x2e, 0x22, 0x15, - 0x77, 0x77, 0xf4, 0xe0, 0x4d, 0xc4, 0xab, 0x91, 0x9b, 0x88, 0x72, 0x47, 0xdd, 0x55, 0x02, 0x6f, - 0x42, 0xa4, 0x66, 0x47, 0x1b, 0xc7, 0x3c, 0x94, 0xe0, 0x73, 0x96, 0x0b, 0xf1, 0xee, 0xf5, 0xa1, - 0xc7, 0xa1, 0x44, 0x28, 0x3c, 0xaf, 0x40, 0xd8, 0xa7, 0xbc, 0xe4, 0x83, 0xef, 0xa1, 0x24, 0x43, - 0x47, 0xdd, 0x5d, 0x62, 0x05, 0xb4, 0x02, 0x68, 0xc7, 0x4d, 0x7d, 0x29, 0x9e, 0x08, 0x09, 0xff, - 0x7d, 0xb7, 0xf7, 0x6b, 0xc7, 0x18, 0x7f, 0x3f, 0x8d, 0x24, 0x8f, 0x7b, 0x95, 0x02, 0xed, 0x02, - 0x00, 0x19, 0x97, 0xc2, 0x8e, 0xda, 0xd9, 0x16, 0xd6, 0x77, 0xfe, 0xec, 0x3d, 0x93, 0xe4, 0x22, - 0x29, 0x2c, 0x92, 0xdf, 0x3e, 0xc1, 0xff, 0x42, 0x0a, 0x90, 0xe7, 0x7b, 0xdc, 0x83, 0xde, 0xf7, - 0xd3, 0x77, 0x9b, 0xc4, 0xce, 0x28, 0x15, 0xbd, 0xc9, 0xf2, 0xf8, 0xc4, 0x26, 0xcb, 0xb7, 0x54, - 0x1f, 0xf2, 0xec, 0x73, 0x7a, 0x60, 0x56, 0x30, 0xc2, 0x06, 0xff, 0xdb, 0x14, 0x1c, 0xeb, 0x53, - 0x1c, 0xb7, 0x5f, 0xd7, 0x01, 0x59, 0xbe, 0x87, 0xfc, 0xbf, 0x9c, 0xa4, 0xf8, 0x7f, 0x0d, 0x4b, - 0xa8, 0x7f, 0xe3, 0x56, 0x9f, 0x8d, 0xbf, 0x7b, 0xde, 0x84, 0x67, 0x14, 0x53, 0x30, 0xe9, 0x6f, - 0xde, 0x1d, 0xc0, 0x25, 0x18, 0xf1, 0xb7, 0xce, 0xbb, 0x7e, 0xef, 0x41, 0x5d, 0xe7, 0xbd, 0x0e, - 0xf0, 0xa1, 0x65, 0x6f, 0xf5, 0x89, 0x7f, 0x5c, 0x17, 0x37, 0x7a, 0xf7, 0x32, 0x4c, 0x68, 0x15, - 0xb2, 0x1e, 0xff, 0xbf, 0x14, 0x64, 0xd7, 0x4c, 0xb3, 0x8d, 0x4c, 0x18, 0x37, 0x4c, 0x47, 0x21, - 0xca, 0x82, 0x9b, 0x0a, 0xcf, 0x8d, 0xb0, 0x2c, 0xe8, 0xc2, 0xe1, 0x84, 0xf2, 0xdd, 0xfd, 0x5a, - 0x3f, 0x94, 0x3c, 0x66, 0x98, 0x4e, 0x83, 0xd6, 0x6c, 0xb0, 0xcc, 0xc9, 0x87, 0x61, 0x34, 0xd8, - 0x18, 0xcb, 0x14, 0x3d, 0x77, 0xe8, 0xc6, 0x82, 0x30, 0xb7, 0xf7, 0x6b, 0x93, 0xde, 0x22, 0x70, - 0xab, 0x25, 0x79, 0x64, 0xcb, 0xd7, 0x7a, 0xbd, 0x40, 0x46, 0xff, 0xd7, 0xaf, 0xd5, 0x52, 0x8d, - 0x4b, 0x03, 0x6f, 0x00, 0x3c, 0x74, 0x60, 0x17, 0x76, 0xdd, 0xa3, 0xfe, 0xe0, 0x5d, 0x80, 0x2f, - 0xa6, 0xe1, 0x3e, 0x4e, 0x4d, 0xdf, 0x61, 0x3c, 0xd7, 0x55, 0x5b, 0xba, 0xe1, 0xff, 0x84, 0xc7, - 0x08, 0x9f, 0x32, 0xfa, 0x58, 0x32, 0xa0, 0xb4, 0xa6, 0xb6, 0xb0, 0xf8, 0x18, 0x44, 0xff, 0x97, - 0x59, 0xa6, 0x20, 0x67, 0x6e, 0x6f, 0xb3, 0x2c, 0x77, 0x6a, 0x36, 0x2b, 0xf3, 0x12, 0x9a, 0x84, - 0xe1, 0xb6, 0xde, 0xd1, 0x1d, 0xfe, 0x02, 0x1c, 0x2b, 0xa0, 0x1a, 0x94, 0x34, 0xb3, 0x67, 0x38, - 0x0a, 0xbb, 0x0a, 0x9b, 0x15, 0xdf, 0x05, 0xed, 0x19, 0xce, 0x06, 0xa9, 0x91, 0x9e, 0x82, 0x11, - 0xd6, 0x1e, 0x57, 0xcd, 0x63, 0x50, 0xa0, 0xf7, 0x9a, 0xbd, 0x56, 0xf3, 0xa4, 0xcc, 0x2f, 0xa6, - 0x32, 0x14, 0xd6, 0x30, 0x2b, 0x34, 0x1a, 0x03, 0x05, 0x36, 0x1b, 0x3f, 0x67, 0x4c, 0x26, 0xae, - 0xb0, 0x7e, 0x65, 0x0e, 0xaa, 0xa1, 0x8b, 0x13, 0x94, 0x60, 0xc0, 0xb5, 0x89, 0x83, 0x05, 0x3b, - 0xe0, 0x56, 0xc5, 0x81, 0x37, 0x33, 0xa4, 0x0f, 0xc1, 0x14, 0xbd, 0x3b, 0xe7, 0xd9, 0x78, 0x31, - 0x13, 0x53, 0x6e, 0xb6, 0x31, 0xc5, 0xff, 0x41, 0x33, 0x4b, 0x1d, 0x3e, 0x08, 0x19, 0x0b, 0xbf, - 0xe4, 0xbe, 0xda, 0xe0, 0x9f, 0xcc, 0x39, 0xdf, 0x4c, 0xca, 0x84, 0x4a, 0xfa, 0x68, 0x0a, 0x8e, - 0xf6, 0xe1, 0x73, 0xc9, 0x3f, 0x15, 0x78, 0x27, 0x2f, 0x95, 0xec, 0x08, 0xc3, 0xff, 0x72, 0xfd, - 0x43, 0xa4, 0x27, 0xb6, 0x1b, 0x51, 0x46, 0xf4, 0x84, 0xb5, 0x44, 0xba, 0x62, 0x4b, 0x2f, 0xc1, - 0x91, 0x60, 0x4f, 0xc4, 0x40, 0x9f, 0x87, 0x72, 0x70, 0xfb, 0xc4, 0x63, 0xab, 0x77, 0x1d, 0x3e, - 0x64, 0x18, 0x0d, 0x6c, 0xa1, 0xa4, 0xe7, 0xc2, 0xc2, 0x75, 0xc7, 0xfe, 0xbe, 0xfe, 0x1b, 0xcd, - 0xb1, 0x43, 0xf7, 0xbd, 0xf0, 0xf2, 0x9b, 0x29, 0x38, 0x1e, 0x44, 0xf6, 0xbc, 0x92, 0xfd, 0x96, - 0x8f, 0xeb, 0x70, 0x2a, 0xf0, 0x47, 0x29, 0x38, 0x71, 0x40, 0x5f, 0xb9, 0x40, 0x2c, 0x98, 0xf4, - 0x39, 0x38, 0x8b, 0x57, 0x0b, 0xb5, 0x90, 0x06, 0x3b, 0x61, 0xd7, 0xbe, 0xdf, 0x43, 0x84, 0xf4, - 0xc5, 0x3f, 0xaf, 0x4d, 0xf4, 0x3f, 0xb3, 0xe5, 0x89, 0x7e, 0xa7, 0x74, 0x58, 0xfd, 0xf9, 0xbd, - 0x14, 0x9c, 0x09, 0x8e, 0x23, 0x62, 0x1b, 0xfb, 0x4e, 0x13, 0xfe, 0x97, 0x53, 0x70, 0x36, 0x49, - 0xa7, 0xf9, 0x2c, 0xbc, 0x00, 0x13, 0x5e, 0x18, 0x19, 0x9e, 0x84, 0x93, 0x09, 0x36, 0xff, 0x5c, - 0x55, 0x91, 0x8b, 0x72, 0xa7, 0xd2, 0xfe, 0x93, 0x14, 0x5f, 0x3b, 0xfe, 0xd9, 0x74, 0x45, 0x1b, - 0xdc, 0xeb, 0x1c, 0x52, 0xb4, 0xbe, 0xfd, 0xce, 0x68, 0x60, 0xbf, 0x13, 0x31, 0x69, 0xe9, 0xbb, - 0x64, 0x09, 0x7e, 0x46, 0xd8, 0xc1, 0x88, 0xa8, 0xf3, 0x06, 0x4c, 0x44, 0xa8, 0xbe, 0xfb, 0x3a, - 0x5e, 0xbc, 0xe6, 0x4f, 0x7d, 0x6f, 0xbf, 0x16, 0x11, 0xce, 0xca, 0xa8, 0x5f, 0xe9, 0xa5, 0xff, - 0x94, 0x82, 0x1a, 0xed, 0x48, 0xc4, 0xe4, 0xfd, 0x5d, 0x16, 0x30, 0xe6, 0x06, 0x31, 0x72, 0x58, - 0x5c, 0xd0, 0xf3, 0x90, 0x63, 0x7a, 0xc9, 0x65, 0x7b, 0x08, 0x85, 0xe6, 0x8c, 0x9e, 0xe1, 0x5d, - 0x14, 0xe3, 0x8a, 0x5e, 0xfb, 0x6f, 0x91, 0xfc, 0x0e, 0xb5, 0xf6, 0xbf, 0x24, 0x0c, 0x6f, 0x74, - 0x5f, 0xb9, 0x50, 0x3e, 0xf8, 0x03, 0x1b, 0x5e, 0xfe, 0x61, 0x95, 0xbb, 0x68, 0x61, 0xdd, 0x0e, - 0xc7, 0x58, 0xd8, 0x77, 0x82, 0x94, 0x5d, 0x0b, 0x1b, 0xd3, 0xe9, 0x77, 0x9c, 0x85, 0xfd, 0x4e, - 0x1a, 0x8e, 0xd1, 0x8e, 0xfb, 0xb7, 0x4c, 0x6f, 0x83, 0x74, 0x15, 0x40, 0xb6, 0xa5, 0x29, 0x77, - 0xcb, 0x0e, 0x54, 0x6c, 0x4b, 0xbb, 0x1e, 0x70, 0x90, 0x0a, 0xa0, 0xa6, 0xed, 0x84, 0x1b, 0xc8, - 0xdc, 0x71, 0x03, 0x4d, 0xdb, 0xb9, 0x1e, 0xe5, 0x81, 0xb3, 0x89, 0xf4, 0xe3, 0xb7, 0x52, 0x50, - 0x8d, 0x12, 0x33, 0xd7, 0x07, 0x15, 0xa6, 0x02, 0x5b, 0xfb, 0xb0, 0x4a, 0xdc, 0x7f, 0xd0, 0x06, - 0x37, 0xb4, 0x04, 0x8f, 0x58, 0xf8, 0x07, 0x5f, 0x84, 0x5f, 0x10, 0x0e, 0xc2, 0xd5, 0xe7, 0xfe, - 0xad, 0xc1, 0x3b, 0x64, 0xe9, 0xfd, 0x62, 0x9f, 0x31, 0xfe, 0xe1, 0xef, 0x32, 0xfe, 0x34, 0x05, - 0x33, 0x03, 0xfa, 0xf4, 0x77, 0xd9, 0xbd, 0xfe, 0xbd, 0x81, 0x4a, 0x71, 0xb7, 0xb6, 0x34, 0x17, - 0xf8, 0x32, 0x09, 0x5e, 0x90, 0xf3, 0x6d, 0x46, 0x23, 0x3f, 0x88, 0xf5, 0x2c, 0xdc, 0x13, 0xc9, - 0xc5, 0xfb, 0x74, 0x1e, 0xb2, 0x3b, 0xba, 0xed, 0xb8, 0x6f, 0x89, 0x87, 0xba, 0x13, 0xe2, 0xa2, - 0xb4, 0x12, 0x82, 0x0a, 0x85, 0x5c, 0x33, 0xcd, 0x36, 0x6f, 0x5e, 0x5a, 0x80, 0x71, 0x5f, 0x1d, - 0x07, 0x9f, 0x83, 0x6c, 0xd7, 0x34, 0xdb, 0x1c, 0x7c, 0x32, 0x0c, 0x4e, 0x68, 0xf9, 0x30, 0x29, - 0x9d, 0x34, 0x09, 0x88, 0x81, 0xb0, 0xef, 0x17, 0x70, 0xe8, 0x3d, 0x98, 0x08, 0xd4, 0xba, 0xef, - 0x9c, 0xe4, 0x02, 0x5f, 0xbe, 0xe9, 0xbb, 0x0a, 0xc0, 0xe8, 0xdd, 0x57, 0x69, 0x59, 0x16, 0xf9, - 0x50, 0xba, 0x7a, 0xfe, 0x8f, 0x47, 0xc4, 0x3b, 0x78, 0x0a, 0x80, 0x2f, 0xc9, 0x7b, 0x2a, 0xdc, - 0x56, 0x74, 0x86, 0xa0, 0x7a, 0x3a, 0x96, 0x8e, 0x07, 0x9d, 0x43, 0xe8, 0x27, 0xfc, 0x17, 0xb4, - 0x1e, 0x38, 0x98, 0x4f, 0xc0, 0x9f, 0x8a, 0x23, 0x73, 0xd1, 0xff, 0x3e, 0x4c, 0x46, 0x6d, 0x2e, - 0xd1, 0x23, 0x07, 0x23, 0xf4, 0x07, 0x15, 0xd5, 0x77, 0x1d, 0x82, 0xc3, 0x6d, 0xfe, 0xd5, 0x14, - 0xdc, 0x77, 0xe0, 0xfe, 0x0a, 0x3d, 0x71, 0x30, 0xec, 0x01, 0x61, 0x4e, 0xb5, 0x7e, 0x27, 0xac, - 0x6e, 0xd7, 0x94, 0xc0, 0x4d, 0x81, 0x68, 0x89, 0xf6, 0x6d, 0x00, 0x06, 0x4c, 0x6c, 0x7f, 0xe8, - 0x27, 0x0d, 0xa1, 0x97, 0xa3, 0x4f, 0xcc, 0xcf, 0x45, 0x22, 0x0c, 0xde, 0x73, 0x54, 0x1f, 0x49, - 0xce, 0xe0, 0x9f, 0xf6, 0xa8, 0xd0, 0x76, 0xc0, 0xb4, 0x1f, 0x10, 0xb1, 0x0f, 0x98, 0xf6, 0x83, - 0xe2, 0x66, 0x3e, 0xed, 0x07, 0x06, 0x7d, 0x03, 0xa6, 0x3d, 0x49, 0x74, 0x3b, 0x60, 0xda, 0x13, - 0xc5, 0x98, 0xd2, 0x10, 0xda, 0x81, 0xd1, 0x40, 0xb8, 0x81, 0xce, 0x44, 0xc2, 0x45, 0x45, 0x7e, - 0xd5, 0xb3, 0x49, 0x48, 0xfd, 0xf3, 0x1f, 0xe1, 0x7d, 0x07, 0xcc, 0xff, 0xe0, 0x90, 0xa2, 0xfa, - 0x48, 0x72, 0x06, 0xb7, 0xed, 0x5b, 0xee, 0x21, 0x8e, 0x8f, 0x00, 0xcd, 0x25, 0x44, 0x12, 0x2d, - 0x9f, 0x4b, 0x4c, 0xef, 0x36, 0x7c, 0xa3, 0xef, 0x1e, 0x77, 0xb4, 0xd0, 0x22, 0x7d, 0x59, 0xf5, - 0xc1, 0x44, 0xb4, 0x6e, 0x63, 0xab, 0xfc, 0x84, 0xe2, 0x78, 0x24, 0x9b, 0xcf, 0x4b, 0x55, 0x4f, - 0x1c, 0x40, 0xe1, 0xc2, 0xad, 0xbb, 0x47, 0x8e, 0x52, 0x34, 0xb9, 0xdf, 0x3b, 0x55, 0x4f, 0x1e, - 0x48, 0x23, 0x40, 0xef, 0xf6, 0x21, 0xc2, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x88, 0x17, 0x60, - 0x8b, 0xf1, 0x92, 0x00, 0x00, + // 9458 bytes of a gzipped FileDescriptorSet + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x24, 0xc7, + 0x75, 0x18, 0xf6, 0x03, 0x8b, 0xdd, 0xb7, 0x8b, 0xc5, 0xa2, 0x81, 0xbb, 0xdb, 0x5b, 0x92, 0xb7, + 0xc7, 0x39, 0x7e, 0xe0, 0xf8, 0x81, 0xa3, 0x4e, 0xfc, 0xdc, 0xa3, 0x48, 0x61, 0x01, 0xdc, 0x1d, + 0x48, 0xe0, 0x0e, 0x1c, 0x00, 0x47, 0x8a, 0xb2, 0x3c, 0x1e, 0xcc, 0x36, 0x16, 0x43, 0xec, 0xce, + 0x2c, 0x67, 0x66, 0xef, 0x00, 0x96, 0x52, 0xc5, 0x94, 0x64, 0x5b, 0x72, 0x64, 0x4b, 0x76, 0xec, + 0x84, 0x96, 0x25, 0x85, 0x52, 0x2a, 0x91, 0xac, 0xc4, 0xf2, 0x47, 0x1c, 0x59, 0x72, 0xfe, 0xa8, + 0x2a, 0xe5, 0x58, 0xa9, 0x72, 0xa5, 0xa4, 0x94, 0x93, 0x72, 0xa5, 0x52, 0xb0, 0x45, 0xaa, 0xca, + 0x8e, 0xc2, 0x24, 0xca, 0x85, 0x76, 0xb9, 0xa4, 0x1f, 0x71, 0xf5, 0xd7, 0x7c, 0xed, 0x2c, 0x66, + 0x70, 0x3a, 0x52, 0x74, 0x89, 0xbf, 0xb0, 0xfd, 0xfa, 0xbd, 0xd7, 0xdd, 0xaf, 0x5f, 0xbf, 0xf7, + 0xfa, 0x75, 0xf7, 0x00, 0xbe, 0x9c, 0x86, 0xdb, 0x34, 0xd3, 0xee, 0x9a, 0xf6, 0x99, 0x17, 0xfb, + 0xd8, 0xda, 0x3b, 0xd3, 0x53, 0xdb, 0xba, 0xa1, 0x3a, 0xba, 0x69, 0xcc, 0xf6, 0x2c, 0xd3, 0x31, + 0x51, 0x89, 0x55, 0xcf, 0xd2, 0x6a, 0xc9, 0x80, 0xe2, 0xaa, 0xda, 0xc6, 0x32, 0x7e, 0xb1, 0x8f, + 0x6d, 0x07, 0x55, 0x20, 0xb3, 0x83, 0xf7, 0xaa, 0xa9, 0x93, 0xa9, 0x99, 0x92, 0x4c, 0x7e, 0xa2, + 0xa3, 0x90, 0x33, 0xb7, 0xb6, 0x6c, 0xec, 0x54, 0xd3, 0x27, 0x53, 0x33, 0x59, 0x99, 0x97, 0xd0, + 0x34, 0x8c, 0x76, 0xf4, 0xae, 0xee, 0x54, 0x33, 0x14, 0xcc, 0x0a, 0xa8, 0x0e, 0x45, 0xcd, 0xec, + 0x1b, 0x8e, 0xe2, 0x98, 0x8e, 0xda, 0xa9, 0x66, 0x4f, 0xa6, 0x66, 0xf2, 0x32, 0x50, 0xd0, 0x3a, + 0x81, 0x48, 0x4f, 0x42, 0x89, 0xb5, 0x67, 0xf7, 0x4c, 0xc3, 0xc6, 0xe8, 0x38, 0xe4, 0x0d, 0xbc, + 0xeb, 0x28, 0x5e, 0xab, 0x63, 0xa4, 0xfc, 0x34, 0xde, 0x23, 0x2d, 0x30, 0x2e, 0xac, 0x61, 0x56, + 0x68, 0x36, 0xbf, 0xf9, 0xda, 0x89, 0xd4, 0xb7, 0x5e, 0x3b, 0x91, 0xfa, 0x8b, 0xd7, 0x4e, 0xa4, + 0x3e, 0xf5, 0xfa, 0x89, 0x91, 0x6f, 0xbd, 0x7e, 0x62, 0xe4, 0xcf, 0x5e, 0x3f, 0x31, 0xf2, 0xfc, + 0x4c, 0x5b, 0x77, 0xb6, 0xfb, 0x9b, 0xb3, 0x9a, 0xd9, 0x3d, 0xc3, 0x45, 0xc0, 0xfe, 0xdc, 0x6f, + 0xb7, 0x76, 0xce, 0x38, 0x7b, 0x3d, 0xcc, 0x65, 0xb2, 0x99, 0xa3, 0x92, 0x78, 0x2f, 0xfc, 0xc6, + 0x39, 0x38, 0xd9, 0x36, 0xcd, 0x76, 0x07, 0x9f, 0xa1, 0x90, 0xcd, 0xfe, 0xd6, 0x99, 0x16, 0xb6, + 0x35, 0x4b, 0xef, 0x39, 0xa6, 0xc5, 0xe5, 0x35, 0xc1, 0x30, 0x66, 0x05, 0x86, 0xb4, 0x02, 0x93, + 0xe7, 0xf5, 0x0e, 0x5e, 0x70, 0x11, 0xd7, 0xb0, 0x83, 0x1e, 0x85, 0xec, 0x96, 0xde, 0xc1, 0xd5, + 0xd4, 0xc9, 0xcc, 0x4c, 0xf1, 0xec, 0x1d, 0xb3, 0x21, 0xa2, 0xd9, 0x20, 0xc5, 0x2a, 0x01, 0xcb, + 0x94, 0x42, 0xfa, 0x6e, 0x16, 0xa6, 0x22, 0x6a, 0x11, 0x82, 0xac, 0xa1, 0x76, 0x31, 0x95, 0x4a, + 0x41, 0xa6, 0xbf, 0x51, 0x15, 0xc6, 0x7a, 0xaa, 0xb6, 0xa3, 0xb6, 0x31, 0x15, 0x4a, 0x41, 0x16, + 0x45, 0x74, 0x02, 0xa0, 0x85, 0x7b, 0xd8, 0x68, 0x61, 0x43, 0xdb, 0xab, 0x66, 0x4e, 0x66, 0x66, + 0x0a, 0xb2, 0x0f, 0x82, 0xee, 0x85, 0xc9, 0x5e, 0x7f, 0xb3, 0xa3, 0x6b, 0x8a, 0x0f, 0x0d, 0x4e, + 0x66, 0x66, 0x46, 0xe5, 0x0a, 0xab, 0x58, 0xf0, 0x90, 0xef, 0x86, 0x89, 0x6b, 0x58, 0xdd, 0xf1, + 0xa3, 0x16, 0x29, 0x6a, 0x99, 0x80, 0x7d, 0x88, 0xf3, 0x50, 0xea, 0x62, 0xdb, 0x56, 0xdb, 0x58, + 0x21, 0xf2, 0xad, 0x66, 0xe9, 0xe8, 0x4f, 0x0e, 0x8c, 0x3e, 0x3c, 0xf2, 0x22, 0xa7, 0x5a, 0xdf, + 0xeb, 0x61, 0x34, 0x07, 0x05, 0x6c, 0xf4, 0xbb, 0x8c, 0xc3, 0xe8, 0x10, 0xf9, 0x2d, 0x1a, 0xfd, + 0x6e, 0x98, 0x4b, 0x9e, 0x90, 0x71, 0x16, 0x63, 0x36, 0xb6, 0xae, 0xea, 0x1a, 0xae, 0xe6, 0x28, + 0x83, 0xbb, 0x07, 0x18, 0xac, 0xb1, 0xfa, 0x30, 0x0f, 0x41, 0x87, 0xe6, 0xa1, 0x80, 0x77, 0x1d, + 0x6c, 0xd8, 0xba, 0x69, 0x54, 0xc7, 0x28, 0x93, 0x3b, 0x23, 0x66, 0x11, 0x77, 0x5a, 0x61, 0x16, + 0x1e, 0x1d, 0x7a, 0x18, 0xc6, 0xcc, 0x1e, 0x59, 0x6b, 0x76, 0x35, 0x7f, 0x32, 0x35, 0x53, 0x3c, + 0x7b, 0x6b, 0xa4, 0x22, 0x5c, 0x66, 0x38, 0xb2, 0x40, 0x46, 0x4b, 0x50, 0xb1, 0xcd, 0xbe, 0xa5, + 0x61, 0x45, 0x33, 0x5b, 0x58, 0xd1, 0x8d, 0x2d, 0xb3, 0x5a, 0xa0, 0x0c, 0xea, 0x83, 0x03, 0xa1, + 0x88, 0xf3, 0x66, 0x0b, 0x2f, 0x19, 0x5b, 0xa6, 0x5c, 0xb6, 0x03, 0x65, 0xb2, 0x5e, 0xed, 0x3d, + 0xc3, 0x51, 0x77, 0xab, 0x25, 0xaa, 0x21, 0xbc, 0x24, 0x7d, 0x3d, 0x07, 0x13, 0x49, 0x54, 0xec, + 0x1c, 0x8c, 0x6e, 0x91, 0x51, 0x56, 0xd3, 0x87, 0x91, 0x01, 0xa3, 0x09, 0x0a, 0x31, 0x77, 0x83, + 0x42, 0x9c, 0x83, 0xa2, 0x81, 0x6d, 0x07, 0xb7, 0x98, 0x46, 0x64, 0x12, 0xea, 0x14, 0x30, 0xa2, + 0x41, 0x95, 0xca, 0xde, 0x90, 0x4a, 0x3d, 0x07, 0x13, 0x6e, 0x97, 0x14, 0x4b, 0x35, 0xda, 0x42, + 0x37, 0xcf, 0xc4, 0xf5, 0x64, 0x76, 0x51, 0xd0, 0xc9, 0x84, 0x4c, 0x2e, 0xe3, 0x40, 0x19, 0x2d, + 0x00, 0x98, 0x06, 0x36, 0xb7, 0x94, 0x16, 0xd6, 0x3a, 0xd5, 0xfc, 0x10, 0x29, 0x5d, 0x26, 0x28, + 0x03, 0x52, 0x32, 0x19, 0x54, 0xeb, 0xa0, 0xc7, 0x3c, 0x55, 0x1b, 0x1b, 0xa2, 0x29, 0x2b, 0x6c, + 0x91, 0x0d, 0x68, 0xdb, 0x06, 0x94, 0x2d, 0x4c, 0xf4, 0x1e, 0xb7, 0xf8, 0xc8, 0x0a, 0xb4, 0x13, + 0xb3, 0xb1, 0x23, 0x93, 0x39, 0x19, 0x1b, 0xd8, 0xb8, 0xe5, 0x2f, 0xa2, 0x53, 0xe0, 0x02, 0x14, + 0xaa, 0x56, 0x40, 0xad, 0x50, 0x49, 0x00, 0x2f, 0xa9, 0x5d, 0x5c, 0x7b, 0x09, 0xca, 0x41, 0xf1, + 0x10, 0x33, 0x6f, 0x3b, 0xaa, 0xe5, 0x50, 0x2d, 0x1c, 0x95, 0x59, 0x81, 0x38, 0x22, 0x6c, 0xb4, + 0xa8, 0x95, 0x1b, 0x95, 0xc9, 0x4f, 0xf4, 0x7e, 0x6f, 0xc0, 0x19, 0x3a, 0xe0, 0xbb, 0x06, 0x67, + 0x34, 0xc0, 0x39, 0x3c, 0xee, 0xda, 0x23, 0x30, 0x1e, 0x18, 0x40, 0xd2, 0xa6, 0xa5, 0x0f, 0xc3, + 0x91, 0x48, 0xd6, 0xe8, 0x39, 0x98, 0xee, 0x1b, 0xba, 0xe1, 0x60, 0xab, 0x67, 0x61, 0xa2, 0xb1, + 0xac, 0xa9, 0xea, 0x5f, 0x8e, 0x0d, 0xd1, 0xb9, 0x0d, 0x3f, 0x36, 0xe3, 0x22, 0x4f, 0xf5, 0x07, + 0x81, 0xf7, 0x14, 0xf2, 0x7f, 0x35, 0x56, 0x79, 0xf9, 0xe5, 0x97, 0x5f, 0x4e, 0x4b, 0xaf, 0xe4, + 0x60, 0x3a, 0x6a, 0xcd, 0x44, 0x2e, 0xdf, 0xa3, 0x90, 0x33, 0xfa, 0xdd, 0x4d, 0x6c, 0x51, 0x21, + 0x8d, 0xca, 0xbc, 0x84, 0xe6, 0x60, 0xb4, 0xa3, 0x6e, 0x62, 0xe6, 0x92, 0xcb, 0x67, 0xef, 0x4d, + 0xb4, 0x2a, 0x67, 0x97, 0x09, 0x89, 0xcc, 0x28, 0xd1, 0x13, 0x90, 0xe5, 0x26, 0x9a, 0x70, 0xb8, + 0x27, 0x19, 0x07, 0xb2, 0x96, 0x64, 0x4a, 0x87, 0x6e, 0x81, 0x02, 0xf9, 0xcb, 0x74, 0x23, 0x47, + 0xfb, 0x9c, 0x27, 0x00, 0xa2, 0x17, 0xa8, 0x06, 0x79, 0xba, 0x4c, 0x5a, 0x58, 0xb8, 0x36, 0xb7, + 0x4c, 0x14, 0xab, 0x85, 0xb7, 0xd4, 0x7e, 0xc7, 0x51, 0xae, 0xaa, 0x9d, 0x3e, 0xa6, 0x0a, 0x5f, + 0x90, 0x4b, 0x1c, 0x78, 0x85, 0xc0, 0x48, 0xe4, 0xc1, 0x56, 0x95, 0x6e, 0xb4, 0xf0, 0x2e, 0xb5, + 0x9e, 0xa3, 0x32, 0x5b, 0x68, 0x4b, 0x04, 0x42, 0x9a, 0x7f, 0xc1, 0x36, 0x0d, 0xa1, 0x9a, 0xb4, + 0x09, 0x02, 0xa0, 0xcd, 0x3f, 0x12, 0x36, 0xdc, 0xb7, 0x45, 0x0f, 0x2f, 0xac, 0x53, 0xd2, 0x57, + 0xd3, 0x90, 0xa5, 0xf6, 0x62, 0x02, 0x8a, 0xeb, 0x1f, 0x58, 0x5d, 0x54, 0x16, 0x2e, 0x6f, 0x34, + 0x97, 0x17, 0x2b, 0x29, 0x54, 0x06, 0xa0, 0x80, 0xf3, 0xcb, 0x97, 0xe7, 0xd6, 0x2b, 0x69, 0xb7, + 0xbc, 0x74, 0x69, 0xfd, 0xe1, 0x07, 0x2b, 0x19, 0x97, 0x60, 0x83, 0x01, 0xb2, 0x7e, 0x84, 0xf7, + 0x9e, 0xad, 0x8c, 0xa2, 0x0a, 0x94, 0x18, 0x83, 0xa5, 0xe7, 0x16, 0x17, 0x1e, 0x7e, 0xb0, 0x92, + 0x0b, 0x42, 0xde, 0x7b, 0xb6, 0x32, 0x86, 0xc6, 0xa1, 0x40, 0x21, 0xcd, 0xcb, 0x97, 0x97, 0x2b, + 0x79, 0x97, 0xe7, 0xda, 0xba, 0xbc, 0x74, 0xe9, 0x42, 0xa5, 0xe0, 0xf2, 0xbc, 0x20, 0x5f, 0xde, + 0x58, 0xad, 0x80, 0xcb, 0x61, 0x65, 0x71, 0x6d, 0x6d, 0xee, 0xc2, 0x62, 0xa5, 0xe8, 0x62, 0x34, + 0x3f, 0xb0, 0xbe, 0xb8, 0x56, 0x29, 0x05, 0xba, 0xf5, 0xde, 0xb3, 0x95, 0x71, 0xb7, 0x89, 0xc5, + 0x4b, 0x1b, 0x2b, 0x95, 0x32, 0x9a, 0x84, 0x71, 0xd6, 0x84, 0xe8, 0xc4, 0x44, 0x08, 0xf4, 0xf0, + 0x83, 0x95, 0x8a, 0xd7, 0x11, 0xc6, 0x65, 0x32, 0x00, 0x78, 0xf8, 0xc1, 0x0a, 0x92, 0xe6, 0x61, + 0x94, 0x6a, 0x17, 0x42, 0x50, 0x5e, 0x9e, 0x6b, 0x2e, 0x2e, 0x2b, 0x97, 0x57, 0xd7, 0x97, 0x2e, + 0x5f, 0x9a, 0x5b, 0xae, 0xa4, 0x3c, 0x98, 0xbc, 0xf8, 0xcc, 0xc6, 0x92, 0xbc, 0xb8, 0x50, 0x49, + 0xfb, 0x61, 0xab, 0x8b, 0x73, 0xeb, 0x8b, 0x0b, 0x95, 0x8c, 0xa4, 0xc1, 0x74, 0x94, 0x9d, 0x8c, + 0x5c, 0x19, 0xbe, 0x29, 0x4e, 0x0f, 0x99, 0x62, 0xca, 0x6b, 0x60, 0x8a, 0x5f, 0x4f, 0xc3, 0x54, + 0x84, 0xaf, 0x88, 0x6c, 0xe4, 0x49, 0x18, 0x65, 0x2a, 0xca, 0xbc, 0xe7, 0xe9, 0x48, 0xa7, 0x43, + 0x15, 0x76, 0xc0, 0x83, 0x52, 0x3a, 0x7f, 0x04, 0x91, 0x19, 0x12, 0x41, 0x10, 0x16, 0x03, 0x36, + 0xfd, 0x43, 0x03, 0x36, 0x9d, 0xb9, 0xbd, 0x87, 0x93, 0xb8, 0x3d, 0x0a, 0x3b, 0x9c, 0x6d, 0x1f, + 0x8d, 0xb0, 0xed, 0xe7, 0x60, 0x72, 0x80, 0x51, 0x62, 0x1b, 0xfb, 0x91, 0x14, 0x54, 0x87, 0x09, + 0x27, 0xc6, 0xd2, 0xa5, 0x03, 0x96, 0xee, 0x5c, 0x58, 0x82, 0xb7, 0x0f, 0x9f, 0x84, 0x81, 0xb9, + 0xfe, 0x62, 0x0a, 0x8e, 0x46, 0x47, 0x8a, 0x91, 0x7d, 0x78, 0x02, 0x72, 0x5d, 0xec, 0x6c, 0x9b, + 0x22, 0x5a, 0xba, 0x2b, 0xc2, 0x07, 0x93, 0xea, 0xf0, 0x64, 0x73, 0x2a, 0xbf, 0x13, 0xcf, 0x0c, + 0x0b, 0xf7, 0x58, 0x6f, 0x06, 0x7a, 0xfa, 0xf1, 0x34, 0x1c, 0x89, 0x64, 0x1e, 0xd9, 0xd1, 0xdb, + 0x00, 0x74, 0xa3, 0xd7, 0x77, 0x58, 0x44, 0xc4, 0x0c, 0x6c, 0x81, 0x42, 0xa8, 0xf1, 0x22, 0xc6, + 0xb3, 0xef, 0xb8, 0xf5, 0x19, 0x5a, 0x0f, 0x0c, 0x44, 0x11, 0x1e, 0xf5, 0x3a, 0x9a, 0xa5, 0x1d, + 0x3d, 0x31, 0x64, 0xa4, 0x03, 0x8a, 0xf9, 0x00, 0x54, 0xb4, 0x8e, 0x8e, 0x0d, 0x47, 0xb1, 0x1d, + 0x0b, 0xab, 0x5d, 0xdd, 0x68, 0x53, 0x0f, 0x92, 0x6f, 0x8c, 0x6e, 0xa9, 0x1d, 0x1b, 0xcb, 0x13, + 0xac, 0x7a, 0x4d, 0xd4, 0x12, 0x0a, 0xaa, 0x40, 0x96, 0x8f, 0x22, 0x17, 0xa0, 0x60, 0xd5, 0x2e, + 0x85, 0xf4, 0x2b, 0x05, 0x28, 0xfa, 0xe2, 0x6a, 0x74, 0x3b, 0x94, 0x5e, 0x50, 0xaf, 0xaa, 0x8a, + 0xd8, 0x2b, 0x31, 0x49, 0x14, 0x09, 0x6c, 0x95, 0xef, 0x97, 0x1e, 0x80, 0x69, 0x8a, 0x62, 0xf6, + 0x1d, 0x6c, 0x29, 0x5a, 0x47, 0xb5, 0x6d, 0x2a, 0xb4, 0x3c, 0x45, 0x45, 0xa4, 0xee, 0x32, 0xa9, + 0x9a, 0x17, 0x35, 0xe8, 0x21, 0x98, 0xa2, 0x14, 0xdd, 0x7e, 0xc7, 0xd1, 0x7b, 0x1d, 0xac, 0x90, + 0xdd, 0x9b, 0x4d, 0x3d, 0x89, 0xdb, 0xb3, 0x49, 0x82, 0xb1, 0xc2, 0x11, 0x48, 0x8f, 0x6c, 0xb4, + 0x00, 0xb7, 0x51, 0xb2, 0x36, 0x36, 0xb0, 0xa5, 0x3a, 0x58, 0xc1, 0x2f, 0xf6, 0xd5, 0x8e, 0xad, + 0xa8, 0x46, 0x4b, 0xd9, 0x56, 0xed, 0xed, 0xea, 0x34, 0x61, 0xd0, 0x4c, 0x57, 0x53, 0xf2, 0x71, + 0x82, 0x78, 0x81, 0xe3, 0x2d, 0x52, 0xb4, 0x39, 0xa3, 0x75, 0x51, 0xb5, 0xb7, 0x51, 0x03, 0x8e, + 0x52, 0x2e, 0xb6, 0x63, 0xe9, 0x46, 0x5b, 0xd1, 0xb6, 0xb1, 0xb6, 0xa3, 0xf4, 0x9d, 0xad, 0x47, + 0xab, 0xb7, 0xf8, 0xdb, 0xa7, 0x3d, 0x5c, 0xa3, 0x38, 0xf3, 0x04, 0x65, 0xc3, 0xd9, 0x7a, 0x14, + 0xad, 0x41, 0x89, 0x4c, 0x46, 0x57, 0x7f, 0x09, 0x2b, 0x5b, 0xa6, 0x45, 0x5d, 0x63, 0x39, 0xc2, + 0x34, 0xf9, 0x24, 0x38, 0x7b, 0x99, 0x13, 0xac, 0x98, 0x2d, 0xdc, 0x18, 0x5d, 0x5b, 0x5d, 0x5c, + 0x5c, 0x90, 0x8b, 0x82, 0xcb, 0x79, 0xd3, 0x22, 0x0a, 0xd5, 0x36, 0x5d, 0x01, 0x17, 0x99, 0x42, + 0xb5, 0x4d, 0x21, 0xde, 0x87, 0x60, 0x4a, 0xd3, 0xd8, 0x98, 0x75, 0x4d, 0xe1, 0x7b, 0x2c, 0xbb, + 0x5a, 0x09, 0x08, 0x4b, 0xd3, 0x2e, 0x30, 0x04, 0xae, 0xe3, 0x36, 0x7a, 0x0c, 0x8e, 0x78, 0xc2, + 0xf2, 0x13, 0x4e, 0x0e, 0x8c, 0x32, 0x4c, 0xfa, 0x10, 0x4c, 0xf5, 0xf6, 0x06, 0x09, 0x51, 0xa0, + 0xc5, 0xde, 0x5e, 0x98, 0xec, 0x11, 0x98, 0xee, 0x6d, 0xf7, 0x06, 0xe9, 0xee, 0xf1, 0xd3, 0xa1, + 0xde, 0x76, 0x2f, 0x4c, 0x78, 0x27, 0xdd, 0x70, 0x5b, 0x58, 0x53, 0x1d, 0xdc, 0xaa, 0x1e, 0xf3, + 0xa3, 0xfb, 0x2a, 0xd0, 0x19, 0xa8, 0x68, 0x9a, 0x82, 0x0d, 0x75, 0xb3, 0x83, 0x15, 0xd5, 0xc2, + 0x86, 0x6a, 0x57, 0xeb, 0x7e, 0xe4, 0xb2, 0xa6, 0x2d, 0xd2, 0xda, 0x39, 0x5a, 0x89, 0xee, 0x81, + 0x49, 0x73, 0xf3, 0x05, 0x8d, 0xa9, 0xa4, 0xd2, 0xb3, 0xf0, 0x96, 0xbe, 0x5b, 0xbd, 0x83, 0xca, + 0x77, 0x82, 0x54, 0x50, 0x85, 0x5c, 0xa5, 0x60, 0x74, 0x1a, 0x2a, 0x9a, 0xbd, 0xad, 0x5a, 0x3d, + 0x6a, 0x93, 0xed, 0x9e, 0xaa, 0xe1, 0xea, 0x9d, 0x0c, 0x95, 0xc1, 0x2f, 0x09, 0x30, 0x59, 0x12, + 0xf6, 0x35, 0x7d, 0xcb, 0x11, 0x1c, 0xef, 0x66, 0x4b, 0x82, 0xc2, 0x38, 0xb7, 0x19, 0xa8, 0x10, + 0x51, 0x04, 0x1a, 0x9e, 0xa1, 0x68, 0xe5, 0xde, 0x76, 0xcf, 0xdf, 0xee, 0x29, 0x18, 0x27, 0x98, + 0x5e, 0xa3, 0xa7, 0x59, 0x40, 0xd6, 0xdb, 0xf6, 0xb5, 0xf8, 0x20, 0x1c, 0x25, 0x48, 0x5d, 0xec, + 0xa8, 0x2d, 0xd5, 0x51, 0x7d, 0xd8, 0xf7, 0x51, 0x6c, 0x22, 0xf7, 0x15, 0x5e, 0x19, 0xe8, 0xa7, + 0xd5, 0xdf, 0xdc, 0x73, 0x35, 0xeb, 0x7e, 0xd6, 0x4f, 0x02, 0x13, 0xba, 0xf5, 0x96, 0x05, 0xdd, + 0x52, 0x03, 0x4a, 0x7e, 0xc5, 0x47, 0x05, 0x60, 0xaa, 0x5f, 0x49, 0x91, 0x28, 0x68, 0xfe, 0xf2, + 0x02, 0x89, 0x5f, 0x9e, 0x5f, 0xac, 0xa4, 0x49, 0x1c, 0xb5, 0xbc, 0xb4, 0xbe, 0xa8, 0xc8, 0x1b, + 0x97, 0xd6, 0x97, 0x56, 0x16, 0x2b, 0x19, 0x5f, 0xc0, 0xfe, 0x54, 0x36, 0x7f, 0x57, 0xe5, 0x6e, + 0xe9, 0xdb, 0x69, 0x28, 0x07, 0x77, 0x60, 0xe8, 0x71, 0x38, 0x26, 0xd2, 0x25, 0x36, 0x76, 0x94, + 0x6b, 0xba, 0x45, 0x57, 0x64, 0x57, 0x65, 0xde, 0xd1, 0xd5, 0x89, 0x69, 0x8e, 0xb5, 0x86, 0x9d, + 0x67, 0x75, 0x8b, 0xac, 0xb7, 0xae, 0xea, 0xa0, 0x65, 0xa8, 0x1b, 0xa6, 0x62, 0x3b, 0xaa, 0xd1, + 0x52, 0xad, 0x96, 0xe2, 0x25, 0xaa, 0x14, 0x55, 0xd3, 0xb0, 0x6d, 0x9b, 0xcc, 0x13, 0xba, 0x5c, + 0x6e, 0x35, 0xcc, 0x35, 0x8e, 0xec, 0xb9, 0x88, 0x39, 0x8e, 0x1a, 0xd2, 0xdf, 0xcc, 0x30, 0xfd, + 0xbd, 0x05, 0x0a, 0x5d, 0xb5, 0xa7, 0x60, 0xc3, 0xb1, 0xf6, 0x68, 0xdc, 0x9d, 0x97, 0xf3, 0x5d, + 0xb5, 0xb7, 0x48, 0xca, 0x6f, 0xcb, 0xf6, 0xe7, 0xa9, 0x6c, 0x3e, 0x5f, 0x29, 0x3c, 0x95, 0xcd, + 0x17, 0x2a, 0x20, 0xbd, 0x96, 0x81, 0x92, 0x3f, 0x0e, 0x27, 0xdb, 0x1a, 0x8d, 0xba, 0xac, 0x14, + 0x35, 0x6a, 0xa7, 0x0e, 0x8c, 0xda, 0x67, 0xe7, 0x89, 0x2f, 0x6b, 0xe4, 0x58, 0x74, 0x2c, 0x33, + 0x4a, 0x12, 0x47, 0x10, 0x65, 0xc3, 0x2c, 0x1a, 0xc9, 0xcb, 0xbc, 0x84, 0x2e, 0x40, 0xee, 0x05, + 0x9b, 0xf2, 0xce, 0x51, 0xde, 0x77, 0x1c, 0xcc, 0xfb, 0xa9, 0x35, 0xca, 0xbc, 0xf0, 0xd4, 0x9a, + 0x72, 0xe9, 0xb2, 0xbc, 0x32, 0xb7, 0x2c, 0x73, 0x72, 0x74, 0x1c, 0xb2, 0x1d, 0xf5, 0xa5, 0xbd, + 0xa0, 0xd7, 0xa3, 0xa0, 0xa4, 0x93, 0x70, 0x1c, 0xb2, 0xd7, 0xb0, 0xba, 0x13, 0xf4, 0x35, 0x14, + 0xf4, 0x16, 0x2e, 0x86, 0x33, 0x30, 0x4a, 0xe5, 0x85, 0x00, 0xb8, 0xc4, 0x2a, 0x23, 0x28, 0x0f, + 0xd9, 0xf9, 0xcb, 0x32, 0x59, 0x10, 0x15, 0x28, 0x31, 0xa8, 0xb2, 0xba, 0xb4, 0x38, 0xbf, 0x58, + 0x49, 0x4b, 0x0f, 0x41, 0x8e, 0x09, 0x81, 0x2c, 0x16, 0x57, 0x0c, 0x95, 0x11, 0x5e, 0xe4, 0x3c, + 0x52, 0xa2, 0x76, 0x63, 0xa5, 0xb9, 0x28, 0x57, 0xd2, 0xc1, 0xa9, 0xce, 0x56, 0x46, 0x25, 0x1b, + 0x4a, 0xfe, 0x40, 0xfc, 0xed, 0xd9, 0x64, 0x7f, 0x23, 0x05, 0x45, 0x5f, 0x60, 0x4d, 0x22, 0x22, + 0xb5, 0xd3, 0x31, 0xaf, 0x29, 0x6a, 0x47, 0x57, 0x6d, 0xae, 0x1a, 0x40, 0x41, 0x73, 0x04, 0x92, + 0x74, 0xea, 0xde, 0xa6, 0x25, 0x32, 0x5a, 0xc9, 0x49, 0x9f, 0x4b, 0x41, 0x25, 0x1c, 0xd9, 0x86, + 0xba, 0x99, 0xfa, 0x71, 0x76, 0x53, 0xfa, 0x4c, 0x0a, 0xca, 0xc1, 0x70, 0x36, 0xd4, 0xbd, 0xdb, + 0x7f, 0xac, 0xdd, 0xfb, 0x8b, 0x34, 0x8c, 0x07, 0x82, 0xd8, 0xa4, 0xbd, 0x7b, 0x11, 0x26, 0xf5, + 0x16, 0xee, 0xf6, 0x4c, 0x07, 0x1b, 0xda, 0x9e, 0xd2, 0xc1, 0x57, 0x71, 0xa7, 0x2a, 0x51, 0xa3, + 0x71, 0xe6, 0xe0, 0x30, 0x79, 0x76, 0xc9, 0xa3, 0x5b, 0x26, 0x64, 0x8d, 0xa9, 0xa5, 0x85, 0xc5, + 0x95, 0xd5, 0xcb, 0xeb, 0x8b, 0x97, 0xe6, 0x3f, 0xa0, 0x6c, 0x5c, 0x7a, 0xfa, 0xd2, 0xe5, 0x67, + 0x2f, 0xc9, 0x15, 0x3d, 0x84, 0xf6, 0x16, 0x2e, 0xfb, 0x55, 0xa8, 0x84, 0x3b, 0x85, 0x8e, 0x41, + 0x54, 0xb7, 0x2a, 0x23, 0x68, 0x0a, 0x26, 0x2e, 0x5d, 0x56, 0xd6, 0x96, 0x16, 0x16, 0x95, 0xc5, + 0xf3, 0xe7, 0x17, 0xe7, 0xd7, 0xd7, 0x58, 0xe2, 0xc3, 0xc5, 0x5e, 0x0f, 0x2c, 0x70, 0xe9, 0xd3, + 0x19, 0x98, 0x8a, 0xe8, 0x09, 0x9a, 0xe3, 0x5b, 0x16, 0xb6, 0x8b, 0xba, 0x3f, 0x49, 0xef, 0x67, + 0x49, 0xcc, 0xb0, 0xaa, 0x5a, 0x0e, 0xdf, 0xe1, 0x9c, 0x06, 0x22, 0x25, 0xc3, 0xd1, 0xb7, 0x74, + 0x6c, 0xf1, 0x3c, 0x11, 0xdb, 0xc7, 0x4c, 0x78, 0x70, 0x96, 0x2a, 0xba, 0x0f, 0x50, 0xcf, 0xb4, + 0x75, 0x47, 0xbf, 0x8a, 0x15, 0xdd, 0x10, 0x49, 0xa5, 0x2c, 0x3d, 0x65, 0xaa, 0x88, 0x9a, 0x25, + 0xc3, 0x71, 0xb1, 0x0d, 0xdc, 0x56, 0x43, 0xd8, 0xc4, 0x98, 0x67, 0xe4, 0x8a, 0xa8, 0x71, 0xb1, + 0x6f, 0x87, 0x52, 0xcb, 0xec, 0x93, 0x60, 0x8f, 0xe1, 0x11, 0xdf, 0x91, 0x92, 0x8b, 0x0c, 0xe6, + 0xa2, 0xf0, 0x30, 0xde, 0xcb, 0x66, 0x95, 0xe4, 0x22, 0x83, 0x31, 0x94, 0xbb, 0x61, 0x42, 0x6d, + 0xb7, 0x2d, 0xc2, 0x5c, 0x30, 0x62, 0x1b, 0x93, 0xb2, 0x0b, 0xa6, 0x88, 0xb5, 0xa7, 0x20, 0x2f, + 0xe4, 0x40, 0x5c, 0x35, 0x91, 0x84, 0xd2, 0x63, 0xbb, 0xed, 0xf4, 0x4c, 0x41, 0xce, 0x1b, 0xa2, + 0xf2, 0x76, 0x28, 0xe9, 0xb6, 0xe2, 0x25, 0xe7, 0xd3, 0x27, 0xd3, 0x33, 0x79, 0xb9, 0xa8, 0xdb, + 0x6e, 0x62, 0x53, 0xfa, 0x62, 0x1a, 0xca, 0xc1, 0xc3, 0x05, 0xb4, 0x00, 0xf9, 0x8e, 0xa9, 0xd1, + 0xd3, 0x43, 0x7e, 0xb2, 0x35, 0x13, 0x73, 0x1e, 0x31, 0xbb, 0xcc, 0xf1, 0x65, 0x97, 0xb2, 0xf6, + 0x9f, 0x52, 0x90, 0x17, 0x60, 0x74, 0x14, 0xb2, 0x3d, 0xd5, 0xd9, 0xa6, 0xec, 0x46, 0x9b, 0xe9, + 0x4a, 0x4a, 0xa6, 0x65, 0x02, 0xb7, 0x7b, 0xaa, 0x41, 0x55, 0x80, 0xc3, 0x49, 0x99, 0xcc, 0x6b, + 0x07, 0xab, 0x2d, 0xba, 0xeb, 0x31, 0xbb, 0x5d, 0x6c, 0x38, 0xb6, 0x98, 0x57, 0x0e, 0x9f, 0xe7, + 0x60, 0x74, 0x2f, 0x4c, 0x3a, 0x96, 0xaa, 0x77, 0x02, 0xb8, 0x59, 0x8a, 0x5b, 0x11, 0x15, 0x2e, + 0x72, 0x03, 0x8e, 0x0b, 0xbe, 0x2d, 0xec, 0xa8, 0xda, 0x36, 0x6e, 0x79, 0x44, 0x39, 0x9a, 0xdd, + 0x38, 0xc6, 0x11, 0x16, 0x78, 0xbd, 0xa0, 0x95, 0xbe, 0x9d, 0x82, 0x49, 0xb1, 0x4f, 0x6b, 0xb9, + 0xc2, 0x5a, 0x01, 0x50, 0x0d, 0xc3, 0x74, 0xfc, 0xe2, 0x1a, 0x54, 0xe5, 0x01, 0xba, 0xd9, 0x39, + 0x97, 0x48, 0xf6, 0x31, 0xa8, 0x75, 0x01, 0xbc, 0x9a, 0xa1, 0x62, 0xab, 0x43, 0x91, 0x9f, 0x1c, + 0xd1, 0xe3, 0x47, 0xb6, 0xb3, 0x07, 0x06, 0x22, 0x1b, 0x3a, 0x34, 0x0d, 0xa3, 0x9b, 0xb8, 0xad, + 0x1b, 0x3c, 0x1f, 0xcc, 0x0a, 0x22, 0xff, 0x92, 0x75, 0xf3, 0x2f, 0xcd, 0x4f, 0xa6, 0x60, 0x4a, + 0x33, 0xbb, 0xe1, 0xfe, 0x36, 0x2b, 0xa1, 0xf4, 0x82, 0x7d, 0x31, 0xf5, 0xfc, 0x13, 0xbe, 0x93, + 0xd6, 0xb6, 0xd9, 0x51, 0x8d, 0xb6, 0x77, 0x7e, 0x4a, 0x7f, 0x68, 0xf7, 0xb7, 0xb1, 0x71, 0x7f, + 0xdb, 0xf4, 0x9d, 0xa6, 0x9e, 0xf3, 0x7e, 0xfe, 0x6d, 0x2a, 0xf5, 0x85, 0x74, 0xe6, 0xc2, 0x6a, + 0xf3, 0xcb, 0xe9, 0xda, 0x05, 0xd6, 0xdc, 0xaa, 0x10, 0x8f, 0x8c, 0xb7, 0x3a, 0x58, 0x23, 0x43, + 0x86, 0xef, 0xdd, 0x0b, 0xd3, 0x6d, 0xb3, 0x6d, 0x52, 0x8e, 0x67, 0xc8, 0x2f, 0x7e, 0x22, 0x5b, + 0x70, 0xa1, 0xb5, 0xd8, 0xe3, 0xdb, 0xc6, 0x25, 0x98, 0xe2, 0xc8, 0x0a, 0x3d, 0x12, 0x62, 0x1b, + 0x1b, 0x74, 0x60, 0x5a, 0xad, 0xfa, 0xbb, 0xdf, 0xa5, 0x0e, 0x5d, 0x9e, 0xe4, 0xa4, 0xa4, 0x8e, + 0xed, 0x7d, 0x1a, 0x32, 0x1c, 0x09, 0xf0, 0x63, 0xcb, 0x16, 0x5b, 0x31, 0x1c, 0xff, 0x88, 0x73, + 0x9c, 0xf2, 0x71, 0x5c, 0xe3, 0xa4, 0x8d, 0x79, 0x18, 0x3f, 0x0c, 0xaf, 0xff, 0xc0, 0x79, 0x95, + 0xb0, 0x9f, 0xc9, 0x05, 0x98, 0xa0, 0x4c, 0xb4, 0xbe, 0xed, 0x98, 0x5d, 0x6a, 0x13, 0x0f, 0x66, + 0xf3, 0xc7, 0xdf, 0x65, 0xeb, 0xa8, 0x4c, 0xc8, 0xe6, 0x5d, 0xaa, 0x46, 0x03, 0xe8, 0x29, 0x58, + 0x0b, 0x6b, 0x9d, 0x18, 0x0e, 0xdf, 0xe4, 0x1d, 0x71, 0xf1, 0x1b, 0x57, 0x60, 0x9a, 0xfc, 0xa6, + 0x26, 0xcb, 0xdf, 0x93, 0xf8, 0x1c, 0x5c, 0xf5, 0xdb, 0x1f, 0x61, 0x4b, 0x75, 0xca, 0x65, 0xe0, + 0xeb, 0x93, 0x6f, 0x16, 0xdb, 0xd8, 0x71, 0xb0, 0x65, 0x2b, 0x6a, 0x27, 0xaa, 0x7b, 0xbe, 0x24, + 0x46, 0xf5, 0xd7, 0xdf, 0x08, 0xce, 0xe2, 0x05, 0x46, 0x39, 0xd7, 0xe9, 0x34, 0x36, 0xe0, 0x58, + 0x84, 0x56, 0x24, 0xe0, 0xf9, 0x69, 0xce, 0x73, 0x7a, 0x40, 0x33, 0x08, 0xdb, 0x55, 0x10, 0x70, + 0x77, 0x2e, 0x13, 0xf0, 0xfc, 0x0d, 0xce, 0x13, 0x71, 0x5a, 0x31, 0xa5, 0x84, 0xe3, 0x53, 0x30, + 0x79, 0x15, 0x5b, 0x9b, 0xa6, 0xcd, 0x13, 0x47, 0x09, 0xd8, 0x7d, 0x86, 0xb3, 0x9b, 0xe0, 0x84, + 0x34, 0x93, 0x44, 0x78, 0x3d, 0x06, 0xf9, 0x2d, 0x55, 0xc3, 0x09, 0x58, 0x7c, 0x96, 0xb3, 0x18, + 0x23, 0xf8, 0x84, 0x74, 0x0e, 0x4a, 0x6d, 0x93, 0x7b, 0xad, 0x78, 0xf2, 0xcf, 0x71, 0xf2, 0xa2, + 0xa0, 0xe1, 0x2c, 0x7a, 0x66, 0xaf, 0xdf, 0x21, 0x2e, 0x2d, 0x9e, 0xc5, 0x3f, 0x13, 0x2c, 0x04, + 0x0d, 0x67, 0x71, 0x08, 0xb1, 0xbe, 0x2a, 0x58, 0xd8, 0x3e, 0x79, 0x3e, 0x09, 0x45, 0xd3, 0xe8, + 0xec, 0x99, 0x46, 0x92, 0x4e, 0x7c, 0x9e, 0x73, 0x00, 0x4e, 0x42, 0x18, 0x9c, 0x83, 0x42, 0xd2, + 0x89, 0xf8, 0x17, 0x6f, 0x88, 0xe5, 0x21, 0x66, 0xe0, 0x02, 0x4c, 0x08, 0x03, 0xa5, 0x9b, 0x46, + 0x02, 0x16, 0xff, 0x92, 0xb3, 0x28, 0xfb, 0xc8, 0xf8, 0x30, 0x1c, 0x6c, 0x3b, 0x6d, 0x9c, 0x84, + 0xc9, 0x17, 0xc5, 0x30, 0x38, 0x09, 0x17, 0xe5, 0x26, 0x36, 0xb4, 0xed, 0x64, 0x1c, 0xbe, 0x24, + 0x44, 0x29, 0x68, 0x08, 0x8b, 0x79, 0x18, 0xef, 0xaa, 0x96, 0xbd, 0xad, 0x76, 0x12, 0x4d, 0xc7, + 0x6f, 0x72, 0x1e, 0x25, 0x97, 0x88, 0x4b, 0xa4, 0x6f, 0x1c, 0x86, 0xcd, 0x97, 0x85, 0x44, 0x7c, + 0x64, 0x7c, 0xe9, 0xd9, 0x0e, 0xcd, 0xb2, 0x1d, 0x86, 0xdb, 0xbf, 0x12, 0x4b, 0x8f, 0xd1, 0xae, + 0xf8, 0x39, 0x9e, 0x83, 0x82, 0xad, 0xbf, 0x94, 0x88, 0xcd, 0xbf, 0x16, 0x33, 0x4d, 0x09, 0x08, + 0xf1, 0x07, 0xe0, 0x78, 0xa4, 0x9b, 0x48, 0xc0, 0xec, 0xb7, 0x38, 0xb3, 0xa3, 0x11, 0xae, 0x82, + 0x9b, 0x84, 0xc3, 0xb2, 0xfc, 0x8a, 0x30, 0x09, 0x38, 0xc4, 0x6b, 0x95, 0xec, 0x23, 0x6c, 0x75, + 0xeb, 0x70, 0x52, 0xfb, 0x6d, 0x21, 0x35, 0x46, 0x1b, 0x90, 0xda, 0x3a, 0x1c, 0xe5, 0x1c, 0x0f, + 0x37, 0xaf, 0xbf, 0x23, 0x0c, 0x2b, 0xa3, 0xde, 0x08, 0xce, 0xee, 0x07, 0xa1, 0xe6, 0x8a, 0x53, + 0x04, 0xac, 0xb6, 0xd2, 0x55, 0x7b, 0x09, 0x38, 0xff, 0x2e, 0xe7, 0x2c, 0x2c, 0xbe, 0x1b, 0xf1, + 0xda, 0x2b, 0x6a, 0x8f, 0x30, 0x7f, 0x0e, 0xaa, 0x82, 0x79, 0xdf, 0xb0, 0xb0, 0x66, 0xb6, 0x0d, + 0xfd, 0x25, 0xdc, 0x4a, 0xc0, 0xfa, 0xf7, 0x42, 0x53, 0xb5, 0xe1, 0x23, 0x27, 0x9c, 0x97, 0xa0, + 0xe2, 0xc6, 0x2a, 0x8a, 0xde, 0xed, 0x99, 0x96, 0x13, 0xc3, 0xf1, 0xdf, 0x88, 0x99, 0x72, 0xe9, + 0x96, 0x28, 0x59, 0x63, 0x11, 0xca, 0xb4, 0x98, 0x54, 0x25, 0x7f, 0x9f, 0x33, 0x1a, 0xf7, 0xa8, + 0xb8, 0xe1, 0xd0, 0xcc, 0x6e, 0x4f, 0xb5, 0x92, 0xd8, 0xbf, 0x7f, 0x2b, 0x0c, 0x07, 0x27, 0xe1, + 0x86, 0xc3, 0xd9, 0xeb, 0x61, 0xe2, 0xed, 0x13, 0x70, 0xf8, 0xaa, 0x30, 0x1c, 0x82, 0x86, 0xb3, + 0x10, 0x01, 0x43, 0x02, 0x16, 0x7f, 0x20, 0x58, 0x08, 0x1a, 0xc2, 0xe2, 0x19, 0xcf, 0xd1, 0x5a, + 0xb8, 0xad, 0xdb, 0x8e, 0xc5, 0xc2, 0xe4, 0x83, 0x59, 0x7d, 0xed, 0x8d, 0x60, 0x10, 0x26, 0xfb, + 0x48, 0x89, 0x25, 0xe2, 0x69, 0x57, 0xba, 0x8b, 0x8a, 0xef, 0xd8, 0xd7, 0x85, 0x25, 0xf2, 0x91, + 0x91, 0xbe, 0xf9, 0x22, 0x44, 0x22, 0x76, 0x8d, 0xec, 0x1d, 0x12, 0xb0, 0xfb, 0xc3, 0x50, 0xe7, + 0xd6, 0x04, 0x2d, 0xe1, 0xe9, 0x8b, 0x7f, 0xfa, 0xc6, 0x0e, 0xde, 0x4b, 0xa4, 0x9d, 0xff, 0x2e, + 0x14, 0xff, 0x6c, 0x30, 0x4a, 0x66, 0x43, 0x26, 0x42, 0xf1, 0x14, 0x8a, 0xbb, 0x3f, 0x54, 0xfd, + 0x87, 0x6f, 0xf2, 0xf1, 0x06, 0xc3, 0xa9, 0xc6, 0x32, 0x51, 0xf2, 0x60, 0xd0, 0x13, 0xcf, 0xec, + 0x23, 0x6f, 0xba, 0x7a, 0x1e, 0x88, 0x79, 0x1a, 0xe7, 0x61, 0x3c, 0x10, 0xf0, 0xc4, 0xb3, 0xfa, + 0x28, 0x67, 0x55, 0xf2, 0xc7, 0x3b, 0x8d, 0x87, 0x20, 0x4b, 0x82, 0x97, 0x78, 0xf2, 0x9f, 0xe5, + 0xe4, 0x14, 0xbd, 0xf1, 0x3e, 0xc8, 0x8b, 0xa0, 0x25, 0x9e, 0xf4, 0xe7, 0x38, 0xa9, 0x4b, 0x42, + 0xc8, 0x45, 0xc0, 0x12, 0x4f, 0xfe, 0xf3, 0x82, 0x5c, 0x90, 0x10, 0xf2, 0xe4, 0x22, 0xfc, 0xc6, + 0x3f, 0xca, 0x72, 0xa7, 0x23, 0x64, 0x77, 0x0e, 0xc6, 0x78, 0xa4, 0x12, 0x4f, 0xfd, 0x71, 0xde, + 0xb8, 0xa0, 0x68, 0x3c, 0x02, 0xa3, 0x09, 0x05, 0xfe, 0x8b, 0x9c, 0x94, 0xe1, 0x37, 0xe6, 0xa1, + 0xe8, 0x8b, 0x4e, 0xe2, 0xc9, 0x7f, 0x89, 0x93, 0xfb, 0xa9, 0x48, 0xd7, 0x79, 0x74, 0x12, 0xcf, + 0xe0, 0x93, 0xa2, 0xeb, 0x9c, 0x82, 0x88, 0x4d, 0x04, 0x26, 0xf1, 0xd4, 0x9f, 0x12, 0x52, 0x17, + 0x24, 0x8d, 0x27, 0xa1, 0xe0, 0x3a, 0x9b, 0x78, 0xfa, 0x5f, 0xe6, 0xf4, 0x1e, 0x0d, 0x91, 0x80, + 0xcf, 0xd9, 0xc5, 0xb3, 0xf8, 0x15, 0x21, 0x01, 0x1f, 0x15, 0x59, 0x46, 0xe1, 0x00, 0x26, 0x9e, + 0xd3, 0x3f, 0x16, 0xcb, 0x28, 0x14, 0xbf, 0x90, 0xd9, 0xa4, 0x36, 0x3f, 0x9e, 0xc5, 0xaf, 0x8a, + 0xd9, 0xa4, 0xf8, 0xa4, 0x1b, 0xe1, 0x88, 0x20, 0x9e, 0xc7, 0x3f, 0x15, 0xdd, 0x08, 0x05, 0x04, + 0x8d, 0x55, 0x40, 0x83, 0xd1, 0x40, 0x3c, 0xbf, 0x57, 0x38, 0xbf, 0xc9, 0x81, 0x60, 0xa0, 0xf1, + 0x2c, 0x1c, 0x8d, 0x8e, 0x04, 0xe2, 0xb9, 0xfe, 0xfa, 0x9b, 0xa1, 0xbd, 0x9b, 0x3f, 0x10, 0x68, + 0xac, 0x7b, 0x2e, 0xc5, 0x1f, 0x05, 0xc4, 0xb3, 0xfd, 0xf4, 0x9b, 0x41, 0xc3, 0xed, 0x0f, 0x02, + 0x1a, 0x73, 0x00, 0x9e, 0x03, 0x8e, 0xe7, 0xf5, 0x19, 0xce, 0xcb, 0x47, 0x44, 0x96, 0x06, 0xf7, + 0xbf, 0xf1, 0xf4, 0x9f, 0x15, 0x4b, 0x83, 0x53, 0x90, 0xa5, 0x21, 0x5c, 0x6f, 0x3c, 0xf5, 0xe7, + 0xc4, 0xd2, 0x10, 0x24, 0x44, 0xb3, 0x7d, 0xde, 0x2d, 0x9e, 0xc3, 0xe7, 0x85, 0x66, 0xfb, 0xa8, + 0x1a, 0x97, 0x60, 0x72, 0xc0, 0x21, 0xc6, 0xb3, 0xfa, 0x02, 0x67, 0x55, 0x09, 0xfb, 0x43, 0xbf, + 0xf3, 0xe2, 0xce, 0x30, 0x9e, 0xdb, 0x3f, 0x0f, 0x39, 0x2f, 0xee, 0x0b, 0x1b, 0xe7, 0x20, 0x6f, + 0xf4, 0x3b, 0x1d, 0xb2, 0x78, 0xd0, 0xc1, 0x77, 0xfe, 0xaa, 0xff, 0xe3, 0x87, 0x5c, 0x3a, 0x82, + 0xa0, 0xf1, 0x10, 0x8c, 0xe2, 0xee, 0x26, 0x6e, 0xc5, 0x51, 0x7e, 0xef, 0x87, 0xc2, 0x60, 0x12, + 0xec, 0xc6, 0x93, 0x00, 0x2c, 0x35, 0x42, 0x8f, 0x07, 0x63, 0x68, 0xff, 0xe7, 0x0f, 0xf9, 0x6d, + 0x1c, 0x8f, 0xc4, 0x63, 0xc0, 0xee, 0xf6, 0x1c, 0xcc, 0xe0, 0x8d, 0x20, 0x03, 0x3a, 0x23, 0x8f, + 0xc1, 0xd8, 0x0b, 0xb6, 0x69, 0x38, 0x6a, 0x3b, 0x8e, 0xfa, 0x7f, 0x71, 0x6a, 0x81, 0x4f, 0x04, + 0xd6, 0x35, 0x2d, 0xec, 0xa8, 0x6d, 0x3b, 0x8e, 0xf6, 0x7f, 0x73, 0x5a, 0x97, 0x80, 0x10, 0x6b, + 0xaa, 0xed, 0x24, 0x19, 0xf7, 0xff, 0x11, 0xc4, 0x82, 0x80, 0x74, 0x9a, 0xfc, 0xde, 0xc1, 0x7b, + 0x71, 0xb4, 0xdf, 0x17, 0x9d, 0xe6, 0xf8, 0x8d, 0xf7, 0x41, 0x81, 0xfc, 0x64, 0x57, 0xec, 0x62, + 0x88, 0xff, 0x2f, 0x27, 0xf6, 0x28, 0x48, 0xcb, 0xb6, 0xd3, 0x72, 0xf4, 0x78, 0x61, 0x5f, 0xe7, + 0x33, 0x2d, 0xf0, 0x1b, 0x73, 0x50, 0xb4, 0x9d, 0x56, 0xab, 0xcf, 0xe3, 0xd3, 0x18, 0xf2, 0xff, + 0xf7, 0x43, 0x37, 0x65, 0xe1, 0xd2, 0x90, 0xd9, 0xbe, 0xb6, 0xe3, 0xf4, 0x4c, 0x7a, 0x04, 0x12, + 0xc7, 0xe1, 0x4d, 0xce, 0xc1, 0x47, 0xd2, 0x98, 0x87, 0x12, 0x19, 0x8b, 0x85, 0x7b, 0x98, 0x9e, + 0x57, 0xc5, 0xb0, 0xf8, 0x6b, 0x2e, 0x80, 0x00, 0x51, 0xf3, 0x43, 0xc3, 0xde, 0xdd, 0x44, 0xa7, + 0x8d, 0xe1, 0x82, 0x79, 0xc1, 0x64, 0x09, 0xe3, 0xe7, 0xa5, 0x40, 0xba, 0xb8, 0x6d, 0x7a, 0xd9, + 0x5a, 0x77, 0x93, 0x03, 0x7f, 0x98, 0x86, 0x3b, 0xe9, 0x75, 0x5f, 0xab, 0xab, 0x1b, 0xce, 0x19, + 0xcd, 0xda, 0xeb, 0x39, 0xe6, 0x99, 0x2e, 0xb6, 0x76, 0x3a, 0x98, 0xff, 0xe1, 0xd9, 0xdf, 0xaa, + 0x87, 0x36, 0xcb, 0xd0, 0x66, 0x59, 0x7d, 0x2d, 0x32, 0x5b, 0x2c, 0xcd, 0xc3, 0xd8, 0xaa, 0x65, + 0x9a, 0x5b, 0x97, 0x7b, 0x08, 0xf1, 0x1b, 0xcc, 0xfc, 0x66, 0x1c, 0x55, 0x43, 0xfe, 0xe2, 0x29, + 0xed, 0xbd, 0x78, 0x42, 0x90, 0x6d, 0xa9, 0x8e, 0x4a, 0x13, 0xe6, 0x25, 0x99, 0xfe, 0x96, 0x9a, + 0x30, 0x4a, 0x99, 0xa0, 0xc7, 0x20, 0x63, 0xf6, 0x6c, 0x9e, 0xdd, 0xbf, 0x7d, 0x76, 0x58, 0x5f, + 0x66, 0x79, 0x93, 0xcd, 0xec, 0x37, 0xf7, 0xeb, 0x23, 0x32, 0xa1, 0x69, 0xae, 0xfe, 0xed, 0x77, + 0x4e, 0xa4, 0xbe, 0xf4, 0xda, 0x89, 0xd4, 0xd0, 0x17, 0x4c, 0xb3, 0x3e, 0x41, 0xf9, 0x84, 0x31, + 0x4c, 0x2e, 0xee, 0x3b, 0xa6, 0x5f, 0x48, 0xc3, 0x09, 0x1f, 0x52, 0x47, 0xdf, 0xb4, 0xcf, 0xec, + 0x5c, 0x65, 0x4f, 0x9e, 0xb8, 0xd4, 0x90, 0xaf, 0xa7, 0xa4, 0x7e, 0x76, 0xe7, 0xea, 0x10, 0x79, + 0xcd, 0x42, 0x76, 0x55, 0xd5, 0xad, 0x88, 0xa7, 0x60, 0xd3, 0xde, 0xe5, 0x56, 0x02, 0x63, 0x05, + 0xe9, 0x2c, 0xe4, 0x9f, 0x5e, 0x7a, 0xf8, 0xc1, 0x24, 0x34, 0x19, 0x4e, 0xd3, 0x94, 0x85, 0x28, + 0xbe, 0x16, 0x21, 0x8e, 0x6f, 0xbc, 0x7e, 0x22, 0x15, 0xf9, 0xa8, 0x2b, 0x5a, 0x24, 0x7c, 0xb4, + 0xae, 0x30, 0x3e, 0x95, 0x86, 0x7a, 0xf8, 0x54, 0x80, 0x2c, 0x45, 0xdb, 0x51, 0xbb, 0xbd, 0x61, + 0x6f, 0xba, 0xce, 0x41, 0x61, 0x5d, 0xe0, 0xa0, 0x2a, 0x8c, 0xd9, 0x58, 0x33, 0x8d, 0x96, 0x4d, + 0x47, 0x92, 0x91, 0x45, 0x91, 0x8c, 0xc6, 0x50, 0x0d, 0xd3, 0xe6, 0x57, 0x4e, 0x59, 0xa1, 0xf9, + 0x4f, 0x52, 0x87, 0x5b, 0x1b, 0x65, 0xb7, 0x29, 0xba, 0x40, 0x56, 0x53, 0xcf, 0xdf, 0x7b, 0xd0, + 0x81, 0x0a, 0x7b, 0xb9, 0xe6, 0x0e, 0xc1, 0x77, 0x7a, 0x72, 0x22, 0x7c, 0x7a, 0xf2, 0x2c, 0xee, + 0x74, 0x9e, 0x36, 0xcc, 0x6b, 0xc6, 0x3a, 0xa1, 0x71, 0x45, 0xf2, 0x89, 0x34, 0x9c, 0x18, 0x38, + 0x28, 0xe1, 0xe6, 0x65, 0x98, 0x44, 0x1a, 0x90, 0x5f, 0x10, 0x56, 0xeb, 0xb0, 0x02, 0xf9, 0xd5, + 0x43, 0x0a, 0x64, 0x5c, 0xb4, 0x24, 0xe4, 0x71, 0x4f, 0xbc, 0x3c, 0x44, 0xff, 0x6f, 0x40, 0x1c, + 0x1f, 0x7d, 0x02, 0x6e, 0xf7, 0x29, 0x90, 0xba, 0xa9, 0xe9, 0xfc, 0x79, 0xa0, 0x7f, 0xc5, 0x1c, + 0xf1, 0xad, 0x18, 0x82, 0x32, 0x4b, 0x2b, 0xa3, 0x17, 0x4d, 0x2d, 0x99, 0xed, 0xaa, 0xc5, 0xac, + 0xd2, 0x5a, 0x9c, 0xe2, 0xd6, 0x62, 0xa6, 0x51, 0xfa, 0x9b, 0x51, 0x18, 0x13, 0x6f, 0x39, 0x1f, + 0x85, 0x2c, 0xd6, 0xb6, 0x4d, 0x7e, 0xdb, 0x5d, 0x9a, 0x8d, 0x1c, 0xcf, 0x2c, 0xc7, 0x5e, 0xd4, + 0xb6, 0xcd, 0x8b, 0x23, 0x32, 0xa5, 0xa0, 0x6f, 0xc0, 0x3a, 0x7d, 0x7b, 0x9b, 0x5f, 0x4a, 0x3e, + 0x75, 0x30, 0xe9, 0x79, 0x82, 0x7a, 0x71, 0x44, 0x66, 0x34, 0xa4, 0x59, 0xfa, 0x7e, 0x2d, 0x9b, + 0xa4, 0xd9, 0x25, 0x63, 0x8b, 0x36, 0x4b, 0x28, 0xd0, 0x45, 0x00, 0x1b, 0x3b, 0xe2, 0x2a, 0xc3, + 0x28, 0xa5, 0xbf, 0xfb, 0x60, 0xfa, 0x35, 0xec, 0x30, 0xb7, 0x75, 0x71, 0x44, 0x2e, 0xd8, 0xa2, + 0x40, 0x38, 0xe9, 0x86, 0xee, 0x28, 0xda, 0xb6, 0xaa, 0x1b, 0xf4, 0x0c, 0x3e, 0x96, 0xd3, 0x92, + 0xa1, 0x3b, 0xf3, 0x04, 0x9d, 0x70, 0xd2, 0x45, 0x81, 0x88, 0x82, 0xbe, 0x19, 0xe5, 0x8f, 0xac, + 0x62, 0x44, 0xf1, 0x0c, 0x41, 0x25, 0xa2, 0xa0, 0x34, 0xe8, 0x69, 0x28, 0xd2, 0xe3, 0x56, 0x65, + 0xb3, 0x63, 0x6a, 0x3b, 0xfc, 0x65, 0xc9, 0xcc, 0xc1, 0x2c, 0x9a, 0x84, 0xa0, 0x49, 0xf0, 0x2f, + 0x8e, 0xc8, 0xb0, 0xe9, 0x96, 0x50, 0x13, 0xf2, 0xec, 0xda, 0xaf, 0xb3, 0xcb, 0xdf, 0x06, 0xde, + 0x79, 0x30, 0x27, 0x7a, 0x03, 0x78, 0x7d, 0xf7, 0xe2, 0x88, 0x3c, 0xa6, 0xb1, 0x9f, 0x68, 0x11, + 0x0a, 0xd8, 0x68, 0xf1, 0xee, 0x14, 0xf9, 0x2b, 0xaa, 0x83, 0xf5, 0xc2, 0x68, 0x89, 0xce, 0xe4, + 0x31, 0xff, 0x8d, 0x9e, 0x80, 0x9c, 0x66, 0x76, 0xbb, 0xba, 0x43, 0xdf, 0x18, 0x16, 0xcf, 0xde, + 0x11, 0xd3, 0x11, 0x8a, 0x7b, 0x71, 0x44, 0xe6, 0x54, 0x64, 0x7a, 0x5a, 0xb8, 0xa3, 0x5f, 0xc5, + 0x16, 0x19, 0xcc, 0x54, 0x92, 0xe9, 0x59, 0x60, 0xf8, 0x74, 0x38, 0x85, 0x96, 0x28, 0x34, 0xc7, + 0xb8, 0x7b, 0x91, 0xee, 0x86, 0xa2, 0x4f, 0x93, 0x89, 0xc5, 0xe2, 0x3b, 0x10, 0xee, 0xec, 0x45, + 0x51, 0x2a, 0x43, 0xc9, 0xaf, 0xb7, 0x52, 0xd7, 0x25, 0xa4, 0x87, 0xf8, 0x55, 0x18, 0xbb, 0x8a, + 0x2d, 0x9b, 0x9d, 0xe0, 0x53, 0x42, 0x5e, 0x44, 0xa7, 0x60, 0x9c, 0xca, 0x4d, 0x11, 0xf5, 0xec, + 0x59, 0x72, 0x89, 0x02, 0xaf, 0x70, 0xa4, 0x3a, 0x14, 0x7b, 0x67, 0x7b, 0x2e, 0x0a, 0x7b, 0x1b, + 0x0d, 0xbd, 0xb3, 0x3d, 0x8e, 0x20, 0x35, 0xa0, 0x12, 0x56, 0x5d, 0xbf, 0xd7, 0x2c, 0x44, 0x78, + 0xcd, 0x82, 0xf0, 0xb4, 0xbf, 0x93, 0x76, 0x89, 0x5d, 0x6d, 0x25, 0xcb, 0x8d, 0x18, 0x09, 0x4a, + 0x5d, 0x3c, 0x5b, 0x1b, 0x08, 0xed, 0x5c, 0x5f, 0xd3, 0xcc, 0x93, 0x50, 0xe4, 0x53, 0x7f, 0x5e, + 0x4f, 0xc9, 0x94, 0x02, 0x1d, 0x27, 0x0a, 0xa5, 0xea, 0x86, 0xa2, 0xb7, 0xc4, 0x6b, 0x62, 0x5a, + 0x5e, 0x6a, 0xa1, 0x67, 0xa0, 0xa2, 0x99, 0x86, 0x8d, 0x0d, 0xbb, 0x6f, 0x2b, 0x3d, 0xd5, 0x52, + 0xbb, 0xde, 0xa3, 0xbb, 0xe8, 0x69, 0x9a, 0x17, 0xe8, 0xab, 0x14, 0x5b, 0x9e, 0xd0, 0x82, 0x00, + 0xb4, 0x0c, 0x70, 0x55, 0xed, 0xe8, 0x2d, 0xd5, 0x31, 0x2d, 0x9b, 0x3f, 0x4e, 0x19, 0xc6, 0xec, + 0x8a, 0x40, 0xdc, 0xe8, 0xb5, 0x54, 0x07, 0xf3, 0x20, 0xca, 0x47, 0x8f, 0xee, 0x82, 0x09, 0xb5, + 0xd7, 0x53, 0x6c, 0x47, 0x75, 0xb0, 0xb2, 0xb9, 0xe7, 0x60, 0x9b, 0xda, 0x8b, 0x92, 0x3c, 0xae, + 0xf6, 0x7a, 0x6b, 0x04, 0xda, 0x24, 0x40, 0xa9, 0xe5, 0xce, 0x36, 0x5d, 0x9a, 0x6e, 0x6c, 0x97, + 0xf2, 0x62, 0x3b, 0x02, 0xa3, 0x57, 0x2b, 0x98, 0x0c, 0xc4, 0x6d, 0x94, 0xdc, 0x36, 0xd6, 0xdb, + 0xdb, 0xec, 0x79, 0x7b, 0x46, 0xe6, 0x25, 0x32, 0x31, 0x3d, 0xcb, 0xbc, 0x8a, 0xf9, 0xcb, 0x76, + 0x56, 0x90, 0x7e, 0x2d, 0x0d, 0x93, 0x03, 0xcb, 0x97, 0xf0, 0xa5, 0x17, 0xfc, 0x79, 0x5b, 0xe4, + 0x37, 0x3a, 0x47, 0xf8, 0xaa, 0x2d, 0xfe, 0x68, 0xa5, 0x78, 0xf6, 0xb6, 0x21, 0x12, 0xb8, 0x48, + 0x91, 0xf8, 0xc0, 0x39, 0x09, 0xda, 0x80, 0x4a, 0x47, 0xb5, 0x1d, 0x85, 0xad, 0x22, 0xf6, 0x4a, + 0x38, 0x73, 0xa0, 0x25, 0x58, 0x56, 0xc5, 0xea, 0x23, 0xca, 0xcd, 0xd9, 0x95, 0x3b, 0x01, 0x28, + 0x7a, 0x0e, 0xa6, 0x37, 0xf7, 0x5e, 0x52, 0x0d, 0x47, 0x37, 0xe8, 0x65, 0xa3, 0xe0, 0x1c, 0xd5, + 0x87, 0xb0, 0x5e, 0xbc, 0xaa, 0xb7, 0xb0, 0xa1, 0x89, 0xc9, 0x99, 0x72, 0x59, 0xb8, 0x93, 0x67, + 0x4b, 0xcf, 0x41, 0x39, 0x68, 0x8b, 0x50, 0x19, 0xd2, 0xce, 0x2e, 0x97, 0x48, 0xda, 0xd9, 0x45, + 0x0f, 0xf3, 0x88, 0x3c, 0x4d, 0x6f, 0xcb, 0x0d, 0x73, 0x16, 0x9c, 0xda, 0x7b, 0x4b, 0x28, 0x49, + 0xee, 0x4a, 0x70, 0x0d, 0x43, 0x98, 0xb7, 0x74, 0x1a, 0x26, 0x42, 0x46, 0xcc, 0x37, 0xad, 0x29, + 0xff, 0xb4, 0x4a, 0x13, 0x30, 0x1e, 0xb0, 0x55, 0xd2, 0x9f, 0xe4, 0x20, 0xef, 0x7e, 0xa3, 0xe0, + 0x22, 0x14, 0xf0, 0xae, 0x86, 0x7b, 0x8e, 0xb0, 0x0a, 0x07, 0x19, 0x71, 0x46, 0xb3, 0x28, 0xf0, + 0x89, 0xb9, 0x72, 0x89, 0xd1, 0x63, 0x01, 0x97, 0x7c, 0x2a, 0x8e, 0x89, 0xdf, 0x27, 0x3f, 0x1e, + 0xf4, 0xc9, 0x77, 0xc4, 0xd0, 0x86, 0x9c, 0xf2, 0x63, 0x01, 0xa7, 0x1c, 0xd7, 0x70, 0xc0, 0x2b, + 0x2f, 0x45, 0x78, 0xe5, 0xb8, 0xe1, 0x0f, 0x71, 0xcb, 0x4b, 0x11, 0x6e, 0x79, 0x26, 0xb6, 0x2f, + 0x91, 0x7e, 0xf9, 0xf1, 0xa0, 0x5f, 0x8e, 0x13, 0x47, 0xc8, 0x31, 0x2f, 0x47, 0x39, 0xe6, 0xd3, + 0x31, 0x3c, 0x86, 0x7a, 0xe6, 0xf9, 0x01, 0xcf, 0x7c, 0x57, 0x0c, 0xab, 0x08, 0xd7, 0xbc, 0x14, + 0xf0, 0x89, 0x90, 0x48, 0x36, 0xd1, 0x4e, 0x11, 0x9d, 0x1f, 0xf4, 0xf2, 0x77, 0xc7, 0xa9, 0x5a, + 0x94, 0x9b, 0x7f, 0x32, 0xe4, 0xe6, 0xef, 0x8c, 0x1b, 0x55, 0xc8, 0xcf, 0x7b, 0xde, 0xf9, 0x34, + 0xb1, 0x8f, 0xa1, 0x95, 0x41, 0x6c, 0x29, 0xb6, 0x2c, 0xd3, 0xe2, 0x8e, 0x8f, 0x15, 0xa4, 0x19, + 0x62, 0xb1, 0x3d, 0xfd, 0x3f, 0xc0, 0x93, 0xd3, 0x45, 0xeb, 0xd3, 0x76, 0xe9, 0x6b, 0x29, 0x8f, + 0x96, 0x5a, 0x36, 0xbf, 0xb5, 0x2f, 0x70, 0x6b, 0xef, 0x73, 0xf0, 0xe9, 0xa0, 0x83, 0xaf, 0x43, + 0x91, 0xf8, 0x94, 0x90, 0xef, 0x56, 0x7b, 0xc2, 0x77, 0xa3, 0x7b, 0x60, 0x92, 0xda, 0x5f, 0x16, + 0x06, 0x70, 0x43, 0x92, 0xa5, 0x86, 0x64, 0x82, 0x54, 0x30, 0x09, 0x32, 0x47, 0x71, 0x3f, 0x4c, + 0xf9, 0x70, 0x09, 0x5f, 0xea, 0x0b, 0x98, 0x93, 0xaa, 0xb8, 0xd8, 0x73, 0xbd, 0xde, 0x45, 0xd5, + 0xde, 0x96, 0x56, 0x3c, 0x01, 0x79, 0x71, 0x01, 0x82, 0xac, 0x66, 0xb6, 0xd8, 0xb8, 0xc7, 0x65, + 0xfa, 0x9b, 0xc4, 0x0a, 0x1d, 0xb3, 0xcd, 0x6f, 0x40, 0x92, 0x9f, 0x04, 0xcb, 0x5d, 0xda, 0x05, + 0xb6, 0x66, 0xa5, 0xdf, 0x4f, 0x79, 0xfc, 0xbc, 0x50, 0x21, 0xca, 0xab, 0xa7, 0x6e, 0xa6, 0x57, + 0x4f, 0xff, 0x68, 0x5e, 0x5d, 0x7a, 0x33, 0xe5, 0x4d, 0xa9, 0xeb, 0xaf, 0x6f, 0x4c, 0x04, 0x44, + 0xbb, 0xd8, 0x4b, 0x70, 0x76, 0x53, 0x97, 0x15, 0x44, 0xa8, 0x95, 0x8b, 0x48, 0x50, 0x8c, 0xf9, + 0x92, 0x1a, 0xe8, 0x21, 0xea, 0xe7, 0xcd, 0x2d, 0x6e, 0x1a, 0xea, 0x31, 0x89, 0x1e, 0x99, 0x61, + 0xfb, 0xfc, 0x4b, 0x21, 0x10, 0x36, 0xdc, 0x0a, 0x05, 0xd2, 0x75, 0xf6, 0xfc, 0x09, 0x78, 0x7a, + 0x51, 0x00, 0xa4, 0x16, 0xa0, 0x41, 0x1b, 0x83, 0x2e, 0x41, 0x0e, 0x5f, 0xa5, 0xb7, 0x51, 0x59, + 0xb2, 0xe9, 0xd6, 0xa1, 0x8e, 0x18, 0x1b, 0x4e, 0xb3, 0x4a, 0x84, 0xf9, 0xbd, 0xfd, 0x7a, 0x85, + 0xd1, 0xdc, 0x67, 0x76, 0x75, 0x07, 0x77, 0x7b, 0xce, 0x9e, 0xcc, 0xb9, 0x48, 0x3f, 0x9f, 0x26, + 0xfe, 0x30, 0x60, 0x7f, 0x22, 0xc5, 0x2b, 0x16, 0x4d, 0xda, 0x17, 0x22, 0x25, 0x13, 0xf9, 0x6d, + 0x00, 0x6d, 0xd5, 0x56, 0xae, 0xa9, 0x86, 0x83, 0x5b, 0x5c, 0xee, 0x85, 0xb6, 0x6a, 0x3f, 0x4b, + 0x01, 0x24, 0xde, 0x24, 0xd5, 0x7d, 0x1b, 0xb7, 0xe8, 0x04, 0x64, 0xe4, 0xb1, 0xb6, 0x6a, 0x6f, + 0xd8, 0xb8, 0xe5, 0x1b, 0xeb, 0xd8, 0xcd, 0x18, 0x6b, 0x50, 0xde, 0xf9, 0xb0, 0xbc, 0x3f, 0x9e, + 0xf6, 0x56, 0x87, 0x17, 0x3e, 0xfc, 0x64, 0xca, 0xe2, 0xb3, 0x74, 0x4f, 0x11, 0x74, 0x02, 0xe8, + 0x03, 0x30, 0xe9, 0xae, 0x4a, 0xa5, 0x4f, 0x57, 0xab, 0xd0, 0xc2, 0xc3, 0x2d, 0xee, 0xca, 0xd5, + 0x20, 0xd8, 0x46, 0x3f, 0x0d, 0xc7, 0x42, 0x36, 0xc8, 0x6d, 0x20, 0x7d, 0x28, 0x53, 0x74, 0x24, + 0x68, 0x8a, 0x04, 0x7f, 0x4f, 0x7a, 0x99, 0x9b, 0xb2, 0x6a, 0xee, 0x20, 0x21, 0xac, 0xdf, 0xbd, + 0x45, 0xe9, 0x84, 0xf4, 0xa7, 0x29, 0x98, 0x08, 0x75, 0x10, 0x3d, 0x0a, 0xa3, 0xcc, 0x03, 0xa7, + 0x0e, 0x4c, 0x84, 0x50, 0x89, 0xf3, 0x31, 0x31, 0x02, 0x34, 0x07, 0x79, 0xcc, 0xa3, 0x6b, 0x2e, + 0x94, 0x3b, 0x63, 0x82, 0x70, 0x4e, 0xef, 0x92, 0xa1, 0x05, 0x28, 0xb8, 0xa2, 0x8f, 0xd9, 0xb9, + 0xb9, 0x33, 0xc7, 0x99, 0x78, 0x84, 0xd2, 0x3c, 0x14, 0x7d, 0xdd, 0x63, 0x6f, 0x01, 0x77, 0xf9, + 0x76, 0x8b, 0x05, 0xd0, 0xf9, 0xae, 0xba, 0x4b, 0x77, 0x5a, 0xe8, 0x18, 0x8c, 0x91, 0xca, 0x36, + 0x7f, 0x2c, 0x95, 0x91, 0x73, 0x5d, 0x75, 0xf7, 0x82, 0x6a, 0x4b, 0x9f, 0x48, 0x41, 0x39, 0xd8, + 0x4f, 0x74, 0x2f, 0x20, 0x82, 0xab, 0xb6, 0xb1, 0x62, 0xf4, 0xbb, 0xcc, 0x47, 0x0a, 0x8e, 0x13, + 0x5d, 0x75, 0x77, 0xae, 0x8d, 0x2f, 0xf5, 0xbb, 0xb4, 0x69, 0x1b, 0xad, 0x40, 0x45, 0x20, 0x8b, + 0x64, 0x17, 0x97, 0xca, 0xf1, 0xc1, 0xef, 0xd5, 0x70, 0x04, 0xb6, 0xd7, 0x7d, 0x85, 0xec, 0x75, + 0xcb, 0x8c, 0x9f, 0xa8, 0x91, 0x1e, 0x82, 0x89, 0xd0, 0x88, 0x91, 0x04, 0xe3, 0xbd, 0xfe, 0xa6, + 0xb2, 0x83, 0xf7, 0xe8, 0xf3, 0x77, 0xa6, 0xea, 0x05, 0xb9, 0xd8, 0xeb, 0x6f, 0x3e, 0x8d, 0xf7, + 0x68, 0xee, 0x50, 0xd2, 0xa0, 0x1c, 0xdc, 0x4c, 0x11, 0xc7, 0x61, 0x99, 0x7d, 0xa3, 0x25, 0x3e, + 0x6c, 0x40, 0x0b, 0xe8, 0x1c, 0x8c, 0x5e, 0x35, 0x99, 0x36, 0x1f, 0xb4, 0x7b, 0xba, 0x62, 0x3a, + 0xd8, 0xb7, 0x25, 0x63, 0x34, 0x92, 0x0d, 0xa3, 0x54, 0x2f, 0x23, 0x0f, 0x2a, 0xae, 0x00, 0xa8, + 0x8e, 0x63, 0xe9, 0x9b, 0x7d, 0x8f, 0x7d, 0x75, 0x76, 0x30, 0xad, 0x3f, 0xbb, 0xaa, 0xea, 0x56, + 0xf3, 0x56, 0xae, 0xd9, 0xd3, 0x1e, 0x8d, 0x4f, 0xbb, 0x7d, 0x9c, 0xa4, 0x37, 0xb2, 0x90, 0x63, + 0xdb, 0x4d, 0xf4, 0x44, 0x30, 0xf9, 0x51, 0x3c, 0x7b, 0x62, 0x58, 0xf7, 0x19, 0x16, 0xef, 0xbd, + 0x1b, 0x41, 0xdd, 0x15, 0xce, 0x28, 0x34, 0x8b, 0xaf, 0xed, 0xd7, 0xc7, 0x68, 0xf4, 0xb1, 0xb4, + 0xe0, 0xa5, 0x17, 0x86, 0xed, 0xae, 0x45, 0x2e, 0x23, 0x7b, 0xe8, 0x5c, 0xc6, 0x45, 0x18, 0xf7, + 0x85, 0x5b, 0x7a, 0x8b, 0xef, 0x53, 0x4e, 0x1c, 0xb4, 0xe8, 0x96, 0x16, 0x78, 0xff, 0x8b, 0x6e, + 0x38, 0xb6, 0xd4, 0x42, 0x33, 0xc1, 0x4d, 0x36, 0x8d, 0xda, 0x58, 0xb8, 0xe0, 0xdb, 0x37, 0xd3, + 0x37, 0xf9, 0xb7, 0x40, 0x81, 0x3e, 0x6c, 0xa6, 0x28, 0x2c, 0x7a, 0xc8, 0x13, 0x00, 0xad, 0xbc, + 0x1b, 0x26, 0xbc, 0xc0, 0x86, 0xa1, 0xe4, 0x19, 0x17, 0x0f, 0x4c, 0x11, 0x1f, 0x80, 0x69, 0xfa, + 0x01, 0xbc, 0x30, 0x76, 0x81, 0x62, 0x23, 0x52, 0x77, 0x25, 0x48, 0x71, 0x27, 0x94, 0x3d, 0x13, + 0x4a, 0x71, 0x81, 0xa5, 0x3e, 0x5c, 0x28, 0x45, 0x3b, 0x0e, 0x79, 0x37, 0xec, 0x2c, 0xb2, 0x2f, + 0xeb, 0xa9, 0x2c, 0xda, 0x74, 0x03, 0x59, 0x0b, 0xdb, 0xfd, 0x8e, 0xc3, 0x99, 0x94, 0x28, 0x0e, + 0x0d, 0x64, 0x65, 0x06, 0xa7, 0xb8, 0xa7, 0x60, 0x5c, 0x58, 0x15, 0x86, 0x37, 0x4e, 0xf1, 0x4a, + 0x02, 0x48, 0x91, 0x4e, 0x43, 0xa5, 0x67, 0x99, 0x3d, 0xd3, 0xc6, 0x96, 0xa2, 0xb6, 0x5a, 0x16, + 0xb6, 0xed, 0x6a, 0x99, 0xf1, 0x13, 0xf0, 0x39, 0x06, 0x96, 0xde, 0x03, 0x63, 0x22, 0x9e, 0x9e, + 0x86, 0xd1, 0xa6, 0x6b, 0x21, 0xb3, 0x32, 0x2b, 0x10, 0xff, 0x3a, 0xd7, 0xeb, 0xf1, 0xec, 0x1a, + 0xf9, 0x29, 0x75, 0x60, 0x8c, 0x4f, 0x58, 0x64, 0x4e, 0x65, 0x05, 0x4a, 0x3d, 0xd5, 0x22, 0xc3, + 0xf0, 0x67, 0x56, 0x86, 0xed, 0x08, 0x57, 0x55, 0xcb, 0x59, 0xc3, 0x4e, 0x20, 0xc1, 0x52, 0xa4, + 0xf4, 0x0c, 0x24, 0x3d, 0x06, 0xe3, 0x01, 0x1c, 0xef, 0x3b, 0x84, 0x7c, 0xa1, 0xd3, 0x82, 0xdb, + 0x93, 0xb4, 0xd7, 0x13, 0xe9, 0x1c, 0x14, 0xdc, 0xb9, 0x22, 0x1b, 0x0d, 0x21, 0x0a, 0xfe, 0x61, + 0x43, 0x5e, 0xa4, 0x49, 0x24, 0xf3, 0x1a, 0xff, 0x44, 0x53, 0x46, 0x66, 0x05, 0x09, 0xfb, 0x0c, + 0x13, 0xf3, 0x66, 0xe8, 0x71, 0x18, 0xe3, 0x86, 0x89, 0xaf, 0xc7, 0x61, 0xe9, 0xa2, 0x55, 0x6a, + 0xa9, 0x44, 0xba, 0x88, 0xd9, 0x2d, 0xaf, 0x99, 0xb4, 0xbf, 0x99, 0x0f, 0x43, 0x5e, 0x18, 0x9f, + 0xa0, 0x97, 0x60, 0x2d, 0x9c, 0x8c, 0xf3, 0x12, 0xbc, 0x11, 0x8f, 0x90, 0x68, 0x93, 0xad, 0xb7, + 0x0d, 0xdc, 0x52, 0xbc, 0x25, 0xc8, 0x1f, 0xcc, 0x4e, 0xb0, 0x8a, 0x65, 0xb1, 0xbe, 0xa4, 0x07, + 0x20, 0xc7, 0xfa, 0x1a, 0x69, 0xe2, 0xa2, 0x5c, 0xeb, 0x77, 0x53, 0x90, 0x17, 0xee, 0x23, 0x92, + 0x28, 0x30, 0x88, 0xf4, 0x8d, 0x0e, 0xe2, 0xe6, 0x9b, 0xa4, 0xfb, 0x00, 0x51, 0x4d, 0x51, 0xae, + 0x9a, 0x8e, 0x6e, 0xb4, 0x15, 0x36, 0x17, 0xfc, 0xdd, 0x20, 0xad, 0xb9, 0x42, 0x2b, 0x56, 0x09, + 0xfc, 0x9e, 0x53, 0x50, 0xf4, 0x65, 0xb9, 0xd0, 0x18, 0x64, 0x2e, 0xe1, 0x6b, 0x95, 0x11, 0x54, + 0x84, 0x31, 0x19, 0xd3, 0x1c, 0x41, 0x25, 0x75, 0xf6, 0x8d, 0x31, 0x98, 0x98, 0x6b, 0xce, 0x2f, + 0xcd, 0xf5, 0x7a, 0x1d, 0x9d, 0xbf, 0xa7, 0xbb, 0x0c, 0x59, 0xba, 0x4f, 0x4e, 0x70, 0xbe, 0x53, + 0x4b, 0x92, 0x70, 0x42, 0x32, 0x8c, 0xd2, 0xed, 0x34, 0x4a, 0x72, 0xec, 0x53, 0x4b, 0x94, 0x87, + 0x22, 0x9d, 0xa4, 0x0a, 0x97, 0xe0, 0x34, 0xa8, 0x96, 0x24, 0x39, 0x85, 0x7e, 0x1a, 0x0a, 0xde, + 0x3e, 0x39, 0xe9, 0x19, 0x51, 0x2d, 0x71, 0xda, 0x8a, 0xf0, 0xf7, 0x76, 0x06, 0x49, 0x8f, 0x26, + 0x6a, 0x89, 0xf3, 0x35, 0xe8, 0x39, 0x18, 0x13, 0x7b, 0xb0, 0x64, 0xa7, 0x38, 0xb5, 0x84, 0x29, + 0x25, 0x32, 0x7d, 0x6c, 0xeb, 0x9c, 0xe4, 0xa8, 0xaa, 0x96, 0x28, 0x6f, 0x86, 0x36, 0x20, 0xc7, + 0x83, 0xdf, 0x44, 0x27, 0x3d, 0xb5, 0x64, 0x89, 0x22, 0x22, 0x64, 0x2f, 0x39, 0x91, 0xf4, 0x78, + 0xae, 0x96, 0x38, 0x61, 0x88, 0x54, 0x00, 0xdf, 0x7e, 0x3a, 0xf1, 0xb9, 0x5b, 0x2d, 0x79, 0x22, + 0x10, 0x7d, 0x10, 0xf2, 0xee, 0xae, 0x29, 0xe1, 0x49, 0x5a, 0x2d, 0x69, 0x2e, 0xae, 0xb9, 0x91, + 0xf8, 0x96, 0xc4, 0xbd, 0xb1, 0xb7, 0x24, 0xbc, 0x43, 0x6e, 0xf7, 0x18, 0xfc, 0xaf, 0x53, 0x70, + 0x3c, 0x7c, 0x9c, 0xac, 0x1a, 0x7b, 0x43, 0x2e, 0x04, 0x0c, 0xb9, 0x2d, 0xf2, 0x38, 0x64, 0xe6, + 0x8c, 0x3d, 0x12, 0x6c, 0xd0, 0x6f, 0xfb, 0xf5, 0xad, 0x8e, 0x48, 0xd3, 0x91, 0xf2, 0x86, 0xd5, + 0x89, 0xbe, 0x35, 0xd2, 0xc8, 0x7e, 0xff, 0xf3, 0xf5, 0x91, 0xe6, 0x4e, 0xc4, 0xa8, 0x62, 0xee, + 0x0a, 0xe4, 0xe7, 0x8c, 0x3d, 0x71, 0x4d, 0x60, 0x94, 0x0e, 0xe8, 0xb0, 0xc7, 0xff, 0xaf, 0x97, + 0x08, 0x67, 0xdf, 0xf7, 0x81, 0xf9, 0x88, 0x73, 0xac, 0x34, 0xe4, 0x84, 0x3f, 0xfe, 0xc6, 0x40, + 0x6d, 0xb8, 0x34, 0xa5, 0x0b, 0x90, 0x9d, 0x37, 0x75, 0x1a, 0xf2, 0xb4, 0xb0, 0x61, 0x76, 0x45, + 0xce, 0x93, 0x16, 0xd0, 0x29, 0xc8, 0xa9, 0x5d, 0xb3, 0x6f, 0x38, 0x22, 0x6a, 0x26, 0xae, 0xe4, + 0xbf, 0xed, 0xd7, 0x33, 0x4b, 0x86, 0x23, 0xf3, 0xaa, 0x46, 0xf6, 0xaf, 0x5e, 0xad, 0xa7, 0xa4, + 0xa7, 0x60, 0x6c, 0x01, 0x6b, 0x37, 0xc2, 0x6b, 0x01, 0x6b, 0x21, 0x5e, 0xa7, 0x21, 0xbf, 0x64, + 0x38, 0xec, 0xa3, 0x61, 0xb7, 0x41, 0x46, 0x37, 0xd8, 0xb1, 0x48, 0xa8, 0x7d, 0x02, 0x27, 0xa8, + 0x0b, 0x58, 0x73, 0x51, 0x5b, 0x58, 0x0b, 0xa3, 0x12, 0xf6, 0x04, 0x2e, 0x35, 0xa1, 0x74, 0x45, + 0xed, 0xf0, 0x70, 0x0f, 0xdb, 0xe8, 0x3e, 0x28, 0xa8, 0xa2, 0x40, 0x77, 0x56, 0xa5, 0x66, 0xf9, + 0x07, 0xfb, 0x75, 0xf0, 0x90, 0x64, 0x0f, 0xa1, 0x91, 0x7d, 0xf9, 0xbf, 0x9f, 0x4c, 0x49, 0x26, + 0x8c, 0x5d, 0x50, 0x6d, 0x6a, 0xe9, 0x1f, 0x0c, 0x24, 0x52, 0x68, 0xa4, 0xd8, 0x3c, 0x72, 0x7d, + 0xbf, 0x3e, 0xb9, 0xa7, 0x76, 0x3b, 0x0d, 0xc9, 0xab, 0x93, 0xfc, 0xf9, 0x95, 0x59, 0x5f, 0x7e, + 0x85, 0x46, 0x92, 0xcd, 0xa9, 0xeb, 0xfb, 0xf5, 0x09, 0x8f, 0x86, 0xd4, 0x48, 0x6e, 0xd2, 0x45, + 0xea, 0x41, 0x8e, 0x05, 0xbd, 0x91, 0x27, 0x84, 0x3c, 0xe5, 0x93, 0xf6, 0x52, 0x3e, 0x8d, 0x43, + 0xa5, 0x19, 0x78, 0x5c, 0xc6, 0x28, 0x1a, 0xd9, 0x8f, 0xbd, 0x5a, 0x1f, 0x91, 0x2c, 0x40, 0x6b, + 0x7a, 0xb7, 0xdf, 0x61, 0x0f, 0xbf, 0xc5, 0x51, 0xd3, 0x83, 0xac, 0xdf, 0x34, 0x9d, 0xc4, 0x02, + 0xb2, 0x89, 0x59, 0xae, 0xa4, 0x5c, 0x20, 0x2c, 0xce, 0xf8, 0xd6, 0x7e, 0x3d, 0x45, 0x7b, 0x4f, + 0x65, 0x74, 0x17, 0xe4, 0x58, 0x28, 0xcf, 0xe3, 0x9f, 0xb2, 0xa0, 0x61, 0x63, 0x92, 0x79, 0xad, + 0xf4, 0x04, 0x8c, 0xad, 0xd8, 0xed, 0x05, 0x32, 0xa4, 0xe3, 0x90, 0xef, 0xda, 0x6d, 0xc5, 0x17, + 0x4d, 0x8d, 0x75, 0xed, 0xf6, 0xfa, 0x90, 0x28, 0x8c, 0x4f, 0xcb, 0x7b, 0x21, 0xb7, 0xbe, 0x4b, + 0xc9, 0x4f, 0xb9, 0x52, 0xca, 0xf8, 0xfb, 0xc8, 0xb9, 0x07, 0x88, 0x3e, 0x9a, 0x01, 0x58, 0xdf, + 0x75, 0x47, 0x38, 0xe4, 0x08, 0x0e, 0x49, 0x90, 0x73, 0x76, 0xdd, 0x88, 0xba, 0xd0, 0x84, 0xd7, + 0xf6, 0xeb, 0xb9, 0xf5, 0x5d, 0xb2, 0xbd, 0x90, 0x79, 0x4d, 0x30, 0x95, 0x95, 0x09, 0xa5, 0xb2, + 0xdc, 0x04, 0x5e, 0x36, 0x22, 0x81, 0x37, 0xea, 0x3b, 0x01, 0x38, 0x06, 0x63, 0x96, 0x7a, 0x4d, + 0x21, 0x33, 0xca, 0xbe, 0x42, 0x9a, 0xb3, 0xd4, 0x6b, 0xcb, 0x66, 0x1b, 0xcd, 0x43, 0xb6, 0x63, + 0xb6, 0x45, 0xde, 0xed, 0xa8, 0x18, 0x14, 0x89, 0xb8, 0xf8, 0x6d, 0xe2, 0x65, 0xb3, 0xdd, 0x3c, + 0x46, 0xe4, 0xff, 0xe5, 0x3f, 0xaf, 0x4f, 0x04, 0xe1, 0xb6, 0x4c, 0x89, 0xdd, 0x64, 0x60, 0x7e, + 0x68, 0x32, 0xb0, 0x70, 0x50, 0x32, 0x10, 0x82, 0xc9, 0xc0, 0x3b, 0xe8, 0x99, 0x26, 0x3b, 0xc3, + 0x99, 0x1e, 0x08, 0x3e, 0xe7, 0x8c, 0x3d, 0x7a, 0x8a, 0x7a, 0x2b, 0x14, 0xdc, 0x8b, 0x42, 0xfc, + 0xb3, 0xcf, 0x1e, 0x80, 0xeb, 0xdb, 0xc7, 0x52, 0x50, 0x0e, 0xf6, 0x98, 0xe6, 0x73, 0xec, 0x36, + 0xff, 0x60, 0x2a, 0x4b, 0x7b, 0x12, 0xa5, 0x58, 0x12, 0x99, 0xf2, 0x90, 0xce, 0xcf, 0x85, 0x74, + 0x7e, 0x4a, 0x08, 0x88, 0xbd, 0xdd, 0x61, 0xaa, 0x3e, 0xcd, 0xa5, 0x53, 0xf2, 0x01, 0x6d, 0x4f, + 0xf5, 0xa9, 0x46, 0xfc, 0x0c, 0x14, 0x7d, 0xb5, 0x91, 0x41, 0xfd, 0x23, 0x11, 0xc9, 0x8e, 0x49, + 0x77, 0x42, 0x44, 0x8d, 0x38, 0x42, 0xf0, 0x50, 0x5d, 0x45, 0x2d, 0xb8, 0x48, 0x49, 0xaf, 0x57, + 0x34, 0x17, 0xfe, 0xec, 0x3b, 0x27, 0x46, 0x5e, 0x7e, 0xed, 0xc4, 0xc8, 0xd0, 0xfb, 0x99, 0x52, + 0xfc, 0x17, 0xe6, 0x5d, 0x2f, 0xf3, 0xf1, 0xf7, 0xc3, 0xad, 0x1c, 0xc7, 0x76, 0xd4, 0x1d, 0xdd, + 0x68, 0x8b, 0xbf, 0xdc, 0xdd, 0x94, 0xf9, 0x68, 0x38, 0xf4, 0xc6, 0xdd, 0xce, 0x8f, 0x7a, 0x69, + 0xac, 0x16, 0xe5, 0x0d, 0xa5, 0xfd, 0x2c, 0xa0, 0x15, 0xbb, 0x3d, 0x6f, 0x61, 0xf6, 0xb1, 0x11, + 0xbe, 0x4f, 0x0a, 0x3e, 0xf6, 0xe1, 0x36, 0xea, 0x96, 0xd9, 0xe0, 0x58, 0xdc, 0xef, 0x46, 0x7b, + 0x39, 0xa2, 0xc0, 0x13, 0xa1, 0x45, 0x00, 0x9a, 0x5e, 0xb1, 0x6d, 0x2f, 0x99, 0x57, 0x0f, 0xf3, + 0x98, 0x77, 0x31, 0x64, 0xd5, 0xc1, 0xb6, 0x98, 0x6b, 0x8f, 0x10, 0x7d, 0x18, 0xa6, 0xba, 0xba, + 0xa1, 0xd8, 0xb8, 0xb3, 0xa5, 0xb4, 0x70, 0x87, 0x7e, 0x8a, 0x85, 0x1f, 0xdc, 0x15, 0x9a, 0xcb, + 0xdc, 0x31, 0xdd, 0x15, 0x3f, 0x67, 0xb3, 0x4b, 0x86, 0x73, 0x7d, 0xbf, 0x5e, 0x63, 0xde, 0x21, + 0x82, 0xa5, 0x24, 0x4f, 0x76, 0x75, 0x63, 0x0d, 0x77, 0xb6, 0x16, 0x5c, 0x18, 0x7a, 0x09, 0x26, + 0x39, 0x86, 0xe9, 0x25, 0x3d, 0x88, 0xed, 0x29, 0x35, 0x57, 0xae, 0xef, 0xd7, 0xab, 0x8c, 0xdb, + 0x00, 0x8a, 0xf4, 0x83, 0xfd, 0xfa, 0xfd, 0x09, 0xfa, 0x34, 0xa7, 0x69, 0xc2, 0x3d, 0x56, 0x5c, + 0x26, 0x1c, 0x42, 0xda, 0xf6, 0x12, 0xf4, 0xa2, 0xed, 0xd1, 0x70, 0xdb, 0x03, 0x28, 0x49, 0xdb, + 0xf6, 0xb9, 0x66, 0x2f, 0x83, 0x2f, 0xda, 0x3e, 0x0a, 0xb9, 0x5e, 0x7f, 0x53, 0x9c, 0xa2, 0x15, + 0x64, 0x5e, 0x42, 0x33, 0xfe, 0x83, 0xb4, 0xe2, 0xd9, 0x92, 0x98, 0x4f, 0x12, 0xab, 0xb8, 0x69, + 0x4e, 0x16, 0xfb, 0xd1, 0xe8, 0xe3, 0x6b, 0x19, 0xa8, 0xac, 0xd8, 0xed, 0xc5, 0x96, 0xee, 0xdc, + 0x64, 0xf5, 0xea, 0x45, 0x49, 0x87, 0x7a, 0xb3, 0xe6, 0xfc, 0xf5, 0xfd, 0x7a, 0x99, 0x49, 0xe7, + 0x66, 0xca, 0xa4, 0x0b, 0x13, 0x9e, 0x5e, 0x2a, 0x96, 0xea, 0x70, 0xf7, 0xd4, 0x5c, 0x48, 0xa8, + 0x81, 0x0b, 0x58, 0xbb, 0xbe, 0x5f, 0x3f, 0xca, 0x7a, 0x16, 0x62, 0x25, 0xc9, 0x65, 0x2d, 0xb0, + 0x16, 0xd0, 0x6e, 0xb4, 0xe2, 0xd3, 0xf3, 0xa7, 0xe6, 0xc5, 0xb7, 0x50, 0xe9, 0xf9, 0xd4, 0xfd, + 0x41, 0x1a, 0x8a, 0xc4, 0xd5, 0x33, 0x38, 0x8e, 0x5e, 0x0a, 0xa9, 0x1f, 0xe3, 0x52, 0x48, 0xbf, + 0x3d, 0x4b, 0xe1, 0x1e, 0x37, 0xd6, 0xce, 0x0c, 0xd5, 0xf9, 0x60, 0xc8, 0xfd, 0x9f, 0x33, 0xd4, + 0xaa, 0xd2, 0x1d, 0xa4, 0x8c, 0x5b, 0xef, 0x04, 0x01, 0xfe, 0x6c, 0x0a, 0x8e, 0x78, 0xe2, 0xb1, + 0x2d, 0x2d, 0x24, 0xc5, 0x67, 0xae, 0xef, 0xd7, 0x6f, 0x0d, 0x4b, 0xd1, 0x87, 0x76, 0x03, 0x92, + 0x9c, 0x72, 0x19, 0xad, 0x59, 0x5a, 0x74, 0x3f, 0x5a, 0xb6, 0xe3, 0xf6, 0x23, 0x33, 0xbc, 0x1f, + 0x3e, 0xb4, 0x1f, 0xa9, 0x1f, 0x0b, 0xb6, 0x33, 0x38, 0xa9, 0xd9, 0x84, 0x93, 0xfa, 0xf5, 0x34, + 0x8c, 0xaf, 0xd8, 0xed, 0x0d, 0xa3, 0xf5, 0xee, 0x82, 0x38, 0xec, 0x82, 0xf8, 0x44, 0x0a, 0xca, + 0x17, 0x75, 0xdb, 0x31, 0x2d, 0x5d, 0x53, 0x3b, 0x74, 0x37, 0xe3, 0xdd, 0x91, 0x4c, 0x1d, 0xfe, + 0x8e, 0xe4, 0x23, 0x90, 0xbb, 0xaa, 0x76, 0xd8, 0xbf, 0x2b, 0xca, 0xd0, 0x33, 0xc2, 0x90, 0xef, + 0x08, 0xe7, 0x80, 0x39, 0x3a, 0xef, 0xce, 0x6f, 0xa7, 0x61, 0x22, 0x14, 0x78, 0xa0, 0x26, 0x64, + 0xa9, 0x45, 0x67, 0x1b, 0xde, 0xd9, 0x43, 0xc4, 0x15, 0x64, 0x4f, 0x4c, 0x69, 0xd1, 0x4f, 0x41, + 0xbe, 0xab, 0xee, 0x32, 0xcf, 0xc0, 0xf6, 0x37, 0x73, 0x87, 0xe3, 0xe3, 0xed, 0x5e, 0x05, 0x1f, + 0x49, 0x1e, 0xeb, 0xaa, 0xbb, 0xd4, 0x1f, 0xf4, 0x60, 0x82, 0x40, 0xb5, 0x6d, 0xd5, 0x68, 0x63, + 0xbf, 0xfb, 0xb9, 0x78, 0xe8, 0x46, 0x8e, 0x7a, 0x8d, 0xf8, 0xd8, 0x49, 0xf2, 0x78, 0x57, 0xdd, + 0x9d, 0xa7, 0x00, 0xd2, 0x62, 0x23, 0xff, 0xca, 0xab, 0xf5, 0x11, 0x2a, 0xb1, 0xff, 0x98, 0x02, + 0xf0, 0x24, 0x86, 0xd6, 0xa1, 0x12, 0x72, 0x5f, 0xe2, 0x8e, 0x51, 0x6c, 0x80, 0xe7, 0x6d, 0x6c, + 0x27, 0xb4, 0xd0, 0x14, 0x7c, 0x10, 0x8a, 0xec, 0x96, 0x80, 0x42, 0x93, 0xf1, 0xe9, 0xd8, 0x64, + 0xfc, 0x09, 0xc2, 0xeb, 0xfa, 0x7e, 0x1d, 0xb1, 0xe1, 0xf8, 0x88, 0x25, 0x9a, 0xa2, 0x07, 0x06, + 0x21, 0x04, 0xc1, 0xb1, 0x14, 0x7d, 0xb1, 0x05, 0xbd, 0x7b, 0x66, 0x1a, 0xfa, 0x0e, 0xb6, 0xdc, + 0x3d, 0x32, 0x2b, 0xa2, 0x1a, 0xe4, 0xd9, 0x57, 0x05, 0x9d, 0x3d, 0xf1, 0xef, 0x2a, 0x44, 0x99, + 0x50, 0x5d, 0xc3, 0x9b, 0xb6, 0x2e, 0x66, 0x41, 0x16, 0x45, 0x74, 0x1e, 0x2a, 0x36, 0xd6, 0xfa, + 0x96, 0xee, 0xec, 0x29, 0x9a, 0x69, 0x38, 0xaa, 0xe6, 0x70, 0xa7, 0x7d, 0xcb, 0xf5, 0xfd, 0xfa, + 0x31, 0xd6, 0xd7, 0x30, 0x86, 0x24, 0x4f, 0x08, 0xd0, 0x3c, 0x83, 0x90, 0x16, 0x5a, 0xd8, 0x51, + 0xf5, 0x8e, 0xcd, 0x37, 0xb6, 0xa2, 0xe8, 0x1b, 0xcb, 0x57, 0xc6, 0xfc, 0x87, 0x51, 0xd7, 0xa0, + 0x62, 0xf6, 0xb0, 0x15, 0x61, 0x8f, 0x96, 0xbd, 0x96, 0xc3, 0x18, 0x37, 0x60, 0x12, 0x26, 0x04, + 0x0f, 0x61, 0x11, 0xce, 0x07, 0xee, 0x9c, 0xb1, 0xb8, 0x31, 0x1d, 0x1e, 0x72, 0x18, 0x43, 0xf2, + 0x5f, 0x34, 0x63, 0xd1, 0xe5, 0x51, 0xc8, 0xbd, 0xa0, 0xea, 0x1d, 0xf1, 0xa9, 0x55, 0x99, 0x97, + 0xd0, 0x12, 0xe4, 0x6c, 0x47, 0x75, 0xfa, 0x2c, 0xf4, 0x1e, 0x6d, 0xbe, 0x27, 0x61, 0x9f, 0x9b, + 0xa6, 0xd1, 0x5a, 0xa3, 0x84, 0x32, 0x67, 0x80, 0xce, 0x43, 0xce, 0x31, 0x77, 0xb0, 0xc1, 0x85, + 0x7a, 0xa8, 0x95, 0x4e, 0x13, 0x75, 0x8c, 0x1a, 0x39, 0xe0, 0x19, 0x65, 0xc5, 0xde, 0x56, 0x2d, + 0x6c, 0xb3, 0x50, 0xb9, 0xb9, 0x74, 0xe8, 0xe5, 0x78, 0x2c, 0xec, 0x29, 0x18, 0x3f, 0x49, 0x9e, + 0x70, 0x41, 0x6b, 0x14, 0x12, 0x8e, 0x9c, 0xc7, 0x6e, 0x28, 0x72, 0x3e, 0x0f, 0x95, 0xbe, 0xb1, + 0x69, 0x1a, 0xf4, 0xb3, 0x88, 0x3c, 0x4d, 0x93, 0x3f, 0x99, 0x9a, 0xc9, 0xf8, 0x67, 0x2b, 0x8c, + 0x21, 0xc9, 0x13, 0x2e, 0x88, 0xdf, 0x7e, 0x6c, 0x41, 0xd9, 0xc3, 0xa2, 0x4b, 0xb6, 0x10, 0xbb, + 0x64, 0x6f, 0xe7, 0x4b, 0xf6, 0x48, 0xb8, 0x15, 0x6f, 0xd5, 0x8e, 0xbb, 0x40, 0x42, 0x86, 0xde, + 0x1f, 0xd8, 0x46, 0x02, 0x6f, 0x61, 0xa8, 0x95, 0x49, 0xbe, 0x83, 0x2c, 0xbe, 0x2d, 0x3b, 0xc8, + 0x46, 0xe9, 0x63, 0xaf, 0xd6, 0x47, 0xdc, 0x05, 0xfb, 0x0b, 0x69, 0xc8, 0x2d, 0x5c, 0xa1, 0xcf, + 0x28, 0x7f, 0x42, 0xc3, 0x07, 0x9f, 0xf5, 0x7a, 0x1f, 0x8c, 0x31, 0x59, 0xd8, 0xe8, 0x2c, 0x8c, + 0xf6, 0xc8, 0x0f, 0x9e, 0x6b, 0x3c, 0x3a, 0xa0, 0xd2, 0x14, 0x4f, 0xec, 0x30, 0x29, 0xaa, 0xf4, + 0x85, 0x0c, 0xc0, 0xc2, 0x95, 0x2b, 0xeb, 0x96, 0xde, 0xeb, 0x60, 0xe7, 0xdd, 0xf0, 0xfa, 0x9d, + 0x13, 0x5e, 0xfb, 0xe6, 0xf8, 0x69, 0x28, 0x7a, 0x73, 0x64, 0xa3, 0xc7, 0x21, 0xef, 0xf0, 0xdf, + 0x7c, 0xaa, 0x6b, 0x83, 0x53, 0x2d, 0xd0, 0xf9, 0x74, 0xbb, 0x14, 0xd2, 0x7f, 0x4d, 0x03, 0xc4, + 0x25, 0x67, 0x7e, 0x02, 0x02, 0xf0, 0xf3, 0x90, 0xe3, 0x1e, 0x27, 0x73, 0x43, 0xd1, 0x2a, 0xa7, + 0xf6, 0xcd, 0xd2, 0x77, 0xd2, 0x30, 0xb5, 0x21, 0xcc, 0xee, 0xbb, 0x12, 0x46, 0x17, 0x61, 0x0c, + 0x1b, 0x8e, 0xa5, 0x63, 0x91, 0x06, 0x9f, 0x09, 0x6b, 0x69, 0x84, 0xb4, 0xe8, 0xbf, 0x4b, 0x10, + 0xb7, 0xe5, 0x38, 0xb9, 0x4f, 0xc6, 0x9f, 0xcc, 0x40, 0x75, 0x18, 0x15, 0x9a, 0x87, 0x09, 0xcd, + 0xc2, 0x14, 0xa0, 0xf8, 0x4f, 0x4e, 0x9a, 0x35, 0x5f, 0xc6, 0x28, 0x88, 0x20, 0xc9, 0x65, 0x01, + 0xe1, 0x0e, 0xb9, 0x4d, 0x13, 0x54, 0x64, 0xa9, 0x10, 0xac, 0x84, 0x41, 0xb4, 0xc4, 0x3d, 0xb2, + 0x97, 0x96, 0xf2, 0x33, 0x60, 0x2e, 0xb9, 0xec, 0x41, 0xa9, 0x4f, 0x7e, 0x11, 0x26, 0x74, 0x43, + 0x77, 0x74, 0xb5, 0xa3, 0x6c, 0xaa, 0x1d, 0xd5, 0xd0, 0x6e, 0x64, 0x2b, 0xc2, 0xbc, 0x29, 0x6f, + 0x36, 0xc4, 0x4e, 0x92, 0xcb, 0x1c, 0xd2, 0x64, 0x00, 0x32, 0x23, 0xa2, 0xa9, 0xec, 0x0d, 0x05, + 0x6e, 0x82, 0xdc, 0x37, 0x23, 0xbf, 0x98, 0x81, 0x49, 0x37, 0x3f, 0xf3, 0xee, 0x54, 0x24, 0x9d, + 0x8a, 0x15, 0x00, 0x66, 0x40, 0x88, 0xe7, 0xb8, 0x81, 0xd9, 0x20, 0x26, 0xa8, 0xc0, 0x38, 0x2c, + 0xd8, 0x8e, 0x6f, 0x3e, 0xfe, 0x32, 0x03, 0x25, 0xff, 0x7c, 0xbc, 0xeb, 0xd2, 0xdf, 0x41, 0x19, + 0xb3, 0x39, 0xcf, 0x24, 0x66, 0xf9, 0x77, 0x51, 0x42, 0x26, 0x71, 0x60, 0x29, 0x0d, 0xb7, 0x85, + 0x7f, 0x93, 0x86, 0x1c, 0xbf, 0x97, 0xad, 0x0d, 0xec, 0x22, 0x52, 0x71, 0xf7, 0xbe, 0x0f, 0xde, + 0x44, 0xbc, 0x12, 0xb9, 0x89, 0x28, 0x77, 0xd5, 0x5d, 0x25, 0xf0, 0x8a, 0x29, 0x35, 0x33, 0xde, + 0x3c, 0xee, 0x71, 0x09, 0xd6, 0xb3, 0x5c, 0x88, 0x77, 0x27, 0x17, 0x3d, 0x02, 0x45, 0x82, 0xe1, + 0x79, 0x05, 0x42, 0x7e, 0xd4, 0x4b, 0x3e, 0xf8, 0x2a, 0x25, 0x19, 0xba, 0xea, 0xee, 0x22, 0x2b, + 0xa0, 0x65, 0x40, 0xdb, 0x6e, 0xea, 0x4b, 0xf1, 0x44, 0x48, 0xe8, 0x6f, 0xbb, 0xbe, 0x5f, 0x3f, + 0xce, 0xe8, 0x07, 0x71, 0x24, 0x79, 0xd2, 0x03, 0x0a, 0x6e, 0x0f, 0x02, 0x90, 0x71, 0x29, 0xec, + 0x4e, 0x08, 0xdb, 0xc2, 0xfa, 0x2e, 0x4a, 0x78, 0x75, 0x92, 0x5c, 0x20, 0x85, 0x05, 0xf2, 0xdb, + 0x27, 0xf8, 0x5f, 0x4a, 0x01, 0xf2, 0x7c, 0x8f, 0x7b, 0x5e, 0xff, 0x7e, 0xfa, 0x2e, 0x51, 0xec, + 0x8c, 0x52, 0xd1, 0x9b, 0x2c, 0x8f, 0x4e, 0x6c, 0xb2, 0x7c, 0x4b, 0xf5, 0x3e, 0xcf, 0x3e, 0xa7, + 0x87, 0x66, 0x05, 0x23, 0x6c, 0xf0, 0xbf, 0x4f, 0xc1, 0xf1, 0x01, 0xc5, 0x71, 0xfb, 0x75, 0x05, + 0x90, 0xe5, 0xab, 0xe4, 0xff, 0xa1, 0x28, 0xc5, 0xff, 0xe3, 0x5f, 0x42, 0xfd, 0x9b, 0xb4, 0x06, + 0x6c, 0xfc, 0xcd, 0xf3, 0x26, 0x3c, 0xa3, 0x98, 0x82, 0x69, 0x7f, 0xf3, 0xee, 0x00, 0xce, 0x43, + 0xc9, 0xdf, 0x3a, 0xef, 0xfa, 0xad, 0x07, 0x75, 0x9d, 0xf7, 0x3a, 0x40, 0x87, 0x96, 0xbc, 0xd5, + 0x27, 0xfe, 0xe9, 0x64, 0xdc, 0xe8, 0xdd, 0x8b, 0x6c, 0xa1, 0x55, 0xc8, 0x7a, 0xfc, 0xff, 0x53, + 0x90, 0x5d, 0x35, 0xcd, 0x0e, 0x32, 0x61, 0xd2, 0x30, 0x1d, 0x85, 0x28, 0x0b, 0x6e, 0x29, 0x3c, + 0x37, 0xc2, 0xb2, 0xa0, 0xf3, 0x87, 0x13, 0xca, 0xf7, 0xf6, 0xeb, 0x83, 0xac, 0xe4, 0x09, 0xc3, + 0x74, 0x9a, 0x14, 0xb2, 0xce, 0x32, 0x27, 0x1f, 0x86, 0xf1, 0x60, 0x63, 0x2c, 0x53, 0xf4, 0xec, + 0xa1, 0x1b, 0x0b, 0xb2, 0xb9, 0xbe, 0x5f, 0x9f, 0xf6, 0x16, 0x81, 0x0b, 0x96, 0xe4, 0xd2, 0xa6, + 0xaf, 0xf5, 0x46, 0x9e, 0x8c, 0xfe, 0xfb, 0xaf, 0xd6, 0x53, 0xcd, 0xf3, 0x43, 0x6f, 0x00, 0xdc, + 0x77, 0x60, 0x17, 0x76, 0xdd, 0xa3, 0xfe, 0xe0, 0x5d, 0x80, 0x5f, 0x9b, 0x85, 0x5a, 0xe8, 0x2e, + 0x00, 0x7d, 0x87, 0x3c, 0xe4, 0x26, 0xc0, 0xc1, 0xff, 0xc0, 0x7f, 0xc8, 0x45, 0x81, 0x03, 0x2f, + 0x1b, 0x48, 0x1f, 0x82, 0xa3, 0xf4, 0x2a, 0xa7, 0x67, 0xb6, 0xc4, 0x57, 0x62, 0x8e, 0xba, 0x09, + 0xb4, 0x14, 0xff, 0x7f, 0xe1, 0x2c, 0x1b, 0x76, 0x2f, 0x64, 0x2c, 0xfc, 0xa2, 0xfb, 0xd2, 0x86, + 0x77, 0x91, 0x75, 0x9b, 0xfd, 0x07, 0x7f, 0x4a, 0x2f, 0x13, 0x2c, 0xe9, 0x63, 0x29, 0x38, 0x36, + 0xc0, 0x9f, 0xeb, 0xf9, 0x93, 0x81, 0x27, 0xa2, 0xa9, 0x64, 0x59, 0x79, 0xff, 0xb7, 0x1e, 0xee, + 0x23, 0x3d, 0xb1, 0xdd, 0x20, 0x29, 0xa2, 0x27, 0xac, 0x25, 0xd2, 0x15, 0x5b, 0x7a, 0x11, 0x8e, + 0x04, 0x7b, 0x22, 0x06, 0xfa, 0x1c, 0x94, 0x83, 0x3b, 0x02, 0x1e, 0x2e, 0xbc, 0xe7, 0xf0, 0x5e, + 0x70, 0x3c, 0xb0, 0x2b, 0x90, 0x9e, 0x0d, 0x0b, 0xd7, 0x1d, 0xfb, 0xfb, 0x06, 0x2f, 0xd8, 0xc7, + 0x0e, 0xdd, 0xf7, 0xfe, 0xea, 0x37, 0x53, 0x70, 0x32, 0xc8, 0xd9, 0x33, 0xb4, 0xf6, 0x5b, 0x3e, + 0xae, 0xc3, 0xa9, 0xc0, 0x1f, 0xa5, 0xe0, 0xf6, 0x03, 0xfa, 0xca, 0x05, 0x62, 0xc1, 0xb4, 0xcf, + 0x66, 0x5b, 0x1c, 0x2c, 0xd4, 0x42, 0x1a, 0xee, 0x57, 0x5c, 0x93, 0x75, 0x0b, 0xbf, 0x60, 0x34, + 0x35, 0x58, 0x67, 0xcb, 0x53, 0x83, 0x76, 0xf6, 0xb0, 0xfa, 0xf3, 0x7b, 0x29, 0x38, 0x1d, 0x1c, + 0x47, 0xc4, 0xce, 0xec, 0x9d, 0x26, 0xfc, 0xaf, 0xa6, 0xe0, 0x9e, 0x24, 0x9d, 0xe6, 0xb3, 0xf0, + 0x3c, 0x4c, 0x79, 0x91, 0x51, 0x78, 0x12, 0x4e, 0x25, 0xd8, 0xcf, 0x72, 0x55, 0x45, 0x2e, 0x97, + 0x1b, 0x95, 0xf6, 0x9f, 0xa4, 0xf8, 0xda, 0xf1, 0xcf, 0xa6, 0x2b, 0xda, 0x60, 0xf8, 0x7e, 0x48, + 0xd1, 0xfa, 0x42, 0xf8, 0xf1, 0x40, 0x08, 0x1f, 0x31, 0x69, 0xe9, 0x9b, 0x64, 0x09, 0x7e, 0x4e, + 0xd8, 0xc1, 0x88, 0x40, 0x6a, 0x07, 0xa6, 0x22, 0x54, 0xdf, 0x7d, 0x1d, 0x1a, 0xaf, 0xf9, 0x47, + 0x7f, 0xb0, 0x5f, 0x8f, 0x88, 0xd0, 0x64, 0x34, 0xa8, 0xf4, 0xd2, 0x7f, 0x49, 0x41, 0x9d, 0x76, + 0x24, 0x62, 0xf2, 0xfe, 0x3e, 0x0b, 0x18, 0x73, 0x83, 0x18, 0x39, 0x2c, 0x2e, 0xe8, 0x39, 0xc8, + 0x31, 0xbd, 0xe4, 0xb2, 0x3d, 0x84, 0x42, 0x73, 0x42, 0xcf, 0xf0, 0x2e, 0x88, 0x71, 0x45, 0xaf, + 0xfd, 0xb7, 0x48, 0x7e, 0x87, 0x5a, 0xfb, 0x5f, 0x11, 0x86, 0x37, 0xba, 0xaf, 0x5c, 0x28, 0x1f, + 0xfc, 0x91, 0x0d, 0x2f, 0xff, 0xce, 0xcf, 0x4d, 0xb4, 0xb0, 0x6e, 0x87, 0x63, 0x2c, 0xec, 0x3b, + 0x41, 0xca, 0xae, 0x85, 0x8d, 0xe9, 0xf4, 0x3b, 0xce, 0xc2, 0x7e, 0x37, 0x0d, 0xc7, 0x69, 0xc7, + 0xfd, 0xbb, 0x80, 0xb7, 0x41, 0xba, 0x0a, 0x20, 0xdb, 0xd2, 0x94, 0x9b, 0x65, 0x07, 0x2a, 0xb6, + 0xa5, 0x5d, 0x09, 0x38, 0x48, 0x05, 0x50, 0xcb, 0x76, 0xc2, 0x0d, 0x64, 0x6e, 0xb8, 0x81, 0x96, + 0xed, 0x5c, 0x89, 0xf2, 0xc0, 0xd9, 0x44, 0xfa, 0xf1, 0x5b, 0x29, 0xa8, 0x45, 0x89, 0x99, 0xeb, + 0x83, 0x0a, 0x47, 0x03, 0xbb, 0xd5, 0xb0, 0x4a, 0xdc, 0x71, 0xd0, 0x9e, 0x2d, 0xb4, 0x04, 0x8f, + 0x58, 0xf8, 0x47, 0x5f, 0x84, 0x5f, 0x12, 0x0e, 0xc2, 0xd5, 0xe7, 0xc1, 0xad, 0xc1, 0x3b, 0x64, + 0xe9, 0xfd, 0xf2, 0x80, 0x31, 0xfe, 0xf1, 0xef, 0x32, 0xfe, 0x34, 0x05, 0x27, 0x86, 0xf4, 0xe9, + 0xef, 0xb3, 0x7b, 0xfd, 0x99, 0xa1, 0x4a, 0x71, 0xb3, 0xb6, 0x34, 0x0f, 0xf2, 0x65, 0x12, 0xbc, + 0xf3, 0xe5, 0xdb, 0x8c, 0x46, 0x7e, 0x9f, 0xed, 0x19, 0xb8, 0x25, 0x92, 0x8a, 0xf7, 0xe9, 0x2c, + 0x64, 0xb7, 0x75, 0xdb, 0x71, 0x3f, 0x5a, 0x10, 0xea, 0x4e, 0x88, 0x8a, 0xe2, 0x4a, 0x08, 0x2a, + 0x94, 0xe5, 0xaa, 0x69, 0x76, 0x78, 0xf3, 0xd2, 0x3c, 0x4c, 0xfa, 0x60, 0x9c, 0xf9, 0x2c, 0x64, + 0x7b, 0xa6, 0xd9, 0xe1, 0xcc, 0xa7, 0xc3, 0xcc, 0x09, 0x2e, 0x1f, 0x26, 0xc5, 0x93, 0xa6, 0x01, + 0x31, 0x26, 0xec, 0x73, 0x1a, 0x9c, 0xf5, 0x1e, 0x4c, 0x05, 0xa0, 0xee, 0x7b, 0x9f, 0x5c, 0xe0, + 0x43, 0x4c, 0x03, 0xa7, 0xdb, 0x0c, 0xdf, 0x7d, 0xd9, 0xcd, 0x12, 0xa3, 0x87, 0xd2, 0xd5, 0xb3, + 0x7f, 0x5c, 0x12, 0x4f, 0x42, 0x15, 0x00, 0x5f, 0xde, 0xf2, 0xae, 0x70, 0x5b, 0xd1, 0x19, 0x82, + 0xda, 0xdd, 0xb1, 0x78, 0x3c, 0xe8, 0x1c, 0x41, 0x3f, 0xe5, 0xbf, 0x73, 0x74, 0xe7, 0xc1, 0x74, + 0x82, 0xfd, 0x5d, 0x71, 0x68, 0x2e, 0xf7, 0x7f, 0x00, 0xd3, 0x51, 0x9b, 0x4b, 0xf4, 0xc0, 0xc1, + 0x1c, 0x06, 0x83, 0x8a, 0xda, 0x7b, 0x0e, 0x41, 0xe1, 0x36, 0xff, 0x4a, 0x0a, 0x6e, 0x3b, 0x70, + 0x7f, 0x85, 0x1e, 0x3b, 0x98, 0xed, 0x01, 0x61, 0x4e, 0xad, 0x71, 0x23, 0xa4, 0x6e, 0xd7, 0x94, + 0xc0, 0xe1, 0x77, 0xb4, 0x44, 0x07, 0x36, 0x00, 0x43, 0x26, 0x76, 0x30, 0xf4, 0x93, 0x46, 0xd0, + 0x4b, 0xd1, 0x87, 0xc0, 0x67, 0x22, 0x39, 0x0c, 0xdf, 0x73, 0xd4, 0x1e, 0x48, 0x4e, 0xe0, 0x9f, + 0xf6, 0xa8, 0xd0, 0x76, 0xc8, 0xb4, 0x1f, 0x10, 0xb1, 0x0f, 0x99, 0xf6, 0x83, 0xe2, 0x66, 0x3e, + 0xed, 0x07, 0x06, 0x7d, 0x43, 0xa6, 0x3d, 0x49, 0x74, 0x3b, 0x64, 0xda, 0x13, 0xc5, 0x98, 0xd2, + 0x08, 0xda, 0x86, 0xf1, 0x40, 0xb8, 0x81, 0x4e, 0x47, 0xb2, 0x8b, 0x8a, 0xfc, 0x6a, 0xf7, 0x24, + 0x41, 0xf5, 0xcf, 0x7f, 0x84, 0xf7, 0x1d, 0x32, 0xff, 0xc3, 0x43, 0x8a, 0xda, 0x03, 0xc9, 0x09, + 0xdc, 0xb6, 0xaf, 0xb9, 0xe7, 0x12, 0x3e, 0x04, 0x34, 0x9b, 0x90, 0x93, 0x68, 0xf9, 0x4c, 0x62, + 0x7c, 0xb7, 0xe1, 0x9d, 0x81, 0xab, 0xc9, 0xd1, 0x42, 0x8b, 0xf4, 0x65, 0xb5, 0x7b, 0x13, 0xe1, + 0xba, 0x8d, 0xad, 0xf0, 0xa4, 0xfb, 0xc9, 0x48, 0x32, 0x9f, 0x97, 0xaa, 0xdd, 0x7e, 0x00, 0x86, + 0xcb, 0x6e, 0xcd, 0x3d, 0x45, 0x93, 0xa2, 0xd1, 0xfd, 0xde, 0xa9, 0x76, 0xea, 0x40, 0x1c, 0xc1, + 0xf4, 0x66, 0xe7, 0xc5, 0xff, 0x2e, 0x00, 0x00, 0xff, 0xff, 0x11, 0x64, 0x65, 0x92, 0xad, 0x96, + 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r)