lnrpc: add new SubscribeChannelGraph RPC call
This commit adds a new streaming RPC call the exposes the newly added routing layer TopologyChange notifications within the gRPC service.
This commit is contained in:
parent
f6ab1390ed
commit
94fa55cca3
758
lnrpc/rpc.pb.go
758
lnrpc/rpc.pb.go
@ -61,6 +61,11 @@ It has these top-level messages:
|
||||
ChanInfoRequest
|
||||
NetworkInfoRequest
|
||||
NetworkInfo
|
||||
GraphTopologySubscription
|
||||
GraphTopologyUpdate
|
||||
NodeUpdate
|
||||
ChannelEdgeUpdate
|
||||
ClosedChannelUpdate
|
||||
SetAliasRequest
|
||||
SetAliasResponse
|
||||
Invoice
|
||||
@ -321,6 +326,7 @@ func (m *SendResponse) GetPaymentRoute() *Route {
|
||||
}
|
||||
|
||||
type ChannelPoint struct {
|
||||
// TODO(roasbeef): make str vs bytes into a oneof
|
||||
FundingTxid []byte `protobuf:"bytes,1,opt,name=funding_txid,proto3" json:"funding_txid,omitempty"`
|
||||
FundingTxidStr string `protobuf:"bytes,2,opt,name=funding_txid_str" json:"funding_txid_str,omitempty"`
|
||||
OutputIndex uint32 `protobuf:"varint,3,opt,name=output_index" json:"output_index,omitempty"`
|
||||
@ -1978,6 +1984,182 @@ func (m *NetworkInfo) GetMaxChannelSize() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
type GraphTopologySubscription struct {
|
||||
}
|
||||
|
||||
func (m *GraphTopologySubscription) Reset() { *m = GraphTopologySubscription{} }
|
||||
func (m *GraphTopologySubscription) String() string { return proto.CompactTextString(m) }
|
||||
func (*GraphTopologySubscription) ProtoMessage() {}
|
||||
func (*GraphTopologySubscription) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{52} }
|
||||
|
||||
type GraphTopologyUpdate struct {
|
||||
NodeUpdates []*NodeUpdate `protobuf:"bytes,1,rep,name=node_updates,json=nodeUpdates" json:"node_updates,omitempty"`
|
||||
ChannelUpdates []*ChannelEdgeUpdate `protobuf:"bytes,2,rep,name=channel_updates,json=channelUpdates" json:"channel_updates,omitempty"`
|
||||
ClosedChans []*ClosedChannelUpdate `protobuf:"bytes,3,rep,name=closed_chans,json=closedChans" json:"closed_chans,omitempty"`
|
||||
}
|
||||
|
||||
func (m *GraphTopologyUpdate) Reset() { *m = GraphTopologyUpdate{} }
|
||||
func (m *GraphTopologyUpdate) String() string { return proto.CompactTextString(m) }
|
||||
func (*GraphTopologyUpdate) ProtoMessage() {}
|
||||
func (*GraphTopologyUpdate) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{53} }
|
||||
|
||||
func (m *GraphTopologyUpdate) GetNodeUpdates() []*NodeUpdate {
|
||||
if m != nil {
|
||||
return m.NodeUpdates
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *GraphTopologyUpdate) GetChannelUpdates() []*ChannelEdgeUpdate {
|
||||
if m != nil {
|
||||
return m.ChannelUpdates
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *GraphTopologyUpdate) GetClosedChans() []*ClosedChannelUpdate {
|
||||
if m != nil {
|
||||
return m.ClosedChans
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type NodeUpdate struct {
|
||||
Addresses []string `protobuf:"bytes,1,rep,name=addresses" json:"addresses,omitempty"`
|
||||
IdentityKey string `protobuf:"bytes,2,opt,name=identity_key,json=identityKey" json:"identity_key,omitempty"`
|
||||
GlobalFeatures []byte `protobuf:"bytes,3,opt,name=global_features,json=globalFeatures,proto3" json:"global_features,omitempty"`
|
||||
Alias string `protobuf:"bytes,4,opt,name=alias" json:"alias,omitempty"`
|
||||
}
|
||||
|
||||
func (m *NodeUpdate) Reset() { *m = NodeUpdate{} }
|
||||
func (m *NodeUpdate) String() string { return proto.CompactTextString(m) }
|
||||
func (*NodeUpdate) ProtoMessage() {}
|
||||
func (*NodeUpdate) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{54} }
|
||||
|
||||
func (m *NodeUpdate) GetAddresses() []string {
|
||||
if m != nil {
|
||||
return m.Addresses
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *NodeUpdate) GetIdentityKey() string {
|
||||
if m != nil {
|
||||
return m.IdentityKey
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *NodeUpdate) GetGlobalFeatures() []byte {
|
||||
if m != nil {
|
||||
return m.GlobalFeatures
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *NodeUpdate) GetAlias() string {
|
||||
if m != nil {
|
||||
return m.Alias
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type ChannelEdgeUpdate struct {
|
||||
ChanId uint64 `protobuf:"varint,1,opt,name=chan_id,json=chanId" json:"chan_id,omitempty"`
|
||||
ChanPoint *ChannelPoint `protobuf:"bytes,2,opt,name=chan_point,json=chanPoint" json:"chan_point,omitempty"`
|
||||
Capacity int64 `protobuf:"varint,3,opt,name=capacity" json:"capacity,omitempty"`
|
||||
RoutingPolicy *RoutingPolicy `protobuf:"bytes,4,opt,name=routing_policy,json=routingPolicy" json:"routing_policy,omitempty"`
|
||||
AdvertisingNode string `protobuf:"bytes,5,opt,name=advertising_node,json=advertisingNode" json:"advertising_node,omitempty"`
|
||||
ConnectingNode string `protobuf:"bytes,6,opt,name=connecting_node,json=connectingNode" json:"connecting_node,omitempty"`
|
||||
}
|
||||
|
||||
func (m *ChannelEdgeUpdate) Reset() { *m = ChannelEdgeUpdate{} }
|
||||
func (m *ChannelEdgeUpdate) String() string { return proto.CompactTextString(m) }
|
||||
func (*ChannelEdgeUpdate) ProtoMessage() {}
|
||||
func (*ChannelEdgeUpdate) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{55} }
|
||||
|
||||
func (m *ChannelEdgeUpdate) GetChanId() uint64 {
|
||||
if m != nil {
|
||||
return m.ChanId
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *ChannelEdgeUpdate) GetChanPoint() *ChannelPoint {
|
||||
if m != nil {
|
||||
return m.ChanPoint
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ChannelEdgeUpdate) GetCapacity() int64 {
|
||||
if m != nil {
|
||||
return m.Capacity
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *ChannelEdgeUpdate) GetRoutingPolicy() *RoutingPolicy {
|
||||
if m != nil {
|
||||
return m.RoutingPolicy
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ChannelEdgeUpdate) GetAdvertisingNode() string {
|
||||
if m != nil {
|
||||
return m.AdvertisingNode
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ChannelEdgeUpdate) GetConnectingNode() string {
|
||||
if m != nil {
|
||||
return m.ConnectingNode
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type ClosedChannelUpdate struct {
|
||||
ChanId uint64 `protobuf:"varint,1,opt,name=chan_id,json=chanId" json:"chan_id,omitempty"`
|
||||
Capacity int64 `protobuf:"varint,2,opt,name=capacity" json:"capacity,omitempty"`
|
||||
ClosedHeight uint32 `protobuf:"varint,3,opt,name=closed_height,json=closedHeight" json:"closed_height,omitempty"`
|
||||
ChanPoint *ChannelPoint `protobuf:"bytes,4,opt,name=chan_point,json=chanPoint" json:"chan_point,omitempty"`
|
||||
}
|
||||
|
||||
func (m *ClosedChannelUpdate) Reset() { *m = ClosedChannelUpdate{} }
|
||||
func (m *ClosedChannelUpdate) String() string { return proto.CompactTextString(m) }
|
||||
func (*ClosedChannelUpdate) ProtoMessage() {}
|
||||
func (*ClosedChannelUpdate) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{56} }
|
||||
|
||||
func (m *ClosedChannelUpdate) GetChanId() uint64 {
|
||||
if m != nil {
|
||||
return m.ChanId
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *ClosedChannelUpdate) GetCapacity() int64 {
|
||||
if m != nil {
|
||||
return m.Capacity
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *ClosedChannelUpdate) GetClosedHeight() uint32 {
|
||||
if m != nil {
|
||||
return m.ClosedHeight
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *ClosedChannelUpdate) GetChanPoint() *ChannelPoint {
|
||||
if m != nil {
|
||||
return m.ChanPoint
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type SetAliasRequest struct {
|
||||
NewAlias string `protobuf:"bytes,1,opt,name=new_alias,json=newAlias" json:"new_alias,omitempty"`
|
||||
}
|
||||
@ -1985,7 +2167,7 @@ type SetAliasRequest struct {
|
||||
func (m *SetAliasRequest) Reset() { *m = SetAliasRequest{} }
|
||||
func (m *SetAliasRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*SetAliasRequest) ProtoMessage() {}
|
||||
func (*SetAliasRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{52} }
|
||||
func (*SetAliasRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{57} }
|
||||
|
||||
func (m *SetAliasRequest) GetNewAlias() string {
|
||||
if m != nil {
|
||||
@ -2000,7 +2182,7 @@ type SetAliasResponse struct {
|
||||
func (m *SetAliasResponse) Reset() { *m = SetAliasResponse{} }
|
||||
func (m *SetAliasResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*SetAliasResponse) ProtoMessage() {}
|
||||
func (*SetAliasResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{53} }
|
||||
func (*SetAliasResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{58} }
|
||||
|
||||
type Invoice struct {
|
||||
Memo string `protobuf:"bytes,1,opt,name=memo" json:"memo,omitempty"`
|
||||
@ -2017,7 +2199,7 @@ type Invoice struct {
|
||||
func (m *Invoice) Reset() { *m = Invoice{} }
|
||||
func (m *Invoice) String() string { return proto.CompactTextString(m) }
|
||||
func (*Invoice) ProtoMessage() {}
|
||||
func (*Invoice) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{54} }
|
||||
func (*Invoice) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{59} }
|
||||
|
||||
func (m *Invoice) GetMemo() string {
|
||||
if m != nil {
|
||||
@ -2090,7 +2272,7 @@ type AddInvoiceResponse struct {
|
||||
func (m *AddInvoiceResponse) Reset() { *m = AddInvoiceResponse{} }
|
||||
func (m *AddInvoiceResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*AddInvoiceResponse) ProtoMessage() {}
|
||||
func (*AddInvoiceResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{55} }
|
||||
func (*AddInvoiceResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{60} }
|
||||
|
||||
func (m *AddInvoiceResponse) GetRHash() []byte {
|
||||
if m != nil {
|
||||
@ -2114,7 +2296,7 @@ type PaymentHash struct {
|
||||
func (m *PaymentHash) Reset() { *m = PaymentHash{} }
|
||||
func (m *PaymentHash) String() string { return proto.CompactTextString(m) }
|
||||
func (*PaymentHash) ProtoMessage() {}
|
||||
func (*PaymentHash) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{56} }
|
||||
func (*PaymentHash) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{61} }
|
||||
|
||||
func (m *PaymentHash) GetRHashStr() string {
|
||||
if m != nil {
|
||||
@ -2137,7 +2319,7 @@ type ListInvoiceRequest struct {
|
||||
func (m *ListInvoiceRequest) Reset() { *m = ListInvoiceRequest{} }
|
||||
func (m *ListInvoiceRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListInvoiceRequest) ProtoMessage() {}
|
||||
func (*ListInvoiceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{57} }
|
||||
func (*ListInvoiceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{62} }
|
||||
|
||||
func (m *ListInvoiceRequest) GetPendingOnly() bool {
|
||||
if m != nil {
|
||||
@ -2153,7 +2335,7 @@ type ListInvoiceResponse struct {
|
||||
func (m *ListInvoiceResponse) Reset() { *m = ListInvoiceResponse{} }
|
||||
func (m *ListInvoiceResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListInvoiceResponse) ProtoMessage() {}
|
||||
func (*ListInvoiceResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{58} }
|
||||
func (*ListInvoiceResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{63} }
|
||||
|
||||
func (m *ListInvoiceResponse) GetInvoices() []*Invoice {
|
||||
if m != nil {
|
||||
@ -2168,7 +2350,7 @@ type InvoiceSubscription struct {
|
||||
func (m *InvoiceSubscription) Reset() { *m = InvoiceSubscription{} }
|
||||
func (m *InvoiceSubscription) String() string { return proto.CompactTextString(m) }
|
||||
func (*InvoiceSubscription) ProtoMessage() {}
|
||||
func (*InvoiceSubscription) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{59} }
|
||||
func (*InvoiceSubscription) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{64} }
|
||||
|
||||
type Payment struct {
|
||||
PaymentHash string `protobuf:"bytes,1,opt,name=payment_hash" json:"payment_hash,omitempty"`
|
||||
@ -2181,7 +2363,7 @@ type Payment struct {
|
||||
func (m *Payment) Reset() { *m = Payment{} }
|
||||
func (m *Payment) String() string { return proto.CompactTextString(m) }
|
||||
func (*Payment) ProtoMessage() {}
|
||||
func (*Payment) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{60} }
|
||||
func (*Payment) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{65} }
|
||||
|
||||
func (m *Payment) GetPaymentHash() string {
|
||||
if m != nil {
|
||||
@ -2224,7 +2406,7 @@ type ListPaymentsRequest struct {
|
||||
func (m *ListPaymentsRequest) Reset() { *m = ListPaymentsRequest{} }
|
||||
func (m *ListPaymentsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListPaymentsRequest) ProtoMessage() {}
|
||||
func (*ListPaymentsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{61} }
|
||||
func (*ListPaymentsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{66} }
|
||||
|
||||
type ListPaymentsResponse struct {
|
||||
Payments []*Payment `protobuf:"bytes,1,rep,name=payments" json:"payments,omitempty"`
|
||||
@ -2233,7 +2415,7 @@ type ListPaymentsResponse struct {
|
||||
func (m *ListPaymentsResponse) Reset() { *m = ListPaymentsResponse{} }
|
||||
func (m *ListPaymentsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListPaymentsResponse) ProtoMessage() {}
|
||||
func (*ListPaymentsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{62} }
|
||||
func (*ListPaymentsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{67} }
|
||||
|
||||
func (m *ListPaymentsResponse) GetPayments() []*Payment {
|
||||
if m != nil {
|
||||
@ -2248,7 +2430,7 @@ type DeleteAllPaymentsRequest struct {
|
||||
func (m *DeleteAllPaymentsRequest) Reset() { *m = DeleteAllPaymentsRequest{} }
|
||||
func (m *DeleteAllPaymentsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteAllPaymentsRequest) ProtoMessage() {}
|
||||
func (*DeleteAllPaymentsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{63} }
|
||||
func (*DeleteAllPaymentsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{68} }
|
||||
|
||||
type DeleteAllPaymentsResponse struct {
|
||||
}
|
||||
@ -2256,7 +2438,7 @@ type DeleteAllPaymentsResponse struct {
|
||||
func (m *DeleteAllPaymentsResponse) Reset() { *m = DeleteAllPaymentsResponse{} }
|
||||
func (m *DeleteAllPaymentsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteAllPaymentsResponse) ProtoMessage() {}
|
||||
func (*DeleteAllPaymentsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{64} }
|
||||
func (*DeleteAllPaymentsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{69} }
|
||||
|
||||
type DebugLevelRequest struct {
|
||||
Show bool `protobuf:"varint,1,opt,name=show" json:"show,omitempty"`
|
||||
@ -2266,7 +2448,7 @@ type DebugLevelRequest struct {
|
||||
func (m *DebugLevelRequest) Reset() { *m = DebugLevelRequest{} }
|
||||
func (m *DebugLevelRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DebugLevelRequest) ProtoMessage() {}
|
||||
func (*DebugLevelRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{65} }
|
||||
func (*DebugLevelRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{70} }
|
||||
|
||||
func (m *DebugLevelRequest) GetShow() bool {
|
||||
if m != nil {
|
||||
@ -2289,7 +2471,7 @@ type DebugLevelResponse struct {
|
||||
func (m *DebugLevelResponse) Reset() { *m = DebugLevelResponse{} }
|
||||
func (m *DebugLevelResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*DebugLevelResponse) ProtoMessage() {}
|
||||
func (*DebugLevelResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{66} }
|
||||
func (*DebugLevelResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{71} }
|
||||
|
||||
func (m *DebugLevelResponse) GetSubSystems() string {
|
||||
if m != nil {
|
||||
@ -2305,7 +2487,7 @@ type PayReqString struct {
|
||||
func (m *PayReqString) Reset() { *m = PayReqString{} }
|
||||
func (m *PayReqString) String() string { return proto.CompactTextString(m) }
|
||||
func (*PayReqString) ProtoMessage() {}
|
||||
func (*PayReqString) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{67} }
|
||||
func (*PayReqString) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{72} }
|
||||
|
||||
func (m *PayReqString) GetPayReq() string {
|
||||
if m != nil {
|
||||
@ -2323,7 +2505,7 @@ type PayReq struct {
|
||||
func (m *PayReq) Reset() { *m = PayReq{} }
|
||||
func (m *PayReq) String() string { return proto.CompactTextString(m) }
|
||||
func (*PayReq) ProtoMessage() {}
|
||||
func (*PayReq) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{68} }
|
||||
func (*PayReq) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{73} }
|
||||
|
||||
func (m *PayReq) GetDestination() string {
|
||||
if m != nil {
|
||||
@ -2400,6 +2582,11 @@ func init() {
|
||||
proto.RegisterType((*ChanInfoRequest)(nil), "lnrpc.ChanInfoRequest")
|
||||
proto.RegisterType((*NetworkInfoRequest)(nil), "lnrpc.NetworkInfoRequest")
|
||||
proto.RegisterType((*NetworkInfo)(nil), "lnrpc.NetworkInfo")
|
||||
proto.RegisterType((*GraphTopologySubscription)(nil), "lnrpc.GraphTopologySubscription")
|
||||
proto.RegisterType((*GraphTopologyUpdate)(nil), "lnrpc.GraphTopologyUpdate")
|
||||
proto.RegisterType((*NodeUpdate)(nil), "lnrpc.NodeUpdate")
|
||||
proto.RegisterType((*ChannelEdgeUpdate)(nil), "lnrpc.ChannelEdgeUpdate")
|
||||
proto.RegisterType((*ClosedChannelUpdate)(nil), "lnrpc.ClosedChannelUpdate")
|
||||
proto.RegisterType((*SetAliasRequest)(nil), "lnrpc.SetAliasRequest")
|
||||
proto.RegisterType((*SetAliasResponse)(nil), "lnrpc.SetAliasResponse")
|
||||
proto.RegisterType((*Invoice)(nil), "lnrpc.Invoice")
|
||||
@ -2463,6 +2650,7 @@ type LightningClient interface {
|
||||
GetNodeInfo(ctx context.Context, in *NodeInfoRequest, opts ...grpc.CallOption) (*NodeInfo, error)
|
||||
QueryRoute(ctx context.Context, in *RouteRequest, opts ...grpc.CallOption) (*Route, error)
|
||||
GetNetworkInfo(ctx context.Context, in *NetworkInfoRequest, opts ...grpc.CallOption) (*NetworkInfo, error)
|
||||
SubscribeChannelGraph(ctx context.Context, in *GraphTopologySubscription, opts ...grpc.CallOption) (Lightning_SubscribeChannelGraphClient, error)
|
||||
SetAlias(ctx context.Context, in *SetAliasRequest, opts ...grpc.CallOption) (*SetAliasResponse, error)
|
||||
DebugLevel(ctx context.Context, in *DebugLevelRequest, opts ...grpc.CallOption) (*DebugLevelResponse, error)
|
||||
}
|
||||
@ -2859,6 +3047,38 @@ func (c *lightningClient) GetNetworkInfo(ctx context.Context, in *NetworkInfoReq
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *lightningClient) SubscribeChannelGraph(ctx context.Context, in *GraphTopologySubscription, opts ...grpc.CallOption) (Lightning_SubscribeChannelGraphClient, error) {
|
||||
stream, err := grpc.NewClientStream(ctx, &_Lightning_serviceDesc.Streams[5], c.cc, "/lnrpc.Lightning/SubscribeChannelGraph", opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
x := &lightningSubscribeChannelGraphClient{stream}
|
||||
if err := x.ClientStream.SendMsg(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if err := x.ClientStream.CloseSend(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return x, nil
|
||||
}
|
||||
|
||||
type Lightning_SubscribeChannelGraphClient interface {
|
||||
Recv() (*GraphTopologyUpdate, error)
|
||||
grpc.ClientStream
|
||||
}
|
||||
|
||||
type lightningSubscribeChannelGraphClient struct {
|
||||
grpc.ClientStream
|
||||
}
|
||||
|
||||
func (x *lightningSubscribeChannelGraphClient) Recv() (*GraphTopologyUpdate, error) {
|
||||
m := new(GraphTopologyUpdate)
|
||||
if err := x.ClientStream.RecvMsg(m); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return m, nil
|
||||
}
|
||||
|
||||
func (c *lightningClient) SetAlias(ctx context.Context, in *SetAliasRequest, opts ...grpc.CallOption) (*SetAliasResponse, error) {
|
||||
out := new(SetAliasResponse)
|
||||
err := grpc.Invoke(ctx, "/lnrpc.Lightning/SetAlias", in, out, c.cc, opts...)
|
||||
@ -2911,6 +3131,7 @@ type LightningServer interface {
|
||||
GetNodeInfo(context.Context, *NodeInfoRequest) (*NodeInfo, error)
|
||||
QueryRoute(context.Context, *RouteRequest) (*Route, error)
|
||||
GetNetworkInfo(context.Context, *NetworkInfoRequest) (*NetworkInfo, error)
|
||||
SubscribeChannelGraph(*GraphTopologySubscription, Lightning_SubscribeChannelGraphServer) error
|
||||
SetAlias(context.Context, *SetAliasRequest) (*SetAliasResponse, error)
|
||||
DebugLevel(context.Context, *DebugLevelRequest) (*DebugLevelResponse, error)
|
||||
}
|
||||
@ -3479,6 +3700,27 @@ func _Lightning_GetNetworkInfo_Handler(srv interface{}, ctx context.Context, dec
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Lightning_SubscribeChannelGraph_Handler(srv interface{}, stream grpc.ServerStream) error {
|
||||
m := new(GraphTopologySubscription)
|
||||
if err := stream.RecvMsg(m); err != nil {
|
||||
return err
|
||||
}
|
||||
return srv.(LightningServer).SubscribeChannelGraph(m, &lightningSubscribeChannelGraphServer{stream})
|
||||
}
|
||||
|
||||
type Lightning_SubscribeChannelGraphServer interface {
|
||||
Send(*GraphTopologyUpdate) error
|
||||
grpc.ServerStream
|
||||
}
|
||||
|
||||
type lightningSubscribeChannelGraphServer struct {
|
||||
grpc.ServerStream
|
||||
}
|
||||
|
||||
func (x *lightningSubscribeChannelGraphServer) Send(m *GraphTopologyUpdate) error {
|
||||
return x.ServerStream.SendMsg(m)
|
||||
}
|
||||
|
||||
func _Lightning_SetAlias_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(SetAliasRequest)
|
||||
if err := dec(in); err != nil {
|
||||
@ -3655,6 +3897,11 @@ var _Lightning_serviceDesc = grpc.ServiceDesc{
|
||||
Handler: _Lightning_SubscribeInvoices_Handler,
|
||||
ServerStreams: true,
|
||||
},
|
||||
{
|
||||
StreamName: "SubscribeChannelGraph",
|
||||
Handler: _Lightning_SubscribeChannelGraph_Handler,
|
||||
ServerStreams: true,
|
||||
},
|
||||
},
|
||||
Metadata: "rpc.proto",
|
||||
}
|
||||
@ -3662,234 +3909,251 @@ var _Lightning_serviceDesc = grpc.ServiceDesc{
|
||||
func init() { proto.RegisterFile("rpc.proto", fileDescriptor0) }
|
||||
|
||||
var fileDescriptor0 = []byte{
|
||||
// 3657 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x5a, 0x4f, 0x6f, 0x1b, 0x47,
|
||||
0x96, 0x77, 0x93, 0x94, 0x44, 0x3e, 0x92, 0xfa, 0x53, 0x92, 0x25, 0x9a, 0xb2, 0x1d, 0xb9, 0xd7,
|
||||
0x88, 0x05, 0x6d, 0x20, 0xd9, 0x5a, 0xc0, 0xeb, 0x38, 0x8b, 0x0d, 0x64, 0x5b, 0x6b, 0x19, 0x51,
|
||||
0x64, 0xa5, 0xe5, 0xc4, 0xd9, 0x04, 0x0b, 0x6e, 0x8b, 0x2c, 0x51, 0x1d, 0x37, 0xbb, 0x3b, 0xdd,
|
||||
0x45, 0xc9, 0x8c, 0x21, 0xec, 0x22, 0x9b, 0xdb, 0x1e, 0x16, 0xc1, 0x02, 0x73, 0x0c, 0xe6, 0x0b,
|
||||
0xcc, 0x65, 0xae, 0xf3, 0x25, 0x06, 0xc8, 0x69, 0x0e, 0x73, 0x18, 0x60, 0x30, 0xf7, 0xb9, 0xcf,
|
||||
0x61, 0xf0, 0xea, 0x4f, 0x77, 0x55, 0x77, 0x2b, 0xf1, 0x60, 0x4e, 0x62, 0xfd, 0xea, 0xf5, 0xab,
|
||||
0xaa, 0x57, 0xef, 0xbd, 0xfa, 0xd5, 0x2b, 0x41, 0x23, 0x8e, 0xfa, 0x9b, 0x51, 0x1c, 0xb2, 0x90,
|
||||
0x4c, 0xf9, 0x41, 0x1c, 0xf5, 0xbb, 0xd7, 0x87, 0x61, 0x38, 0xf4, 0xe9, 0x96, 0x1b, 0x79, 0x5b,
|
||||
0x6e, 0x10, 0x84, 0xcc, 0x65, 0x5e, 0x18, 0x24, 0x42, 0xc8, 0xfe, 0xb3, 0x05, 0xcd, 0x17, 0xb1,
|
||||
0x1b, 0x24, 0x6e, 0x1f, 0x61, 0xd2, 0x81, 0x19, 0xf6, 0xba, 0x77, 0xea, 0x26, 0xa7, 0x1d, 0x6b,
|
||||
0xcd, 0x5a, 0x6f, 0x38, 0xaa, 0x49, 0x96, 0x61, 0xda, 0x1d, 0x85, 0xe3, 0x80, 0x75, 0x2a, 0x6b,
|
||||
0xd6, 0xba, 0xe5, 0xc8, 0x16, 0x79, 0x0f, 0x16, 0x82, 0xf1, 0xa8, 0xd7, 0x0f, 0x83, 0x13, 0x2f,
|
||||
0x1e, 0x09, 0xe5, 0x9d, 0xea, 0x9a, 0xb5, 0x3e, 0xe5, 0x14, 0x3b, 0xc8, 0x4d, 0x80, 0x63, 0x3f,
|
||||
0xec, 0xbf, 0x12, 0x43, 0xd4, 0xf8, 0x10, 0x1a, 0x42, 0x6c, 0x68, 0xc9, 0x16, 0xf5, 0x86, 0xa7,
|
||||
0xac, 0x33, 0xc5, 0x15, 0x19, 0x18, 0xea, 0x60, 0xde, 0x88, 0xf6, 0x12, 0xe6, 0x8e, 0xa2, 0xce,
|
||||
0xf4, 0x9a, 0xb5, 0x5e, 0x75, 0x34, 0x84, 0xf7, 0x87, 0xcc, 0xf5, 0x7b, 0x27, 0x94, 0x26, 0x9d,
|
||||
0x19, 0xd9, 0x9f, 0x22, 0x76, 0x07, 0x96, 0x9f, 0x52, 0xa6, 0xad, 0x3a, 0x71, 0xe8, 0xd7, 0x63,
|
||||
0x9a, 0x30, 0x7b, 0x1f, 0x88, 0x06, 0x3f, 0xa1, 0xcc, 0xf5, 0xfc, 0x84, 0xdc, 0x87, 0x16, 0xd3,
|
||||
0x84, 0x3b, 0xd6, 0x5a, 0x75, 0xbd, 0xb9, 0x4d, 0x36, 0xb9, 0x7d, 0x37, 0xb5, 0x0f, 0x1c, 0x43,
|
||||
0xce, 0xfe, 0xad, 0x05, 0xcd, 0x23, 0x1a, 0x0c, 0xa4, 0x76, 0x42, 0xa0, 0x36, 0xa0, 0x09, 0xe3,
|
||||
0x86, 0x6d, 0x39, 0xfc, 0x37, 0x79, 0x07, 0x9a, 0xf8, 0xb7, 0x97, 0xb0, 0xd8, 0x0b, 0x86, 0xdc,
|
||||
0xb4, 0x0d, 0x07, 0x10, 0x3a, 0xe2, 0x08, 0x99, 0x87, 0xaa, 0x3b, 0x62, 0xdc, 0xa0, 0x55, 0x07,
|
||||
0x7f, 0x92, 0x5b, 0xd0, 0x8a, 0xdc, 0xc9, 0x88, 0x06, 0x2c, 0x33, 0x62, 0xcb, 0x69, 0x4a, 0x6c,
|
||||
0x0f, 0xad, 0xb8, 0x09, 0x8b, 0xba, 0x88, 0xd2, 0x3e, 0xc5, 0xb5, 0x2f, 0x68, 0x92, 0x72, 0x90,
|
||||
0x3b, 0x30, 0xa7, 0xe4, 0x63, 0x31, 0x59, 0x6e, 0xd6, 0x86, 0x33, 0x2b, 0x61, 0x65, 0xa0, 0x00,
|
||||
0x5a, 0x62, 0x45, 0x49, 0x14, 0x06, 0x09, 0x25, 0x1b, 0x30, 0xaf, 0x3e, 0x8c, 0x62, 0xea, 0x8d,
|
||||
0xdc, 0x21, 0x95, 0xcb, 0x2b, 0xe0, 0x64, 0x1b, 0xda, 0xe9, 0x20, 0xe1, 0x98, 0x51, 0xbe, 0xd8,
|
||||
0xe6, 0x76, 0x4b, 0xda, 0xd1, 0x41, 0xcc, 0x31, 0x45, 0xec, 0x6f, 0x2d, 0x68, 0x3d, 0x3e, 0x75,
|
||||
0x83, 0x80, 0xfa, 0x87, 0xa1, 0x17, 0x30, 0xf4, 0x8f, 0x93, 0x71, 0x30, 0xf0, 0x82, 0x61, 0x8f,
|
||||
0xbd, 0xf6, 0x06, 0x72, 0x30, 0x03, 0xc3, 0x49, 0xe9, 0x6d, 0x5c, 0xbd, 0x34, 0x6c, 0x01, 0x47,
|
||||
0x7d, 0xe1, 0x98, 0x45, 0x63, 0xd6, 0xf3, 0x82, 0x01, 0x7d, 0xcd, 0xed, 0xdc, 0x76, 0x0c, 0xcc,
|
||||
0xfe, 0x57, 0x98, 0xdf, 0x47, 0xc7, 0x0b, 0xbc, 0x60, 0xb8, 0x33, 0x18, 0xc4, 0x34, 0x49, 0x30,
|
||||
0x1a, 0xa2, 0xf1, 0xf1, 0x2b, 0x3a, 0x91, 0x61, 0x22, 0x5b, 0xb8, 0xc7, 0xa7, 0x61, 0xc2, 0xe4,
|
||||
0x78, 0xfc, 0xb7, 0xfd, 0x4b, 0x0b, 0xe6, 0xd0, 0x6a, 0x1f, 0xbb, 0xc1, 0x44, 0xf9, 0xc2, 0x3e,
|
||||
0xb4, 0x50, 0xd5, 0x8b, 0x70, 0x47, 0xc4, 0x94, 0xf0, 0xa9, 0x75, 0x69, 0x8b, 0x9c, 0xf4, 0xa6,
|
||||
0x2e, 0xba, 0x1b, 0xb0, 0x78, 0xe2, 0xb4, 0x5c, 0x0d, 0xea, 0x7e, 0x08, 0x0b, 0x05, 0x11, 0xf4,
|
||||
0x9c, 0x6c, 0x7e, 0xf8, 0x93, 0x2c, 0xc1, 0xd4, 0x99, 0xeb, 0x8f, 0x85, 0xe5, 0xab, 0x8e, 0x68,
|
||||
0x3c, 0xac, 0x3c, 0xb0, 0xec, 0x77, 0x61, 0x3e, 0x1b, 0x53, 0xee, 0x2d, 0x81, 0x5a, 0x6a, 0xe2,
|
||||
0x86, 0xc3, 0x7f, 0xa3, 0x29, 0x50, 0xee, 0x71, 0xe8, 0xa5, 0x41, 0x83, 0x72, 0x38, 0x19, 0x25,
|
||||
0x87, 0xbf, 0x73, 0xc9, 0xa2, 0xaa, 0x92, 0x85, 0x7d, 0x07, 0x16, 0xb4, 0xef, 0x7f, 0x62, 0xa0,
|
||||
0x1f, 0x2c, 0x58, 0x38, 0xa0, 0xe7, 0xd2, 0xdc, 0x6a, 0xa8, 0x07, 0x50, 0x63, 0x93, 0x48, 0xb8,
|
||||
0xd8, 0xec, 0xf6, 0x6d, 0x69, 0xad, 0x82, 0xdc, 0xa6, 0x6c, 0xbe, 0x98, 0x44, 0xd4, 0xe1, 0x5f,
|
||||
0xd8, 0xcf, 0xa1, 0xa9, 0x81, 0x64, 0x05, 0x16, 0x5f, 0x3e, 0x7b, 0x71, 0xb0, 0x7b, 0x74, 0xd4,
|
||||
0x3b, 0xfc, 0xf4, 0xd1, 0x47, 0xbb, 0xff, 0xde, 0xdb, 0xdb, 0x39, 0xda, 0x9b, 0xbf, 0x42, 0x96,
|
||||
0x81, 0x1c, 0xec, 0x1e, 0xbd, 0xd8, 0x7d, 0x62, 0xe0, 0x16, 0x99, 0x83, 0xa6, 0x0e, 0x54, 0xec,
|
||||
0x2e, 0x74, 0x0e, 0xe8, 0xf9, 0x4b, 0x8f, 0x05, 0x34, 0x49, 0xcc, 0xe1, 0xed, 0x4d, 0x20, 0xfa,
|
||||
0x9c, 0xe4, 0x32, 0x3b, 0x30, 0xe3, 0x0a, 0x48, 0xa5, 0x56, 0xd9, 0xb4, 0x3f, 0x05, 0xf2, 0x38,
|
||||
0x0c, 0x02, 0xda, 0x67, 0x87, 0x94, 0xc6, 0x6a, 0xb1, 0xff, 0xa8, 0xd9, 0xb5, 0xb9, 0xbd, 0x22,
|
||||
0x17, 0x9b, 0xf7, 0x44, 0x69, 0x70, 0x02, 0xb5, 0x88, 0xc6, 0x23, 0x6e, 0xee, 0xba, 0xc3, 0x7f,
|
||||
0xdb, 0x5b, 0xb0, 0x68, 0xa8, 0xcd, 0xe6, 0x11, 0x51, 0x1a, 0xf7, 0xa4, 0xc5, 0xa7, 0x1c, 0xd5,
|
||||
0xb4, 0x7f, 0x6d, 0x41, 0x6d, 0xef, 0xc5, 0xfe, 0x63, 0xd2, 0x85, 0xba, 0x17, 0xf4, 0xc3, 0x11,
|
||||
0x26, 0x0d, 0x8b, 0x6b, 0x4c, 0xdb, 0x97, 0x6d, 0x2d, 0xb9, 0x0e, 0x0d, 0x9e, 0x6b, 0x30, 0x53,
|
||||
0xf3, 0x30, 0x6a, 0x39, 0x19, 0x80, 0xa7, 0x04, 0x7d, 0x1d, 0x79, 0x31, 0x3f, 0x06, 0x54, 0x72,
|
||||
0xaf, 0xf1, 0x60, 0x2b, 0x76, 0x60, 0x04, 0xc7, 0xf4, 0x2c, 0xec, 0x0b, 0x70, 0x40, 0x7d, 0x77,
|
||||
0xc2, 0x93, 0x57, 0xdb, 0x29, 0xe0, 0xf6, 0x9f, 0xaa, 0xd0, 0xde, 0xe9, 0x33, 0xef, 0x8c, 0xca,
|
||||
0x44, 0xc1, 0x67, 0xc8, 0x01, 0x39, 0x77, 0xd9, 0x22, 0xb7, 0xa1, 0x1d, 0xd3, 0x51, 0xc8, 0x68,
|
||||
0x4f, 0x86, 0xae, 0x08, 0x52, 0x13, 0x44, 0xa9, 0xbe, 0x50, 0xd4, 0x8b, 0x30, 0xe5, 0xf0, 0xb5,
|
||||
0x34, 0x1c, 0x13, 0x44, 0x23, 0x22, 0x80, 0x46, 0xc4, 0x55, 0xd4, 0x1c, 0xd5, 0x44, 0xdb, 0xf5,
|
||||
0xdd, 0xc8, 0xed, 0x7b, 0x4c, 0xcc, 0xb9, 0xea, 0xa4, 0x6d, 0xd4, 0xed, 0x87, 0x7d, 0xd7, 0xef,
|
||||
0x1d, 0xbb, 0xbe, 0x1b, 0xf4, 0xa9, 0x3c, 0xbc, 0x4c, 0x90, 0xbc, 0x0b, 0xb3, 0x72, 0x4a, 0x4a,
|
||||
0x4c, 0x9c, 0x61, 0x39, 0x14, 0x6d, 0x3a, 0x0e, 0x12, 0xca, 0x98, 0x4f, 0x07, 0xa9, 0x68, 0x9d,
|
||||
0x8b, 0x16, 0x3b, 0xc8, 0x5d, 0x58, 0x14, 0x67, 0x60, 0xe2, 0xb2, 0x30, 0x39, 0xf5, 0x92, 0x5e,
|
||||
0x42, 0x03, 0xd6, 0x69, 0x70, 0xf9, 0xb2, 0x2e, 0xf2, 0x00, 0x56, 0x72, 0x70, 0x4c, 0xfb, 0xd4,
|
||||
0x3b, 0xa3, 0x83, 0x0e, 0xf0, 0xaf, 0x2e, 0xeb, 0x26, 0x6b, 0xd0, 0xc4, 0xa3, 0x7f, 0x1c, 0x0d,
|
||||
0x5c, 0x46, 0x93, 0x4e, 0x93, 0x5b, 0x48, 0x87, 0xc8, 0x3d, 0x68, 0x47, 0x54, 0xe4, 0xe2, 0x53,
|
||||
0xe6, 0xf7, 0x93, 0x4e, 0x8b, 0x27, 0xc0, 0xa6, 0xf4, 0x72, 0xf4, 0x42, 0xc7, 0x94, 0xb0, 0xaf,
|
||||
0xc2, 0xe2, 0xbe, 0x97, 0x30, 0xb9, 0xcb, 0x69, 0xb0, 0xed, 0xc1, 0x92, 0x09, 0x4b, 0x37, 0xbf,
|
||||
0x0b, 0x75, 0xb9, 0x65, 0x38, 0x01, 0x54, 0xbe, 0x24, 0x95, 0x1b, 0xde, 0xe2, 0xa4, 0x52, 0xf6,
|
||||
0x77, 0x15, 0xa8, 0x61, 0xa4, 0xf0, 0x08, 0x19, 0x1f, 0xf7, 0xb2, 0xec, 0xa9, 0x9a, 0x7a, 0xec,
|
||||
0x54, 0x8c, 0xd8, 0xd1, 0xa3, 0xbb, 0x6a, 0x44, 0x37, 0xa7, 0x3c, 0x13, 0x46, 0xa5, 0xbd, 0x85,
|
||||
0xb7, 0x68, 0x48, 0xd6, 0x1f, 0xd3, 0xfe, 0x19, 0x77, 0x99, 0xb4, 0x1f, 0x11, 0x74, 0xa8, 0xc4,
|
||||
0x65, 0xe2, 0x6b, 0xe1, 0x2f, 0x69, 0x5b, 0xf5, 0xf1, 0x2f, 0x67, 0xb2, 0x3e, 0xfe, 0x5d, 0x07,
|
||||
0x66, 0xbc, 0xe0, 0x38, 0x1c, 0x07, 0x03, 0xee, 0x14, 0x75, 0x47, 0x35, 0x31, 0x54, 0x23, 0x7e,
|
||||
0x0a, 0x7a, 0x23, 0x2a, 0x1d, 0x20, 0x03, 0x6c, 0x82, 0xc7, 0x5d, 0xc2, 0x73, 0x46, 0x6a, 0xe4,
|
||||
0xfb, 0xb0, 0xa0, 0x61, 0xd2, 0xc2, 0xb7, 0x60, 0x0a, 0x57, 0xaf, 0x08, 0x91, 0xda, 0x3b, 0x9e,
|
||||
0x6c, 0x44, 0x8f, 0x3d, 0x0f, 0xb3, 0x4f, 0x29, 0x7b, 0x16, 0x9c, 0x84, 0x4a, 0xd3, 0xef, 0x2b,
|
||||
0x30, 0x97, 0x42, 0x52, 0xd1, 0x3a, 0xcc, 0x79, 0x03, 0x1a, 0x30, 0x8f, 0x4d, 0x7a, 0xc6, 0xa9,
|
||||
0x9a, 0x87, 0xf1, 0x04, 0x73, 0x7d, 0xcf, 0x4d, 0x64, 0xe8, 0x8a, 0x06, 0xd9, 0x86, 0x25, 0xf4,
|
||||
0x2d, 0xe5, 0x2e, 0xe9, 0xb6, 0x8b, 0xc3, 0xbc, 0xb4, 0x0f, 0xc3, 0x01, 0x71, 0x91, 0x1a, 0xb2,
|
||||
0x4f, 0x44, 0x4a, 0x2a, 0xeb, 0x42, 0xab, 0x09, 0x4d, 0xb8, 0x64, 0x91, 0x8d, 0x32, 0xa0, 0x40,
|
||||
0x5c, 0xa7, 0x05, 0x91, 0xc8, 0x13, 0x57, 0x8d, 0xfc, 0xd6, 0x0b, 0xe4, 0x77, 0x1d, 0xe6, 0x92,
|
||||
0x49, 0xd0, 0xa7, 0x83, 0x1e, 0x0b, 0x71, 0x5c, 0x2f, 0xe0, 0xbb, 0x53, 0x77, 0xf2, 0x30, 0xa7,
|
||||
0xe9, 0x34, 0x61, 0x01, 0x65, 0x3c, 0x14, 0xeb, 0x8e, 0x6a, 0xda, 0xdf, 0xf0, 0xb3, 0x24, 0x65,
|
||||
0xdc, 0x9f, 0xf2, 0x78, 0x23, 0xab, 0xd0, 0x10, 0xe3, 0x24, 0xa7, 0xae, 0xe4, 0x4c, 0x75, 0x0e,
|
||||
0x1c, 0x9d, 0xba, 0x48, 0x28, 0x8d, 0xa9, 0x0b, 0xcf, 0x6e, 0x72, 0x6c, 0x4f, 0xcc, 0xfc, 0x36,
|
||||
0xcc, 0x2a, 0x2e, 0x9f, 0xf4, 0x7c, 0x7a, 0xc2, 0x14, 0x51, 0x0a, 0xc6, 0x23, 0x1c, 0x2e, 0xd9,
|
||||
0xa7, 0x27, 0xcc, 0x3e, 0x80, 0x05, 0x19, 0x55, 0xcf, 0x23, 0xaa, 0x86, 0x7e, 0x3f, 0x9f, 0x4f,
|
||||
0xc5, 0x79, 0xb6, 0x28, 0xbd, 0x45, 0x67, 0x77, 0xb9, 0x24, 0x6b, 0x3b, 0x40, 0x64, 0xf7, 0x63,
|
||||
0x3f, 0x4c, 0xa8, 0x54, 0x68, 0x43, 0xab, 0xef, 0x87, 0x49, 0x9e, 0x02, 0xea, 0x18, 0xda, 0x27,
|
||||
0x19, 0xf7, 0xfb, 0x18, 0x8d, 0xe2, 0x44, 0x54, 0x4d, 0xfb, 0x3b, 0x0b, 0x16, 0xb9, 0x36, 0x15,
|
||||
0xff, 0x29, 0xb5, 0x78, 0xfb, 0x69, 0xb6, 0xfa, 0x3a, 0x25, 0xbd, 0x21, 0xaf, 0x23, 0xbe, 0x37,
|
||||
0xf2, 0xd4, 0xa1, 0xd8, 0x40, 0x64, 0x1f, 0x01, 0x74, 0xd9, 0x93, 0x30, 0xee, 0x53, 0x6e, 0xb1,
|
||||
0xba, 0x23, 0x1a, 0xf6, 0xef, 0x2c, 0x58, 0xe0, 0xd3, 0x38, 0x62, 0x2e, 0x1b, 0x27, 0x72, 0x69,
|
||||
0xff, 0x02, 0x6d, 0x5c, 0x06, 0x55, 0xee, 0x2a, 0x27, 0xb1, 0x94, 0x46, 0x16, 0x47, 0x85, 0xf0,
|
||||
0xde, 0x15, 0xc7, 0x14, 0x26, 0x1f, 0x42, 0x4b, 0xbf, 0x6c, 0x49, 0x7e, 0x7d, 0x4d, 0xad, 0xa0,
|
||||
0xe0, 0x15, 0x7b, 0x57, 0x1c, 0xe3, 0x03, 0xf2, 0x01, 0x00, 0x3f, 0xc5, 0xb8, 0x5a, 0x3e, 0x5f,
|
||||
0xed, 0xf3, 0xc2, 0x46, 0xec, 0x5d, 0x71, 0x34, 0xf1, 0x47, 0x75, 0x98, 0x16, 0xc9, 0xdd, 0x7e,
|
||||
0x0a, 0x6d, 0x63, 0xa6, 0x06, 0xc1, 0x6b, 0x09, 0x82, 0x57, 0x20, 0xde, 0x95, 0x12, 0xe2, 0xfd,
|
||||
0x17, 0x0b, 0x08, 0x7a, 0x52, 0x6e, 0xab, 0xde, 0x85, 0x59, 0xe6, 0xc6, 0x43, 0xca, 0x7a, 0x26,
|
||||
0x8f, 0xc9, 0xa1, 0xfc, 0x14, 0x0a, 0x07, 0xc6, 0x69, 0xdf, 0x72, 0x74, 0x88, 0x6c, 0x02, 0xd1,
|
||||
0x9a, 0xea, 0x9a, 0x24, 0xf2, 0x77, 0x49, 0x0f, 0x26, 0x1a, 0x71, 0x54, 0xab, 0x7b, 0x84, 0x64,
|
||||
0x42, 0x35, 0xbe, 0xe9, 0xa5, 0x7d, 0x98, 0xa2, 0xa3, 0x31, 0xde, 0xc1, 0x5c, 0xa6, 0xf8, 0x80,
|
||||
0x6a, 0xab, 0x94, 0xc2, 0xc3, 0x4a, 0x66, 0x8c, 0x0c, 0xb0, 0x7f, 0xb4, 0x60, 0x1e, 0x97, 0x6f,
|
||||
0xb8, 0xc8, 0x43, 0xe0, 0xde, 0xf7, 0x96, 0x1e, 0x62, 0xc8, 0xfe, 0xfd, 0x0e, 0xf2, 0x00, 0x1a,
|
||||
0x5c, 0x61, 0x18, 0xd1, 0x40, 0xfa, 0x47, 0xc7, 0xf4, 0x8f, 0x2c, 0xf0, 0xf7, 0xae, 0x38, 0x99,
|
||||
0xb0, 0xe6, 0x1d, 0xbb, 0x70, 0x55, 0xce, 0x32, 0xb7, 0xad, 0xef, 0xc1, 0x74, 0xc2, 0x57, 0x2a,
|
||||
0xe9, 0xfd, 0x92, 0xa9, 0x59, 0x58, 0xc1, 0x91, 0x32, 0xf6, 0xff, 0x56, 0x61, 0x39, 0xaf, 0x47,
|
||||
0x1e, 0x27, 0x9f, 0xc3, 0x7c, 0xe1, 0x28, 0x10, 0x47, 0xd4, 0x7b, 0xa6, 0x99, 0x72, 0x1f, 0xe6,
|
||||
0xe1, 0x82, 0x96, 0xee, 0x2f, 0x2a, 0x30, 0x6b, 0x0a, 0xa1, 0x1f, 0xa7, 0x87, 0x54, 0x76, 0x70,
|
||||
0x19, 0x58, 0x91, 0x52, 0x56, 0xca, 0x28, 0xa5, 0x4e, 0x1c, 0xab, 0x3f, 0x47, 0x1c, 0x6b, 0x6f,
|
||||
0x47, 0x1c, 0xa7, 0x4a, 0x89, 0x63, 0x3e, 0x83, 0x8a, 0xbb, 0xbe, 0x99, 0x41, 0xb3, 0xdd, 0x98,
|
||||
0x79, 0x8b, 0xdd, 0x78, 0x1f, 0x96, 0x5e, 0xba, 0xbe, 0x4f, 0xd9, 0x23, 0x31, 0x84, 0xda, 0xd3,
|
||||
0x5b, 0xd0, 0x3a, 0x17, 0x57, 0xa4, 0x5e, 0x18, 0xf8, 0x13, 0x49, 0xc8, 0x9b, 0x12, 0x7b, 0x1e,
|
||||
0xf8, 0x13, 0xfb, 0x1e, 0x5c, 0xcd, 0x7d, 0x9a, 0xdd, 0x53, 0xd4, 0x32, 0x2c, 0x5e, 0x71, 0x52,
|
||||
0x4d, 0x7b, 0x05, 0xae, 0xca, 0x69, 0x98, 0xc3, 0xd9, 0xdb, 0xb0, 0x9c, 0xef, 0x28, 0x57, 0x56,
|
||||
0xcd, 0x94, 0xbd, 0x0f, 0x2d, 0x51, 0x7a, 0x90, 0x53, 0x5e, 0xc9, 0x93, 0x3f, 0xbc, 0xda, 0x7f,
|
||||
0x44, 0x27, 0xaa, 0x12, 0x53, 0x49, 0x2b, 0x31, 0xf6, 0x7f, 0x41, 0x75, 0x2f, 0x8c, 0xf4, 0xbb,
|
||||
0x80, 0x65, 0xde, 0x05, 0xe4, 0xc6, 0xf7, 0xd2, 0x7d, 0x15, 0x1f, 0x9b, 0x20, 0x6e, 0x9b, 0x3b,
|
||||
0x62, 0x78, 0xb8, 0x9f, 0x84, 0xf1, 0xb9, 0x1b, 0x0f, 0xe4, 0xf6, 0xe7, 0x50, 0x9c, 0xc0, 0x09,
|
||||
0x55, 0x5b, 0x8f, 0x3f, 0xed, 0xff, 0xb3, 0x60, 0x8a, 0x4f, 0x1e, 0xa9, 0x83, 0x20, 0xe3, 0xe2,
|
||||
0x28, 0xc2, 0x3b, 0x98, 0xc5, 0xf3, 0x49, 0x1e, 0xce, 0x55, 0xc7, 0x2a, 0xf9, 0xea, 0x18, 0xe6,
|
||||
0x24, 0xd1, 0xca, 0xca, 0x4e, 0x19, 0x40, 0x6e, 0x42, 0xed, 0x34, 0x8c, 0x90, 0x27, 0x61, 0x3c,
|
||||
0x81, 0xa2, 0xeb, 0x61, 0xe4, 0x70, 0xdc, 0xde, 0x80, 0xb9, 0x83, 0x70, 0x40, 0x35, 0xc6, 0x77,
|
||||
0xa9, 0x41, 0xed, 0xff, 0xb6, 0xa0, 0xae, 0x84, 0xc9, 0x3a, 0xd4, 0x30, 0xe1, 0xe6, 0xf2, 0x59,
|
||||
0x7a, 0xdb, 0x45, 0x39, 0x87, 0x4b, 0xa0, 0xf7, 0xf2, 0x1c, 0xa9, 0x42, 0xbb, 0x92, 0x32, 0x91,
|
||||
0x8c, 0xab, 0xe1, 0x11, 0xc1, 0xe7, 0x9c, 0x8b, 0xa8, 0x1c, 0x6a, 0xbf, 0x81, 0xb6, 0x31, 0x04,
|
||||
0x9e, 0x19, 0xbe, 0x9b, 0x30, 0x79, 0x4f, 0x91, 0x36, 0xd4, 0x21, 0xfd, 0x72, 0x50, 0x29, 0x5c,
|
||||
0x0e, 0x2e, 0xb9, 0x02, 0xa4, 0xb4, 0xb5, 0xa6, 0xd1, 0x56, 0xfb, 0x57, 0x16, 0xb4, 0x71, 0xf7,
|
||||
0xbc, 0x60, 0x78, 0x18, 0xfa, 0x5e, 0x7f, 0xc2, 0x77, 0x51, 0x6d, 0x14, 0x5e, 0x6f, 0x99, 0x9b,
|
||||
0xee, 0xa2, 0x09, 0x63, 0xb2, 0x18, 0x79, 0x01, 0xbf, 0x19, 0xc9, 0x3d, 0x4c, 0xdb, 0xe8, 0x75,
|
||||
0x27, 0x14, 0xa3, 0x3d, 0xa1, 0xbd, 0x11, 0x1e, 0x3b, 0x62, 0xed, 0x26, 0x88, 0x04, 0x18, 0x81,
|
||||
0xd8, 0x65, 0xb4, 0x37, 0xf2, 0x7c, 0xdf, 0x13, 0xb2, 0xc2, 0xbb, 0xca, 0xba, 0xec, 0xdf, 0x54,
|
||||
0xa0, 0x29, 0xc3, 0x6b, 0x77, 0x30, 0xa4, 0xe8, 0x49, 0x2a, 0x83, 0xa5, 0xae, 0xaf, 0x21, 0xaa,
|
||||
0xdf, 0xc8, 0x79, 0x1a, 0x92, 0xb7, 0x75, 0xb5, 0x68, 0x6b, 0x3c, 0x1f, 0xc3, 0x01, 0xbd, 0x87,
|
||||
0xc7, 0xb0, 0xb4, 0x5d, 0x06, 0xa8, 0xde, 0x6d, 0xde, 0x3b, 0x95, 0xf5, 0x72, 0xc0, 0x48, 0xa7,
|
||||
0xd3, 0xb9, 0x74, 0xfa, 0x00, 0x5a, 0x52, 0x0d, 0xb7, 0x3b, 0x4f, 0x71, 0x99, 0xd3, 0x19, 0x7b,
|
||||
0xe2, 0x18, 0x92, 0xea, 0xcb, 0x6d, 0xf5, 0x65, 0xfd, 0xe7, 0xbe, 0x54, 0x92, 0x78, 0x7d, 0x95,
|
||||
0xc6, 0x7b, 0x1a, 0xbb, 0xd1, 0xa9, 0x4a, 0x59, 0x83, 0xb4, 0xc0, 0xc9, 0x61, 0xb2, 0x01, 0x53,
|
||||
0xf8, 0x99, 0x3a, 0xb1, 0xca, 0x03, 0x41, 0x88, 0x90, 0x75, 0x98, 0xa2, 0x83, 0x21, 0x8f, 0x62,
|
||||
0xbd, 0x22, 0xad, 0xed, 0x91, 0x23, 0x04, 0x30, 0x2c, 0x11, 0xcd, 0x85, 0xa5, 0x99, 0xb5, 0xa6,
|
||||
0xb1, 0xf9, 0x6c, 0x60, 0x2f, 0x01, 0x39, 0xa0, 0xec, 0x3c, 0x8c, 0x5f, 0xe9, 0xf7, 0xb6, 0xff,
|
||||
0xa9, 0x42, 0x53, 0x83, 0x31, 0xc2, 0x86, 0x38, 0xe1, 0xde, 0xc0, 0x73, 0x47, 0x94, 0xd1, 0x58,
|
||||
0x7a, 0x6a, 0x0e, 0xe5, 0xc9, 0xed, 0x6c, 0xd8, 0x0b, 0xc7, 0xac, 0x37, 0xa0, 0xc3, 0x98, 0x52,
|
||||
0xf9, 0x7c, 0x90, 0x43, 0x51, 0x6e, 0xe4, 0xbe, 0xd6, 0xe5, 0x84, 0x3f, 0xe4, 0x50, 0x45, 0x99,
|
||||
0x84, 0x8d, 0x6a, 0x19, 0x65, 0x12, 0x16, 0xc9, 0xe7, 0x86, 0xa9, 0x92, 0xdc, 0x70, 0x1f, 0x96,
|
||||
0x45, 0x16, 0x08, 0xc4, 0x72, 0x7a, 0x39, 0x37, 0xb9, 0xa4, 0x97, 0x6c, 0xc0, 0x3c, 0xce, 0x59,
|
||||
0x39, 0x78, 0xe2, 0x7d, 0x23, 0x0a, 0x33, 0x96, 0x53, 0xc0, 0x51, 0x16, 0xc3, 0xd1, 0x90, 0x15,
|
||||
0x95, 0x99, 0x02, 0xce, 0x65, 0xdd, 0xd7, 0xa6, 0x6c, 0x43, 0xca, 0xe6, 0x70, 0x7b, 0x13, 0xe6,
|
||||
0x8e, 0x28, 0xdb, 0xc1, 0xf4, 0xa1, 0xf6, 0x71, 0x15, 0x1a, 0x01, 0x3d, 0xef, 0x89, 0xfc, 0x22,
|
||||
0x12, 0x6c, 0x3d, 0xa0, 0xe7, 0x5c, 0x06, 0xef, 0xf2, 0x99, 0xbc, 0x38, 0x0a, 0xed, 0xef, 0x2b,
|
||||
0x30, 0xf3, 0x2c, 0x38, 0x0b, 0xbd, 0x3e, 0x67, 0xe6, 0x23, 0x3a, 0x0a, 0x55, 0xe9, 0x15, 0x7f,
|
||||
0x63, 0x1a, 0xe3, 0x85, 0x9c, 0x88, 0x49, 0xca, 0xac, 0x9a, 0x18, 0xd0, 0x71, 0x56, 0xe7, 0x17,
|
||||
0x35, 0x3e, 0x0d, 0x21, 0xcb, 0x30, 0x1d, 0xeb, 0x6f, 0x12, 0xb2, 0x95, 0xd5, 0x9d, 0xa7, 0xb4,
|
||||
0xba, 0x33, 0xbf, 0xa3, 0x89, 0x1a, 0x15, 0x37, 0x3c, 0xde, 0xd1, 0x44, 0x93, 0x1f, 0x9b, 0x31,
|
||||
0x95, 0x45, 0x3e, 0x4c, 0x0d, 0x33, 0xf2, 0xd8, 0xd4, 0x41, 0x4c, 0x1f, 0xe2, 0x03, 0x21, 0x23,
|
||||
0xcc, 0xab, 0x43, 0x98, 0x4e, 0xf3, 0xcf, 0x1a, 0x0d, 0x51, 0x57, 0xc8, 0xc1, 0xf6, 0x67, 0x40,
|
||||
0x76, 0x06, 0x03, 0x69, 0x95, 0x94, 0x34, 0x64, 0xeb, 0xb1, 0x8c, 0xf5, 0x94, 0xe8, 0xad, 0x94,
|
||||
0xeb, 0xdd, 0x85, 0xe6, 0xa1, 0xf6, 0x2e, 0xc3, 0x0d, 0xa8, 0x5e, 0x64, 0xa4, 0xd1, 0x35, 0x44,
|
||||
0x1b, 0xb0, 0xa2, 0x0f, 0x68, 0xff, 0x33, 0x90, 0x7d, 0x2f, 0x61, 0xe9, 0xfc, 0x52, 0x72, 0xa5,
|
||||
0x18, 0xaa, 0x4e, 0xae, 0x24, 0xc6, 0xc9, 0xd5, 0x8e, 0xa8, 0x99, 0xe5, 0x17, 0xb6, 0x01, 0x75,
|
||||
0x4f, 0x40, 0x2a, 0xcf, 0xcc, 0xca, 0xdc, 0xa1, 0x24, 0xd3, 0x7e, 0xcc, 0x5b, 0x12, 0x3c, 0x1a,
|
||||
0x1f, 0x27, 0xfd, 0xd8, 0x8b, 0x70, 0x0b, 0xec, 0xef, 0x2d, 0x98, 0x91, 0x4b, 0xc3, 0xa8, 0x33,
|
||||
0x5e, 0xa4, 0x24, 0x07, 0xd6, 0xb1, 0xf2, 0xb7, 0x87, 0xe2, 0x4e, 0x57, 0xcb, 0x76, 0x7a, 0x09,
|
||||
0x6a, 0x91, 0xcb, 0x4e, 0x39, 0xe9, 0x68, 0x20, 0xe7, 0x54, 0x2f, 0x63, 0x48, 0x87, 0xa6, 0x32,
|
||||
0x3a, 0x24, 0x2b, 0x84, 0x72, 0x5a, 0x69, 0xf1, 0xea, 0x91, 0xa8, 0x10, 0x66, 0x70, 0x66, 0x05,
|
||||
0x39, 0xc5, 0xbc, 0x15, 0xa4, 0xa8, 0x93, 0xf6, 0xdb, 0x5d, 0xe8, 0x3c, 0xa1, 0x3e, 0x65, 0x74,
|
||||
0xc7, 0xf7, 0xf3, 0xfa, 0x57, 0xe1, 0x5a, 0x49, 0x9f, 0x8c, 0xb6, 0x7f, 0x83, 0x85, 0x27, 0xf4,
|
||||
0x78, 0x3c, 0xdc, 0xa7, 0x67, 0xd9, 0x55, 0x87, 0x40, 0x2d, 0x39, 0x0d, 0xcf, 0xe5, 0x8e, 0xf1,
|
||||
0xdf, 0xe4, 0x06, 0x80, 0x8f, 0x32, 0xbd, 0x24, 0xa2, 0x7d, 0xe9, 0x4f, 0x0d, 0x8e, 0x1c, 0x45,
|
||||
0xb4, 0x6f, 0xdf, 0x07, 0xa2, 0xeb, 0x91, 0x4b, 0xc0, 0x18, 0x18, 0x1f, 0xf7, 0x92, 0x49, 0xc2,
|
||||
0xe8, 0x48, 0x85, 0xbf, 0x0e, 0xd9, 0x77, 0xa0, 0x75, 0xe8, 0x4e, 0x1c, 0xfa, 0xb5, 0x7c, 0xea,
|
||||
0x43, 0x36, 0xe6, 0x4e, 0xd0, 0x41, 0x53, 0x36, 0xc6, 0xbb, 0xed, 0x18, 0xa6, 0x85, 0x20, 0x2a,
|
||||
0x1d, 0xd0, 0x84, 0x79, 0x81, 0xb8, 0x25, 0x4a, 0xa5, 0x1a, 0x54, 0xd8, 0xf0, 0x4a, 0xc9, 0x86,
|
||||
0xcb, 0x54, 0xac, 0x8a, 0xc3, 0x72, 0x67, 0x0d, 0x6c, 0x63, 0x1b, 0xda, 0xc6, 0x7d, 0x82, 0xcc,
|
||||
0x40, 0x75, 0x67, 0x7f, 0x7f, 0xfe, 0x0a, 0x69, 0xc2, 0xcc, 0xf3, 0xc3, 0xdd, 0x83, 0x67, 0x07,
|
||||
0x4f, 0xe7, 0x2d, 0x6c, 0x3c, 0xde, 0x7f, 0x7e, 0x84, 0x8d, 0xca, 0xf6, 0x1f, 0x96, 0xa1, 0x91,
|
||||
0x9e, 0x86, 0xe4, 0x2b, 0x68, 0x1b, 0xb7, 0x07, 0xb2, 0x2a, 0xb7, 0xb0, 0xec, 0x3a, 0xd2, 0xbd,
|
||||
0x5e, 0xde, 0x29, 0xb7, 0xea, 0xe6, 0xb7, 0x3f, 0xfe, 0xf1, 0xff, 0x2b, 0x1d, 0xb2, 0xbc, 0x75,
|
||||
0x76, 0x6f, 0x4b, 0x5e, 0x0f, 0xb6, 0x78, 0x15, 0x4c, 0x14, 0xdd, 0x5e, 0xc1, 0xac, 0x79, 0xbb,
|
||||
0x20, 0xd7, 0xcd, 0x13, 0x37, 0x37, 0xda, 0x8d, 0x4b, 0x7a, 0xe5, 0x70, 0xd7, 0xf9, 0x70, 0xcb,
|
||||
0x64, 0x49, 0x1f, 0x2e, 0x3d, 0xa5, 0x28, 0x2f, 0x93, 0xea, 0x8f, 0xd4, 0x44, 0xe9, 0x2b, 0x7f,
|
||||
0xbc, 0xee, 0x5e, 0x2b, 0x3e, 0x48, 0xcb, 0x17, 0x6c, 0xbb, 0xc3, 0x87, 0x22, 0x64, 0x1e, 0x87,
|
||||
0xd2, 0xdf, 0xa8, 0xc9, 0x97, 0xd0, 0x48, 0x1f, 0xe4, 0xc8, 0x8a, 0xf6, 0xfc, 0xa8, 0x3f, 0xf1,
|
||||
0x75, 0x3b, 0xc5, 0x0e, 0xb9, 0x88, 0x55, 0xae, 0xf9, 0xaa, 0x5d, 0xd0, 0xfc, 0xd0, 0xda, 0x20,
|
||||
0xfb, 0x70, 0x55, 0xe6, 0x8c, 0x63, 0xfa, 0xb7, 0xac, 0xa4, 0xe4, 0x69, 0xfd, 0xae, 0x45, 0x3e,
|
||||
0x80, 0xba, 0x7a, 0xa3, 0x24, 0xcb, 0xe5, 0x0f, 0xa5, 0xdd, 0x95, 0x02, 0x2e, 0x03, 0x65, 0x07,
|
||||
0x20, 0x7b, 0x92, 0x23, 0x9d, 0xcb, 0x5e, 0x0e, 0x53, 0x23, 0x96, 0xbc, 0xdf, 0x0d, 0xf9, 0x8b,
|
||||
0xa4, 0xf9, 0xe2, 0x47, 0xde, 0xc9, 0xe4, 0x4b, 0xdf, 0x02, 0x7f, 0x42, 0xa1, 0xbd, 0xcc, 0x6d,
|
||||
0x37, 0x4f, 0x66, 0xd1, 0x76, 0x01, 0x3d, 0x57, 0xb7, 0x85, 0x2f, 0xa0, 0xa9, 0xbd, 0xdb, 0x11,
|
||||
0xad, 0x3e, 0x93, 0x7b, 0x22, 0xec, 0x76, 0xcb, 0xba, 0xa4, 0xf6, 0x25, 0xae, 0x7d, 0xd6, 0x6e,
|
||||
0xa0, 0x76, 0x5e, 0xa3, 0xc6, 0x2d, 0xf9, 0x04, 0x83, 0x47, 0x16, 0xf2, 0x49, 0xf6, 0xa6, 0x68,
|
||||
0x96, 0xfb, 0xd3, 0xfd, 0x2e, 0xd4, 0xfc, 0xed, 0x05, 0xae, 0xb5, 0x49, 0x32, 0xad, 0xe4, 0x63,
|
||||
0x98, 0x91, 0x05, 0x7d, 0x72, 0x35, 0xdb, 0x57, 0x8d, 0x3b, 0x76, 0x97, 0xf3, 0xb0, 0x54, 0xb6,
|
||||
0xc8, 0x95, 0xb5, 0x49, 0x13, 0x95, 0x0d, 0x29, 0xf3, 0x50, 0x87, 0x0f, 0x73, 0x66, 0x89, 0x25,
|
||||
0x49, 0xc3, 0xac, 0xb4, 0x6e, 0x94, 0x86, 0x59, 0x79, 0x51, 0xc7, 0x0c, 0x33, 0x15, 0x5e, 0x5b,
|
||||
0xaa, 0x24, 0xf6, 0x1f, 0xd0, 0xd2, 0x5f, 0x8f, 0x48, 0x57, 0x5b, 0x79, 0xee, 0xa5, 0xa9, 0xbb,
|
||||
0x5a, 0xda, 0x67, 0x9a, 0x9b, 0xb4, 0xf4, 0x61, 0xc8, 0x17, 0x30, 0xa7, 0x15, 0x30, 0x8f, 0x26,
|
||||
0x41, 0x3f, 0xdd, 0xce, 0x62, 0x61, 0xb3, 0x5b, 0x56, 0x6c, 0xb6, 0x57, 0xb8, 0xe2, 0x05, 0xdb,
|
||||
0x50, 0x8c, 0x5b, 0xf9, 0x18, 0x9a, 0x9a, 0x8e, 0x9f, 0xd2, 0xbb, 0xa2, 0x75, 0xe9, 0xc5, 0xc4,
|
||||
0xbb, 0x16, 0xf9, 0xc1, 0x82, 0x96, 0x5e, 0x0e, 0x4f, 0x0d, 0x50, 0x52, 0x23, 0x4f, 0xdd, 0xa2,
|
||||
0x50, 0xb8, 0xb6, 0x3f, 0xe3, 0x93, 0x3c, 0xdc, 0x38, 0x30, 0x8c, 0xfc, 0xc6, 0x28, 0x70, 0x6d,
|
||||
0xea, 0xff, 0x7c, 0x71, 0x91, 0xef, 0xd4, 0x0b, 0xbf, 0x17, 0x5b, 0x6f, 0x78, 0x95, 0xfc, 0xe2,
|
||||
0xae, 0x45, 0x1e, 0x8a, 0xff, 0xa1, 0x51, 0x54, 0x83, 0x68, 0x01, 0x9e, 0x37, 0x9b, 0xfe, 0x9f,
|
||||
0x29, 0xeb, 0xd6, 0x5d, 0x8b, 0xfc, 0xa7, 0xf8, 0xbf, 0x0b, 0xf9, 0x2d, 0xb7, 0xfe, 0xdb, 0x7e,
|
||||
0x6f, 0xdf, 0xe6, 0x2b, 0xba, 0x69, 0x5f, 0x33, 0x56, 0x94, 0xcf, 0x70, 0x87, 0x00, 0x19, 0x6f,
|
||||
0x24, 0x39, 0x12, 0x95, 0xc6, 0x7e, 0x91, 0x5a, 0x9a, 0xbb, 0xaa, 0xb8, 0x16, 0x6a, 0xfc, 0x4a,
|
||||
0x38, 0xa4, 0x94, 0x4f, 0xd2, 0x6d, 0x2d, 0xf2, 0xbf, 0x6e, 0xb7, 0xac, 0x4b, 0xea, 0xff, 0x07,
|
||||
0xae, 0xff, 0x06, 0x59, 0xd5, 0xf5, 0x6f, 0xbd, 0xd1, 0xf9, 0xe2, 0x05, 0xf9, 0x0c, 0xda, 0xfb,
|
||||
0x61, 0xf8, 0x6a, 0x1c, 0xa5, 0xd7, 0x01, 0x93, 0xff, 0x20, 0x67, 0xed, 0xe6, 0x16, 0x65, 0xdf,
|
||||
0xe2, 0x9a, 0x57, 0xc9, 0x35, 0x53, 0x73, 0xc6, 0x62, 0x2f, 0x88, 0x0b, 0x0b, 0x69, 0xde, 0x4f,
|
||||
0x17, 0xd2, 0x35, 0xf5, 0xe8, 0x64, 0xb2, 0x30, 0x86, 0x71, 0x12, 0xa7, 0x63, 0x24, 0x4a, 0xe7,
|
||||
0x5d, 0x8b, 0x1c, 0x42, 0xeb, 0x09, 0xed, 0x87, 0x03, 0x2a, 0x39, 0xcb, 0x62, 0x36, 0xf3, 0x94,
|
||||
0xeb, 0x74, 0xdb, 0x06, 0x68, 0x66, 0x82, 0xc8, 0x9d, 0xc4, 0xf4, 0xeb, 0xad, 0x37, 0x92, 0x0c,
|
||||
0x5d, 0xa8, 0x4c, 0xa0, 0x08, 0x9c, 0x91, 0x09, 0x72, 0x8c, 0xcf, 0xc8, 0x04, 0x05, 0xc6, 0x67,
|
||||
0x64, 0x02, 0x45, 0x20, 0x89, 0x8f, 0x3c, 0x30, 0x47, 0x12, 0xd3, 0xd3, 0xe3, 0x32, 0x6a, 0xd9,
|
||||
0x5d, 0xbb, 0x5c, 0xc0, 0x1c, 0x6d, 0xc3, 0x1c, 0xed, 0x08, 0xda, 0x4f, 0xa8, 0x30, 0x96, 0x28,
|
||||
0x2b, 0x74, 0xcd, 0xd4, 0xa2, 0x97, 0x20, 0xf2, 0x69, 0x87, 0xf7, 0x99, 0x89, 0x9e, 0xdf, 0xe9,
|
||||
0xc9, 0x97, 0xd0, 0x7c, 0x4a, 0x99, 0xaa, 0x23, 0xa4, 0x67, 0x70, 0xae, 0xb0, 0xd0, 0x2d, 0x29,
|
||||
0x43, 0xd8, 0x6b, 0x5c, 0x5b, 0x97, 0x74, 0x52, 0x6d, 0x5b, 0x74, 0x30, 0xa4, 0x22, 0x09, 0xf4,
|
||||
0xbc, 0xc1, 0x05, 0xf9, 0x9c, 0x2b, 0x4f, 0xcb, 0x81, 0x4a, 0x79, 0xae, 0x98, 0xd8, 0x9d, 0xcb,
|
||||
0xe1, 0x65, 0x9a, 0x83, 0x70, 0x40, 0xb7, 0xde, 0xc8, 0xaa, 0x1c, 0x6a, 0x86, 0x4f, 0xc6, 0x34,
|
||||
0x9e, 0x88, 0x42, 0xe9, 0xa2, 0xf1, 0xef, 0x66, 0x52, 0xab, 0xf1, 0x3f, 0x68, 0xf6, 0x1d, 0xae,
|
||||
0xf2, 0x16, 0x79, 0x27, 0x53, 0xc9, 0xff, 0x1b, 0x2d, 0xd3, 0xb9, 0xf5, 0xc6, 0x1d, 0xb1, 0x0b,
|
||||
0xf2, 0x92, 0xbf, 0x6e, 0xeb, 0x55, 0x91, 0xec, 0xb4, 0xcf, 0x17, 0x50, 0x52, 0xb3, 0x68, 0x5d,
|
||||
0x26, 0x03, 0x10, 0x23, 0xf1, 0x33, 0x90, 0x53, 0x1d, 0x71, 0x6d, 0xd7, 0xa8, 0x8e, 0x71, 0xef,
|
||||
0xd7, 0xa8, 0x8e, 0x79, 0xbf, 0x47, 0xaa, 0x93, 0xdd, 0x14, 0x52, 0xaa, 0x53, 0xb8, 0x84, 0xa4,
|
||||
0xd9, 0xa9, 0x78, 0xad, 0x38, 0x9e, 0xe6, 0xff, 0x1c, 0xfa, 0x4f, 0x7f, 0x0d, 0x00, 0x00, 0xff,
|
||||
0xff, 0xa7, 0x5a, 0x6c, 0xc5, 0x4e, 0x2a, 0x00, 0x00,
|
||||
// 3926 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x7a, 0xcb, 0x6f, 0x1c, 0x49,
|
||||
0x72, 0xb7, 0xaa, 0xbb, 0xf9, 0xe8, 0xe8, 0x6e, 0x3e, 0x92, 0x14, 0xd9, 0x6a, 0x6a, 0x66, 0xa4,
|
||||
0xdc, 0xc1, 0x88, 0x1f, 0xbf, 0x01, 0xa9, 0xa1, 0x8d, 0xb1, 0x66, 0xc6, 0xf6, 0x82, 0x23, 0x71,
|
||||
0x45, 0x61, 0xb9, 0x14, 0xb7, 0xa8, 0x19, 0xad, 0x77, 0x61, 0xb4, 0x8b, 0x5d, 0xc9, 0x66, 0xad,
|
||||
0xaa, 0xab, 0x6a, 0xaa, 0xb2, 0x49, 0xf5, 0x0a, 0x82, 0x8d, 0xf5, 0xde, 0x6c, 0xc3, 0x58, 0x18,
|
||||
0xf0, 0x71, 0x61, 0xc0, 0x67, 0x5f, 0x7c, 0xb4, 0xff, 0x06, 0x03, 0x06, 0xf6, 0xe4, 0x83, 0x6f,
|
||||
0x86, 0xef, 0xbe, 0xfb, 0x60, 0x44, 0x3e, 0xaa, 0x32, 0xab, 0x8a, 0x33, 0x32, 0x7c, 0xea, 0xce,
|
||||
0x5f, 0x46, 0x46, 0x66, 0x46, 0x46, 0x44, 0x46, 0x44, 0x16, 0xb4, 0xd3, 0x64, 0xb4, 0x9b, 0xa4,
|
||||
0x31, 0x8f, 0xc9, 0x5c, 0x18, 0xa5, 0xc9, 0x68, 0x70, 0x77, 0x1c, 0xc7, 0xe3, 0x90, 0xed, 0x79,
|
||||
0x49, 0xb0, 0xe7, 0x45, 0x51, 0xcc, 0x3d, 0x1e, 0xc4, 0x51, 0x26, 0x89, 0xe8, 0x7f, 0x39, 0xd0,
|
||||
0x79, 0x91, 0x7a, 0x51, 0xe6, 0x8d, 0x10, 0x26, 0x7d, 0x58, 0xe0, 0xaf, 0x87, 0x97, 0x5e, 0x76,
|
||||
0xd9, 0x77, 0xee, 0x39, 0xdb, 0x6d, 0x57, 0x37, 0xc9, 0x06, 0xcc, 0x7b, 0x93, 0x78, 0x1a, 0xf1,
|
||||
0x7e, 0xe3, 0x9e, 0xb3, 0xed, 0xb8, 0xaa, 0x45, 0x3e, 0x86, 0xd5, 0x68, 0x3a, 0x19, 0x8e, 0xe2,
|
||||
0xe8, 0x22, 0x48, 0x27, 0x92, 0x79, 0xbf, 0x79, 0xcf, 0xd9, 0x9e, 0x73, 0xab, 0x1d, 0xe4, 0x7d,
|
||||
0x80, 0xf3, 0x30, 0x1e, 0xbd, 0x92, 0x53, 0xb4, 0xc4, 0x14, 0x06, 0x42, 0x28, 0x74, 0x55, 0x8b,
|
||||
0x05, 0xe3, 0x4b, 0xde, 0x9f, 0x13, 0x8c, 0x2c, 0x0c, 0x79, 0xf0, 0x60, 0xc2, 0x86, 0x19, 0xf7,
|
||||
0x26, 0x49, 0x7f, 0xfe, 0x9e, 0xb3, 0xdd, 0x74, 0x0d, 0x44, 0xf4, 0xc7, 0xdc, 0x0b, 0x87, 0x17,
|
||||
0x8c, 0x65, 0xfd, 0x05, 0xd5, 0x9f, 0x23, 0xb4, 0x0f, 0x1b, 0x4f, 0x19, 0x37, 0x76, 0x9d, 0xb9,
|
||||
0xec, 0x9b, 0x29, 0xcb, 0x38, 0x3d, 0x06, 0x62, 0xc0, 0x4f, 0x18, 0xf7, 0x82, 0x30, 0x23, 0x9f,
|
||||
0x42, 0x97, 0x1b, 0xc4, 0x7d, 0xe7, 0x5e, 0x73, 0xbb, 0xb3, 0x4f, 0x76, 0x85, 0x7c, 0x77, 0x8d,
|
||||
0x01, 0xae, 0x45, 0x47, 0xff, 0xd5, 0x81, 0xce, 0x19, 0x8b, 0x7c, 0xc5, 0x9d, 0x10, 0x68, 0xf9,
|
||||
0x2c, 0xe3, 0x42, 0xb0, 0x5d, 0x57, 0xfc, 0x27, 0x1f, 0x40, 0x07, 0x7f, 0x87, 0x19, 0x4f, 0x83,
|
||||
0x68, 0x2c, 0x44, 0xdb, 0x76, 0x01, 0xa1, 0x33, 0x81, 0x90, 0x15, 0x68, 0x7a, 0x13, 0x2e, 0x04,
|
||||
0xda, 0x74, 0xf1, 0x2f, 0xb9, 0x0f, 0xdd, 0xc4, 0x9b, 0x4d, 0x58, 0xc4, 0x0b, 0x21, 0x76, 0xdd,
|
||||
0x8e, 0xc2, 0x8e, 0x50, 0x8a, 0xbb, 0xb0, 0x66, 0x92, 0x68, 0xee, 0x73, 0x82, 0xfb, 0xaa, 0x41,
|
||||
0xa9, 0x26, 0x79, 0x00, 0xcb, 0x9a, 0x3e, 0x95, 0x8b, 0x15, 0x62, 0x6d, 0xbb, 0x4b, 0x0a, 0xd6,
|
||||
0x02, 0x8a, 0xa0, 0x2b, 0x77, 0x94, 0x25, 0x71, 0x94, 0x31, 0xb2, 0x03, 0x2b, 0x7a, 0x60, 0x92,
|
||||
0xb2, 0x60, 0xe2, 0x8d, 0x99, 0xda, 0x5e, 0x05, 0x27, 0xfb, 0xd0, 0xcb, 0x27, 0x89, 0xa7, 0x9c,
|
||||
0x89, 0xcd, 0x76, 0xf6, 0xbb, 0x4a, 0x8e, 0x2e, 0x62, 0xae, 0x4d, 0x42, 0x7f, 0xe9, 0x40, 0xf7,
|
||||
0xf1, 0xa5, 0x17, 0x45, 0x2c, 0x3c, 0x8d, 0x83, 0x88, 0xa3, 0x7e, 0x5c, 0x4c, 0x23, 0x3f, 0x88,
|
||||
0xc6, 0x43, 0xfe, 0x3a, 0xf0, 0xd5, 0x64, 0x16, 0x86, 0x8b, 0x32, 0xdb, 0xb8, 0x7b, 0x25, 0xd8,
|
||||
0x0a, 0x8e, 0xfc, 0xe2, 0x29, 0x4f, 0xa6, 0x7c, 0x18, 0x44, 0x3e, 0x7b, 0x2d, 0xe4, 0xdc, 0x73,
|
||||
0x2d, 0x8c, 0xfe, 0x21, 0xac, 0x1c, 0xa3, 0xe2, 0x45, 0x41, 0x34, 0x3e, 0xf0, 0xfd, 0x94, 0x65,
|
||||
0x19, 0x5a, 0x43, 0x32, 0x3d, 0x7f, 0xc5, 0x66, 0xca, 0x4c, 0x54, 0x0b, 0xcf, 0xf8, 0x32, 0xce,
|
||||
0xb8, 0x9a, 0x4f, 0xfc, 0xa7, 0x7f, 0xe7, 0xc0, 0x32, 0x4a, 0xed, 0x47, 0x5e, 0x34, 0xd3, 0xba,
|
||||
0x70, 0x0c, 0x5d, 0x64, 0xf5, 0x22, 0x3e, 0x90, 0x36, 0x25, 0x75, 0x6a, 0x5b, 0xc9, 0xa2, 0x44,
|
||||
0xbd, 0x6b, 0x92, 0x1e, 0x46, 0x3c, 0x9d, 0xb9, 0x5d, 0xcf, 0x80, 0x06, 0xdf, 0x87, 0xd5, 0x0a,
|
||||
0x09, 0x6a, 0x4e, 0xb1, 0x3e, 0xfc, 0x4b, 0xd6, 0x61, 0xee, 0xca, 0x0b, 0xa7, 0x52, 0xf2, 0x4d,
|
||||
0x57, 0x36, 0x3e, 0x6f, 0x3c, 0x72, 0xe8, 0x47, 0xb0, 0x52, 0xcc, 0xa9, 0xce, 0x96, 0x40, 0x2b,
|
||||
0x17, 0x71, 0xdb, 0x15, 0xff, 0x51, 0x14, 0x48, 0xf7, 0x38, 0x0e, 0x72, 0xa3, 0x41, 0x3a, 0x5c,
|
||||
0x8c, 0xa6, 0xc3, 0xff, 0x25, 0x67, 0xd1, 0xd4, 0xce, 0x82, 0x3e, 0x80, 0x55, 0x63, 0xfc, 0xb7,
|
||||
0x4c, 0xf4, 0x1b, 0x07, 0x56, 0x4f, 0xd8, 0xb5, 0x12, 0xb7, 0x9e, 0xea, 0x11, 0xb4, 0xf8, 0x2c,
|
||||
0x91, 0x2a, 0xb6, 0xb4, 0xff, 0xa1, 0x92, 0x56, 0x85, 0x6e, 0x57, 0x35, 0x5f, 0xcc, 0x12, 0xe6,
|
||||
0x8a, 0x11, 0xf4, 0x39, 0x74, 0x0c, 0x90, 0x6c, 0xc2, 0xda, 0xcb, 0x67, 0x2f, 0x4e, 0x0e, 0xcf,
|
||||
0xce, 0x86, 0xa7, 0x5f, 0x7d, 0xf9, 0xc3, 0xc3, 0x3f, 0x1a, 0x1e, 0x1d, 0x9c, 0x1d, 0xad, 0xdc,
|
||||
0x22, 0x1b, 0x40, 0x4e, 0x0e, 0xcf, 0x5e, 0x1c, 0x3e, 0xb1, 0x70, 0x87, 0x2c, 0x43, 0xc7, 0x04,
|
||||
0x1a, 0x74, 0x00, 0xfd, 0x13, 0x76, 0xfd, 0x32, 0xe0, 0x11, 0xcb, 0x32, 0x7b, 0x7a, 0xba, 0x0b,
|
||||
0xc4, 0x5c, 0x93, 0xda, 0x66, 0x1f, 0x16, 0x3c, 0x09, 0x69, 0xd7, 0xaa, 0x9a, 0xf4, 0x2b, 0x20,
|
||||
0x8f, 0xe3, 0x28, 0x62, 0x23, 0x7e, 0xca, 0x58, 0xaa, 0x37, 0xfb, 0xff, 0x0d, 0xb9, 0x76, 0xf6,
|
||||
0x37, 0xd5, 0x66, 0xcb, 0x9a, 0xa8, 0x04, 0x4e, 0xa0, 0x95, 0xb0, 0x74, 0x22, 0xc4, 0xbd, 0xe8,
|
||||
0x8a, 0xff, 0x74, 0x0f, 0xd6, 0x2c, 0xb6, 0xc5, 0x3a, 0x12, 0xc6, 0xd2, 0xa1, 0x92, 0xf8, 0x9c,
|
||||
0xab, 0x9b, 0xf4, 0x1f, 0x1d, 0x68, 0x1d, 0xbd, 0x38, 0x7e, 0x4c, 0x06, 0xb0, 0x18, 0x44, 0xa3,
|
||||
0x78, 0x82, 0x4e, 0xc3, 0x11, 0x1c, 0xf3, 0xf6, 0x4d, 0x47, 0x4b, 0xee, 0x42, 0x5b, 0xf8, 0x1a,
|
||||
0xf4, 0xd4, 0xc2, 0x8c, 0xba, 0x6e, 0x01, 0xe0, 0x2d, 0xc1, 0x5e, 0x27, 0x41, 0x2a, 0xae, 0x01,
|
||||
0xed, 0xdc, 0x5b, 0xc2, 0xd8, 0xaa, 0x1d, 0x68, 0xc1, 0x29, 0xbb, 0x8a, 0x47, 0x12, 0xf4, 0x59,
|
||||
0xe8, 0xcd, 0x84, 0xf3, 0xea, 0xb9, 0x15, 0x9c, 0xfe, 0x67, 0x13, 0x7a, 0x07, 0x23, 0x1e, 0x5c,
|
||||
0x31, 0xe5, 0x28, 0xc4, 0x0a, 0x05, 0xa0, 0xd6, 0xae, 0x5a, 0xe4, 0x43, 0xe8, 0xa5, 0x6c, 0x12,
|
||||
0x73, 0x36, 0x54, 0xa6, 0x2b, 0x8d, 0xd4, 0x06, 0x91, 0x6a, 0x24, 0x19, 0x0d, 0x13, 0x74, 0x39,
|
||||
0x62, 0x2f, 0x6d, 0xd7, 0x06, 0x51, 0x88, 0x08, 0xa0, 0x10, 0x71, 0x17, 0x2d, 0x57, 0x37, 0x51,
|
||||
0x76, 0x23, 0x2f, 0xf1, 0x46, 0x01, 0x97, 0x6b, 0x6e, 0xba, 0x79, 0x1b, 0x79, 0x87, 0xf1, 0xc8,
|
||||
0x0b, 0x87, 0xe7, 0x5e, 0xe8, 0x45, 0x23, 0xa6, 0x2e, 0x2f, 0x1b, 0x24, 0x1f, 0xc1, 0x92, 0x5a,
|
||||
0x92, 0x26, 0x93, 0x77, 0x58, 0x09, 0x45, 0x99, 0x4e, 0xa3, 0x8c, 0x71, 0x1e, 0x32, 0x3f, 0x27,
|
||||
0x5d, 0x14, 0xa4, 0xd5, 0x0e, 0xf2, 0x10, 0xd6, 0xe4, 0x1d, 0x98, 0x79, 0x3c, 0xce, 0x2e, 0x83,
|
||||
0x6c, 0x98, 0xb1, 0x88, 0xf7, 0xdb, 0x82, 0xbe, 0xae, 0x8b, 0x3c, 0x82, 0xcd, 0x12, 0x9c, 0xb2,
|
||||
0x11, 0x0b, 0xae, 0x98, 0xdf, 0x07, 0x31, 0xea, 0xa6, 0x6e, 0x72, 0x0f, 0x3a, 0x78, 0xf5, 0x4f,
|
||||
0x13, 0xdf, 0xe3, 0x2c, 0xeb, 0x77, 0x84, 0x84, 0x4c, 0x88, 0x7c, 0x02, 0xbd, 0x84, 0x49, 0x5f,
|
||||
0x7c, 0xc9, 0xc3, 0x51, 0xd6, 0xef, 0x0a, 0x07, 0xd8, 0x51, 0x5a, 0x8e, 0x5a, 0xe8, 0xda, 0x14,
|
||||
0xf4, 0x36, 0xac, 0x1d, 0x07, 0x19, 0x57, 0xa7, 0x9c, 0x1b, 0xdb, 0x11, 0xac, 0xdb, 0xb0, 0x52,
|
||||
0xf3, 0x87, 0xb0, 0xa8, 0x8e, 0x0c, 0x17, 0x80, 0xcc, 0xd7, 0x15, 0x73, 0x4b, 0x5b, 0xdc, 0x9c,
|
||||
0x8a, 0xfe, 0xaa, 0x01, 0x2d, 0xb4, 0x14, 0x61, 0x21, 0xd3, 0xf3, 0x61, 0xe1, 0x3d, 0x75, 0xd3,
|
||||
0xb4, 0x9d, 0x86, 0x65, 0x3b, 0xa6, 0x75, 0x37, 0x2d, 0xeb, 0x16, 0x21, 0xcf, 0x8c, 0x33, 0x25,
|
||||
0x6f, 0xa9, 0x2d, 0x06, 0x52, 0xf4, 0xa7, 0x6c, 0x74, 0x25, 0x54, 0x26, 0xef, 0x47, 0x04, 0x15,
|
||||
0x2a, 0xf3, 0xb8, 0x1c, 0x2d, 0xf5, 0x25, 0x6f, 0xeb, 0x3e, 0x31, 0x72, 0xa1, 0xe8, 0x13, 0xe3,
|
||||
0xfa, 0xb0, 0x10, 0x44, 0xe7, 0xf1, 0x34, 0xf2, 0x85, 0x52, 0x2c, 0xba, 0xba, 0x89, 0xa6, 0x9a,
|
||||
0x88, 0x5b, 0x30, 0x98, 0x30, 0xa5, 0x00, 0x05, 0x40, 0x09, 0x5e, 0x77, 0x99, 0xf0, 0x19, 0xb9,
|
||||
0x90, 0x3f, 0x85, 0x55, 0x03, 0x53, 0x12, 0xbe, 0x0f, 0x73, 0xb8, 0x7b, 0x1d, 0x10, 0xe9, 0xb3,
|
||||
0x13, 0xce, 0x46, 0xf6, 0xd0, 0x15, 0x58, 0x7a, 0xca, 0xf8, 0xb3, 0xe8, 0x22, 0xd6, 0x9c, 0xfe,
|
||||
0xbd, 0x01, 0xcb, 0x39, 0xa4, 0x18, 0x6d, 0xc3, 0x72, 0xe0, 0xb3, 0x88, 0x07, 0x7c, 0x36, 0xb4,
|
||||
0x6e, 0xd5, 0x32, 0x8c, 0x37, 0x98, 0x17, 0x06, 0x5e, 0xa6, 0x4c, 0x57, 0x36, 0xc8, 0x3e, 0xac,
|
||||
0xa3, 0x6e, 0x69, 0x75, 0xc9, 0x8f, 0x5d, 0x5e, 0xe6, 0xb5, 0x7d, 0x68, 0x0e, 0x88, 0x4b, 0xd7,
|
||||
0x50, 0x0c, 0x91, 0x2e, 0xa9, 0xae, 0x0b, 0xa5, 0x26, 0x39, 0xe1, 0x96, 0xa5, 0x37, 0x2a, 0x80,
|
||||
0x4a, 0xe0, 0x3a, 0x2f, 0x03, 0x89, 0x72, 0xe0, 0x6a, 0x04, 0xbf, 0x8b, 0x95, 0xe0, 0x77, 0x1b,
|
||||
0x96, 0xb3, 0x59, 0x34, 0x62, 0xfe, 0x90, 0xc7, 0x38, 0x6f, 0x10, 0x89, 0xd3, 0x59, 0x74, 0xcb,
|
||||
0xb0, 0x08, 0xd3, 0x59, 0xc6, 0x23, 0xc6, 0x85, 0x29, 0x2e, 0xba, 0xba, 0x49, 0x7f, 0x21, 0xee,
|
||||
0x92, 0x3c, 0xe2, 0xfe, 0x4a, 0xd8, 0x1b, 0xd9, 0x82, 0xb6, 0x9c, 0x27, 0xbb, 0xf4, 0x54, 0xcc,
|
||||
0xb4, 0x28, 0x80, 0xb3, 0x4b, 0x0f, 0x03, 0x4a, 0x6b, 0xe9, 0x52, 0xb3, 0x3b, 0x02, 0x3b, 0x92,
|
||||
0x2b, 0xff, 0x10, 0x96, 0x74, 0x2c, 0x9f, 0x0d, 0x43, 0x76, 0xc1, 0x75, 0xa0, 0x14, 0x4d, 0x27,
|
||||
0x38, 0x5d, 0x76, 0xcc, 0x2e, 0x38, 0x3d, 0x81, 0x55, 0x65, 0x55, 0xcf, 0x13, 0xa6, 0xa7, 0xfe,
|
||||
0xac, 0xec, 0x4f, 0xe5, 0x7d, 0xb6, 0xa6, 0xb4, 0xc5, 0x8c, 0xee, 0x4a, 0x4e, 0x96, 0xba, 0x40,
|
||||
0x54, 0xf7, 0xe3, 0x30, 0xce, 0x98, 0x62, 0x48, 0xa1, 0x3b, 0x0a, 0xe3, 0xac, 0x1c, 0x02, 0x9a,
|
||||
0x18, 0xca, 0x27, 0x9b, 0x8e, 0x46, 0x68, 0x8d, 0xf2, 0x46, 0xd4, 0x4d, 0xfa, 0x2b, 0x07, 0xd6,
|
||||
0x04, 0x37, 0x6d, 0xff, 0x79, 0x68, 0xf1, 0xee, 0xcb, 0xec, 0x8e, 0xcc, 0x90, 0xf4, 0x3d, 0x95,
|
||||
0x8e, 0x84, 0xc1, 0x24, 0xd0, 0x97, 0x62, 0x1b, 0x91, 0x63, 0x04, 0x50, 0x65, 0x2f, 0xe2, 0x74,
|
||||
0xc4, 0x84, 0xc4, 0x16, 0x5d, 0xd9, 0xa0, 0xff, 0xe6, 0xc0, 0xaa, 0x58, 0xc6, 0x19, 0xf7, 0xf8,
|
||||
0x34, 0x53, 0x5b, 0xfb, 0x7d, 0xe8, 0xe1, 0x36, 0x98, 0x56, 0x57, 0xb5, 0x88, 0xf5, 0xdc, 0xb2,
|
||||
0x04, 0x2a, 0x89, 0x8f, 0x6e, 0xb9, 0x36, 0x31, 0xf9, 0x3e, 0x74, 0xcd, 0x64, 0x4b, 0xc5, 0xd7,
|
||||
0x77, 0xf4, 0x0e, 0x2a, 0x5a, 0x71, 0x74, 0xcb, 0xb5, 0x06, 0x90, 0x2f, 0x00, 0xc4, 0x2d, 0x26,
|
||||
0xd8, 0x8a, 0xf5, 0x1a, 0xc3, 0x2b, 0x07, 0x71, 0x74, 0xcb, 0x35, 0xc8, 0xbf, 0x5c, 0x84, 0x79,
|
||||
0xe9, 0xdc, 0xe9, 0x53, 0xe8, 0x59, 0x2b, 0xb5, 0x02, 0xbc, 0xae, 0x0c, 0xf0, 0x2a, 0x81, 0x77,
|
||||
0xa3, 0x26, 0xf0, 0xfe, 0x6f, 0x07, 0x08, 0x6a, 0x52, 0xe9, 0xa8, 0x3e, 0x82, 0x25, 0xee, 0xa5,
|
||||
0x63, 0xc6, 0x87, 0x76, 0x1c, 0x53, 0x42, 0xc5, 0x2d, 0x14, 0xfb, 0xd6, 0x6d, 0xdf, 0x75, 0x4d,
|
||||
0x88, 0xec, 0x02, 0x31, 0x9a, 0x3a, 0x4d, 0x92, 0xfe, 0xbb, 0xa6, 0x07, 0x1d, 0x8d, 0xbc, 0xaa,
|
||||
0x75, 0x1e, 0xa1, 0x22, 0xa1, 0x96, 0x38, 0xf4, 0xda, 0x3e, 0x74, 0xd1, 0xc9, 0x14, 0x73, 0x30,
|
||||
0x8f, 0xeb, 0x78, 0x40, 0xb7, 0xb5, 0x4b, 0x11, 0x66, 0xa5, 0x3c, 0x46, 0x01, 0xd0, 0xdf, 0x3a,
|
||||
0xb0, 0x82, 0xdb, 0xb7, 0x54, 0xe4, 0x73, 0x10, 0xda, 0xf7, 0x8e, 0x1a, 0x62, 0xd1, 0xfe, 0xdf,
|
||||
0x15, 0xe4, 0x11, 0xb4, 0x05, 0xc3, 0x38, 0x61, 0x91, 0xd2, 0x8f, 0xbe, 0xad, 0x1f, 0x85, 0xe1,
|
||||
0x1f, 0xdd, 0x72, 0x0b, 0x62, 0x43, 0x3b, 0x0e, 0xe1, 0xb6, 0x5a, 0x65, 0xe9, 0x58, 0x3f, 0x86,
|
||||
0xf9, 0x4c, 0xec, 0x54, 0x85, 0xf7, 0xeb, 0x36, 0x67, 0x29, 0x05, 0x57, 0xd1, 0xd0, 0xbf, 0x68,
|
||||
0xc2, 0x46, 0x99, 0x8f, 0xba, 0x4e, 0x7e, 0x02, 0x2b, 0x95, 0xab, 0x40, 0x5e, 0x51, 0x1f, 0xdb,
|
||||
0x62, 0x2a, 0x0d, 0x2c, 0xc3, 0x15, 0x2e, 0x83, 0xbf, 0x6d, 0xc0, 0x92, 0x4d, 0x84, 0x7a, 0x9c,
|
||||
0x5f, 0x52, 0xc5, 0xc5, 0x65, 0x61, 0xd5, 0x90, 0xb2, 0x51, 0x17, 0x52, 0x9a, 0x81, 0x63, 0xf3,
|
||||
0xbb, 0x02, 0xc7, 0xd6, 0xbb, 0x05, 0x8e, 0x73, 0xb5, 0x81, 0x63, 0xd9, 0x83, 0xca, 0x5c, 0xdf,
|
||||
0xf6, 0xa0, 0xc5, 0x69, 0x2c, 0xbc, 0xc3, 0x69, 0x7c, 0x06, 0xeb, 0x2f, 0xbd, 0x30, 0x64, 0xfc,
|
||||
0x4b, 0x39, 0x85, 0x3e, 0xd3, 0xfb, 0xd0, 0xbd, 0x96, 0x29, 0xd2, 0x30, 0x8e, 0xc2, 0x99, 0x0a,
|
||||
0xc8, 0x3b, 0x0a, 0x7b, 0x1e, 0x85, 0x33, 0xfa, 0x09, 0xdc, 0x2e, 0x0d, 0x2d, 0xf2, 0x14, 0xbd,
|
||||
0x0d, 0x47, 0x54, 0x9c, 0x74, 0x93, 0x6e, 0xc2, 0x6d, 0xb5, 0x0c, 0x7b, 0x3a, 0xba, 0x0f, 0x1b,
|
||||
0xe5, 0x8e, 0x7a, 0x66, 0xcd, 0x82, 0xd9, 0x67, 0xd0, 0x95, 0xa5, 0x07, 0xb5, 0xe4, 0xcd, 0x72,
|
||||
0xf0, 0x87, 0xa9, 0xfd, 0x0f, 0xd9, 0x4c, 0x57, 0x62, 0x1a, 0x79, 0x25, 0x86, 0xfe, 0x29, 0x34,
|
||||
0x8f, 0xe2, 0xc4, 0xcc, 0x05, 0x1c, 0x3b, 0x17, 0x50, 0x07, 0x3f, 0xcc, 0xcf, 0x55, 0x0e, 0xb6,
|
||||
0x41, 0x3c, 0x36, 0x6f, 0xc2, 0xf1, 0x72, 0xbf, 0x88, 0xd3, 0x6b, 0x2f, 0xf5, 0xd5, 0xf1, 0x97,
|
||||
0x50, 0x5c, 0xc0, 0x05, 0xd3, 0x47, 0x8f, 0x7f, 0xe9, 0x5f, 0x3b, 0x30, 0x27, 0x16, 0x8f, 0xa1,
|
||||
0x83, 0x0c, 0xc6, 0xe5, 0x55, 0x84, 0x39, 0x98, 0x23, 0xfc, 0x49, 0x19, 0x2e, 0x55, 0xc7, 0x1a,
|
||||
0xe5, 0xea, 0x18, 0xfa, 0x24, 0xd9, 0x2a, 0xca, 0x4e, 0x05, 0x40, 0xde, 0x87, 0xd6, 0x65, 0x9c,
|
||||
0x60, 0x9c, 0x84, 0xf6, 0x04, 0x3a, 0x5c, 0x8f, 0x13, 0x57, 0xe0, 0x74, 0x07, 0x96, 0x4f, 0x62,
|
||||
0x9f, 0x19, 0x11, 0xdf, 0x8d, 0x02, 0xa5, 0x7f, 0xe6, 0xc0, 0xa2, 0x26, 0x26, 0xdb, 0xd0, 0x42,
|
||||
0x87, 0x5b, 0xf2, 0x67, 0x79, 0xb6, 0x8b, 0x74, 0xae, 0xa0, 0x40, 0xed, 0x15, 0x3e, 0x52, 0x9b,
|
||||
0x76, 0x23, 0x8f, 0x44, 0x8a, 0x58, 0x0d, 0xaf, 0x08, 0xb1, 0xe6, 0x92, 0x45, 0x95, 0x50, 0xfa,
|
||||
0x06, 0x7a, 0xd6, 0x14, 0x78, 0x67, 0x84, 0x5e, 0xc6, 0x55, 0x9e, 0xa2, 0x64, 0x68, 0x42, 0x66,
|
||||
0x72, 0xd0, 0xa8, 0x24, 0x07, 0x37, 0xa4, 0x00, 0x79, 0xd8, 0xda, 0x32, 0xc2, 0x56, 0xfa, 0x0f,
|
||||
0x0e, 0xf4, 0xf0, 0xf4, 0x82, 0x68, 0x7c, 0x1a, 0x87, 0xc1, 0x68, 0x26, 0x4e, 0x51, 0x1f, 0x14,
|
||||
0xa6, 0xb7, 0xdc, 0xcb, 0x4f, 0xd1, 0x86, 0xd1, 0x59, 0x4c, 0x82, 0x48, 0x64, 0x46, 0xea, 0x0c,
|
||||
0xf3, 0x36, 0x6a, 0xdd, 0x05, 0x43, 0x6b, 0xcf, 0xd8, 0x70, 0x82, 0xd7, 0x8e, 0xdc, 0xbb, 0x0d,
|
||||
0x62, 0x00, 0x8c, 0x40, 0xea, 0x71, 0x36, 0x9c, 0x04, 0x61, 0x18, 0x48, 0x5a, 0xa9, 0x5d, 0x75,
|
||||
0x5d, 0xf4, 0x9f, 0x1b, 0xd0, 0x51, 0xe6, 0x75, 0xe8, 0x8f, 0x19, 0x6a, 0x92, 0xf6, 0x60, 0xb9,
|
||||
0xea, 0x1b, 0x88, 0xee, 0xb7, 0x7c, 0x9e, 0x81, 0x94, 0x65, 0xdd, 0xac, 0xca, 0x1a, 0xef, 0xc7,
|
||||
0xd8, 0x67, 0x9f, 0xe0, 0x35, 0xac, 0x64, 0x57, 0x00, 0xba, 0x77, 0x5f, 0xf4, 0xce, 0x15, 0xbd,
|
||||
0x02, 0xb0, 0xdc, 0xe9, 0x7c, 0xc9, 0x9d, 0x3e, 0x82, 0xae, 0x62, 0x23, 0xe4, 0x2e, 0x5c, 0x5c,
|
||||
0xa1, 0x74, 0xd6, 0x99, 0xb8, 0x16, 0xa5, 0x1e, 0xb9, 0xaf, 0x47, 0x2e, 0x7e, 0xd7, 0x48, 0x4d,
|
||||
0x89, 0xe9, 0xab, 0x12, 0xde, 0xd3, 0xd4, 0x4b, 0x2e, 0xb5, 0xcb, 0xf2, 0xf3, 0x02, 0xa7, 0x80,
|
||||
0xc9, 0x0e, 0xcc, 0xe1, 0x30, 0x7d, 0x63, 0xd5, 0x1b, 0x82, 0x24, 0x21, 0xdb, 0x30, 0xc7, 0xfc,
|
||||
0xb1, 0xb0, 0x62, 0xb3, 0x22, 0x6d, 0x9c, 0x91, 0x2b, 0x09, 0xd0, 0x2c, 0x11, 0x2d, 0x99, 0xa5,
|
||||
0xed, 0xb5, 0xe6, 0xb1, 0xf9, 0xcc, 0xa7, 0xeb, 0x40, 0x4e, 0x18, 0xbf, 0x8e, 0xd3, 0x57, 0x66,
|
||||
0xde, 0xf6, 0xe7, 0x4d, 0xe8, 0x18, 0x30, 0x5a, 0xd8, 0x18, 0x17, 0x3c, 0xf4, 0x03, 0x6f, 0xc2,
|
||||
0x38, 0x4b, 0x95, 0xa6, 0x96, 0x50, 0xe1, 0xdc, 0xae, 0xc6, 0xc3, 0x78, 0xca, 0x87, 0x3e, 0x1b,
|
||||
0xa7, 0x8c, 0xa9, 0xe7, 0x83, 0x12, 0x8a, 0x74, 0x13, 0xef, 0xb5, 0x49, 0x27, 0xf5, 0xa1, 0x84,
|
||||
0xea, 0x90, 0x49, 0xca, 0xa8, 0x55, 0x84, 0x4c, 0x52, 0x22, 0x65, 0xdf, 0x30, 0x57, 0xe3, 0x1b,
|
||||
0x3e, 0x85, 0x0d, 0xe9, 0x05, 0x22, 0xb9, 0x9d, 0x61, 0x49, 0x4d, 0x6e, 0xe8, 0x25, 0x3b, 0xb0,
|
||||
0x82, 0x6b, 0xd6, 0x0a, 0x9e, 0x05, 0xbf, 0x90, 0x85, 0x19, 0xc7, 0xad, 0xe0, 0x48, 0x8b, 0xe6,
|
||||
0x68, 0xd1, 0xca, 0xca, 0x4c, 0x05, 0x17, 0xb4, 0xde, 0x6b, 0x9b, 0xb6, 0xad, 0x68, 0x4b, 0x38,
|
||||
0xdd, 0x82, 0x3b, 0x42, 0x4d, 0x5e, 0xc4, 0x49, 0x1c, 0xc6, 0xe3, 0xd9, 0xd9, 0xf4, 0x3c, 0x1b,
|
||||
0xa5, 0x41, 0x82, 0xd1, 0x19, 0xfd, 0x17, 0x07, 0xd6, 0xac, 0x5e, 0x15, 0x32, 0xfe, 0xae, 0xd4,
|
||||
0xd9, 0xbc, 0x1c, 0x23, 0x35, 0x6b, 0x55, 0x57, 0x4f, 0x63, 0x5f, 0x05, 0xf4, 0x32, 0x36, 0xfe,
|
||||
0x4a, 0x55, 0x68, 0x0e, 0x60, 0x59, 0x4f, 0xad, 0x07, 0x4a, 0x35, 0xeb, 0x57, 0xd5, 0x4c, 0x8d,
|
||||
0x5f, 0x52, 0x03, 0x34, 0x8b, 0x3f, 0x90, 0x71, 0x06, 0xf3, 0xc5, 0x26, 0xd0, 0x2b, 0xe2, 0xf8,
|
||||
0x81, 0x1e, 0x2f, 0xba, 0x1e, 0x9b, 0x43, 0xdc, 0xce, 0x28, 0x07, 0x33, 0xfa, 0x97, 0x0e, 0x40,
|
||||
0xb1, 0x3a, 0x3c, 0x79, 0xe5, 0x4f, 0xd5, 0x1e, 0xda, 0x6e, 0x01, 0x60, 0xa4, 0x61, 0xc5, 0x61,
|
||||
0xd2, 0xdd, 0x74, 0x34, 0x86, 0x17, 0xf8, 0x03, 0x58, 0x1e, 0x87, 0xf1, 0xb9, 0xb8, 0xe8, 0x3c,
|
||||
0x3e, 0x4d, 0x59, 0xa6, 0xea, 0x94, 0x4b, 0x12, 0xfe, 0x81, 0x42, 0x6f, 0x70, 0xd7, 0x7f, 0xd5,
|
||||
0xc8, 0xd3, 0xdb, 0x62, 0xcf, 0x37, 0x9a, 0x11, 0xd9, 0xaf, 0x78, 0xbf, 0x1b, 0xb2, 0x49, 0x11,
|
||||
0x25, 0x9f, 0x7e, 0x67, 0x08, 0xf8, 0x05, 0x2c, 0xa5, 0xd2, 0xbd, 0x68, 0xdf, 0xd3, 0xfa, 0x16,
|
||||
0xdf, 0xd3, 0x4b, 0xad, 0x8b, 0xe5, 0xff, 0xc1, 0x8a, 0xe7, 0x5f, 0xb1, 0x94, 0x07, 0x22, 0xc2,
|
||||
0x13, 0x37, 0xad, 0xf4, 0x98, 0xcb, 0x06, 0x2e, 0x6e, 0xc0, 0x07, 0xb0, 0x3c, 0x92, 0x55, 0xe3,
|
||||
0x9c, 0x52, 0xbd, 0x05, 0x15, 0x30, 0x12, 0xd2, 0xbf, 0xd7, 0x99, 0xb4, 0x7d, 0x86, 0x37, 0x4b,
|
||||
0xc4, 0xdc, 0x5d, 0xa3, 0xb4, 0xbb, 0xef, 0xa9, 0xcc, 0xd7, 0xd7, 0x45, 0x08, 0x55, 0x5f, 0x90,
|
||||
0xa0, 0xaa, 0x42, 0xd8, 0x22, 0x6d, 0xbd, 0x8b, 0x48, 0xe9, 0x2e, 0x2c, 0x9f, 0x31, 0x7e, 0x80,
|
||||
0x27, 0xa8, 0x3d, 0xdf, 0x16, 0xb4, 0x23, 0x76, 0x3d, 0x94, 0x47, 0x2c, 0x43, 0x92, 0xc5, 0x88,
|
||||
0x5d, 0x0b, 0x1a, 0x4a, 0x60, 0xa5, 0xa0, 0x97, 0xc1, 0x23, 0xfd, 0x75, 0x03, 0x16, 0x9e, 0x45,
|
||||
0x57, 0x71, 0x30, 0x12, 0xb9, 0xec, 0x84, 0x4d, 0x62, 0xfd, 0x58, 0x81, 0xff, 0xf1, 0xe2, 0x17,
|
||||
0xa5, 0xcf, 0x84, 0xab, 0x24, 0x53, 0x37, 0xf1, 0x0a, 0x4c, 0x8b, 0x97, 0x31, 0xa9, 0x6d, 0x06,
|
||||
0x42, 0x36, 0x60, 0x3e, 0x35, 0x5f, 0xf1, 0x54, 0xab, 0x78, 0xa9, 0x99, 0x33, 0x5e, 0x6a, 0x44,
|
||||
0x55, 0x43, 0x56, 0x75, 0xc5, 0x91, 0x2c, 0xba, 0xba, 0x29, 0x02, 0xcd, 0x94, 0xa9, 0xb2, 0x38,
|
||||
0x5e, 0xa6, 0x0b, 0x2a, 0xd0, 0x34, 0x41, 0xbc, 0x70, 0xe5, 0x00, 0x49, 0x23, 0x1d, 0x92, 0x09,
|
||||
0x61, 0x00, 0x52, 0x7e, 0x08, 0x6c, 0x4b, 0x35, 0x29, 0xc1, 0xf4, 0x6b, 0x20, 0x07, 0xbe, 0xaf,
|
||||
0xa4, 0x92, 0x87, 0xd9, 0xc5, 0x7e, 0x1c, 0x6b, 0x3f, 0x35, 0x7c, 0x1b, 0xf5, 0x7c, 0x0f, 0xa1,
|
||||
0x73, 0x6a, 0xbc, 0x64, 0x0a, 0x01, 0xea, 0x37, 0x4c, 0x25, 0x74, 0x03, 0x31, 0x26, 0x6c, 0x98,
|
||||
0x13, 0xd2, 0xdf, 0x03, 0x72, 0x1c, 0x64, 0x3c, 0x5f, 0x5f, 0x9e, 0x8e, 0xe8, 0x9c, 0xce, 0x4c,
|
||||
0x47, 0x14, 0x26, 0xd2, 0x91, 0x03, 0x59, 0x65, 0x2e, 0x6f, 0x6c, 0x07, 0x16, 0x03, 0x09, 0x69,
|
||||
0xff, 0xb9, 0xa4, 0x14, 0x4f, 0x53, 0xe6, 0xfd, 0x78, 0xd3, 0x2b, 0xd0, 0x72, 0xcf, 0xbf, 0x76,
|
||||
0x60, 0x41, 0x6d, 0x0d, 0xef, 0x29, 0xeb, 0x0d, 0x57, 0x65, 0x8d, 0x26, 0x56, 0xff, 0x5a, 0x57,
|
||||
0x3d, 0xe9, 0x66, 0xdd, 0x49, 0xaf, 0x43, 0x2b, 0xf1, 0xf8, 0xa5, 0x08, 0xd3, 0xdb, 0x98, 0xa5,
|
||||
0xe9, 0xb7, 0x64, 0x4c, 0x20, 0xe6, 0x8a, 0x04, 0x42, 0xd5, 0xd4, 0xd5, 0xb2, 0xf2, 0x72, 0xef,
|
||||
0x97, 0xb2, 0xa6, 0x5e, 0xc0, 0x85, 0x14, 0xd4, 0x12, 0xcb, 0x52, 0x50, 0xa4, 0x6e, 0xde, 0x4f,
|
||||
0x07, 0xd0, 0x7f, 0xc2, 0x42, 0xc6, 0xd9, 0x41, 0x18, 0x96, 0xf9, 0x6f, 0xc1, 0x9d, 0x9a, 0x3e,
|
||||
0x65, 0x6d, 0x3f, 0x80, 0xd5, 0x27, 0xec, 0x7c, 0x3a, 0x3e, 0x66, 0x57, 0x45, 0x71, 0x80, 0x40,
|
||||
0x2b, 0xbb, 0x8c, 0xaf, 0xd5, 0x89, 0x89, 0xff, 0xe4, 0x3d, 0x80, 0x10, 0x69, 0x86, 0x59, 0xc2,
|
||||
0x46, 0x4a, 0x9f, 0xda, 0x02, 0x39, 0x4b, 0xd8, 0x88, 0x7e, 0x0a, 0xc4, 0xe4, 0xa3, 0xb6, 0x80,
|
||||
0x36, 0x30, 0x3d, 0x1f, 0x66, 0xb3, 0x8c, 0xb3, 0x89, 0x36, 0x7f, 0x13, 0xa2, 0x0f, 0xa0, 0x7b,
|
||||
0xea, 0xcd, 0x5c, 0xf6, 0x8d, 0x7a, 0x1c, 0xc7, 0xfc, 0xc5, 0x9b, 0xa1, 0x82, 0xe6, 0xf9, 0x8b,
|
||||
0xe8, 0xa6, 0x29, 0xcc, 0x4b, 0x42, 0x64, 0xea, 0xb3, 0x8c, 0x07, 0x91, 0xac, 0xab, 0x28, 0xa6,
|
||||
0x06, 0x54, 0x39, 0xf0, 0x46, 0xcd, 0x81, 0xab, 0xe0, 0x45, 0x3f, 0xa7, 0xa8, 0x93, 0xb5, 0xb0,
|
||||
0x9d, 0x7d, 0xe8, 0x59, 0x19, 0x38, 0x59, 0x80, 0xe6, 0xc1, 0xf1, 0xf1, 0xca, 0x2d, 0xd2, 0x81,
|
||||
0x85, 0xe7, 0xa7, 0x87, 0x27, 0xcf, 0x4e, 0x9e, 0xae, 0x38, 0xd8, 0x78, 0x7c, 0xfc, 0xfc, 0x0c,
|
||||
0x1b, 0x8d, 0xfd, 0x7f, 0xda, 0x84, 0x76, 0x1e, 0x3f, 0x92, 0x9f, 0x43, 0xcf, 0xca, 0xb7, 0xc9,
|
||||
0x96, 0x3a, 0xc2, 0xba, 0x04, 0x7e, 0x70, 0xb7, 0xbe, 0x53, 0x1d, 0xd5, 0xfb, 0xbf, 0xfc, 0xed,
|
||||
0x7f, 0xfc, 0x4d, 0xa3, 0x4f, 0x36, 0xf6, 0xae, 0x3e, 0xd9, 0x53, 0x09, 0xf5, 0x9e, 0xa8, 0x1b,
|
||||
0xcb, 0x32, 0xf5, 0x2b, 0x58, 0xb2, 0xf3, 0x71, 0x72, 0xd7, 0x76, 0xd7, 0xa5, 0xd9, 0xde, 0xbb,
|
||||
0xa1, 0x57, 0x4d, 0x77, 0x57, 0x4c, 0xb7, 0x41, 0xd6, 0xcd, 0xe9, 0xf2, 0xb8, 0x8e, 0x89, 0x87,
|
||||
0x05, 0xf3, 0xb3, 0x0e, 0xa2, 0xf9, 0xd5, 0x7f, 0xee, 0x31, 0xb8, 0x53, 0xfd, 0x84, 0x43, 0x7d,
|
||||
0xf3, 0x41, 0xfb, 0x62, 0x2a, 0x42, 0x56, 0x70, 0x2a, 0xf3, 0xab, 0x0e, 0xf2, 0x33, 0x68, 0xe7,
|
||||
0x4f, 0xd8, 0x64, 0xd3, 0x78, 0xb0, 0x37, 0x1f, 0xc5, 0x07, 0xfd, 0x6a, 0x87, 0xda, 0xc4, 0x96,
|
||||
0xe0, 0x7c, 0x9b, 0x56, 0x38, 0x7f, 0xee, 0xec, 0x90, 0x63, 0xb8, 0xad, 0x7c, 0xc6, 0x39, 0xfb,
|
||||
0xdf, 0xec, 0xa4, 0xe6, 0x63, 0x94, 0x87, 0x0e, 0xf9, 0x02, 0x16, 0xf5, 0xab, 0x3e, 0xd9, 0xa8,
|
||||
0xff, 0xb4, 0x60, 0xb0, 0x59, 0xc1, 0x95, 0xa1, 0x1c, 0x00, 0x14, 0x8f, 0xd8, 0xa4, 0x7f, 0xd3,
|
||||
0x5b, 0x7b, 0x2e, 0xc4, 0x9a, 0x17, 0xef, 0xb1, 0x78, 0xc3, 0xb7, 0xdf, 0xc8, 0xc9, 0x07, 0x05,
|
||||
0x7d, 0xed, 0xeb, 0xf9, 0xb7, 0x30, 0xa4, 0x1b, 0x42, 0x76, 0x2b, 0x64, 0x09, 0x65, 0x17, 0xb1,
|
||||
0x6b, 0x9d, 0x5f, 0xff, 0x14, 0x3a, 0xc6, 0x4b, 0x37, 0x31, 0x2a, 0x9a, 0xa5, 0x47, 0xf5, 0xc1,
|
||||
0xa0, 0xae, 0x4b, 0x71, 0x5f, 0x17, 0xdc, 0x97, 0x68, 0x1b, 0xb9, 0x8b, 0x57, 0x1d, 0x3c, 0x92,
|
||||
0x1f, 0xa3, 0xf1, 0xa8, 0xa7, 0x2f, 0x52, 0xbc, 0xc2, 0xdb, 0x0f, 0x64, 0xf9, 0x79, 0x57, 0x5e,
|
||||
0xc9, 0xe8, 0xaa, 0xe0, 0xda, 0x21, 0x05, 0x57, 0xf2, 0x23, 0x58, 0x50, 0x4f, 0x60, 0xe4, 0x76,
|
||||
0x71, 0xae, 0x46, 0xb6, 0x35, 0xd8, 0x28, 0xc3, 0x8a, 0xd9, 0x9a, 0x60, 0xd6, 0x23, 0x1d, 0x64,
|
||||
0x36, 0x66, 0x3c, 0x40, 0x1e, 0x21, 0x2c, 0xdb, 0x45, 0xc9, 0x2c, 0x37, 0xb3, 0xda, 0x4a, 0x6b,
|
||||
0x6e, 0x66, 0xf5, 0x65, 0x50, 0xdb, 0xcc, 0xb4, 0x79, 0xed, 0xe9, 0x22, 0xf2, 0x1f, 0x43, 0xd7,
|
||||
0x7c, 0x6f, 0x25, 0x03, 0x63, 0xe7, 0xa5, 0xb7, 0xd9, 0xc1, 0x56, 0x6d, 0x9f, 0x2d, 0x6e, 0xd2,
|
||||
0x35, 0xa7, 0x21, 0x3f, 0x85, 0x65, 0xa3, 0xe4, 0x7f, 0x36, 0x8b, 0x46, 0xf9, 0x71, 0x56, 0x9f,
|
||||
0x02, 0x06, 0x75, 0xd1, 0x1f, 0xdd, 0x14, 0x8c, 0x57, 0xa9, 0xc5, 0x18, 0x8f, 0xf2, 0x31, 0x74,
|
||||
0x0c, 0x1e, 0xdf, 0xc6, 0x77, 0xd3, 0xe8, 0x32, 0xcb, 0xef, 0x0f, 0x1d, 0xf2, 0x1b, 0x07, 0xba,
|
||||
0xe6, 0x03, 0x12, 0xb1, 0xf2, 0x99, 0x12, 0x9f, 0xbe, 0xd9, 0x67, 0x32, 0xa2, 0x5f, 0x8b, 0x45,
|
||||
0x9e, 0xee, 0x9c, 0x58, 0x42, 0x7e, 0x63, 0x95, 0x84, 0x77, 0xcd, 0xcf, 0x95, 0xde, 0x96, 0x3b,
|
||||
0xcd, 0xa7, 0x92, 0xb7, 0x7b, 0x6f, 0xc4, 0xbb, 0xd2, 0xdb, 0x87, 0x0e, 0xf9, 0x5c, 0x7e, 0x75,
|
||||
0xa6, 0x43, 0x0d, 0x62, 0x18, 0x78, 0x59, 0x6c, 0xe6, 0xb7, 0x5c, 0xdb, 0xce, 0x43, 0x87, 0xfc,
|
||||
0x89, 0xfc, 0x52, 0x49, 0x8d, 0x15, 0xd2, 0x7f, 0xd7, 0xf1, 0xf4, 0x43, 0xb1, 0xa3, 0xf7, 0xe9,
|
||||
0x1d, 0x6b, 0x47, 0x65, 0x0f, 0x77, 0x0a, 0x50, 0xc4, 0x8d, 0xa4, 0x14, 0x44, 0xe5, 0xb6, 0x5f,
|
||||
0x0d, 0x2d, 0xed, 0x53, 0xd5, 0xb1, 0x16, 0x72, 0xfc, 0xb9, 0x54, 0x48, 0x45, 0x9f, 0xe5, 0xc7,
|
||||
0x5a, 0x8d, 0xff, 0x06, 0x83, 0xba, 0x2e, 0xc5, 0xff, 0x7b, 0x82, 0xff, 0x7b, 0x64, 0xcb, 0xe4,
|
||||
0xbf, 0xf7, 0xc6, 0x8c, 0x17, 0xdf, 0x92, 0xaf, 0xa1, 0x77, 0x1c, 0xc7, 0xaf, 0xa6, 0x49, 0x9e,
|
||||
0x0e, 0xd8, 0xf1, 0x0f, 0xc6, 0xac, 0x83, 0xd2, 0xa6, 0xe8, 0x7d, 0xc1, 0x79, 0x8b, 0xdc, 0xb1,
|
||||
0x39, 0x17, 0x51, 0xec, 0x5b, 0xe2, 0xc1, 0x6a, 0xee, 0xf7, 0xf3, 0x8d, 0x0c, 0x6c, 0x3e, 0x66,
|
||||
0x30, 0x59, 0x99, 0xc3, 0xba, 0x89, 0xf3, 0x39, 0x32, 0xcd, 0xf3, 0xa1, 0x43, 0x4e, 0xa1, 0xfb,
|
||||
0x84, 0x8d, 0x62, 0x9f, 0xa9, 0x98, 0x65, 0xad, 0x58, 0x79, 0x1e, 0xeb, 0x0c, 0x7a, 0x16, 0x68,
|
||||
0x7b, 0x82, 0xc4, 0x9b, 0xa5, 0xec, 0x9b, 0xbd, 0x37, 0x2a, 0x18, 0x7a, 0xab, 0x3d, 0x81, 0x0e,
|
||||
0xe0, 0x2c, 0x4f, 0x50, 0x8a, 0xf8, 0x2c, 0x4f, 0x50, 0x89, 0xf8, 0x2c, 0x4f, 0xa0, 0x03, 0x48,
|
||||
0x12, 0x62, 0x1c, 0x58, 0x0a, 0x12, 0xf3, 0xdb, 0xe3, 0xa6, 0xd0, 0x72, 0x70, 0xef, 0x66, 0x02,
|
||||
0x7b, 0xb6, 0x1d, 0x7b, 0xb6, 0x33, 0xe8, 0x3d, 0x61, 0x52, 0x58, 0xb2, 0x10, 0x37, 0xb0, 0x5d,
|
||||
0x8b, 0x59, 0xb4, 0x2b, 0xbb, 0x1d, 0xd1, 0x67, 0x3b, 0x7a, 0x51, 0x05, 0x23, 0x3f, 0x83, 0xce,
|
||||
0x53, 0xc6, 0x75, 0xe5, 0x2d, 0xbf, 0x83, 0x4b, 0xa5, 0xb8, 0x41, 0x4d, 0xe1, 0x8e, 0xde, 0x13,
|
||||
0xdc, 0x06, 0xa4, 0x9f, 0x73, 0xdb, 0x63, 0xfe, 0x98, 0x49, 0x27, 0x30, 0x0c, 0xfc, 0xb7, 0xe4,
|
||||
0x27, 0x82, 0x79, 0x5e, 0x40, 0xdf, 0x30, 0xea, 0x39, 0x26, 0xf3, 0xe5, 0x12, 0x5e, 0xc7, 0x19,
|
||||
0xb3, 0xfc, 0xbd, 0x37, 0xaa, 0x8e, 0x8d, 0x9c, 0xe1, 0xc7, 0x53, 0x96, 0xce, 0xe4, 0xd3, 0xc2,
|
||||
0x9a, 0xf5, 0x81, 0xa6, 0xe2, 0x6a, 0x7d, 0xb5, 0x49, 0x1f, 0x08, 0x96, 0xf7, 0xc9, 0x07, 0x05,
|
||||
0x4b, 0xf1, 0xfd, 0x66, 0xc1, 0x73, 0xef, 0x8d, 0x37, 0xe1, 0x6f, 0xc9, 0x4b, 0xf1, 0x3d, 0x88,
|
||||
0x59, 0x47, 0x2c, 0x6e, 0xfb, 0x72, 0xc9, 0x31, 0x17, 0x8b, 0xd1, 0x65, 0x47, 0x00, 0x72, 0x26,
|
||||
0x71, 0x07, 0xbe, 0x34, 0x02, 0x27, 0xab, 0x9e, 0xaa, 0xf5, 0xe1, 0xc6, 0xb2, 0x59, 0xee, 0x14,
|
||||
0x6a, 0x4a, 0x67, 0x3a, 0x86, 0x92, 0xf5, 0x00, 0x23, 0x86, 0xb2, 0x0a, 0x0a, 0x46, 0x0c, 0x65,
|
||||
0x17, 0x0e, 0x30, 0x86, 0x2a, 0x52, 0x90, 0x3c, 0x86, 0xaa, 0x64, 0x37, 0xb9, 0xdb, 0xab, 0xe6,
|
||||
0x2b, 0xe7, 0xf3, 0xe2, 0x3b, 0xed, 0xdf, 0xf9, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb8, 0xd9,
|
||||
0xb6, 0x1f, 0xd9, 0x2d, 0x00, 0x00,
|
||||
}
|
||||
|
@ -159,6 +159,8 @@ service Lightning {
|
||||
};
|
||||
}
|
||||
|
||||
rpc SubscribeChannelGraph(GraphTopologySubscription) returns (stream GraphTopologyUpdate);
|
||||
|
||||
rpc SetAlias(SetAliasRequest) returns (SetAliasResponse);
|
||||
|
||||
rpc DebugLevel(DebugLevelRequest) returns (DebugLevelResponse);
|
||||
@ -196,6 +198,7 @@ message SendResponse {
|
||||
}
|
||||
|
||||
message ChannelPoint {
|
||||
// TODO(roasbeef): make str vs bytes into a oneof
|
||||
bytes funding_txid = 1 [ json_name = "funding_txid" ];
|
||||
string funding_txid_str = 2 [ json_name = "funding_txid_str" ];
|
||||
uint32 output_index = 3 [ json_name = "output_index" ];
|
||||
@ -492,6 +495,37 @@ message NetworkInfo {
|
||||
// * also additional RPC for tracking fee info once in
|
||||
}
|
||||
|
||||
message GraphTopologySubscription {}
|
||||
message GraphTopologyUpdate {
|
||||
repeated NodeUpdate node_updates = 1;
|
||||
repeated ChannelEdgeUpdate channel_updates = 2;
|
||||
repeated ClosedChannelUpdate closed_chans = 3;
|
||||
}
|
||||
message NodeUpdate {
|
||||
repeated string addresses = 1;
|
||||
string identity_key = 2;
|
||||
bytes global_features = 3;
|
||||
string alias = 4;
|
||||
}
|
||||
message ChannelEdgeUpdate {
|
||||
uint64 chan_id = 1;
|
||||
|
||||
ChannelPoint chan_point = 2;
|
||||
|
||||
int64 capacity = 3;
|
||||
|
||||
RoutingPolicy routing_policy = 4;
|
||||
|
||||
string advertising_node = 5;
|
||||
string connecting_node = 6;
|
||||
}
|
||||
message ClosedChannelUpdate {
|
||||
uint64 chan_id = 1;
|
||||
int64 capacity = 2;
|
||||
uint32 closed_height = 3;
|
||||
ChannelPoint chan_point = 4;
|
||||
}
|
||||
|
||||
message SetAliasRequest {
|
||||
string new_alias = 1;
|
||||
}
|
||||
|
@ -739,6 +739,31 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcChannelEdgeUpdate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"chan_id": {
|
||||
"type": "string",
|
||||
"format": "uint64"
|
||||
},
|
||||
"chan_point": {
|
||||
"$ref": "#/definitions/lnrpcChannelPoint"
|
||||
},
|
||||
"capacity": {
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
},
|
||||
"routing_policy": {
|
||||
"$ref": "#/definitions/lnrpcRoutingPolicy"
|
||||
},
|
||||
"advertising_node": {
|
||||
"type": "string"
|
||||
},
|
||||
"connecting_node": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcChannelGraph": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@ -772,7 +797,8 @@
|
||||
"properties": {
|
||||
"funding_txid": {
|
||||
"type": "string",
|
||||
"format": "byte"
|
||||
"format": "byte",
|
||||
"title": "TODO(roasbeef): make str vs bytes into a oneof"
|
||||
},
|
||||
"funding_txid_str": {
|
||||
"type": "string"
|
||||
@ -822,6 +848,26 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcClosedChannelUpdate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"chan_id": {
|
||||
"type": "string",
|
||||
"format": "uint64"
|
||||
},
|
||||
"capacity": {
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
},
|
||||
"closed_height": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"chan_point": {
|
||||
"$ref": "#/definitions/lnrpcChannelPoint"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcConfirmationUpdate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@ -930,6 +976,32 @@
|
||||
"lnrpcGetTransactionsRequest": {
|
||||
"type": "object"
|
||||
},
|
||||
"lnrpcGraphTopologySubscription": {
|
||||
"type": "object"
|
||||
},
|
||||
"lnrpcGraphTopologyUpdate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"node_updates": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/lnrpcNodeUpdate"
|
||||
}
|
||||
},
|
||||
"channel_updates": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/lnrpcChannelEdgeUpdate"
|
||||
}
|
||||
},
|
||||
"closed_chans": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/lnrpcClosedChannelUpdate"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcHTLC": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@ -1196,6 +1268,27 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcNodeUpdate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"addresses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"identity_key": {
|
||||
"type": "string"
|
||||
},
|
||||
"global_features": {
|
||||
"type": "string",
|
||||
"format": "byte"
|
||||
},
|
||||
"alias": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcOpenChannelRequest": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
Loading…
Reference in New Issue
Block a user