chronograf/bolt/internal/internal.pb.go

430 lines
22 KiB
Go
Raw Normal View History

// Code generated by protoc-gen-gogo.
// source: internal.proto
// DO NOT EDIT!
/*
Package internal is a generated protocol buffer package.
It is generated from these files:
internal.proto
It has these top-level messages:
Source
2016-12-13 11:07:24 +00:00
Dashboard
DashboardCell
Axis
2017-04-26 21:29:20 +00:00
Template
TemplateValue
TemplateQuery
Server
2016-10-06 04:26:39 +00:00
Layout
Cell
Query
Range
AlertRule
User
Permission
Role
*/
package internal
import proto "github.com/gogo/protobuf/proto"
import fmt "fmt"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.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 _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
type Source struct {
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
Name string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
Type string `protobuf:"bytes,3,opt,name=Type,proto3" json:"Type,omitempty"`
Username string `protobuf:"bytes,4,opt,name=Username,proto3" json:"Username,omitempty"`
Password string `protobuf:"bytes,5,opt,name=Password,proto3" json:"Password,omitempty"`
URL string `protobuf:"bytes,6,opt,name=URL,proto3" json:"URL,omitempty"`
Default bool `protobuf:"varint,7,opt,name=Default,proto3" json:"Default,omitempty"`
Telegraf string `protobuf:"bytes,8,opt,name=Telegraf,proto3" json:"Telegraf,omitempty"`
InsecureSkipVerify bool `protobuf:"varint,9,opt,name=InsecureSkipVerify,proto3" json:"InsecureSkipVerify,omitempty"`
2017-02-07 23:57:51 +00:00
MetaURL string `protobuf:"bytes,10,opt,name=MetaURL,proto3" json:"MetaURL,omitempty"`
SharedSecret string `protobuf:"bytes,11,opt,name=SharedSecret,proto3" json:"SharedSecret,omitempty"`
}
func (m *Source) Reset() { *m = Source{} }
func (m *Source) String() string { return proto.CompactTextString(m) }
func (*Source) ProtoMessage() {}
func (*Source) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{0} }
2016-12-13 11:07:24 +00:00
type Dashboard struct {
2017-04-26 21:29:20 +00:00
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
Name string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
Cells []*DashboardCell `protobuf:"bytes,3,rep,name=cells" json:"cells,omitempty"`
Templates []*Template `protobuf:"bytes,4,rep,name=templates" json:"templates,omitempty"`
2016-12-13 11:07:24 +00:00
}
func (m *Dashboard) Reset() { *m = Dashboard{} }
func (m *Dashboard) String() string { return proto.CompactTextString(m) }
func (*Dashboard) ProtoMessage() {}
func (*Dashboard) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{1} }
2016-12-13 11:07:24 +00:00
func (m *Dashboard) GetCells() []*DashboardCell {
if m != nil {
return m.Cells
}
return nil
}
2017-04-26 21:29:20 +00:00
func (m *Dashboard) GetTemplates() []*Template {
if m != nil {
return m.Templates
}
return nil
}
2016-12-13 11:07:24 +00:00
type DashboardCell struct {
X int32 `protobuf:"varint,1,opt,name=x,proto3" json:"x,omitempty"`
Y int32 `protobuf:"varint,2,opt,name=y,proto3" json:"y,omitempty"`
W int32 `protobuf:"varint,3,opt,name=w,proto3" json:"w,omitempty"`
H int32 `protobuf:"varint,4,opt,name=h,proto3" json:"h,omitempty"`
Queries []*Query `protobuf:"bytes,5,rep,name=queries" json:"queries,omitempty"`
Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
Type string `protobuf:"bytes,7,opt,name=type,proto3" json:"type,omitempty"`
ID string `protobuf:"bytes,8,opt,name=ID,proto3" json:"ID,omitempty"`
Axes map[string]*Axis `protobuf:"bytes,9,rep,name=axes" json:"axes,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"`
2016-12-13 11:07:24 +00:00
}
func (m *DashboardCell) Reset() { *m = DashboardCell{} }
func (m *DashboardCell) String() string { return proto.CompactTextString(m) }
func (*DashboardCell) ProtoMessage() {}
func (*DashboardCell) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{2} }
2016-12-13 11:07:24 +00:00
func (m *DashboardCell) GetQueries() []*Query {
if m != nil {
return m.Queries
}
return nil
}
func (m *DashboardCell) GetAxes() map[string]*Axis {
if m != nil {
return m.Axes
}
return nil
}
type Axis struct {
LegacyBounds []int64 `protobuf:"varint,1,rep,name=legacyBounds" json:"legacyBounds,omitempty"`
Bounds []string `protobuf:"bytes,2,rep,name=bounds" json:"bounds,omitempty"`
Label string `protobuf:"bytes,3,opt,name=label,proto3" json:"label,omitempty"`
Prefix string `protobuf:"bytes,4,opt,name=prefix,proto3" json:"prefix,omitempty"`
Suffix string `protobuf:"bytes,5,opt,name=suffix,proto3" json:"suffix,omitempty"`
Base string `protobuf:"bytes,6,opt,name=base,proto3" json:"base,omitempty"`
Scale string `protobuf:"bytes,7,opt,name=scale,proto3" json:"scale,omitempty"`
}
func (m *Axis) Reset() { *m = Axis{} }
func (m *Axis) String() string { return proto.CompactTextString(m) }
func (*Axis) ProtoMessage() {}
func (*Axis) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{3} }
2017-04-26 21:29:20 +00:00
type Template struct {
ID string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
TempVar string `protobuf:"bytes,2,opt,name=temp_var,json=tempVar,proto3" json:"temp_var,omitempty"`
Values []*TemplateValue `protobuf:"bytes,3,rep,name=values" json:"values,omitempty"`
Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type,omitempty"`
Label string `protobuf:"bytes,5,opt,name=label,proto3" json:"label,omitempty"`
Query *TemplateQuery `protobuf:"bytes,6,opt,name=query" json:"query,omitempty"`
}
func (m *Template) Reset() { *m = Template{} }
func (m *Template) String() string { return proto.CompactTextString(m) }
func (*Template) ProtoMessage() {}
func (*Template) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{4} }
2017-04-26 21:29:20 +00:00
func (m *Template) GetValues() []*TemplateValue {
if m != nil {
return m.Values
}
return nil
}
func (m *Template) GetQuery() *TemplateQuery {
if m != nil {
return m.Query
}
return nil
}
type TemplateValue struct {
Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
Selected bool `protobuf:"varint,3,opt,name=selected,proto3" json:"selected,omitempty"`
}
func (m *TemplateValue) Reset() { *m = TemplateValue{} }
func (m *TemplateValue) String() string { return proto.CompactTextString(m) }
func (*TemplateValue) ProtoMessage() {}
func (*TemplateValue) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{5} }
2017-04-26 21:29:20 +00:00
type TemplateQuery struct {
Command string `protobuf:"bytes,1,opt,name=command,proto3" json:"command,omitempty"`
Db string `protobuf:"bytes,2,opt,name=db,proto3" json:"db,omitempty"`
Rp string `protobuf:"bytes,3,opt,name=rp,proto3" json:"rp,omitempty"`
Measurement string `protobuf:"bytes,4,opt,name=measurement,proto3" json:"measurement,omitempty"`
TagKey string `protobuf:"bytes,5,opt,name=tag_key,json=tagKey,proto3" json:"tag_key,omitempty"`
FieldKey string `protobuf:"bytes,6,opt,name=field_key,json=fieldKey,proto3" json:"field_key,omitempty"`
}
func (m *TemplateQuery) Reset() { *m = TemplateQuery{} }
func (m *TemplateQuery) String() string { return proto.CompactTextString(m) }
func (*TemplateQuery) ProtoMessage() {}
func (*TemplateQuery) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{6} }
2017-04-26 21:29:20 +00:00
type Server struct {
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
Name string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
Username string `protobuf:"bytes,3,opt,name=Username,proto3" json:"Username,omitempty"`
Password string `protobuf:"bytes,4,opt,name=Password,proto3" json:"Password,omitempty"`
URL string `protobuf:"bytes,5,opt,name=URL,proto3" json:"URL,omitempty"`
SrcID int64 `protobuf:"varint,6,opt,name=SrcID,proto3" json:"SrcID,omitempty"`
Active bool `protobuf:"varint,7,opt,name=Active,proto3" json:"Active,omitempty"`
}
func (m *Server) Reset() { *m = Server{} }
func (m *Server) String() string { return proto.CompactTextString(m) }
func (*Server) ProtoMessage() {}
func (*Server) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{7} }
2016-10-06 04:26:39 +00:00
type Layout struct {
ID string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
Application string `protobuf:"bytes,2,opt,name=Application,proto3" json:"Application,omitempty"`
Measurement string `protobuf:"bytes,3,opt,name=Measurement,proto3" json:"Measurement,omitempty"`
Cells []*Cell `protobuf:"bytes,4,rep,name=Cells" json:"Cells,omitempty"`
Autoflow bool `protobuf:"varint,5,opt,name=Autoflow,proto3" json:"Autoflow,omitempty"`
2016-10-06 04:26:39 +00:00
}
func (m *Layout) Reset() { *m = Layout{} }
func (m *Layout) String() string { return proto.CompactTextString(m) }
func (*Layout) ProtoMessage() {}
func (*Layout) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{8} }
2016-10-06 04:26:39 +00:00
func (m *Layout) GetCells() []*Cell {
if m != nil {
return m.Cells
}
return nil
}
type Cell struct {
X int32 `protobuf:"varint,1,opt,name=x,proto3" json:"x,omitempty"`
Y int32 `protobuf:"varint,2,opt,name=y,proto3" json:"y,omitempty"`
W int32 `protobuf:"varint,3,opt,name=w,proto3" json:"w,omitempty"`
H int32 `protobuf:"varint,4,opt,name=h,proto3" json:"h,omitempty"`
Queries []*Query `protobuf:"bytes,5,rep,name=queries" json:"queries,omitempty"`
I string `protobuf:"bytes,6,opt,name=i,proto3" json:"i,omitempty"`
Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
Yranges []int64 `protobuf:"varint,8,rep,name=yranges" json:"yranges,omitempty"`
Ylabels []string `protobuf:"bytes,9,rep,name=ylabels" json:"ylabels,omitempty"`
Type string `protobuf:"bytes,10,opt,name=type,proto3" json:"type,omitempty"`
Axes map[string]*Axis `protobuf:"bytes,11,rep,name=axes" json:"axes,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"`
2016-10-06 04:26:39 +00:00
}
func (m *Cell) Reset() { *m = Cell{} }
func (m *Cell) String() string { return proto.CompactTextString(m) }
func (*Cell) ProtoMessage() {}
func (*Cell) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{9} }
2016-10-06 04:26:39 +00:00
func (m *Cell) GetQueries() []*Query {
if m != nil {
return m.Queries
}
return nil
}
func (m *Cell) GetAxes() map[string]*Axis {
if m != nil {
return m.Axes
}
return nil
}
2016-10-06 04:26:39 +00:00
type Query struct {
Command string `protobuf:"bytes,1,opt,name=Command,proto3" json:"Command,omitempty"`
DB string `protobuf:"bytes,2,opt,name=DB,proto3" json:"DB,omitempty"`
RP string `protobuf:"bytes,3,opt,name=RP,proto3" json:"RP,omitempty"`
GroupBys []string `protobuf:"bytes,4,rep,name=GroupBys" json:"GroupBys,omitempty"`
Wheres []string `protobuf:"bytes,5,rep,name=Wheres" json:"Wheres,omitempty"`
Label string `protobuf:"bytes,6,opt,name=Label,proto3" json:"Label,omitempty"`
Range *Range `protobuf:"bytes,7,opt,name=Range" json:"Range,omitempty"`
Source string `protobuf:"bytes,8,opt,name=Source,proto3" json:"Source,omitempty"`
2016-10-06 04:26:39 +00:00
}
func (m *Query) Reset() { *m = Query{} }
func (m *Query) String() string { return proto.CompactTextString(m) }
func (*Query) ProtoMessage() {}
func (*Query) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{10} }
2016-10-06 04:26:39 +00:00
func (m *Query) GetRange() *Range {
if m != nil {
return m.Range
}
return nil
}
type Range struct {
Upper int64 `protobuf:"varint,1,opt,name=Upper,proto3" json:"Upper,omitempty"`
Lower int64 `protobuf:"varint,2,opt,name=Lower,proto3" json:"Lower,omitempty"`
}
func (m *Range) Reset() { *m = Range{} }
func (m *Range) String() string { return proto.CompactTextString(m) }
func (*Range) ProtoMessage() {}
func (*Range) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{11} }
type AlertRule struct {
ID string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
JSON string `protobuf:"bytes,2,opt,name=JSON,proto3" json:"JSON,omitempty"`
SrcID int64 `protobuf:"varint,3,opt,name=SrcID,proto3" json:"SrcID,omitempty"`
KapaID int64 `protobuf:"varint,4,opt,name=KapaID,proto3" json:"KapaID,omitempty"`
}
func (m *AlertRule) Reset() { *m = AlertRule{} }
func (m *AlertRule) String() string { return proto.CompactTextString(m) }
func (*AlertRule) ProtoMessage() {}
func (*AlertRule) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{12} }
type User struct {
ID uint64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
Name string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
Provider string `protobuf:"bytes,3,opt,name=Provider,proto3" json:"Provider,omitempty"`
Scheme string `protobuf:"bytes,4,opt,name=Scheme,proto3" json:"Scheme,omitempty"`
}
func (m *User) Reset() { *m = User{} }
func (m *User) String() string { return proto.CompactTextString(m) }
func (*User) ProtoMessage() {}
func (*User) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{13} }
type Permission struct {
Scope string `protobuf:"bytes,1,opt,name=Scope,proto3" json:"Scope,omitempty"`
Name string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
Allowed []string `protobuf:"bytes,3,rep,name=Allowed" json:"Allowed,omitempty"`
}
func (m *Permission) Reset() { *m = Permission{} }
func (m *Permission) String() string { return proto.CompactTextString(m) }
func (*Permission) ProtoMessage() {}
func (*Permission) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{14} }
type Role struct {
Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
Permissions []string `protobuf:"bytes,2,rep,name=Permissions" json:"Permissions,omitempty"`
Users []uint64 `protobuf:"varint,3,rep,name=Users" json:"Users,omitempty"`
}
func (m *Role) Reset() { *m = Role{} }
func (m *Role) String() string { return proto.CompactTextString(m) }
func (*Role) ProtoMessage() {}
func (*Role) Descriptor() ([]byte, []int) { return fileDescriptorInternal, []int{15} }
func init() {
proto.RegisterType((*Source)(nil), "internal.Source")
2016-12-13 11:07:24 +00:00
proto.RegisterType((*Dashboard)(nil), "internal.Dashboard")
proto.RegisterType((*DashboardCell)(nil), "internal.DashboardCell")
proto.RegisterType((*Axis)(nil), "internal.Axis")
2017-04-26 21:29:20 +00:00
proto.RegisterType((*Template)(nil), "internal.Template")
proto.RegisterType((*TemplateValue)(nil), "internal.TemplateValue")
proto.RegisterType((*TemplateQuery)(nil), "internal.TemplateQuery")
proto.RegisterType((*Server)(nil), "internal.Server")
2016-10-06 04:26:39 +00:00
proto.RegisterType((*Layout)(nil), "internal.Layout")
proto.RegisterType((*Cell)(nil), "internal.Cell")
proto.RegisterType((*Query)(nil), "internal.Query")
proto.RegisterType((*Range)(nil), "internal.Range")
proto.RegisterType((*AlertRule)(nil), "internal.AlertRule")
proto.RegisterType((*User)(nil), "internal.User")
proto.RegisterType((*Permission)(nil), "internal.Permission")
proto.RegisterType((*Role)(nil), "internal.Role")
}
func init() { proto.RegisterFile("internal.proto", fileDescriptorInternal) }
var fileDescriptorInternal = []byte{
// 1103 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xbc, 0x56, 0x51, 0x8f, 0xdb, 0x44,
0x10, 0x96, 0x63, 0x3b, 0x89, 0x27, 0x6d, 0x41, 0xab, 0x8a, 0x9a, 0xf2, 0x12, 0x2c, 0x90, 0x82,
0x44, 0x0f, 0xd4, 0x0a, 0x09, 0xf1, 0x96, 0xbb, 0xa0, 0xea, 0xb8, 0x6b, 0x09, 0x9b, 0xbb, 0xe3,
0x09, 0xaa, 0x8d, 0x33, 0xb9, 0x58, 0xdd, 0xc4, 0x66, 0x6d, 0x5f, 0xe2, 0x7f, 0xc1, 0x2f, 0x40,
0x42, 0xe2, 0x89, 0x07, 0x1e, 0xf8, 0x03, 0xbc, 0xf7, 0x57, 0xa1, 0xd9, 0x5d, 0x3b, 0x0e, 0x3d,
0xaa, 0xbe, 0xc0, 0xdb, 0x7e, 0x33, 0xbb, 0x33, 0xbb, 0x33, 0xf3, 0x7d, 0x36, 0xdc, 0x4b, 0x36,
0x05, 0xaa, 0x8d, 0x90, 0x47, 0x99, 0x4a, 0x8b, 0x94, 0xf5, 0x6b, 0x1c, 0xfd, 0xd1, 0x81, 0xee,
0x2c, 0x2d, 0x55, 0x8c, 0xec, 0x1e, 0x74, 0x4e, 0x27, 0xa1, 0x33, 0x74, 0x46, 0x2e, 0xef, 0x9c,
0x4e, 0x18, 0x03, 0xef, 0xb9, 0x58, 0x63, 0xd8, 0x19, 0x3a, 0xa3, 0x80, 0xeb, 0x35, 0xd9, 0x2e,
0xaa, 0x0c, 0x43, 0xd7, 0xd8, 0x68, 0xcd, 0x1e, 0x42, 0xff, 0x32, 0xa7, 0x68, 0x6b, 0x0c, 0x3d,
0x6d, 0x6f, 0x30, 0xf9, 0xa6, 0x22, 0xcf, 0xb7, 0xa9, 0x5a, 0x84, 0xbe, 0xf1, 0xd5, 0x98, 0xbd,
0x0b, 0xee, 0x25, 0x3f, 0x0f, 0xbb, 0xda, 0x4c, 0x4b, 0x16, 0x42, 0x6f, 0x82, 0x4b, 0x51, 0xca,
0x22, 0xec, 0x0d, 0x9d, 0x51, 0x9f, 0xd7, 0x90, 0xe2, 0x5c, 0xa0, 0xc4, 0x6b, 0x25, 0x96, 0x61,
0xdf, 0xc4, 0xa9, 0x31, 0x3b, 0x02, 0x76, 0xba, 0xc9, 0x31, 0x2e, 0x15, 0xce, 0x5e, 0x26, 0xd9,
0x15, 0xaa, 0x64, 0x59, 0x85, 0x81, 0x0e, 0x70, 0x8b, 0x87, 0xb2, 0x3c, 0xc3, 0x42, 0x50, 0x6e,
0xd0, 0xa1, 0x6a, 0xc8, 0x22, 0xb8, 0x33, 0x5b, 0x09, 0x85, 0x8b, 0x19, 0xc6, 0x0a, 0x8b, 0x70,
0xa0, 0xdd, 0x07, 0xb6, 0xe8, 0x67, 0x07, 0x82, 0x89, 0xc8, 0x57, 0xf3, 0x54, 0xa8, 0xc5, 0x5b,
0xd5, 0xec, 0x11, 0xf8, 0x31, 0x4a, 0x99, 0x87, 0xee, 0xd0, 0x1d, 0x0d, 0x1e, 0x3f, 0x38, 0x6a,
0x9a, 0xd1, 0xc4, 0x39, 0x41, 0x29, 0xb9, 0xd9, 0xc5, 0x3e, 0x87, 0xa0, 0xc0, 0x75, 0x26, 0x45,
0x81, 0x79, 0xe8, 0xe9, 0x23, 0x6c, 0x7f, 0xe4, 0xc2, 0xba, 0xf8, 0x7e, 0x53, 0xf4, 0x7b, 0x07,
0xee, 0x1e, 0x84, 0x62, 0x77, 0xc0, 0xd9, 0xe9, 0x5b, 0xf9, 0xdc, 0xd9, 0x11, 0xaa, 0xf4, 0x8d,
0x7c, 0xee, 0x54, 0x84, 0xb6, 0xba, 0x7f, 0x3e, 0x77, 0xb6, 0x84, 0x56, 0xba, 0x6b, 0x3e, 0x77,
0x56, 0xec, 0x13, 0xe8, 0xfd, 0x54, 0xa2, 0x4a, 0x30, 0x0f, 0x7d, 0x9d, 0xf9, 0x9d, 0x7d, 0xe6,
0xef, 0x4a, 0x54, 0x15, 0xaf, 0xfd, 0xf4, 0x52, 0xdd, 0x71, 0xd3, 0x3e, 0xbd, 0x26, 0x5b, 0x41,
0xd3, 0xd1, 0x33, 0x36, 0x5a, 0xdb, 0x0a, 0x99, 0x9e, 0x51, 0x85, 0xbe, 0x00, 0x4f, 0xec, 0x30,
0x0f, 0x03, 0x1d, 0xff, 0xc3, 0x7f, 0x29, 0xc6, 0xd1, 0x78, 0x87, 0xf9, 0xd7, 0x9b, 0x42, 0x55,
0x5c, 0x6f, 0x7f, 0xf8, 0x14, 0x82, 0xc6, 0x44, 0x93, 0xf3, 0x12, 0x2b, 0xfd, 0xc0, 0x80, 0xd3,
0x92, 0x7d, 0x04, 0xfe, 0x8d, 0x90, 0xa5, 0x29, 0xfc, 0xe0, 0xf1, 0xbd, 0x7d, 0xd8, 0xf1, 0x2e,
0xc9, 0xb9, 0x71, 0x7e, 0xd5, 0xf9, 0xd2, 0x89, 0xfe, 0x74, 0xc0, 0x23, 0x1b, 0x35, 0x5b, 0xe2,
0xb5, 0x88, 0xab, 0xe3, 0xb4, 0xdc, 0x2c, 0xf2, 0xd0, 0x19, 0xba, 0x23, 0x97, 0x1f, 0xd8, 0xd8,
0x7b, 0xd0, 0x9d, 0x1b, 0x6f, 0x67, 0xe8, 0x8e, 0x02, 0x6e, 0x11, 0xbb, 0x0f, 0xbe, 0x14, 0x73,
0x94, 0x96, 0x07, 0x06, 0xd0, 0xee, 0x4c, 0xe1, 0x32, 0xd9, 0x59, 0x1a, 0x58, 0x44, 0xf6, 0xbc,
0x5c, 0x92, 0xdd, 0x50, 0xc0, 0x22, 0x2a, 0xd7, 0x5c, 0xe4, 0x4d, 0x09, 0x69, 0x4d, 0x91, 0xf3,
0x58, 0xc8, 0xba, 0x86, 0x06, 0x44, 0x7f, 0x39, 0x34, 0xff, 0xa6, 0xdf, 0xad, 0x99, 0x33, 0x15,
0x7d, 0x1f, 0xfa, 0x34, 0x0b, 0x2f, 0x6e, 0x84, 0xb2, 0x73, 0xd7, 0x23, 0x7c, 0x25, 0x14, 0xfb,
0x0c, 0xba, 0xfa, 0xe5, 0xb7, 0xcc, 0x5e, 0x1d, 0xee, 0x8a, 0xfc, 0xdc, 0x6e, 0x6b, 0x3a, 0xe8,
0xb5, 0x3a, 0xd8, 0x3c, 0xd6, 0x6f, 0x3f, 0xf6, 0x11, 0xf8, 0x34, 0x0a, 0x95, 0xbe, 0xfd, 0xad,
0x91, 0xcd, 0xc0, 0x98, 0x5d, 0xd1, 0x25, 0xdc, 0x3d, 0xc8, 0xd8, 0x64, 0x72, 0x0e, 0x33, 0xed,
0xbb, 0x18, 0xd8, 0xae, 0x11, 0xf7, 0x73, 0x94, 0x18, 0x17, 0xb8, 0xd0, 0xf5, 0xee, 0xf3, 0x06,
0x47, 0xbf, 0x3a, 0xfb, 0xb8, 0x3a, 0x1f, 0xb1, 0x3b, 0x4e, 0xd7, 0x6b, 0xb1, 0x59, 0xd8, 0xd0,
0x35, 0xa4, 0xba, 0x2d, 0xe6, 0x36, 0x74, 0x67, 0x31, 0x27, 0xac, 0x32, 0xdb, 0xc1, 0x8e, 0xca,
0xd8, 0x10, 0x06, 0x6b, 0x14, 0x79, 0xa9, 0x70, 0x8d, 0x9b, 0xc2, 0x96, 0xa0, 0x6d, 0x62, 0x0f,
0xa0, 0x57, 0x88, 0xeb, 0x17, 0x34, 0x7b, 0xb6, 0x93, 0x85, 0xb8, 0x3e, 0xc3, 0x8a, 0x7d, 0x00,
0xc1, 0x32, 0x41, 0xb9, 0xd0, 0x2e, 0xd3, 0xce, 0xbe, 0x36, 0x9c, 0x61, 0x15, 0xfd, 0xe6, 0x40,
0x77, 0x86, 0xea, 0x06, 0xd5, 0x5b, 0xc9, 0x45, 0x5b, 0x4e, 0xdd, 0x37, 0xc8, 0xa9, 0x77, 0xbb,
0x9c, 0xfa, 0x7b, 0x39, 0xbd, 0x0f, 0xfe, 0x4c, 0xc5, 0xa7, 0x13, 0x7d, 0x23, 0x97, 0x1b, 0x40,
0xd3, 0x38, 0x8e, 0x8b, 0xe4, 0x06, 0xad, 0xc6, 0x5a, 0x14, 0xfd, 0xe2, 0x40, 0xf7, 0x5c, 0x54,
0x69, 0x59, 0xbc, 0x36, 0x61, 0x43, 0x18, 0x8c, 0xb3, 0x4c, 0x26, 0xb1, 0x28, 0x92, 0x74, 0x63,
0x6f, 0xdb, 0x36, 0xd1, 0x8e, 0x67, 0xad, 0xda, 0x99, 0x7b, 0xb7, 0x4d, 0xc4, 0xd0, 0x13, 0xad,
0x82, 0x46, 0xd2, 0x5a, 0x0c, 0x35, 0xe2, 0xa7, 0x9d, 0xf4, 0xc0, 0x71, 0x59, 0xa4, 0x4b, 0x99,
0x6e, 0xf5, 0x4b, 0xfa, 0xbc, 0xc1, 0xd1, 0xab, 0x0e, 0x78, 0xff, 0x97, 0xba, 0xdd, 0x01, 0x27,
0xb1, 0x8d, 0x74, 0x92, 0x46, 0xeb, 0x7a, 0x2d, 0xad, 0x0b, 0xa1, 0x57, 0x29, 0xb1, 0xb9, 0xc6,
0x3c, 0xec, 0x6b, 0xe5, 0xa8, 0xa1, 0xf6, 0x68, 0x8e, 0x18, 0x91, 0x0b, 0x78, 0x0d, 0x9b, 0x99,
0x87, 0xd6, 0xcc, 0x7f, 0x6a, 0xf5, 0x70, 0xa0, 0x6f, 0x14, 0x1e, 0x96, 0xe5, 0xbf, 0x93, 0xc1,
0x57, 0x0e, 0xf8, 0x0d, 0x61, 0x4e, 0x0e, 0x09, 0x73, 0xb2, 0x27, 0xcc, 0xe4, 0xb8, 0x26, 0xcc,
0xe4, 0x98, 0x30, 0x9f, 0xd6, 0x84, 0xe1, 0x53, 0x6a, 0xd6, 0x53, 0x95, 0x96, 0xd9, 0x71, 0x65,
0xba, 0x1a, 0xf0, 0x06, 0xd3, 0x94, 0x7d, 0xbf, 0x42, 0x65, 0x4b, 0x1d, 0x70, 0x8b, 0x68, 0x26,
0xcf, 0xb5, 0x98, 0x98, 0xe2, 0x1a, 0xc0, 0x3e, 0x06, 0x9f, 0x53, 0xf1, 0x74, 0x85, 0x0f, 0xfa,
0xa2, 0xcd, 0xdc, 0x78, 0x29, 0xa8, 0xf9, 0x57, 0xb1, 0xdf, 0x13, 0x8b, 0xa2, 0x27, 0xf6, 0x38,
0x45, 0xbf, 0xcc, 0x32, 0x54, 0x96, 0x62, 0x06, 0xe8, 0x9c, 0xe9, 0x16, 0x8d, 0x3a, 0xba, 0xdc,
0x80, 0xe8, 0x07, 0x08, 0xc6, 0x12, 0x55, 0xc1, 0x4b, 0xf9, 0xba, 0xa6, 0x32, 0xf0, 0xbe, 0x99,
0x7d, 0xfb, 0xbc, 0x26, 0x26, 0xad, 0xf7, 0x74, 0x72, 0xff, 0x41, 0xa7, 0x33, 0x91, 0x89, 0xd3,
0x89, 0x9e, 0x33, 0x97, 0x5b, 0x14, 0xfd, 0x08, 0x1e, 0xd1, 0xb6, 0x15, 0xd9, 0x7b, 0x13, 0xe5,
0xa7, 0x2a, 0xbd, 0x49, 0x16, 0xa8, 0x6a, 0xca, 0xd7, 0x58, 0xbf, 0x39, 0x5e, 0x61, 0xf3, 0x6f,
0x65, 0x51, 0x34, 0x05, 0x98, 0xa2, 0x5a, 0x27, 0x79, 0x4e, 0xfc, 0xa3, 0xbb, 0xc5, 0x69, 0x23,
0xa7, 0x06, 0xdc, 0x9a, 0x2b, 0x84, 0xde, 0x58, 0xca, 0x74, 0xab, 0xc5, 0x54, 0x4f, 0xa7, 0x85,
0x11, 0x07, 0x8f, 0xa7, 0x72, 0x7f, 0xca, 0x69, 0x9d, 0x1a, 0xc2, 0x60, 0x9f, 0xad, 0xfe, 0x1a,
0xb6, 0x4d, 0xba, 0xf4, 0x39, 0x2a, 0xf3, 0xa5, 0xf1, 0xb8, 0x01, 0xf3, 0xae, 0xfe, 0xdf, 0x7c,
0xf2, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x90, 0xf5, 0xbc, 0x0b, 0x81, 0x0a, 0x00, 0x00,
}