2019-05-11 12:46:12 -05:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: events.proto
|
|
|
|
|
|
|
|
package witProtobuf
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
|
|
|
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.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
|
|
|
|
type Event_EventType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
Event_ADD Event_EventType = 0
|
|
|
|
Event_DELETE Event_EventType = 1
|
|
|
|
Event_POWERON Event_EventType = 2
|
|
|
|
Event_POWEROFF Event_EventType = 3
|
2019-05-12 01:02:53 -05:00
|
|
|
Event_HIBERNATE Event_EventType = 4
|
2019-05-11 12:46:12 -05:00
|
|
|
Event_MIGRATE Event_EventType = 5
|
2019-05-12 20:18:23 -05:00
|
|
|
Event_DEMO Event_EventType = 6
|
2019-05-23 20:33:42 -05:00
|
|
|
Event_GET Event_EventType = 7
|
2019-05-23 22:01:24 -05:00
|
|
|
Event_LOGIN Event_EventType = 8
|
2019-05-24 01:35:40 -05:00
|
|
|
Event_OK Event_EventType = 9
|
2019-05-24 01:43:58 -05:00
|
|
|
Event_FAIL Event_EventType = 10
|
2019-05-11 12:46:12 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
var Event_EventType_name = map[int32]string{
|
2019-05-24 01:43:58 -05:00
|
|
|
0: "ADD",
|
|
|
|
1: "DELETE",
|
|
|
|
2: "POWERON",
|
|
|
|
3: "POWEROFF",
|
|
|
|
4: "HIBERNATE",
|
|
|
|
5: "MIGRATE",
|
|
|
|
6: "DEMO",
|
|
|
|
7: "GET",
|
|
|
|
8: "LOGIN",
|
|
|
|
9: "OK",
|
|
|
|
10: "FAIL",
|
2019-05-11 12:46:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
var Event_EventType_value = map[string]int32{
|
|
|
|
"ADD": 0,
|
|
|
|
"DELETE": 1,
|
|
|
|
"POWERON": 2,
|
|
|
|
"POWEROFF": 3,
|
2019-05-12 01:02:53 -05:00
|
|
|
"HIBERNATE": 4,
|
2019-05-11 12:46:12 -05:00
|
|
|
"MIGRATE": 5,
|
2019-05-12 20:18:23 -05:00
|
|
|
"DEMO": 6,
|
2019-05-23 20:33:42 -05:00
|
|
|
"GET": 7,
|
2019-05-23 22:01:24 -05:00
|
|
|
"LOGIN": 8,
|
2019-05-24 01:35:40 -05:00
|
|
|
"OK": 9,
|
2019-05-24 01:43:58 -05:00
|
|
|
"FAIL": 10,
|
2019-05-11 12:46:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x Event_EventType) String() string {
|
|
|
|
return proto.EnumName(Event_EventType_name, int32(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Event_EventType) EnumDescriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_8f22242cb04491f9, []int{0, 0}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Event struct {
|
|
|
|
Type Event_EventType `protobuf:"varint,1,opt,name=type,proto3,enum=witProtobuf.Event_EventType" json:"type,omitempty"`
|
|
|
|
Id int32 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
|
2019-05-23 22:10:06 -05:00
|
|
|
Comment string `protobuf:"bytes,3,opt,name=comment,proto3" json:"comment,omitempty"`
|
|
|
|
Username string `protobuf:"bytes,4,opt,name=username,proto3" json:"username,omitempty"`
|
2019-05-12 13:31:57 -05:00
|
|
|
Email string `protobuf:"bytes,5,opt,name=email,proto3" json:"email,omitempty"`
|
2019-05-23 22:10:06 -05:00
|
|
|
Password string `protobuf:"bytes,6,opt,name=password,proto3" json:"password,omitempty"`
|
|
|
|
Token string `protobuf:"bytes,7,opt,name=token,proto3" json:"token,omitempty"`
|
2019-05-23 21:14:09 -05:00
|
|
|
Results []*Event_Response `protobuf:"bytes,8,rep,name=results,proto3" json:"results,omitempty"`
|
|
|
|
Networks []*Event_Network `protobuf:"bytes,9,rep,name=networks,proto3" json:"networks,omitempty"`
|
|
|
|
Vms []*Event_VM `protobuf:"bytes,10,rep,name=vms,proto3" json:"vms,omitempty"`
|
2019-05-11 12:46:12 -05:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event) Reset() { *m = Event{} }
|
|
|
|
func (m *Event) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Event) ProtoMessage() {}
|
|
|
|
func (*Event) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_8f22242cb04491f9, []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Event.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Event.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *Event) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Event.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *Event) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Event.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Event) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Event.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Event proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *Event) GetType() Event_EventType {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return Event_ADD
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event) GetId() int32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Id
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2019-05-23 22:10:06 -05:00
|
|
|
func (m *Event) GetComment() string {
|
2019-05-11 12:46:12 -05:00
|
|
|
if m != nil {
|
2019-05-23 22:10:06 -05:00
|
|
|
return m.Comment
|
2019-05-11 12:46:12 -05:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-23 22:10:06 -05:00
|
|
|
func (m *Event) GetUsername() string {
|
2019-05-11 12:46:12 -05:00
|
|
|
if m != nil {
|
2019-05-23 22:10:06 -05:00
|
|
|
return m.Username
|
2019-05-11 12:46:12 -05:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event) GetEmail() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Email
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-23 22:10:06 -05:00
|
|
|
func (m *Event) GetPassword() string {
|
2019-05-23 21:14:09 -05:00
|
|
|
if m != nil {
|
2019-05-23 22:10:06 -05:00
|
|
|
return m.Password
|
2019-05-23 21:14:09 -05:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-23 22:10:06 -05:00
|
|
|
func (m *Event) GetToken() string {
|
2019-05-23 21:14:09 -05:00
|
|
|
if m != nil {
|
2019-05-23 22:10:06 -05:00
|
|
|
return m.Token
|
2019-05-23 21:14:09 -05:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-12 13:31:57 -05:00
|
|
|
func (m *Event) GetResults() []*Event_Response {
|
2019-05-11 12:46:12 -05:00
|
|
|
if m != nil {
|
2019-05-12 13:31:57 -05:00
|
|
|
return m.Results
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event) GetNetworks() []*Event_Network {
|
|
|
|
if m != nil {
|
|
|
|
return m.Networks
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event) GetVms() []*Event_VM {
|
|
|
|
if m != nil {
|
|
|
|
return m.Vms
|
2019-05-11 12:46:12 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Event_Response struct {
|
|
|
|
Type Event_EventType `protobuf:"varint,1,opt,name=type,proto3,enum=witProtobuf.Event_EventType" json:"type,omitempty"`
|
|
|
|
Id int32 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
Error string `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
|
|
|
|
Snippets []string `protobuf:"bytes,5,rep,name=snippets,proto3" json:"snippets,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Response) Reset() { *m = Event_Response{} }
|
|
|
|
func (m *Event_Response) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Event_Response) ProtoMessage() {}
|
|
|
|
func (*Event_Response) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_8f22242cb04491f9, []int{0, 0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Response) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Event_Response.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Event_Response) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Event_Response.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *Event_Response) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Event_Response.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *Event_Response) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Event_Response.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Event_Response) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Event_Response.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Event_Response proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *Event_Response) GetType() Event_EventType {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return Event_ADD
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Response) GetId() int32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Id
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Response) GetName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Response) GetError() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Error
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Response) GetSnippets() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Snippets
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-12 13:31:57 -05:00
|
|
|
type Event_Network struct {
|
|
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
TotalCpu int64 `protobuf:"varint,3,opt,name=total_cpu,json=totalCpu,proto3" json:"total_cpu,omitempty"`
|
|
|
|
TotalMem int64 `protobuf:"varint,4,opt,name=total_mem,json=totalMem,proto3" json:"total_mem,omitempty"`
|
|
|
|
LoginUrl string `protobuf:"bytes,5,opt,name=login_url,json=loginUrl,proto3" json:"login_url,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Network) Reset() { *m = Event_Network{} }
|
|
|
|
func (m *Event_Network) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Event_Network) ProtoMessage() {}
|
|
|
|
func (*Event_Network) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_8f22242cb04491f9, []int{0, 1}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Network) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Event_Network.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Event_Network) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Event_Network.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *Event_Network) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Event_Network.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *Event_Network) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Event_Network.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Event_Network) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Event_Network.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Event_Network proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *Event_Network) GetId() int32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Id
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Network) GetName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Network) GetTotalCpu() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.TotalCpu
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Network) GetTotalMem() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.TotalMem
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_Network) GetLoginUrl() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.LoginUrl
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type Event_VM struct {
|
2019-05-12 14:15:03 -05:00
|
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
2019-05-12 13:31:57 -05:00
|
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
2019-05-12 14:15:03 -05:00
|
|
|
Hostname string `protobuf:"bytes,3,opt,name=hostname,proto3" json:"hostname,omitempty"`
|
|
|
|
Cpus int64 `protobuf:"varint,4,opt,name=cpus,proto3" json:"cpus,omitempty"`
|
|
|
|
Memory int64 `protobuf:"varint,5,opt,name=memory,proto3" json:"memory,omitempty"`
|
|
|
|
Disk int64 `protobuf:"varint,6,opt,name=disk,proto3" json:"disk,omitempty"`
|
|
|
|
IPv6 string `protobuf:"bytes,7,opt,name=IPv6,proto3" json:"IPv6,omitempty"`
|
|
|
|
Role string `protobuf:"bytes,8,opt,name=role,proto3" json:"role,omitempty"`
|
|
|
|
BaseImage string `protobuf:"bytes,9,opt,name=baseImage,proto3" json:"baseImage,omitempty"`
|
2019-05-12 13:31:57 -05:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_VM) Reset() { *m = Event_VM{} }
|
|
|
|
func (m *Event_VM) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Event_VM) ProtoMessage() {}
|
|
|
|
func (*Event_VM) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_8f22242cb04491f9, []int{0, 2}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_VM) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Event_VM.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Event_VM) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Event_VM.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *Event_VM) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Event_VM.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *Event_VM) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Event_VM.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Event_VM) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Event_VM.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Event_VM proto.InternalMessageInfo
|
|
|
|
|
2019-05-12 14:15:03 -05:00
|
|
|
func (m *Event_VM) GetId() int64 {
|
2019-05-12 13:31:57 -05:00
|
|
|
if m != nil {
|
|
|
|
return m.Id
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_VM) GetName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-12 14:15:03 -05:00
|
|
|
func (m *Event_VM) GetHostname() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hostname
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_VM) GetCpus() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Cpus
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_VM) GetMemory() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Memory
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_VM) GetDisk() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Disk
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_VM) GetIPv6() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.IPv6
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-12 13:31:57 -05:00
|
|
|
func (m *Event_VM) GetRole() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Role
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Event_VM) GetBaseImage() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.BaseImage
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-11 12:46:12 -05:00
|
|
|
func init() {
|
|
|
|
proto.RegisterEnum("witProtobuf.Event_EventType", Event_EventType_name, Event_EventType_value)
|
|
|
|
proto.RegisterType((*Event)(nil), "witProtobuf.Event")
|
|
|
|
proto.RegisterType((*Event_Response)(nil), "witProtobuf.Event.Response")
|
2019-05-12 13:31:57 -05:00
|
|
|
proto.RegisterType((*Event_Network)(nil), "witProtobuf.Event.Network")
|
|
|
|
proto.RegisterType((*Event_VM)(nil), "witProtobuf.Event.VM")
|
2019-05-11 12:46:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("events.proto", fileDescriptor_8f22242cb04491f9) }
|
|
|
|
|
|
|
|
var fileDescriptor_8f22242cb04491f9 = []byte{
|
2019-05-24 01:43:58 -05:00
|
|
|
// 542 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x53, 0x4d, 0x6f, 0xd3, 0x40,
|
|
|
|
0x14, 0xc4, 0xdf, 0xf6, 0x6b, 0xa9, 0xac, 0x15, 0xa0, 0x95, 0xdb, 0x43, 0xd4, 0x0b, 0x39, 0x55,
|
|
|
|
0xa8, 0x88, 0xde, 0x0b, 0x71, 0x83, 0x45, 0xbe, 0xb4, 0x0a, 0xe5, 0x58, 0x39, 0xc9, 0x52, 0xac,
|
|
|
|
0xd8, 0x5e, 0x6b, 0x77, 0x9d, 0x28, 0x77, 0x24, 0xee, 0xfc, 0x2c, 0x8e, 0xfc, 0x22, 0xb4, 0x6b,
|
|
|
|
0x3b, 0x8d, 0x44, 0xb8, 0x71, 0x89, 0xde, 0xbc, 0x99, 0xc9, 0xec, 0x8e, 0x6d, 0x38, 0xa5, 0x1b,
|
|
|
|
0x5a, 0x4a, 0x71, 0x55, 0x71, 0x26, 0x19, 0x3a, 0xd9, 0x66, 0x72, 0xa6, 0xa6, 0x45, 0xfd, 0xf5,
|
|
|
|
0xf2, 0xb7, 0x07, 0x4e, 0xac, 0x58, 0xf4, 0x06, 0x6c, 0xb9, 0xab, 0x28, 0x36, 0x7a, 0x46, 0xff,
|
|
|
|
0xec, 0xfa, 0xe2, 0xea, 0x40, 0x75, 0xa5, 0x15, 0xcd, 0xef, 0x7c, 0x57, 0x51, 0xa2, 0x95, 0xe8,
|
|
|
|
0x0c, 0xcc, 0x6c, 0x85, 0xcd, 0x9e, 0xd1, 0x77, 0x88, 0x99, 0xad, 0x10, 0x06, 0x6f, 0xc9, 0x8a,
|
|
|
|
0x82, 0x96, 0x12, 0x5b, 0x3d, 0xa3, 0x1f, 0x90, 0x0e, 0xa2, 0x08, 0xfc, 0x5a, 0x50, 0x5e, 0xa6,
|
|
|
|
0x05, 0xc5, 0xb6, 0xa6, 0xf6, 0x18, 0xbd, 0x00, 0x87, 0x16, 0x69, 0x96, 0x63, 0x47, 0x13, 0x0d,
|
|
|
|
0x50, 0x8e, 0x2a, 0x15, 0x62, 0xcb, 0xf8, 0x0a, 0xbb, 0x8d, 0xa3, 0xc3, 0xca, 0x21, 0xd9, 0x9a,
|
|
|
|
0x96, 0xd8, 0x6b, 0x1c, 0x1a, 0xa0, 0x77, 0xe0, 0x71, 0x2a, 0xea, 0x5c, 0x0a, 0xec, 0xf7, 0xac,
|
|
|
|
0xfe, 0xc9, 0xf5, 0xf9, 0x91, 0x2b, 0x10, 0x2a, 0x2a, 0x56, 0x0a, 0x4a, 0x3a, 0x2d, 0xba, 0x01,
|
|
|
|
0xbf, 0xa4, 0x72, 0xcb, 0xf8, 0x5a, 0xe0, 0x40, 0xfb, 0xa2, 0x23, 0xbe, 0x49, 0x23, 0x21, 0x7b,
|
|
|
|
0x2d, 0x7a, 0x0d, 0xd6, 0xa6, 0x10, 0x18, 0xb4, 0xe5, 0xe5, 0x11, 0xcb, 0xfd, 0x98, 0x28, 0x45,
|
|
|
|
0xf4, 0xd3, 0x00, 0xbf, 0x8b, 0xfd, 0x0f, 0x25, 0x23, 0xb0, 0x75, 0x8d, 0x4d, 0xc3, 0xf6, 0xbe,
|
|
|
|
0x42, 0xce, 0x19, 0x6f, 0xbb, 0x6d, 0x80, 0xaa, 0x50, 0x94, 0x59, 0x55, 0x51, 0x29, 0xb0, 0xd3,
|
|
|
|
0xb3, 0x54, 0x85, 0x1d, 0x8e, 0xbe, 0x1b, 0xe0, 0xb5, 0x77, 0x6a, 0x13, 0x8c, 0xbf, 0x12, 0xcc,
|
|
|
|
0x83, 0x84, 0x73, 0x08, 0x24, 0x93, 0x69, 0xfe, 0xb0, 0xac, 0x6a, 0x1d, 0x6d, 0x11, 0x5f, 0x2f,
|
|
|
|
0x3e, 0x54, 0xf5, 0x13, 0x59, 0xd0, 0x42, 0x1f, 0xa1, 0x23, 0xc7, 0xb4, 0x50, 0x64, 0xce, 0x1e,
|
|
|
|
0xb3, 0xf2, 0xa1, 0xe6, 0xdd, 0x23, 0xf6, 0xf5, 0xe2, 0x33, 0xcf, 0xa3, 0x5f, 0x06, 0x98, 0xf7,
|
|
|
|
0xe3, 0x83, 0x13, 0x58, 0xff, 0x3c, 0x41, 0x04, 0xfe, 0x37, 0x26, 0xe4, 0xc1, 0xdd, 0xf7, 0x58,
|
|
|
|
0xe9, 0x97, 0x55, 0x2d, 0xda, 0x6c, 0x3d, 0xa3, 0x57, 0xe0, 0x16, 0xb4, 0x60, 0x7c, 0xa7, 0x43,
|
|
|
|
0x2d, 0xd2, 0x22, 0xa5, 0x5d, 0x65, 0x62, 0xad, 0x5f, 0x2a, 0x8b, 0xe8, 0x59, 0xed, 0x92, 0xd9,
|
|
|
|
0xe6, 0xa6, 0x7d, 0x9f, 0xf4, 0xac, 0x76, 0x9c, 0xe5, 0x14, 0xfb, 0xcd, 0x4e, 0xcd, 0xe8, 0x02,
|
|
|
|
0x82, 0x45, 0x2a, 0x68, 0x52, 0xa4, 0x8f, 0x14, 0x07, 0x9a, 0x78, 0x5a, 0x5c, 0xfe, 0x30, 0x20,
|
|
|
|
0xd8, 0x3f, 0x3d, 0xe4, 0x81, 0x75, 0x3b, 0x18, 0x84, 0xcf, 0x10, 0x80, 0x3b, 0x88, 0x47, 0xf1,
|
|
|
|
0x3c, 0x0e, 0x0d, 0x74, 0x02, 0xde, 0x6c, 0xfa, 0x25, 0x26, 0xd3, 0x49, 0x68, 0xa2, 0x53, 0xf0,
|
|
|
|
0x1b, 0x70, 0x77, 0x17, 0x5a, 0xe8, 0x39, 0x04, 0x1f, 0x93, 0xf7, 0x31, 0x99, 0xdc, 0xce, 0xe3,
|
|
|
|
0xd0, 0x56, 0xca, 0x71, 0x32, 0x24, 0x0a, 0x38, 0xc8, 0x07, 0x7b, 0x10, 0x8f, 0xa7, 0xa1, 0xab,
|
|
|
|
0xfe, 0x75, 0x18, 0xcf, 0x43, 0x0f, 0x05, 0xe0, 0x8c, 0xa6, 0xc3, 0x64, 0x12, 0xfa, 0xc8, 0x05,
|
|
|
|
0x73, 0xfa, 0x29, 0x0c, 0x94, 0xea, 0xee, 0x36, 0x19, 0x85, 0xb0, 0x70, 0xf5, 0x87, 0xfe, 0xf6,
|
|
|
|
0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa9, 0xa5, 0x22, 0xd5, 0xf8, 0x03, 0x00, 0x00,
|
2019-05-11 12:46:12 -05:00
|
|
|
}
|