lnrpc: augment the PendingChannels RPC to include details of closed channels

This commit adds some additional fields to the PendingChannels RPC s.t
users will be able to use the RPC to gain a complete view w.r.t where
all the funds within the daemon are, and how soon they can be
retrieved.

The following information is now returned:
   * all channels pending open
   * all channels pending cooperative close
   * all channels pending force close
This commit is contained in:
Olaoluwa Osuntokun 2017-05-04 15:34:02 -07:00
parent 54177557be
commit 9e4e423de1
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
4 changed files with 499 additions and 357 deletions

@ -109,30 +109,6 @@ var _ = math.Inf
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
type ChannelStatus int32
const (
ChannelStatus_ALL ChannelStatus = 0
ChannelStatus_OPENING ChannelStatus = 1
ChannelStatus_CLOSING ChannelStatus = 2
)
var ChannelStatus_name = map[int32]string{
0: "ALL",
1: "OPENING",
2: "CLOSING",
}
var ChannelStatus_value = map[string]int32{
"ALL": 0,
"OPENING": 1,
"CLOSING": 2,
}
func (x ChannelStatus) String() string {
return proto.EnumName(ChannelStatus_name, int32(x))
}
func (ChannelStatus) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
type NewAddressRequest_AddressType int32
const (
@ -1401,7 +1377,6 @@ func _OpenStatusUpdate_OneofSizer(msg proto.Message) (n int) {
}
type PendingChannelRequest struct {
Status ChannelStatus `protobuf:"varint,1,opt,name=status,enum=lnrpc.ChannelStatus" json:"status,omitempty"`
}
func (m *PendingChannelRequest) Reset() { *m = PendingChannelRequest{} }
@ -1409,15 +1384,11 @@ func (m *PendingChannelRequest) String() string { return proto.Compac
func (*PendingChannelRequest) ProtoMessage() {}
func (*PendingChannelRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{33} }
func (m *PendingChannelRequest) GetStatus() ChannelStatus {
if m != nil {
return m.Status
}
return ChannelStatus_ALL
}
type PendingChannelResponse struct {
PendingChannels []*PendingChannelResponse_PendingChannel `protobuf:"bytes,1,rep,name=pending_channels" json:"pending_channels,omitempty"`
TotalLimboBalance int64 `protobuf:"varint,1,opt,name=total_limbo_balance" json:"total_limbo_balance,omitempty"`
PendingOpenChannels []*PendingChannelResponse_PendingOpenChannel `protobuf:"bytes,2,rep,name=pending_open_channels" json:"pending_open_channels,omitempty"`
PendingClosingChannels []*PendingChannelResponse_ClosedChannel `protobuf:"bytes,3,rep,name=pending_closing_channels" json:"pending_closing_channels,omitempty"`
PendingForceClosingChannels []*PendingChannelResponse_ForceClosedChannel `protobuf:"bytes,4,rep,name=pending_force_closing_channels" json:"pending_force_closing_channels,omitempty"`
}
func (m *PendingChannelResponse) Reset() { *m = PendingChannelResponse{} }
@ -1425,21 +1396,40 @@ func (m *PendingChannelResponse) String() string { return proto.Compa
func (*PendingChannelResponse) ProtoMessage() {}
func (*PendingChannelResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34} }
func (m *PendingChannelResponse) GetPendingChannels() []*PendingChannelResponse_PendingChannel {
func (m *PendingChannelResponse) GetTotalLimboBalance() int64 {
if m != nil {
return m.PendingChannels
return m.TotalLimboBalance
}
return 0
}
func (m *PendingChannelResponse) GetPendingOpenChannels() []*PendingChannelResponse_PendingOpenChannel {
if m != nil {
return m.PendingOpenChannels
}
return nil
}
func (m *PendingChannelResponse) GetPendingClosingChannels() []*PendingChannelResponse_ClosedChannel {
if m != nil {
return m.PendingClosingChannels
}
return nil
}
func (m *PendingChannelResponse) GetPendingForceClosingChannels() []*PendingChannelResponse_ForceClosedChannel {
if m != nil {
return m.PendingForceClosingChannels
}
return nil
}
type PendingChannelResponse_PendingChannel struct {
IdentityKey string `protobuf:"bytes,1,opt,name=identity_key" json:"identity_key,omitempty"`
ChannelPoint string `protobuf:"bytes,2,opt,name=channel_point" json:"channel_point,omitempty"`
Capacity int64 `protobuf:"varint,3,opt,name=capacity" json:"capacity,omitempty"`
LocalBalance int64 `protobuf:"varint,4,opt,name=local_balance" json:"local_balance,omitempty"`
RemoteBalance int64 `protobuf:"varint,5,opt,name=remote_balance" json:"remote_balance,omitempty"`
ClosingTxid string `protobuf:"bytes,6,opt,name=closing_txid" json:"closing_txid,omitempty"`
Status ChannelStatus `protobuf:"varint,7,opt,name=status,enum=lnrpc.ChannelStatus" json:"status,omitempty"`
RemoteNodePub string `protobuf:"bytes,1,opt,name=remote_node_pub" json:"remote_node_pub,omitempty"`
ChannelPoint string `protobuf:"bytes,2,opt,name=channel_point" json:"channel_point,omitempty"`
Capacity int64 `protobuf:"varint,3,opt,name=capacity" json:"capacity,omitempty"`
LocalBalance int64 `protobuf:"varint,4,opt,name=local_balance" json:"local_balance,omitempty"`
RemoteBalance int64 `protobuf:"varint,5,opt,name=remote_balance" json:"remote_balance,omitempty"`
}
func (m *PendingChannelResponse_PendingChannel) Reset() { *m = PendingChannelResponse_PendingChannel{} }
@ -1449,9 +1439,9 @@ func (*PendingChannelResponse_PendingChannel) Descriptor() ([]byte, []int) {
return fileDescriptor0, []int{34, 0}
}
func (m *PendingChannelResponse_PendingChannel) GetIdentityKey() string {
func (m *PendingChannelResponse_PendingChannel) GetRemoteNodePub() string {
if m != nil {
return m.IdentityKey
return m.RemoteNodePub
}
return ""
}
@ -1484,18 +1474,118 @@ func (m *PendingChannelResponse_PendingChannel) GetRemoteBalance() int64 {
return 0
}
func (m *PendingChannelResponse_PendingChannel) GetClosingTxid() string {
type PendingChannelResponse_PendingOpenChannel struct {
Channel *PendingChannelResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
ConfirmationHeight uint32 `protobuf:"varint,2,opt,name=confirmation_height" json:"confirmation_height,omitempty"`
BlocksTillOpen uint32 `protobuf:"varint,3,opt,name=blocks_till_open" json:"blocks_till_open,omitempty"`
}
func (m *PendingChannelResponse_PendingOpenChannel) Reset() {
*m = PendingChannelResponse_PendingOpenChannel{}
}
func (m *PendingChannelResponse_PendingOpenChannel) String() string { return proto.CompactTextString(m) }
func (*PendingChannelResponse_PendingOpenChannel) ProtoMessage() {}
func (*PendingChannelResponse_PendingOpenChannel) Descriptor() ([]byte, []int) {
return fileDescriptor0, []int{34, 1}
}
func (m *PendingChannelResponse_PendingOpenChannel) GetChannel() *PendingChannelResponse_PendingChannel {
if m != nil {
return m.Channel
}
return nil
}
func (m *PendingChannelResponse_PendingOpenChannel) GetConfirmationHeight() uint32 {
if m != nil {
return m.ConfirmationHeight
}
return 0
}
func (m *PendingChannelResponse_PendingOpenChannel) GetBlocksTillOpen() uint32 {
if m != nil {
return m.BlocksTillOpen
}
return 0
}
type PendingChannelResponse_ClosedChannel struct {
Channel *PendingChannelResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
ClosingTxid string `protobuf:"bytes,2,opt,name=closing_txid" json:"closing_txid,omitempty"`
}
func (m *PendingChannelResponse_ClosedChannel) Reset() { *m = PendingChannelResponse_ClosedChannel{} }
func (m *PendingChannelResponse_ClosedChannel) String() string { return proto.CompactTextString(m) }
func (*PendingChannelResponse_ClosedChannel) ProtoMessage() {}
func (*PendingChannelResponse_ClosedChannel) Descriptor() ([]byte, []int) {
return fileDescriptor0, []int{34, 2}
}
func (m *PendingChannelResponse_ClosedChannel) GetChannel() *PendingChannelResponse_PendingChannel {
if m != nil {
return m.Channel
}
return nil
}
func (m *PendingChannelResponse_ClosedChannel) GetClosingTxid() string {
if m != nil {
return m.ClosingTxid
}
return ""
}
func (m *PendingChannelResponse_PendingChannel) GetStatus() ChannelStatus {
type PendingChannelResponse_ForceClosedChannel struct {
Channel *PendingChannelResponse_PendingChannel `protobuf:"bytes,1,opt,name=channel" json:"channel,omitempty"`
ClosingTxid string `protobuf:"bytes,2,opt,name=closing_txid" json:"closing_txid,omitempty"`
LimboBalance int64 `protobuf:"varint,3,opt,name=limbo_balance" json:"limbo_balance,omitempty"`
MaturityHeight uint32 `protobuf:"varint,4,opt,name=maturity_height" json:"maturity_height,omitempty"`
BlocksTilMaturity uint32 `protobuf:"varint,5,opt,name=blocks_til_maturity" json:"blocks_til_maturity,omitempty"`
}
func (m *PendingChannelResponse_ForceClosedChannel) Reset() {
*m = PendingChannelResponse_ForceClosedChannel{}
}
func (m *PendingChannelResponse_ForceClosedChannel) String() string { return proto.CompactTextString(m) }
func (*PendingChannelResponse_ForceClosedChannel) ProtoMessage() {}
func (*PendingChannelResponse_ForceClosedChannel) Descriptor() ([]byte, []int) {
return fileDescriptor0, []int{34, 3}
}
func (m *PendingChannelResponse_ForceClosedChannel) GetChannel() *PendingChannelResponse_PendingChannel {
if m != nil {
return m.Status
return m.Channel
}
return ChannelStatus_ALL
return nil
}
func (m *PendingChannelResponse_ForceClosedChannel) GetClosingTxid() string {
if m != nil {
return m.ClosingTxid
}
return ""
}
func (m *PendingChannelResponse_ForceClosedChannel) GetLimboBalance() int64 {
if m != nil {
return m.LimboBalance
}
return 0
}
func (m *PendingChannelResponse_ForceClosedChannel) GetMaturityHeight() uint32 {
if m != nil {
return m.MaturityHeight
}
return 0
}
func (m *PendingChannelResponse_ForceClosedChannel) GetBlocksTilMaturity() uint32 {
if m != nil {
return m.BlocksTilMaturity
}
return 0
}
type WalletBalanceRequest struct {
@ -2615,6 +2705,9 @@ func init() {
proto.RegisterType((*PendingChannelRequest)(nil), "lnrpc.PendingChannelRequest")
proto.RegisterType((*PendingChannelResponse)(nil), "lnrpc.PendingChannelResponse")
proto.RegisterType((*PendingChannelResponse_PendingChannel)(nil), "lnrpc.PendingChannelResponse.PendingChannel")
proto.RegisterType((*PendingChannelResponse_PendingOpenChannel)(nil), "lnrpc.PendingChannelResponse.PendingOpenChannel")
proto.RegisterType((*PendingChannelResponse_ClosedChannel)(nil), "lnrpc.PendingChannelResponse.ClosedChannel")
proto.RegisterType((*PendingChannelResponse_ForceClosedChannel)(nil), "lnrpc.PendingChannelResponse.ForceClosedChannel")
proto.RegisterType((*WalletBalanceRequest)(nil), "lnrpc.WalletBalanceRequest")
proto.RegisterType((*WalletBalanceResponse)(nil), "lnrpc.WalletBalanceResponse")
proto.RegisterType((*ChannelBalanceRequest)(nil), "lnrpc.ChannelBalanceRequest")
@ -2656,7 +2749,6 @@ func init() {
proto.RegisterType((*DebugLevelResponse)(nil), "lnrpc.DebugLevelResponse")
proto.RegisterType((*PayReqString)(nil), "lnrpc.PayReqString")
proto.RegisterType((*PayReq)(nil), "lnrpc.PayReq")
proto.RegisterEnum("lnrpc.ChannelStatus", ChannelStatus_name, ChannelStatus_value)
proto.RegisterEnum("lnrpc.NewAddressRequest_AddressType", NewAddressRequest_AddressType_name, NewAddressRequest_AddressType_value)
}
@ -3961,254 +4053,262 @@ var _Lightning_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("rpc.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 3983 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x5a, 0xcd, 0x6f, 0x1c, 0xc9,
0x75, 0x57, 0x0f, 0x87, 0x1f, 0xf3, 0x66, 0x86, 0x1f, 0x45, 0x8a, 0x1c, 0x0d, 0xb5, 0x6b, 0x6d,
0x59, 0x58, 0x31, 0xcc, 0x82, 0xd4, 0x32, 0xc1, 0x46, 0x5e, 0x25, 0x59, 0x70, 0x25, 0x5a, 0x14,
0x4c, 0x53, 0x74, 0x53, 0xbb, 0x72, 0x6c, 0x04, 0x93, 0xe6, 0x74, 0x71, 0xd8, 0x56, 0x4f, 0x77,
0x6f, 0x77, 0x0d, 0xa9, 0xb1, 0x40, 0x24, 0x70, 0x7c, 0x4b, 0x02, 0x23, 0x30, 0x90, 0xa3, 0x11,
0x20, 0xe7, 0x5c, 0x72, 0xcd, 0xdf, 0x10, 0xc0, 0x80, 0x4f, 0xb9, 0x07, 0xb9, 0xe7, 0x90, 0x5b,
0x0e, 0xc1, 0xab, 0x8f, 0xee, 0xaa, 0xee, 0xa6, 0x56, 0x41, 0x4e, 0x33, 0xf5, 0xab, 0x57, 0xaf,
0xaa, 0x5e, 0xbd, 0xf7, 0xea, 0xbd, 0x57, 0x0d, 0xad, 0x34, 0x19, 0xee, 0x24, 0x69, 0xcc, 0x63,
0x32, 0x1b, 0x46, 0x69, 0x32, 0xec, 0xdf, 0x1d, 0xc5, 0xf1, 0x28, 0x64, 0xbb, 0x5e, 0x12, 0xec,
0x7a, 0x51, 0x14, 0x73, 0x8f, 0x07, 0x71, 0x94, 0x49, 0x22, 0xfa, 0x5f, 0x0e, 0xb4, 0x5f, 0xa6,
0x5e, 0x94, 0x79, 0x43, 0x84, 0x49, 0x0f, 0xe6, 0xf9, 0x9b, 0xc1, 0x85, 0x97, 0x5d, 0xf4, 0x9c,
0x7b, 0xce, 0x56, 0xcb, 0xd5, 0x4d, 0xb2, 0x0e, 0x73, 0xde, 0x38, 0x9e, 0x44, 0xbc, 0xd7, 0xb8,
0xe7, 0x6c, 0xcd, 0xb8, 0xaa, 0x45, 0x3e, 0x81, 0x95, 0x68, 0x32, 0x1e, 0x0c, 0xe3, 0xe8, 0x3c,
0x48, 0xc7, 0x92, 0x79, 0x6f, 0xe6, 0x9e, 0xb3, 0x35, 0xeb, 0x56, 0x3b, 0xc8, 0x87, 0x00, 0x67,
0x61, 0x3c, 0x7c, 0x2d, 0xa7, 0x68, 0x8a, 0x29, 0x0c, 0x84, 0x50, 0xe8, 0xa8, 0x16, 0x0b, 0x46,
0x17, 0xbc, 0x37, 0x2b, 0x18, 0x59, 0x18, 0xf2, 0xe0, 0xc1, 0x98, 0x0d, 0x32, 0xee, 0x8d, 0x93,
0xde, 0x9c, 0x58, 0x8d, 0x81, 0x88, 0xfe, 0x98, 0x7b, 0xe1, 0xe0, 0x9c, 0xb1, 0xac, 0x37, 0xaf,
0xfa, 0x73, 0x84, 0xf6, 0x60, 0xfd, 0x19, 0xe3, 0xc6, 0xae, 0x33, 0x97, 0x7d, 0x33, 0x61, 0x19,
0xa7, 0x47, 0x40, 0x0c, 0xf8, 0x29, 0xe3, 0x5e, 0x10, 0x66, 0xe4, 0x33, 0xe8, 0x70, 0x83, 0xb8,
0xe7, 0xdc, 0x9b, 0xd9, 0x6a, 0xef, 0x91, 0x1d, 0x21, 0xdf, 0x1d, 0x63, 0x80, 0x6b, 0xd1, 0xd1,
0xdf, 0x3a, 0xd0, 0x3e, 0x65, 0x91, 0xaf, 0xb8, 0x13, 0x02, 0x4d, 0x9f, 0x65, 0x5c, 0x08, 0xb6,
0xe3, 0x8a, 0xff, 0xe4, 0x3b, 0xd0, 0xc6, 0xdf, 0x41, 0xc6, 0xd3, 0x20, 0x1a, 0x09, 0xd1, 0xb6,
0x5c, 0x40, 0xe8, 0x54, 0x20, 0x64, 0x19, 0x66, 0xbc, 0x31, 0x17, 0x02, 0x9d, 0x71, 0xf1, 0x2f,
0xf9, 0x08, 0x3a, 0x89, 0x37, 0x1d, 0xb3, 0x88, 0x17, 0x42, 0xec, 0xb8, 0x6d, 0x85, 0x1d, 0xa2,
0x14, 0x77, 0x60, 0xd5, 0x24, 0xd1, 0xdc, 0x67, 0x05, 0xf7, 0x15, 0x83, 0x52, 0x4d, 0xf2, 0x00,
0x96, 0x34, 0x7d, 0x2a, 0x17, 0x2b, 0xc4, 0xda, 0x72, 0x17, 0x15, 0xac, 0x05, 0x14, 0x41, 0x47,
0xee, 0x28, 0x4b, 0xe2, 0x28, 0x63, 0x64, 0x1b, 0x96, 0xf5, 0xc0, 0x24, 0x65, 0xc1, 0xd8, 0x1b,
0x31, 0xb5, 0xbd, 0x0a, 0x4e, 0xf6, 0xa0, 0x9b, 0x4f, 0x12, 0x4f, 0x38, 0x13, 0x9b, 0x6d, 0xef,
0x75, 0x94, 0x1c, 0x5d, 0xc4, 0x5c, 0x9b, 0x84, 0xfe, 0xc2, 0x81, 0xce, 0x93, 0x0b, 0x2f, 0x8a,
0x58, 0x78, 0x12, 0x07, 0x11, 0x47, 0xfd, 0x38, 0x9f, 0x44, 0x7e, 0x10, 0x8d, 0x06, 0xfc, 0x4d,
0xe0, 0xab, 0xc9, 0x2c, 0x0c, 0x17, 0x65, 0xb6, 0x71, 0xf7, 0x4a, 0xb0, 0x15, 0x1c, 0xf9, 0xc5,
0x13, 0x9e, 0x4c, 0xf8, 0x20, 0x88, 0x7c, 0xf6, 0x46, 0xc8, 0xb9, 0xeb, 0x5a, 0x18, 0xfd, 0x53,
0x58, 0x3e, 0x42, 0xc5, 0x8b, 0x82, 0x68, 0xb4, 0xef, 0xfb, 0x29, 0xcb, 0x32, 0xb4, 0x86, 0x64,
0x72, 0xf6, 0x9a, 0x4d, 0x95, 0x99, 0xa8, 0x16, 0x9e, 0xf1, 0x45, 0x9c, 0x71, 0x35, 0x9f, 0xf8,
0x4f, 0xff, 0xd1, 0x81, 0x25, 0x94, 0xda, 0x0f, 0xbd, 0x68, 0xaa, 0x75, 0xe1, 0x08, 0x3a, 0xc8,
0xea, 0x65, 0xbc, 0x2f, 0x6d, 0x4a, 0xea, 0xd4, 0x96, 0x92, 0x45, 0x89, 0x7a, 0xc7, 0x24, 0x3d,
0x88, 0x78, 0x3a, 0x75, 0xad, 0xd1, 0xfd, 0x2f, 0x60, 0xa5, 0x42, 0x82, 0x9a, 0x53, 0xac, 0x0f,
0xff, 0x92, 0x35, 0x98, 0xbd, 0xf4, 0xc2, 0x09, 0x53, 0x16, 0x2c, 0x1b, 0x9f, 0x37, 0x1e, 0x39,
0xf4, 0x63, 0x58, 0x2e, 0xe6, 0x54, 0x67, 0x4b, 0xa0, 0x99, 0x8b, 0xb8, 0xe5, 0x8a, 0xff, 0x28,
0x0a, 0xa4, 0x7b, 0x12, 0x07, 0xb9, 0xd1, 0x20, 0x9d, 0xe7, 0xfb, 0xa9, 0xa6, 0xc3, 0xff, 0x37,
0x39, 0x0b, 0xfa, 0x00, 0x56, 0x8c, 0xf1, 0xef, 0x98, 0xe8, 0x37, 0x0e, 0xac, 0x1c, 0xb3, 0x2b,
0x25, 0x6e, 0x3d, 0xd5, 0x23, 0x68, 0xf2, 0x69, 0x22, 0x55, 0x6c, 0x71, 0xef, 0xbe, 0x92, 0x56,
0x85, 0x6e, 0x47, 0x35, 0x5f, 0x4e, 0x13, 0xe6, 0x8a, 0x11, 0xf4, 0x05, 0xb4, 0x0d, 0x90, 0x6c,
0xc0, 0xea, 0xab, 0xe7, 0x2f, 0x8f, 0x0f, 0x4e, 0x4f, 0x07, 0x27, 0x5f, 0x7d, 0xf9, 0x83, 0x83,
0x3f, 0x1b, 0x1c, 0xee, 0x9f, 0x1e, 0x2e, 0xdf, 0x22, 0xeb, 0x40, 0x8e, 0x0f, 0x4e, 0x5f, 0x1e,
0x3c, 0xb5, 0x70, 0x87, 0x2c, 0x41, 0xdb, 0x04, 0x1a, 0xb4, 0x0f, 0xbd, 0x63, 0x76, 0xf5, 0x2a,
0xe0, 0x11, 0xcb, 0x32, 0x7b, 0x7a, 0xba, 0x03, 0xc4, 0x5c, 0x93, 0xda, 0x66, 0x0f, 0xe6, 0x3d,
0x09, 0x69, 0xd7, 0xaa, 0x9a, 0xf4, 0x2b, 0x20, 0x4f, 0xe2, 0x28, 0x62, 0x43, 0x7e, 0xc2, 0x58,
0xaa, 0x37, 0xfb, 0xfb, 0x86, 0x5c, 0xdb, 0x7b, 0x1b, 0x6a, 0xb3, 0x65, 0x4d, 0x54, 0x02, 0x27,
0xd0, 0x4c, 0x58, 0x3a, 0x16, 0xe2, 0x5e, 0x70, 0xc5, 0x7f, 0xba, 0x0b, 0xab, 0x16, 0xdb, 0x62,
0x1d, 0x09, 0x63, 0xe9, 0x40, 0x49, 0x7c, 0xd6, 0xd5, 0x4d, 0xfa, 0x2f, 0x0e, 0x34, 0x0f, 0x5f,
0x1e, 0x3d, 0x21, 0x7d, 0x58, 0x08, 0xa2, 0x61, 0x3c, 0x46, 0xa7, 0xe1, 0x08, 0x8e, 0x79, 0xfb,
0xc6, 0x7b, 0xe0, 0x2e, 0xb4, 0x84, 0xaf, 0x41, 0x4f, 0x2d, 0xcc, 0xa8, 0xe3, 0x16, 0x00, 0xde,
0x12, 0xec, 0x4d, 0x12, 0xa4, 0xe2, 0x1a, 0xd0, 0xce, 0xbd, 0x29, 0x8c, 0xad, 0xda, 0x81, 0x16,
0x9c, 0xb2, 0xcb, 0x78, 0x28, 0x41, 0x9f, 0x85, 0xde, 0x54, 0x38, 0xaf, 0xae, 0x5b, 0xc1, 0xe9,
0x7f, 0xce, 0x40, 0x77, 0x7f, 0xc8, 0x83, 0x4b, 0xa6, 0x1c, 0x85, 0x58, 0xa1, 0x00, 0xd4, 0xda,
0x55, 0x8b, 0xdc, 0x87, 0x6e, 0xca, 0xc6, 0x31, 0x67, 0x03, 0x65, 0xba, 0xd2, 0x48, 0x6d, 0x10,
0xa9, 0x86, 0x92, 0xd1, 0x20, 0x41, 0x97, 0x23, 0xf6, 0xd2, 0x72, 0x6d, 0x10, 0x85, 0x88, 0x00,
0x0a, 0x11, 0x77, 0xd1, 0x74, 0x75, 0x13, 0x65, 0x37, 0xf4, 0x12, 0x6f, 0x18, 0x70, 0xb9, 0xe6,
0x19, 0x37, 0x6f, 0x23, 0xef, 0x30, 0x1e, 0x7a, 0xe1, 0xe0, 0xcc, 0x0b, 0xbd, 0x68, 0xc8, 0xd4,
0xe5, 0x65, 0x83, 0xe4, 0x63, 0x58, 0x54, 0x4b, 0xd2, 0x64, 0xf2, 0x0e, 0x2b, 0xa1, 0x28, 0xd3,
0x49, 0x94, 0x31, 0xce, 0x43, 0xe6, 0xe7, 0xa4, 0x0b, 0x82, 0xb4, 0xda, 0x41, 0x1e, 0xc2, 0xaa,
0xbc, 0x03, 0x33, 0x8f, 0xc7, 0xd9, 0x45, 0x90, 0x0d, 0x32, 0x16, 0xf1, 0x5e, 0x4b, 0xd0, 0xd7,
0x75, 0x91, 0x47, 0xb0, 0x51, 0x82, 0x53, 0x36, 0x64, 0xc1, 0x25, 0xf3, 0x7b, 0x20, 0x46, 0xdd,
0xd4, 0x4d, 0xee, 0x41, 0x1b, 0xaf, 0xfe, 0x49, 0xe2, 0x7b, 0x9c, 0x65, 0xbd, 0xb6, 0x90, 0x90,
0x09, 0x91, 0x4f, 0xa1, 0x9b, 0x30, 0xe9, 0x8b, 0x2f, 0x78, 0x38, 0xcc, 0x7a, 0x1d, 0xe1, 0x00,
0xdb, 0x4a, 0xcb, 0x51, 0x0b, 0x5d, 0x9b, 0x82, 0xde, 0x86, 0xd5, 0xa3, 0x20, 0xe3, 0xea, 0x94,
0x73, 0x63, 0x3b, 0x84, 0x35, 0x1b, 0x56, 0x6a, 0xfe, 0x10, 0x16, 0xd4, 0x91, 0xe1, 0x02, 0x90,
0xf9, 0x9a, 0x62, 0x6e, 0x69, 0x8b, 0x9b, 0x53, 0xd1, 0x5f, 0x36, 0xa0, 0x89, 0x96, 0x22, 0x2c,
0x64, 0x72, 0x36, 0x28, 0xbc, 0xa7, 0x6e, 0x9a, 0xb6, 0xd3, 0xb0, 0x6c, 0xc7, 0xb4, 0xee, 0x19,
0xcb, 0xba, 0x45, 0xc8, 0x33, 0xe5, 0x4c, 0xc9, 0x5b, 0x6a, 0x8b, 0x81, 0x14, 0xfd, 0x29, 0x1b,
0x5e, 0x0a, 0x95, 0xc9, 0xfb, 0x11, 0x41, 0x85, 0xca, 0x3c, 0x2e, 0x47, 0x4b, 0x7d, 0xc9, 0xdb,
0xba, 0x4f, 0x8c, 0x9c, 0x2f, 0xfa, 0xc4, 0xb8, 0x1e, 0xcc, 0x07, 0xd1, 0x59, 0x3c, 0x89, 0x7c,
0xa1, 0x14, 0x0b, 0xae, 0x6e, 0xa2, 0xa9, 0x26, 0xe2, 0x16, 0x0c, 0xc6, 0x4c, 0x29, 0x40, 0x01,
0x50, 0x82, 0xd7, 0x5d, 0x26, 0x7c, 0x46, 0x2e, 0xe4, 0xcf, 0x60, 0xc5, 0xc0, 0x94, 0x84, 0x3f,
0x82, 0x59, 0xdc, 0xbd, 0x0e, 0x88, 0xf4, 0xd9, 0x09, 0x67, 0x23, 0x7b, 0xe8, 0x32, 0x2c, 0x3e,
0x63, 0xfc, 0x79, 0x74, 0x1e, 0x6b, 0x4e, 0xff, 0xdd, 0x80, 0xa5, 0x1c, 0x52, 0x8c, 0xb6, 0x60,
0x29, 0xf0, 0x59, 0xc4, 0x03, 0x3e, 0x1d, 0x58, 0xb7, 0x6a, 0x19, 0xc6, 0x1b, 0xcc, 0x0b, 0x03,
0x2f, 0x53, 0xa6, 0x2b, 0x1b, 0x64, 0x0f, 0xd6, 0x50, 0xb7, 0xb4, 0xba, 0xe4, 0xc7, 0x2e, 0x2f,
0xf3, 0xda, 0x3e, 0x34, 0x07, 0xc4, 0xa5, 0x6b, 0x28, 0x86, 0x48, 0x97, 0x54, 0xd7, 0x85, 0x52,
0x93, 0x9c, 0x70, 0xcb, 0xd2, 0x1b, 0x15, 0x40, 0x25, 0x70, 0x9d, 0x93, 0x81, 0x44, 0x39, 0x70,
0x35, 0x82, 0xdf, 0x85, 0x4a, 0xf0, 0xbb, 0x05, 0x4b, 0xd9, 0x34, 0x1a, 0x32, 0x7f, 0xc0, 0x63,
0x9c, 0x37, 0x88, 0xc4, 0xe9, 0x2c, 0xb8, 0x65, 0x58, 0x84, 0xe9, 0x2c, 0xe3, 0x11, 0xe3, 0xc2,
0x14, 0x17, 0x5c, 0xdd, 0x44, 0xe7, 0x27, 0x48, 0xa4, 0xd2, 0xb7, 0x5c, 0xd5, 0xa2, 0x3f, 0x17,
0x77, 0x4c, 0x1e, 0x89, 0x7f, 0x25, 0xec, 0x90, 0x6c, 0x42, 0x4b, 0xce, 0x9f, 0x5d, 0x78, 0x2a,
0x96, 0x5a, 0x10, 0xc0, 0xe9, 0x85, 0x87, 0x81, 0xa6, 0xb5, 0x25, 0xa9, 0xf1, 0x6d, 0x81, 0x1d,
0xca, 0x1d, 0xdd, 0x87, 0x45, 0x1d, 0xe3, 0x67, 0x83, 0x90, 0x9d, 0x73, 0x1d, 0x40, 0x45, 0x93,
0x31, 0x4e, 0x97, 0x1d, 0xb1, 0x73, 0x4e, 0x8f, 0x61, 0x45, 0x59, 0xdb, 0x8b, 0x84, 0xe9, 0xa9,
0xbf, 0x57, 0xf6, 0xb3, 0xf2, 0x9e, 0x5b, 0x55, 0x5a, 0x64, 0x46, 0x7d, 0x25, 0xe7, 0x4b, 0x5d,
0x20, 0xaa, 0xfb, 0x49, 0x18, 0x67, 0x4c, 0x31, 0xa4, 0xd0, 0x19, 0x86, 0x71, 0x56, 0x0e, 0x0d,
0x4d, 0x0c, 0xe5, 0x96, 0x4d, 0x86, 0x43, 0xb4, 0x52, 0x79, 0x53, 0xea, 0x26, 0xfd, 0xa5, 0x03,
0xab, 0x82, 0x9b, 0xf6, 0x0b, 0x79, 0xc8, 0xf1, 0xfe, 0xcb, 0xec, 0x0c, 0xcd, 0x50, 0xf5, 0x03,
0x95, 0xa6, 0x84, 0xc1, 0x38, 0xd0, 0x97, 0x65, 0x0b, 0x91, 0x23, 0x04, 0x50, 0x95, 0xcf, 0xe3,
0x74, 0xc8, 0x84, 0xc4, 0x16, 0x5c, 0xd9, 0xa0, 0xff, 0xee, 0xc0, 0x8a, 0x58, 0xc6, 0x29, 0xf7,
0xf8, 0x24, 0x53, 0x5b, 0xfb, 0x63, 0xe8, 0xe2, 0x36, 0x98, 0x56, 0x63, 0xb5, 0x88, 0xb5, 0xdc,
0xe2, 0x04, 0x2a, 0x89, 0x0f, 0x6f, 0xb9, 0x36, 0x31, 0xf9, 0x02, 0x3a, 0x66, 0x12, 0xa6, 0xe2,
0xee, 0x3b, 0x7a, 0x07, 0x15, 0xad, 0x38, 0xbc, 0xe5, 0x5a, 0x03, 0xc8, 0x63, 0x00, 0x71, 0xbb,
0x09, 0xb6, 0x62, 0xbd, 0xc6, 0xf0, 0xca, 0x41, 0x1c, 0xde, 0x72, 0x0d, 0xf2, 0x2f, 0x17, 0x60,
0x4e, 0x3a, 0x7d, 0xfa, 0x0c, 0xba, 0xd6, 0x4a, 0xad, 0xc0, 0xaf, 0x23, 0x03, 0xbf, 0x4a, 0x40,
0xde, 0xa8, 0x09, 0xc8, 0xff, 0xc7, 0x01, 0x82, 0x9a, 0x54, 0x3a, 0xaa, 0x8f, 0x61, 0x91, 0x7b,
0xe9, 0x88, 0xf1, 0x81, 0x1d, 0xdf, 0x94, 0x50, 0x71, 0x3b, 0xc5, 0xbe, 0x15, 0x05, 0x74, 0x5c,
0x13, 0x22, 0x3b, 0x40, 0x8c, 0xa6, 0x4e, 0x9f, 0xa4, 0x5f, 0xaf, 0xe9, 0x41, 0x07, 0x24, 0xaf,
0x70, 0x9d, 0x5f, 0xa8, 0x08, 0xa9, 0x29, 0x0e, 0xbd, 0xb6, 0x0f, 0x5d, 0x77, 0x32, 0xc1, 0xdc,
0xcc, 0xe3, 0x3a, 0x4e, 0xd0, 0x6d, 0xed, 0x6a, 0x84, 0x59, 0x29, 0x4f, 0x52, 0x00, 0xf4, 0x77,
0x0e, 0x2c, 0xe3, 0xf6, 0x2d, 0x15, 0xf9, 0x1c, 0x84, 0xf6, 0xbd, 0xa7, 0x86, 0x58, 0xb4, 0xff,
0x7f, 0x05, 0x79, 0x04, 0x2d, 0xc1, 0x30, 0x4e, 0x58, 0xa4, 0xf4, 0xa3, 0x67, 0xeb, 0x47, 0x61,
0xf8, 0x87, 0xb7, 0xdc, 0x82, 0xd8, 0xd0, 0x8e, 0x03, 0xb8, 0xad, 0x56, 0x59, 0x3a, 0xd6, 0x4f,
0x60, 0x2e, 0x13, 0x3b, 0x55, 0x61, 0xff, 0x9a, 0xcd, 0x59, 0x4a, 0xc1, 0x55, 0x34, 0xf4, 0x6f,
0x66, 0x60, 0xbd, 0xcc, 0x47, 0x5d, 0x33, 0x3f, 0x86, 0xe5, 0xca, 0x15, 0x21, 0xaf, 0xae, 0x4f,
0x6c, 0x31, 0x95, 0x06, 0x96, 0xe1, 0x0a, 0x97, 0xfe, 0x3f, 0x34, 0x60, 0xd1, 0x26, 0x42, 0x3d,
0xce, 0x2f, 0xaf, 0xe2, 0x42, 0xb3, 0xb0, 0x6a, 0xa8, 0xd9, 0xa8, 0x0b, 0x35, 0xcd, 0x80, 0x72,
0xe6, 0xdb, 0x02, 0xca, 0xe6, 0xfb, 0x05, 0x94, 0xb3, 0xb5, 0x01, 0x65, 0xd9, 0x83, 0xca, 0x1a,
0x80, 0xed, 0x41, 0x8b, 0xd3, 0x98, 0x7f, 0x8f, 0xd3, 0xf8, 0x1e, 0xac, 0xbd, 0xf2, 0xc2, 0x90,
0xf1, 0x2f, 0xe5, 0x14, 0xfa, 0x4c, 0x3f, 0x82, 0xce, 0x95, 0x4c, 0x9d, 0x06, 0x71, 0x14, 0x4e,
0x55, 0xa0, 0xde, 0x56, 0xd8, 0x8b, 0x28, 0x9c, 0xd2, 0x4f, 0xe1, 0x76, 0x69, 0x68, 0x91, 0xbf,
0xe8, 0x6d, 0xe0, 0x30, 0xc7, 0xd5, 0x4d, 0xba, 0x01, 0xb7, 0xd5, 0x32, 0xec, 0xe9, 0xe8, 0x1e,
0xac, 0x97, 0x3b, 0xea, 0x99, 0xcd, 0x14, 0xcc, 0xbe, 0x00, 0xf2, 0xa3, 0x09, 0x4b, 0xa7, 0xa2,
0x2e, 0x91, 0x67, 0xa0, 0x1b, 0xe5, 0xd0, 0x10, 0x13, 0xff, 0x1f, 0xb0, 0xa9, 0xae, 0xd3, 0x34,
0xf2, 0x3a, 0x0d, 0x7d, 0x0c, 0xab, 0x16, 0x03, 0x35, 0xe3, 0x7d, 0x98, 0x13, 0xb5, 0x0d, 0xad,
0x7b, 0x76, 0xfd, 0x43, 0xf5, 0xd1, 0xbf, 0x84, 0x99, 0xc3, 0x38, 0x31, 0xd3, 0x0c, 0xc7, 0x4e,
0x33, 0x94, 0xee, 0x0c, 0x72, 0xd5, 0x90, 0x33, 0xdb, 0x20, 0x9e, 0xbc, 0x37, 0xe6, 0x18, 0x37,
0x9c, 0xc7, 0xe9, 0x95, 0x97, 0xfa, 0x4a, 0x83, 0x4a, 0x28, 0xae, 0xfe, 0x9c, 0x69, 0xed, 0xc1,
0xbf, 0xf4, 0x57, 0x0e, 0xcc, 0x8a, 0x25, 0x61, 0x54, 0x22, 0xe3, 0x7c, 0x79, 0x9b, 0x61, 0x7a,
0xe7, 0x08, 0x97, 0x54, 0x86, 0x4b, 0x85, 0xb7, 0x46, 0xb9, 0xf0, 0x86, 0x6e, 0x4d, 0xb6, 0x8a,
0x8a, 0x56, 0x01, 0x90, 0x0f, 0xa1, 0x79, 0x11, 0x27, 0x18, 0x82, 0xa1, 0x58, 0x40, 0x67, 0x02,
0x71, 0xe2, 0x0a, 0x9c, 0x6e, 0xc3, 0xd2, 0x71, 0xec, 0x33, 0x23, 0x98, 0xbc, 0xf1, 0x34, 0xe8,
0x5f, 0x39, 0xb0, 0xa0, 0x89, 0xc9, 0x16, 0x34, 0xd1, 0x67, 0x97, 0x5c, 0x62, 0x9e, 0x48, 0x23,
0x9d, 0x2b, 0x28, 0xd0, 0x00, 0x84, 0x9b, 0xd5, 0xde, 0xa1, 0x91, 0x07, 0x33, 0x45, 0x18, 0x88,
0xb7, 0x8c, 0x58, 0x73, 0xc9, 0x28, 0x4b, 0x28, 0xfd, 0xb5, 0x03, 0x5d, 0x6b, 0x0e, 0xbc, 0x77,
0x42, 0x2f, 0xe3, 0x2a, 0x07, 0x52, 0x42, 0x34, 0x21, 0x33, 0xf1, 0x68, 0xd8, 0x89, 0x47, 0x1e,
0xf8, 0xce, 0x98, 0x81, 0xef, 0x43, 0x68, 0xa9, 0x2c, 0x83, 0x69, 0xb9, 0xe9, 0xb2, 0x24, 0xce,
0xa8, 0x4b, 0x04, 0x05, 0x11, 0x7d, 0x0c, 0x6d, 0xa3, 0x07, 0x27, 0x8c, 0x18, 0xbf, 0x8a, 0xd3,
0xd7, 0x3a, 0xd3, 0x51, 0xcd, 0xbc, 0xaa, 0xd3, 0x28, 0xaa, 0x3a, 0xf4, 0x9f, 0x1d, 0xe8, 0xa2,
0x4e, 0x04, 0xd1, 0xe8, 0x24, 0x0e, 0x83, 0xe1, 0x54, 0xe8, 0x86, 0x3e, 0x7e, 0xcc, 0xc7, 0xb9,
0x97, 0xeb, 0x86, 0x0d, 0xa3, 0x17, 0x1b, 0x07, 0x91, 0x48, 0xe5, 0x94, 0x66, 0xe4, 0x6d, 0xd4,
0xe5, 0x73, 0x86, 0x6e, 0x28, 0x63, 0x83, 0x31, 0xde, 0x87, 0x52, 0xa2, 0x36, 0x88, 0x11, 0x3b,
0x02, 0xa9, 0xc7, 0xd9, 0x60, 0x1c, 0x84, 0x61, 0x20, 0x69, 0xa5, 0xce, 0xd6, 0x75, 0xd1, 0x7f,
0x6d, 0x40, 0x5b, 0xd9, 0xfd, 0x81, 0x3f, 0x62, 0xa8, 0x9f, 0xda, 0xb5, 0xe6, 0x06, 0x65, 0x20,
0xba, 0xdf, 0x72, 0xc6, 0x06, 0x52, 0x3e, 0xc0, 0x99, 0xea, 0x01, 0xe2, 0xc5, 0x1d, 0xfb, 0xec,
0x53, 0x8c, 0x0f, 0x54, 0x75, 0xbb, 0x00, 0x74, 0xef, 0x9e, 0xe8, 0x9d, 0x2d, 0x7a, 0x05, 0x60,
0xf9, 0xf9, 0xb9, 0x92, 0x9f, 0x7f, 0x04, 0x1d, 0xc5, 0x46, 0xc8, 0x5d, 0xf8, 0xde, 0x42, 0x95,
0xad, 0x33, 0x71, 0x2d, 0x4a, 0x3d, 0x72, 0x4f, 0x8f, 0x5c, 0xf8, 0xb6, 0x91, 0x9a, 0x12, 0xf3,
0x6d, 0x25, 0xbc, 0x67, 0xa9, 0x97, 0x5c, 0x68, 0x5f, 0xea, 0xe7, 0x15, 0x59, 0x01, 0x93, 0x6d,
0x98, 0xc5, 0x61, 0xda, 0x9d, 0xd5, 0x9b, 0x97, 0x24, 0x21, 0x5b, 0x30, 0xcb, 0xfc, 0x91, 0xf0,
0x0d, 0xa6, 0xae, 0x1a, 0x67, 0xe4, 0x4a, 0x02, 0x34, 0x76, 0x44, 0x4b, 0xc6, 0x6e, 0xfb, 0x42,
0x4c, 0x6d, 0xa2, 0xe7, 0x3e, 0x5d, 0x03, 0x72, 0x2c, 0xb5, 0xd6, 0x4c, 0x34, 0xff, 0x7a, 0x06,
0xda, 0x06, 0x8c, 0x76, 0x3b, 0xc2, 0x05, 0x0f, 0xfc, 0xc0, 0x1b, 0x33, 0xce, 0x52, 0xa5, 0xa9,
0x25, 0x54, 0xb8, 0xcc, 0xcb, 0xd1, 0x20, 0x9e, 0xf0, 0x81, 0xcf, 0x46, 0x29, 0x93, 0xd5, 0x52,
0xc7, 0x2d, 0xa1, 0x48, 0x37, 0xf6, 0xde, 0x98, 0x74, 0x52, 0x1f, 0x4a, 0xa8, 0x8e, 0xe5, 0xa4,
0x8c, 0x9a, 0x45, 0x2c, 0x27, 0x25, 0x52, 0xf6, 0x38, 0xb3, 0x35, 0x1e, 0xe7, 0x33, 0x58, 0x97,
0xbe, 0x45, 0xd9, 0xe6, 0xa0, 0xa4, 0x26, 0x37, 0xf4, 0x92, 0x6d, 0x58, 0xc6, 0x35, 0x6b, 0x05,
0xcf, 0x82, 0x9f, 0xcb, 0x4a, 0x92, 0xe3, 0x56, 0x70, 0xa4, 0x45, 0x73, 0xb4, 0x68, 0x65, 0x29,
0xa9, 0x82, 0x0b, 0x5a, 0xef, 0x8d, 0x4d, 0xdb, 0x52, 0xb4, 0x25, 0x9c, 0x6e, 0xc2, 0x1d, 0xa1,
0x26, 0x2f, 0xe3, 0x24, 0x0e, 0xe3, 0xd1, 0xf4, 0x74, 0x72, 0x96, 0x0d, 0xd3, 0x20, 0xc1, 0xb0,
0x91, 0xfe, 0x9b, 0x03, 0xab, 0x56, 0xaf, 0x8a, 0x65, 0xff, 0x50, 0xea, 0x6c, 0x5e, 0x3f, 0x92,
0x9a, 0xb5, 0x62, 0x78, 0x36, 0x49, 0x28, 0x83, 0xf6, 0xaf, 0x54, 0x49, 0x69, 0x1f, 0x96, 0xf4,
0xd4, 0x7a, 0xa0, 0x54, 0xb3, 0x5e, 0x55, 0xcd, 0xd4, 0xf8, 0x45, 0x35, 0x40, 0xb3, 0xf8, 0x13,
0x19, 0x00, 0x31, 0x5f, 0x6c, 0x02, 0x9d, 0x2d, 0x8e, 0xef, 0xeb, 0xf1, 0xa2, 0xeb, 0x89, 0x39,
0xc4, 0x6d, 0x0f, 0x73, 0x30, 0xa3, 0x7f, 0xeb, 0x00, 0x14, 0xab, 0xc3, 0x93, 0x2f, 0xbc, 0xb3,
0x23, 0xb2, 0xf1, 0x02, 0xc0, 0x10, 0xc8, 0x0a, 0x10, 0xa5, 0xbb, 0x69, 0x6b, 0x0c, 0x63, 0x8a,
0x07, 0xb0, 0x34, 0x0a, 0xe3, 0x33, 0x71, 0x7d, 0x7a, 0x7c, 0x92, 0xb2, 0x4c, 0x15, 0x56, 0x17,
0x25, 0xfc, 0x7d, 0x85, 0x16, 0xb7, 0x43, 0xd3, 0xb8, 0x1d, 0xe8, 0xdf, 0x35, 0xf2, 0xbc, 0xbb,
0xd8, 0xf3, 0x8d, 0x66, 0x44, 0xf6, 0x2a, 0xde, 0xef, 0x86, 0x34, 0x57, 0x84, 0xef, 0x27, 0xdf,
0x1a, 0x9b, 0x3e, 0x86, 0xc5, 0x54, 0xba, 0x17, 0xed, 0x7b, 0x9a, 0xef, 0xf0, 0x3d, 0xdd, 0xd4,
0xba, 0x58, 0x7e, 0x0f, 0x96, 0x3d, 0xff, 0x92, 0xa5, 0x3c, 0x10, 0xa1, 0xa7, 0xb8, 0xbf, 0xa5,
0xc7, 0x5c, 0x32, 0x70, 0x71, 0xad, 0x3e, 0x80, 0xa5, 0xa1, 0x2c, 0x73, 0xe7, 0x94, 0xea, 0xf1,
0xaa, 0x80, 0x91, 0x90, 0xfe, 0x93, 0x4e, 0xf1, 0xed, 0x33, 0xbc, 0x59, 0x22, 0xe6, 0xee, 0x1a,
0xa5, 0xdd, 0x7d, 0x57, 0xa5, 0xe4, 0xbe, 0xae, 0x8e, 0xa8, 0xc2, 0x87, 0x04, 0x55, 0x79, 0xc4,
0x16, 0x69, 0xf3, 0x7d, 0x44, 0x4a, 0x77, 0x60, 0xe9, 0x94, 0xf1, 0x7d, 0x3c, 0x41, 0xed, 0xf9,
0x36, 0xa1, 0x15, 0xb1, 0xab, 0x81, 0x3c, 0x62, 0x79, 0x4f, 0x2f, 0x44, 0xec, 0x4a, 0xd0, 0x50,
0x02, 0xcb, 0x05, 0xbd, 0x8c, 0x31, 0xe9, 0xdf, 0x37, 0x60, 0xfe, 0x79, 0x74, 0x19, 0x07, 0x43,
0x91, 0x64, 0x8f, 0xd9, 0x38, 0xd6, 0xaf, 0x2b, 0xf8, 0x1f, 0xaf, 0x7d, 0x51, 0xab, 0x4d, 0xb8,
0xca, 0x7e, 0x75, 0x13, 0xaf, 0xc0, 0xb4, 0x78, 0xca, 0x93, 0xda, 0x66, 0x20, 0x64, 0x1d, 0xe6,
0x52, 0xf3, 0xd9, 0x51, 0xb5, 0x8a, 0xa7, 0xa5, 0x59, 0xe3, 0x69, 0x49, 0x94, 0x5b, 0x64, 0x19,
0x5a, 0x1c, 0xc9, 0x82, 0xab, 0x9b, 0x22, 0x7c, 0x4d, 0x99, 0xaa, 0xe3, 0xe3, 0x65, 0x3a, 0xaf,
0xc2, 0x57, 0x13, 0xc4, 0x0b, 0x57, 0x0e, 0x90, 0x34, 0xd2, 0x21, 0x99, 0x10, 0x06, 0x20, 0xe5,
0x97, 0xcb, 0x96, 0x54, 0x93, 0x12, 0x4c, 0xbf, 0x06, 0xb2, 0xef, 0xfb, 0x4a, 0x2a, 0x79, 0x34,
0x5e, 0xec, 0xc7, 0xb1, 0xf6, 0x53, 0xc3, 0xb7, 0x51, 0xcf, 0xf7, 0x00, 0xda, 0x27, 0xc6, 0xd3,
0xab, 0x10, 0xa0, 0x7e, 0x74, 0x55, 0x42, 0x37, 0x10, 0x63, 0xc2, 0x86, 0x39, 0x21, 0xfd, 0x23,
0x20, 0x47, 0x41, 0xc6, 0xf3, 0xf5, 0xe5, 0x79, 0x92, 0x4e, 0x36, 0xcd, 0x3c, 0x49, 0x61, 0x22,
0x4f, 0xda, 0x97, 0x65, 0xf1, 0xf2, 0xc6, 0xb6, 0x61, 0x21, 0x90, 0x90, 0xf6, 0x9f, 0x8b, 0x4a,
0xf1, 0x34, 0x65, 0xde, 0x8f, 0x37, 0xbd, 0x02, 0x2d, 0xf7, 0xfc, 0x2b, 0x07, 0xe6, 0xd5, 0xd6,
0xf0, 0x9e, 0xb2, 0x1e, 0x9d, 0x55, 0x3a, 0x6b, 0x62, 0xf5, 0xcf, 0x8b, 0xd5, 0x93, 0x9e, 0xa9,
0x3b, 0x69, 0x02, 0xcd, 0xc4, 0xe3, 0x17, 0x22, 0x88, 0x6d, 0xb9, 0xe2, 0xbf, 0x4e, 0x4a, 0x66,
0x8b, 0xa4, 0x44, 0x3d, 0x01, 0xa8, 0x45, 0xe5, 0xd5, 0xe9, 0x2f, 0xe5, 0x13, 0x40, 0x01, 0x17,
0x32, 0x50, 0x0b, 0x2c, 0xcb, 0x40, 0x91, 0xba, 0x79, 0x3f, 0xed, 0x43, 0xef, 0x29, 0x0b, 0x19,
0x67, 0xfb, 0x61, 0x58, 0xe6, 0xbf, 0x09, 0x77, 0x6a, 0xfa, 0x94, 0xad, 0x7d, 0x1f, 0x56, 0x9e,
0xb2, 0xb3, 0xc9, 0xe8, 0x88, 0x5d, 0x16, 0x35, 0x0b, 0x02, 0xcd, 0xec, 0x22, 0xbe, 0x52, 0xe7,
0x25, 0xfe, 0x93, 0x0f, 0x00, 0x42, 0xa4, 0x19, 0x64, 0x09, 0x1b, 0x2a, 0x6d, 0x6a, 0x09, 0xe4,
0x34, 0x61, 0x43, 0xfa, 0x19, 0x10, 0x93, 0x8f, 0xda, 0x02, 0x5a, 0xc0, 0xe4, 0x6c, 0x90, 0x4d,
0x33, 0xce, 0xc6, 0xda, 0xf8, 0x4d, 0x88, 0x3e, 0x80, 0xce, 0x89, 0x37, 0x75, 0xd9, 0x37, 0xea,
0x2d, 0x1f, 0x73, 0x22, 0x6f, 0x8a, 0xea, 0x99, 0xe7, 0x44, 0xa2, 0x9b, 0xa6, 0x30, 0x27, 0x09,
0x91, 0xa9, 0xcf, 0x32, 0x1e, 0x44, 0xb2, 0xdc, 0xa3, 0x98, 0x1a, 0x50, 0xe5, 0xb8, 0x1b, 0x35,
0xc7, 0xad, 0x42, 0x17, 0xfd, 0xfa, 0xa3, 0xce, 0xd5, 0xc2, 0xb6, 0xf7, 0xa0, 0x6b, 0x15, 0x06,
0xc8, 0x3c, 0xcc, 0xec, 0x1f, 0x1d, 0x2d, 0xdf, 0x22, 0x6d, 0x98, 0x7f, 0x71, 0x72, 0x70, 0xfc,
0xfc, 0xf8, 0xd9, 0xb2, 0x83, 0x8d, 0x27, 0x47, 0x2f, 0x4e, 0xb1, 0xd1, 0xd8, 0xfb, 0xed, 0x06,
0xb4, 0xf2, 0xe8, 0x91, 0xfc, 0x0c, 0xba, 0x56, 0x19, 0x80, 0x6c, 0xaa, 0x23, 0xac, 0xab, 0x2b,
0xf4, 0xef, 0xd6, 0x77, 0xaa, 0xa3, 0xfa, 0xf0, 0x17, 0xbf, 0xfb, 0x8f, 0x5f, 0x37, 0x7a, 0x64,
0x7d, 0xf7, 0xf2, 0xd3, 0x5d, 0x95, 0xe7, 0xef, 0x8a, 0x72, 0xb6, 0xac, 0xaa, 0xbf, 0x86, 0x45,
0xbb, 0x4c, 0x40, 0xee, 0xda, 0xce, 0xba, 0x34, 0xdb, 0x07, 0x37, 0xf4, 0xaa, 0xe9, 0xee, 0x8a,
0xe9, 0xd6, 0xc9, 0x9a, 0x39, 0x5d, 0x1e, 0xd5, 0x31, 0xf1, 0x0e, 0x62, 0x7e, 0x85, 0x42, 0x34,
0xbf, 0xfa, 0xaf, 0x53, 0xfa, 0x77, 0xaa, 0x5f, 0x9c, 0xa8, 0x4f, 0x54, 0x68, 0x4f, 0x4c, 0x45,
0xc8, 0x32, 0x4e, 0x65, 0x7e, 0x84, 0x42, 0x7e, 0x0a, 0xad, 0xfc, 0xc5, 0x9d, 0x6c, 0x18, 0xdf,
0x17, 0x98, 0x6f, 0xf8, 0xfd, 0x5e, 0xb5, 0x43, 0x6d, 0x62, 0x53, 0x70, 0xbe, 0x4d, 0x2b, 0x9c,
0x3f, 0x77, 0xb6, 0xc9, 0x11, 0xdc, 0x56, 0x1e, 0xe3, 0x8c, 0xfd, 0x5f, 0x76, 0x52, 0xf3, 0xed,
0xcc, 0x43, 0x87, 0x3c, 0x86, 0x05, 0xfd, 0x11, 0x02, 0x59, 0xaf, 0xff, 0x12, 0xa2, 0xbf, 0x51,
0xc1, 0x95, 0xa1, 0xec, 0x03, 0x14, 0x6f, 0xee, 0xa4, 0x77, 0xd3, 0xa7, 0x01, 0xb9, 0x10, 0x6b,
0x1e, 0xe8, 0x47, 0xe2, 0x93, 0x03, 0xfb, 0x49, 0x9f, 0x7c, 0xa7, 0xa0, 0xaf, 0x7d, 0xec, 0x7f,
0x07, 0x43, 0xba, 0x2e, 0x64, 0xb7, 0x4c, 0x16, 0x51, 0x76, 0x11, 0xbb, 0xd2, 0x2f, 0x82, 0x3f,
0x81, 0xb6, 0xf1, 0x30, 0x4f, 0x8c, 0x42, 0x6b, 0xe9, 0x1b, 0x80, 0x7e, 0xbf, 0xae, 0x4b, 0x71,
0x5f, 0x13, 0xdc, 0x17, 0x69, 0x0b, 0xb9, 0x8b, 0x47, 0x28, 0x3c, 0x92, 0x1f, 0xa1, 0xf1, 0xa8,
0x97, 0x3a, 0x52, 0x7c, 0x34, 0x60, 0xbf, 0xe7, 0xe5, 0xe7, 0x5d, 0x79, 0xd4, 0xa3, 0x2b, 0x82,
0x6b, 0x9b, 0x14, 0x5c, 0xc9, 0x0f, 0x61, 0x5e, 0xbd, 0xd8, 0x91, 0xdb, 0xc5, 0xb9, 0x1a, 0xb9,
0x56, 0x7f, 0xbd, 0x0c, 0x2b, 0x66, 0xab, 0x82, 0x59, 0x97, 0xb4, 0x91, 0xd9, 0x88, 0xf1, 0x00,
0x79, 0x84, 0xb0, 0x64, 0xd7, 0x4a, 0xb3, 0xdc, 0xcc, 0x6a, 0x0b, 0xc0, 0xb9, 0x99, 0xd5, 0x57,
0x67, 0x6d, 0x33, 0xd3, 0xe6, 0xb5, 0xab, 0x6b, 0xdb, 0x7f, 0x0e, 0x1d, 0xf3, 0x79, 0x98, 0xf4,
0x8d, 0x9d, 0x97, 0x9e, 0x92, 0xfb, 0x9b, 0xb5, 0x7d, 0xb6, 0xb8, 0x49, 0xc7, 0x9c, 0x86, 0xfc,
0x04, 0x96, 0x8c, 0x97, 0x88, 0xd3, 0x69, 0x34, 0xcc, 0x8f, 0xb3, 0xfa, 0x42, 0xd1, 0xaf, 0x8b,
0xfd, 0xe8, 0x86, 0x60, 0xbc, 0x42, 0x2d, 0xc6, 0x78, 0x94, 0x4f, 0xa0, 0x6d, 0xf0, 0x78, 0x17,
0xdf, 0x0d, 0xa3, 0xcb, 0x7c, 0x15, 0x78, 0xe8, 0x90, 0xdf, 0x38, 0xd0, 0x31, 0xdf, 0xb5, 0x88,
0x95, 0xcd, 0x94, 0xf8, 0xf4, 0xcc, 0x3e, 0x93, 0x11, 0xfd, 0x5a, 0x2c, 0xf2, 0x64, 0xfb, 0xd8,
0x12, 0xf2, 0x5b, 0xab, 0x52, 0xbd, 0x63, 0x7e, 0x5d, 0x75, 0x5d, 0xee, 0x34, 0x5f, 0x70, 0xae,
0x77, 0xdf, 0x8a, 0xe7, 0xae, 0xeb, 0x87, 0x0e, 0xf9, 0x5c, 0x7e, 0x24, 0xa7, 0x03, 0x0d, 0x62,
0x18, 0x78, 0x59, 0x6c, 0xe6, 0xa7, 0x67, 0x5b, 0xce, 0x43, 0x87, 0xfc, 0x85, 0xfc, 0xb0, 0x4a,
0x8d, 0x15, 0xd2, 0x7f, 0xdf, 0xf1, 0xf4, 0xbe, 0xd8, 0xd1, 0x87, 0xf4, 0x8e, 0xb5, 0xa3, 0xb2,
0x87, 0x3b, 0x01, 0x28, 0xa2, 0x46, 0x52, 0x0a, 0xa1, 0x72, 0xdb, 0xaf, 0x06, 0x96, 0xf6, 0xa9,
0xea, 0x48, 0x0b, 0x39, 0xfe, 0x4c, 0x2a, 0xa4, 0xa2, 0xcf, 0xf2, 0x63, 0xad, 0x46, 0x7f, 0xfd,
0x7e, 0x5d, 0x97, 0xe2, 0xff, 0x5d, 0xc1, 0xff, 0x03, 0xb2, 0x69, 0xf2, 0xdf, 0x7d, 0x6b, 0x46,
0x8b, 0xd7, 0xe4, 0x6b, 0xe8, 0x1e, 0xc5, 0xf1, 0xeb, 0x49, 0x92, 0x27, 0x03, 0x76, 0xfc, 0x83,
0x11, 0x6b, 0xbf, 0xb4, 0x29, 0xfa, 0x91, 0xe0, 0xbc, 0x49, 0xee, 0xd8, 0x9c, 0x8b, 0x18, 0xf6,
0x9a, 0x78, 0xb0, 0x92, 0xfb, 0xfd, 0x7c, 0x23, 0x7d, 0x9b, 0x8f, 0x19, 0x4a, 0x56, 0xe6, 0xb0,
0x6e, 0xe2, 0x7c, 0x8e, 0x4c, 0xf3, 0x7c, 0xe8, 0x90, 0x13, 0xe8, 0x3c, 0x65, 0xc3, 0xd8, 0x67,
0x2a, 0x66, 0x59, 0x2d, 0x56, 0x9e, 0xc7, 0x3a, 0xfd, 0xae, 0x05, 0xda, 0x9e, 0x20, 0xf1, 0xa6,
0x29, 0xfb, 0x66, 0xf7, 0xad, 0x0a, 0x86, 0xae, 0xb5, 0x27, 0xd0, 0x01, 0x9c, 0xe5, 0x09, 0x4a,
0x11, 0x9f, 0xe5, 0x09, 0x2a, 0x11, 0x9f, 0xe5, 0x09, 0x74, 0x00, 0x49, 0x42, 0x8c, 0x03, 0x4b,
0x41, 0x62, 0x7e, 0x7b, 0xdc, 0x14, 0x5a, 0xf6, 0xef, 0xdd, 0x4c, 0x60, 0xcf, 0xb6, 0x6d, 0xcf,
0x76, 0x0a, 0xdd, 0xa7, 0x4c, 0x0a, 0x4b, 0x96, 0xe1, 0xfa, 0xb6, 0x6b, 0x31, 0x4b, 0x76, 0x65,
0xb7, 0x23, 0xfa, 0x6c, 0x47, 0x2f, 0x6a, 0x60, 0xe4, 0xa7, 0xd0, 0x7e, 0xc6, 0xb8, 0xae, 0xbb,
0xe5, 0x77, 0x70, 0xa9, 0x10, 0xd7, 0xaf, 0x29, 0xdb, 0xd1, 0x7b, 0x82, 0x5b, 0x9f, 0xf4, 0x72,
0x6e, 0xbb, 0xcc, 0x1f, 0x31, 0xe9, 0x04, 0x06, 0x81, 0x7f, 0x4d, 0x7e, 0x2c, 0x98, 0xe7, 0x45,
0xf9, 0x75, 0xa3, 0x9a, 0x63, 0x32, 0x5f, 0x2a, 0xe1, 0x75, 0x9c, 0x31, 0xc7, 0xdf, 0x7d, 0xab,
0x4a, 0xe3, 0xd7, 0x24, 0x82, 0xb6, 0xf1, 0xd0, 0x92, 0x1b, 0x54, 0xf5, 0xf5, 0x26, 0x37, 0xa8,
0x9a, 0x77, 0x19, 0xba, 0x25, 0xe6, 0xa1, 0xe4, 0x5e, 0x31, 0x8f, 0x7c, 0x8b, 0x29, 0x66, 0xda,
0x7d, 0xeb, 0x8d, 0xf9, 0x35, 0x79, 0x25, 0x3e, 0x6a, 0x31, 0x6b, 0x8b, 0x45, 0x0c, 0x50, 0x2e,
0x43, 0xe6, 0xc2, 0x32, 0xba, 0xec, 0xb8, 0x40, 0x4e, 0x25, 0x6e, 0xc6, 0x57, 0x46, 0x38, 0x65,
0xd5, 0x58, 0xb5, 0x96, 0xdc, 0x58, 0x4a, 0xcb, 0x77, 0x56, 0x53, 0x4e, 0xd3, 0x91, 0x95, 0xac,
0x11, 0x18, 0x91, 0x95, 0x55, 0x64, 0x30, 0x22, 0x2b, 0xbb, 0x98, 0x80, 0x91, 0x55, 0x91, 0x98,
0xe4, 0x91, 0x55, 0x25, 0xe7, 0xc9, 0x9d, 0x61, 0x35, 0x8b, 0x39, 0x9b, 0x13, 0x1f, 0x9b, 0xff,
0xc1, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xfa, 0x13, 0xfc, 0x39, 0x9e, 0x2e, 0x00, 0x00,
// 4098 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7b, 0xcf, 0x6f, 0x1c, 0xc9,
0x75, 0xbf, 0x7a, 0x38, 0x24, 0x67, 0xde, 0xcc, 0xf0, 0x47, 0x91, 0x22, 0x47, 0x43, 0xad, 0xac,
0x2d, 0x0b, 0x2b, 0x7e, 0x65, 0x83, 0xe4, 0xf2, 0x1b, 0x6c, 0xe4, 0x55, 0x92, 0x05, 0x57, 0xd2,
0x8a, 0x0b, 0xd3, 0x5a, 0xba, 0xa9, 0x5d, 0x25, 0x36, 0x82, 0x49, 0x73, 0xba, 0x38, 0x6c, 0xab,
0xa7, 0xbb, 0xb7, 0xbb, 0x86, 0xd4, 0x58, 0x20, 0x12, 0x6c, 0x7c, 0x4c, 0x60, 0x04, 0xbe, 0x1b,
0x09, 0x72, 0xce, 0x25, 0xc7, 0xe4, 0x3f, 0x08, 0x10, 0xc0, 0x80, 0x4f, 0xb9, 0x07, 0xb9, 0xe7,
0x90, 0x5b, 0x0e, 0xc1, 0xab, 0x1f, 0xdd, 0x55, 0xdd, 0x4d, 0xad, 0x82, 0x04, 0x39, 0x71, 0xea,
0x53, 0xaf, 0x5f, 0x55, 0xbd, 0x7a, 0xbf, 0xea, 0x55, 0x11, 0xda, 0x69, 0x32, 0xda, 0x49, 0xd2,
0x98, 0xc7, 0x64, 0x3e, 0x8c, 0xd2, 0x64, 0x34, 0xb8, 0x3d, 0x8e, 0xe3, 0x71, 0xc8, 0x76, 0xbd,
0x24, 0xd8, 0xf5, 0xa2, 0x28, 0xe6, 0x1e, 0x0f, 0xe2, 0x28, 0x93, 0x44, 0xf4, 0xdf, 0x1d, 0xe8,
0xbc, 0x48, 0xbd, 0x28, 0xf3, 0x46, 0x08, 0x93, 0x3e, 0x2c, 0xf2, 0xd7, 0xc3, 0x73, 0x2f, 0x3b,
0xef, 0x3b, 0x77, 0x9d, 0xed, 0xb6, 0xab, 0x9b, 0x64, 0x03, 0x16, 0xbc, 0x49, 0x3c, 0x8d, 0x78,
0xbf, 0x71, 0xd7, 0xd9, 0x9e, 0x73, 0x55, 0x8b, 0x7c, 0x1f, 0x56, 0xa3, 0xe9, 0x64, 0x38, 0x8a,
0xa3, 0xb3, 0x20, 0x9d, 0x48, 0xe6, 0xfd, 0xb9, 0xbb, 0xce, 0xf6, 0xbc, 0x5b, 0xed, 0x20, 0x77,
0x00, 0x4e, 0xc3, 0x78, 0xf4, 0x4a, 0x0e, 0xd1, 0x14, 0x43, 0x18, 0x08, 0xa1, 0xd0, 0x55, 0x2d,
0x16, 0x8c, 0xcf, 0x79, 0x7f, 0x5e, 0x30, 0xb2, 0x30, 0xe4, 0xc1, 0x83, 0x09, 0x1b, 0x66, 0xdc,
0x9b, 0x24, 0xfd, 0x05, 0x31, 0x1b, 0x03, 0x11, 0xfd, 0x31, 0xf7, 0xc2, 0xe1, 0x19, 0x63, 0x59,
0x7f, 0x51, 0xf5, 0xe7, 0x08, 0xed, 0xc3, 0xc6, 0x33, 0xc6, 0x8d, 0x55, 0x67, 0x2e, 0xfb, 0x7a,
0xca, 0x32, 0x4e, 0x8f, 0x80, 0x18, 0xf0, 0x13, 0xc6, 0xbd, 0x20, 0xcc, 0xc8, 0x47, 0xd0, 0xe5,
0x06, 0x71, 0xdf, 0xb9, 0x3b, 0xb7, 0xdd, 0xd9, 0x27, 0x3b, 0x42, 0xbe, 0x3b, 0xc6, 0x07, 0xae,
0x45, 0x47, 0x7f, 0xe3, 0x40, 0xe7, 0x84, 0x45, 0xbe, 0xe2, 0x4e, 0x08, 0x34, 0x7d, 0x96, 0x71,
0x21, 0xd8, 0xae, 0x2b, 0x7e, 0x93, 0xef, 0x40, 0x07, 0xff, 0x0e, 0x33, 0x9e, 0x06, 0xd1, 0x58,
0x88, 0xb6, 0xed, 0x02, 0x42, 0x27, 0x02, 0x21, 0x2b, 0x30, 0xe7, 0x4d, 0xb8, 0x10, 0xe8, 0x9c,
0x8b, 0x3f, 0xc9, 0xfb, 0xd0, 0x4d, 0xbc, 0xd9, 0x84, 0x45, 0xbc, 0x10, 0x62, 0xd7, 0xed, 0x28,
0xec, 0x10, 0xa5, 0xb8, 0x03, 0x6b, 0x26, 0x89, 0xe6, 0x3e, 0x2f, 0xb8, 0xaf, 0x1a, 0x94, 0x6a,
0x90, 0xfb, 0xb0, 0xac, 0xe9, 0x53, 0x39, 0x59, 0x21, 0xd6, 0xb6, 0xbb, 0xa4, 0x60, 0x2d, 0xa0,
0x08, 0xba, 0x72, 0x45, 0x59, 0x12, 0x47, 0x19, 0x23, 0x0f, 0x60, 0x45, 0x7f, 0x98, 0xa4, 0x2c,
0x98, 0x78, 0x63, 0xa6, 0x96, 0x57, 0xc1, 0xc9, 0x3e, 0xf4, 0xf2, 0x41, 0xe2, 0x29, 0x67, 0x62,
0xb1, 0x9d, 0xfd, 0xae, 0x92, 0xa3, 0x8b, 0x98, 0x6b, 0x93, 0xd0, 0x6f, 0x1c, 0xe8, 0x3e, 0x3e,
0xf7, 0xa2, 0x88, 0x85, 0xc7, 0x71, 0x10, 0x71, 0xd4, 0x8f, 0xb3, 0x69, 0xe4, 0x07, 0xd1, 0x78,
0xc8, 0x5f, 0x07, 0xbe, 0x1a, 0xcc, 0xc2, 0x70, 0x52, 0x66, 0x1b, 0x57, 0xaf, 0x04, 0x5b, 0xc1,
0x91, 0x5f, 0x3c, 0xe5, 0xc9, 0x94, 0x0f, 0x83, 0xc8, 0x67, 0xaf, 0x85, 0x9c, 0x7b, 0xae, 0x85,
0xd1, 0x3f, 0x80, 0x95, 0x23, 0x54, 0xbc, 0x28, 0x88, 0xc6, 0x07, 0xbe, 0x9f, 0xb2, 0x2c, 0x43,
0x6b, 0x48, 0xa6, 0xa7, 0xaf, 0xd8, 0x4c, 0x99, 0x89, 0x6a, 0xe1, 0x1e, 0x9f, 0xc7, 0x19, 0x57,
0xe3, 0x89, 0xdf, 0xf4, 0xaf, 0x1d, 0x58, 0x46, 0xa9, 0xfd, 0xc8, 0x8b, 0x66, 0x5a, 0x17, 0x8e,
0xa0, 0x8b, 0xac, 0x5e, 0xc4, 0x07, 0xd2, 0xa6, 0xa4, 0x4e, 0x6d, 0x2b, 0x59, 0x94, 0xa8, 0x77,
0x4c, 0xd2, 0xa7, 0x11, 0x4f, 0x67, 0xae, 0xf5, 0xf5, 0xe0, 0x13, 0x58, 0xad, 0x90, 0xa0, 0xe6,
0x14, 0xf3, 0xc3, 0x9f, 0x64, 0x1d, 0xe6, 0x2f, 0xbc, 0x70, 0xca, 0x94, 0x05, 0xcb, 0xc6, 0xc7,
0x8d, 0x87, 0x0e, 0xfd, 0x00, 0x56, 0x8a, 0x31, 0xd5, 0xde, 0x12, 0x68, 0xe6, 0x22, 0x6e, 0xbb,
0xe2, 0x37, 0x8a, 0x02, 0xe9, 0x1e, 0xc7, 0x41, 0x6e, 0x34, 0x48, 0xe7, 0xf9, 0x7e, 0xaa, 0xe9,
0xf0, 0xf7, 0x75, 0xce, 0x82, 0xde, 0x87, 0x55, 0xe3, 0xfb, 0xb7, 0x0c, 0xf4, 0x6b, 0x07, 0x56,
0x9f, 0xb3, 0x4b, 0x25, 0x6e, 0x3d, 0xd4, 0x43, 0x68, 0xf2, 0x59, 0x22, 0x55, 0x6c, 0x69, 0xff,
0x9e, 0x92, 0x56, 0x85, 0x6e, 0x47, 0x35, 0x5f, 0xcc, 0x12, 0xe6, 0x8a, 0x2f, 0xe8, 0x17, 0xd0,
0x31, 0x40, 0xb2, 0x09, 0x6b, 0x2f, 0x3f, 0x7f, 0xf1, 0xfc, 0xe9, 0xc9, 0xc9, 0xf0, 0xf8, 0xcb,
0x4f, 0x7f, 0xf8, 0xf4, 0x8f, 0x86, 0x87, 0x07, 0x27, 0x87, 0x2b, 0x37, 0xc8, 0x06, 0x90, 0xe7,
0x4f, 0x4f, 0x5e, 0x3c, 0x7d, 0x62, 0xe1, 0x0e, 0x59, 0x86, 0x8e, 0x09, 0x34, 0xe8, 0x00, 0xfa,
0xcf, 0xd9, 0xe5, 0xcb, 0x80, 0x47, 0x2c, 0xcb, 0xec, 0xe1, 0xe9, 0x0e, 0x10, 0x73, 0x4e, 0x6a,
0x99, 0x7d, 0x58, 0xf4, 0x24, 0xa4, 0x5d, 0xab, 0x6a, 0xd2, 0x2f, 0x81, 0x3c, 0x8e, 0xa3, 0x88,
0x8d, 0xf8, 0x31, 0x63, 0xa9, 0x5e, 0xec, 0xf7, 0x0c, 0xb9, 0x76, 0xf6, 0x37, 0xd5, 0x62, 0xcb,
0x9a, 0xa8, 0x04, 0x4e, 0xa0, 0x99, 0xb0, 0x74, 0x22, 0xc4, 0xdd, 0x72, 0xc5, 0x6f, 0xba, 0x0b,
0x6b, 0x16, 0xdb, 0x62, 0x1e, 0x09, 0x63, 0xe9, 0x50, 0x49, 0x7c, 0xde, 0xd5, 0x4d, 0xfa, 0xf7,
0x0e, 0x34, 0x0f, 0x5f, 0x1c, 0x3d, 0x26, 0x03, 0x68, 0x05, 0xd1, 0x28, 0x9e, 0xa0, 0xd3, 0x70,
0x04, 0xc7, 0xbc, 0x7d, 0x6d, 0x1c, 0xb8, 0x0d, 0x6d, 0xe1, 0x6b, 0xd0, 0x53, 0x0b, 0x33, 0xea,
0xba, 0x05, 0x80, 0x51, 0x82, 0xbd, 0x4e, 0x82, 0x54, 0x84, 0x01, 0xed, 0xdc, 0x9b, 0xc2, 0xd8,
0xaa, 0x1d, 0x68, 0xc1, 0x29, 0xbb, 0x88, 0x47, 0x12, 0xf4, 0x59, 0xe8, 0xcd, 0x84, 0xf3, 0xea,
0xb9, 0x15, 0x9c, 0xfe, 0xdb, 0x1c, 0xf4, 0x0e, 0x46, 0x3c, 0xb8, 0x60, 0xca, 0x51, 0x88, 0x19,
0x0a, 0x40, 0xcd, 0x5d, 0xb5, 0xc8, 0x3d, 0xe8, 0xa5, 0x6c, 0x12, 0x73, 0x36, 0x54, 0xa6, 0x2b,
0x8d, 0xd4, 0x06, 0x91, 0x6a, 0x24, 0x19, 0x0d, 0x13, 0x74, 0x39, 0x62, 0x2d, 0x6d, 0xd7, 0x06,
0x51, 0x88, 0x08, 0xa0, 0x10, 0x71, 0x15, 0x4d, 0x57, 0x37, 0x51, 0x76, 0x23, 0x2f, 0xf1, 0x46,
0x01, 0x97, 0x73, 0x9e, 0x73, 0xf3, 0x36, 0xf2, 0x0e, 0xe3, 0x91, 0x17, 0x0e, 0x4f, 0xbd, 0xd0,
0x8b, 0x46, 0x4c, 0x05, 0x2f, 0x1b, 0x24, 0x1f, 0xc0, 0x92, 0x9a, 0x92, 0x26, 0x93, 0x31, 0xac,
0x84, 0xa2, 0x4c, 0xa7, 0x51, 0xc6, 0x38, 0x0f, 0x99, 0x9f, 0x93, 0xb6, 0x04, 0x69, 0xb5, 0x83,
0xec, 0xc1, 0x9a, 0x8c, 0x81, 0x99, 0xc7, 0xe3, 0xec, 0x3c, 0xc8, 0x86, 0x19, 0x8b, 0x78, 0xbf,
0x2d, 0xe8, 0xeb, 0xba, 0xc8, 0x43, 0xd8, 0x2c, 0xc1, 0x29, 0x1b, 0xb1, 0xe0, 0x82, 0xf9, 0x7d,
0x10, 0x5f, 0x5d, 0xd7, 0x4d, 0xee, 0x42, 0x07, 0x43, 0xff, 0x34, 0xf1, 0x3d, 0xce, 0xb2, 0x7e,
0x47, 0x48, 0xc8, 0x84, 0xc8, 0x87, 0xd0, 0x4b, 0x98, 0xf4, 0xc5, 0xe7, 0x3c, 0x1c, 0x65, 0xfd,
0xae, 0x70, 0x80, 0x1d, 0xa5, 0xe5, 0xa8, 0x85, 0xae, 0x4d, 0x41, 0x6f, 0xc2, 0xda, 0x51, 0x90,
0x71, 0xb5, 0xcb, 0xb9, 0xb1, 0x1d, 0xc2, 0xba, 0x0d, 0x2b, 0x35, 0xdf, 0x83, 0x96, 0xda, 0x32,
0x9c, 0x00, 0x32, 0x5f, 0x57, 0xcc, 0x2d, 0x6d, 0x71, 0x73, 0x2a, 0xfa, 0x8b, 0x06, 0x34, 0xd1,
0x52, 0x84, 0x85, 0x4c, 0x4f, 0x87, 0x85, 0xf7, 0xd4, 0x4d, 0xd3, 0x76, 0x1a, 0x96, 0xed, 0x98,
0xd6, 0x3d, 0x67, 0x59, 0xb7, 0x48, 0x79, 0x66, 0x9c, 0x29, 0x79, 0x4b, 0x6d, 0x31, 0x90, 0xa2,
0x3f, 0x65, 0xa3, 0x0b, 0xa1, 0x32, 0x79, 0x3f, 0x22, 0xa8, 0x50, 0x99, 0xc7, 0xe5, 0xd7, 0x52,
0x5f, 0xf2, 0xb6, 0xee, 0x13, 0x5f, 0x2e, 0x16, 0x7d, 0xe2, 0xbb, 0x3e, 0x2c, 0x06, 0xd1, 0x69,
0x3c, 0x8d, 0x7c, 0xa1, 0x14, 0x2d, 0x57, 0x37, 0xd1, 0x54, 0x13, 0x11, 0x05, 0x83, 0x09, 0x53,
0x0a, 0x50, 0x00, 0x94, 0x60, 0xb8, 0xcb, 0x84, 0xcf, 0xc8, 0x85, 0xfc, 0x11, 0xac, 0x1a, 0x98,
0x92, 0xf0, 0xfb, 0x30, 0x8f, 0xab, 0xd7, 0x09, 0x91, 0xde, 0x3b, 0xe1, 0x6c, 0x64, 0x0f, 0x5d,
0x81, 0xa5, 0x67, 0x8c, 0x7f, 0x1e, 0x9d, 0xc5, 0x9a, 0xd3, 0x7f, 0x34, 0x60, 0x39, 0x87, 0x14,
0xa3, 0x6d, 0x58, 0x0e, 0x7c, 0x16, 0xf1, 0x80, 0xcf, 0x86, 0x56, 0x54, 0x2d, 0xc3, 0x18, 0xc1,
0xbc, 0x30, 0xf0, 0x32, 0x65, 0xba, 0xb2, 0x41, 0xf6, 0x61, 0x1d, 0x75, 0x4b, 0xab, 0x4b, 0xbe,
0xed, 0x32, 0x98, 0xd7, 0xf6, 0xa1, 0x39, 0x20, 0x2e, 0x5d, 0x43, 0xf1, 0x89, 0x74, 0x49, 0x75,
0x5d, 0x28, 0x35, 0xc9, 0x09, 0x97, 0x2c, 0xbd, 0x51, 0x01, 0x54, 0x12, 0xd7, 0x05, 0x99, 0x48,
0x94, 0x13, 0x57, 0x23, 0xf9, 0x6d, 0x55, 0x92, 0xdf, 0x6d, 0x58, 0xce, 0x66, 0xd1, 0x88, 0xf9,
0x43, 0x1e, 0xe3, 0xb8, 0x41, 0x24, 0x76, 0xa7, 0xe5, 0x96, 0x61, 0x91, 0xa6, 0xb3, 0x8c, 0x47,
0x8c, 0x0b, 0x53, 0x6c, 0xb9, 0xba, 0x89, 0xce, 0x4f, 0x90, 0x48, 0xa5, 0x6f, 0xbb, 0xaa, 0x45,
0x7f, 0x2e, 0x62, 0x4c, 0x9e, 0x89, 0x7f, 0x29, 0xec, 0x90, 0x6c, 0x41, 0x5b, 0x8e, 0x9f, 0x9d,
0x7b, 0x2a, 0x97, 0x6a, 0x09, 0xe0, 0xe4, 0xdc, 0xc3, 0x44, 0xd3, 0x5a, 0x92, 0xd4, 0xf8, 0x8e,
0xc0, 0x0e, 0xe5, 0x8a, 0xee, 0xc1, 0x92, 0xce, 0xf1, 0xb3, 0x61, 0xc8, 0xce, 0xb8, 0x4e, 0xa0,
0xa2, 0xe9, 0x04, 0x87, 0xcb, 0x8e, 0xd8, 0x19, 0xa7, 0xcf, 0x61, 0x55, 0x59, 0xdb, 0x17, 0x09,
0xd3, 0x43, 0xff, 0xa0, 0xec, 0x67, 0x65, 0x9c, 0x5b, 0x53, 0x5a, 0x64, 0x66, 0x7d, 0x25, 0xe7,
0x4b, 0x5d, 0x20, 0xaa, 0xfb, 0x71, 0x18, 0x67, 0x4c, 0x31, 0xa4, 0xd0, 0x1d, 0x85, 0x71, 0x56,
0x4e, 0x0d, 0x4d, 0x0c, 0xe5, 0x96, 0x4d, 0x47, 0x23, 0xb4, 0x52, 0x19, 0x29, 0x75, 0x93, 0xfe,
0xc2, 0x81, 0x35, 0xc1, 0x4d, 0xfb, 0x85, 0x3c, 0xe5, 0x78, 0xf7, 0x69, 0x76, 0x47, 0x66, 0xaa,
0xfa, 0x9e, 0x3a, 0xa6, 0x84, 0xc1, 0x24, 0xd0, 0xc1, 0xb2, 0x8d, 0xc8, 0x11, 0x02, 0xa8, 0xca,
0x67, 0x71, 0x3a, 0x62, 0x42, 0x62, 0x2d, 0x57, 0x36, 0xe8, 0xbf, 0x38, 0xb0, 0x2a, 0xa6, 0x71,
0xc2, 0x3d, 0x3e, 0xcd, 0xd4, 0xd2, 0x7e, 0x0f, 0x7a, 0xb8, 0x0c, 0xa6, 0xd5, 0x58, 0x4d, 0x62,
0x3d, 0xb7, 0x38, 0x81, 0x4a, 0xe2, 0xc3, 0x1b, 0xae, 0x4d, 0x4c, 0x3e, 0x81, 0xae, 0x79, 0x08,
0x53, 0x79, 0xf7, 0x2d, 0xbd, 0x82, 0x8a, 0x56, 0x1c, 0xde, 0x70, 0xad, 0x0f, 0xc8, 0x23, 0x00,
0x11, 0xdd, 0x04, 0x5b, 0x31, 0x5f, 0xe3, 0xf3, 0xca, 0x46, 0x1c, 0xde, 0x70, 0x0d, 0xf2, 0x4f,
0x5b, 0xb0, 0x20, 0x9d, 0x3e, 0x7d, 0x06, 0x3d, 0x6b, 0xa6, 0x56, 0xe2, 0xd7, 0x95, 0x89, 0x5f,
0x25, 0x21, 0x6f, 0xd4, 0x24, 0xe4, 0xff, 0xe9, 0x00, 0x41, 0x4d, 0x2a, 0x6d, 0xd5, 0x07, 0xb0,
0xc4, 0xbd, 0x74, 0xcc, 0xf8, 0xd0, 0xce, 0x6f, 0x4a, 0xa8, 0x88, 0x4e, 0xb1, 0x6f, 0x65, 0x01,
0x5d, 0xd7, 0x84, 0xc8, 0x0e, 0x10, 0xa3, 0xa9, 0x8f, 0x4f, 0xd2, 0xaf, 0xd7, 0xf4, 0xa0, 0x03,
0x92, 0x21, 0x5c, 0x9f, 0x2f, 0x54, 0x86, 0xd4, 0x14, 0x9b, 0x5e, 0xdb, 0x87, 0xae, 0x3b, 0x99,
0xe2, 0xd9, 0xcc, 0xe3, 0x3a, 0x4f, 0xd0, 0x6d, 0xed, 0x6a, 0x84, 0x59, 0x29, 0x4f, 0x52, 0x00,
0xf4, 0xb7, 0x0e, 0xac, 0xe0, 0xf2, 0x2d, 0x15, 0xf9, 0x18, 0x84, 0xf6, 0xbd, 0xa3, 0x86, 0x58,
0xb4, 0xff, 0x73, 0x05, 0x79, 0x08, 0x6d, 0xc1, 0x30, 0x4e, 0x58, 0xa4, 0xf4, 0xa3, 0x6f, 0xeb,
0x47, 0x61, 0xf8, 0x87, 0x37, 0xdc, 0x82, 0xd8, 0xd0, 0x8e, 0x4d, 0xb8, 0xa9, 0x66, 0x69, 0x6f,
0x2b, 0xfd, 0x9b, 0x36, 0x6c, 0x94, 0x7b, 0xf2, 0x18, 0xaf, 0x12, 0x97, 0x30, 0x98, 0x9c, 0xc6,
0x79, 0x0e, 0xe4, 0x98, 0x39, 0x8d, 0xd5, 0x45, 0xce, 0xe0, 0xa6, 0x0e, 0x05, 0x38, 0x7e, 0xe1,
0xf8, 0x1b, 0x22, 0x86, 0xed, 0xd9, 0xf2, 0x2a, 0x8d, 0xa7, 0x61, 0x53, 0xf7, 0xea, 0xd9, 0x91,
0x31, 0xf4, 0xf3, 0x90, 0xa3, 0x1c, 0x90, 0x11, 0x96, 0x70, 0xa8, 0xef, 0xbd, 0x7d, 0x28, 0x61,
0x50, 0xbe, 0x46, 0xaf, 0x65, 0x46, 0x5e, 0xc3, 0x1d, 0xdd, 0x27, 0x3c, 0x48, 0x75, 0xb8, 0xe6,
0xbb, 0xac, 0xec, 0x33, 0xfc, 0xd6, 0x1e, 0xf3, 0x5b, 0xf8, 0x0e, 0xfe, 0xc9, 0x81, 0x25, 0x9b,
0x1b, 0x06, 0x30, 0x95, 0xa3, 0x6a, 0x23, 0xd1, 0x81, 0xbc, 0x04, 0x57, 0xb3, 0xec, 0x46, 0x5d,
0x96, 0x6d, 0xe6, 0xd2, 0x73, 0xdf, 0x96, 0x4b, 0x37, 0xdf, 0x2d, 0x97, 0x9e, 0xaf, 0xcb, 0xa5,
0x07, 0xff, 0xe0, 0x00, 0xa9, 0xee, 0x2e, 0xf9, 0x4c, 0xa6, 0xf9, 0x11, 0x0b, 0x95, 0x41, 0x7d,
0xff, 0x9d, 0x14, 0x44, 0xc3, 0xfa, 0x63, 0x54, 0x54, 0xd3, 0x60, 0xcc, 0x88, 0xda, 0x73, 0xeb,
0xba, 0xf0, 0x08, 0x24, 0x02, 0x6d, 0x36, 0xe4, 0x41, 0x18, 0x16, 0x96, 0xd5, 0x73, 0x2b, 0xf8,
0xe0, 0x0d, 0xf4, 0xac, 0xad, 0xfb, 0x5f, 0x9b, 0x76, 0x39, 0xa4, 0xca, 0x4d, 0xb2, 0xb0, 0xc1,
0x37, 0x0d, 0x20, 0x55, 0xed, 0xf9, 0xbf, 0x9c, 0x82, 0x50, 0x05, 0xcb, 0x01, 0xcc, 0x29, 0x55,
0xb0, 0x4c, 0x7f, 0x1b, 0x96, 0x27, 0x1e, 0x9f, 0xa6, 0x98, 0x4e, 0x5a, 0x07, 0xd0, 0x32, 0x8c,
0xbb, 0x55, 0xc8, 0x78, 0xa8, 0x7b, 0x55, 0xce, 0x57, 0xd7, 0x45, 0x7f, 0x00, 0xeb, 0x2f, 0xbd,
0x30, 0x64, 0xfc, 0x53, 0x39, 0x98, 0x0e, 0x49, 0xef, 0x43, 0xf7, 0x52, 0x96, 0x08, 0x86, 0x71,
0x14, 0xce, 0xd4, 0x81, 0xb4, 0xa3, 0xb0, 0x2f, 0xa2, 0x70, 0x46, 0x3f, 0x84, 0x9b, 0xa5, 0x4f,
0x8b, 0x73, 0xba, 0xe9, 0xd0, 0x1c, 0x57, 0x37, 0xd1, 0x55, 0x2a, 0x39, 0xd9, 0xc3, 0xd1, 0x7d,
0xd8, 0x28, 0x77, 0xd4, 0x33, 0x9b, 0x2b, 0x98, 0x7d, 0x02, 0xe4, 0xc7, 0x53, 0x96, 0xce, 0x44,
0xfd, 0x2d, 0xaf, 0xb4, 0x6c, 0x96, 0x8f, 0x40, 0x0b, 0xc9, 0xf4, 0xf4, 0x87, 0x6c, 0xa6, 0xeb,
0x91, 0x8d, 0xbc, 0x1e, 0x49, 0x1f, 0xc1, 0x9a, 0xc5, 0x40, 0x8d, 0x78, 0x0f, 0x16, 0x44, 0x0d,
0x4f, 0x1f, 0x0f, 0xec, 0x3a, 0x9f, 0xea, 0xa3, 0x7f, 0x0a, 0x73, 0x87, 0x71, 0x62, 0x1e, 0xa7,
0x1d, 0xfb, 0x38, 0xad, 0x1c, 0xc5, 0x30, 0xf7, 0x03, 0x72, 0x64, 0x1b, 0x44, 0x33, 0xf7, 0x26,
0x1c, 0xf3, 0xe3, 0xb3, 0x38, 0xbd, 0xf4, 0x52, 0x5f, 0xa9, 0x40, 0x09, 0xc5, 0xd9, 0x9f, 0x31,
0xed, 0x2a, 0xf0, 0x27, 0xfd, 0xa5, 0x03, 0xf3, 0x62, 0x4a, 0xa8, 0x1f, 0x32, 0x62, 0xc8, 0xac,
0x2d, 0x1e, 0xbd, 0x12, 0x73, 0xe9, 0xb9, 0x65, 0xb8, 0x54, 0x60, 0x6e, 0x94, 0x0b, 0xcc, 0x18,
0xbe, 0x65, 0xab, 0xa8, 0xdc, 0x16, 0x00, 0xb9, 0x03, 0xcd, 0xf3, 0x38, 0xd1, 0x7e, 0x19, 0xf4,
0x89, 0x37, 0x4e, 0x5c, 0x81, 0xd3, 0x07, 0xb0, 0xfc, 0x3c, 0xf6, 0x99, 0x71, 0x68, 0xba, 0x76,
0x37, 0xe8, 0x9f, 0x39, 0xd0, 0xd2, 0xc4, 0x64, 0x1b, 0x9a, 0xe8, 0x5f, 0x4b, 0xa1, 0x3f, 0x2f,
0x18, 0x21, 0x9d, 0x2b, 0x28, 0xd0, 0xa8, 0x44, 0x3a, 0x51, 0x04, 0x3f, 0x9d, 0xb4, 0x17, 0x81,
0x05, 0xb3, 0x29, 0x31, 0xe7, 0x92, 0x07, 0x2e, 0xa1, 0xf4, 0x57, 0x0e, 0xf4, 0xac, 0x31, 0x30,
0xbf, 0x0a, 0xbd, 0x8c, 0xab, 0xb3, 0xbe, 0x12, 0xa2, 0x09, 0x99, 0x07, 0xec, 0x86, 0x7d, 0xc0,
0xce, 0x0f, 0x78, 0x73, 0xe6, 0x01, 0x6f, 0x0f, 0xda, 0xea, 0x34, 0xcd, 0xb4, 0xdc, 0x74, 0xf9,
0x1d, 0x47, 0xd4, 0xa5, 0xb0, 0x82, 0x88, 0x3e, 0x82, 0x8e, 0xd1, 0x83, 0x03, 0x46, 0x8c, 0x5f,
0xc6, 0xe9, 0x2b, 0x7d, 0xa2, 0x57, 0xcd, 0xbc, 0x7a, 0xd9, 0x28, 0xaa, 0x97, 0xf4, 0xef, 0x1c,
0xe8, 0xa1, 0x4e, 0x04, 0xd1, 0xf8, 0x38, 0x0e, 0x83, 0xd1, 0x4c, 0xe8, 0x86, 0xde, 0xfe, 0xa1,
0xcf, 0x42, 0xee, 0xe5, 0xba, 0x61, 0xc3, 0x18, 0xb2, 0x26, 0x41, 0x24, 0x4a, 0x16, 0x4a, 0x33,
0xf2, 0x36, 0xea, 0xf2, 0x19, 0xc3, 0x98, 0x93, 0xb1, 0xe1, 0x04, 0xf3, 0x3e, 0xe5, 0xa7, 0x2c,
0x10, 0xbd, 0x0f, 0x02, 0xa9, 0xc7, 0xd9, 0x70, 0x12, 0x84, 0x61, 0x20, 0x69, 0xa5, 0xce, 0xd6,
0x75, 0xd1, 0x7f, 0x6c, 0x40, 0x47, 0xd9, 0xfd, 0x53, 0x7f, 0xcc, 0x50, 0x3f, 0x75, 0x1c, 0xcd,
0x0d, 0xca, 0x40, 0x74, 0xbf, 0x15, 0x79, 0x0d, 0xa4, 0xbc, 0x81, 0x73, 0xd5, 0x0d, 0xc4, 0x04,
0x35, 0xf6, 0xd9, 0x87, 0x22, 0xc4, 0xcb, 0x5b, 0x9c, 0x02, 0xd0, 0xbd, 0xfb, 0xa2, 0x77, 0xbe,
0xe8, 0x15, 0x80, 0x15, 0xd4, 0x17, 0x4a, 0x41, 0xfd, 0x21, 0x74, 0x15, 0x1b, 0x21, 0x77, 0x51,
0xd3, 0x28, 0x54, 0xd9, 0xda, 0x13, 0xd7, 0xa2, 0xd4, 0x5f, 0xee, 0xeb, 0x2f, 0x5b, 0xdf, 0xf6,
0xa5, 0xa6, 0xa4, 0x37, 0x61, 0x4d, 0x09, 0xef, 0x59, 0xea, 0x25, 0xe7, 0xda, 0x97, 0xfa, 0xf9,
0xcd, 0x83, 0x80, 0xc9, 0x03, 0x98, 0xc7, 0xcf, 0xb4, 0x3b, 0xab, 0x37, 0x2f, 0x49, 0x42, 0xb6,
0x61, 0x9e, 0xf9, 0x63, 0xa6, 0xb3, 0x4a, 0x62, 0xe7, 0xc2, 0xb8, 0x47, 0xae, 0x24, 0x40, 0x63,
0x47, 0xb4, 0x64, 0xec, 0xb6, 0x2f, 0xc4, 0x23, 0x7c, 0xf4, 0xb9, 0x4f, 0xd7, 0x81, 0x3c, 0x97,
0x5a, 0x6b, 0x16, 0x54, 0xfe, 0x7c, 0x0e, 0x3a, 0x06, 0x8c, 0x76, 0x3b, 0xc6, 0x09, 0x0f, 0xfd,
0xc0, 0x9b, 0x30, 0xce, 0x52, 0xa5, 0xa9, 0x25, 0x54, 0xb8, 0xcc, 0x8b, 0xf1, 0x30, 0x9e, 0xf2,
0xa1, 0xcf, 0xc6, 0x29, 0x93, 0xb7, 0x02, 0x8e, 0x5b, 0x42, 0x91, 0x6e, 0xe2, 0xbd, 0x36, 0xe9,
0xa4, 0x3e, 0x94, 0x50, 0x7d, 0x66, 0x91, 0x32, 0x6a, 0x16, 0x67, 0x16, 0x29, 0x91, 0xb2, 0xc7,
0x99, 0xaf, 0xf1, 0x38, 0x1f, 0xc1, 0x86, 0xf4, 0x2d, 0xca, 0x36, 0x87, 0x25, 0x35, 0xb9, 0xa6,
0x17, 0x53, 0x25, 0x9c, 0xb3, 0x56, 0xf0, 0x2c, 0xf8, 0xb9, 0xac, 0x98, 0x3a, 0x6e, 0x05, 0x47,
0x5a, 0x34, 0x47, 0x8b, 0x56, 0x96, 0x4c, 0x2b, 0xb8, 0xa0, 0xf5, 0x5e, 0xdb, 0xb4, 0x6d, 0x45,
0x5b, 0xc2, 0xe9, 0x16, 0xdc, 0x12, 0x6a, 0xf2, 0x22, 0x4e, 0xe2, 0x30, 0x1e, 0xcf, 0x4e, 0xa6,
0xa7, 0xd9, 0x28, 0x0d, 0x12, 0x4c, 0xe9, 0xe8, 0x3f, 0x3b, 0xb0, 0x66, 0xf5, 0xaa, 0x33, 0xdb,
0xef, 0x48, 0x9d, 0xcd, 0xeb, 0xa4, 0x52, 0xb3, 0x56, 0x0d, 0xcf, 0x26, 0x09, 0xe5, 0xe1, 0xf4,
0x4b, 0x55, 0x3a, 0x3d, 0x80, 0x65, 0x3d, 0xb4, 0xfe, 0x50, 0xaa, 0x59, 0xbf, 0xaa, 0x66, 0xea,
0xfb, 0x25, 0xf5, 0x81, 0x66, 0xf1, 0xfb, 0x32, 0xa9, 0x62, 0xbe, 0x58, 0x84, 0x3e, 0x91, 0x0c,
0xf4, 0xf7, 0x66, 0x22, 0xa7, 0x67, 0x30, 0xca, 0xc1, 0x8c, 0xfe, 0x85, 0x03, 0x50, 0xcc, 0x0e,
0x77, 0xbe, 0xf0, 0xce, 0x8e, 0xa8, 0x3a, 0x15, 0x00, 0xa6, 0x40, 0x79, 0x15, 0xaf, 0x70, 0xf8,
0x1d, 0x8d, 0x61, 0x4e, 0x71, 0x1f, 0x96, 0xc7, 0x61, 0x7c, 0x2a, 0xc2, 0x27, 0x66, 0x54, 0x2c,
0x53, 0x17, 0x08, 0x4b, 0x12, 0xfe, 0x4c, 0xa1, 0x45, 0x74, 0x68, 0x1a, 0xd1, 0x81, 0xfe, 0x65,
0x23, 0xaf, 0x2f, 0x15, 0x6b, 0xbe, 0xd6, 0x8c, 0xc8, 0x7e, 0xc5, 0xfb, 0x5d, 0x53, 0xce, 0x11,
0xc7, 0xd4, 0xe3, 0x6f, 0x3d, 0x88, 0x3c, 0x82, 0xa5, 0x54, 0xba, 0x17, 0xed, 0x7b, 0x9a, 0x6f,
0xf1, 0x3d, 0xbd, 0xd4, 0x0a, 0x2c, 0xff, 0x0f, 0x56, 0x3c, 0xff, 0x82, 0xa5, 0x3c, 0x10, 0xe9,
0xac, 0x88, 0xdf, 0xd2, 0x63, 0x2e, 0x1b, 0xb8, 0x08, 0xab, 0xf7, 0x61, 0x79, 0x24, 0xaf, 0x73,
0x72, 0x4a, 0x75, 0x49, 0x5b, 0xc0, 0x48, 0x48, 0xff, 0x56, 0x97, 0xb2, 0xec, 0x3d, 0xbc, 0x5e,
0x22, 0xe6, 0xea, 0x1a, 0xa5, 0xd5, 0x7d, 0x57, 0x95, 0x9e, 0x7c, 0x9d, 0x33, 0xab, 0x02, 0x9f,
0x04, 0x55, 0x19, 0xd0, 0x16, 0x69, 0xf3, 0x5d, 0x44, 0x4a, 0x77, 0x60, 0xf9, 0x84, 0xf1, 0x03,
0xdc, 0x41, 0xed, 0xf9, 0xb6, 0xa0, 0x1d, 0xb1, 0xcb, 0xa1, 0xdc, 0x62, 0x19, 0xa7, 0x5b, 0x11,
0xbb, 0x14, 0x34, 0x94, 0xc0, 0x4a, 0x41, 0x2f, 0x73, 0x4c, 0xfa, 0x57, 0x0d, 0x58, 0xfc, 0x3c,
0xba, 0x88, 0x83, 0x91, 0x28, 0x26, 0x4d, 0xd8, 0x24, 0xd6, 0xb7, 0x88, 0xf8, 0x1b, 0xc3, 0xbe,
0xb8, 0x93, 0x48, 0xb8, 0xaa, 0xf2, 0xe8, 0x26, 0x86, 0xc0, 0xb4, 0xb8, 0xb2, 0x96, 0xda, 0x66,
0x20, 0x64, 0x03, 0x16, 0x52, 0xf3, 0x7a, 0x5d, 0xb5, 0x8a, 0x2b, 0xd4, 0x79, 0xe3, 0x0a, 0x55,
0x94, 0x15, 0xe5, 0x75, 0x8b, 0xd8, 0x92, 0x96, 0xab, 0x9b, 0x22, 0x7d, 0x4d, 0x99, 0xba, 0xaf,
0xc2, 0x60, 0xba, 0xa8, 0xd2, 0x57, 0x13, 0xc4, 0x80, 0x2b, 0x3f, 0x90, 0x34, 0xd2, 0x21, 0x99,
0x10, 0x26, 0x20, 0xe5, 0x1b, 0xfa, 0xb6, 0x54, 0x93, 0x12, 0x4c, 0xbf, 0x02, 0x72, 0xe0, 0xfb,
0x4a, 0x2a, 0x79, 0x36, 0x5e, 0xac, 0xc7, 0xb1, 0xd6, 0x53, 0xc3, 0xb7, 0x51, 0xcf, 0xf7, 0x29,
0x74, 0x8e, 0x8d, 0x27, 0x06, 0x42, 0x80, 0xfa, 0x71, 0x81, 0x12, 0xba, 0x81, 0x18, 0x03, 0x36,
0xcc, 0x01, 0xe9, 0xef, 0x02, 0x39, 0x0a, 0x32, 0x9e, 0xcf, 0x2f, 0x3f, 0x27, 0xe5, 0x75, 0x14,
0xe3, 0x9c, 0xa4, 0x30, 0x71, 0x4e, 0x3a, 0x90, 0xd7, 0x3f, 0xe5, 0x85, 0x3d, 0x80, 0x56, 0x20,
0x21, 0xed, 0x3f, 0x97, 0x94, 0xe2, 0x69, 0xca, 0xbc, 0x1f, 0x23, 0xbd, 0x02, 0x2d, 0xf7, 0xfc,
0x4b, 0x07, 0x16, 0xd5, 0xd2, 0x30, 0x4e, 0x59, 0x8f, 0x2b, 0xe4, 0xc2, 0x2c, 0xac, 0xfe, 0x1a,
0xbd, 0xba, 0xd3, 0x73, 0x75, 0x3b, 0x4d, 0xa0, 0x99, 0x78, 0xfc, 0x5c, 0x24, 0xb1, 0x6d, 0x57,
0xfc, 0xd6, 0x87, 0x92, 0xf9, 0xe2, 0x50, 0xa2, 0xae, 0xba, 0xd4, 0xa4, 0xf2, 0x5b, 0x98, 0x4f,
0xe5, 0x55, 0x57, 0x01, 0x17, 0x32, 0x50, 0x13, 0x2c, 0xcb, 0x40, 0x91, 0xba, 0x79, 0x3f, 0x1d,
0x40, 0xff, 0x09, 0x0b, 0x19, 0x67, 0x07, 0x61, 0x58, 0xe6, 0xbf, 0x05, 0xb7, 0x6a, 0xfa, 0x94,
0xad, 0x7d, 0x06, 0xab, 0x4f, 0xd8, 0xe9, 0x74, 0x7c, 0xc4, 0x2e, 0x8a, 0x92, 0x2b, 0x81, 0x66,
0x76, 0x1e, 0x5f, 0xaa, 0xfd, 0x12, 0xbf, 0xc9, 0x7b, 0x00, 0x21, 0xd2, 0x0c, 0xb3, 0x84, 0x8d,
0x94, 0x36, 0xb5, 0x05, 0x72, 0x92, 0xb0, 0x11, 0xfd, 0x08, 0x88, 0xc9, 0x47, 0x2d, 0x01, 0x2d,
0x60, 0x7a, 0x3a, 0xcc, 0x66, 0x19, 0x67, 0x13, 0x6d, 0xfc, 0x26, 0x44, 0xef, 0x43, 0xf7, 0xd8,
0x9b, 0xb9, 0xec, 0x6b, 0xf5, 0x66, 0x05, 0xcf, 0x44, 0xde, 0x0c, 0xd5, 0x33, 0x3f, 0x13, 0x89,
0x6e, 0x9a, 0xc2, 0x82, 0x24, 0x44, 0xa6, 0x3e, 0xcb, 0x78, 0x10, 0xc9, 0xb2, 0xa6, 0x62, 0x6a,
0x40, 0x95, 0xed, 0x6e, 0xd4, 0x6c, 0xb7, 0x4a, 0x5d, 0xf4, 0x2d, 0xa7, 0xda, 0x57, 0x0b, 0xdb,
0xff, 0xcd, 0x26, 0xb4, 0xf3, 0x4c, 0x90, 0xfc, 0x0c, 0x7a, 0xd6, 0x91, 0x9e, 0x6c, 0xa9, 0xed,
0xa8, 0xab, 0x11, 0x0c, 0x6e, 0xd7, 0x77, 0x2a, 0xb1, 0xdf, 0xf9, 0xe6, 0xb7, 0xff, 0xfa, 0xab,
0x46, 0x9f, 0x6c, 0xec, 0x5e, 0x7c, 0xb8, 0xab, 0xce, 0xec, 0xbb, 0xa2, 0x04, 0x21, 0x6f, 0x82,
0x5e, 0xc1, 0x92, 0x7d, 0xe4, 0x27, 0xb7, 0x6d, 0xc7, 0x5b, 0x1a, 0xed, 0xbd, 0x6b, 0x7a, 0xd5,
0x70, 0xb7, 0xc5, 0x70, 0x1b, 0x64, 0xdd, 0x1c, 0x2e, 0xcf, 0xd0, 0x98, 0xb8, 0xbb, 0x33, 0x5f,
0x4e, 0x11, 0xcd, 0xaf, 0xfe, 0x45, 0xd5, 0xe0, 0x56, 0xf5, 0x95, 0x94, 0x7a, 0x56, 0x45, 0xfb,
0x62, 0x28, 0x42, 0x56, 0x70, 0x28, 0xf3, 0xe1, 0x14, 0xf9, 0x29, 0xb4, 0xf3, 0x57, 0x22, 0x64,
0xd3, 0x78, 0x13, 0x63, 0xbe, 0x3b, 0x19, 0xf4, 0xab, 0x1d, 0x6a, 0x11, 0x5b, 0x82, 0xf3, 0x4d,
0x5a, 0xe1, 0xfc, 0xb1, 0xf3, 0x80, 0x1c, 0xc1, 0x4d, 0x65, 0xfd, 0xa7, 0xec, 0xbf, 0xb3, 0x92,
0x9a, 0xf7, 0x5e, 0x7b, 0x0e, 0x79, 0x04, 0x2d, 0xfd, 0x70, 0x86, 0x6c, 0xd4, 0xbf, 0xde, 0x19,
0x6c, 0x56, 0x70, 0xa5, 0xf4, 0x07, 0x00, 0xc5, 0x3b, 0x11, 0xd2, 0xbf, 0xee, 0x39, 0x4b, 0x2e,
0xc4, 0x9a, 0x47, 0x25, 0x63, 0xf1, 0x4c, 0xc6, 0x7e, 0x86, 0x42, 0xbe, 0x53, 0xd0, 0xd7, 0x3e,
0x50, 0x79, 0x0b, 0x43, 0xba, 0x21, 0x64, 0xb7, 0x42, 0x96, 0x50, 0x76, 0x11, 0xbb, 0xd4, 0xb7,
0xd8, 0x3f, 0x81, 0x8e, 0xf1, 0x98, 0x84, 0x18, 0x97, 0x03, 0xa5, 0x77, 0x2b, 0x83, 0x41, 0x5d,
0x97, 0xe2, 0xbe, 0x2e, 0xb8, 0x2f, 0xd1, 0x36, 0x72, 0x17, 0x17, 0xa7, 0xb8, 0x25, 0x3f, 0x46,
0xe3, 0x51, 0xb7, 0xcb, 0xa4, 0x78, 0xe8, 0x62, 0xdf, 0x41, 0xe7, 0xfb, 0x5d, 0xb9, 0x88, 0xa6,
0xab, 0x82, 0x6b, 0x87, 0x14, 0x5c, 0xc9, 0x8f, 0x60, 0x51, 0xdd, 0x32, 0x93, 0x9b, 0xc5, 0xbe,
0x1a, 0xe7, 0xa6, 0xc1, 0x46, 0x19, 0x56, 0xcc, 0xd6, 0x04, 0xb3, 0x1e, 0xe9, 0x20, 0xb3, 0x31,
0xe3, 0x01, 0xf2, 0x08, 0x61, 0xd9, 0x2e, 0x50, 0x66, 0xb9, 0x99, 0xd5, 0x5e, 0x5a, 0xe4, 0x66,
0x56, 0x5f, 0xed, 0xb4, 0xcd, 0x4c, 0x9b, 0xd7, 0xae, 0xbe, 0x8f, 0xf9, 0x63, 0xe8, 0x9a, 0x4f,
0x1a, 0xc8, 0xc0, 0x58, 0x79, 0xe9, 0xf9, 0xc3, 0x60, 0xab, 0xb6, 0xcf, 0x16, 0x37, 0xe9, 0x9a,
0xc3, 0x90, 0x9f, 0xc0, 0xb2, 0x51, 0xe3, 0x3e, 0x99, 0x45, 0xa3, 0x7c, 0x3b, 0xab, 0xb7, 0x6a,
0x83, 0xba, 0x3c, 0x8e, 0x6e, 0x0a, 0xc6, 0xab, 0xd4, 0x62, 0x8c, 0x5b, 0xf9, 0x18, 0x3a, 0x66,
0xfd, 0xfc, 0x2d, 0x7c, 0x37, 0x8d, 0x2e, 0xf3, 0x26, 0x6b, 0xcf, 0x21, 0xbf, 0x76, 0xa0, 0x6b,
0xde, 0xc5, 0x12, 0xeb, 0x64, 0x52, 0xe2, 0xd3, 0x37, 0xfb, 0x4c, 0x46, 0xf4, 0x2b, 0x31, 0xc9,
0xe3, 0x07, 0xcf, 0x2d, 0x21, 0xbf, 0xb1, 0xae, 0x18, 0x76, 0xcc, 0x17, 0x81, 0x57, 0xe5, 0x4e,
0xf3, 0xd6, 0xf1, 0x6a, 0xf7, 0x8d, 0xb8, 0x08, 0xb9, 0xda, 0x73, 0xc8, 0xc7, 0xf2, 0x61, 0xa7,
0x4e, 0x1a, 0x88, 0x61, 0xe0, 0x65, 0xb1, 0x99, 0xcf, 0x25, 0xb7, 0x9d, 0x3d, 0x87, 0xfc, 0x89,
0x7c, 0x0c, 0xa8, 0xbe, 0x15, 0xd2, 0x7f, 0xd7, 0xef, 0xe9, 0x3d, 0xb1, 0xa2, 0x3b, 0xf4, 0x96,
0xb5, 0xa2, 0xb2, 0x87, 0x3b, 0x06, 0x28, 0x32, 0x40, 0x52, 0x4a, 0x87, 0x72, 0xdb, 0xaf, 0x26,
0x89, 0xf6, 0xae, 0xea, 0xac, 0x09, 0x39, 0xfe, 0x4c, 0x2a, 0xa4, 0xa2, 0xcf, 0xf2, 0x6d, 0xad,
0x66, 0x72, 0x83, 0x41, 0x5d, 0x97, 0xe2, 0xff, 0x5d, 0xc1, 0xff, 0x3d, 0xb2, 0x65, 0xf2, 0xdf,
0x7d, 0x63, 0x66, 0x7e, 0x57, 0xe4, 0x2b, 0xe8, 0x1d, 0xc5, 0xf1, 0xab, 0x69, 0x92, 0x27, 0xf6,
0x76, 0x2e, 0x83, 0xd9, 0xe7, 0xa0, 0xb4, 0x28, 0xfa, 0xbe, 0xe0, 0xbc, 0x45, 0x6e, 0xd9, 0x9c,
0x8b, 0x7c, 0xf4, 0x8a, 0x78, 0xb0, 0x9a, 0xfb, 0xfd, 0x7c, 0x21, 0x03, 0x9b, 0x8f, 0x99, 0x16,
0x56, 0xc6, 0xb0, 0x22, 0x71, 0x3e, 0x46, 0xa6, 0x79, 0xee, 0x39, 0xe4, 0x18, 0xba, 0x4f, 0xd8,
0x28, 0xf6, 0x99, 0xca, 0x3f, 0xd6, 0x8a, 0x99, 0xe7, 0x79, 0xcb, 0xa0, 0x67, 0x81, 0xb6, 0x27,
0x48, 0xbc, 0x59, 0xca, 0xbe, 0xde, 0x7d, 0xa3, 0x12, 0x9b, 0x2b, 0xed, 0x09, 0x74, 0x32, 0x66,
0x79, 0x82, 0x52, 0xf6, 0x66, 0x79, 0x82, 0x4a, 0xf6, 0x66, 0x79, 0x02, 0x9d, 0x0c, 0x92, 0x10,
0x73, 0xba, 0x52, 0xc2, 0x97, 0x47, 0x8f, 0xeb, 0xd2, 0xc4, 0xc1, 0xdd, 0xeb, 0x09, 0xec, 0xd1,
0x1e, 0xd8, 0xa3, 0x9d, 0x40, 0xef, 0x09, 0x93, 0xc2, 0x92, 0x25, 0xb5, 0x81, 0xed, 0x5a, 0xcc,
0xf2, 0x5b, 0xd9, 0xed, 0x88, 0x3e, 0xdb, 0xd1, 0x8b, 0x7a, 0x16, 0xf9, 0x29, 0x74, 0x9e, 0x31,
0xae, 0x6b, 0x68, 0x79, 0x0c, 0x2e, 0x15, 0xd5, 0x06, 0x35, 0x25, 0x38, 0x7a, 0x57, 0x70, 0x1b,
0x90, 0x7e, 0xce, 0x6d, 0x97, 0xf9, 0x63, 0x26, 0x9d, 0xc0, 0x30, 0xf0, 0xaf, 0xc8, 0x1f, 0x0a,
0xe6, 0x79, 0x81, 0x7d, 0xc3, 0xa8, 0xcc, 0x98, 0xcc, 0x97, 0x4b, 0x78, 0x1d, 0x67, 0x3c, 0xaf,
0xef, 0xbe, 0x51, 0x65, 0xee, 0x2b, 0x12, 0x41, 0xc7, 0xb8, 0x34, 0xc9, 0x0d, 0xaa, 0x7a, 0x13,
0x93, 0x1b, 0x54, 0xcd, 0x1d, 0x0b, 0xdd, 0x16, 0xe3, 0x50, 0x72, 0xb7, 0x18, 0x47, 0xde, 0xab,
0x14, 0x23, 0xed, 0xbe, 0xf1, 0x26, 0xfc, 0x8a, 0xbc, 0x14, 0x0f, 0xb1, 0xcc, 0x3a, 0x61, 0x91,
0x03, 0x94, 0x4b, 0x8a, 0xb9, 0xb0, 0x8c, 0x2e, 0x3b, 0x2f, 0x90, 0x43, 0x89, 0xc8, 0xf8, 0xd2,
0x48, 0xa7, 0xac, 0x7a, 0xa9, 0xd6, 0x92, 0x6b, 0xcb, 0x62, 0xf9, 0xca, 0x6a, 0x4a, 0x63, 0x3a,
0xb3, 0x92, 0xe7, 0x7d, 0x23, 0xb3, 0xb2, 0x0a, 0x06, 0x46, 0x66, 0x65, 0x17, 0x06, 0x30, 0xb3,
0x2a, 0x0e, 0x19, 0x79, 0x66, 0x55, 0x39, 0xbf, 0xe4, 0xce, 0xb0, 0x7a, 0x22, 0x39, 0x5d, 0x10,
0xff, 0x20, 0xf1, 0xff, 0xff, 0x2b, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x47, 0x72, 0xc7, 0x52, 0x31,
0x00, 0x00,
}

@ -115,18 +115,10 @@ func request_Lightning_GetInfo_0(ctx context.Context, marshaler runtime.Marshale
}
var (
filter_Lightning_PendingChannels_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
)
func request_Lightning_PendingChannels_0(ctx context.Context, marshaler runtime.Marshaler, client LightningClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PendingChannelRequest
var metadata runtime.ServerMetadata
if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Lightning_PendingChannels_0); err != nil {
return nil, metadata, grpc.Errorf(codes.InvalidArgument, "%v", err)
}
msg, err := client.PendingChannels(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
return msg, metadata, err

@ -369,29 +369,47 @@ message OpenStatusUpdate {
}
}
enum ChannelStatus {
ALL = 0;
OPENING = 1;
CLOSING = 2;
}
message PendingChannelRequest {
ChannelStatus status = 1;
}
message PendingChannelRequest {}
message PendingChannelResponse {
message PendingChannel {
string identity_key = 1 [ json_name = "identity_key" ];
string remote_node_pub = 1 [ json_name = "remote_node_pub" ];
string channel_point = 2 [ json_name = "channel_point" ];
int64 capacity = 3 [ json_name = "capacity" ];
int64 local_balance = 4 [ json_name = "local_balance" ];
int64 remote_balance = 5 [ json_name = "remote_balance" ];
string closing_txid = 6 [ json_name = "closing_txid" ];
ChannelStatus status = 7 [ json_name = "status" ];
}
repeated PendingChannel pending_channels = 1 [ json_name = "pending_channels" ];
message PendingOpenChannel {
PendingChannel channel = 1 [ json_name = "channel" ];
uint32 confirmation_height = 2 [ json_name = "confirmation_height" ];
uint32 blocks_till_open = 3 [ json_name = "blocks_till_open" ];
}
message ClosedChannel {
PendingChannel channel = 1;
string closing_txid = 2 [ json_name = "closing_txid" ];
}
message ForceClosedChannel {
PendingChannel channel = 1 [ json_name = "channel" ];
// TODO(roasbeef): HTLC's as well?
string closing_txid = 2 [ json_name = "closing_txid" ];
int64 limbo_balance = 3 [ json_name = "limbo_balance" ];
uint32 maturity_height = 4 [ json_name = "maturity_height" ];
uint32 blocks_til_maturity = 5 [ json_name = "blocks_til_maturity" ];
}
int64 total_limbo_balance = 1 [ json_name = "total_limbo_balance" ];
repeated PendingOpenChannel pending_open_channels = 2 [ json_name = "pending_open_channels" ];
repeated ClosedChannel pending_closing_channels = 3 [ json_name = "pending_closing_channels" ];
repeated ForceClosedChannel pending_force_closing_channels = 4 [ json_name = "pending_force_closing_channels" ];
}
message WalletBalanceRequest {

@ -108,20 +108,6 @@
}
}
},
"parameters": [
{
"name": "status",
"in": "query",
"required": false,
"type": "string",
"enum": [
"ALL",
"OPENING",
"CLOSING"
],
"default": "ALL"
}
],
"tags": [
"Lightning"
]
@ -579,10 +565,44 @@
],
"default": "WITNESS_PUBKEY_HASH"
},
"PendingChannelResponseClosedChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/PendingChannelResponsePendingChannel"
},
"closing_txid": {
"type": "string"
}
}
},
"PendingChannelResponseForceClosedChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/PendingChannelResponsePendingChannel"
},
"closing_txid": {
"type": "string"
},
"limbo_balance": {
"type": "string",
"format": "int64"
},
"maturity_height": {
"type": "integer",
"format": "int64"
},
"blocks_til_maturity": {
"type": "integer",
"format": "int64"
}
}
},
"PendingChannelResponsePendingChannel": {
"type": "object",
"properties": {
"identity_key": {
"remote_node_pub": {
"type": "string"
},
"channel_point": {
@ -599,12 +619,22 @@
"remote_balance": {
"type": "string",
"format": "int64"
}
}
},
"PendingChannelResponsePendingOpenChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/PendingChannelResponsePendingChannel"
},
"closing_txid": {
"type": "string"
"confirmation_height": {
"type": "integer",
"format": "int64"
},
"status": {
"$ref": "#/definitions/lnrpcChannelStatus"
"blocks_till_open": {
"type": "integer",
"format": "int64"
}
}
},
@ -809,15 +839,6 @@
}
}
},
"lnrpcChannelStatus": {
"type": "string",
"enum": [
"ALL",
"OPENING",
"CLOSING"
],
"default": "ALL"
},
"lnrpcCloseChannelRequest": {
"type": "object",
"properties": {
@ -1452,20 +1473,31 @@
}
},
"lnrpcPendingChannelRequest": {
"type": "object",
"properties": {
"status": {
"$ref": "#/definitions/lnrpcChannelStatus"
}
}
"type": "object"
},
"lnrpcPendingChannelResponse": {
"type": "object",
"properties": {
"pending_channels": {
"total_limbo_balance": {
"type": "string",
"format": "int64"
},
"pending_open_channels": {
"type": "array",
"items": {
"$ref": "#/definitions/PendingChannelResponsePendingChannel"
"$ref": "#/definitions/PendingChannelResponsePendingOpenChannel"
}
},
"pending_closing_channels": {
"type": "array",
"items": {
"$ref": "#/definitions/PendingChannelResponseClosedChannel"
}
},
"pending_force_closing_channels": {
"type": "array",
"items": {
"$ref": "#/definitions/PendingChannelResponseForceClosedChannel"
}
}
}