608 lines
20 KiB
Go
608 lines
20 KiB
Go
// Code generated by protoc-gen-go.
|
|
// source: svc.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package svc is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
svc.proto
|
|
|
|
It has these top-level messages:
|
|
AppsListParams
|
|
AppsList
|
|
Manifest
|
|
App
|
|
AppUpdate
|
|
AppInspect
|
|
AppDelete
|
|
Ok
|
|
*/
|
|
package svc
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import _ "github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis/google/api"
|
|
|
|
import (
|
|
context "golang.org/x/net/context"
|
|
grpc "google.golang.org/grpc"
|
|
)
|
|
|
|
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
type AppsListParams struct {
|
|
LabelKey string `protobuf:"bytes,1,opt,name=labelKey" json:"labelKey,omitempty"`
|
|
LabelVal string `protobuf:"bytes,2,opt,name=labelVal" json:"labelVal,omitempty"`
|
|
// will be matched to app names
|
|
Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
|
|
}
|
|
|
|
func (m *AppsListParams) Reset() { *m = AppsListParams{} }
|
|
func (m *AppsListParams) String() string { return proto.CompactTextString(m) }
|
|
func (*AppsListParams) ProtoMessage() {}
|
|
func (*AppsListParams) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *AppsListParams) GetLabelKey() string {
|
|
if m != nil {
|
|
return m.LabelKey
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AppsListParams) GetLabelVal() string {
|
|
if m != nil {
|
|
return m.LabelVal
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AppsListParams) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AppsList struct {
|
|
Message string `protobuf:"bytes,1,opt,name=message" json:"message,omitempty"`
|
|
Apps []*App `protobuf:"bytes,2,rep,name=apps" json:"apps,omitempty"`
|
|
}
|
|
|
|
func (m *AppsList) Reset() { *m = AppsList{} }
|
|
func (m *AppsList) String() string { return proto.CompactTextString(m) }
|
|
func (*AppsList) ProtoMessage() {}
|
|
func (*AppsList) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
func (m *AppsList) GetMessage() string {
|
|
if m != nil {
|
|
return m.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AppsList) GetApps() []*App {
|
|
if m != nil {
|
|
return m.Apps
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Manifest struct {
|
|
Environment map[string]string `protobuf:"bytes,1,rep,name=environment" json:"environment,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
Labels map[string]string `protobuf:"bytes,2,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
DockerImage string `protobuf:"bytes,3,opt,name=dockerImage" json:"dockerImage,omitempty"`
|
|
Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"`
|
|
}
|
|
|
|
func (m *Manifest) Reset() { *m = Manifest{} }
|
|
func (m *Manifest) String() string { return proto.CompactTextString(m) }
|
|
func (*Manifest) ProtoMessage() {}
|
|
func (*Manifest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
func (m *Manifest) GetEnvironment() map[string]string {
|
|
if m != nil {
|
|
return m.Environment
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Manifest) GetLabels() map[string]string {
|
|
if m != nil {
|
|
return m.Labels
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Manifest) GetDockerImage() string {
|
|
if m != nil {
|
|
return m.DockerImage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Manifest) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type App struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
|
|
DockerImage string `protobuf:"bytes,3,opt,name=dockerImage" json:"dockerImage,omitempty"`
|
|
Environment map[string]string `protobuf:"bytes,4,rep,name=environment" json:"environment,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
Labels map[string]string `protobuf:"bytes,5,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
AuthorizedUsers []string `protobuf:"bytes,6,rep,name=authorizedUsers" json:"authorizedUsers,omitempty"`
|
|
Instances int32 `protobuf:"varint,7,opt,name=instances" json:"instances,omitempty"`
|
|
Status string `protobuf:"bytes,8,opt,name=status" json:"status,omitempty"`
|
|
}
|
|
|
|
func (m *App) Reset() { *m = App{} }
|
|
func (m *App) String() string { return proto.CompactTextString(m) }
|
|
func (*App) ProtoMessage() {}
|
|
func (*App) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
func (m *App) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *App) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *App) GetDockerImage() string {
|
|
if m != nil {
|
|
return m.DockerImage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *App) GetEnvironment() map[string]string {
|
|
if m != nil {
|
|
return m.Environment
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *App) GetLabels() map[string]string {
|
|
if m != nil {
|
|
return m.Labels
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *App) GetAuthorizedUsers() []string {
|
|
if m != nil {
|
|
return m.AuthorizedUsers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *App) GetInstances() int32 {
|
|
if m != nil {
|
|
return m.Instances
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *App) GetStatus() string {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AppUpdate struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
NewImage string `protobuf:"bytes,2,opt,name=newImage" json:"newImage,omitempty"`
|
|
EnvAdd map[string]string `protobuf:"bytes,3,rep,name=envAdd" json:"envAdd,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
EnvRm []string `protobuf:"bytes,4,rep,name=envRm" json:"envRm,omitempty"`
|
|
LabelAdd map[string]string `protobuf:"bytes,5,rep,name=labelAdd" json:"labelAdd,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
LabelRm map[string]string `protobuf:"bytes,6,rep,name=labelRm" json:"labelRm,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
GrantUsers []string `protobuf:"bytes,7,rep,name=grantUsers" json:"grantUsers,omitempty"`
|
|
RevokeUsers []string `protobuf:"bytes,8,rep,name=revokeUsers" json:"revokeUsers,omitempty"`
|
|
NewInstanceCount int32 `protobuf:"varint,9,opt,name=newInstanceCount" json:"newInstanceCount,omitempty"`
|
|
}
|
|
|
|
func (m *AppUpdate) Reset() { *m = AppUpdate{} }
|
|
func (m *AppUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*AppUpdate) ProtoMessage() {}
|
|
func (*AppUpdate) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
func (m *AppUpdate) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AppUpdate) GetNewImage() string {
|
|
if m != nil {
|
|
return m.NewImage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AppUpdate) GetEnvAdd() map[string]string {
|
|
if m != nil {
|
|
return m.EnvAdd
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AppUpdate) GetEnvRm() []string {
|
|
if m != nil {
|
|
return m.EnvRm
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AppUpdate) GetLabelAdd() map[string]string {
|
|
if m != nil {
|
|
return m.LabelAdd
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AppUpdate) GetLabelRm() map[string]string {
|
|
if m != nil {
|
|
return m.LabelRm
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AppUpdate) GetGrantUsers() []string {
|
|
if m != nil {
|
|
return m.GrantUsers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AppUpdate) GetRevokeUsers() []string {
|
|
if m != nil {
|
|
return m.RevokeUsers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AppUpdate) GetNewInstanceCount() int32 {
|
|
if m != nil {
|
|
return m.NewInstanceCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type AppInspect struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
}
|
|
|
|
func (m *AppInspect) Reset() { *m = AppInspect{} }
|
|
func (m *AppInspect) String() string { return proto.CompactTextString(m) }
|
|
func (*AppInspect) ProtoMessage() {}
|
|
func (*AppInspect) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
func (m *AppInspect) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AppDelete struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
}
|
|
|
|
func (m *AppDelete) Reset() { *m = AppDelete{} }
|
|
func (m *AppDelete) String() string { return proto.CompactTextString(m) }
|
|
func (*AppDelete) ProtoMessage() {}
|
|
func (*AppDelete) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
func (m *AppDelete) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Ok struct {
|
|
Message string `protobuf:"bytes,1,opt,name=message" json:"message,omitempty"`
|
|
}
|
|
|
|
func (m *Ok) Reset() { *m = Ok{} }
|
|
func (m *Ok) String() string { return proto.CompactTextString(m) }
|
|
func (*Ok) ProtoMessage() {}
|
|
func (*Ok) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
func (m *Ok) GetMessage() string {
|
|
if m != nil {
|
|
return m.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*AppsListParams)(nil), "AppsListParams")
|
|
proto.RegisterType((*AppsList)(nil), "AppsList")
|
|
proto.RegisterType((*Manifest)(nil), "Manifest")
|
|
proto.RegisterType((*App)(nil), "App")
|
|
proto.RegisterType((*AppUpdate)(nil), "AppUpdate")
|
|
proto.RegisterType((*AppInspect)(nil), "AppInspect")
|
|
proto.RegisterType((*AppDelete)(nil), "AppDelete")
|
|
proto.RegisterType((*Ok)(nil), "Ok")
|
|
}
|
|
|
|
// 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 Apps service
|
|
|
|
type AppsClient interface {
|
|
List(ctx context.Context, in *AppsListParams, opts ...grpc.CallOption) (*AppsList, error)
|
|
Create(ctx context.Context, in *Manifest, opts ...grpc.CallOption) (*App, error)
|
|
Update(ctx context.Context, in *AppUpdate, opts ...grpc.CallOption) (*App, error)
|
|
Inspect(ctx context.Context, in *AppInspect, opts ...grpc.CallOption) (*App, error)
|
|
Delete(ctx context.Context, in *AppDelete, opts ...grpc.CallOption) (*Ok, error)
|
|
}
|
|
|
|
type appsClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewAppsClient(cc *grpc.ClientConn) AppsClient {
|
|
return &appsClient{cc}
|
|
}
|
|
|
|
func (c *appsClient) List(ctx context.Context, in *AppsListParams, opts ...grpc.CallOption) (*AppsList, error) {
|
|
out := new(AppsList)
|
|
err := grpc.Invoke(ctx, "/Apps/List", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *appsClient) Create(ctx context.Context, in *Manifest, opts ...grpc.CallOption) (*App, error) {
|
|
out := new(App)
|
|
err := grpc.Invoke(ctx, "/Apps/Create", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *appsClient) Update(ctx context.Context, in *AppUpdate, opts ...grpc.CallOption) (*App, error) {
|
|
out := new(App)
|
|
err := grpc.Invoke(ctx, "/Apps/Update", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *appsClient) Inspect(ctx context.Context, in *AppInspect, opts ...grpc.CallOption) (*App, error) {
|
|
out := new(App)
|
|
err := grpc.Invoke(ctx, "/Apps/Inspect", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *appsClient) Delete(ctx context.Context, in *AppDelete, opts ...grpc.CallOption) (*Ok, error) {
|
|
out := new(Ok)
|
|
err := grpc.Invoke(ctx, "/Apps/Delete", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for Apps service
|
|
|
|
type AppsServer interface {
|
|
List(context.Context, *AppsListParams) (*AppsList, error)
|
|
Create(context.Context, *Manifest) (*App, error)
|
|
Update(context.Context, *AppUpdate) (*App, error)
|
|
Inspect(context.Context, *AppInspect) (*App, error)
|
|
Delete(context.Context, *AppDelete) (*Ok, error)
|
|
}
|
|
|
|
func RegisterAppsServer(s *grpc.Server, srv AppsServer) {
|
|
s.RegisterService(&_Apps_serviceDesc, srv)
|
|
}
|
|
|
|
func _Apps_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AppsListParams)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AppsServer).List(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/Apps/List",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AppsServer).List(ctx, req.(*AppsListParams))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Apps_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(Manifest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AppsServer).Create(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/Apps/Create",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AppsServer).Create(ctx, req.(*Manifest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Apps_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AppUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AppsServer).Update(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/Apps/Update",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AppsServer).Update(ctx, req.(*AppUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Apps_Inspect_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AppInspect)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AppsServer).Inspect(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/Apps/Inspect",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AppsServer).Inspect(ctx, req.(*AppInspect))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Apps_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AppDelete)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AppsServer).Delete(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/Apps/Delete",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AppsServer).Delete(ctx, req.(*AppDelete))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _Apps_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "Apps",
|
|
HandlerType: (*AppsServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "List",
|
|
Handler: _Apps_List_Handler,
|
|
},
|
|
{
|
|
MethodName: "Create",
|
|
Handler: _Apps_Create_Handler,
|
|
},
|
|
{
|
|
MethodName: "Update",
|
|
Handler: _Apps_Update_Handler,
|
|
},
|
|
{
|
|
MethodName: "Inspect",
|
|
Handler: _Apps_Inspect_Handler,
|
|
},
|
|
{
|
|
MethodName: "Delete",
|
|
Handler: _Apps_Delete_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "svc.proto",
|
|
}
|
|
|
|
func init() { proto.RegisterFile("svc.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 737 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xc4, 0x55, 0xc1, 0x6e, 0xd3, 0x4c,
|
|
0x10, 0x56, 0x6c, 0xd7, 0x89, 0x27, 0xff, 0xdf, 0x86, 0x2d, 0x14, 0x63, 0x4a, 0x1b, 0x19, 0x21,
|
|
0x45, 0x95, 0x70, 0xd4, 0x82, 0x04, 0x2d, 0xb4, 0x92, 0x55, 0x7a, 0xa8, 0x28, 0x2a, 0xb2, 0xd4,
|
|
0x9e, 0xb8, 0x6c, 0xe3, 0x25, 0x58, 0xb1, 0xd7, 0x2b, 0xef, 0x26, 0xa8, 0x20, 0x2e, 0xdc, 0x90,
|
|
0xb8, 0xf1, 0x12, 0xbc, 0x08, 0x4f, 0xc0, 0x2b, 0xf0, 0x20, 0xc8, 0xeb, 0x8d, 0xed, 0x94, 0x20,
|
|
0xc8, 0x89, 0xdb, 0xce, 0xcc, 0xf7, 0x4d, 0x66, 0xbe, 0x99, 0x8c, 0xc1, 0xe2, 0x93, 0x81, 0xc7,
|
|
0xb2, 0x54, 0xa4, 0xce, 0xfa, 0x30, 0x4d, 0x87, 0x31, 0xe9, 0x63, 0x16, 0xf5, 0x31, 0xa5, 0xa9,
|
|
0xc0, 0x22, 0x4a, 0x29, 0x2f, 0xa2, 0xee, 0x2b, 0x58, 0xf6, 0x19, 0xe3, 0x27, 0x11, 0x17, 0x2f,
|
|
0x71, 0x86, 0x13, 0x8e, 0x1c, 0x68, 0xc5, 0xf8, 0x82, 0xc4, 0xcf, 0xc9, 0xa5, 0xdd, 0xe8, 0x36,
|
|
0x7a, 0x56, 0x50, 0xda, 0x65, 0xec, 0x1c, 0xc7, 0xb6, 0x56, 0x8b, 0x9d, 0xe3, 0x18, 0x21, 0x30,
|
|
0x28, 0x4e, 0x88, 0xad, 0x4b, 0xbf, 0x7c, 0xbb, 0x07, 0xd0, 0x9a, 0x66, 0x47, 0x36, 0x34, 0x13,
|
|
0xc2, 0x39, 0x1e, 0x12, 0x95, 0x76, 0x6a, 0x22, 0x1b, 0x0c, 0xcc, 0x18, 0xb7, 0xb5, 0xae, 0xde,
|
|
0x6b, 0xef, 0x18, 0x9e, 0xcf, 0x58, 0x20, 0x3d, 0xee, 0x57, 0x0d, 0x5a, 0x2f, 0x30, 0x8d, 0x5e,
|
|
0x13, 0x2e, 0xd0, 0x53, 0x68, 0x13, 0x3a, 0x89, 0xb2, 0x94, 0x26, 0x84, 0x0a, 0xbb, 0x21, 0xd1,
|
|
0x8e, 0x37, 0x8d, 0x7b, 0x47, 0x55, 0xf0, 0x88, 0x8a, 0xec, 0x32, 0xa8, 0xc3, 0xd1, 0x7d, 0x30,
|
|
0x65, 0xa9, 0xd3, 0x9f, 0xb9, 0x51, 0x11, 0x4f, 0xa4, 0xbf, 0xe0, 0x28, 0x10, 0xea, 0x42, 0x3b,
|
|
0x4c, 0x07, 0x23, 0x92, 0x1d, 0x27, 0x79, 0xc5, 0x45, 0x53, 0x75, 0x57, 0xd9, 0xaf, 0x51, 0xf5,
|
|
0xeb, 0x1c, 0x40, 0xe7, 0x6a, 0x15, 0xa8, 0x03, 0xfa, 0xa8, 0x94, 0x32, 0x7f, 0xa2, 0xeb, 0xb0,
|
|
0x34, 0xc1, 0xf1, 0x98, 0x28, 0x09, 0x0b, 0x63, 0x4f, 0x7b, 0xdc, 0x70, 0x76, 0xa1, 0x5d, 0x2b,
|
|
0x66, 0x11, 0xaa, 0xfb, 0x49, 0x07, 0xdd, 0x67, 0x0c, 0x2d, 0x83, 0x16, 0x85, 0x8a, 0xa2, 0x45,
|
|
0x61, 0x59, 0xa6, 0x56, 0x95, 0xf9, 0x17, 0xcd, 0x3d, 0x9a, 0xd5, 0xda, 0x50, 0x92, 0xf9, 0x8c,
|
|
0xfd, 0x41, 0xe6, 0x5e, 0x29, 0xf3, 0x92, 0xe4, 0x74, 0x24, 0x67, 0x9e, 0xc2, 0x3d, 0x58, 0xc1,
|
|
0x63, 0xf1, 0x26, 0xcd, 0xa2, 0x77, 0x24, 0x3c, 0xe3, 0x24, 0xe3, 0xb6, 0xd9, 0xd5, 0x7b, 0x56,
|
|
0x70, 0xd5, 0x8d, 0xd6, 0xc1, 0x8a, 0x28, 0x17, 0x98, 0x0e, 0x08, 0xb7, 0x9b, 0xdd, 0x46, 0x6f,
|
|
0x29, 0xa8, 0x1c, 0x68, 0x0d, 0x4c, 0x2e, 0xb0, 0x18, 0x73, 0xbb, 0x25, 0xfb, 0x50, 0xd6, 0xbf,
|
|
0x9c, 0xc5, 0x67, 0x03, 0x2c, 0x9f, 0xb1, 0x33, 0x16, 0x62, 0x51, 0x2d, 0x4a, 0xa3, 0x36, 0x01,
|
|
0x07, 0x5a, 0x94, 0xbc, 0x2d, 0xe4, 0x57, 0x7f, 0xa4, 0xa9, 0x8d, 0x3c, 0x30, 0x09, 0x9d, 0xf8,
|
|
0x61, 0x68, 0xeb, 0x52, 0xc2, 0x35, 0xaf, 0xcc, 0x95, 0x8b, 0xef, 0x87, 0xa1, 0x12, 0xb2, 0x40,
|
|
0xe5, 0x75, 0x10, 0x3a, 0x09, 0x12, 0x39, 0x25, 0x2b, 0x28, 0x0c, 0xf4, 0x50, 0xfd, 0x55, 0xf3,
|
|
0x3c, 0xc5, 0x28, 0xec, 0x5a, 0x9e, 0x13, 0x15, 0x2a, 0x32, 0x95, 0x48, 0xb4, 0x0d, 0x4d, 0xf9,
|
|
0x0e, 0x12, 0x39, 0x8c, 0xf6, 0xce, 0xcd, 0xab, 0xa4, 0x20, 0x29, 0x38, 0x53, 0x1c, 0xda, 0x00,
|
|
0x18, 0x66, 0x98, 0x8a, 0x62, 0x84, 0x4d, 0x59, 0x43, 0xcd, 0x93, 0x2f, 0x5b, 0x46, 0x26, 0xe9,
|
|
0x88, 0x14, 0x80, 0x96, 0x04, 0xd4, 0x5d, 0x68, 0x0b, 0x3a, 0x79, 0xf3, 0x6a, 0xa2, 0x87, 0xe9,
|
|
0x98, 0x0a, 0xdb, 0x92, 0x63, 0xfe, 0xc5, 0x9f, 0x4f, 0xa5, 0xa6, 0xc1, 0x42, 0x03, 0x7d, 0x02,
|
|
0xff, 0xcf, 0xb4, 0xbd, 0x10, 0x79, 0x0f, 0xfe, 0xab, 0xb7, 0xbf, 0xd0, 0x3a, 0x74, 0x01, 0x7c,
|
|
0xc6, 0x8e, 0x29, 0x67, 0x64, 0x20, 0xe6, 0xad, 0x83, 0xbb, 0x29, 0xf7, 0xe5, 0x19, 0x89, 0xc9,
|
|
0xfc, 0x7d, 0x71, 0x37, 0x40, 0x3b, 0x1d, 0xfd, 0xfe, 0x84, 0xee, 0x7c, 0xd3, 0xc0, 0xc8, 0x2f,
|
|
0x2d, 0xda, 0x07, 0x43, 0x5e, 0xdb, 0x15, 0x6f, 0xf6, 0xac, 0x3b, 0x56, 0xe9, 0x70, 0x6f, 0x7d,
|
|
0xfc, 0xfe, 0xe3, 0x8b, 0xb6, 0x8a, 0xae, 0xc9, 0x6f, 0xc2, 0x64, 0xbb, 0x9f, 0xdf, 0xda, 0x7e,
|
|
0x9c, 0xd3, 0x76, 0xc1, 0x3c, 0xcc, 0x48, 0xbe, 0xb5, 0x56, 0x79, 0x1f, 0x1d, 0x79, 0x91, 0xdd,
|
|
0x0d, 0xc9, 0xb2, 0xdd, 0xd5, 0x19, 0xd6, 0x40, 0xa2, 0xf7, 0x1a, 0x5b, 0xc8, 0x07, 0x53, 0x2d,
|
|
0x3c, 0x54, 0x3b, 0xa3, 0xb8, 0xf7, 0x24, 0x77, 0xd3, 0x75, 0x66, 0xb8, 0xef, 0xf3, 0xd6, 0x3e,
|
|
0xf4, 0xc7, 0x12, 0x59, 0xa4, 0x68, 0x4e, 0x55, 0x6a, 0x7b, 0x95, 0x64, 0x2a, 0xc9, 0x5d, 0x99,
|
|
0xe4, 0x0e, 0xba, 0x3d, 0x2f, 0x49, 0xa4, 0x78, 0xfb, 0x60, 0x2a, 0x19, 0x65, 0x15, 0xc5, 0xdb,
|
|
0xd1, 0xbd, 0xd3, 0x91, 0xeb, 0x4a, 0xfe, 0xfa, 0xd6, 0xdc, 0x22, 0x42, 0x09, 0xbc, 0x30, 0xe5,
|
|
0x57, 0xf1, 0xc1, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x5a, 0x76, 0xc6, 0x40, 0x07, 0x00,
|
|
0x00,
|
|
}
|