| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: tsdb_plugin.proto
- /*
- Package proto is a generated protocol buffer package.
- It is generated from these files:
- tsdb_plugin.proto
- It has these top-level messages:
- TsdbQuery
- Query
- TimeRange
- Response
- QueryResult
- Table
- TableColumn
- TableRow
- RowValue
- DatasourceInfo
- TimeSeries
- Point
- */
- package proto
- import proto1 "github.com/golang/protobuf/proto"
- import fmt "fmt"
- import math "math"
- import (
- context "golang.org/x/net/context"
- grpc "google.golang.org/grpc"
- )
- // Reference imports to suppress errors if they are not otherwise used.
- var _ = proto1.Marshal
- var _ = fmt.Errorf
- var _ = math.Inf
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the proto package it is being compiled against.
- // A compilation error at this line likely means your copy of the
- // proto package needs to be updated.
- const _ = proto1.ProtoPackageIsVersion2 // please upgrade the proto package
- type RowValue_Kind int32
- const (
- // Field type null.
- RowValue_TYPE_NULL RowValue_Kind = 0
- // Field type double.
- RowValue_TYPE_DOUBLE RowValue_Kind = 1
- // Field type int64.
- RowValue_TYPE_INT64 RowValue_Kind = 2
- // Field type bool.
- RowValue_TYPE_BOOL RowValue_Kind = 3
- // Field type string.
- RowValue_TYPE_STRING RowValue_Kind = 4
- // Field type bytes.
- RowValue_TYPE_BYTES RowValue_Kind = 5
- )
- var RowValue_Kind_name = map[int32]string{
- 0: "TYPE_NULL",
- 1: "TYPE_DOUBLE",
- 2: "TYPE_INT64",
- 3: "TYPE_BOOL",
- 4: "TYPE_STRING",
- 5: "TYPE_BYTES",
- }
- var RowValue_Kind_value = map[string]int32{
- "TYPE_NULL": 0,
- "TYPE_DOUBLE": 1,
- "TYPE_INT64": 2,
- "TYPE_BOOL": 3,
- "TYPE_STRING": 4,
- "TYPE_BYTES": 5,
- }
- func (x RowValue_Kind) String() string {
- return proto1.EnumName(RowValue_Kind_name, int32(x))
- }
- func (RowValue_Kind) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{8, 0} }
- type TsdbQuery struct {
- TimeRange *TimeRange `protobuf:"bytes,1,opt,name=timeRange" json:"timeRange,omitempty"`
- Datasource *DatasourceInfo `protobuf:"bytes,2,opt,name=datasource" json:"datasource,omitempty"`
- Queries []*Query `protobuf:"bytes,3,rep,name=queries" json:"queries,omitempty"`
- }
- func (m *TsdbQuery) Reset() { *m = TsdbQuery{} }
- func (m *TsdbQuery) String() string { return proto1.CompactTextString(m) }
- func (*TsdbQuery) ProtoMessage() {}
- func (*TsdbQuery) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
- func (m *TsdbQuery) GetTimeRange() *TimeRange {
- if m != nil {
- return m.TimeRange
- }
- return nil
- }
- func (m *TsdbQuery) GetDatasource() *DatasourceInfo {
- if m != nil {
- return m.Datasource
- }
- return nil
- }
- func (m *TsdbQuery) GetQueries() []*Query {
- if m != nil {
- return m.Queries
- }
- return nil
- }
- type Query struct {
- RefId string `protobuf:"bytes,1,opt,name=refId" json:"refId,omitempty"`
- MaxDataPoints int64 `protobuf:"varint,2,opt,name=maxDataPoints" json:"maxDataPoints,omitempty"`
- IntervalMs int64 `protobuf:"varint,3,opt,name=intervalMs" json:"intervalMs,omitempty"`
- ModelJson string `protobuf:"bytes,4,opt,name=modelJson" json:"modelJson,omitempty"`
- }
- func (m *Query) Reset() { *m = Query{} }
- func (m *Query) String() string { return proto1.CompactTextString(m) }
- func (*Query) ProtoMessage() {}
- func (*Query) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
- func (m *Query) GetRefId() string {
- if m != nil {
- return m.RefId
- }
- return ""
- }
- func (m *Query) GetMaxDataPoints() int64 {
- if m != nil {
- return m.MaxDataPoints
- }
- return 0
- }
- func (m *Query) GetIntervalMs() int64 {
- if m != nil {
- return m.IntervalMs
- }
- return 0
- }
- func (m *Query) GetModelJson() string {
- if m != nil {
- return m.ModelJson
- }
- return ""
- }
- type TimeRange struct {
- FromRaw string `protobuf:"bytes,1,opt,name=fromRaw" json:"fromRaw,omitempty"`
- ToRaw string `protobuf:"bytes,2,opt,name=toRaw" json:"toRaw,omitempty"`
- FromEpochMs int64 `protobuf:"varint,3,opt,name=fromEpochMs" json:"fromEpochMs,omitempty"`
- ToEpochMs int64 `protobuf:"varint,4,opt,name=toEpochMs" json:"toEpochMs,omitempty"`
- }
- func (m *TimeRange) Reset() { *m = TimeRange{} }
- func (m *TimeRange) String() string { return proto1.CompactTextString(m) }
- func (*TimeRange) ProtoMessage() {}
- func (*TimeRange) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
- func (m *TimeRange) GetFromRaw() string {
- if m != nil {
- return m.FromRaw
- }
- return ""
- }
- func (m *TimeRange) GetToRaw() string {
- if m != nil {
- return m.ToRaw
- }
- return ""
- }
- func (m *TimeRange) GetFromEpochMs() int64 {
- if m != nil {
- return m.FromEpochMs
- }
- return 0
- }
- func (m *TimeRange) GetToEpochMs() int64 {
- if m != nil {
- return m.ToEpochMs
- }
- return 0
- }
- type Response struct {
- Results []*QueryResult `protobuf:"bytes,1,rep,name=results" json:"results,omitempty"`
- }
- func (m *Response) Reset() { *m = Response{} }
- func (m *Response) String() string { return proto1.CompactTextString(m) }
- func (*Response) ProtoMessage() {}
- func (*Response) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
- func (m *Response) GetResults() []*QueryResult {
- if m != nil {
- return m.Results
- }
- return nil
- }
- type QueryResult struct {
- Error string `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"`
- RefId string `protobuf:"bytes,2,opt,name=refId" json:"refId,omitempty"`
- MetaJson string `protobuf:"bytes,3,opt,name=metaJson" json:"metaJson,omitempty"`
- Series []*TimeSeries `protobuf:"bytes,4,rep,name=series" json:"series,omitempty"`
- Tables []*Table `protobuf:"bytes,5,rep,name=tables" json:"tables,omitempty"`
- }
- func (m *QueryResult) Reset() { *m = QueryResult{} }
- func (m *QueryResult) String() string { return proto1.CompactTextString(m) }
- func (*QueryResult) ProtoMessage() {}
- func (*QueryResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
- func (m *QueryResult) GetError() string {
- if m != nil {
- return m.Error
- }
- return ""
- }
- func (m *QueryResult) GetRefId() string {
- if m != nil {
- return m.RefId
- }
- return ""
- }
- func (m *QueryResult) GetMetaJson() string {
- if m != nil {
- return m.MetaJson
- }
- return ""
- }
- func (m *QueryResult) GetSeries() []*TimeSeries {
- if m != nil {
- return m.Series
- }
- return nil
- }
- func (m *QueryResult) GetTables() []*Table {
- if m != nil {
- return m.Tables
- }
- return nil
- }
- type Table struct {
- Columns []*TableColumn `protobuf:"bytes,1,rep,name=columns" json:"columns,omitempty"`
- Rows []*TableRow `protobuf:"bytes,2,rep,name=rows" json:"rows,omitempty"`
- }
- func (m *Table) Reset() { *m = Table{} }
- func (m *Table) String() string { return proto1.CompactTextString(m) }
- func (*Table) ProtoMessage() {}
- func (*Table) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
- func (m *Table) GetColumns() []*TableColumn {
- if m != nil {
- return m.Columns
- }
- return nil
- }
- func (m *Table) GetRows() []*TableRow {
- if m != nil {
- return m.Rows
- }
- return nil
- }
- type TableColumn struct {
- Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
- }
- func (m *TableColumn) Reset() { *m = TableColumn{} }
- func (m *TableColumn) String() string { return proto1.CompactTextString(m) }
- func (*TableColumn) ProtoMessage() {}
- func (*TableColumn) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
- func (m *TableColumn) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- type TableRow struct {
- Values []*RowValue `protobuf:"bytes,1,rep,name=values" json:"values,omitempty"`
- }
- func (m *TableRow) Reset() { *m = TableRow{} }
- func (m *TableRow) String() string { return proto1.CompactTextString(m) }
- func (*TableRow) ProtoMessage() {}
- func (*TableRow) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
- func (m *TableRow) GetValues() []*RowValue {
- if m != nil {
- return m.Values
- }
- return nil
- }
- type RowValue struct {
- Kind RowValue_Kind `protobuf:"varint,1,opt,name=kind,enum=plugins.RowValue_Kind" json:"kind,omitempty"`
- DoubleValue float64 `protobuf:"fixed64,2,opt,name=doubleValue" json:"doubleValue,omitempty"`
- Int64Value int64 `protobuf:"varint,3,opt,name=int64Value" json:"int64Value,omitempty"`
- BoolValue bool `protobuf:"varint,4,opt,name=boolValue" json:"boolValue,omitempty"`
- StringValue string `protobuf:"bytes,5,opt,name=stringValue" json:"stringValue,omitempty"`
- BytesValue []byte `protobuf:"bytes,6,opt,name=bytesValue,proto3" json:"bytesValue,omitempty"`
- }
- func (m *RowValue) Reset() { *m = RowValue{} }
- func (m *RowValue) String() string { return proto1.CompactTextString(m) }
- func (*RowValue) ProtoMessage() {}
- func (*RowValue) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
- func (m *RowValue) GetKind() RowValue_Kind {
- if m != nil {
- return m.Kind
- }
- return RowValue_TYPE_NULL
- }
- func (m *RowValue) GetDoubleValue() float64 {
- if m != nil {
- return m.DoubleValue
- }
- return 0
- }
- func (m *RowValue) GetInt64Value() int64 {
- if m != nil {
- return m.Int64Value
- }
- return 0
- }
- func (m *RowValue) GetBoolValue() bool {
- if m != nil {
- return m.BoolValue
- }
- return false
- }
- func (m *RowValue) GetStringValue() string {
- if m != nil {
- return m.StringValue
- }
- return ""
- }
- func (m *RowValue) GetBytesValue() []byte {
- if m != nil {
- return m.BytesValue
- }
- return nil
- }
- type DatasourceInfo struct {
- Id int64 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
- OrgId int64 `protobuf:"varint,2,opt,name=orgId" json:"orgId,omitempty"`
- Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
- Type string `protobuf:"bytes,4,opt,name=type" json:"type,omitempty"`
- Url string `protobuf:"bytes,5,opt,name=url" json:"url,omitempty"`
- JsonData string `protobuf:"bytes,6,opt,name=jsonData" json:"jsonData,omitempty"`
- SecureJsonData string `protobuf:"bytes,7,opt,name=secureJsonData" json:"secureJsonData,omitempty"`
- }
- func (m *DatasourceInfo) Reset() { *m = DatasourceInfo{} }
- func (m *DatasourceInfo) String() string { return proto1.CompactTextString(m) }
- func (*DatasourceInfo) ProtoMessage() {}
- func (*DatasourceInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
- func (m *DatasourceInfo) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *DatasourceInfo) GetOrgId() int64 {
- if m != nil {
- return m.OrgId
- }
- return 0
- }
- func (m *DatasourceInfo) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *DatasourceInfo) GetType() string {
- if m != nil {
- return m.Type
- }
- return ""
- }
- func (m *DatasourceInfo) GetUrl() string {
- if m != nil {
- return m.Url
- }
- return ""
- }
- func (m *DatasourceInfo) GetJsonData() string {
- if m != nil {
- return m.JsonData
- }
- return ""
- }
- func (m *DatasourceInfo) GetSecureJsonData() string {
- if m != nil {
- return m.SecureJsonData
- }
- return ""
- }
- type TimeSeries struct {
- Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
- Tags map[string]string `protobuf:"bytes,2,rep,name=tags" json:"tags,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
- Points []*Point `protobuf:"bytes,3,rep,name=points" json:"points,omitempty"`
- }
- func (m *TimeSeries) Reset() { *m = TimeSeries{} }
- func (m *TimeSeries) String() string { return proto1.CompactTextString(m) }
- func (*TimeSeries) ProtoMessage() {}
- func (*TimeSeries) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
- func (m *TimeSeries) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *TimeSeries) GetTags() map[string]string {
- if m != nil {
- return m.Tags
- }
- return nil
- }
- func (m *TimeSeries) GetPoints() []*Point {
- if m != nil {
- return m.Points
- }
- return nil
- }
- type Point struct {
- Timestamp int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
- Value float64 `protobuf:"fixed64,2,opt,name=value" json:"value,omitempty"`
- }
- func (m *Point) Reset() { *m = Point{} }
- func (m *Point) String() string { return proto1.CompactTextString(m) }
- func (*Point) ProtoMessage() {}
- func (*Point) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
- func (m *Point) GetTimestamp() int64 {
- if m != nil {
- return m.Timestamp
- }
- return 0
- }
- func (m *Point) GetValue() float64 {
- if m != nil {
- return m.Value
- }
- return 0
- }
- func init() {
- proto1.RegisterType((*TsdbQuery)(nil), "plugins.TsdbQuery")
- proto1.RegisterType((*Query)(nil), "plugins.Query")
- proto1.RegisterType((*TimeRange)(nil), "plugins.TimeRange")
- proto1.RegisterType((*Response)(nil), "plugins.Response")
- proto1.RegisterType((*QueryResult)(nil), "plugins.QueryResult")
- proto1.RegisterType((*Table)(nil), "plugins.Table")
- proto1.RegisterType((*TableColumn)(nil), "plugins.TableColumn")
- proto1.RegisterType((*TableRow)(nil), "plugins.TableRow")
- proto1.RegisterType((*RowValue)(nil), "plugins.RowValue")
- proto1.RegisterType((*DatasourceInfo)(nil), "plugins.DatasourceInfo")
- proto1.RegisterType((*TimeSeries)(nil), "plugins.TimeSeries")
- proto1.RegisterType((*Point)(nil), "plugins.Point")
- proto1.RegisterEnum("plugins.RowValue_Kind", RowValue_Kind_name, RowValue_Kind_value)
- }
- // Reference imports to suppress errors if they are not otherwise used.
- var _ context.Context
- var _ grpc.ClientConn
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the grpc package it is being compiled against.
- const _ = grpc.SupportPackageIsVersion4
- // Client API for TsdbPlugin service
- type TsdbPluginClient interface {
- Query(ctx context.Context, in *TsdbQuery, opts ...grpc.CallOption) (*Response, error)
- }
- type tsdbPluginClient struct {
- cc *grpc.ClientConn
- }
- func NewTsdbPluginClient(cc *grpc.ClientConn) TsdbPluginClient {
- return &tsdbPluginClient{cc}
- }
- func (c *tsdbPluginClient) Query(ctx context.Context, in *TsdbQuery, opts ...grpc.CallOption) (*Response, error) {
- out := new(Response)
- err := grpc.Invoke(ctx, "/plugins.TsdbPlugin/Query", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- // Server API for TsdbPlugin service
- type TsdbPluginServer interface {
- Query(context.Context, *TsdbQuery) (*Response, error)
- }
- func RegisterTsdbPluginServer(s *grpc.Server, srv TsdbPluginServer) {
- s.RegisterService(&_TsdbPlugin_serviceDesc, srv)
- }
- func _TsdbPlugin_Query_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(TsdbQuery)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TsdbPluginServer).Query(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/plugins.TsdbPlugin/Query",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TsdbPluginServer).Query(ctx, req.(*TsdbQuery))
- }
- return interceptor(ctx, in, info, handler)
- }
- var _TsdbPlugin_serviceDesc = grpc.ServiceDesc{
- ServiceName: "plugins.TsdbPlugin",
- HandlerType: (*TsdbPluginServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "Query",
- Handler: _TsdbPlugin_Query_Handler,
- },
- },
- Streams: []grpc.StreamDesc{},
- Metadata: "tsdb_plugin.proto",
- }
- func init() { proto1.RegisterFile("tsdb_plugin.proto", fileDescriptor0) }
- var fileDescriptor0 = []byte{
- // 811 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x55, 0x5d, 0x8f, 0x1b, 0x35,
- 0x14, 0x65, 0xbe, 0x92, 0xcc, 0x0d, 0x0d, 0xa9, 0xa9, 0x20, 0x5a, 0x01, 0x5a, 0x46, 0x50, 0x05,
- 0x90, 0x22, 0x08, 0xa5, 0x45, 0x85, 0xa7, 0xd0, 0x08, 0xa5, 0x84, 0xdd, 0xc5, 0x3b, 0x45, 0x2a,
- 0x0f, 0x54, 0x93, 0x8c, 0x13, 0x86, 0xce, 0x8c, 0x83, 0xed, 0xd9, 0x10, 0xf1, 0xc4, 0x3f, 0xe1,
- 0x99, 0x67, 0x7e, 0x00, 0x3f, 0xad, 0xf2, 0x1d, 0xcf, 0x47, 0xd2, 0x7d, 0x9a, 0xb9, 0xe7, 0x1c,
- 0x5f, 0x5f, 0x5f, 0x1f, 0xdb, 0x70, 0x57, 0xc9, 0x78, 0xf5, 0x62, 0x97, 0x16, 0xdb, 0x24, 0x9f,
- 0xec, 0x04, 0x57, 0x9c, 0x74, 0xcb, 0x48, 0x06, 0xff, 0x58, 0xe0, 0x87, 0x32, 0x5e, 0xfd, 0x54,
- 0x30, 0x71, 0x20, 0x9f, 0x83, 0xaf, 0x92, 0x8c, 0xd1, 0x28, 0xdf, 0xb2, 0x91, 0x75, 0x6e, 0x8d,
- 0xfb, 0x53, 0x32, 0x31, 0xd2, 0x49, 0x58, 0x31, 0xb4, 0x11, 0x91, 0x47, 0x00, 0x71, 0xa4, 0x22,
- 0xc9, 0x0b, 0xb1, 0x66, 0x23, 0x1b, 0x87, 0xbc, 0x5b, 0x0f, 0x79, 0x52, 0x53, 0x8b, 0x7c, 0xc3,
- 0x69, 0x4b, 0x4a, 0xc6, 0xd0, 0xfd, 0xa3, 0x60, 0x22, 0x61, 0x72, 0xe4, 0x9c, 0x3b, 0xe3, 0xfe,
- 0x74, 0x50, 0x8f, 0xc2, 0x5a, 0x68, 0x45, 0x07, 0x7f, 0x5b, 0xe0, 0x95, 0xe5, 0xdd, 0x03, 0x4f,
- 0xb0, 0xcd, 0x22, 0xc6, 0xd2, 0x7c, 0x5a, 0x06, 0xe4, 0x23, 0xb8, 0x93, 0x45, 0x7f, 0xea, 0xa9,
- 0xae, 0x78, 0x92, 0x2b, 0x89, 0x55, 0x38, 0xf4, 0x18, 0x24, 0x1f, 0x00, 0x24, 0xb9, 0x62, 0xe2,
- 0x26, 0x4a, 0x7f, 0xd4, 0x53, 0x6a, 0x49, 0x0b, 0x21, 0xef, 0x81, 0x9f, 0xf1, 0x98, 0xa5, 0x4f,
- 0x25, 0xcf, 0x47, 0x2e, 0xe6, 0x6f, 0x80, 0xe0, 0x2f, 0xf0, 0xeb, 0xe5, 0x93, 0x11, 0x74, 0x37,
- 0x82, 0x67, 0x34, 0xda, 0x9b, 0x42, 0xaa, 0x50, 0x17, 0xa8, 0xb8, 0xc6, 0xed, 0xb2, 0x40, 0x0c,
- 0xc8, 0x39, 0xf4, 0xb5, 0x60, 0xbe, 0xe3, 0xeb, 0xdf, 0xea, 0xb9, 0xdb, 0x90, 0x9e, 0x5c, 0xf1,
- 0x8a, 0x77, 0x91, 0x6f, 0x80, 0xe0, 0x31, 0xf4, 0x28, 0x93, 0x3b, 0x9e, 0x4b, 0x46, 0x26, 0xd0,
- 0x15, 0x4c, 0x16, 0xa9, 0x92, 0x23, 0x0b, 0xdb, 0x76, 0xef, 0xa4, 0x6d, 0x48, 0xd2, 0x4a, 0x14,
- 0xfc, 0x6b, 0x41, 0xbf, 0x45, 0xe8, 0x0a, 0x99, 0x10, 0x5c, 0x54, 0x2d, 0xc4, 0xa0, 0x69, 0xac,
- 0xdd, 0x6e, 0xec, 0x19, 0xf4, 0x32, 0xa6, 0x22, 0xec, 0x88, 0x83, 0x44, 0x1d, 0x93, 0xcf, 0xa0,
- 0x23, 0xcb, 0xdd, 0x73, 0xb1, 0x8c, 0xb7, 0x8f, 0x6c, 0x72, 0x8d, 0x14, 0x35, 0x12, 0x72, 0x1f,
- 0x3a, 0x2a, 0x5a, 0xa5, 0x4c, 0x8e, 0xbc, 0x93, 0xad, 0x0e, 0x35, 0x4c, 0x0d, 0x1b, 0xfc, 0x0a,
- 0x1e, 0x02, 0x7a, 0x95, 0x6b, 0x9e, 0x16, 0x59, 0xfe, 0xfa, 0x2a, 0x51, 0xf0, 0x1d, 0x92, 0xb4,
- 0x12, 0x91, 0x8f, 0xc1, 0x15, 0x7c, 0xaf, 0x77, 0x5e, 0x8b, 0xef, 0x9e, 0xa4, 0xe7, 0x7b, 0x8a,
- 0x74, 0xf0, 0x21, 0xf4, 0x5b, 0xc3, 0x09, 0x01, 0x37, 0x8f, 0x32, 0x66, 0x5a, 0x81, 0xff, 0xc1,
- 0x57, 0xd0, 0xab, 0x06, 0x91, 0x4f, 0xa0, 0x73, 0x13, 0xa5, 0x05, 0xab, 0x8a, 0x68, 0xf2, 0x52,
- 0xbe, 0xff, 0x59, 0x33, 0xd4, 0x08, 0x82, 0xff, 0x6d, 0xe8, 0x55, 0x20, 0xf9, 0x14, 0xdc, 0x97,
- 0x49, 0x5e, 0xba, 0x74, 0x30, 0x7d, 0xe7, 0xb5, 0x51, 0x93, 0x1f, 0x92, 0x3c, 0xa6, 0xa8, 0xd1,
- 0xde, 0x88, 0x79, 0xb1, 0x4a, 0x19, 0x32, 0xd8, 0x7f, 0x8b, 0xb6, 0x21, 0x63, 0xdc, 0x87, 0x0f,
- 0x4a, 0x41, 0x63, 0x5c, 0x83, 0x68, 0xef, 0xac, 0x38, 0x4f, 0x4b, 0x5a, 0x7b, 0xa7, 0x47, 0x1b,
- 0x40, 0xe7, 0x97, 0x4a, 0x24, 0xf9, 0xb6, 0xe4, 0x3d, 0x5c, 0x6a, 0x1b, 0xd2, 0xf9, 0x57, 0x07,
- 0xc5, 0x64, 0x29, 0xe8, 0x9c, 0x5b, 0xe3, 0x37, 0x69, 0x0b, 0x09, 0x36, 0xe0, 0xea, 0x7a, 0xc9,
- 0x1d, 0xf0, 0xc3, 0xe7, 0x57, 0xf3, 0x17, 0x17, 0xcf, 0x96, 0xcb, 0xe1, 0x1b, 0xe4, 0x2d, 0xe8,
- 0x63, 0xf8, 0xe4, 0xf2, 0xd9, 0x6c, 0x39, 0x1f, 0x5a, 0x64, 0x00, 0x80, 0xc0, 0xe2, 0x22, 0x7c,
- 0xf8, 0x60, 0x68, 0xd7, 0xfa, 0xd9, 0xe5, 0xe5, 0x72, 0xe8, 0xd4, 0xfa, 0xeb, 0x90, 0x2e, 0x2e,
- 0xbe, 0x1f, 0xba, 0xb5, 0x7e, 0xf6, 0x3c, 0x9c, 0x5f, 0x0f, 0xbd, 0xe0, 0x3f, 0x0b, 0x06, 0xc7,
- 0xf7, 0x05, 0x19, 0x80, 0x9d, 0x94, 0x6d, 0x74, 0xa8, 0x9d, 0xc4, 0xda, 0xa6, 0x5c, 0x6c, 0x8d,
- 0x4d, 0x1d, 0x5a, 0x06, 0xf5, 0x36, 0x3a, 0xcd, 0x36, 0x6a, 0x4c, 0x1d, 0x76, 0xcc, 0x1c, 0x64,
- 0xfc, 0x27, 0x43, 0x70, 0x0a, 0x91, 0x9a, 0x16, 0xe8, 0x5f, 0x6d, 0xf0, 0xdf, 0x25, 0xcf, 0xf5,
- 0xac, 0xb8, 0x70, 0x9f, 0xd6, 0x31, 0xb9, 0x0f, 0x03, 0xc9, 0xd6, 0x85, 0x60, 0x4f, 0x2b, 0x45,
- 0x17, 0x15, 0x27, 0xa8, 0x2e, 0x1b, 0x1a, 0xcb, 0xdf, 0xe6, 0x29, 0xf2, 0x05, 0xb8, 0x2a, 0xda,
- 0x56, 0xee, 0x7c, 0xff, 0x96, 0x93, 0x32, 0x09, 0xa3, 0xad, 0x9c, 0xe7, 0x4a, 0x1c, 0x28, 0x4a,
- 0xf5, 0x89, 0xd9, 0x95, 0x97, 0xd9, 0xe9, 0xe5, 0x88, 0xd7, 0x19, 0x35, 0xec, 0xd9, 0x23, 0xf0,
- 0xeb, 0xa1, 0x7a, 0x81, 0x2f, 0xd9, 0xc1, 0x4c, 0xad, 0x7f, 0x75, 0xc3, 0x6e, 0x6a, 0x5f, 0xf9,
- 0xb4, 0x0c, 0x1e, 0xdb, 0x5f, 0x5b, 0xc1, 0x37, 0xe0, 0x61, 0x26, 0xbc, 0x7a, 0x92, 0x8c, 0x49,
- 0x15, 0x65, 0x3b, 0xd3, 0xea, 0x06, 0x38, 0x4e, 0x60, 0x99, 0x04, 0xd3, 0x6f, 0x01, 0xf4, 0x9b,
- 0x71, 0x85, 0x25, 0x91, 0x49, 0x75, 0x3d, 0xb7, 0x9e, 0x8a, 0xea, 0x45, 0x39, 0x6b, 0x9d, 0x19,
- 0x73, 0x85, 0xcd, 0xba, 0xbf, 0x78, 0xf8, 0x08, 0xad, 0x3a, 0xf8, 0xf9, 0xf2, 0x55, 0x00, 0x00,
- 0x00, 0xff, 0xff, 0x58, 0xae, 0x00, 0xd6, 0xa0, 0x06, 0x00, 0x00,
- }
|