[YUNIKORN-1656] Extend si.EventRecord type (#93)

Closes: #93

Signed-off-by: Wilfred Spiegelenburg <wilfreds@apache.org>
diff --git a/lib/go/si/si.pb.go b/lib/go/si/si.pb.go
index ae55a6d..981c941 100644
--- a/lib/go/si/si.pb.go
+++ b/lib/go/si/si.pb.go
@@ -53,7 +53,7 @@
 	return proto.EnumName(TerminationType_name, int32(x))
 }
 func (TerminationType) EnumDescriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{0}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{0}
 }
 
 // Action from RM
@@ -97,7 +97,7 @@
 	return proto.EnumName(NodeInfo_ActionFromRM_name, int32(x))
 }
 func (NodeInfo_ActionFromRM) EnumDescriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{24, 0}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{24, 0}
 }
 
 // container scheduling states
@@ -136,7 +136,7 @@
 	return proto.EnumName(UpdateContainerSchedulingStateRequest_SchedulingState_name, int32(x))
 }
 func (UpdateContainerSchedulingStateRequest_SchedulingState) EnumDescriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{29, 0}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{29, 0}
 }
 
 type EventRecord_Type int32
@@ -169,7 +169,152 @@
 	return proto.EnumName(EventRecord_Type_name, int32(x))
 }
 func (EventRecord_Type) EnumDescriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{31, 0}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{31, 0}
+}
+
+type EventRecord_ChangeType int32
+
+const (
+	EventRecord_NONE   EventRecord_ChangeType = 0
+	EventRecord_SET    EventRecord_ChangeType = 1
+	EventRecord_ADD    EventRecord_ChangeType = 2
+	EventRecord_REMOVE EventRecord_ChangeType = 3
+)
+
+var EventRecord_ChangeType_name = map[int32]string{
+	0: "NONE",
+	1: "SET",
+	2: "ADD",
+	3: "REMOVE",
+}
+var EventRecord_ChangeType_value = map[string]int32{
+	"NONE":   0,
+	"SET":    1,
+	"ADD":    2,
+	"REMOVE": 3,
+}
+
+func (x EventRecord_ChangeType) String() string {
+	return proto.EnumName(EventRecord_ChangeType_name, int32(x))
+}
+func (EventRecord_ChangeType) EnumDescriptor() ([]byte, []int) {
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{31, 1}
+}
+
+type EventRecord_ChangeDetail int32
+
+const (
+	EventRecord_DETAILS_NONE      EventRecord_ChangeDetail = 0
+	EventRecord_REQUEST_CANCEL    EventRecord_ChangeDetail = 100
+	EventRecord_REQUEST_ALLOC     EventRecord_ChangeDetail = 101
+	EventRecord_REQUEST_TIMEOUT   EventRecord_ChangeDetail = 102
+	EventRecord_APP_ALLOC         EventRecord_ChangeDetail = 200
+	EventRecord_APP_REQUEST       EventRecord_ChangeDetail = 201
+	EventRecord_APP_REJECT        EventRecord_ChangeDetail = 202
+	EventRecord_APP_NEW           EventRecord_ChangeDetail = 203
+	EventRecord_APP_ACCEPTED      EventRecord_ChangeDetail = 204
+	EventRecord_APP_STARTING      EventRecord_ChangeDetail = 205
+	EventRecord_APP_RUNNING       EventRecord_ChangeDetail = 206
+	EventRecord_APP_COMPLETING    EventRecord_ChangeDetail = 207
+	EventRecord_APP_COMPLETED     EventRecord_ChangeDetail = 208
+	EventRecord_APP_FAILING       EventRecord_ChangeDetail = 209
+	EventRecord_APP_FAILED        EventRecord_ChangeDetail = 210
+	EventRecord_NODE_DECOMISSION  EventRecord_ChangeDetail = 300
+	EventRecord_NODE_READY        EventRecord_ChangeDetail = 301
+	EventRecord_NODE_SCHEDULABLE  EventRecord_ChangeDetail = 302
+	EventRecord_NODE_ALLOC        EventRecord_ChangeDetail = 303
+	EventRecord_NODE_CAPACITY     EventRecord_ChangeDetail = 304
+	EventRecord_NODE_OCCUPIED     EventRecord_ChangeDetail = 305
+	EventRecord_QUEUE_CONFIG      EventRecord_ChangeDetail = 400
+	EventRecord_QUEUE_DYNAMIC     EventRecord_ChangeDetail = 401
+	EventRecord_QUEUE_TYPE        EventRecord_ChangeDetail = 402
+	EventRecord_QUEUE_MAX         EventRecord_ChangeDetail = 403
+	EventRecord_QUEUE_GUARANTEED  EventRecord_ChangeDetail = 404
+	EventRecord_QUEUE_APP         EventRecord_ChangeDetail = 405
+	EventRecord_QUEUE_ALLOC       EventRecord_ChangeDetail = 406
+	EventRecord_ALLOC_CANCEL      EventRecord_ChangeDetail = 500
+	EventRecord_ALLOC_PREEMPT     EventRecord_ChangeDetail = 501
+	EventRecord_ALLOC_TIMEOUT     EventRecord_ChangeDetail = 502
+	EventRecord_ALLOC_REPLACED    EventRecord_ChangeDetail = 503
+	EventRecord_ALLOC_NODEREMOVED EventRecord_ChangeDetail = 504
+)
+
+var EventRecord_ChangeDetail_name = map[int32]string{
+	0:   "DETAILS_NONE",
+	100: "REQUEST_CANCEL",
+	101: "REQUEST_ALLOC",
+	102: "REQUEST_TIMEOUT",
+	200: "APP_ALLOC",
+	201: "APP_REQUEST",
+	202: "APP_REJECT",
+	203: "APP_NEW",
+	204: "APP_ACCEPTED",
+	205: "APP_STARTING",
+	206: "APP_RUNNING",
+	207: "APP_COMPLETING",
+	208: "APP_COMPLETED",
+	209: "APP_FAILING",
+	210: "APP_FAILED",
+	300: "NODE_DECOMISSION",
+	301: "NODE_READY",
+	302: "NODE_SCHEDULABLE",
+	303: "NODE_ALLOC",
+	304: "NODE_CAPACITY",
+	305: "NODE_OCCUPIED",
+	400: "QUEUE_CONFIG",
+	401: "QUEUE_DYNAMIC",
+	402: "QUEUE_TYPE",
+	403: "QUEUE_MAX",
+	404: "QUEUE_GUARANTEED",
+	405: "QUEUE_APP",
+	406: "QUEUE_ALLOC",
+	500: "ALLOC_CANCEL",
+	501: "ALLOC_PREEMPT",
+	502: "ALLOC_TIMEOUT",
+	503: "ALLOC_REPLACED",
+	504: "ALLOC_NODEREMOVED",
+}
+var EventRecord_ChangeDetail_value = map[string]int32{
+	"DETAILS_NONE":      0,
+	"REQUEST_CANCEL":    100,
+	"REQUEST_ALLOC":     101,
+	"REQUEST_TIMEOUT":   102,
+	"APP_ALLOC":         200,
+	"APP_REQUEST":       201,
+	"APP_REJECT":        202,
+	"APP_NEW":           203,
+	"APP_ACCEPTED":      204,
+	"APP_STARTING":      205,
+	"APP_RUNNING":       206,
+	"APP_COMPLETING":    207,
+	"APP_COMPLETED":     208,
+	"APP_FAILING":       209,
+	"APP_FAILED":        210,
+	"NODE_DECOMISSION":  300,
+	"NODE_READY":        301,
+	"NODE_SCHEDULABLE":  302,
+	"NODE_ALLOC":        303,
+	"NODE_CAPACITY":     304,
+	"NODE_OCCUPIED":     305,
+	"QUEUE_CONFIG":      400,
+	"QUEUE_DYNAMIC":     401,
+	"QUEUE_TYPE":        402,
+	"QUEUE_MAX":         403,
+	"QUEUE_GUARANTEED":  404,
+	"QUEUE_APP":         405,
+	"QUEUE_ALLOC":       406,
+	"ALLOC_CANCEL":      500,
+	"ALLOC_PREEMPT":     501,
+	"ALLOC_TIMEOUT":     502,
+	"ALLOC_REPLACED":    503,
+	"ALLOC_NODEREMOVED": 504,
+}
+
+func (x EventRecord_ChangeDetail) String() string {
+	return proto.EnumName(EventRecord_ChangeDetail_name, int32(x))
+}
+func (EventRecord_ChangeDetail) EnumDescriptor() ([]byte, []int) {
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{31, 2}
 }
 
 type RegisterResourceManagerRequest struct {
@@ -197,7 +342,7 @@
 func (m *RegisterResourceManagerRequest) String() string { return proto.CompactTextString(m) }
 func (*RegisterResourceManagerRequest) ProtoMessage()    {}
 func (*RegisterResourceManagerRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{0}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{0}
 }
 func (m *RegisterResourceManagerRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_RegisterResourceManagerRequest.Unmarshal(m, b)
@@ -270,7 +415,7 @@
 func (m *RegisterResourceManagerResponse) String() string { return proto.CompactTextString(m) }
 func (*RegisterResourceManagerResponse) ProtoMessage()    {}
 func (*RegisterResourceManagerResponse) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{1}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{1}
 }
 func (m *RegisterResourceManagerResponse) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_RegisterResourceManagerResponse.Unmarshal(m, b)
@@ -306,7 +451,7 @@
 func (m *AllocationRequest) String() string { return proto.CompactTextString(m) }
 func (*AllocationRequest) ProtoMessage()    {}
 func (*AllocationRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{2}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{2}
 }
 func (m *AllocationRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AllocationRequest.Unmarshal(m, b)
@@ -364,7 +509,7 @@
 func (m *ApplicationRequest) String() string { return proto.CompactTextString(m) }
 func (*ApplicationRequest) ProtoMessage()    {}
 func (*ApplicationRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{3}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{3}
 }
 func (m *ApplicationRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_ApplicationRequest.Unmarshal(m, b)
@@ -419,7 +564,7 @@
 func (m *NodeRequest) String() string { return proto.CompactTextString(m) }
 func (*NodeRequest) ProtoMessage()    {}
 func (*NodeRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{4}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{4}
 }
 func (m *NodeRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_NodeRequest.Unmarshal(m, b)
@@ -472,7 +617,7 @@
 func (m *AllocationResponse) String() string { return proto.CompactTextString(m) }
 func (*AllocationResponse) ProtoMessage()    {}
 func (*AllocationResponse) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{5}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{5}
 }
 func (m *AllocationResponse) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AllocationResponse.Unmarshal(m, b)
@@ -536,7 +681,7 @@
 func (m *ApplicationResponse) String() string { return proto.CompactTextString(m) }
 func (*ApplicationResponse) ProtoMessage()    {}
 func (*ApplicationResponse) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{6}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{6}
 }
 func (m *ApplicationResponse) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_ApplicationResponse.Unmarshal(m, b)
@@ -591,7 +736,7 @@
 func (m *NodeResponse) String() string { return proto.CompactTextString(m) }
 func (*NodeResponse) ProtoMessage()    {}
 func (*NodeResponse) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{7}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{7}
 }
 func (m *NodeResponse) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_NodeResponse.Unmarshal(m, b)
@@ -643,7 +788,7 @@
 func (m *UpdatedApplication) String() string { return proto.CompactTextString(m) }
 func (*UpdatedApplication) ProtoMessage()    {}
 func (*UpdatedApplication) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{8}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{8}
 }
 func (m *UpdatedApplication) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_UpdatedApplication.Unmarshal(m, b)
@@ -705,7 +850,7 @@
 func (m *RejectedApplication) String() string { return proto.CompactTextString(m) }
 func (*RejectedApplication) ProtoMessage()    {}
 func (*RejectedApplication) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{9}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{9}
 }
 func (m *RejectedApplication) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_RejectedApplication.Unmarshal(m, b)
@@ -751,7 +896,7 @@
 func (m *AcceptedApplication) String() string { return proto.CompactTextString(m) }
 func (*AcceptedApplication) ProtoMessage()    {}
 func (*AcceptedApplication) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{10}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{10}
 }
 func (m *AcceptedApplication) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AcceptedApplication.Unmarshal(m, b)
@@ -792,7 +937,7 @@
 func (m *RejectedNode) String() string { return proto.CompactTextString(m) }
 func (*RejectedNode) ProtoMessage()    {}
 func (*RejectedNode) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{11}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{11}
 }
 func (m *RejectedNode) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_RejectedNode.Unmarshal(m, b)
@@ -838,7 +983,7 @@
 func (m *AcceptedNode) String() string { return proto.CompactTextString(m) }
 func (*AcceptedNode) ProtoMessage()    {}
 func (*AcceptedNode) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{12}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{12}
 }
 func (m *AcceptedNode) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AcceptedNode.Unmarshal(m, b)
@@ -877,7 +1022,7 @@
 func (m *Resource) String() string { return proto.CompactTextString(m) }
 func (*Resource) ProtoMessage()    {}
 func (*Resource) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{13}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{13}
 }
 func (m *Resource) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_Resource.Unmarshal(m, b)
@@ -916,7 +1061,7 @@
 func (m *Quantity) String() string { return proto.CompactTextString(m) }
 func (*Quantity) ProtoMessage()    {}
 func (*Quantity) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{14}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{14}
 }
 func (m *Quantity) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_Quantity.Unmarshal(m, b)
@@ -985,7 +1130,7 @@
 func (m *AllocationAsk) String() string { return proto.CompactTextString(m) }
 func (*AllocationAsk) ProtoMessage()    {}
 func (*AllocationAsk) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{15}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{15}
 }
 func (m *AllocationAsk) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AllocationAsk.Unmarshal(m, b)
@@ -1103,7 +1248,7 @@
 func (m *PreemptionPolicy) String() string { return proto.CompactTextString(m) }
 func (*PreemptionPolicy) ProtoMessage()    {}
 func (*PreemptionPolicy) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{16}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{16}
 }
 func (m *PreemptionPolicy) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_PreemptionPolicy.Unmarshal(m, b)
@@ -1168,7 +1313,7 @@
 func (m *AddApplicationRequest) String() string { return proto.CompactTextString(m) }
 func (*AddApplicationRequest) ProtoMessage()    {}
 func (*AddApplicationRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{17}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{17}
 }
 func (m *AddApplicationRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AddApplicationRequest.Unmarshal(m, b)
@@ -1258,7 +1403,7 @@
 func (m *RemoveApplicationRequest) String() string { return proto.CompactTextString(m) }
 func (*RemoveApplicationRequest) ProtoMessage()    {}
 func (*RemoveApplicationRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{18}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{18}
 }
 func (m *RemoveApplicationRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_RemoveApplicationRequest.Unmarshal(m, b)
@@ -1306,7 +1451,7 @@
 func (m *UserGroupInformation) String() string { return proto.CompactTextString(m) }
 func (*UserGroupInformation) ProtoMessage()    {}
 func (*UserGroupInformation) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{19}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{19}
 }
 func (m *UserGroupInformation) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_UserGroupInformation.Unmarshal(m, b)
@@ -1371,7 +1516,7 @@
 func (m *Allocation) String() string { return proto.CompactTextString(m) }
 func (*Allocation) ProtoMessage()    {}
 func (*Allocation) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{20}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{20}
 }
 func (m *Allocation) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_Allocation.Unmarshal(m, b)
@@ -1475,7 +1620,7 @@
 func (m *AllocationReleasesRequest) String() string { return proto.CompactTextString(m) }
 func (*AllocationReleasesRequest) ProtoMessage()    {}
 func (*AllocationReleasesRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{21}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{21}
 }
 func (m *AllocationReleasesRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AllocationReleasesRequest.Unmarshal(m, b)
@@ -1535,7 +1680,7 @@
 func (m *AllocationRelease) String() string { return proto.CompactTextString(m) }
 func (*AllocationRelease) ProtoMessage()    {}
 func (*AllocationRelease) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{22}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{22}
 }
 func (m *AllocationRelease) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AllocationRelease.Unmarshal(m, b)
@@ -1619,7 +1764,7 @@
 func (m *AllocationAskRelease) String() string { return proto.CompactTextString(m) }
 func (*AllocationAskRelease) ProtoMessage()    {}
 func (*AllocationAskRelease) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{23}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{23}
 }
 func (m *AllocationAskRelease) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_AllocationAskRelease.Unmarshal(m, b)
@@ -1698,7 +1843,7 @@
 func (m *NodeInfo) String() string { return proto.CompactTextString(m) }
 func (*NodeInfo) ProtoMessage()    {}
 func (*NodeInfo) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{24}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{24}
 }
 func (m *NodeInfo) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_NodeInfo.Unmarshal(m, b)
@@ -1775,7 +1920,7 @@
 func (m *RejectedAllocationAsk) String() string { return proto.CompactTextString(m) }
 func (*RejectedAllocationAsk) ProtoMessage()    {}
 func (*RejectedAllocationAsk) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{25}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{25}
 }
 func (m *RejectedAllocationAsk) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_RejectedAllocationAsk.Unmarshal(m, b)
@@ -1833,7 +1978,7 @@
 func (m *PredicatesArgs) String() string { return proto.CompactTextString(m) }
 func (*PredicatesArgs) ProtoMessage()    {}
 func (*PredicatesArgs) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{26}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{26}
 }
 func (m *PredicatesArgs) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_PredicatesArgs.Unmarshal(m, b)
@@ -1892,7 +2037,7 @@
 func (m *PreemptionPredicatesArgs) String() string { return proto.CompactTextString(m) }
 func (*PreemptionPredicatesArgs) ProtoMessage()    {}
 func (*PreemptionPredicatesArgs) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{27}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{27}
 }
 func (m *PreemptionPredicatesArgs) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_PreemptionPredicatesArgs.Unmarshal(m, b)
@@ -1954,7 +2099,7 @@
 func (m *PreemptionPredicatesResponse) String() string { return proto.CompactTextString(m) }
 func (*PreemptionPredicatesResponse) ProtoMessage()    {}
 func (*PreemptionPredicatesResponse) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{28}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{28}
 }
 func (m *PreemptionPredicatesResponse) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_PreemptionPredicatesResponse.Unmarshal(m, b)
@@ -2006,7 +2151,7 @@
 func (m *UpdateContainerSchedulingStateRequest) String() string { return proto.CompactTextString(m) }
 func (*UpdateContainerSchedulingStateRequest) ProtoMessage()    {}
 func (*UpdateContainerSchedulingStateRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{29}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{29}
 }
 func (m *UpdateContainerSchedulingStateRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_UpdateContainerSchedulingStateRequest.Unmarshal(m, b)
@@ -2072,7 +2217,7 @@
 func (m *UpdateConfigurationRequest) String() string { return proto.CompactTextString(m) }
 func (*UpdateConfigurationRequest) ProtoMessage()    {}
 func (*UpdateConfigurationRequest) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{30}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{30}
 }
 func (m *UpdateConfigurationRequest) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_UpdateConfigurationRequest.Unmarshal(m, b)
@@ -2125,25 +2270,28 @@
 	Type EventRecord_Type `protobuf:"varint,1,opt,name=type,proto3,enum=si.v1.EventRecord_Type" json:"type,omitempty"`
 	// ID of the object associated with the event
 	ObjectID string `protobuf:"bytes,2,opt,name=objectID,proto3" json:"objectID,omitempty"`
-	// the group this object belongs to
-	// it specifies the application ID for allocations and the queue for applications
-	GroupID string `protobuf:"bytes,3,opt,name=groupID,proto3" json:"groupID,omitempty"`
-	// the reason of this event
-	Reason string `protobuf:"bytes,4,opt,name=reason,proto3" json:"reason,omitempty"`
 	// the detailed message as string
 	Message string `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
 	// timestamp of the event
-	TimestampNano        int64    `protobuf:"varint,6,opt,name=timestampNano,proto3" json:"timestampNano,omitempty"`
-	XXX_NoUnkeyedLiteral struct{} `json:"-"`
-	XXX_unrecognized     []byte   `json:"-"`
-	XXX_sizecache        int32    `json:"-"`
+	TimestampNano int64 `protobuf:"varint,6,opt,name=timestampNano,proto3" json:"timestampNano,omitempty"`
+	// the type of the change
+	EventChangeType EventRecord_ChangeType `protobuf:"varint,7,opt,name=eventChangeType,proto3,enum=si.v1.EventRecord_ChangeType" json:"eventChangeType,omitempty"`
+	// details about the change
+	EventChangeDetai EventRecord_ChangeDetail `protobuf:"varint,8,opt,name=eventChangeDetai,proto3,enum=si.v1.EventRecord_ChangeDetail" json:"eventChangeDetai,omitempty"`
+	// the secondary object in the event (eg. allocation UUID, request ID)
+	ReferenceID string `protobuf:"bytes,9,opt,name=referenceID,proto3" json:"referenceID,omitempty"`
+	// the resource value if the change involves setting/modifying a resource
+	Resource             *Resource `protobuf:"bytes,10,opt,name=resource,proto3" json:"resource,omitempty"`
+	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
+	XXX_unrecognized     []byte    `json:"-"`
+	XXX_sizecache        int32     `json:"-"`
 }
 
 func (m *EventRecord) Reset()         { *m = EventRecord{} }
 func (m *EventRecord) String() string { return proto.CompactTextString(m) }
 func (*EventRecord) ProtoMessage()    {}
 func (*EventRecord) Descriptor() ([]byte, []int) {
-	return fileDescriptor_si_d721e6078e2aa9e7, []int{31}
+	return fileDescriptor_si_e5b1f6d5b33bd933, []int{31}
 }
 func (m *EventRecord) XXX_Unmarshal(b []byte) error {
 	return xxx_messageInfo_EventRecord.Unmarshal(m, b)
@@ -2177,20 +2325,6 @@
 	return ""
 }
 
-func (m *EventRecord) GetGroupID() string {
-	if m != nil {
-		return m.GroupID
-	}
-	return ""
-}
-
-func (m *EventRecord) GetReason() string {
-	if m != nil {
-		return m.Reason
-	}
-	return ""
-}
-
 func (m *EventRecord) GetMessage() string {
 	if m != nil {
 		return m.Message
@@ -2205,6 +2339,34 @@
 	return 0
 }
 
+func (m *EventRecord) GetEventChangeType() EventRecord_ChangeType {
+	if m != nil {
+		return m.EventChangeType
+	}
+	return EventRecord_NONE
+}
+
+func (m *EventRecord) GetEventChangeDetai() EventRecord_ChangeDetail {
+	if m != nil {
+		return m.EventChangeDetai
+	}
+	return EventRecord_DETAILS_NONE
+}
+
+func (m *EventRecord) GetReferenceID() string {
+	if m != nil {
+		return m.ReferenceID
+	}
+	return ""
+}
+
+func (m *EventRecord) GetResource() *Resource {
+	if m != nil {
+		return m.Resource
+	}
+	return nil
+}
+
 var E_SiSecret = &proto.ExtensionDesc{
 	ExtendedType:  (*descriptorpb.FieldOptions)(nil),
 	ExtensionType: (*bool)(nil),
@@ -2259,6 +2421,8 @@
 	proto.RegisterEnum("si.v1.NodeInfo_ActionFromRM", NodeInfo_ActionFromRM_name, NodeInfo_ActionFromRM_value)
 	proto.RegisterEnum("si.v1.UpdateContainerSchedulingStateRequest_SchedulingState", UpdateContainerSchedulingStateRequest_SchedulingState_name, UpdateContainerSchedulingStateRequest_SchedulingState_value)
 	proto.RegisterEnum("si.v1.EventRecord_Type", EventRecord_Type_name, EventRecord_Type_value)
+	proto.RegisterEnum("si.v1.EventRecord_ChangeType", EventRecord_ChangeType_name, EventRecord_ChangeType_value)
+	proto.RegisterEnum("si.v1.EventRecord_ChangeDetail", EventRecord_ChangeDetail_name, EventRecord_ChangeDetail_value)
 	proto.RegisterExtension(E_SiSecret)
 }
 
@@ -2547,149 +2711,177 @@
 }
 
 func init() {
-	proto.RegisterFile("yunikorn-scheduler-interface/si.proto", fileDescriptor_si_d721e6078e2aa9e7)
+	proto.RegisterFile("yunikorn-scheduler-interface/si.proto", fileDescriptor_si_e5b1f6d5b33bd933)
 }
 
-var fileDescriptor_si_d721e6078e2aa9e7 = []byte{
-	// 2238 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0x4f, 0x73, 0x1b, 0x49,
-	0x15, 0xcf, 0x48, 0xb2, 0x2d, 0x3d, 0x39, 0xf6, 0xa4, 0xed, 0x24, 0x13, 0x61, 0x12, 0x33, 0xac,
-	0x53, 0xa9, 0x85, 0xc8, 0xbb, 0xde, 0xd4, 0x66, 0x2b, 0x09, 0xbb, 0xc8, 0xd6, 0x64, 0xa3, 0x4d,
-	0xf4, 0x27, 0x2d, 0x69, 0x61, 0xb9, 0xb8, 0xc6, 0xa3, 0xb6, 0x32, 0xb1, 0x34, 0xa3, 0xed, 0x9e,
-	0xc9, 0xc6, 0x45, 0x71, 0xe4, 0xbc, 0xc5, 0x89, 0xa2, 0x8a, 0x1b, 0x55, 0x1c, 0x39, 0x71, 0xe2,
-	0xc4, 0x91, 0x0f, 0x00, 0x7c, 0x02, 0x4e, 0x1c, 0xb8, 0x71, 0xa7, 0xba, 0xa7, 0xe7, 0x9f, 0x66,
-	0x14, 0x2b, 0x10, 0x6e, 0xd3, 0xaf, 0x7f, 0xef, 0xf5, 0xeb, 0xf7, 0x5e, 0xbf, 0xf7, 0xba, 0x07,
-	0xf6, 0xce, 0x7d, 0xc7, 0x3e, 0x73, 0xa9, 0x73, 0x97, 0x59, 0x2f, 0xc8, 0xc8, 0x9f, 0x10, 0x7a,
-	0xd7, 0x76, 0x3c, 0x42, 0x4f, 0x4d, 0x8b, 0xec, 0x33, 0xbb, 0x3e, 0xa3, 0xae, 0xe7, 0xa2, 0x15,
-	0x66, 0xd7, 0x5f, 0x7d, 0x58, 0xdb, 0x1d, 0xbb, 0xee, 0x78, 0x42, 0xf6, 0x05, 0xf1, 0xc4, 0x3f,
-	0xdd, 0x1f, 0x11, 0x66, 0x51, 0x7b, 0xe6, 0xb9, 0x34, 0x00, 0xea, 0x7f, 0x2c, 0xc2, 0x4d, 0x4c,
-	0xc6, 0x36, 0xf3, 0x08, 0xc5, 0x84, 0xb9, 0x3e, 0xb5, 0x48, 0xdb, 0x74, 0xcc, 0x31, 0x1f, 0x7e,
-	0xed, 0x13, 0xe6, 0x21, 0x04, 0x25, 0x3a, 0x6d, 0x35, 0x35, 0x65, 0x57, 0xb9, 0x53, 0xc1, 0xe2,
-	0x1b, 0x69, 0xb0, 0xf6, 0x8a, 0x50, 0x66, 0xbb, 0x8e, 0x56, 0x10, 0xe4, 0x70, 0x88, 0x76, 0xa1,
-	0x3a, 0x73, 0x27, 0xb6, 0x75, 0xfe, 0x39, 0x75, 0xfd, 0x99, 0x56, 0x14, 0xb3, 0x49, 0x12, 0xc2,
-	0x50, 0x39, 0xf1, 0xed, 0xc9, 0xa8, 0xe5, 0x9c, 0xba, 0x5a, 0x69, 0xb7, 0x78, 0xa7, 0x7a, 0x70,
-	0xaf, 0x2e, 0xf4, 0xad, 0xbf, 0x59, 0x93, 0xfa, 0x61, 0xc8, 0x66, 0x38, 0x1e, 0x3d, 0xc7, 0xb1,
-	0x18, 0x74, 0x0d, 0x56, 0x2d, 0xd7, 0x39, 0xb5, 0xc7, 0xda, 0x8a, 0x58, 0x50, 0x8e, 0xd0, 0x4f,
-	0xa1, 0x4a, 0x5e, 0x7b, 0xd4, 0x3c, 0x0a, 0x26, 0x57, 0xc5, 0x6a, 0x1f, 0x2f, 0xb7, 0x9a, 0x11,
-	0x33, 0x06, 0xeb, 0x25, 0x45, 0xd5, 0x1e, 0xc1, 0x46, 0x5a, 0x1d, 0xa4, 0x42, 0xf1, 0x8c, 0x9c,
-	0x4b, 0x33, 0xf1, 0x4f, 0xb4, 0x0d, 0x2b, 0xaf, 0xcc, 0x89, 0x4f, 0xa4, 0x8d, 0x82, 0xc1, 0x83,
-	0xc2, 0x27, 0x4a, 0xed, 0x53, 0x50, 0xe7, 0xc5, 0xbf, 0x0d, 0xbf, 0xfe, 0x3d, 0xb8, 0xb5, 0x50,
-	0x7b, 0x36, 0x73, 0x1d, 0x46, 0xf4, 0x6f, 0x15, 0xb8, 0xd2, 0x98, 0x4c, 0x5c, 0xcb, 0xf4, 0x6c,
-	0xd7, 0x09, 0x9d, 0x79, 0x07, 0x4a, 0x26, 0x3b, 0x63, 0x9a, 0x22, 0x2c, 0xb1, 0x2d, 0x2d, 0x11,
-	0xe3, 0x1a, 0xec, 0x0c, 0x0b, 0x04, 0x7a, 0x04, 0x65, 0x4a, 0x26, 0xc4, 0x64, 0x84, 0x89, 0xf5,
-	0xab, 0x07, 0xbb, 0x19, 0x34, 0x96, 0x00, 0x29, 0x1d, 0x47, 0x1c, 0x51, 0xd0, 0x14, 0xe3, 0xa0,
-	0xd1, 0x7f, 0xa5, 0x00, 0x6a, 0xcc, 0x66, 0x13, 0x3b, 0xad, 0x52, 0x1d, 0x8a, 0x0e, 0xf9, 0x46,
-	0x6a, 0xb4, 0x13, 0xae, 0x31, 0x1a, 0x65, 0xa1, 0x98, 0x03, 0xd1, 0x7d, 0x58, 0xa5, 0x64, 0xea,
-	0xbe, 0xe2, 0x66, 0xe1, 0x2c, 0xb7, 0x22, 0x77, 0x72, 0x62, 0x0e, 0x97, 0x84, 0xe7, 0xea, 0xf4,
-	0x04, 0xaa, 0x1d, 0x77, 0x44, 0x42, 0x5d, 0xf6, 0x60, 0xc5, 0x71, 0x47, 0x24, 0xb4, 0xcf, 0xa6,
-	0x14, 0xcd, 0x21, 0xdc, 0xd1, 0x38, 0x98, 0x8d, 0x24, 0x15, 0x12, 0x92, 0xfe, 0xc9, 0x77, 0x97,
-	0xb0, 0x4c, 0xe0, 0x06, 0xf4, 0xfd, 0xe4, 0xee, 0xae, 0x64, 0x2d, 0x28, 0xb6, 0x74, 0x2f, 0xb2,
-	0xf5, 0x48, 0x6e, 0x4a, 0x5b, 0x64, 0xeb, 0xc8, 0xc6, 0x23, 0xf4, 0x19, 0xac, 0x87, 0xdf, 0x0d,
-	0xee, 0xd3, 0xa2, 0xe0, 0xfc, 0x4e, 0xae, 0x4f, 0x25, 0x73, 0x8a, 0x01, 0x7d, 0xc2, 0x97, 0x7d,
-	0x49, 0x2c, 0x8f, 0x8c, 0xe4, 0x41, 0xdc, 0x89, 0x6c, 0x19, 0x90, 0xd3, 0x42, 0x22, 0xb4, 0xfe,
-	0x27, 0x05, 0xb6, 0x52, 0x96, 0x96, 0xbb, 0xfd, 0x38, 0x21, 0x31, 0xd8, 0x72, 0x6d, 0x5e, 0x62,
-	0x82, 0x2b, 0xc2, 0x72, 0x3e, 0xd3, 0xb2, 0xc8, 0xcc, 0x8b, 0x0c, 0x10, 0xf2, 0x35, 0x24, 0x39,
-	0xc5, 0x17, 0x62, 0xd1, 0x47, 0xb0, 0xe6, 0xcf, 0x46, 0x26, 0x67, 0x0b, 0x76, 0x7f, 0x43, 0xb2,
-	0x0d, 0x03, 0x6a, 0x92, 0x2b, 0x44, 0xea, 0x33, 0x58, 0x0f, 0x7c, 0x2e, 0x95, 0xde, 0xcf, 0x28,
-	0xbd, 0x35, 0xa7, 0xb4, 0x80, 0xc7, 0xda, 0xee, 0x67, 0xb4, 0xdd, 0x9a, 0xd3, 0x36, 0x60, 0x08,
-	0x41, 0xfa, 0xef, 0x15, 0x40, 0x59, 0x8d, 0xd0, 0x7b, 0x70, 0xd9, 0x8c, 0x87, 0x51, 0x8a, 0x4d,
-	0x13, 0x79, 0x16, 0x60, 0x9e, 0xe9, 0x45, 0x59, 0x40, 0x0c, 0xd0, 0x03, 0xd0, 0xc4, 0xc7, 0x80,
-	0x9a, 0x0e, 0xb3, 0x39, 0x74, 0x60, 0x4f, 0x09, 0xf3, 0xcc, 0x69, 0x90, 0x74, 0x8b, 0x78, 0xe1,
-	0x3c, 0xcf, 0xde, 0x53, 0xc2, 0x98, 0x39, 0x26, 0x5a, 0x29, 0xc8, 0xde, 0x72, 0xa8, 0xf7, 0x61,
-	0x2b, 0xc7, 0x51, 0x4b, 0x2a, 0x7a, 0x8d, 0x1f, 0x4c, 0x93, 0x45, 0x35, 0x41, 0x8e, 0xf4, 0x87,
-	0xb0, 0x95, 0xe3, 0xc5, 0xe5, 0x84, 0xea, 0x9f, 0xc2, 0x7a, 0xd2, 0x0b, 0x7c, 0x11, 0x7e, 0x06,
-	0x23, 0xb8, 0x1c, 0x2d, 0x5c, 0xfc, 0x36, 0xac, 0x27, 0x9d, 0xb2, 0x88, 0x5f, 0xff, 0xb5, 0x02,
-	0xe5, 0x30, 0x95, 0xa2, 0x47, 0x50, 0xa1, 0xf2, 0x3b, 0x4c, 0x05, 0x37, 0xa3, 0x90, 0x08, 0xe8,
-	0xd1, 0x07, 0x93, 0xc5, 0x28, 0x62, 0xa8, 0xb5, 0x61, 0x23, 0x3d, 0x99, 0x93, 0xda, 0xf7, 0x92,
-	0xa9, 0x3d, 0x4e, 0x34, 0xcf, 0x7d, 0xd3, 0xf1, 0x6c, 0xef, 0x3c, 0x99, 0xeb, 0x77, 0xa1, 0x1c,
-	0x92, 0xe3, 0x8a, 0xa0, 0x08, 0x17, 0x07, 0x03, 0xfd, 0xef, 0x25, 0xb8, 0x9c, 0x3a, 0xa9, 0xc2,
-	0xb6, 0x11, 0xe1, 0x69, 0xb4, 0x74, 0x9a, 0x98, 0xf5, 0x40, 0x21, 0xcf, 0xad, 0xef, 0xc1, 0xe5,
-	0x99, 0x49, 0x3d, 0x11, 0x43, 0x1d, 0x73, 0x4a, 0x64, 0xfe, 0x4c, 0x13, 0xd1, 0x87, 0x50, 0x0d,
-	0x2d, 0xd0, 0x60, 0x67, 0x22, 0xae, 0xe2, 0x6d, 0x85, 0xe6, 0xc0, 0x49, 0x0c, 0xba, 0x0d, 0x1b,
-	0x53, 0xf3, 0x75, 0xac, 0x38, 0x13, 0xc5, 0x7b, 0x05, 0xcf, 0x51, 0x51, 0x0d, 0xca, 0x33, 0x6a,
-	0xbb, 0xd4, 0xf6, 0xce, 0xb5, 0x55, 0x81, 0x88, 0xc6, 0xe8, 0x10, 0x76, 0xc8, 0x6b, 0x62, 0xf9,
-	0x61, 0x80, 0xbb, 0xbe, 0xd7, 0xb6, 0x27, 0x13, 0xbb, 0x4f, 0x2c, 0xd7, 0x19, 0x31, 0x6d, 0x4d,
-	0xd8, 0xe9, 0x8d, 0x18, 0x74, 0x00, 0x25, 0xcf, 0x1c, 0x33, 0xad, 0x9c, 0x72, 0x74, 0xca, 0xa0,
-	0xf5, 0x81, 0x39, 0x96, 0x8e, 0x16, 0x58, 0x6e, 0x14, 0xcf, 0x64, 0x67, 0xa2, 0xa3, 0x11, 0x46,
-	0xa9, 0x04, 0x46, 0x49, 0x11, 0x45, 0x33, 0x34, 0x31, 0x2d, 0xf2, 0xc2, 0x9d, 0x8c, 0x08, 0xd5,
-	0x60, 0x57, 0xb9, 0x53, 0xc6, 0x49, 0x12, 0xba, 0x09, 0xd0, 0xa5, 0xf6, 0xd8, 0x76, 0x4c, 0xcf,
-	0xa5, 0x5a, 0x55, 0x00, 0x12, 0x14, 0x74, 0x04, 0xea, 0x8c, 0x12, 0x32, 0x9d, 0x71, 0x45, 0x7a,
-	0xa2, 0x8b, 0xd2, 0xd6, 0x85, 0x6d, 0xaf, 0x4b, 0x3d, 0x7b, 0x73, 0xd3, 0x38, 0xc3, 0x50, 0xbb,
-	0x0f, 0x95, 0x48, 0xff, 0xb7, 0x6a, 0x33, 0x26, 0xa0, 0xce, 0x8b, 0x47, 0xef, 0x83, 0xca, 0xa3,
-	0xe8, 0x1b, 0x39, 0xd1, 0x27, 0x93, 0x53, 0x21, 0xac, 0x8c, 0x33, 0x74, 0xf4, 0x43, 0xb8, 0x92,
-	0xa4, 0x75, 0xbd, 0x17, 0x84, 0x8a, 0x55, 0xca, 0x38, 0x3b, 0xa1, 0xff, 0xb5, 0x08, 0x57, 0x73,
-	0xeb, 0xfe, 0x92, 0xf9, 0x67, 0x07, 0x2a, 0x5f, 0xfb, 0xc4, 0x27, 0xc2, 0x1f, 0xc1, 0x5e, 0x62,
-	0xc2, 0x92, 0x61, 0x7c, 0x17, 0x8a, 0xfe, 0xd8, 0x96, 0xe1, 0x1b, 0x96, 0xd2, 0x21, 0x23, 0x54,
-	0x38, 0x95, 0xf7, 0x00, 0x74, 0x2a, 0x0b, 0xb7, 0x3f, 0xb6, 0xd1, 0x03, 0x19, 0x3a, 0x2b, 0x22,
-	0x74, 0x6e, 0xbf, 0xa9, 0x79, 0xc9, 0x84, 0xd0, 0x45, 0xa1, 0xbb, 0xba, 0x44, 0xe8, 0xde, 0x87,
-	0x8d, 0x44, 0x34, 0xf1, 0x83, 0xb7, 0x96, 0x7f, 0xf0, 0xe6, 0x60, 0xe8, 0x03, 0xd8, 0x1a, 0x9b,
-	0xce, 0xb8, 0x1f, 0x5c, 0x22, 0x6c, 0x67, 0xdc, 0xf7, 0xce, 0x27, 0x44, 0x2b, 0x0b, 0x9b, 0xe4,
-	0x4d, 0xfd, 0xf7, 0x41, 0x74, 0x0a, 0xda, 0xa2, 0xd6, 0x6c, 0x49, 0xc7, 0x66, 0x5c, 0x57, 0xc8,
-	0x71, 0x9d, 0x7e, 0x08, 0xdb, 0x79, 0x8e, 0xe2, 0xcd, 0x9a, 0xcf, 0x08, 0x0d, 0xef, 0x2f, 0xfc,
-	0x9b, 0x57, 0x81, 0x31, 0xc7, 0x31, 0x51, 0xbf, 0x2b, 0x58, 0x8e, 0xf4, 0x7f, 0x15, 0x01, 0xe2,
-	0x83, 0xbf, 0x64, 0x1a, 0x6d, 0xc3, 0x46, 0x4c, 0xe0, 0x36, 0x92, 0x4d, 0xc1, 0x5e, 0x26, 0x93,
-	0x24, 0x3e, 0xe3, 0x68, 0x98, 0x63, 0xe6, 0xfa, 0x0e, 0x87, 0x71, 0x9b, 0xca, 0xbf, 0xd1, 0x43,
-	0x50, 0xc3, 0xcc, 0xd9, 0x23, 0x54, 0x48, 0x11, 0xc9, 0x32, 0xc7, 0xd3, 0x19, 0xe0, 0x1b, 0xf3,
-	0x67, 0x5c, 0x0e, 0xcb, 0xa9, 0x72, 0x9a, 0x71, 0x4c, 0x65, 0x29, 0xc7, 0x40, 0xde, 0x99, 0xca,
-	0xe4, 0xca, 0xea, 0x12, 0xb9, 0x72, 0x3d, 0x93, 0x2b, 0x6b, 0x0d, 0xd8, 0xca, 0xb1, 0xdf, 0xdb,
-	0xc4, 0xe2, 0x17, 0xa5, 0xf2, 0x9a, 0x5a, 0x4e, 0x64, 0x05, 0xfd, 0xcf, 0x0a, 0xdc, 0x58, 0x78,
-	0x9f, 0x41, 0xcf, 0x60, 0x3b, 0x76, 0x0e, 0x1b, 0xb8, 0x72, 0x5e, 0xb6, 0x04, 0x8b, 0x7b, 0xf4,
-	0x5c, 0x2e, 0x34, 0x84, 0xeb, 0x66, 0xb2, 0xa8, 0x24, 0x04, 0x16, 0x2e, 0x6e, 0xdd, 0x17, 0xf1,
-	0xea, 0xff, 0x9e, 0xbb, 0xe8, 0x05, 0x8b, 0x65, 0x5c, 0xa3, 0x2c, 0x70, 0xcd, 0x12, 0x1d, 0x40,
-	0x5e, 0x44, 0xfe, 0x18, 0x36, 0x3d, 0x42, 0xa7, 0xbc, 0x4c, 0x71, 0x6f, 0x9c, 0xcf, 0x82, 0x5e,
-	0x72, 0xe3, 0xe0, 0x9a, 0xdc, 0xc4, 0x20, 0x3d, 0x8b, 0xe7, 0xe1, 0xc9, 0x2e, 0x74, 0x25, 0xd5,
-	0x85, 0x66, 0x8f, 0xdd, 0x6a, 0xce, 0xb1, 0xd3, 0xff, 0xa1, 0xc0, 0x76, 0x9e, 0xa5, 0xde, 0xe9,
-	0xd6, 0x33, 0xaa, 0x14, 0xf3, 0x32, 0xc0, 0xff, 0xd1, 0x18, 0xfa, 0x6f, 0x4b, 0x50, 0x0e, 0xef,
-	0x9f, 0x0b, 0xbb, 0xdf, 0x7b, 0xb0, 0x6a, 0x5a, 0x5e, 0xf8, 0x1c, 0xb3, 0x11, 0xdd, 0xe3, 0x42,
-	0xc6, 0x7a, 0x43, 0xcc, 0x3e, 0xa6, 0xee, 0x14, 0xb7, 0xb1, 0xc4, 0xa2, 0xcf, 0x00, 0x4c, 0xcf,
-	0xa3, 0xf6, 0x89, 0xef, 0x91, 0xf0, 0xfa, 0x78, 0x2b, 0xc3, 0x19, 0x21, 0x82, 0x74, 0x95, 0x60,
-	0x41, 0x0d, 0xd8, 0x92, 0xcf, 0x50, 0xe6, 0xc9, 0x84, 0x84, 0x29, 0x68, 0x51, 0xf3, 0x97, 0x87,
-	0xe5, 0x99, 0xcd, 0xb5, 0x2c, 0x7f, 0x66, 0x93, 0x51, 0xc4, 0xbf, 0x28, 0xb3, 0xcd, 0x03, 0xd1,
-	0x11, 0x6c, 0x91, 0xd7, 0x36, 0xf3, 0x6c, 0x67, 0x9c, 0x6c, 0x23, 0x57, 0x17, 0x5d, 0xb6, 0xf3,
-	0xd0, 0xb5, 0x1f, 0xc1, 0xe6, 0xdc, 0x1e, 0xdf, 0xaa, 0xbc, 0xfd, 0x82, 0x5f, 0x30, 0x62, 0xe3,
-	0xa2, 0x1a, 0x5c, 0x1b, 0x76, 0x9e, 0x76, 0xba, 0x3f, 0xe9, 0x1c, 0x37, 0x8e, 0x06, 0xad, 0x6e,
-	0xe7, 0xf8, 0x31, 0xee, 0xb6, 0x8f, 0x71, 0x5b, 0xbd, 0x84, 0x00, 0x56, 0x8f, 0xb0, 0xd1, 0x18,
-	0x18, 0xaa, 0xc2, 0xbf, 0x87, 0xbd, 0x26, 0xff, 0x2e, 0xa0, 0x0d, 0x80, 0x26, 0x6e, 0xb4, 0x3a,
-	0xc7, 0x9d, 0x6e, 0xd3, 0x50, 0x8b, 0x68, 0x13, 0xaa, 0x4d, 0xe3, 0xa8, 0xdb, 0x6e, 0xf5, 0xfb,
-	0xad, 0x6e, 0x47, 0x2d, 0x21, 0x0d, 0xb6, 0x03, 0xc0, 0xa0, 0x7b, 0xdc, 0x3f, 0x7a, 0x62, 0x34,
-	0x87, 0xcf, 0x1a, 0x87, 0xcf, 0x0c, 0x75, 0x45, 0xff, 0x39, 0x5c, 0xcd, 0xbd, 0xac, 0xbf, 0xd3,
-	0x2b, 0x40, 0x7c, 0xb9, 0x2a, 0xa6, 0x2e, 0x57, 0x2f, 0x61, 0xa3, 0x47, 0xc9, 0x88, 0x03, 0x09,
-	0x6b, 0xd0, 0xa0, 0x2f, 0x5e, 0x62, 0xd5, 0x38, 0x8c, 0x0b, 0xa9, 0x30, 0xae, 0x41, 0x59, 0x02,
-	0x83, 0xf6, 0xac, 0x8c, 0xa3, 0xb1, 0xfe, 0x07, 0x05, 0xb4, 0x44, 0x33, 0xfa, 0x2e, 0x97, 0xbd,
-	0x07, 0x57, 0x65, 0xcf, 0xdc, 0x48, 0xe2, 0x83, 0x23, 0x51, 0xc1, 0xf9, 0x93, 0xbc, 0x75, 0x67,
-	0x9e, 0x49, 0xbd, 0x96, 0x33, 0x22, 0xaf, 0x45, 0xcc, 0xaf, 0xe0, 0x04, 0x45, 0xef, 0xc0, 0x4e,
-	0x9e, 0xbe, 0xd1, 0xb3, 0x83, 0x06, 0x6b, 0xcc, 0xb7, 0x2c, 0xc2, 0x98, 0xec, 0x9f, 0xc3, 0x21,
-	0x0f, 0x36, 0x5b, 0x08, 0x2d, 0x08, 0xa1, 0xc1, 0x40, 0xff, 0x4b, 0x01, 0xf6, 0x82, 0x47, 0x84,
-	0x23, 0xd7, 0xf1, 0x4c, 0xdb, 0x21, 0x34, 0xd9, 0xa3, 0x99, 0x5e, 0xf4, 0x8a, 0x75, 0x1b, 0x36,
-	0xa4, 0xff, 0x68, 0xaa, 0xad, 0x9a, 0xa3, 0x66, 0xad, 0x56, 0xc8, 0xb3, 0x1a, 0x0e, 0xdf, 0x1f,
-	0x8a, 0x22, 0xb5, 0x3c, 0x4a, 0xbd, 0xb0, 0x5c, 0xa0, 0x4a, 0x7d, 0x9e, 0x2c, 0x5f, 0x2f, 0xe2,
-	0x80, 0x2a, 0xa5, 0x02, 0x8a, 0xc0, 0xe6, 0x1c, 0x07, 0xda, 0x01, 0x2d, 0x3c, 0x4f, 0x32, 0xf2,
-	0x5b, 0x9d, 0xcf, 0x8f, 0xfb, 0x03, 0x7e, 0x72, 0x2e, 0xa1, 0x2a, 0xac, 0xf5, 0x9f, 0xb6, 0x7a,
-	0x3d, 0xa3, 0xa9, 0x2a, 0xe8, 0x32, 0x54, 0x24, 0xc4, 0x68, 0xaa, 0x05, 0xb4, 0x0e, 0x65, 0x6c,
-	0xf4, 0x0d, 0xfc, 0xa5, 0xd1, 0x54, 0x8b, 0xfc, 0xbc, 0x3d, 0x6e, 0xb4, 0xf8, 0x4c, 0x49, 0xff,
-	0xb6, 0x00, 0xb5, 0x48, 0xff, 0x53, 0x7b, 0xec, 0xd3, 0x54, 0x57, 0x9a, 0xf3, 0xbc, 0xb7, 0xc4,
-	0xbb, 0x76, 0xfc, 0x06, 0x5d, 0x4a, 0xbd, 0x41, 0x0f, 0xd2, 0x6f, 0xd0, 0xc1, 0x55, 0xe1, 0x60,
-	0xde, 0x8a, 0x19, 0x2d, 0x2e, 0x78, 0x7f, 0xfe, 0x1f, 0x5f, 0x90, 0xbf, 0x28, 0x95, 0x15, 0xb5,
-	0x80, 0xd7, 0x02, 0x1d, 0x99, 0xfe, 0x9b, 0x02, 0x54, 0x8d, 0x57, 0xc4, 0xf1, 0x30, 0xb1, 0x5c,
-	0x3a, 0x42, 0x3f, 0x80, 0x92, 0xc7, 0xcb, 0x98, 0x22, 0x7c, 0x1e, 0xde, 0x35, 0x13, 0x88, 0xba,
-	0xa8, 0x63, 0x02, 0xc4, 0x8f, 0xad, 0x7b, 0xc2, 0x73, 0x50, 0x64, 0xb3, 0x68, 0xcc, 0xa3, 0x5c,
-	0xf4, 0xd6, 0x51, 0xfb, 0x10, 0x0e, 0x17, 0xc5, 0xc0, 0x9b, 0xfb, 0x02, 0x2f, 0x7c, 0xc4, 0xea,
-	0x98, 0x8e, 0x2b, 0xaf, 0x48, 0x69, 0xa2, 0xde, 0x85, 0x92, 0x28, 0xa9, 0x89, 0xc0, 0x31, 0xbe,
-	0x34, 0x3a, 0x03, 0x6c, 0x1c, 0x75, 0x71, 0xf3, 0x78, 0xf0, 0x55, 0x4f, 0x06, 0x0e, 0x36, 0x9e,
-	0x0f, 0x8d, 0xfe, 0x40, 0x55, 0xd0, 0x1a, 0x14, 0x1b, 0xbd, 0x9e, 0x5a, 0x40, 0x65, 0x28, 0xc9,
-	0x14, 0x5c, 0x81, 0x95, 0xe7, 0x43, 0x63, 0x68, 0xa8, 0xa5, 0xf7, 0x7f, 0xa9, 0xc0, 0xe6, 0x5c,
-	0x01, 0x4f, 0x0a, 0x1f, 0x18, 0xb8, 0xdd, 0xea, 0x34, 0x44, 0xaa, 0x97, 0xc2, 0xaf, 0xc0, 0xe5,
-	0xfe, 0xa0, 0xcb, 0xa3, 0xf2, 0xf8, 0xf0, 0x2b, 0x9e, 0xfa, 0x15, 0xbe, 0xde, 0xa0, 0xd5, 0x36,
-	0xba, 0xc3, 0x81, 0x5a, 0xe0, 0x35, 0xa2, 0x87, 0x0d, 0xa3, 0xdd, 0x1b, 0x04, 0x88, 0x30, 0x6a,
-	0xb1, 0x5a, 0xe4, 0xa9, 0xbe, 0xf7, 0xac, 0x71, 0x64, 0x3c, 0xe9, 0x3e, 0x6b, 0x1a, 0xf8, 0x18,
-	0x1b, 0x62, 0xd4, 0x54, 0x4b, 0x07, 0x7f, 0x2b, 0x40, 0xa5, 0x1f, 0xfe, 0xf5, 0x41, 0x2f, 0xe1,
-	0xfa, 0x82, 0x5f, 0x00, 0x68, 0x6f, 0xa9, 0x1f, 0x1c, 0xb5, 0xdb, 0x17, 0xc1, 0xe4, 0x9f, 0x84,
-	0x4b, 0xa8, 0x0d, 0x6a, 0x10, 0xa8, 0x89, 0xbb, 0x51, 0x5e, 0xf7, 0x1b, 0xc8, 0xbd, 0x91, 0x33,
-	0x13, 0x8a, 0xba, 0xa3, 0x7c, 0xa0, 0xa0, 0x1e, 0x5c, 0x91, 0xe2, 0x12, 0xcf, 0x81, 0x11, 0x57,
-	0xe6, 0x96, 0x58, 0xab, 0xe5, 0x4d, 0xa5, 0x24, 0x3e, 0x04, 0x08, 0x24, 0x8a, 0x37, 0x3e, 0x94,
-	0xe8, 0x61, 0x42, 0x19, 0x5b, 0x29, 0x5a, 0x92, 0xf9, 0xc1, 0x43, 0xa8, 0x30, 0xfb, 0x98, 0x11,
-	0x8b, 0x12, 0x0f, 0x7d, 0xb7, 0x1e, 0xfc, 0x33, 0xab, 0x87, 0xff, 0xcc, 0xea, 0x8f, 0x6d, 0x32,
-	0x19, 0x75, 0x67, 0x41, 0x6b, 0xf1, 0xbb, 0x72, 0x50, 0x96, 0x18, 0xbf, 0x82, 0x53, 0xe2, 0x1d,
-	0x56, 0x7f, 0x56, 0x99, 0xd8, 0x27, 0xfb, 0x63, 0x77, 0x9f, 0xd9, 0x27, 0xab, 0x82, 0xe9, 0xa3,
-	0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x96, 0xab, 0x1d, 0x69, 0xa6, 0x1b, 0x00, 0x00,
+var fileDescriptor_si_e5b1f6d5b33bd933 = []byte{
+	// 2673 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0xcd, 0x93, 0x1b, 0x47,
+	0x15, 0xcf, 0x68, 0xa4, 0x95, 0xf4, 0xb4, 0xab, 0x9d, 0x6d, 0xd9, 0x8e, 0x22, 0x9c, 0x64, 0x19,
+	0x62, 0x97, 0x2b, 0x21, 0xda, 0xc4, 0x71, 0x25, 0x29, 0xdb, 0x24, 0x8c, 0x47, 0x63, 0x47, 0xf6,
+	0xea, 0x23, 0xad, 0x51, 0x12, 0x73, 0x51, 0xcd, 0x4a, 0xbd, 0xf2, 0x64, 0xb5, 0x33, 0xca, 0xcc,
+	0xc8, 0xf1, 0x16, 0xc5, 0x85, 0x2a, 0xce, 0x21, 0x7c, 0x5e, 0xb8, 0x41, 0x71, 0x82, 0x00, 0x55,
+	0x9c, 0x38, 0x71, 0x0c, 0xdf, 0x1f, 0x05, 0xfc, 0x05, 0x9c, 0x38, 0x70, 0x22, 0xc0, 0x91, 0xea,
+	0x9e, 0x9e, 0x2f, 0xcd, 0xc8, 0x96, 0xc1, 0xdc, 0xa6, 0x5f, 0xff, 0xde, 0xeb, 0xd7, 0xef, 0xbd,
+	0x7e, 0xef, 0x75, 0x0f, 0x9c, 0x3b, 0x59, 0x58, 0xe6, 0x91, 0xed, 0x58, 0xcf, 0xbb, 0xe3, 0x3b,
+	0x64, 0xb2, 0x98, 0x11, 0xe7, 0x79, 0xd3, 0xf2, 0x88, 0x73, 0x68, 0x8c, 0xc9, 0x9e, 0x6b, 0x36,
+	0xe7, 0x8e, 0xed, 0xd9, 0xa8, 0xe0, 0x9a, 0xcd, 0xbb, 0x2f, 0x36, 0x76, 0xa7, 0xb6, 0x3d, 0x9d,
+	0x91, 0x3d, 0x46, 0x3c, 0x58, 0x1c, 0xee, 0x4d, 0x88, 0x3b, 0x76, 0xcc, 0xb9, 0x67, 0x3b, 0x3e,
+	0x50, 0xfe, 0xa9, 0x08, 0x4f, 0x61, 0x32, 0x35, 0x5d, 0x8f, 0x38, 0x98, 0xb8, 0xf6, 0xc2, 0x19,
+	0x93, 0x8e, 0x61, 0x19, 0x53, 0x3a, 0x7c, 0x6f, 0x41, 0x5c, 0x0f, 0x21, 0xc8, 0x3b, 0xc7, 0xed,
+	0x56, 0x5d, 0xd8, 0x15, 0x2e, 0x94, 0x31, 0xfb, 0x46, 0x75, 0x28, 0xde, 0x25, 0x8e, 0x6b, 0xda,
+	0x56, 0x3d, 0xc7, 0xc8, 0xc1, 0x10, 0xed, 0x42, 0x65, 0x6e, 0xcf, 0xcc, 0xf1, 0xc9, 0x0d, 0xc7,
+	0x5e, 0xcc, 0xeb, 0x22, 0x9b, 0x8d, 0x93, 0x10, 0x86, 0xf2, 0xc1, 0xc2, 0x9c, 0x4d, 0xda, 0xd6,
+	0xa1, 0x5d, 0xcf, 0xef, 0x8a, 0x17, 0x2a, 0x17, 0x2f, 0x35, 0x99, 0xbe, 0xcd, 0xfb, 0x6b, 0xd2,
+	0xbc, 0x16, 0xb0, 0x69, 0x96, 0xe7, 0x9c, 0xe0, 0x48, 0x0c, 0x3a, 0x03, 0x1b, 0x63, 0xdb, 0x3a,
+	0x34, 0xa7, 0xf5, 0x02, 0x5b, 0x90, 0x8f, 0xd0, 0x3b, 0x50, 0x21, 0xf7, 0x3c, 0xc7, 0x50, 0xfd,
+	0xc9, 0x0d, 0xb6, 0xda, 0xcb, 0xeb, 0xad, 0xa6, 0x45, 0x8c, 0xfe, 0x7a, 0x71, 0x51, 0x8d, 0xab,
+	0x50, 0x4d, 0xaa, 0x83, 0x24, 0x10, 0x8f, 0xc8, 0x09, 0x37, 0x13, 0xfd, 0x44, 0xa7, 0xa0, 0x70,
+	0xd7, 0x98, 0x2d, 0x08, 0xb7, 0x91, 0x3f, 0xb8, 0x9c, 0x7b, 0x55, 0x68, 0xbc, 0x06, 0xd2, 0xb2,
+	0xf8, 0x87, 0xe1, 0x97, 0x3f, 0x0d, 0x4f, 0xaf, 0xd4, 0xde, 0x9d, 0xdb, 0x96, 0x4b, 0xe4, 0x0f,
+	0x04, 0xd8, 0x51, 0x66, 0x33, 0x7b, 0x6c, 0x78, 0xa6, 0x6d, 0x05, 0xce, 0xbc, 0x00, 0x79, 0xc3,
+	0x3d, 0x72, 0xeb, 0x02, 0xb3, 0xc4, 0x29, 0x6e, 0x89, 0x08, 0xa7, 0xb8, 0x47, 0x98, 0x21, 0xd0,
+	0x55, 0x28, 0x39, 0x64, 0x46, 0x0c, 0x97, 0xb8, 0x6c, 0xfd, 0xca, 0xc5, 0xdd, 0x14, 0x1a, 0x73,
+	0x00, 0x97, 0x8e, 0x43, 0x8e, 0x30, 0x68, 0xc4, 0x28, 0x68, 0xe4, 0x0f, 0x05, 0x40, 0xca, 0x7c,
+	0x3e, 0x33, 0x93, 0x2a, 0x35, 0x41, 0xb4, 0xc8, 0xfb, 0x5c, 0xa3, 0xb3, 0xc1, 0x1a, 0x93, 0x49,
+	0x1a, 0x8a, 0x29, 0x10, 0xbd, 0x02, 0x1b, 0x0e, 0x39, 0xb6, 0xef, 0x52, 0xb3, 0x50, 0x96, 0xa7,
+	0x43, 0x77, 0x52, 0x62, 0x06, 0x17, 0x87, 0x67, 0xea, 0xf4, 0x06, 0x54, 0xba, 0xf6, 0x84, 0x04,
+	0xba, 0x9c, 0x83, 0x82, 0x65, 0x4f, 0x48, 0x60, 0x9f, 0x6d, 0x2e, 0x9a, 0x42, 0xa8, 0xa3, 0xb1,
+	0x3f, 0x1b, 0x4a, 0xca, 0xc5, 0x24, 0xfd, 0x8d, 0xee, 0x2e, 0x66, 0x19, 0xdf, 0x0d, 0xe8, 0x33,
+	0xf1, 0xdd, 0xed, 0xa4, 0x2d, 0xc8, 0xb6, 0x74, 0x29, 0xb4, 0xf5, 0x84, 0x6f, 0xaa, 0xbe, 0xca,
+	0xd6, 0xa1, 0x8d, 0x27, 0xe8, 0x75, 0xd8, 0x0c, 0xbe, 0x15, 0xea, 0x53, 0x91, 0x71, 0x7e, 0x2a,
+	0xd3, 0xa7, 0x9c, 0x39, 0xc1, 0x80, 0x5e, 0xa5, 0xcb, 0xbe, 0x4b, 0xc6, 0x1e, 0x99, 0xf0, 0x83,
+	0x78, 0x36, 0xb4, 0xa5, 0x4f, 0x4e, 0x0a, 0x09, 0xd1, 0xf2, 0xcf, 0x04, 0xa8, 0x25, 0x2c, 0xcd,
+	0x77, 0xfb, 0x72, 0x4c, 0xa2, 0xbf, 0xe5, 0xc6, 0xb2, 0xc4, 0x18, 0x57, 0x88, 0xa5, 0x7c, 0xc6,
+	0x78, 0x4c, 0xe6, 0x5e, 0x68, 0x80, 0x80, 0x4f, 0xe1, 0xe4, 0x04, 0x5f, 0x80, 0x45, 0x2f, 0x41,
+	0x71, 0x31, 0x9f, 0x18, 0x94, 0xcd, 0xdf, 0xfd, 0x13, 0x9c, 0x6d, 0xe8, 0x53, 0xe3, 0x5c, 0x01,
+	0x52, 0x9e, 0xc3, 0xa6, 0xef, 0x73, 0xae, 0xf4, 0x5e, 0x4a, 0xe9, 0xda, 0x92, 0xd2, 0x0c, 0x1e,
+	0x69, 0xbb, 0x97, 0xd2, 0xb6, 0xb6, 0xa4, 0xad, 0xcf, 0x10, 0x80, 0xe4, 0xef, 0x0b, 0x80, 0xd2,
+	0x1a, 0xa1, 0x67, 0x60, 0xcb, 0x88, 0x86, 0x61, 0x8a, 0x4d, 0x12, 0x69, 0x16, 0x70, 0x3d, 0xc3,
+	0x0b, 0xb3, 0x00, 0x1b, 0xa0, 0xcb, 0x50, 0x67, 0x1f, 0xba, 0x63, 0x58, 0xae, 0x49, 0xa1, 0xba,
+	0x79, 0x4c, 0x5c, 0xcf, 0x38, 0xf6, 0x93, 0xae, 0x88, 0x57, 0xce, 0xd3, 0xec, 0x7d, 0x4c, 0x5c,
+	0xd7, 0x98, 0x92, 0x7a, 0xde, 0xcf, 0xde, 0x7c, 0x28, 0x0f, 0xa0, 0x96, 0xe1, 0xa8, 0x35, 0x15,
+	0x3d, 0x43, 0x0f, 0xa6, 0xe1, 0x86, 0x35, 0x81, 0x8f, 0xe4, 0x2b, 0x50, 0xcb, 0xf0, 0xe2, 0x7a,
+	0x42, 0xe5, 0xd7, 0x60, 0x33, 0xee, 0x05, 0xba, 0x08, 0x3d, 0x83, 0x21, 0x9c, 0x8f, 0x56, 0x2e,
+	0x7e, 0x1e, 0x36, 0xe3, 0x4e, 0x59, 0xc5, 0x2f, 0x7f, 0x5b, 0x80, 0x52, 0x90, 0x4a, 0xd1, 0x55,
+	0x28, 0x3b, 0xfc, 0x3b, 0x48, 0x05, 0x4f, 0x85, 0x21, 0xe1, 0xd3, 0xc3, 0x0f, 0x97, 0x17, 0xa3,
+	0x90, 0xa1, 0xd1, 0x81, 0x6a, 0x72, 0x32, 0x23, 0xb5, 0x9f, 0x8b, 0xa7, 0xf6, 0x28, 0xd1, 0xbc,
+	0xb9, 0x30, 0x2c, 0xcf, 0xf4, 0x4e, 0xe2, 0xb9, 0x7e, 0x17, 0x4a, 0x01, 0x39, 0xaa, 0x08, 0x02,
+	0x73, 0xb1, 0x3f, 0x90, 0xff, 0x92, 0x87, 0xad, 0xc4, 0x49, 0x65, 0xb6, 0x0d, 0x09, 0xb7, 0xc2,
+	0xa5, 0x93, 0xc4, 0xb4, 0x07, 0x72, 0x59, 0x6e, 0x7d, 0x06, 0xb6, 0xe6, 0x86, 0xe3, 0xb1, 0x18,
+	0xea, 0x1a, 0xc7, 0x84, 0xe7, 0xcf, 0x24, 0x11, 0xbd, 0x08, 0x95, 0xc0, 0x02, 0x8a, 0x7b, 0xc4,
+	0xe2, 0x2a, 0xda, 0x56, 0x60, 0x0e, 0x1c, 0xc7, 0xa0, 0xf3, 0x50, 0x3d, 0x36, 0xee, 0x45, 0x8a,
+	0xbb, 0xac, 0x78, 0x17, 0xf0, 0x12, 0x15, 0x35, 0xa0, 0x34, 0x77, 0x4c, 0xdb, 0x31, 0xbd, 0x93,
+	0xfa, 0x06, 0x43, 0x84, 0x63, 0x74, 0x0d, 0xce, 0x92, 0x7b, 0x64, 0xbc, 0x08, 0x02, 0xdc, 0x5e,
+	0x78, 0x1d, 0x73, 0x36, 0x33, 0x07, 0x64, 0x6c, 0x5b, 0x13, 0xb7, 0x5e, 0x64, 0x76, 0xba, 0x2f,
+	0x06, 0x5d, 0x84, 0xbc, 0x67, 0x4c, 0xdd, 0x7a, 0x29, 0xe1, 0xe8, 0x84, 0x41, 0x9b, 0xba, 0x31,
+	0xe5, 0x8e, 0x66, 0x58, 0x6a, 0x14, 0xcf, 0x70, 0x8f, 0x58, 0x47, 0xc3, 0x8c, 0x52, 0xf6, 0x8d,
+	0x92, 0x20, 0xb2, 0x66, 0x68, 0x66, 0x8c, 0xc9, 0x1d, 0x7b, 0x36, 0x21, 0x4e, 0x1d, 0x76, 0x85,
+	0x0b, 0x25, 0x1c, 0x27, 0xa1, 0xa7, 0x00, 0x7a, 0x8e, 0x39, 0x35, 0x2d, 0xc3, 0xb3, 0x9d, 0x7a,
+	0x85, 0x01, 0x62, 0x14, 0xa4, 0x82, 0x34, 0x77, 0x08, 0x39, 0x9e, 0x53, 0x45, 0xfa, 0xac, 0x8b,
+	0xaa, 0x6f, 0x32, 0xdb, 0x3e, 0xce, 0xf5, 0xec, 0x2f, 0x4d, 0xe3, 0x14, 0x43, 0xe3, 0x15, 0x28,
+	0x87, 0xfa, 0x3f, 0x54, 0x9b, 0x31, 0x03, 0x69, 0x59, 0x3c, 0x7a, 0x16, 0x24, 0x1a, 0x45, 0xef,
+	0xf3, 0x89, 0x01, 0x99, 0x1d, 0x32, 0x61, 0x25, 0x9c, 0xa2, 0xa3, 0xcf, 0xc2, 0x4e, 0x9c, 0xd6,
+	0xf3, 0xee, 0x10, 0x87, 0xad, 0x52, 0xc2, 0xe9, 0x09, 0xf9, 0x4f, 0x22, 0x9c, 0xce, 0xac, 0xfb,
+	0x6b, 0xe6, 0x9f, 0xb3, 0x50, 0x7e, 0x6f, 0x41, 0x16, 0x84, 0xf9, 0xc3, 0xdf, 0x4b, 0x44, 0x58,
+	0x33, 0x8c, 0x9f, 0x07, 0x71, 0x31, 0x35, 0x79, 0xf8, 0x06, 0xa5, 0x74, 0xe8, 0x12, 0x87, 0x39,
+	0x95, 0xf6, 0x00, 0xce, 0x31, 0x2f, 0xdc, 0x8b, 0xa9, 0x89, 0x2e, 0xf3, 0xd0, 0x29, 0xb0, 0xd0,
+	0x39, 0x7f, 0xbf, 0xe6, 0x25, 0x15, 0x42, 0x0f, 0x0a, 0xdd, 0x8d, 0x35, 0x42, 0xf7, 0x15, 0xa8,
+	0xc6, 0xa2, 0x89, 0x1e, 0xbc, 0x62, 0xf6, 0xc1, 0x5b, 0x82, 0xa1, 0x17, 0xa0, 0x36, 0x35, 0xac,
+	0xe9, 0xc0, 0xbf, 0x44, 0x98, 0xd6, 0x74, 0xe0, 0x9d, 0xcc, 0x48, 0xbd, 0xc4, 0x6c, 0x92, 0x35,
+	0xf5, 0xdf, 0x07, 0xd1, 0x21, 0xd4, 0x57, 0xb5, 0x66, 0x6b, 0x3a, 0x36, 0xe5, 0xba, 0x5c, 0x86,
+	0xeb, 0xe4, 0x6b, 0x70, 0x2a, 0xcb, 0x51, 0xb4, 0x59, 0x5b, 0xb8, 0xc4, 0x09, 0xee, 0x2f, 0xf4,
+	0x9b, 0x56, 0x81, 0x29, 0xc5, 0xb9, 0xac, 0x7e, 0x97, 0x31, 0x1f, 0xc9, 0x7f, 0x17, 0x01, 0xa2,
+	0x83, 0xbf, 0x66, 0x1a, 0xed, 0x40, 0x35, 0x22, 0x50, 0x1b, 0xf1, 0xa6, 0xe0, 0x5c, 0x2a, 0x93,
+	0xc4, 0x3e, 0xa3, 0x68, 0x58, 0x62, 0xa6, 0xfa, 0x0e, 0x87, 0x51, 0x9b, 0x4a, 0xbf, 0xd1, 0x15,
+	0x90, 0x82, 0xcc, 0xd9, 0x27, 0x0e, 0x93, 0xc2, 0x92, 0x65, 0x86, 0xa7, 0x53, 0xc0, 0xfb, 0xe6,
+	0xcf, 0xa8, 0x1c, 0x96, 0x12, 0xe5, 0x34, 0xe5, 0x98, 0xf2, 0x5a, 0x8e, 0x81, 0xac, 0x33, 0x95,
+	0xca, 0x95, 0x95, 0x35, 0x72, 0xe5, 0x66, 0x2a, 0x57, 0x36, 0x14, 0xa8, 0x65, 0xd8, 0xef, 0x61,
+	0x62, 0xf1, 0x66, 0xbe, 0x54, 0x94, 0x4a, 0xb1, 0xac, 0x20, 0xff, 0x5c, 0x80, 0x27, 0x56, 0xde,
+	0x67, 0xd0, 0x3e, 0x9c, 0x8a, 0x9c, 0xe3, 0xea, 0x36, 0x9f, 0xe7, 0x2d, 0xc1, 0xea, 0x1e, 0x3d,
+	0x93, 0x0b, 0x0d, 0xe1, 0x71, 0x23, 0x5e, 0x54, 0x62, 0x02, 0x73, 0x0f, 0x6e, 0xdd, 0x57, 0xf1,
+	0xca, 0x9f, 0x2c, 0x5d, 0xf4, 0xfc, 0xc5, 0x52, 0xae, 0x11, 0x56, 0xb8, 0x66, 0x8d, 0x0e, 0x20,
+	0x2b, 0x22, 0x3f, 0x0f, 0xdb, 0x1e, 0x71, 0x8e, 0x69, 0x99, 0xa2, 0xde, 0x38, 0x99, 0xfb, 0xbd,
+	0x64, 0xf5, 0xe2, 0x19, 0xbe, 0x09, 0x3d, 0x39, 0x8b, 0x97, 0xe1, 0xf1, 0x2e, 0xb4, 0x90, 0xe8,
+	0x42, 0xd3, 0xc7, 0x6e, 0x23, 0xe3, 0xd8, 0xc9, 0x7f, 0x15, 0xe0, 0x54, 0x96, 0xa5, 0x1e, 0xe9,
+	0xd6, 0x53, 0xaa, 0x88, 0x59, 0x19, 0xe0, 0xff, 0x68, 0x0c, 0xf9, 0x3b, 0x79, 0x28, 0x05, 0xf7,
+	0xcf, 0x95, 0xdd, 0xef, 0x25, 0xd8, 0x30, 0xc6, 0x5e, 0xf0, 0x1c, 0x53, 0x0d, 0xef, 0x71, 0x01,
+	0x63, 0x53, 0x61, 0xb3, 0xd7, 0x1d, 0xfb, 0x18, 0x77, 0x30, 0xc7, 0xa2, 0xd7, 0x01, 0x0c, 0xcf,
+	0x73, 0xcc, 0x83, 0x85, 0x47, 0x82, 0xeb, 0xe3, 0xd3, 0x29, 0xce, 0x10, 0xe1, 0xa7, 0xab, 0x18,
+	0x0b, 0x52, 0xa0, 0xc6, 0x9f, 0xa1, 0x8c, 0x83, 0x19, 0x09, 0x52, 0xd0, 0xaa, 0xe6, 0x2f, 0x0b,
+	0x4b, 0x33, 0x9b, 0x3d, 0x1e, 0x2f, 0xe6, 0x26, 0x99, 0x84, 0xfc, 0xab, 0x32, 0xdb, 0x32, 0x10,
+	0xa9, 0x50, 0x23, 0xf7, 0x4c, 0xd7, 0x33, 0xad, 0x69, 0xbc, 0x8d, 0xdc, 0x58, 0x75, 0xd9, 0xce,
+	0x42, 0x37, 0x3e, 0x07, 0xdb, 0x4b, 0x7b, 0x7c, 0xa8, 0xf2, 0xf6, 0x25, 0x7a, 0xc1, 0x88, 0x8c,
+	0x8b, 0x1a, 0x70, 0x66, 0xd8, 0xbd, 0xd5, 0xed, 0xbd, 0xdd, 0x1d, 0x29, 0xaa, 0xde, 0xee, 0x75,
+	0x47, 0xd7, 0x71, 0xaf, 0x33, 0xc2, 0x1d, 0xe9, 0x31, 0x04, 0xb0, 0xa1, 0x62, 0x4d, 0xd1, 0x35,
+	0x49, 0xa0, 0xdf, 0xc3, 0x7e, 0x8b, 0x7e, 0xe7, 0x50, 0x15, 0xa0, 0x85, 0x95, 0x76, 0x77, 0xd4,
+	0xed, 0xb5, 0x34, 0x49, 0x44, 0xdb, 0x50, 0x69, 0x69, 0x6a, 0xaf, 0xd3, 0x1e, 0x0c, 0xda, 0xbd,
+	0xae, 0x94, 0x47, 0x75, 0x38, 0xe5, 0x03, 0xf4, 0xde, 0x68, 0xa0, 0xbe, 0xa1, 0xb5, 0x86, 0xfb,
+	0xca, 0xb5, 0x7d, 0x4d, 0x2a, 0xc8, 0x5f, 0x84, 0xd3, 0x99, 0x97, 0xf5, 0x47, 0x7a, 0x05, 0x88,
+	0x2e, 0x57, 0x62, 0xe2, 0x72, 0xf5, 0x2e, 0x54, 0xfb, 0x0e, 0x99, 0x50, 0x20, 0x71, 0x15, 0xc7,
+	0xef, 0x8b, 0xd7, 0x58, 0x35, 0x0a, 0xe3, 0x5c, 0x22, 0x8c, 0x1b, 0x50, 0xe2, 0x40, 0xbf, 0x3d,
+	0x2b, 0xe1, 0x70, 0x2c, 0x7f, 0x24, 0x40, 0x3d, 0xd6, 0x8c, 0x3e, 0xca, 0x65, 0x2f, 0xc1, 0x69,
+	0xde, 0x33, 0x2b, 0x71, 0xbc, 0x7f, 0x24, 0xca, 0x38, 0x7b, 0x92, 0xb6, 0xee, 0xae, 0x67, 0x38,
+	0x5e, 0xdb, 0x9a, 0x90, 0x7b, 0x2c, 0xe6, 0x0b, 0x38, 0x46, 0x91, 0xbb, 0x70, 0x36, 0x4b, 0xdf,
+	0xf0, 0xd9, 0xa1, 0x0e, 0x45, 0x77, 0x31, 0x1e, 0x13, 0xd7, 0xe5, 0xfd, 0x73, 0x30, 0xa4, 0xc1,
+	0x66, 0x32, 0xa1, 0x39, 0x26, 0xd4, 0x1f, 0xc8, 0x1f, 0xe7, 0xe0, 0x9c, 0xff, 0x88, 0xa0, 0xda,
+	0x96, 0x67, 0x98, 0x16, 0x71, 0xe2, 0x3d, 0x9a, 0xe1, 0x85, 0xaf, 0x58, 0xe7, 0xa1, 0xca, 0xfd,
+	0xe7, 0x24, 0xda, 0xaa, 0x25, 0x6a, 0xda, 0x6a, 0xb9, 0x2c, 0xab, 0xe1, 0xe0, 0xfd, 0x41, 0x64,
+	0xa9, 0xe5, 0x6a, 0xe2, 0x85, 0xe5, 0x01, 0xaa, 0x34, 0x97, 0xc9, 0xfc, 0xf5, 0x22, 0x0a, 0xa8,
+	0x7c, 0x22, 0xa0, 0x08, 0x6c, 0x2f, 0x71, 0xa0, 0xb3, 0x50, 0x0f, 0xce, 0x13, 0x8f, 0xfc, 0x76,
+	0xf7, 0xc6, 0x68, 0xa0, 0xd3, 0x93, 0xf3, 0x18, 0xaa, 0x40, 0x71, 0x70, 0xab, 0xdd, 0xef, 0x6b,
+	0x2d, 0x49, 0x40, 0x5b, 0x50, 0xe6, 0x10, 0xad, 0x25, 0xe5, 0xd0, 0x26, 0x94, 0xb0, 0x36, 0xd0,
+	0xf0, 0x5b, 0x5a, 0x4b, 0x12, 0xe9, 0x79, 0xbb, 0xae, 0xb4, 0xe9, 0x4c, 0x5e, 0xfe, 0x20, 0x07,
+	0x8d, 0x50, 0xff, 0x43, 0x73, 0xba, 0x70, 0x12, 0x5d, 0x69, 0xc6, 0xf3, 0xde, 0x1a, 0xef, 0xda,
+	0xd1, 0x1b, 0x74, 0x3e, 0xf1, 0x06, 0xad, 0x27, 0xdf, 0xa0, 0xfd, 0xab, 0xc2, 0xc5, 0x65, 0x2b,
+	0xa6, 0xb4, 0x78, 0xc0, 0xfb, 0xf3, 0xff, 0xf8, 0x82, 0x7c, 0x33, 0x5f, 0x12, 0xa4, 0x1c, 0x2e,
+	0xfa, 0x3a, 0xba, 0xf2, 0xf7, 0xca, 0x50, 0xd1, 0xee, 0x12, 0xcb, 0xc3, 0x64, 0x6c, 0x3b, 0x13,
+	0xf4, 0x1c, 0xe4, 0x3d, 0x5a, 0xc6, 0x04, 0xe6, 0xf3, 0xe0, 0xae, 0x19, 0x43, 0x34, 0x59, 0x1d,
+	0x63, 0x20, 0x7a, 0x6c, 0xed, 0x03, 0x9a, 0x83, 0x42, 0x9b, 0x85, 0xe3, 0xfb, 0x57, 0x79, 0x2f,
+	0x78, 0x92, 0xea, 0x1a, 0x96, 0xcd, 0x2f, 0x3c, 0x49, 0x22, 0xba, 0x01, 0xdb, 0x84, 0xae, 0xaa,
+	0xde, 0x31, 0xac, 0x29, 0x61, 0xa5, 0xb5, 0xc8, 0x74, 0x7a, 0x32, 0x43, 0xa7, 0x08, 0x84, 0x97,
+	0xb9, 0xd0, 0x2d, 0x90, 0x62, 0xa4, 0x16, 0xf1, 0x0c, 0x93, 0xf5, 0xbc, 0xd5, 0xb0, 0xe4, 0xa5,
+	0x25, 0x31, 0xd4, 0x0c, 0xa7, 0x18, 0x69, 0x34, 0x38, 0xe4, 0x90, 0x38, 0xc4, 0x1a, 0x93, 0xb0,
+	0x39, 0x8e, 0x93, 0xd0, 0x73, 0x50, 0x0a, 0x1a, 0x71, 0xd6, 0x15, 0x67, 0xd4, 0xb3, 0x10, 0x20,
+	0xf7, 0x20, 0xcf, 0x74, 0x8c, 0xc5, 0xba, 0xf6, 0x96, 0xd6, 0xd5, 0xb1, 0xa6, 0xf6, 0x70, 0x6b,
+	0xa4, 0xdf, 0xee, 0xf3, 0x58, 0xc7, 0xda, 0x9b, 0x43, 0x6d, 0xa0, 0x4b, 0x02, 0x2a, 0x82, 0xa8,
+	0xf4, 0xfb, 0x52, 0x0e, 0x95, 0x20, 0xcf, 0xab, 0x46, 0x19, 0x0a, 0x6f, 0x0e, 0xb5, 0xa1, 0x26,
+	0xe5, 0xe5, 0x4b, 0x00, 0xb1, 0xad, 0x33, 0x48, 0x97, 0x8a, 0x28, 0x82, 0x38, 0xd0, 0x02, 0xf6,
+	0x16, 0x3d, 0x24, 0x00, 0x1b, 0x58, 0xeb, 0xf4, 0xde, 0xd2, 0x24, 0x51, 0xfe, 0x72, 0x01, 0x36,
+	0xe3, 0x1b, 0x47, 0x12, 0x6c, 0xb6, 0x34, 0x5d, 0x69, 0xef, 0x0f, 0x46, 0x5c, 0x00, 0x82, 0x2a,
+	0xd7, 0x61, 0xa4, 0x2a, 0x5d, 0x55, 0xdb, 0x97, 0x26, 0x68, 0x07, 0xb6, 0x02, 0x9a, 0xb2, 0xbf,
+	0xdf, 0x53, 0x25, 0x82, 0x6a, 0xb0, 0x1d, 0x90, 0xf4, 0x76, 0x47, 0xeb, 0x0d, 0x75, 0xe9, 0x10,
+	0x55, 0xa1, 0xac, 0xf4, 0xfb, 0x1c, 0xf3, 0xb1, 0x80, 0x24, 0xa8, 0xd0, 0x71, 0xb0, 0xa7, 0x5f,
+	0x08, 0x68, 0x1b, 0xc0, 0xa7, 0xdc, 0xd4, 0x54, 0x5d, 0xfa, 0xa5, 0x80, 0x36, 0xa1, 0x48, 0x09,
+	0x5d, 0xed, 0x6d, 0xe9, 0x57, 0x02, 0xda, 0x81, 0x4d, 0x26, 0x40, 0x55, 0xb5, 0xbe, 0xae, 0xb5,
+	0xa4, 0x5f, 0x87, 0xa4, 0x81, 0xae, 0x60, 0xbd, 0xdd, 0xbd, 0x21, 0xfd, 0x26, 0x12, 0x3b, 0xec,
+	0x76, 0x29, 0xe5, 0xb7, 0x02, 0xaa, 0x41, 0x95, 0x52, 0xd4, 0x5e, 0xa7, 0xbf, 0xaf, 0x31, 0xd8,
+	0xef, 0x04, 0x84, 0x60, 0x2b, 0x46, 0xd4, 0x5a, 0xd2, 0xef, 0x43, 0x56, 0x9a, 0x27, 0x28, 0xea,
+	0x0f, 0xa1, 0x46, 0x3c, 0x73, 0xfc, 0x51, 0x40, 0xa7, 0x41, 0xa2, 0xe6, 0x1e, 0xc5, 0xeb, 0xf3,
+	0x0f, 0x72, 0x14, 0xc7, 0xc8, 0x58, 0x53, 0x5a, 0xb7, 0xa5, 0x1f, 0xe6, 0x42, 0x5c, 0xbc, 0x5a,
+	0x7f, 0x14, 0xe1, 0x7c, 0x23, 0xfc, 0x28, 0x47, 0xd5, 0x60, 0x04, 0x55, 0xe9, 0x2b, 0x6a, 0x5b,
+	0xbf, 0x2d, 0xfd, 0x38, 0xa2, 0xf5, 0x54, 0x75, 0xd8, 0x6f, 0x6b, 0x2d, 0xe9, 0x27, 0x39, 0xba,
+	0x51, 0xe6, 0xdc, 0x91, 0xda, 0xeb, 0x5e, 0x6f, 0xdf, 0x90, 0xbe, 0x2a, 0x52, 0x98, 0x4f, 0x6a,
+	0xdd, 0xee, 0x2a, 0x9d, 0xb6, 0x2a, 0x7d, 0x48, 0x3b, 0x07, 0xf0, 0x69, 0x2c, 0x66, 0xbe, 0x26,
+	0x52, 0xa3, 0xfb, 0x84, 0x8e, 0xf2, 0x8e, 0xf4, 0x75, 0x91, 0xea, 0xe5, 0x8f, 0x6f, 0x0c, 0x15,
+	0xac, 0x74, 0x75, 0x4d, 0x6b, 0x49, 0xdf, 0x88, 0xc1, 0x68, 0x50, 0x7d, 0x53, 0xa4, 0x96, 0xe0,
+	0x63, 0xa6, 0xe8, 0xb7, 0x44, 0x66, 0x69, 0xfa, 0x1d, 0xf8, 0xfd, 0x1f, 0x4c, 0x01, 0x9f, 0xd4,
+	0xc7, 0x9a, 0xd6, 0xe9, 0xeb, 0xd2, 0x27, 0x31, 0x5a, 0xe0, 0xf7, 0x7f, 0x8a, 0xcc, 0xfe, 0x8c,
+	0x86, 0xb5, 0xfe, 0xbe, 0xa2, 0x6a, 0x2d, 0xe9, 0x5f, 0x22, 0x3a, 0x03, 0x3b, 0x3e, 0x91, 0x6e,
+	0xd5, 0x0f, 0xc1, 0x96, 0xf4, 0x6f, 0xf1, 0x66, 0xbe, 0x24, 0x4a, 0xf9, 0x9b, 0xf9, 0x52, 0x5e,
+	0x2a, 0xe0, 0x22, 0xbb, 0x96, 0xb7, 0x5b, 0x41, 0x7d, 0x78, 0xf6, 0x2b, 0x02, 0x6c, 0x2f, 0xf5,
+	0xd2, 0xf1, 0x43, 0xa3, 0x6b, 0xb8, 0xd3, 0xee, 0x2a, 0xac, 0xeb, 0xe2, 0x87, 0x66, 0x07, 0xb6,
+	0x06, 0x7a, 0x8f, 0x16, 0x88, 0xd1, 0xb5, 0xdb, 0xb4, 0x0b, 0x13, 0xe8, 0x39, 0x0a, 0x94, 0xcb,
+	0xd1, 0x76, 0x8d, 0x6b, 0xef, 0x23, 0x82, 0x02, 0x82, 0x25, 0x91, 0x76, 0x5d, 0x4c, 0xdf, 0x37,
+	0x7a, 0xfb, 0x2d, 0x0d, 0x47, 0xda, 0xe7, 0x2f, 0xfe, 0x39, 0x07, 0xe5, 0x41, 0xf0, 0x03, 0x16,
+	0xbd, 0x0b, 0x8f, 0xaf, 0xf8, 0x1b, 0x87, 0xce, 0xad, 0xf5, 0xaf, 0xb1, 0x71, 0xfe, 0x41, 0x30,
+	0xfe, 0x53, 0xef, 0x31, 0xd4, 0x01, 0xc9, 0xaf, 0x19, 0xb1, 0x67, 0x8a, 0xac, 0x8b, 0xa8, 0x2f,
+	0xf7, 0x89, 0x8c, 0x99, 0x40, 0xd4, 0x05, 0xe1, 0x05, 0x01, 0xf5, 0x61, 0x87, 0x8b, 0x8b, 0xbd,
+	0xcc, 0x87, 0x5c, 0xa9, 0x07, 0x9b, 0x46, 0x23, 0x6b, 0x2a, 0x21, 0xf1, 0x0a, 0x80, 0x2f, 0x91,
+	0x3d, 0xb7, 0xa3, 0xd8, 0x75, 0x22, 0x90, 0x51, 0x4b, 0xd0, 0xe2, 0xcc, 0x97, 0xaf, 0x40, 0xd9,
+	0x35, 0x47, 0x2e, 0x19, 0x3b, 0xc4, 0x43, 0x4f, 0x36, 0xfd, 0xdf, 0xd7, 0xcd, 0xe0, 0xf7, 0x75,
+	0xf3, 0xba, 0x49, 0x66, 0x93, 0xde, 0xdc, 0xef, 0xf2, 0xbf, 0x5b, 0xf2, 0x3b, 0x44, 0xd7, 0x1c,
+	0x30, 0xfc, 0xb5, 0xca, 0x17, 0xca, 0x33, 0xf3, 0x60, 0x6f, 0x6a, 0xef, 0xb9, 0xe6, 0xc1, 0x06,
+	0x63, 0x7a, 0xe9, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x88, 0xef, 0x9f, 0xaa, 0x31, 0x1f, 0x00,
+	0x00,
 }
diff --git a/scheduler-interface-spec.md b/scheduler-interface-spec.md
index a9285d0..84e9ff1 100644
--- a/scheduler-interface-spec.md
+++ b/scheduler-interface-spec.md
@@ -838,18 +838,74 @@
       QUEUE = 4;
    }
 
+   enum ChangeType {
+      NONE = 0;
+      SET = 1;
+      ADD = 2;
+      REMOVE = 3;
+   }
+
+   enum ChangeDetail {
+     DETAILS_NONE       = 0;
+
+     REQUEST_CANCEL     = 100;  // Request cancelled by the RM
+     REQUEST_ALLOC      = 101;  // Request allocated
+     REQUEST_TIMEOUT    = 102;  // Request cancelled due to timeout
+
+     APP_ALLOC          = 200;  // Allocation changed
+     APP_REQUEST        = 201;  // Request changed
+     APP_REJECT         = 202;  // Application rejected on create
+     APP_NEW            = 203;  // Application added with state new
+     APP_ACCEPTED       = 204;  // State change to accepted 
+     APP_STARTING       = 205;  // State change to starting
+     APP_RUNNING        = 206;  // State change to running
+     APP_COMPLETING     = 207;  // State change to completing
+     APP_COMPLETED      = 208;  // State change to completed
+     APP_FAILING        = 209;  // State change to failing
+     APP_FAILED         = 210;  // State change to failed
+
+     NODE_DECOMISSION   = 300;  // Node removal
+     NODE_READY         = 301;  // Node ready state change
+     NODE_SCHEDULABLE   = 302;  // Node schedulable state change (cordon)
+     NODE_ALLOC         = 303;  // Allocation changed
+     NODE_CAPACITY      = 304;  // Capacity changed
+     NODE_OCCUPIED      = 305;  // Occupied resource changed
+
+     QUEUE_CONFIG       = 400;  // Managed queue update or removal
+     QUEUE_DYNAMIC      = 401;  // Dynamic queue update or removal
+     QUEUE_TYPE         = 402;  // Queue type change
+     QUEUE_MAX          = 403;  // Max resource changed
+     QUEUE_GUARANTEED   = 404;  // Guaranteed resource changed
+     QUEUE_APP          = 405;  // Application changed
+     QUEUE_ALLOC        = 406;  // Allocation changed
+
+     ALLOC_CANCEL       = 500;  // Allocation cancelled by the RM
+     ALLOC_PREEMPT      = 501;  // Allocation preempted by the core
+     ALLOC_TIMEOUT      = 502;  // Allocation cancelled due to timeout
+     ALLOC_REPLACED     = 503;  // Allocation replacement (placeholder)
+     ALLOC_NODEREMOVED  = 504;  // Allocation cancelled, node removal
+   }
+
    // the type of the object associated with the event
    Type type = 1;
    // ID of the object associated with the event
    string objectID = 2;
-   // the group this object belongs to
-   // it specifies the application ID for allocations and the queue for applications
-   string groupID = 3;
-   // the reason of this event
-   string reason = 4;
    // the detailed message as string
    string message = 5;
    // timestamp of the event
    int64 timestampNano = 6;
+   // the type of the change
+   ChangeType eventChangeType = 7;
+   // details about the change
+   ChangeDetail eventChangeDetai = 8;
+   // the secondary object in the event (eg. allocation UUID, request ID)
+   string referenceID = 9;
+   // the resource value if the change involves setting/modifying a resource
+   Resource resource = 10;
+
+   reserved 3;
+   reserved "groupID";
+   reserved 4;
+   reserved "reason";
 }
 ```
diff --git a/si.proto b/si.proto
index 204c043..e9902b2 100644
--- a/si.proto
+++ b/si.proto
@@ -471,17 +471,73 @@
       QUEUE = 4;
    }
 
+   enum ChangeType {
+      NONE = 0;
+      SET = 1;
+      ADD = 2;
+      REMOVE = 3;
+   }
+
+   enum ChangeDetail {
+     DETAILS_NONE       = 0;
+
+     REQUEST_CANCEL     = 100;  // Request cancelled by the RM
+     REQUEST_ALLOC      = 101;  // Request allocated
+     REQUEST_TIMEOUT    = 102;  // Request cancelled due to timeout
+
+     APP_ALLOC          = 200;  // Allocation changed
+     APP_REQUEST        = 201;  // Request changed
+     APP_REJECT         = 202;  // Application rejected on create
+     APP_NEW            = 203;  // Application added with state new
+     APP_ACCEPTED       = 204;  // State change to accepted 
+     APP_STARTING       = 205;  // State change to starting
+     APP_RUNNING        = 206;  // State change to running
+     APP_COMPLETING     = 207;  // State change to completing
+     APP_COMPLETED      = 208;  // State change to completed
+     APP_FAILING        = 209;  // State change to failing
+     APP_FAILED         = 210;  // State change to failed
+
+     NODE_DECOMISSION   = 300;  // Node removal
+     NODE_READY         = 301;  // Node ready state change
+     NODE_SCHEDULABLE   = 302;  // Node schedulable state change (cordon)
+     NODE_ALLOC         = 303;  // Allocation changed
+     NODE_CAPACITY      = 304;  // Capacity changed
+     NODE_OCCUPIED      = 305;  // Occupied resource changed
+
+     QUEUE_CONFIG       = 400;  // Managed queue update or removal
+     QUEUE_DYNAMIC      = 401;  // Dynamic queue update or removal
+     QUEUE_TYPE         = 402;  // Queue type change
+     QUEUE_MAX          = 403;  // Max resource changed
+     QUEUE_GUARANTEED   = 404;  // Guaranteed resource changed
+     QUEUE_APP          = 405;  // Application changed
+     QUEUE_ALLOC        = 406;  // Allocation changed
+
+     ALLOC_CANCEL       = 500;  // Allocation cancelled by the RM
+     ALLOC_PREEMPT      = 501;  // Allocation preempted by the core
+     ALLOC_TIMEOUT      = 502;  // Allocation cancelled due to timeout
+     ALLOC_REPLACED     = 503;  // Allocation replacement (placeholder)
+     ALLOC_NODEREMOVED  = 504;  // Allocation cancelled, node removal
+   }
+
    // the type of the object associated with the event
    Type type = 1;
    // ID of the object associated with the event
    string objectID = 2;
-   // the group this object belongs to
-   // it specifies the application ID for allocations and the queue for applications
-   string groupID = 3;
-   // the reason of this event
-   string reason = 4;
    // the detailed message as string
    string message = 5;
    // timestamp of the event
    int64 timestampNano = 6;
+   // the type of the change
+   ChangeType eventChangeType = 7;
+   // details about the change
+   ChangeDetail eventChangeDetai = 8;
+   // the secondary object in the event (eg. allocation UUID, request ID)
+   string referenceID = 9;
+   // the resource value if the change involves setting/modifying a resource
+   Resource resource = 10;
+
+   reserved 3;
+   reserved "groupID";
+   reserved 4;
+   reserved "reason";
 }