JVM.pb.go 12.8 KB
Newer Older
H
heyanlong 已提交
1 2 3
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: common/JVM.proto

4
package v2
H
heyanlong 已提交
5 6 7 8 9

import (
	fmt "fmt"
	proto "github.com/golang/protobuf/proto"
	math "math"
何延龙 已提交
10
	v2 "github.com/SkyAPM/SkyAPM-php-sdk/reporter/network/common/v2"
H
heyanlong 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23
)

// 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

何延龙 已提交
24
type PoolTypeV2 int32
H
heyanlong 已提交
25 26

const (
何延龙 已提交
27 28 29 30 31 32
	PoolTypeV2_CODE_CACHE_USAGE PoolTypeV2 = 0
	PoolTypeV2_NEWGEN_USAGE     PoolTypeV2 = 1
	PoolTypeV2_OLDGEN_USAGE     PoolTypeV2 = 2
	PoolTypeV2_SURVIVOR_USAGE   PoolTypeV2 = 3
	PoolTypeV2_PERMGEN_USAGE    PoolTypeV2 = 4
	PoolTypeV2_METASPACE_USAGE  PoolTypeV2 = 5
H
heyanlong 已提交
33 34
)

何延龙 已提交
35
var PoolTypeV2_name = map[int32]string{
H
heyanlong 已提交
36 37 38 39 40 41 42 43
	0: "CODE_CACHE_USAGE",
	1: "NEWGEN_USAGE",
	2: "OLDGEN_USAGE",
	3: "SURVIVOR_USAGE",
	4: "PERMGEN_USAGE",
	5: "METASPACE_USAGE",
}

何延龙 已提交
44
var PoolTypeV2_value = map[string]int32{
H
heyanlong 已提交
45 46 47 48 49 50 51 52
	"CODE_CACHE_USAGE": 0,
	"NEWGEN_USAGE":     1,
	"OLDGEN_USAGE":     2,
	"SURVIVOR_USAGE":   3,
	"PERMGEN_USAGE":    4,
	"METASPACE_USAGE":  5,
}

何延龙 已提交
53 54
func (x PoolTypeV2) String() string {
	return proto.EnumName(PoolTypeV2_name, int32(x))
H
heyanlong 已提交
55 56
}

何延龙 已提交
57
func (PoolTypeV2) EnumDescriptor() ([]byte, []int) {
H
heyanlong 已提交
58 59 60
	return fileDescriptor_42f5f61b58cf3158, []int{0}
}

何延龙 已提交
61
type GCPhraseV2 int32
H
heyanlong 已提交
62 63

const (
何延龙 已提交
64 65
	GCPhraseV2_NEW GCPhraseV2 = 0
	GCPhraseV2_OLD GCPhraseV2 = 1
H
heyanlong 已提交
66 67
)

何延龙 已提交
68
var GCPhraseV2_name = map[int32]string{
H
heyanlong 已提交
69 70 71 72
	0: "NEW",
	1: "OLD",
}

何延龙 已提交
73
var GCPhraseV2_value = map[string]int32{
H
heyanlong 已提交
74 75 76 77
	"NEW": 0,
	"OLD": 1,
}

何延龙 已提交
78 79
func (x GCPhraseV2) String() string {
	return proto.EnumName(GCPhraseV2_name, int32(x))
H
heyanlong 已提交
80 81
}

何延龙 已提交
82
func (GCPhraseV2) EnumDescriptor() ([]byte, []int) {
H
heyanlong 已提交
83 84 85
	return fileDescriptor_42f5f61b58cf3158, []int{1}
}

何延龙 已提交
86 87 88 89 90 91 92 93 94
type JVMMetricV2 struct {
	Time                 int64           `protobuf:"varint,1,opt,name=time,proto3" json:"time,omitempty"`
	Cpu                  *v2.CPUV2       `protobuf:"bytes,2,opt,name=cpu,proto3" json:"cpu,omitempty"`
	Memory               []*MemoryV2     `protobuf:"bytes,3,rep,name=memory,proto3" json:"memory,omitempty"`
	MemoryPool           []*MemoryPoolV2 `protobuf:"bytes,4,rep,name=memoryPool,proto3" json:"memoryPool,omitempty"`
	Gc                   []*GCV2         `protobuf:"bytes,5,rep,name=gc,proto3" json:"gc,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
H
heyanlong 已提交
95 96
}

何延龙 已提交
97 98 99 100
func (m *JVMMetricV2) Reset()         { *m = JVMMetricV2{} }
func (m *JVMMetricV2) String() string { return proto.CompactTextString(m) }
func (*JVMMetricV2) ProtoMessage()    {}
func (*JVMMetricV2) Descriptor() ([]byte, []int) {
H
heyanlong 已提交
101 102 103
	return fileDescriptor_42f5f61b58cf3158, []int{0}
}

何延龙 已提交
104 105
func (m *JVMMetricV2) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_JVMMetricV2.Unmarshal(m, b)
H
heyanlong 已提交
106
}
何延龙 已提交
107 108
func (m *JVMMetricV2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_JVMMetricV2.Marshal(b, m, deterministic)
H
heyanlong 已提交
109
}
何延龙 已提交
110 111
func (m *JVMMetricV2) XXX_Merge(src proto.Message) {
	xxx_messageInfo_JVMMetricV2.Merge(m, src)
H
heyanlong 已提交
112
}
何延龙 已提交
113 114
func (m *JVMMetricV2) XXX_Size() int {
	return xxx_messageInfo_JVMMetricV2.Size(m)
H
heyanlong 已提交
115
}
何延龙 已提交
116 117
func (m *JVMMetricV2) XXX_DiscardUnknown() {
	xxx_messageInfo_JVMMetricV2.DiscardUnknown(m)
H
heyanlong 已提交
118 119
}

何延龙 已提交
120
var xxx_messageInfo_JVMMetricV2 proto.InternalMessageInfo
H
heyanlong 已提交
121

何延龙 已提交
122
func (m *JVMMetricV2) GetTime() int64 {
H
heyanlong 已提交
123 124 125 126 127 128
	if m != nil {
		return m.Time
	}
	return 0
}

何延龙 已提交
129
func (m *JVMMetricV2) GetCpu() *v2.CPUV2 {
H
heyanlong 已提交
130 131 132 133 134 135
	if m != nil {
		return m.Cpu
	}
	return nil
}

何延龙 已提交
136
func (m *JVMMetricV2) GetMemory() []*MemoryV2 {
H
heyanlong 已提交
137 138 139 140 141 142
	if m != nil {
		return m.Memory
	}
	return nil
}

何延龙 已提交
143
func (m *JVMMetricV2) GetMemoryPool() []*MemoryPoolV2 {
H
heyanlong 已提交
144 145 146 147 148 149
	if m != nil {
		return m.MemoryPool
	}
	return nil
}

何延龙 已提交
150
func (m *JVMMetricV2) GetGc() []*GCV2 {
H
heyanlong 已提交
151 152 153 154 155 156
	if m != nil {
		return m.Gc
	}
	return nil
}

何延龙 已提交
157
type MemoryV2 struct {
H
heyanlong 已提交
158 159 160 161 162 163 164 165 166 167
	IsHeap               bool     `protobuf:"varint,1,opt,name=isHeap,proto3" json:"isHeap,omitempty"`
	Init                 int64    `protobuf:"varint,2,opt,name=init,proto3" json:"init,omitempty"`
	Max                  int64    `protobuf:"varint,3,opt,name=max,proto3" json:"max,omitempty"`
	Used                 int64    `protobuf:"varint,4,opt,name=used,proto3" json:"used,omitempty"`
	Committed            int64    `protobuf:"varint,5,opt,name=committed,proto3" json:"committed,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

何延龙 已提交
168 169 170 171
func (m *MemoryV2) Reset()         { *m = MemoryV2{} }
func (m *MemoryV2) String() string { return proto.CompactTextString(m) }
func (*MemoryV2) ProtoMessage()    {}
func (*MemoryV2) Descriptor() ([]byte, []int) {
H
heyanlong 已提交
172 173 174
	return fileDescriptor_42f5f61b58cf3158, []int{1}
}

何延龙 已提交
175 176
func (m *MemoryV2) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemoryV2.Unmarshal(m, b)
H
heyanlong 已提交
177
}
何延龙 已提交
178 179
func (m *MemoryV2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemoryV2.Marshal(b, m, deterministic)
H
heyanlong 已提交
180
}
何延龙 已提交
181 182
func (m *MemoryV2) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemoryV2.Merge(m, src)
H
heyanlong 已提交
183
}
何延龙 已提交
184 185
func (m *MemoryV2) XXX_Size() int {
	return xxx_messageInfo_MemoryV2.Size(m)
H
heyanlong 已提交
186
}
何延龙 已提交
187 188
func (m *MemoryV2) XXX_DiscardUnknown() {
	xxx_messageInfo_MemoryV2.DiscardUnknown(m)
H
heyanlong 已提交
189 190
}

何延龙 已提交
191
var xxx_messageInfo_MemoryV2 proto.InternalMessageInfo
H
heyanlong 已提交
192

何延龙 已提交
193
func (m *MemoryV2) GetIsHeap() bool {
H
heyanlong 已提交
194 195 196 197 198 199
	if m != nil {
		return m.IsHeap
	}
	return false
}

何延龙 已提交
200
func (m *MemoryV2) GetInit() int64 {
H
heyanlong 已提交
201 202 203 204 205 206
	if m != nil {
		return m.Init
	}
	return 0
}

何延龙 已提交
207
func (m *MemoryV2) GetMax() int64 {
H
heyanlong 已提交
208 209 210 211 212 213
	if m != nil {
		return m.Max
	}
	return 0
}

何延龙 已提交
214
func (m *MemoryV2) GetUsed() int64 {
H
heyanlong 已提交
215 216 217 218 219 220
	if m != nil {
		return m.Used
	}
	return 0
}

何延龙 已提交
221
func (m *MemoryV2) GetCommitted() int64 {
H
heyanlong 已提交
222 223 224 225 226 227
	if m != nil {
		return m.Committed
	}
	return 0
}

何延龙 已提交
228 229 230 231 232 233 234 235 236
type MemoryPoolV2 struct {
	Type                 PoolTypeV2 `protobuf:"varint,1,opt,name=type,proto3,enum=PoolTypeV2" json:"type,omitempty"`
	Init                 int64      `protobuf:"varint,2,opt,name=init,proto3" json:"init,omitempty"`
	Max                  int64      `protobuf:"varint,3,opt,name=max,proto3" json:"max,omitempty"`
	Used                 int64      `protobuf:"varint,4,opt,name=used,proto3" json:"used,omitempty"`
	Commited             int64      `protobuf:"varint,5,opt,name=commited,proto3" json:"commited,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
H
heyanlong 已提交
237 238
}

何延龙 已提交
239 240 241 242
func (m *MemoryPoolV2) Reset()         { *m = MemoryPoolV2{} }
func (m *MemoryPoolV2) String() string { return proto.CompactTextString(m) }
func (*MemoryPoolV2) ProtoMessage()    {}
func (*MemoryPoolV2) Descriptor() ([]byte, []int) {
H
heyanlong 已提交
243 244 245
	return fileDescriptor_42f5f61b58cf3158, []int{2}
}

何延龙 已提交
246 247
func (m *MemoryPoolV2) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_MemoryPoolV2.Unmarshal(m, b)
H
heyanlong 已提交
248
}
何延龙 已提交
249 250
func (m *MemoryPoolV2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_MemoryPoolV2.Marshal(b, m, deterministic)
H
heyanlong 已提交
251
}
何延龙 已提交
252 253
func (m *MemoryPoolV2) XXX_Merge(src proto.Message) {
	xxx_messageInfo_MemoryPoolV2.Merge(m, src)
H
heyanlong 已提交
254
}
何延龙 已提交
255 256
func (m *MemoryPoolV2) XXX_Size() int {
	return xxx_messageInfo_MemoryPoolV2.Size(m)
H
heyanlong 已提交
257
}
何延龙 已提交
258 259
func (m *MemoryPoolV2) XXX_DiscardUnknown() {
	xxx_messageInfo_MemoryPoolV2.DiscardUnknown(m)
H
heyanlong 已提交
260 261
}

何延龙 已提交
262
var xxx_messageInfo_MemoryPoolV2 proto.InternalMessageInfo
H
heyanlong 已提交
263

何延龙 已提交
264
func (m *MemoryPoolV2) GetType() PoolTypeV2 {
H
heyanlong 已提交
265 266 267
	if m != nil {
		return m.Type
	}
何延龙 已提交
268
	return PoolTypeV2_CODE_CACHE_USAGE
H
heyanlong 已提交
269 270
}

何延龙 已提交
271
func (m *MemoryPoolV2) GetInit() int64 {
H
heyanlong 已提交
272 273 274 275 276 277
	if m != nil {
		return m.Init
	}
	return 0
}

何延龙 已提交
278
func (m *MemoryPoolV2) GetMax() int64 {
H
heyanlong 已提交
279 280 281 282 283 284
	if m != nil {
		return m.Max
	}
	return 0
}

何延龙 已提交
285
func (m *MemoryPoolV2) GetUsed() int64 {
H
heyanlong 已提交
286 287 288 289 290 291
	if m != nil {
		return m.Used
	}
	return 0
}

何延龙 已提交
292
func (m *MemoryPoolV2) GetCommited() int64 {
H
heyanlong 已提交
293 294 295 296 297 298
	if m != nil {
		return m.Commited
	}
	return 0
}

何延龙 已提交
299 300 301 302 303 304 305
type GCV2 struct {
	Phrase               GCPhraseV2 `protobuf:"varint,1,opt,name=phrase,proto3,enum=GCPhraseV2" json:"phrase,omitempty"`
	Count                int64      `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	Time                 int64      `protobuf:"varint,3,opt,name=time,proto3" json:"time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
H
heyanlong 已提交
306 307
}

何延龙 已提交
308 309 310 311
func (m *GCV2) Reset()         { *m = GCV2{} }
func (m *GCV2) String() string { return proto.CompactTextString(m) }
func (*GCV2) ProtoMessage()    {}
func (*GCV2) Descriptor() ([]byte, []int) {
H
heyanlong 已提交
312 313 314
	return fileDescriptor_42f5f61b58cf3158, []int{3}
}

何延龙 已提交
315 316
func (m *GCV2) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GCV2.Unmarshal(m, b)
H
heyanlong 已提交
317
}
何延龙 已提交
318 319
func (m *GCV2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GCV2.Marshal(b, m, deterministic)
H
heyanlong 已提交
320
}
何延龙 已提交
321 322
func (m *GCV2) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GCV2.Merge(m, src)
H
heyanlong 已提交
323
}
何延龙 已提交
324 325
func (m *GCV2) XXX_Size() int {
	return xxx_messageInfo_GCV2.Size(m)
H
heyanlong 已提交
326
}
何延龙 已提交
327 328
func (m *GCV2) XXX_DiscardUnknown() {
	xxx_messageInfo_GCV2.DiscardUnknown(m)
H
heyanlong 已提交
329 330
}

何延龙 已提交
331
var xxx_messageInfo_GCV2 proto.InternalMessageInfo
H
heyanlong 已提交
332

何延龙 已提交
333
func (m *GCV2) GetPhrase() GCPhraseV2 {
H
heyanlong 已提交
334 335 336
	if m != nil {
		return m.Phrase
	}
何延龙 已提交
337
	return GCPhraseV2_NEW
H
heyanlong 已提交
338 339
}

何延龙 已提交
340
func (m *GCV2) GetCount() int64 {
H
heyanlong 已提交
341 342 343 344 345 346
	if m != nil {
		return m.Count
	}
	return 0
}

何延龙 已提交
347
func (m *GCV2) GetTime() int64 {
H
heyanlong 已提交
348 349 350 351 352 353 354
	if m != nil {
		return m.Time
	}
	return 0
}

func init() {
何延龙 已提交
355 356 357 358 359 360
	proto.RegisterEnum("PoolTypeV2", PoolTypeV2_name, PoolTypeV2_value)
	proto.RegisterEnum("GCPhraseV2", GCPhraseV2_name, GCPhraseV2_value)
	proto.RegisterType((*JVMMetricV2)(nil), "JVMMetricV2")
	proto.RegisterType((*MemoryV2)(nil), "MemoryV2")
	proto.RegisterType((*MemoryPoolV2)(nil), "MemoryPoolV2")
	proto.RegisterType((*GCV2)(nil), "GCV2")
H
heyanlong 已提交
361 362 363 364 365
}

func init() { proto.RegisterFile("common/JVM.proto", fileDescriptor_42f5f61b58cf3158) }

var fileDescriptor_42f5f61b58cf3158 = []byte{
何延龙 已提交
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
	// 503 bytes of a gzipped FileDescriptorProto
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0xd1, 0x6e, 0xd3, 0x30,
	0x14, 0x86, 0x97, 0x26, 0x2d, 0xdd, 0xe9, 0x36, 0x82, 0x37, 0x50, 0x54, 0x21, 0x28, 0x85, 0x8b,
	0x6a, 0x12, 0x2e, 0x32, 0x4f, 0x50, 0xd2, 0xa8, 0x63, 0x5a, 0xda, 0xc8, 0x5d, 0x5d, 0x89, 0x9b,
	0x29, 0x64, 0x56, 0x16, 0xb5, 0x89, 0xa3, 0x34, 0xa5, 0x84, 0x4b, 0x24, 0xde, 0x84, 0x2b, 0x9e,
	0x12, 0xd9, 0x49, 0x9b, 0xdd, 0xef, 0x2a, 0xff, 0xf9, 0xce, 0xaf, 0x93, 0xdf, 0xc7, 0x32, 0x98,
	0x81, 0x88, 0x63, 0x91, 0x0c, 0xaf, 0x99, 0x8b, 0xd3, 0x4c, 0xe4, 0xa2, 0x7b, 0x5e, 0x91, 0xf2,
	0x53, 0xc2, 0xfe, 0x5f, 0x0d, 0x3a, 0xd7, 0xcc, 0x75, 0x79, 0x9e, 0x45, 0x01, 0x23, 0x08, 0x81,
	0x91, 0x47, 0x31, 0xb7, 0xb4, 0x9e, 0x36, 0xd0, 0xa9, 0xd2, 0xc8, 0x02, 0x3d, 0x48, 0xb7, 0x56,
	0xa3, 0xa7, 0x0d, 0x3a, 0xa4, 0x85, 0x6d, 0x6f, 0xc1, 0x08, 0x95, 0x08, 0xbd, 0x83, 0x56, 0xcc,
	0x63, 0x91, 0x15, 0x96, 0xde, 0xd3, 0x07, 0x1d, 0x72, 0x8c, 0x5d, 0x55, 0x32, 0x42, 0xab, 0x06,
	0xfa, 0x08, 0x50, 0x2a, 0x4f, 0x88, 0xb5, 0x65, 0x28, 0xdb, 0x69, 0x65, 0x93, 0x88, 0x11, 0xfa,
	0xc8, 0x80, 0x5e, 0x42, 0x23, 0x0c, 0xac, 0xa6, 0xb2, 0x35, 0xf1, 0xc4, 0x66, 0x84, 0x36, 0xc2,
	0xa0, 0xff, 0x0b, 0xda, 0xfb, 0xc9, 0xe8, 0x15, 0xb4, 0xa2, 0xcd, 0x15, 0xf7, 0x53, 0x15, 0xb2,
	0x4d, 0xab, 0x4a, 0x46, 0x8f, 0x92, 0x28, 0x57, 0x39, 0x75, 0xaa, 0x34, 0x32, 0x41, 0x8f, 0xfd,
	0x9f, 0x96, 0xae, 0x90, 0x94, 0xd2, 0xb5, 0xdd, 0xf0, 0x7b, 0xcb, 0x28, 0x5d, 0x52, 0xa3, 0xd7,
	0x70, 0x2c, 0x97, 0x12, 0xe5, 0x39, 0xbf, 0xb7, 0x9a, 0xaa, 0x51, 0x83, 0xfe, 0x1f, 0x0d, 0x4e,
	0x1e, 0xe7, 0x45, 0x6f, 0xc1, 0xc8, 0x8b, 0xb4, 0xdc, 0xd1, 0x19, 0xe9, 0x60, 0x89, 0x6f, 0x8b,
	0x94, 0x33, 0x42, 0x55, 0xe3, 0x09, 0x49, 0xba, 0xd0, 0x2e, 0x7f, 0x7c, 0x08, 0x72, 0xa8, 0xfb,
	0x0b, 0x30, 0xe4, 0x3e, 0xd0, 0x7b, 0x68, 0xa5, 0x0f, 0x99, 0xbf, 0xa9, 0x03, 0x4c, 0x6c, 0x4f,
	0x01, 0xb9, 0xf6, 0xb2, 0x85, 0x2e, 0xa0, 0x19, 0x88, 0x6d, 0xb2, 0xcf, 0x50, 0x16, 0x87, 0xdb,
	0xd5, 0xeb, 0xdb, 0xbd, 0xfc, 0xad, 0x01, 0xd4, 0x27, 0x40, 0x17, 0x60, 0xda, 0xb3, 0xb1, 0x73,
	0x67, 0x8f, 0xec, 0x2b, 0xe7, 0x6e, 0x31, 0x1f, 0x4d, 0x1c, 0xf3, 0x08, 0x99, 0x70, 0x32, 0x75,
	0x96, 0x13, 0x67, 0x5a, 0x11, 0x4d, 0x92, 0xd9, 0xcd, 0xb8, 0x26, 0x0d, 0x84, 0xe0, 0x6c, 0xbe,
	0xa0, 0xec, 0x2b, 0x9b, 0xd1, 0x8a, 0xe9, 0xe8, 0x05, 0x9c, 0x7a, 0x0e, 0x75, 0x6b, 0x9b, 0x81,
	0xce, 0xe1, 0xb9, 0xeb, 0xdc, 0x8e, 0xe6, 0xde, 0xc8, 0xde, 0xcf, 0x6f, 0x5e, 0xbe, 0x01, 0xa8,
	0x0f, 0x81, 0x9e, 0x81, 0x3e, 0x75, 0x96, 0xe6, 0x91, 0x14, 0xb3, 0x9b, 0xb1, 0xa9, 0x7d, 0xd9,
	0xc1, 0x27, 0x91, 0x85, 0xd8, 0x4f, 0xfd, 0xe0, 0x81, 0xe3, 0xcd, 0xaa, 0xd8, 0xf9, 0xeb, 0x55,
	0x94, 0x48, 0x12, 0xe3, 0x84, 0xe7, 0x3b, 0x91, 0xad, 0xf0, 0xda, 0x4f, 0xc2, 0xad, 0x1f, 0x72,
	0xec, 0x87, 0x3c, 0xc9, 0x3d, 0xed, 0xdb, 0x87, 0xda, 0x38, 0xac, 0x4c, 0xc3, 0xbd, 0x69, 0xa8,
	0x4c, 0xc3, 0x1f, 0xe4, 0x5f, 0xa3, 0x3b, 0x5f, 0x15, 0xcb, 0x6a, 0xde, 0xb4, 0xb4, 0x79, 0xf2,
	0x71, 0x04, 0x62, 0xfd, 0xbd, 0xa5, 0x9e, 0xc9, 0xe7, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x86,
	0x6c, 0x8e, 0xdb, 0x4f, 0x03, 0x00, 0x00,
H
heyanlong 已提交
399
}