diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-09-21 14:07:26 +0900 |
---|---|---|
committer | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-09-25 15:30:16 +0900 |
commit | 9b278ba79ba2d12598405d1109b0b90b42e68357 (patch) | |
tree | 45100d0bfa136c547ab116361c827f18ca4411cf /api | |
parent | ce258f05d2fd9c3f66b831cae1e40bc9958cef1f (diff) |
api: GetPath API alternative to GetRib
With the extremely large RIBs, GetRib gRPC API hits the limits of each
message size, because this API is using simple request/response RPC.
This patch introduces a new API GetPath which using streaming RPC and
can retrieve RIBs even if extremely large.
Note: GetRib can be replaced with GetPath and obsoleted in the future.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'api')
-rw-r--r-- | api/gobgp.pb.go | 1193 | ||||
-rw-r--r-- | api/gobgp.proto | 21 | ||||
-rw-r--r-- | api/grpc_server.go | 52 | ||||
-rw-r--r-- | api/util.go | 6 |
4 files changed, 756 insertions, 516 deletions
diff --git a/api/gobgp.pb.go b/api/gobgp.pb.go index c9908723..ed63f515 100644 --- a/api/gobgp.pb.go +++ b/api/gobgp.pb.go @@ -109,6 +109,8 @@ It has these top-level messages: Table GetRibRequest GetRibResponse + TableLookupPrefix + GetPathRequest ValidateRibRequest ValidateRibResponse Peer @@ -226,6 +228,31 @@ func (x Resource) String() string { } func (Resource) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +// API representation of table.LookupOption +type TableLookupOption int32 + +const ( + TableLookupOption_LOOKUP_EXACT TableLookupOption = 0 + TableLookupOption_LOOKUP_LONGER TableLookupOption = 1 + TableLookupOption_LOOKUP_SHORTER TableLookupOption = 2 +) + +var TableLookupOption_name = map[int32]string{ + 0: "LOOKUP_EXACT", + 1: "LOOKUP_LONGER", + 2: "LOOKUP_SHORTER", +} +var TableLookupOption_value = map[string]int32{ + "LOOKUP_EXACT": 0, + "LOOKUP_LONGER": 1, + "LOOKUP_SHORTER": 2, +} + +func (x TableLookupOption) String() string { + return proto.EnumName(TableLookupOption_name, int32(x)) +} +func (TableLookupOption) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } + type DefinedType int32 const ( @@ -260,7 +287,7 @@ var DefinedType_value = map[string]int32{ func (x DefinedType) String() string { return proto.EnumName(DefinedType_name, int32(x)) } -func (DefinedType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (DefinedType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } type MatchType int32 @@ -284,7 +311,7 @@ var MatchType_value = map[string]int32{ func (x MatchType) String() string { return proto.EnumName(MatchType_name, int32(x)) } -func (MatchType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +func (MatchType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } type AsPathLengthType int32 @@ -308,7 +335,7 @@ var AsPathLengthType_value = map[string]int32{ func (x AsPathLengthType) String() string { return proto.EnumName(AsPathLengthType_name, int32(x)) } -func (AsPathLengthType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +func (AsPathLengthType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } type RouteAction int32 @@ -332,7 +359,7 @@ var RouteAction_value = map[string]int32{ func (x RouteAction) String() string { return proto.EnumName(RouteAction_name, int32(x)) } -func (RouteAction) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +func (RouteAction) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } type CommunityActionType int32 @@ -356,7 +383,7 @@ var CommunityActionType_value = map[string]int32{ func (x CommunityActionType) String() string { return proto.EnumName(CommunityActionType_name, int32(x)) } -func (CommunityActionType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +func (CommunityActionType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } type MedActionType int32 @@ -377,7 +404,7 @@ var MedActionType_value = map[string]int32{ func (x MedActionType) String() string { return proto.EnumName(MedActionType_name, int32(x)) } -func (MedActionType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +func (MedActionType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } type PolicyType int32 @@ -401,7 +428,7 @@ var PolicyType_value = map[string]int32{ func (x PolicyType) String() string { return proto.EnumName(PolicyType_name, int32(x)) } -func (PolicyType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } +func (PolicyType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } type SoftResetNeighborRequest_SoftResetDirection int32 @@ -535,7 +562,7 @@ func (x PeerConf_RemovePrivateAs) String() string { return proto.EnumName(PeerConf_RemovePrivateAs_name, int32(x)) } func (PeerConf_RemovePrivateAs) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{106, 0} + return fileDescriptor0, []int{108, 0} } type PeerState_AdminState int32 @@ -560,7 +587,7 @@ var PeerState_AdminState_value = map[string]int32{ func (x PeerState_AdminState) String() string { return proto.EnumName(PeerState_AdminState_name, int32(x)) } -func (PeerState_AdminState) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{109, 0} } +func (PeerState_AdminState) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{111, 0} } type Conditions_RouteType int32 @@ -587,7 +614,7 @@ var Conditions_RouteType_value = map[string]int32{ func (x Conditions_RouteType) String() string { return proto.EnumName(Conditions_RouteType_name, int32(x)) } -func (Conditions_RouteType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{147, 0} } +func (Conditions_RouteType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{149, 0} } type GetNeighborRequest struct { EnableAdvertised bool `protobuf:"varint,1,opt,name=enableAdvertised" json:"enableAdvertised,omitempty"` @@ -2551,6 +2578,71 @@ func (m *GetRibResponse) GetTable() *Table { return nil } +// API representation of table.LookupPrefix +type TableLookupPrefix struct { + Prefix string `protobuf:"bytes,1,opt,name=prefix" json:"prefix,omitempty"` + LookupOption TableLookupOption `protobuf:"varint,2,opt,name=lookup_option,json=lookupOption,enum=gobgpapi.TableLookupOption" json:"lookup_option,omitempty"` +} + +func (m *TableLookupPrefix) Reset() { *m = TableLookupPrefix{} } +func (m *TableLookupPrefix) String() string { return proto.CompactTextString(m) } +func (*TableLookupPrefix) ProtoMessage() {} +func (*TableLookupPrefix) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{101} } + +func (m *TableLookupPrefix) GetPrefix() string { + if m != nil { + return m.Prefix + } + return "" +} + +func (m *TableLookupPrefix) GetLookupOption() TableLookupOption { + if m != nil { + return m.LookupOption + } + return TableLookupOption_LOOKUP_EXACT +} + +type GetPathRequest struct { + Type Resource `protobuf:"varint,1,opt,name=type,enum=gobgpapi.Resource" json:"type,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"` + Family uint32 `protobuf:"varint,3,opt,name=family" json:"family,omitempty"` + Prefixes []*TableLookupPrefix `protobuf:"bytes,4,rep,name=prefixes" json:"prefixes,omitempty"` +} + +func (m *GetPathRequest) Reset() { *m = GetPathRequest{} } +func (m *GetPathRequest) String() string { return proto.CompactTextString(m) } +func (*GetPathRequest) ProtoMessage() {} +func (*GetPathRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{102} } + +func (m *GetPathRequest) GetType() Resource { + if m != nil { + return m.Type + } + return Resource_GLOBAL +} + +func (m *GetPathRequest) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *GetPathRequest) GetFamily() uint32 { + if m != nil { + return m.Family + } + return 0 +} + +func (m *GetPathRequest) GetPrefixes() []*TableLookupPrefix { + if m != nil { + return m.Prefixes + } + return nil +} + type ValidateRibRequest struct { Type Resource `protobuf:"varint,1,opt,name=type,enum=gobgpapi.Resource" json:"type,omitempty"` Family uint32 `protobuf:"varint,2,opt,name=family" json:"family,omitempty"` @@ -2560,7 +2652,7 @@ type ValidateRibRequest struct { func (m *ValidateRibRequest) Reset() { *m = ValidateRibRequest{} } func (m *ValidateRibRequest) String() string { return proto.CompactTextString(m) } func (*ValidateRibRequest) ProtoMessage() {} -func (*ValidateRibRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{101} } +func (*ValidateRibRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{103} } func (m *ValidateRibRequest) GetType() Resource { if m != nil { @@ -2589,7 +2681,7 @@ type ValidateRibResponse struct { func (m *ValidateRibResponse) Reset() { *m = ValidateRibResponse{} } func (m *ValidateRibResponse) String() string { return proto.CompactTextString(m) } func (*ValidateRibResponse) ProtoMessage() {} -func (*ValidateRibResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{102} } +func (*ValidateRibResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{104} } type Peer struct { Families []uint32 `protobuf:"varint,1,rep,packed,name=families" json:"families,omitempty"` @@ -2608,7 +2700,7 @@ type Peer struct { func (m *Peer) Reset() { *m = Peer{} } func (m *Peer) String() string { return proto.CompactTextString(m) } func (*Peer) ProtoMessage() {} -func (*Peer) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{103} } +func (*Peer) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{105} } func (m *Peer) GetFamilies() []uint32 { if m != nil { @@ -2696,7 +2788,7 @@ type ApplyPolicy struct { func (m *ApplyPolicy) Reset() { *m = ApplyPolicy{} } func (m *ApplyPolicy) String() string { return proto.CompactTextString(m) } func (*ApplyPolicy) ProtoMessage() {} -func (*ApplyPolicy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{104} } +func (*ApplyPolicy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{106} } func (m *ApplyPolicy) GetInPolicy() *PolicyAssignment { if m != nil { @@ -2728,7 +2820,7 @@ type PrefixLimit struct { func (m *PrefixLimit) Reset() { *m = PrefixLimit{} } func (m *PrefixLimit) String() string { return proto.CompactTextString(m) } func (*PrefixLimit) ProtoMessage() {} -func (*PrefixLimit) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{105} } +func (*PrefixLimit) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{107} } func (m *PrefixLimit) GetFamily() uint32 { if m != nil { @@ -2779,7 +2871,7 @@ type PeerConf struct { func (m *PeerConf) Reset() { *m = PeerConf{} } func (m *PeerConf) String() string { return proto.CompactTextString(m) } func (*PeerConf) ProtoMessage() {} -func (*PeerConf) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{106} } +func (*PeerConf) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{108} } func (m *PeerConf) GetAuthPassword() string { if m != nil { @@ -2922,7 +3014,7 @@ type EbgpMultihop struct { func (m *EbgpMultihop) Reset() { *m = EbgpMultihop{} } func (m *EbgpMultihop) String() string { return proto.CompactTextString(m) } func (*EbgpMultihop) ProtoMessage() {} -func (*EbgpMultihop) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{107} } +func (*EbgpMultihop) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{109} } func (m *EbgpMultihop) GetEnabled() bool { if m != nil { @@ -2946,7 +3038,7 @@ type RouteReflector struct { func (m *RouteReflector) Reset() { *m = RouteReflector{} } func (m *RouteReflector) String() string { return proto.CompactTextString(m) } func (*RouteReflector) ProtoMessage() {} -func (*RouteReflector) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{108} } +func (*RouteReflector) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{110} } func (m *RouteReflector) GetRouteReflectorClient() bool { if m != nil { @@ -2989,7 +3081,7 @@ type PeerState struct { func (m *PeerState) Reset() { *m = PeerState{} } func (m *PeerState) String() string { return proto.CompactTextString(m) } func (*PeerState) ProtoMessage() {} -func (*PeerState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{109} } +func (*PeerState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{111} } func (m *PeerState) GetAuthPassword() string { if m != nil { @@ -3146,7 +3238,7 @@ type Messages struct { func (m *Messages) Reset() { *m = Messages{} } func (m *Messages) String() string { return proto.CompactTextString(m) } func (*Messages) ProtoMessage() {} -func (*Messages) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{110} } +func (*Messages) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{112} } func (m *Messages) GetReceived() *Message { if m != nil { @@ -3175,7 +3267,7 @@ type Message struct { func (m *Message) Reset() { *m = Message{} } func (m *Message) String() string { return proto.CompactTextString(m) } func (*Message) ProtoMessage() {} -func (*Message) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{111} } +func (*Message) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{113} } func (m *Message) GetNOTIFICATION() uint64 { if m != nil { @@ -3234,7 +3326,7 @@ type Queues struct { func (m *Queues) Reset() { *m = Queues{} } func (m *Queues) String() string { return proto.CompactTextString(m) } func (*Queues) ProtoMessage() {} -func (*Queues) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{112} } +func (*Queues) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{114} } func (m *Queues) GetInput() uint32 { if m != nil { @@ -3258,7 +3350,7 @@ type Timers struct { func (m *Timers) Reset() { *m = Timers{} } func (m *Timers) String() string { return proto.CompactTextString(m) } func (*Timers) ProtoMessage() {} -func (*Timers) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{113} } +func (*Timers) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{115} } func (m *Timers) GetConfig() *TimersConfig { if m != nil { @@ -3284,7 +3376,7 @@ type TimersConfig struct { func (m *TimersConfig) Reset() { *m = TimersConfig{} } func (m *TimersConfig) String() string { return proto.CompactTextString(m) } func (*TimersConfig) ProtoMessage() {} -func (*TimersConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{114} } +func (*TimersConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{116} } func (m *TimersConfig) GetConnectRetry() uint64 { if m != nil { @@ -3327,7 +3419,7 @@ type TimersState struct { func (m *TimersState) Reset() { *m = TimersState{} } func (m *TimersState) String() string { return proto.CompactTextString(m) } func (*TimersState) ProtoMessage() {} -func (*TimersState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{115} } +func (*TimersState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{117} } func (m *TimersState) GetConnectRetry() uint64 { if m != nil { @@ -3391,7 +3483,7 @@ type Transport struct { func (m *Transport) Reset() { *m = Transport{} } func (m *Transport) String() string { return proto.CompactTextString(m) } func (*Transport) ProtoMessage() {} -func (*Transport) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{116} } +func (*Transport) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{118} } func (m *Transport) GetLocalAddress() string { if m != nil { @@ -3449,7 +3541,7 @@ type RouteServer struct { func (m *RouteServer) Reset() { *m = RouteServer{} } func (m *RouteServer) String() string { return proto.CompactTextString(m) } func (*RouteServer) ProtoMessage() {} -func (*RouteServer) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{117} } +func (*RouteServer) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{119} } func (m *RouteServer) GetRouteServerClient() bool { if m != nil { @@ -3470,7 +3562,7 @@ type GracefulRestart struct { func (m *GracefulRestart) Reset() { *m = GracefulRestart{} } func (m *GracefulRestart) String() string { return proto.CompactTextString(m) } func (*GracefulRestart) ProtoMessage() {} -func (*GracefulRestart) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{118} } +func (*GracefulRestart) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{120} } func (m *GracefulRestart) GetEnabled() bool { if m != nil { @@ -3521,7 +3613,7 @@ type MpGracefulRestartConfig struct { func (m *MpGracefulRestartConfig) Reset() { *m = MpGracefulRestartConfig{} } func (m *MpGracefulRestartConfig) String() string { return proto.CompactTextString(m) } func (*MpGracefulRestartConfig) ProtoMessage() {} -func (*MpGracefulRestartConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{119} } +func (*MpGracefulRestartConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{121} } func (m *MpGracefulRestartConfig) GetEnabled() bool { if m != nil { @@ -3541,7 +3633,7 @@ type MpGracefulRestartState struct { func (m *MpGracefulRestartState) Reset() { *m = MpGracefulRestartState{} } func (m *MpGracefulRestartState) String() string { return proto.CompactTextString(m) } func (*MpGracefulRestartState) ProtoMessage() {} -func (*MpGracefulRestartState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{120} } +func (*MpGracefulRestartState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{122} } func (m *MpGracefulRestartState) GetEnabled() bool { if m != nil { @@ -3586,7 +3678,7 @@ type MpGracefulRestart struct { func (m *MpGracefulRestart) Reset() { *m = MpGracefulRestart{} } func (m *MpGracefulRestart) String() string { return proto.CompactTextString(m) } func (*MpGracefulRestart) ProtoMessage() {} -func (*MpGracefulRestart) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{121} } +func (*MpGracefulRestart) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{123} } func (m *MpGracefulRestart) GetConfig() *MpGracefulRestartConfig { if m != nil { @@ -3610,7 +3702,7 @@ type AfiSafiConfig struct { func (m *AfiSafiConfig) Reset() { *m = AfiSafiConfig{} } func (m *AfiSafiConfig) String() string { return proto.CompactTextString(m) } func (*AfiSafiConfig) ProtoMessage() {} -func (*AfiSafiConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{122} } +func (*AfiSafiConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{124} } func (m *AfiSafiConfig) GetFamily() uint32 { if m != nil { @@ -3636,7 +3728,7 @@ type AfiSafiState struct { func (m *AfiSafiState) Reset() { *m = AfiSafiState{} } func (m *AfiSafiState) String() string { return proto.CompactTextString(m) } func (*AfiSafiState) ProtoMessage() {} -func (*AfiSafiState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{123} } +func (*AfiSafiState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{125} } func (m *AfiSafiState) GetFamily() uint32 { if m != nil { @@ -3678,7 +3770,7 @@ type RouteSelectionOptionsConfig struct { func (m *RouteSelectionOptionsConfig) Reset() { *m = RouteSelectionOptionsConfig{} } func (m *RouteSelectionOptionsConfig) String() string { return proto.CompactTextString(m) } func (*RouteSelectionOptionsConfig) ProtoMessage() {} -func (*RouteSelectionOptionsConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{124} } +func (*RouteSelectionOptionsConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{126} } func (m *RouteSelectionOptionsConfig) GetAlwaysCompareMed() bool { if m != nil { @@ -3734,7 +3826,7 @@ type RouteSelectionOptionsState struct { func (m *RouteSelectionOptionsState) Reset() { *m = RouteSelectionOptionsState{} } func (m *RouteSelectionOptionsState) String() string { return proto.CompactTextString(m) } func (*RouteSelectionOptionsState) ProtoMessage() {} -func (*RouteSelectionOptionsState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{125} } +func (*RouteSelectionOptionsState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{127} } func (m *RouteSelectionOptionsState) GetAlwaysCompareMed() bool { if m != nil { @@ -3786,7 +3878,7 @@ type RouteSelectionOptions struct { func (m *RouteSelectionOptions) Reset() { *m = RouteSelectionOptions{} } func (m *RouteSelectionOptions) String() string { return proto.CompactTextString(m) } func (*RouteSelectionOptions) ProtoMessage() {} -func (*RouteSelectionOptions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{126} } +func (*RouteSelectionOptions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{128} } func (m *RouteSelectionOptions) GetConfig() *RouteSelectionOptionsConfig { if m != nil { @@ -3809,7 +3901,7 @@ type UseMultiplePathsConfig struct { func (m *UseMultiplePathsConfig) Reset() { *m = UseMultiplePathsConfig{} } func (m *UseMultiplePathsConfig) String() string { return proto.CompactTextString(m) } func (*UseMultiplePathsConfig) ProtoMessage() {} -func (*UseMultiplePathsConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{127} } +func (*UseMultiplePathsConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{129} } func (m *UseMultiplePathsConfig) GetEnabled() bool { if m != nil { @@ -3825,7 +3917,7 @@ type UseMultiplePathsState struct { func (m *UseMultiplePathsState) Reset() { *m = UseMultiplePathsState{} } func (m *UseMultiplePathsState) String() string { return proto.CompactTextString(m) } func (*UseMultiplePathsState) ProtoMessage() {} -func (*UseMultiplePathsState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{128} } +func (*UseMultiplePathsState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{130} } func (m *UseMultiplePathsState) GetEnabled() bool { if m != nil { @@ -3842,7 +3934,7 @@ type EbgpConfig struct { func (m *EbgpConfig) Reset() { *m = EbgpConfig{} } func (m *EbgpConfig) String() string { return proto.CompactTextString(m) } func (*EbgpConfig) ProtoMessage() {} -func (*EbgpConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{129} } +func (*EbgpConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{131} } func (m *EbgpConfig) GetAllowMultipleAs() bool { if m != nil { @@ -3866,7 +3958,7 @@ type EbgpState struct { func (m *EbgpState) Reset() { *m = EbgpState{} } func (m *EbgpState) String() string { return proto.CompactTextString(m) } func (*EbgpState) ProtoMessage() {} -func (*EbgpState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{130} } +func (*EbgpState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{132} } func (m *EbgpState) GetAllowMultipleAs() bool { if m != nil { @@ -3890,7 +3982,7 @@ type Ebgp struct { func (m *Ebgp) Reset() { *m = Ebgp{} } func (m *Ebgp) String() string { return proto.CompactTextString(m) } func (*Ebgp) ProtoMessage() {} -func (*Ebgp) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{131} } +func (*Ebgp) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{133} } func (m *Ebgp) GetConfig() *EbgpConfig { if m != nil { @@ -3913,7 +4005,7 @@ type IbgpConfig struct { func (m *IbgpConfig) Reset() { *m = IbgpConfig{} } func (m *IbgpConfig) String() string { return proto.CompactTextString(m) } func (*IbgpConfig) ProtoMessage() {} -func (*IbgpConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{132} } +func (*IbgpConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{134} } func (m *IbgpConfig) GetMaximumPaths() uint32 { if m != nil { @@ -3929,7 +4021,7 @@ type IbgpState struct { func (m *IbgpState) Reset() { *m = IbgpState{} } func (m *IbgpState) String() string { return proto.CompactTextString(m) } func (*IbgpState) ProtoMessage() {} -func (*IbgpState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{133} } +func (*IbgpState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{135} } func (m *IbgpState) GetMaximumPaths() uint32 { if m != nil { @@ -3946,7 +4038,7 @@ type Ibgp struct { func (m *Ibgp) Reset() { *m = Ibgp{} } func (m *Ibgp) String() string { return proto.CompactTextString(m) } func (*Ibgp) ProtoMessage() {} -func (*Ibgp) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{134} } +func (*Ibgp) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{136} } func (m *Ibgp) GetConfig() *IbgpConfig { if m != nil { @@ -3972,7 +4064,7 @@ type UseMultiplePaths struct { func (m *UseMultiplePaths) Reset() { *m = UseMultiplePaths{} } func (m *UseMultiplePaths) String() string { return proto.CompactTextString(m) } func (*UseMultiplePaths) ProtoMessage() {} -func (*UseMultiplePaths) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{135} } +func (*UseMultiplePaths) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{137} } func (m *UseMultiplePaths) GetConfig() *UseMultiplePathsConfig { if m != nil { @@ -4009,7 +4101,7 @@ type RouteTargetMembershipConfig struct { func (m *RouteTargetMembershipConfig) Reset() { *m = RouteTargetMembershipConfig{} } func (m *RouteTargetMembershipConfig) String() string { return proto.CompactTextString(m) } func (*RouteTargetMembershipConfig) ProtoMessage() {} -func (*RouteTargetMembershipConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{136} } +func (*RouteTargetMembershipConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{138} } func (m *RouteTargetMembershipConfig) GetDeferralTime() uint32 { if m != nil { @@ -4025,7 +4117,7 @@ type RouteTargetMembershipState struct { func (m *RouteTargetMembershipState) Reset() { *m = RouteTargetMembershipState{} } func (m *RouteTargetMembershipState) String() string { return proto.CompactTextString(m) } func (*RouteTargetMembershipState) ProtoMessage() {} -func (*RouteTargetMembershipState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{137} } +func (*RouteTargetMembershipState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{139} } func (m *RouteTargetMembershipState) GetDeferralTime() uint32 { if m != nil { @@ -4042,7 +4134,7 @@ type RouteTargetMembership struct { func (m *RouteTargetMembership) Reset() { *m = RouteTargetMembership{} } func (m *RouteTargetMembership) String() string { return proto.CompactTextString(m) } func (*RouteTargetMembership) ProtoMessage() {} -func (*RouteTargetMembership) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{138} } +func (*RouteTargetMembership) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{140} } func (m *RouteTargetMembership) GetConfig() *RouteTargetMembershipConfig { if m != nil { @@ -4067,7 +4159,7 @@ func (m *LongLivedGracefulRestartConfig) Reset() { *m = LongLivedGracefu func (m *LongLivedGracefulRestartConfig) String() string { return proto.CompactTextString(m) } func (*LongLivedGracefulRestartConfig) ProtoMessage() {} func (*LongLivedGracefulRestartConfig) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{139} + return fileDescriptor0, []int{141} } func (m *LongLivedGracefulRestartConfig) GetEnabled() bool { @@ -4095,7 +4187,7 @@ type LongLivedGracefulRestartState struct { func (m *LongLivedGracefulRestartState) Reset() { *m = LongLivedGracefulRestartState{} } func (m *LongLivedGracefulRestartState) String() string { return proto.CompactTextString(m) } func (*LongLivedGracefulRestartState) ProtoMessage() {} -func (*LongLivedGracefulRestartState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{140} } +func (*LongLivedGracefulRestartState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{142} } func (m *LongLivedGracefulRestartState) GetEnabled() bool { if m != nil { @@ -4140,7 +4232,7 @@ type LongLivedGracefulRestart struct { func (m *LongLivedGracefulRestart) Reset() { *m = LongLivedGracefulRestart{} } func (m *LongLivedGracefulRestart) String() string { return proto.CompactTextString(m) } func (*LongLivedGracefulRestart) ProtoMessage() {} -func (*LongLivedGracefulRestart) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{141} } +func (*LongLivedGracefulRestart) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{143} } func (m *LongLivedGracefulRestart) GetConfig() *LongLivedGracefulRestartConfig { if m != nil { @@ -4182,7 +4274,7 @@ type AfiSafi struct { func (m *AfiSafi) Reset() { *m = AfiSafi{} } func (m *AfiSafi) String() string { return proto.CompactTextString(m) } func (*AfiSafi) ProtoMessage() {} -func (*AfiSafi) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{142} } +func (*AfiSafi) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{144} } func (m *AfiSafi) GetMpGracefulRestart() *MpGracefulRestart { if m != nil { @@ -4249,7 +4341,7 @@ type Prefix struct { func (m *Prefix) Reset() { *m = Prefix{} } func (m *Prefix) String() string { return proto.CompactTextString(m) } func (*Prefix) ProtoMessage() {} -func (*Prefix) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{143} } +func (*Prefix) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{145} } func (m *Prefix) GetIpPrefix() string { if m != nil { @@ -4282,7 +4374,7 @@ type DefinedSet struct { func (m *DefinedSet) Reset() { *m = DefinedSet{} } func (m *DefinedSet) String() string { return proto.CompactTextString(m) } func (*DefinedSet) ProtoMessage() {} -func (*DefinedSet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{144} } +func (*DefinedSet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{146} } func (m *DefinedSet) GetType() DefinedType { if m != nil { @@ -4320,7 +4412,7 @@ type MatchSet struct { func (m *MatchSet) Reset() { *m = MatchSet{} } func (m *MatchSet) String() string { return proto.CompactTextString(m) } func (*MatchSet) ProtoMessage() {} -func (*MatchSet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{145} } +func (*MatchSet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{147} } func (m *MatchSet) GetType() MatchType { if m != nil { @@ -4344,7 +4436,7 @@ type AsPathLength struct { func (m *AsPathLength) Reset() { *m = AsPathLength{} } func (m *AsPathLength) String() string { return proto.CompactTextString(m) } func (*AsPathLength) ProtoMessage() {} -func (*AsPathLength) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{146} } +func (*AsPathLength) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{148} } func (m *AsPathLength) GetType() AsPathLengthType { if m != nil { @@ -4375,7 +4467,7 @@ type Conditions struct { func (m *Conditions) Reset() { *m = Conditions{} } func (m *Conditions) String() string { return proto.CompactTextString(m) } func (*Conditions) ProtoMessage() {} -func (*Conditions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{147} } +func (*Conditions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{149} } func (m *Conditions) GetPrefixSet() *MatchSet { if m != nil { @@ -4448,7 +4540,7 @@ type CommunityAction struct { func (m *CommunityAction) Reset() { *m = CommunityAction{} } func (m *CommunityAction) String() string { return proto.CompactTextString(m) } func (*CommunityAction) ProtoMessage() {} -func (*CommunityAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{148} } +func (*CommunityAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{150} } func (m *CommunityAction) GetType() CommunityActionType { if m != nil { @@ -4472,7 +4564,7 @@ type MedAction struct { func (m *MedAction) Reset() { *m = MedAction{} } func (m *MedAction) String() string { return proto.CompactTextString(m) } func (*MedAction) ProtoMessage() {} -func (*MedAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{149} } +func (*MedAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{151} } func (m *MedAction) GetType() MedActionType { if m != nil { @@ -4497,7 +4589,7 @@ type AsPrependAction struct { func (m *AsPrependAction) Reset() { *m = AsPrependAction{} } func (m *AsPrependAction) String() string { return proto.CompactTextString(m) } func (*AsPrependAction) ProtoMessage() {} -func (*AsPrependAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{150} } +func (*AsPrependAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{152} } func (m *AsPrependAction) GetAsn() uint32 { if m != nil { @@ -4528,7 +4620,7 @@ type NexthopAction struct { func (m *NexthopAction) Reset() { *m = NexthopAction{} } func (m *NexthopAction) String() string { return proto.CompactTextString(m) } func (*NexthopAction) ProtoMessage() {} -func (*NexthopAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{151} } +func (*NexthopAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{153} } func (m *NexthopAction) GetAddress() string { if m != nil { @@ -4551,7 +4643,7 @@ type LocalPrefAction struct { func (m *LocalPrefAction) Reset() { *m = LocalPrefAction{} } func (m *LocalPrefAction) String() string { return proto.CompactTextString(m) } func (*LocalPrefAction) ProtoMessage() {} -func (*LocalPrefAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{152} } +func (*LocalPrefAction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{154} } func (m *LocalPrefAction) GetValue() uint32 { if m != nil { @@ -4574,7 +4666,7 @@ type Actions struct { func (m *Actions) Reset() { *m = Actions{} } func (m *Actions) String() string { return proto.CompactTextString(m) } func (*Actions) ProtoMessage() {} -func (*Actions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{153} } +func (*Actions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{155} } func (m *Actions) GetRouteAction() RouteAction { if m != nil { @@ -4641,7 +4733,7 @@ type Statement struct { func (m *Statement) Reset() { *m = Statement{} } func (m *Statement) String() string { return proto.CompactTextString(m) } func (*Statement) ProtoMessage() {} -func (*Statement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{154} } +func (*Statement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{156} } func (m *Statement) GetName() string { if m != nil { @@ -4672,7 +4764,7 @@ type Policy struct { func (m *Policy) Reset() { *m = Policy{} } func (m *Policy) String() string { return proto.CompactTextString(m) } func (*Policy) ProtoMessage() {} -func (*Policy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{155} } +func (*Policy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{157} } func (m *Policy) GetName() string { if m != nil { @@ -4699,7 +4791,7 @@ type PolicyAssignment struct { func (m *PolicyAssignment) Reset() { *m = PolicyAssignment{} } func (m *PolicyAssignment) String() string { return proto.CompactTextString(m) } func (*PolicyAssignment) ProtoMessage() {} -func (*PolicyAssignment) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{156} } +func (*PolicyAssignment) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{158} } func (m *PolicyAssignment) GetType() PolicyType { if m != nil { @@ -4747,7 +4839,7 @@ type Roa struct { func (m *Roa) Reset() { *m = Roa{} } func (m *Roa) String() string { return proto.CompactTextString(m) } func (*Roa) ProtoMessage() {} -func (*Roa) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{157} } +func (*Roa) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{159} } func (m *Roa) GetAs() uint32 { if m != nil { @@ -4791,7 +4883,7 @@ type GetRoaRequest struct { func (m *GetRoaRequest) Reset() { *m = GetRoaRequest{} } func (m *GetRoaRequest) String() string { return proto.CompactTextString(m) } func (*GetRoaRequest) ProtoMessage() {} -func (*GetRoaRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{158} } +func (*GetRoaRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{160} } func (m *GetRoaRequest) GetFamily() uint32 { if m != nil { @@ -4807,7 +4899,7 @@ type GetRoaResponse struct { func (m *GetRoaResponse) Reset() { *m = GetRoaResponse{} } func (m *GetRoaResponse) String() string { return proto.CompactTextString(m) } func (*GetRoaResponse) ProtoMessage() {} -func (*GetRoaResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{159} } +func (*GetRoaResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{161} } func (m *GetRoaResponse) GetRoas() []*Roa { if m != nil { @@ -4827,7 +4919,7 @@ type Vrf struct { func (m *Vrf) Reset() { *m = Vrf{} } func (m *Vrf) String() string { return proto.CompactTextString(m) } func (*Vrf) ProtoMessage() {} -func (*Vrf) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{160} } +func (*Vrf) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{162} } func (m *Vrf) GetName() string { if m != nil { @@ -4876,7 +4968,7 @@ type Global struct { func (m *Global) Reset() { *m = Global{} } func (m *Global) String() string { return proto.CompactTextString(m) } func (*Global) ProtoMessage() {} -func (*Global) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{161} } +func (*Global) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{163} } func (m *Global) GetAs() uint32 { if m != nil { @@ -4932,7 +5024,7 @@ type TableInfo struct { func (m *TableInfo) Reset() { *m = TableInfo{} } func (m *TableInfo) String() string { return proto.CompactTextString(m) } func (*TableInfo) ProtoMessage() {} -func (*TableInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{162} } +func (*TableInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{164} } func (m *TableInfo) GetType() Resource { if m != nil { @@ -4983,7 +5075,7 @@ type GetRibInfoRequest struct { func (m *GetRibInfoRequest) Reset() { *m = GetRibInfoRequest{} } func (m *GetRibInfoRequest) String() string { return proto.CompactTextString(m) } func (*GetRibInfoRequest) ProtoMessage() {} -func (*GetRibInfoRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{163} } +func (*GetRibInfoRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{165} } func (m *GetRibInfoRequest) GetInfo() *TableInfo { if m != nil { @@ -4999,7 +5091,7 @@ type GetRibInfoResponse struct { func (m *GetRibInfoResponse) Reset() { *m = GetRibInfoResponse{} } func (m *GetRibInfoResponse) String() string { return proto.CompactTextString(m) } func (*GetRibInfoResponse) ProtoMessage() {} -func (*GetRibInfoResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{164} } +func (*GetRibInfoResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{166} } func (m *GetRibInfoResponse) GetInfo() *TableInfo { if m != nil { @@ -5110,6 +5202,8 @@ func init() { proto.RegisterType((*Table)(nil), "gobgpapi.Table") proto.RegisterType((*GetRibRequest)(nil), "gobgpapi.GetRibRequest") proto.RegisterType((*GetRibResponse)(nil), "gobgpapi.GetRibResponse") + proto.RegisterType((*TableLookupPrefix)(nil), "gobgpapi.TableLookupPrefix") + proto.RegisterType((*GetPathRequest)(nil), "gobgpapi.GetPathRequest") proto.RegisterType((*ValidateRibRequest)(nil), "gobgpapi.ValidateRibRequest") proto.RegisterType((*ValidateRibResponse)(nil), "gobgpapi.ValidateRibResponse") proto.RegisterType((*Peer)(nil), "gobgpapi.Peer") @@ -5175,6 +5269,7 @@ func init() { proto.RegisterType((*GetRibInfoRequest)(nil), "gobgpapi.GetRibInfoRequest") proto.RegisterType((*GetRibInfoResponse)(nil), "gobgpapi.GetRibInfoResponse") proto.RegisterEnum("gobgpapi.Resource", Resource_name, Resource_value) + proto.RegisterEnum("gobgpapi.TableLookupOption", TableLookupOption_name, TableLookupOption_value) proto.RegisterEnum("gobgpapi.DefinedType", DefinedType_name, DefinedType_value) proto.RegisterEnum("gobgpapi.MatchType", MatchType_name, MatchType_value) proto.RegisterEnum("gobgpapi.AsPathLengthType", AsPathLengthType_name, AsPathLengthType_value) @@ -5214,6 +5309,7 @@ type GobgpApiClient interface { EnableNeighbor(ctx context.Context, in *EnableNeighborRequest, opts ...grpc.CallOption) (*EnableNeighborResponse, error) DisableNeighbor(ctx context.Context, in *DisableNeighborRequest, opts ...grpc.CallOption) (*DisableNeighborResponse, error) GetRib(ctx context.Context, in *GetRibRequest, opts ...grpc.CallOption) (*GetRibResponse, error) + GetPath(ctx context.Context, in *GetPathRequest, opts ...grpc.CallOption) (GobgpApi_GetPathClient, error) ValidateRib(ctx context.Context, in *ValidateRibRequest, opts ...grpc.CallOption) (*ValidateRibResponse, error) AddPath(ctx context.Context, in *AddPathRequest, opts ...grpc.CallOption) (*AddPathResponse, error) DeletePath(ctx context.Context, in *DeletePathRequest, opts ...grpc.CallOption) (*DeletePathResponse, error) @@ -5371,6 +5467,38 @@ func (c *gobgpApiClient) GetRib(ctx context.Context, in *GetRibRequest, opts ... return out, nil } +func (c *gobgpApiClient) GetPath(ctx context.Context, in *GetPathRequest, opts ...grpc.CallOption) (GobgpApi_GetPathClient, error) { + stream, err := grpc.NewClientStream(ctx, &_GobgpApi_serviceDesc.Streams[0], c.cc, "/gobgpapi.GobgpApi/GetPath", opts...) + if err != nil { + return nil, err + } + x := &gobgpApiGetPathClient{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 GobgpApi_GetPathClient interface { + Recv() (*Path, error) + grpc.ClientStream +} + +type gobgpApiGetPathClient struct { + grpc.ClientStream +} + +func (x *gobgpApiGetPathClient) Recv() (*Path, error) { + m := new(Path) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + func (c *gobgpApiClient) ValidateRib(ctx context.Context, in *ValidateRibRequest, opts ...grpc.CallOption) (*ValidateRibResponse, error) { out := new(ValidateRibResponse) err := grpc.Invoke(ctx, "/gobgpapi.GobgpApi/ValidateRib", in, out, c.cc, opts...) @@ -5399,7 +5527,7 @@ func (c *gobgpApiClient) DeletePath(ctx context.Context, in *DeletePathRequest, } func (c *gobgpApiClient) MonitorRib(ctx context.Context, in *MonitorRibRequest, opts ...grpc.CallOption) (GobgpApi_MonitorRibClient, error) { - stream, err := grpc.NewClientStream(ctx, &_GobgpApi_serviceDesc.Streams[0], c.cc, "/gobgpapi.GobgpApi/MonitorRib", opts...) + stream, err := grpc.NewClientStream(ctx, &_GobgpApi_serviceDesc.Streams[1], c.cc, "/gobgpapi.GobgpApi/MonitorRib", opts...) if err != nil { return nil, err } @@ -5431,7 +5559,7 @@ func (x *gobgpApiMonitorRibClient) Recv() (*Destination, error) { } func (c *gobgpApiClient) MonitorPeerState(ctx context.Context, in *Arguments, opts ...grpc.CallOption) (GobgpApi_MonitorPeerStateClient, error) { - stream, err := grpc.NewClientStream(ctx, &_GobgpApi_serviceDesc.Streams[1], c.cc, "/gobgpapi.GobgpApi/MonitorPeerState", opts...) + stream, err := grpc.NewClientStream(ctx, &_GobgpApi_serviceDesc.Streams[2], c.cc, "/gobgpapi.GobgpApi/MonitorPeerState", opts...) if err != nil { return nil, err } @@ -5481,7 +5609,7 @@ func (c *gobgpApiClient) DisableMrt(ctx context.Context, in *DisableMrtRequest, } func (c *gobgpApiClient) InjectMrt(ctx context.Context, opts ...grpc.CallOption) (GobgpApi_InjectMrtClient, error) { - stream, err := grpc.NewClientStream(ctx, &_GobgpApi_serviceDesc.Streams[2], c.cc, "/gobgpapi.GobgpApi/InjectMrt", opts...) + stream, err := grpc.NewClientStream(ctx, &_GobgpApi_serviceDesc.Streams[3], c.cc, "/gobgpapi.GobgpApi/InjectMrt", opts...) if err != nil { return nil, err } @@ -5808,6 +5936,7 @@ type GobgpApiServer interface { EnableNeighbor(context.Context, *EnableNeighborRequest) (*EnableNeighborResponse, error) DisableNeighbor(context.Context, *DisableNeighborRequest) (*DisableNeighborResponse, error) GetRib(context.Context, *GetRibRequest) (*GetRibResponse, error) + GetPath(*GetPathRequest, GobgpApi_GetPathServer) error ValidateRib(context.Context, *ValidateRibRequest) (*ValidateRibResponse, error) AddPath(context.Context, *AddPathRequest) (*AddPathResponse, error) DeletePath(context.Context, *DeletePathRequest) (*DeletePathResponse, error) @@ -6069,6 +6198,27 @@ func _GobgpApi_GetRib_Handler(srv interface{}, ctx context.Context, dec func(int return interceptor(ctx, in, info, handler) } +func _GobgpApi_GetPath_Handler(srv interface{}, stream grpc.ServerStream) error { + m := new(GetPathRequest) + if err := stream.RecvMsg(m); err != nil { + return err + } + return srv.(GobgpApiServer).GetPath(m, &gobgpApiGetPathServer{stream}) +} + +type GobgpApi_GetPathServer interface { + Send(*Path) error + grpc.ServerStream +} + +type gobgpApiGetPathServer struct { + grpc.ServerStream +} + +func (x *gobgpApiGetPathServer) Send(m *Path) error { + return x.ServerStream.SendMsg(m) +} + func _GobgpApi_ValidateRib_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ValidateRibRequest) if err := dec(in); err != nil { @@ -6984,6 +7134,11 @@ var _GobgpApi_serviceDesc = grpc.ServiceDesc{ }, Streams: []grpc.StreamDesc{ { + StreamName: "GetPath", + Handler: _GobgpApi_GetPath_Handler, + ServerStreams: true, + }, + { StreamName: "MonitorRib", Handler: _GobgpApi_MonitorRib_Handler, ServerStreams: true, @@ -7005,442 +7160,450 @@ var _GobgpApi_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("gobgp.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 6985 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7c, 0xcd, 0x6f, 0x1c, 0x47, - 0x76, 0x38, 0xe7, 0x83, 0xc3, 0x99, 0x37, 0x33, 0x9c, 0x61, 0x91, 0x14, 0x47, 0xa4, 0xf5, 0xe1, - 0x5e, 0xcb, 0x92, 0x65, 0x5b, 0xb6, 0x64, 0x5b, 0xf6, 0x5a, 0x6b, 0xef, 0x8e, 0xc8, 0x11, 0x35, - 0x6b, 0x7e, 0xb9, 0x38, 0xd2, 0xca, 0xfb, 0xdb, 0xfd, 0xf5, 0xaf, 0x39, 0x5d, 0x33, 0xec, 0x9f, - 0x7b, 0xba, 0xdb, 0xdd, 0x3d, 0x34, 0x85, 0x00, 0x09, 0xb0, 0x01, 0x82, 0x00, 0x41, 0x2e, 0xb9, - 0x26, 0x40, 0x0e, 0xb9, 0x2d, 0x92, 0x43, 0x4e, 0x01, 0x72, 0xce, 0x06, 0x01, 0x16, 0xc8, 0x25, - 0x39, 0x06, 0xc9, 0x21, 0x7f, 0x40, 0x72, 0xc8, 0x21, 0x87, 0x1c, 0x82, 0xfa, 0xe8, 0xea, 0xea, - 0x8f, 0x21, 0x29, 0xad, 0x36, 0x41, 0x80, 0x9c, 0x66, 0xea, 0xbd, 0x57, 0xaf, 0x5e, 0x55, 0xbd, - 0x7a, 0xf5, 0x5e, 0x55, 0xf5, 0x83, 0xfa, 0xd8, 0x3d, 0x1a, 0x7b, 0x77, 0x3c, 0xdf, 0x0d, 0x5d, - 0x54, 0x65, 0x05, 0xc3, 0xb3, 0xb4, 0x1f, 0x03, 0xda, 0x26, 0xe1, 0x1e, 0xb1, 0xc6, 0xc7, 0x47, - 0xae, 0x8f, 0xc9, 0x37, 0x53, 0x12, 0x84, 0xe8, 0x36, 0xb4, 0x89, 0x63, 0x1c, 0xd9, 0xa4, 0x6b, - 0x9e, 0x10, 0x3f, 0xb4, 0x02, 0x62, 0x76, 0x0a, 0xd7, 0x0b, 0xb7, 0xaa, 0x38, 0x03, 0x47, 0x1d, - 0x58, 0x30, 0x4c, 0xd3, 0x27, 0x41, 0xd0, 0x29, 0x5e, 0x2f, 0xdc, 0xaa, 0xe1, 0xa8, 0xa8, 0x3d, - 0x80, 0xe5, 0x04, 0xef, 0xc0, 0x73, 0x9d, 0x80, 0xa0, 0x37, 0x60, 0xde, 0x23, 0xc4, 0x0f, 0x3a, - 0x85, 0xeb, 0xa5, 0x5b, 0xf5, 0x7b, 0x8b, 0x77, 0x22, 0x61, 0xee, 0x1c, 0x10, 0xe2, 0x63, 0x8e, - 0xd4, 0xc6, 0x50, 0xeb, 0xfa, 0xe3, 0xe9, 0x84, 0x38, 0x61, 0x80, 0xee, 0x40, 0xd5, 0x27, 0x81, - 0x3b, 0xf5, 0x87, 0x84, 0xc9, 0xb1, 0x78, 0x0f, 0xc5, 0xb5, 0xb0, 0xc0, 0x60, 0x49, 0x83, 0x2e, - 0x41, 0x65, 0x64, 0x4c, 0x2c, 0xfb, 0x39, 0x13, 0xa9, 0x89, 0x45, 0x09, 0x21, 0x28, 0x3b, 0xc6, - 0x84, 0x74, 0x4a, 0x4c, 0x50, 0xf6, 0x5f, 0xfb, 0x0d, 0x58, 0xec, 0x9a, 0xe6, 0x81, 0x11, 0x1e, - 0x47, 0xbd, 0x7f, 0xd1, 0xd6, 0x56, 0xa1, 0x72, 0xe2, 0x8f, 0x74, 0xcb, 0x14, 0x03, 0x30, 0x7f, - 0xe2, 0x8f, 0xfa, 0x26, 0xd2, 0xa0, 0xec, 0x19, 0xe1, 0x31, 0x6b, 0x2c, 0xd9, 0x4d, 0xda, 0x16, - 0xc3, 0x69, 0x37, 0xa0, 0x25, 0x1b, 0x17, 0xc3, 0x83, 0xa0, 0x3c, 0x9d, 0x5a, 0x7c, 0xbc, 0x1b, - 0x98, 0xfd, 0xd7, 0x7e, 0x5e, 0x80, 0xa5, 0x2d, 0x62, 0x93, 0x90, 0xfc, 0x1a, 0xe4, 0x8c, 0x07, - 0xab, 0x94, 0x18, 0xac, 0x48, 0xfe, 0xf2, 0x6c, 0xf9, 0xa5, 0xb0, 0xf3, 0x8a, 0xb0, 0x2b, 0x80, - 0x54, 0x59, 0x79, 0xb7, 0xb4, 0x4f, 0x00, 0x75, 0x4d, 0x33, 0xad, 0x68, 0xb4, 0x0d, 0x42, 0x7c, - 0x26, 0x7e, 0x56, 0x15, 0x18, 0x4e, 0x5b, 0x85, 0xe5, 0x44, 0x4d, 0xc1, 0xf0, 0x01, 0xac, 0xf2, - 0x66, 0x5e, 0x86, 0x67, 0x07, 0x2e, 0xa5, 0x2b, 0x0b, 0xb6, 0x4f, 0x61, 0x05, 0x93, 0x20, 0xbb, - 0x24, 0x14, 0x35, 0x2f, 0x24, 0xd4, 0x1c, 0xbd, 0x01, 0xcd, 0xa1, 0x3b, 0x99, 0x4c, 0x1d, 0x6b, - 0x68, 0x84, 0x96, 0xeb, 0x88, 0xd1, 0x4d, 0x02, 0xb5, 0x35, 0x58, 0x4d, 0xf1, 0x15, 0x0d, 0xfe, - 0x65, 0x01, 0x3a, 0x87, 0xee, 0x28, 0x7c, 0xc1, 0x56, 0x0f, 0xa1, 0x66, 0x5a, 0x3e, 0x19, 0xca, - 0x16, 0x17, 0xef, 0x7d, 0x14, 0x77, 0x75, 0x16, 0xc3, 0x18, 0xb1, 0x15, 0x55, 0xc6, 0x31, 0x1f, - 0xed, 0x3d, 0x40, 0x59, 0x02, 0x54, 0x81, 0x62, 0x7f, 0xaf, 0x3d, 0x87, 0x16, 0xa0, 0xb4, 0xff, - 0x64, 0xd0, 0x2e, 0xa0, 0x2a, 0x94, 0x1f, 0xee, 0x0f, 0x1e, 0xb7, 0x8b, 0xda, 0x06, 0x5c, 0xce, - 0x69, 0x4a, 0xf4, 0xec, 0x2b, 0x58, 0x3b, 0x3c, 0x9e, 0x86, 0xa6, 0xfb, 0xad, 0xf3, 0xaa, 0x47, - 0x73, 0x1d, 0x3a, 0x59, 0xd6, 0xa2, 0xd9, 0xbb, 0xb0, 0xda, 0x63, 0x46, 0xea, 0xc2, 0x8d, 0x52, - 0x75, 0x48, 0x57, 0x11, 0xcc, 0x9e, 0xc1, 0xa5, 0x2d, 0x2b, 0x78, 0x21, 0x6e, 0x17, 0xec, 0xc2, - 0x65, 0x58, 0xcb, 0x70, 0x16, 0x8d, 0x8e, 0xa1, 0xcd, 0xc5, 0xd9, 0xf5, 0xc3, 0xa8, 0xb9, 0x0d, - 0xa8, 0x99, 0xd3, 0x89, 0xa7, 0x87, 0xcf, 0x3d, 0xbe, 0xda, 0xe7, 0x71, 0x95, 0x02, 0x06, 0xcf, - 0x3d, 0x82, 0xd6, 0xa1, 0x3a, 0xb2, 0x6c, 0xc2, 0x6c, 0x1b, 0x6f, 0x4c, 0x96, 0x29, 0xce, 0x72, - 0x42, 0xe2, 0x9f, 0x18, 0x36, 0x5b, 0xe0, 0x65, 0x2c, 0xcb, 0xda, 0x32, 0x2c, 0x29, 0x0d, 0x89, - 0xd6, 0x97, 0x61, 0x49, 0x08, 0x16, 0x37, 0xcf, 0x16, 0xb5, 0x02, 0x14, 0xa4, 0xbf, 0x05, 0xed, - 0xbe, 0xf3, 0xff, 0xc9, 0x30, 0x54, 0x04, 0x7d, 0x45, 0x56, 0x89, 0xee, 0x12, 0x46, 0x78, 0x1c, - 0x74, 0x4a, 0x99, 0x5d, 0x82, 0x9a, 0x15, 0x8e, 0xa4, 0xb2, 0x2a, 0x02, 0x08, 0xa9, 0xfe, 0xb4, - 0x00, 0xcd, 0xae, 0x69, 0x3e, 0x9c, 0x78, 0xe7, 0xcf, 0x15, 0x82, 0xb2, 0xe7, 0xfa, 0xa1, 0xd8, - 0x27, 0xd8, 0x7f, 0xf4, 0x3d, 0x28, 0xb3, 0x51, 0x2e, 0x31, 0xe9, 0x6f, 0xc5, 0x2d, 0x27, 0x98, - 0xde, 0xd9, 0x75, 0x1d, 0x2b, 0x74, 0x7d, 0xcb, 0x19, 0x1f, 0xb8, 0xb6, 0x35, 0x7c, 0x8e, 0x59, - 0x2d, 0xed, 0x3d, 0x68, 0xa7, 0x31, 0x74, 0xe5, 0x1c, 0xe0, 0x5e, 0x7b, 0x8e, 0xae, 0x9c, 0x83, - 0xfd, 0xc3, 0xe4, 0x1a, 0x6a, 0xb3, 0x0d, 0x88, 0x31, 0x16, 0x1d, 0xf8, 0x01, 0xb4, 0xb9, 0x75, - 0x7a, 0xd9, 0x2e, 0xb0, 0x39, 0x8c, 0x39, 0x08, 0xb6, 0x03, 0x58, 0x12, 0x92, 0x61, 0xeb, 0x28, - 0xe2, 0x7b, 0x03, 0xe6, 0x43, 0x3a, 0xad, 0xc2, 0x5c, 0xb6, 0xe2, 0xde, 0x0e, 0x28, 0x18, 0x73, - 0x2c, 0x6d, 0x7e, 0x38, 0xf5, 0x7d, 0xe2, 0xf0, 0x76, 0xaa, 0x38, 0x2a, 0x6a, 0x3d, 0xa8, 0xe2, - 0x83, 0x2f, 0xfa, 0x9b, 0xae, 0x33, 0x3a, 0x43, 0xc8, 0x6b, 0x50, 0xf7, 0xc9, 0xc4, 0x0d, 0x89, - 0x2e, 0x65, 0xad, 0x61, 0xe0, 0xa0, 0x03, 0x2a, 0xf1, 0x1f, 0x95, 0xa1, 0x46, 0xf9, 0x1c, 0x86, - 0x46, 0xc8, 0x36, 0xf0, 0xa9, 0x17, 0x5a, 0x13, 0x2e, 0x56, 0x09, 0x8b, 0x12, 0x55, 0x66, 0xba, - 0xe6, 0x19, 0xa6, 0xc8, 0x30, 0xb2, 0x8c, 0x16, 0xa1, 0x38, 0xf5, 0xd8, 0xa4, 0x55, 0x71, 0x71, - 0xea, 0xf1, 0x26, 0x87, 0xae, 0x6f, 0xea, 0x96, 0x77, 0xf2, 0x21, 0xdb, 0xc6, 0x9a, 0xb4, 0x49, - 0x0a, 0xea, 0x7b, 0x27, 0x1f, 0x26, 0x09, 0xee, 0xb3, 0x3d, 0x4c, 0x25, 0xb8, 0x4f, 0x09, 0x3c, - 0x9f, 0x8c, 0xac, 0x53, 0xce, 0xa1, 0xc2, 0x09, 0x38, 0x28, 0xe2, 0x10, 0x13, 0xdc, 0xef, 0x2c, - 0xa4, 0x08, 0xee, 0xd3, 0x7e, 0x04, 0xc4, 0xb7, 0x0c, 0xbb, 0x53, 0xe5, 0x7b, 0x2b, 0x2f, 0xa1, - 0xef, 0x40, 0xd3, 0x27, 0x43, 0x62, 0x9d, 0x10, 0x21, 0x5d, 0x8d, 0x75, 0xa6, 0x11, 0x01, 0x19, - 0xf7, 0x14, 0xd1, 0xfd, 0x0e, 0x64, 0x88, 0xee, 0x53, 0x22, 0xce, 0x53, 0x77, 0xdc, 0xd0, 0x1a, - 0x3d, 0xef, 0xd4, 0x39, 0x11, 0x07, 0xee, 0x31, 0x18, 0x95, 0x73, 0x68, 0x0c, 0x8f, 0x89, 0xee, - 0x53, 0x43, 0xdd, 0x69, 0x30, 0x12, 0x60, 0x20, 0x66, 0xba, 0xd1, 0x0d, 0x58, 0x94, 0x04, 0x4c, - 0x59, 0x3a, 0x4d, 0x46, 0xd3, 0x8c, 0x68, 0xb8, 0x6f, 0x72, 0x15, 0xea, 0xc4, 0x31, 0x75, 0x77, - 0xa4, 0x9b, 0x46, 0x68, 0x74, 0x16, 0x19, 0x4d, 0x8d, 0x38, 0xe6, 0xfe, 0x68, 0xcb, 0x08, 0x0d, - 0xb4, 0x02, 0xf3, 0xc4, 0xf7, 0x5d, 0xbf, 0xd3, 0x62, 0x18, 0x5e, 0x40, 0xaf, 0x83, 0x90, 0x46, - 0xff, 0x66, 0x4a, 0xfc, 0xe7, 0x9d, 0x36, 0x43, 0xd6, 0x39, 0xec, 0x4b, 0x0a, 0xe2, 0x53, 0x11, - 0x90, 0x50, 0x50, 0x2c, 0x71, 0x01, 0x19, 0x88, 0x11, 0x68, 0x5f, 0x41, 0x19, 0x7b, 0x5f, 0x5b, - 0xe8, 0x4d, 0x28, 0x0f, 0x5d, 0x67, 0x24, 0xb4, 0x55, 0xb5, 0x2c, 0x42, 0x07, 0x31, 0xc3, 0xa3, - 0xb7, 0x60, 0x3e, 0xa0, 0x9a, 0xc4, 0xb4, 0xa4, 0x7e, 0x6f, 0x39, 0x49, 0xc8, 0x94, 0x0c, 0x73, - 0x0a, 0xed, 0x16, 0x2c, 0x6e, 0x93, 0x90, 0x72, 0x8f, 0xd6, 0x44, 0xec, 0x11, 0x15, 0x54, 0x8f, - 0x48, 0x7b, 0x00, 0x2d, 0x49, 0x29, 0x46, 0xe4, 0x16, 0x2c, 0x04, 0xc4, 0x3f, 0xc9, 0x75, 0x67, - 0x19, 0x61, 0x84, 0xd6, 0x7e, 0xcc, 0x96, 0xb9, 0xda, 0xcc, 0x8b, 0x59, 0xa5, 0x75, 0xa8, 0xda, - 0xd6, 0x88, 0x30, 0xd5, 0x2f, 0x71, 0xd5, 0x8f, 0xca, 0xda, 0x12, 0x73, 0x23, 0x55, 0xc1, 0xb4, - 0x6e, 0x64, 0x01, 0x5e, 0xba, 0xc5, 0xd8, 0x91, 0x4b, 0x30, 0x7e, 0x37, 0xda, 0x33, 0x2e, 0xc4, - 0x98, 0x32, 0x51, 0xc9, 0x05, 0x93, 0x3b, 0x72, 0x3b, 0xb9, 0x18, 0x97, 0x55, 0x58, 0x4e, 0xd0, - 0x0b, 0x36, 0xef, 0x40, 0x9b, 0xe9, 0xef, 0xc5, 0x98, 0x2c, 0xc3, 0x92, 0x42, 0x2d, 0x58, 0xbc, - 0x0f, 0x2b, 0xd2, 0x83, 0xb9, 0x18, 0x9b, 0x35, 0x58, 0x4d, 0xd5, 0x10, 0xac, 0x7e, 0x59, 0x88, - 0xfa, 0xfa, 0x63, 0x72, 0xe4, 0x1b, 0x11, 0xa7, 0x36, 0x94, 0xa6, 0xbe, 0x2d, 0xb8, 0xd0, 0xbf, - 0x4c, 0xdb, 0xdd, 0x69, 0x48, 0xd8, 0x66, 0x4e, 0xc3, 0xa6, 0x12, 0x33, 0x86, 0x14, 0x44, 0xb7, - 0xf3, 0x80, 0x36, 0x4e, 0x75, 0x86, 0xfa, 0x0e, 0xdc, 0x27, 0x8f, 0x8a, 0xe8, 0x43, 0xb8, 0xe4, - 0x90, 0xd3, 0xf0, 0xd8, 0xf5, 0xf4, 0xd0, 0xb7, 0xc6, 0x63, 0xe2, 0xeb, 0x3c, 0x22, 0x63, 0xf6, - 0xad, 0x8a, 0x57, 0x04, 0x76, 0xc0, 0x91, 0x5c, 0x1c, 0x74, 0x0f, 0x56, 0xd3, 0xb5, 0x4c, 0x62, - 0x1b, 0xcf, 0x85, 0xcd, 0x5b, 0x4e, 0x56, 0xda, 0xa2, 0x28, 0x3a, 0xe4, 0x89, 0xce, 0x88, 0x4e, - 0xb6, 0xa0, 0xb9, 0x4d, 0xc2, 0xa7, 0xfe, 0x28, 0xf2, 0x0c, 0x3e, 0x60, 0xcb, 0x87, 0x01, 0xc4, - 0x9a, 0x78, 0x1d, 0xca, 0x27, 0xfe, 0x28, 0x5a, 0x10, 0xcd, 0x78, 0x41, 0x50, 0x22, 0x86, 0xd2, - 0xde, 0x67, 0x3b, 0x74, 0xcc, 0x05, 0x5d, 0x83, 0xd2, 0x89, 0x1f, 0x2d, 0xeb, 0x54, 0x15, 0x8a, - 0x11, 0xbb, 0xa4, 0xd2, 0x8c, 0xf6, 0x41, 0xb4, 0x4b, 0xbe, 0x08, 0x1b, 0xb9, 0x31, 0xaa, 0x9c, - 0x9e, 0xc0, 0xca, 0x36, 0x09, 0xb7, 0xc8, 0xc8, 0x72, 0x88, 0x79, 0x48, 0xa4, 0x2b, 0xf3, 0x96, - 0x70, 0x04, 0xb8, 0x1b, 0xb3, 0x1a, 0xb3, 0x13, 0xa4, 0x74, 0xb2, 0xf8, 0xae, 0x2f, 0x23, 0xcb, - 0xa2, 0x12, 0x59, 0x76, 0x61, 0x35, 0xc5, 0x56, 0x1a, 0x8d, 0x72, 0x40, 0xc2, 0x68, 0x80, 0x56, - 0x32, 0x7c, 0x29, 0x2d, 0xa3, 0xd0, 0x3e, 0x87, 0x95, 0xae, 0x69, 0x66, 0x25, 0x7b, 0x13, 0x4a, - 0xd4, 0x90, 0xf3, 0x7e, 0xe6, 0x33, 0xa0, 0x04, 0x54, 0x57, 0x53, 0xf5, 0x45, 0x97, 0x0f, 0x61, - 0x8d, 0x8f, 0xc3, 0x4b, 0xf3, 0xa6, 0x7a, 0x6d, 0xd8, 0xb6, 0x70, 0x07, 0xe8, 0x5f, 0xea, 0x95, - 0x67, 0x99, 0x8a, 0x06, 0x1f, 0x42, 0x07, 0x13, 0xcf, 0x36, 0x86, 0x2f, 0xdf, 0x22, 0x8d, 0x36, - 0x72, 0x78, 0x88, 0x06, 0x56, 0xd9, 0x69, 0x03, 0xb3, 0xec, 0x13, 0xe2, 0x48, 0xc7, 0xf5, 0x0b, - 0x36, 0xb7, 0x0a, 0x58, 0xcc, 0xc1, 0x07, 0x00, 0x41, 0x04, 0x8c, 0x66, 0x42, 0xd9, 0x25, 0xe2, - 0x0a, 0x0a, 0x99, 0xf6, 0x98, 0x85, 0xa2, 0xe9, 0x36, 0xd0, 0x5d, 0xa8, 0x49, 0x22, 0xd1, 0x8b, - 0x5c, 0x56, 0x31, 0x95, 0x76, 0x89, 0x4d, 0x6c, 0x46, 0x2c, 0xed, 0xa7, 0x51, 0x60, 0xfa, 0x0a, - 0x1a, 0xc9, 0x99, 0xa1, 0xcb, 0xd1, 0xb4, 0x67, 0x5b, 0xde, 0x81, 0x35, 0x31, 0xb8, 0xaf, 0xa2, - 0x7f, 0xeb, 0x72, 0xba, 0xb3, 0x2d, 0x21, 0x68, 0x6f, 0x93, 0x50, 0x38, 0xcd, 0x62, 0x9a, 0xba, - 0xb0, 0xa4, 0xc0, 0xc4, 0x1c, 0xbd, 0x03, 0x55, 0x8f, 0x42, 0x2c, 0x12, 0xcd, 0x50, 0x5b, 0x09, - 0x03, 0x38, 0xad, 0xa4, 0xd0, 0x4e, 0xa1, 0xdd, 0x35, 0xcd, 0x04, 0x5b, 0x74, 0x0b, 0x2a, 0x0c, - 0xff, 0x5c, 0x88, 0x9d, 0xad, 0x2f, 0xf0, 0xe8, 0x53, 0xb8, 0xec, 0x93, 0x11, 0x35, 0xa7, 0xa7, - 0x56, 0x10, 0x5a, 0xce, 0x58, 0x57, 0xd4, 0x83, 0x8f, 0xe0, 0x1a, 0x23, 0xe8, 0x09, 0xfc, 0x61, - 0xac, 0x16, 0xcb, 0xb0, 0xa4, 0xb4, 0x2c, 0x7a, 0xf9, 0xb3, 0x02, 0x2c, 0x8b, 0x73, 0x90, 0x97, - 0x14, 0xe9, 0x3d, 0x58, 0xf6, 0xa8, 0x0b, 0xe4, 0x9f, 0x90, 0xac, 0x30, 0x28, 0x42, 0xc5, 0x72, - 0x44, 0xf3, 0x5d, 0x8a, 0xe7, 0xfb, 0x12, 0xac, 0x24, 0x65, 0x10, 0xc2, 0xfd, 0x59, 0x01, 0x56, - 0xc4, 0xfc, 0xfc, 0x37, 0x0c, 0xd8, 0xac, 0x9e, 0x95, 0x66, 0xf5, 0x8c, 0x9f, 0x9e, 0x24, 0xc4, - 0x95, 0xf1, 0xf9, 0xba, 0xd4, 0x9b, 0x6e, 0x10, 0x58, 0x63, 0x47, 0x55, 0xdc, 0x4f, 0x01, 0x0c, - 0x09, 0x14, 0x3d, 0x5a, 0x4f, 0xf7, 0x48, 0xa9, 0xa6, 0x50, 0x6b, 0x5f, 0xc1, 0x46, 0x2e, 0x67, - 0xa1, 0x9b, 0xbf, 0x0a, 0xeb, 0x67, 0xb0, 0x2e, 0xf5, 0xe5, 0xd5, 0x0a, 0x7d, 0x05, 0x36, 0x72, - 0x39, 0x8b, 0xd1, 0x9a, 0xc0, 0x15, 0x55, 0x1d, 0x5e, 0x69, 0xdb, 0x39, 0xd6, 0xe6, 0x3a, 0x5c, - 0x9d, 0xd5, 0x9c, 0x10, 0xe8, 0x27, 0x70, 0x35, 0x31, 0xaf, 0xaf, 0x76, 0x34, 0x5e, 0x87, 0x6b, - 0x33, 0xb9, 0x27, 0x6c, 0xd1, 0x21, 0xf3, 0xd1, 0x23, 0x5b, 0xf4, 0x19, 0xb3, 0x45, 0x11, 0x4c, - 0xee, 0xd9, 0x95, 0xb1, 0xed, 0x1e, 0x19, 0x76, 0x76, 0x61, 0x6c, 0x33, 0x38, 0x16, 0x78, 0xed, - 0x73, 0x40, 0x87, 0xa1, 0xe1, 0x27, 0x99, 0xbe, 0x40, 0xfd, 0x55, 0x58, 0x4e, 0xd4, 0x8f, 0x8f, - 0x65, 0x0e, 0x43, 0xd7, 0x4b, 0x8a, 0xba, 0x42, 0xdb, 0x8a, 0x81, 0x82, 0xf4, 0x4f, 0x4a, 0xb0, - 0x48, 0xc3, 0x9c, 0xa7, 0x86, 0x6d, 0x99, 0xec, 0xb4, 0x09, 0x7d, 0x18, 0xc5, 0x43, 0xdc, 0x97, - 0xb9, 0x9a, 0x8c, 0x87, 0x62, 0xc2, 0x3b, 0x6a, 0x68, 0x84, 0x3e, 0x86, 0x8a, 0x4f, 0x8c, 0x40, - 0x9e, 0x30, 0x5e, 0x9b, 0x59, 0x0d, 0x33, 0x32, 0x2c, 0xc8, 0xd1, 0x4d, 0x58, 0x98, 0x18, 0xe1, - 0xf0, 0x98, 0x98, 0xe2, 0xfc, 0x46, 0xf1, 0xc5, 0xb0, 0x6b, 0xe0, 0x08, 0x8b, 0xde, 0x87, 0xc6, - 0xd4, 0x11, 0x05, 0xdd, 0x08, 0x3a, 0xe5, 0x3c, 0xea, 0xba, 0x24, 0xe9, 0x06, 0xe8, 0x13, 0x68, - 0xc7, 0x35, 0x6c, 0xe2, 0x8c, 0xc3, 0xe3, 0xce, 0x7c, 0x5e, 0xad, 0x96, 0x24, 0xdb, 0x61, 0x54, - 0xda, 0x01, 0xcc, 0xf3, 0xd3, 0x85, 0x45, 0x80, 0xc3, 0x41, 0x77, 0xd0, 0xd3, 0xf7, 0xf6, 0xf7, - 0x7a, 0xed, 0x39, 0xb4, 0x0c, 0xad, 0xa8, 0x3c, 0xd0, 0x1f, 0xed, 0x3f, 0xd9, 0xdb, 0x6a, 0x17, - 0x50, 0x0b, 0xea, 0x1c, 0xf8, 0xb4, 0xbb, 0xd3, 0xdf, 0x6a, 0x17, 0xd1, 0x12, 0x34, 0x39, 0xa0, - 0xbf, 0xc7, 0x41, 0x25, 0xed, 0x01, 0x54, 0x78, 0xc7, 0x29, 0x35, 0xee, 0x75, 0x0f, 0xf7, 0x07, - 0x11, 0xcf, 0x26, 0xd4, 0x18, 0x60, 0x4f, 0xef, 0x1e, 0xb6, 0x0b, 0xb4, 0xb2, 0x28, 0xee, 0xf4, - 0xf6, 0xb6, 0xd9, 0xb9, 0xcf, 0xbf, 0x96, 0xa1, 0x7c, 0x20, 0x0e, 0xd1, 0x1d, 0xdb, 0xb7, 0xa2, - 0x13, 0x7f, 0xfa, 0x9f, 0x86, 0xa0, 0x9e, 0x11, 0x86, 0x3e, 0x8f, 0x0e, 0x1a, 0x58, 0x94, 0xd8, - 0x22, 0x1b, 0x47, 0x01, 0x20, 0xfd, 0x4b, 0x6b, 0x1f, 0x91, 0x20, 0x14, 0xfe, 0x3f, 0xfb, 0x4f, - 0x03, 0x0c, 0x2b, 0xd0, 0xbf, 0xb5, 0xc2, 0x63, 0xd3, 0x37, 0xbe, 0x65, 0x5e, 0x7e, 0x15, 0x83, - 0x15, 0xfc, 0x48, 0x40, 0xd0, 0x55, 0x80, 0x13, 0x39, 0x79, 0xec, 0x60, 0x63, 0x1e, 0x2b, 0x10, - 0xd4, 0x83, 0xa5, 0xb8, 0xa4, 0x9b, 0x24, 0x34, 0x2c, 0x9b, 0x1d, 0x6f, 0xd4, 0xef, 0x75, 0x66, - 0xe9, 0x00, 0x6e, 0xc7, 0x55, 0xb6, 0x58, 0x0d, 0xf4, 0x3e, 0xac, 0x38, 0xae, 0x6e, 0x4d, 0x3c, - 0xba, 0x45, 0x87, 0xb1, 0x40, 0x55, 0x6e, 0xe8, 0x1d, 0xb7, 0x2f, 0x50, 0x52, 0xb0, 0x38, 0xf4, - 0xae, 0x25, 0x2e, 0x23, 0xae, 0x00, 0xf0, 0xf3, 0x42, 0xdd, 0x08, 0x1c, 0x76, 0x10, 0xd2, 0xc4, - 0x35, 0x0e, 0xe9, 0x06, 0x0e, 0xda, 0x00, 0x51, 0xd0, 0x2d, 0x93, 0x9d, 0x80, 0xd4, 0x70, 0x95, - 0x03, 0xfa, 0xa6, 0x38, 0x1d, 0x0d, 0x89, 0x4f, 0x4c, 0x76, 0xf4, 0x51, 0xc5, 0xb2, 0x8c, 0x56, - 0xd8, 0xba, 0xb0, 0xf9, 0x79, 0x47, 0x15, 0xf3, 0x02, 0xba, 0x05, 0x6d, 0x2b, 0xd0, 0x47, 0xbe, - 0x3b, 0xd1, 0xc9, 0x69, 0x48, 0x7c, 0xc7, 0xb0, 0xd9, 0x61, 0x47, 0x15, 0x2f, 0x5a, 0xc1, 0x23, - 0xdf, 0x9d, 0xf4, 0x04, 0x94, 0x8e, 0xb4, 0x23, 0x8e, 0x6f, 0x75, 0xcb, 0x63, 0xe7, 0x1e, 0x35, - 0x0c, 0x11, 0xa8, 0xef, 0xc9, 0x1b, 0x92, 0x76, 0x7c, 0x43, 0x82, 0xde, 0x01, 0x64, 0x05, 0x7a, - 0x14, 0x91, 0x59, 0x0e, 0x1b, 0x37, 0x76, 0xe8, 0x51, 0xc5, 0x6d, 0x2b, 0xd8, 0xe3, 0x88, 0x3e, - 0x87, 0xd3, 0xb9, 0xb2, 0x4c, 0xe2, 0x84, 0xd6, 0xc8, 0x22, 0x7e, 0x07, 0xf1, 0x33, 0xa6, 0x18, - 0x82, 0xde, 0x82, 0xb6, 0xed, 0x0e, 0x0d, 0x5b, 0x57, 0xa8, 0x96, 0x19, 0x55, 0x8b, 0xc1, 0xfb, - 0x12, 0xac, 0xfd, 0x71, 0x01, 0xea, 0x5b, 0x84, 0xee, 0xc6, 0x7c, 0x9a, 0xa9, 0x96, 0xb1, 0xc3, - 0x2a, 0x11, 0x9d, 0x8a, 0x52, 0x7c, 0xf8, 0x5a, 0x3c, 0xe3, 0xf0, 0x15, 0xdd, 0x84, 0x96, 0xed, - 0x3a, 0x34, 0x98, 0xe4, 0xd5, 0x48, 0xb4, 0x83, 0x2f, 0x72, 0xf0, 0x81, 0x80, 0x52, 0x09, 0x83, - 0x63, 0xd7, 0x0f, 0x55, 0x4a, 0xae, 0xae, 0x2d, 0x01, 0x8f, 0x48, 0xb5, 0xbf, 0x28, 0xc0, 0x3c, - 0x3b, 0x78, 0x44, 0x6f, 0x26, 0x82, 0xaf, 0xbc, 0x33, 0xe4, 0x99, 0x91, 0xd7, 0xcc, 0x2b, 0xad, - 0xef, 0x42, 0xc3, 0x8c, 0xbb, 0x1f, 0x59, 0x9b, 0x44, 0x60, 0x27, 0xb1, 0x38, 0x41, 0xca, 0x8e, - 0xfa, 0xdc, 0x20, 0xd4, 0x85, 0x77, 0x24, 0x96, 0x14, 0x05, 0xf1, 0xbd, 0x45, 0xbb, 0xcf, 0x02, - 0xe3, 0x17, 0x3e, 0x59, 0xd5, 0x3e, 0xe6, 0xc7, 0x4f, 0xb4, 0x9e, 0xd8, 0x6a, 0x2e, 0x58, 0xd1, - 0x06, 0x24, 0x16, 0x1f, 0x51, 0x5a, 0xbd, 0xe8, 0xb0, 0xcd, 0xba, 0x22, 0x8d, 0x55, 0xa2, 0xa4, - 0xaa, 0x04, 0xdd, 0x95, 0x12, 0xad, 0x45, 0xb7, 0x57, 0xd4, 0x88, 0x11, 0xe2, 0xb3, 0x45, 0x46, - 0x39, 0x44, 0xbe, 0x7a, 0x13, 0xcb, 0x32, 0xfa, 0x04, 0x1a, 0x86, 0xe7, 0xd9, 0xcf, 0xa3, 0xc1, - 0xe3, 0x67, 0x72, 0xca, 0xb0, 0x77, 0x29, 0x56, 0x78, 0x76, 0x75, 0x23, 0x2e, 0xc8, 0xe3, 0xbe, - 0x52, 0xfa, 0xb8, 0x8f, 0xb6, 0xa9, 0x1c, 0xf7, 0x3d, 0x80, 0x26, 0x39, 0x1a, 0x7b, 0xfa, 0x64, - 0x6a, 0x87, 0xd6, 0xb1, 0xeb, 0x89, 0x4b, 0xcb, 0x4b, 0x71, 0x85, 0xde, 0xd1, 0xd8, 0xdb, 0x15, - 0x58, 0xdc, 0x20, 0x4a, 0x09, 0x75, 0xa1, 0xc5, 0x8f, 0x63, 0x7c, 0x32, 0xb2, 0xc9, 0x30, 0x74, - 0x7d, 0x36, 0xbd, 0x49, 0x53, 0x47, 0x09, 0x70, 0x84, 0xc7, 0x8b, 0x7e, 0xa2, 0x8c, 0x6e, 0x42, - 0xd9, 0x72, 0x46, 0x2e, 0xb3, 0xa4, 0x89, 0xe0, 0x88, 0xca, 0xc9, 0xb7, 0x54, 0x46, 0x40, 0xdd, - 0x80, 0xd0, 0x9a, 0x10, 0x3f, 0x10, 0xd6, 0x54, 0x71, 0x03, 0x06, 0x0c, 0x8e, 0x05, 0x9e, 0x06, - 0x5d, 0xa1, 0x6f, 0x38, 0x01, 0x3b, 0x96, 0xab, 0xa6, 0xf9, 0x0e, 0x22, 0x14, 0x8e, 0xa9, 0xe8, - 0x38, 0xf3, 0x8e, 0xf0, 0x33, 0x47, 0x66, 0x42, 0x13, 0xe3, 0xcc, 0x7a, 0x21, 0x9c, 0x05, 0x7e, - 0x04, 0xc5, 0x0b, 0x68, 0x0b, 0xda, 0x63, 0xdf, 0x18, 0x92, 0xd1, 0xd4, 0xd6, 0x7d, 0x12, 0x50, - 0xf7, 0x83, 0x19, 0xd9, 0xfa, 0xbd, 0xcb, 0x8a, 0x9f, 0x22, 0x28, 0x30, 0x27, 0xc0, 0xad, 0x71, - 0x12, 0x80, 0xee, 0x40, 0xcd, 0x18, 0x59, 0x7a, 0x60, 0x8c, 0xac, 0xa0, 0x53, 0x67, 0x6b, 0x6b, - 0x49, 0x99, 0xe4, 0x91, 0x75, 0x68, 0x8c, 0x2c, 0x5c, 0x35, 0xf8, 0x9f, 0x40, 0xfb, 0x9b, 0x02, - 0xd4, 0x95, 0xa9, 0x47, 0x1f, 0x43, 0xcd, 0x72, 0xf4, 0x44, 0xfc, 0x71, 0x96, 0xab, 0x57, 0xb5, - 0x1c, 0x51, 0xf1, 0xfb, 0xd0, 0x24, 0xa7, 0x74, 0x08, 0x92, 0x1a, 0x76, 0x56, 0xe5, 0x06, 0xaf, - 0x10, 0x33, 0xb0, 0x26, 0x2a, 0x83, 0xd2, 0xf9, 0x0c, 0x78, 0x05, 0xb1, 0xfa, 0x7f, 0x13, 0xea, - 0xdc, 0x86, 0xed, 0x58, 0x13, 0x6b, 0xe6, 0x09, 0x32, 0x7a, 0x1d, 0x1a, 0x13, 0xe3, 0x34, 0xb6, - 0x82, 0x7c, 0xed, 0xd5, 0x27, 0xc6, 0xa9, 0x34, 0x96, 0x1f, 0xc2, 0xa5, 0x40, 0x5c, 0x6d, 0xea, - 0xe1, 0xb1, 0x4f, 0x82, 0x63, 0xd7, 0x36, 0x75, 0x6f, 0x18, 0x0a, 0x5b, 0xb6, 0x12, 0x61, 0x07, - 0x11, 0xf2, 0x60, 0x18, 0x6a, 0xff, 0x31, 0x0f, 0xd5, 0x68, 0x4d, 0xa0, 0xef, 0x40, 0xd3, 0x98, - 0x86, 0xc7, 0xba, 0x67, 0x04, 0xc1, 0xb7, 0xae, 0x6f, 0x0a, 0xeb, 0xde, 0xa0, 0xc0, 0x03, 0x01, - 0x43, 0xd7, 0xa1, 0x6e, 0x92, 0x60, 0xe8, 0x5b, 0x9e, 0x72, 0x47, 0xa9, 0x82, 0xd0, 0x65, 0xa8, - 0xf2, 0x8d, 0xc5, 0x08, 0xa2, 0x63, 0x48, 0x56, 0xee, 0x32, 0x8b, 0x2e, 0xb7, 0xbd, 0xe8, 0x98, - 0xb4, 0xcc, 0x38, 0xb4, 0x22, 0x78, 0x57, 0x9c, 0x2c, 0xaf, 0xc1, 0x82, 0x47, 0x88, 0x4f, 0x99, - 0xf0, 0xd3, 0xc6, 0x0a, 0x2d, 0x76, 0x03, 0xba, 0xa5, 0x33, 0xc4, 0xd8, 0x77, 0xa7, 0x1e, 0x5b, - 0x39, 0x35, 0x5c, 0xa3, 0x90, 0x6d, 0x0a, 0xa0, 0x5b, 0x3a, 0x43, 0x33, 0x6b, 0xc6, 0x6f, 0x56, - 0xaa, 0x14, 0xc0, 0x2e, 0x3c, 0xf7, 0x60, 0xc9, 0x27, 0x13, 0xf7, 0x84, 0xe8, 0x9e, 0x6f, 0x9d, - 0x18, 0x21, 0x75, 0x0b, 0xd8, 0x22, 0x59, 0xbc, 0xa7, 0x65, 0x8d, 0xc4, 0x1d, 0xcc, 0x68, 0x0f, - 0x38, 0x69, 0x37, 0xc0, 0x2d, 0x3f, 0x09, 0xa0, 0x3b, 0x32, 0x5f, 0x39, 0x23, 0xdb, 0xf0, 0x74, - 0xd3, 0x98, 0x78, 0x96, 0x33, 0x66, 0xeb, 0xa7, 0x8a, 0xdb, 0x0c, 0xf3, 0xc8, 0x36, 0xbc, 0x2d, - 0x0e, 0x47, 0x37, 0x60, 0x31, 0x20, 0x8e, 0xa9, 0x8b, 0x0b, 0xdd, 0xf0, 0xb9, 0x70, 0x48, 0x9a, - 0x14, 0xba, 0x19, 0x01, 0x69, 0x07, 0xc5, 0x9d, 0xd7, 0xd0, 0xf0, 0xd8, 0x7a, 0x68, 0xe0, 0x1a, - 0x87, 0x6c, 0x1a, 0xac, 0x83, 0x7c, 0x78, 0x29, 0xb6, 0xc1, 0xb0, 0x7c, 0xbc, 0x29, 0x72, 0x11, - 0x8a, 0x96, 0xc9, 0x9c, 0x92, 0x1a, 0x2e, 0x5a, 0x26, 0xfa, 0x14, 0x9a, 0xe2, 0xa6, 0xc9, 0xa6, - 0x0a, 0x16, 0x74, 0x16, 0xd3, 0x5b, 0x97, 0xa2, 0x7e, 0xb8, 0xe1, 0xc5, 0x85, 0x80, 0xaa, 0x83, - 0x98, 0x47, 0x31, 0x53, 0xdc, 0x4b, 0x69, 0xf0, 0xc9, 0x14, 0xd3, 0xf4, 0x2e, 0xa0, 0xd8, 0x91, - 0x71, 0x42, 0xe2, 0x8f, 0x8c, 0x21, 0x61, 0x5e, 0x4b, 0x0d, 0x2f, 0x49, 0x7f, 0x26, 0x42, 0x50, - 0x3f, 0xf4, 0xc4, 0x1f, 0x31, 0x9f, 0xa5, 0xc6, 0x4e, 0x56, 0xd1, 0x75, 0x68, 0x18, 0xb6, 0xed, - 0x7e, 0xab, 0x53, 0xc5, 0x35, 0x82, 0xc8, 0x51, 0x61, 0xb0, 0xfd, 0x6f, 0x9d, 0x6e, 0x80, 0xde, - 0x84, 0x96, 0xcf, 0xc3, 0x31, 0x3d, 0xd2, 0x88, 0x65, 0x36, 0xc2, 0x4d, 0x01, 0x3e, 0x60, 0x8a, - 0xa1, 0xdd, 0x85, 0x56, 0x6a, 0xc2, 0x50, 0x15, 0xca, 0xc2, 0xaf, 0x5e, 0x80, 0x52, 0x77, 0x67, - 0xa7, 0x5d, 0x40, 0x75, 0x58, 0xc0, 0xbd, 0x83, 0x9d, 0xee, 0x66, 0xaf, 0x5d, 0xd4, 0xbe, 0x80, - 0x86, 0x6a, 0xe0, 0x51, 0x07, 0x16, 0xf8, 0xb1, 0x78, 0xf4, 0x6e, 0x29, 0x2a, 0xb2, 0x15, 0x28, - 0xa8, 0xf4, 0x30, 0xb4, 0xe5, 0x0a, 0x14, 0xb0, 0x41, 0x68, 0x6b, 0xbf, 0x5d, 0x80, 0xc5, 0xa4, - 0xbd, 0xa7, 0x8b, 0x32, 0xb5, 0x45, 0xe8, 0x43, 0xdb, 0x8a, 0x22, 0xd2, 0x2a, 0x5e, 0x49, 0xee, - 0x07, 0x9b, 0x0c, 0x87, 0x1e, 0xc0, 0x7a, 0xb6, 0xd6, 0x34, 0xa0, 0x7e, 0x90, 0xbc, 0xee, 0x5e, - 0x4b, 0xd7, 0x64, 0xf8, 0xbe, 0xa9, 0xfd, 0x79, 0x05, 0x6a, 0x72, 0xf7, 0xf8, 0x2f, 0x58, 0xd2, - 0x77, 0xa0, 0x3a, 0x21, 0x41, 0x60, 0x8c, 0x85, 0x73, 0x96, 0xd8, 0x6e, 0x77, 0x05, 0x06, 0x4b, - 0x9a, 0x5c, 0x13, 0x30, 0x7f, 0xae, 0x09, 0xa8, 0x9c, 0x61, 0x02, 0x16, 0xce, 0x34, 0x01, 0xd5, - 0x94, 0x09, 0xb8, 0x05, 0x95, 0x6f, 0xa6, 0x64, 0x4a, 0x02, 0xb1, 0xcd, 0x29, 0x3b, 0xe9, 0x97, - 0x0c, 0x8e, 0x05, 0x1e, 0xdd, 0xce, 0x33, 0x16, 0x7c, 0xc5, 0x5e, 0xd0, 0x10, 0xd4, 0x2f, 0x6c, - 0x08, 0x1a, 0x79, 0x86, 0x80, 0xdd, 0xd1, 0x06, 0x01, 0x0d, 0xa5, 0x78, 0x10, 0xde, 0x64, 0x54, - 0x0d, 0x01, 0xe4, 0x33, 0xfc, 0x11, 0x5c, 0x0a, 0xa6, 0x1e, 0xdd, 0x52, 0x88, 0x49, 0x4d, 0x82, - 0x71, 0x64, 0xd9, 0x56, 0x48, 0xdd, 0xa9, 0x45, 0x76, 0x3f, 0xb4, 0x2a, 0xb1, 0x9b, 0x0a, 0x92, - 0x8e, 0x11, 0x75, 0x7c, 0x38, 0x5f, 0xbe, 0xb0, 0xab, 0x47, 0x63, 0x8f, 0xf3, 0xfc, 0x3e, 0xd4, - 0x0d, 0x73, 0x62, 0x45, 0xcd, 0xb6, 0xd3, 0xb1, 0xbf, 0xd4, 0xaf, 0x3b, 0x5d, 0x4a, 0xc6, 0x1d, - 0x15, 0x30, 0xe4, 0x7f, 0xea, 0xd5, 0x45, 0xb7, 0xcd, 0x6c, 0xad, 0x37, 0xb1, 0x2c, 0x53, 0x9c, - 0x31, 0x1c, 0x12, 0x2f, 0x24, 0xa6, 0x58, 0xec, 0xb2, 0x4c, 0x63, 0x16, 0x23, 0x7e, 0x3a, 0xb8, - 0x2c, 0x4c, 0x41, 0xfc, 0x68, 0x70, 0x19, 0xe6, 0xdd, 0x69, 0xa8, 0x7f, 0xd3, 0x59, 0xe1, 0xf7, - 0x8d, 0xee, 0x34, 0xfc, 0x92, 0xc6, 0x62, 0x23, 0xdb, 0xf5, 0x82, 0xce, 0x2a, 0x03, 0xf2, 0x82, - 0x76, 0x1b, 0x20, 0x16, 0x0e, 0x55, 0xa0, 0xf8, 0xe4, 0x80, 0x3f, 0xa4, 0xd8, 0xda, 0xff, 0xd1, - 0x5e, 0xbb, 0x80, 0x00, 0x2a, 0x07, 0x8f, 0x9e, 0xe9, 0x9b, 0x83, 0x76, 0x51, 0xfb, 0x7f, 0x50, - 0x8d, 0x34, 0x15, 0xbd, 0xab, 0x88, 0xce, 0x7d, 0x89, 0xa5, 0x8c, 0x3e, 0x2b, 0xbd, 0xb9, 0x01, - 0xe5, 0x20, 0x7a, 0xdd, 0x90, 0x4b, 0xca, 0xd0, 0xda, 0x2f, 0x0a, 0xb0, 0x20, 0x20, 0x48, 0x83, - 0xc6, 0xde, 0xfe, 0xa0, 0xff, 0xa8, 0xbf, 0xd9, 0x1d, 0xf4, 0xf7, 0xf7, 0x58, 0x2b, 0x65, 0x9c, - 0x80, 0x51, 0x47, 0xe0, 0xc9, 0xc1, 0x56, 0x77, 0xd0, 0x63, 0x8c, 0xcb, 0x58, 0x94, 0x68, 0xd4, - 0xb2, 0x7f, 0xd0, 0xdb, 0x13, 0x2f, 0x72, 0xd8, 0x7f, 0xf4, 0x1a, 0xd4, 0xbe, 0xe8, 0xf5, 0x0e, - 0xba, 0x3b, 0xfd, 0xa7, 0x3d, 0xb6, 0x04, 0xcb, 0x38, 0x06, 0x50, 0x93, 0x86, 0x7b, 0x8f, 0x70, - 0xef, 0xf0, 0x31, 0x5b, 0x66, 0x65, 0x1c, 0x15, 0x69, 0xbd, 0xad, 0xfe, 0xe1, 0x66, 0x17, 0x6f, - 0xf5, 0xb6, 0xd8, 0x02, 0x2b, 0xe3, 0x18, 0x40, 0x47, 0x75, 0xb0, 0x3f, 0xe8, 0xee, 0xb0, 0xe5, - 0x55, 0xc6, 0xbc, 0xa0, 0xdd, 0x87, 0x0a, 0x5f, 0x25, 0x14, 0x6f, 0x39, 0xde, 0x34, 0x14, 0x9e, - 0x0a, 0x2f, 0x50, 0xb9, 0xdd, 0x69, 0x48, 0xc1, 0x22, 0x3c, 0xe0, 0x25, 0x8d, 0x40, 0x85, 0xfb, - 0xa9, 0xe8, 0x0e, 0x54, 0xa8, 0xeb, 0x6d, 0x8d, 0xc5, 0xe8, 0x5e, 0x4a, 0x7b, 0xb2, 0x9b, 0x0c, - 0x8b, 0x05, 0x15, 0x7a, 0x3b, 0x79, 0x23, 0xbf, 0x9a, 0x26, 0x4f, 0xdc, 0xc9, 0xff, 0xa2, 0x00, - 0x0d, 0x95, 0x0b, 0x5d, 0x42, 0x43, 0xd7, 0x71, 0xc8, 0x30, 0xd4, 0x7d, 0x12, 0xfa, 0xcf, 0xa3, - 0xc1, 0x16, 0x40, 0x4c, 0x61, 0x74, 0x2d, 0x30, 0x67, 0x49, 0x3e, 0x0f, 0x29, 0xe3, 0x2a, 0x05, - 0x50, 0x4e, 0x74, 0x83, 0xfb, 0x9a, 0x10, 0xcf, 0xb0, 0xad, 0x13, 0xa2, 0xa7, 0x5e, 0x44, 0x2d, - 0x49, 0x4c, 0x5f, 0x20, 0xd0, 0x16, 0x5c, 0x9d, 0x58, 0x8e, 0x35, 0x99, 0x4e, 0x74, 0xa9, 0xb7, - 0xd4, 0xef, 0x8b, 0xab, 0xf2, 0x19, 0x7a, 0x4d, 0x50, 0x75, 0x55, 0xa2, 0x88, 0x8b, 0xf6, 0xf3, - 0x22, 0xd4, 0x95, 0xee, 0xfd, 0x0f, 0xed, 0x06, 0x3b, 0xc7, 0x21, 0x63, 0x37, 0xb4, 0x0c, 0x6a, - 0x9c, 0x62, 0xe1, 0xb8, 0x22, 0xa2, 0x18, 0xf7, 0x38, 0x12, 0x33, 0x7e, 0xc0, 0xc3, 0x15, 0x32, - 0xef, 0x01, 0x0f, 0x57, 0x48, 0x59, 0xd6, 0xfe, 0xbd, 0x00, 0x35, 0x19, 0xd7, 0x64, 0xbd, 0x96, - 0x42, 0x8e, 0xd7, 0x72, 0x05, 0x80, 0x13, 0x29, 0x8f, 0x17, 0xb8, 0x57, 0x75, 0x20, 0x78, 0x4c, - 0xc2, 0xa9, 0x6e, 0x5a, 0xc1, 0xd0, 0x3d, 0x21, 0xfe, 0x73, 0x71, 0x3e, 0xd1, 0x98, 0x84, 0xd3, - 0xad, 0x08, 0x46, 0x3d, 0x02, 0xba, 0xab, 0xd2, 0xf1, 0x9c, 0xb8, 0x66, 0x74, 0x91, 0x5e, 0x17, - 0xb0, 0x5d, 0xd7, 0xa4, 0x11, 0xf9, 0xa2, 0xf0, 0xe4, 0x92, 0x3b, 0x5d, 0x93, 0x43, 0xbb, 0xf9, - 0x8f, 0x9c, 0x2a, 0xd1, 0x83, 0xa2, 0xe8, 0x91, 0x13, 0xdd, 0x08, 0xc3, 0xa1, 0xa7, 0x4f, 0x82, - 0x40, 0x78, 0xb4, 0x95, 0x70, 0xe8, 0xed, 0x06, 0x81, 0xf6, 0x19, 0xd4, 0x95, 0xd8, 0x0c, 0xdd, - 0x81, 0x65, 0x35, 0x90, 0x4b, 0xfa, 0x1a, 0x4b, 0x4a, 0xe0, 0xc6, 0x1d, 0x0d, 0xed, 0xdf, 0x0a, - 0xd0, 0x4a, 0x45, 0x67, 0x67, 0xbb, 0x40, 0x22, 0xc6, 0x8b, 0x55, 0xac, 0x89, 0xeb, 0x02, 0xc6, - 0xa6, 0xef, 0x1a, 0xd4, 0x8f, 0x89, 0xed, 0x11, 0x5f, 0x77, 0x1d, 0x3b, 0x1a, 0x36, 0xe0, 0xa0, - 0x7d, 0xc7, 0x66, 0x5b, 0x9a, 0x49, 0x46, 0xc4, 0xf7, 0x0d, 0x9b, 0x33, 0xe1, 0xcf, 0xab, 0x1a, - 0x11, 0x90, 0x71, 0xb9, 0x0b, 0x2b, 0xec, 0x51, 0x92, 0x78, 0xf2, 0xa8, 0x47, 0xf2, 0xf0, 0xc3, - 0x93, 0x65, 0x15, 0xd7, 0x13, 0xb2, 0xbd, 0x0d, 0x4b, 0xb6, 0xeb, 0x8c, 0x6d, 0xf6, 0xe8, 0x29, - 0xa2, 0xaf, 0xf0, 0xed, 0x57, 0x22, 0x04, 0xb1, 0xf6, 0x01, 0xac, 0xed, 0x7a, 0xa9, 0x7e, 0x0b, - 0x7b, 0x31, 0xb3, 0xf7, 0xda, 0x5f, 0x15, 0xe0, 0x52, 0xa6, 0x16, 0x5f, 0x9d, 0xb3, 0x87, 0x4c, - 0xdd, 0x07, 0xf9, 0x05, 0x47, 0xbc, 0x73, 0x24, 0xf7, 0x3a, 0x31, 0x54, 0xca, 0x5e, 0xf7, 0x2e, - 0x2c, 0x8b, 0x47, 0x53, 0xbe, 0x75, 0xa4, 0x4b, 0x36, 0xe5, 0xe8, 0x3d, 0xbd, 0xb9, 0x3f, 0x62, - 0x27, 0x2a, 0x72, 0x23, 0x6a, 0x29, 0xe4, 0x6c, 0x4f, 0xe2, 0xe3, 0xd5, 0x88, 0x48, 0x0f, 0xe9, - 0x94, 0xff, 0x4e, 0x01, 0x96, 0x32, 0xdd, 0x40, 0xdf, 0x4d, 0x19, 0xe5, 0xd7, 0x95, 0x7d, 0x2c, - 0x7f, 0xa4, 0xa4, 0x7d, 0xbe, 0x9f, 0xb4, 0xcf, 0xd7, 0xcf, 0xa8, 0x99, 0x30, 0xd5, 0x5d, 0x68, - 0x8a, 0xc8, 0x5e, 0x0c, 0xfd, 0xac, 0xd8, 0x57, 0x19, 0xdd, 0x62, 0x72, 0x4a, 0x7e, 0xb7, 0x00, - 0x0d, 0xc1, 0x43, 0x3e, 0xff, 0x7b, 0x31, 0x16, 0x54, 0x61, 0x43, 0x37, 0xa4, 0x86, 0x40, 0x3c, - 0x1a, 0x65, 0x4b, 0x8f, 0x81, 0x0e, 0xd8, 0x61, 0xe5, 0x0d, 0x58, 0x14, 0x04, 0xea, 0x09, 0x64, - 0x13, 0x37, 0x39, 0x4d, 0x74, 0xfe, 0xf8, 0xf7, 0x45, 0xd8, 0x10, 0x2b, 0xd1, 0xe6, 0xcf, 0x9f, - 0xf7, 0x99, 0xe7, 0x1c, 0xed, 0x43, 0xef, 0x00, 0x32, 0xec, 0x6f, 0x8d, 0xe7, 0x01, 0xf5, 0xf9, - 0x3c, 0xc3, 0x27, 0xfa, 0x24, 0xfe, 0x36, 0x82, 0x63, 0x36, 0x39, 0x62, 0x97, 0x98, 0xe8, 0x2e, - 0xac, 0x5a, 0x63, 0xc7, 0xf5, 0xa9, 0xc7, 0xc9, 0x24, 0x8b, 0x2e, 0x2c, 0xc4, 0x1d, 0x2e, 0x47, - 0x76, 0x03, 0x2a, 0x22, 0xbf, 0xa4, 0xa0, 0x31, 0x43, 0x74, 0xe4, 0x2c, 0x9b, 0x60, 0x0b, 0x9e, - 0xc5, 0x0c, 0x5c, 0xbb, 0xd6, 0x22, 0x0a, 0xd1, 0x14, 0x13, 0xd8, 0xef, 0xd3, 0x28, 0xf1, 0xb2, - 0x54, 0x3c, 0xdd, 0x72, 0x8c, 0x61, 0x48, 0xad, 0x1a, 0xab, 0x1e, 0x9d, 0xb8, 0xae, 0x49, 0x82, - 0xbe, 0xc0, 0xb3, 0xda, 0xcc, 0x78, 0xf1, 0xc1, 0xd4, 0x0d, 0x6b, 0xec, 0x45, 0x07, 0x9c, 0xe2, - 0x73, 0x0f, 0x6b, 0xec, 0xa1, 0x4f, 0x61, 0x5d, 0x74, 0xc6, 0x21, 0xa7, 0xa1, 0xce, 0x8e, 0xae, - 0xc7, 0x9e, 0x3e, 0x21, 0xa1, 0x6f, 0x0d, 0xc5, 0x1a, 0xbd, 0xc4, 0x29, 0xf6, 0xc8, 0x69, 0xf8, - 0xd8, 0xf5, 0xfa, 0x63, 0x6f, 0x97, 0x61, 0xb5, 0xbf, 0x2b, 0xc2, 0x7a, 0xee, 0xb0, 0xf2, 0xf9, - 0xfe, 0xdf, 0x51, 0x7d, 0xa9, 0x51, 0xfd, 0x83, 0x02, 0xac, 0xe6, 0x8e, 0x2a, 0xfa, 0x2c, 0x65, - 0x07, 0x6e, 0x64, 0xce, 0x00, 0xf3, 0xb4, 0x5b, 0xda, 0x82, 0x4f, 0x93, 0xb6, 0xe0, 0x8d, 0x73, - 0x6a, 0x27, 0xec, 0xc1, 0x3d, 0xb8, 0xf4, 0x24, 0x20, 0x2c, 0x12, 0xf7, 0x6c, 0xf6, 0x0d, 0x48, - 0x70, 0xae, 0x4d, 0xbe, 0x0b, 0xab, 0xe9, 0x3a, 0xe7, 0x58, 0x64, 0xed, 0xa7, 0x00, 0x34, 0xe2, - 0x17, 0xac, 0x6f, 0xc3, 0x12, 0x3f, 0x7c, 0x98, 0x08, 0x1e, 0x34, 0xc4, 0xe3, 0x35, 0x5a, 0x0c, - 0x11, 0xf1, 0xee, 0xb2, 0xe3, 0x90, 0x89, 0x71, 0xca, 0x5c, 0xa2, 0xe8, 0x92, 0x83, 0x6d, 0x5d, - 0x02, 0xc8, 0x5a, 0xd7, 0x7e, 0x02, 0xb5, 0x9e, 0x0c, 0xa3, 0x5e, 0x39, 0x77, 0x1d, 0xca, 0x94, - 0x3b, 0x7a, 0x27, 0x35, 0x4d, 0x2b, 0xc9, 0xf3, 0xea, 0xd4, 0xac, 0xcc, 0x7e, 0xd3, 0x2a, 0x45, - 0x8d, 0x26, 0xe1, 0x2e, 0x40, 0x3f, 0x1e, 0x9d, 0x8c, 0x4c, 0x85, 0x1c, 0x99, 0xde, 0x87, 0x5a, - 0x5f, 0xf6, 0xf8, 0x42, 0x35, 0x74, 0x28, 0xf7, 0xcf, 0xe9, 0x45, 0xff, 0x45, 0x7a, 0xd1, 0x4f, - 0xf7, 0xe2, 0x97, 0x05, 0x68, 0xa7, 0xf5, 0x02, 0x7d, 0x92, 0x6a, 0x4d, 0xd9, 0xa8, 0xf2, 0xf5, - 0x4e, 0xb6, 0xfc, 0x51, 0xb2, 0xe5, 0x6b, 0xb3, 0x2b, 0x26, 0x2e, 0xc1, 0x35, 0x28, 0x93, 0xa3, - 0xb1, 0x97, 0xfd, 0x8e, 0x8b, 0x8e, 0x3a, 0x66, 0x38, 0x4a, 0x63, 0x51, 0x9a, 0xcc, 0xb7, 0x52, - 0x7d, 0x46, 0x43, 0x71, 0xda, 0x43, 0xb1, 0xb3, 0x0c, 0x0c, 0x7f, 0x4c, 0xc2, 0x5d, 0x32, 0x39, - 0x22, 0x7e, 0x70, 0x6c, 0x29, 0x93, 0x94, 0xf4, 0xa8, 0x0a, 0x59, 0x8f, 0x4a, 0xeb, 0x0a, 0x33, - 0x9a, 0xe6, 0x21, 0x67, 0xed, 0x7c, 0x16, 0xd2, 0x68, 0xa4, 0x79, 0x9c, 0x6b, 0x34, 0xf2, 0x05, - 0xbf, 0xa8, 0xd1, 0xc8, 0x15, 0x39, 0x9a, 0xe9, 0x9f, 0xc2, 0xd5, 0x1d, 0xd7, 0x19, 0xef, 0x50, - 0x0f, 0xe8, 0x05, 0x1d, 0xba, 0x0b, 0xb8, 0xb3, 0xda, 0x3f, 0x16, 0xe0, 0xca, 0x2c, 0xfe, 0xbf, - 0x4e, 0xd7, 0xef, 0x36, 0x2c, 0xb1, 0x03, 0xac, 0x84, 0x7c, 0xdc, 0xef, 0x68, 0x51, 0x04, 0x56, - 0x5c, 0xee, 0x07, 0xb0, 0x9e, 0xa1, 0xf5, 0x75, 0x72, 0xea, 0x59, 0xbe, 0x74, 0x99, 0xd7, 0x52, - 0x95, 0xfc, 0x1e, 0x47, 0x6b, 0x7f, 0x58, 0x80, 0xce, 0xac, 0x0e, 0xa2, 0x1f, 0xa4, 0xe6, 0x55, - 0xf9, 0xa2, 0xe5, 0xec, 0x41, 0x97, 0x53, 0xfb, 0x59, 0x72, 0x6a, 0x6f, 0x9e, 0xcf, 0x20, 0x31, - 0xbb, 0xff, 0x50, 0x86, 0x05, 0xe1, 0xdf, 0xa1, 0x2f, 0x60, 0x79, 0xe2, 0xe9, 0x99, 0xcb, 0x26, - 0x2e, 0xd9, 0xc6, 0x19, 0x4e, 0x27, 0x5e, 0x9a, 0x64, 0xdc, 0xdd, 0xf7, 0x64, 0xcf, 0xb8, 0x60, - 0x6b, 0x99, 0xdb, 0xa6, 0x54, 0x47, 0xd2, 0x37, 0x91, 0xa5, 0x0b, 0xdf, 0x44, 0xfe, 0x08, 0xd6, - 0xa2, 0x90, 0x4c, 0x6c, 0x7e, 0xba, 0xeb, 0x45, 0xb7, 0xc8, 0x29, 0x73, 0x92, 0xbb, 0x49, 0xe2, - 0x55, 0x3f, 0x77, 0xab, 0x7e, 0x0c, 0x68, 0x1a, 0x90, 0x78, 0x6b, 0xe1, 0xf6, 0x76, 0x3e, 0x7d, - 0xff, 0x94, 0x36, 0x51, 0xb8, 0x3d, 0x4d, 0x5b, 0xc6, 0xcc, 0x1d, 0x41, 0x25, 0xdd, 0xbb, 0xd9, - 0x77, 0x04, 0xb2, 0x7b, 0x21, 0x5b, 0xa6, 0xfa, 0x44, 0xae, 0x53, 0x71, 0x51, 0x79, 0xed, 0x9c, - 0xe5, 0x2c, 0xba, 0x97, 0x31, 0x2a, 0x06, 0x6c, 0xd0, 0xb8, 0x4d, 0xe7, 0x11, 0x5d, 0x66, 0xde, - 0xf9, 0xc5, 0xa6, 0x76, 0xbe, 0x42, 0xe1, 0x8e, 0x3d, 0x03, 0xa3, 0x4d, 0xa1, 0xc2, 0x3b, 0x86, - 0x36, 0xa0, 0x66, 0x79, 0x7a, 0xe2, 0x49, 0x43, 0xd5, 0xf2, 0x04, 0xf2, 0x4d, 0x68, 0x4d, 0x8c, - 0xe0, 0x6b, 0xe1, 0x2c, 0xea, 0x13, 0xcb, 0x11, 0xa6, 0xa2, 0x49, 0xc1, 0xdc, 0x51, 0xdc, 0xb5, - 0x9c, 0x0c, 0x9d, 0x71, 0x2a, 0xc2, 0x09, 0x95, 0xce, 0x38, 0xd5, 0x7e, 0xbf, 0x00, 0x10, 0xbf, - 0x43, 0xfe, 0x15, 0x1f, 0x8b, 0x53, 0x98, 0x6d, 0x05, 0x21, 0x7b, 0x2e, 0x55, 0xc3, 0xec, 0x3f, - 0x7b, 0xff, 0x1a, 0x47, 0x2b, 0xe9, 0xf7, 0xaf, 0x0c, 0x83, 0x25, 0x85, 0xb6, 0x0d, 0xd5, 0x5d, - 0x23, 0x1c, 0x1e, 0x53, 0x61, 0x6e, 0x26, 0x84, 0x51, 0xf6, 0x58, 0x46, 0x71, 0xce, 0xbb, 0xf5, - 0xa7, 0xd0, 0x48, 0x38, 0xcf, 0x77, 0x12, 0xcc, 0x14, 0x9d, 0x54, 0xa9, 0x14, 0x9e, 0x97, 0xa0, - 0xa2, 0x38, 0xe4, 0x4d, 0x2c, 0x4a, 0xda, 0xbf, 0x94, 0x01, 0x36, 0x5d, 0xc7, 0xb4, 0xb8, 0xe2, - 0xdf, 0x05, 0xf1, 0xa5, 0x94, 0x1e, 0x3f, 0xfe, 0x46, 0x29, 0x49, 0x0f, 0x49, 0x88, 0x6b, 0x9c, - 0x8a, 0x76, 0xeb, 0x23, 0x68, 0xc8, 0x3b, 0x07, 0x5a, 0xa9, 0x38, 0xb3, 0x92, 0x7c, 0x95, 0x43, - 0xab, 0x7d, 0x0f, 0x16, 0x53, 0x91, 0x42, 0x29, 0x7d, 0x64, 0xa9, 0x76, 0x05, 0x37, 0x0c, 0xb5, - 0xfb, 0xf7, 0xa0, 0x1e, 0xd5, 0xa6, 0x6d, 0x96, 0x67, 0x0b, 0xca, 0xab, 0xd1, 0x16, 0x3f, 0x96, - 0x9f, 0x80, 0x86, 0xcf, 0x59, 0xad, 0xf9, 0x99, 0xb5, 0x1a, 0x92, 0x90, 0x56, 0xfc, 0x1c, 0x96, - 0x68, 0x18, 0x90, 0xac, 0x5c, 0x99, 0x59, 0xb9, 0x45, 0x4e, 0xc3, 0x4d, 0xb5, 0xfe, 0x35, 0xa8, - 0xfb, 0xde, 0xd7, 0x16, 0x5d, 0x5f, 0x53, 0x3b, 0x64, 0x6b, 0x77, 0x1e, 0x83, 0xcf, 0x3f, 0x53, - 0x99, 0xda, 0x21, 0xfa, 0x0c, 0x20, 0xfe, 0xf6, 0x44, 0x5c, 0x99, 0x2a, 0x37, 0x02, 0xf1, 0xfc, - 0x88, 0x65, 0x4e, 0xa7, 0xb5, 0x26, 0x3f, 0x4d, 0x41, 0x0f, 0x61, 0xd9, 0xa6, 0x4b, 0x3c, 0x25, - 0x61, 0x6d, 0xa6, 0x84, 0x4b, 0x8c, 0x5c, 0x95, 0x51, 0x3b, 0x86, 0x9a, 0xe4, 0x8d, 0x96, 0xa1, - 0x85, 0xf7, 0x9f, 0x0c, 0x7a, 0xfa, 0xe0, 0xab, 0x03, 0xf9, 0x20, 0x6f, 0x0d, 0x96, 0x15, 0x60, - 0x7f, 0x6f, 0xd0, 0xc3, 0x7b, 0xdd, 0x9d, 0x76, 0x21, 0x85, 0xe8, 0x3d, 0x13, 0x88, 0x22, 0x5a, - 0x81, 0xb6, 0x82, 0xd8, 0xd9, 0xdf, 0xec, 0xee, 0xb4, 0x4b, 0xda, 0x08, 0x5a, 0xb2, 0xe5, 0x2e, - 0xff, 0x98, 0xf9, 0x6e, 0x42, 0x99, 0xaf, 0xa8, 0x3d, 0x4f, 0x10, 0x2a, 0xfa, 0x7c, 0x1d, 0xea, - 0x51, 0x6f, 0x2d, 0xf9, 0xb9, 0x8e, 0x0a, 0xd2, 0xf6, 0xa0, 0xb6, 0x4b, 0x4c, 0xd1, 0xc2, 0xdb, - 0x89, 0x16, 0xd6, 0xd4, 0x9b, 0x04, 0x33, 0xc3, 0x7b, 0x05, 0xe6, 0x4f, 0x0c, 0x7b, 0x1a, 0x7d, - 0xcd, 0xc8, 0x0b, 0x9a, 0x0e, 0xad, 0x6e, 0x70, 0xe0, 0x13, 0x8f, 0x38, 0x11, 0xd7, 0x36, 0x94, - 0x8c, 0xc0, 0x11, 0x1e, 0x1d, 0xfd, 0x4b, 0x97, 0x19, 0xa5, 0x30, 0xe4, 0x11, 0x3d, 0x2f, 0x21, - 0x0d, 0x9a, 0x74, 0x43, 0xb1, 0xc9, 0x28, 0xd4, 0x27, 0x6e, 0x10, 0x0a, 0xbf, 0xa4, 0x3e, 0x0d, - 0xc8, 0x0e, 0x19, 0x85, 0xbb, 0x2e, 0x7b, 0xe2, 0xda, 0x14, 0xaf, 0xcc, 0x04, 0xfb, 0x33, 0xbf, - 0x0c, 0x0b, 0x88, 0x3d, 0x12, 0xbe, 0x0f, 0xfb, 0xaf, 0xdd, 0x84, 0xd6, 0x0e, 0x3b, 0x64, 0xf5, - 0xc9, 0x48, 0x30, 0x90, 0x1d, 0x11, 0xd7, 0x08, 0xbc, 0x23, 0x7f, 0x5b, 0x82, 0x05, 0x4e, 0x10, - 0xc4, 0xaf, 0x53, 0x0c, 0xfe, 0xd1, 0x7a, 0xc6, 0x50, 0x32, 0xa5, 0xe0, 0xd4, 0xe2, 0x75, 0x8a, - 0xe0, 0xfd, 0x31, 0xd4, 0xe2, 0x1b, 0xb6, 0x62, 0xfa, 0x59, 0x4a, 0x6a, 0xe2, 0x70, 0x4c, 0x8b, - 0x6e, 0x40, 0x69, 0x22, 0x1c, 0xb3, 0x44, 0xa4, 0x21, 0x67, 0x02, 0x53, 0x3c, 0xfa, 0x04, 0x80, - 0xae, 0x70, 0x3e, 0xde, 0x62, 0x81, 0x5f, 0x4e, 0xd8, 0x06, 0x75, 0x2a, 0xd8, 0x3a, 0xe7, 0x00, - 0xf4, 0x39, 0x34, 0x13, 0xcb, 0x55, 0xac, 0xf3, 0x33, 0xa4, 0x6b, 0xa8, 0x2b, 0x16, 0xdd, 0x85, - 0x05, 0xf1, 0x0c, 0x50, 0x2c, 0x72, 0x45, 0x5d, 0x12, 0x13, 0x84, 0x23, 0x3a, 0x2a, 0xac, 0x38, - 0xf2, 0xf6, 0xc9, 0x48, 0x6c, 0xce, 0x97, 0xd5, 0xfd, 0x33, 0x31, 0x2f, 0xd1, 0x69, 0xb8, 0x4f, - 0x46, 0xe8, 0x21, 0xb4, 0x52, 0x6b, 0x57, 0x6c, 0xbf, 0x67, 0x88, 0xbb, 0x98, 0x5c, 0xbe, 0xda, - 0xcf, 0x0a, 0x50, 0x93, 0xef, 0xf2, 0xe5, 0xee, 0x51, 0x50, 0x36, 0xb2, 0x0f, 0x01, 0x86, 0xd2, - 0x88, 0x88, 0xd9, 0x5a, 0xc9, 0x33, 0x30, 0x58, 0xa1, 0x43, 0x6f, 0xc3, 0x02, 0x57, 0x8b, 0x40, - 0xcc, 0x96, 0xfa, 0x70, 0x88, 0x23, 0x70, 0x44, 0xa1, 0x7d, 0x09, 0x15, 0xe1, 0x95, 0xe5, 0x09, - 0x90, 0xfc, 0xb2, 0xa7, 0x78, 0xb1, 0x2f, 0x7b, 0xfe, 0xa9, 0x00, 0xed, 0xf4, 0x13, 0x1f, 0x74, - 0x2b, 0xb1, 0x92, 0x57, 0xd2, 0x8f, 0x81, 0x94, 0x65, 0xac, 0x7e, 0xf4, 0x5e, 0xbc, 0xc0, 0x47, - 0xef, 0x39, 0x89, 0x48, 0x12, 0x5f, 0xbb, 0x94, 0xcf, 0xfb, 0xda, 0x05, 0xbd, 0x07, 0x0b, 0x26, - 0x19, 0x19, 0xd4, 0xc8, 0xcf, 0x9f, 0xb5, 0x90, 0x22, 0x2a, 0xed, 0xf7, 0x0a, 0x50, 0xc2, 0xae, - 0x81, 0x16, 0xa1, 0x68, 0x44, 0xf1, 0x7c, 0xd1, 0x08, 0xd0, 0x6b, 0x20, 0x36, 0x58, 0x9b, 0x44, - 0x0e, 0x51, 0x0c, 0xa0, 0x46, 0x66, 0x62, 0x30, 0x94, 0x78, 0x49, 0xc9, 0x4b, 0xca, 0x33, 0xc1, - 0x72, 0xe2, 0xe5, 0x68, 0xf4, 0x60, 0x6f, 0xfe, 0xec, 0xef, 0x73, 0xb5, 0x9b, 0xfc, 0xb5, 0xa4, - 0x6b, 0x9c, 0xf7, 0xcd, 0x2d, 0xff, 0xbc, 0x90, 0x11, 0xc6, 0x9f, 0x17, 0xfa, 0xae, 0x91, 0xf3, - 0x79, 0x21, 0x25, 0x62, 0x28, 0x2d, 0x80, 0xd2, 0x53, 0x7f, 0x94, 0xab, 0x1d, 0x8b, 0x50, 0xf4, - 0x79, 0x20, 0xd7, 0xc0, 0x45, 0xdf, 0x64, 0x2e, 0x23, 0x7f, 0xf9, 0xe5, 0x73, 0xe7, 0xab, 0x81, - 0xab, 0x1c, 0x80, 0x59, 0xd2, 0x05, 0xf1, 0xae, 0xcc, 0x0f, 0xd9, 0x9c, 0x34, 0x70, 0x95, 0x03, - 0x70, 0x28, 0x9e, 0xe8, 0xf0, 0x37, 0x4d, 0x45, 0xcb, 0xd4, 0x7e, 0x59, 0x80, 0x0a, 0x7f, 0xca, - 0x9f, 0x19, 0xe3, 0x0d, 0xa8, 0xc5, 0xa7, 0x8d, 0x22, 0x41, 0x83, 0x1f, 0x1d, 0x2f, 0x5e, 0x83, - 0x3a, 0xf5, 0xf6, 0x88, 0xc3, 0x6f, 0x8d, 0x4a, 0x7c, 0xcb, 0xe6, 0x20, 0x76, 0x6b, 0xf4, 0x16, - 0xb4, 0x05, 0x81, 0xb0, 0xc9, 0x42, 0x41, 0x6a, 0xb8, 0xc5, 0xe1, 0xdd, 0x08, 0x9c, 0x78, 0x85, - 0x39, 0x9f, 0x7a, 0x85, 0xf9, 0x4e, 0x6e, 0xa0, 0x21, 0xee, 0x56, 0xd2, 0xc1, 0x84, 0xf6, 0xd7, - 0x05, 0xa8, 0xb1, 0xe7, 0xa6, 0x7d, 0x67, 0xe4, 0xfe, 0x5a, 0x1e, 0xe3, 0xde, 0x84, 0x96, 0x33, - 0x9d, 0xe8, 0xca, 0x2b, 0x5b, 0x71, 0x17, 0xb9, 0xe8, 0x4c, 0x27, 0xea, 0x2b, 0xe5, 0xcb, 0x50, - 0x75, 0xc4, 0x41, 0x54, 0x74, 0xf5, 0xed, 0xf0, 0x33, 0x28, 0x1a, 0xfb, 0x53, 0x94, 0x7c, 0x87, - 0xc0, 0x2f, 0x1b, 0xeb, 0xce, 0x74, 0xd2, 0x15, 0x20, 0xed, 0x7b, 0xec, 0x6b, 0x0e, 0x6c, 0x1d, - 0xd1, 0x8e, 0x44, 0xda, 0x16, 0xbd, 0xd7, 0xcc, 0x7c, 0xcc, 0x26, 0xbb, 0xcc, 0xdf, 0x6b, 0x6a, - 0x9f, 0xb1, 0xfc, 0x48, 0xb2, 0xb6, 0x50, 0xc1, 0x8b, 0x56, 0xbf, 0xbd, 0x09, 0xd5, 0x68, 0x84, - 0x10, 0x40, 0x65, 0x7b, 0x67, 0xff, 0x61, 0x77, 0xa7, 0x3d, 0x87, 0x6a, 0x30, 0xcf, 0x7d, 0x14, - 0xf6, 0x7e, 0xa1, 0xbb, 0xf5, 0x43, 0xbd, 0xbf, 0xd7, 0x2e, 0xa2, 0x3a, 0x2c, 0xd0, 0xff, 0xfb, - 0x4f, 0x06, 0xed, 0x12, 0x5a, 0x80, 0xd2, 0x53, 0xfc, 0xa8, 0x5d, 0xbe, 0x1d, 0x42, 0x5d, 0x89, - 0x21, 0xd8, 0x83, 0x07, 0xdc, 0x7b, 0xd4, 0x7f, 0xd6, 0x9e, 0x43, 0x0d, 0xa8, 0xee, 0xf5, 0xfa, - 0xdb, 0x8f, 0x1f, 0xee, 0xe3, 0x76, 0x81, 0xd6, 0x18, 0x74, 0xb7, 0x05, 0x9f, 0x43, 0xfd, 0xa0, - 0x3b, 0x78, 0xdc, 0x2e, 0xa1, 0x26, 0xd4, 0x36, 0xf7, 0x77, 0x77, 0x9f, 0xec, 0xf5, 0x07, 0x5f, - 0xb5, 0xcb, 0x68, 0x09, 0x9a, 0xbd, 0x67, 0x03, 0x3d, 0x06, 0xcd, 0x53, 0x1f, 0x6c, 0xa7, 0x8b, - 0xb7, 0x7b, 0x0a, 0xb0, 0x72, 0xfb, 0x2d, 0xa8, 0xc9, 0x60, 0x81, 0xbd, 0xba, 0xda, 0xfb, 0x4a, - 0x7d, 0x7e, 0x05, 0x50, 0xe9, 0xef, 0x3d, 0xed, 0xe1, 0x41, 0xbb, 0x78, 0xfb, 0x36, 0xb4, 0xd3, - 0xa1, 0x00, 0xaa, 0x40, 0xb1, 0xf7, 0x65, 0x7b, 0x8e, 0xfe, 0x6e, 0xf7, 0xda, 0x05, 0xfa, 0xbb, - 0xd3, 0x6b, 0x17, 0x6f, 0xbf, 0x27, 0x6e, 0x3a, 0xc5, 0xd6, 0x1e, 0x3f, 0xec, 0xa2, 0xe3, 0xb0, - 0xb9, 0xd9, 0x3b, 0x18, 0x70, 0xe6, 0xb8, 0xf7, 0xc3, 0xde, 0x26, 0x65, 0xfe, 0x04, 0x96, 0x73, - 0x5c, 0x33, 0xda, 0x0d, 0x29, 0xad, 0xde, 0xdd, 0xda, 0x6a, 0xcf, 0x51, 0x1f, 0x30, 0x06, 0xe1, - 0xde, 0xee, 0xfe, 0x53, 0xda, 0xf0, 0x2a, 0x2c, 0xa9, 0x50, 0xf1, 0x62, 0xec, 0xf6, 0xbb, 0xd0, - 0x4c, 0xf8, 0x63, 0x74, 0xcc, 0x76, 0x7b, 0x5b, 0xfa, 0xee, 0x3e, 0x65, 0xd5, 0x82, 0x3a, 0x2d, - 0x44, 0xe4, 0x85, 0xdb, 0xef, 0x00, 0xc4, 0x46, 0x5f, 0x66, 0xc4, 0xa1, 0x83, 0xb0, 0x7b, 0xb0, - 0x8f, 0x85, 0xcc, 0xbd, 0x67, 0xec, 0x7f, 0xf1, 0xde, 0x3f, 0x5f, 0x83, 0xea, 0x36, 0xd5, 0x89, - 0xae, 0x67, 0xa1, 0x1d, 0xa8, 0x2b, 0xdf, 0xf3, 0xa0, 0xd7, 0x12, 0x5b, 0x51, 0xea, 0x33, 0xa1, - 0xf5, 0x2b, 0x33, 0xb0, 0xe2, 0xb9, 0xf5, 0x1c, 0xea, 0x03, 0xc4, 0x5f, 0xfc, 0xa0, 0x0d, 0x95, - 0x3c, 0xf5, 0x71, 0xd0, 0xfa, 0x6b, 0xf9, 0x48, 0xc9, 0xea, 0x11, 0xd4, 0xe4, 0x77, 0x4e, 0x48, - 0x09, 0xeb, 0xd2, 0x1f, 0x44, 0xad, 0x6f, 0xe4, 0xe2, 0x24, 0x9f, 0x1d, 0xa8, 0x2b, 0x09, 0x9a, - 0xd4, 0x0e, 0x66, 0x33, 0x3e, 0xa9, 0x1d, 0xcc, 0xcb, 0xea, 0x34, 0x87, 0x9e, 0xc0, 0x62, 0x32, - 0x35, 0x13, 0xba, 0xa6, 0xc6, 0xd2, 0x39, 0x19, 0x9f, 0xd6, 0xaf, 0xcf, 0x26, 0x50, 0x85, 0x54, - 0x92, 0x91, 0xa9, 0x42, 0x66, 0xf3, 0x9f, 0xa9, 0x42, 0xe6, 0x64, 0x30, 0xd3, 0xe6, 0x10, 0x86, - 0x66, 0x22, 0xe7, 0x11, 0xba, 0x9a, 0x30, 0x89, 0x59, 0x8e, 0xd7, 0x66, 0xe2, 0x25, 0xcf, 0xff, - 0x0b, 0x4b, 0x99, 0x5c, 0x4a, 0x48, 0x3b, 0x3f, 0xa7, 0xd3, 0xfa, 0x77, 0xce, 0xa4, 0x91, 0xfc, - 0xff, 0x0f, 0xb4, 0xd3, 0x39, 0x93, 0x90, 0x72, 0x3f, 0x3c, 0x23, 0x55, 0xd3, 0xba, 0x76, 0x16, - 0x89, 0x3a, 0x6b, 0xc9, 0x0c, 0x4a, 0xea, 0xac, 0xe5, 0xa6, 0x63, 0x52, 0x67, 0x6d, 0x46, 0xf2, - 0xa5, 0x39, 0xf4, 0x0c, 0x5a, 0xa9, 0x24, 0x49, 0x48, 0x9d, 0xec, 0xdc, 0xcc, 0x4c, 0xeb, 0xaf, - 0x9f, 0x41, 0x21, 0x39, 0x7f, 0x06, 0x15, 0x6e, 0xd8, 0xd1, 0x5a, 0x62, 0xb2, 0xe3, 0x4f, 0x29, - 0xd6, 0x3b, 0x59, 0x84, 0xaa, 0x4e, 0xca, 0xe7, 0x10, 0xaa, 0x3a, 0x65, 0xbf, 0xc9, 0x50, 0xd5, - 0x29, 0xef, 0x1b, 0x8a, 0x39, 0xf4, 0x03, 0x58, 0x10, 0x69, 0xe0, 0x50, 0x27, 0xb1, 0x3e, 0x94, - 0x74, 0x6f, 0xeb, 0x97, 0x73, 0x30, 0xaa, 0x59, 0x88, 0x93, 0xae, 0xa9, 0x66, 0x21, 0x93, 0x36, - 0x4e, 0x35, 0x0b, 0x39, 0x79, 0xda, 0xe6, 0xd0, 0x16, 0x40, 0x9c, 0x26, 0x48, 0x65, 0x95, 0x49, - 0x1e, 0xb4, 0x9e, 0xff, 0xe5, 0x8c, 0x36, 0xf7, 0x7e, 0x01, 0x3d, 0x90, 0x69, 0x90, 0xe2, 0x47, - 0xac, 0xca, 0x46, 0x29, 0x73, 0xfb, 0xad, 0xa7, 0x12, 0xb4, 0xb1, 0xca, 0x8f, 0xa0, 0x26, 0xf3, - 0x52, 0xa9, 0x96, 0x29, 0x9d, 0x15, 0x4b, 0xb5, 0x4c, 0xd9, 0x44, 0x56, 0x7c, 0x54, 0x64, 0xd6, - 0xaa, 0xc4, 0xa8, 0xa4, 0x13, 0x5c, 0x25, 0x46, 0x25, 0x9b, 0xe8, 0x6a, 0x0e, 0x3d, 0x86, 0x9a, - 0xcc, 0x34, 0xa5, 0x8a, 0x94, 0xce, 0x7f, 0xa5, 0x8a, 0x94, 0x4d, 0x4d, 0x35, 0x77, 0xab, 0x40, - 0x35, 0x8f, 0xe7, 0x7b, 0x52, 0x35, 0x2f, 0x91, 0x5a, 0x6a, 0xbd, 0x93, 0x45, 0xa8, 0x56, 0x5b, - 0xa6, 0x76, 0x52, 0x05, 0x49, 0x67, 0x8c, 0x5a, 0xdf, 0xc8, 0xc5, 0xa9, 0x3a, 0x27, 0x92, 0xd9, - 0xa0, 0x94, 0xa2, 0xc7, 0x59, 0x50, 0x54, 0x9d, 0x4b, 0x65, 0xbe, 0x91, 0x5a, 0x9b, 0xe6, 0x90, - 0x4c, 0x72, 0x93, 0xd2, 0xda, 0x14, 0x07, 0xa9, 0xb5, 0x8c, 0x49, 0x46, 0x60, 0x95, 0xcf, 0x6b, - 0xf9, 0x48, 0x95, 0x55, 0x9c, 0x67, 0x06, 0x65, 0xf4, 0x62, 0x06, 0xab, 0x9c, 0xd4, 0x34, 0x6c, - 0x6d, 0x2b, 0xc9, 0x66, 0x50, 0x56, 0x33, 0x54, 0x66, 0x57, 0x66, 0x60, 0xd5, 0xf9, 0x92, 0xa9, - 0x62, 0xd4, 0xf9, 0x4a, 0x67, 0x9c, 0x51, 0xe7, 0x2b, 0x9b, 0x5b, 0x86, 0x6d, 0x39, 0x89, 0xb4, - 0x33, 0xea, 0x96, 0x93, 0x97, 0xc1, 0x46, 0xdd, 0x72, 0xf2, 0xf3, 0xd5, 0x48, 0x23, 0xe8, 0x1a, - 0x69, 0x23, 0x28, 0xe3, 0xb2, 0xb4, 0x11, 0x8c, 0xe3, 0x30, 0x3e, 0x50, 0x4a, 0x8a, 0x18, 0x94, - 0x19, 0x57, 0x35, 0x0d, 0x8e, 0x3a, 0x50, 0x79, 0x79, 0x65, 0xe6, 0xc4, 0xba, 0xa0, 0x71, 0x5b, - 0x72, 0x5d, 0xc4, 0xe9, 0x5d, 0x52, 0xeb, 0x42, 0x4d, 0xe1, 0xa2, 0xac, 0x0b, 0xca, 0x21, 0xb3, - 0x2e, 0x14, 0x26, 0x1b, 0xb9, 0xb8, 0xd4, 0x98, 0xa4, 0xc4, 0x48, 0xa4, 0xbc, 0x49, 0x8d, 0x49, - 0xb2, 0x3a, 0x66, 0x81, 0xad, 0x72, 0x2f, 0x70, 0x35, 0x41, 0x9c, 0x49, 0x7e, 0xa2, 0x4e, 0x53, - 0x6e, 0xb6, 0x18, 0xce, 0x33, 0x91, 0xc5, 0x45, 0xe5, 0x99, 0x97, 0x1e, 0x46, 0xe5, 0x99, 0x9f, - 0xfe, 0x85, 0x79, 0x03, 0xe9, 0x5c, 0x2d, 0xaa, 0x37, 0x30, 0x23, 0x39, 0x8c, 0xea, 0x0d, 0xcc, - 0x4c, 0xf5, 0xc2, 0x5c, 0x99, 0x4c, 0xa2, 0x16, 0xd5, 0x95, 0x99, 0x95, 0x09, 0x46, 0x75, 0x65, - 0x66, 0x67, 0x7a, 0x99, 0x43, 0xfb, 0xd0, 0x50, 0x93, 0xba, 0xa0, 0xa4, 0xbf, 0x96, 0xce, 0x5f, - 0xb2, 0x7e, 0x75, 0x16, 0x5a, 0x65, 0xa8, 0xa6, 0x63, 0x41, 0x49, 0x2f, 0xf5, 0x2c, 0x86, 0xb9, - 0x59, 0x5c, 0xb8, 0xe3, 0x92, 0x4c, 0xb4, 0x82, 0x32, 0x5e, 0x6a, 0x86, 0xed, 0xeb, 0x67, 0x50, - 0xa8, 0x13, 0x97, 0xce, 0xac, 0xa2, 0x4e, 0xdc, 0x8c, 0x1c, 0x2e, 0xeb, 0xda, 0x59, 0x24, 0xa9, - 0x90, 0x40, 0x1c, 0xae, 0x25, 0x43, 0x82, 0x44, 0x9e, 0x90, 0x54, 0x48, 0x90, 0x4a, 0xca, 0xc1, - 0xf8, 0xc8, 0x3c, 0x14, 0x2a, 0x9f, 0x74, 0x82, 0x16, 0x95, 0x4f, 0x36, 0x85, 0x0a, 0x9b, 0x17, - 0x35, 0x83, 0x84, 0x3a, 0x2f, 0x39, 0xb9, 0x55, 0xd4, 0x79, 0xc9, 0x4d, 0x7b, 0x22, 0x1c, 0x77, - 0x25, 0x25, 0x44, 0xd2, 0x71, 0xcf, 0x26, 0x44, 0x49, 0x3a, 0xee, 0x79, 0x19, 0x48, 0xe6, 0x90, - 0xc9, 0x32, 0x0f, 0x65, 0x4e, 0x0f, 0xdf, 0xc8, 0x19, 0xa2, 0x4c, 0x7e, 0x8b, 0xf5, 0x1b, 0xe7, - 0x50, 0xa9, 0xad, 0xe4, 0xa4, 0xf6, 0x50, 0x5b, 0x99, 0x9d, 0x53, 0x44, 0x6d, 0xe5, 0xac, 0xfc, - 0x20, 0x73, 0x68, 0x12, 0xe5, 0x1f, 0xca, 0x34, 0x74, 0x33, 0x7f, 0x6c, 0xb3, 0x6d, 0xdd, 0x3a, - 0x9f, 0x50, 0x36, 0xe7, 0xc9, 0xa4, 0x43, 0xd9, 0xc3, 0xd7, 0x19, 0x03, 0x9f, 0x6d, 0xf0, 0xad, - 0x0b, 0x50, 0xaa, 0x7e, 0x42, 0x7c, 0xa0, 0x83, 0x36, 0xd2, 0x2e, 0xbe, 0x72, 0x48, 0xb4, 0xfe, - 0x5a, 0x3e, 0x32, 0x62, 0x75, 0x54, 0x61, 0xc9, 0xb4, 0x3f, 0xf8, 0xcf, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x5c, 0xfb, 0x96, 0x15, 0x5b, 0x5b, 0x00, 0x00, + // 7114 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7c, 0xcf, 0x6f, 0x23, 0x47, + 0x76, 0xb0, 0xf8, 0x43, 0x14, 0xf9, 0x48, 0x8a, 0xad, 0x92, 0x34, 0xe2, 0x50, 0x9e, 0x1f, 0xee, + 0xf5, 0x78, 0xc6, 0x63, 0x7b, 0xec, 0x19, 0xdb, 0x63, 0xaf, 0x67, 0xed, 0x35, 0x47, 0xe2, 0x68, + 0xb8, 0x96, 0x44, 0xb9, 0xc4, 0x99, 0x1d, 0xef, 0xb7, 0xfb, 0xf5, 0xd7, 0x62, 0x17, 0xa9, 0xfe, + 0xdc, 0xec, 0x6e, 0x77, 0x37, 0x65, 0x0d, 0x3e, 0xe0, 0x0b, 0xb0, 0x01, 0x82, 0x00, 0x41, 0x2e, + 0xb9, 0x66, 0x83, 0x1c, 0x72, 0x5b, 0x20, 0x87, 0x9c, 0x02, 0xe4, 0x94, 0x43, 0x36, 0x08, 0xb0, + 0x40, 0x2e, 0xc9, 0x31, 0x48, 0xfe, 0x84, 0xe4, 0x90, 0x43, 0x0e, 0x39, 0x04, 0xf5, 0xa3, 0xbb, + 0xab, 0x7f, 0x50, 0xd2, 0x78, 0xc7, 0x09, 0x02, 0xe4, 0x44, 0xd6, 0x7b, 0xaf, 0x5e, 0xbd, 0xaa, + 0x7a, 0xf5, 0xea, 0xd5, 0xab, 0xea, 0x07, 0xf5, 0x89, 0x73, 0x34, 0x71, 0xef, 0xb8, 0x9e, 0x13, + 0x38, 0xa8, 0xca, 0x0a, 0xba, 0x6b, 0xaa, 0x3f, 0x01, 0xb4, 0x43, 0x82, 0x7d, 0x62, 0x4e, 0x8e, + 0x8f, 0x1c, 0x0f, 0x93, 0xaf, 0x67, 0xc4, 0x0f, 0xd0, 0x6d, 0x50, 0x88, 0xad, 0x1f, 0x59, 0xa4, + 0x6b, 0x9c, 0x10, 0x2f, 0x30, 0x7d, 0x62, 0xb4, 0x0b, 0xd7, 0x0b, 0xb7, 0xaa, 0x38, 0x03, 0x47, + 0x6d, 0x58, 0xd2, 0x0d, 0xc3, 0x23, 0xbe, 0xdf, 0x2e, 0x5e, 0x2f, 0xdc, 0xaa, 0xe1, 0xb0, 0xa8, + 0x3e, 0x80, 0xd5, 0x04, 0x6f, 0xdf, 0x75, 0x6c, 0x9f, 0xa0, 0xd7, 0x60, 0xd1, 0x25, 0xc4, 0xf3, + 0xdb, 0x85, 0xeb, 0xa5, 0x5b, 0xf5, 0x7b, 0xcb, 0x77, 0x42, 0x61, 0xee, 0x1c, 0x10, 0xe2, 0x61, + 0x8e, 0x54, 0x27, 0x50, 0xeb, 0x7a, 0x93, 0xd9, 0x94, 0xd8, 0x81, 0x8f, 0xee, 0x40, 0xd5, 0x23, + 0xbe, 0x33, 0xf3, 0x46, 0x84, 0xc9, 0xb1, 0x7c, 0x0f, 0xc5, 0xb5, 0xb0, 0xc0, 0xe0, 0x88, 0x06, + 0x5d, 0x82, 0xca, 0x58, 0x9f, 0x9a, 0xd6, 0x73, 0x26, 0x52, 0x13, 0x8b, 0x12, 0x42, 0x50, 0xb6, + 0xf5, 0x29, 0x69, 0x97, 0x98, 0xa0, 0xec, 0xbf, 0xfa, 0xff, 0x60, 0xb9, 0x6b, 0x18, 0x07, 0x7a, + 0x70, 0x1c, 0xf6, 0xfe, 0x45, 0x5b, 0x5b, 0x87, 0xca, 0x89, 0x37, 0xd6, 0x4c, 0x43, 0x0c, 0xc0, + 0xe2, 0x89, 0x37, 0xee, 0x1b, 0x48, 0x85, 0xb2, 0xab, 0x07, 0xc7, 0xac, 0xb1, 0x64, 0x37, 0x69, + 0x5b, 0x0c, 0xa7, 0xde, 0x80, 0x56, 0xd4, 0xb8, 0x18, 0x1e, 0x04, 0xe5, 0xd9, 0xcc, 0xe4, 0xe3, + 0xdd, 0xc0, 0xec, 0xbf, 0xfa, 0xcb, 0x02, 0xac, 0x6c, 0x13, 0x8b, 0x04, 0xe4, 0x3b, 0x90, 0x33, + 0x1e, 0xac, 0x52, 0x62, 0xb0, 0x42, 0xf9, 0xcb, 0xf3, 0xe5, 0x8f, 0x84, 0x5d, 0x94, 0x84, 0x5d, + 0x03, 0x24, 0xcb, 0xca, 0xbb, 0xa5, 0x7e, 0x04, 0xa8, 0x6b, 0x18, 0x69, 0x45, 0xa3, 0x6d, 0x10, + 0xe2, 0x31, 0xf1, 0xb3, 0xaa, 0xc0, 0x70, 0xea, 0x3a, 0xac, 0x26, 0x6a, 0x0a, 0x86, 0x0f, 0x60, + 0x9d, 0x37, 0xf3, 0x6d, 0x78, 0xb6, 0xe1, 0x52, 0xba, 0xb2, 0x60, 0xfb, 0x14, 0xd6, 0x30, 0xf1, + 0xb3, 0x4b, 0x42, 0x52, 0xf3, 0x42, 0x42, 0xcd, 0xd1, 0x6b, 0xd0, 0x1c, 0x39, 0xd3, 0xe9, 0xcc, + 0x36, 0x47, 0x7a, 0x60, 0x3a, 0xb6, 0x18, 0xdd, 0x24, 0x50, 0xdd, 0x80, 0xf5, 0x14, 0x5f, 0xd1, + 0xe0, 0x5f, 0x14, 0xa0, 0x7d, 0xe8, 0x8c, 0x83, 0x17, 0x6c, 0xf5, 0x10, 0x6a, 0x86, 0xe9, 0x91, + 0x51, 0xd4, 0xe2, 0xf2, 0xbd, 0x0f, 0xe2, 0xae, 0xce, 0x63, 0x18, 0x23, 0xb6, 0xc3, 0xca, 0x38, + 0xe6, 0xa3, 0xbe, 0x03, 0x28, 0x4b, 0x80, 0x2a, 0x50, 0xec, 0xef, 0x2b, 0x0b, 0x68, 0x09, 0x4a, + 0x83, 0x27, 0x43, 0xa5, 0x80, 0xaa, 0x50, 0x7e, 0x38, 0x18, 0x3e, 0x56, 0x8a, 0xea, 0x26, 0x5c, + 0xce, 0x69, 0x4a, 0xf4, 0xec, 0x4b, 0xd8, 0x38, 0x3c, 0x9e, 0x05, 0x86, 0xf3, 0x8d, 0xfd, 0xb2, + 0x47, 0xb3, 0x03, 0xed, 0x2c, 0x6b, 0xd1, 0xec, 0x5d, 0x58, 0xef, 0x31, 0x23, 0x75, 0xe1, 0x46, + 0xa9, 0x3a, 0xa4, 0xab, 0x08, 0x66, 0xcf, 0xe0, 0xd2, 0xb6, 0xe9, 0xbf, 0x10, 0xb7, 0x0b, 0x76, + 0xe1, 0x32, 0x6c, 0x64, 0x38, 0x8b, 0x46, 0x27, 0xa0, 0x70, 0x71, 0xf6, 0xbc, 0x20, 0x6c, 0x6e, + 0x13, 0x6a, 0xc6, 0x6c, 0xea, 0x6a, 0xc1, 0x73, 0x97, 0xaf, 0xf6, 0x45, 0x5c, 0xa5, 0x80, 0xe1, + 0x73, 0x97, 0xa0, 0x0e, 0x54, 0xc7, 0xa6, 0x45, 0x98, 0x6d, 0xe3, 0x8d, 0x45, 0x65, 0x8a, 0x33, + 0xed, 0x80, 0x78, 0x27, 0xba, 0xc5, 0x16, 0x78, 0x19, 0x47, 0x65, 0x75, 0x15, 0x56, 0xa4, 0x86, + 0x44, 0xeb, 0xab, 0xb0, 0x22, 0x04, 0x8b, 0x9b, 0x67, 0x8b, 0x5a, 0x02, 0x0a, 0xd2, 0xdf, 0x02, + 0xa5, 0x6f, 0xff, 0x5f, 0x32, 0x0a, 0x24, 0x41, 0x5f, 0x92, 0x55, 0xa2, 0xbb, 0x84, 0x1e, 0x1c, + 0xfb, 0xed, 0x52, 0x66, 0x97, 0xa0, 0x66, 0x85, 0x23, 0xa9, 0xac, 0x92, 0x00, 0x42, 0xaa, 0xbf, + 0x2c, 0x40, 0xb3, 0x6b, 0x18, 0x0f, 0xa7, 0xee, 0xf9, 0x73, 0x85, 0xa0, 0xec, 0x3a, 0x5e, 0x20, + 0xf6, 0x09, 0xf6, 0x1f, 0xfd, 0x00, 0xca, 0x6c, 0x94, 0x4b, 0x4c, 0xfa, 0x5b, 0x71, 0xcb, 0x09, + 0xa6, 0x77, 0xf6, 0x1c, 0xdb, 0x0c, 0x1c, 0xcf, 0xb4, 0x27, 0x07, 0x8e, 0x65, 0x8e, 0x9e, 0x63, + 0x56, 0x4b, 0xdd, 0x02, 0x25, 0x8d, 0xa1, 0x2b, 0xe7, 0x00, 0xf7, 0x94, 0x05, 0xba, 0x72, 0x0e, + 0x06, 0x87, 0x89, 0x35, 0x84, 0x6a, 0xb0, 0xb8, 0x3b, 0xd8, 0xea, 0xee, 0x2a, 0x25, 0x4a, 0xd7, + 0xdd, 0xdd, 0x55, 0xca, 0xaa, 0xc2, 0x36, 0x25, 0xd6, 0x98, 0xe8, 0xd4, 0x67, 0xa0, 0x70, 0x8b, + 0xf5, 0x6d, 0xbb, 0xc5, 0xe6, 0x35, 0xe6, 0x20, 0xd8, 0x0e, 0x61, 0x45, 0x48, 0x8b, 0xcd, 0xa3, + 0x90, 0xef, 0x0d, 0x58, 0x0c, 0xe8, 0x54, 0x0b, 0x13, 0xda, 0x8a, 0x47, 0x60, 0x48, 0xc1, 0x98, + 0x63, 0x69, 0xf3, 0xa3, 0x99, 0xe7, 0x11, 0x9b, 0xb7, 0x53, 0xc5, 0x61, 0x51, 0xed, 0x41, 0x15, + 0x1f, 0x7c, 0xde, 0xdf, 0x72, 0xec, 0xf1, 0x19, 0x42, 0x5e, 0x83, 0xba, 0x47, 0xa6, 0x4e, 0x40, + 0xb4, 0x48, 0xd6, 0x1a, 0x06, 0x0e, 0x3a, 0xa0, 0x12, 0xff, 0xa2, 0x0c, 0x35, 0xca, 0xe7, 0x30, + 0xd0, 0x03, 0xb6, 0xa9, 0xcf, 0xdc, 0xc0, 0x9c, 0x72, 0xb1, 0x4a, 0x58, 0x94, 0xa8, 0x82, 0x53, + 0x3b, 0xc0, 0x30, 0x45, 0x86, 0x89, 0xca, 0x68, 0x19, 0x8a, 0x33, 0x97, 0x4d, 0x64, 0x15, 0x17, + 0x67, 0x2e, 0x6f, 0x72, 0xe4, 0x78, 0x86, 0x66, 0xba, 0x27, 0xef, 0xb3, 0xad, 0xad, 0x49, 0x9b, + 0xa4, 0xa0, 0xbe, 0x7b, 0xf2, 0x7e, 0x92, 0xe0, 0x3e, 0xdb, 0xd7, 0x64, 0x82, 0xfb, 0x94, 0xc0, + 0xf5, 0xc8, 0xd8, 0x3c, 0xe5, 0x1c, 0x2a, 0x9c, 0x80, 0x83, 0x42, 0x0e, 0x31, 0xc1, 0xfd, 0xf6, + 0x52, 0x8a, 0xe0, 0x3e, 0xed, 0x87, 0x4f, 0x3c, 0x53, 0xb7, 0xda, 0x55, 0xbe, 0xdf, 0xf2, 0x12, + 0xfa, 0x1e, 0x34, 0x3d, 0x32, 0x22, 0xe6, 0x09, 0x11, 0xd2, 0xd5, 0x58, 0x67, 0x1a, 0x21, 0x90, + 0x71, 0x4f, 0x11, 0xdd, 0x6f, 0x43, 0x86, 0xe8, 0x3e, 0x25, 0xe2, 0x3c, 0x35, 0xdb, 0x09, 0xcc, + 0xf1, 0xf3, 0x76, 0x9d, 0x13, 0x71, 0xe0, 0x3e, 0x83, 0x51, 0x39, 0x47, 0xfa, 0xe8, 0x98, 0x68, + 0x1e, 0x35, 0xde, 0xed, 0x06, 0x23, 0x01, 0x06, 0x62, 0xe6, 0x1c, 0xdd, 0x80, 0xe5, 0x88, 0x80, + 0x29, 0x4b, 0xbb, 0xc9, 0x68, 0x9a, 0x21, 0x0d, 0xf7, 0x57, 0xae, 0x42, 0x9d, 0xd8, 0x86, 0xe6, + 0x8c, 0x35, 0x43, 0x0f, 0xf4, 0xf6, 0x32, 0xa3, 0xa9, 0x11, 0xdb, 0x18, 0x8c, 0xb7, 0xf5, 0x40, + 0x47, 0x6b, 0xb0, 0x48, 0x3c, 0xcf, 0xf1, 0xda, 0x2d, 0x86, 0xe1, 0x05, 0xf4, 0x2a, 0x08, 0x69, + 0xb4, 0xaf, 0x67, 0xc4, 0x7b, 0xde, 0x56, 0x18, 0xb2, 0xce, 0x61, 0x5f, 0x50, 0x10, 0x9f, 0x0a, + 0x9f, 0x04, 0x82, 0x62, 0x85, 0x0b, 0xc8, 0x40, 0x8c, 0x40, 0xfd, 0x12, 0xca, 0xd8, 0xfd, 0xca, + 0x44, 0xaf, 0x43, 0x79, 0xe4, 0xd8, 0x63, 0xa1, 0xad, 0xb2, 0xb5, 0x11, 0x3a, 0x88, 0x19, 0x1e, + 0xbd, 0x01, 0x8b, 0x3e, 0xd5, 0x24, 0xa6, 0x25, 0xf5, 0x7b, 0xab, 0x49, 0x42, 0xa6, 0x64, 0x98, + 0x53, 0xa8, 0xb7, 0x60, 0x79, 0x87, 0x04, 0x94, 0x7b, 0xb8, 0x26, 0x62, 0x2f, 0xa9, 0x20, 0x7b, + 0x49, 0xea, 0x03, 0x68, 0x45, 0x94, 0x62, 0x44, 0x6e, 0xc1, 0x92, 0x4f, 0xbc, 0x93, 0x5c, 0x17, + 0x97, 0x11, 0x86, 0x68, 0xf5, 0x27, 0x6c, 0x99, 0xcb, 0xcd, 0xbc, 0x98, 0xa5, 0xea, 0x40, 0xd5, + 0x32, 0xc7, 0x84, 0xa9, 0x7e, 0x89, 0xab, 0x7e, 0x58, 0x56, 0x57, 0x98, 0x6b, 0x29, 0x0b, 0xa6, + 0x76, 0x43, 0x0b, 0xf0, 0xad, 0x5b, 0x8c, 0x9d, 0xbb, 0x04, 0xe3, 0xb7, 0xc3, 0x7d, 0xe4, 0x42, + 0x8c, 0x29, 0x13, 0x99, 0x5c, 0x30, 0xb9, 0x13, 0x6d, 0x31, 0x17, 0xe3, 0xb2, 0x0e, 0xab, 0x09, + 0x7a, 0xc1, 0xe6, 0x2d, 0x50, 0x98, 0xfe, 0x5e, 0x8c, 0xc9, 0x2a, 0xac, 0x48, 0xd4, 0x82, 0xc5, + 0xbb, 0xb0, 0x16, 0x79, 0x35, 0x17, 0x63, 0xb3, 0x01, 0xeb, 0xa9, 0x1a, 0x82, 0xd5, 0xaf, 0x0b, + 0x61, 0x5f, 0x7f, 0x42, 0x8e, 0x3c, 0x3d, 0xe4, 0xa4, 0x40, 0x69, 0xe6, 0x59, 0x82, 0x0b, 0xfd, + 0xcb, 0xb4, 0xdd, 0x99, 0x05, 0x84, 0x6d, 0xf0, 0xf4, 0x28, 0x55, 0x62, 0xc6, 0x90, 0x82, 0xe8, + 0x16, 0xef, 0xd3, 0xc6, 0xa9, 0xce, 0x50, 0x7f, 0x82, 0xfb, 0xe9, 0x61, 0x11, 0xbd, 0x0f, 0x97, + 0x6c, 0x72, 0x1a, 0x1c, 0x3b, 0xae, 0x16, 0x78, 0xe6, 0x64, 0x42, 0x3c, 0x8d, 0x9f, 0xd2, 0x98, + 0x7d, 0xab, 0xe2, 0x35, 0x81, 0x1d, 0x72, 0x24, 0x17, 0x07, 0xdd, 0x83, 0xf5, 0x74, 0x2d, 0x83, + 0x58, 0xfa, 0x73, 0x61, 0xf3, 0x56, 0x93, 0x95, 0xb6, 0x29, 0x8a, 0x0e, 0x79, 0xa2, 0x33, 0xa2, + 0x93, 0x2d, 0x68, 0xee, 0x90, 0xe0, 0xa9, 0x37, 0x0e, 0xbd, 0x85, 0xf7, 0xd8, 0xf2, 0x61, 0x00, + 0xb1, 0x26, 0x5e, 0x85, 0xf2, 0x89, 0x37, 0x0e, 0x17, 0x44, 0x33, 0x5e, 0x10, 0x94, 0x88, 0xa1, + 0xd4, 0x77, 0xd9, 0xae, 0x1d, 0x73, 0x41, 0xd7, 0xa0, 0x74, 0xe2, 0x85, 0xcb, 0x3a, 0x55, 0x85, + 0x62, 0xc4, 0x2e, 0x29, 0x35, 0xa3, 0xbe, 0x17, 0xee, 0x92, 0x2f, 0xc2, 0x26, 0xda, 0x18, 0x65, + 0x4e, 0x4f, 0x60, 0x6d, 0x87, 0x04, 0xdb, 0x64, 0x6c, 0xda, 0xc4, 0x38, 0x24, 0x91, 0x7b, 0xf3, + 0x86, 0x70, 0x0e, 0xb8, 0x6b, 0xb3, 0x1e, 0xb3, 0x13, 0xa4, 0x74, 0xb2, 0xb8, 0x27, 0x10, 0x9d, + 0x36, 0x8b, 0xd2, 0x69, 0xb3, 0x0b, 0xeb, 0x29, 0xb6, 0x91, 0xd1, 0x28, 0xfb, 0x24, 0x08, 0x07, + 0x68, 0x2d, 0xc3, 0x97, 0xd2, 0x32, 0x0a, 0xf5, 0x53, 0x58, 0xeb, 0x1a, 0x46, 0x56, 0xb2, 0xd7, + 0xa1, 0x44, 0x0d, 0x39, 0xef, 0x67, 0x3e, 0x03, 0x4a, 0x40, 0x75, 0x35, 0x55, 0x5f, 0x74, 0xf9, + 0x10, 0x36, 0xf8, 0x38, 0x7c, 0x6b, 0xde, 0x54, 0xaf, 0x75, 0xcb, 0x12, 0xee, 0x00, 0xfd, 0x4b, + 0x3d, 0xf5, 0x2c, 0x53, 0xd1, 0xe0, 0x43, 0x68, 0x63, 0xe2, 0x5a, 0xfa, 0xe8, 0xdb, 0xb7, 0x48, + 0x4f, 0x20, 0x39, 0x3c, 0x44, 0x03, 0xeb, 0x2c, 0x02, 0xc1, 0x2c, 0xfb, 0x94, 0xd8, 0x91, 0x33, + 0xfb, 0x39, 0x9b, 0x5b, 0x09, 0x2c, 0xe6, 0xe0, 0x3d, 0x00, 0x3f, 0x04, 0x86, 0x33, 0x21, 0xed, + 0x12, 0x71, 0x05, 0x89, 0x4c, 0x7d, 0xcc, 0x8e, 0xa7, 0xe9, 0x36, 0xd0, 0x5d, 0xa8, 0x45, 0x44, + 0xa2, 0x17, 0xb9, 0xac, 0x62, 0x2a, 0xf5, 0x12, 0x9b, 0xd8, 0x8c, 0x58, 0xea, 0xcf, 0xc2, 0xc3, + 0xea, 0x4b, 0x68, 0x24, 0x67, 0x86, 0x2e, 0x87, 0xd3, 0x9e, 0x6d, 0x79, 0x17, 0x36, 0xc4, 0xe0, + 0xbe, 0x8c, 0xfe, 0x75, 0xa2, 0xe9, 0xce, 0xb6, 0x84, 0x40, 0xd9, 0x21, 0x81, 0x70, 0xa4, 0xc5, + 0x34, 0x75, 0x61, 0x45, 0x82, 0x89, 0x39, 0x7a, 0x0b, 0xaa, 0x2e, 0x85, 0x98, 0x24, 0x9c, 0x21, + 0x45, 0x3a, 0x1a, 0x70, 0xda, 0x88, 0x42, 0x3d, 0x05, 0xa5, 0x6b, 0x18, 0x09, 0xb6, 0xe8, 0x16, + 0x54, 0x18, 0xfe, 0xb9, 0x10, 0x3b, 0x5b, 0x5f, 0xe0, 0xd1, 0xc7, 0x70, 0xd9, 0x23, 0x63, 0x6a, + 0x4e, 0x4f, 0x4d, 0x3f, 0x30, 0xed, 0x89, 0x26, 0xa9, 0x07, 0x1f, 0xc1, 0x0d, 0x46, 0xd0, 0x13, + 0xf8, 0xc3, 0x58, 0x2d, 0x56, 0x61, 0x45, 0x6a, 0x59, 0xf4, 0xf2, 0xe7, 0x05, 0x58, 0x15, 0xb1, + 0x91, 0x6f, 0x29, 0xd2, 0x3b, 0xb0, 0xea, 0x52, 0x17, 0xc8, 0x3b, 0x21, 0x59, 0x61, 0x50, 0x88, + 0x8a, 0xe5, 0x08, 0xe7, 0xbb, 0x14, 0xcf, 0xf7, 0x25, 0x58, 0x4b, 0xca, 0x20, 0x84, 0xfb, 0xd3, + 0x02, 0xac, 0x89, 0xf9, 0xf9, 0x2f, 0x18, 0xb0, 0x79, 0x3d, 0x2b, 0xcd, 0xeb, 0x19, 0x8f, 0xa8, + 0x24, 0xc4, 0x8d, 0xce, 0xec, 0x9d, 0x48, 0x6f, 0xba, 0xbe, 0x6f, 0x4e, 0x6c, 0x59, 0x71, 0x3f, + 0x06, 0xd0, 0x23, 0xa0, 0xe8, 0x51, 0x27, 0xdd, 0x23, 0xa9, 0x9a, 0x44, 0xad, 0x7e, 0x09, 0x9b, + 0xb9, 0x9c, 0x85, 0x6e, 0xfe, 0x26, 0xac, 0x9f, 0x41, 0x27, 0xd2, 0x97, 0x97, 0x2b, 0xf4, 0x15, + 0xd8, 0xcc, 0xe5, 0x2c, 0x46, 0x6b, 0x0a, 0x57, 0x64, 0x75, 0x78, 0xa9, 0x6d, 0xe7, 0x58, 0x9b, + 0xeb, 0x70, 0x75, 0x5e, 0x73, 0x42, 0xa0, 0x9f, 0xc2, 0xd5, 0xc4, 0xbc, 0xbe, 0xdc, 0xd1, 0x78, + 0x15, 0xae, 0xcd, 0xe5, 0x9e, 0xb0, 0x45, 0x87, 0xcc, 0x47, 0x0f, 0x6d, 0xd1, 0x27, 0xcc, 0x16, + 0x85, 0xb0, 0x68, 0xcf, 0xae, 0x4c, 0x2c, 0xe7, 0x48, 0xb7, 0xb2, 0x0b, 0x63, 0x87, 0xc1, 0xb1, + 0xc0, 0xab, 0x9f, 0x02, 0x3a, 0x0c, 0x74, 0x2f, 0xc9, 0xf4, 0x05, 0xea, 0xaf, 0xc3, 0x6a, 0xa2, + 0x7e, 0x1c, 0xaa, 0x39, 0x0c, 0x1c, 0x37, 0x29, 0xea, 0x1a, 0x6d, 0x2b, 0x06, 0x0a, 0xd2, 0x3f, + 0x29, 0xc1, 0x32, 0x3d, 0xe6, 0x3c, 0xd5, 0x2d, 0xd3, 0x60, 0x11, 0x28, 0xf4, 0x7e, 0x78, 0x1e, + 0xe2, 0xbe, 0xcc, 0xd5, 0xe4, 0x79, 0x28, 0x26, 0xbc, 0x23, 0x1f, 0x8d, 0xd0, 0x87, 0x50, 0xf1, + 0x88, 0xee, 0x47, 0x51, 0xc7, 0x6b, 0x73, 0xab, 0x61, 0x46, 0x86, 0x05, 0x39, 0xba, 0x09, 0x4b, + 0x53, 0x3d, 0x18, 0x1d, 0x13, 0x43, 0xc4, 0x74, 0x24, 0x5f, 0x0c, 0x3b, 0x3a, 0x0e, 0xb1, 0xe8, + 0x5d, 0x68, 0xcc, 0x6c, 0x51, 0xd0, 0x74, 0xbf, 0x5d, 0xce, 0xa3, 0xae, 0x47, 0x24, 0x5d, 0x1f, + 0x7d, 0x04, 0x4a, 0x5c, 0xc3, 0x22, 0xf6, 0x24, 0x38, 0x6e, 0x2f, 0xe6, 0xd5, 0x6a, 0x45, 0x64, + 0xbb, 0x8c, 0x4a, 0x3d, 0x80, 0x45, 0x1e, 0x5d, 0x58, 0x06, 0x38, 0x1c, 0x76, 0x87, 0x3d, 0x6d, + 0x7f, 0xb0, 0xdf, 0x53, 0x16, 0xd0, 0x2a, 0xb4, 0xc2, 0xf2, 0x50, 0x7b, 0x34, 0x78, 0xb2, 0xbf, + 0xad, 0x14, 0x50, 0x0b, 0xea, 0x1c, 0xf8, 0xb4, 0xbb, 0xdb, 0xdf, 0x56, 0x8a, 0x68, 0x05, 0x9a, + 0x1c, 0xd0, 0xdf, 0xe7, 0xa0, 0x92, 0xfa, 0x00, 0x2a, 0xbc, 0xe3, 0x94, 0x1a, 0xf7, 0xba, 0x87, + 0x83, 0x61, 0xc8, 0xb3, 0x09, 0x35, 0x06, 0xd8, 0xd7, 0xba, 0x87, 0x4a, 0x81, 0x56, 0x16, 0xc5, + 0xdd, 0xde, 0xfe, 0x0e, 0x8b, 0xa7, 0xfe, 0x4b, 0x19, 0xca, 0x07, 0x22, 0xb0, 0x6e, 0x5b, 0x9e, + 0x19, 0xde, 0x02, 0xd0, 0xff, 0xf4, 0x08, 0xea, 0xea, 0x41, 0xe0, 0xf1, 0xd3, 0x41, 0x03, 0x8b, + 0x12, 0x5b, 0x64, 0x93, 0xf0, 0x00, 0x48, 0xff, 0xd2, 0xda, 0x47, 0xc4, 0x0f, 0x84, 0xff, 0xcf, + 0xfe, 0xd3, 0x03, 0x86, 0xe9, 0x6b, 0xdf, 0x98, 0xc1, 0xb1, 0xe1, 0xe9, 0xdf, 0x30, 0x2f, 0xbf, + 0x8a, 0xc1, 0xf4, 0x7f, 0x2c, 0x20, 0xe8, 0x2a, 0xc0, 0x49, 0x34, 0x79, 0x2c, 0xb0, 0xb1, 0x88, + 0x25, 0x08, 0xea, 0xc1, 0x4a, 0x5c, 0xd2, 0x0c, 0x12, 0xe8, 0xa6, 0xc5, 0xc2, 0x1b, 0xf5, 0x7b, + 0xed, 0x79, 0x3a, 0x80, 0x95, 0xb8, 0xca, 0x36, 0xab, 0x81, 0xde, 0x85, 0x35, 0xdb, 0xd1, 0xcc, + 0xa9, 0x4b, 0xb7, 0xe8, 0x20, 0x16, 0xa8, 0xca, 0x0d, 0xbd, 0xed, 0xf4, 0x05, 0x2a, 0x12, 0x2c, + 0x3e, 0x7a, 0xd7, 0x12, 0x17, 0x14, 0x57, 0x00, 0x78, 0x0c, 0x51, 0xd3, 0x7d, 0x9b, 0x05, 0x42, + 0x9a, 0xb8, 0xc6, 0x21, 0x5d, 0xdf, 0x46, 0x9b, 0x20, 0x0a, 0x9a, 0x69, 0xb0, 0x08, 0x48, 0x0d, + 0x57, 0x39, 0xa0, 0x6f, 0x88, 0x88, 0x69, 0x40, 0x3c, 0x62, 0xb0, 0xd0, 0x47, 0x15, 0x47, 0x65, + 0xb4, 0xc6, 0xd6, 0x85, 0xc5, 0xe3, 0x1d, 0x55, 0xcc, 0x0b, 0xe8, 0x16, 0x28, 0xa6, 0xaf, 0x8d, + 0x3d, 0x67, 0xaa, 0x91, 0xd3, 0x80, 0x78, 0xb6, 0x6e, 0xb1, 0x60, 0x47, 0x15, 0x2f, 0x9b, 0xfe, + 0x23, 0xcf, 0x99, 0xf6, 0x04, 0x94, 0x8e, 0xb4, 0x2d, 0x42, 0xba, 0x9a, 0xe9, 0xb2, 0xb8, 0x47, + 0x0d, 0x43, 0x08, 0xea, 0xbb, 0xd1, 0xad, 0x89, 0x12, 0xdf, 0x9a, 0xa0, 0xb7, 0x00, 0x99, 0xbe, + 0x16, 0x9e, 0xc8, 0x4c, 0x9b, 0x8d, 0x1b, 0x0b, 0x7a, 0x54, 0xb1, 0x62, 0xfa, 0xfb, 0x1c, 0xd1, + 0xe7, 0x70, 0x3a, 0x57, 0xa6, 0x41, 0xec, 0xc0, 0x1c, 0x9b, 0xc4, 0x6b, 0x23, 0x1e, 0x63, 0x8a, + 0x21, 0xe8, 0x0d, 0x50, 0x2c, 0x67, 0xa4, 0x5b, 0x9a, 0x44, 0xb5, 0xca, 0xa8, 0x5a, 0x0c, 0xde, + 0x8f, 0xc0, 0xea, 0x1f, 0x17, 0xa0, 0xbe, 0x4d, 0xe8, 0x6e, 0xcc, 0xa7, 0x99, 0x6a, 0x19, 0x0b, + 0x56, 0x89, 0xd3, 0xa9, 0x28, 0xc5, 0x01, 0xd9, 0xe2, 0x19, 0x01, 0x59, 0x74, 0x13, 0x5a, 0x96, + 0x63, 0xd3, 0xc3, 0x24, 0xaf, 0x46, 0xc2, 0x1d, 0x7c, 0x99, 0x83, 0x0f, 0x04, 0x94, 0x4a, 0xe8, + 0x1f, 0x3b, 0x5e, 0x20, 0x53, 0x72, 0x75, 0x6d, 0x09, 0x78, 0x48, 0xaa, 0xfe, 0x79, 0x01, 0x16, + 0x59, 0xe0, 0x11, 0xbd, 0x9e, 0x38, 0x7c, 0xe5, 0xc5, 0x95, 0xe7, 0x9e, 0xbc, 0xe6, 0x5e, 0x73, + 0x7d, 0x1f, 0x1a, 0x46, 0xdc, 0xfd, 0xd0, 0xda, 0x24, 0x0e, 0x76, 0x11, 0x16, 0x27, 0x48, 0x59, + 0xa8, 0xcf, 0xf1, 0x03, 0x4d, 0x78, 0x47, 0x62, 0x49, 0x51, 0x10, 0xdf, 0x5b, 0xd4, 0xfb, 0xec, + 0x60, 0xfc, 0xc2, 0x91, 0x55, 0xf5, 0x43, 0x1e, 0x7e, 0xa2, 0xf5, 0xc4, 0x56, 0x73, 0xc1, 0x8a, + 0x53, 0x58, 0x61, 0xe5, 0x5d, 0xc7, 0xf9, 0x6a, 0xe6, 0xf2, 0x11, 0x9c, 0x3b, 0xa3, 0x9f, 0x41, + 0xd3, 0x62, 0x74, 0x9a, 0xe3, 0x4a, 0xd7, 0x48, 0x9b, 0x29, 0xde, 0x9c, 0xd7, 0xc0, 0xe5, 0x03, + 0x60, 0x49, 0x25, 0xf5, 0x8f, 0x0a, 0x4c, 0x50, 0xf9, 0x52, 0xf2, 0xbb, 0x98, 0xa2, 0x0f, 0xa1, + 0x2a, 0xe9, 0x08, 0x9d, 0x9e, 0x7c, 0x19, 0x79, 0x7f, 0x71, 0x44, 0xac, 0x5a, 0x80, 0x84, 0x2d, + 0x22, 0xd2, 0x24, 0x5c, 0x54, 0xc4, 0x79, 0xb7, 0xc8, 0xf1, 0x78, 0x96, 0xe4, 0xf1, 0xa4, 0x9b, + 0x74, 0xa2, 0xb5, 0xf0, 0x82, 0x8f, 0xda, 0x74, 0x42, 0x3c, 0x66, 0x73, 0x28, 0x87, 0xf0, 0xe8, + 0xd2, 0xc4, 0x51, 0x19, 0x7d, 0x04, 0x0d, 0xdd, 0x75, 0xad, 0xe7, 0xa1, 0x2e, 0xf1, 0x10, 0xa5, + 0xa4, 0x85, 0x5d, 0x8a, 0x15, 0x8e, 0x6e, 0x5d, 0x8f, 0x0b, 0x51, 0xf4, 0xb3, 0x94, 0x8e, 0x7e, + 0xd2, 0x36, 0xa5, 0xe8, 0xe7, 0x03, 0x68, 0x92, 0xa3, 0x89, 0xab, 0x4d, 0x67, 0x56, 0x60, 0x1e, + 0x3b, 0xae, 0xb8, 0xd7, 0xbd, 0x14, 0x57, 0xe8, 0x1d, 0x4d, 0xdc, 0x3d, 0x81, 0xc5, 0x0d, 0x22, + 0x95, 0x50, 0x17, 0x5a, 0x3c, 0x3a, 0xe5, 0x91, 0xb1, 0x45, 0x46, 0x81, 0xe3, 0x31, 0x6d, 0x4f, + 0x5a, 0x7e, 0x4a, 0x80, 0x43, 0x3c, 0x5e, 0xf6, 0x12, 0x65, 0x74, 0x13, 0xca, 0xa6, 0x3d, 0x76, + 0xd8, 0xc6, 0x92, 0x38, 0x2b, 0x52, 0x39, 0xb9, 0x87, 0xc1, 0x08, 0xa8, 0x57, 0x14, 0x98, 0x53, + 0xe2, 0xf9, 0x62, 0x73, 0x91, 0xbc, 0xa2, 0x21, 0x83, 0x63, 0x81, 0xa7, 0x67, 0xd0, 0xc0, 0xd3, + 0x6d, 0x9f, 0x45, 0x29, 0xab, 0x69, 0xbe, 0xc3, 0x10, 0x85, 0x63, 0x2a, 0x3a, 0xce, 0xbc, 0x23, + 0x3c, 0x04, 0xcb, 0x76, 0x94, 0xc4, 0x38, 0xb3, 0x5e, 0x08, 0xdf, 0x89, 0x47, 0xe4, 0x78, 0x01, + 0x6d, 0x83, 0x32, 0xf1, 0xf4, 0x11, 0x19, 0xcf, 0x2c, 0xcd, 0x23, 0x3e, 0xf5, 0xc6, 0xd8, 0x9e, + 0x53, 0xbf, 0x77, 0x59, 0x72, 0xdb, 0x04, 0x05, 0xe6, 0x04, 0xb8, 0x35, 0x49, 0x02, 0xd0, 0x1d, + 0xa8, 0xe9, 0x63, 0x53, 0xf3, 0xf5, 0xb1, 0xe9, 0xb7, 0xeb, 0x4c, 0x97, 0x57, 0xa4, 0x49, 0x1e, + 0x9b, 0x87, 0xfa, 0xd8, 0xc4, 0x55, 0x9d, 0xff, 0xf1, 0xd5, 0xbf, 0x29, 0x40, 0x5d, 0x9a, 0x7a, + 0xf4, 0x21, 0xd4, 0x4c, 0x5b, 0x4b, 0x1c, 0xc7, 0xce, 0xf2, 0x7c, 0xab, 0xa6, 0x2d, 0x2a, 0xfe, + 0x10, 0x9a, 0xe4, 0x94, 0x0e, 0x41, 0x52, 0xc3, 0xce, 0xaa, 0xdc, 0xe0, 0x15, 0x62, 0x06, 0xe6, + 0x54, 0x66, 0x50, 0x3a, 0x9f, 0x01, 0xaf, 0x20, 0x8c, 0xe1, 0xff, 0x87, 0x3a, 0x5f, 0xa0, 0xbb, + 0xe6, 0xd4, 0x9c, 0x1b, 0x50, 0x47, 0xaf, 0x42, 0x63, 0xaa, 0x9f, 0xc6, 0x9b, 0x02, 0x5f, 0x7b, + 0xf5, 0xa9, 0x7e, 0x1a, 0xed, 0x1d, 0xef, 0xc3, 0x25, 0x5f, 0xdc, 0xfe, 0x6a, 0xc1, 0xb1, 0x47, + 0xfc, 0x63, 0xc7, 0x32, 0x34, 0x77, 0x14, 0x08, 0xbb, 0xb1, 0x16, 0x62, 0x87, 0x21, 0xf2, 0x60, + 0x14, 0xa8, 0xff, 0xbe, 0x08, 0xd5, 0x70, 0x4d, 0xa0, 0xef, 0x41, 0x53, 0x9f, 0x05, 0xc7, 0x9a, + 0xab, 0xfb, 0xfe, 0x37, 0x8e, 0x67, 0x08, 0xd3, 0xd8, 0xa0, 0xc0, 0x03, 0x01, 0x43, 0xd7, 0xa1, + 0x6e, 0x10, 0x7f, 0xe4, 0x99, 0xae, 0x74, 0x8d, 0x2b, 0x83, 0xd0, 0x65, 0xa8, 0xf2, 0x7d, 0x56, + 0xf7, 0xc3, 0xa8, 0x2c, 0x2b, 0x77, 0xd9, 0x06, 0x17, 0x79, 0x01, 0x61, 0xd4, 0xb8, 0xcc, 0x38, + 0xb4, 0x42, 0x78, 0x57, 0x04, 0xda, 0x37, 0x60, 0xc9, 0x25, 0xc4, 0xa3, 0x4c, 0x78, 0xf0, 0xb5, + 0x42, 0x8b, 0x5d, 0x9f, 0x7a, 0x38, 0x0c, 0x31, 0xf1, 0x9c, 0x99, 0xcb, 0x56, 0x4e, 0x0d, 0xd7, + 0x28, 0x64, 0x87, 0x02, 0xa8, 0x87, 0xc3, 0xd0, 0xcc, 0x9a, 0xf1, 0x8b, 0xa6, 0x2a, 0x05, 0xb0, + 0x3b, 0xe1, 0x7d, 0x58, 0xf1, 0xc8, 0xd4, 0x39, 0x21, 0x9a, 0xeb, 0x99, 0x27, 0x7a, 0x40, 0xbd, + 0x24, 0xb6, 0x48, 0x96, 0xef, 0xa9, 0x59, 0x23, 0x71, 0x07, 0x33, 0xda, 0x03, 0x4e, 0xda, 0xf5, + 0x71, 0xcb, 0x4b, 0x02, 0xa8, 0x83, 0xc2, 0x57, 0xce, 0xd8, 0xd2, 0x5d, 0xcd, 0xd0, 0xa7, 0xae, + 0x69, 0x4f, 0xd8, 0xfa, 0xa9, 0x62, 0x85, 0x61, 0x1e, 0x59, 0xba, 0xbb, 0xcd, 0xe1, 0xe8, 0x06, + 0x2c, 0xfb, 0xc4, 0x36, 0x34, 0x71, 0xe7, 0x1d, 0x3c, 0x17, 0xfe, 0x59, 0x93, 0x42, 0xb7, 0x42, + 0x20, 0xed, 0xa0, 0xb8, 0x02, 0x1c, 0xe9, 0x2e, 0x5b, 0x0f, 0x0d, 0x5c, 0xe3, 0x90, 0x2d, 0x9d, + 0x75, 0x90, 0x0f, 0x2f, 0xc5, 0x36, 0x18, 0x96, 0x8f, 0x37, 0x45, 0x2e, 0x43, 0xd1, 0x34, 0x98, + 0x8f, 0x56, 0xc3, 0x45, 0xd3, 0x40, 0x1f, 0x43, 0x53, 0x5c, 0xbc, 0x59, 0x54, 0xc1, 0xfc, 0xf6, + 0x72, 0x7a, 0x27, 0x97, 0xd4, 0x0f, 0x37, 0xdc, 0xb8, 0xe0, 0x53, 0x75, 0x10, 0xf3, 0x28, 0x66, + 0x8a, 0x3b, 0x6d, 0x0d, 0x3e, 0x99, 0x62, 0x9a, 0xde, 0x06, 0x14, 0xfb, 0x75, 0x76, 0x40, 0xbc, + 0xb1, 0x3e, 0x22, 0xcc, 0x89, 0xab, 0xe1, 0x95, 0xc8, 0xbd, 0x0b, 0x11, 0xd4, 0x2d, 0x3f, 0xf1, + 0xc6, 0xcc, 0x85, 0xab, 0xb1, 0x40, 0x33, 0xba, 0x0e, 0x0d, 0xdd, 0xb2, 0x9c, 0x6f, 0x34, 0xaa, + 0xb8, 0xba, 0x1f, 0xfa, 0x6d, 0x0c, 0x36, 0xf8, 0xc6, 0xee, 0xfa, 0xe8, 0x75, 0x68, 0x79, 0xfc, + 0x74, 0xaa, 0x85, 0x1a, 0xb1, 0xca, 0x46, 0xb8, 0x29, 0xc0, 0x07, 0x4c, 0x31, 0xd4, 0xbb, 0xd0, + 0x4a, 0x4d, 0x18, 0xaa, 0x42, 0x59, 0x1c, 0x33, 0xc4, 0x2d, 0x72, 0x01, 0xd5, 0x61, 0x09, 0xf7, + 0x0e, 0x76, 0xbb, 0x5b, 0x3d, 0xa5, 0xa8, 0x7e, 0x0e, 0x0d, 0xd9, 0xc0, 0xa3, 0x36, 0x2c, 0xf1, + 0x5b, 0x82, 0xf0, 0x69, 0x57, 0x58, 0x64, 0x2b, 0x50, 0x50, 0x69, 0x41, 0x60, 0x45, 0x2b, 0x50, + 0xc0, 0x86, 0x81, 0xa5, 0xfe, 0x76, 0x01, 0x96, 0x93, 0xf6, 0x9e, 0x2e, 0xca, 0xd4, 0x16, 0xa1, + 0x8d, 0x2c, 0x33, 0x3c, 0xa0, 0x57, 0xf1, 0x5a, 0x72, 0x3f, 0xd8, 0x62, 0x38, 0xf4, 0x00, 0x3a, + 0xd9, 0x5a, 0x33, 0x9f, 0xba, 0x85, 0xd1, 0x8b, 0x80, 0x8d, 0x74, 0x4d, 0x86, 0xef, 0x1b, 0xea, + 0x9f, 0x55, 0xa0, 0x16, 0xed, 0x1e, 0xff, 0x09, 0x4b, 0xfa, 0x0e, 0x54, 0xa7, 0xc4, 0xf7, 0xf5, + 0x89, 0xf0, 0x55, 0x13, 0xdb, 0xed, 0x9e, 0xc0, 0xe0, 0x88, 0x26, 0xd7, 0x04, 0x2c, 0x9e, 0x6b, + 0x02, 0x2a, 0x67, 0x98, 0x80, 0xa5, 0x33, 0x4d, 0x40, 0x35, 0x65, 0x02, 0x6e, 0x41, 0xe5, 0xeb, + 0x19, 0x99, 0x11, 0x5f, 0x6c, 0x73, 0xd2, 0x4e, 0xfa, 0x05, 0x83, 0x63, 0x81, 0x47, 0xb7, 0xf3, + 0x8c, 0x05, 0x5f, 0xb1, 0x17, 0x34, 0x04, 0xf5, 0x0b, 0x1b, 0x82, 0x46, 0x9e, 0x21, 0x60, 0x57, + 0xd6, 0xbe, 0x4f, 0x4f, 0x96, 0x3c, 0x26, 0xd1, 0x64, 0x54, 0x0d, 0x01, 0xe4, 0x33, 0xfc, 0x01, + 0x5c, 0xf2, 0x67, 0x2e, 0xdd, 0x52, 0x88, 0x41, 0x4d, 0x82, 0x7e, 0x64, 0x5a, 0x66, 0x40, 0xdd, + 0xa9, 0x65, 0x76, 0x5d, 0xb6, 0x1e, 0x61, 0xb7, 0x24, 0x24, 0x1d, 0x23, 0xea, 0xf8, 0x70, 0xbe, + 0x7c, 0x61, 0x57, 0x8f, 0x26, 0x2e, 0xe7, 0xf9, 0x43, 0xa8, 0xeb, 0xc6, 0xd4, 0x0c, 0x9b, 0x55, + 0xd2, 0xa1, 0x90, 0x48, 0xbf, 0xee, 0x74, 0x29, 0x19, 0x77, 0x54, 0x40, 0x8f, 0xfe, 0x53, 0xaf, + 0x2e, 0xbc, 0x7c, 0x67, 0x6b, 0xbd, 0x89, 0xa3, 0x32, 0xc5, 0xe9, 0xa3, 0x11, 0x71, 0x03, 0x62, + 0x88, 0xc5, 0x1e, 0x95, 0xe9, 0x11, 0x4e, 0x8f, 0x5f, 0x57, 0xae, 0x0a, 0x53, 0x10, 0xbf, 0xab, + 0x5c, 0x85, 0x45, 0x67, 0x16, 0x68, 0x5f, 0xb7, 0xd7, 0xf8, 0xf5, 0xab, 0x33, 0x0b, 0xbe, 0xa0, + 0x47, 0xd3, 0xb1, 0xe5, 0xb8, 0x7e, 0x7b, 0x9d, 0x01, 0x79, 0x41, 0xbd, 0x0d, 0x10, 0x0b, 0x87, + 0x2a, 0x50, 0x7c, 0x72, 0xc0, 0xdf, 0x9a, 0x6c, 0x0f, 0x7e, 0xbc, 0xaf, 0x14, 0x10, 0x40, 0xe5, + 0xe0, 0xd1, 0x33, 0x6d, 0x6b, 0xa8, 0x14, 0xd5, 0xff, 0x03, 0xd5, 0x50, 0x53, 0xd1, 0xdb, 0x92, + 0xe8, 0xdc, 0x97, 0x58, 0xc9, 0xe8, 0xb3, 0xd4, 0x9b, 0x1b, 0x50, 0xf6, 0xc3, 0xc7, 0x1e, 0xb9, + 0xa4, 0x0c, 0xad, 0xfe, 0xaa, 0x00, 0x4b, 0x02, 0x82, 0x54, 0x68, 0xec, 0x0f, 0x86, 0xfd, 0x47, + 0xfd, 0xad, 0xee, 0xb0, 0x3f, 0xd8, 0x67, 0xad, 0x94, 0x71, 0x02, 0x46, 0x1d, 0x81, 0x27, 0x07, + 0xdb, 0xdd, 0x61, 0x8f, 0x31, 0x2e, 0x63, 0x51, 0xa2, 0x27, 0x84, 0xc1, 0x41, 0x6f, 0x5f, 0x3c, + 0x5a, 0x62, 0xff, 0xd1, 0x2b, 0x50, 0xfb, 0xbc, 0xd7, 0x3b, 0xe8, 0xee, 0xf6, 0x9f, 0xf6, 0xd8, + 0x12, 0x2c, 0xe3, 0x18, 0x40, 0x4d, 0x1a, 0xee, 0x3d, 0xc2, 0xbd, 0xc3, 0xc7, 0x6c, 0x99, 0x95, + 0x71, 0x58, 0xa4, 0xf5, 0xb6, 0xfb, 0x87, 0x5b, 0x5d, 0xbc, 0xdd, 0xdb, 0x66, 0x0b, 0xac, 0x8c, + 0x63, 0x00, 0x1d, 0xd5, 0xe1, 0x60, 0xd8, 0xdd, 0x65, 0xcb, 0xab, 0x8c, 0x79, 0x41, 0xbd, 0x0f, + 0x15, 0xbe, 0x4a, 0x28, 0xde, 0xb4, 0xdd, 0x59, 0x20, 0x3c, 0x15, 0x5e, 0xa0, 0x72, 0x3b, 0xb3, + 0x80, 0x82, 0xc5, 0xf1, 0x80, 0x97, 0x54, 0x02, 0x15, 0xee, 0xa7, 0xa2, 0x3b, 0x50, 0xa1, 0xae, + 0xb7, 0x39, 0x11, 0xa3, 0x7b, 0x29, 0xed, 0xc9, 0x6e, 0x31, 0x2c, 0x16, 0x54, 0xe8, 0xcd, 0xe4, + 0x03, 0x85, 0xf5, 0x34, 0x79, 0xe2, 0x89, 0xc2, 0xaf, 0x0a, 0xd0, 0x90, 0xb9, 0xd0, 0x25, 0x34, + 0x72, 0x6c, 0x9b, 0x8c, 0x02, 0xcd, 0x23, 0x81, 0xf7, 0x3c, 0x1c, 0x6c, 0x01, 0xc4, 0x14, 0x46, + 0xd7, 0x02, 0x73, 0x96, 0xa2, 0xd7, 0x32, 0x65, 0x5c, 0xa5, 0x00, 0xca, 0x89, 0x6e, 0x70, 0x5f, + 0x11, 0xe2, 0xea, 0x96, 0x79, 0x42, 0xb4, 0xd4, 0xa3, 0xb1, 0x95, 0x08, 0xd3, 0x17, 0x08, 0xb4, + 0x0d, 0x57, 0xa7, 0xa6, 0x6d, 0x4e, 0x67, 0x53, 0x2d, 0xd2, 0x5b, 0xea, 0xf7, 0xc5, 0x55, 0xf9, + 0x0c, 0xbd, 0x22, 0xa8, 0xba, 0x32, 0x51, 0xc8, 0x45, 0xfd, 0x65, 0x11, 0xea, 0x52, 0xf7, 0xfe, + 0x9b, 0x76, 0x83, 0x85, 0xb5, 0xc8, 0xc4, 0x09, 0x4c, 0x9d, 0x1a, 0xa7, 0x58, 0x38, 0xae, 0x88, + 0x28, 0xc6, 0x3d, 0x0e, 0xc5, 0x8c, 0xdf, 0x33, 0x71, 0x85, 0xcc, 0x7b, 0xcf, 0xc4, 0x15, 0x32, + 0x2a, 0xab, 0xff, 0x56, 0x80, 0x5a, 0x74, 0xae, 0xc9, 0x7a, 0x2d, 0x85, 0x1c, 0xaf, 0xe5, 0x0a, + 0x00, 0x27, 0x92, 0xde, 0x72, 0x70, 0xaf, 0xea, 0x40, 0xf0, 0x98, 0x06, 0x33, 0xcd, 0x30, 0xfd, + 0x91, 0x73, 0x42, 0xbc, 0xe7, 0x22, 0x5c, 0xd3, 0x98, 0x06, 0xb3, 0xed, 0x10, 0x46, 0x3d, 0x02, + 0xba, 0xab, 0xd2, 0xf1, 0x9c, 0x3a, 0x46, 0xf8, 0xae, 0xa0, 0x2e, 0x60, 0x7b, 0x8e, 0x41, 0xa8, + 0x9d, 0x17, 0x9e, 0x5c, 0x72, 0xa7, 0x6b, 0x72, 0x68, 0x37, 0xff, 0xcd, 0x57, 0x25, 0x7c, 0x5f, + 0x15, 0xbe, 0xf9, 0xa2, 0x1b, 0x61, 0x30, 0x72, 0xb5, 0xa9, 0xef, 0x0b, 0x8f, 0xb6, 0x12, 0x8c, + 0xdc, 0x3d, 0xdf, 0x57, 0x3f, 0x81, 0xba, 0x74, 0x36, 0x43, 0x77, 0x60, 0x55, 0x3e, 0xc8, 0x25, + 0x7d, 0x8d, 0x15, 0xe9, 0xe0, 0xc6, 0x1d, 0x0d, 0xf5, 0x5f, 0x0b, 0xd0, 0x4a, 0x9d, 0xce, 0xce, + 0x76, 0x81, 0xc4, 0x19, 0x2f, 0x56, 0xb1, 0x26, 0xae, 0x0b, 0x18, 0x9b, 0xbe, 0x6b, 0x50, 0x3f, + 0x26, 0x96, 0x4b, 0x3c, 0xcd, 0xb1, 0xad, 0x70, 0xd8, 0x80, 0x83, 0x06, 0xb6, 0xc5, 0xb6, 0x34, + 0x83, 0x8c, 0x89, 0xe7, 0xe9, 0x16, 0x67, 0xc2, 0x5f, 0x9b, 0x35, 0x42, 0x20, 0xe3, 0x72, 0x17, + 0xd6, 0xd8, 0x1b, 0x2d, 0xf1, 0x2a, 0x54, 0x0b, 0xe5, 0xe1, 0xb1, 0xa4, 0x55, 0x19, 0xd7, 0x13, + 0xb2, 0xbd, 0x09, 0x2b, 0x96, 0x63, 0x4f, 0x2c, 0xf6, 0x06, 0x2c, 0xa4, 0xaf, 0xf0, 0xed, 0x37, + 0x42, 0x08, 0x62, 0xf5, 0x3d, 0xd8, 0xd8, 0x73, 0x53, 0xfd, 0x16, 0xf6, 0x62, 0x6e, 0xef, 0xd5, + 0xbf, 0x2a, 0xc0, 0xa5, 0x4c, 0x2d, 0xbe, 0x3a, 0xe7, 0x0f, 0x99, 0xbc, 0x0f, 0xf2, 0xfb, 0x9e, + 0x78, 0xe7, 0x48, 0xee, 0x75, 0x62, 0xa8, 0xa4, 0xbd, 0xee, 0x6d, 0x58, 0x15, 0x6f, 0xc8, 0x3c, + 0xf3, 0x48, 0x8b, 0xd8, 0x94, 0xc3, 0x4f, 0x0e, 0x8c, 0xc1, 0x98, 0x45, 0x54, 0xa2, 0x8d, 0xa8, + 0x25, 0x91, 0xb3, 0x3d, 0x89, 0x8f, 0x57, 0x23, 0x24, 0x3d, 0xa4, 0x53, 0xfe, 0x3b, 0x05, 0x58, + 0xc9, 0x74, 0x03, 0x7d, 0x3f, 0x65, 0x94, 0x5f, 0x95, 0xf6, 0xb1, 0xfc, 0x91, 0x8a, 0xec, 0xf3, + 0xfd, 0xa4, 0x7d, 0xbe, 0x7e, 0x46, 0xcd, 0x84, 0xa9, 0xee, 0x42, 0x53, 0x9c, 0xec, 0xc5, 0xd0, + 0xcf, 0x3b, 0xfb, 0x4a, 0xa3, 0x5b, 0x4c, 0x4e, 0xc9, 0xef, 0x16, 0xa0, 0x21, 0x78, 0x44, 0xaf, + 0x21, 0x5f, 0x8c, 0x05, 0x55, 0xd8, 0xc0, 0x09, 0xa8, 0x21, 0x10, 0xef, 0x6a, 0xd9, 0xd2, 0x63, + 0xa0, 0x03, 0x16, 0xbb, 0xbd, 0x01, 0xcb, 0x82, 0x40, 0x0e, 0xc8, 0x36, 0x71, 0x93, 0xd3, 0x84, + 0x41, 0xb5, 0xbf, 0x2f, 0xc2, 0xa6, 0x58, 0x89, 0x16, 0x7f, 0x21, 0xce, 0xa3, 0x81, 0xe1, 0x3e, + 0xf4, 0x16, 0x20, 0xdd, 0xfa, 0x46, 0x7f, 0xee, 0x53, 0x9f, 0xcf, 0xd5, 0x3d, 0xa2, 0x4d, 0xe3, + 0xcf, 0x47, 0x38, 0x66, 0x8b, 0x23, 0xf6, 0x88, 0x81, 0xee, 0xc2, 0xba, 0x39, 0xb1, 0x1d, 0x8f, + 0x7a, 0x9c, 0x4c, 0xb2, 0xf0, 0xfe, 0x46, 0x5c, 0x69, 0x73, 0x64, 0xd7, 0xa7, 0x22, 0xf2, 0x3b, + 0x1b, 0x7a, 0x66, 0x08, 0x23, 0xf0, 0x51, 0x13, 0x6c, 0xc1, 0xb3, 0x33, 0x03, 0xd7, 0xae, 0x8d, + 0x90, 0x42, 0x34, 0xc5, 0x04, 0xf6, 0xfa, 0xf4, 0x94, 0x78, 0x39, 0x52, 0x3c, 0xcd, 0xb4, 0xf5, + 0x51, 0x40, 0xad, 0x1a, 0xab, 0x1e, 0x06, 0xa0, 0x37, 0x22, 0x82, 0xbe, 0xc0, 0xb3, 0xda, 0xcc, + 0x78, 0xf1, 0xc1, 0xd4, 0x74, 0x73, 0xe2, 0x86, 0xf1, 0x5e, 0xf1, 0x45, 0x8c, 0x39, 0x71, 0xd1, + 0xc7, 0xd0, 0x11, 0x9d, 0xb1, 0xc9, 0x69, 0xa0, 0xb1, 0x48, 0xfe, 0xc4, 0xd5, 0xa6, 0x24, 0xf0, + 0xcc, 0x91, 0x58, 0xa3, 0x97, 0x38, 0xc5, 0x3e, 0x39, 0x0d, 0x1e, 0x3b, 0x6e, 0x7f, 0xe2, 0xee, + 0x31, 0xac, 0xfa, 0x77, 0x45, 0xe8, 0xe4, 0x0e, 0x2b, 0x9f, 0xef, 0xff, 0x19, 0xd5, 0x6f, 0x35, + 0xaa, 0x7f, 0x50, 0x80, 0xf5, 0xdc, 0x51, 0x45, 0x9f, 0xa4, 0xec, 0xc0, 0x8d, 0x4c, 0x0c, 0x30, + 0x4f, 0xbb, 0x23, 0x5b, 0xf0, 0x71, 0xd2, 0x16, 0xbc, 0x76, 0x4e, 0xed, 0x84, 0x3d, 0xb8, 0x07, + 0x97, 0x9e, 0xf8, 0x84, 0x9d, 0xc4, 0x5d, 0x8b, 0x7d, 0x26, 0xe3, 0x9f, 0x6b, 0x93, 0xef, 0xc2, + 0x7a, 0xba, 0xce, 0x39, 0x16, 0x59, 0xfd, 0x19, 0x00, 0x3d, 0xf1, 0x0b, 0xd6, 0xb7, 0x61, 0x85, + 0x07, 0x1f, 0xa6, 0x82, 0x07, 0x3d, 0xe2, 0xf1, 0x1a, 0x2d, 0x86, 0x08, 0x79, 0x77, 0x59, 0x38, + 0x64, 0xaa, 0x9f, 0x32, 0x97, 0x28, 0xbc, 0xf3, 0x61, 0x5b, 0x97, 0x00, 0xb2, 0xd6, 0xd5, 0x9f, + 0x42, 0xad, 0x17, 0x1d, 0xa3, 0x5e, 0x3a, 0x77, 0x0d, 0xca, 0x94, 0x3b, 0x7a, 0x2b, 0x35, 0x4d, + 0x6b, 0xc9, 0x78, 0x75, 0x6a, 0x56, 0xe6, 0x3f, 0xf1, 0x8d, 0x44, 0x0d, 0x27, 0xe1, 0x2e, 0x40, + 0x3f, 0x1e, 0x9d, 0x8c, 0x4c, 0x85, 0x1c, 0x99, 0xde, 0x85, 0x5a, 0x3f, 0xea, 0xf1, 0x85, 0x6a, + 0x68, 0x50, 0xee, 0x9f, 0xd3, 0x8b, 0xfe, 0x8b, 0xf4, 0xa2, 0x9f, 0xee, 0xc5, 0xaf, 0x0b, 0xa0, + 0xa4, 0xf5, 0x02, 0x7d, 0x94, 0x6a, 0x4d, 0xda, 0xa8, 0xf2, 0xf5, 0x2e, 0x6a, 0xf9, 0x83, 0x64, + 0xcb, 0xd7, 0xe6, 0x57, 0x4c, 0xbc, 0x09, 0x50, 0xa1, 0x4c, 0x8e, 0x26, 0x6e, 0xf6, 0x53, 0x37, + 0x3a, 0xea, 0x98, 0xe1, 0x28, 0x8d, 0x49, 0x69, 0x32, 0x9f, 0x93, 0xf5, 0x19, 0x0d, 0xc5, 0xa9, + 0x0f, 0xc5, 0xce, 0x32, 0xd4, 0xbd, 0x09, 0x09, 0xf6, 0xc8, 0xf4, 0x88, 0x78, 0xfe, 0xb1, 0x29, + 0x4d, 0x52, 0xd2, 0xa3, 0x2a, 0x64, 0x3d, 0x2a, 0xb5, 0x2b, 0xcc, 0x68, 0x9a, 0x47, 0x34, 0x6b, + 0xe7, 0xb3, 0x88, 0x8c, 0x46, 0x9a, 0xc7, 0xb9, 0x46, 0x23, 0x5f, 0xf0, 0x8b, 0x1a, 0x8d, 0x5c, + 0x91, 0xc3, 0x99, 0xfe, 0x19, 0x5c, 0xdd, 0x75, 0xec, 0xc9, 0x2e, 0xf5, 0x80, 0x5e, 0xd0, 0xa1, + 0xbb, 0x80, 0x3b, 0xab, 0xfe, 0x63, 0x01, 0xae, 0xcc, 0xe3, 0xff, 0x5d, 0xba, 0x7e, 0xb7, 0x61, + 0x85, 0x05, 0xb0, 0x12, 0xf2, 0x71, 0xbf, 0xa3, 0x45, 0x11, 0x58, 0x72, 0xb9, 0x1f, 0x40, 0x27, + 0x43, 0xeb, 0x69, 0xe4, 0xd4, 0x35, 0xbd, 0xc8, 0x65, 0xde, 0x48, 0x55, 0xf2, 0x7a, 0x1c, 0xad, + 0xfe, 0x61, 0x01, 0xda, 0xf3, 0x3a, 0x88, 0x3e, 0x4b, 0xcd, 0xab, 0xf4, 0xd1, 0xcf, 0xd9, 0x83, + 0x1e, 0x4d, 0xed, 0x27, 0xc9, 0xa9, 0xbd, 0x79, 0x3e, 0x83, 0xc4, 0xec, 0xfe, 0x43, 0x19, 0x96, + 0x84, 0x7f, 0x87, 0x3e, 0x87, 0xd5, 0xa9, 0xab, 0x65, 0x2e, 0x9b, 0xb8, 0x64, 0x9b, 0x67, 0x38, + 0x9d, 0x78, 0x65, 0x9a, 0x71, 0x77, 0xdf, 0x89, 0x7a, 0xc6, 0x05, 0xdb, 0xc8, 0xdc, 0x36, 0xa5, + 0x3a, 0x92, 0xbe, 0x89, 0x2c, 0x5d, 0xf8, 0x26, 0xf2, 0xc7, 0xb0, 0x11, 0x1e, 0xc9, 0xc4, 0xe6, + 0x27, 0x2e, 0x96, 0xc3, 0x68, 0xe9, 0xb5, 0x73, 0x36, 0x49, 0xbc, 0xee, 0xe5, 0x6e, 0xd5, 0x8f, + 0x01, 0xcd, 0x7c, 0x12, 0x6f, 0x2d, 0xdc, 0xde, 0x2e, 0xa6, 0xef, 0x9f, 0xd2, 0x26, 0x0a, 0x2b, + 0xb3, 0xb4, 0x65, 0xcc, 0xdc, 0x11, 0x54, 0xd2, 0xbd, 0x9b, 0x7f, 0x47, 0x10, 0x75, 0x2f, 0x60, + 0xcb, 0x54, 0x9b, 0x46, 0xeb, 0x54, 0x5c, 0x54, 0x5e, 0x3b, 0x67, 0x39, 0x8b, 0xee, 0x65, 0x8c, + 0x8a, 0x0e, 0x9b, 0xf4, 0xdc, 0xa6, 0xf1, 0x13, 0x5d, 0x66, 0xde, 0xf9, 0xc5, 0xa6, 0x7a, 0xbe, + 0x42, 0xe1, 0xb6, 0x35, 0x07, 0xa3, 0xce, 0xa0, 0x22, 0x1e, 0x03, 0x6c, 0x42, 0xcd, 0x74, 0xb5, + 0xc4, 0x7b, 0x80, 0xaa, 0x19, 0xbe, 0x14, 0x78, 0x1d, 0x5a, 0x53, 0xdd, 0xff, 0x4a, 0x38, 0x8b, + 0xda, 0xd4, 0xb4, 0x85, 0xa9, 0x68, 0x52, 0x30, 0x77, 0x14, 0xf7, 0x4c, 0x3b, 0x43, 0xa7, 0x9f, + 0x8a, 0xe3, 0x84, 0x4c, 0xa7, 0x9f, 0xaa, 0xbf, 0x5f, 0x00, 0x88, 0x9f, 0x65, 0xff, 0x86, 0x6f, + 0xe7, 0x29, 0xcc, 0x32, 0xfd, 0x80, 0xbd, 0x1e, 0xab, 0x61, 0xf6, 0x9f, 0x3d, 0x07, 0x4e, 0x3e, + 0x0d, 0x50, 0xd2, 0x73, 0x29, 0xbd, 0x07, 0xd8, 0x81, 0xea, 0x9e, 0x1e, 0x8c, 0x8e, 0xa9, 0x30, + 0x37, 0x13, 0xc2, 0x48, 0x7b, 0x2c, 0xa3, 0x38, 0xe7, 0x19, 0xff, 0x53, 0x68, 0x24, 0x9c, 0xe7, + 0x3b, 0x09, 0x66, 0x92, 0x4e, 0xca, 0x54, 0x12, 0xcf, 0x4b, 0x50, 0x91, 0x1c, 0xf2, 0x26, 0x16, + 0x25, 0xf5, 0x9f, 0xcb, 0x00, 0x5b, 0x8e, 0x6d, 0x98, 0x5c, 0xf1, 0xef, 0x82, 0xf8, 0x70, 0x4c, + 0x8b, 0xdf, 0xc2, 0xa3, 0x94, 0xa4, 0x87, 0x24, 0xc0, 0x35, 0x4e, 0x45, 0xbb, 0xf5, 0x01, 0x34, + 0xa2, 0x3b, 0x07, 0x5a, 0xa9, 0x38, 0xb7, 0x52, 0xf4, 0x48, 0x89, 0x56, 0xfb, 0x01, 0x2c, 0xa7, + 0x4e, 0x0a, 0xa5, 0x74, 0xc8, 0x52, 0xee, 0x0a, 0x6e, 0xe8, 0x72, 0xf7, 0xef, 0x41, 0x3d, 0xac, + 0x4d, 0xdb, 0x2c, 0xcf, 0x17, 0x94, 0x57, 0xa3, 0x2d, 0x7e, 0x18, 0x7d, 0x25, 0x1b, 0x3c, 0x67, + 0xb5, 0x16, 0xe7, 0xd6, 0x6a, 0x44, 0x84, 0xb4, 0xe2, 0xa7, 0xb0, 0x42, 0x8f, 0x01, 0xc9, 0xca, + 0x95, 0xb9, 0x95, 0x5b, 0xe4, 0x34, 0xd8, 0x92, 0xeb, 0x5f, 0x83, 0xba, 0xe7, 0x7e, 0x65, 0xd2, + 0xf5, 0x35, 0xb3, 0x02, 0xb6, 0x76, 0x17, 0x31, 0x78, 0xfc, 0xab, 0x9d, 0x99, 0x15, 0xa0, 0x4f, + 0x00, 0xe2, 0x4f, 0x71, 0xc4, 0x95, 0xa9, 0x74, 0x23, 0x10, 0xcf, 0x8f, 0x58, 0xe6, 0x74, 0x5a, + 0x6b, 0xd1, 0x97, 0x3a, 0xe8, 0x21, 0xac, 0x5a, 0x74, 0x89, 0xa7, 0x24, 0xac, 0xcd, 0x95, 0x70, + 0x85, 0x91, 0xcb, 0x32, 0xaa, 0xc7, 0x50, 0x8b, 0x78, 0xa3, 0x55, 0x68, 0xe1, 0xc1, 0x93, 0x61, + 0x4f, 0x1b, 0x7e, 0x79, 0x10, 0xbd, 0x4f, 0xdc, 0x80, 0x55, 0x09, 0xd8, 0xdf, 0x1f, 0xf6, 0xf0, + 0x7e, 0x77, 0x57, 0x29, 0xa4, 0x10, 0xbd, 0x67, 0x02, 0x51, 0x44, 0x6b, 0xa0, 0x48, 0x08, 0xf1, + 0xc9, 0xa9, 0x3a, 0x86, 0x56, 0xd4, 0x72, 0x97, 0x7f, 0xef, 0x7d, 0x37, 0xa1, 0xcc, 0x57, 0xe4, + 0x9e, 0x27, 0x08, 0x25, 0x7d, 0xbe, 0x0e, 0xf5, 0xb0, 0xb7, 0x66, 0xf4, 0xf5, 0x92, 0x0c, 0x52, + 0xf7, 0xa1, 0xb6, 0x47, 0x0c, 0xd1, 0xc2, 0x9b, 0x89, 0x16, 0x36, 0xe4, 0x9b, 0x04, 0x23, 0xc3, + 0x7b, 0x0d, 0x16, 0x4f, 0x74, 0x6b, 0x16, 0x7e, 0xdc, 0xc9, 0x0b, 0xaa, 0x06, 0xad, 0xae, 0x7f, + 0xe0, 0x11, 0x97, 0xd8, 0x21, 0x57, 0x05, 0x4a, 0xba, 0x6f, 0x0b, 0x8f, 0x8e, 0xfe, 0xa5, 0xcb, + 0x8c, 0x52, 0xe8, 0x51, 0x88, 0x9e, 0x97, 0x90, 0x0a, 0x4d, 0xba, 0xa1, 0x58, 0x64, 0x1c, 0x68, + 0x53, 0xc7, 0x0f, 0x84, 0x5f, 0x52, 0x9f, 0xf9, 0x64, 0x97, 0x8c, 0x83, 0x3d, 0x87, 0xbd, 0xf8, + 0x6d, 0x8a, 0x47, 0x77, 0x82, 0xfd, 0x99, 0x1f, 0xca, 0xf9, 0xc4, 0x1a, 0x0b, 0xdf, 0x87, 0xfd, + 0x57, 0x6f, 0x42, 0x6b, 0x97, 0x05, 0x59, 0x3d, 0x32, 0x16, 0x0c, 0xa2, 0x8e, 0x88, 0x6b, 0x04, + 0xde, 0x91, 0xbf, 0x2d, 0xc1, 0x12, 0x27, 0xf0, 0xe3, 0xd7, 0x29, 0x3a, 0xff, 0xae, 0x3f, 0x63, + 0x28, 0x99, 0x52, 0x70, 0x6a, 0xf1, 0x3a, 0x45, 0xf0, 0xfe, 0x10, 0x6a, 0xf1, 0x0d, 0x5b, 0x31, + 0xfd, 0x2c, 0x25, 0x35, 0x71, 0x38, 0xa6, 0x45, 0x37, 0xa0, 0x34, 0x15, 0x8e, 0x59, 0xe2, 0xa4, + 0x11, 0xcd, 0x04, 0xa6, 0x78, 0xf4, 0x11, 0x00, 0x5d, 0xe1, 0x7c, 0xbc, 0xc5, 0x02, 0xbf, 0x9c, + 0xb0, 0x0d, 0xf2, 0x54, 0xb0, 0x75, 0xce, 0x01, 0xe8, 0x53, 0x68, 0x26, 0x96, 0xab, 0x58, 0xe7, + 0x67, 0x48, 0xd7, 0x90, 0x57, 0x2c, 0xba, 0x0b, 0x4b, 0xe2, 0x55, 0xa4, 0x58, 0xe4, 0x92, 0xba, + 0x24, 0x26, 0x08, 0x87, 0x74, 0x54, 0x58, 0x11, 0xf2, 0xf6, 0xc8, 0x58, 0x6c, 0xce, 0x97, 0xe5, + 0xfd, 0x33, 0x31, 0x2f, 0x61, 0x34, 0xdc, 0x23, 0x63, 0xf4, 0x10, 0x5a, 0xa9, 0xb5, 0x2b, 0xb6, + 0xdf, 0x33, 0xc4, 0x5d, 0x4e, 0x2e, 0x5f, 0xf5, 0xe7, 0x05, 0xa8, 0x45, 0x9f, 0x29, 0x44, 0xbb, + 0x47, 0x41, 0xda, 0xc8, 0xde, 0x07, 0x18, 0x45, 0x46, 0x44, 0xcc, 0xd6, 0x5a, 0x9e, 0x81, 0xc1, + 0x12, 0x1d, 0x7a, 0x13, 0x96, 0xb8, 0x5a, 0xf8, 0x62, 0xb6, 0xe4, 0x87, 0x43, 0x1c, 0x81, 0x43, + 0x0a, 0xf5, 0x0b, 0xa8, 0x08, 0xaf, 0x2c, 0x4f, 0x80, 0xe4, 0x87, 0x4e, 0xc5, 0x8b, 0x7d, 0xe8, + 0xf4, 0x4f, 0x05, 0x50, 0xd2, 0x4f, 0x7c, 0xd0, 0xad, 0xc4, 0x4a, 0x5e, 0x4b, 0x3f, 0x06, 0x92, + 0x96, 0xb1, 0x9c, 0x17, 0xa0, 0x78, 0x81, 0xbc, 0x00, 0x39, 0xb9, 0x5a, 0x12, 0x1f, 0xff, 0x94, + 0xcf, 0xfb, 0xf8, 0x07, 0xbd, 0x03, 0x4b, 0x06, 0x19, 0xeb, 0xd4, 0xc8, 0x2f, 0x9e, 0xb5, 0x90, + 0x42, 0x2a, 0xf5, 0xf7, 0x0a, 0x50, 0xc2, 0x8e, 0x8e, 0x96, 0xa1, 0xa8, 0x87, 0xe7, 0xf9, 0xa2, + 0xee, 0xa3, 0x57, 0x40, 0x6c, 0xb0, 0x16, 0x09, 0x1d, 0xa2, 0x18, 0x40, 0x8d, 0xcc, 0x54, 0x67, + 0x28, 0xf1, 0x6a, 0x91, 0x97, 0xa4, 0x67, 0x82, 0xe5, 0xc4, 0xb3, 0xcb, 0xf0, 0xc1, 0xde, 0xe2, + 0xd9, 0x9f, 0x2b, 0xab, 0x37, 0xf9, 0xe3, 0x51, 0x47, 0x3f, 0xef, 0x13, 0x64, 0xfe, 0xb5, 0x25, + 0x23, 0x8c, 0xbf, 0xb6, 0xf4, 0x1c, 0x3d, 0xe7, 0x6b, 0x4b, 0x4a, 0xc4, 0x50, 0xaa, 0x0f, 0xa5, + 0xa7, 0xde, 0x38, 0x57, 0x3b, 0x96, 0xa1, 0xe8, 0xf1, 0x83, 0x5c, 0x03, 0x17, 0x3d, 0x83, 0xb9, + 0x8c, 0xfc, 0xe5, 0x97, 0xc7, 0x9d, 0xaf, 0x06, 0xae, 0x72, 0x00, 0x66, 0x79, 0x29, 0xc4, 0xbb, + 0x32, 0x2f, 0x60, 0x73, 0xd2, 0xc0, 0x55, 0x0e, 0xc0, 0x81, 0x78, 0xa2, 0xc3, 0xdf, 0x34, 0x15, + 0x4d, 0x43, 0xfd, 0x75, 0x01, 0x2a, 0xfc, 0xcb, 0x86, 0xcc, 0x18, 0x6f, 0x42, 0x2d, 0x8e, 0x36, + 0x8a, 0x1c, 0x16, 0x5e, 0x18, 0x5e, 0xbc, 0x06, 0x75, 0xea, 0xed, 0x11, 0x9b, 0xdf, 0x1a, 0x95, + 0xf8, 0x96, 0xcd, 0x41, 0xec, 0xd6, 0xe8, 0x0d, 0x50, 0x04, 0x81, 0xb0, 0xc9, 0x42, 0x41, 0x6a, + 0xb8, 0xc5, 0xe1, 0xdd, 0x10, 0x9c, 0x78, 0x85, 0xb9, 0x98, 0x7a, 0x85, 0xf9, 0x56, 0xee, 0x41, + 0x43, 0xdc, 0xad, 0xa4, 0x0f, 0x13, 0xea, 0x5f, 0x17, 0xa0, 0xc6, 0x5e, 0x9f, 0xf6, 0xed, 0xb1, + 0xf3, 0x9d, 0x3c, 0x7c, 0xbd, 0x09, 0x2d, 0x7b, 0x36, 0xd5, 0xa4, 0x47, 0xc7, 0xe2, 0x2e, 0x72, + 0xd9, 0x9e, 0x4d, 0xe5, 0x47, 0xdb, 0x97, 0xa1, 0x6a, 0x8b, 0x40, 0x54, 0x78, 0xf5, 0x6d, 0xf3, + 0x18, 0x14, 0x3d, 0xfb, 0x53, 0x54, 0xf4, 0x0e, 0x81, 0x5f, 0x36, 0xd6, 0xed, 0xd9, 0xb4, 0x2b, + 0x40, 0xea, 0x0f, 0xd8, 0xc7, 0x2d, 0xd8, 0x3c, 0xa2, 0x1d, 0x09, 0xb5, 0x2d, 0x7c, 0xaf, 0x99, + 0xf9, 0xb6, 0x2f, 0xea, 0x32, 0x7f, 0xaf, 0xa9, 0x7e, 0xc2, 0x52, 0x48, 0x45, 0xb5, 0x85, 0x0a, + 0x5e, 0xb4, 0xfa, 0xed, 0x2d, 0xa8, 0x86, 0x23, 0x84, 0x00, 0x2a, 0x3b, 0xbb, 0x83, 0x87, 0xdd, + 0x5d, 0x65, 0x21, 0x4e, 0x8b, 0xc1, 0xde, 0x2f, 0x74, 0xb7, 0x7f, 0xa4, 0xf5, 0xf7, 0x95, 0x22, + 0xaa, 0xc3, 0x12, 0xfd, 0x3f, 0x78, 0x32, 0xe4, 0xf9, 0x32, 0x9e, 0xe2, 0x47, 0x4a, 0xf9, 0xf6, + 0x6e, 0xe2, 0xdd, 0x33, 0x3f, 0x37, 0x22, 0x05, 0x1a, 0xbb, 0x83, 0xc1, 0xe7, 0x4f, 0x0e, 0xb4, + 0xde, 0xb3, 0xee, 0xd6, 0x50, 0x59, 0x40, 0x2b, 0xd0, 0x14, 0x90, 0xdd, 0xc1, 0xfe, 0x4e, 0x0f, + 0x2b, 0x05, 0x84, 0x60, 0x59, 0x80, 0x0e, 0x1f, 0x0f, 0xf0, 0xb0, 0x87, 0x95, 0xe2, 0xed, 0x00, + 0xea, 0xd2, 0x89, 0x84, 0x3d, 0x9f, 0xc0, 0xbd, 0x47, 0xfd, 0x67, 0xca, 0x02, 0x6a, 0x40, 0x75, + 0xbf, 0xd7, 0xdf, 0x79, 0xfc, 0x70, 0x40, 0x2b, 0x2f, 0x41, 0x69, 0xd8, 0xdd, 0x11, 0x52, 0x1d, + 0x6a, 0x07, 0xdd, 0xe1, 0x63, 0xa5, 0x84, 0x9a, 0x50, 0xdb, 0x1a, 0xec, 0xed, 0x3d, 0xd9, 0xef, + 0x0f, 0xbf, 0x54, 0xca, 0xb4, 0xd1, 0xde, 0xb3, 0xa1, 0x16, 0x83, 0x16, 0xa9, 0x47, 0xb7, 0xdb, + 0xc5, 0x3b, 0x3d, 0x09, 0x58, 0xb9, 0xfd, 0x06, 0xd4, 0xa2, 0xa3, 0x07, 0x7b, 0xc3, 0xb5, 0xff, + 0xa5, 0xfc, 0x98, 0x0b, 0xa0, 0xd2, 0xdf, 0x7f, 0xda, 0xc3, 0x43, 0xa5, 0x78, 0xfb, 0x36, 0x28, + 0xe9, 0x83, 0x05, 0xaa, 0x40, 0xb1, 0xf7, 0x85, 0xb2, 0x40, 0x7f, 0x77, 0x7a, 0x4a, 0x81, 0xfe, + 0xee, 0xf6, 0x94, 0xe2, 0xed, 0x77, 0xc4, 0xbd, 0xa9, 0x70, 0x14, 0xe2, 0x67, 0x62, 0x74, 0x54, + 0xb7, 0xb6, 0x7a, 0x07, 0x43, 0xce, 0x1c, 0xf7, 0x7e, 0xd4, 0xdb, 0xa2, 0xcc, 0x9f, 0xc0, 0x6a, + 0x8e, 0xa3, 0x47, 0xbb, 0x11, 0x49, 0xab, 0x75, 0xb7, 0xb7, 0x95, 0x05, 0xea, 0x51, 0xc6, 0x20, + 0xdc, 0xdb, 0x1b, 0x3c, 0xa5, 0x0d, 0xaf, 0xc3, 0x8a, 0x0c, 0x15, 0xef, 0xcf, 0x6e, 0xbf, 0x0d, + 0xcd, 0x84, 0x77, 0x47, 0xc7, 0x6c, 0xaf, 0xb7, 0xad, 0xed, 0x0d, 0x28, 0xab, 0x16, 0xd4, 0x69, + 0x21, 0x24, 0x2f, 0xdc, 0x7e, 0x0b, 0x20, 0xde, 0x42, 0xa2, 0x14, 0x44, 0x74, 0x10, 0xf6, 0x0e, + 0x06, 0x58, 0xc8, 0xdc, 0x7b, 0xc6, 0xfe, 0x17, 0xef, 0xfd, 0xe2, 0x3a, 0x54, 0x77, 0xa8, 0x86, + 0x75, 0x5d, 0x13, 0xed, 0x42, 0x5d, 0xfa, 0x58, 0x0a, 0xbd, 0x92, 0xd8, 0xd8, 0x52, 0xdf, 0x60, + 0x75, 0xae, 0xcc, 0xc1, 0x8a, 0xc7, 0xdb, 0x0b, 0xa8, 0x0f, 0x10, 0x7f, 0x4e, 0x85, 0x36, 0x65, + 0xf2, 0xd4, 0x97, 0x57, 0x9d, 0x57, 0xf2, 0x91, 0x11, 0xab, 0x47, 0x50, 0x8b, 0x3e, 0x22, 0x43, + 0xd2, 0x21, 0x31, 0xfd, 0xb5, 0x59, 0x67, 0x33, 0x17, 0x17, 0xf1, 0xd9, 0x85, 0xba, 0x94, 0x11, + 0x4b, 0xee, 0x60, 0x36, 0xc5, 0x96, 0xdc, 0xc1, 0xbc, 0x34, 0x5a, 0x0b, 0xe8, 0x09, 0x2c, 0x27, + 0x73, 0x61, 0xa1, 0x6b, 0xf2, 0xc9, 0x3c, 0x27, 0xc5, 0x56, 0xe7, 0xfa, 0x7c, 0x02, 0x59, 0x48, + 0x29, 0xfb, 0x9b, 0x2c, 0x64, 0x36, 0xe1, 0x9c, 0x2c, 0x64, 0x4e, 0xca, 0x38, 0x75, 0x01, 0x61, + 0x68, 0x26, 0x92, 0x4c, 0xa1, 0xab, 0x09, 0x03, 0x9b, 0xe5, 0x78, 0x6d, 0x2e, 0x3e, 0xe2, 0xf9, + 0xbf, 0x61, 0x25, 0x93, 0xbc, 0x0a, 0xa9, 0xe7, 0x27, 0xd1, 0xea, 0x7c, 0xef, 0x4c, 0x9a, 0x88, + 0xff, 0xff, 0x02, 0x25, 0x9d, 0xa4, 0x0a, 0x49, 0xb7, 0xcd, 0x73, 0x72, 0x63, 0x75, 0xd4, 0xb3, + 0x48, 0xe4, 0x59, 0x4b, 0xa6, 0xac, 0x92, 0x67, 0x2d, 0x37, 0xff, 0x95, 0x3c, 0x6b, 0x73, 0xb2, + 0x5d, 0x2d, 0xa0, 0x67, 0xd0, 0x4a, 0x65, 0xa5, 0x42, 0xf2, 0x64, 0xe7, 0xa6, 0xc2, 0xea, 0xbc, + 0x7a, 0x06, 0x45, 0xc4, 0xf9, 0x13, 0xa8, 0xf0, 0x6d, 0x02, 0x6d, 0x24, 0x26, 0x3b, 0xfe, 0x30, + 0xa3, 0xd3, 0xce, 0x22, 0xa2, 0xea, 0x1f, 0xc2, 0x92, 0xf8, 0xd2, 0x04, 0x25, 0xc9, 0xa4, 0x8f, + 0x4f, 0x3a, 0xa9, 0x8f, 0x92, 0xd4, 0x85, 0x77, 0x0b, 0x54, 0x0f, 0xa5, 0xaf, 0x32, 0x64, 0x3d, + 0xcc, 0x7e, 0x1a, 0x22, 0xeb, 0x61, 0xde, 0xa7, 0x1c, 0x0b, 0xe8, 0x33, 0x58, 0x12, 0x09, 0xfb, + 0x64, 0x31, 0x92, 0x09, 0x04, 0x3b, 0x97, 0x73, 0x30, 0xb2, 0x3d, 0x89, 0xd3, 0xe3, 0xc9, 0xf6, + 0x24, 0x93, 0xe0, 0x4f, 0xb6, 0x27, 0x39, 0x19, 0xf5, 0x16, 0xd0, 0x36, 0x40, 0x9c, 0xbc, 0x49, + 0x66, 0x95, 0x49, 0xe9, 0xd4, 0xc9, 0xff, 0x9e, 0x89, 0x0d, 0xd0, 0x83, 0x28, 0x61, 0x55, 0xfc, + 0x96, 0x56, 0xda, 0xaf, 0xa3, 0x2c, 0x8c, 0x9d, 0x54, 0x2a, 0x3d, 0x56, 0xf9, 0x11, 0xd4, 0xa2, + 0x0c, 0x62, 0xb2, 0x49, 0x4b, 0xe7, 0x2f, 0x93, 0x4d, 0x5a, 0x36, 0xe5, 0x18, 0x1f, 0x95, 0x28, + 0xbf, 0x58, 0x62, 0x54, 0xd2, 0xa9, 0xc8, 0x12, 0xa3, 0x92, 0x4d, 0x49, 0xb6, 0x80, 0x1e, 0x43, + 0x2d, 0xca, 0x09, 0x26, 0x8b, 0x94, 0xce, 0x54, 0x26, 0x8b, 0x94, 0x4d, 0x22, 0xb6, 0x70, 0xab, + 0x40, 0x55, 0x96, 0x67, 0xe1, 0x92, 0x55, 0x36, 0x91, 0x04, 0xac, 0xd3, 0xce, 0x22, 0x64, 0x73, + 0x1f, 0x25, 0xdc, 0x92, 0x05, 0x49, 0xe7, 0xf1, 0xea, 0x6c, 0xe6, 0xe2, 0x64, 0x9d, 0x13, 0x29, + 0x86, 0x52, 0xaa, 0x2f, 0xe5, 0xa6, 0x91, 0x75, 0x2e, 0x95, 0x8f, 0x28, 0xd2, 0xda, 0x34, 0x87, + 0x64, 0xea, 0xa1, 0x94, 0xd6, 0xa6, 0x38, 0x44, 0x5a, 0xcb, 0x98, 0x64, 0x04, 0x96, 0xf9, 0xbc, + 0x92, 0x8f, 0x94, 0x59, 0xc5, 0xd9, 0x7f, 0x50, 0x46, 0x2f, 0xe6, 0xb0, 0xca, 0x49, 0x18, 0xc4, + 0xf6, 0x18, 0x29, 0x05, 0x10, 0xca, 0x6a, 0x86, 0xcc, 0xec, 0xca, 0x1c, 0xac, 0x3c, 0x5f, 0x51, + 0x02, 0x1f, 0x79, 0xbe, 0xd2, 0x79, 0x80, 0xe4, 0xf9, 0xca, 0x66, 0xfc, 0x61, 0x7b, 0x55, 0x22, + 0x19, 0x90, 0xbc, 0x57, 0xe5, 0xe5, 0x15, 0x92, 0xf7, 0xaa, 0xfc, 0x2c, 0x42, 0x91, 0xf5, 0x74, + 0xf4, 0xb4, 0xf5, 0x8c, 0x8e, 0x87, 0x69, 0xeb, 0x19, 0x1f, 0x07, 0xf9, 0x40, 0x49, 0x89, 0x7b, + 0x50, 0x66, 0x5c, 0xe5, 0xe4, 0x44, 0xf2, 0x40, 0xe5, 0x65, 0xfb, 0x59, 0x10, 0xeb, 0x82, 0x1e, + 0x1f, 0x93, 0xeb, 0x22, 0x4e, 0xba, 0x93, 0x5a, 0x17, 0x72, 0x62, 0x1d, 0x69, 0x5d, 0x50, 0x0e, + 0x99, 0x75, 0x21, 0x31, 0xd9, 0xcc, 0xc5, 0xa5, 0xc6, 0x24, 0x25, 0x46, 0x22, 0x11, 0x51, 0x6a, + 0x4c, 0x92, 0xd5, 0x31, 0x3b, 0x5f, 0x4b, 0xd7, 0x13, 0x57, 0x13, 0xc4, 0x99, 0x94, 0x34, 0xf2, + 0x34, 0xe5, 0xe6, 0xf0, 0xe1, 0x3c, 0x13, 0xb9, 0x75, 0x64, 0x9e, 0x79, 0x49, 0x7b, 0x64, 0x9e, + 0xf9, 0x49, 0x79, 0x98, 0x1b, 0x91, 0xce, 0xa0, 0x23, 0xbb, 0x11, 0x73, 0x52, 0xf6, 0xc8, 0x6e, + 0xc4, 0xdc, 0x04, 0x3c, 0xcc, 0x07, 0xca, 0xa4, 0xcf, 0x91, 0x7d, 0xa0, 0x79, 0xf9, 0x79, 0x64, + 0x1f, 0x68, 0x7e, 0xfe, 0x9d, 0x05, 0x34, 0x80, 0x86, 0x9c, 0x6a, 0x07, 0x25, 0x1d, 0xbd, 0x74, + 0x56, 0x99, 0xce, 0xd5, 0x79, 0x68, 0x99, 0xa1, 0x9c, 0x24, 0x07, 0x25, 0xdd, 0xdb, 0xb3, 0x18, + 0xe6, 0xe6, 0xd6, 0xe1, 0x1e, 0x4f, 0x32, 0xfd, 0x0d, 0xca, 0xb8, 0xb7, 0x19, 0xb6, 0xaf, 0x9e, + 0x41, 0x21, 0x4f, 0x5c, 0x3a, 0xdf, 0x8d, 0x3c, 0x71, 0x73, 0x32, 0xeb, 0x74, 0xd4, 0xb3, 0x48, + 0x52, 0x67, 0x09, 0x11, 0xe3, 0x4b, 0x9e, 0x25, 0x12, 0xd9, 0x5b, 0x52, 0x67, 0x89, 0x54, 0xaa, + 0x14, 0xc6, 0x27, 0xca, 0x0e, 0x22, 0xf3, 0x49, 0xa7, 0xcd, 0x91, 0xf9, 0x64, 0x13, 0xdb, 0xb0, + 0x79, 0x91, 0xf3, 0x7a, 0xc8, 0xf3, 0x92, 0x93, 0xf1, 0x46, 0x9e, 0x97, 0xdc, 0x64, 0x34, 0xc2, + 0xe3, 0x97, 0x12, 0x75, 0x24, 0x3d, 0xfe, 0x6c, 0x9a, 0x9a, 0xa4, 0xc7, 0x9f, 0x97, 0x17, 0x66, + 0x01, 0x19, 0x2c, 0x1f, 0x54, 0x26, 0x88, 0xf9, 0x5a, 0xce, 0x10, 0x65, 0xb2, 0x8e, 0x74, 0x6e, + 0x9c, 0x43, 0x25, 0xb7, 0x92, 0x93, 0x70, 0x45, 0x6e, 0x65, 0x7e, 0xa6, 0x17, 0xb9, 0x95, 0xb3, + 0xb2, 0xb6, 0x2c, 0xa0, 0x69, 0x98, 0x15, 0x2a, 0xd3, 0xd0, 0xcd, 0xfc, 0xb1, 0xcd, 0xb6, 0x75, + 0xeb, 0x7c, 0xc2, 0xa8, 0x39, 0x37, 0x4a, 0x05, 0x95, 0x8d, 0x01, 0xcf, 0x19, 0xf8, 0x6c, 0x83, + 0x6f, 0x5c, 0x80, 0x52, 0xf6, 0x13, 0xe2, 0xb8, 0x12, 0xda, 0x4c, 0x9f, 0x0d, 0xa4, 0x58, 0x55, + 0xe7, 0x95, 0x7c, 0x64, 0xc8, 0xea, 0xa8, 0xc2, 0xd2, 0x9e, 0xbf, 0xf7, 0x1f, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x66, 0x73, 0xca, 0xae, 0x05, 0x5d, 0x00, 0x00, } diff --git a/api/gobgp.proto b/api/gobgp.proto index cc12f6ba..d8c66558 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -38,6 +38,7 @@ service GobgpApi { rpc EnableNeighbor(EnableNeighborRequest) returns (EnableNeighborResponse) {} rpc DisableNeighbor(DisableNeighborRequest) returns (DisableNeighborResponse) {} rpc GetRib(GetRibRequest) returns (GetRibResponse) {} + rpc GetPath(GetPathRequest) returns (stream Path) {} rpc ValidateRib(ValidateRibRequest) returns (ValidateRibResponse) {} rpc AddPath(AddPathRequest) returns (AddPathResponse) {} rpc DeletePath(DeletePathRequest) returns (DeletePathResponse) {} @@ -566,6 +567,26 @@ message GetRibResponse { Table table = 1; } +// API representation of table.LookupOption +enum TableLookupOption { + LOOKUP_EXACT = 0; + LOOKUP_LONGER = 1; + LOOKUP_SHORTER = 2; +} + +// API representation of table.LookupPrefix +message TableLookupPrefix { + string prefix = 1; + TableLookupOption lookup_option = 2; +} + +message GetPathRequest { + Resource type = 1; + string name = 2; + uint32 family = 3; + repeated TableLookupPrefix prefixes = 4; +} + message ValidateRibRequest { Resource type = 1; uint32 family = 2; diff --git a/api/grpc_server.go b/api/grpc_server.go index 38d5116e..e0e17906 100644 --- a/api/grpc_server.go +++ b/api/grpc_server.go @@ -466,6 +466,58 @@ func (s *Server) GetRib(ctx context.Context, arg *GetRibRequest) (*GetRibRespons }, err } +func (s *Server) GetPath(arg *GetPathRequest, stream GobgpApi_GetPathServer) error { + f := func() []*table.LookupPrefix { + l := make([]*table.LookupPrefix, 0, len(arg.Prefixes)) + for _, p := range arg.Prefixes { + l = append(l, &table.LookupPrefix{ + Prefix: p.Prefix, + LookupOption: table.LookupOption(p.LookupOption), + }) + } + return l + } + + in := false + family := bgp.RouteFamily(arg.Family) + var tbl *table.Table + var err error + switch arg.Type { + case Resource_LOCAL, Resource_GLOBAL: + tbl, err = s.bgpServer.GetRib(arg.Name, family, f()) + case Resource_ADJ_IN: + in = true + fallthrough + case Resource_ADJ_OUT: + tbl, err = s.bgpServer.GetAdjRib(arg.Name, family, in, f()) + case Resource_VRF: + tbl, err = s.bgpServer.GetVrfRib(arg.Name, family, []*table.LookupPrefix{}) + default: + return fmt.Errorf("unsupported resource type: %v", arg.Type) + } + if err != nil { + return err + } + + return func() error { + for _, dst := range tbl.GetDestinations() { + for idx, path := range dst.GetAllKnownPathList() { + p := ToPathApi(path) + if idx == 0 { + switch arg.Type { + case Resource_LOCAL, Resource_GLOBAL: + p.Best = true + } + } + if err := stream.Send(p); err != nil { + return err + } + } + } + return nil + }() +} + func (s *Server) MonitorRib(arg *MonitorRibRequest, stream GobgpApi_MonitorRibServer) error { if arg == nil || arg.Table == nil { return fmt.Errorf("invalid request") diff --git a/api/util.go b/api/util.go index 7cb9d2b8..ce7a1d02 100644 --- a/api/util.go +++ b/api/util.go @@ -46,7 +46,7 @@ func (t *Table) ToNativeTable(option ...ToNativeOption) (*table.Table, error) { } func getNLRI(family bgp.RouteFamily, buf []byte) (bgp.AddrPrefixInterface, error) { - afi, safi := bgp.RouteFamilyToAfiSafi(bgp.RouteFamily(family)) + afi, safi := bgp.RouteFamilyToAfiSafi(family) nlri, err := bgp.NewPrefixFromRouteFamily(afi, safi) if err != nil { return nil, err @@ -85,6 +85,10 @@ func (d *Destination) ToNativeDestination(option ...ToNativeOption) (*table.Dest return table.NewDestination(nlri, 0, paths...), nil } +func (p *Path) GetNativeNlri() (bgp.AddrPrefixInterface, error) { + return getNLRI(bgp.RouteFamily(p.Family), p.Nlri) +} + func (p *Path) ToNativePath(option ...ToNativeOption) (*table.Path, error) { info := &table.PeerInfo{ AS: p.SourceAsn, |