diff --git a/internal/storage/v2/grpc/trace_storage.proto b/internal/storage/v2/grpc/trace_storage.proto index a076181f5aa..67ee2922167 100644 --- a/internal/storage/v2/grpc/trace_storage.proto +++ b/internal/storage/v2/grpc/trace_storage.proto @@ -64,7 +64,7 @@ message GetOperationsResponse { repeated Operation operations = 1; } -// TraceQueryParameters contains query paramters to find traces. For a detailed +// TraceQueryParameters contains query parameters to find traces. For a detailed // definition of each field in this message, refer to `TraceQueryParameters` in `jaeger.api_v3` // (https://github.com/jaegertracing/jaeger-idl/blob/main/proto/api_v3/query_service.proto). message TraceQueryParameters { @@ -97,9 +97,29 @@ message FindTracesRequest { TraceQueryParameters query = 1; } + +// FoundTraceID is a wrapper around trace ID returned from FindTraceIDs +// with an optional time range that may be used in GetTraces calls. +// +// The time range is provided as an optimization hint for some storage backends +// that can perform more efficient queries when they know the approximate time range. +// The value should not be used for precise time-based filtering or assumptions. +// It is meant as a rough boundary and may not be populated in all cases. +message FoundTraceID { + bytes trace_id = 1; + google.protobuf.Timestamp start = 2 [ + (gogoproto.stdtime) = true, + (gogoproto.nullable) = false + ]; + google.protobuf.Timestamp end = 3 [ + (gogoproto.stdtime) = true, + (gogoproto.nullable) = false + ]; +} + // FindTraceIDsResponse represents the response for FindTracesRequest. message FindTraceIDsResponse { - repeated bytes trace_ids = 1; + repeated FoundTraceID trace_ids = 1; } // TraceReader is a service that allows reading traces from storage. diff --git a/proto-gen/storage/v2/trace_storage.pb.go b/proto-gen/storage/v2/trace_storage.pb.go index 0e4074821c7..97bbc87abc1 100644 --- a/proto-gen/storage/v2/trace_storage.pb.go +++ b/proto-gen/storage/v2/trace_storage.pb.go @@ -341,7 +341,7 @@ func (m *GetOperationsResponse) GetOperations() []*Operation { return nil } -// TraceQueryParameters contains query paramters to find traces. For a detailed +// TraceQueryParameters contains query parameters to find traces. For a detailed // definition of each field in this message, refer to `TraceQueryParameters` in `jaeger.api_v3` // (https://github.com/jaegertracing/jaeger-idl/blob/main/proto/api_v3/query_service.proto). type TraceQueryParameters struct { @@ -479,19 +479,80 @@ func (m *FindTracesRequest) GetQuery() *TraceQueryParameters { return nil } +// FoundTraceID is a wrapper around trace ID returned from FindTraceIDs +// with an optional time range that may be used in GetTraces calls. +// +// The time range is provided as an optimization hint for some storage backends +// that can perform more efficient queries when they know the approximate time range. +// The value should not be used for precise time-based filtering or assumptions. +// It is meant as a rough boundary and may not be populated in all cases. +type FoundTraceID struct { + TraceId []byte `protobuf:"bytes,1,opt,name=trace_id,json=traceId,proto3" json:"trace_id,omitempty"` + Start time.Time `protobuf:"bytes,2,opt,name=start,proto3,stdtime" json:"start"` + End time.Time `protobuf:"bytes,3,opt,name=end,proto3,stdtime" json:"end"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *FoundTraceID) Reset() { *m = FoundTraceID{} } +func (m *FoundTraceID) String() string { return proto.CompactTextString(m) } +func (*FoundTraceID) ProtoMessage() {} +func (*FoundTraceID) Descriptor() ([]byte, []int) { + return fileDescriptor_3441c0fd9397413c, []int{9} +} +func (m *FoundTraceID) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_FoundTraceID.Unmarshal(m, b) +} +func (m *FoundTraceID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_FoundTraceID.Marshal(b, m, deterministic) +} +func (m *FoundTraceID) XXX_Merge(src proto.Message) { + xxx_messageInfo_FoundTraceID.Merge(m, src) +} +func (m *FoundTraceID) XXX_Size() int { + return xxx_messageInfo_FoundTraceID.Size(m) +} +func (m *FoundTraceID) XXX_DiscardUnknown() { + xxx_messageInfo_FoundTraceID.DiscardUnknown(m) +} + +var xxx_messageInfo_FoundTraceID proto.InternalMessageInfo + +func (m *FoundTraceID) GetTraceId() []byte { + if m != nil { + return m.TraceId + } + return nil +} + +func (m *FoundTraceID) GetStart() time.Time { + if m != nil { + return m.Start + } + return time.Time{} +} + +func (m *FoundTraceID) GetEnd() time.Time { + if m != nil { + return m.End + } + return time.Time{} +} + // FindTraceIDsResponse represents the response for FindTracesRequest. type FindTraceIDsResponse struct { - TraceIds [][]byte `protobuf:"bytes,1,rep,name=trace_ids,json=traceIds,proto3" json:"trace_ids,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + TraceIds []*FoundTraceID `protobuf:"bytes,1,rep,name=trace_ids,json=traceIds,proto3" json:"trace_ids,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *FindTraceIDsResponse) Reset() { *m = FindTraceIDsResponse{} } func (m *FindTraceIDsResponse) String() string { return proto.CompactTextString(m) } func (*FindTraceIDsResponse) ProtoMessage() {} func (*FindTraceIDsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3441c0fd9397413c, []int{9} + return fileDescriptor_3441c0fd9397413c, []int{10} } func (m *FindTraceIDsResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_FindTraceIDsResponse.Unmarshal(m, b) @@ -511,7 +572,7 @@ func (m *FindTraceIDsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_FindTraceIDsResponse proto.InternalMessageInfo -func (m *FindTraceIDsResponse) GetTraceIds() [][]byte { +func (m *FindTraceIDsResponse) GetTraceIds() []*FoundTraceID { if m != nil { return m.TraceIds } @@ -528,60 +589,64 @@ func init() { proto.RegisterType((*GetOperationsResponse)(nil), "jaeger.storage.v2.GetOperationsResponse") proto.RegisterType((*TraceQueryParameters)(nil), "jaeger.storage.v2.TraceQueryParameters") proto.RegisterType((*FindTracesRequest)(nil), "jaeger.storage.v2.FindTracesRequest") + proto.RegisterType((*FoundTraceID)(nil), "jaeger.storage.v2.FoundTraceID") proto.RegisterType((*FindTraceIDsResponse)(nil), "jaeger.storage.v2.FindTraceIDsResponse") } func init() { proto.RegisterFile("trace_storage.proto", fileDescriptor_3441c0fd9397413c) } var fileDescriptor_3441c0fd9397413c = []byte{ - // 752 bytes of a gzipped FileDescriptorProto + // 795 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xdd, 0x6e, 0xd3, 0x4a, - 0x10, 0x8e, 0x9b, 0xb6, 0x89, 0x27, 0x69, 0x74, 0xba, 0xcd, 0x91, 0xdc, 0x9c, 0x23, 0x9a, 0x1a, - 0x4a, 0x23, 0x90, 0x1c, 0x92, 0x5e, 0x70, 0x01, 0x08, 0xa9, 0x8a, 0x1a, 0x4a, 0xc5, 0x9f, 0x5b, - 0xb8, 0xe0, 0xa2, 0x61, 0x5b, 0x0f, 0xa9, 0xa1, 0xfe, 0xa9, 0x77, 0x13, 0xa5, 0x3c, 0x05, 0x97, - 0xbc, 0x02, 0x6f, 0xc2, 0x53, 0xc0, 0x4b, 0x20, 0xae, 0x91, 0x77, 0xd7, 0xce, 0xaf, 0xda, 0x52, - 0x71, 0x63, 0xed, 0x8e, 0xbf, 0x99, 0xf9, 0x76, 0xbe, 0x99, 0x81, 0x15, 0x1e, 0xd1, 0x63, 0xec, - 0x30, 0x1e, 0x44, 0xb4, 0x8b, 0x56, 0x18, 0x05, 0x3c, 0x20, 0xcb, 0x1f, 0x28, 0x76, 0x31, 0xb2, - 0x12, 0x6b, 0xbf, 0x59, 0x29, 0x77, 0x83, 0x6e, 0x20, 0xfe, 0xd6, 0xe3, 0x93, 0x04, 0x56, 0x6e, - 0x74, 0x83, 0xa0, 0x7b, 0x8a, 0x75, 0x71, 0x3b, 0xea, 0xbd, 0xaf, 0x3b, 0xbd, 0x88, 0x72, 0x37, - 0xf0, 0xd5, 0xff, 0xb5, 0xc9, 0xff, 0xdc, 0xf5, 0x90, 0x71, 0xea, 0x85, 0x0a, 0x70, 0x27, 0x08, - 0xd1, 0xe7, 0x78, 0x8a, 0x1e, 0xf2, 0xe8, 0x5c, 0xe2, 0xea, 0xc7, 0x81, 0xe7, 0x05, 0x7e, 0xbd, - 0xdf, 0x50, 0x27, 0x85, 0xad, 0xcd, 0xc2, 0x0a, 0xfa, 0x31, 0x54, 0x1c, 0x24, 0xd2, 0xfc, 0xaa, - 0x41, 0xa9, 0x8d, 0xfc, 0x20, 0x36, 0xbd, 0xa4, 0x11, 0xf5, 0x18, 0x59, 0x85, 0xbc, 0x7c, 0xa9, - 0xeb, 0x18, 0x5a, 0x55, 0xab, 0x15, 0xed, 0x9c, 0xb8, 0xef, 0x3a, 0xe4, 0x31, 0x00, 0xe3, 0x34, - 0xe2, 0x9d, 0x98, 0x9c, 0x31, 0x57, 0xd5, 0x6a, 0x85, 0x66, 0xc5, 0x92, 0xcc, 0xad, 0x84, 0xb9, - 0x75, 0x90, 0x30, 0xdf, 0x9e, 0xff, 0xfc, 0x63, 0x4d, 0xb3, 0x75, 0xe1, 0x13, 0x5b, 0xc9, 0x03, - 0xc8, 0xa3, 0xef, 0x48, 0xf7, 0xec, 0x15, 0xdd, 0x73, 0xe8, 0x3b, 0xb1, 0xcd, 0xdc, 0x83, 0x7f, - 0x12, 0xaa, 0xcc, 0xc6, 0xb3, 0x1e, 0x32, 0x4e, 0xee, 0xc3, 0xc2, 0x59, 0x0f, 0xa3, 0x73, 0x43, - 0xab, 0x66, 0x6b, 0x85, 0xe6, 0xba, 0x35, 0xa5, 0x87, 0x35, 0xfe, 0x3c, 0x5b, 0xe2, 0xcd, 0x32, - 0x90, 0x36, 0xf2, 0x7d, 0x8c, 0xfa, 0xee, 0x30, 0x9c, 0xd9, 0x80, 0x95, 0x31, 0x2b, 0x0b, 0x03, - 0x9f, 0x21, 0xa9, 0x40, 0x9e, 0x29, 0x9b, 0x48, 0xa4, 0xdb, 0xe9, 0xdd, 0xfc, 0x04, 0xe5, 0x36, - 0xf2, 0x17, 0x21, 0x4a, 0x39, 0x53, 0x66, 0x06, 0xe4, 0x14, 0x46, 0x54, 0x51, 0xb7, 0x93, 0x2b, - 0x79, 0x02, 0x3a, 0x0b, 0xa9, 0xdf, 0xf9, 0xe8, 0xfa, 0x8e, 0x28, 0x62, 0xa9, 0x79, 0xd7, 0x1a, - 0x53, 0x4c, 0x16, 0xc3, 0x92, 0x42, 0xf5, 0x1b, 0xd6, 0x7e, 0x48, 0x7d, 0xf1, 0xd9, 0x73, 0x7d, - 0xc7, 0xce, 0x33, 0x75, 0x32, 0x5d, 0xd0, 0xd3, 0xc4, 0x84, 0xc0, 0xbc, 0x4f, 0xbd, 0x24, 0x9b, - 0x38, 0xff, 0xc5, 0x54, 0xaf, 0xe1, 0xdf, 0x89, 0x67, 0xaa, 0xda, 0x3c, 0x04, 0x08, 0x52, 0xab, - 0x92, 0xe1, 0xff, 0x19, 0x32, 0xa4, 0xae, 0xf6, 0x08, 0xde, 0xfc, 0x99, 0x85, 0xb2, 0x50, 0xe7, - 0x55, 0xac, 0x8a, 0x90, 0x08, 0x39, 0x46, 0x8c, 0xac, 0x43, 0x51, 0xd5, 0xab, 0x33, 0xf2, 0xaa, - 0x82, 0xb2, 0x3d, 0x8f, 0x1f, 0xb7, 0x01, 0xa5, 0x34, 0x92, 0x04, 0xcd, 0x09, 0xd0, 0x52, 0x6a, - 0x15, 0xb0, 0x36, 0x00, 0xe5, 0x3c, 0x72, 0x8f, 0x7a, 0x1c, 0x99, 0x91, 0x15, 0x04, 0x37, 0x67, - 0x16, 0x41, 0xcd, 0x50, 0xbf, 0x61, 0xed, 0xe1, 0xf9, 0x1b, 0x7a, 0xda, 0x43, 0x7b, 0xc4, 0x95, - 0x3c, 0x85, 0xd2, 0xb0, 0xfb, 0x3b, 0x9e, 0xeb, 0x1b, 0xf3, 0x97, 0xb6, 0x70, 0xfe, 0xdb, 0xf7, - 0xb5, 0x8c, 0x68, 0xe3, 0x62, 0x3a, 0x05, 0xcf, 0x5c, 0x7f, 0x32, 0x16, 0x1d, 0x18, 0x0b, 0xd7, - 0x8b, 0x45, 0x07, 0x64, 0x07, 0x8a, 0xc9, 0x32, 0x11, 0xac, 0x16, 0x45, 0xa4, 0xd5, 0xa9, 0x48, - 0x2d, 0x05, 0x92, 0x81, 0xbe, 0xc4, 0x81, 0x0a, 0x89, 0x63, 0xcc, 0x69, 0x2c, 0x0e, 0x1d, 0x18, - 0xb9, 0xeb, 0xc4, 0xa1, 0x03, 0x29, 0x1d, 0x8d, 0x8e, 0x4f, 0x3a, 0x0e, 0x86, 0xfc, 0xc4, 0xc8, - 0x57, 0xb5, 0xda, 0x42, 0x2c, 0x5d, 0x6c, 0x6b, 0xc5, 0x26, 0xd3, 0x86, 0xe5, 0x1d, 0xd7, 0x77, - 0xc6, 0x67, 0xf9, 0xd1, 0x70, 0x96, 0x35, 0xa1, 0xd1, 0x74, 0x13, 0xcd, 0x6a, 0x95, 0x64, 0xa2, - 0xb7, 0xa0, 0x9c, 0xc6, 0xdc, 0x6d, 0x0d, 0x1b, 0xf4, 0x3f, 0xd0, 0x93, 0x7d, 0x26, 0xfb, 0xb3, - 0x68, 0xe7, 0xd5, 0x42, 0x63, 0xcd, 0x5f, 0x59, 0x28, 0x08, 0x0f, 0x1b, 0xa9, 0x83, 0x11, 0x39, - 0x04, 0x3d, 0xdd, 0x31, 0xe4, 0xe6, 0x05, 0xdb, 0x24, 0x61, 0x5d, 0xa9, 0x5d, 0x3c, 0x4f, 0x12, - 0xdc, 0xa2, 0x9c, 0x9a, 0x99, 0x7b, 0x1a, 0x39, 0x84, 0xc2, 0xc8, 0x82, 0x21, 0x1b, 0xb3, 0x33, - 0x4c, 0xac, 0xa5, 0xca, 0xed, 0xcb, 0x60, 0xf2, 0xa9, 0x66, 0x86, 0x38, 0xb0, 0x34, 0x36, 0xa6, - 0x64, 0x73, 0xb6, 0xeb, 0xd4, 0xbe, 0xaa, 0xd4, 0x2e, 0x07, 0xa6, 0x59, 0xde, 0x01, 0x0c, 0xe5, - 0x23, 0xb7, 0x66, 0x78, 0x4e, 0xa9, 0xfb, 0x87, 0x75, 0xea, 0x40, 0x71, 0x54, 0xcc, 0x2b, 0xe6, - 0xd8, 0xbc, 0x08, 0x35, 0xd2, 0x13, 0x66, 0x66, 0x5b, 0x7f, 0x9b, 0x53, 0xa0, 0xa3, 0x45, 0x41, - 0x65, 0xeb, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdf, 0xf5, 0x16, 0xea, 0xe1, 0x07, 0x00, 0x00, + 0x10, 0x8e, 0x9b, 0xa6, 0x89, 0x27, 0x69, 0x74, 0xba, 0xcd, 0x91, 0xdc, 0xe8, 0xe8, 0x24, 0xf5, + 0x39, 0xa5, 0x11, 0x48, 0x0e, 0x09, 0x12, 0x48, 0xfc, 0x08, 0xa9, 0x8a, 0x1a, 0x4a, 0xc5, 0x9f, + 0x5b, 0xb8, 0xe0, 0xa2, 0x61, 0x5b, 0x2f, 0xa9, 0xa1, 0x5e, 0xbb, 0xf6, 0x26, 0x4a, 0x79, 0x0a, + 0x2e, 0xb9, 0xe1, 0x01, 0x78, 0x13, 0x9e, 0x02, 0x5e, 0x02, 0x71, 0x8d, 0xbc, 0xbb, 0x76, 0x9c, + 0xc4, 0x4a, 0x43, 0xc5, 0x8d, 0xb5, 0x3b, 0xfe, 0x66, 0x76, 0xe6, 0xfb, 0x66, 0x06, 0xd6, 0x99, + 0x8f, 0x4f, 0x48, 0x2f, 0x60, 0xae, 0x8f, 0xfb, 0xc4, 0xf0, 0x7c, 0x97, 0xb9, 0x68, 0xed, 0x1d, + 0x26, 0x7d, 0xe2, 0x1b, 0x91, 0x75, 0xd8, 0xae, 0x56, 0xfa, 0x6e, 0xdf, 0xe5, 0x7f, 0x9b, 0xe1, + 0x49, 0x00, 0xab, 0xff, 0xf6, 0x5d, 0xb7, 0x7f, 0x46, 0x9a, 0xfc, 0x76, 0x3c, 0x78, 0xdb, 0xb4, + 0x06, 0x3e, 0x66, 0xb6, 0x4b, 0xe5, 0xff, 0xda, 0xf4, 0x7f, 0x66, 0x3b, 0x24, 0x60, 0xd8, 0xf1, + 0x24, 0xe0, 0xba, 0xeb, 0x11, 0xca, 0xc8, 0x19, 0x71, 0x08, 0xf3, 0x2f, 0x04, 0xae, 0x79, 0xe2, + 0x3a, 0x8e, 0x4b, 0x9b, 0xc3, 0x96, 0x3c, 0x49, 0x6c, 0x23, 0x0d, 0xcb, 0xd3, 0x0f, 0xa1, 0xfc, + 0x20, 0x90, 0xfa, 0x17, 0x05, 0xca, 0x5d, 0xc2, 0x0e, 0x43, 0xd3, 0x73, 0xec, 0x63, 0x27, 0x40, + 0x1b, 0x50, 0x10, 0x95, 0xda, 0x96, 0xa6, 0xd4, 0x95, 0x46, 0xc9, 0xcc, 0xf3, 0xfb, 0x9e, 0x85, + 0x1e, 0x02, 0x04, 0x0c, 0xfb, 0xac, 0x17, 0x26, 0xa7, 0x2d, 0xd5, 0x95, 0x46, 0xb1, 0x5d, 0x35, + 0x44, 0xe6, 0x46, 0x94, 0xb9, 0x71, 0x18, 0x65, 0xbe, 0xb3, 0xfc, 0xf1, 0x7b, 0x4d, 0x31, 0x55, + 0xee, 0x13, 0x5a, 0xd1, 0x3d, 0x28, 0x10, 0x6a, 0x09, 0xf7, 0xec, 0x82, 0xee, 0x79, 0x42, 0xad, + 0xd0, 0xa6, 0xef, 0xc3, 0x5f, 0x51, 0xaa, 0x81, 0x49, 0xce, 0x07, 0x24, 0x60, 0xe8, 0x0e, 0xe4, + 0xce, 0x07, 0xc4, 0xbf, 0xd0, 0x94, 0x7a, 0xb6, 0x51, 0x6c, 0x6f, 0x1a, 0x33, 0x7a, 0x18, 0x93, + 0xe5, 0x99, 0x02, 0xaf, 0x57, 0x00, 0x75, 0x09, 0x3b, 0x20, 0xfe, 0xd0, 0x1e, 0x87, 0xd3, 0x5b, + 0xb0, 0x3e, 0x61, 0x0d, 0x3c, 0x97, 0x06, 0x04, 0x55, 0xa1, 0x10, 0x48, 0x1b, 0x7f, 0x48, 0x35, + 0xe3, 0xbb, 0xfe, 0x01, 0x2a, 0x5d, 0xc2, 0x9e, 0x79, 0x44, 0xc8, 0x19, 0x67, 0xa6, 0x41, 0x5e, + 0x62, 0x38, 0x8b, 0xaa, 0x19, 0x5d, 0xd1, 0x23, 0x50, 0x03, 0x0f, 0xd3, 0xde, 0x7b, 0x9b, 0x5a, + 0x9c, 0xc4, 0x72, 0xfb, 0x86, 0x31, 0xa1, 0x98, 0x20, 0xc3, 0x10, 0x42, 0x0d, 0x5b, 0xc6, 0x81, + 0x87, 0x29, 0xff, 0xec, 0xdb, 0xd4, 0x32, 0x0b, 0x81, 0x3c, 0xe9, 0x36, 0xa8, 0xf1, 0xc3, 0x08, + 0xc1, 0x32, 0xc5, 0x4e, 0xf4, 0x1a, 0x3f, 0xff, 0xc1, 0xa7, 0x5e, 0xc2, 0xdf, 0x53, 0x65, 0x4a, + 0x6e, 0xee, 0x03, 0xb8, 0xb1, 0x55, 0xca, 0xf0, 0x4f, 0x8a, 0x0c, 0xb1, 0xab, 0x99, 0xc0, 0xeb, + 0x3f, 0xb2, 0x50, 0xe1, 0xea, 0xbc, 0x08, 0x55, 0xe1, 0x12, 0x11, 0x46, 0xfc, 0x00, 0x6d, 0x42, + 0x49, 0xf2, 0xd5, 0x4b, 0x54, 0x55, 0x94, 0xb6, 0xa7, 0x61, 0x71, 0x5b, 0x50, 0x8e, 0x23, 0x09, + 0xd0, 0x12, 0x07, 0xad, 0xc6, 0x56, 0x0e, 0xeb, 0x02, 0x60, 0xc6, 0x7c, 0xfb, 0x78, 0xc0, 0x48, + 0xa0, 0x65, 0x79, 0x82, 0xdb, 0xa9, 0x24, 0xc8, 0x19, 0x1a, 0xb6, 0x8c, 0x7d, 0x72, 0xf1, 0x0a, + 0x9f, 0x0d, 0x88, 0x99, 0x70, 0x45, 0x8f, 0xa1, 0x3c, 0xee, 0xfe, 0x9e, 0x63, 0x53, 0x6d, 0xf9, + 0xd2, 0x16, 0x2e, 0x7c, 0xfd, 0x56, 0xcb, 0xf0, 0x36, 0x2e, 0xc5, 0x53, 0xf0, 0xc4, 0xa6, 0xd3, + 0xb1, 0xf0, 0x48, 0xcb, 0x5d, 0x2d, 0x16, 0x1e, 0xa1, 0x5d, 0x28, 0x45, 0xcb, 0x84, 0x67, 0xb5, + 0xc2, 0x23, 0x6d, 0xcc, 0x44, 0xea, 0x48, 0x90, 0x08, 0xf4, 0x29, 0x0c, 0x54, 0x8c, 0x1c, 0xc3, + 0x9c, 0x26, 0xe2, 0xe0, 0x91, 0x96, 0xbf, 0x4a, 0x1c, 0x3c, 0x12, 0xd2, 0x61, 0xff, 0xe4, 0xb4, + 0x67, 0x11, 0x8f, 0x9d, 0x6a, 0x85, 0xba, 0xd2, 0xc8, 0x85, 0xd2, 0x85, 0xb6, 0x4e, 0x68, 0xd2, + 0x4d, 0x58, 0xdb, 0xb5, 0xa9, 0x35, 0x39, 0xcb, 0x0f, 0xc6, 0xb3, 0xac, 0x70, 0x8d, 0x66, 0x9b, + 0x28, 0xad, 0x55, 0xa2, 0x89, 0xfe, 0xac, 0x40, 0x69, 0xd7, 0x1d, 0xc8, 0xa8, 0x7b, 0x9d, 0x79, + 0x8b, 0xec, 0x2e, 0xe4, 0x38, 0x85, 0x0b, 0xec, 0xb0, 0x31, 0xeb, 0xc2, 0x05, 0xdd, 0x86, 0x2c, + 0xa1, 0xd6, 0x02, 0xeb, 0x6b, 0xec, 0x19, 0x3a, 0xe8, 0x87, 0x50, 0x89, 0x6b, 0xde, 0xeb, 0x24, + 0x07, 0x48, 0x8d, 0xd2, 0x8c, 0xe6, 0xa7, 0x96, 0x52, 0x7a, 0xb2, 0x34, 0xb3, 0x20, 0x0b, 0x09, + 0xda, 0x3f, 0xb3, 0x50, 0xe4, 0x56, 0x93, 0x60, 0x8b, 0xf8, 0xe8, 0x08, 0xd4, 0x78, 0x49, 0xa2, + 0xff, 0xe6, 0xac, 0xc3, 0x88, 0xf6, 0x6a, 0x63, 0xfe, 0x42, 0x10, 0xe0, 0x0e, 0x66, 0x58, 0xcf, + 0xdc, 0x54, 0xd0, 0x11, 0x14, 0x13, 0x1b, 0x12, 0x6d, 0xa5, 0xbf, 0x30, 0xb5, 0x57, 0xab, 0xd7, + 0x2e, 0x83, 0x09, 0x2e, 0xf4, 0x0c, 0xb2, 0x60, 0x75, 0x62, 0xcf, 0xa0, 0xed, 0x74, 0xd7, 0x99, + 0x85, 0x5b, 0x6d, 0x5c, 0x0e, 0x8c, 0x5f, 0x79, 0x03, 0x30, 0xee, 0x3f, 0xf4, 0x7f, 0x1a, 0xdd, + 0xd3, 0xed, 0xf9, 0x9b, 0x3c, 0xf5, 0xa0, 0x94, 0x54, 0x7b, 0xc1, 0x37, 0xb6, 0xe7, 0xa1, 0x12, + 0x4d, 0xa3, 0x67, 0x76, 0xd4, 0xd7, 0x79, 0x09, 0x3a, 0x5e, 0xe1, 0xa9, 0xdc, 0xfa, 0x15, 0x00, + 0x00, 0xff, 0xff, 0x43, 0x46, 0xda, 0x51, 0xa2, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.