New logging system (#319)

* First pass at adding new logging system

* NewLogger

* NewLogger

* WIP

* silly bug fix

* :D removed files

* removed old logging interface

* added tests

* added tests

* Started to add new lines to all f calls

* Added subsystem log types

* Logger improvements

* Further performance improvements

* changes to logger and sublogger creation

* Renamed Logging types

* removed old print statement

* changes based on feedback

* moved sublogger types to own file

* :)

* added console as output type

* added get level command

* added get/set log level via grpc command

* added check for output being empty for migration support

* first pass at log rotation

* added log rotation

* :D derp fixed

* added tests

* changes based on feedback

* changed log type

* comments

* renamed file -> fileSettings

* typo fix

* changes based on feedback

* gofmt ran on additional files

* gofmt ran on additional files
This commit is contained in:
Andrew
2019-07-07 05:20:31 +10:00
committed by Adrian Gallagher
parent 7112a89491
commit 3de1d94e5f
137 changed files with 2920 additions and 1650 deletions

0
gctrpc/gen_pb_linux.sh Normal file → Executable file
View File

View File

@@ -4393,6 +4393,155 @@ func (m *WithdrawResponse) GetResult() string {
return ""
}
type GetLoggerDetailsRequest struct {
Logger string `protobuf:"bytes,1,opt,name=logger,proto3" json:"logger,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetLoggerDetailsRequest) Reset() { *m = GetLoggerDetailsRequest{} }
func (m *GetLoggerDetailsRequest) String() string { return proto.CompactTextString(m) }
func (*GetLoggerDetailsRequest) ProtoMessage() {}
func (*GetLoggerDetailsRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_77a6da22d6a3feb1, []int{85}
}
func (m *GetLoggerDetailsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetLoggerDetailsRequest.Unmarshal(m, b)
}
func (m *GetLoggerDetailsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetLoggerDetailsRequest.Marshal(b, m, deterministic)
}
func (m *GetLoggerDetailsRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetLoggerDetailsRequest.Merge(m, src)
}
func (m *GetLoggerDetailsRequest) XXX_Size() int {
return xxx_messageInfo_GetLoggerDetailsRequest.Size(m)
}
func (m *GetLoggerDetailsRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetLoggerDetailsRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetLoggerDetailsRequest proto.InternalMessageInfo
func (m *GetLoggerDetailsRequest) GetLogger() string {
if m != nil {
return m.Logger
}
return ""
}
type GetLoggerDetailsResponse struct {
Info bool `protobuf:"varint,1,opt,name=info,proto3" json:"info,omitempty"`
Debug bool `protobuf:"varint,2,opt,name=debug,proto3" json:"debug,omitempty"`
Warn bool `protobuf:"varint,3,opt,name=warn,proto3" json:"warn,omitempty"`
Error bool `protobuf:"varint,4,opt,name=error,proto3" json:"error,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetLoggerDetailsResponse) Reset() { *m = GetLoggerDetailsResponse{} }
func (m *GetLoggerDetailsResponse) String() string { return proto.CompactTextString(m) }
func (*GetLoggerDetailsResponse) ProtoMessage() {}
func (*GetLoggerDetailsResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_77a6da22d6a3feb1, []int{86}
}
func (m *GetLoggerDetailsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetLoggerDetailsResponse.Unmarshal(m, b)
}
func (m *GetLoggerDetailsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetLoggerDetailsResponse.Marshal(b, m, deterministic)
}
func (m *GetLoggerDetailsResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetLoggerDetailsResponse.Merge(m, src)
}
func (m *GetLoggerDetailsResponse) XXX_Size() int {
return xxx_messageInfo_GetLoggerDetailsResponse.Size(m)
}
func (m *GetLoggerDetailsResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetLoggerDetailsResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetLoggerDetailsResponse proto.InternalMessageInfo
func (m *GetLoggerDetailsResponse) GetInfo() bool {
if m != nil {
return m.Info
}
return false
}
func (m *GetLoggerDetailsResponse) GetDebug() bool {
if m != nil {
return m.Debug
}
return false
}
func (m *GetLoggerDetailsResponse) GetWarn() bool {
if m != nil {
return m.Warn
}
return false
}
func (m *GetLoggerDetailsResponse) GetError() bool {
if m != nil {
return m.Error
}
return false
}
type SetLoggerDetailsRequest struct {
Logger string `protobuf:"bytes,1,opt,name=logger,proto3" json:"logger,omitempty"`
Level string `protobuf:"bytes,2,opt,name=level,proto3" json:"level,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetLoggerDetailsRequest) Reset() { *m = SetLoggerDetailsRequest{} }
func (m *SetLoggerDetailsRequest) String() string { return proto.CompactTextString(m) }
func (*SetLoggerDetailsRequest) ProtoMessage() {}
func (*SetLoggerDetailsRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_77a6da22d6a3feb1, []int{87}
}
func (m *SetLoggerDetailsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetLoggerDetailsRequest.Unmarshal(m, b)
}
func (m *SetLoggerDetailsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetLoggerDetailsRequest.Marshal(b, m, deterministic)
}
func (m *SetLoggerDetailsRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetLoggerDetailsRequest.Merge(m, src)
}
func (m *SetLoggerDetailsRequest) XXX_Size() int {
return xxx_messageInfo_SetLoggerDetailsRequest.Size(m)
}
func (m *SetLoggerDetailsRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SetLoggerDetailsRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SetLoggerDetailsRequest proto.InternalMessageInfo
func (m *SetLoggerDetailsRequest) GetLogger() string {
if m != nil {
return m.Logger
}
return ""
}
func (m *SetLoggerDetailsRequest) GetLevel() string {
if m != nil {
return m.Level
}
return ""
}
func init() {
proto.RegisterType((*GetInfoRequest)(nil), "gctrpc.GetInfoRequest")
proto.RegisterType((*GetInfoResponse)(nil), "gctrpc.GetInfoResponse")
@@ -4491,278 +4640,289 @@ func init() {
proto.RegisterType((*GetCryptocurrencyDepositAddressResponse)(nil), "gctrpc.GetCryptocurrencyDepositAddressResponse")
proto.RegisterType((*WithdrawCurrencyRequest)(nil), "gctrpc.WithdrawCurrencyRequest")
proto.RegisterType((*WithdrawResponse)(nil), "gctrpc.WithdrawResponse")
proto.RegisterType((*GetLoggerDetailsRequest)(nil), "gctrpc.GetLoggerDetailsRequest")
proto.RegisterType((*GetLoggerDetailsResponse)(nil), "gctrpc.GetLoggerDetailsResponse")
proto.RegisterType((*SetLoggerDetailsRequest)(nil), "gctrpc.SetLoggerDetailsRequest")
}
func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) }
var fileDescriptor_77a6da22d6a3feb1 = []byte{
// 4250 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3b, 0x4d, 0x6f, 0x25, 0x49,
0x52, 0xaa, 0x67, 0xb7, 0x3f, 0xe2, 0x3d, 0xfb, 0xd9, 0xe9, 0xaf, 0xd7, 0xaf, 0xed, 0xfe, 0xa8,
0xd9, 0xe9, 0xe9, 0x9e, 0x0f, 0xf7, 0x4c, 0x4f, 0x8b, 0x1d, 0x76, 0x96, 0x05, 0x8f, 0xa7, 0xc7,
0xdb, 0xec, 0xec, 0xb4, 0xa9, 0xee, 0xed, 0x96, 0x66, 0xd1, 0x16, 0xe5, 0xaa, 0xb4, 0x5d, 0x74,
0xbd, 0xaa, 0x9a, 0xaa, 0x7c, 0x76, 0x7b, 0x84, 0x84, 0xb4, 0x12, 0x88, 0x13, 0x1c, 0x56, 0x48,
0x1c, 0x38, 0x71, 0x44, 0xe2, 0x82, 0x38, 0x81, 0x34, 0xe2, 0x8a, 0x38, 0x72, 0xe1, 0x07, 0x20,
0x6e, 0x80, 0x84, 0xc4, 0x85, 0x13, 0xca, 0xc8, 0x8f, 0xca, 0x7c, 0x55, 0xef, 0xf9, 0x35, 0xdb,
0x3b, 0x97, 0xee, 0x57, 0x91, 0x91, 0x11, 0x91, 0x11, 0x91, 0x91, 0x91, 0x91, 0x61, 0x58, 0x2c,
0xf2, 0x70, 0x37, 0x2f, 0x32, 0x96, 0x91, 0xb9, 0x93, 0x90, 0x15, 0x79, 0xd8, 0xdf, 0x3e, 0xc9,
0xb2, 0x93, 0x84, 0xde, 0x0b, 0xf2, 0xf8, 0x5e, 0x90, 0xa6, 0x19, 0x0b, 0x58, 0x9c, 0xa5, 0xa5,
0xc0, 0x72, 0x57, 0x60, 0xf9, 0x80, 0xb2, 0x47, 0xe9, 0x71, 0xe6, 0xd1, 0xaf, 0x86, 0xb4, 0x64,
0xee, 0xdf, 0xcd, 0x42, 0x57, 0x83, 0xca, 0x3c, 0x4b, 0x4b, 0x4a, 0x36, 0x61, 0x6e, 0x98, 0xb3,
0x78, 0x40, 0x7b, 0xce, 0x4d, 0xe7, 0xce, 0xa2, 0x27, 0xbf, 0xc8, 0x3d, 0x58, 0x0b, 0xce, 0x82,
0x38, 0x09, 0x8e, 0x12, 0xea, 0xd3, 0x97, 0xe1, 0x69, 0x90, 0x9e, 0xd0, 0xb2, 0xd7, 0xba, 0xe9,
0xdc, 0x99, 0xf1, 0x88, 0x1e, 0x7a, 0xa8, 0x46, 0xc8, 0x3b, 0xb0, 0x4a, 0x53, 0x0e, 0x8a, 0x0c,
0xf4, 0x19, 0x44, 0x5f, 0x91, 0x03, 0x15, 0xf2, 0x03, 0xd8, 0x8c, 0xe8, 0x71, 0x30, 0x4c, 0x98,
0x7f, 0x9c, 0x15, 0xf4, 0xa5, 0x9f, 0x17, 0xd9, 0x59, 0x1c, 0xd1, 0xa2, 0x37, 0x8b, 0x52, 0xac,
0xcb, 0xd1, 0xcf, 0xf8, 0xe0, 0xa1, 0x1c, 0x23, 0xf7, 0x61, 0x43, 0xcf, 0x8a, 0x03, 0xe6, 0x87,
0xc3, 0xa2, 0xa0, 0x69, 0x78, 0xd1, 0xbb, 0x82, 0x93, 0xd6, 0xd4, 0xa4, 0x38, 0x60, 0xfb, 0x72,
0x88, 0x3c, 0x87, 0x95, 0x72, 0x78, 0x54, 0x5e, 0x94, 0x8c, 0x0e, 0xfc, 0x92, 0x05, 0x6c, 0x58,
0xf6, 0xe6, 0x6e, 0xce, 0xdc, 0x69, 0xdf, 0x7f, 0x77, 0x57, 0xa8, 0x71, 0x77, 0x44, 0x25, 0xbb,
0x4f, 0x14, 0xfe, 0x13, 0x44, 0x7f, 0x98, 0xb2, 0xe2, 0xc2, 0xeb, 0x96, 0x36, 0x94, 0x7c, 0x01,
0x4b, 0x45, 0x1e, 0xfa, 0x34, 0x8d, 0xf2, 0x2c, 0x4e, 0x59, 0xd9, 0x9b, 0x47, 0xaa, 0x77, 0xc7,
0x51, 0xf5, 0xf2, 0xf0, 0xa1, 0xc2, 0x15, 0x24, 0x3b, 0x85, 0x01, 0xea, 0x7f, 0x02, 0xeb, 0x4d,
0x8c, 0xc9, 0x0a, 0xcc, 0xbc, 0xa0, 0x17, 0xd2, 0x3a, 0xfc, 0x27, 0x59, 0x87, 0x2b, 0x67, 0x41,
0x32, 0xa4, 0x68, 0x8c, 0x05, 0x4f, 0x7c, 0x7c, 0xaf, 0xf5, 0x91, 0xd3, 0x7f, 0x0a, 0xab, 0x35,
0x36, 0x0d, 0x04, 0xee, 0x9a, 0x04, 0xda, 0xf7, 0xd7, 0x94, 0xc8, 0xde, 0xe1, 0xbe, 0x9a, 0x6b,
0x50, 0x75, 0x6f, 0xc1, 0x8d, 0x03, 0xca, 0xf6, 0xb3, 0xc1, 0x60, 0x98, 0xc6, 0x21, 0xfa, 0x98,
0x47, 0x93, 0xe0, 0x82, 0x16, 0xa5, 0xf2, 0xac, 0x2f, 0x60, 0xbd, 0x69, 0x9c, 0xf4, 0x60, 0x5e,
0xda, 0x1e, 0xf9, 0x2f, 0x78, 0xea, 0x93, 0x6c, 0xc3, 0x62, 0x98, 0xa5, 0x29, 0x0d, 0x19, 0x8d,
0xe4, 0x42, 0x2a, 0x80, 0xfb, 0xc7, 0x2d, 0xb8, 0x39, 0x9e, 0xa7, 0x74, 0xdd, 0xaf, 0x61, 0x33,
0x34, 0x11, 0xfc, 0x42, 0x62, 0xf4, 0x1c, 0x34, 0xc5, 0xbe, 0x61, 0x8a, 0x89, 0x94, 0x76, 0x1b,
0x47, 0x85, 0x91, 0x36, 0xc2, 0xa6, 0xb1, 0xfe, 0x31, 0xf4, 0xc7, 0x4f, 0x6a, 0x50, 0xf9, 0x7d,
0x5b, 0xe5, 0xdb, 0x4a, 0xb4, 0x26, 0x22, 0xa6, 0xee, 0xbf, 0x0b, 0x5b, 0x07, 0x34, 0xa5, 0x45,
0x1c, 0x6a, 0xe7, 0x90, 0x3a, 0xe7, 0x1a, 0xd4, 0x3e, 0x29, 0x59, 0x55, 0x00, 0xb7, 0x0f, 0xbd,
0xfa, 0x44, 0xb1, 0x5c, 0x77, 0x13, 0xd6, 0x0f, 0x28, 0xd3, 0x70, 0x6d, 0xc5, 0x6f, 0x1c, 0xd8,
0xc0, 0x81, 0xf2, 0xa8, 0xbc, 0x10, 0x03, 0x52, 0xd5, 0xbf, 0x07, 0xab, 0x9a, 0x74, 0xa9, 0xb6,
0x91, 0xd0, 0xf2, 0x87, 0x86, 0x96, 0xeb, 0x33, 0xab, 0xcd, 0x54, 0x9a, 0xbb, 0xa9, 0xda, 0x93,
0x12, 0xdc, 0xdf, 0x87, 0x8d, 0x46, 0xd4, 0x57, 0xf1, 0x7f, 0xb7, 0x07, 0x9b, 0x07, 0x94, 0x19,
0x6e, 0x6c, 0x38, 0x68, 0xdb, 0x00, 0x73, 0xbf, 0x2c, 0x59, 0x50, 0xb0, 0xca, 0x2f, 0xe5, 0x27,
0x79, 0x13, 0x96, 0x93, 0xb8, 0x64, 0x34, 0xf5, 0x83, 0x28, 0x2a, 0x68, 0x29, 0x42, 0xde, 0xa2,
0xb7, 0x24, 0xa0, 0x7b, 0x02, 0xe8, 0xfe, 0xbd, 0xc3, 0x0d, 0x33, 0xc2, 0x4a, 0x2a, 0xeb, 0x73,
0x58, 0xac, 0xa2, 0x82, 0x50, 0xd2, 0xae, 0xa1, 0xa4, 0xa6, 0x39, 0xbb, 0x23, 0xa1, 0xa1, 0x22,
0xd0, 0xff, 0x1d, 0x58, 0x7e, 0xdd, 0x1b, 0xfa, 0x23, 0xe8, 0x4b, 0xdf, 0x50, 0x11, 0xf9, 0x8b,
0x60, 0x40, 0x95, 0x5f, 0xf5, 0x61, 0x41, 0x05, 0x70, 0xc9, 0x43, 0x7f, 0xbb, 0x3b, 0x70, 0xad,
0x71, 0xa6, 0x74, 0xac, 0x7b, 0xb0, 0x76, 0x40, 0x99, 0x0e, 0xf3, 0x8a, 0xe2, 0xd8, 0x28, 0xe0,
0x3e, 0x40, 0x4f, 0x34, 0x26, 0x48, 0x15, 0x6e, 0xc3, 0x62, 0x75, 0x88, 0x48, 0xdf, 0xd6, 0x00,
0xf7, 0x3e, 0xba, 0xa9, 0x9a, 0xf5, 0xf8, 0xe9, 0xa1, 0x47, 0xc5, 0xb4, 0xab, 0xb0, 0x90, 0xb1,
0xdc, 0x0f, 0xb3, 0x48, 0x89, 0x3e, 0x9f, 0xb1, 0x7c, 0x3f, 0x8b, 0xa8, 0x74, 0x0d, 0x63, 0x8e,
0x76, 0x8d, 0xbf, 0x12, 0xa6, 0xb4, 0x87, 0xa4, 0x1c, 0xbf, 0x0d, 0x8b, 0x8a, 0xa0, 0x32, 0xe5,
0x7b, 0x86, 0x29, 0x9b, 0xe6, 0xec, 0x3e, 0x16, 0x1c, 0xa5, 0x25, 0x17, 0xa4, 0x00, 0x65, 0xff,
0x63, 0x58, 0xb2, 0x86, 0x2e, 0xf3, 0xec, 0x45, 0xd3, 0x64, 0x0f, 0x60, 0xf3, 0xd3, 0xb8, 0x34,
0x4f, 0xdc, 0x69, 0xcc, 0xf5, 0xcd, 0x8c, 0xb5, 0x34, 0xeb, 0xe0, 0x27, 0x30, 0x9b, 0x06, 0xfa,
0xd8, 0xc7, 0xdf, 0xa6, 0xa1, 0x5a, 0x76, 0xb8, 0xee, 0xc1, 0xfc, 0x19, 0x2d, 0x8e, 0xb2, 0x92,
0xe2, 0x99, 0xbe, 0xe0, 0xa9, 0x4f, 0xf2, 0x06, 0x2c, 0x0d, 0xcb, 0x38, 0x3d, 0xf1, 0xcb, 0x20,
0x8d, 0x8e, 0xb2, 0x97, 0x78, 0x82, 0x2f, 0x78, 0x1d, 0x04, 0x3e, 0x11, 0x30, 0x72, 0x0b, 0x3a,
0xa7, 0x8c, 0xe5, 0x3e, 0x4f, 0x2d, 0xb2, 0x21, 0x93, 0x07, 0x76, 0x9b, 0xc3, 0x9e, 0x0a, 0x10,
0xdf, 0x78, 0x88, 0x32, 0x2c, 0x69, 0x11, 0x9c, 0xd0, 0x94, 0xf5, 0xe6, 0xc4, 0xc6, 0xe3, 0xd0,
0x9f, 0x28, 0x20, 0xd9, 0x01, 0x40, 0xb4, 0xbc, 0xc8, 0x5e, 0x5e, 0xf4, 0xe6, 0x85, 0x6b, 0x70,
0xc8, 0x21, 0x07, 0x90, 0xb7, 0xa0, 0x7b, 0x14, 0x94, 0x54, 0xa5, 0x06, 0x31, 0x2d, 0x7b, 0x0b,
0x88, 0xb3, 0xcc, 0xc1, 0xfb, 0x1a, 0x4a, 0xee, 0xf2, 0xbc, 0x20, 0xcf, 0x33, 0xbe, 0xe9, 0xfd,
0xa0, 0x2c, 0x29, 0x2b, 0x7b, 0x8b, 0x88, 0xd9, 0xd5, 0xf0, 0x3d, 0x04, 0xf3, 0x15, 0xaa, 0xcc,
0x26, 0x0f, 0xe2, 0xa2, 0xec, 0x01, 0xe2, 0x75, 0x24, 0xf0, 0x90, 0xc3, 0x38, 0xe3, 0x2a, 0x5f,
0x12, 0x68, 0x6d, 0xc1, 0x58, 0x83, 0x05, 0xe2, 0x3b, 0xb0, 0x1a, 0x0c, 0xd9, 0x29, 0x4d, 0x19,
0x8f, 0xfa, 0x9c, 0x79, 0x1e, 0xf7, 0x3a, 0xa8, 0xb3, 0x15, 0x6b, 0x60, 0x2f, 0x8f, 0xdd, 0x73,
0x58, 0x39, 0xa0, 0xec, 0x69, 0x1c, 0xbe, 0xa0, 0xc5, 0x14, 0x06, 0x27, 0x77, 0x60, 0x96, 0xf3,
0x96, 0x71, 0x60, 0x5d, 0x9f, 0x32, 0x32, 0x1b, 0xe2, 0x12, 0x78, 0x88, 0xc1, 0xf5, 0x88, 0xab,
0xf6, 0xd9, 0x45, 0x2e, 0x6c, 0xba, 0xe8, 0x2d, 0x22, 0xe4, 0xe9, 0x45, 0x4e, 0xdd, 0x67, 0xd0,
0x31, 0x27, 0xf1, 0x0d, 0x19, 0xd1, 0x24, 0x1e, 0xc4, 0x8c, 0x16, 0x6a, 0x43, 0x6a, 0x00, 0xf7,
0x25, 0xae, 0x5e, 0xe9, 0xb6, 0xf8, 0x9b, 0xfb, 0xf2, 0x57, 0xc3, 0x8c, 0x29, 0xda, 0xe2, 0xc3,
0xfd, 0xf3, 0x16, 0x2c, 0xab, 0xe5, 0x48, 0x47, 0x54, 0x32, 0x3b, 0x97, 0xca, 0x7c, 0x0b, 0x3a,
0x49, 0x50, 0x32, 0x7f, 0x98, 0x47, 0x81, 0x4a, 0x1b, 0x66, 0xbc, 0x36, 0x87, 0xfd, 0x44, 0x80,
0xb8, 0xad, 0x54, 0x56, 0x88, 0x56, 0x90, 0xdc, 0x3b, 0xa1, 0xb9, 0x18, 0x02, 0xb3, 0x7c, 0x0e,
0x7a, 0xaa, 0xe3, 0xe1, 0x6f, 0x0e, 0x3b, 0x8d, 0x4f, 0x4e, 0xd1, 0x33, 0x1d, 0x0f, 0x7f, 0xf3,
0x0d, 0x9a, 0x64, 0xe7, 0xe8, 0x87, 0x8e, 0xc7, 0x7f, 0x72, 0xc8, 0x51, 0x1c, 0xa1, 0xdb, 0x39,
0x1e, 0xff, 0xc9, 0x21, 0x41, 0xf9, 0x02, 0x9d, 0xcc, 0xf1, 0xf8, 0x4f, 0x9e, 0x51, 0x9f, 0x65,
0xc9, 0x70, 0x40, 0xd1, 0x9f, 0x1c, 0x4f, 0x7e, 0x91, 0x6b, 0xb0, 0x98, 0x17, 0x71, 0x48, 0xfd,
0x80, 0x9d, 0xa2, 0x0b, 0x39, 0xde, 0x02, 0x02, 0xf6, 0xd8, 0xa9, 0xbb, 0x06, 0xab, 0xda, 0xd0,
0x3a, 0x32, 0x3d, 0x87, 0x79, 0x09, 0x99, 0x68, 0xf4, 0xf7, 0x61, 0x9e, 0x09, 0xb4, 0x5e, 0x0b,
0x43, 0xd4, 0xa6, 0xd2, 0xa1, 0xad, 0x69, 0x4f, 0xa1, 0xb9, 0xbf, 0x09, 0xc4, 0xe4, 0x26, 0x0d,
0x71, 0xb7, 0xa2, 0x23, 0x42, 0x5d, 0xd7, 0xa6, 0x53, 0x56, 0x04, 0xbe, 0xc6, 0x40, 0xff, 0xb8,
0x88, 0x78, 0x10, 0xc8, 0x5e, 0x7c, 0xab, 0xae, 0xf9, 0x63, 0x58, 0xd2, 0x8c, 0x1f, 0x31, 0x3a,
0xe0, 0x0a, 0x0f, 0x06, 0xd9, 0x30, 0x65, 0xc8, 0xd3, 0xf1, 0xe4, 0x17, 0xf7, 0x40, 0xd4, 0x2f,
0xb2, 0x74, 0x3c, 0xf1, 0x41, 0x96, 0xa1, 0x15, 0x47, 0xf2, 0x62, 0xd2, 0x8a, 0x23, 0xf7, 0x7f,
0x1d, 0x58, 0x35, 0x16, 0xf2, 0xca, 0x4e, 0x59, 0xf3, 0xb8, 0x56, 0x83, 0xc7, 0xdd, 0x85, 0xd9,
0xa3, 0x38, 0xe2, 0xf7, 0x21, 0xae, 0xd7, 0x0d, 0x45, 0xce, 0x5a, 0x87, 0x87, 0x28, 0x1c, 0x35,
0x28, 0x5f, 0x94, 0xbd, 0xd9, 0x89, 0xa8, 0x1c, 0xa5, 0xb6, 0x1f, 0xae, 0xd4, 0xf7, 0x83, 0xad,
0xcb, 0xb9, 0x51, 0x5d, 0x8a, 0x4c, 0x50, 0xd3, 0xd6, 0x9e, 0x17, 0x02, 0x54, 0xc0, 0x89, 0x66,
0xfd, 0x75, 0x80, 0x4c, 0x63, 0x4a, 0xff, 0xbb, 0x5a, 0x13, 0x5a, 0xbb, 0xa0, 0x81, 0xec, 0xfe,
0x08, 0x8f, 0x71, 0x93, 0xb9, 0x54, 0xfe, 0x7d, 0x8b, 0xa6, 0xf0, 0x45, 0x52, 0xa3, 0x59, 0x5a,
0xc4, 0x3e, 0x44, 0x62, 0x7b, 0x61, 0xc8, 0x4d, 0x6f, 0x5c, 0x7a, 0x27, 0x9e, 0x8f, 0xcf, 0x60,
0x5e, 0xce, 0x90, 0x6e, 0x21, 0x10, 0x5a, 0x71, 0x44, 0x3e, 0x06, 0x30, 0xce, 0x10, 0xb1, 0xae,
0x6b, 0x4a, 0x06, 0x39, 0x49, 0x79, 0x03, 0xb2, 0x33, 0xd0, 0xdd, 0x63, 0x58, 0x6b, 0x40, 0xe1,
0xa2, 0xe8, 0x2b, 0xab, 0x14, 0x45, 0x7d, 0x93, 0x1b, 0xd0, 0x66, 0x19, 0x0b, 0x12, 0xbf, 0x4a,
0x00, 0x1c, 0x0f, 0x10, 0xf4, 0x8c, 0x43, 0x30, 0x40, 0x65, 0x89, 0xf0, 0x5c, 0x1e, 0xa0, 0xb2,
0x24, 0x72, 0x03, 0x4c, 0x6a, 0xac, 0x45, 0x4b, 0x15, 0x4e, 0x32, 0xd9, 0x3b, 0xb0, 0x10, 0x88,
0x29, 0x6a, 0x61, 0xdd, 0x91, 0x85, 0x79, 0x1a, 0xc1, 0x25, 0x78, 0x02, 0xed, 0x67, 0xe9, 0x71,
0x7c, 0xa2, 0xbc, 0xe3, 0x2d, 0x0c, 0x56, 0x0a, 0x56, 0xe5, 0x13, 0x51, 0xc0, 0x02, 0xe4, 0xd6,
0xf1, 0xf0, 0xb7, 0xfb, 0x47, 0x0e, 0xac, 0x1c, 0x66, 0x05, 0x3b, 0xce, 0x92, 0x38, 0x93, 0xa9,
0x33, 0x4f, 0x25, 0x54, 0x6a, 0x2d, 0x73, 0x34, 0xf9, 0xc9, 0x23, 0x64, 0x98, 0xc5, 0xa9, 0xf0,
0xd5, 0x96, 0x54, 0x50, 0x16, 0xa7, 0xdc, 0x55, 0xc9, 0x4d, 0x68, 0x47, 0xb4, 0x0c, 0x8b, 0x38,
0xe7, 0x57, 0x25, 0x19, 0x16, 0x4c, 0x10, 0x27, 0x7c, 0x14, 0x24, 0x41, 0x1a, 0x52, 0x19, 0xd9,
0xd5, 0xa7, 0xbb, 0x81, 0xe1, 0x4a, 0x4b, 0x62, 0xdc, 0x5a, 0x6d, 0xb0, 0x5c, 0xca, 0xaf, 0xc1,
0x62, 0xae, 0x80, 0xd2, 0xfd, 0x7a, 0x4a, 0x43, 0xa3, 0xcb, 0xf1, 0x2a, 0x54, 0x77, 0x9b, 0xe7,
0xd5, 0x15, 0xbd, 0x27, 0xc3, 0xc1, 0x20, 0x28, 0x2e, 0x14, 0xb7, 0x14, 0x66, 0xf7, 0xb3, 0x38,
0xe5, 0x8a, 0xe2, 0x8b, 0x52, 0x89, 0x17, 0xff, 0x6d, 0x8a, 0xde, 0xb2, 0x44, 0x37, 0xb5, 0x35,
0x63, 0x6b, 0xeb, 0x3a, 0x40, 0x4e, 0x8b, 0x90, 0xa6, 0x2c, 0x38, 0x51, 0x2b, 0x36, 0x20, 0xee,
0x29, 0x90, 0xc7, 0xc7, 0xc7, 0x49, 0x9c, 0x52, 0xce, 0x56, 0x0a, 0x33, 0x41, 0xfb, 0xe3, 0x65,
0xb0, 0x39, 0xcd, 0xd4, 0x38, 0xfd, 0x18, 0x56, 0x1f, 0xa7, 0x0d, 0x8c, 0x14, 0x39, 0x67, 0x12,
0xb9, 0x56, 0x8d, 0xdc, 0x0f, 0xa1, 0x63, 0x08, 0x5e, 0x92, 0x8f, 0x60, 0x51, 0xca, 0xa8, 0x93,
0xf0, 0xbe, 0x8e, 0x06, 0xb5, 0x15, 0x7a, 0x15, 0xb2, 0xfb, 0x17, 0x0e, 0xb4, 0x2b, 0xc9, 0x4a,
0xf2, 0x00, 0xae, 0x70, 0x75, 0x2b, 0x2a, 0xd7, 0x35, 0x95, 0x0a, 0x67, 0x17, 0xff, 0x15, 0xb9,
0xbb, 0x40, 0xee, 0x3f, 0x01, 0xa8, 0x80, 0x0d, 0x59, 0xfb, 0x3d, 0xfb, 0xf6, 0x75, 0xb5, 0x4e,
0x55, 0x89, 0x66, 0x24, 0xf4, 0xff, 0x3c, 0xcb, 0xaf, 0x52, 0x0d, 0xce, 0x22, 0x7d, 0xf0, 0x3d,
0x68, 0x8b, 0xbd, 0xc0, 0x23, 0x80, 0x12, 0xb8, 0x53, 0x95, 0x0d, 0xe2, 0xd4, 0x03, 0xdc, 0x1b,
0x38, 0x4e, 0x3e, 0x80, 0x25, 0x14, 0xd6, 0xcf, 0x84, 0x42, 0xe4, 0xc6, 0xb6, 0x27, 0x74, 0x10,
0x45, 0xaa, 0x8c, 0xe4, 0xb0, 0x61, 0x4d, 0xf1, 0x4b, 0x21, 0x82, 0x3c, 0xa4, 0xbe, 0x6f, 0xdc,
0x73, 0xc6, 0x49, 0x29, 0x94, 0x25, 0x09, 0xca, 0x31, 0xa1, 0xba, 0xb5, 0xb0, 0x3e, 0x42, 0xee,
0x41, 0x47, 0x72, 0x44, 0xcd, 0xc8, 0x23, 0xce, 0x96, 0xb1, 0x2d, 0x26, 0x22, 0x02, 0x19, 0xc0,
0xba, 0x39, 0x41, 0x4b, 0x78, 0x05, 0x27, 0x7e, 0x3c, 0xbd, 0x84, 0x69, 0x4d, 0x40, 0x12, 0xd6,
0x06, 0xfa, 0xbf, 0x0b, 0xbd, 0x71, 0x0b, 0x6a, 0x30, 0xfb, 0xdb, 0xb6, 0xd9, 0xd7, 0x1b, 0x5c,
0xb2, 0x34, 0x8b, 0x73, 0x5f, 0xc2, 0xd6, 0x18, 0x61, 0x5e, 0xe1, 0x46, 0x6f, 0x78, 0xaa, 0xe9,
0x4d, 0x7f, 0xe6, 0x40, 0x7f, 0x2f, 0x8a, 0x6a, 0xc1, 0xa9, 0xba, 0x80, 0x7f, 0xdb, 0x21, 0x77,
0x07, 0xae, 0x35, 0x0a, 0x24, 0x2b, 0x05, 0x2f, 0x61, 0xc7, 0xa3, 0x83, 0xec, 0x8c, 0x7e, 0xdb,
0x22, 0xbb, 0x37, 0xe1, 0xfa, 0x38, 0xce, 0x52, 0x36, 0x2c, 0x9d, 0xd9, 0xa5, 0x67, 0x9d, 0x18,
0xfd, 0x87, 0x03, 0x4b, 0x76, 0x51, 0xfa, 0x75, 0xdd, 0xa3, 0xdf, 0x05, 0x52, 0xd0, 0x92, 0xf9,
0x45, 0x96, 0x24, 0xfc, 0x3a, 0x1d, 0xd1, 0x24, 0xb8, 0x90, 0xe5, 0xf0, 0x15, 0x3e, 0xe2, 0x89,
0x81, 0x4f, 0x39, 0x9c, 0x6c, 0xc1, 0x7c, 0x90, 0xc7, 0x3e, 0xf7, 0x1a, 0x71, 0x97, 0x9e, 0x0b,
0xf2, 0xf8, 0x47, 0xf4, 0x82, 0xb8, 0xb0, 0x24, 0x07, 0xfc, 0x84, 0x9e, 0xd1, 0x04, 0x73, 0xbe,
0x19, 0xaf, 0x2d, 0x86, 0x3f, 0xe7, 0x20, 0x7e, 0xf7, 0xcd, 0x8b, 0x98, 0xbb, 0x5f, 0x55, 0x77,
0x9f, 0x47, 0x69, 0xba, 0x12, 0xae, 0x56, 0xe7, 0xfe, 0x14, 0xae, 0x36, 0xe8, 0x42, 0xc6, 0xa8,
0x1f, 0x40, 0xd7, 0xae, 0xde, 0xab, 0x38, 0xa5, 0xb3, 0x56, 0x6b, 0xa2, 0xb7, 0x7c, 0x6c, 0xd1,
0x91, 0xd9, 0x27, 0xe2, 0x78, 0x01, 0xd3, 0xf5, 0x22, 0xf7, 0x2b, 0x58, 0xaf, 0x80, 0xfb, 0x59,
0x7a, 0x46, 0x8b, 0x92, 0x7b, 0x1b, 0x81, 0xd9, 0xe3, 0x22, 0x53, 0xc5, 0x4e, 0xfc, 0xcd, 0xf3,
0x36, 0x96, 0x49, 0x37, 0x68, 0xb1, 0x8c, 0xe3, 0x14, 0x01, 0x53, 0xa7, 0x14, 0xfe, 0xe6, 0x79,
0x72, 0x8c, 0x44, 0xa8, 0x8f, 0x63, 0xc2, 0x55, 0xdb, 0x12, 0xc6, 0xb9, 0xb8, 0xcf, 0x30, 0x7d,
0x34, 0x45, 0x91, 0x6b, 0xfc, 0x0d, 0x68, 0x8b, 0x35, 0xf2, 0x99, 0x6a, 0x7d, 0xdb, 0xd6, 0xfa,
0x46, 0xc4, 0xf4, 0xe0, 0x58, 0x43, 0xdd, 0xff, 0x6a, 0x41, 0x07, 0x33, 0xd6, 0x4f, 0x29, 0x0b,
0xe2, 0x64, 0x72, 0x2e, 0x2d, 0x72, 0xd0, 0x96, 0xce, 0x41, 0xdf, 0x80, 0x25, 0xb3, 0x98, 0x71,
0xa1, 0x2e, 0xb3, 0x46, 0x29, 0xe3, 0x82, 0xbc, 0x09, 0xcb, 0x78, 0xb5, 0xae, 0xb0, 0x84, 0xcf,
0x2c, 0x21, 0x54, 0xa3, 0xd9, 0x17, 0x81, 0x2b, 0x23, 0x17, 0x01, 0x3e, 0x8c, 0xc9, 0xb4, 0x5f,
0xc6, 0x91, 0xbe, 0x27, 0x20, 0xe4, 0x49, 0x1c, 0x19, 0xc3, 0x38, 0x7b, 0xde, 0x18, 0xc6, 0xd9,
0xfc, 0x0e, 0x54, 0x50, 0x51, 0x84, 0xc7, 0xb7, 0xa4, 0x05, 0x74, 0xba, 0x8e, 0x02, 0x3e, 0x8d,
0x07, 0xf8, 0xd2, 0x24, 0x0b, 0xc7, 0xa2, 0xce, 0x22, 0xbf, 0xaa, 0x6b, 0x1a, 0x98, 0xd7, 0xb4,
0xea, 0x52, 0xd7, 0xb6, 0x2e, 0x75, 0x37, 0xa0, 0x9d, 0xe5, 0x34, 0xf5, 0xe5, 0x15, 0xbb, 0x23,
0xb2, 0x07, 0x0e, 0x7a, 0x86, 0x10, 0x59, 0x32, 0x41, 0x9d, 0x97, 0xd3, 0xdc, 0x4b, 0x6d, 0xc5,
0xb4, 0x46, 0x15, 0xa3, 0x2e, 0x82, 0x33, 0x97, 0x5d, 0x04, 0xdd, 0x3d, 0xcc, 0x8a, 0x15, 0x63,
0xe9, 0x3e, 0xef, 0xc2, 0x1c, 0xaa, 0x49, 0x79, 0xce, 0xba, 0x75, 0x8d, 0x91, 0x4e, 0xe1, 0x49,
0x1c, 0xf7, 0x87, 0xf8, 0x3e, 0x87, 0x43, 0xd3, 0x88, 0x7e, 0x15, 0x16, 0x84, 0x55, 0xb4, 0xd7,
0xcc, 0xe3, 0xf7, 0xa3, 0xc8, 0xfd, 0x57, 0x07, 0xc8, 0x93, 0xe1, 0xd1, 0x20, 0x9e, 0x9e, 0xda,
0xf4, 0x17, 0x74, 0x02, 0xb3, 0xe8, 0x26, 0xc2, 0x1d, 0xf1, 0xf7, 0x88, 0x87, 0xcc, 0x8e, 0x7a,
0x48, 0x65, 0xce, 0x2b, 0xcd, 0x77, 0xf4, 0x39, 0xd3, 0xf8, 0x3c, 0xc4, 0x27, 0x31, 0x4d, 0x99,
0x2f, 0x8b, 0x2d, 0x3c, 0xc4, 0x23, 0xe0, 0x51, 0xe4, 0x3e, 0x81, 0x35, 0x6b, 0x65, 0x52, 0xd3,
0xb7, 0xa0, 0x23, 0x04, 0xc8, 0x93, 0x20, 0xd4, 0x95, 0xe6, 0x36, 0xc2, 0x0e, 0x11, 0x34, 0x49,
0x5f, 0x7f, 0xe2, 0xc0, 0xfa, 0x93, 0x78, 0x30, 0x4c, 0x02, 0x46, 0x7f, 0x05, 0x1a, 0xab, 0x96,
0x3f, 0x63, 0x2d, 0x5f, 0x69, 0x72, 0xb6, 0xd2, 0xa4, 0xfb, 0xdf, 0x0e, 0x6c, 0x8c, 0x88, 0xa2,
0x73, 0x42, 0xdb, 0x99, 0xc6, 0x14, 0x07, 0x24, 0x92, 0xc1, 0xb4, 0x65, 0x31, 0x7d, 0x03, 0x96,
0x06, 0x71, 0x1a, 0x0f, 0x86, 0x03, 0x5f, 0xe8, 0x5e, 0xc8, 0xd4, 0x91, 0xc0, 0x43, 0x34, 0x01,
0x47, 0x0a, 0x5e, 0x1a, 0x48, 0xb3, 0x12, 0x49, 0x00, 0x05, 0xd2, 0xfb, 0xb0, 0x5e, 0xe5, 0xed,
0xfe, 0x49, 0x10, 0xa7, 0x7e, 0x92, 0x95, 0xa5, 0xb4, 0x31, 0xa9, 0xc6, 0x0e, 0x82, 0x38, 0xfd,
0x3c, 0x2b, 0x4b, 0x23, 0x08, 0xcc, 0x99, 0x41, 0x80, 0x27, 0x30, 0x2b, 0xcf, 0x4f, 0x83, 0x84,
0x7e, 0x92, 0x0d, 0x8e, 0x5e, 0xaf, 0xee, 0x6f, 0x41, 0x47, 0xd4, 0xdd, 0x58, 0x50, 0x9c, 0x50,
0x65, 0x81, 0x36, 0xc2, 0x9e, 0x22, 0xa8, 0xd1, 0x0c, 0xff, 0xe9, 0x00, 0xd9, 0xe7, 0xa9, 0x4c,
0x32, 0xb5, 0x3f, 0xf0, 0x50, 0x22, 0xee, 0xcd, 0x95, 0x87, 0x2d, 0x4a, 0xc8, 0x23, 0xdb, 0xfd,
0x66, 0x2c, 0xf7, 0xd3, 0xab, 0x99, 0x7d, 0xc5, 0xe2, 0x58, 0x2d, 0x8e, 0xbf, 0x09, 0xcb, 0xe7,
0x41, 0x92, 0x50, 0xa6, 0x9f, 0xaf, 0x64, 0x15, 0x5d, 0x40, 0xd5, 0x1d, 0x5c, 0x2d, 0x78, 0xde,
0x58, 0xf0, 0x06, 0xac, 0x59, 0xeb, 0x95, 0xd9, 0xd0, 0x03, 0xd8, 0x14, 0xe0, 0xbd, 0x24, 0x99,
0x3a, 0xaa, 0xba, 0x7f, 0xd9, 0x82, 0xad, 0xda, 0x34, 0x9d, 0x36, 0xd8, 0x6e, 0x7c, 0x5b, 0x2f,
0xb7, 0x79, 0xc2, 0xae, 0xfc, 0x94, 0xb3, 0xfa, 0xff, 0xe8, 0xc0, 0x9c, 0x00, 0x4d, 0xb4, 0xc6,
0x97, 0x2a, 0x20, 0x48, 0x87, 0x13, 0x37, 0xa2, 0xef, 0x4e, 0xc7, 0x4c, 0xfc, 0x67, 0x3e, 0x59,
0x8a, 0x48, 0x22, 0x5f, 0x2b, 0x7f, 0x00, 0x2b, 0xa3, 0x08, 0xaf, 0xf4, 0x9c, 0x23, 0xaa, 0x2a,
0x0f, 0xcf, 0xa8, 0xf1, 0x44, 0xf9, 0x8d, 0x03, 0xdd, 0xfd, 0x2c, 0x8d, 0x62, 0x7e, 0x62, 0x1e,
0x06, 0x45, 0x30, 0x28, 0xe5, 0x2b, 0xb9, 0x00, 0xa9, 0xb2, 0xbb, 0x06, 0x8c, 0x29, 0x70, 0xee,
0x00, 0x84, 0xa7, 0x34, 0x7c, 0xe1, 0xcb, 0x8a, 0xa3, 0x78, 0x5a, 0xe7, 0x90, 0x4f, 0xe2, 0xa8,
0x24, 0xef, 0xc1, 0x5a, 0x35, 0xec, 0x07, 0x69, 0xe4, 0xcb, 0x72, 0x23, 0xbe, 0x40, 0x68, 0xbc,
0xbd, 0x34, 0xda, 0x2b, 0x5f, 0xe0, 0x3b, 0x89, 0xae, 0xb2, 0xf9, 0x56, 0x08, 0xef, 0x6a, 0xf8,
0x1e, 0x82, 0xdd, 0xff, 0x71, 0xf0, 0x04, 0x54, 0xab, 0x92, 0xd6, 0xae, 0x0a, 0x6b, 0x58, 0x6f,
0xb5, 0x4c, 0xd6, 0x1a, 0x31, 0x19, 0x81, 0xd9, 0x98, 0xd1, 0x81, 0x3a, 0x58, 0xf8, 0x6f, 0xf2,
0x09, 0xac, 0xe8, 0x15, 0xfb, 0x39, 0xaa, 0x45, 0x6e, 0x93, 0xad, 0xea, 0xe2, 0x68, 0x69, 0xcd,
0xeb, 0x86, 0x23, 0x6a, 0x54, 0xdb, 0xeb, 0xca, 0x54, 0x81, 0x3a, 0x44, 0x6d, 0xcb, 0xf8, 0x24,
0xbe, 0x84, 0xd4, 0x34, 0x1c, 0x32, 0x1a, 0xc9, 0x54, 0x59, 0x7f, 0xbb, 0xff, 0xee, 0x40, 0x77,
0x2f, 0x8a, 0x70, 0xdd, 0xd3, 0x84, 0x09, 0xb5, 0xca, 0xd6, 0x25, 0xab, 0x9c, 0xf9, 0x7f, 0xae,
0xf2, 0x97, 0x0e, 0x22, 0x63, 0x94, 0xe0, 0xba, 0xb0, 0x52, 0xad, 0xb3, 0xd9, 0xbc, 0xee, 0x77,
0x80, 0x88, 0xeb, 0x95, 0xa5, 0x8e, 0x51, 0xac, 0x0d, 0x58, 0xb3, 0xb0, 0x64, 0xac, 0xf9, 0x0c,
0xee, 0x1c, 0x50, 0xb6, 0x5f, 0x5c, 0xe4, 0x2c, 0x53, 0xe9, 0xec, 0xa7, 0x34, 0xcf, 0xca, 0x58,
0x45, 0x2e, 0x3a, 0x55, 0xf4, 0xf9, 0x27, 0x07, 0xee, 0x4e, 0x41, 0x48, 0x2e, 0xe1, 0x67, 0xf5,
0xfa, 0xd2, 0x6f, 0x99, 0xad, 0x23, 0x53, 0x51, 0xd9, 0xd5, 0x10, 0xf9, 0x82, 0xaf, 0x49, 0xf6,
0xbf, 0x0f, 0xcb, 0xf6, 0xe0, 0x2b, 0x85, 0x8a, 0x04, 0x6e, 0x5f, 0x22, 0xc4, 0x34, 0x3e, 0x77,
0x1b, 0x96, 0x43, 0x8b, 0x84, 0x64, 0x34, 0x02, 0x75, 0xf7, 0xe1, 0xad, 0x4b, 0xb9, 0x49, 0xb5,
0x8d, 0xbd, 0xa1, 0xbb, 0x7f, 0x33, 0x0b, 0x5b, 0xcf, 0x63, 0x76, 0x1a, 0x15, 0xc1, 0xb9, 0xf2,
0xbe, 0x69, 0x84, 0x1c, 0xb9, 0xbc, 0xb7, 0xea, 0xf5, 0x86, 0xb7, 0x61, 0x35, 0x4b, 0x29, 0xde,
0x31, 0xfc, 0x3c, 0x28, 0xcb, 0xf3, 0xac, 0x50, 0x67, 0x69, 0x37, 0x4b, 0x29, 0xbf, 0x67, 0x1c,
0x4a, 0xf0, 0xc8, 0x69, 0x3c, 0x3b, 0x7a, 0x1a, 0xaf, 0xc0, 0x4c, 0x1e, 0xa7, 0xf2, 0xcd, 0x84,
0xff, 0xe4, 0x67, 0x27, 0x2b, 0x82, 0xc8, 0xa0, 0x2c, 0xcf, 0x4e, 0x84, 0x6a, 0xba, 0x66, 0x15,
0x7f, 0x7e, 0xa4, 0x8a, 0x6f, 0xe8, 0x64, 0xc1, 0xae, 0x5a, 0xdc, 0x80, 0xb6, 0xfc, 0xe9, 0xb3,
0xe0, 0x44, 0x5e, 0x81, 0x40, 0x82, 0x9e, 0x06, 0x27, 0x46, 0xb6, 0x06, 0x56, 0xb6, 0xb6, 0x03,
0x70, 0x4c, 0xa9, 0x6f, 0x5d, 0x86, 0x16, 0x8f, 0x29, 0x15, 0x41, 0x97, 0xa7, 0xca, 0x47, 0x41,
0xfa, 0xc2, 0xc7, 0x1a, 0x44, 0x47, 0x88, 0xc3, 0x01, 0x5f, 0x04, 0x03, 0xcc, 0x89, 0x71, 0x50,
0xc9, 0xb4, 0x24, 0x34, 0xca, 0x61, 0x7b, 0x55, 0x35, 0x05, 0x51, 0xc2, 0x98, 0x5d, 0xf4, 0x96,
0xab, 0xf9, 0xfb, 0x31, 0xbb, 0xd0, 0xf3, 0x51, 0x67, 0xc5, 0x45, 0xaf, 0x5b, 0xcd, 0xdf, 0x17,
0x20, 0x2e, 0x5e, 0x79, 0x1e, 0x1f, 0x53, 0xd1, 0x74, 0xb1, 0x22, 0xdb, 0x90, 0x38, 0x64, 0x3f,
0x8b, 0x30, 0x8d, 0x3c, 0x8f, 0x0b, 0xe3, 0x72, 0xba, 0x2a, 0xae, 0xb0, 0x1c, 0xa8, 0x5c, 0xc3,
0x7d, 0x1b, 0x56, 0x94, 0xbb, 0x98, 0x7d, 0x89, 0x05, 0x2d, 0x87, 0x09, 0x53, 0x7d, 0x89, 0xe2,
0xeb, 0xfe, 0x3f, 0xdc, 0x82, 0xe5, 0x83, 0x4c, 0x38, 0xe8, 0x53, 0x6e, 0x97, 0x82, 0x3c, 0x86,
0x79, 0xd9, 0x6c, 0x47, 0x36, 0x6b, 0xdd, 0x77, 0xe8, 0x75, 0xfd, 0xad, 0x31, 0x5d, 0x79, 0xee,
0xda, 0xcf, 0xff, 0xe5, 0xdf, 0x7e, 0xd1, 0x5a, 0x22, 0xed, 0x7b, 0x67, 0x1f, 0xdc, 0x3b, 0xa1,
0x2c, 0xe6, 0x54, 0x4e, 0x61, 0xc9, 0xea, 0x8f, 0x22, 0xdb, 0x56, 0x8f, 0xd3, 0x48, 0xdb, 0x54,
0x7f, 0x67, 0x62, 0x07, 0x94, 0xdb, 0x47, 0x16, 0xeb, 0x84, 0x48, 0x16, 0x25, 0xa2, 0x08, 0xc2,
0x5f, 0x41, 0xf7, 0x21, 0x56, 0x86, 0x34, 0x55, 0x72, 0xa3, 0xa2, 0xd6, 0xd8, 0xf7, 0xd5, 0xbf,
0x39, 0x1e, 0x41, 0x72, 0xbc, 0x86, 0x1c, 0x37, 0xc8, 0x1a, 0xe7, 0x28, 0x2a, 0x4f, 0xba, 0xdf,
0x8a, 0x94, 0xb0, 0x22, 0x3b, 0x49, 0x5e, 0x2b, 0xcf, 0x6d, 0xe4, 0xb9, 0x49, 0xd6, 0x39, 0xcf,
0x48, 0x30, 0xa8, 0x98, 0x66, 0x78, 0xb1, 0x35, 0x3b, 0x9f, 0xc8, 0xf5, 0xb1, 0x2d, 0x51, 0x82,
0xe5, 0x8d, 0x4b, 0x5a, 0xa6, 0xec, 0x55, 0x9e, 0x50, 0x8e, 0xab, 0xbb, 0xa6, 0xc8, 0x2f, 0x1c,
0x2c, 0xe2, 0x35, 0xf6, 0xe8, 0x91, 0xb7, 0x2e, 0x6f, 0x0c, 0x14, 0x32, 0xdc, 0x99, 0xb6, 0x83,
0xd0, 0xfd, 0x0e, 0x0a, 0x73, 0x9d, 0x6c, 0x4b, 0x61, 0xac, 0xae, 0x41, 0xd5, 0x97, 0x48, 0x42,
0xe8, 0x98, 0xed, 0x4e, 0xe4, 0x5a, 0x43, 0x2f, 0x91, 0x66, 0xbe, 0xdd, 0x3c, 0x28, 0x19, 0xf6,
0x90, 0x21, 0x21, 0x2b, 0x92, 0xa1, 0xee, 0x8e, 0x22, 0x5f, 0x43, 0x77, 0xa4, 0x55, 0x88, 0xb8,
0x23, 0xe6, 0x6b, 0x68, 0xfb, 0xea, 0xbf, 0x31, 0x11, 0x47, 0x72, 0xbd, 0x8e, 0x5c, 0x7b, 0xee,
0x9a, 0x61, 0x65, 0xc5, 0xf9, 0x7b, 0xce, 0xdb, 0xa4, 0x44, 0x3b, 0x9b, 0xfd, 0x46, 0x53, 0xf1,
0xbe, 0xd1, 0xb0, 0x54, 0x6b, 0x9b, 0x8e, 0xda, 0x5a, 0xf1, 0xc4, 0xed, 0x5a, 0x62, 0x37, 0x83,
0xd1, 0x8b, 0x85, 0x91, 0x67, 0x1a, 0xbe, 0x3b, 0xcd, 0xbd, 0x5c, 0xb2, 0x9d, 0xac, 0xb6, 0x73,
0x15, 0xd7, 0x8c, 0xe5, 0xa4, 0xb4, 0x5a, 0xdd, 0x24, 0x53, 0xdb, 0xab, 0x1b, 0x9a, 0xcd, 0x1a,
0x57, 0x6a, 0x76, 0x8f, 0x8d, 0x5d, 0x69, 0xc6, 0xf2, 0x92, 0xbc, 0x84, 0x65, 0x11, 0x2e, 0x5e,
0xbf, 0x65, 0x77, 0x90, 0xef, 0x96, 0x4b, 0xaa, 0x98, 0x61, 0x1a, 0xf6, 0x39, 0x2c, 0xea, 0x8e,
0x11, 0xd2, 0x33, 0x16, 0x61, 0xf5, 0x26, 0xf5, 0xc7, 0x74, 0x9e, 0x28, 0x6f, 0x75, 0x97, 0xe4,
0xaa, 0x44, 0x1f, 0x09, 0x27, 0xfc, 0x53, 0x80, 0xaa, 0x15, 0x85, 0x5c, 0xad, 0x51, 0xd6, 0x9a,
0xeb, 0x37, 0x0d, 0xa9, 0x86, 0x56, 0x24, 0xbf, 0x42, 0x96, 0x2d, 0xf2, 0x6a, 0xbf, 0xe9, 0xea,
0x88, 0xb5, 0xdf, 0x46, 0x9b, 0x57, 0xfa, 0xe3, 0xbb, 0x16, 0x94, 0x51, 0x5c, 0xb5, 0xd9, 0xf4,
0xcd, 0x87, 0xaf, 0xe0, 0x04, 0x4f, 0x0b, 0xa3, 0x5d, 0x62, 0xbb, 0x89, 0x4b, 0xe3, 0x69, 0x51,
0xef, 0x7d, 0x70, 0xaf, 0x22, 0xab, 0x35, 0xb2, 0x3a, 0xca, 0xaa, 0x24, 0x2f, 0xb0, 0xa1, 0xdf,
0x78, 0xed, 0x27, 0x26, 0xad, 0x7a, 0xeb, 0x43, 0xff, 0xfa, 0xb8, 0xe1, 0x31, 0x27, 0x93, 0x4c,
0x8e, 0x70, 0x53, 0x09, 0x83, 0x8b, 0x37, 0x7e, 0xcb, 0xe0, 0x56, 0x2b, 0x40, 0xff, 0x6a, 0xc3,
0x88, 0xa4, 0xbe, 0x81, 0xd4, 0xbb, 0x64, 0x49, 0x87, 0x44, 0xa4, 0x25, 0x6c, 0xa2, 0x1f, 0x5f,
0x2c, 0x9b, 0x8c, 0xbe, 0xd0, 0x5b, 0x31, 0xb0, 0xf6, 0x4e, 0x5f, 0x8b, 0x81, 0xfa, 0x25, 0x9e,
0xfc, 0xa1, 0xfd, 0xe0, 0xaf, 0x1e, 0x20, 0xdd, 0x89, 0x2f, 0x86, 0xb5, 0xdd, 0x32, 0xf6, 0x55,
0xd1, 0xbd, 0x81, 0x9c, 0xaf, 0x92, 0xad, 0x51, 0xce, 0xf2, 0x85, 0x92, 0xfc, 0xdc, 0x81, 0xb5,
0x86, 0xf7, 0xaf, 0x4a, 0x82, 0xf1, 0xaf, 0x75, 0x95, 0x04, 0x93, 0x1e, 0xd0, 0x5c, 0x94, 0x60,
0xdb, 0x45, 0x09, 0x82, 0x28, 0xd2, 0x12, 0xc8, 0x5c, 0x8f, 0x7b, 0xe6, 0x9f, 0x3a, 0xb0, 0xd9,
0xfc, 0xd6, 0x45, 0xde, 0xd4, 0x2d, 0xc2, 0x93, 0x5e, 0xe1, 0xfa, 0xb7, 0x2f, 0x43, 0x93, 0xd2,
0xbc, 0x89, 0xd2, 0xdc, 0x70, 0xfb, 0x5c, 0x9a, 0x02, 0x71, 0x9b, 0x04, 0x3a, 0xc7, 0x02, 0x81,
0xfd, 0x9a, 0x44, 0x8c, 0xdc, 0xa2, 0xf9, 0xd1, 0xad, 0x7f, 0x6b, 0x02, 0x86, 0x1d, 0xbe, 0xc8,
0x86, 0x34, 0x08, 0x3e, 0xc1, 0xe8, 0x67, 0x29, 0xb9, 0x47, 0xab, 0xd7, 0x1a, 0x6b, 0x8f, 0xd6,
0x1e, 0xa0, 0xac, 0x3d, 0x5a, 0x7f, 0x13, 0xaa, 0xed, 0x51, 0x64, 0x86, 0xef, 0x43, 0xe4, 0x4b,
0xdc, 0x36, 0xb2, 0x3a, 0xd5, 0x1b, 0xdd, 0xea, 0x65, 0xd3, 0xb6, 0xb1, 0xeb, 0x4f, 0xb5, 0x50,
0x29, 0x8a, 0x5e, 0x5c, 0x7b, 0x1e, 0x2c, 0x28, 0x74, 0xb2, 0x35, 0x4a, 0x40, 0x51, 0x6e, 0x7c,
0x60, 0x70, 0xb7, 0x90, 0xe8, 0xaa, 0xdb, 0x31, 0x89, 0x72, 0x9a, 0x47, 0xd0, 0x36, 0x8a, 0xe9,
0x44, 0x07, 0xd9, 0xfa, 0xdb, 0x41, 0xff, 0x5a, 0xe3, 0x98, 0x1d, 0x4a, 0xdc, 0x2e, 0x67, 0x50,
0x22, 0x82, 0xe6, 0xf1, 0xfb, 0xb0, 0x64, 0xd5, 0xb3, 0x2b, 0xe5, 0x37, 0x55, 0xdc, 0x2b, 0xe5,
0x37, 0x16, 0xc1, 0x55, 0xa2, 0xe9, 0xa2, 0xf2, 0x4b, 0x89, 0xa2, 0x79, 0xfd, 0x0c, 0x16, 0x75,
0x19, 0xb9, 0xd2, 0xff, 0x68, 0x65, 0xf9, 0x32, 0x1e, 0x96, 0x0d, 0xce, 0xf9, 0xe4, 0xa3, 0x6c,
0x70, 0x24, 0xf5, 0x65, 0x14, 0x49, 0x2b, 0x7d, 0xd5, 0x2b, 0xc5, 0x95, 0xbe, 0x9a, 0xaa, 0xaa,
0x96, 0xbe, 0x42, 0x44, 0xd0, 0x6b, 0x28, 0xa0, 0x3b, 0x52, 0x9c, 0xac, 0xd2, 0x8a, 0xe6, 0x52,
0x6c, 0x95, 0x56, 0x8c, 0xa9, 0x6a, 0xda, 0x89, 0x9b, 0xe0, 0x17, 0x24, 0x49, 0xe5, 0x5b, 0x22,
0xdc, 0x8b, 0xd2, 0x9d, 0xe5, 0xb7, 0x56, 0x8d, 0xd2, 0xf2, 0x5b, 0xbb, 0xce, 0x57, 0x0b, 0xf7,
0x54, 0xd0, 0x7a, 0x06, 0x0b, 0xaa, 0x66, 0x54, 0x39, 0xed, 0x48, 0xb5, 0xac, 0xdf, 0xab, 0x0f,
0x48, 0xaa, 0x96, 0xe3, 0x06, 0x51, 0x84, 0x54, 0xa5, 0x21, 0x8c, 0x0a, 0x52, 0x65, 0x88, 0x7a,
0xf1, 0xa9, 0x32, 0x44, 0x53, 0xc9, 0xc9, 0x32, 0x84, 0x88, 0x5c, 0x9a, 0xc7, 0xdf, 0x3a, 0x70,
0xeb, 0xd2, 0x02, 0x10, 0x79, 0xff, 0x15, 0x6a, 0x45, 0x42, 0xa0, 0x0f, 0x5e, 0xb9, 0xba, 0xe4,
0xde, 0x41, 0x31, 0x5d, 0x77, 0x47, 0x1d, 0xa6, 0x38, 0x2d, 0x12, 0xe8, 0xba, 0xd4, 0xc4, 0x85,
0xfe, 0x6b, 0x47, 0xfc, 0xb9, 0xd6, 0x04, 0xba, 0x64, 0x77, 0x4a, 0x01, 0x94, 0xc0, 0xf7, 0xa6,
0xc6, 0x97, 0xe2, 0xde, 0x46, 0x71, 0x6f, 0xba, 0xd7, 0x26, 0x88, 0xcb, 0x85, 0xfd, 0x03, 0xb8,
0xa6, 0x0b, 0x45, 0x16, 0xdd, 0xcf, 0x86, 0x69, 0x54, 0x56, 0xf7, 0xd2, 0x31, 0xd5, 0xa4, 0xca,
0x71, 0x46, 0xeb, 0x07, 0xf6, 0xf9, 0x78, 0x2e, 0x47, 0x85, 0x18, 0xc7, 0x9c, 0x36, 0xe7, 0x9e,
0xc3, 0xaa, 0x9a, 0xf7, 0x59, 0x1c, 0xb0, 0x5f, 0x9a, 0xe7, 0x4d, 0xe4, 0xd9, 0x77, 0x37, 0x4c,
0x9e, 0xc7, 0x71, 0xc0, 0x14, 0xc7, 0xa3, 0x39, 0xfc, 0xd3, 0xcc, 0x0f, 0xff, 0x2f, 0x00, 0x00,
0xff, 0xff, 0x26, 0x18, 0xb3, 0x56, 0xcd, 0x39, 0x00, 0x00,
// 4379 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3b, 0x4d, 0x6f, 0x1c, 0x57,
0x72, 0xe8, 0x21, 0xc5, 0x8f, 0x9a, 0x21, 0x67, 0xf8, 0xf8, 0x35, 0x1a, 0x91, 0xfa, 0x68, 0xad,
0x64, 0x49, 0xb6, 0x29, 0x5b, 0x16, 0xb2, 0x8e, 0xbd, 0xd9, 0x84, 0xa6, 0x65, 0xae, 0xb2, 0x5e,
0x8b, 0x69, 0x6a, 0x25, 0xc0, 0x1b, 0xec, 0xa4, 0xd9, 0xfd, 0x38, 0xec, 0xa8, 0xa7, 0xbb, 0xdd,
0xdd, 0x43, 0x8a, 0x46, 0x80, 0x00, 0x0b, 0x24, 0xc8, 0x29, 0x39, 0x2c, 0x02, 0xe4, 0x90, 0x53,
0x4e, 0x41, 0x80, 0x5c, 0x82, 0x9c, 0x72, 0x30, 0x72, 0x0d, 0x72, 0xcc, 0x25, 0x3f, 0x20, 0xc8,
0x2d, 0x09, 0x10, 0x20, 0x97, 0x9c, 0x82, 0x57, 0xef, 0xa3, 0xdf, 0xeb, 0xee, 0x19, 0x0e, 0xd7,
0x8a, 0x2f, 0xd2, 0x74, 0xbd, 0x7a, 0x55, 0xf5, 0xaa, 0xea, 0xd5, 0xab, 0x57, 0xaf, 0x08, 0x8b,
0x69, 0xe2, 0xed, 0x24, 0x69, 0x9c, 0xc7, 0x64, 0x6e, 0xe0, 0xe5, 0x69, 0xe2, 0xf5, 0xb6, 0x06,
0x71, 0x3c, 0x08, 0xe9, 0x43, 0x37, 0x09, 0x1e, 0xba, 0x51, 0x14, 0xe7, 0x6e, 0x1e, 0xc4, 0x51,
0xc6, 0xb1, 0xec, 0x0e, 0x2c, 0xef, 0xd3, 0xfc, 0x69, 0x74, 0x1c, 0x3b, 0xf4, 0xab, 0x11, 0xcd,
0x72, 0xfb, 0xef, 0x67, 0xa1, 0xad, 0x40, 0x59, 0x12, 0x47, 0x19, 0x25, 0x1b, 0x30, 0x37, 0x4a,
0xf2, 0x60, 0x48, 0xbb, 0xd6, 0x4d, 0xeb, 0xde, 0xa2, 0x23, 0xbe, 0xc8, 0x43, 0x58, 0x75, 0x4f,
0xdd, 0x20, 0x74, 0x8f, 0x42, 0xda, 0xa7, 0xaf, 0xbd, 0x13, 0x37, 0x1a, 0xd0, 0xac, 0xdb, 0xb8,
0x69, 0xdd, 0x9b, 0x71, 0x88, 0x1a, 0x7a, 0x22, 0x47, 0xc8, 0xdb, 0xb0, 0x42, 0x23, 0x06, 0xf2,
0x35, 0xf4, 0x19, 0x44, 0xef, 0x88, 0x81, 0x02, 0xf9, 0x31, 0x6c, 0xf8, 0xf4, 0xd8, 0x1d, 0x85,
0x79, 0xff, 0x38, 0x4e, 0xe9, 0xeb, 0x7e, 0x92, 0xc6, 0xa7, 0x81, 0x4f, 0xd3, 0xee, 0x2c, 0x4a,
0xb1, 0x26, 0x46, 0x3f, 0x63, 0x83, 0x07, 0x62, 0x8c, 0x3c, 0x82, 0x75, 0x35, 0x2b, 0x70, 0xf3,
0xbe, 0x37, 0x4a, 0x53, 0x1a, 0x79, 0xe7, 0xdd, 0x2b, 0x38, 0x69, 0x55, 0x4e, 0x0a, 0xdc, 0x7c,
0x4f, 0x0c, 0x91, 0x97, 0xd0, 0xc9, 0x46, 0x47, 0xd9, 0x79, 0x96, 0xd3, 0x61, 0x3f, 0xcb, 0xdd,
0x7c, 0x94, 0x75, 0xe7, 0x6e, 0xce, 0xdc, 0x6b, 0x3e, 0x7a, 0x67, 0x87, 0xab, 0x71, 0xa7, 0xa4,
0x92, 0x9d, 0x43, 0x89, 0x7f, 0x88, 0xe8, 0x4f, 0xa2, 0x3c, 0x3d, 0x77, 0xda, 0x99, 0x09, 0x25,
0x5f, 0xc0, 0x52, 0x9a, 0x78, 0x7d, 0x1a, 0xf9, 0x49, 0x1c, 0x44, 0x79, 0xd6, 0x9d, 0x47, 0xaa,
0xf7, 0xc7, 0x51, 0x75, 0x12, 0xef, 0x89, 0xc4, 0xe5, 0x24, 0x5b, 0xa9, 0x06, 0xea, 0x7d, 0x02,
0x6b, 0x75, 0x8c, 0x49, 0x07, 0x66, 0x5e, 0xd1, 0x73, 0x61, 0x1d, 0xf6, 0x93, 0xac, 0xc1, 0x95,
0x53, 0x37, 0x1c, 0x51, 0x34, 0xc6, 0x82, 0xc3, 0x3f, 0x3e, 0x6a, 0x7c, 0x68, 0xf5, 0x9e, 0xc3,
0x4a, 0x85, 0x4d, 0x0d, 0x81, 0xfb, 0x3a, 0x81, 0xe6, 0xa3, 0x55, 0x29, 0xb2, 0x73, 0xb0, 0x27,
0xe7, 0x6a, 0x54, 0xed, 0x5b, 0x70, 0x63, 0x9f, 0xe6, 0x7b, 0xf1, 0x70, 0x38, 0x8a, 0x02, 0x0f,
0x7d, 0xcc, 0xa1, 0xa1, 0x7b, 0x4e, 0xd3, 0x4c, 0x7a, 0xd6, 0x17, 0xb0, 0x56, 0x37, 0x4e, 0xba,
0x30, 0x2f, 0x6c, 0x8f, 0xfc, 0x17, 0x1c, 0xf9, 0x49, 0xb6, 0x60, 0xd1, 0x8b, 0xa3, 0x88, 0x7a,
0x39, 0xf5, 0xc5, 0x42, 0x0a, 0x80, 0xfd, 0xc7, 0x0d, 0xb8, 0x39, 0x9e, 0xa7, 0x70, 0xdd, 0xaf,
0x61, 0xc3, 0xd3, 0x11, 0xfa, 0xa9, 0xc0, 0xe8, 0x5a, 0x68, 0x8a, 0x3d, 0xcd, 0x14, 0x13, 0x29,
0xed, 0xd4, 0x8e, 0x72, 0x23, 0xad, 0x7b, 0x75, 0x63, 0xbd, 0x63, 0xe8, 0x8d, 0x9f, 0x54, 0xa3,
0xf2, 0x47, 0xa6, 0xca, 0xb7, 0xa4, 0x68, 0x75, 0x44, 0x74, 0xdd, 0x7f, 0x1f, 0x36, 0xf7, 0x69,
0x44, 0xd3, 0xc0, 0x53, 0xce, 0x21, 0x74, 0xce, 0x34, 0xa8, 0x7c, 0x52, 0xb0, 0x2a, 0x00, 0x76,
0x0f, 0xba, 0xd5, 0x89, 0x7c, 0xb9, 0xf6, 0x06, 0xac, 0xed, 0xd3, 0x5c, 0xc1, 0x95, 0x15, 0xbf,
0xb1, 0x60, 0x1d, 0x07, 0xb2, 0xa3, 0xec, 0x9c, 0x0f, 0x08, 0x55, 0xff, 0x1e, 0xac, 0x28, 0xd2,
0x99, 0xdc, 0x46, 0x5c, 0xcb, 0x1f, 0x68, 0x5a, 0xae, 0xce, 0x2c, 0x36, 0x53, 0xa6, 0xef, 0xa6,
0x62, 0x4f, 0x0a, 0x70, 0x6f, 0x0f, 0xd6, 0x6b, 0x51, 0x2f, 0xe3, 0xff, 0x76, 0x17, 0x36, 0xf6,
0x69, 0xae, 0xb9, 0xb1, 0xe6, 0xa0, 0x4d, 0x0d, 0xcc, 0xfc, 0x32, 0xcb, 0xdd, 0x34, 0x2f, 0xfc,
0x52, 0x7c, 0x92, 0x3b, 0xb0, 0x1c, 0x06, 0x59, 0x4e, 0xa3, 0xbe, 0xeb, 0xfb, 0x29, 0xcd, 0x78,
0xc8, 0x5b, 0x74, 0x96, 0x38, 0x74, 0x97, 0x03, 0xed, 0x7f, 0xb0, 0x98, 0x61, 0x4a, 0xac, 0x84,
0xb2, 0x3e, 0x87, 0xc5, 0x22, 0x2a, 0x70, 0x25, 0xed, 0x68, 0x4a, 0xaa, 0x9b, 0xb3, 0x53, 0x0a,
0x0d, 0x05, 0x81, 0xde, 0xef, 0xc0, 0xf2, 0x9b, 0xde, 0xd0, 0x1f, 0x42, 0x4f, 0xf8, 0x86, 0x8c,
0xc8, 0x5f, 0xb8, 0x43, 0x2a, 0xfd, 0xaa, 0x07, 0x0b, 0x32, 0x80, 0x0b, 0x1e, 0xea, 0xdb, 0xde,
0x86, 0x6b, 0xb5, 0x33, 0x85, 0x63, 0x3d, 0x84, 0xd5, 0x7d, 0x9a, 0xab, 0x30, 0x2f, 0x29, 0x8e,
0x8d, 0x02, 0xf6, 0x63, 0xf4, 0x44, 0x6d, 0x82, 0x50, 0xe1, 0x16, 0x2c, 0x16, 0x87, 0x88, 0xf0,
0x6d, 0x05, 0xb0, 0x1f, 0xa1, 0x9b, 0xca, 0x59, 0xcf, 0x9e, 0x1f, 0x38, 0x94, 0x4f, 0xbb, 0x0a,
0x0b, 0x71, 0x9e, 0xf4, 0xbd, 0xd8, 0x97, 0xa2, 0xcf, 0xc7, 0x79, 0xb2, 0x17, 0xfb, 0x54, 0xb8,
0x86, 0x36, 0x47, 0xb9, 0xc6, 0x5f, 0x71, 0x53, 0x9a, 0x43, 0x42, 0x8e, 0xdf, 0x86, 0x45, 0x49,
0x50, 0x9a, 0xf2, 0x5d, 0xcd, 0x94, 0x75, 0x73, 0x76, 0x9e, 0x71, 0x8e, 0xc2, 0x92, 0x0b, 0x42,
0x80, 0xac, 0xf7, 0x31, 0x2c, 0x19, 0x43, 0x17, 0x79, 0xf6, 0xa2, 0x6e, 0xb2, 0xc7, 0xb0, 0xf1,
0x69, 0x90, 0xe9, 0x27, 0xee, 0x34, 0xe6, 0xfa, 0x66, 0xc6, 0x58, 0x9a, 0x71, 0xf0, 0x13, 0x98,
0x8d, 0x5c, 0x75, 0xec, 0xe3, 0x6f, 0xdd, 0x50, 0x0d, 0x33, 0x5c, 0x77, 0x61, 0xfe, 0x94, 0xa6,
0x47, 0x71, 0x46, 0xf1, 0x4c, 0x5f, 0x70, 0xe4, 0x27, 0xb9, 0x0d, 0x4b, 0xa3, 0x2c, 0x88, 0x06,
0xfd, 0xcc, 0x8d, 0xfc, 0xa3, 0xf8, 0x35, 0x9e, 0xe0, 0x0b, 0x4e, 0x0b, 0x81, 0x87, 0x1c, 0x46,
0x6e, 0x41, 0xeb, 0x24, 0xcf, 0x93, 0x3e, 0x4b, 0x2d, 0xe2, 0x51, 0x2e, 0x0e, 0xec, 0x26, 0x83,
0x3d, 0xe7, 0x20, 0xb6, 0xf1, 0x10, 0x65, 0x94, 0xd1, 0xd4, 0x1d, 0xd0, 0x28, 0xef, 0xce, 0xf1,
0x8d, 0xc7, 0xa0, 0x3f, 0x95, 0x40, 0xb2, 0x0d, 0x80, 0x68, 0x49, 0x1a, 0xbf, 0x3e, 0xef, 0xce,
0x73, 0xd7, 0x60, 0x90, 0x03, 0x06, 0x20, 0x6f, 0x41, 0xfb, 0xc8, 0xcd, 0xa8, 0x4c, 0x0d, 0x02,
0x9a, 0x75, 0x17, 0x10, 0x67, 0x99, 0x81, 0xf7, 0x14, 0x94, 0xdc, 0x67, 0x79, 0x41, 0x92, 0xc4,
0x6c, 0xd3, 0xf7, 0xdd, 0x2c, 0xa3, 0x79, 0xd6, 0x5d, 0x44, 0xcc, 0xb6, 0x82, 0xef, 0x22, 0x98,
0xad, 0x50, 0x66, 0x36, 0x89, 0x1b, 0xa4, 0x59, 0x17, 0x10, 0xaf, 0x25, 0x80, 0x07, 0x0c, 0xc6,
0x18, 0x17, 0xf9, 0x12, 0x47, 0x6b, 0x72, 0xc6, 0x0a, 0xcc, 0x11, 0xdf, 0x86, 0x15, 0x77, 0x94,
0x9f, 0xd0, 0x28, 0x67, 0x51, 0x9f, 0x31, 0x4f, 0x82, 0x6e, 0x0b, 0x75, 0xd6, 0x31, 0x06, 0x76,
0x93, 0xc0, 0x3e, 0x83, 0xce, 0x3e, 0xcd, 0x9f, 0x07, 0xde, 0x2b, 0x9a, 0x4e, 0x61, 0x70, 0x72,
0x0f, 0x66, 0x19, 0x6f, 0x11, 0x07, 0xd6, 0xd4, 0x29, 0x23, 0xb2, 0x21, 0x26, 0x81, 0x83, 0x18,
0x4c, 0x8f, 0xb8, 0xea, 0x7e, 0x7e, 0x9e, 0x70, 0x9b, 0x2e, 0x3a, 0x8b, 0x08, 0x79, 0x7e, 0x9e,
0x50, 0xfb, 0x05, 0xb4, 0xf4, 0x49, 0x6c, 0x43, 0xfa, 0x34, 0x0c, 0x86, 0x41, 0x4e, 0x53, 0xb9,
0x21, 0x15, 0x80, 0xf9, 0x12, 0x53, 0xaf, 0x70, 0x5b, 0xfc, 0xcd, 0x7c, 0xf9, 0xab, 0x51, 0x9c,
0x4b, 0xda, 0xfc, 0xc3, 0xfe, 0xf3, 0x06, 0x2c, 0xcb, 0xe5, 0x08, 0x47, 0x94, 0x32, 0x5b, 0x17,
0xca, 0x7c, 0x0b, 0x5a, 0xa1, 0x9b, 0xe5, 0xfd, 0x51, 0xe2, 0xbb, 0x32, 0x6d, 0x98, 0x71, 0x9a,
0x0c, 0xf6, 0x53, 0x0e, 0x62, 0xb6, 0x92, 0x59, 0x21, 0x5a, 0x41, 0x70, 0x6f, 0x79, 0xfa, 0x62,
0x08, 0xcc, 0xb2, 0x39, 0xe8, 0xa9, 0x96, 0x83, 0xbf, 0x19, 0xec, 0x24, 0x18, 0x9c, 0xa0, 0x67,
0x5a, 0x0e, 0xfe, 0x66, 0x1b, 0x34, 0x8c, 0xcf, 0xd0, 0x0f, 0x2d, 0x87, 0xfd, 0x64, 0x90, 0xa3,
0xc0, 0x47, 0xb7, 0xb3, 0x1c, 0xf6, 0x93, 0x41, 0xdc, 0xec, 0x15, 0x3a, 0x99, 0xe5, 0xb0, 0x9f,
0x2c, 0xa3, 0x3e, 0x8d, 0xc3, 0xd1, 0x90, 0xa2, 0x3f, 0x59, 0x8e, 0xf8, 0x22, 0xd7, 0x60, 0x31,
0x49, 0x03, 0x8f, 0xf6, 0xdd, 0xfc, 0x04, 0x5d, 0xc8, 0x72, 0x16, 0x10, 0xb0, 0x9b, 0x9f, 0xd8,
0xab, 0xb0, 0xa2, 0x0c, 0xad, 0x22, 0xd3, 0x4b, 0x98, 0x17, 0x90, 0x89, 0x46, 0x7f, 0x0f, 0xe6,
0x73, 0x8e, 0xd6, 0x6d, 0x60, 0x88, 0xda, 0x90, 0x3a, 0x34, 0x35, 0xed, 0x48, 0x34, 0xfb, 0x37,
0x81, 0xe8, 0xdc, 0x84, 0x21, 0xee, 0x17, 0x74, 0x78, 0xa8, 0x6b, 0x9b, 0x74, 0xb2, 0x82, 0xc0,
0xd7, 0x18, 0xe8, 0x9f, 0xa5, 0x3e, 0x0b, 0x02, 0xf1, 0xab, 0xef, 0xd4, 0x35, 0x7f, 0x02, 0x4b,
0x8a, 0xf1, 0xd3, 0x9c, 0x0e, 0x99, 0xc2, 0xdd, 0x61, 0x3c, 0x8a, 0x72, 0xe4, 0x69, 0x39, 0xe2,
0x8b, 0x79, 0x20, 0xea, 0x17, 0x59, 0x5a, 0x0e, 0xff, 0x20, 0xcb, 0xd0, 0x08, 0x7c, 0x71, 0x31,
0x69, 0x04, 0xbe, 0xfd, 0xbf, 0x16, 0xac, 0x68, 0x0b, 0xb9, 0xb4, 0x53, 0x56, 0x3c, 0xae, 0x51,
0xe3, 0x71, 0xf7, 0x61, 0xf6, 0x28, 0xf0, 0xd9, 0x7d, 0x88, 0xe9, 0x75, 0x5d, 0x92, 0x33, 0xd6,
0xe1, 0x20, 0x0a, 0x43, 0x75, 0xb3, 0x57, 0x59, 0x77, 0x76, 0x22, 0x2a, 0x43, 0xa9, 0xec, 0x87,
0x2b, 0xd5, 0xfd, 0x60, 0xea, 0x72, 0xae, 0xac, 0x4b, 0x9e, 0x09, 0x2a, 0xda, 0xca, 0xf3, 0x3c,
0x80, 0x02, 0x38, 0xd1, 0xac, 0xbf, 0x0e, 0x10, 0x2b, 0x4c, 0xe1, 0x7f, 0x57, 0x2b, 0x42, 0x2b,
0x17, 0xd4, 0x90, 0xed, 0x1f, 0xe3, 0x31, 0xae, 0x33, 0x17, 0xca, 0x7f, 0x64, 0xd0, 0xe4, 0xbe,
0x48, 0x2a, 0x34, 0x33, 0x83, 0xd8, 0x07, 0x48, 0x6c, 0xd7, 0xf3, 0x98, 0xe9, 0xb5, 0x4b, 0xef,
0xc4, 0xf3, 0xf1, 0x05, 0xcc, 0x8b, 0x19, 0xc2, 0x2d, 0x38, 0x42, 0x23, 0xf0, 0xc9, 0xc7, 0x00,
0xda, 0x19, 0xc2, 0xd7, 0x75, 0x4d, 0xca, 0x20, 0x26, 0x49, 0x6f, 0x40, 0x76, 0x1a, 0xba, 0x7d,
0x0c, 0xab, 0x35, 0x28, 0x4c, 0x14, 0x75, 0x65, 0x15, 0xa2, 0xc8, 0x6f, 0x72, 0x03, 0x9a, 0x79,
0x9c, 0xbb, 0x61, 0xbf, 0x48, 0x00, 0x2c, 0x07, 0x10, 0xf4, 0x82, 0x41, 0x30, 0x40, 0xc5, 0x21,
0xf7, 0x5c, 0x16, 0xa0, 0xe2, 0xd0, 0xb7, 0x5d, 0x4c, 0x6a, 0x8c, 0x45, 0x0b, 0x15, 0x4e, 0x32,
0xd9, 0xdb, 0xb0, 0xe0, 0xf2, 0x29, 0x72, 0x61, 0xed, 0xd2, 0xc2, 0x1c, 0x85, 0x60, 0x13, 0x3c,
0x81, 0xf6, 0xe2, 0xe8, 0x38, 0x18, 0x48, 0xef, 0x78, 0x0b, 0x83, 0x95, 0x84, 0x15, 0xf9, 0x84,
0xef, 0xe6, 0x2e, 0x72, 0x6b, 0x39, 0xf8, 0xdb, 0xfe, 0x23, 0x0b, 0x3a, 0x07, 0x71, 0x9a, 0x1f,
0xc7, 0x61, 0x10, 0x8b, 0xd4, 0x99, 0xa5, 0x12, 0x32, 0xb5, 0x16, 0x39, 0x9a, 0xf8, 0x64, 0x11,
0xd2, 0x8b, 0x83, 0x88, 0xfb, 0x6a, 0x43, 0x28, 0x28, 0x0e, 0x22, 0xe6, 0xaa, 0xe4, 0x26, 0x34,
0x7d, 0x9a, 0x79, 0x69, 0x90, 0xb0, 0xab, 0x92, 0x08, 0x0b, 0x3a, 0x88, 0x11, 0x3e, 0x72, 0x43,
0x37, 0xf2, 0xa8, 0x88, 0xec, 0xf2, 0xd3, 0x5e, 0xc7, 0x70, 0xa5, 0x24, 0xd1, 0x6e, 0xad, 0x26,
0x58, 0x2c, 0xe5, 0xd7, 0x60, 0x31, 0x91, 0x40, 0xe1, 0x7e, 0x5d, 0xa9, 0xa1, 0xf2, 0x72, 0x9c,
0x02, 0xd5, 0xde, 0x62, 0x79, 0x75, 0x41, 0xef, 0x70, 0x34, 0x1c, 0xba, 0xe9, 0xb9, 0xe4, 0x16,
0xc1, 0xec, 0x5e, 0x1c, 0x44, 0x4c, 0x51, 0x6c, 0x51, 0x32, 0xf1, 0x62, 0xbf, 0x75, 0xd1, 0x1b,
0x86, 0xe8, 0xba, 0xb6, 0x66, 0x4c, 0x6d, 0x5d, 0x07, 0x48, 0x68, 0xea, 0xd1, 0x28, 0x77, 0x07,
0x72, 0xc5, 0x1a, 0xc4, 0x3e, 0x01, 0xf2, 0xec, 0xf8, 0x38, 0x0c, 0x22, 0xca, 0xd8, 0x0a, 0x61,
0x26, 0x68, 0x7f, 0xbc, 0x0c, 0x26, 0xa7, 0x99, 0x0a, 0xa7, 0x9f, 0xc0, 0xca, 0xb3, 0xa8, 0x86,
0x91, 0x24, 0x67, 0x4d, 0x22, 0xd7, 0xa8, 0x90, 0xfb, 0x11, 0xb4, 0x34, 0xc1, 0x33, 0xf2, 0x21,
0x2c, 0x0a, 0x19, 0x55, 0x12, 0xde, 0x53, 0xd1, 0xa0, 0xb2, 0x42, 0xa7, 0x40, 0xb6, 0xff, 0xc2,
0x82, 0x66, 0x21, 0x59, 0x46, 0x1e, 0xc3, 0x15, 0xa6, 0x6e, 0x49, 0xe5, 0xba, 0xa2, 0x52, 0xe0,
0xec, 0xe0, 0xbf, 0x3c, 0x77, 0xe7, 0xc8, 0xbd, 0x43, 0x80, 0x02, 0x58, 0x93, 0xb5, 0x3f, 0x34,
0x6f, 0x5f, 0x57, 0xab, 0x54, 0xa5, 0x68, 0x5a, 0x42, 0xff, 0xcf, 0xb3, 0xec, 0x2a, 0x55, 0xe3,
0x2c, 0xc2, 0x07, 0xdf, 0x85, 0x26, 0xdf, 0x0b, 0x2c, 0x02, 0x48, 0x81, 0x5b, 0x45, 0xd9, 0x20,
0x88, 0x1c, 0xc0, 0xbd, 0x81, 0xe3, 0xe4, 0x7d, 0x58, 0x42, 0x61, 0xfb, 0x31, 0x57, 0x88, 0xd8,
0xd8, 0xe6, 0x84, 0x16, 0xa2, 0x08, 0x95, 0x91, 0x04, 0xd6, 0x8d, 0x29, 0xfd, 0x8c, 0x8b, 0x20,
0x0e, 0xa9, 0x1f, 0x68, 0xf7, 0x9c, 0x71, 0x52, 0x72, 0x65, 0x09, 0x82, 0x62, 0x8c, 0xab, 0x6e,
0xd5, 0xab, 0x8e, 0x90, 0x87, 0xd0, 0x12, 0x1c, 0x51, 0x33, 0xe2, 0x88, 0x33, 0x65, 0x6c, 0xf2,
0x89, 0x88, 0x40, 0x86, 0xb0, 0xa6, 0x4f, 0x50, 0x12, 0x5e, 0xc1, 0x89, 0x1f, 0x4f, 0x2f, 0x61,
0x54, 0x11, 0x90, 0x78, 0x95, 0x81, 0xde, 0xef, 0x42, 0x77, 0xdc, 0x82, 0x6a, 0xcc, 0xfe, 0xc0,
0x34, 0xfb, 0x5a, 0x8d, 0x4b, 0x66, 0x7a, 0x71, 0xee, 0x4b, 0xd8, 0x1c, 0x23, 0xcc, 0x25, 0x6e,
0xf4, 0x9a, 0xa7, 0xea, 0xde, 0xf4, 0x67, 0x16, 0xf4, 0x76, 0x7d, 0xbf, 0x12, 0x9c, 0x8a, 0x0b,
0xf8, 0x77, 0x1d, 0x72, 0xb7, 0xe1, 0x5a, 0xad, 0x40, 0xa2, 0x52, 0xf0, 0x1a, 0xb6, 0x1d, 0x3a,
0x8c, 0x4f, 0xe9, 0x77, 0x2d, 0xb2, 0x7d, 0x13, 0xae, 0x8f, 0xe3, 0x2c, 0x64, 0xc3, 0xd2, 0x99,
0x59, 0x7a, 0x56, 0x89, 0xd1, 0x7f, 0x58, 0xb0, 0x64, 0x16, 0xa5, 0xdf, 0xd4, 0x3d, 0xfa, 0x1d,
0x20, 0x29, 0xcd, 0xf2, 0x7e, 0x1a, 0x87, 0x21, 0xbb, 0x4e, 0xfb, 0x34, 0x74, 0xcf, 0x45, 0x39,
0xbc, 0xc3, 0x46, 0x1c, 0x3e, 0xf0, 0x29, 0x83, 0x93, 0x4d, 0x98, 0x77, 0x93, 0xa0, 0xcf, 0xbc,
0x86, 0xdf, 0xa5, 0xe7, 0xdc, 0x24, 0xf8, 0x31, 0x3d, 0x27, 0x36, 0x2c, 0x89, 0x81, 0x7e, 0x48,
0x4f, 0x69, 0x88, 0x39, 0xdf, 0x8c, 0xd3, 0xe4, 0xc3, 0x9f, 0x33, 0x10, 0xbb, 0xfb, 0x26, 0x69,
0xc0, 0xdc, 0xaf, 0xa8, 0xbb, 0xcf, 0xa3, 0x34, 0x6d, 0x01, 0x97, 0xab, 0xb3, 0x7f, 0x06, 0x57,
0x6b, 0x74, 0x21, 0x62, 0xd4, 0x0f, 0xa1, 0x6d, 0x56, 0xef, 0x65, 0x9c, 0x52, 0x59, 0xab, 0x31,
0xd1, 0x59, 0x3e, 0x36, 0xe8, 0x88, 0xec, 0x13, 0x71, 0x1c, 0x37, 0x57, 0xf5, 0x22, 0xfb, 0x2b,
0x58, 0x2b, 0x80, 0x7b, 0x71, 0x74, 0x4a, 0xd3, 0x8c, 0x79, 0x1b, 0x81, 0xd9, 0xe3, 0x34, 0x96,
0xc5, 0x4e, 0xfc, 0xcd, 0xf2, 0xb6, 0x3c, 0x16, 0x6e, 0xd0, 0xc8, 0x63, 0x86, 0x93, 0xba, 0xb9,
0x3c, 0xa5, 0xf0, 0x37, 0xcb, 0x93, 0x03, 0x24, 0x42, 0xfb, 0x38, 0xc6, 0x5d, 0xb5, 0x29, 0x60,
0x8c, 0x8b, 0xfd, 0x02, 0xd3, 0x47, 0x5d, 0x14, 0xb1, 0xc6, 0xdf, 0x80, 0x26, 0x5f, 0x23, 0x9b,
0x29, 0xd7, 0xb7, 0x65, 0xac, 0xaf, 0x24, 0xa6, 0x03, 0xc7, 0x0a, 0x6a, 0xff, 0x57, 0x03, 0x5a,
0x98, 0xb1, 0x7e, 0x4a, 0x73, 0x37, 0x08, 0x27, 0xe7, 0xd2, 0x3c, 0x07, 0x6d, 0xa8, 0x1c, 0xf4,
0x36, 0x2c, 0xe9, 0xc5, 0x8c, 0x73, 0x79, 0x99, 0xd5, 0x4a, 0x19, 0xe7, 0xe4, 0x0e, 0x2c, 0xe3,
0xd5, 0xba, 0xc0, 0xe2, 0x3e, 0xb3, 0x84, 0x50, 0x85, 0x66, 0x5e, 0x04, 0xae, 0x94, 0x2e, 0x02,
0x6c, 0x18, 0x93, 0xe9, 0x7e, 0x16, 0xf8, 0xea, 0x9e, 0x80, 0x90, 0xc3, 0xc0, 0xd7, 0x86, 0x71,
0xf6, 0xbc, 0x36, 0x8c, 0xb3, 0xd9, 0x1d, 0x28, 0xa5, 0xbc, 0x08, 0x8f, 0x6f, 0x49, 0x0b, 0xe8,
0x74, 0x2d, 0x09, 0x7c, 0x1e, 0x0c, 0xf1, 0xa5, 0x49, 0x14, 0x8e, 0x79, 0x9d, 0x45, 0x7c, 0x15,
0xd7, 0x34, 0xd0, 0xaf, 0x69, 0xc5, 0xa5, 0xae, 0x69, 0x5c, 0xea, 0x6e, 0x40, 0x33, 0x4e, 0x68,
0xd4, 0x17, 0x57, 0xec, 0x16, 0xcf, 0x1e, 0x18, 0xe8, 0x05, 0x42, 0x44, 0xc9, 0x04, 0x75, 0x9e,
0x4d, 0x73, 0x2f, 0x35, 0x15, 0xd3, 0x28, 0x2b, 0x46, 0x5e, 0x04, 0x67, 0x2e, 0xba, 0x08, 0xda,
0xbb, 0x98, 0x15, 0x4b, 0xc6, 0xc2, 0x7d, 0xde, 0x81, 0x39, 0x54, 0x93, 0xf4, 0x9c, 0x35, 0xe3,
0x1a, 0x23, 0x9c, 0xc2, 0x11, 0x38, 0xf6, 0x8f, 0xf0, 0x7d, 0x0e, 0x87, 0xa6, 0x11, 0xfd, 0x2a,
0x2c, 0x70, 0xab, 0x28, 0xaf, 0x99, 0xc7, 0xef, 0xa7, 0xbe, 0xfd, 0xaf, 0x16, 0x90, 0xc3, 0xd1,
0xd1, 0x30, 0x98, 0x9e, 0xda, 0xf4, 0x17, 0x74, 0x02, 0xb3, 0xe8, 0x26, 0xdc, 0x1d, 0xf1, 0x77,
0xc9, 0x43, 0x66, 0xcb, 0x1e, 0x52, 0x98, 0xf3, 0x4a, 0xfd, 0x1d, 0x7d, 0x4e, 0x37, 0x3e, 0x0b,
0xf1, 0x61, 0x40, 0xa3, 0xbc, 0x2f, 0x8a, 0x2d, 0x2c, 0xc4, 0x23, 0xe0, 0xa9, 0x6f, 0x1f, 0xc2,
0xaa, 0xb1, 0x32, 0xa1, 0xe9, 0x5b, 0xd0, 0xe2, 0x02, 0x24, 0xa1, 0xeb, 0xa9, 0x4a, 0x73, 0x13,
0x61, 0x07, 0x08, 0x9a, 0xa4, 0xaf, 0x3f, 0xb1, 0x60, 0xed, 0x30, 0x18, 0x8e, 0x42, 0x37, 0xa7,
0xff, 0x0f, 0x1a, 0x2b, 0x96, 0x3f, 0x63, 0x2c, 0x5f, 0x6a, 0x72, 0xb6, 0xd0, 0xa4, 0xfd, 0xdf,
0x16, 0xac, 0x97, 0x44, 0x51, 0x39, 0xa1, 0xe9, 0x4c, 0x63, 0x8a, 0x03, 0x02, 0x49, 0x63, 0xda,
0x30, 0x98, 0xde, 0x86, 0xa5, 0x61, 0x10, 0x05, 0xc3, 0xd1, 0xb0, 0xcf, 0x75, 0xcf, 0x65, 0x6a,
0x09, 0xe0, 0x01, 0x9a, 0x80, 0x21, 0xb9, 0xaf, 0x35, 0xa4, 0x59, 0x81, 0xc4, 0x81, 0x1c, 0xe9,
0x3d, 0x58, 0x2b, 0xf2, 0xf6, 0xfe, 0xc0, 0x0d, 0xa2, 0x7e, 0x18, 0x67, 0x99, 0xb0, 0x31, 0x29,
0xc6, 0xf6, 0xdd, 0x20, 0xfa, 0x3c, 0xce, 0x32, 0x2d, 0x08, 0xcc, 0xe9, 0x41, 0x80, 0x25, 0x30,
0x9d, 0x97, 0x27, 0x6e, 0x48, 0x3f, 0x89, 0x87, 0x47, 0x6f, 0x56, 0xf7, 0xb7, 0xa0, 0xc5, 0xeb,
0x6e, 0xb9, 0x9b, 0x0e, 0xa8, 0xb4, 0x40, 0x13, 0x61, 0xcf, 0x11, 0x54, 0x6b, 0x86, 0xff, 0xb4,
0x80, 0xec, 0xb1, 0x54, 0x26, 0x9c, 0xda, 0x1f, 0x58, 0x28, 0xe1, 0xf7, 0xe6, 0xc2, 0xc3, 0x16,
0x05, 0xe4, 0xa9, 0xe9, 0x7e, 0x33, 0x86, 0xfb, 0xa9, 0xd5, 0xcc, 0x5e, 0xb2, 0x38, 0x56, 0x89,
0xe3, 0x77, 0x60, 0xf9, 0xcc, 0x0d, 0x43, 0x9a, 0xab, 0xe7, 0x2b, 0x51, 0x45, 0xe7, 0x50, 0x79,
0x07, 0x97, 0x0b, 0x9e, 0xd7, 0x16, 0xbc, 0x0e, 0xab, 0xc6, 0x7a, 0x45, 0x36, 0xf4, 0x18, 0x36,
0x38, 0x78, 0x37, 0x0c, 0xa7, 0x8e, 0xaa, 0xf6, 0x5f, 0x36, 0x60, 0xb3, 0x32, 0x4d, 0xa5, 0x0d,
0xa6, 0x1b, 0xdf, 0x55, 0xcb, 0xad, 0x9f, 0xb0, 0x23, 0x3e, 0xc5, 0xac, 0xde, 0x3f, 0x5a, 0x30,
0xc7, 0x41, 0x13, 0xad, 0xf1, 0xa5, 0x0c, 0x08, 0xc2, 0xe1, 0xf8, 0x8d, 0xe8, 0xfb, 0xd3, 0x31,
0xe3, 0xff, 0xe9, 0x4f, 0x96, 0x3c, 0x92, 0x88, 0xd7, 0xca, 0x1f, 0x42, 0xa7, 0x8c, 0x70, 0xa9,
0xe7, 0x1c, 0x5e, 0x55, 0x79, 0x72, 0x4a, 0xb5, 0x27, 0xca, 0x6f, 0x2c, 0x68, 0xef, 0xc5, 0x91,
0x1f, 0xb0, 0x13, 0xf3, 0xc0, 0x4d, 0xdd, 0x61, 0x26, 0x5e, 0xc9, 0x39, 0x48, 0x96, 0xdd, 0x15,
0x60, 0x4c, 0x81, 0x73, 0x1b, 0xc0, 0x3b, 0xa1, 0xde, 0xab, 0xbe, 0xa8, 0x38, 0xf2, 0xa7, 0x75,
0x06, 0xf9, 0x24, 0xf0, 0x33, 0xf2, 0x2e, 0xac, 0x16, 0xc3, 0x7d, 0x37, 0xf2, 0xfb, 0xa2, 0xdc,
0x88, 0x2f, 0x10, 0x0a, 0x6f, 0x37, 0xf2, 0x77, 0xb3, 0x57, 0xf8, 0x4e, 0xa2, 0xaa, 0x6c, 0x7d,
0x23, 0x84, 0xb7, 0x15, 0x7c, 0x17, 0xc1, 0xf6, 0xff, 0x58, 0x78, 0x02, 0xca, 0x55, 0x09, 0x6b,
0x17, 0x85, 0x35, 0xac, 0xb7, 0x1a, 0x26, 0x6b, 0x94, 0x4c, 0x46, 0x60, 0x36, 0xc8, 0xe9, 0x50,
0x1e, 0x2c, 0xec, 0x37, 0xf9, 0x04, 0x3a, 0x6a, 0xc5, 0xfd, 0x04, 0xd5, 0x22, 0xb6, 0xc9, 0x66,
0x71, 0x71, 0x34, 0xb4, 0xe6, 0xb4, 0xbd, 0x92, 0x1a, 0xe5, 0xf6, 0xba, 0x32, 0x55, 0xa0, 0xf6,
0x50, 0xdb, 0x22, 0x3e, 0xf1, 0x2f, 0x2e, 0x35, 0xf5, 0x46, 0x39, 0xf5, 0x45, 0xaa, 0xac, 0xbe,
0xed, 0x7f, 0xb7, 0xa0, 0xbd, 0xeb, 0xfb, 0xb8, 0xee, 0x69, 0xc2, 0x84, 0x5c, 0x65, 0xe3, 0x82,
0x55, 0xce, 0xfc, 0x8a, 0xab, 0xfc, 0xd6, 0x41, 0x64, 0x8c, 0x12, 0x6c, 0x1b, 0x3a, 0xc5, 0x3a,
0xeb, 0xcd, 0x6b, 0x7f, 0x0f, 0x08, 0xbf, 0x5e, 0x19, 0xea, 0x28, 0x63, 0xad, 0xc3, 0xaa, 0x81,
0x25, 0x62, 0xcd, 0x67, 0x70, 0x6f, 0x9f, 0xe6, 0x7b, 0xe9, 0x79, 0x92, 0xc7, 0x32, 0x9d, 0xfd,
0x94, 0x26, 0x71, 0x16, 0xc8, 0xc8, 0x45, 0xa7, 0x8a, 0x3e, 0xff, 0x64, 0xc1, 0xfd, 0x29, 0x08,
0x89, 0x25, 0xfc, 0xbc, 0x5a, 0x5f, 0xfa, 0x2d, 0xbd, 0x75, 0x64, 0x2a, 0x2a, 0x3b, 0x0a, 0x22,
0x5e, 0xf0, 0x15, 0xc9, 0xde, 0x0f, 0x60, 0xd9, 0x1c, 0xbc, 0x54, 0xa8, 0x08, 0xe1, 0xee, 0x05,
0x42, 0x4c, 0xe3, 0x73, 0x77, 0x61, 0xd9, 0x33, 0x48, 0x08, 0x46, 0x25, 0xa8, 0xbd, 0x07, 0x6f,
0x5d, 0xc8, 0x4d, 0xa8, 0x6d, 0xec, 0x0d, 0xdd, 0xfe, 0xdb, 0x59, 0xd8, 0x7c, 0x19, 0xe4, 0x27,
0x7e, 0xea, 0x9e, 0x49, 0xef, 0x9b, 0x46, 0xc8, 0xd2, 0xe5, 0xbd, 0x51, 0xad, 0x37, 0x3c, 0x80,
0x95, 0x38, 0xa2, 0x78, 0xc7, 0xe8, 0x27, 0x6e, 0x96, 0x9d, 0xc5, 0xa9, 0x3c, 0x4b, 0xdb, 0x71,
0x44, 0xd9, 0x3d, 0xe3, 0x40, 0x80, 0x4b, 0xa7, 0xf1, 0x6c, 0xf9, 0x34, 0xee, 0xc0, 0x4c, 0x12,
0x44, 0xe2, 0xcd, 0x84, 0xfd, 0x64, 0x67, 0x67, 0x9e, 0xba, 0xbe, 0x46, 0x59, 0x9c, 0x9d, 0x08,
0x55, 0x74, 0xf5, 0x2a, 0xfe, 0x7c, 0xa9, 0x8a, 0xaf, 0xe9, 0x64, 0xc1, 0xac, 0x5a, 0xdc, 0x80,
0xa6, 0xf8, 0xd9, 0xcf, 0xdd, 0x81, 0xb8, 0x02, 0x81, 0x00, 0x3d, 0x77, 0x07, 0x5a, 0xb6, 0x06,
0x46, 0xb6, 0xb6, 0x0d, 0x70, 0x4c, 0x69, 0xdf, 0xb8, 0x0c, 0x2d, 0x1e, 0x53, 0xca, 0x83, 0x2e,
0x4b, 0x95, 0x8f, 0xdc, 0xe8, 0x55, 0x1f, 0x6b, 0x10, 0x2d, 0x2e, 0x0e, 0x03, 0x7c, 0xe1, 0x0e,
0x31, 0x27, 0xc6, 0x41, 0x29, 0xd3, 0x12, 0xd7, 0x28, 0x83, 0xed, 0x16, 0xd5, 0x14, 0x44, 0xf1,
0x82, 0xfc, 0xbc, 0xbb, 0x5c, 0xcc, 0xdf, 0x0b, 0xf2, 0x73, 0x35, 0x1f, 0x75, 0x96, 0x9e, 0x77,
0xdb, 0xc5, 0xfc, 0x3d, 0x0e, 0x62, 0xe2, 0x65, 0x67, 0xc1, 0x31, 0xe5, 0x4d, 0x17, 0x1d, 0xd1,
0x86, 0xc4, 0x20, 0x7b, 0xb1, 0x8f, 0x69, 0xe4, 0x59, 0x90, 0x6a, 0x97, 0xd3, 0x15, 0x7e, 0x85,
0x65, 0x40, 0xe9, 0x1a, 0xf6, 0x03, 0xe8, 0x48, 0x77, 0xd1, 0xfb, 0x12, 0x53, 0x9a, 0x8d, 0xc2,
0x5c, 0xf6, 0x25, 0xf2, 0x2f, 0xfb, 0x7d, 0xec, 0x68, 0xf8, 0x3c, 0x1e, 0x0c, 0x8a, 0xeb, 0x93,
0x70, 0xad, 0x0d, 0x98, 0x0b, 0x11, 0x2e, 0xa7, 0xf0, 0x2f, 0x3b, 0xc2, 0x7a, 0x4e, 0x69, 0x4a,
0xf1, 0x6a, 0x11, 0x44, 0xc7, 0xb1, 0xb8, 0x2d, 0xe0, 0x6f, 0xb6, 0x17, 0x7d, 0x7a, 0x34, 0x1a,
0xc8, 0xfe, 0x22, 0xfc, 0x60, 0x98, 0x67, 0x6e, 0x1a, 0x89, 0x03, 0x15, 0x7f, 0x33, 0x4c, 0x9a,
0xa6, 0x71, 0x2a, 0x4e, 0x4f, 0xfe, 0x61, 0xef, 0xc3, 0xe6, 0xe1, 0xe5, 0x44, 0x64, 0x84, 0x78,
0xb5, 0x46, 0x6c, 0x7f, 0xfc, 0x78, 0xf4, 0xd7, 0xb7, 0x61, 0x79, 0x3f, 0xe6, 0x9b, 0xf1, 0x39,
0xf3, 0xc1, 0x94, 0x3c, 0x83, 0x79, 0xd1, 0x58, 0x48, 0x36, 0x2a, 0x9d, 0x86, 0xc8, 0xa3, 0xb7,
0x39, 0xa6, 0x03, 0xd1, 0x5e, 0xfd, 0xc5, 0xbf, 0xfc, 0xdb, 0x2f, 0x1b, 0x4b, 0xa4, 0xf9, 0xf0,
0xf4, 0xfd, 0x87, 0x03, 0x9a, 0xe3, 0x62, 0x4f, 0x60, 0xc9, 0xe8, 0x05, 0x23, 0x5b, 0x46, 0x3f,
0x57, 0xa9, 0x45, 0xac, 0xb7, 0x3d, 0xb1, 0xdb, 0xcb, 0xee, 0x21, 0x8b, 0x35, 0x42, 0x04, 0x8b,
0x0c, 0x51, 0x38, 0xe1, 0xaf, 0xa0, 0xfd, 0x04, 0xab, 0x60, 0x8a, 0x2a, 0xb9, 0x51, 0x50, 0xab,
0xed, 0x71, 0xeb, 0xdd, 0x1c, 0x8f, 0x20, 0x38, 0x5e, 0x43, 0x8e, 0xeb, 0x64, 0x95, 0x71, 0xe4,
0x55, 0x36, 0xd5, 0x5b, 0x46, 0x32, 0xe8, 0x88, 0xae, 0x99, 0x37, 0xca, 0x73, 0x0b, 0x79, 0x6e,
0x90, 0x35, 0xc6, 0xd3, 0xe7, 0x0c, 0x0a, 0xa6, 0x31, 0x5e, 0xe2, 0xf5, 0x2e, 0x2f, 0x72, 0x7d,
0x6c, 0xfb, 0x17, 0x67, 0x79, 0xe3, 0x82, 0xf6, 0x30, 0x73, 0x95, 0x03, 0xca, 0x70, 0x55, 0x87,
0x18, 0xf9, 0xa5, 0x85, 0x0e, 0x5e, 0xdb, 0x8f, 0x48, 0xde, 0xba, 0xb8, 0x09, 0x92, 0xcb, 0x70,
0x6f, 0xda, 0x6e, 0x49, 0xfb, 0x7b, 0x28, 0xcc, 0x75, 0xb2, 0x25, 0x84, 0x31, 0x3a, 0x24, 0x65,
0x0f, 0x26, 0xf1, 0xa0, 0xa5, 0xb7, 0x76, 0x91, 0x6b, 0x35, 0x7d, 0x53, 0x8a, 0xf9, 0x56, 0xfd,
0xa0, 0x60, 0xd8, 0x45, 0x86, 0x84, 0x74, 0x04, 0x43, 0xd5, 0x09, 0x46, 0xbe, 0x86, 0x76, 0xa9,
0x2d, 0x8a, 0xd8, 0x25, 0xf3, 0xd5, 0xb4, 0xb8, 0xf5, 0x6e, 0x4f, 0xc4, 0x11, 0x5c, 0xaf, 0x23,
0xd7, 0xae, 0xbd, 0xaa, 0x59, 0x59, 0x72, 0xfe, 0xc8, 0x7a, 0x40, 0x32, 0xb4, 0xb3, 0xde, 0x5b,
0x35, 0x15, 0xef, 0x1b, 0x35, 0x4b, 0x35, 0xb6, 0x69, 0xd9, 0xd6, 0x92, 0x27, 0x6e, 0xd7, 0x0c,
0x3b, 0x37, 0xb4, 0xbe, 0x33, 0x8c, 0xb2, 0xd3, 0xf0, 0xdd, 0xae, 0xef, 0x5b, 0x13, 0xad, 0x73,
0x95, 0x9d, 0x2b, 0xb9, 0xc6, 0x79, 0x42, 0x32, 0xa3, 0xad, 0x4f, 0x30, 0x35, 0xbd, 0xba, 0xa6,
0xb1, 0xae, 0x76, 0xa5, 0x7a, 0xa7, 0xdc, 0xd8, 0x95, 0xc6, 0x79, 0x92, 0x91, 0xd7, 0xb0, 0xcc,
0xc3, 0xc5, 0x9b, 0xb7, 0xec, 0x36, 0xf2, 0xdd, 0xb4, 0x49, 0x11, 0x33, 0x74, 0xc3, 0xbe, 0x84,
0x45, 0xd5, 0x1d, 0x43, 0xba, 0xda, 0x22, 0x8c, 0x3e, 0xac, 0xde, 0x98, 0x2e, 0x1b, 0xe9, 0xad,
0xf6, 0x92, 0x58, 0x15, 0xef, 0x99, 0x61, 0x84, 0x7f, 0x06, 0x50, 0xb4, 0xdd, 0x90, 0xab, 0x15,
0xca, 0x4a, 0x73, 0xbd, 0xba, 0x21, 0xd9, 0xbc, 0x8b, 0xe4, 0x3b, 0x64, 0xd9, 0x20, 0x2f, 0xf7,
0x9b, 0xaa, 0x04, 0x19, 0xfb, 0xad, 0xdc, 0xa8, 0xd3, 0x1b, 0xdf, 0xa1, 0x21, 0x8d, 0x62, 0xcb,
0xcd, 0xa6, 0x6e, 0x79, 0x6c, 0x05, 0x03, 0x3c, 0x2d, 0xb4, 0xd6, 0x90, 0xad, 0x3a, 0x2e, 0xb5,
0xa7, 0x45, 0xb5, 0xcf, 0xc3, 0xbe, 0x8a, 0xac, 0x56, 0xc9, 0x4a, 0x99, 0x55, 0x46, 0x5e, 0xe1,
0x1f, 0x2f, 0x68, 0x9d, 0x0d, 0x44, 0xa7, 0x55, 0x6d, 0xf3, 0xe8, 0x5d, 0x1f, 0x37, 0x3c, 0xe6,
0x64, 0x12, 0x89, 0x20, 0x6e, 0x2a, 0x6e, 0x70, 0xde, 0xcf, 0x60, 0x18, 0xdc, 0x68, 0x7b, 0xe8,
0x5d, 0xad, 0x19, 0x11, 0xd4, 0xd7, 0x91, 0x7a, 0x9b, 0x2c, 0xa9, 0x90, 0x88, 0xb4, 0xb8, 0x4d,
0xd4, 0x43, 0x93, 0x61, 0x93, 0x72, 0x37, 0x82, 0x11, 0x03, 0x2b, 0x3d, 0x09, 0x95, 0x18, 0xa8,
0xba, 0x0e, 0xc8, 0x1f, 0x9a, 0xcd, 0x0d, 0xf2, 0xb1, 0xd5, 0x9e, 0xf8, 0x3a, 0x5a, 0xd9, 0x2d,
0x63, 0x5f, 0x50, 0xed, 0x1b, 0xc8, 0xf9, 0x2a, 0xd9, 0x2c, 0x73, 0x16, 0xaf, 0xb1, 0xe4, 0x17,
0x16, 0xac, 0xd6, 0xbc, 0xf5, 0x15, 0x12, 0x8c, 0x7f, 0x99, 0x2c, 0x24, 0x98, 0xf4, 0x58, 0x68,
0xa3, 0x04, 0x5b, 0x36, 0x4a, 0xe0, 0xfa, 0xbe, 0x92, 0x40, 0xe4, 0xb5, 0xcc, 0x33, 0xff, 0xd4,
0x82, 0x8d, 0xfa, 0x77, 0x3d, 0x72, 0x47, 0xb5, 0x43, 0x4f, 0x7a, 0x71, 0xec, 0xdd, 0xbd, 0x08,
0x4d, 0x48, 0x73, 0x07, 0xa5, 0xb9, 0x61, 0xf7, 0x98, 0x34, 0x29, 0xe2, 0xd6, 0x09, 0x74, 0x86,
0xc5, 0x10, 0xf3, 0xe5, 0x8c, 0x68, 0xb9, 0x45, 0xfd, 0x03, 0x63, 0xef, 0xd6, 0x04, 0x0c, 0x33,
0x7c, 0x91, 0x75, 0x61, 0x10, 0x7c, 0x6e, 0x52, 0x4f, 0x70, 0x62, 0x8f, 0x16, 0x2f, 0x53, 0xc6,
0x1e, 0xad, 0x3c, 0xb6, 0x19, 0x7b, 0xb4, 0xfa, 0xfe, 0x55, 0xd9, 0xa3, 0xc8, 0x0c, 0xdf, 0xc2,
0xc8, 0x97, 0xb8, 0x6d, 0x44, 0x25, 0xae, 0x5b, 0xde, 0xea, 0x59, 0xdd, 0xb6, 0x31, 0x6b, 0x6d,
0x95, 0x50, 0xc9, 0x0b, 0x7c, 0x4c, 0x7b, 0x0e, 0x2c, 0x48, 0x74, 0xb2, 0x59, 0x26, 0x20, 0x29,
0xd7, 0x3e, 0xa6, 0xd8, 0x9b, 0x48, 0x74, 0xc5, 0x6e, 0xe9, 0x44, 0x19, 0xcd, 0x23, 0x68, 0x6a,
0x0f, 0x07, 0x44, 0x05, 0xd9, 0xea, 0x3b, 0x49, 0xef, 0x5a, 0xed, 0x98, 0x19, 0x4a, 0xec, 0x36,
0x63, 0x90, 0x21, 0x82, 0xe2, 0xf1, 0xfb, 0xb0, 0x64, 0xd4, 0xee, 0x0b, 0xe5, 0xd7, 0xbd, 0x2e,
0x14, 0xca, 0xaf, 0x2d, 0xf8, 0xcb, 0x44, 0xd3, 0x46, 0xe5, 0x67, 0x02, 0x45, 0xf1, 0xfa, 0x39,
0x2c, 0xaa, 0x92, 0x79, 0xa1, 0xff, 0x72, 0x15, 0xfd, 0x22, 0x1e, 0x86, 0x0d, 0xce, 0xd8, 0xe4,
0xa3, 0x78, 0x78, 0x24, 0xf4, 0xa5, 0x15, 0x84, 0x0b, 0x7d, 0x55, 0xab, 0xe2, 0x85, 0xbe, 0xea,
0x2a, 0xc8, 0x86, 0xbe, 0x3c, 0x44, 0x50, 0x6b, 0x48, 0xa1, 0x5d, 0x2a, 0xc4, 0x16, 0x69, 0x45,
0x7d, 0xd9, 0xb9, 0x48, 0x2b, 0xc6, 0x54, 0x70, 0xcd, 0xc4, 0x8d, 0xf3, 0x73, 0xc3, 0xb0, 0xf0,
0x2d, 0x1e, 0xee, 0x79, 0x99, 0xd2, 0xf0, 0x5b, 0xa3, 0x1e, 0x6b, 0xf8, 0xad, 0x59, 0xd3, 0xac,
0x84, 0x7b, 0xca, 0x69, 0xbd, 0x80, 0x05, 0x59, 0x1f, 0x2b, 0x9c, 0xb6, 0x54, 0x19, 0xec, 0x75,
0xab, 0x03, 0x82, 0xaa, 0xe1, 0xb8, 0xae, 0xef, 0x23, 0x55, 0x61, 0x08, 0xad, 0x5a, 0x56, 0x18,
0xa2, 0x5a, 0x68, 0x2b, 0x0c, 0x51, 0x57, 0x5e, 0x33, 0x0c, 0xc1, 0x23, 0x97, 0xe2, 0xf1, 0x77,
0x16, 0xdc, 0xba, 0xb0, 0xd8, 0x45, 0xde, 0xbb, 0x44, 0x5d, 0x8c, 0x0b, 0xf4, 0xfe, 0xa5, 0x2b,
0x69, 0xf6, 0x3d, 0x14, 0xd3, 0xb6, 0xb7, 0xe5, 0x61, 0x8a, 0xd3, 0x7c, 0x8e, 0xae, 0xca, 0x6a,
0x4c, 0xe8, 0xbf, 0xb1, 0xf8, 0x9f, 0xa6, 0x4d, 0xa0, 0x4b, 0x76, 0xa6, 0x14, 0x40, 0x0a, 0xfc,
0x70, 0x6a, 0x7c, 0x21, 0xee, 0x5d, 0x14, 0xf7, 0xa6, 0x7d, 0x6d, 0x82, 0xb8, 0x4c, 0xd8, 0x3f,
0x80, 0x6b, 0xaa, 0x28, 0x66, 0xd0, 0xfd, 0x6c, 0x14, 0xf9, 0x59, 0x71, 0x2f, 0x1d, 0x53, 0x39,
0x2b, 0x1c, 0xa7, 0x5c, 0x2b, 0x31, 0xcf, 0xc7, 0x33, 0x31, 0xca, 0xc5, 0x38, 0x66, 0xb4, 0x19,
0xf7, 0x04, 0x56, 0xe4, 0xbc, 0xcf, 0x02, 0x37, 0xff, 0xd6, 0x3c, 0x6f, 0x22, 0xcf, 0x9e, 0xbd,
0xae, 0xf3, 0x3c, 0x0e, 0xdc, 0x5c, 0x71, 0xcc, 0xf0, 0x8d, 0xc3, 0x28, 0x83, 0xe8, 0x97, 0xef,
0xda, 0x02, 0x89, 0x7e, 0xf9, 0xae, 0xaf, 0xd8, 0x98, 0x97, 0xef, 0x01, 0xcd, 0x79, 0x05, 0xc5,
0x17, 0x0c, 0x4e, 0xa1, 0x73, 0x38, 0x96, 0xe9, 0xe1, 0xaf, 0xcc, 0x54, 0xe4, 0x40, 0x36, 0x32,
0xcd, 0x4a, 0x4c, 0x3f, 0xb2, 0x1e, 0x1c, 0xcd, 0xe1, 0xdf, 0xdc, 0x7e, 0xf0, 0x7f, 0x01, 0x00,
0x00, 0xff, 0xff, 0x0a, 0xe0, 0x50, 0x4a, 0xa6, 0x3b, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -4815,6 +4975,8 @@ type GoCryptoTraderClient interface {
GetCryptocurrencyDepositAddress(ctx context.Context, in *GetCryptocurrencyDepositAddressRequest, opts ...grpc.CallOption) (*GetCryptocurrencyDepositAddressResponse, error)
WithdrawCryptocurrencyFunds(ctx context.Context, in *WithdrawCurrencyRequest, opts ...grpc.CallOption) (*WithdrawResponse, error)
WithdrawFiatFunds(ctx context.Context, in *WithdrawCurrencyRequest, opts ...grpc.CallOption) (*WithdrawResponse, error)
GetLoggerDetails(ctx context.Context, in *GetLoggerDetailsRequest, opts ...grpc.CallOption) (*GetLoggerDetailsResponse, error)
SetLoggerDetails(ctx context.Context, in *SetLoggerDetailsRequest, opts ...grpc.CallOption) (*GetLoggerDetailsResponse, error)
}
type goCryptoTraderClient struct {
@@ -5167,6 +5329,24 @@ func (c *goCryptoTraderClient) WithdrawFiatFunds(ctx context.Context, in *Withdr
return out, nil
}
func (c *goCryptoTraderClient) GetLoggerDetails(ctx context.Context, in *GetLoggerDetailsRequest, opts ...grpc.CallOption) (*GetLoggerDetailsResponse, error) {
out := new(GetLoggerDetailsResponse)
err := c.cc.Invoke(ctx, "/gctrpc.GoCryptoTrader/GetLoggerDetails", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *goCryptoTraderClient) SetLoggerDetails(ctx context.Context, in *SetLoggerDetailsRequest, opts ...grpc.CallOption) (*GetLoggerDetailsResponse, error) {
out := new(GetLoggerDetailsResponse)
err := c.cc.Invoke(ctx, "/gctrpc.GoCryptoTrader/SetLoggerDetails", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// GoCryptoTraderServer is the server API for GoCryptoTrader service.
type GoCryptoTraderServer interface {
GetInfo(context.Context, *GetInfoRequest) (*GetInfoResponse, error)
@@ -5207,6 +5387,8 @@ type GoCryptoTraderServer interface {
GetCryptocurrencyDepositAddress(context.Context, *GetCryptocurrencyDepositAddressRequest) (*GetCryptocurrencyDepositAddressResponse, error)
WithdrawCryptocurrencyFunds(context.Context, *WithdrawCurrencyRequest) (*WithdrawResponse, error)
WithdrawFiatFunds(context.Context, *WithdrawCurrencyRequest) (*WithdrawResponse, error)
GetLoggerDetails(context.Context, *GetLoggerDetailsRequest) (*GetLoggerDetailsResponse, error)
SetLoggerDetails(context.Context, *SetLoggerDetailsRequest) (*GetLoggerDetailsResponse, error)
}
func RegisterGoCryptoTraderServer(s *grpc.Server, srv GoCryptoTraderServer) {
@@ -5897,6 +6079,42 @@ func _GoCryptoTrader_WithdrawFiatFunds_Handler(srv interface{}, ctx context.Cont
return interceptor(ctx, in, info, handler)
}
func _GoCryptoTrader_GetLoggerDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetLoggerDetailsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GoCryptoTraderServer).GetLoggerDetails(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/gctrpc.GoCryptoTrader/GetLoggerDetails",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GoCryptoTraderServer).GetLoggerDetails(ctx, req.(*GetLoggerDetailsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _GoCryptoTrader_SetLoggerDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetLoggerDetailsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(GoCryptoTraderServer).SetLoggerDetails(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/gctrpc.GoCryptoTrader/SetLoggerDetails",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GoCryptoTraderServer).SetLoggerDetails(ctx, req.(*SetLoggerDetailsRequest))
}
return interceptor(ctx, in, info, handler)
}
var _GoCryptoTrader_serviceDesc = grpc.ServiceDesc{
ServiceName: "gctrpc.GoCryptoTrader",
HandlerType: (*GoCryptoTraderServer)(nil),
@@ -6053,6 +6271,14 @@ var _GoCryptoTrader_serviceDesc = grpc.ServiceDesc{
MethodName: "WithdrawFiatFunds",
Handler: _GoCryptoTrader_WithdrawFiatFunds_Handler,
},
{
MethodName: "GetLoggerDetails",
Handler: _GoCryptoTrader_GetLoggerDetails_Handler,
},
{
MethodName: "SetLoggerDetails",
Handler: _GoCryptoTrader_SetLoggerDetails_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "rpc.proto",

View File

@@ -9,13 +9,13 @@ It translates gRPC into RESTful JSON APIs.
package gctrpc
import (
"context"
"io"
"net/http"
"github.com/golang/protobuf/proto"
"github.com/grpc-ecosystem/grpc-gateway/runtime"
"github.com/grpc-ecosystem/grpc-gateway/utilities"
"golang.org/x/net/context"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/grpclog"
@@ -54,7 +54,10 @@ func request_GoCryptoTrader_EnableSubsystem_0(ctx context.Context, marshaler run
var protoReq GenericSubsystemRequest
var metadata runtime.ServerMetadata
if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_GoCryptoTrader_EnableSubsystem_0); err != nil {
if err := req.ParseForm(); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_GoCryptoTrader_EnableSubsystem_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -71,7 +74,10 @@ func request_GoCryptoTrader_DisableSubsystem_0(ctx context.Context, marshaler ru
var protoReq GenericSubsystemRequest
var metadata runtime.ServerMetadata
if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_GoCryptoTrader_DisableSubsystem_0); err != nil {
if err := req.ParseForm(); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_GoCryptoTrader_DisableSubsystem_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -106,7 +112,10 @@ func request_GoCryptoTrader_GetExchanges_0(ctx context.Context, marshaler runtim
var protoReq GetExchangesRequest
var metadata runtime.ServerMetadata
if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_GoCryptoTrader_GetExchanges_0); err != nil {
if err := req.ParseForm(); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_GoCryptoTrader_GetExchanges_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -140,7 +149,10 @@ func request_GoCryptoTrader_GetExchangeInfo_0(ctx context.Context, marshaler run
var protoReq GenericExchangeNameRequest
var metadata runtime.ServerMetadata
if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_GoCryptoTrader_GetExchangeInfo_0); err != nil {
if err := req.ParseForm(); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_GoCryptoTrader_GetExchangeInfo_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -157,7 +169,10 @@ func request_GoCryptoTrader_GetExchangeOTPCode_0(ctx context.Context, marshaler
var protoReq GenericExchangeNameRequest
var metadata runtime.ServerMetadata
if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_GoCryptoTrader_GetExchangeOTPCode_0); err != nil {
if err := req.ParseForm(); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_GoCryptoTrader_GetExchangeOTPCode_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -252,7 +267,10 @@ func request_GoCryptoTrader_GetAccountInfo_0(ctx context.Context, marshaler runt
var protoReq GetAccountInfoRequest
var metadata runtime.ServerMetadata
if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_GoCryptoTrader_GetAccountInfo_0); err != nil {
if err := req.ParseForm(); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_GoCryptoTrader_GetAccountInfo_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -570,6 +588,43 @@ func request_GoCryptoTrader_WithdrawFiatFunds_0(ctx context.Context, marshaler r
}
var (
filter_GoCryptoTrader_GetLoggerDetails_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
)
func request_GoCryptoTrader_GetLoggerDetails_0(ctx context.Context, marshaler runtime.Marshaler, client GoCryptoTraderClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq GetLoggerDetailsRequest
var metadata runtime.ServerMetadata
if err := req.ParseForm(); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_GoCryptoTrader_GetLoggerDetails_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
msg, err := client.GetLoggerDetails(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
return msg, metadata, err
}
func request_GoCryptoTrader_SetLoggerDetails_0(ctx context.Context, marshaler runtime.Marshaler, client GoCryptoTraderClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq SetLoggerDetailsRequest
var metadata runtime.ServerMetadata
newReader, berr := utilities.IOReaderFactory(req.Body)
if berr != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
}
if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
msg, err := client.SetLoggerDetails(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
return msg, metadata, err
}
// RegisterGoCryptoTraderHandlerFromEndpoint is same as RegisterGoCryptoTraderHandler but
// automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterGoCryptoTraderHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) {
@@ -1368,85 +1423,129 @@ func RegisterGoCryptoTraderHandlerClient(ctx context.Context, mux *runtime.Serve
})
mux.Handle("GET", pattern_GoCryptoTrader_GetLoggerDetails_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateContext(ctx, mux, req)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
return
}
resp, md, err := request_GoCryptoTrader_GetLoggerDetails_0(rctx, inboundMarshaler, client, req, pathParams)
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
return
}
forward_GoCryptoTrader_GetLoggerDetails_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
})
mux.Handle("POST", pattern_GoCryptoTrader_SetLoggerDetails_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateContext(ctx, mux, req)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
return
}
resp, md, err := request_GoCryptoTrader_SetLoggerDetails_0(rctx, inboundMarshaler, client, req, pathParams)
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
return
}
forward_GoCryptoTrader_SetLoggerDetails_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
})
return nil
}
var (
pattern_GoCryptoTrader_GetInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getinfo"}, ""))
pattern_GoCryptoTrader_GetInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getinfo"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetSubsystems_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getsusbsystems"}, ""))
pattern_GoCryptoTrader_GetSubsystems_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getsusbsystems"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_EnableSubsystem_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "enablesubsystem"}, ""))
pattern_GoCryptoTrader_EnableSubsystem_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "enablesubsystem"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_DisableSubsystem_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "disablesubsystem"}, ""))
pattern_GoCryptoTrader_DisableSubsystem_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "disablesubsystem"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetRPCEndpoints_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getrpcendpoints"}, ""))
pattern_GoCryptoTrader_GetRPCEndpoints_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getrpcendpoints"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetCommunicationRelayers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getcommunicationrelayers"}, ""))
pattern_GoCryptoTrader_GetCommunicationRelayers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getcommunicationrelayers"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetExchanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getexchanges"}, ""))
pattern_GoCryptoTrader_GetExchanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getexchanges"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_DisableExchange_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "disableexchange"}, ""))
pattern_GoCryptoTrader_DisableExchange_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "disableexchange"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetExchangeInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getexchangeinfo"}, ""))
pattern_GoCryptoTrader_GetExchangeInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getexchangeinfo"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetExchangeOTPCode_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getexchangeotp"}, ""))
pattern_GoCryptoTrader_GetExchangeOTPCode_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getexchangeotp"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetExchangeOTPCodes_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getexchangeotps"}, ""))
pattern_GoCryptoTrader_GetExchangeOTPCodes_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getexchangeotps"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_EnableExchange_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "enableexchange"}, ""))
pattern_GoCryptoTrader_EnableExchange_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "enableexchange"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetTicker_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getticker"}, ""))
pattern_GoCryptoTrader_GetTicker_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getticker"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetTickers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "gettickers"}, ""))
pattern_GoCryptoTrader_GetTickers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "gettickers"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetOrderbook_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getorderbook"}, ""))
pattern_GoCryptoTrader_GetOrderbook_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getorderbook"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetOrderbooks_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getorderbooks"}, ""))
pattern_GoCryptoTrader_GetOrderbooks_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getorderbooks"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetAccountInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getaccountinfo"}, ""))
pattern_GoCryptoTrader_GetAccountInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getaccountinfo"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetConfig_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getconfig"}, ""))
pattern_GoCryptoTrader_GetConfig_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getconfig"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetPortfolio_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getportfolio"}, ""))
pattern_GoCryptoTrader_GetPortfolio_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getportfolio"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetPortfolioSummary_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getportfoliosummary"}, ""))
pattern_GoCryptoTrader_GetPortfolioSummary_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getportfoliosummary"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_AddPortfolioAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "addportfolioaddress"}, ""))
pattern_GoCryptoTrader_AddPortfolioAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "addportfolioaddress"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_RemovePortfolioAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "removeportfolioaddress"}, ""))
pattern_GoCryptoTrader_RemovePortfolioAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "removeportfolioaddress"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetForexProviders_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getforexproviders"}, ""))
pattern_GoCryptoTrader_GetForexProviders_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getforexproviders"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetForexRates_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getforexrates"}, ""))
pattern_GoCryptoTrader_GetForexRates_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getforexrates"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetOrders_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getorders"}, ""))
pattern_GoCryptoTrader_GetOrders_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getorders"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetOrder_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getorder"}, ""))
pattern_GoCryptoTrader_GetOrder_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getorder"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_SubmitOrder_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "submitorder"}, ""))
pattern_GoCryptoTrader_SubmitOrder_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "submitorder"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_SimulateOrder_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "simulateorder"}, ""))
pattern_GoCryptoTrader_SimulateOrder_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "simulateorder"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_WhaleBomb_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "whalebomb"}, ""))
pattern_GoCryptoTrader_WhaleBomb_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "whalebomb"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_CancelOrder_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "cancelorder"}, ""))
pattern_GoCryptoTrader_CancelOrder_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "cancelorder"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_CancelAllOrders_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "cancelallorders"}, ""))
pattern_GoCryptoTrader_CancelAllOrders_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "cancelallorders"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetEvents_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getevents"}, ""))
pattern_GoCryptoTrader_GetEvents_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getevents"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_AddEvent_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "addevent"}, ""))
pattern_GoCryptoTrader_AddEvent_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "addevent"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_RemoveEvent_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "removeevent"}, ""))
pattern_GoCryptoTrader_RemoveEvent_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "removeevent"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetCryptocurrencyDepositAddresses_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getcryptodepositaddresses"}, ""))
pattern_GoCryptoTrader_GetCryptocurrencyDepositAddresses_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getcryptodepositaddresses"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetCryptocurrencyDepositAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getcryptodepositaddress"}, ""))
pattern_GoCryptoTrader_GetCryptocurrencyDepositAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getcryptodepositaddress"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_WithdrawCryptocurrencyFunds_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "withdrawcryptofunds"}, ""))
pattern_GoCryptoTrader_WithdrawCryptocurrencyFunds_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "withdrawcryptofunds"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_WithdrawFiatFunds_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "withdrawfiatfunds"}, ""))
pattern_GoCryptoTrader_WithdrawFiatFunds_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "withdrawfiatfunds"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_GetLoggerDetails_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "getloggerdetails"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_GoCryptoTrader_SetLoggerDetails_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "setloggerdetails"}, "", runtime.AssumeColonVerbOpt(true)))
)
var (
@@ -1525,4 +1624,8 @@ var (
forward_GoCryptoTrader_WithdrawCryptocurrencyFunds_0 = runtime.ForwardResponseMessage
forward_GoCryptoTrader_WithdrawFiatFunds_0 = runtime.ForwardResponseMessage
forward_GoCryptoTrader_GetLoggerDetails_0 = runtime.ForwardResponseMessage
forward_GoCryptoTrader_SetLoggerDetails_0 = runtime.ForwardResponseMessage
)

View File

@@ -68,7 +68,7 @@ message GetExchangeOTPReponse {
string otp_code = 1;
}
message GetExchangeOTPsRequest {}
message GetExchangeOTPsRequest {}
message GetExchangeOTPsResponse {
map<string, string> otp_codes = 1;
@@ -147,7 +147,7 @@ message OrderbookResponse {
repeated OrderbookItem bids = 3;
repeated OrderbookItem asks = 4;
int64 last_updated = 5;
string asset_type = 6;
string asset_type = 6;
}
message GetOrderbooksRequest {}
@@ -225,7 +225,7 @@ message OfflineCoins {
}
message OnlineCoins {
map<string, OnlineCoinSummary> coins = 1;
map<string, OnlineCoinSummary> coins = 1;
}
message GetPortfolioSummaryResponse {
@@ -371,7 +371,7 @@ message CancelAllOrdersResponse {
string exchange = 1;
map<string, string> order_status = 2;
}
repeated Orders orders = 1;
repeated Orders orders = 1;
}
message GetEventsRequest {}
@@ -455,6 +455,22 @@ message WithdrawResponse {
string result = 1;
}
message GetLoggerDetailsRequest {
string logger = 1;
}
message GetLoggerDetailsResponse{
bool info = 1;
bool debug = 2;
bool warn = 3;
bool error = 4;
}
message SetLoggerDetailsRequest {
string logger = 1;
string level = 2;
}
service GoCryptoTrader {
rpc GetInfo (GetInfoRequest) returns (GetInfoResponse) {
option (google.api.http) = {
@@ -703,4 +719,17 @@ service GoCryptoTrader {
body: "*"
};
}
rpc GetLoggerDetails(GetLoggerDetailsRequest) returns (GetLoggerDetailsResponse) {
option (google.api.http) = {
get: "/v1/getloggerdetails"
};
}
rpc SetLoggerDetails(SetLoggerDetailsRequest) returns (GetLoggerDetailsResponse) {
option (google.api.http) = {
post: "/v1/setloggerdetails",
body: "*"
};
}
}

View File

@@ -480,6 +480,30 @@
]
}
},
"/v1/getloggerdetails": {
"get": {
"operationId": "GetLoggerDetails",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/gctrpcGetLoggerDetailsResponse"
}
}
},
"parameters": [
{
"name": "logger",
"in": "query",
"required": false,
"type": "string"
}
],
"tags": [
"GoCryptoTrader"
]
}
},
"/v1/getorder": {
"post": {
"operationId": "GetOrder",
@@ -732,6 +756,32 @@
]
}
},
"/v1/setloggerdetails": {
"post": {
"operationId": "SetLoggerDetails",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/gctrpcGetLoggerDetailsResponse"
}
}
},
"parameters": [
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/gctrpcSetLoggerDetailsRequest"
}
}
],
"tags": [
"GoCryptoTrader"
]
}
},
"/v1/simulateorder": {
"post": {
"operationId": "SimulateOrder",
@@ -1371,6 +1421,27 @@
}
}
},
"gctrpcGetLoggerDetailsResponse": {
"type": "object",
"properties": {
"info": {
"type": "boolean",
"format": "boolean"
},
"debug": {
"type": "boolean",
"format": "boolean"
},
"warn": {
"type": "boolean",
"format": "boolean"
},
"error": {
"type": "boolean",
"format": "boolean"
}
}
},
"gctrpcGetOrderRequest": {
"type": "object",
"properties": {
@@ -1742,6 +1813,17 @@
"gctrpcRemovePortfolioAddressResponse": {
"type": "object"
},
"gctrpcSetLoggerDetailsRequest": {
"type": "object",
"properties": {
"logger": {
"type": "string"
},
"level": {
"type": "string"
}
}
},
"gctrpcSimulateOrderRequest": {
"type": "object",
"properties": {