[VOL-5452] Added new RPCs and enums for component states as well as reset/enable/disable of components
Change-Id: I03781f71f8f7829c54d6b73298742f7bea364e41
Signed-off-by: Amit Ghosh <amit.ghosh@radisys.com>
diff --git a/go/dmi/hw_events_mgmt_service.pb.go b/go/dmi/hw_events_mgmt_service.pb.go
index cfca737..b2fffa4 100644
--- a/go/dmi/hw_events_mgmt_service.pb.go
+++ b/go/dmi/hw_events_mgmt_service.pb.go
@@ -96,6 +96,13 @@
// Events for the line cards on the HW Device
EventIds_EVENT_LINE_CARD_PLUG_OUT EventIds = 600
EventIds_EVENT_LINE_CARD_PLUG_IN EventIds = 601
+ // Indicates that the a state of a component has changed.
+ // The StateChangeInfo message inside the event conveys the old and new states.
+ EventIds_EVENT_COMPONENT_ADMIN_STATE_CHANGED EventIds = 700
+ EventIds_EVENT_COMPONENT_OPER_STATE_CHANGED EventIds = 701
+ EventIds_EVENT_COMPONENT_ALARM_STATE_CHANGED EventIds = 702
+ EventIds_EVENT_COMPONENT_USAGE_STATE_CHANGED EventIds = 703
+ EventIds_EVENT_COMPONENT_STANDBY_STATE_CHANGED EventIds = 704
)
var EventIds_name = map[int32]string{
@@ -154,6 +161,11 @@
513: "EVENT_HW_NTP_SYNC_FAILURE_RECOVERED",
600: "EVENT_LINE_CARD_PLUG_OUT",
601: "EVENT_LINE_CARD_PLUG_IN",
+ 700: "EVENT_COMPONENT_ADMIN_STATE_CHANGED",
+ 701: "EVENT_COMPONENT_OPER_STATE_CHANGED",
+ 702: "EVENT_COMPONENT_ALARM_STATE_CHANGED",
+ 703: "EVENT_COMPONENT_USAGE_STATE_CHANGED",
+ 704: "EVENT_COMPONENT_STANDBY_STATE_CHANGED",
}
var EventIds_value = map[string]int32{
@@ -212,6 +224,11 @@
"EVENT_HW_NTP_SYNC_FAILURE_RECOVERED": 513,
"EVENT_LINE_CARD_PLUG_OUT": 600,
"EVENT_LINE_CARD_PLUG_IN": 601,
+ "EVENT_COMPONENT_ADMIN_STATE_CHANGED": 700,
+ "EVENT_COMPONENT_OPER_STATE_CHANGED": 701,
+ "EVENT_COMPONENT_ALARM_STATE_CHANGED": 702,
+ "EVENT_COMPONENT_USAGE_STATE_CHANGED": 703,
+ "EVENT_COMPONENT_STANDBY_STATE_CHANGED": 704,
}
func (x EventIds) String() string {
@@ -938,6 +955,366 @@
return ""
}
+type AdminStateChange struct {
+ Old ComponentAdminState `protobuf:"varint,1,opt,name=old,proto3,enum=dmi.ComponentAdminState" json:"old,omitempty"`
+ New ComponentAdminState `protobuf:"varint,2,opt,name=new,proto3,enum=dmi.ComponentAdminState" json:"new,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *AdminStateChange) Reset() { *m = AdminStateChange{} }
+func (m *AdminStateChange) String() string { return proto.CompactTextString(m) }
+func (*AdminStateChange) ProtoMessage() {}
+func (*AdminStateChange) Descriptor() ([]byte, []int) {
+ return fileDescriptor_8962d785556e9979, []int{10}
+}
+
+func (m *AdminStateChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AdminStateChange.Unmarshal(m, b)
+}
+func (m *AdminStateChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AdminStateChange.Marshal(b, m, deterministic)
+}
+func (m *AdminStateChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AdminStateChange.Merge(m, src)
+}
+func (m *AdminStateChange) XXX_Size() int {
+ return xxx_messageInfo_AdminStateChange.Size(m)
+}
+func (m *AdminStateChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_AdminStateChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AdminStateChange proto.InternalMessageInfo
+
+func (m *AdminStateChange) GetOld() ComponentAdminState {
+ if m != nil {
+ return m.Old
+ }
+ return ComponentAdminState_COMP_ADMIN_STATE_UNDEFINED
+}
+
+func (m *AdminStateChange) GetNew() ComponentAdminState {
+ if m != nil {
+ return m.New
+ }
+ return ComponentAdminState_COMP_ADMIN_STATE_UNDEFINED
+}
+
+type OperStateChange struct {
+ Old ComponentOperState `protobuf:"varint,1,opt,name=old,proto3,enum=dmi.ComponentOperState" json:"old,omitempty"`
+ New ComponentOperState `protobuf:"varint,2,opt,name=new,proto3,enum=dmi.ComponentOperState" json:"new,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *OperStateChange) Reset() { *m = OperStateChange{} }
+func (m *OperStateChange) String() string { return proto.CompactTextString(m) }
+func (*OperStateChange) ProtoMessage() {}
+func (*OperStateChange) Descriptor() ([]byte, []int) {
+ return fileDescriptor_8962d785556e9979, []int{11}
+}
+
+func (m *OperStateChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OperStateChange.Unmarshal(m, b)
+}
+func (m *OperStateChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OperStateChange.Marshal(b, m, deterministic)
+}
+func (m *OperStateChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OperStateChange.Merge(m, src)
+}
+func (m *OperStateChange) XXX_Size() int {
+ return xxx_messageInfo_OperStateChange.Size(m)
+}
+func (m *OperStateChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_OperStateChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OperStateChange proto.InternalMessageInfo
+
+func (m *OperStateChange) GetOld() ComponentOperState {
+ if m != nil {
+ return m.Old
+ }
+ return ComponentOperState_COMP_OPER_STATE_UNDEFINED
+}
+
+func (m *OperStateChange) GetNew() ComponentOperState {
+ if m != nil {
+ return m.New
+ }
+ return ComponentOperState_COMP_OPER_STATE_UNDEFINED
+}
+
+type AlarmStateChange struct {
+ Old ComponentAlarmState `protobuf:"varint,1,opt,name=old,proto3,enum=dmi.ComponentAlarmState" json:"old,omitempty"`
+ New ComponentAlarmState `protobuf:"varint,2,opt,name=new,proto3,enum=dmi.ComponentAlarmState" json:"new,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *AlarmStateChange) Reset() { *m = AlarmStateChange{} }
+func (m *AlarmStateChange) String() string { return proto.CompactTextString(m) }
+func (*AlarmStateChange) ProtoMessage() {}
+func (*AlarmStateChange) Descriptor() ([]byte, []int) {
+ return fileDescriptor_8962d785556e9979, []int{12}
+}
+
+func (m *AlarmStateChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AlarmStateChange.Unmarshal(m, b)
+}
+func (m *AlarmStateChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AlarmStateChange.Marshal(b, m, deterministic)
+}
+func (m *AlarmStateChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AlarmStateChange.Merge(m, src)
+}
+func (m *AlarmStateChange) XXX_Size() int {
+ return xxx_messageInfo_AlarmStateChange.Size(m)
+}
+func (m *AlarmStateChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_AlarmStateChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AlarmStateChange proto.InternalMessageInfo
+
+func (m *AlarmStateChange) GetOld() ComponentAlarmState {
+ if m != nil {
+ return m.Old
+ }
+ return ComponentAlarmState_COMP_ALARM_STATE_UNDEFINED
+}
+
+func (m *AlarmStateChange) GetNew() ComponentAlarmState {
+ if m != nil {
+ return m.New
+ }
+ return ComponentAlarmState_COMP_ALARM_STATE_UNDEFINED
+}
+
+type UsageStateChange struct {
+ Old ComponentUsageState `protobuf:"varint,1,opt,name=old,proto3,enum=dmi.ComponentUsageState" json:"old,omitempty"`
+ New ComponentUsageState `protobuf:"varint,2,opt,name=new,proto3,enum=dmi.ComponentUsageState" json:"new,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *UsageStateChange) Reset() { *m = UsageStateChange{} }
+func (m *UsageStateChange) String() string { return proto.CompactTextString(m) }
+func (*UsageStateChange) ProtoMessage() {}
+func (*UsageStateChange) Descriptor() ([]byte, []int) {
+ return fileDescriptor_8962d785556e9979, []int{13}
+}
+
+func (m *UsageStateChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UsageStateChange.Unmarshal(m, b)
+}
+func (m *UsageStateChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UsageStateChange.Marshal(b, m, deterministic)
+}
+func (m *UsageStateChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UsageStateChange.Merge(m, src)
+}
+func (m *UsageStateChange) XXX_Size() int {
+ return xxx_messageInfo_UsageStateChange.Size(m)
+}
+func (m *UsageStateChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_UsageStateChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UsageStateChange proto.InternalMessageInfo
+
+func (m *UsageStateChange) GetOld() ComponentUsageState {
+ if m != nil {
+ return m.Old
+ }
+ return ComponentUsageState_COMP_USAGE_STATE_UNDEFINED
+}
+
+func (m *UsageStateChange) GetNew() ComponentUsageState {
+ if m != nil {
+ return m.New
+ }
+ return ComponentUsageState_COMP_USAGE_STATE_UNDEFINED
+}
+
+type StandbyStateChange struct {
+ Old ComponentStandbyState `protobuf:"varint,1,opt,name=old,proto3,enum=dmi.ComponentStandbyState" json:"old,omitempty"`
+ New ComponentStandbyState `protobuf:"varint,2,opt,name=new,proto3,enum=dmi.ComponentStandbyState" json:"new,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *StandbyStateChange) Reset() { *m = StandbyStateChange{} }
+func (m *StandbyStateChange) String() string { return proto.CompactTextString(m) }
+func (*StandbyStateChange) ProtoMessage() {}
+func (*StandbyStateChange) Descriptor() ([]byte, []int) {
+ return fileDescriptor_8962d785556e9979, []int{14}
+}
+
+func (m *StandbyStateChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_StandbyStateChange.Unmarshal(m, b)
+}
+func (m *StandbyStateChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_StandbyStateChange.Marshal(b, m, deterministic)
+}
+func (m *StandbyStateChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_StandbyStateChange.Merge(m, src)
+}
+func (m *StandbyStateChange) XXX_Size() int {
+ return xxx_messageInfo_StandbyStateChange.Size(m)
+}
+func (m *StandbyStateChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_StandbyStateChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_StandbyStateChange proto.InternalMessageInfo
+
+func (m *StandbyStateChange) GetOld() ComponentStandbyState {
+ if m != nil {
+ return m.Old
+ }
+ return ComponentStandbyState_COMP_STANDBY_STATE_UNDEFINED
+}
+
+func (m *StandbyStateChange) GetNew() ComponentStandbyState {
+ if m != nil {
+ return m.New
+ }
+ return ComponentStandbyState_COMP_STANDBY_STATE_UNDEFINED
+}
+
+type StateChangeInfo struct {
+ // Types that are valid to be assigned to StateChange:
+ // *StateChangeInfo_AdminStateChange
+ // *StateChangeInfo_OperStateChange
+ // *StateChangeInfo_AlarmStateChange
+ // *StateChangeInfo_UsageStateChange
+ // *StateChangeInfo_StandbyStateChange
+ StateChange isStateChangeInfo_StateChange `protobuf_oneof:"state_change"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *StateChangeInfo) Reset() { *m = StateChangeInfo{} }
+func (m *StateChangeInfo) String() string { return proto.CompactTextString(m) }
+func (*StateChangeInfo) ProtoMessage() {}
+func (*StateChangeInfo) Descriptor() ([]byte, []int) {
+ return fileDescriptor_8962d785556e9979, []int{15}
+}
+
+func (m *StateChangeInfo) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_StateChangeInfo.Unmarshal(m, b)
+}
+func (m *StateChangeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_StateChangeInfo.Marshal(b, m, deterministic)
+}
+func (m *StateChangeInfo) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_StateChangeInfo.Merge(m, src)
+}
+func (m *StateChangeInfo) XXX_Size() int {
+ return xxx_messageInfo_StateChangeInfo.Size(m)
+}
+func (m *StateChangeInfo) XXX_DiscardUnknown() {
+ xxx_messageInfo_StateChangeInfo.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_StateChangeInfo proto.InternalMessageInfo
+
+type isStateChangeInfo_StateChange interface {
+ isStateChangeInfo_StateChange()
+}
+
+type StateChangeInfo_AdminStateChange struct {
+ AdminStateChange *AdminStateChange `protobuf:"bytes,1,opt,name=admin_state_change,json=adminStateChange,proto3,oneof"`
+}
+
+type StateChangeInfo_OperStateChange struct {
+ OperStateChange *OperStateChange `protobuf:"bytes,2,opt,name=oper_state_change,json=operStateChange,proto3,oneof"`
+}
+
+type StateChangeInfo_AlarmStateChange struct {
+ AlarmStateChange *AlarmStateChange `protobuf:"bytes,3,opt,name=alarm_state_change,json=alarmStateChange,proto3,oneof"`
+}
+
+type StateChangeInfo_UsageStateChange struct {
+ UsageStateChange *UsageStateChange `protobuf:"bytes,4,opt,name=usage_state_change,json=usageStateChange,proto3,oneof"`
+}
+
+type StateChangeInfo_StandbyStateChange struct {
+ StandbyStateChange *StandbyStateChange `protobuf:"bytes,5,opt,name=standby_state_change,json=standbyStateChange,proto3,oneof"`
+}
+
+func (*StateChangeInfo_AdminStateChange) isStateChangeInfo_StateChange() {}
+
+func (*StateChangeInfo_OperStateChange) isStateChangeInfo_StateChange() {}
+
+func (*StateChangeInfo_AlarmStateChange) isStateChangeInfo_StateChange() {}
+
+func (*StateChangeInfo_UsageStateChange) isStateChangeInfo_StateChange() {}
+
+func (*StateChangeInfo_StandbyStateChange) isStateChangeInfo_StateChange() {}
+
+func (m *StateChangeInfo) GetStateChange() isStateChangeInfo_StateChange {
+ if m != nil {
+ return m.StateChange
+ }
+ return nil
+}
+
+func (m *StateChangeInfo) GetAdminStateChange() *AdminStateChange {
+ if x, ok := m.GetStateChange().(*StateChangeInfo_AdminStateChange); ok {
+ return x.AdminStateChange
+ }
+ return nil
+}
+
+func (m *StateChangeInfo) GetOperStateChange() *OperStateChange {
+ if x, ok := m.GetStateChange().(*StateChangeInfo_OperStateChange); ok {
+ return x.OperStateChange
+ }
+ return nil
+}
+
+func (m *StateChangeInfo) GetAlarmStateChange() *AlarmStateChange {
+ if x, ok := m.GetStateChange().(*StateChangeInfo_AlarmStateChange); ok {
+ return x.AlarmStateChange
+ }
+ return nil
+}
+
+func (m *StateChangeInfo) GetUsageStateChange() *UsageStateChange {
+ if x, ok := m.GetStateChange().(*StateChangeInfo_UsageStateChange); ok {
+ return x.UsageStateChange
+ }
+ return nil
+}
+
+func (m *StateChangeInfo) GetStandbyStateChange() *StandbyStateChange {
+ if x, ok := m.GetStateChange().(*StateChangeInfo_StandbyStateChange); ok {
+ return x.StandbyStateChange
+ }
+ return nil
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*StateChangeInfo) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*StateChangeInfo_AdminStateChange)(nil),
+ (*StateChangeInfo_OperStateChange)(nil),
+ (*StateChangeInfo_AlarmStateChange)(nil),
+ (*StateChangeInfo_UsageStateChange)(nil),
+ (*StateChangeInfo_StandbyStateChange)(nil),
+ }
+}
+
type Event struct {
EventMetadata *EventMetaData `protobuf:"bytes,1,opt,name=event_metadata,json=eventMetadata,proto3" json:"event_metadata,omitempty"`
EventId EventIds `protobuf:"varint,2,opt,name=event_id,json=eventId,proto3,enum=dmi.EventIds" json:"event_id,omitempty"`
@@ -945,17 +1322,18 @@
// Optional threshold information for an event
ThresholdInfo *ThresholdInformation `protobuf:"bytes,4,opt,name=threshold_info,json=thresholdInfo,proto3" json:"threshold_info,omitempty"`
// Any additional info regarding the event
- AddInfo string `protobuf:"bytes,5,opt,name=add_info,json=addInfo,proto3" json:"add_info,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ AddInfo string `protobuf:"bytes,5,opt,name=add_info,json=addInfo,proto3" json:"add_info,omitempty"`
+ StateChangeInfo *StateChangeInfo `protobuf:"bytes,6,opt,name=state_change_info,json=stateChangeInfo,proto3" json:"state_change_info,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *Event) Reset() { *m = Event{} }
func (m *Event) String() string { return proto.CompactTextString(m) }
func (*Event) ProtoMessage() {}
func (*Event) Descriptor() ([]byte, []int) {
- return fileDescriptor_8962d785556e9979, []int{10}
+ return fileDescriptor_8962d785556e9979, []int{16}
}
func (m *Event) XXX_Unmarshal(b []byte) error {
@@ -1011,6 +1389,13 @@
return ""
}
+func (m *Event) GetStateChangeInfo() *StateChangeInfo {
+ if m != nil {
+ return m.StateChangeInfo
+ }
+ return nil
+}
+
func init() {
proto.RegisterEnum("dmi.EventIds", EventIds_name, EventIds_value)
proto.RegisterEnum("dmi.ListEventsResponse_Reason", ListEventsResponse_Reason_name, ListEventsResponse_Reason_value)
@@ -1025,119 +1410,145 @@
proto.RegisterType((*EventsConfigurationRequest)(nil), "dmi.EventsConfigurationRequest")
proto.RegisterType((*EventsConfigurationResponse)(nil), "dmi.EventsConfigurationResponse")
proto.RegisterType((*EventMetaData)(nil), "dmi.EventMetaData")
+ proto.RegisterType((*AdminStateChange)(nil), "dmi.AdminStateChange")
+ proto.RegisterType((*OperStateChange)(nil), "dmi.OperStateChange")
+ proto.RegisterType((*AlarmStateChange)(nil), "dmi.AlarmStateChange")
+ proto.RegisterType((*UsageStateChange)(nil), "dmi.UsageStateChange")
+ proto.RegisterType((*StandbyStateChange)(nil), "dmi.StandbyStateChange")
+ proto.RegisterType((*StateChangeInfo)(nil), "dmi.StateChangeInfo")
proto.RegisterType((*Event)(nil), "dmi.Event")
}
func init() { proto.RegisterFile("dmi/hw_events_mgmt_service.proto", fileDescriptor_8962d785556e9979) }
var fileDescriptor_8962d785556e9979 = []byte{
- // 1682 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0x5b, 0x73, 0xe3, 0x48,
- 0x15, 0x8e, 0xad, 0x5c, 0x4f, 0x26, 0x46, 0x7b, 0x6a, 0x98, 0x49, 0x1c, 0x66, 0xc6, 0x78, 0x76,
- 0x37, 0xd9, 0xc0, 0xd8, 0xd9, 0xcc, 0x30, 0xc3, 0xd4, 0x3e, 0x80, 0x62, 0x2b, 0x63, 0xd5, 0x3a,
- 0x72, 0xaa, 0x2d, 0x3b, 0x2c, 0x0f, 0xab, 0xea, 0x89, 0xda, 0x8e, 0x18, 0x4b, 0xf2, 0x4a, 0xed,
- 0x84, 0x40, 0x15, 0x05, 0xfc, 0x02, 0x2e, 0xcb, 0x13, 0x14, 0xbf, 0x80, 0x85, 0x3f, 0xc0, 0x0f,
- 0xe0, 0xf2, 0x07, 0xe0, 0x95, 0x77, 0xde, 0xb8, 0xdf, 0x4b, 0x2d, 0xd9, 0x56, 0x7c, 0xcd, 0x54,
- 0xf1, 0x66, 0x9d, 0xf3, 0x7d, 0xe7, 0x7c, 0xdd, 0xe7, 0xf4, 0x91, 0xda, 0x90, 0xb3, 0x1c, 0xbb,
- 0x78, 0x7e, 0x69, 0xb2, 0x0b, 0xe6, 0xf2, 0xc0, 0x74, 0xda, 0x0e, 0x37, 0x03, 0xe6, 0x5f, 0xd8,
- 0x67, 0xac, 0xd0, 0xf5, 0x3d, 0xee, 0xa1, 0x64, 0x39, 0x76, 0xf6, 0x8d, 0x10, 0x76, 0xe6, 0x39,
- 0x8e, 0xe7, 0x06, 0x91, 0x3d, 0x7b, 0x2b, 0x62, 0xc6, 0x4f, 0x0f, 0xda, 0x9e, 0xd7, 0xee, 0xb0,
- 0xa2, 0x78, 0x7a, 0xd9, 0x6b, 0x15, 0xb9, 0xed, 0xb0, 0x80, 0x53, 0xa7, 0x1b, 0x03, 0xb6, 0x47,
- 0x01, 0xcc, 0xe9, 0xf2, 0xab, 0xc8, 0x99, 0xff, 0x71, 0x0a, 0xd6, 0x9a, 0xb4, 0xd3, 0x63, 0xc6,
- 0x55, 0x97, 0xe1, 0x16, 0xac, 0xd8, 0x2e, 0x37, 0x2f, 0x68, 0x67, 0x33, 0x95, 0x4b, 0xed, 0x4a,
- 0x95, 0x05, 0xb2, 0x6c, 0xbb, 0xbc, 0x49, 0x3b, 0xb8, 0x0d, 0xab, 0xbd, 0xbe, 0x2f, 0x9d, 0x4b,
- 0xed, 0x2e, 0x56, 0x16, 0xc8, 0x4a, 0x2f, 0x76, 0xde, 0x83, 0xb5, 0x56, 0xc7, 0xa3, 0x91, 0x57,
- 0xca, 0xa5, 0x76, 0xd3, 0x95, 0x05, 0xb2, 0x2a, 0x4c, 0xa1, 0x7b, 0x1f, 0xd6, 0xf8, 0x55, 0x97,
- 0xd5, 0x5a, 0x4d, 0xda, 0xd9, 0x5c, 0xcc, 0xa5, 0x76, 0x33, 0x07, 0x58, 0xb0, 0x1c, 0xbb, 0x50,
- 0xa6, 0x9c, 0x0e, 0xb2, 0x93, 0x21, 0xe8, 0x70, 0x09, 0xa4, 0x0b, 0xda, 0xc9, 0x13, 0x80, 0x53,
- 0xca, 0x99, 0x7f, 0x4c, 0xfd, 0x57, 0x01, 0xe6, 0x61, 0xf1, 0xdc, 0x6e, 0x9f, 0x0b, 0x69, 0xeb,
- 0x07, 0x19, 0x11, 0x61, 0xc8, 0x16, 0x3e, 0xcc, 0x81, 0xd4, 0xf1, 0x2e, 0x85, 0xc2, 0x71, 0x48,
- 0xe8, 0xca, 0xbf, 0x02, 0x30, 0xce, 0x7d, 0x16, 0x9c, 0x7b, 0x1d, 0x2b, 0xc0, 0x1d, 0x58, 0xea,
- 0x75, 0xbb, 0xcc, 0x8f, 0x83, 0x7e, 0x4a, 0x30, 0x86, 0x39, 0x2b, 0x0b, 0x24, 0xf2, 0x87, 0xc0,
- 0x8e, 0x77, 0xc9, 0xfc, 0x38, 0xf4, 0x24, 0xa0, 0xf0, 0x1f, 0xae, 0xc3, 0x1a, 0xef, 0xc7, 0xcf,
- 0x7f, 0x0b, 0x6e, 0x0f, 0x92, 0x69, 0x6e, 0xcb, 0xf3, 0x1d, 0xca, 0x6d, 0xcf, 0xc5, 0x2f, 0x40,
- 0xc6, 0x7b, 0x19, 0x56, 0x9b, 0x59, 0xe1, 0x9e, 0xf5, 0xd8, 0x94, 0x45, 0x6d, 0xf4, 0x51, 0xc2,
- 0x84, 0x45, 0x80, 0x41, 0xec, 0xe0, 0x9a, 0x92, 0xe1, 0x92, 0x48, 0x02, 0x92, 0xff, 0x65, 0x0a,
- 0x56, 0xd5, 0xb0, 0xc1, 0x4a, 0xad, 0x36, 0xee, 0xc2, 0xaa, 0x68, 0x36, 0xd3, 0xb6, 0x44, 0xba,
- 0xcc, 0xc1, 0x86, 0xe0, 0x0a, 0x80, 0x66, 0x05, 0x64, 0x85, 0x45, 0xbf, 0xf0, 0x21, 0x6c, 0xd8,
- 0x81, 0x79, 0xe6, 0xb9, 0x2d, 0xbb, 0xdd, 0xf3, 0x99, 0x25, 0x52, 0xad, 0x92, 0x5b, 0x76, 0x50,
- 0x1a, 0xd8, 0x46, 0xc4, 0x48, 0x73, 0xc5, 0xe0, 0x3e, 0x64, 0xce, 0x3c, 0xa7, 0xeb, 0xb9, 0xa1,
- 0x86, 0x5e, 0xcf, 0xb6, 0x44, 0x2f, 0xac, 0x1f, 0xac, 0x09, 0x52, 0xa3, 0x67, 0x5b, 0x64, 0x63,
- 0x00, 0x08, 0x1f, 0xf3, 0xfb, 0xb0, 0x26, 0xc4, 0x05, 0xa1, 0xfc, 0x87, 0xb0, 0x64, 0x73, 0xe6,
- 0x04, 0x9b, 0xa9, 0x9c, 0xb4, 0xbb, 0x9e, 0xd4, 0x5e, 0x6a, 0xb5, 0x49, 0xe4, 0xcb, 0xff, 0x34,
- 0x0d, 0x58, 0xb5, 0x03, 0x1e, 0xd1, 0x08, 0x0b, 0xba, 0x9e, 0x1b, 0x30, 0x7c, 0x08, 0xcb, 0x01,
- 0xa7, 0xbc, 0x17, 0xc4, 0x0b, 0x5f, 0x17, 0xe4, 0xba, 0x30, 0x91, 0xd8, 0x85, 0x4f, 0x61, 0xd9,
- 0x67, 0x34, 0xf0, 0x5c, 0xb1, 0xdc, 0xcc, 0xc1, 0x7d, 0x01, 0x1a, 0x8f, 0x56, 0x20, 0x02, 0x45,
- 0x62, 0x34, 0xbe, 0x0d, 0xcb, 0xd1, 0x21, 0x8e, 0x37, 0x21, 0x33, 0x54, 0x16, 0x0a, 0x27, 0xb1,
- 0x37, 0xdc, 0xd5, 0x88, 0x61, 0x5a, 0x8c, 0x53, 0x3b, 0x3a, 0x0a, 0x6b, 0xe4, 0x56, 0x64, 0x2c,
- 0x0b, 0x5b, 0xfe, 0x43, 0x58, 0x8e, 0xc2, 0xe3, 0x6d, 0x90, 0x1b, 0x7a, 0x59, 0x3d, 0xd2, 0x74,
- 0xb5, 0x6c, 0x12, 0x55, 0xa9, 0xd7, 0x74, 0x79, 0x01, 0x11, 0x32, 0x0d, 0xfd, 0x7d, 0xbd, 0x76,
- 0xaa, 0x9b, 0x65, 0xb5, 0xa9, 0x95, 0x54, 0x39, 0x15, 0xda, 0x34, 0xdd, 0x50, 0x89, 0xae, 0x54,
- 0x4d, 0x95, 0x90, 0x1a, 0x91, 0xd3, 0x78, 0x07, 0x30, 0xf2, 0x9b, 0x0d, 0x9d, 0xa8, 0x4a, 0xa9,
- 0xa2, 0x1c, 0x56, 0x55, 0x59, 0xca, 0x7f, 0x92, 0x82, 0x6c, 0x2c, 0x2d, 0x2e, 0xa5, 0xe8, 0x48,
- 0xc2, 0x3e, 0xea, 0xb1, 0x80, 0xe3, 0x1e, 0xac, 0x5b, 0x2c, 0x9c, 0x41, 0x51, 0x81, 0x52, 0xa3,
- 0x05, 0x82, 0xc8, 0x1b, 0xfe, 0xc6, 0x3d, 0x58, 0x39, 0x3b, 0xa7, 0x6e, 0x9b, 0x05, 0xd7, 0xce,
- 0xdb, 0x60, 0xe1, 0xe1, 0x84, 0x88, 0x01, 0xb8, 0x07, 0xb2, 0xcf, 0x02, 0xc6, 0x4d, 0xee, 0x99,
- 0x16, 0x6b, 0xd1, 0x5e, 0x87, 0x8b, 0xdd, 0x5a, 0xad, 0x2c, 0x90, 0x8c, 0xf0, 0x18, 0x5e, 0x39,
- 0xb2, 0x87, 0x27, 0xc8, 0xeb, 0xb2, 0x48, 0x57, 0xfe, 0x27, 0x69, 0xd8, 0x9e, 0xa8, 0xf7, 0x75,
- 0x2a, 0xfb, 0xa5, 0x91, 0xca, 0xee, 0x24, 0x85, 0x4e, 0x0a, 0x3b, 0x5a, 0xe2, 0xb1, 0xd2, 0x49,
- 0x13, 0x4a, 0xe7, 0xff, 0x9f, 0x4a, 0x27, 0x6c, 0x4d, 0xa5, 0xaa, 0x95, 0xcd, 0x52, 0x4d, 0x3f,
- 0xd2, 0x5e, 0xc8, 0xd2, 0x94, 0x72, 0x2e, 0xe6, 0x3f, 0x4e, 0xc1, 0x86, 0x58, 0xc7, 0x31, 0xe3,
- 0x34, 0x1c, 0xa7, 0xaf, 0x55, 0xc1, 0xf1, 0x13, 0x99, 0x9e, 0x7d, 0x22, 0xf1, 0xad, 0x24, 0xc3,
- 0xa5, 0x0e, 0x8b, 0x77, 0x62, 0x08, 0xd3, 0xa9, 0xc3, 0xf2, 0xdf, 0x4d, 0xc3, 0x92, 0x90, 0x85,
- 0xcf, 0x21, 0x13, 0x0d, 0x1d, 0x87, 0x71, 0x6a, 0x51, 0x4e, 0x63, 0x45, 0x38, 0x2c, 0x41, 0x5f,
- 0x3a, 0xd9, 0x60, 0xfd, 0xc7, 0x10, 0x78, 0x6d, 0x5e, 0xa5, 0x67, 0xce, 0xab, 0x67, 0xb0, 0xe6,
- 0x53, 0x3b, 0x60, 0x96, 0x39, 0x38, 0x84, 0xd9, 0x42, 0xf4, 0xda, 0x2b, 0xf4, 0x5f, 0x7b, 0x05,
- 0xa3, 0xff, 0x5e, 0x24, 0xab, 0x11, 0xd8, 0x08, 0xf0, 0xcb, 0x90, 0x19, 0x0c, 0x28, 0xd3, 0x76,
- 0x5b, 0x5e, 0x3c, 0x92, 0xb6, 0xae, 0xcf, 0xb1, 0xc4, 0xe8, 0x26, 0x1b, 0x3c, 0x69, 0xc5, 0x2d,
- 0x58, 0xa5, 0x56, 0xcc, 0x5d, 0x12, 0x5b, 0xb1, 0x42, 0x2d, 0xe1, 0xda, 0xfb, 0x03, 0xc6, 0xc3,
- 0x57, 0xb3, 0x02, 0xdc, 0x84, 0xdb, 0x6a, 0x53, 0xd5, 0x0d, 0x53, 0x57, 0x8e, 0xc3, 0x22, 0xc6,
- 0xdd, 0x21, 0x2f, 0xe0, 0x7d, 0xc8, 0x46, 0x1e, 0x83, 0x28, 0x7a, 0xbd, 0xa4, 0x6a, 0x4d, 0x95,
- 0x98, 0x27, 0xd5, 0xc6, 0x0b, 0xb3, 0xd6, 0x30, 0x64, 0x0b, 0xef, 0xc1, 0xd6, 0x14, 0xbf, 0xa6,
- 0xcb, 0x0c, 0x1f, 0xc1, 0x3b, 0xe3, 0xee, 0x66, 0xad, 0x6a, 0x28, 0x2f, 0x54, 0x53, 0x39, 0xac,
- 0x35, 0x55, 0xd3, 0xa8, 0x10, 0xb5, 0x5e, 0xa9, 0x55, 0xcb, 0x72, 0x6b, 0x36, 0xfc, 0x50, 0xad,
- 0xd6, 0x4e, 0x13, 0xf0, 0x36, 0xbe, 0x0b, 0x8f, 0xc6, 0xe1, 0x86, 0x7a, 0x7c, 0xa2, 0x12, 0xc5,
- 0x68, 0x90, 0xf1, 0x0c, 0xe7, 0xf3, 0x29, 0xa3, 0x59, 0xec, 0xc9, 0xa2, 0x4a, 0x0d, 0x42, 0x42,
- 0xdb, 0x68, 0x86, 0xaf, 0xcd, 0x86, 0x8f, 0x46, 0x7f, 0x85, 0x05, 0xd8, 0x1b, 0x87, 0x93, 0xaf,
- 0x98, 0x27, 0xb5, 0x53, 0x95, 0x8c, 0x85, 0xef, 0xcc, 0xc1, 0x8f, 0xc6, 0x77, 0x26, 0xe3, 0x8d,
- 0x69, 0xf1, 0xdd, 0x39, 0xf8, 0xd1, 0xf8, 0xde, 0xe4, 0x06, 0x38, 0x52, 0xb4, 0x6a, 0x83, 0xa8,
- 0x72, 0x17, 0x9f, 0xc1, 0xe3, 0x1b, 0x37, 0x80, 0x49, 0xd4, 0x52, 0xad, 0xa9, 0x12, 0xb5, 0x2c,
- 0x7f, 0x34, 0x9b, 0x38, 0x22, 0x23, 0x41, 0xf4, 0xf1, 0x3d, 0x78, 0xf6, 0x5a, 0x4d, 0x91, 0x20,
- 0x07, 0xf3, 0xc9, 0xd3, 0x33, 0xf3, 0xc9, 0x92, 0xa7, 0x34, 0x4a, 0x82, 0xd8, 0x9b, 0x4d, 0x9c,
- 0x9e, 0xf1, 0x02, 0xbf, 0x08, 0x4f, 0x6e, 0xde, 0x3c, 0x09, 0xe6, 0xe5, 0x1c, 0xe6, 0xf4, 0x9c,
- 0x5f, 0x9f, 0xcc, 0x34, 0xe6, 0xe7, 0xbc, 0x9a, 0xc3, 0x9c, 0x9e, 0xf3, 0x1b, 0xb8, 0x03, 0x0f,
- 0xa7, 0x36, 0x59, 0x02, 0xf8, 0x4d, 0xbc, 0x0b, 0x18, 0x01, 0x4f, 0xea, 0x8d, 0xe1, 0x98, 0xfa,
- 0x55, 0x0a, 0xef, 0xc0, 0x1b, 0x23, 0x0e, 0x4d, 0x97, 0x7f, 0x3d, 0x62, 0xef, 0xb7, 0xed, 0x6f,
- 0x52, 0x98, 0x83, 0xed, 0x31, 0x7b, 0x22, 0xd3, 0x6f, 0x13, 0xcc, 0x23, 0x45, 0x1f, 0x30, 0x7f,
- 0x96, 0x1e, 0x4a, 0x08, 0xed, 0x03, 0x09, 0x9f, 0xa4, 0xaf, 0x13, 0xfa, 0x12, 0x7e, 0x9e, 0x1e,
- 0xa6, 0x4a, 0x04, 0x4a, 0xa4, 0xfa, 0x45, 0x1a, 0xdf, 0x81, 0x37, 0x23, 0x44, 0xe9, 0xa4, 0x31,
- 0xa1, 0x95, 0x4b, 0x44, 0x33, 0xb4, 0x92, 0x52, 0x95, 0xbf, 0x27, 0xe1, 0xdb, 0xf0, 0xd9, 0x59,
- 0xd0, 0x23, 0xc5, 0x50, 0xaa, 0xf2, 0xf7, 0x25, 0x7c, 0x0c, 0x85, 0x9b, 0x84, 0x4c, 0xe8, 0xf8,
- 0x81, 0x84, 0xfb, 0xf0, 0xb9, 0xb9, 0xc1, 0x13, 0x8c, 0x1f, 0x4a, 0xf8, 0x26, 0x3c, 0x18, 0x32,
- 0x1a, 0xf5, 0x49, 0x53, 0xff, 0x63, 0x09, 0x0b, 0xfd, 0x91, 0x39, 0x15, 0x95, 0x88, 0xfa, 0x23,
- 0x09, 0xb3, 0xf0, 0xe9, 0x08, 0x5f, 0x39, 0x8d, 0x3f, 0x56, 0x4c, 0xa2, 0xd6, 0x55, 0x43, 0xfe,
- 0x93, 0x84, 0xc5, 0xfe, 0xfc, 0x1a, 0xfa, 0x66, 0xec, 0xd8, 0x9f, 0x25, 0xfc, 0x3c, 0xec, 0xcc,
- 0x27, 0x44, 0xfb, 0xf6, 0x17, 0x09, 0x9f, 0xf7, 0x7b, 0xf8, 0x26, 0xe1, 0x13, 0xaa, 0xff, 0x2a,
- 0xe1, 0x53, 0x78, 0xf7, 0x86, 0x89, 0x12, 0xbc, 0xbf, 0x49, 0xb8, 0x0d, 0x77, 0xc6, 0x57, 0x7b,
- 0x58, 0xab, 0x19, 0xf2, 0xdf, 0x25, 0xdc, 0x81, 0xfc, 0xc0, 0x99, 0x8c, 0x56, 0x57, 0xf5, 0x7a,
- 0x2d, 0x3a, 0x23, 0x6a, 0x59, 0xfe, 0xc7, 0xf5, 0x65, 0x2a, 0xd5, 0xea, 0x04, 0x70, 0xbd, 0x8f,
- 0xfe, 0xa7, 0x84, 0xbb, 0xfd, 0x03, 0x17, 0xe6, 0xd4, 0xea, 0xef, 0x4f, 0xa9, 0xdd, 0xbf, 0x24,
- 0x3c, 0xe8, 0xbf, 0x50, 0x67, 0x22, 0x13, 0x2b, 0xfa, 0xb7, 0x84, 0x7b, 0xf0, 0xd6, 0x80, 0x73,
- 0xac, 0x1e, 0xd7, 0xc8, 0x07, 0x53, 0xe2, 0xff, 0x47, 0xc2, 0x27, 0x50, 0xbc, 0x11, 0x36, 0x91,
- 0xe1, 0xbf, 0x12, 0xde, 0xef, 0xbf, 0x95, 0x2a, 0xa7, 0xa6, 0x6e, 0x9c, 0x98, 0xf5, 0x0f, 0xf4,
- 0xd2, 0xe0, 0x90, 0x7e, 0x7b, 0xf1, 0xda, 0xfa, 0x46, 0xfd, 0x89, 0x48, 0xdf, 0x59, 0xc4, 0x7b,
- 0xb0, 0x19, 0x21, 0xab, 0x9a, 0xae, 0x9a, 0x25, 0x85, 0x94, 0x87, 0x87, 0xfa, 0x77, 0x8b, 0xf8,
- 0x19, 0xb8, 0x3b, 0xd1, 0xad, 0xe9, 0xf2, 0xef, 0x17, 0x0f, 0xfe, 0x98, 0x82, 0x7b, 0x3a, 0xe5,
- 0xf6, 0x05, 0x8b, 0x3e, 0xe7, 0x8f, 0xa9, 0x4b, 0xdb, 0xcc, 0x61, 0x2e, 0xaf, 0x47, 0x7f, 0xa6,
- 0xe0, 0x53, 0x80, 0xe1, 0x1d, 0x0e, 0xa3, 0x1b, 0x6a, 0x85, 0xfa, 0xd6, 0x25, 0xf5, 0x99, 0x56,
- 0xce, 0xde, 0x9d, 0x72, 0xcb, 0xc3, 0x0f, 0x61, 0xab, 0xd1, 0xb5, 0x28, 0x67, 0x13, 0xee, 0x09,
- 0xf8, 0x60, 0xfa, 0x0d, 0x42, 0x5c, 0xa4, 0xb2, 0xb9, 0x79, 0x57, 0x0c, 0x7c, 0x02, 0xb7, 0xea,
- 0xdc, 0x67, 0xd4, 0x89, 0x95, 0xdd, 0x19, 0xfb, 0x62, 0x55, 0x9d, 0x2e, 0xbf, 0xca, 0xc2, 0x30,
- 0xd2, 0x7e, 0xea, 0xf0, 0xbd, 0xaf, 0x3e, 0x6f, 0xdb, 0xfc, 0xbc, 0xf7, 0xb2, 0x70, 0xe6, 0x39,
- 0x45, 0xaf, 0xcb, 0xdc, 0x33, 0xcf, 0xb7, 0x8a, 0xd1, 0x47, 0xfd, 0x23, 0x67, 0xb0, 0xfa, 0x47,
- 0xb6, 0xcb, 0x99, 0xdf, 0xa2, 0x67, 0xac, 0x78, 0xf1, 0xb8, 0xd8, 0xf6, 0x8a, 0x96, 0x63, 0xbf,
- 0x5c, 0x16, 0xa1, 0x1f, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x76, 0x35, 0xd3, 0x5d, 0x7c, 0x12,
- 0x00, 0x00,
+ // 2015 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0x4b, 0x73, 0xdb, 0xc8,
+ 0x11, 0x26, 0x09, 0x51, 0x96, 0x5a, 0x16, 0x0d, 0x4f, 0x69, 0x2d, 0x89, 0x8a, 0x6d, 0x85, 0xde,
+ 0x5d, 0xc9, 0x8a, 0x4d, 0x6a, 0x65, 0xc7, 0x8e, 0x6b, 0x0f, 0x59, 0x90, 0x84, 0x4c, 0x96, 0x49,
+ 0x40, 0x35, 0x04, 0xa9, 0x38, 0x87, 0x45, 0x41, 0xc2, 0x90, 0xc2, 0x9a, 0x00, 0xb8, 0x00, 0x28,
+ 0x45, 0x49, 0x55, 0x2a, 0x39, 0xe5, 0x9a, 0xc7, 0xe6, 0x94, 0x54, 0x7e, 0x41, 0x36, 0x39, 0xe5,
+ 0xb6, 0x79, 0x1c, 0x72, 0xc8, 0xe3, 0x0f, 0x24, 0x3f, 0x22, 0xb7, 0xbc, 0xdf, 0x05, 0x0c, 0x48,
+ 0x0c, 0xc1, 0x97, 0x5c, 0xb5, 0x37, 0xb1, 0xfb, 0xeb, 0xef, 0xeb, 0x99, 0xee, 0x69, 0x8c, 0x06,
+ 0xb6, 0x75, 0xd3, 0x28, 0x9c, 0x5d, 0xa8, 0xe4, 0x9c, 0x58, 0x9e, 0xab, 0x9a, 0x1d, 0xd3, 0x53,
+ 0x5d, 0xe2, 0x9c, 0x1b, 0xa7, 0x24, 0xdf, 0x73, 0x6c, 0xcf, 0x46, 0x9c, 0x6e, 0x1a, 0xd9, 0x9b,
+ 0x3e, 0xec, 0xd4, 0x36, 0x4d, 0xdb, 0x72, 0xa9, 0x3d, 0x7b, 0x9d, 0x46, 0x86, 0xbf, 0xee, 0x76,
+ 0x6c, 0xbb, 0xd3, 0x25, 0x85, 0xe0, 0xd7, 0x49, 0xbf, 0x5d, 0xf0, 0x0c, 0x93, 0xb8, 0x9e, 0x66,
+ 0xf6, 0x42, 0xc0, 0x56, 0x1c, 0x40, 0xcc, 0x9e, 0x77, 0x49, 0x9d, 0xb9, 0x1f, 0x24, 0x61, 0xb9,
+ 0xa5, 0x75, 0xfb, 0x44, 0xb9, 0xec, 0x11, 0xb4, 0x09, 0xd7, 0x0c, 0xcb, 0x53, 0xcf, 0xb5, 0xee,
+ 0x46, 0x72, 0x3b, 0xb9, 0xcb, 0x55, 0x12, 0x78, 0xd1, 0xb0, 0xbc, 0x96, 0xd6, 0x45, 0x5b, 0xb0,
+ 0xd4, 0x1f, 0xf8, 0x52, 0xdb, 0xc9, 0xdd, 0x85, 0x4a, 0x02, 0x5f, 0xeb, 0x87, 0xce, 0xdb, 0xb0,
+ 0xdc, 0xee, 0xda, 0x1a, 0xf5, 0x72, 0xdb, 0xc9, 0xdd, 0x54, 0x25, 0x81, 0x97, 0x02, 0x93, 0xef,
+ 0xde, 0x87, 0x65, 0xef, 0xb2, 0x47, 0xe4, 0x76, 0x4b, 0xeb, 0x6e, 0x2c, 0x6c, 0x27, 0x77, 0x33,
+ 0x07, 0x28, 0xaf, 0x9b, 0x46, 0xbe, 0xac, 0x79, 0xda, 0x50, 0x1d, 0x47, 0xa0, 0x62, 0x1a, 0xb8,
+ 0x73, 0xad, 0x9b, 0xc3, 0x00, 0xc7, 0x9a, 0x47, 0x9c, 0xba, 0xe6, 0xbc, 0x72, 0x51, 0x0e, 0x16,
+ 0xce, 0x8c, 0xce, 0x59, 0x90, 0xda, 0xca, 0x41, 0x26, 0x60, 0x88, 0xa2, 0x03, 0x1f, 0xda, 0x06,
+ 0xae, 0x6b, 0x5f, 0x04, 0x19, 0x8e, 0x43, 0x7c, 0x57, 0xee, 0x15, 0x80, 0x72, 0xe6, 0x10, 0xf7,
+ 0xcc, 0xee, 0xea, 0x2e, 0xda, 0x81, 0x74, 0xbf, 0xd7, 0x23, 0x4e, 0x48, 0x7a, 0x23, 0x88, 0x88,
+ 0x34, 0x2b, 0x09, 0x4c, 0xfd, 0x3e, 0xb0, 0x6b, 0x5f, 0x10, 0x27, 0xa4, 0x9e, 0x04, 0x0c, 0xfc,
+ 0xc5, 0x15, 0x58, 0xf6, 0x06, 0xfc, 0xb9, 0xaf, 0xc3, 0xda, 0x50, 0xac, 0x6a, 0xb5, 0x6d, 0xc7,
+ 0xd4, 0x3c, 0xc3, 0xb6, 0xd0, 0xe7, 0x21, 0x63, 0x9f, 0xf8, 0xd5, 0x26, 0xba, 0xbf, 0x67, 0x7d,
+ 0x32, 0x65, 0x51, 0xab, 0x03, 0x54, 0x60, 0x42, 0x05, 0x80, 0x21, 0xb7, 0x3b, 0x92, 0x49, 0xb4,
+ 0x24, 0xcc, 0x40, 0x72, 0x9f, 0x24, 0x61, 0x49, 0xf4, 0x1b, 0xac, 0xd4, 0xee, 0xa0, 0x5d, 0x58,
+ 0x0a, 0x9a, 0x4d, 0x35, 0xf4, 0x40, 0x2e, 0x73, 0xb0, 0x1a, 0xc4, 0x06, 0x80, 0xaa, 0xee, 0xe2,
+ 0x6b, 0x84, 0xfe, 0x85, 0xee, 0xc1, 0xaa, 0xe1, 0xaa, 0xa7, 0xb6, 0xd5, 0x36, 0x3a, 0x7d, 0x87,
+ 0xe8, 0x81, 0xd4, 0x12, 0xbe, 0x6e, 0xb8, 0xa5, 0xa1, 0x2d, 0x96, 0x0c, 0x37, 0x37, 0x19, 0xb4,
+ 0x0f, 0x99, 0x53, 0xdb, 0xec, 0xd9, 0x96, 0x9f, 0x43, 0xbf, 0x6f, 0xe8, 0x41, 0x2f, 0xac, 0x1c,
+ 0x2c, 0x07, 0x41, 0xcd, 0xbe, 0xa1, 0xe3, 0xd5, 0x21, 0xc0, 0xff, 0x99, 0xdb, 0x87, 0xe5, 0x20,
+ 0x39, 0xd7, 0x4f, 0xff, 0x1e, 0xa4, 0x0d, 0x8f, 0x98, 0xee, 0x46, 0x72, 0x9b, 0xdb, 0x5d, 0x61,
+ 0x73, 0x2f, 0xb5, 0x3b, 0x98, 0xfa, 0x72, 0x3f, 0x4a, 0x01, 0xaa, 0x19, 0xae, 0x47, 0xc3, 0x30,
+ 0x71, 0x7b, 0xb6, 0xe5, 0x12, 0x74, 0x0f, 0x16, 0x5d, 0x4f, 0xf3, 0xfa, 0x6e, 0xb8, 0xf0, 0x95,
+ 0x20, 0xb8, 0x11, 0x98, 0x70, 0xe8, 0x42, 0x4f, 0x60, 0xd1, 0x21, 0x9a, 0x6b, 0x5b, 0xc1, 0x72,
+ 0x33, 0x07, 0x77, 0x02, 0xd0, 0x38, 0x5b, 0x1e, 0x07, 0x28, 0x1c, 0xa2, 0xd1, 0xdb, 0xb0, 0x48,
+ 0x0f, 0x71, 0xb8, 0x09, 0x99, 0x28, 0x33, 0x3f, 0x71, 0x1c, 0x7a, 0xfd, 0x5d, 0xa5, 0x11, 0xaa,
+ 0x4e, 0x3c, 0xcd, 0xa0, 0x47, 0x61, 0x19, 0x5f, 0xa7, 0xc6, 0x72, 0x60, 0xcb, 0xbd, 0x0f, 0x8b,
+ 0x94, 0x1e, 0xad, 0x01, 0xdf, 0x94, 0xca, 0xe2, 0x61, 0x55, 0x12, 0xcb, 0x2a, 0x16, 0x85, 0x86,
+ 0x2c, 0xf1, 0x09, 0x84, 0x20, 0xd3, 0x94, 0x5e, 0x48, 0xf2, 0xb1, 0xa4, 0x96, 0xc5, 0x56, 0xb5,
+ 0x24, 0xf2, 0x49, 0xdf, 0x56, 0x95, 0x14, 0x11, 0x4b, 0x42, 0x4d, 0x15, 0x31, 0x96, 0x31, 0x9f,
+ 0x42, 0xb7, 0x00, 0x51, 0xbf, 0xda, 0x94, 0xb0, 0x28, 0x94, 0x2a, 0x42, 0xb1, 0x26, 0xf2, 0x5c,
+ 0xee, 0xe3, 0x24, 0x64, 0xc3, 0xd4, 0xc2, 0x52, 0x06, 0x1d, 0x89, 0xc9, 0x87, 0x7d, 0xe2, 0x7a,
+ 0x68, 0x0f, 0x56, 0x74, 0xe2, 0xcf, 0x20, 0x5a, 0xa0, 0x64, 0xbc, 0x40, 0x40, 0xbd, 0xfe, 0xdf,
+ 0x68, 0x0f, 0xae, 0x9d, 0x9e, 0x69, 0x56, 0x87, 0xb8, 0x23, 0xe7, 0x6d, 0xb8, 0x70, 0x7f, 0x42,
+ 0x84, 0x00, 0xb4, 0x07, 0xbc, 0x43, 0x5c, 0xe2, 0xa9, 0x9e, 0xad, 0xea, 0xa4, 0xad, 0xf5, 0xbb,
+ 0x5e, 0xb0, 0x5b, 0x4b, 0x95, 0x04, 0xce, 0x04, 0x1e, 0xc5, 0x2e, 0x53, 0xbb, 0x7f, 0x82, 0xec,
+ 0x1e, 0xa1, 0x79, 0xe5, 0x7e, 0x98, 0x82, 0xad, 0x89, 0xf9, 0xbe, 0x4e, 0x65, 0xbf, 0x18, 0xab,
+ 0xec, 0x0e, 0x9b, 0xe8, 0x24, 0xda, 0x78, 0x89, 0xc7, 0x4a, 0xc7, 0x4d, 0x28, 0x9d, 0xf3, 0x29,
+ 0x95, 0x2e, 0xb0, 0xb5, 0x84, 0x5a, 0xb5, 0xac, 0x96, 0x64, 0xe9, 0xb0, 0xfa, 0x9c, 0xe7, 0xa6,
+ 0x94, 0x73, 0x21, 0xf7, 0x51, 0x12, 0x56, 0x83, 0x75, 0xd4, 0x89, 0xa7, 0xf9, 0xe3, 0xf4, 0xb5,
+ 0x2a, 0x38, 0x7e, 0x22, 0x53, 0xb3, 0x4f, 0x24, 0x7a, 0x8b, 0x8d, 0xb0, 0x34, 0x93, 0x84, 0x3b,
+ 0x11, 0xc1, 0x24, 0xcd, 0x24, 0xb9, 0x0f, 0x80, 0x17, 0x74, 0xd3, 0xb0, 0xfc, 0x3a, 0x90, 0x52,
+ 0xd0, 0x03, 0x68, 0x0f, 0x38, 0xbb, 0x3b, 0x98, 0x3c, 0x1b, 0x81, 0x42, 0x69, 0x10, 0x14, 0x81,
+ 0xb1, 0x0f, 0xf2, 0xb1, 0x16, 0xb9, 0x08, 0xab, 0x35, 0x03, 0x6b, 0x91, 0x8b, 0x5c, 0x07, 0x6e,
+ 0xc8, 0x3d, 0xe2, 0xb0, 0x52, 0xf7, 0x59, 0xa9, 0xf5, 0xd1, 0xf0, 0x21, 0x96, 0x2a, 0xdd, 0x67,
+ 0x95, 0xa6, 0x43, 0x7d, 0x21, 0x7f, 0x51, 0x5d, 0xcd, 0x31, 0xaf, 0xbc, 0xa8, 0x21, 0xf8, 0x0a,
+ 0x8b, 0x62, 0xb0, 0xa1, 0x56, 0xd3, 0xd5, 0x3a, 0xe4, 0xaa, 0x5a, 0x11, 0x78, 0xbe, 0x16, 0x8b,
+ 0xf5, 0xb5, 0x7a, 0x80, 0x1a, 0x9e, 0x66, 0xe9, 0x27, 0x97, 0xac, 0xda, 0x03, 0x56, 0x2d, 0x3b,
+ 0xca, 0xc0, 0xc2, 0xa9, 0xde, 0x03, 0x56, 0x6f, 0x26, 0xda, 0x57, 0xfc, 0x16, 0x07, 0x37, 0x18,
+ 0x2d, 0xff, 0xcb, 0x88, 0x44, 0x40, 0x9a, 0x5f, 0x59, 0xd5, 0x3f, 0xb3, 0x44, 0xa5, 0x83, 0x23,
+ 0x6c, 0xdf, 0x37, 0x02, 0xc2, 0x78, 0x47, 0x55, 0x12, 0x98, 0xd7, 0xe2, 0x5d, 0x56, 0x84, 0x9b,
+ 0xfe, 0xf0, 0x18, 0x65, 0xa1, 0x5d, 0xbd, 0x16, 0xb0, 0xc4, 0x7a, 0xa5, 0x92, 0xc0, 0x37, 0xec,
+ 0x58, 0xfb, 0xf8, 0xa9, 0xf8, 0xf5, 0x18, 0x25, 0xe1, 0xd8, 0x54, 0x62, 0x7d, 0x10, 0xa4, 0x12,
+ 0xef, 0x0d, 0x11, 0x50, 0xdf, 0xdf, 0xea, 0x51, 0x9a, 0x05, 0x86, 0x26, 0x5e, 0x62, 0x9f, 0xa6,
+ 0x1f, 0x2f, 0xfb, 0x0b, 0x58, 0x73, 0xe9, 0x0e, 0x8e, 0x12, 0xa5, 0x03, 0xa2, 0xf5, 0xc1, 0xbc,
+ 0x8b, 0xd5, 0xaf, 0x92, 0xc0, 0xc8, 0x1d, 0xb3, 0x16, 0x33, 0x70, 0x9d, 0x25, 0xc9, 0xfd, 0x3a,
+ 0x05, 0xe9, 0x60, 0x7e, 0xa0, 0x67, 0x90, 0xa1, 0xb7, 0x03, 0x93, 0x78, 0x9a, 0xae, 0x79, 0x5a,
+ 0xb8, 0xf7, 0x28, 0x9a, 0x95, 0x83, 0x19, 0x83, 0x57, 0xc9, 0xe0, 0xa7, 0x0f, 0x1c, 0xb9, 0x58,
+ 0xa4, 0x66, 0x5e, 0x2c, 0x9e, 0xc2, 0xb2, 0xa3, 0x19, 0x2e, 0xd1, 0xd5, 0xe1, 0xd7, 0x32, 0x9b,
+ 0xa7, 0xf7, 0xd3, 0xfc, 0xe0, 0x7e, 0x9a, 0x57, 0x06, 0x17, 0x58, 0xbc, 0x44, 0xc1, 0x8a, 0x8b,
+ 0xde, 0x83, 0xcc, 0xf0, 0x26, 0xa1, 0x1a, 0x56, 0xdb, 0x0e, 0xf7, 0x71, 0x73, 0xf4, 0xc2, 0xc1,
+ 0xdc, 0xb1, 0xf0, 0xaa, 0xc7, 0x5a, 0xd1, 0x26, 0x2c, 0x69, 0x7a, 0x18, 0x9b, 0x0e, 0x66, 0xd6,
+ 0x35, 0x4d, 0xa7, 0xae, 0xf7, 0xe0, 0x26, 0xbb, 0x29, 0x14, 0xb3, 0xc8, 0xf4, 0x4c, 0xac, 0x57,
+ 0xf1, 0x0d, 0x77, 0xd4, 0xb0, 0xf7, 0xb3, 0xb5, 0xf0, 0x9e, 0x55, 0xd5, 0x5d, 0xb4, 0x01, 0x6b,
+ 0x62, 0x4b, 0x94, 0x14, 0x55, 0x12, 0xea, 0xfe, 0xbc, 0x0e, 0x3f, 0x04, 0x7c, 0x02, 0xdd, 0x81,
+ 0x2c, 0xf5, 0x28, 0x58, 0x90, 0x1a, 0x25, 0xb1, 0xda, 0x12, 0xb1, 0x7a, 0x54, 0x6b, 0x3e, 0x57,
+ 0xe5, 0xa6, 0xc2, 0xeb, 0xe8, 0x36, 0x6c, 0x4e, 0xf1, 0x57, 0x25, 0x9e, 0xa0, 0x87, 0x70, 0x7f,
+ 0xdc, 0xdd, 0x92, 0x6b, 0x8a, 0xf0, 0x5c, 0x54, 0x85, 0xa2, 0xdc, 0x12, 0x55, 0xa5, 0x82, 0xc5,
+ 0x46, 0x45, 0xae, 0x95, 0xf9, 0xf6, 0x6c, 0x78, 0x51, 0xac, 0xc9, 0xc7, 0x0c, 0xbc, 0x83, 0xde,
+ 0x81, 0x87, 0xe3, 0x70, 0x45, 0xac, 0x1f, 0x89, 0x58, 0x50, 0x9a, 0x78, 0x5c, 0xe1, 0x6c, 0x7e,
+ 0x48, 0x5c, 0xc5, 0x98, 0x9c, 0x54, 0xa9, 0x89, 0xb1, 0x6f, 0x8b, 0x2b, 0x7c, 0x30, 0x1b, 0x1e,
+ 0x67, 0x7f, 0x85, 0xf2, 0xb0, 0x37, 0x0e, 0xc7, 0x5f, 0x52, 0x8f, 0xe4, 0x63, 0x11, 0x8f, 0xd1,
+ 0x77, 0xe7, 0xe0, 0xe3, 0xfc, 0xe6, 0x64, 0xbc, 0x32, 0x8d, 0xdf, 0x9a, 0x83, 0x8f, 0xf3, 0xdb,
+ 0x93, 0x1b, 0xe0, 0x50, 0xa8, 0xd6, 0x9a, 0x58, 0xe4, 0x7b, 0xe8, 0x29, 0x3c, 0xba, 0x72, 0x03,
+ 0xa8, 0x58, 0x2c, 0xc9, 0x2d, 0x11, 0x8b, 0x65, 0xfe, 0xc3, 0xd9, 0x81, 0xb1, 0x34, 0x98, 0x40,
+ 0x07, 0xbd, 0x0b, 0x4f, 0x5f, 0xab, 0x29, 0x98, 0x60, 0x77, 0x7e, 0xf0, 0x74, 0x65, 0x6f, 0x72,
+ 0xca, 0x53, 0x1a, 0x85, 0x09, 0xec, 0xcf, 0x0e, 0x9c, 0xae, 0x78, 0x8e, 0xbe, 0x00, 0x8f, 0xaf,
+ 0xde, 0x3c, 0x4c, 0xe4, 0xc5, 0x9c, 0xc8, 0xe9, 0x9a, 0x5f, 0x99, 0x1c, 0xa9, 0xcc, 0xd7, 0xbc,
+ 0x9c, 0x13, 0x39, 0x5d, 0xf3, 0xab, 0x68, 0x07, 0xee, 0x4d, 0x6d, 0x32, 0x06, 0xf8, 0x35, 0xb4,
+ 0x0e, 0x88, 0x02, 0x8f, 0x1a, 0xcd, 0x68, 0x4c, 0xfd, 0x26, 0x89, 0x6e, 0xc1, 0xcd, 0x98, 0xa3,
+ 0x2a, 0xf1, 0xbf, 0x8d, 0xd9, 0x07, 0x6d, 0xfb, 0xbb, 0x24, 0xda, 0x86, 0xad, 0x31, 0x3b, 0xa3,
+ 0xf4, 0x7b, 0x26, 0xf2, 0x50, 0x90, 0x86, 0x91, 0x3f, 0x4e, 0x45, 0x29, 0xf8, 0xf6, 0x61, 0x0a,
+ 0x1f, 0xa7, 0x46, 0x03, 0x06, 0x29, 0xfc, 0x24, 0x15, 0x49, 0x31, 0x44, 0x8c, 0xd4, 0x4f, 0x53,
+ 0xe8, 0x3e, 0xbc, 0x49, 0x11, 0xa5, 0xa3, 0xe6, 0x84, 0x56, 0x2e, 0xe1, 0xaa, 0x52, 0x2d, 0x09,
+ 0x35, 0xfe, 0xdb, 0x1c, 0x7a, 0x1b, 0x3e, 0x3b, 0x0b, 0x7a, 0x28, 0x28, 0x42, 0x8d, 0xff, 0x0e,
+ 0x87, 0x1e, 0x41, 0xfe, 0x2a, 0x94, 0x4c, 0x1e, 0xdf, 0xe5, 0xd0, 0x3e, 0x7c, 0x6e, 0x2e, 0x39,
+ 0x13, 0xf1, 0x3d, 0x0e, 0xbd, 0x09, 0x77, 0xa3, 0x88, 0x66, 0x63, 0xd2, 0xd4, 0xff, 0x88, 0x43,
+ 0xf9, 0xc1, 0xc8, 0x9c, 0x8a, 0x62, 0x58, 0xbf, 0xcf, 0xa1, 0x2c, 0xbc, 0x41, 0xf1, 0x95, 0xe3,
+ 0xf0, 0xff, 0x12, 0x15, 0x8b, 0x0d, 0x51, 0xe1, 0xff, 0xcc, 0xa1, 0xc2, 0x60, 0x7e, 0x45, 0xbe,
+ 0x19, 0x3b, 0xf6, 0x17, 0x0e, 0x3d, 0x80, 0x9d, 0xf9, 0x01, 0x74, 0xdf, 0xfe, 0xca, 0xa1, 0x67,
+ 0x83, 0x1e, 0xbe, 0x0a, 0x3d, 0x93, 0xf5, 0xdf, 0x38, 0xf4, 0x04, 0xde, 0xb9, 0xa2, 0x10, 0x13,
+ 0xf7, 0x77, 0x0e, 0x6d, 0xc1, 0xad, 0xf1, 0xd5, 0x16, 0x65, 0x59, 0xe1, 0xff, 0xc1, 0xa1, 0x1d,
+ 0xc8, 0x0d, 0x9d, 0x2c, 0x5b, 0x43, 0x94, 0x1a, 0x32, 0x3d, 0x23, 0x62, 0x99, 0xff, 0xe7, 0xe8,
+ 0x32, 0x85, 0x5a, 0x6d, 0x02, 0xb8, 0x31, 0x40, 0xff, 0x8b, 0x43, 0xbb, 0x83, 0x03, 0xe7, 0x6b,
+ 0x56, 0x1b, 0x2f, 0xa6, 0xd4, 0xee, 0xdf, 0x1c, 0x3a, 0x18, 0x7c, 0x50, 0x67, 0x22, 0x99, 0x15,
+ 0xfd, 0x87, 0x43, 0x7b, 0xf0, 0xd6, 0x30, 0xa6, 0x2e, 0xd6, 0x65, 0xfc, 0x72, 0x0a, 0xff, 0x7f,
+ 0x39, 0xf4, 0x18, 0x0a, 0x57, 0xc2, 0x32, 0x0a, 0xff, 0xe3, 0xd0, 0x9d, 0xc1, 0x57, 0xa9, 0x72,
+ 0xac, 0x4a, 0xca, 0x91, 0xda, 0x78, 0x29, 0x95, 0x86, 0x87, 0xf4, 0x1b, 0x0b, 0x23, 0xeb, 0x8b,
+ 0xfb, 0x19, 0xa6, 0x6f, 0x2e, 0xa0, 0xdb, 0xb0, 0x41, 0x91, 0xb5, 0xaa, 0x24, 0xaa, 0x25, 0x01,
+ 0x97, 0xa3, 0x43, 0xfd, 0x87, 0x05, 0xf4, 0x19, 0x58, 0x9f, 0xe8, 0xae, 0x4a, 0xfc, 0x1f, 0x19,
+ 0x99, 0x92, 0x5c, 0x3f, 0x92, 0xa5, 0xe0, 0x3b, 0x50, 0xae, 0x57, 0x25, 0xb5, 0xa1, 0x08, 0x8a,
+ 0xa8, 0x96, 0x2a, 0x82, 0xf4, 0x5c, 0x2c, 0xf3, 0x9f, 0xa4, 0xa3, 0x3a, 0x46, 0x48, 0xf9, 0x48,
+ 0xc4, 0x31, 0xe0, 0xcf, 0xd3, 0x13, 0x29, 0x6b, 0x02, 0xae, 0xc7, 0x90, 0xbf, 0x98, 0x88, 0xa4,
+ 0x3b, 0x37, 0x8a, 0xfc, 0x65, 0x3a, 0xaa, 0x47, 0x84, 0x6c, 0x28, 0x82, 0x54, 0x2e, 0xbe, 0x8c,
+ 0x61, 0x7f, 0x95, 0x3e, 0xf8, 0x53, 0x12, 0x6e, 0x4b, 0x9a, 0x67, 0x9c, 0x13, 0xfa, 0x18, 0x51,
+ 0xd7, 0x2c, 0xad, 0x43, 0x4c, 0xff, 0x9f, 0x26, 0xfa, 0x14, 0x8c, 0x9e, 0x00, 0x44, 0x2f, 0x50,
+ 0x88, 0xbe, 0xaf, 0x55, 0x34, 0x47, 0xbf, 0xd0, 0x1c, 0x52, 0x2d, 0x67, 0xd7, 0xa7, 0xbc, 0x51,
+ 0xa1, 0xf7, 0x61, 0xb3, 0xd9, 0xd3, 0x35, 0x8f, 0x4c, 0x78, 0xe5, 0x40, 0x77, 0xa7, 0xbf, 0x7f,
+ 0x04, 0xcf, 0x40, 0xd9, 0xed, 0x79, 0x0f, 0x24, 0xe8, 0x31, 0x5c, 0x6f, 0x78, 0x0e, 0xd1, 0xcc,
+ 0x30, 0xb3, 0x5b, 0x63, 0xd7, 0x78, 0xd1, 0xec, 0x79, 0x97, 0x59, 0x88, 0x98, 0xf6, 0x93, 0xc5,
+ 0x77, 0xbf, 0xfc, 0xac, 0x63, 0x78, 0x67, 0xfd, 0x93, 0xfc, 0xa9, 0x6d, 0x16, 0xec, 0x1e, 0xb1,
+ 0x4e, 0x6d, 0x47, 0x2f, 0xd0, 0x27, 0x89, 0x87, 0xe6, 0x70, 0xf5, 0x0f, 0x0d, 0xcb, 0x23, 0x4e,
+ 0x5b, 0x3b, 0x25, 0x85, 0xf3, 0x47, 0x85, 0x8e, 0x5d, 0xd0, 0x4d, 0xe3, 0x64, 0x31, 0xa0, 0x7e,
+ 0xf4, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1c, 0x32, 0xf3, 0xdf, 0x3a, 0x17, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.