1// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: google.golang.org/appengine/internal/app_identity/app_identity_service.proto
3
4/*
5Package app_identity is a generated protocol buffer package.
6
7It is generated from these files:
8	google.golang.org/appengine/internal/app_identity/app_identity_service.proto
9
10It has these top-level messages:
11	AppIdentityServiceError
12	SignForAppRequest
13	SignForAppResponse
14	GetPublicCertificateForAppRequest
15	PublicCertificate
16	GetPublicCertificateForAppResponse
17	GetServiceAccountNameRequest
18	GetServiceAccountNameResponse
19	GetAccessTokenRequest
20	GetAccessTokenResponse
21	GetDefaultGcsBucketNameRequest
22	GetDefaultGcsBucketNameResponse
23*/
24package app_identity
25
26import proto "github.com/golang/protobuf/proto"
27import fmt "fmt"
28import math "math"
29
30// Reference imports to suppress errors if they are not otherwise used.
31var _ = proto.Marshal
32var _ = fmt.Errorf
33var _ = math.Inf
34
35// This is a compile-time assertion to ensure that this generated file
36// is compatible with the proto package it is being compiled against.
37// A compilation error at this line likely means your copy of the
38// proto package needs to be updated.
39const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
40
41type AppIdentityServiceError_ErrorCode int32
42
43const (
44	AppIdentityServiceError_SUCCESS           AppIdentityServiceError_ErrorCode = 0
45	AppIdentityServiceError_UNKNOWN_SCOPE     AppIdentityServiceError_ErrorCode = 9
46	AppIdentityServiceError_BLOB_TOO_LARGE    AppIdentityServiceError_ErrorCode = 1000
47	AppIdentityServiceError_DEADLINE_EXCEEDED AppIdentityServiceError_ErrorCode = 1001
48	AppIdentityServiceError_NOT_A_VALID_APP   AppIdentityServiceError_ErrorCode = 1002
49	AppIdentityServiceError_UNKNOWN_ERROR     AppIdentityServiceError_ErrorCode = 1003
50	AppIdentityServiceError_NOT_ALLOWED       AppIdentityServiceError_ErrorCode = 1005
51	AppIdentityServiceError_NOT_IMPLEMENTED   AppIdentityServiceError_ErrorCode = 1006
52)
53
54var AppIdentityServiceError_ErrorCode_name = map[int32]string{
55	0:    "SUCCESS",
56	9:    "UNKNOWN_SCOPE",
57	1000: "BLOB_TOO_LARGE",
58	1001: "DEADLINE_EXCEEDED",
59	1002: "NOT_A_VALID_APP",
60	1003: "UNKNOWN_ERROR",
61	1005: "NOT_ALLOWED",
62	1006: "NOT_IMPLEMENTED",
63}
64var AppIdentityServiceError_ErrorCode_value = map[string]int32{
65	"SUCCESS":           0,
66	"UNKNOWN_SCOPE":     9,
67	"BLOB_TOO_LARGE":    1000,
68	"DEADLINE_EXCEEDED": 1001,
69	"NOT_A_VALID_APP":   1002,
70	"UNKNOWN_ERROR":     1003,
71	"NOT_ALLOWED":       1005,
72	"NOT_IMPLEMENTED":   1006,
73}
74
75func (x AppIdentityServiceError_ErrorCode) Enum() *AppIdentityServiceError_ErrorCode {
76	p := new(AppIdentityServiceError_ErrorCode)
77	*p = x
78	return p
79}
80func (x AppIdentityServiceError_ErrorCode) String() string {
81	return proto.EnumName(AppIdentityServiceError_ErrorCode_name, int32(x))
82}
83func (x *AppIdentityServiceError_ErrorCode) UnmarshalJSON(data []byte) error {
84	value, err := proto.UnmarshalJSONEnum(AppIdentityServiceError_ErrorCode_value, data, "AppIdentityServiceError_ErrorCode")
85	if err != nil {
86		return err
87	}
88	*x = AppIdentityServiceError_ErrorCode(value)
89	return nil
90}
91func (AppIdentityServiceError_ErrorCode) EnumDescriptor() ([]byte, []int) {
92	return fileDescriptor0, []int{0, 0}
93}
94
95type AppIdentityServiceError struct {
96	XXX_unrecognized []byte `json:"-"`
97}
98
99func (m *AppIdentityServiceError) Reset()                    { *m = AppIdentityServiceError{} }
100func (m *AppIdentityServiceError) String() string            { return proto.CompactTextString(m) }
101func (*AppIdentityServiceError) ProtoMessage()               {}
102func (*AppIdentityServiceError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
103
104type SignForAppRequest struct {
105	BytesToSign      []byte `protobuf:"bytes,1,opt,name=bytes_to_sign,json=bytesToSign" json:"bytes_to_sign,omitempty"`
106	XXX_unrecognized []byte `json:"-"`
107}
108
109func (m *SignForAppRequest) Reset()                    { *m = SignForAppRequest{} }
110func (m *SignForAppRequest) String() string            { return proto.CompactTextString(m) }
111func (*SignForAppRequest) ProtoMessage()               {}
112func (*SignForAppRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
113
114func (m *SignForAppRequest) GetBytesToSign() []byte {
115	if m != nil {
116		return m.BytesToSign
117	}
118	return nil
119}
120
121type SignForAppResponse struct {
122	KeyName          *string `protobuf:"bytes,1,opt,name=key_name,json=keyName" json:"key_name,omitempty"`
123	SignatureBytes   []byte  `protobuf:"bytes,2,opt,name=signature_bytes,json=signatureBytes" json:"signature_bytes,omitempty"`
124	XXX_unrecognized []byte  `json:"-"`
125}
126
127func (m *SignForAppResponse) Reset()                    { *m = SignForAppResponse{} }
128func (m *SignForAppResponse) String() string            { return proto.CompactTextString(m) }
129func (*SignForAppResponse) ProtoMessage()               {}
130func (*SignForAppResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
131
132func (m *SignForAppResponse) GetKeyName() string {
133	if m != nil && m.KeyName != nil {
134		return *m.KeyName
135	}
136	return ""
137}
138
139func (m *SignForAppResponse) GetSignatureBytes() []byte {
140	if m != nil {
141		return m.SignatureBytes
142	}
143	return nil
144}
145
146type GetPublicCertificateForAppRequest struct {
147	XXX_unrecognized []byte `json:"-"`
148}
149
150func (m *GetPublicCertificateForAppRequest) Reset()         { *m = GetPublicCertificateForAppRequest{} }
151func (m *GetPublicCertificateForAppRequest) String() string { return proto.CompactTextString(m) }
152func (*GetPublicCertificateForAppRequest) ProtoMessage()    {}
153func (*GetPublicCertificateForAppRequest) Descriptor() ([]byte, []int) {
154	return fileDescriptor0, []int{3}
155}
156
157type PublicCertificate struct {
158	KeyName            *string `protobuf:"bytes,1,opt,name=key_name,json=keyName" json:"key_name,omitempty"`
159	X509CertificatePem *string `protobuf:"bytes,2,opt,name=x509_certificate_pem,json=x509CertificatePem" json:"x509_certificate_pem,omitempty"`
160	XXX_unrecognized   []byte  `json:"-"`
161}
162
163func (m *PublicCertificate) Reset()                    { *m = PublicCertificate{} }
164func (m *PublicCertificate) String() string            { return proto.CompactTextString(m) }
165func (*PublicCertificate) ProtoMessage()               {}
166func (*PublicCertificate) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
167
168func (m *PublicCertificate) GetKeyName() string {
169	if m != nil && m.KeyName != nil {
170		return *m.KeyName
171	}
172	return ""
173}
174
175func (m *PublicCertificate) GetX509CertificatePem() string {
176	if m != nil && m.X509CertificatePem != nil {
177		return *m.X509CertificatePem
178	}
179	return ""
180}
181
182type GetPublicCertificateForAppResponse struct {
183	PublicCertificateList      []*PublicCertificate `protobuf:"bytes,1,rep,name=public_certificate_list,json=publicCertificateList" json:"public_certificate_list,omitempty"`
184	MaxClientCacheTimeInSecond *int64               `protobuf:"varint,2,opt,name=max_client_cache_time_in_second,json=maxClientCacheTimeInSecond" json:"max_client_cache_time_in_second,omitempty"`
185	XXX_unrecognized           []byte               `json:"-"`
186}
187
188func (m *GetPublicCertificateForAppResponse) Reset()         { *m = GetPublicCertificateForAppResponse{} }
189func (m *GetPublicCertificateForAppResponse) String() string { return proto.CompactTextString(m) }
190func (*GetPublicCertificateForAppResponse) ProtoMessage()    {}
191func (*GetPublicCertificateForAppResponse) Descriptor() ([]byte, []int) {
192	return fileDescriptor0, []int{5}
193}
194
195func (m *GetPublicCertificateForAppResponse) GetPublicCertificateList() []*PublicCertificate {
196	if m != nil {
197		return m.PublicCertificateList
198	}
199	return nil
200}
201
202func (m *GetPublicCertificateForAppResponse) GetMaxClientCacheTimeInSecond() int64 {
203	if m != nil && m.MaxClientCacheTimeInSecond != nil {
204		return *m.MaxClientCacheTimeInSecond
205	}
206	return 0
207}
208
209type GetServiceAccountNameRequest struct {
210	XXX_unrecognized []byte `json:"-"`
211}
212
213func (m *GetServiceAccountNameRequest) Reset()                    { *m = GetServiceAccountNameRequest{} }
214func (m *GetServiceAccountNameRequest) String() string            { return proto.CompactTextString(m) }
215func (*GetServiceAccountNameRequest) ProtoMessage()               {}
216func (*GetServiceAccountNameRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
217
218type GetServiceAccountNameResponse struct {
219	ServiceAccountName *string `protobuf:"bytes,1,opt,name=service_account_name,json=serviceAccountName" json:"service_account_name,omitempty"`
220	XXX_unrecognized   []byte  `json:"-"`
221}
222
223func (m *GetServiceAccountNameResponse) Reset()                    { *m = GetServiceAccountNameResponse{} }
224func (m *GetServiceAccountNameResponse) String() string            { return proto.CompactTextString(m) }
225func (*GetServiceAccountNameResponse) ProtoMessage()               {}
226func (*GetServiceAccountNameResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
227
228func (m *GetServiceAccountNameResponse) GetServiceAccountName() string {
229	if m != nil && m.ServiceAccountName != nil {
230		return *m.ServiceAccountName
231	}
232	return ""
233}
234
235type GetAccessTokenRequest struct {
236	Scope              []string `protobuf:"bytes,1,rep,name=scope" json:"scope,omitempty"`
237	ServiceAccountId   *int64   `protobuf:"varint,2,opt,name=service_account_id,json=serviceAccountId" json:"service_account_id,omitempty"`
238	ServiceAccountName *string  `protobuf:"bytes,3,opt,name=service_account_name,json=serviceAccountName" json:"service_account_name,omitempty"`
239	XXX_unrecognized   []byte   `json:"-"`
240}
241
242func (m *GetAccessTokenRequest) Reset()                    { *m = GetAccessTokenRequest{} }
243func (m *GetAccessTokenRequest) String() string            { return proto.CompactTextString(m) }
244func (*GetAccessTokenRequest) ProtoMessage()               {}
245func (*GetAccessTokenRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
246
247func (m *GetAccessTokenRequest) GetScope() []string {
248	if m != nil {
249		return m.Scope
250	}
251	return nil
252}
253
254func (m *GetAccessTokenRequest) GetServiceAccountId() int64 {
255	if m != nil && m.ServiceAccountId != nil {
256		return *m.ServiceAccountId
257	}
258	return 0
259}
260
261func (m *GetAccessTokenRequest) GetServiceAccountName() string {
262	if m != nil && m.ServiceAccountName != nil {
263		return *m.ServiceAccountName
264	}
265	return ""
266}
267
268type GetAccessTokenResponse struct {
269	AccessToken      *string `protobuf:"bytes,1,opt,name=access_token,json=accessToken" json:"access_token,omitempty"`
270	ExpirationTime   *int64  `protobuf:"varint,2,opt,name=expiration_time,json=expirationTime" json:"expiration_time,omitempty"`
271	XXX_unrecognized []byte  `json:"-"`
272}
273
274func (m *GetAccessTokenResponse) Reset()                    { *m = GetAccessTokenResponse{} }
275func (m *GetAccessTokenResponse) String() string            { return proto.CompactTextString(m) }
276func (*GetAccessTokenResponse) ProtoMessage()               {}
277func (*GetAccessTokenResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
278
279func (m *GetAccessTokenResponse) GetAccessToken() string {
280	if m != nil && m.AccessToken != nil {
281		return *m.AccessToken
282	}
283	return ""
284}
285
286func (m *GetAccessTokenResponse) GetExpirationTime() int64 {
287	if m != nil && m.ExpirationTime != nil {
288		return *m.ExpirationTime
289	}
290	return 0
291}
292
293type GetDefaultGcsBucketNameRequest struct {
294	XXX_unrecognized []byte `json:"-"`
295}
296
297func (m *GetDefaultGcsBucketNameRequest) Reset()                    { *m = GetDefaultGcsBucketNameRequest{} }
298func (m *GetDefaultGcsBucketNameRequest) String() string            { return proto.CompactTextString(m) }
299func (*GetDefaultGcsBucketNameRequest) ProtoMessage()               {}
300func (*GetDefaultGcsBucketNameRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
301
302type GetDefaultGcsBucketNameResponse struct {
303	DefaultGcsBucketName *string `protobuf:"bytes,1,opt,name=default_gcs_bucket_name,json=defaultGcsBucketName" json:"default_gcs_bucket_name,omitempty"`
304	XXX_unrecognized     []byte  `json:"-"`
305}
306
307func (m *GetDefaultGcsBucketNameResponse) Reset()         { *m = GetDefaultGcsBucketNameResponse{} }
308func (m *GetDefaultGcsBucketNameResponse) String() string { return proto.CompactTextString(m) }
309func (*GetDefaultGcsBucketNameResponse) ProtoMessage()    {}
310func (*GetDefaultGcsBucketNameResponse) Descriptor() ([]byte, []int) {
311	return fileDescriptor0, []int{11}
312}
313
314func (m *GetDefaultGcsBucketNameResponse) GetDefaultGcsBucketName() string {
315	if m != nil && m.DefaultGcsBucketName != nil {
316		return *m.DefaultGcsBucketName
317	}
318	return ""
319}
320
321func init() {
322	proto.RegisterType((*AppIdentityServiceError)(nil), "appengine.AppIdentityServiceError")
323	proto.RegisterType((*SignForAppRequest)(nil), "appengine.SignForAppRequest")
324	proto.RegisterType((*SignForAppResponse)(nil), "appengine.SignForAppResponse")
325	proto.RegisterType((*GetPublicCertificateForAppRequest)(nil), "appengine.GetPublicCertificateForAppRequest")
326	proto.RegisterType((*PublicCertificate)(nil), "appengine.PublicCertificate")
327	proto.RegisterType((*GetPublicCertificateForAppResponse)(nil), "appengine.GetPublicCertificateForAppResponse")
328	proto.RegisterType((*GetServiceAccountNameRequest)(nil), "appengine.GetServiceAccountNameRequest")
329	proto.RegisterType((*GetServiceAccountNameResponse)(nil), "appengine.GetServiceAccountNameResponse")
330	proto.RegisterType((*GetAccessTokenRequest)(nil), "appengine.GetAccessTokenRequest")
331	proto.RegisterType((*GetAccessTokenResponse)(nil), "appengine.GetAccessTokenResponse")
332	proto.RegisterType((*GetDefaultGcsBucketNameRequest)(nil), "appengine.GetDefaultGcsBucketNameRequest")
333	proto.RegisterType((*GetDefaultGcsBucketNameResponse)(nil), "appengine.GetDefaultGcsBucketNameResponse")
334}
335
336func init() {
337	proto.RegisterFile("google.golang.org/appengine/internal/app_identity/app_identity_service.proto", fileDescriptor0)
338}
339
340var fileDescriptor0 = []byte{
341	// 676 bytes of a gzipped FileDescriptorProto
342	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0xdb, 0x6e, 0xda, 0x58,
343	0x14, 0x1d, 0x26, 0x1a, 0x31, 0x6c, 0x12, 0x62, 0xce, 0x90, 0xcb, 0x8c, 0x32, 0xb9, 0x78, 0x1e,
344	0x26, 0x0f, 0x15, 0x89, 0x2a, 0x45, 0x55, 0x1f, 0x8d, 0xed, 0x22, 0x54, 0x07, 0x53, 0x43, 0x9a,
345	0xa8, 0x2f, 0xa7, 0xce, 0x61, 0xc7, 0x3d, 0x02, 0x9f, 0xe3, 0xda, 0x87, 0x0a, 0x3e, 0xa2, 0x3f,
346	0xd2, 0x9f, 0xe8, 0x5b, 0xbf, 0xa5, 0x17, 0xb5, 0xdf, 0x50, 0xd9, 0x38, 0x5c, 0x92, 0x92, 0x37,
347	0xbc, 0xf6, 0x5a, 0xcb, 0x6b, 0x2f, 0x6d, 0x0c, 0x4e, 0x20, 0x65, 0x30, 0xc4, 0x7a, 0x20, 0x87,
348	0xbe, 0x08, 0xea, 0x32, 0x0e, 0x4e, 0xfc, 0x28, 0x42, 0x11, 0x70, 0x81, 0x27, 0x5c, 0x28, 0x8c,
349	0x85, 0x3f, 0x4c, 0x21, 0xca, 0xfb, 0x28, 0x14, 0x57, 0x93, 0xa5, 0x07, 0x9a, 0x60, 0xfc, 0x8e,
350	0x33, 0xac, 0x47, 0xb1, 0x54, 0x92, 0x94, 0x66, 0x5a, 0xfd, 0x53, 0x01, 0x76, 0x8c, 0x28, 0x6a,
351	0xe5, 0xc4, 0xee, 0x94, 0x67, 0xc7, 0xb1, 0x8c, 0xf5, 0x0f, 0x05, 0x28, 0x65, 0xbf, 0x4c, 0xd9,
352	0x47, 0x52, 0x86, 0x62, 0xf7, 0xc2, 0x34, 0xed, 0x6e, 0x57, 0xfb, 0x8d, 0x54, 0x61, 0xe3, 0xa2,
353	0xfd, 0xbc, 0xed, 0x5e, 0xb6, 0x69, 0xd7, 0x74, 0x3b, 0xb6, 0x56, 0x22, 0x7f, 0x41, 0xa5, 0xe1,
354	0xb8, 0x0d, 0xda, 0x73, 0x5d, 0xea, 0x18, 0x5e, 0xd3, 0xd6, 0x3e, 0x17, 0xc9, 0x36, 0x54, 0x2d,
355	0xdb, 0xb0, 0x9c, 0x56, 0xdb, 0xa6, 0xf6, 0x95, 0x69, 0xdb, 0x96, 0x6d, 0x69, 0x5f, 0x8a, 0xa4,
356	0x06, 0x9b, 0x6d, 0xb7, 0x47, 0x0d, 0xfa, 0xd2, 0x70, 0x5a, 0x16, 0x35, 0x3a, 0x1d, 0xed, 0x6b,
357	0x91, 0x90, 0xb9, 0xab, 0xed, 0x79, 0xae, 0xa7, 0x7d, 0x2b, 0x12, 0x0d, 0xca, 0x19, 0xd3, 0x71,
358	0xdc, 0x4b, 0xdb, 0xd2, 0xbe, 0xcf, 0xb4, 0xad, 0xf3, 0x8e, 0x63, 0x9f, 0xdb, 0xed, 0x9e, 0x6d,
359	0x69, 0x3f, 0x8a, 0xfa, 0x13, 0xa8, 0x76, 0x79, 0x20, 0x9e, 0xc9, 0xd8, 0x88, 0x22, 0x0f, 0xdf,
360	0x8e, 0x30, 0x51, 0x44, 0x87, 0x8d, 0xeb, 0x89, 0xc2, 0x84, 0x2a, 0x49, 0x13, 0x1e, 0x88, 0xdd,
361	0xc2, 0x61, 0xe1, 0x78, 0xdd, 0x2b, 0x67, 0x60, 0x4f, 0xa6, 0x02, 0xfd, 0x0a, 0xc8, 0xa2, 0x30,
362	0x89, 0xa4, 0x48, 0x90, 0xfc, 0x0d, 0x7f, 0x0e, 0x70, 0x42, 0x85, 0x1f, 0x62, 0x26, 0x2a, 0x79,
363	0xc5, 0x01, 0x4e, 0xda, 0x7e, 0x88, 0xe4, 0x7f, 0xd8, 0x4c, 0xbd, 0x7c, 0x35, 0x8a, 0x91, 0x66,
364	0x4e, 0xbb, 0xbf, 0x67, 0xb6, 0x95, 0x19, 0xdc, 0x48, 0x51, 0xfd, 0x3f, 0x38, 0x6a, 0xa2, 0xea,
365	0x8c, 0xae, 0x87, 0x9c, 0x99, 0x18, 0x2b, 0x7e, 0xc3, 0x99, 0xaf, 0x70, 0x29, 0xa2, 0xfe, 0x1a,
366	0xaa, 0xf7, 0x18, 0x0f, 0xbd, 0xfd, 0x14, 0x6a, 0xe3, 0xb3, 0xd3, 0xa7, 0x94, 0xcd, 0xe9, 0x34,
367	0xc2, 0x30, 0x8b, 0x50, 0xf2, 0x48, 0x3a, 0x5b, 0x70, 0xea, 0x60, 0xa8, 0x7f, 0x2c, 0x80, 0xfe,
368	0x50, 0x8e, 0x7c, 0xe3, 0x1e, 0xec, 0x44, 0x19, 0x65, 0xc9, 0x7a, 0xc8, 0x13, 0xb5, 0x5b, 0x38,
369	0x5c, 0x3b, 0x2e, 0x3f, 0xde, 0xab, 0xcf, 0xce, 0xa6, 0x7e, 0xcf, 0xcc, 0xdb, 0x8a, 0xee, 0x42,
370	0x0e, 0x4f, 0x14, 0x31, 0xe1, 0x20, 0xf4, 0xc7, 0x94, 0x0d, 0x39, 0x0a, 0x45, 0x99, 0xcf, 0xde,
371	0x20, 0x55, 0x3c, 0x44, 0xca, 0x05, 0x4d, 0x90, 0x49, 0xd1, 0xcf, 0x92, 0xaf, 0x79, 0xff, 0x84,
372	0xfe, 0xd8, 0xcc, 0x58, 0x66, 0x4a, 0xea, 0xf1, 0x10, 0x5b, 0xa2, 0x9b, 0x31, 0xf4, 0x7d, 0xd8,
373	0x6b, 0xa2, 0xca, 0x6f, 0xd3, 0x60, 0x4c, 0x8e, 0x84, 0x4a, 0xcb, 0xb8, 0xed, 0xf0, 0x05, 0xfc,
374	0xbb, 0x62, 0x9e, 0xef, 0x76, 0x0a, 0xb5, 0xfc, 0x1f, 0x40, 0xfd, 0xe9, 0x78, 0xb1, 0x5b, 0x92,
375	0xdc, 0x53, 0xea, 0xef, 0x0b, 0xb0, 0xd5, 0x44, 0x65, 0x30, 0x86, 0x49, 0xd2, 0x93, 0x03, 0x14,
376	0xb7, 0x37, 0x55, 0x83, 0x3f, 0x12, 0x26, 0x23, 0xcc, 0x5a, 0x29, 0x79, 0xd3, 0x07, 0xf2, 0x08,
377	0xc8, 0xdd, 0x37, 0xf0, 0xdb, 0xd5, 0xb4, 0x65, 0xff, 0x56, 0x7f, 0x65, 0x9e, 0xb5, 0x95, 0x79,
378	0xfa, 0xb0, 0x7d, 0x37, 0x4e, 0xbe, 0xdb, 0x11, 0xac, 0xfb, 0x19, 0x4c, 0x55, 0x8a, 0xe7, 0x3b,
379	0x95, 0xfd, 0x39, 0x35, 0xbd, 0x58, 0x1c, 0x47, 0x3c, 0xf6, 0x15, 0x97, 0x22, 0xab, 0x3f, 0x4f,
380	0x56, 0x99, 0xc3, 0x69, 0xe1, 0xfa, 0x21, 0xec, 0x37, 0x51, 0x59, 0x78, 0xe3, 0x8f, 0x86, 0xaa,
381	0xc9, 0x92, 0xc6, 0x88, 0x0d, 0x70, 0xa9, 0xea, 0x2b, 0x38, 0x58, 0xc9, 0xc8, 0x03, 0x9d, 0xc1,
382	0x4e, 0x7f, 0x3a, 0xa7, 0x01, 0x4b, 0xe8, 0x75, 0xc6, 0x58, 0xec, 0xbb, 0xd6, 0xff, 0x85, 0xbc,
383	0x51, 0x79, 0xb5, 0xbe, 0xf8, 0xc9, 0xfa, 0x19, 0x00, 0x00, 0xff, 0xff, 0x37, 0x4c, 0x56, 0x38,
384	0xf3, 0x04, 0x00, 0x00,
385}
386