376 lines
15 KiB
Go
376 lines
15 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: envoy/admin/v2alpha/clusters.proto
|
|
|
|
package envoy_admin_v2alpha
|
|
|
|
import (
|
|
fmt "fmt"
|
|
_ "github.com/cncf/udpa/go/udpa/annotations"
|
|
core "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
|
|
_type "github.com/envoyproxy/go-control-plane/envoy/type"
|
|
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 Clusters struct {
|
|
ClusterStatuses []*ClusterStatus `protobuf:"bytes,1,rep,name=cluster_statuses,json=clusterStatuses,proto3" json:"cluster_statuses,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Clusters) Reset() { *m = Clusters{} }
|
|
func (m *Clusters) String() string { return proto.CompactTextString(m) }
|
|
func (*Clusters) ProtoMessage() {}
|
|
func (*Clusters) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c6251a3a957f478b, []int{0}
|
|
}
|
|
|
|
func (m *Clusters) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Clusters.Unmarshal(m, b)
|
|
}
|
|
func (m *Clusters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Clusters.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Clusters) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Clusters.Merge(m, src)
|
|
}
|
|
func (m *Clusters) XXX_Size() int {
|
|
return xxx_messageInfo_Clusters.Size(m)
|
|
}
|
|
func (m *Clusters) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Clusters.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Clusters proto.InternalMessageInfo
|
|
|
|
func (m *Clusters) GetClusterStatuses() []*ClusterStatus {
|
|
if m != nil {
|
|
return m.ClusterStatuses
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ClusterStatus struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
AddedViaApi bool `protobuf:"varint,2,opt,name=added_via_api,json=addedViaApi,proto3" json:"added_via_api,omitempty"`
|
|
SuccessRateEjectionThreshold *_type.Percent `protobuf:"bytes,3,opt,name=success_rate_ejection_threshold,json=successRateEjectionThreshold,proto3" json:"success_rate_ejection_threshold,omitempty"`
|
|
HostStatuses []*HostStatus `protobuf:"bytes,4,rep,name=host_statuses,json=hostStatuses,proto3" json:"host_statuses,omitempty"`
|
|
LocalOriginSuccessRateEjectionThreshold *_type.Percent `protobuf:"bytes,5,opt,name=local_origin_success_rate_ejection_threshold,json=localOriginSuccessRateEjectionThreshold,proto3" json:"local_origin_success_rate_ejection_threshold,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ClusterStatus) Reset() { *m = ClusterStatus{} }
|
|
func (m *ClusterStatus) String() string { return proto.CompactTextString(m) }
|
|
func (*ClusterStatus) ProtoMessage() {}
|
|
func (*ClusterStatus) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c6251a3a957f478b, []int{1}
|
|
}
|
|
|
|
func (m *ClusterStatus) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ClusterStatus.Unmarshal(m, b)
|
|
}
|
|
func (m *ClusterStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ClusterStatus.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ClusterStatus) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ClusterStatus.Merge(m, src)
|
|
}
|
|
func (m *ClusterStatus) XXX_Size() int {
|
|
return xxx_messageInfo_ClusterStatus.Size(m)
|
|
}
|
|
func (m *ClusterStatus) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ClusterStatus.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ClusterStatus proto.InternalMessageInfo
|
|
|
|
func (m *ClusterStatus) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ClusterStatus) GetAddedViaApi() bool {
|
|
if m != nil {
|
|
return m.AddedViaApi
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *ClusterStatus) GetSuccessRateEjectionThreshold() *_type.Percent {
|
|
if m != nil {
|
|
return m.SuccessRateEjectionThreshold
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ClusterStatus) GetHostStatuses() []*HostStatus {
|
|
if m != nil {
|
|
return m.HostStatuses
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ClusterStatus) GetLocalOriginSuccessRateEjectionThreshold() *_type.Percent {
|
|
if m != nil {
|
|
return m.LocalOriginSuccessRateEjectionThreshold
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type HostStatus struct {
|
|
Address *core.Address `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
|
|
Stats []*SimpleMetric `protobuf:"bytes,2,rep,name=stats,proto3" json:"stats,omitempty"`
|
|
HealthStatus *HostHealthStatus `protobuf:"bytes,3,opt,name=health_status,json=healthStatus,proto3" json:"health_status,omitempty"`
|
|
SuccessRate *_type.Percent `protobuf:"bytes,4,opt,name=success_rate,json=successRate,proto3" json:"success_rate,omitempty"`
|
|
Weight uint32 `protobuf:"varint,5,opt,name=weight,proto3" json:"weight,omitempty"`
|
|
Hostname string `protobuf:"bytes,6,opt,name=hostname,proto3" json:"hostname,omitempty"`
|
|
Priority uint32 `protobuf:"varint,7,opt,name=priority,proto3" json:"priority,omitempty"`
|
|
LocalOriginSuccessRate *_type.Percent `protobuf:"bytes,8,opt,name=local_origin_success_rate,json=localOriginSuccessRate,proto3" json:"local_origin_success_rate,omitempty"`
|
|
Locality *core.Locality `protobuf:"bytes,9,opt,name=locality,proto3" json:"locality,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *HostStatus) Reset() { *m = HostStatus{} }
|
|
func (m *HostStatus) String() string { return proto.CompactTextString(m) }
|
|
func (*HostStatus) ProtoMessage() {}
|
|
func (*HostStatus) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c6251a3a957f478b, []int{2}
|
|
}
|
|
|
|
func (m *HostStatus) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_HostStatus.Unmarshal(m, b)
|
|
}
|
|
func (m *HostStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_HostStatus.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *HostStatus) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_HostStatus.Merge(m, src)
|
|
}
|
|
func (m *HostStatus) XXX_Size() int {
|
|
return xxx_messageInfo_HostStatus.Size(m)
|
|
}
|
|
func (m *HostStatus) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_HostStatus.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_HostStatus proto.InternalMessageInfo
|
|
|
|
func (m *HostStatus) GetAddress() *core.Address {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *HostStatus) GetStats() []*SimpleMetric {
|
|
if m != nil {
|
|
return m.Stats
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *HostStatus) GetHealthStatus() *HostHealthStatus {
|
|
if m != nil {
|
|
return m.HealthStatus
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *HostStatus) GetSuccessRate() *_type.Percent {
|
|
if m != nil {
|
|
return m.SuccessRate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *HostStatus) GetWeight() uint32 {
|
|
if m != nil {
|
|
return m.Weight
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HostStatus) GetHostname() string {
|
|
if m != nil {
|
|
return m.Hostname
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HostStatus) GetPriority() uint32 {
|
|
if m != nil {
|
|
return m.Priority
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HostStatus) GetLocalOriginSuccessRate() *_type.Percent {
|
|
if m != nil {
|
|
return m.LocalOriginSuccessRate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *HostStatus) GetLocality() *core.Locality {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type HostHealthStatus struct {
|
|
FailedActiveHealthCheck bool `protobuf:"varint,1,opt,name=failed_active_health_check,json=failedActiveHealthCheck,proto3" json:"failed_active_health_check,omitempty"`
|
|
FailedOutlierCheck bool `protobuf:"varint,2,opt,name=failed_outlier_check,json=failedOutlierCheck,proto3" json:"failed_outlier_check,omitempty"`
|
|
FailedActiveDegradedCheck bool `protobuf:"varint,4,opt,name=failed_active_degraded_check,json=failedActiveDegradedCheck,proto3" json:"failed_active_degraded_check,omitempty"`
|
|
PendingDynamicRemoval bool `protobuf:"varint,5,opt,name=pending_dynamic_removal,json=pendingDynamicRemoval,proto3" json:"pending_dynamic_removal,omitempty"`
|
|
PendingActiveHc bool `protobuf:"varint,6,opt,name=pending_active_hc,json=pendingActiveHc,proto3" json:"pending_active_hc,omitempty"`
|
|
EdsHealthStatus core.HealthStatus `protobuf:"varint,3,opt,name=eds_health_status,json=edsHealthStatus,proto3,enum=envoy.api.v2.core.HealthStatus" json:"eds_health_status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *HostHealthStatus) Reset() { *m = HostHealthStatus{} }
|
|
func (m *HostHealthStatus) String() string { return proto.CompactTextString(m) }
|
|
func (*HostHealthStatus) ProtoMessage() {}
|
|
func (*HostHealthStatus) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c6251a3a957f478b, []int{3}
|
|
}
|
|
|
|
func (m *HostHealthStatus) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_HostHealthStatus.Unmarshal(m, b)
|
|
}
|
|
func (m *HostHealthStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_HostHealthStatus.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *HostHealthStatus) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_HostHealthStatus.Merge(m, src)
|
|
}
|
|
func (m *HostHealthStatus) XXX_Size() int {
|
|
return xxx_messageInfo_HostHealthStatus.Size(m)
|
|
}
|
|
func (m *HostHealthStatus) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_HostHealthStatus.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_HostHealthStatus proto.InternalMessageInfo
|
|
|
|
func (m *HostHealthStatus) GetFailedActiveHealthCheck() bool {
|
|
if m != nil {
|
|
return m.FailedActiveHealthCheck
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HostHealthStatus) GetFailedOutlierCheck() bool {
|
|
if m != nil {
|
|
return m.FailedOutlierCheck
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HostHealthStatus) GetFailedActiveDegradedCheck() bool {
|
|
if m != nil {
|
|
return m.FailedActiveDegradedCheck
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HostHealthStatus) GetPendingDynamicRemoval() bool {
|
|
if m != nil {
|
|
return m.PendingDynamicRemoval
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HostHealthStatus) GetPendingActiveHc() bool {
|
|
if m != nil {
|
|
return m.PendingActiveHc
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HostHealthStatus) GetEdsHealthStatus() core.HealthStatus {
|
|
if m != nil {
|
|
return m.EdsHealthStatus
|
|
}
|
|
return core.HealthStatus_UNKNOWN
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Clusters)(nil), "envoy.admin.v2alpha.Clusters")
|
|
proto.RegisterType((*ClusterStatus)(nil), "envoy.admin.v2alpha.ClusterStatus")
|
|
proto.RegisterType((*HostStatus)(nil), "envoy.admin.v2alpha.HostStatus")
|
|
proto.RegisterType((*HostHealthStatus)(nil), "envoy.admin.v2alpha.HostHealthStatus")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("envoy/admin/v2alpha/clusters.proto", fileDescriptor_c6251a3a957f478b) }
|
|
|
|
var fileDescriptor_c6251a3a957f478b = []byte{
|
|
// 721 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0xdf, 0x6e, 0xd3, 0x3e,
|
|
0x18, 0x55, 0xbb, 0xae, 0xcb, 0xdc, 0xf5, 0xb7, 0xcd, 0xfb, 0xb1, 0x65, 0x65, 0x68, 0x5d, 0x05,
|
|
0xa2, 0x42, 0x28, 0x41, 0x05, 0x6d, 0x17, 0x20, 0xa1, 0xfd, 0x41, 0x9a, 0x80, 0xb1, 0x29, 0x43,
|
|
0x48, 0x70, 0x13, 0x79, 0xce, 0x47, 0x63, 0x48, 0xe3, 0xc8, 0x76, 0x0b, 0xbd, 0xe3, 0xb9, 0x78,
|
|
0x02, 0x6e, 0xb9, 0xe3, 0x86, 0xa7, 0xe0, 0x05, 0x50, 0x6c, 0xb7, 0xcb, 0x58, 0x0a, 0x77, 0x71,
|
|
0xce, 0x39, 0xf6, 0x77, 0xce, 0xf7, 0xd9, 0xa8, 0x03, 0xe9, 0x88, 0x8f, 0x7d, 0x12, 0x0d, 0x58,
|
|
0xea, 0x8f, 0x7a, 0x24, 0xc9, 0x62, 0xe2, 0xd3, 0x64, 0x28, 0x15, 0x08, 0xe9, 0x65, 0x82, 0x2b,
|
|
0x8e, 0xd7, 0x34, 0xc7, 0xd3, 0x1c, 0xcf, 0x72, 0x5a, 0x3b, 0x65, 0xc2, 0x01, 0x28, 0xc1, 0xa8,
|
|
0xd5, 0xb5, 0xb6, 0x2d, 0x25, 0x63, 0xfe, 0xa8, 0xe7, 0x53, 0x2e, 0xc0, 0x27, 0x51, 0x24, 0x40,
|
|
0x4e, 0x08, 0x5b, 0xd7, 0x09, 0x17, 0x44, 0x82, 0x45, 0x6f, 0x5f, 0x47, 0x63, 0x20, 0x89, 0x8a,
|
|
0x43, 0x1a, 0x03, 0xfd, 0x68, 0x59, 0xae, 0x61, 0xa9, 0x71, 0x06, 0x7e, 0x06, 0x82, 0x42, 0xaa,
|
|
0x2c, 0x72, 0x6b, 0x18, 0x65, 0xc4, 0x27, 0x69, 0xca, 0x15, 0x51, 0x8c, 0xa7, 0xd2, 0x97, 0x8a,
|
|
0xa8, 0xa1, 0x3d, 0xbc, 0xf3, 0x16, 0x39, 0x87, 0xd6, 0x27, 0x3e, 0x41, 0x2b, 0xd6, 0x73, 0x68,
|
|
0x38, 0x20, 0xdd, 0x4a, 0x7b, 0xae, 0xdb, 0xe8, 0x75, 0xbc, 0x12, 0xf3, 0x9e, 0x15, 0x9e, 0x6b,
|
|
0x6e, 0xb0, 0x4c, 0x8b, 0x4b, 0x90, 0x9d, 0x9f, 0x55, 0xd4, 0xbc, 0x42, 0xc1, 0x18, 0xd5, 0x52,
|
|
0x32, 0x00, 0xb7, 0xd2, 0xae, 0x74, 0x17, 0x03, 0xfd, 0x8d, 0x3b, 0xa8, 0x49, 0xa2, 0x08, 0xa2,
|
|
0x70, 0xc4, 0x48, 0x48, 0x32, 0xe6, 0x56, 0xdb, 0x95, 0xae, 0x13, 0x34, 0xf4, 0xcf, 0x37, 0x8c,
|
|
0xec, 0x67, 0x0c, 0xbf, 0x43, 0xdb, 0x72, 0x48, 0x29, 0x48, 0x19, 0x0a, 0xa2, 0x20, 0x84, 0x0f,
|
|
0x40, 0x73, 0x2f, 0xa1, 0x8a, 0x05, 0xc8, 0x98, 0x27, 0x91, 0x3b, 0xd7, 0xae, 0x74, 0x1b, 0xbd,
|
|
0x35, 0x5b, 0x67, 0x9e, 0x83, 0x77, 0x66, 0x72, 0x08, 0xb6, 0xac, 0x36, 0x20, 0x0a, 0x9e, 0x59,
|
|
0xe5, 0xeb, 0x89, 0x10, 0x1f, 0xa1, 0x66, 0xcc, 0xa5, 0xba, 0x74, 0x5c, 0xd3, 0x8e, 0xb7, 0x4b,
|
|
0x1d, 0x1f, 0x73, 0xa9, 0xac, 0xdd, 0xa5, 0x78, 0xfa, 0x0d, 0x12, 0x0b, 0x74, 0x3f, 0xe1, 0x94,
|
|
0x24, 0x21, 0x17, 0xac, 0xcf, 0xd2, 0xf0, 0x5f, 0xe5, 0xce, 0xcf, 0x2e, 0xf7, 0xae, 0xde, 0xe8,
|
|
0x54, 0xef, 0x73, 0xfe, 0x97, 0xca, 0x3b, 0x3f, 0xe6, 0x10, 0xba, 0x2c, 0x08, 0x3f, 0x42, 0x0b,
|
|
0x76, 0xae, 0x74, 0xbe, 0x8d, 0x5e, 0x6b, 0x62, 0x21, 0x63, 0xde, 0xa8, 0xe7, 0xe5, 0xa3, 0xe3,
|
|
0xed, 0x1b, 0x46, 0x30, 0xa1, 0xe2, 0x3d, 0x34, 0x9f, 0x3b, 0x97, 0x6e, 0x55, 0xdb, 0xde, 0x29,
|
|
0xb5, 0x7d, 0xce, 0x06, 0x59, 0x02, 0x27, 0x7a, 0xac, 0x03, 0xc3, 0xc7, 0xcf, 0x51, 0xd3, 0xce,
|
|
0xa1, 0x49, 0xce, 0x76, 0xe0, 0xce, 0xcc, 0xdc, 0x8e, 0x35, 0x7b, 0x9a, 0x5e, 0x61, 0x85, 0x77,
|
|
0xd1, 0x52, 0x31, 0x30, 0xb7, 0x36, 0x3b, 0x9d, 0x46, 0xa1, 0x99, 0x78, 0x1d, 0xd5, 0x3f, 0x01,
|
|
0xeb, 0xc7, 0x4a, 0xe7, 0xd9, 0x0c, 0xec, 0x0a, 0xb7, 0x90, 0x93, 0x77, 0x47, 0xcf, 0x5a, 0x5d,
|
|
0xcf, 0xda, 0x74, 0x9d, 0x63, 0x99, 0x60, 0x5c, 0x30, 0x35, 0x76, 0x17, 0xb4, 0x6a, 0xba, 0xc6,
|
|
0xaf, 0xd0, 0xe6, 0xcc, 0x2e, 0xba, 0xce, 0xec, 0xa2, 0xd6, 0xcb, 0x5b, 0x86, 0xf7, 0x90, 0xa3,
|
|
0x91, 0xfc, 0xac, 0x45, 0x2d, 0xbf, 0x59, 0xd2, 0x93, 0x97, 0x96, 0x12, 0x4c, 0xc9, 0x9d, 0x5f,
|
|
0x55, 0xb4, 0xf2, 0x67, 0x66, 0xf8, 0x31, 0x6a, 0xbd, 0x27, 0x2c, 0x81, 0x28, 0x24, 0x54, 0xb1,
|
|
0x11, 0x84, 0xc5, 0x77, 0x40, 0xf7, 0xdc, 0x09, 0x36, 0x0c, 0x63, 0x5f, 0x13, 0x8c, 0xfa, 0x30,
|
|
0x87, 0xf1, 0x03, 0xf4, 0xbf, 0x15, 0xf3, 0xa1, 0x4a, 0x18, 0x08, 0x2b, 0x33, 0xb7, 0x0d, 0x1b,
|
|
0xec, 0xd4, 0x40, 0x46, 0xf1, 0x14, 0x6d, 0x5d, 0x3d, 0x2e, 0x82, 0xbe, 0x20, 0xf9, 0x4d, 0x35,
|
|
0xca, 0x9a, 0x56, 0x6e, 0x16, 0x0f, 0x3c, 0xb2, 0x0c, 0xb3, 0xc1, 0x2e, 0xda, 0xc8, 0x20, 0x8d,
|
|
0x58, 0xda, 0x0f, 0xa3, 0x71, 0x4a, 0x06, 0x8c, 0x86, 0x02, 0x06, 0x7c, 0x44, 0x12, 0xdd, 0x2e,
|
|
0x27, 0xb8, 0x61, 0xe1, 0x23, 0x83, 0x06, 0x06, 0xc4, 0xf7, 0xd0, 0xea, 0x44, 0x37, 0x31, 0x4a,
|
|
0x75, 0x1b, 0x9d, 0x60, 0xd9, 0x02, 0xd6, 0x1f, 0xc5, 0x2f, 0xd0, 0x2a, 0x44, 0x32, 0xbc, 0x3e,
|
|
0x89, 0xff, 0x5d, 0xde, 0xe0, 0x42, 0xd4, 0x57, 0x66, 0x70, 0x19, 0x22, 0x59, 0xfc, 0x71, 0xf0,
|
|
0xe4, 0xeb, 0x97, 0x6f, 0xdf, 0xeb, 0xd5, 0x95, 0x0a, 0xda, 0x61, 0xdc, 0xa8, 0x33, 0xc1, 0x3f,
|
|
0x8f, 0xcb, 0x46, 0xfa, 0x60, 0xf2, 0xb4, 0xc9, 0xb3, 0xfc, 0x1d, 0x3d, 0xab, 0x5c, 0xd4, 0xf5,
|
|
0x83, 0xfa, 0xf0, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6f, 0xed, 0x06, 0x8d, 0x4c, 0x06, 0x00,
|
|
0x00,
|
|
}
|