diff --git a/process/agent.pb.go b/process/agent.pb.go index 3c45623b..50bbd9d0 100644 --- a/process/agent.pb.go +++ b/process/agent.pb.go @@ -69,6 +69,33 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package +// ContainerHostType is a enum that represents the type of host detected for container collection. +// Sometimes containers are running on host-less environment, we'll need additional information to identify them +// This will help with the host resolution when we resolve container payloads +type ContainerHostType int32 + +const ( + ContainerHostType_notSpecified ContainerHostType = 0 + ContainerHostType_fargateECS ContainerHostType = 1 + ContainerHostType_fargateEKS ContainerHostType = 2 +) + +var ContainerHostType_name = map[int32]string{ + 0: "notSpecified", + 1: "fargateECS", + 2: "fargateEKS", +} +var ContainerHostType_value = map[string]int32{ + "notSpecified": 0, + "fargateECS": 1, + "fargateEKS": 2, +} + +func (x ContainerHostType) String() string { + return proto.EnumName(ContainerHostType_name, int32(x)) +} +func (ContainerHostType) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{0} } + // status section in https://docs.docker.com/engine/api/v1.29/#tag/Container type ContainerState int32 @@ -104,7 +131,7 @@ var ContainerState_value = map[string]int32{ func (x ContainerState) String() string { return proto.EnumName(ContainerState_name, int32(x)) } -func (ContainerState) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{0} } +func (ContainerState) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{1} } // https://blog.couchbase.com/docker-health-check-keeping-containers-healthy/ // health can be: starting, healthy, unhealthy @@ -133,7 +160,7 @@ var ContainerHealth_value = map[string]int32{ func (x ContainerHealth) String() string { return proto.EnumName(ContainerHealth_name, int32(x)) } -func (ContainerHealth) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{1} } +func (ContainerHealth) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{2} } // Process state codes in http://wiki.preshweb.co.uk/doku.php?id=linux:psflags type ProcessState int32 @@ -173,7 +200,7 @@ var ProcessState_value = map[string]int32{ func (x ProcessState) String() string { return proto.EnumName(ProcessState_name, int32(x)) } -func (ProcessState) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{2} } +func (ProcessState) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{3} } type ConnectionType int32 @@ -194,7 +221,7 @@ var ConnectionType_value = map[string]int32{ func (x ConnectionType) String() string { return proto.EnumName(ConnectionType_name, int32(x)) } -func (ConnectionType) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{3} } +func (ConnectionType) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{4} } type ConnectionFamily int32 @@ -215,7 +242,7 @@ var ConnectionFamily_value = map[string]int32{ func (x ConnectionFamily) String() string { return proto.EnumName(ConnectionFamily_name, int32(x)) } -func (ConnectionFamily) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{4} } +func (ConnectionFamily) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{5} } type ConnectionDirection int32 @@ -245,7 +272,7 @@ var ConnectionDirection_value = map[string]int32{ func (x ConnectionDirection) String() string { return proto.EnumName(ConnectionDirection_name, int32(x)) } -func (ConnectionDirection) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{5} } +func (ConnectionDirection) EnumDescriptor() ([]byte, []int) { return fileDescriptorAgent, []int{6} } type ResCollector struct { Header *ResCollector_Header `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` @@ -293,9 +320,10 @@ type CollectorProc struct { GroupId int32 `protobuf:"varint,6,opt,name=groupId,proto3" json:"groupId,omitempty"` GroupSize int32 `protobuf:"varint,7,opt,name=groupSize,proto3" json:"groupSize,omitempty"` // Optional metadata fields - Kubernetes *datadog_agentpayload.KubeMetadataPayload `protobuf:"bytes,8,opt,name=kubernetes" json:"kubernetes,omitempty"` - Ecs *datadog_agentpayload.ECSMetadataPayload `protobuf:"bytes,9,opt,name=ecs" json:"ecs,omitempty"` - Containers []*Container `protobuf:"bytes,10,rep,name=containers" json:"containers,omitempty"` + Kubernetes *datadog_agentpayload.KubeMetadataPayload `protobuf:"bytes,8,opt,name=kubernetes" json:"kubernetes,omitempty"` + Ecs *datadog_agentpayload.ECSMetadataPayload `protobuf:"bytes,9,opt,name=ecs" json:"ecs,omitempty"` + Containers []*Container `protobuf:"bytes,10,rep,name=containers" json:"containers,omitempty"` + ContainerHostType ContainerHostType `protobuf:"varint,12,opt,name=containerHostType,proto3,enum=datadog.process_agent.ContainerHostType" json:"containerHostType,omitempty"` } func (m *CollectorProc) Reset() { *m = CollectorProc{} } @@ -359,9 +387,10 @@ type CollectorConnections struct { // Mapping of containerId to container data. Each `connection` has a containerId field which can be mapped here. ResolvedContainers map[string]*ContainerMetadata `protobuf:"bytes,8,rep,name=resolvedContainers" json:"resolvedContainers,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` // Mapping of processes running in each container - ContainerForPid map[int32]string `protobuf:"bytes,10,rep,name=containerForPid" json:"containerForPid,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - EncodedTags []byte `protobuf:"bytes,11,opt,name=encodedTags,proto3" json:"encodedTags,omitempty"` - EncodedDNS []byte `protobuf:"bytes,14,opt,name=encodedDNS,proto3" json:"encodedDNS,omitempty"` + ContainerForPid map[int32]string `protobuf:"bytes,10,rep,name=containerForPid" json:"containerForPid,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + EncodedTags []byte `protobuf:"bytes,11,opt,name=encodedTags,proto3" json:"encodedTags,omitempty"` + EncodedDNS []byte `protobuf:"bytes,14,opt,name=encodedDNS,proto3" json:"encodedDNS,omitempty"` + ContainerHostType ContainerHostType `protobuf:"varint,15,opt,name=containerHostType,proto3,enum=datadog.process_agent.ContainerHostType" json:"containerHostType,omitempty"` } func (m *CollectorConnections) Reset() { *m = CollectorConnections{} } @@ -401,13 +430,14 @@ type CollectorRealTime struct { HostName string `protobuf:"bytes,2,opt,name=hostName,proto3" json:"hostName,omitempty"` Stats []*ProcessStat `protobuf:"bytes,3,rep,name=stats" json:"stats,omitempty"` // Post-resolved fields - HostId int64 `protobuf:"varint,4,opt,name=hostId,proto3" json:"hostId,omitempty"` - OrgId int32 `protobuf:"varint,5,opt,name=orgId,proto3" json:"orgId,omitempty"` - GroupId int32 `protobuf:"varint,6,opt,name=groupId,proto3" json:"groupId,omitempty"` - GroupSize int32 `protobuf:"varint,7,opt,name=groupSize,proto3" json:"groupSize,omitempty"` - NumCpus int32 `protobuf:"varint,8,opt,name=numCpus,proto3" json:"numCpus,omitempty"` - TotalMemory int64 `protobuf:"varint,9,opt,name=totalMemory,proto3" json:"totalMemory,omitempty"` - ContainerStats []*ContainerStat `protobuf:"bytes,10,rep,name=containerStats" json:"containerStats,omitempty"` + HostId int64 `protobuf:"varint,4,opt,name=hostId,proto3" json:"hostId,omitempty"` + OrgId int32 `protobuf:"varint,5,opt,name=orgId,proto3" json:"orgId,omitempty"` + GroupId int32 `protobuf:"varint,6,opt,name=groupId,proto3" json:"groupId,omitempty"` + GroupSize int32 `protobuf:"varint,7,opt,name=groupSize,proto3" json:"groupSize,omitempty"` + NumCpus int32 `protobuf:"varint,8,opt,name=numCpus,proto3" json:"numCpus,omitempty"` + TotalMemory int64 `protobuf:"varint,9,opt,name=totalMemory,proto3" json:"totalMemory,omitempty"` + ContainerStats []*ContainerStat `protobuf:"bytes,10,rep,name=containerStats" json:"containerStats,omitempty"` + ContainerHostType ContainerHostType `protobuf:"varint,11,opt,name=containerHostType,proto3,enum=datadog.process_agent.ContainerHostType" json:"containerHostType,omitempty"` } func (m *CollectorRealTime) Reset() { *m = CollectorRealTime{} } @@ -440,7 +470,8 @@ type CollectorContainer struct { Kubernetes *datadog_agentpayload.KubeMetadataPayload `protobuf:"bytes,6,opt,name=kubernetes" json:"kubernetes,omitempty"` Ecs *datadog_agentpayload.ECSMetadataPayload `protobuf:"bytes,7,opt,name=ecs" json:"ecs,omitempty"` // Post-resolved fields - Host *Host `protobuf:"bytes,8,opt,name=host" json:"host,omitempty"` + Host *Host `protobuf:"bytes,8,opt,name=host" json:"host,omitempty"` + ContainerHostType ContainerHostType `protobuf:"varint,9,opt,name=containerHostType,proto3,enum=datadog.process_agent.ContainerHostType" json:"containerHostType,omitempty"` } func (m *CollectorContainer) Reset() { *m = CollectorContainer{} } @@ -490,9 +521,10 @@ type CollectorContainerRealTime struct { NumCpus int32 `protobuf:"varint,3,opt,name=numCpus,proto3" json:"numCpus,omitempty"` TotalMemory int64 `protobuf:"varint,4,opt,name=totalMemory,proto3" json:"totalMemory,omitempty"` // Post-resolved fields - HostId int64 `protobuf:"varint,5,opt,name=hostId,proto3" json:"hostId,omitempty"` - GroupId int32 `protobuf:"varint,6,opt,name=groupId,proto3" json:"groupId,omitempty"` - GroupSize int32 `protobuf:"varint,7,opt,name=groupSize,proto3" json:"groupSize,omitempty"` + HostId int64 `protobuf:"varint,5,opt,name=hostId,proto3" json:"hostId,omitempty"` + GroupId int32 `protobuf:"varint,6,opt,name=groupId,proto3" json:"groupId,omitempty"` + GroupSize int32 `protobuf:"varint,7,opt,name=groupSize,proto3" json:"groupSize,omitempty"` + ContainerHostType ContainerHostType `protobuf:"varint,8,opt,name=containerHostType,proto3,enum=datadog.process_agent.ContainerHostType" json:"containerHostType,omitempty"` } func (m *CollectorContainerRealTime) Reset() { *m = CollectorContainerRealTime{} } @@ -1336,6 +1368,7 @@ func init() { proto.RegisterType((*LabelSelectorRequirement)(nil), "datadog.process_agent.LabelSelectorRequirement") proto.RegisterType((*Pod)(nil), "datadog.process_agent.Pod") proto.RegisterType((*ContainerStatus)(nil), "datadog.process_agent.ContainerStatus") + proto.RegisterEnum("datadog.process_agent.ContainerHostType", ContainerHostType_name, ContainerHostType_value) proto.RegisterEnum("datadog.process_agent.ContainerState", ContainerState_name, ContainerState_value) proto.RegisterEnum("datadog.process_agent.ContainerHealth", ContainerHealth_name, ContainerHealth_value) proto.RegisterEnum("datadog.process_agent.ProcessState", ProcessState_name, ProcessState_value) @@ -1511,6 +1544,11 @@ func (m *CollectorProc) MarshalTo(data []byte) (int, error) { i = encodeVarintAgent(data, i, uint64(len(m.NetworkId))) i += copy(data[i:], m.NetworkId) } + if m.ContainerHostType != 0 { + data[i] = 0x60 + i++ + i = encodeVarintAgent(data, i, uint64(m.ContainerHostType)) + } return i, nil } @@ -1651,6 +1689,11 @@ func (m *CollectorConnections) MarshalTo(data []byte) (int, error) { i = encodeVarintAgent(data, i, uint64(len(m.EncodedDNS))) i += copy(data[i:], m.EncodedDNS) } + if m.ContainerHostType != 0 { + data[i] = 0x78 + i++ + i = encodeVarintAgent(data, i, uint64(m.ContainerHostType)) + } return i, nil } @@ -1729,6 +1772,11 @@ func (m *CollectorRealTime) MarshalTo(data []byte) (int, error) { i += n } } + if m.ContainerHostType != 0 { + data[i] = 0x58 + i++ + i = encodeVarintAgent(data, i, uint64(m.ContainerHostType)) + } return i, nil } @@ -1815,6 +1863,11 @@ func (m *CollectorContainer) MarshalTo(data []byte) (int, error) { } i += n12 } + if m.ContainerHostType != 0 { + data[i] = 0x48 + i++ + i = encodeVarintAgent(data, i, uint64(m.ContainerHostType)) + } if len(m.NetworkId) > 0 { data[i] = 0x5a i++ @@ -1882,6 +1935,11 @@ func (m *CollectorContainerRealTime) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintAgent(data, i, uint64(m.GroupSize)) } + if m.ContainerHostType != 0 { + data[i] = 0x40 + i++ + i = encodeVarintAgent(data, i, uint64(m.ContainerHostType)) + } return i, nil } @@ -4389,6 +4447,9 @@ func (m *CollectorProc) Size() (n int) { if l > 0 { n += 1 + l + sovAgent(uint64(l)) } + if m.ContainerHostType != 0 { + n += 1 + sovAgent(uint64(m.ContainerHostType)) + } return n } @@ -4460,6 +4521,9 @@ func (m *CollectorConnections) Size() (n int) { if l > 0 { n += 1 + l + sovAgent(uint64(l)) } + if m.ContainerHostType != 0 { + n += 1 + sovAgent(uint64(m.ContainerHostType)) + } return n } @@ -4500,6 +4564,9 @@ func (m *CollectorRealTime) Size() (n int) { n += 1 + l + sovAgent(uint64(l)) } } + if m.ContainerHostType != 0 { + n += 1 + sovAgent(uint64(m.ContainerHostType)) + } return n } @@ -4538,6 +4605,9 @@ func (m *CollectorContainer) Size() (n int) { l = m.Host.Size() n += 1 + l + sovAgent(uint64(l)) } + if m.ContainerHostType != 0 { + n += 1 + sovAgent(uint64(m.ContainerHostType)) + } l = len(m.NetworkId) if l > 0 { n += 1 + l + sovAgent(uint64(l)) @@ -4573,6 +4643,9 @@ func (m *CollectorContainerRealTime) Size() (n int) { if m.GroupSize != 0 { n += 1 + sovAgent(uint64(m.GroupSize)) } + if m.ContainerHostType != 0 { + n += 1 + sovAgent(uint64(m.ContainerHostType)) + } return n } @@ -6285,6 +6358,25 @@ func (m *CollectorProc) Unmarshal(data []byte) error { } m.NetworkId = string(data[iNdEx:postIndex]) iNdEx = postIndex + case 12: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerHostType", wireType) + } + m.ContainerHostType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + m.ContainerHostType |= (ContainerHostType(b) & 0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipAgent(data[iNdEx:]) @@ -6881,6 +6973,25 @@ func (m *CollectorConnections) Unmarshal(data []byte) error { m.EncodedDNS = []byte{} } iNdEx = postIndex + case 15: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerHostType", wireType) + } + m.ContainerHostType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + m.ContainerHostType |= (ContainerHostType(b) & 0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipAgent(data[iNdEx:]) @@ -7136,6 +7247,25 @@ func (m *CollectorRealTime) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerHostType", wireType) + } + m.ContainerHostType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + m.ContainerHostType |= (ContainerHostType(b) & 0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipAgent(data[iNdEx:]) @@ -7416,6 +7546,25 @@ func (m *CollectorContainer) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerHostType", wireType) + } + m.ContainerHostType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + m.ContainerHostType |= (ContainerHostType(b) & 0x7F) << shift + if b < 0x80 { + break + } + } case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NetworkId", wireType) @@ -7650,6 +7799,25 @@ func (m *CollectorContainerRealTime) Unmarshal(data []byte) error { break } } + case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerHostType", wireType) + } + m.ContainerHostType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + m.ContainerHostType |= (ContainerHostType(b) & 0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipAgent(data[iNdEx:]) @@ -15700,250 +15868,255 @@ var ( func init() { proto.RegisterFile("proto/process/agent.proto", fileDescriptorAgent) } var fileDescriptorAgent = []byte{ - // 3907 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x3b, 0x4d, 0x8f, 0x24, 0xc9, - 0x55, 0x53, 0x95, 0x59, 0x55, 0x59, 0xaf, 0xbb, 0xba, 0xb3, 0x63, 0x7a, 0x66, 0x6b, 0x7b, 0xd7, - 0xe3, 0xd9, 0x64, 0x59, 0x9a, 0xc1, 0xee, 0x59, 0x0f, 0x78, 0xd9, 0x5d, 0xc3, 0xd8, 0x9e, 0x6e, - 0x2f, 0xdb, 0xed, 0x9d, 0xd9, 0x56, 0xd4, 0xac, 0x17, 0x59, 0x42, 0x26, 0x3b, 0x33, 0xba, 0x3a, - 0x99, 0xac, 0xcc, 0x24, 0x3f, 0xba, 0xa7, 0x7c, 0x42, 0x42, 0xe2, 0xc0, 0x05, 0x1f, 0xe0, 0xc0, - 0x11, 0x21, 0x71, 0x01, 0x09, 0x71, 0x40, 0xfe, 0x0b, 0xc0, 0x89, 0x2b, 0x1c, 0x10, 0x5a, 0xc4, - 0x15, 0x21, 0xf1, 0x07, 0xd0, 0x7b, 0x11, 0x99, 0x19, 0x59, 0x9f, 0x3d, 0x6d, 0xcb, 0xda, 0x53, - 0xc5, 0x7b, 0xf1, 0x5e, 0x7c, 0xbc, 0x78, 0x5f, 0xf1, 0x22, 0x0b, 0x5e, 0x4f, 0xd2, 0x38, 0x8f, - 0x1f, 0x26, 0x69, 0xec, 0x89, 0x2c, 0x7b, 0xe8, 0x8e, 0x45, 0x94, 0x1f, 0x10, 0x8e, 0xdd, 0xf1, - 0xdd, 0xdc, 0xf5, 0xe3, 0xf1, 0x81, 0xea, 0xfc, 0x11, 0x75, 0xee, 0x3d, 0x19, 0x07, 0xf9, 0x45, - 0x71, 0x76, 0xe0, 0xc5, 0x93, 0x87, 0x47, 0x6e, 0xee, 0x1e, 0xc5, 0x63, 0xc9, 0xf6, 0xf5, 0xc4, - 0x9d, 0x86, 0xb1, 0xeb, 0x3f, 0x94, 0x43, 0x4e, 0x44, 0x9e, 0x06, 0x9e, 0x1a, 0xf2, 0x47, 0xaa, - 0x4f, 0x0e, 0xed, 0xfc, 0x4b, 0x0b, 0x36, 0xb9, 0xc8, 0x0e, 0xe3, 0x30, 0x14, 0x5e, 0x1e, 0xa7, - 0xec, 0x09, 0x74, 0x2f, 0x84, 0xeb, 0x8b, 0x74, 0xd8, 0xba, 0xdf, 0xda, 0xdf, 0x78, 0xf4, 0xe0, - 0x60, 0xe1, 0xe4, 0x07, 0x3a, 0xd3, 0xc1, 0xc7, 0xc4, 0xc1, 0x15, 0x27, 0x1b, 0x42, 0x6f, 0x22, - 0xb2, 0xcc, 0x1d, 0x8b, 0x61, 0xfb, 0x7e, 0x6b, 0xbf, 0xcf, 0x4b, 0x90, 0x3d, 0x86, 0x6e, 0x96, - 0xbb, 0x79, 0x91, 0x0d, 0x0d, 0x1a, 0xfd, 0x9d, 0x25, 0xa3, 0x57, 0x43, 0x8f, 0x88, 0x9a, 0x2b, - 0xae, 0xbd, 0x37, 0xa1, 0x2b, 0xe7, 0x62, 0x0c, 0xcc, 0x7c, 0x9a, 0x88, 0xa1, 0x79, 0xbf, 0xb5, - 0xdf, 0xe1, 0xd4, 0x76, 0xfe, 0xd7, 0x80, 0x41, 0xc5, 0x79, 0x9a, 0xc6, 0x1e, 0xdb, 0x03, 0xeb, - 0x22, 0xce, 0xf2, 0x67, 0xee, 0xa4, 0x5c, 0x4a, 0x05, 0xb3, 0xdf, 0x82, 0xbe, 0x9a, 0x54, 0xe0, - 0x72, 0x8c, 0xfd, 0x8d, 0x47, 0xf7, 0x96, 0x2c, 0xe7, 0x54, 0x42, 0xbc, 0x66, 0x60, 0x0f, 0xc1, - 0xc4, 0x91, 0x68, 0xfe, 0x8d, 0x47, 0x6f, 0x2c, 0x61, 0xfc, 0x38, 0xce, 0x72, 0x4e, 0x84, 0xec, - 0x9b, 0x60, 0x06, 0xd1, 0x79, 0x3c, 0xec, 0x10, 0xc3, 0x5b, 0x4b, 0x18, 0x46, 0xd3, 0x2c, 0x17, - 0x93, 0xe3, 0xe8, 0x3c, 0xe6, 0x44, 0x8e, 0xb2, 0x1c, 0xa7, 0x71, 0x91, 0x1c, 0xfb, 0xc3, 0x2e, - 0x6d, 0xb5, 0x04, 0xd9, 0x9b, 0xd0, 0xa7, 0xe6, 0x28, 0xf8, 0xb1, 0x18, 0xf6, 0xa8, 0xaf, 0x46, - 0xb0, 0x63, 0x80, 0x17, 0xc5, 0x99, 0x48, 0x23, 0x91, 0x8b, 0x6c, 0x68, 0xd1, 0xa4, 0xbf, 0x5a, - 0x4d, 0x4a, 0x93, 0x95, 0x9a, 0xf0, 0xfd, 0xe2, 0x4c, 0x3c, 0x15, 0xb9, 0x8b, 0x9d, 0xa7, 0x12, - 0xc7, 0x35, 0x66, 0xf6, 0x21, 0x18, 0xc2, 0xcb, 0x86, 0x7d, 0x1a, 0x63, 0x7f, 0xf1, 0x18, 0xdf, - 0x3b, 0x1c, 0xcd, 0x0e, 0x81, 0x4c, 0xec, 0x3b, 0x00, 0x5e, 0x1c, 0xe5, 0x6e, 0x10, 0x89, 0x34, - 0x1b, 0x02, 0x49, 0xf9, 0xfe, 0xd2, 0x43, 0x57, 0x84, 0x5c, 0xe3, 0xc1, 0x6d, 0x46, 0x22, 0xbf, - 0x8a, 0xd3, 0x17, 0xc7, 0xfe, 0x70, 0x83, 0xce, 0xb0, 0x46, 0x38, 0x7f, 0xde, 0x83, 0xdd, 0xea, - 0xc8, 0x0f, 0xe3, 0x28, 0x12, 0x5e, 0x1e, 0xc4, 0x51, 0xb6, 0xf2, 0xe4, 0x0f, 0x61, 0xc3, 0xab, - 0x49, 0xd5, 0xd9, 0xbf, 0xb5, 0x7c, 0x55, 0x8a, 0x92, 0xeb, 0x5c, 0xfa, 0xc1, 0x74, 0x56, 0x1c, - 0x4c, 0x77, 0xf6, 0x60, 0x7c, 0x18, 0xa4, 0x22, 0x8b, 0xc3, 0x4b, 0xe1, 0xa3, 0x76, 0x64, 0xc3, - 0x1e, 0x4d, 0xff, 0x78, 0x9d, 0x25, 0x68, 0x9b, 0x43, 0xe3, 0xab, 0x07, 0xf8, 0x5e, 0x94, 0xa7, - 0x53, 0xde, 0x1c, 0x94, 0x65, 0xc0, 0x4a, 0xc4, 0x61, 0x2d, 0x7f, 0x8b, 0xa6, 0x3a, 0xbc, 0xc9, - 0x54, 0xf5, 0x28, 0x72, 0xbe, 0x05, 0xc3, 0xb3, 0xbb, 0xd0, 0x45, 0x19, 0x1f, 0xfb, 0xa4, 0x2b, - 0x06, 0x57, 0x10, 0xfb, 0x03, 0xd8, 0xae, 0x0e, 0xf4, 0xa3, 0x38, 0x3d, 0x0d, 0x7c, 0xa5, 0x09, - 0xdf, 0x79, 0x95, 0x95, 0x1c, 0x36, 0x87, 0x90, 0xcb, 0x98, 0x1d, 0x98, 0xdd, 0x87, 0x0d, 0x11, - 0x79, 0xb1, 0x2f, 0xfc, 0xe7, 0xee, 0x38, 0x23, 0x85, 0xd9, 0xe4, 0x3a, 0xaa, 0xa9, 0x50, 0x9b, - 0x33, 0x0a, 0xc5, 0xee, 0x01, 0x28, 0xe2, 0xa3, 0x67, 0xa3, 0xe1, 0x16, 0xb1, 0x6b, 0x98, 0xbd, - 0xdf, 0x03, 0x36, 0x2f, 0x7d, 0x66, 0x83, 0xf1, 0x42, 0x4c, 0xc9, 0x65, 0x1a, 0x1c, 0x9b, 0xec, - 0x1b, 0xd0, 0xb9, 0x74, 0xc3, 0x42, 0x2a, 0xdf, 0x1a, 0x07, 0x21, 0x29, 0x3f, 0x6c, 0xbf, 0xdf, - 0xda, 0x8b, 0xe1, 0xb5, 0x25, 0x12, 0xd7, 0xe7, 0xe8, 0xcb, 0x39, 0x1e, 0x37, 0xe7, 0xd8, 0x5f, - 0x67, 0x57, 0xa5, 0x85, 0xea, 0x13, 0x3e, 0x41, 0xfb, 0x99, 0x17, 0xac, 0x3e, 0x5b, 0x47, 0xce, - 0xb6, 0xab, 0xcf, 0xd6, 0xd7, 0xc6, 0x38, 0x31, 0xad, 0x96, 0xdd, 0x3e, 0x31, 0x2d, 0xd3, 0xee, - 0x9c, 0x98, 0xd6, 0xc0, 0xde, 0x72, 0xfe, 0xad, 0x0d, 0x3b, 0xd5, 0x21, 0x72, 0xe1, 0x86, 0xcf, - 0x83, 0x89, 0x58, 0x69, 0x93, 0xef, 0x43, 0x07, 0x7d, 0x7c, 0x69, 0x8d, 0xce, 0x6a, 0x4f, 0x8c, - 0x61, 0x81, 0x4b, 0x06, 0x4d, 0xeb, 0xcc, 0x86, 0xd6, 0xed, 0x42, 0x27, 0x4e, 0xc7, 0x95, 0x79, - 0x4a, 0xe0, 0xc6, 0xfe, 0x74, 0x08, 0xbd, 0xa8, 0x98, 0x1c, 0x26, 0x85, 0x74, 0xa6, 0x1d, 0x5e, - 0x82, 0xa8, 0x71, 0x79, 0x9c, 0xbb, 0xe1, 0x53, 0x31, 0x89, 0xd3, 0xa9, 0x52, 0x7d, 0x1d, 0xc5, - 0x3e, 0x81, 0xad, 0x4a, 0x4d, 0x47, 0xb4, 0x49, 0xa9, 0xfe, 0x6f, 0xaf, 0x3b, 0x30, 0xda, 0xe6, - 0x0c, 0xaf, 0xf3, 0x53, 0x03, 0x98, 0x6e, 0x20, 0xb2, 0xaf, 0x21, 0xdc, 0xd6, 0x8c, 0x70, 0xcb, - 0xd8, 0xd3, 0x7e, 0xb5, 0xd8, 0xd3, 0x74, 0xde, 0xc6, 0x0d, 0x9c, 0xb7, 0x26, 0x6d, 0x73, 0x85, - 0xb4, 0x3b, 0xab, 0xa3, 0x57, 0xf7, 0xe7, 0x10, 0xbd, 0x7a, 0x37, 0x89, 0x5e, 0x65, 0x90, 0xb7, - 0xae, 0x1b, 0xe4, 0x57, 0x07, 0xab, 0x3f, 0x6a, 0xc3, 0xde, 0xfc, 0xc9, 0x2d, 0x34, 0x8f, 0xd9, - 0x13, 0xfc, 0xb0, 0x34, 0x8f, 0xf6, 0x2b, 0x68, 0x8e, 0x32, 0x10, 0x4d, 0x75, 0x8d, 0x95, 0xaa, - 0x6b, 0xce, 0xab, 0x6e, 0x6d, 0x5c, 0x9d, 0x86, 0x71, 0xdd, 0xd0, 0x8c, 0x9c, 0x77, 0x35, 0xdd, - 0xe5, 0xe2, 0x0f, 0x65, 0x7a, 0xb7, 0xca, 0x31, 0x38, 0x7f, 0xdc, 0x86, 0xcd, 0x3a, 0xa9, 0x8b, - 0xfd, 0x95, 0x62, 0xba, 0x0f, 0x1b, 0x5e, 0x58, 0x64, 0xb9, 0x48, 0xb5, 0xb1, 0x74, 0x14, 0x2e, - 0x4f, 0x81, 0xc7, 0x3e, 0x89, 0xa3, 0xcf, 0x6b, 0xc4, 0x8d, 0xf5, 0xf5, 0x00, 0xcc, 0x24, 0xf6, - 0x51, 0x53, 0xf1, 0x74, 0xf6, 0x96, 0x39, 0xaf, 0xd8, 0xe7, 0x44, 0x57, 0x29, 0x56, 0xef, 0x9a, - 0x8a, 0xe5, 0xfc, 0x4f, 0x0b, 0x6e, 0x6b, 0x82, 0x4b, 0xc2, 0xc0, 0x73, 0x47, 0x22, 0xff, 0x52, - 0x0a, 0xe3, 0x10, 0x36, 0x52, 0xb9, 0xc2, 0x4c, 0xe4, 0xa5, 0x4c, 0xde, 0x5a, 0x7a, 0x8f, 0x28, - 0xf7, 0xc2, 0x75, 0xae, 0xe6, 0x86, 0x8f, 0x44, 0x12, 0xc6, 0xd3, 0x89, 0x88, 0xbe, 0xb4, 0x1b, - 0xf6, 0xab, 0x15, 0xae, 0xdb, 0x70, 0xbd, 0x17, 0xae, 0x73, 0x39, 0x23, 0xd8, 0x9e, 0xb9, 0xf5, - 0xb0, 0xb7, 0x61, 0xe0, 0x7a, 0x79, 0x70, 0x29, 0x0e, 0xc3, 0x80, 0x46, 0x96, 0xd1, 0xb8, 0x89, - 0x44, 0x89, 0x04, 0x51, 0x2e, 0xd2, 0x4b, 0x37, 0xa4, 0x2d, 0x77, 0x78, 0x05, 0x3b, 0x7f, 0xdf, - 0x85, 0x9e, 0x0a, 0x99, 0x7a, 0x44, 0x1f, 0xc8, 0x88, 0x6e, 0x83, 0x91, 0x04, 0xbe, 0x62, 0xc2, - 0x66, 0xa5, 0x97, 0xc6, 0x75, 0x1d, 0xde, 0xfb, 0xd0, 0xf3, 0xe2, 0xc9, 0xc4, 0x8d, 0x7c, 0x75, - 0x13, 0xba, 0xb7, 0xd4, 0x33, 0x11, 0x15, 0x2f, 0xc9, 0xd9, 0x7b, 0x60, 0x16, 0x99, 0x48, 0xd5, - 0x7d, 0x68, 0x4d, 0xbc, 0xff, 0x2c, 0x13, 0x29, 0x27, 0x7a, 0xf6, 0x01, 0x74, 0x27, 0xd2, 0x5d, - 0xf5, 0x56, 0x46, 0x33, 0xe9, 0xc0, 0xc8, 0x0f, 0x2a, 0x06, 0xf6, 0x2e, 0x18, 0x5e, 0x52, 0x28, - 0x6f, 0xbe, 0x74, 0xa1, 0xa7, 0x9f, 0x11, 0x13, 0x92, 0x62, 0x36, 0xe8, 0xa5, 0xc2, 0xcd, 0x05, - 0x3a, 0x68, 0x15, 0xda, 0x35, 0x0c, 0x7b, 0x0c, 0xfd, 0x2a, 0xda, 0x0d, 0x81, 0xc6, 0x5d, 0x1f, - 0x20, 0x6b, 0x16, 0xd4, 0xd8, 0x38, 0x11, 0xd1, 0x47, 0xfe, 0x61, 0x5c, 0x44, 0x39, 0x45, 0x8c, - 0x0e, 0xd7, 0x51, 0xec, 0x03, 0xe9, 0xf8, 0x05, 0x65, 0xaa, 0x5b, 0x8f, 0x7e, 0x69, 0x7d, 0x5e, - 0x24, 0xa4, 0xdf, 0xc7, 0xa8, 0xdf, 0x0d, 0x62, 0xc4, 0x0c, 0x07, 0xb4, 0xb2, 0xaf, 0x2c, 0xe1, - 0x3d, 0xfe, 0x54, 0x4a, 0x49, 0x12, 0x93, 0x15, 0x95, 0x0b, 0x3c, 0xf6, 0x29, 0x05, 0xee, 0x73, - 0x1d, 0xc5, 0x1c, 0xd8, 0xac, 0xc0, 0xef, 0x8b, 0xe9, 0x70, 0x9b, 0x54, 0xaa, 0x81, 0x63, 0x8f, - 0x60, 0xf7, 0x32, 0x0e, 0x8b, 0x28, 0x77, 0xd3, 0xe9, 0x61, 0xfe, 0x72, 0x74, 0x15, 0xe4, 0xde, - 0x85, 0xc8, 0x86, 0xf6, 0xfd, 0xd6, 0xbe, 0xc9, 0x17, 0xf6, 0xb1, 0xf7, 0xe0, 0x6e, 0x10, 0x2d, - 0xe4, 0xda, 0x21, 0xae, 0x25, 0xbd, 0x68, 0xb7, 0x67, 0xd3, 0x5c, 0xe0, 0x52, 0x18, 0x25, 0xec, - 0x25, 0xc8, 0x1e, 0x80, 0x5d, 0xad, 0xea, 0x89, 0x22, 0xb9, 0x4d, 0x24, 0x73, 0xf8, 0x13, 0xd3, - 0xea, 0xda, 0x3d, 0xe7, 0x2f, 0x5b, 0xd0, 0x53, 0xba, 0xca, 0x18, 0x98, 0x6e, 0x3a, 0x46, 0xb3, - 0x33, 0xf6, 0xfb, 0x9c, 0xda, 0x68, 0x33, 0xde, 0x55, 0xe9, 0x3b, 0xb0, 0x89, 0x54, 0x69, 0x1c, - 0xcb, 0x4a, 0x40, 0x9f, 0x53, 0x1b, 0xc3, 0x66, 0x1c, 0x1d, 0x05, 0xd9, 0x0b, 0x52, 0x6f, 0x8b, - 0x2b, 0x08, 0x69, 0x13, 0x34, 0x39, 0x19, 0x33, 0xa9, 0x8d, 0xb4, 0x09, 0xf9, 0x12, 0x15, 0x2d, - 0x15, 0x84, 0x33, 0x89, 0x97, 0x82, 0xb4, 0xb5, 0xcf, 0xb1, 0xe9, 0xfc, 0x45, 0x0b, 0x36, 0x34, - 0x83, 0xc0, 0xd1, 0xa2, 0xda, 0x0f, 0x52, 0x1b, 0xb9, 0x8a, 0xda, 0xa6, 0x8b, 0xc0, 0x47, 0xcc, - 0x38, 0xf0, 0x55, 0xe8, 0xc7, 0x26, 0xf2, 0x09, 0x24, 0x52, 0xb5, 0x13, 0x6c, 0x13, 0x0e, 0xc9, - 0x3a, 0x0a, 0xa7, 0xe8, 0xb2, 0xa2, 0x5e, 0x6d, 0xa6, 0xe8, 0x32, 0xa4, 0xeb, 0x29, 0xdc, 0x38, - 0xf0, 0x9d, 0x4b, 0x18, 0x54, 0xda, 0xfd, 0x5d, 0xdf, 0x4f, 0xd9, 0x16, 0xb4, 0x83, 0x44, 0x2d, - 0xab, 0x1d, 0x24, 0xb4, 0xed, 0x38, 0xcd, 0xd5, 0xaa, 0xa8, 0xcd, 0xbe, 0x0b, 0x16, 0x95, 0xa0, - 0xbc, 0x38, 0xa4, 0xb5, 0x6d, 0x3d, 0xfa, 0xe5, 0xb5, 0x37, 0xf0, 0xe7, 0xd3, 0x44, 0xf0, 0x8a, - 0xcd, 0xf9, 0xbf, 0x2e, 0xf4, 0xeb, 0x04, 0xb8, 0xac, 0x08, 0x29, 0x69, 0x60, 0x9b, 0x16, 0xe2, - 0xab, 0x40, 0xd0, 0x96, 0xab, 0x27, 0x89, 0x19, 0x9a, 0xc4, 0x76, 0xa1, 0x13, 0x4c, 0xdc, 0xb1, - 0x50, 0x07, 0x28, 0x01, 0xf4, 0xaa, 0x5e, 0x52, 0x7c, 0x12, 0x4c, 0x82, 0x9c, 0x64, 0xd2, 0xe6, - 0x15, 0x8c, 0x16, 0x22, 0x3d, 0x8a, 0xec, 0xee, 0x92, 0x72, 0xea, 0x28, 0xf6, 0xad, 0xd2, 0x6a, - 0xad, 0x75, 0x3b, 0xab, 0xd3, 0xb5, 0xca, 0x6e, 0x1f, 0x53, 0x09, 0x2e, 0xcc, 0x2f, 0xc8, 0xe1, - 0x6c, 0xad, 0x28, 0x92, 0x29, 0xee, 0x8f, 0x89, 0x9a, 0x2b, 0x2e, 0x34, 0x07, 0xe9, 0xa2, 0x7c, - 0x72, 0x49, 0x06, 0x2f, 0x41, 0x52, 0xd5, 0xb3, 0x44, 0xde, 0x8a, 0xdb, 0x9c, 0xda, 0x88, 0xbb, - 0x42, 0xdc, 0xa6, 0xc4, 0x61, 0xbb, 0x0c, 0x15, 0x83, 0x3a, 0x54, 0xc8, 0xc4, 0x96, 0x7b, 0x97, - 0xfe, 0x69, 0x46, 0x2e, 0xa1, 0xcd, 0x6b, 0x84, 0xea, 0x1d, 0x89, 0x28, 0x3f, 0xcd, 0xc8, 0x1b, - 0xc8, 0x5e, 0x89, 0x40, 0x27, 0xaa, 0x48, 0x9f, 0x24, 0xd2, 0x01, 0xb4, 0xb9, 0x86, 0x51, 0xfd, - 0x48, 0x8c, 0xfd, 0x3b, 0x55, 0xbf, 0xc2, 0xe0, 0x7e, 0xd0, 0xf3, 0x9f, 0x7a, 0x39, 0x99, 0x77, - 0x9b, 0x97, 0x20, 0xce, 0x9b, 0xd1, 0xa5, 0x05, 0xfb, 0x6e, 0xcb, 0x79, 0x2b, 0x04, 0x1e, 0x21, - 0xa5, 0xb2, 0xd8, 0xb9, 0x2b, 0x8f, 0xb0, 0x84, 0xd1, 0xe8, 0x26, 0x62, 0xc2, 0xb3, 0x6c, 0x78, - 0x87, 0x4e, 0x4f, 0x41, 0xc8, 0x33, 0x11, 0x93, 0x43, 0xd7, 0xbb, 0x10, 0xc3, 0xbb, 0xd4, 0x53, - 0xc1, 0x55, 0x70, 0x7c, 0xed, 0xba, 0xc1, 0x71, 0x08, 0xbd, 0x2c, 0x77, 0x53, 0x3c, 0x88, 0xa1, - 0x3c, 0x08, 0x05, 0xea, 0x1e, 0xeb, 0xf5, 0xa6, 0xc7, 0x42, 0x2d, 0x76, 0xc7, 0xd9, 0x70, 0x4f, - 0xfa, 0x1c, 0x6c, 0xb3, 0x27, 0xd0, 0x77, 0x7d, 0x3f, 0x95, 0x95, 0xca, 0x37, 0xae, 0x77, 0x01, - 0x40, 0x3b, 0xe4, 0x35, 0x1b, 0xa5, 0xfa, 0x17, 0xa9, 0x70, 0x55, 0xa4, 0x79, 0x53, 0xea, 0xac, - 0x86, 0xaa, 0x29, 0xa4, 0x56, 0x7f, 0x45, 0xa7, 0x20, 0xd4, 0x89, 0x69, 0xf5, 0x6c, 0xcb, 0xf9, - 0xa9, 0x55, 0x79, 0x21, 0x8a, 0x17, 0x2a, 0x8b, 0x68, 0xd5, 0x59, 0x44, 0x33, 0x6a, 0xb6, 0xe7, - 0xa2, 0x66, 0x1d, 0xc2, 0x8d, 0x1b, 0x86, 0x70, 0xf3, 0xfa, 0x21, 0x1c, 0x4d, 0x3e, 0xf0, 0xca, - 0xac, 0x8d, 0xda, 0x28, 0x7e, 0xb9, 0xaf, 0x4c, 0xf9, 0xb1, 0x12, 0x9c, 0x0d, 0xc8, 0xd6, 0x7c, - 0x40, 0x56, 0xb6, 0xd1, 0xaf, 0x6d, 0x63, 0x26, 0x60, 0xc2, 0x7c, 0xc0, 0x7c, 0x3a, 0x53, 0x00, - 0x10, 0x64, 0x81, 0xd7, 0xf6, 0x0b, 0x33, 0xcc, 0xec, 0x77, 0x60, 0x33, 0xd1, 0xe2, 0xfd, 0xab, - 0xa4, 0x06, 0x0d, 0x46, 0x76, 0xaa, 0x15, 0xe6, 0xa4, 0x13, 0x21, 0xeb, 0xbd, 0xbe, 0xcb, 0x99, - 0x65, 0xc7, 0x94, 0xb5, 0x42, 0xf1, 0xb3, 0xca, 0xdc, 0x9b, 0xc8, 0x06, 0xd5, 0xe7, 0x67, 0x95, - 0xd1, 0x37, 0x91, 0x73, 0x69, 0x06, 0x5b, 0x90, 0x66, 0xd4, 0x39, 0xce, 0xed, 0x57, 0xc9, 0x71, - 0x0e, 0x80, 0x55, 0xc3, 0x3c, 0xab, 0xfc, 0x9a, 0x74, 0x12, 0x0b, 0x7a, 0x66, 0xe9, 0x95, 0xa7, - 0xbb, 0x33, 0x4f, 0xaf, 0x5c, 0xde, 0xbb, 0x70, 0x7b, 0x76, 0x14, 0xf4, 0x6d, 0x77, 0x89, 0x61, - 0x51, 0xd7, 0x2c, 0x47, 0xe9, 0x0d, 0x5f, 0x9b, 0xe7, 0x28, 0xdd, 0xe2, 0xb2, 0x0c, 0x6b, 0x78, - 0xa3, 0x0c, 0xeb, 0xf5, 0xeb, 0x66, 0x58, 0x7b, 0xeb, 0x33, 0xac, 0x37, 0x16, 0x67, 0x58, 0xce, - 0x9f, 0x76, 0xb4, 0x44, 0x81, 0xce, 0x41, 0xc6, 0xe7, 0x56, 0x15, 0x9f, 0x35, 0x57, 0xdf, 0x5e, - 0xe1, 0xea, 0x8d, 0x55, 0xae, 0xde, 0x9c, 0x71, 0xf5, 0xab, 0x22, 0x79, 0x1d, 0x06, 0xba, 0x4b, - 0xc3, 0x40, 0x6f, 0x26, 0x0c, 0xc8, 0x3e, 0x39, 0x9e, 0x55, 0xf5, 0xc9, 0xf1, 0xca, 0x00, 0xdb, - 0x5f, 0x10, 0x60, 0x41, 0x0b, 0xb0, 0x8d, 0x70, 0xba, 0xb1, 0x32, 0x9c, 0x6e, 0xae, 0x0e, 0xa7, - 0x83, 0x35, 0xe1, 0x74, 0x6b, 0x2e, 0x9c, 0x56, 0xb9, 0xc9, 0xf6, 0xcf, 0x94, 0x9b, 0xd8, 0x37, - 0xca, 0x4d, 0x94, 0xf7, 0xdc, 0xa9, 0xbd, 0xa7, 0x16, 0x24, 0xd9, 0xd2, 0x20, 0x79, 0xbb, 0xa9, - 0x74, 0x33, 0xc1, 0x6c, 0x77, 0x6d, 0x30, 0xbb, 0x33, 0x17, 0xcc, 0x9c, 0xbf, 0x6e, 0xc1, 0xce, - 0x5c, 0x65, 0x7c, 0x4e, 0x21, 0xd5, 0x7a, 0xdb, 0x8d, 0xf5, 0x96, 0xab, 0x32, 0x16, 0x87, 0x6e, - 0x53, 0x0b, 0xdd, 0xa8, 0x98, 0xee, 0xf8, 0x38, 0xf2, 0xc5, 0x4b, 0x15, 0x81, 0x2a, 0x18, 0xfd, - 0x1b, 0xd2, 0x3c, 0x8d, 0xfd, 0xe0, 0x3c, 0x10, 0x32, 0xcd, 0x36, 0x78, 0x03, 0xe7, 0xfc, 0x6d, - 0x0b, 0xa0, 0xae, 0xcb, 0xe2, 0x14, 0x45, 0x51, 0x2d, 0x90, 0xda, 0xec, 0xeb, 0xd0, 0x8e, 0x33, - 0x55, 0xda, 0x5d, 0xe6, 0xfe, 0x3e, 0x1d, 0x51, 0x59, 0xb7, 0x1d, 0xa3, 0xdb, 0x30, 0x3d, 0x59, - 0x0a, 0x34, 0x56, 0x87, 0x50, 0x59, 0x08, 0xf6, 0x16, 0xd4, 0x09, 0x3b, 0x73, 0x75, 0x42, 0x59, - 0xfc, 0x77, 0x7e, 0xd2, 0x82, 0xae, 0x9c, 0x6a, 0xe1, 0xdd, 0x64, 0x0f, 0xac, 0x24, 0x74, 0xf3, - 0xf3, 0x38, 0x9d, 0x94, 0x65, 0xbe, 0x12, 0x46, 0x4b, 0x3c, 0x77, 0x27, 0x41, 0x38, 0x55, 0xb9, - 0xb9, 0x82, 0x50, 0xdc, 0x97, 0x22, 0xcd, 0x82, 0x38, 0x52, 0xf9, 0x79, 0x09, 0x62, 0x10, 0x79, - 0x21, 0xd2, 0x48, 0x84, 0x3f, 0x50, 0xfd, 0x1d, 0xea, 0x6f, 0x22, 0x69, 0x49, 0xd2, 0xf9, 0xe3, - 0xf4, 0x78, 0xfc, 0x1c, 0x75, 0xbf, 0x25, 0x1d, 0x41, 0x09, 0xa3, 0xc9, 0x5d, 0xa5, 0x41, 0x2e, - 0xa8, 0x53, 0xba, 0x9e, 0x1a, 0x81, 0x53, 0x21, 0x25, 0xfa, 0xb1, 0x8c, 0x28, 0xa4, 0x03, 0x6a, - 0x22, 0xd9, 0x3b, 0xb0, 0x45, 0x2c, 0x35, 0x99, 0x74, 0x45, 0x33, 0x58, 0xe7, 0x4f, 0xba, 0x00, - 0xf5, 0x9d, 0x66, 0x41, 0xfe, 0xf4, 0x0d, 0xe8, 0x84, 0x98, 0xb9, 0xa9, 0xda, 0xc8, 0xb2, 0x4c, - 0x93, 0x52, 0x3c, 0x49, 0x89, 0x2c, 0x29, 0xb1, 0x74, 0xaf, 0xc1, 0x42, 0x94, 0xec, 0xdb, 0x95, - 0xc4, 0x81, 0x4c, 0xf9, 0x57, 0xd6, 0x5e, 0xbf, 0x3e, 0x22, 0xf2, 0xea, 0x68, 0x3e, 0x50, 0x17, - 0xae, 0x8d, 0x57, 0xb9, 0xbd, 0xc9, 0x7b, 0xd9, 0xdb, 0x30, 0x48, 0x02, 0xff, 0xb0, 0x4e, 0x12, - 0x37, 0x49, 0xa5, 0x9a, 0x48, 0xa4, 0x0a, 0xdd, 0x2c, 0x27, 0xc9, 0xa1, 0xf7, 0x52, 0xc5, 0x83, - 0x26, 0x92, 0x7d, 0x0d, 0x76, 0x2a, 0x04, 0x17, 0x9e, 0x08, 0x2e, 0x85, 0xaf, 0x0a, 0x06, 0xf3, - 0x1d, 0x6c, 0x1f, 0xb6, 0x11, 0xc9, 0x45, 0x9e, 0xba, 0x51, 0x36, 0x09, 0xf2, 0x4c, 0xe5, 0x15, - 0xb3, 0x68, 0xf6, 0x31, 0xf4, 0xfd, 0x20, 0x95, 0x4b, 0x27, 0x07, 0xb4, 0xb5, 0xf4, 0x63, 0x88, - 0x7a, 0x8f, 0x47, 0x25, 0x07, 0xaf, 0x99, 0xf1, 0x86, 0x19, 0x89, 0xfc, 0xd9, 0x88, 0x1c, 0xd5, - 0x80, 0x4b, 0x80, 0x9d, 0xc0, 0x20, 0x48, 0x9e, 0xe3, 0x74, 0xa1, 0x4b, 0x73, 0xdc, 0xa1, 0xa3, - 0x5b, 0x96, 0xd9, 0x1f, 0x9f, 0x6a, 0xb4, 0xbc, 0xc9, 0x8a, 0x3a, 0x94, 0xe6, 0x39, 0xe5, 0x17, - 0x03, 0x8e, 0x4d, 0xb4, 0xa7, 0x34, 0xcf, 0x7f, 0xe0, 0xa6, 0x94, 0x42, 0x0c, 0xb8, 0x82, 0x50, - 0xd1, 0x83, 0x28, 0x4f, 0x5d, 0xbc, 0xa6, 0x50, 0xaa, 0x60, 0xf1, 0x1a, 0x81, 0xf9, 0x81, 0x1f, - 0x65, 0xa3, 0xc2, 0xc3, 0x89, 0xcf, 0x8b, 0x90, 0x8b, 0x2c, 0x89, 0xa3, 0x4c, 0xe5, 0x07, 0x03, - 0xbe, 0xa4, 0xf7, 0xc4, 0xb4, 0xda, 0xb6, 0x71, 0x62, 0x5a, 0x86, 0x6d, 0x56, 0xef, 0x80, 0x3d, - 0xdb, 0x3a, 0x31, 0x2d, 0xcb, 0xee, 0x9f, 0x98, 0x56, 0xdf, 0x06, 0xf9, 0x32, 0x78, 0x62, 0x5a, - 0x5b, 0xf6, 0xf6, 0x89, 0x69, 0x6d, 0xdb, 0xb6, 0xf3, 0x1f, 0x2d, 0xd8, 0xd0, 0xdf, 0xec, 0x7f, - 0x13, 0x3a, 0x5e, 0x1c, 0x45, 0xb2, 0xe0, 0x72, 0xad, 0x17, 0x79, 0x49, 0xcf, 0x7e, 0x1b, 0x0c, - 0x3f, 0x2a, 0xdf, 0x46, 0x7e, 0x6d, 0x2d, 0x5b, 0x76, 0x70, 0x14, 0xa9, 0x67, 0x6c, 0xe4, 0xdb, - 0xfb, 0x1c, 0xac, 0x12, 0xb1, 0xe0, 0x95, 0xf5, 0x9b, 0xcd, 0x57, 0xd6, 0xaf, 0x2e, 0xab, 0xeb, - 0x3e, 0x1b, 0xc9, 0x21, 0xeb, 0x87, 0x51, 0x27, 0x01, 0x53, 0xab, 0x87, 0xb4, 0xe7, 0xea, 0x21, - 0x86, 0x56, 0x0f, 0x99, 0xb9, 0x45, 0x74, 0xe6, 0x6f, 0x11, 0xf5, 0x5b, 0x4c, 0x57, 0x7f, 0x8b, - 0xd1, 0x9f, 0x5f, 0x9d, 0x3f, 0x6b, 0xc1, 0xa0, 0xa1, 0x29, 0x78, 0xe0, 0xa9, 0x48, 0xc2, 0x51, - 0xea, 0x1d, 0x9f, 0xaa, 0x6d, 0xd5, 0x88, 0xb2, 0xf7, 0x28, 0xcb, 0x8f, 0x4f, 0xd5, 0x02, 0x6b, - 0x04, 0xae, 0x49, 0x91, 0x9e, 0xd6, 0xcb, 0xd5, 0x51, 0x25, 0xc5, 0x51, 0x96, 0x13, 0x85, 0x59, - 0x53, 0x28, 0x94, 0xf3, 0x77, 0x2d, 0x80, 0xfa, 0x22, 0x47, 0x9a, 0x9a, 0xc9, 0x4a, 0xb6, 0xc9, - 0xb1, 0x89, 0x98, 0xcb, 0x89, 0x0c, 0x60, 0x26, 0xc7, 0x26, 0xd5, 0x98, 0xae, 0xdc, 0x84, 0xe6, - 0x33, 0x39, 0xb5, 0x71, 0xf3, 0xd9, 0x85, 0x9b, 0x0a, 0x59, 0xb5, 0x32, 0xb9, 0x82, 0x28, 0xe8, - 0x8a, 0x97, 0x32, 0xb3, 0x33, 0x39, 0xb5, 0x71, 0xc4, 0x30, 0x38, 0x53, 0x29, 0x1d, 0x36, 0x91, - 0x0a, 0x4f, 0x4d, 0xe5, 0x72, 0xd4, 0x46, 0xab, 0xf4, 0x83, 0x34, 0x9f, 0xaa, 0x24, 0x4e, 0x02, - 0xce, 0x5f, 0xb5, 0xa1, 0xa7, 0xee, 0x8f, 0x18, 0x7b, 0xd0, 0x29, 0x1c, 0x26, 0x85, 0x12, 0x5c, - 0x09, 0x36, 0xf2, 0xcd, 0xf6, 0x4c, 0xbe, 0xa9, 0xe5, 0xb0, 0xc6, 0x8a, 0x1c, 0xd6, 0x9c, 0xcd, - 0x61, 0x31, 0x6f, 0x2b, 0x26, 0xcf, 0xd5, 0xbd, 0x54, 0x26, 0x0b, 0x1a, 0x86, 0xbd, 0xaf, 0x02, - 0x77, 0x77, 0x65, 0x01, 0x60, 0x14, 0x44, 0xe3, 0x50, 0x94, 0x37, 0x60, 0x19, 0xbe, 0xcb, 0x2b, - 0x70, 0x4f, 0xbb, 0x02, 0xef, 0x81, 0x85, 0xcb, 0x22, 0xe7, 0x6b, 0x91, 0x3a, 0x55, 0x30, 0xae, - 0x44, 0x2e, 0x4b, 0xaf, 0x7a, 0xd7, 0x18, 0xe7, 0xdb, 0x30, 0x68, 0x4c, 0xb3, 0x2c, 0xd8, 0x2f, - 0x13, 0x91, 0xf3, 0xdf, 0x2d, 0x12, 0x32, 0x25, 0x0a, 0x77, 0xa1, 0x1b, 0x15, 0x93, 0x33, 0xf5, - 0xc1, 0x59, 0x87, 0x2b, 0x08, 0xf1, 0x97, 0x22, 0xf2, 0xe3, 0x54, 0xa9, 0xa5, 0x82, 0x96, 0x26, - 0x0a, 0xbb, 0xd0, 0x99, 0xc4, 0xbe, 0x08, 0xcb, 0x32, 0x1e, 0x01, 0xb8, 0x95, 0xe4, 0x62, 0x9a, - 0x05, 0x9e, 0x1b, 0x56, 0x46, 0xa5, 0x61, 0x70, 0x34, 0x2f, 0x4e, 0x85, 0xb2, 0xa9, 0x3e, 0x57, - 0x10, 0x8e, 0x86, 0xad, 0xb2, 0x3e, 0x20, 0x01, 0x54, 0xac, 0xc9, 0xc5, 0x8f, 0x95, 0xbc, 0xb0, - 0x49, 0x0f, 0x4a, 0x78, 0x2b, 0xa0, 0x87, 0xa1, 0xbe, 0x7c, 0x18, 0xaa, 0x10, 0xce, 0x17, 0x2d, - 0x30, 0xc9, 0xaf, 0xd6, 0x69, 0xa5, 0x41, 0x69, 0x65, 0xf5, 0x6d, 0x42, 0x5b, 0xff, 0x36, 0x61, - 0x51, 0x75, 0x72, 0x08, 0x3d, 0x37, 0x0c, 0xe9, 0x5b, 0x96, 0x2e, 0xe5, 0x95, 0x25, 0xa8, 0x3f, - 0xeb, 0xf6, 0x56, 0x3e, 0xeb, 0x5a, 0xf3, 0xcf, 0xba, 0x7a, 0x5a, 0xda, 0x5f, 0x93, 0x96, 0xc2, - 0x7c, 0x5a, 0x5a, 0xf9, 0xf8, 0x8e, 0xdd, 0x75, 0xee, 0x83, 0x55, 0xfa, 0x3e, 0x8a, 0x74, 0xee, - 0x44, 0x94, 0x25, 0x73, 0x09, 0x38, 0xff, 0xd8, 0x06, 0xab, 0xca, 0xb0, 0x17, 0xe9, 0x0a, 0x5e, - 0x78, 0x90, 0x32, 0x71, 0xbd, 0xf2, 0xd9, 0xae, 0x46, 0x94, 0x25, 0x6d, 0x55, 0x72, 0xc7, 0x94, - 0xf7, 0x6b, 0xb0, 0x43, 0xe5, 0x24, 0x4c, 0x2a, 0x82, 0x89, 0xc8, 0x72, 0x77, 0x92, 0xa8, 0xd7, - 0xeb, 0xf9, 0x0e, 0xa4, 0xf6, 0x45, 0x28, 0x9a, 0xd4, 0x32, 0x87, 0x9d, 0xef, 0x40, 0x8d, 0x08, - 0xdd, 0x33, 0x11, 0x96, 0xf2, 0x56, 0x10, 0x0a, 0xd5, 0x8d, 0xa2, 0x38, 0x77, 0xe5, 0x47, 0x63, - 0x3d, 0xea, 0xd4, 0x51, 0xec, 0x53, 0xd8, 0x8e, 0xaf, 0xe8, 0x41, 0xff, 0x5c, 0xa4, 0x22, 0xf2, - 0x44, 0xf9, 0xc1, 0xd5, 0xb2, 0xd4, 0xe8, 0xd3, 0x06, 0x35, 0x9f, 0xe5, 0x76, 0x4e, 0x60, 0xab, - 0x49, 0xb2, 0xae, 0xe2, 0xaf, 0xc4, 0xc3, 0xc0, 0x7c, 0x11, 0x44, 0xa5, 0xc4, 0xa8, 0xed, 0xfc, - 0xbb, 0x09, 0xa0, 0x3d, 0xa3, 0x7e, 0x0b, 0x2f, 0xb1, 0xf2, 0x44, 0xd4, 0x87, 0x9e, 0x5f, 0x5d, - 0x5a, 0x84, 0x53, 0x1f, 0x0d, 0x55, 0x0c, 0x98, 0x43, 0x95, 0x4f, 0xb5, 0x47, 0x22, 0x0b, 0xd0, - 0x29, 0x4b, 0x3d, 0x9e, 0x45, 0xb3, 0x03, 0x60, 0xf5, 0x1b, 0xe7, 0x28, 0x4f, 0xdd, 0x5c, 0x8c, - 0x4b, 0xc3, 0x5d, 0xd0, 0x83, 0x29, 0xf4, 0xc4, 0x7d, 0xf9, 0x59, 0xe4, 0x5e, 0xba, 0x41, 0xe8, - 0x9e, 0x85, 0x65, 0x51, 0x7e, 0x06, 0x4b, 0x77, 0x70, 0xf7, 0xe5, 0xa8, 0x48, 0xc7, 0x42, 0x19, - 0x75, 0x05, 0xd3, 0x7b, 0x8a, 0x5b, 0x64, 0xea, 0x42, 0x65, 0x71, 0x05, 0xb1, 0xa7, 0xd0, 0xcf, - 0x84, 0x7c, 0x5f, 0x2d, 0x3f, 0xba, 0x7b, 0xb8, 0x64, 0xcf, 0x9f, 0xe0, 0x91, 0x8f, 0x44, 0xf5, - 0x99, 0x42, 0x11, 0xa4, 0x82, 0x5e, 0x6c, 0xeb, 0x11, 0xe4, 0x6d, 0x42, 0xee, 0x56, 0x95, 0x09, - 0x2b, 0x18, 0x05, 0x54, 0x24, 0xbe, 0x9b, 0x0b, 0x9f, 0x97, 0x24, 0xd2, 0xca, 0x66, 0xd1, 0xe5, - 0xcd, 0x62, 0x5a, 0xd1, 0x81, 0x7c, 0xe2, 0x6d, 0x20, 0x51, 0x83, 0xab, 0xbd, 0x57, 0x94, 0xf2, - 0xb1, 0x70, 0xbe, 0x83, 0xbd, 0x0b, 0xb7, 0x8b, 0x68, 0x9e, 0x7e, 0x93, 0xe8, 0x17, 0x75, 0xa9, - 0x22, 0x8e, 0x1f, 0xa0, 0x1e, 0x3f, 0x55, 0x5f, 0xee, 0x0e, 0x48, 0xac, 0x73, 0x78, 0x54, 0xae, - 0xa9, 0x3b, 0x09, 0xd5, 0xa7, 0x71, 0xd4, 0x76, 0xfe, 0xc6, 0x00, 0xd0, 0x3e, 0x4a, 0xf8, 0x05, - 0x29, 0x57, 0xe3, 0x40, 0x8d, 0x9f, 0xeb, 0x81, 0x9a, 0x33, 0x07, 0xfa, 0x08, 0x76, 0xcf, 0x8b, - 0x30, 0x9c, 0xd2, 0x38, 0xda, 0xa9, 0xca, 0x28, 0xbd, 0xb0, 0x6f, 0xfe, 0x68, 0xbb, 0xd7, 0x3e, - 0xda, 0xde, 0xb2, 0xa3, 0x5d, 0x74, 0x50, 0xd6, 0x9a, 0x83, 0xea, 0x6b, 0x07, 0xf5, 0xfb, 0x30, - 0x5c, 0x26, 0x8a, 0x05, 0x99, 0xef, 0x1e, 0x58, 0x71, 0x22, 0x52, 0x37, 0xaf, 0x82, 0x70, 0x05, - 0x53, 0x78, 0xc6, 0x3c, 0x57, 0x4a, 0x1e, 0xc3, 0x33, 0x41, 0xce, 0x3f, 0x1b, 0x60, 0x9c, 0xc6, - 0xfe, 0xcf, 0xa6, 0x03, 0x5b, 0xd0, 0xae, 0xd2, 0xd1, 0xf6, 0xf1, 0x29, 0x0a, 0x29, 0x8a, 0x27, - 0x41, 0x84, 0xa6, 0xf3, 0x2c, 0xf6, 0xc5, 0xb3, 0x3a, 0x4a, 0xce, 0x77, 0xe0, 0xb2, 0xa3, 0x92, - 0x48, 0xba, 0x8f, 0x0a, 0xc6, 0x00, 0x95, 0x5c, 0xb8, 0x59, 0xe9, 0x35, 0x24, 0x80, 0x21, 0x2f, - 0x15, 0x54, 0x76, 0x92, 0x05, 0x25, 0x79, 0x52, 0x0d, 0x1c, 0x7b, 0x0e, 0x3b, 0x8d, 0x32, 0x7c, - 0x91, 0x89, 0xd2, 0x8d, 0xbc, 0x73, 0x9d, 0x12, 0x5a, 0x91, 0xf1, 0xf9, 0x01, 0x5e, 0xe9, 0x40, - 0xef, 0x56, 0x1f, 0xcf, 0xf7, 0x65, 0xae, 0x22, 0xa1, 0xea, 0xa0, 0xa1, 0x3e, 0xe8, 0xaa, 0x16, - 0xb5, 0xa1, 0xd5, 0xa2, 0xca, 0xf7, 0xab, 0xcd, 0xeb, 0x7e, 0x74, 0xf4, 0x0f, 0x2d, 0xd8, 0x9e, - 0xd9, 0xc3, 0xc2, 0x08, 0xd4, 0xb8, 0xba, 0x1c, 0x55, 0xdf, 0xdd, 0xd4, 0x28, 0x14, 0x3b, 0xa9, - 0x3d, 0x1d, 0x9a, 0xc5, 0x25, 0x30, 0x27, 0x76, 0x73, 0x81, 0xd8, 0x77, 0xcb, 0x6a, 0xa5, 0x3a, - 0x30, 0x59, 0x86, 0xd4, 0xfe, 0x61, 0xd0, 0x6d, 0xfc, 0xc3, 0xe0, 0x41, 0x00, 0x5b, 0xcd, 0xca, - 0x25, 0xdb, 0x80, 0x5e, 0x11, 0xbd, 0x88, 0xe2, 0xab, 0xc8, 0xbe, 0x85, 0x80, 0x7a, 0x0c, 0xb5, - 0x5b, 0x6c, 0x0b, 0x40, 0xcd, 0x15, 0x44, 0x63, 0xbb, 0x8d, 0x9d, 0x69, 0x11, 0x45, 0x08, 0x18, - 0x0c, 0xca, 0x30, 0x62, 0x9b, 0xd8, 0x16, 0x2f, 0x03, 0x64, 0xea, 0x30, 0x0b, 0x4c, 0x5f, 0xb8, - 0xbe, 0xdd, 0x7d, 0xf0, 0x4c, 0x93, 0x8e, 0x7a, 0xfe, 0xd8, 0x81, 0x81, 0x9a, 0x4b, 0x22, 0xec, - 0x5b, 0x6c, 0x13, 0xac, 0x6a, 0x8a, 0x16, 0x4e, 0x21, 0x2b, 0xa1, 0x53, 0xbb, 0xcd, 0x06, 0xd0, - 0x2f, 0xa2, 0x12, 0x34, 0x1e, 0x7c, 0x04, 0x9b, 0xfa, 0x5b, 0x0d, 0xeb, 0x40, 0xeb, 0x33, 0xfb, - 0x16, 0xfe, 0x1c, 0xd9, 0x2d, 0xfc, 0xe1, 0x76, 0x1b, 0x7f, 0x46, 0xb6, 0x81, 0x3f, 0xcf, 0x6d, - 0x13, 0x7f, 0x3e, 0xb7, 0x3b, 0xf8, 0xf3, 0xbb, 0x76, 0x17, 0x7f, 0x7e, 0x68, 0xf7, 0x1e, 0x38, - 0x24, 0x02, 0xad, 0xe8, 0xc2, 0x7a, 0x60, 0xe4, 0x5e, 0x62, 0xdf, 0xc2, 0x46, 0xe1, 0x27, 0x76, - 0xeb, 0x81, 0x03, 0xf6, 0x6c, 0x5d, 0x87, 0x75, 0xa1, 0x7d, 0xf9, 0x1b, 0xf6, 0x2d, 0xfa, 0x7d, - 0xcf, 0x6e, 0x3d, 0xf8, 0x1c, 0x6e, 0x2f, 0x28, 0x6c, 0xb0, 0x6d, 0xd8, 0x28, 0xa2, 0x2c, 0x11, - 0x1e, 0xa5, 0x82, 0x72, 0x87, 0x41, 0xe4, 0xa1, 0x19, 0xe2, 0x0e, 0x37, 0xc1, 0x8a, 0x8b, 0x7c, - 0x1c, 0x4b, 0x91, 0xf6, 0xa1, 0x13, 0xc6, 0x9e, 0x1b, 0xda, 0x06, 0x0a, 0x2e, 0x8a, 0x23, 0x61, - 0x9b, 0x4f, 0x3e, 0xfc, 0xa7, 0x2f, 0xee, 0xb5, 0xfe, 0xf5, 0x8b, 0x7b, 0xad, 0xff, 0xfc, 0xe2, - 0x5e, 0xeb, 0x27, 0xff, 0x75, 0xef, 0xd6, 0x0f, 0xf7, 0xaf, 0xf3, 0x57, 0x16, 0x94, 0xcc, 0x59, - 0x97, 0x5e, 0xff, 0x7f, 0xfd, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x8d, 0x3f, 0x45, 0xc1, 0x2f, - 0x33, 0x00, 0x00, + // 3985 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7b, 0xcd, 0x73, 0x24, 0x47, + 0x56, 0xf8, 0x74, 0x57, 0x75, 0x77, 0xf5, 0x93, 0x5a, 0x2a, 0xe5, 0x68, 0xc6, 0x6d, 0xd9, 0x3b, + 0x2b, 0xd7, 0xcf, 0x3f, 0x23, 0xc4, 0xae, 0xc6, 0x3b, 0xb0, 0xc6, 0xf6, 0xc2, 0xec, 0xee, 0x48, + 0x36, 0x96, 0xec, 0x19, 0x2b, 0xb2, 0xc7, 0x36, 0xb1, 0x11, 0xc4, 0x52, 0xaa, 0x4a, 0xb5, 0x8a, + 0xa9, 0xae, 0x2a, 0xea, 0x43, 0x33, 0xda, 0x2b, 0x11, 0x1c, 0xb8, 0xec, 0x5e, 0x38, 0x70, 0x24, + 0x88, 0xe0, 0x02, 0x11, 0xc4, 0x1e, 0x08, 0xfe, 0x85, 0x85, 0x13, 0x47, 0x82, 0x03, 0x41, 0x98, + 0xe0, 0x46, 0x70, 0xe1, 0x1f, 0x20, 0xde, 0xcb, 0xac, 0xaa, 0xac, 0xfe, 0xd4, 0x68, 0x36, 0x88, + 0x3d, 0x75, 0xbe, 0x97, 0xef, 0xe5, 0xd7, 0xfb, 0xcc, 0x97, 0xd5, 0xf0, 0x7a, 0x92, 0xc6, 0x79, + 0x7c, 0x3f, 0x49, 0x63, 0x4f, 0x64, 0xd9, 0x7d, 0x77, 0x2c, 0xa2, 0xfc, 0x80, 0x70, 0xec, 0x8e, + 0xef, 0xe6, 0xae, 0x1f, 0x8f, 0x0f, 0x54, 0xe7, 0x8f, 0xa9, 0x73, 0xe7, 0xd1, 0x38, 0xc8, 0x2f, + 0x8a, 0xb3, 0x03, 0x2f, 0x9e, 0xdc, 0x3f, 0x72, 0x73, 0xf7, 0x28, 0x1e, 0x4b, 0xb6, 0x6f, 0x27, + 0xee, 0x55, 0x18, 0xbb, 0xfe, 0x7d, 0x39, 0xe4, 0x44, 0xe4, 0x69, 0xe0, 0xa9, 0x21, 0x7f, 0xac, + 0xfa, 0xe4, 0xd0, 0xce, 0x3f, 0xb5, 0x60, 0x9d, 0x8b, 0xec, 0x30, 0x0e, 0x43, 0xe1, 0xe5, 0x71, + 0xca, 0x1e, 0x41, 0xf7, 0x42, 0xb8, 0xbe, 0x48, 0x87, 0xad, 0xdd, 0xd6, 0xde, 0xda, 0x83, 0xfd, + 0x83, 0xb9, 0x93, 0x1f, 0xe8, 0x4c, 0x07, 0x9f, 0x10, 0x07, 0x57, 0x9c, 0x6c, 0x08, 0xbd, 0x89, + 0xc8, 0x32, 0x77, 0x2c, 0x86, 0xed, 0xdd, 0xd6, 0x5e, 0x9f, 0x97, 0x20, 0x7b, 0x08, 0xdd, 0x2c, + 0x77, 0xf3, 0x22, 0x1b, 0x1a, 0x34, 0xfa, 0x3b, 0x0b, 0x46, 0xaf, 0x86, 0x1e, 0x11, 0x35, 0x57, + 0x5c, 0x3b, 0x6f, 0x42, 0x57, 0xce, 0xc5, 0x18, 0x98, 0xf9, 0x55, 0x22, 0x86, 0xe6, 0x6e, 0x6b, + 0xaf, 0xc3, 0xa9, 0xed, 0xfc, 0xc2, 0x84, 0x41, 0xc5, 0x79, 0x9a, 0xc6, 0x1e, 0xdb, 0x01, 0xeb, + 0x22, 0xce, 0xf2, 0x27, 0xee, 0xa4, 0x5c, 0x4a, 0x05, 0xb3, 0xdf, 0x81, 0xbe, 0x9a, 0x54, 0xe0, + 0x72, 0x8c, 0xbd, 0xb5, 0x07, 0xf7, 0x16, 0x2c, 0xe7, 0x54, 0x42, 0xbc, 0x66, 0x60, 0xf7, 0xc1, + 0xc4, 0x91, 0x68, 0xfe, 0xb5, 0x07, 0x6f, 0x2c, 0x60, 0xfc, 0x24, 0xce, 0x72, 0x4e, 0x84, 0xec, + 0xbb, 0x60, 0x06, 0xd1, 0x79, 0x3c, 0xec, 0x10, 0xc3, 0x5b, 0x0b, 0x18, 0x46, 0x57, 0x59, 0x2e, + 0x26, 0xc7, 0xd1, 0x79, 0xcc, 0x89, 0x1c, 0xcf, 0x72, 0x9c, 0xc6, 0x45, 0x72, 0xec, 0x0f, 0xbb, + 0xb4, 0xd5, 0x12, 0x64, 0x6f, 0x42, 0x9f, 0x9a, 0xa3, 0xe0, 0x27, 0x62, 0xd8, 0xa3, 0xbe, 0x1a, + 0xc1, 0x8e, 0x01, 0x9e, 0x15, 0x67, 0x22, 0x8d, 0x44, 0x2e, 0xb2, 0xa1, 0x45, 0x93, 0xfe, 0x7a, + 0x35, 0x29, 0x4d, 0x56, 0x6a, 0xc2, 0xa7, 0xc5, 0x99, 0x78, 0x2c, 0x72, 0x17, 0x3b, 0x4f, 0x25, + 0x8e, 0x6b, 0xcc, 0xec, 0x43, 0x30, 0x84, 0x97, 0x0d, 0xfb, 0x34, 0xc6, 0xde, 0xfc, 0x31, 0x3e, + 0x3a, 0x1c, 0x4d, 0x0f, 0x81, 0x4c, 0xec, 0x07, 0x00, 0x5e, 0x1c, 0xe5, 0x6e, 0x10, 0x89, 0x34, + 0x1b, 0x02, 0x9d, 0xf2, 0xee, 0x42, 0xa1, 0x2b, 0x42, 0xae, 0xf1, 0xe0, 0x36, 0x23, 0x91, 0x3f, + 0x8f, 0xd3, 0x67, 0xc7, 0xfe, 0x70, 0x8d, 0x64, 0x58, 0x23, 0xd8, 0x97, 0xb0, 0x55, 0xd1, 0xe2, + 0x61, 0x3f, 0x45, 0x9d, 0x58, 0xdf, 0x6d, 0xed, 0x6d, 0x68, 0x2b, 0x5d, 0x30, 0x4d, 0x49, 0xcf, + 0x67, 0x87, 0x70, 0xfe, 0xab, 0x07, 0xdb, 0x95, 0x2a, 0x1d, 0xc6, 0x51, 0x24, 0xbc, 0x3c, 0x88, + 0xa3, 0x6c, 0xa9, 0x46, 0x1d, 0xc2, 0x9a, 0x57, 0x93, 0x2a, 0x9d, 0x7a, 0x6b, 0xf1, 0x32, 0x14, + 0x25, 0xd7, 0xb9, 0x74, 0x81, 0x77, 0x96, 0x08, 0xbc, 0x3b, 0x2d, 0x70, 0x1f, 0x06, 0xa9, 0xc8, + 0xe2, 0xf0, 0x52, 0xf8, 0xb8, 0x8b, 0x6c, 0xd8, 0xa3, 0xe9, 0x1f, 0xae, 0xb2, 0x30, 0x6d, 0x73, + 0x68, 0xd4, 0xf5, 0x00, 0x1f, 0x45, 0x79, 0x7a, 0xc5, 0x9b, 0x83, 0xb2, 0x0c, 0x58, 0x89, 0x38, + 0xac, 0xe5, 0x6a, 0xd1, 0x54, 0x87, 0x37, 0x99, 0xaa, 0x1e, 0x45, 0xce, 0x37, 0x67, 0x78, 0x76, + 0x17, 0xba, 0x78, 0xc6, 0xc7, 0x3e, 0xe9, 0xa0, 0xc1, 0x15, 0xc4, 0xfe, 0x08, 0x36, 0x2b, 0xc9, + 0x7d, 0x1c, 0xa7, 0xa7, 0x81, 0xaf, 0x34, 0xec, 0x07, 0x2f, 0xb3, 0x92, 0xc3, 0xe6, 0x10, 0x72, + 0x19, 0xd3, 0x03, 0xb3, 0x5d, 0x58, 0x13, 0x91, 0x17, 0xfb, 0xc2, 0x7f, 0xea, 0x8e, 0x33, 0x52, + 0xc4, 0x75, 0xae, 0xa3, 0x9a, 0x8a, 0xba, 0x3e, 0xad, 0xa8, 0xf7, 0x00, 0x14, 0xf1, 0xd1, 0x93, + 0xd1, 0x70, 0x83, 0xd8, 0x35, 0xcc, 0x7c, 0x45, 0xde, 0x7c, 0x65, 0x45, 0xde, 0xf9, 0x03, 0x60, + 0xb3, 0x52, 0x65, 0x36, 0x18, 0xcf, 0xc4, 0x15, 0xb9, 0x78, 0x83, 0x63, 0x93, 0x7d, 0x07, 0x3a, + 0x97, 0x6e, 0x58, 0x48, 0xa5, 0x5e, 0xe1, 0xd0, 0x24, 0xe5, 0x87, 0xed, 0xf7, 0x5b, 0x3b, 0x31, + 0xbc, 0xb6, 0x40, 0x92, 0xfa, 0x1c, 0x7d, 0x39, 0xc7, 0xc3, 0xe6, 0x1c, 0x2b, 0xf7, 0x55, 0x7a, + 0x14, 0x7d, 0xc2, 0x47, 0x68, 0x97, 0xb3, 0x02, 0xd3, 0x67, 0xeb, 0xc8, 0xd9, 0xb6, 0xf5, 0xd9, + 0xfa, 0xda, 0x18, 0x27, 0xa6, 0xd5, 0xb2, 0xdb, 0x27, 0xa6, 0x65, 0xda, 0x9d, 0x13, 0xd3, 0x1a, + 0xd8, 0x1b, 0xce, 0xcf, 0x0d, 0xd8, 0xaa, 0x94, 0x83, 0x0b, 0x37, 0x7c, 0x1a, 0x4c, 0xc4, 0x52, + 0x5b, 0x7f, 0x1f, 0x3a, 0x18, 0x93, 0x4a, 0x2b, 0x77, 0x96, 0x47, 0x0e, 0x0c, 0x63, 0x5c, 0x32, + 0x68, 0xda, 0x6c, 0x36, 0xb4, 0x79, 0x1b, 0x3a, 0x71, 0x3a, 0xae, 0xcc, 0x5e, 0x02, 0x37, 0xf6, + 0xff, 0x43, 0xe8, 0x45, 0xc5, 0xe4, 0x30, 0x29, 0xa4, 0xf3, 0xef, 0xf0, 0x12, 0x44, 0x4d, 0xce, + 0xe3, 0xdc, 0x0d, 0x1f, 0x8b, 0x49, 0x9c, 0x5e, 0x29, 0x93, 0xd2, 0x51, 0xec, 0x33, 0xd8, 0xa8, + 0x14, 0x69, 0x44, 0x9b, 0x94, 0x66, 0xf5, 0xf6, 0x2a, 0x81, 0xd1, 0x36, 0xa7, 0x78, 0xe7, 0x6b, + 0xf6, 0xda, 0xab, 0xbb, 0xe8, 0x9f, 0x9a, 0xc0, 0x74, 0x83, 0x96, 0xdd, 0x0d, 0xa1, 0xb5, 0xa6, + 0x84, 0x56, 0xc6, 0xe0, 0xf6, 0xcb, 0xc5, 0xe0, 0x66, 0x10, 0x33, 0x6e, 0x10, 0xc4, 0x34, 0x29, + 0x9a, 0x4b, 0xa4, 0xd8, 0x59, 0x1e, 0xc5, 0xbb, 0xbf, 0x84, 0x28, 0xde, 0xbb, 0x49, 0x14, 0x2f, + 0x93, 0x1d, 0xeb, 0xba, 0xc9, 0xce, 0x5c, 0x99, 0xf7, 0x5f, 0x59, 0xe6, 0xcb, 0x93, 0x01, 0xe7, + 0x5f, 0xda, 0xb0, 0x33, 0xab, 0x11, 0x73, 0xcd, 0x79, 0x5a, 0x33, 0x3e, 0x2c, 0xcd, 0xb9, 0xfd, + 0x12, 0x9a, 0xae, 0x0c, 0x5a, 0x33, 0x35, 0x63, 0xa9, 0xa9, 0x99, 0xb3, 0xa6, 0x56, 0x3b, 0x83, + 0x4e, 0xc3, 0x19, 0xdc, 0xd4, 0xec, 0xe7, 0x1e, 0xbc, 0xf5, 0xea, 0xc6, 0xf6, 0xae, 0x66, 0x6b, + 0x5c, 0xfc, 0xb1, 0x4c, 0xcb, 0x97, 0x39, 0x48, 0xe7, 0x4f, 0xda, 0xb0, 0x5e, 0x27, 0xe3, 0xb1, + 0xbf, 0xf4, 0xf8, 0x77, 0x61, 0xcd, 0x0b, 0x8b, 0x2c, 0x17, 0xa9, 0x36, 0x96, 0x8e, 0xc2, 0x6d, + 0x2b, 0xf0, 0xd8, 0xa7, 0x63, 0xee, 0xf3, 0x1a, 0x71, 0x63, 0xfb, 0x3a, 0x00, 0x33, 0x89, 0x7d, + 0xb4, 0x2c, 0x94, 0xfa, 0xce, 0x22, 0x27, 0x1e, 0xfb, 0x9c, 0xe8, 0x2a, 0x43, 0xe8, 0x5d, 0xd3, + 0x10, 0x9c, 0xff, 0x6e, 0xc1, 0x6d, 0xed, 0xe0, 0x92, 0x30, 0xf0, 0xdc, 0x91, 0xc8, 0x7f, 0x25, + 0x0f, 0xe3, 0x10, 0xd6, 0x52, 0xb9, 0xc2, 0x4c, 0xe4, 0xe5, 0x99, 0xbc, 0xb5, 0xf0, 0xfe, 0x57, + 0xee, 0x85, 0xeb, 0x5c, 0xcd, 0x0d, 0x1f, 0x89, 0x24, 0x8c, 0xaf, 0x26, 0x22, 0xfa, 0x95, 0xdd, + 0xb0, 0x5f, 0xad, 0x70, 0xd5, 0x86, 0xeb, 0xbd, 0x70, 0x9d, 0xcb, 0x19, 0xc1, 0xe6, 0xd4, 0x6d, + 0x95, 0xbd, 0x0d, 0x03, 0xd7, 0xcb, 0x83, 0x4b, 0x71, 0x18, 0x06, 0x34, 0xb2, 0xcc, 0x4a, 0x9a, + 0x48, 0x3c, 0x91, 0x20, 0xca, 0x45, 0x7a, 0xe9, 0x86, 0xb4, 0xe5, 0x0e, 0xaf, 0x60, 0xe7, 0xef, + 0xba, 0xd0, 0x53, 0xa9, 0x83, 0x9e, 0xd9, 0x0c, 0x64, 0x66, 0x63, 0x83, 0x91, 0x04, 0xbe, 0x62, + 0xc2, 0x66, 0xa5, 0x97, 0xc6, 0x75, 0x1d, 0xf4, 0xfb, 0xd0, 0xf3, 0xe2, 0xc9, 0xc4, 0x8d, 0x7c, + 0x75, 0x83, 0xbd, 0xb7, 0xd0, 0x3b, 0x10, 0x15, 0x2f, 0xc9, 0xd9, 0x7b, 0x60, 0x16, 0x99, 0x48, + 0xd5, 0x3d, 0x76, 0x45, 0xde, 0xf3, 0x45, 0x26, 0x52, 0x4e, 0xf4, 0xec, 0x03, 0xe8, 0x4e, 0xa4, + 0x1b, 0xec, 0x2d, 0x8d, 0xbe, 0xd2, 0x31, 0x92, 0x7f, 0x55, 0x0c, 0xec, 0x5d, 0x30, 0xbc, 0xa4, + 0x50, 0xd1, 0x67, 0xe1, 0x42, 0x4f, 0xbf, 0x20, 0x26, 0x24, 0xc5, 0x6c, 0xdb, 0x4b, 0x85, 0x9b, + 0x0b, 0x74, 0xfc, 0x2a, 0xc5, 0xd1, 0x30, 0xec, 0x21, 0xf4, 0x2b, 0x1f, 0x37, 0x04, 0x1a, 0x77, + 0x75, 0x40, 0xaf, 0x59, 0x50, 0x63, 0xe3, 0x44, 0x44, 0x1f, 0xfb, 0x87, 0x71, 0x11, 0xe5, 0x14, + 0x89, 0x3a, 0x5c, 0x47, 0xb1, 0x0f, 0x64, 0x40, 0x29, 0x2f, 0xa3, 0xff, 0x6f, 0x75, 0x7e, 0x28, + 0x64, 0x3c, 0xc1, 0x2c, 0xa5, 0x1b, 0xc4, 0x88, 0x19, 0x0e, 0x68, 0x65, 0xdf, 0x58, 0xc0, 0x7b, + 0xfc, 0xb9, 0x3c, 0x25, 0x49, 0x4c, 0x56, 0x54, 0x2e, 0xf0, 0xd8, 0xa7, 0x2b, 0x46, 0x9f, 0xeb, + 0x28, 0xe6, 0xc0, 0x7a, 0x05, 0x7e, 0x2a, 0xae, 0xe8, 0x7a, 0x31, 0xe0, 0x0d, 0x1c, 0x7b, 0x00, + 0xdb, 0x97, 0x71, 0x58, 0x44, 0xb9, 0x9b, 0x5e, 0x1d, 0xe6, 0x2f, 0x46, 0xcf, 0x83, 0xdc, 0xbb, + 0x10, 0xd9, 0xd0, 0xde, 0x6d, 0xed, 0x99, 0x7c, 0x6e, 0x1f, 0x7b, 0x0f, 0xee, 0x06, 0xd1, 0x5c, + 0xae, 0x2d, 0xe2, 0x5a, 0xd0, 0x8b, 0x76, 0x7b, 0x76, 0x95, 0x0b, 0x5c, 0x0a, 0xa3, 0x0b, 0x51, + 0x09, 0xb2, 0x7d, 0xb0, 0xab, 0x55, 0x3d, 0x52, 0x24, 0xb7, 0x89, 0x64, 0x06, 0x7f, 0x62, 0x5a, + 0x5d, 0xbb, 0xe7, 0xfc, 0x45, 0x0b, 0x7a, 0x4a, 0x57, 0x19, 0x03, 0xd3, 0x4d, 0xc7, 0x68, 0x76, + 0xc6, 0x5e, 0x9f, 0x53, 0x1b, 0x6d, 0xc6, 0x7b, 0x5e, 0xfa, 0x0e, 0x6c, 0x22, 0x55, 0x1a, 0xc7, + 0xb2, 0x82, 0xd3, 0xe7, 0xd4, 0xc6, 0x70, 0x1c, 0x47, 0x47, 0x41, 0xf6, 0x8c, 0xd4, 0xdb, 0xe2, + 0x0a, 0x42, 0xda, 0x04, 0x4d, 0x4e, 0xc6, 0x62, 0x6a, 0x23, 0x6d, 0x42, 0xbe, 0x44, 0x45, 0x61, + 0x05, 0xe1, 0x4c, 0xe2, 0x85, 0x0c, 0xba, 0x7d, 0x8e, 0x4d, 0xe7, 0xcf, 0x5b, 0xb0, 0xa6, 0x19, + 0x04, 0x8e, 0x16, 0xd5, 0x7e, 0x90, 0xda, 0xc8, 0x55, 0xd4, 0x36, 0x5d, 0x04, 0x3e, 0x62, 0xc6, + 0x81, 0xaf, 0x52, 0x0a, 0x6c, 0x22, 0x9f, 0x40, 0x22, 0x55, 0xf3, 0xc2, 0x36, 0xe1, 0x90, 0xac, + 0xa3, 0x70, 0x8a, 0x2e, 0x2b, 0xea, 0xd5, 0x66, 0x8a, 0x2e, 0x43, 0xba, 0x9e, 0xc2, 0x8d, 0x03, + 0xdf, 0xb9, 0x84, 0x41, 0xa5, 0xdd, 0x3f, 0xf4, 0xfd, 0x94, 0x6d, 0x40, 0x3b, 0x48, 0xd4, 0xb2, + 0xda, 0x41, 0x42, 0xdb, 0x8e, 0xd3, 0x5c, 0xad, 0x8a, 0xda, 0xec, 0x87, 0x60, 0x51, 0xe9, 0xd0, + 0x8b, 0x43, 0x5a, 0xdb, 0xc6, 0x83, 0xff, 0xbf, 0xb2, 0xc2, 0x41, 0x59, 0x45, 0xc5, 0xe6, 0xfc, + 0x4f, 0x17, 0xfa, 0x75, 0xc2, 0x5e, 0x56, 0xf2, 0xd4, 0x69, 0x60, 0x9b, 0x16, 0xe2, 0xab, 0x40, + 0xd0, 0x96, 0xab, 0xa7, 0x13, 0x33, 0xb4, 0x13, 0xdb, 0x86, 0x4e, 0x30, 0x71, 0xc7, 0x42, 0x09, + 0x50, 0x02, 0xe8, 0x55, 0xbd, 0xa4, 0xf8, 0x2c, 0x98, 0x04, 0x39, 0x9d, 0x49, 0x9b, 0x57, 0x30, + 0x5a, 0x88, 0xf4, 0x28, 0xb2, 0xbb, 0x4b, 0xca, 0xa9, 0xa3, 0xd8, 0xf7, 0x4a, 0xab, 0xb5, 0x56, + 0xed, 0xac, 0x4e, 0x03, 0x2b, 0xbb, 0x7d, 0x48, 0xa5, 0xd3, 0x30, 0xbf, 0x50, 0x99, 0xee, 0x3b, + 0x2b, 0x13, 0x2e, 0xa2, 0xe6, 0x8a, 0x0b, 0xcd, 0x41, 0xba, 0x28, 0x9f, 0x5c, 0x92, 0xc1, 0x4b, + 0x90, 0x54, 0xf5, 0x2c, 0x91, 0x55, 0x87, 0x36, 0xa7, 0x36, 0xe2, 0x9e, 0x23, 0x6e, 0x5d, 0xe2, + 0xb0, 0x5d, 0x86, 0x8a, 0x41, 0x1d, 0x2a, 0x64, 0xc2, 0xcc, 0xbd, 0x4b, 0xff, 0x34, 0x23, 0x97, + 0xd0, 0xe6, 0x35, 0x42, 0xf5, 0x8e, 0x44, 0x94, 0x9f, 0x66, 0xe4, 0x0d, 0x64, 0xaf, 0x44, 0xa0, + 0x13, 0x55, 0xa4, 0x8f, 0x12, 0xe9, 0x00, 0xda, 0x5c, 0xc3, 0xa8, 0x7e, 0x24, 0xc6, 0xfe, 0xad, + 0xaa, 0x5f, 0x61, 0x70, 0x3f, 0xe8, 0xf9, 0x4f, 0xbd, 0x9c, 0xcc, 0xbb, 0xcd, 0x4b, 0x10, 0xe7, + 0xcd, 0xe8, 0x92, 0x85, 0x7d, 0xb7, 0xe5, 0xbc, 0x15, 0x02, 0x45, 0x48, 0x29, 0x32, 0x76, 0x6e, + 0x4b, 0x11, 0x96, 0x30, 0x1a, 0xdd, 0x44, 0x4c, 0x78, 0x96, 0x0d, 0xef, 0x90, 0xf4, 0x14, 0x84, + 0x3c, 0x13, 0x31, 0x39, 0x74, 0xbd, 0x0b, 0x31, 0xbc, 0x4b, 0x3d, 0x15, 0x5c, 0x05, 0xc7, 0xd7, + 0xae, 0x1b, 0x1c, 0x87, 0xd0, 0xcb, 0x72, 0x37, 0x45, 0x41, 0x0c, 0xa5, 0x20, 0x14, 0xa8, 0x7b, + 0xac, 0xd7, 0x9b, 0x1e, 0x0b, 0xb5, 0xd8, 0x1d, 0x67, 0xc3, 0x1d, 0xe9, 0x73, 0xb0, 0xcd, 0x1e, + 0x41, 0xdf, 0xf5, 0xfd, 0x54, 0x56, 0x98, 0xdf, 0xb8, 0xde, 0xc5, 0x02, 0xed, 0x90, 0xd7, 0x6c, + 0x74, 0x85, 0xb8, 0x48, 0x85, 0xab, 0x22, 0xcd, 0x9b, 0x52, 0x67, 0x35, 0x54, 0x4d, 0x21, 0xb5, + 0xfa, 0x1b, 0x3a, 0x05, 0xa1, 0x4e, 0x4c, 0xab, 0x67, 0x5b, 0xce, 0x3f, 0x58, 0x95, 0x17, 0xa2, + 0x78, 0xa1, 0xb2, 0x88, 0x56, 0x9d, 0x45, 0x34, 0xa3, 0x66, 0x7b, 0x26, 0x6a, 0xd6, 0x21, 0xdc, + 0xb8, 0x61, 0x08, 0x37, 0xaf, 0x1f, 0xc2, 0xd1, 0xe4, 0x03, 0xaf, 0xcc, 0xda, 0xa8, 0x8d, 0xc7, + 0x2f, 0xf7, 0x95, 0x29, 0x3f, 0x56, 0x82, 0xd3, 0x01, 0xd9, 0x9a, 0x0d, 0xc8, 0xca, 0x36, 0xfa, + 0xb5, 0x6d, 0x4c, 0x05, 0x4c, 0x98, 0x0d, 0x98, 0x8f, 0xa7, 0x0a, 0x21, 0x65, 0xdd, 0xe2, 0x9a, + 0x7e, 0x61, 0x8a, 0x99, 0xfd, 0x1e, 0xac, 0x27, 0x5a, 0xbc, 0x7f, 0x99, 0xd4, 0xa0, 0xc1, 0xc8, + 0x4e, 0xb5, 0xc2, 0xa7, 0x74, 0x22, 0xaa, 0x54, 0x78, 0x5d, 0x97, 0x33, 0xcd, 0x8e, 0x29, 0x6b, + 0x85, 0xe2, 0x67, 0x95, 0xb9, 0x37, 0x91, 0x0d, 0xaa, 0xaf, 0xce, 0x2a, 0xa3, 0x6f, 0x22, 0x67, + 0xd2, 0x0c, 0x36, 0x27, 0xcd, 0xa8, 0x73, 0x9c, 0xdb, 0x2f, 0x93, 0xe3, 0x1c, 0x00, 0xab, 0x86, + 0x79, 0x52, 0xf9, 0x35, 0xe9, 0x24, 0xe6, 0xf4, 0x4c, 0xd3, 0x2b, 0x4f, 0x77, 0x67, 0x96, 0x5e, + 0xb9, 0xbc, 0x77, 0xe1, 0xf6, 0xf4, 0x28, 0xe8, 0xdb, 0xee, 0x12, 0xc3, 0xbc, 0xae, 0x69, 0x8e, + 0xd2, 0x1b, 0xbe, 0x36, 0xcb, 0x51, 0xba, 0xc5, 0x45, 0x19, 0xd6, 0xf0, 0x46, 0x19, 0xd6, 0xeb, + 0xd7, 0xcd, 0xb0, 0x76, 0x56, 0x67, 0x58, 0x6f, 0xcc, 0xcf, 0xb0, 0x9c, 0x3f, 0xeb, 0x68, 0x89, + 0x02, 0xc9, 0x41, 0xc6, 0xe7, 0x56, 0x15, 0x9f, 0x35, 0x57, 0xdf, 0x5e, 0xe2, 0xea, 0x8d, 0x65, + 0xae, 0xde, 0x9c, 0x72, 0xf5, 0xcb, 0x22, 0x79, 0x1d, 0x06, 0xba, 0x0b, 0xc3, 0x40, 0x6f, 0x2a, + 0x0c, 0xc8, 0x3e, 0x39, 0x9e, 0x55, 0xf5, 0xc9, 0xf1, 0xca, 0x00, 0xdb, 0x9f, 0x13, 0x60, 0x41, + 0x0b, 0xb0, 0x8d, 0x70, 0xba, 0xb6, 0x34, 0x9c, 0xae, 0x2f, 0x0f, 0xa7, 0x83, 0x15, 0xe1, 0x74, + 0x63, 0x26, 0x9c, 0x56, 0xb9, 0xc9, 0xe6, 0x2b, 0xe5, 0x26, 0xf6, 0x8d, 0x72, 0x13, 0xe5, 0x3d, + 0xb7, 0x6a, 0xef, 0xa9, 0x05, 0x49, 0xb6, 0x30, 0x48, 0xde, 0x6e, 0x2a, 0xdd, 0x54, 0x30, 0xdb, + 0x5e, 0x19, 0xcc, 0xee, 0xcc, 0x04, 0x33, 0xe7, 0xaf, 0x5a, 0xb0, 0x35, 0xf3, 0x42, 0x30, 0xa3, + 0x90, 0x6a, 0xbd, 0xed, 0xc6, 0x7a, 0xcb, 0x55, 0x19, 0xf3, 0x43, 0xb7, 0xa9, 0x85, 0x6e, 0x54, + 0x4c, 0x77, 0x7c, 0x1c, 0xf9, 0xe2, 0x85, 0x8a, 0x40, 0x15, 0x8c, 0xfe, 0x0d, 0x69, 0x1e, 0xc7, + 0x7e, 0x70, 0x1e, 0x08, 0x99, 0x66, 0x1b, 0xbc, 0x81, 0x73, 0xfe, 0xa6, 0x05, 0x50, 0xd7, 0x91, + 0x71, 0x8a, 0xa2, 0xa8, 0x16, 0x48, 0x6d, 0xf6, 0x6d, 0x68, 0xc7, 0x99, 0x2a, 0x45, 0x2f, 0x72, + 0x7f, 0x9f, 0x8f, 0xa8, 0x0c, 0xdd, 0x8e, 0xd1, 0x6d, 0x98, 0x9e, 0x2c, 0x31, 0x1a, 0xcb, 0x43, + 0xa8, 0x2c, 0x5c, 0x7b, 0x73, 0xea, 0x8f, 0x9d, 0x99, 0xfa, 0xa3, 0x7c, 0x04, 0x71, 0x7e, 0xd6, + 0x82, 0xae, 0x9c, 0x6a, 0xee, 0xdd, 0x64, 0x07, 0xac, 0x24, 0x74, 0xf3, 0xf3, 0x38, 0x9d, 0x94, + 0x65, 0xbe, 0x12, 0x46, 0x4b, 0x3c, 0x77, 0x27, 0x41, 0x78, 0xa5, 0x72, 0x73, 0x05, 0xe1, 0x71, + 0x5f, 0x8a, 0x34, 0x0b, 0xe2, 0x48, 0xe5, 0xe7, 0x25, 0x88, 0x41, 0xe4, 0x99, 0x48, 0x23, 0x11, + 0x7e, 0xa9, 0xfa, 0x3b, 0xd4, 0xdf, 0x44, 0xd2, 0x92, 0xa4, 0xf3, 0xc7, 0xe9, 0x51, 0xfc, 0x1c, + 0x75, 0xbf, 0x25, 0x1d, 0x41, 0x09, 0xa3, 0xc9, 0x3d, 0x4f, 0x83, 0x5c, 0x50, 0xa7, 0x74, 0x3d, + 0x35, 0x02, 0xa7, 0x42, 0x4a, 0xf4, 0x63, 0x19, 0x51, 0x48, 0x07, 0xd4, 0x44, 0xb2, 0x77, 0x60, + 0x83, 0x58, 0x6a, 0x32, 0xe9, 0x8a, 0xa6, 0xb0, 0xce, 0x9f, 0x76, 0x01, 0xea, 0x3b, 0xcd, 0x9c, + 0xfc, 0xe9, 0x3b, 0xd0, 0x09, 0x31, 0x73, 0x53, 0xb5, 0x91, 0x45, 0x99, 0x26, 0xa5, 0x78, 0x92, + 0x12, 0x59, 0x52, 0x62, 0xe9, 0x5e, 0x83, 0x85, 0x28, 0xd9, 0xf7, 0xab, 0x13, 0x07, 0x32, 0xe5, + 0x5f, 0x5b, 0x79, 0xfd, 0xfa, 0x98, 0xc8, 0x2b, 0xd1, 0x7c, 0xa0, 0x2e, 0x5c, 0x6b, 0x2f, 0x73, + 0x7b, 0x93, 0xf7, 0xb2, 0xb7, 0x61, 0x90, 0x04, 0xfe, 0x61, 0x9d, 0x24, 0xae, 0x93, 0x4a, 0x35, + 0x91, 0x48, 0x15, 0xba, 0x59, 0x4e, 0x27, 0x87, 0xde, 0x4b, 0x15, 0x0f, 0x9a, 0x48, 0xf6, 0x2d, + 0xd8, 0xaa, 0x10, 0x5c, 0x78, 0x22, 0xb8, 0x14, 0xbe, 0x2a, 0x18, 0xcc, 0x76, 0xb0, 0x3d, 0xd8, + 0x44, 0x24, 0x17, 0x79, 0xea, 0x46, 0xd9, 0x24, 0xc8, 0x33, 0x95, 0x57, 0x4c, 0xa3, 0xd9, 0x27, + 0xd0, 0xf7, 0x83, 0x54, 0x2e, 0x9d, 0x1c, 0xd0, 0xc6, 0xc2, 0x8f, 0x58, 0xea, 0x3d, 0x1e, 0x95, + 0x1c, 0xbc, 0x66, 0xc6, 0x1b, 0x66, 0x24, 0xf2, 0x27, 0x23, 0x72, 0x54, 0x03, 0x2e, 0x01, 0x76, + 0x02, 0x83, 0x20, 0x79, 0x8a, 0xd3, 0x85, 0x2e, 0xcd, 0x71, 0x87, 0x44, 0xb7, 0x28, 0xb3, 0x3f, + 0x3e, 0xd5, 0x68, 0x79, 0x93, 0x15, 0x75, 0x28, 0xcd, 0x73, 0xca, 0x2f, 0x06, 0x1c, 0x9b, 0x68, + 0x4f, 0x69, 0x9e, 0x7f, 0xe9, 0xa6, 0x94, 0x42, 0x0c, 0xb8, 0x82, 0x50, 0xd1, 0x83, 0x28, 0x4f, + 0x5d, 0xbc, 0xa6, 0x50, 0xaa, 0x60, 0xf1, 0x1a, 0x81, 0xf9, 0x81, 0x1f, 0x65, 0xa3, 0xc2, 0xc3, + 0x89, 0xcf, 0x8b, 0x90, 0x8b, 0x2c, 0x89, 0xa3, 0x4c, 0xe5, 0x07, 0x03, 0xbe, 0xa0, 0xf7, 0xc4, + 0xb4, 0xda, 0xb6, 0x71, 0x62, 0x5a, 0x86, 0x6d, 0x56, 0xef, 0xa1, 0x3d, 0xdb, 0x3a, 0x31, 0x2d, + 0xcb, 0xee, 0x9f, 0x98, 0x56, 0xdf, 0x06, 0xf9, 0x42, 0x7a, 0x62, 0x5a, 0x1b, 0xf6, 0xe6, 0x89, + 0x69, 0x6d, 0xda, 0xb6, 0xf3, 0x6f, 0x2d, 0x58, 0xd3, 0xbf, 0x89, 0xf8, 0x6d, 0xe8, 0x78, 0x71, + 0x14, 0xc9, 0x82, 0xcb, 0xb5, 0xbe, 0x78, 0x90, 0xf4, 0xec, 0x77, 0xc1, 0xf0, 0xa3, 0xf2, 0xcd, + 0xe5, 0x37, 0x56, 0xb2, 0x65, 0x07, 0x47, 0x91, 0xfa, 0x4c, 0x00, 0xf9, 0x76, 0xbe, 0x02, 0xab, + 0x44, 0xcc, 0x79, 0x6d, 0xfe, 0x6e, 0xf3, 0xb5, 0xf9, 0x9b, 0x8b, 0xea, 0xba, 0x4f, 0x46, 0x72, + 0xc8, 0xfa, 0x81, 0xd8, 0x49, 0xc0, 0xd4, 0xea, 0x21, 0xed, 0x99, 0x7a, 0x88, 0xa1, 0xd5, 0x43, + 0xa6, 0x6e, 0x11, 0x9d, 0xd9, 0x5b, 0x44, 0xfd, 0xc6, 0xd3, 0xd5, 0xdf, 0x78, 0xf4, 0x67, 0x68, + 0xe7, 0xa7, 0x2d, 0x18, 0x34, 0x34, 0x05, 0x05, 0x9e, 0x8a, 0x24, 0x1c, 0xa5, 0xde, 0xf1, 0xa9, + 0xda, 0x56, 0x8d, 0x28, 0x7b, 0x8f, 0xb2, 0xfc, 0xf8, 0x54, 0x2d, 0xb0, 0x46, 0xe0, 0x9a, 0x14, + 0xe9, 0x69, 0xbd, 0x5c, 0x1d, 0x55, 0x52, 0x1c, 0x65, 0x39, 0x51, 0x98, 0x35, 0x85, 0x42, 0x39, + 0x7f, 0xdb, 0x02, 0xa8, 0x2f, 0x72, 0xa4, 0xa9, 0x99, 0xac, 0x64, 0x9b, 0x1c, 0x9b, 0x88, 0xb9, + 0x9c, 0xc8, 0x00, 0x66, 0x72, 0x6c, 0x52, 0x8d, 0xe9, 0xb9, 0x9b, 0xd0, 0x7c, 0x26, 0xa7, 0x36, + 0x6e, 0x3e, 0xbb, 0x70, 0x53, 0x21, 0xab, 0x56, 0x26, 0x57, 0x10, 0x05, 0x5d, 0xf1, 0x42, 0x66, + 0x76, 0x26, 0xa7, 0x36, 0x8e, 0x18, 0x06, 0x67, 0x2a, 0xa5, 0xc3, 0x26, 0x52, 0xa1, 0xd4, 0x54, + 0x2e, 0x47, 0x6d, 0xb4, 0x4a, 0x3f, 0x48, 0xf3, 0x2b, 0x95, 0xc4, 0x49, 0xc0, 0xf9, 0xcb, 0x36, + 0xf4, 0xd4, 0xfd, 0x11, 0x63, 0x0f, 0x3a, 0x85, 0xc3, 0xa4, 0x50, 0x07, 0x57, 0x82, 0x8d, 0x7c, + 0xb3, 0x3d, 0x95, 0x6f, 0x6a, 0x39, 0xac, 0xb1, 0x24, 0x87, 0x35, 0xa7, 0x73, 0x58, 0xcc, 0xdb, + 0x8a, 0xc9, 0x53, 0x75, 0x2f, 0x95, 0xc9, 0x82, 0x86, 0x61, 0xef, 0xab, 0xc0, 0xdd, 0x5d, 0x5a, + 0x00, 0x18, 0x05, 0xd1, 0x38, 0x14, 0xe5, 0x0d, 0x58, 0x86, 0xef, 0xf2, 0x0a, 0xdc, 0xd3, 0xae, + 0xc0, 0x3b, 0x60, 0xe1, 0xb2, 0xc8, 0xf9, 0x5a, 0xa4, 0x4e, 0x15, 0x8c, 0x2b, 0x91, 0xcb, 0xd2, + 0xab, 0xde, 0x35, 0xc6, 0xf9, 0x3e, 0x0c, 0x1a, 0xd3, 0x2c, 0x0a, 0xf6, 0x8b, 0x8e, 0xc8, 0xf9, + 0xcf, 0x16, 0x1d, 0x32, 0x25, 0x0a, 0x77, 0xa1, 0x1b, 0x15, 0x93, 0x33, 0xf5, 0xa1, 0x60, 0x87, + 0x2b, 0x08, 0xf1, 0x97, 0x22, 0xf2, 0xe3, 0x54, 0xa9, 0xa5, 0x82, 0x16, 0x26, 0x0a, 0xdb, 0xd0, + 0x99, 0xc4, 0xbe, 0x08, 0xcb, 0x32, 0x1e, 0x01, 0xb8, 0x95, 0xe4, 0xe2, 0x2a, 0x0b, 0x3c, 0x37, + 0xac, 0x8c, 0x4a, 0xc3, 0xe0, 0x68, 0x5e, 0x9c, 0x0a, 0x65, 0x53, 0x7d, 0xae, 0x20, 0x1c, 0x0d, + 0x5b, 0x65, 0x7d, 0x40, 0x02, 0xa8, 0x58, 0x93, 0x8b, 0x9f, 0xa8, 0xf3, 0xc2, 0x26, 0x3d, 0x28, + 0xe1, 0xad, 0x80, 0x1e, 0x86, 0xfa, 0xf2, 0x61, 0xa8, 0x42, 0x38, 0x5f, 0xb7, 0xc0, 0x24, 0xbf, + 0x5a, 0xa7, 0x95, 0x06, 0xa5, 0x95, 0xd5, 0x37, 0x1a, 0x6d, 0xfd, 0x1b, 0x8d, 0x79, 0xd5, 0xc9, + 0x21, 0xf4, 0xdc, 0x30, 0xa4, 0x6f, 0x85, 0xba, 0x94, 0x57, 0x96, 0xa0, 0xfe, 0x5c, 0xdc, 0x5b, + 0xfa, 0x5c, 0x6c, 0xcd, 0x3e, 0x17, 0xeb, 0x69, 0x69, 0x7f, 0x45, 0x5a, 0x0a, 0xb3, 0x69, 0x69, + 0xe5, 0xe3, 0x3b, 0x76, 0xd7, 0xd9, 0x05, 0xab, 0xf4, 0x7d, 0x14, 0xe9, 0xdc, 0x89, 0x28, 0x4b, + 0xe6, 0x12, 0x70, 0xfe, 0xbe, 0x0d, 0x56, 0x95, 0x61, 0xcf, 0xd3, 0x15, 0xbc, 0xf0, 0x20, 0x65, + 0xe2, 0x7a, 0xe5, 0xb3, 0x5d, 0x8d, 0x28, 0x4b, 0xda, 0xaa, 0xe4, 0x8e, 0x29, 0xef, 0xb7, 0x60, + 0x8b, 0xca, 0x49, 0x98, 0x54, 0x04, 0x13, 0x91, 0xe5, 0xee, 0x24, 0x51, 0xaf, 0xe2, 0xb3, 0x1d, + 0x48, 0xed, 0x8b, 0x50, 0x34, 0xa9, 0x65, 0x0e, 0x3b, 0xdb, 0x81, 0x1a, 0x11, 0xba, 0x67, 0x22, + 0x2c, 0xcf, 0x5b, 0x41, 0x78, 0xa8, 0x6e, 0x14, 0xc5, 0xb9, 0x2b, 0x3f, 0xca, 0xeb, 0x51, 0xa7, + 0x8e, 0x62, 0x9f, 0xc3, 0x66, 0xfc, 0x9c, 0x3e, 0x14, 0x38, 0x17, 0xa9, 0x88, 0x3c, 0x51, 0x7e, + 0xd0, 0xb6, 0x28, 0x35, 0xfa, 0xbc, 0x41, 0xcd, 0xa7, 0xb9, 0x9d, 0x13, 0xd8, 0x68, 0x92, 0xac, + 0xaa, 0xf8, 0xab, 0xe3, 0x61, 0x60, 0x3e, 0x0b, 0xa2, 0xf2, 0xc4, 0xa8, 0xed, 0xfc, 0xab, 0x09, + 0xa0, 0x3d, 0xa3, 0x7e, 0x0f, 0x2f, 0xb1, 0x52, 0x22, 0xea, 0x03, 0xdd, 0x6f, 0x2e, 0x2c, 0xc2, + 0xa9, 0x8f, 0xa7, 0x2a, 0x06, 0xcc, 0xa1, 0xca, 0xa7, 0xda, 0x23, 0x91, 0x05, 0xe8, 0x94, 0xa5, + 0x1e, 0x4f, 0xa3, 0xd9, 0x01, 0xb0, 0xfa, 0x8d, 0x73, 0x94, 0xa7, 0x6e, 0x2e, 0xc6, 0xa5, 0xe1, + 0xce, 0xe9, 0xc1, 0x14, 0x7a, 0xe2, 0xbe, 0xf8, 0x22, 0x72, 0x2f, 0xdd, 0x20, 0x74, 0xcf, 0xc2, + 0xb2, 0x28, 0x3f, 0x85, 0xa5, 0x3b, 0xb8, 0xfb, 0x62, 0x54, 0xa4, 0x63, 0xa1, 0x8c, 0xba, 0x82, + 0xe9, 0x3d, 0xc5, 0x2d, 0x32, 0x75, 0xa1, 0xb2, 0xb8, 0x82, 0xd8, 0x63, 0xe8, 0x67, 0x42, 0xbe, + 0xaf, 0x96, 0x1f, 0x35, 0xde, 0x5f, 0xb0, 0xe7, 0xcf, 0x50, 0xe4, 0x23, 0x51, 0x7d, 0xa6, 0x50, + 0x04, 0xa9, 0xa0, 0x17, 0xdb, 0x7a, 0x04, 0x79, 0x9b, 0x90, 0xbb, 0x55, 0x65, 0xc2, 0x0a, 0xc6, + 0x03, 0x2a, 0x12, 0xdf, 0xcd, 0x85, 0xcf, 0x4b, 0x12, 0x69, 0x65, 0xd3, 0xe8, 0xf2, 0x66, 0x71, + 0x55, 0xd1, 0x81, 0x7c, 0xe2, 0x6d, 0x20, 0x51, 0x83, 0xab, 0xbd, 0x57, 0x94, 0xf2, 0xb1, 0x70, + 0xb6, 0x83, 0xbd, 0x0b, 0xb7, 0x8b, 0x68, 0x96, 0x7e, 0x9d, 0xe8, 0xe7, 0x75, 0xa9, 0x22, 0x8e, + 0x1f, 0xa0, 0x1e, 0x3f, 0x56, 0x5f, 0x5c, 0x0f, 0xe8, 0x58, 0x67, 0xf0, 0xa8, 0x5c, 0x57, 0xee, + 0x24, 0x54, 0x9f, 0x1e, 0x52, 0xdb, 0xf9, 0x6b, 0x03, 0x40, 0xfb, 0x28, 0xe1, 0xff, 0x48, 0xb9, + 0x1a, 0x02, 0x35, 0x7e, 0xa9, 0x02, 0x35, 0xa7, 0x04, 0xfa, 0x00, 0xb6, 0xcf, 0x8b, 0x30, 0xbc, + 0xa2, 0x71, 0x34, 0xa9, 0xca, 0x28, 0x3d, 0xb7, 0x6f, 0x56, 0xb4, 0xdd, 0x6b, 0x8b, 0xb6, 0xb7, + 0x48, 0xb4, 0xf3, 0x04, 0x65, 0xad, 0x10, 0x54, 0x5f, 0x13, 0xd4, 0x1f, 0xc2, 0x70, 0xd1, 0x51, + 0xcc, 0xc9, 0x7c, 0x77, 0xc0, 0x8a, 0x13, 0x91, 0xba, 0x79, 0x15, 0x84, 0x2b, 0x98, 0xc2, 0x33, + 0xe6, 0xb9, 0xf2, 0xe4, 0x31, 0x3c, 0x13, 0xe4, 0xfc, 0xa3, 0x01, 0xc6, 0x69, 0xec, 0xbf, 0x9a, + 0x0e, 0x6c, 0x40, 0xbb, 0x4a, 0x47, 0xdb, 0xc7, 0xa7, 0x78, 0x48, 0x51, 0x3c, 0x09, 0x22, 0x34, + 0x9d, 0x27, 0xb1, 0x2f, 0x9e, 0xd4, 0x51, 0x72, 0xb6, 0x03, 0x97, 0x1d, 0x95, 0x44, 0xd2, 0x7d, + 0x54, 0x30, 0x06, 0xa8, 0xe4, 0xc2, 0xcd, 0x4a, 0xaf, 0x21, 0x01, 0x0c, 0x79, 0xa9, 0xa0, 0xb2, + 0x93, 0x2c, 0x28, 0x49, 0x49, 0x35, 0x70, 0xec, 0xa9, 0xf6, 0x45, 0x94, 0xfc, 0x3e, 0x43, 0x94, + 0x6e, 0xe4, 0x9d, 0xeb, 0x94, 0xd0, 0x8a, 0x8c, 0xcf, 0x0e, 0xf0, 0x52, 0x02, 0xbd, 0x5b, 0xfd, + 0xe9, 0xa1, 0x2f, 0x73, 0x15, 0x09, 0x55, 0x82, 0x86, 0x5a, 0xd0, 0x55, 0x2d, 0x6a, 0x4d, 0xab, + 0x45, 0x95, 0xef, 0x57, 0xeb, 0xd7, 0xfd, 0xe8, 0xe8, 0xe7, 0x2d, 0xd8, 0x9c, 0xda, 0xc3, 0xdc, + 0x08, 0xd4, 0xb8, 0xba, 0x1c, 0x55, 0xdf, 0xdd, 0xd4, 0x28, 0x3c, 0x76, 0x52, 0x7b, 0x12, 0x9a, + 0xc5, 0x25, 0x30, 0x73, 0xec, 0xe6, 0x9c, 0x63, 0xdf, 0x2e, 0xab, 0x95, 0x4a, 0x60, 0xb2, 0x0c, + 0xa9, 0xfd, 0x33, 0xa4, 0xdb, 0xf8, 0x67, 0xc8, 0xfe, 0x47, 0x5a, 0x55, 0xaf, 0xfa, 0xdc, 0xcf, + 0x86, 0xf5, 0x28, 0xce, 0x47, 0x89, 0xf0, 0x28, 0x7d, 0xb1, 0x6f, 0xb1, 0x0d, 0x80, 0x73, 0x37, + 0x1d, 0xbb, 0xb9, 0xf8, 0xe8, 0x70, 0x64, 0xb7, 0x74, 0xf8, 0xd3, 0x91, 0xdd, 0xde, 0x0f, 0x60, + 0xa3, 0x59, 0x00, 0x65, 0x6b, 0xd0, 0x2b, 0xa2, 0x67, 0x51, 0xfc, 0x3c, 0xb2, 0x6f, 0x21, 0xa0, + 0xde, 0x54, 0x25, 0xaf, 0x5a, 0x72, 0x10, 0x8d, 0xed, 0x36, 0x76, 0xa6, 0x45, 0x14, 0x21, 0x60, + 0x30, 0x28, 0xa3, 0x91, 0x6d, 0x62, 0x5b, 0xbc, 0x08, 0x90, 0xa9, 0xc3, 0x2c, 0x30, 0x7d, 0xe1, + 0xfa, 0x76, 0x77, 0xff, 0x89, 0x76, 0xc8, 0xea, 0x15, 0x65, 0x0b, 0x06, 0x6a, 0x2e, 0x89, 0xb0, + 0x6f, 0xb1, 0x75, 0xb0, 0xaa, 0x29, 0x5a, 0x38, 0x85, 0x2c, 0xa8, 0x5e, 0xd9, 0x6d, 0x36, 0x80, + 0x7e, 0x11, 0x95, 0xa0, 0xb1, 0xff, 0x31, 0xac, 0xeb, 0x4f, 0x3e, 0xac, 0x03, 0xad, 0x2f, 0xec, + 0x5b, 0xf8, 0x73, 0x64, 0xb7, 0xf0, 0x87, 0xdb, 0x6d, 0xfc, 0x19, 0xd9, 0x06, 0xfe, 0x3c, 0xb5, + 0x4d, 0xfc, 0xf9, 0xca, 0xee, 0xe0, 0xcf, 0xef, 0xdb, 0x5d, 0xfc, 0xf9, 0x91, 0xdd, 0xdb, 0x77, + 0xe8, 0x08, 0xb4, 0xda, 0x0d, 0xeb, 0x81, 0x91, 0x7b, 0x89, 0x7d, 0x0b, 0x1b, 0x85, 0x9f, 0xd8, + 0xad, 0x7d, 0x07, 0xec, 0xe9, 0xf2, 0x10, 0xeb, 0x42, 0xfb, 0xf2, 0xb7, 0xec, 0x5b, 0xf4, 0xfb, + 0x9e, 0xdd, 0xda, 0xff, 0x0a, 0x6e, 0xcf, 0xa9, 0x8f, 0xb0, 0x4d, 0x58, 0x2b, 0xa2, 0x4c, 0x13, + 0xc9, 0x3a, 0x58, 0x41, 0xe4, 0xa1, 0x35, 0xe3, 0x0e, 0xd7, 0xc1, 0x8a, 0x8b, 0x7c, 0x1c, 0xcb, + 0x23, 0xed, 0x43, 0x27, 0x8c, 0x3d, 0x37, 0xb4, 0x0d, 0x3c, 0xb8, 0x28, 0x8e, 0x84, 0x6d, 0x3e, + 0xfa, 0xf0, 0x17, 0x5f, 0xdf, 0x6b, 0xfd, 0xf3, 0xd7, 0xf7, 0x5a, 0xff, 0xfe, 0xf5, 0xbd, 0xd6, + 0xcf, 0xfe, 0xe3, 0xde, 0xad, 0x1f, 0xed, 0x5d, 0xe7, 0x9f, 0x4c, 0x78, 0x32, 0x67, 0x5d, 0xfa, + 0x88, 0xe0, 0x37, 0xff, 0x37, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x33, 0xd9, 0xc4, 0x2e, 0x35, 0x00, + 0x00, } diff --git a/proto/process/agent.proto b/proto/process/agent.proto index 65d688e4..08ef1dea 100644 --- a/proto/process/agent.proto +++ b/proto/process/agent.proto @@ -10,6 +10,15 @@ import "github.com/DataDog/agent-payload/proto/metrics/agent_payload.proto"; // Message Types // +// ContainerHostType is a enum that represents the type of host detected for container collection. +// Sometimes containers are running on host-less environment, we'll need additional information to identify them +// This will help with the host resolution when we resolve container payloads +enum ContainerHostType { + notSpecified = 0; + fargateECS = 1; + fargateEKS = 2; +} + message ResCollector { // Header must exist at position 1 for compatibility // with older version of the Agent. We should be able @@ -36,6 +45,8 @@ message CollectorProc { datadog.agentpayload.ECSMetadataPayload ecs = 9; // DEPRECATED - left in place to support previous versions repeated Container containers = 10; + + ContainerHostType containerHostType = 12; } message CollectorConnections { @@ -63,6 +74,8 @@ message CollectorConnections { bytes encodedTags = 11; bytes encodedDNS = 14; + + ContainerHostType containerHostType = 15; } message CollectorRealTime { @@ -77,6 +90,8 @@ message CollectorRealTime { int64 totalMemory = 9; repeated ContainerStat containerStats = 10; + + ContainerHostType containerHostType = 11; } message CollectorContainer { @@ -93,6 +108,8 @@ message CollectorContainer { // Post-resolved fields Host host = 8; + + ContainerHostType containerHostType = 9; } message CollectorContainerRealTime { @@ -108,6 +125,8 @@ message CollectorContainerRealTime { int32 groupId = 6; int32 groupSize = 7; + + ContainerHostType containerHostType = 8; } message CollectorReqStatus {