diff --git a/auctioneer/client.go b/auctioneer/client.go index cbac82e..a5f97fb 100644 --- a/auctioneer/client.go +++ b/auctioneer/client.go @@ -1103,6 +1103,22 @@ func (c *Client) FeeQuote(ctx context.Context) (*terms.LinearFeeSchedule, error) ), nil } +// Terms returns the current dynamic auctioneer terms like max account size, max +// order duration in blocks and the auction fee schedule. +func (c *Client) Terms(ctx context.Context) (*terms.AuctioneerTerms, error) { + resp, err := c.client.Terms(ctx, &clmrpc.TermsRequest{}) + if err != nil { + return nil, err + } + + return &terms.AuctioneerTerms{ + MaxAccountValue: btcutil.Amount(resp.MaxAccountValue), + MaxOrderDuration: resp.MaxOrderDurationBlocks, + OrderExecBaseFee: btcutil.Amount(resp.ExecutionFee.BaseFee), + OrderExecFeeRate: btcutil.Amount(resp.ExecutionFee.FeeRate), + }, nil +} + // BatchSnapshot returns information about a target batch including the // clearing price of the batch, and the set of orders matched within the batch. // diff --git a/clmrpc/auctioneer.pb.go b/clmrpc/auctioneer.pb.go index 9066372..7cb9c2b 100644 --- a/clmrpc/auctioneer.pb.go +++ b/clmrpc/auctioneer.pb.go @@ -2985,6 +2985,98 @@ func (m *FeeQuoteResponse) GetExecutionFee() *ExecutionFee { return nil } +type TermsRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TermsRequest) Reset() { *m = TermsRequest{} } +func (m *TermsRequest) String() string { return proto.CompactTextString(m) } +func (*TermsRequest) ProtoMessage() {} +func (*TermsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_f3883418d94ca37f, []int{41} +} + +func (m *TermsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TermsRequest.Unmarshal(m, b) +} +func (m *TermsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TermsRequest.Marshal(b, m, deterministic) +} +func (m *TermsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_TermsRequest.Merge(m, src) +} +func (m *TermsRequest) XXX_Size() int { + return xxx_messageInfo_TermsRequest.Size(m) +} +func (m *TermsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_TermsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_TermsRequest proto.InternalMessageInfo + +type TermsResponse struct { + // + //The maximum account size in satoshis currently allowed by the auctioneer. + MaxAccountValue uint64 `protobuf:"varint,1,opt,name=max_account_value,json=maxAccountValue,proto3" json:"max_account_value,omitempty"` + // + //The maximum order duration in blocks currently allowed by the auctioneer. + MaxOrderDurationBlocks uint32 `protobuf:"varint,2,opt,name=max_order_duration_blocks,json=maxOrderDurationBlocks,proto3" json:"max_order_duration_blocks,omitempty"` + // + //The execution fee charged per matched order. + ExecutionFee *ExecutionFee `protobuf:"bytes,3,opt,name=execution_fee,json=executionFee,proto3" json:"execution_fee,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TermsResponse) Reset() { *m = TermsResponse{} } +func (m *TermsResponse) String() string { return proto.CompactTextString(m) } +func (*TermsResponse) ProtoMessage() {} +func (*TermsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_f3883418d94ca37f, []int{42} +} + +func (m *TermsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TermsResponse.Unmarshal(m, b) +} +func (m *TermsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TermsResponse.Marshal(b, m, deterministic) +} +func (m *TermsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_TermsResponse.Merge(m, src) +} +func (m *TermsResponse) XXX_Size() int { + return xxx_messageInfo_TermsResponse.Size(m) +} +func (m *TermsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_TermsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_TermsResponse proto.InternalMessageInfo + +func (m *TermsResponse) GetMaxAccountValue() uint64 { + if m != nil { + return m.MaxAccountValue + } + return 0 +} + +func (m *TermsResponse) GetMaxOrderDurationBlocks() uint32 { + if m != nil { + return m.MaxOrderDurationBlocks + } + return 0 +} + +func (m *TermsResponse) GetExecutionFee() *ExecutionFee { + if m != nil { + return m.ExecutionFee + } + return nil +} + type RelevantBatchRequest struct { // The unique identifier of the batch. Id []byte `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -3001,7 +3093,7 @@ func (m *RelevantBatchRequest) Reset() { *m = RelevantBatchRequest{} } func (m *RelevantBatchRequest) String() string { return proto.CompactTextString(m) } func (*RelevantBatchRequest) ProtoMessage() {} func (*RelevantBatchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{41} + return fileDescriptor_f3883418d94ca37f, []int{43} } func (m *RelevantBatchRequest) XXX_Unmarshal(b []byte) error { @@ -3068,7 +3160,7 @@ func (m *RelevantBatch) Reset() { *m = RelevantBatch{} } func (m *RelevantBatch) String() string { return proto.CompactTextString(m) } func (*RelevantBatch) ProtoMessage() {} func (*RelevantBatch) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{42} + return fileDescriptor_f3883418d94ca37f, []int{44} } func (m *RelevantBatch) XXX_Unmarshal(b []byte) error { @@ -3150,7 +3242,7 @@ type ExecutionFee struct { //The base fee in satoshis charged per order, regardless of the matched size. BaseFee uint64 `protobuf:"varint,1,opt,name=base_fee,json=baseFee,proto3" json:"base_fee,omitempty"` // - //The fee rate in parts per million + //The fee rate in parts per million. FeeRate uint64 `protobuf:"varint,2,opt,name=fee_rate,json=feeRate,proto3" json:"fee_rate,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -3161,7 +3253,7 @@ func (m *ExecutionFee) Reset() { *m = ExecutionFee{} } func (m *ExecutionFee) String() string { return proto.CompactTextString(m) } func (*ExecutionFee) ProtoMessage() {} func (*ExecutionFee) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{43} + return fileDescriptor_f3883418d94ca37f, []int{45} } func (m *ExecutionFee) XXX_Unmarshal(b []byte) error { @@ -3208,7 +3300,7 @@ func (m *NodeAddress) Reset() { *m = NodeAddress{} } func (m *NodeAddress) String() string { return proto.CompactTextString(m) } func (*NodeAddress) ProtoMessage() {} func (*NodeAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{44} + return fileDescriptor_f3883418d94ca37f, []int{46} } func (m *NodeAddress) XXX_Unmarshal(b []byte) error { @@ -3259,7 +3351,7 @@ func (m *OutPoint) Reset() { *m = OutPoint{} } func (m *OutPoint) String() string { return proto.CompactTextString(m) } func (*OutPoint) ProtoMessage() {} func (*OutPoint) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{45} + return fileDescriptor_f3883418d94ca37f, []int{47} } func (m *OutPoint) XXX_Unmarshal(b []byte) error { @@ -3312,7 +3404,7 @@ func (m *AskSnapshot) Reset() { *m = AskSnapshot{} } func (m *AskSnapshot) String() string { return proto.CompactTextString(m) } func (*AskSnapshot) ProtoMessage() {} func (*AskSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{46} + return fileDescriptor_f3883418d94ca37f, []int{48} } func (m *AskSnapshot) XXX_Unmarshal(b []byte) error { @@ -3379,7 +3471,7 @@ func (m *BidSnapshot) Reset() { *m = BidSnapshot{} } func (m *BidSnapshot) String() string { return proto.CompactTextString(m) } func (*BidSnapshot) ProtoMessage() {} func (*BidSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{47} + return fileDescriptor_f3883418d94ca37f, []int{49} } func (m *BidSnapshot) XXX_Unmarshal(b []byte) error { @@ -3448,7 +3540,7 @@ func (m *MatchedOrderSnapshot) Reset() { *m = MatchedOrderSnapshot{} } func (m *MatchedOrderSnapshot) String() string { return proto.CompactTextString(m) } func (*MatchedOrderSnapshot) ProtoMessage() {} func (*MatchedOrderSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{48} + return fileDescriptor_f3883418d94ca37f, []int{50} } func (m *MatchedOrderSnapshot) XXX_Unmarshal(b []byte) error { @@ -3516,7 +3608,7 @@ func (m *BatchSnapshotRequest) Reset() { *m = BatchSnapshotRequest{} } func (m *BatchSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*BatchSnapshotRequest) ProtoMessage() {} func (*BatchSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{49} + return fileDescriptor_f3883418d94ca37f, []int{51} } func (m *BatchSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -3568,7 +3660,7 @@ func (m *BatchSnapshotResponse) Reset() { *m = BatchSnapshotResponse{} } func (m *BatchSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*BatchSnapshotResponse) ProtoMessage() {} func (*BatchSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f3883418d94ca37f, []int{50} + return fileDescriptor_f3883418d94ca37f, []int{52} } func (m *BatchSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -3691,6 +3783,8 @@ func init() { proto.RegisterType((*ServerOrderStateResponse)(nil), "clmrpc.ServerOrderStateResponse") proto.RegisterType((*FeeQuoteRequest)(nil), "clmrpc.FeeQuoteRequest") proto.RegisterType((*FeeQuoteResponse)(nil), "clmrpc.FeeQuoteResponse") + proto.RegisterType((*TermsRequest)(nil), "clmrpc.TermsRequest") + proto.RegisterType((*TermsResponse)(nil), "clmrpc.TermsResponse") proto.RegisterType((*RelevantBatchRequest)(nil), "clmrpc.RelevantBatchRequest") proto.RegisterType((*RelevantBatch)(nil), "clmrpc.RelevantBatch") proto.RegisterMapType((map[string]*MatchedOrder)(nil), "clmrpc.RelevantBatch.MatchedOrdersEntry") @@ -3707,213 +3801,218 @@ func init() { func init() { proto.RegisterFile("auctioneer.proto", fileDescriptor_f3883418d94ca37f) } var fileDescriptor_f3883418d94ca37f = []byte{ - // 3290 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x1a, 0x4b, 0x73, 0xdb, 0xc6, - 0x59, 0x7c, 0x48, 0x24, 0x3f, 0x90, 0x12, 0xb4, 0x92, 0x6d, 0x99, 0xb6, 0x62, 0x19, 0xae, 0x1b, - 0xc7, 0x71, 0x95, 0x58, 0x69, 0x26, 0x0f, 0xb7, 0x9e, 0xf2, 0x01, 0x45, 0xb4, 0x25, 0x92, 0x05, - 0x28, 0xc5, 0xe9, 0x05, 0x03, 0x12, 0x2b, 0x12, 0x15, 0x08, 0x30, 0x00, 0x28, 0x4b, 0x9d, 0x4e, - 0x67, 0xda, 0xe9, 0xa9, 0xd7, 0xb6, 0xc7, 0xce, 0xf4, 0x07, 0xe4, 0xd2, 0x4b, 0x8f, 0xcd, 0xff, - 0xe8, 0xa4, 0xbd, 0xf4, 0x4f, 0x74, 0xa6, 0x97, 0xce, 0x3e, 0x00, 0x02, 0x20, 0x28, 0xb9, 0xc9, - 0xf4, 0x62, 0x73, 0xbf, 0xc7, 0xee, 0xb7, 0xdf, 0x7e, 0x6f, 0x08, 0x44, 0x7d, 0x3a, 0xf0, 0x4d, - 0xc7, 0xc6, 0xd8, 0xdd, 0x9d, 0xb8, 0x8e, 0xef, 0xa0, 0x95, 0x81, 0x35, 0x76, 0x27, 0x03, 0xe9, - 0x37, 0x19, 0xb8, 0xa1, 0x60, 0x0f, 0xbb, 0xe7, 0xb8, 0x36, 0x18, 0x38, 0x53, 0xdb, 0x57, 0xf0, - 0x97, 0x53, 0xec, 0xf9, 0xe8, 0x01, 0x54, 0x74, 0x06, 0xd1, 0xce, 0x75, 0x6b, 0x8a, 0xb7, 0x32, - 0x3b, 0x99, 0x47, 0x79, 0xa5, 0xcc, 0x81, 0x27, 0x04, 0x86, 0x1e, 0xc2, 0x6a, 0x40, 0x84, 0x2f, - 0x26, 0xa6, 0x7b, 0xb9, 0x95, 0xdd, 0xc9, 0x3c, 0xaa, 0x28, 0x01, 0xab, 0x4c, 0x81, 0x68, 0x1b, - 0xc0, 0x77, 0x75, 0x03, 0xbb, 0xda, 0x19, 0xbe, 0xdc, 0xca, 0xed, 0x64, 0x1e, 0x95, 0x95, 0x12, - 0x83, 0xbc, 0xc4, 0x97, 0xd2, 0x19, 0xdc, 0x4c, 0xca, 0xe0, 0x4d, 0x1c, 0xdb, 0x63, 0xfb, 0x87, - 0xa2, 0x53, 0xe6, 0x0c, 0x65, 0xae, 0xcc, 0xa0, 0x2f, 0xf1, 0x25, 0x7a, 0x0c, 0xeb, 0xa6, 0x6d, - 0xfa, 0xa6, 0x6e, 0x69, 0x7d, 0xdd, 0x1f, 0x8c, 0x28, 0x65, 0x96, 0x52, 0xae, 0x71, 0x44, 0x9d, - 0xc0, 0xc9, 0x61, 0xff, 0xca, 0xc0, 0x96, 0x4a, 0xce, 0x72, 0x5b, 0xb6, 0xe9, 0x27, 0x2e, 0xfd, - 0xe1, 0xec, 0xd2, 0x13, 0xc7, 0xb4, 0x7d, 0x7a, 0x9c, 0xb0, 0x27, 0xee, 0x32, 0x75, 0xed, 0x76, - 0xa6, 0x7e, 0x97, 0xc0, 0x43, 0x35, 0xd0, 0x55, 0x54, 0x0d, 0xde, 0xc0, 0x35, 0x27, 0x3e, 0x3f, - 0x3c, 0xd8, 0x4c, 0xa5, 0xc0, 0x79, 0x95, 0xe6, 0xde, 0x48, 0xa5, 0xf9, 0xeb, 0x55, 0xba, 0x9c, - 0x54, 0xe9, 0x1d, 0xb8, 0x9d, 0x72, 0x49, 0xa6, 0x55, 0xc9, 0x0b, 0x34, 0xa0, 0x4e, 0xfb, 0x63, - 0xd3, 0xef, 0xb8, 0x06, 0x76, 0x03, 0x0d, 0x3c, 0x84, 0x9c, 0xee, 0x9d, 0xf1, 0x7b, 0xaf, 0x07, - 0xf7, 0x66, 0xe4, 0x35, 0xef, 0xec, 0x60, 0x49, 0x21, 0x78, 0x42, 0xd6, 0x37, 0x0d, 0x7a, 0xcd, - 0x39, 0xb2, 0xba, 0x69, 0x10, 0xb2, 0xbe, 0x69, 0xd4, 0x4b, 0x50, 0x30, 0xb0, 0xaf, 0x9b, 0x96, - 0x27, 0xfd, 0x3a, 0x13, 0x88, 0x14, 0x3b, 0x95, 0x3f, 0xf4, 0x33, 0xa8, 0x98, 0xf6, 0xb9, 0x6e, - 0x99, 0x86, 0xe6, 0x10, 0x04, 0x17, 0x60, 0x33, 0xd8, 0xb9, 0xc5, 0x90, 0x94, 0xe9, 0x60, 0x49, - 0x29, 0x9b, 0x91, 0x35, 0xba, 0x0b, 0x45, 0x7d, 0x30, 0xc0, 0x13, 0x1f, 0x33, 0x89, 0x8a, 0x07, - 0x4b, 0x4a, 0x08, 0x89, 0xca, 0xf0, 0x2c, 0xb8, 0x78, 0x43, 0xb7, 0x07, 0xd8, 0x8a, 0x5d, 0xfc, - 0x1e, 0x08, 0xf4, 0x64, 0xcd, 0x76, 0xec, 0x01, 0xe6, 0x76, 0x06, 0x14, 0xd4, 0x26, 0x90, 0x99, - 0x4a, 0x63, 0xcc, 0x5c, 0xa5, 0x7f, 0xcf, 0xc2, 0x66, 0xc3, 0x32, 0xb1, 0xed, 0xd7, 0x98, 0x65, - 0x1e, 0x61, 0xcf, 0xd3, 0x87, 0x18, 0x7d, 0x00, 0x2b, 0x03, 0x67, 0x3c, 0x36, 0x03, 0x53, 0xba, - 0x1d, 0xdc, 0x88, 0x3f, 0x4a, 0x83, 0x22, 0xc7, 0xd8, 0xf6, 0x0f, 0x96, 0x14, 0x4e, 0x8a, 0x9e, - 0x41, 0xc9, 0x9b, 0xf6, 0x89, 0x29, 0xf5, 0x31, 0xd7, 0xf1, 0x9d, 0x04, 0x9f, 0xca, 0xf0, 0x13, - 0x72, 0xd6, 0xc1, 0x92, 0x32, 0xa3, 0x47, 0x7b, 0xb0, 0xc2, 0xee, 0x4e, 0xcd, 0x4b, 0xd8, 0xdb, - 0x0a, 0x8d, 0x97, 0x48, 0x7c, 0x44, 0xfc, 0xa0, 0x46, 0xf1, 0xe4, 0x40, 0x46, 0x49, 0x78, 0x5c, - 0xfc, 0x73, 0x3c, 0xf0, 0xa9, 0xb1, 0xa5, 0xf2, 0x28, 0x14, 0x4f, 0x78, 0x18, 0x25, 0x7a, 0x02, - 0x79, 0xcf, 0x1c, 0xda, 0xd4, 0xf6, 0x84, 0xbd, 0x9b, 0xf3, 0x1c, 0xaa, 0x39, 0x24, 0xa2, 0x51, - 0x2a, 0xf4, 0x01, 0x14, 0x5c, 0x3c, 0x70, 0xce, 0xb1, 0xbb, 0xb5, 0x42, 0x19, 0x6e, 0x25, 0x2e, - 0xa4, 0x30, 0xec, 0xe5, 0xc1, 0x92, 0x12, 0x50, 0xd6, 0x97, 0x21, 0x37, 0xf6, 0x86, 0xd2, 0x17, - 0xb0, 0x3e, 0xa7, 0x2d, 0xf2, 0x5e, 0x4c, 0x5b, 0xda, 0x48, 0xf7, 0x46, 0xc1, 0x7b, 0x31, 0xd0, - 0x81, 0xee, 0x8d, 0x88, 0xb7, 0xb1, 0x60, 0x70, 0x8e, 0x5d, 0xcf, 0x74, 0x6c, 0x1e, 0x9a, 0xca, - 0x14, 0x78, 0xc2, 0x60, 0x92, 0x0b, 0x1b, 0x29, 0x0a, 0x4d, 0x78, 0x57, 0x26, 0xe1, 0x5d, 0xe8, - 0x3e, 0x94, 0xf9, 0xd9, 0xcc, 0x58, 0x98, 0xb7, 0x73, 0x79, 0xa8, 0xb5, 0xa0, 0xdb, 0x50, 0xd4, - 0xa7, 0xfe, 0x48, 0xf3, 0xcc, 0x21, 0x0f, 0x78, 0x05, 0xb2, 0x56, 0xcd, 0xa1, 0xd4, 0x06, 0x31, - 0xf9, 0x14, 0xf3, 0xd6, 0x97, 0x8b, 0x5b, 0x1f, 0xd9, 0x8f, 0xdd, 0x86, 0x7b, 0x5d, 0x59, 0x29, - 0xd0, 0x75, 0xcb, 0x90, 0xfe, 0x99, 0x89, 0x6e, 0xc8, 0xde, 0x29, 0x46, 0x9f, 0x89, 0xd1, 0xa3, - 0x9b, 0xe4, 0xb1, 0x75, 0x8f, 0x6b, 0xa4, 0xa4, 0xf0, 0x15, 0xda, 0x07, 0x81, 0xfd, 0xd2, 0x06, - 0x8e, 0xc1, 0x82, 0xd3, 0xea, 0xde, 0xc3, 0x45, 0x96, 0xb0, 0xcb, 0xfe, 0x53, 0x28, 0x87, 0x02, - 0x8c, 0xb3, 0xe1, 0x18, 0x58, 0xea, 0x40, 0x39, 0x8a, 0x43, 0x02, 0x14, 0x8e, 0xdb, 0x2f, 0xdb, - 0x9d, 0xcf, 0xdb, 0xe2, 0x12, 0xba, 0x09, 0x48, 0x95, 0x95, 0x13, 0x59, 0xd1, 0x8e, 0x5a, 0x6a, - 0x5d, 0x3e, 0xa8, 0x9d, 0xb4, 0x3a, 0x8a, 0x98, 0x41, 0x55, 0xb8, 0x59, 0xaf, 0xf5, 0x1a, 0x07, - 0xda, 0x89, 0xac, 0xa8, 0xad, 0x4e, 0x9b, 0xa0, 0x8f, 0x08, 0x40, 0xcc, 0x4a, 0xff, 0xce, 0x80, - 0xd0, 0x18, 0xe9, 0xb6, 0x8d, 0xad, 0x96, 0x7d, 0xea, 0xa0, 0xb7, 0x21, 0xef, 0x5f, 0x4e, 0x98, - 0x8f, 0xae, 0xee, 0x6d, 0x04, 0x12, 0x72, 0x92, 0xde, 0xe5, 0x04, 0x2b, 0x94, 0x00, 0x7d, 0x0f, - 0x56, 0x2d, 0x67, 0xa0, 0x5b, 0x9a, 0xed, 0x18, 0x38, 0x92, 0x14, 0xca, 0x14, 0xda, 0x76, 0x0c, - 0x4c, 0x5e, 0xf3, 0xfb, 0xb0, 0xe6, 0xe2, 0xb1, 0xe3, 0xe3, 0x19, 0x19, 0x7b, 0xb1, 0x0a, 0x03, - 0x07, 0x74, 0x1f, 0xc1, 0x16, 0xdb, 0x6d, 0xa2, 0x5f, 0x12, 0x13, 0xd4, 0xfa, 0xba, 0x87, 0x79, - 0x9e, 0xc8, 0x53, 0x86, 0x1b, 0x14, 0xdf, 0x65, 0xe8, 0xba, 0xee, 0x61, 0x96, 0x1e, 0x3e, 0x81, - 0xdb, 0xfc, 0x80, 0x14, 0x4e, 0x16, 0xba, 0x6f, 0x32, 0x82, 0x24, 0xab, 0xf4, 0x4d, 0x16, 0x56, - 0xe3, 0x1e, 0x75, 0xd5, 0xcb, 0xbe, 0x80, 0x72, 0x98, 0x87, 0xcc, 0xa1, 0xb7, 0x95, 0xdd, 0xc9, - 0x3d, 0x12, 0xf6, 0xde, 0x4e, 0x77, 0xcd, 0x30, 0x92, 0x98, 0x43, 0x4f, 0xb6, 0x7d, 0xf7, 0x52, - 0x11, 0xf4, 0x19, 0x04, 0x1d, 0x41, 0x65, 0xc0, 0x14, 0xaa, 0x99, 0xf6, 0xa9, 0xe3, 0x6d, 0xe5, - 0xe8, 0x66, 0x8f, 0x16, 0x6c, 0x16, 0x79, 0x1f, 0xbe, 0x5b, 0x79, 0x10, 0x01, 0x55, 0x9f, 0x83, - 0x98, 0x3c, 0x0f, 0x89, 0x90, 0x0b, 0xdc, 0xab, 0xa4, 0x90, 0x9f, 0x68, 0x13, 0x96, 0x59, 0x66, - 0x64, 0xef, 0xc4, 0x16, 0x9f, 0x66, 0x3f, 0xce, 0x54, 0x7b, 0xb0, 0x3e, 0x77, 0x44, 0xca, 0x06, - 0xef, 0x44, 0x37, 0x10, 0xe6, 0x6c, 0x83, 0xf0, 0x46, 0x76, 0x95, 0xde, 0x87, 0xb5, 0x44, 0xf8, - 0xb9, 0xc6, 0xf5, 0xa5, 0x3f, 0xe4, 0x60, 0x93, 0x67, 0xc3, 0x78, 0xa0, 0xff, 0x08, 0x4a, 0x83, - 0x91, 0x6e, 0x59, 0xd8, 0x1e, 0x62, 0x1e, 0xeb, 0x6f, 0xc5, 0xf3, 0x62, 0x23, 0x40, 0x93, 0x78, - 0x1d, 0xd2, 0xa2, 0x1f, 0x42, 0xc1, 0x9b, 0x0e, 0x06, 0xd8, 0xf3, 0xb8, 0xd0, 0x61, 0xf0, 0x55, - 0x83, 0x98, 0xae, 0x32, 0x3c, 0x09, 0x8d, 0x9c, 0x14, 0xed, 0xc2, 0x32, 0x76, 0x5d, 0xc7, 0xe5, - 0x41, 0xfe, 0xe6, 0x1c, 0x8f, 0x4c, 0xb0, 0x07, 0x4b, 0x0a, 0x23, 0x43, 0x1f, 0x42, 0x61, 0xe2, - 0xe2, 0x89, 0xee, 0x62, 0x1e, 0xe2, 0x6f, 0xcf, 0x3f, 0x64, 0x97, 0x11, 0x90, 0x63, 0x38, 0x2d, - 0x7a, 0x1a, 0x0b, 0xf2, 0x77, 0xd2, 0x1f, 0xbf, 0x8e, 0x87, 0xe6, 0x2c, 0xd2, 0x7f, 0x0c, 0xc5, - 0x53, 0xd3, 0xd6, 0x2d, 0xf3, 0x17, 0x98, 0x87, 0xfa, 0xea, 0x3c, 0xdb, 0x3e, 0xa7, 0x20, 0x99, - 0x3a, 0xa0, 0x46, 0x7b, 0x50, 0xe0, 0x16, 0xb8, 0x55, 0x88, 0xdf, 0x8a, 0xeb, 0x9a, 0xbf, 0x15, - 0x11, 0x90, 0x13, 0x06, 0x29, 0xa2, 0x0b, 0x6b, 0x09, 0x25, 0xa3, 0xbb, 0xc9, 0x07, 0x29, 0x47, - 0xb5, 0x9e, 0x48, 0x1f, 0xd9, 0x64, 0xfa, 0x90, 0x9e, 0x82, 0x98, 0xd4, 0xff, 0x75, 0xb6, 0xf1, - 0x55, 0x1e, 0xd6, 0xe7, 0xb4, 0x89, 0x54, 0x58, 0x1d, 0x93, 0x35, 0xe6, 0xa5, 0x8d, 0x47, 0xa3, - 0xbb, 0xb0, 0xf7, 0x64, 0xe1, 0x03, 0xec, 0x1e, 0x31, 0x7a, 0x8a, 0xe0, 0xde, 0x54, 0x19, 0x47, - 0x61, 0x68, 0x17, 0x36, 0x06, 0x16, 0xd6, 0x5d, 0xd3, 0x1e, 0x6a, 0x13, 0xd7, 0x1c, 0x60, 0xcd, - 0xd5, 0x7d, 0xcc, 0x53, 0xdc, 0x7a, 0x80, 0xea, 0x12, 0x8c, 0xa2, 0xfb, 0x18, 0x3d, 0x07, 0x71, - 0x30, 0xd2, 0xdd, 0x21, 0x36, 0x34, 0xae, 0xb9, 0xc0, 0xa1, 0x37, 0x12, 0x79, 0xb8, 0x69, 0x9e, - 0x9e, 0x2a, 0x6b, 0x9c, 0x98, 0xc3, 0x3c, 0xf4, 0x09, 0x54, 0xf0, 0x05, 0x1e, 0x4c, 0xc9, 0x2b, - 0x68, 0xa7, 0x38, 0x30, 0xa2, 0xb0, 0x3e, 0x93, 0x03, 0xe4, 0x3e, 0xc6, 0x4a, 0x19, 0x47, 0x56, - 0xe8, 0x5d, 0x58, 0x67, 0xf1, 0xca, 0x77, 0x75, 0xdb, 0xd3, 0xe9, 0x43, 0xf2, 0xa8, 0x27, 0x52, - 0x44, 0x6f, 0x06, 0x47, 0x4f, 0x60, 0xe3, 0x14, 0xb3, 0xcb, 0x68, 0x9e, 0xee, 0x6b, 0x13, 0xa2, - 0xeb, 0xd7, 0xd4, 0x8e, 0xf2, 0xca, 0xda, 0x29, 0xa6, 0xb7, 0x51, 0x75, 0xbf, 0x8b, 0xdd, 0x97, - 0xaf, 0x49, 0x7c, 0xa7, 0xd4, 0xb8, 0xcf, 0xe9, 0xa9, 0xdd, 0xe4, 0x95, 0x32, 0x21, 0xa4, 0x40, - 0x55, 0x8f, 0xa7, 0xc2, 0x62, 0x3c, 0x60, 0xce, 0xd5, 0x08, 0xa5, 0xf9, 0x1a, 0xa1, 0x7a, 0x02, - 0x68, 0xfe, 0x41, 0x52, 0x62, 0xcf, 0xe3, 0x78, 0xec, 0x09, 0x75, 0x13, 0x65, 0x8e, 0x07, 0x9f, - 0x8d, 0x14, 0x3f, 0xba, 0x22, 0xbe, 0x4b, 0x0e, 0xa0, 0x79, 0x17, 0xba, 0x2a, 0x21, 0x6c, 0x03, - 0x70, 0xdd, 0x5f, 0x84, 0x75, 0x43, 0x89, 0x29, 0xfd, 0xc2, 0x34, 0x88, 0x13, 0x8c, 0xb0, 0x39, - 0x1c, 0xf9, 0xda, 0x88, 0xa4, 0xa2, 0x1c, 0xbd, 0x3c, 0x30, 0xd0, 0x01, 0x49, 0x3f, 0x7f, 0xcd, - 0xc2, 0x6a, 0x3c, 0xa2, 0x90, 0x10, 0xcd, 0x02, 0x0f, 0xbb, 0x39, 0x0f, 0x2f, 0xcf, 0x00, 0xe8, - 0x0f, 0x56, 0x3a, 0x64, 0x69, 0x62, 0xbe, 0x9b, 0x1e, 0x93, 0x76, 0xe9, 0xbf, 0x4a, 0x89, 0xd2, - 0x93, 0x82, 0xe1, 0x9a, 0xf6, 0x10, 0x7d, 0x06, 0x1b, 0x41, 0x56, 0x73, 0x69, 0x9b, 0xa8, 0x53, - 0x13, 0xca, 0x5f, 0x15, 0x22, 0x14, 0xa4, 0x87, 0x4d, 0x4f, 0xc0, 0x21, 0x99, 0xb0, 0xcc, 0xee, - 0x10, 0xab, 0x48, 0x36, 0x60, 0x8d, 0x57, 0x24, 0xea, 0xc1, 0x71, 0xaf, 0x49, 0x80, 0xb4, 0x1c, - 0xa9, 0x35, 0x1a, 0x9d, 0xe3, 0x76, 0x4f, 0x6b, 0x76, 0x64, 0x55, 0x6b, 0x77, 0x7a, 0x9a, 0xfc, - 0xaa, 0xa5, 0xf6, 0xc4, 0x2c, 0x92, 0xe0, 0xad, 0x56, 0xbb, 0xd1, 0x39, 0xea, 0x1e, 0xca, 0x3d, - 0x59, 0x0b, 0xc8, 0x14, 0x99, 0xec, 0x52, 0xeb, 0xb5, 0x3a, 0x6d, 0x31, 0x27, 0xfd, 0x2d, 0x0b, - 0xab, 0x71, 0x89, 0x66, 0xb9, 0x8d, 0x35, 0xd2, 0x6c, 0x41, 0x8a, 0xb1, 0x58, 0xe7, 0xcc, 0x57, - 0xd7, 0xe9, 0x64, 0xbe, 0x31, 0xce, 0xa7, 0x35, 0xc6, 0x77, 0xa0, 0x34, 0x6b, 0x88, 0x99, 0xcf, - 0x31, 0x5b, 0x21, 0xc8, 0xa7, 0xb0, 0xec, 0xf9, 0x24, 0x6a, 0xac, 0xd0, 0xe7, 0xba, 0x93, 0xae, - 0x49, 0x95, 0x90, 0x28, 0x8c, 0x32, 0x69, 0x30, 0x85, 0xa4, 0xc1, 0xa0, 0x27, 0x50, 0x74, 0xa6, - 0x3e, 0xab, 0x6c, 0x8a, 0x0b, 0x7a, 0xe7, 0x90, 0x82, 0x58, 0xee, 0xc0, 0x72, 0x3c, 0xac, 0xf9, - 0x17, 0xd4, 0xf3, 0xca, 0x4a, 0x81, 0xae, 0x7b, 0x17, 0xd2, 0x2f, 0xa1, 0x1c, 0xf5, 0x1b, 0xf4, - 0x21, 0x94, 0x83, 0x28, 0xda, 0x37, 0x8d, 0x20, 0x86, 0xa2, 0x84, 0x8f, 0xd5, 0x4d, 0x43, 0x11, - 0xc6, 0xe1, 0x6f, 0x2f, 0xca, 0xa6, 0x7b, 0x67, 0x41, 0x45, 0x94, 0x64, 0xab, 0x79, 0x67, 0x21, - 0x5b, 0xcd, 0x3b, 0xf3, 0xa4, 0x1e, 0xc0, 0x0c, 0x85, 0x1e, 0x5c, 0xdd, 0x13, 0xb3, 0x8e, 0xf8, - 0x3e, 0x94, 0xa7, 0xb6, 0xe9, 0x7b, 0xda, 0xa9, 0x69, 0x59, 0xbc, 0x11, 0xad, 0x28, 0x02, 0x85, - 0xed, 0x53, 0x50, 0x64, 0xd7, 0xba, 0x49, 0x62, 0x0f, 0x6d, 0xa1, 0x33, 0x0b, 0x5a, 0x68, 0xda, - 0x40, 0xbf, 0xc9, 0xae, 0x5f, 0x67, 0x41, 0x88, 0xc4, 0x6e, 0x62, 0x1a, 0xd8, 0x36, 0x48, 0x62, - 0xe8, 0xeb, 0x96, 0x1e, 0xf4, 0xb2, 0x79, 0xa5, 0xc2, 0xa0, 0x75, 0x06, 0x44, 0x0d, 0x28, 0x73, - 0x32, 0x66, 0x04, 0xcc, 0x67, 0x77, 0x52, 0xb2, 0xc1, 0x6e, 0xcc, 0x12, 0x04, 0xc6, 0x45, 0x17, - 0xe4, 0xac, 0xe0, 0x31, 0x35, 0xd3, 0x36, 0xf0, 0x05, 0xb5, 0xd4, 0x65, 0xa5, 0x12, 0x40, 0x5b, - 0x04, 0x98, 0x30, 0xe6, 0x7c, 0x32, 0x6f, 0xfe, 0x0a, 0xca, 0xd1, 0x23, 0xd0, 0x26, 0x88, 0x9d, - 0xe3, 0x5e, 0xf7, 0x98, 0x38, 0x55, 0x43, 0x91, 0x6b, 0x3d, 0xb9, 0x29, 0x2e, 0xa1, 0xfb, 0xb0, - 0xcd, 0xa1, 0xcd, 0x63, 0x95, 0x78, 0x63, 0x4f, 0x6e, 0x37, 0xe5, 0xa6, 0xd6, 0xd9, 0xdf, 0x6f, - 0x1c, 0xd4, 0x5a, 0xc4, 0x6b, 0xb7, 0xe1, 0x76, 0x94, 0xa4, 0xd6, 0x24, 0xf8, 0x5e, 0x47, 0xdb, - 0x97, 0x65, 0x55, 0xcc, 0x92, 0xde, 0x83, 0xa3, 0xf7, 0x8f, 0x0f, 0x0f, 0xbf, 0xd0, 0xd4, 0xae, - 0xdc, 0xee, 0x89, 0x39, 0xe9, 0x3f, 0x59, 0x10, 0x98, 0xde, 0x99, 0xad, 0x5d, 0xd3, 0xfd, 0x6d, - 0x03, 0xd0, 0xfc, 0x74, 0x6a, 0x5e, 0x84, 0x2f, 0x52, 0x22, 0x90, 0x7d, 0x02, 0x20, 0x89, 0x41, - 0x1f, 0xfb, 0x7c, 0xb6, 0x43, 0x7e, 0x26, 0x9b, 0xbb, 0x95, 0xe4, 0x68, 0x81, 0xb8, 0x29, 0x23, - 0x20, 0xdd, 0x62, 0x81, 0xb9, 0x29, 0x05, 0xa8, 0xe6, 0x10, 0x49, 0x50, 0x19, 0x4f, 0x2d, 0xdf, - 0x24, 0x48, 0x2a, 0x10, 0xcb, 0x61, 0x02, 0x05, 0xaa, 0xe6, 0x90, 0x88, 0x74, 0x1b, 0x8a, 0xb4, - 0x77, 0x99, 0x4c, 0xfb, 0x81, 0x23, 0x91, 0x75, 0x77, 0xda, 0x47, 0xef, 0x43, 0x89, 0xa2, 0x74, - 0xc3, 0x70, 0xb7, 0x20, 0x9e, 0xf2, 0x49, 0x67, 0x53, 0x33, 0x0c, 0x17, 0x7b, 0x9e, 0x42, 0x37, - 0x20, 0x0b, 0x22, 0x0d, 0x29, 0xdd, 0x35, 0xda, 0x63, 0x95, 0xe9, 0xf5, 0x8a, 0x04, 0x40, 0x1a, - 0x2b, 0xf4, 0x1c, 0xb6, 0xc7, 0xfa, 0x05, 0x1f, 0xb3, 0xa5, 0xa5, 0xea, 0x0a, 0xbd, 0xf7, 0xad, - 0xb1, 0x7e, 0x41, 0x47, 0x6e, 0xfb, 0xf1, 0x94, 0xfd, 0x22, 0x5f, 0xcc, 0x8b, 0xcb, 0x2f, 0xf2, - 0xc5, 0x65, 0x71, 0xe5, 0x45, 0xbe, 0x28, 0x88, 0x65, 0xe9, 0x77, 0x19, 0x28, 0x85, 0x56, 0x8f, - 0x7e, 0x10, 0x4e, 0x6b, 0xb8, 0x67, 0x6c, 0xc4, 0x3d, 0x83, 0x65, 0xd1, 0x80, 0x86, 0xd4, 0x41, - 0x63, 0xd3, 0xd6, 0x8c, 0xa9, 0x4b, 0x43, 0xbc, 0xd6, 0xb7, 0x9c, 0xc1, 0x99, 0x17, 0xd4, 0x41, - 0x63, 0xd3, 0x6e, 0x72, 0x4c, 0x9d, 0x22, 0xd0, 0x16, 0x14, 0x82, 0x54, 0xcf, 0xc6, 0x6a, 0xc1, - 0xf2, 0x45, 0xbe, 0x98, 0x13, 0xf3, 0xd2, 0x6f, 0x43, 0x61, 0x88, 0xe3, 0x7f, 0x0b, 0x61, 0xf4, - 0x8b, 0x39, 0x61, 0xf2, 0x5c, 0x18, 0xfd, 0x62, 0xb1, 0x30, 0xcb, 0x31, 0x61, 0xa4, 0x5d, 0x10, - 0x22, 0x53, 0xa6, 0xeb, 0x67, 0x53, 0x7f, 0xc9, 0x40, 0x39, 0x3a, 0x22, 0xbb, 0x96, 0x03, 0xfd, - 0x04, 0x84, 0x53, 0xdd, 0xb4, 0xb4, 0xc8, 0x24, 0x60, 0x75, 0xef, 0x5e, 0xda, 0xb8, 0x6d, 0x77, - 0x5f, 0x37, 0xad, 0xa0, 0xcd, 0x3f, 0x0d, 0x7f, 0x93, 0x23, 0xe8, 0x0e, 0x9e, 0x4f, 0x4a, 0x4d, - 0x6a, 0xef, 0x25, 0x46, 0xa0, 0x52, 0x88, 0xb4, 0x0d, 0x30, 0x63, 0x45, 0x6b, 0x20, 0xb4, 0xda, - 0x27, 0xb5, 0xc3, 0x56, 0x53, 0xab, 0x1d, 0xf5, 0xc4, 0x25, 0xe9, 0x59, 0xe0, 0x74, 0x2d, 0x7b, - 0x32, 0x8d, 0x67, 0x8e, 0xcc, 0x75, 0x99, 0x43, 0xfa, 0x11, 0x94, 0xf9, 0x13, 0x4c, 0x7d, 0xc2, - 0xbd, 0x30, 0xb9, 0xc6, 0xe6, 0xb1, 0x7c, 0x25, 0x7d, 0x95, 0x85, 0x2a, 0x63, 0x3f, 0x72, 0x0c, - 0xf3, 0xf4, 0x32, 0x31, 0x05, 0xbe, 0xc6, 0xff, 0xf7, 0x00, 0x6c, 0xfc, 0x5a, 0x33, 0x89, 0xd8, - 0x41, 0x46, 0x49, 0x18, 0x06, 0xbd, 0x92, 0x52, 0xb2, 0xf1, 0x6b, 0xfa, 0x8b, 0xe4, 0x21, 0x81, - 0xf0, 0x38, 0x54, 0xda, 0xa0, 0xf4, 0xde, 0x4c, 0x58, 0x13, 0x45, 0x2a, 0x64, 0x73, 0xf6, 0xd3, - 0x43, 0x27, 0xec, 0xa8, 0x89, 0xee, 0xea, 0x63, 0x8f, 0x57, 0x3c, 0x1f, 0xc5, 0xb9, 0xd2, 0x6e, - 0xb0, 0xdb, 0xc6, 0xaf, 0x39, 0xa4, 0x4b, 0x58, 0xb1, 0x8f, 0x5d, 0x8f, 0x8a, 0x43, 0x97, 0x5e, - 0xf5, 0x09, 0x6c, 0xa6, 0x91, 0xa4, 0xab, 0x51, 0x7a, 0x0e, 0x77, 0x52, 0xcf, 0xe2, 0xb3, 0xdb, - 0x7b, 0x20, 0x44, 0xa6, 0x0e, 0x81, 0xad, 0xcd, 0x66, 0x09, 0xd2, 0xa7, 0x70, 0x2b, 0xe2, 0x2f, - 0x2c, 0x8d, 0xbc, 0xe9, 0xd4, 0xf5, 0xcb, 0x60, 0x64, 0x1b, 0xe5, 0xe5, 0x07, 0x3f, 0x0a, 0x0a, - 0x18, 0x36, 0x08, 0x42, 0xb1, 0x86, 0x2a, 0x56, 0xb7, 0xbc, 0x0b, 0xeb, 0x2c, 0x8d, 0x4e, 0xed, - 0xd3, 0xa9, 0x15, 0xcb, 0xa5, 0x22, 0x45, 0x1c, 0xcf, 0xe0, 0xd2, 0x3a, 0xac, 0xed, 0x63, 0xfc, - 0xd3, 0xa9, 0x13, 0x8a, 0x29, 0x1d, 0x81, 0x38, 0x03, 0xf1, 0xd3, 0xe7, 0x5a, 0xa2, 0xcc, 0x9b, - 0xb6, 0x44, 0x52, 0x1d, 0x36, 0x15, 0x6c, 0xe1, 0x73, 0xdd, 0xf6, 0xeb, 0x6c, 0xa2, 0xc6, 0xb4, - 0xb1, 0x0a, 0xd9, 0xb0, 0x86, 0xcf, 0x9a, 0x06, 0xaa, 0xd2, 0xc1, 0x36, 0xeb, 0xd6, 0xb2, 0x74, - 0x24, 0x18, 0xae, 0xa5, 0x7f, 0xe4, 0xa0, 0x12, 0xdb, 0x24, 0x1a, 0x4e, 0x32, 0xb1, 0x70, 0xc2, - 0xf7, 0xcd, 0x86, 0xfb, 0x7e, 0xd7, 0x6e, 0xb0, 0x33, 0xd7, 0xd2, 0xe6, 0xe3, 0xc3, 0xa1, 0x98, - 0x60, 0xdf, 0xbe, 0x9d, 0x5d, 0x5e, 0xd4, 0xce, 0xce, 0xe9, 0x7e, 0xe5, 0x8d, 0xdb, 0xd1, 0x1d, - 0x10, 0xa2, 0x8d, 0x28, 0xcb, 0xb6, 0x51, 0xd0, 0xa2, 0x1e, 0xb4, 0x98, 0xda, 0x83, 0xfe, 0xdf, - 0xba, 0xc3, 0x26, 0x94, 0xa3, 0xb7, 0x60, 0x5d, 0x9e, 0x87, 0x43, 0x4b, 0xcb, 0x93, 0x2e, 0xcf, - 0xc3, 0x1c, 0x15, 0x08, 0x4c, 0x77, 0xcf, 0x2b, 0x05, 0x2e, 0x25, 0x09, 0xb2, 0x91, 0x24, 0x4f, - 0x4c, 0xc4, 0xc6, 0xfe, 0x6b, 0xc7, 0x3d, 0xe3, 0xa2, 0x05, 0x4b, 0x84, 0x20, 0x4f, 0x2b, 0x04, - 0x36, 0x12, 0xa6, 0xbf, 0xa5, 0x1a, 0x14, 0x83, 0xd0, 0x4b, 0xf0, 0xb4, 0x87, 0x64, 0xc6, 0x49, - 0x7f, 0x93, 0xe2, 0x94, 0x05, 0x34, 0x5e, 0xfb, 0xf1, 0xe2, 0x94, 0xc1, 0x68, 0xe5, 0x27, 0xfd, - 0x3e, 0x03, 0x42, 0xcd, 0x3b, 0x53, 0x6d, 0x7d, 0xe2, 0x8d, 0x1c, 0xff, 0x0a, 0x1b, 0x5d, 0x90, - 0x3c, 0xb3, 0x8b, 0x92, 0x67, 0xbc, 0x0a, 0xcb, 0x25, 0xab, 0xb0, 0x58, 0x11, 0x93, 0x8f, 0x17, - 0x31, 0x54, 0xaa, 0xba, 0x69, 0xbc, 0xa1, 0x54, 0xff, 0x4b, 0x7d, 0xf1, 0x5d, 0xa4, 0xfa, 0x26, - 0x03, 0x9b, 0x51, 0x6b, 0x08, 0xc5, 0x8b, 0x7d, 0x93, 0x9b, 0x79, 0xe8, 0x4c, 0xad, 0x29, 0xdf, - 0xe4, 0x42, 0xb2, 0xc8, 0x3d, 0x59, 0x4b, 0xf1, 0x00, 0x98, 0xf3, 0x11, 0x5f, 0xa3, 0x26, 0xc3, - 0xa4, 0x2c, 0x07, 0x40, 0xea, 0x60, 0x4f, 0x00, 0xf9, 0x8e, 0xaf, 0x5b, 0xc4, 0x01, 0x3c, 0x8d, - 0x3a, 0x20, 0x36, 0xa8, 0xc4, 0x79, 0x45, 0xa4, 0x18, 0x55, 0xf7, 0xbd, 0x06, 0x83, 0x93, 0x2d, - 0x59, 0x78, 0xe5, 0x5e, 0xcd, 0x1d, 0x97, 0xb5, 0x2e, 0xfc, 0x4a, 0xd2, 0x53, 0xd8, 0xa4, 0xe1, - 0x20, 0x94, 0x86, 0x07, 0xbd, 0x2b, 0xe6, 0x1d, 0x7f, 0xce, 0xc2, 0x8d, 0x04, 0x0f, 0x0f, 0xbe, - 0x8b, 0x5f, 0x6c, 0xf1, 0x87, 0x12, 0x52, 0x49, 0x4f, 0x5c, 0x7c, 0xae, 0x85, 0x78, 0xd6, 0x56, - 0x0b, 0x04, 0x58, 0xe7, 0x34, 0x0b, 0x22, 0x51, 0x7e, 0x51, 0x24, 0x6a, 0xcc, 0x85, 0xc2, 0x65, - 0x1a, 0x0a, 0xef, 0xa6, 0xf9, 0x77, 0x78, 0x8d, 0x44, 0xf8, 0x7b, 0x0b, 0x84, 0x60, 0x4c, 0x43, - 0xc4, 0x2a, 0x50, 0x1f, 0x0c, 0xe6, 0x34, 0x2d, 0x63, 0x76, 0x27, 0xff, 0x82, 0x77, 0x0f, 0x05, - 0x8e, 0x7c, 0xfc, 0x4e, 0xf8, 0x69, 0x84, 0x96, 0xe7, 0x15, 0x28, 0xf5, 0x3e, 0x97, 0x6b, 0x2f, - 0x0f, 0x65, 0x55, 0x15, 0x97, 0x90, 0x00, 0x85, 0x5a, 0xbb, 0x71, 0xd0, 0x51, 0x54, 0x31, 0xf3, - 0xf8, 0x8f, 0x19, 0xd8, 0x48, 0xe9, 0xed, 0xe9, 0x27, 0x99, 0x5e, 0xad, 0x27, 0x6b, 0x5d, 0xb9, - 0xdd, 0x6c, 0xb5, 0x3f, 0xd3, 0x3a, 0x5d, 0xb9, 0x2d, 0x2e, 0xa1, 0x55, 0x00, 0x06, 0xa7, 0xeb, - 0x0c, 0x5a, 0x87, 0x0a, 0x5b, 0xcb, 0xaf, 0xba, 0x2d, 0x45, 0x6e, 0x8a, 0x59, 0xb4, 0x05, 0x9b, - 0x71, 0xd6, 0xe3, 0x6e, 0xb3, 0xd6, 0x93, 0xc5, 0x1c, 0x12, 0xa1, 0xcc, 0x30, 0x8d, 0xc3, 0x8e, - 0x2a, 0x37, 0xc5, 0x3c, 0xba, 0x05, 0x1b, 0x71, 0x5a, 0xfa, 0xbd, 0x47, 0x5c, 0x7e, 0xfc, 0xa7, - 0x0c, 0xc0, 0x2c, 0x65, 0xa3, 0x0d, 0x58, 0xeb, 0x28, 0x4d, 0x59, 0xd1, 0xd4, 0xe3, 0xfa, 0x51, - 0xab, 0xc7, 0x9a, 0xbf, 0x75, 0xa8, 0x30, 0x60, 0xe3, 0x50, 0xae, 0x91, 0xb3, 0xe9, 0x88, 0x86, - 0x81, 0xba, 0x35, 0xa5, 0xd7, 0xaa, 0x91, 0x86, 0x6e, 0xbf, 0x75, 0x78, 0x48, 0xe5, 0x42, 0xb0, - 0xca, 0x70, 0xf2, 0x2b, 0xb9, 0x71, 0x4c, 0xb6, 0xc8, 0xcd, 0x60, 0x8d, 0x5a, 0xbb, 0x21, 0x1f, - 0x52, 0x99, 0xc2, 0x6d, 0x83, 0x2b, 0x2d, 0x13, 0xc1, 0x19, 0x68, 0xbf, 0xd6, 0x22, 0x44, 0x2b, - 0x7b, 0x5f, 0xaf, 0x84, 0xdf, 0x1e, 0x6a, 0xe1, 0x74, 0x85, 0xe4, 0xc0, 0xf8, 0x1f, 0x2d, 0xa0, - 0xed, 0x59, 0xf6, 0x4b, 0xf9, 0x83, 0x8a, 0xea, 0x5b, 0x8b, 0xd0, 0xdc, 0xa4, 0x15, 0x10, 0x22, - 0x1f, 0xeb, 0xd1, 0x4e, 0xb2, 0xa2, 0x4c, 0xfe, 0xb1, 0x42, 0xf5, 0xfe, 0x15, 0x14, 0x7c, 0xcf, - 0x57, 0x50, 0x89, 0xd5, 0x6c, 0x48, 0xba, 0xbe, 0x78, 0xac, 0x3e, 0xb8, 0x92, 0x66, 0x26, 0x6d, - 0xe4, 0x3b, 0x7e, 0x52, 0xda, 0xf9, 0x3f, 0x2c, 0x48, 0x4a, 0x9b, 0xf6, 0x47, 0x00, 0x4a, 0xbc, - 0xeb, 0x49, 0xec, 0x39, 0xff, 0xcd, 0x3e, 0xb9, 0x67, 0xca, 0x87, 0x79, 0xd4, 0x89, 0xd9, 0xd6, - 0xbd, 0x94, 0xfe, 0x2d, 0x5a, 0x8f, 0x56, 0x77, 0x16, 0x13, 0xf0, 0x0d, 0x3f, 0x87, 0x1b, 0xe1, - 0x3c, 0x93, 0x06, 0x0d, 0x6e, 0x13, 0x28, 0xf4, 0xf8, 0xb4, 0xbf, 0x03, 0xa8, 0xde, 0x4d, 0x8c, - 0x8d, 0x62, 0xd8, 0x47, 0x99, 0xf7, 0x33, 0xe8, 0xc7, 0x50, 0x0c, 0x6a, 0x4c, 0x14, 0x7e, 0x39, - 0x4a, 0x14, 0xa2, 0xd5, 0xad, 0x79, 0x04, 0x97, 0xeb, 0x10, 0x6e, 0xc4, 0xaa, 0xae, 0x30, 0x7b, - 0xdc, 0x4d, 0x2d, 0xca, 0x82, 0x0d, 0x6f, 0xa4, 0x62, 0xd1, 0x21, 0x54, 0x16, 0xec, 0x92, 0x16, - 0xc3, 0xab, 0xdb, 0x0b, 0xb0, 0x4c, 0xb6, 0xfa, 0xc3, 0x9f, 0x3d, 0x18, 0x9a, 0xfe, 0x68, 0xda, - 0xdf, 0x1d, 0x38, 0xe3, 0xf7, 0x2c, 0x73, 0x38, 0xf2, 0x6d, 0xd3, 0x1e, 0x5a, 0x7a, 0xdf, 0x7b, - 0xcf, 0xb2, 0xc6, 0xef, 0x31, 0xe6, 0xfe, 0x0a, 0xfd, 0xdb, 0xa4, 0x0f, 0xfe, 0x1b, 0x00, 0x00, - 0xff, 0xff, 0x52, 0xe0, 0x33, 0x67, 0xaf, 0x24, 0x00, 0x00, + // 3365 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x3a, 0x4b, 0x73, 0xdb, 0xd6, + 0xd5, 0xe2, 0x4b, 0x24, 0x0f, 0x49, 0x09, 0xba, 0x92, 0x65, 0x89, 0xb6, 0x62, 0x19, 0xfe, 0xfc, + 0xc5, 0x71, 0xfc, 0x29, 0xb1, 0x92, 0x4c, 0x1e, 0xfe, 0xea, 0x29, 0x48, 0x42, 0x11, 0x6d, 0x89, + 0x64, 0x01, 0x4a, 0x71, 0xba, 0xc1, 0x80, 0xe4, 0x15, 0x85, 0x0a, 0x04, 0x18, 0x00, 0xb4, 0xa9, + 0x4e, 0xa7, 0x33, 0xed, 0x74, 0xd5, 0x6d, 0xdb, 0x65, 0x67, 0xfa, 0x03, 0xb2, 0xc9, 0xa6, 0xcb, + 0xf6, 0x7f, 0x74, 0xd2, 0x6e, 0xfa, 0x1b, 0x3a, 0xd3, 0x99, 0x6e, 0x3a, 0xf7, 0x01, 0x10, 0x00, + 0x41, 0x49, 0x4d, 0xa6, 0x1b, 0x89, 0xf7, 0x3c, 0xee, 0x3d, 0xf7, 0xdc, 0xf3, 0x26, 0x41, 0xd0, + 0x27, 0x7d, 0xcf, 0xb0, 0x2d, 0x8c, 0x9d, 0xbd, 0xb1, 0x63, 0x7b, 0x36, 0x5a, 0xee, 0x9b, 0x23, + 0x67, 0xdc, 0x17, 0x7f, 0x99, 0x82, 0x5b, 0x0a, 0x76, 0xb1, 0xf3, 0x1a, 0x4b, 0xfd, 0xbe, 0x3d, + 0xb1, 0x3c, 0x05, 0x7f, 0x35, 0xc1, 0xae, 0x87, 0x1e, 0x40, 0x45, 0x67, 0x10, 0xed, 0xb5, 0x6e, + 0x4e, 0xf0, 0x56, 0x6a, 0x37, 0xf5, 0x28, 0xab, 0x94, 0x39, 0xf0, 0x94, 0xc0, 0xd0, 0x43, 0x58, + 0xf1, 0x89, 0xf0, 0x74, 0x6c, 0x38, 0x97, 0x5b, 0xe9, 0xdd, 0xd4, 0xa3, 0x8a, 0xe2, 0xb3, 0xca, + 0x14, 0x88, 0x76, 0x00, 0x3c, 0x47, 0x1f, 0x60, 0x47, 0xbb, 0xc0, 0x97, 0x5b, 0x99, 0xdd, 0xd4, + 0xa3, 0xb2, 0x52, 0x64, 0x90, 0x97, 0xf8, 0x52, 0xbc, 0x80, 0xcd, 0xb8, 0x0c, 0xee, 0xd8, 0xb6, + 0x5c, 0xb6, 0x7f, 0x20, 0x3a, 0x65, 0x4e, 0x51, 0xe6, 0xca, 0x0c, 0xfa, 0x12, 0x5f, 0xa2, 0xc7, + 0xb0, 0x66, 0x58, 0x86, 0x67, 0xe8, 0xa6, 0xd6, 0xd3, 0xbd, 0xfe, 0x39, 0xa5, 0x4c, 0x53, 0xca, + 0x55, 0x8e, 0xa8, 0x11, 0x38, 0x39, 0xec, 0xef, 0x29, 0xd8, 0x52, 0xc9, 0x59, 0x4e, 0xd3, 0x32, + 0xbc, 0xd8, 0xa5, 0x3f, 0x9a, 0x5d, 0x7a, 0x6c, 0x1b, 0x96, 0x47, 0x8f, 0x2b, 0xed, 0x0b, 0x7b, + 0x4c, 0x5d, 0x7b, 0xed, 0x89, 0xd7, 0x21, 0xf0, 0x40, 0x0d, 0x74, 0x15, 0x56, 0x83, 0xdb, 0x77, + 0x8c, 0xb1, 0xc7, 0x0f, 0xf7, 0x37, 0x53, 0x29, 0x70, 0x5e, 0xa5, 0x99, 0x1b, 0xa9, 0x34, 0x7b, + 0xbd, 0x4a, 0x73, 0x71, 0x95, 0xde, 0x81, 0xed, 0x84, 0x4b, 0x32, 0xad, 0x8a, 0xae, 0xaf, 0x01, + 0x75, 0xd2, 0x1b, 0x19, 0x5e, 0xdb, 0x19, 0x60, 0xc7, 0xd7, 0xc0, 0x43, 0xc8, 0xe8, 0xee, 0x05, + 0xbf, 0xf7, 0x9a, 0x7f, 0x6f, 0x46, 0x2e, 0xb9, 0x17, 0x87, 0x4b, 0x0a, 0xc1, 0x13, 0xb2, 0x9e, + 0x31, 0xa0, 0xd7, 0x9c, 0x23, 0xab, 0x19, 0x03, 0x42, 0xd6, 0x33, 0x06, 0xb5, 0x22, 0xe4, 0x07, + 0xd8, 0xd3, 0x0d, 0xd3, 0x15, 0x7f, 0x91, 0xf2, 0x45, 0x8a, 0x9c, 0xca, 0x1f, 0xfa, 0x19, 0x54, + 0x0c, 0xeb, 0xb5, 0x6e, 0x1a, 0x03, 0xcd, 0x26, 0x08, 0x2e, 0xc0, 0x86, 0xbf, 0x73, 0x93, 0x21, + 0x29, 0xd3, 0xe1, 0x92, 0x52, 0x36, 0x42, 0x6b, 0x74, 0x17, 0x0a, 0x7a, 0xbf, 0x8f, 0xc7, 0x1e, + 0x66, 0x12, 0x15, 0x0e, 0x97, 0x94, 0x00, 0x12, 0x96, 0xe1, 0x99, 0x7f, 0xf1, 0xba, 0x6e, 0xf5, + 0xb1, 0x19, 0xb9, 0xf8, 0x3d, 0x28, 0xd1, 0x93, 0x35, 0xcb, 0xb6, 0xfa, 0x98, 0xdb, 0x19, 0x50, + 0x50, 0x8b, 0x40, 0x66, 0x2a, 0x8d, 0x30, 0x73, 0x95, 0xfe, 0x25, 0x0d, 0x1b, 0x75, 0xd3, 0xc0, + 0x96, 0x27, 0x31, 0xcb, 0x3c, 0xc6, 0xae, 0xab, 0x0f, 0x31, 0xfa, 0x00, 0x96, 0xfb, 0xf6, 0x68, + 0x64, 0xf8, 0xa6, 0xb4, 0xed, 0xdf, 0x88, 0x3f, 0x4a, 0x9d, 0x22, 0x47, 0xd8, 0xf2, 0x0e, 0x97, + 0x14, 0x4e, 0x8a, 0x9e, 0x41, 0xd1, 0x9d, 0xf4, 0x88, 0x29, 0xf5, 0x30, 0xd7, 0xf1, 0x9d, 0x18, + 0x9f, 0xca, 0xf0, 0x63, 0x72, 0xd6, 0xe1, 0x92, 0x32, 0xa3, 0x47, 0xfb, 0xb0, 0xcc, 0xee, 0x4e, + 0xcd, 0xab, 0xb4, 0xbf, 0x15, 0x18, 0x2f, 0x91, 0xf8, 0x98, 0xf8, 0x81, 0x44, 0xf1, 0xe4, 0x40, + 0x46, 0x49, 0x78, 0x1c, 0xfc, 0x13, 0xdc, 0xf7, 0xa8, 0xb1, 0x25, 0xf2, 0x28, 0x14, 0x4f, 0x78, + 0x18, 0x25, 0x7a, 0x02, 0x59, 0xd7, 0x18, 0x5a, 0xd4, 0xf6, 0x4a, 0xfb, 0x9b, 0xf3, 0x1c, 0xaa, + 0x31, 0x24, 0xa2, 0x51, 0x2a, 0xf4, 0x01, 0xe4, 0x1d, 0xdc, 0xb7, 0x5f, 0x63, 0x67, 0x6b, 0x99, + 0x32, 0xdc, 0x8e, 0x5d, 0x48, 0x61, 0xd8, 0xcb, 0xc3, 0x25, 0xc5, 0xa7, 0xac, 0xe5, 0x20, 0x33, + 0x72, 0x87, 0xe2, 0x97, 0xb0, 0x36, 0xa7, 0x2d, 0xf2, 0x5e, 0x4c, 0x5b, 0xda, 0xb9, 0xee, 0x9e, + 0xfb, 0xef, 0xc5, 0x40, 0x87, 0xba, 0x7b, 0x4e, 0xbc, 0x8d, 0x05, 0x83, 0xd7, 0xd8, 0x71, 0x0d, + 0xdb, 0xe2, 0xa1, 0xa9, 0x4c, 0x81, 0xa7, 0x0c, 0x26, 0x3a, 0xb0, 0x9e, 0xa0, 0xd0, 0x98, 0x77, + 0xa5, 0x62, 0xde, 0x85, 0xee, 0x43, 0x99, 0x9f, 0xcd, 0x8c, 0x85, 0x79, 0x3b, 0x97, 0x87, 0x5a, + 0x0b, 0xda, 0x86, 0x82, 0x3e, 0xf1, 0xce, 0x35, 0xd7, 0x18, 0xf2, 0x80, 0x97, 0x27, 0x6b, 0xd5, + 0x18, 0x8a, 0x2d, 0x10, 0xe2, 0x4f, 0x31, 0x6f, 0x7d, 0x99, 0xa8, 0xf5, 0x91, 0xfd, 0xd8, 0x6d, + 0xb8, 0xd7, 0x95, 0x95, 0x3c, 0x5d, 0x37, 0x07, 0xe2, 0xdf, 0x52, 0xe1, 0x0d, 0xd9, 0x3b, 0x45, + 0xe8, 0x53, 0x11, 0x7a, 0xb4, 0x49, 0x1e, 0x5b, 0x77, 0xb9, 0x46, 0x8a, 0x0a, 0x5f, 0xa1, 0x03, + 0x28, 0xb1, 0x4f, 0x5a, 0xdf, 0x1e, 0xb0, 0xe0, 0xb4, 0xb2, 0xff, 0x70, 0x91, 0x25, 0xec, 0xb1, + 0x7f, 0x0a, 0xe5, 0x50, 0x80, 0x71, 0xd6, 0xed, 0x01, 0x16, 0xdb, 0x50, 0x0e, 0xe3, 0x50, 0x09, + 0xf2, 0x27, 0xad, 0x97, 0xad, 0xf6, 0x17, 0x2d, 0x61, 0x09, 0x6d, 0x02, 0x52, 0x65, 0xe5, 0x54, + 0x56, 0xb4, 0xe3, 0xa6, 0x5a, 0x93, 0x0f, 0xa5, 0xd3, 0x66, 0x5b, 0x11, 0x52, 0xa8, 0x0a, 0x9b, + 0x35, 0xa9, 0x5b, 0x3f, 0xd4, 0x4e, 0x65, 0x45, 0x6d, 0xb6, 0x5b, 0x04, 0x7d, 0x4c, 0x00, 0x42, + 0x5a, 0xfc, 0x67, 0x0a, 0x4a, 0xf5, 0x73, 0xdd, 0xb2, 0xb0, 0xd9, 0xb4, 0xce, 0x6c, 0xf4, 0x36, + 0x64, 0xbd, 0xcb, 0x31, 0xf3, 0xd1, 0x95, 0xfd, 0x75, 0x5f, 0x42, 0x4e, 0xd2, 0xbd, 0x1c, 0x63, + 0x85, 0x12, 0xa0, 0xff, 0x81, 0x15, 0xd3, 0xee, 0xeb, 0xa6, 0x66, 0xd9, 0x03, 0x1c, 0x4a, 0x0a, + 0x65, 0x0a, 0x6d, 0xd9, 0x03, 0x4c, 0x5e, 0xf3, 0x7f, 0x61, 0xd5, 0xc1, 0x23, 0xdb, 0xc3, 0x33, + 0x32, 0xf6, 0x62, 0x15, 0x06, 0xf6, 0xe9, 0x3e, 0x86, 0x2d, 0xb6, 0xdb, 0x58, 0xbf, 0x24, 0x26, + 0xa8, 0xf5, 0x74, 0x17, 0xf3, 0x3c, 0x91, 0xa5, 0x0c, 0xb7, 0x28, 0xbe, 0xc3, 0xd0, 0x35, 0xdd, + 0xc5, 0x2c, 0x3d, 0x7c, 0x0a, 0xdb, 0xfc, 0x80, 0x04, 0x4e, 0x16, 0xba, 0x37, 0x19, 0x41, 0x9c, + 0x55, 0xfc, 0x36, 0x0d, 0x2b, 0x51, 0x8f, 0xba, 0xea, 0x65, 0x5f, 0x40, 0x39, 0xc8, 0x43, 0xc6, + 0xd0, 0xdd, 0x4a, 0xef, 0x66, 0x1e, 0x95, 0xf6, 0xdf, 0x4e, 0x76, 0xcd, 0x20, 0x92, 0x18, 0x43, + 0x57, 0xb6, 0x3c, 0xe7, 0x52, 0x29, 0xe9, 0x33, 0x08, 0x3a, 0x86, 0x4a, 0x9f, 0x29, 0x54, 0x33, + 0xac, 0x33, 0xdb, 0xdd, 0xca, 0xd0, 0xcd, 0x1e, 0x2d, 0xd8, 0x2c, 0xf4, 0x3e, 0x7c, 0xb7, 0x72, + 0x3f, 0x04, 0xaa, 0x3e, 0x07, 0x21, 0x7e, 0x1e, 0x12, 0x20, 0xe3, 0xbb, 0x57, 0x51, 0x21, 0x1f, + 0xd1, 0x06, 0xe4, 0x58, 0x66, 0x64, 0xef, 0xc4, 0x16, 0x9f, 0xa5, 0x3f, 0x49, 0x55, 0xbb, 0xb0, + 0x36, 0x77, 0x44, 0xc2, 0x06, 0xef, 0x84, 0x37, 0x28, 0xcd, 0xd9, 0x06, 0xe1, 0x0d, 0xed, 0x2a, + 0xbe, 0x0f, 0xab, 0xb1, 0xf0, 0x73, 0x8d, 0xeb, 0x8b, 0xbf, 0xcd, 0xc0, 0x06, 0xcf, 0x86, 0xd1, + 0x40, 0xff, 0x31, 0x14, 0xfb, 0xe7, 0xba, 0x69, 0x62, 0x6b, 0x88, 0x79, 0xac, 0xbf, 0x1d, 0xcd, + 0x8b, 0x75, 0x1f, 0x4d, 0xe2, 0x75, 0x40, 0x8b, 0x3e, 0x84, 0xbc, 0x3b, 0xe9, 0xf7, 0xb1, 0xeb, + 0x72, 0xa1, 0x83, 0xe0, 0xab, 0xfa, 0x31, 0x5d, 0x65, 0x78, 0x12, 0x1a, 0x39, 0x29, 0xda, 0x83, + 0x1c, 0x76, 0x1c, 0xdb, 0xe1, 0x41, 0x7e, 0x73, 0x8e, 0x47, 0x26, 0xd8, 0xc3, 0x25, 0x85, 0x91, + 0xa1, 0x8f, 0x20, 0x3f, 0x76, 0xf0, 0x58, 0x77, 0x30, 0x0f, 0xf1, 0xdb, 0xf3, 0x0f, 0xd9, 0x61, + 0x04, 0xe4, 0x18, 0x4e, 0x8b, 0x9e, 0x46, 0x82, 0xfc, 0x9d, 0xe4, 0xc7, 0xaf, 0xe1, 0xa1, 0x31, + 0x8b, 0xf4, 0x9f, 0x40, 0xe1, 0xcc, 0xb0, 0x74, 0xd3, 0xf8, 0x29, 0xe6, 0xa1, 0xbe, 0x3a, 0xcf, + 0x76, 0xc0, 0x29, 0x48, 0xa6, 0xf6, 0xa9, 0xd1, 0x3e, 0xe4, 0xb9, 0x05, 0x6e, 0xe5, 0xa3, 0xb7, + 0xe2, 0xba, 0xe6, 0x6f, 0x45, 0x04, 0xe4, 0x84, 0x7e, 0x8a, 0xe8, 0xc0, 0x6a, 0x4c, 0xc9, 0xe8, + 0x6e, 0xfc, 0x41, 0xca, 0x61, 0xad, 0xc7, 0xd2, 0x47, 0x3a, 0x9e, 0x3e, 0xc4, 0xa7, 0x20, 0xc4, + 0xf5, 0x7f, 0x9d, 0x6d, 0x7c, 0x9d, 0x85, 0xb5, 0x39, 0x6d, 0x22, 0x15, 0x56, 0x46, 0x64, 0x8d, + 0x79, 0x69, 0xe3, 0xd2, 0xe8, 0x5e, 0xda, 0x7f, 0xb2, 0xf0, 0x01, 0xf6, 0x8e, 0x19, 0x3d, 0x45, + 0x70, 0x6f, 0xaa, 0x8c, 0xc2, 0x30, 0xb4, 0x07, 0xeb, 0x7d, 0x13, 0xeb, 0x8e, 0x61, 0x0d, 0xb5, + 0xb1, 0x63, 0xf4, 0xb1, 0xe6, 0xe8, 0x1e, 0xe6, 0x29, 0x6e, 0xcd, 0x47, 0x75, 0x08, 0x46, 0xd1, + 0x3d, 0x8c, 0x9e, 0x83, 0xd0, 0x3f, 0xd7, 0x9d, 0x21, 0x1e, 0x68, 0x5c, 0x73, 0xbe, 0x43, 0xaf, + 0xc7, 0xf2, 0x70, 0xc3, 0x38, 0x3b, 0x53, 0x56, 0x39, 0x31, 0x87, 0xb9, 0xe8, 0x53, 0xa8, 0xe0, + 0x29, 0xee, 0x4f, 0xc8, 0x2b, 0x68, 0x67, 0xd8, 0x37, 0xa2, 0xa0, 0x3e, 0x93, 0x7d, 0xe4, 0x01, + 0xc6, 0x4a, 0x19, 0x87, 0x56, 0xe8, 0x5d, 0x58, 0x63, 0xf1, 0xca, 0x73, 0x74, 0xcb, 0xd5, 0xe9, + 0x43, 0xf2, 0xa8, 0x27, 0x50, 0x44, 0x77, 0x06, 0x47, 0x4f, 0x60, 0xfd, 0x0c, 0xb3, 0xcb, 0x68, + 0xae, 0xee, 0x69, 0x63, 0xa2, 0xeb, 0x37, 0xd4, 0x8e, 0xb2, 0xca, 0xea, 0x19, 0xa6, 0xb7, 0x51, + 0x75, 0xaf, 0x83, 0x9d, 0x97, 0x6f, 0x48, 0x7c, 0xa7, 0xd4, 0xb8, 0xc7, 0xe9, 0xa9, 0xdd, 0x64, + 0x95, 0x32, 0x21, 0xa4, 0x40, 0x55, 0x8f, 0xa6, 0xc2, 0x42, 0x34, 0x60, 0xce, 0xd5, 0x08, 0xc5, + 0xf9, 0x1a, 0xa1, 0x7a, 0x0a, 0x68, 0xfe, 0x41, 0x12, 0x62, 0xcf, 0xe3, 0x68, 0xec, 0x09, 0x74, + 0x13, 0x66, 0x8e, 0x06, 0x9f, 0xf5, 0x04, 0x3f, 0xba, 0x22, 0xbe, 0x8b, 0x36, 0xa0, 0x79, 0x17, + 0xba, 0x2a, 0x21, 0xec, 0x00, 0x70, 0xdd, 0x4f, 0x83, 0xba, 0xa1, 0xc8, 0x94, 0x3e, 0x35, 0x06, + 0xc4, 0x09, 0xce, 0xb1, 0x31, 0x3c, 0xf7, 0xb4, 0x73, 0x92, 0x8a, 0x32, 0xf4, 0xf2, 0xc0, 0x40, + 0x87, 0x24, 0xfd, 0xfc, 0x31, 0x0d, 0x2b, 0xd1, 0x88, 0x42, 0x42, 0x34, 0x0b, 0x3c, 0xec, 0xe6, + 0x3c, 0xbc, 0x3c, 0x03, 0xa0, 0x1f, 0x58, 0xe9, 0x90, 0xa6, 0x89, 0xf9, 0x6e, 0x72, 0x4c, 0xda, + 0xa3, 0x7f, 0x95, 0x22, 0xa5, 0x27, 0x05, 0xc3, 0x35, 0xed, 0x21, 0xfa, 0x1c, 0xd6, 0xfd, 0xac, + 0xe6, 0xd0, 0x36, 0x51, 0xa7, 0x26, 0x94, 0xbd, 0x2a, 0x44, 0x28, 0x48, 0x0f, 0x9a, 0x1e, 0x9f, + 0x43, 0x34, 0x20, 0xc7, 0xee, 0x10, 0xa9, 0x48, 0xd6, 0x61, 0x95, 0x57, 0x24, 0xea, 0xe1, 0x49, + 0xb7, 0x41, 0x80, 0xb4, 0x1c, 0x91, 0xea, 0xf5, 0xf6, 0x49, 0xab, 0xab, 0x35, 0xda, 0xb2, 0xaa, + 0xb5, 0xda, 0x5d, 0x4d, 0x7e, 0xd5, 0x54, 0xbb, 0x42, 0x1a, 0x89, 0xf0, 0x56, 0xb3, 0x55, 0x6f, + 0x1f, 0x77, 0x8e, 0xe4, 0xae, 0xac, 0xf9, 0x64, 0x8a, 0x4c, 0x76, 0x91, 0xba, 0xcd, 0x76, 0x4b, + 0xc8, 0x88, 0x7f, 0x4a, 0xc3, 0x4a, 0x54, 0xa2, 0x59, 0x6e, 0x63, 0x8d, 0x34, 0x5b, 0x90, 0x62, + 0x2c, 0xd2, 0x39, 0xf3, 0xd5, 0x75, 0x3a, 0x99, 0x6f, 0x8c, 0xb3, 0x49, 0x8d, 0xf1, 0x1d, 0x28, + 0xce, 0x1a, 0x62, 0xe6, 0x73, 0xcc, 0x56, 0x08, 0xf2, 0x29, 0xe4, 0x5c, 0x8f, 0x44, 0x8d, 0x65, + 0xfa, 0x5c, 0x77, 0x92, 0x35, 0xa9, 0x12, 0x12, 0x85, 0x51, 0xc6, 0x0d, 0x26, 0x1f, 0x37, 0x18, + 0xf4, 0x04, 0x0a, 0xf6, 0xc4, 0x63, 0x95, 0x4d, 0x61, 0x41, 0xef, 0x1c, 0x50, 0x10, 0xcb, 0xed, + 0x9b, 0xb6, 0x8b, 0x35, 0x6f, 0x4a, 0x3d, 0xaf, 0xac, 0xe4, 0xe9, 0xba, 0x3b, 0x15, 0x7f, 0x06, + 0xe5, 0xb0, 0xdf, 0xa0, 0x8f, 0xa0, 0xec, 0x47, 0xd1, 0x9e, 0x31, 0xf0, 0x63, 0x28, 0x8a, 0xf9, + 0x58, 0xcd, 0x18, 0x28, 0xa5, 0x51, 0xf0, 0xd9, 0x0d, 0xb3, 0xe9, 0xee, 0x85, 0x5f, 0x11, 0xc5, + 0xd9, 0x24, 0xf7, 0x22, 0x60, 0x93, 0xdc, 0x0b, 0x57, 0xec, 0x02, 0xcc, 0x50, 0xe8, 0xc1, 0xd5, + 0x3d, 0x31, 0xeb, 0x88, 0xef, 0x43, 0x79, 0x62, 0x19, 0x9e, 0xab, 0x9d, 0x19, 0xa6, 0xc9, 0x1b, + 0xd1, 0x8a, 0x52, 0xa2, 0xb0, 0x03, 0x0a, 0x0a, 0xed, 0x5a, 0x33, 0x48, 0xec, 0xa1, 0x2d, 0x74, + 0x6a, 0x41, 0x0b, 0x4d, 0x1b, 0xe8, 0x9b, 0xec, 0xfa, 0xe7, 0x34, 0x94, 0x42, 0xb1, 0x9b, 0x98, + 0x06, 0xb6, 0x06, 0x24, 0x31, 0xf4, 0x74, 0x53, 0xf7, 0x7b, 0xd9, 0xac, 0x52, 0x61, 0xd0, 0x1a, + 0x03, 0xa2, 0x3a, 0x94, 0x39, 0x19, 0x33, 0x02, 0xe6, 0xb3, 0xbb, 0x09, 0xd9, 0x60, 0x2f, 0x62, + 0x09, 0x25, 0xc6, 0x45, 0x17, 0xe4, 0x2c, 0xff, 0x31, 0x35, 0xc3, 0x1a, 0xe0, 0x29, 0xb5, 0xd4, + 0x9c, 0x52, 0xf1, 0xa1, 0x4d, 0x02, 0x8c, 0x19, 0x73, 0x36, 0x9e, 0x37, 0x7f, 0x0e, 0xe5, 0xf0, + 0x11, 0x68, 0x03, 0x84, 0xf6, 0x49, 0xb7, 0x73, 0x42, 0x9c, 0xaa, 0xae, 0xc8, 0x52, 0x57, 0x6e, + 0x08, 0x4b, 0xe8, 0x3e, 0xec, 0x70, 0x68, 0xe3, 0x44, 0x25, 0xde, 0xd8, 0x95, 0x5b, 0x0d, 0xb9, + 0xa1, 0xb5, 0x0f, 0x0e, 0xea, 0x87, 0x52, 0x93, 0x78, 0xed, 0x0e, 0x6c, 0x87, 0x49, 0xa4, 0x06, + 0xc1, 0x77, 0xdb, 0xda, 0x81, 0x2c, 0xab, 0x42, 0x9a, 0xf4, 0x1e, 0x1c, 0x7d, 0x70, 0x72, 0x74, + 0xf4, 0xa5, 0xa6, 0x76, 0xe4, 0x56, 0x57, 0xc8, 0x88, 0xff, 0x4a, 0x43, 0x89, 0xe9, 0x9d, 0xd9, + 0xda, 0x35, 0xdd, 0xdf, 0x0e, 0x00, 0xcd, 0x4f, 0x67, 0xc6, 0x34, 0x78, 0x91, 0x22, 0x81, 0x1c, + 0x10, 0x00, 0x49, 0x0c, 0xfa, 0xc8, 0xe3, 0xb3, 0x1d, 0xf2, 0x31, 0xde, 0xdc, 0x2d, 0xc7, 0x47, + 0x0b, 0xc4, 0x4d, 0x19, 0x01, 0xe9, 0x16, 0xf3, 0xcc, 0x4d, 0x29, 0x40, 0x35, 0x86, 0x48, 0x84, + 0xca, 0x68, 0x62, 0x7a, 0x06, 0x41, 0x52, 0x81, 0x58, 0x0e, 0x2b, 0x51, 0xa0, 0x6a, 0x0c, 0x89, + 0x48, 0xdb, 0x50, 0xa0, 0xbd, 0xcb, 0x78, 0xd2, 0xf3, 0x1d, 0x89, 0xac, 0x3b, 0x93, 0x1e, 0x7a, + 0x1f, 0x8a, 0x14, 0xa5, 0x0f, 0x06, 0xce, 0x16, 0x44, 0x53, 0x3e, 0xe9, 0x6c, 0xa4, 0xc1, 0xc0, + 0xc1, 0xae, 0xab, 0xd0, 0x0d, 0xc8, 0x82, 0x48, 0x43, 0x4a, 0x77, 0x8d, 0xf6, 0x58, 0x65, 0x7a, + 0xbd, 0x02, 0x01, 0x90, 0xc6, 0x0a, 0x3d, 0x87, 0x9d, 0x91, 0x3e, 0xe5, 0x63, 0xb6, 0xa4, 0x54, + 0x5d, 0xa1, 0xf7, 0xbe, 0x3d, 0xd2, 0xa7, 0x74, 0xe4, 0x76, 0x10, 0x4d, 0xd9, 0x2f, 0xb2, 0x85, + 0xac, 0x90, 0x7b, 0x91, 0x2d, 0xe4, 0x84, 0xe5, 0x17, 0xd9, 0x42, 0x49, 0x28, 0x8b, 0xbf, 0x4e, + 0x41, 0x31, 0xb0, 0x7a, 0xf4, 0x7f, 0xc1, 0xb4, 0x86, 0x7b, 0xc6, 0x7a, 0xd4, 0x33, 0x58, 0x16, + 0xf5, 0x69, 0x48, 0x1d, 0x34, 0x32, 0x2c, 0x6d, 0x30, 0x71, 0x68, 0x88, 0xd7, 0x7a, 0xa6, 0xdd, + 0xbf, 0x70, 0xfd, 0x3a, 0x68, 0x64, 0x58, 0x0d, 0x8e, 0xa9, 0x51, 0x04, 0xda, 0x82, 0xbc, 0x9f, + 0xea, 0xd9, 0x58, 0xcd, 0x5f, 0xbe, 0xc8, 0x16, 0x32, 0x42, 0x56, 0xfc, 0x55, 0x20, 0x0c, 0x71, + 0xfc, 0xef, 0x20, 0x8c, 0x3e, 0x9d, 0x13, 0x26, 0xcb, 0x85, 0xd1, 0xa7, 0x8b, 0x85, 0xc9, 0x45, + 0x84, 0x11, 0xf7, 0xa0, 0x14, 0x9a, 0x32, 0x5d, 0x3f, 0x9b, 0xfa, 0x26, 0x05, 0xe5, 0xf0, 0x88, + 0xec, 0x5a, 0x0e, 0xf4, 0x43, 0x28, 0x9d, 0xe9, 0x86, 0xa9, 0x85, 0x26, 0x01, 0x2b, 0xfb, 0xf7, + 0x92, 0xc6, 0x6d, 0x7b, 0x07, 0xba, 0x61, 0xfa, 0x6d, 0xfe, 0x59, 0xf0, 0x99, 0x1c, 0x41, 0x77, + 0x70, 0x3d, 0x52, 0x6a, 0x52, 0x7b, 0x2f, 0x32, 0x02, 0x95, 0x42, 0xc4, 0x1d, 0x80, 0x19, 0x2b, + 0x5a, 0x85, 0x52, 0xb3, 0x75, 0x2a, 0x1d, 0x35, 0x1b, 0x9a, 0x74, 0xdc, 0x15, 0x96, 0xc4, 0x67, + 0xbe, 0xd3, 0x35, 0xad, 0xf1, 0x24, 0x9a, 0x39, 0x52, 0xd7, 0x65, 0x0e, 0xf1, 0xff, 0xa1, 0xcc, + 0x9f, 0x60, 0xe2, 0x11, 0xee, 0x85, 0xc9, 0x35, 0x32, 0x8f, 0xe5, 0x2b, 0xf1, 0xeb, 0x34, 0x54, + 0x19, 0xfb, 0xb1, 0x3d, 0x30, 0xce, 0x2e, 0x63, 0x53, 0xe0, 0x6b, 0xfc, 0x7f, 0x1f, 0xc0, 0xc2, + 0x6f, 0x34, 0x83, 0x88, 0xed, 0x67, 0x94, 0x98, 0x61, 0xd0, 0x2b, 0x29, 0x45, 0x0b, 0xbf, 0xa1, + 0x9f, 0x48, 0x1e, 0x2a, 0x11, 0x1e, 0x9b, 0x4a, 0xeb, 0x97, 0xde, 0x1b, 0x31, 0x6b, 0xa2, 0x48, + 0x85, 0x6c, 0xce, 0x3e, 0xba, 0xe8, 0x94, 0x1d, 0x35, 0xd6, 0x1d, 0x7d, 0xe4, 0xf2, 0x8a, 0xe7, + 0xe3, 0x28, 0x57, 0xd2, 0x0d, 0xf6, 0x5a, 0xf8, 0x0d, 0x87, 0x74, 0x08, 0x2b, 0xf6, 0xb0, 0xe3, + 0x52, 0x71, 0xe8, 0xd2, 0xad, 0x3e, 0x81, 0x8d, 0x24, 0x92, 0x64, 0x35, 0x8a, 0xcf, 0xe1, 0x4e, + 0xe2, 0x59, 0x7c, 0x76, 0x7b, 0x0f, 0x4a, 0xa1, 0xa9, 0x83, 0x6f, 0x6b, 0xb3, 0x59, 0x82, 0xf8, + 0x19, 0xdc, 0x0e, 0xf9, 0x0b, 0x4b, 0x23, 0x37, 0x9d, 0xba, 0x7e, 0xe5, 0x8f, 0x6c, 0xc3, 0xbc, + 0xfc, 0xe0, 0x47, 0x7e, 0x01, 0xc3, 0x06, 0x41, 0x28, 0xd2, 0x50, 0x45, 0xea, 0x96, 0x77, 0x61, + 0x8d, 0xa5, 0xd1, 0x89, 0x75, 0x36, 0x31, 0x23, 0xb9, 0x54, 0xa0, 0x88, 0x93, 0x19, 0x5c, 0x5c, + 0x83, 0xd5, 0x03, 0x8c, 0x7f, 0x34, 0xb1, 0x03, 0x31, 0xc5, 0x63, 0x10, 0x66, 0x20, 0x7e, 0xfa, + 0x5c, 0x4b, 0x94, 0xba, 0x69, 0x4b, 0x24, 0xae, 0x40, 0xb9, 0x8b, 0x9d, 0x91, 0xeb, 0x6f, 0xff, + 0x4d, 0x0a, 0x2a, 0x1c, 0xc0, 0x37, 0x7f, 0x0c, 0x24, 0x5e, 0x68, 0x49, 0xdf, 0xc0, 0xac, 0x8e, + 0xf4, 0xa9, 0x14, 0xfe, 0xc6, 0xe0, 0x53, 0xd8, 0x26, 0xb4, 0x4c, 0x8f, 0xc9, 0x91, 0x70, 0x73, + 0xa4, 0x4f, 0xa9, 0x56, 0x62, 0x11, 0x68, 0xee, 0x0e, 0x99, 0x1b, 0xdf, 0xa1, 0x06, 0x1b, 0x0a, + 0x36, 0xf1, 0x6b, 0xdd, 0xf2, 0x6a, 0x6c, 0x2a, 0xc8, 0x5e, 0x74, 0x05, 0xd2, 0x41, 0x1f, 0x92, + 0x36, 0x06, 0xa8, 0x4a, 0x87, 0xf3, 0xac, 0xe3, 0x4c, 0xd3, 0xb1, 0x66, 0xb0, 0x16, 0xff, 0x9a, + 0x81, 0x4a, 0x64, 0x93, 0x70, 0x48, 0x4c, 0x45, 0x42, 0x22, 0xdf, 0x37, 0x1d, 0xec, 0xfb, 0x7d, + 0x3b, 0xda, 0xf6, 0x5c, 0x5b, 0x9e, 0x8d, 0x0e, 0xb8, 0x22, 0x82, 0x7d, 0xf7, 0x96, 0x3c, 0xb7, + 0xa8, 0x25, 0x9f, 0xd3, 0xfd, 0xf2, 0x8d, 0x5b, 0xea, 0x5d, 0x28, 0x85, 0x9b, 0x69, 0x56, 0x31, + 0x84, 0x41, 0x8b, 0xfa, 0xe8, 0x42, 0x62, 0x1f, 0xfd, 0x5f, 0xeb, 0x70, 0x1b, 0x50, 0x0e, 0xdf, + 0x82, 0x75, 0xaa, 0x2e, 0x0e, 0xbc, 0x25, 0x4b, 0x3a, 0x55, 0x17, 0x73, 0x94, 0x2f, 0x30, 0xdd, + 0x3d, 0xab, 0xe4, 0xb9, 0x94, 0x24, 0x51, 0x84, 0x0a, 0x15, 0x62, 0x22, 0x16, 0xf6, 0xde, 0xd8, + 0xce, 0x05, 0x17, 0xcd, 0x5f, 0x22, 0x04, 0x59, 0x5a, 0xe5, 0xb0, 0xb1, 0x36, 0xfd, 0x2c, 0x4a, + 0x50, 0xf0, 0xd3, 0x07, 0xc1, 0xd3, 0x3e, 0x98, 0x19, 0x27, 0xfd, 0x4c, 0x0a, 0x6c, 0x16, 0x94, + 0x79, 0xfd, 0xca, 0x0b, 0x6c, 0x06, 0xa3, 0xd5, 0xab, 0xf8, 0x9b, 0x14, 0x94, 0x24, 0xf7, 0x42, + 0xb5, 0xf4, 0xb1, 0x7b, 0x6e, 0x7b, 0x57, 0xd8, 0xe8, 0x82, 0x02, 0x20, 0xbd, 0xa8, 0x00, 0x88, + 0x56, 0x92, 0x99, 0x78, 0x25, 0x19, 0x29, 0xc4, 0xb2, 0xd1, 0x42, 0x8c, 0x4a, 0x55, 0x33, 0x06, + 0x37, 0x94, 0xea, 0x3f, 0xa9, 0x91, 0xbe, 0x8f, 0x54, 0xdf, 0xa6, 0x60, 0x23, 0x6c, 0x0d, 0x81, + 0x78, 0x91, 0xef, 0x15, 0x67, 0x1e, 0x3a, 0x53, 0x6b, 0xc2, 0xf7, 0x8a, 0x01, 0x59, 0xe8, 0x9e, + 0xac, 0x2d, 0x7a, 0x00, 0xcc, 0xf9, 0x88, 0xaf, 0x51, 0x93, 0x61, 0x52, 0x96, 0x7d, 0x20, 0x75, + 0xb0, 0x27, 0x80, 0x3c, 0xdb, 0xd3, 0x4d, 0xe2, 0x00, 0xae, 0x46, 0x1d, 0x10, 0x0f, 0xa8, 0xc4, + 0x59, 0x45, 0xa0, 0x18, 0x55, 0xf7, 0xdc, 0x3a, 0x83, 0x93, 0x2d, 0x59, 0x8a, 0xe0, 0x5e, 0xcd, + 0x1d, 0x97, 0xb5, 0x5f, 0xfc, 0x4a, 0xe2, 0x53, 0xd8, 0xa0, 0xe1, 0x20, 0x90, 0x86, 0x07, 0xbd, + 0x2b, 0x66, 0x36, 0x7f, 0x48, 0xc3, 0xad, 0x18, 0x0f, 0x8f, 0xf1, 0x8b, 0x5f, 0x6c, 0xf1, 0x97, + 0x3d, 0xa4, 0x1b, 0x18, 0x3b, 0xf8, 0xb5, 0x16, 0xe0, 0xd9, 0x68, 0xa0, 0x44, 0x80, 0x35, 0x4e, + 0xb3, 0x20, 0x12, 0x65, 0x17, 0x45, 0xa2, 0xfa, 0x5c, 0x28, 0xcc, 0xd1, 0x50, 0x78, 0x37, 0xc9, + 0xbf, 0x83, 0x6b, 0xc4, 0xc2, 0xdf, 0x5b, 0x50, 0xf2, 0x47, 0x4d, 0x44, 0xac, 0x3c, 0xf5, 0x41, + 0x7f, 0xd6, 0xd4, 0x1c, 0xcc, 0xee, 0xe4, 0x4d, 0x79, 0x07, 0x94, 0xe7, 0xc8, 0xc7, 0xef, 0x04, + 0x5f, 0xef, 0xd0, 0x16, 0xa3, 0x02, 0xc5, 0xee, 0x17, 0xb2, 0xf4, 0xf2, 0x48, 0x56, 0x55, 0x61, + 0x09, 0x95, 0x20, 0x2f, 0xb5, 0xea, 0x87, 0x6d, 0x45, 0x15, 0x52, 0x8f, 0x7f, 0x97, 0x82, 0xf5, + 0x84, 0xf9, 0x04, 0xfd, 0x5a, 0xa9, 0x2b, 0x75, 0x65, 0xad, 0x23, 0xb7, 0x1a, 0xcd, 0xd6, 0xe7, + 0x5a, 0xbb, 0x23, 0xb7, 0x84, 0x25, 0xb4, 0x02, 0xc0, 0xe0, 0x74, 0x9d, 0x42, 0x6b, 0x50, 0x61, + 0x6b, 0xf9, 0x55, 0xa7, 0xa9, 0xc8, 0x0d, 0x21, 0x8d, 0xb6, 0x60, 0x23, 0xca, 0x7a, 0xd2, 0x69, + 0x48, 0x5d, 0x59, 0xc8, 0x20, 0x01, 0xca, 0x0c, 0x53, 0x3f, 0x6a, 0xab, 0x72, 0x43, 0xc8, 0xa2, + 0xdb, 0xb0, 0x1e, 0xa5, 0xa5, 0xdf, 0x59, 0x09, 0xb9, 0xc7, 0xbf, 0x4f, 0x01, 0xcc, 0xca, 0x0e, + 0xb4, 0x0e, 0xab, 0x6d, 0xa5, 0x21, 0x2b, 0x9a, 0x7a, 0x52, 0x3b, 0x6e, 0x76, 0x59, 0x03, 0xbb, + 0x06, 0x15, 0x06, 0xac, 0x1f, 0xc9, 0x12, 0x39, 0x9b, 0x8e, 0x99, 0x18, 0xa8, 0x23, 0x29, 0xdd, + 0xa6, 0x44, 0x9a, 0xd2, 0x83, 0xe6, 0xd1, 0x11, 0x95, 0x0b, 0xc1, 0x0a, 0xc3, 0xc9, 0xaf, 0xe4, + 0xfa, 0x09, 0xd9, 0x22, 0x33, 0x83, 0xd5, 0xa5, 0x56, 0x5d, 0x3e, 0xa2, 0x32, 0x05, 0xdb, 0xfa, + 0x57, 0xca, 0x11, 0xc1, 0x19, 0xe8, 0x40, 0x6a, 0x12, 0xa2, 0xe5, 0xfd, 0x7f, 0x2c, 0x07, 0xdf, + 0x9f, 0x48, 0xc1, 0x84, 0x88, 0xe4, 0xc0, 0xe8, 0x0f, 0x2f, 0xd0, 0xce, 0x2c, 0xfb, 0x25, 0xfc, + 0x28, 0xa4, 0xfa, 0xd6, 0x22, 0x34, 0x37, 0x69, 0x05, 0x4a, 0xa1, 0x1f, 0x1c, 0xa0, 0xdd, 0x78, + 0x55, 0x1c, 0xff, 0xc1, 0x45, 0xf5, 0xfe, 0x15, 0x14, 0x7c, 0xcf, 0x57, 0x50, 0x89, 0xd4, 0x9d, + 0x48, 0xbc, 0xbe, 0x00, 0xae, 0x3e, 0xb8, 0x92, 0x66, 0x26, 0x6d, 0xe8, 0xb7, 0x08, 0x71, 0x69, + 0xe7, 0x7f, 0x1c, 0x11, 0x97, 0x36, 0xe9, 0x87, 0x0c, 0x4a, 0xb4, 0x73, 0x8b, 0xed, 0x39, 0xff, + 0xbb, 0x83, 0xf8, 0x9e, 0x09, 0x3f, 0x2e, 0x40, 0xed, 0x88, 0x6d, 0xdd, 0x4b, 0xe8, 0x41, 0xc3, + 0x35, 0x75, 0x75, 0x77, 0x31, 0x01, 0xdf, 0xf0, 0x0b, 0xb8, 0x15, 0xcc, 0x64, 0x69, 0xd0, 0xe0, + 0x36, 0x81, 0x02, 0x8f, 0x4f, 0xfa, 0x2d, 0x43, 0xf5, 0x6e, 0x6c, 0xf4, 0x15, 0xc1, 0x3e, 0x4a, + 0xbd, 0x9f, 0x42, 0x3f, 0x80, 0x82, 0x5f, 0x27, 0xa3, 0xe0, 0xdb, 0xaf, 0x58, 0x31, 0x5d, 0xdd, + 0x9a, 0x47, 0x70, 0xb9, 0x3e, 0x84, 0x1c, 0x2d, 0x83, 0x51, 0x50, 0x59, 0x84, 0xcb, 0xe4, 0xea, + 0xad, 0x18, 0x94, 0x73, 0x1d, 0xc1, 0xad, 0x48, 0xad, 0x16, 0xe4, 0x9c, 0xbb, 0x89, 0xa5, 0xdc, + 0xdc, 0x6e, 0xd1, 0x0a, 0xf4, 0x08, 0x2a, 0x0b, 0x76, 0x49, 0x8a, 0xfc, 0xd5, 0x9d, 0x05, 0x58, + 0x26, 0x5b, 0xed, 0xe1, 0x8f, 0x1f, 0x0c, 0x0d, 0xef, 0x7c, 0xd2, 0xdb, 0xeb, 0xdb, 0xa3, 0xf7, + 0x4c, 0x63, 0x78, 0xee, 0x59, 0x86, 0x35, 0x34, 0xf5, 0x9e, 0xfb, 0x9e, 0x69, 0x8e, 0xde, 0x63, + 0xcc, 0xbd, 0x65, 0xfa, 0xab, 0xac, 0x0f, 0xfe, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xf1, 0x98, 0x02, + 0x5e, 0xa9, 0x25, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3936,6 +4035,7 @@ type ChannelAuctioneerClient interface { OrderState(ctx context.Context, in *ServerOrderStateRequest, opts ...grpc.CallOption) (*ServerOrderStateResponse, error) SubscribeBatchAuction(ctx context.Context, opts ...grpc.CallOption) (ChannelAuctioneer_SubscribeBatchAuctionClient, error) FeeQuote(ctx context.Context, in *FeeQuoteRequest, opts ...grpc.CallOption) (*FeeQuoteResponse, error) + Terms(ctx context.Context, in *TermsRequest, opts ...grpc.CallOption) (*TermsResponse, error) RelevantBatchSnapshot(ctx context.Context, in *RelevantBatchRequest, opts ...grpc.CallOption) (*RelevantBatch, error) BatchSnapshot(ctx context.Context, in *BatchSnapshotRequest, opts ...grpc.CallOption) (*BatchSnapshotResponse, error) } @@ -4042,6 +4142,15 @@ func (c *channelAuctioneerClient) FeeQuote(ctx context.Context, in *FeeQuoteRequ return out, nil } +func (c *channelAuctioneerClient) Terms(ctx context.Context, in *TermsRequest, opts ...grpc.CallOption) (*TermsResponse, error) { + out := new(TermsResponse) + err := c.cc.Invoke(ctx, "/clmrpc.ChannelAuctioneer/Terms", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *channelAuctioneerClient) RelevantBatchSnapshot(ctx context.Context, in *RelevantBatchRequest, opts ...grpc.CallOption) (*RelevantBatch, error) { out := new(RelevantBatch) err := c.cc.Invoke(ctx, "/clmrpc.ChannelAuctioneer/RelevantBatchSnapshot", in, out, opts...) @@ -4070,6 +4179,7 @@ type ChannelAuctioneerServer interface { OrderState(context.Context, *ServerOrderStateRequest) (*ServerOrderStateResponse, error) SubscribeBatchAuction(ChannelAuctioneer_SubscribeBatchAuctionServer) error FeeQuote(context.Context, *FeeQuoteRequest) (*FeeQuoteResponse, error) + Terms(context.Context, *TermsRequest) (*TermsResponse, error) RelevantBatchSnapshot(context.Context, *RelevantBatchRequest) (*RelevantBatch, error) BatchSnapshot(context.Context, *BatchSnapshotRequest) (*BatchSnapshotResponse, error) } @@ -4102,6 +4212,9 @@ func (*UnimplementedChannelAuctioneerServer) SubscribeBatchAuction(srv ChannelAu func (*UnimplementedChannelAuctioneerServer) FeeQuote(ctx context.Context, req *FeeQuoteRequest) (*FeeQuoteResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method FeeQuote not implemented") } +func (*UnimplementedChannelAuctioneerServer) Terms(ctx context.Context, req *TermsRequest) (*TermsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Terms not implemented") +} func (*UnimplementedChannelAuctioneerServer) RelevantBatchSnapshot(ctx context.Context, req *RelevantBatchRequest) (*RelevantBatch, error) { return nil, status.Errorf(codes.Unimplemented, "method RelevantBatchSnapshot not implemented") } @@ -4265,6 +4378,24 @@ func _ChannelAuctioneer_FeeQuote_Handler(srv interface{}, ctx context.Context, d return interceptor(ctx, in, info, handler) } +func _ChannelAuctioneer_Terms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(TermsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ChannelAuctioneerServer).Terms(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/clmrpc.ChannelAuctioneer/Terms", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ChannelAuctioneerServer).Terms(ctx, req.(*TermsRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ChannelAuctioneer_RelevantBatchSnapshot_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(RelevantBatchRequest) if err := dec(in); err != nil { @@ -4333,6 +4464,10 @@ var _ChannelAuctioneer_serviceDesc = grpc.ServiceDesc{ MethodName: "FeeQuote", Handler: _ChannelAuctioneer_FeeQuote_Handler, }, + { + MethodName: "Terms", + Handler: _ChannelAuctioneer_Terms_Handler, + }, { MethodName: "RelevantBatchSnapshot", Handler: _ChannelAuctioneer_RelevantBatchSnapshot_Handler, diff --git a/clmrpc/auctioneer.proto b/clmrpc/auctioneer.proto index 519a6fe..e2816c6 100644 --- a/clmrpc/auctioneer.proto +++ b/clmrpc/auctioneer.proto @@ -13,6 +13,7 @@ service ChannelAuctioneer { rpc OrderState (ServerOrderStateRequest) returns (ServerOrderStateResponse); rpc SubscribeBatchAuction (stream ClientAuctionMessage) returns (stream ServerAuctionMessage); rpc FeeQuote (FeeQuoteRequest) returns (FeeQuoteResponse); + rpc Terms (TermsRequest) returns (TermsResponse); rpc RelevantBatchSnapshot (RelevantBatchRequest) returns (RelevantBatch); rpc BatchSnapshot (BatchSnapshotRequest) returns (BatchSnapshotResponse); } @@ -886,6 +887,25 @@ message FeeQuoteResponse { ExecutionFee execution_fee = 1; } +message TermsRequest { +} + +message TermsResponse { + /* + The maximum account size in satoshis currently allowed by the auctioneer. + */ + uint64 max_account_value = 1; + + /* + The maximum order duration in blocks currently allowed by the auctioneer. + */ + uint32 max_order_duration_blocks = 2; + + /* + The execution fee charged per matched order. + */ + ExecutionFee execution_fee = 3; +} message RelevantBatchRequest { // The unique identifier of the batch. @@ -940,7 +960,7 @@ message ExecutionFee { uint64 base_fee = 1; /* - The fee rate in parts per million + The fee rate in parts per million. */ uint64 fee_rate = 2; } diff --git a/clmrpc/trader.swagger.json b/clmrpc/trader.swagger.json index 550bdfe..1f0acd0 100644 --- a/clmrpc/trader.swagger.json +++ b/clmrpc/trader.swagger.json @@ -651,7 +651,7 @@ "fee_rate": { "type": "string", "format": "uint64", - "title": "The fee rate in parts per million" + "description": "The fee rate in parts per million." } } }, diff --git a/terms/terms.go b/terms/terms.go new file mode 100644 index 0000000..369cea5 --- /dev/null +++ b/terms/terms.go @@ -0,0 +1,30 @@ +package terms + +import ( + "github.com/btcsuite/btcutil" +) + +// AuctioneerTerms is a struct that holds all dynamic terms the auctioneer defines. +type AuctioneerTerms struct { + // MaxAccountValue is the current maximum allowed account value. + MaxAccountValue btcutil.Amount + + // MaxOrderDuration is the current maximum value for an order duration. + // That means that an ask's MaxDuration or a bid's MinDuration cannot + // exceed this value. + MaxOrderDuration uint32 + + // OrderExecBaseFee is the base fee charged per order, regardless of the + // matched size. + OrderExecBaseFee btcutil.Amount + + // OrderExecFeeRate is the fee rate in parts per million. + OrderExecFeeRate btcutil.Amount +} + +// FeeSchedule returns the execution fee as a FeeSchedule. +func (t *AuctioneerTerms) FeeSchedule() FeeSchedule { + return NewLinearFeeSchedule( + t.OrderExecBaseFee, t.OrderExecFeeRate, + ) +}