Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: tokenserver/api/admin/v1/admin.pb.go

Issue 2993763002: tokenserver: Extract rules check into a separate function. (Closed)
Patch Set: more nits Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Code generated by protoc-gen-go. DO NOT EDIT. 1 // Code generated by protoc-gen-go. DO NOT EDIT.
2 // source: github.com/luci/luci-go/tokenserver/api/admin/v1/admin.proto 2 // source: github.com/luci/luci-go/tokenserver/api/admin/v1/admin.proto
3 3
4 /* 4 /*
5 Package admin is a generated protocol buffer package. 5 Package admin is a generated protocol buffer package.
6 6
7 It is generated from these files: 7 It is generated from these files:
8 github.com/luci/luci-go/tokenserver/api/admin/v1/admin.proto 8 github.com/luci/luci-go/tokenserver/api/admin/v1/admin.proto
9 github.com/luci/luci-go/tokenserver/api/admin/v1/certificate_authorities .proto 9 github.com/luci/luci-go/tokenserver/api/admin/v1/certificate_authorities .proto
10 github.com/luci/luci-go/tokenserver/api/admin/v1/config.proto 10 github.com/luci/luci-go/tokenserver/api/admin/v1/config.proto
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 if m != nil { 420 if m != nil {
421 return m.Token 421 return m.Token
422 } 422 }
423 return "" 423 return ""
424 } 424 }
425 425
426 // InspectOAuthTokenGrantResponse is return value of InspectOAuthTokenGrant RPC. 426 // InspectOAuthTokenGrantResponse is return value of InspectOAuthTokenGrant RPC.
427 type InspectOAuthTokenGrantResponse struct { 427 type InspectOAuthTokenGrantResponse struct {
428 // True if the token is valid. 428 // True if the token is valid.
429 // 429 //
430 » // A token is valid if its signature is correct and it hasn't expired ye t. 430 » // A token is valid if its signature is correct, it hasn't expired yet a nd
431 » // token server rules still allow it.
431 Valid bool `protobuf:"varint,1,opt,name=valid" json:"valid,omitempty"` 432 Valid bool `protobuf:"varint,1,opt,name=valid" json:"valid,omitempty"`
432 // Human readable summary of why token is invalid. 433 // Human readable summary of why token is invalid.
433 // 434 //
434 // Summarizes the rest of the fields of this struct. Set only if 'valid' is 435 // Summarizes the rest of the fields of this struct. Set only if 'valid' is
435 // false. 436 // false.
436 InvalidityReason string `protobuf:"bytes,2,opt,name=invalidity_reason,js on=invalidityReason" json:"invalidity_reason,omitempty"` 437 InvalidityReason string `protobuf:"bytes,2,opt,name=invalidity_reason,js on=invalidityReason" json:"invalidity_reason,omitempty"`
437 // True if the token signature was verified. 438 // True if the token signature was verified.
438 // 439 //
439 // It means the token was generated by the token server and its body is not 440 // It means the token was generated by the token server and its body is not
440 // a garbage. Note that a token can be correctly signed, but invalid (if it 441 // a garbage. Note that a token can be correctly signed, but invalid (if it
(...skipping 11 matching lines...) Expand all
452 // True if the token signature was verified and token hasn't expired yet . 453 // True if the token signature was verified and token hasn't expired yet .
453 // 454 //
454 // We use "non_" prefix to make default 'false' value safer. 455 // We use "non_" prefix to make default 'false' value safer.
455 NonExpired bool `protobuf:"varint,4,opt,name=non_expired,json=nonExpired " json:"non_expired,omitempty"` 456 NonExpired bool `protobuf:"varint,4,opt,name=non_expired,json=nonExpired " json:"non_expired,omitempty"`
456 // ID of a token server private key used to sign the token. 457 // ID of a token server private key used to sign the token.
457 SigningKeyId string `protobuf:"bytes,5,opt,name=signing_key_id,json=sign ingKeyId" json:"signing_key_id,omitempty"` 458 SigningKeyId string `protobuf:"bytes,5,opt,name=signing_key_id,json=sign ingKeyId" json:"signing_key_id,omitempty"`
458 // The deserialized token body. 459 // The deserialized token body.
459 // 460 //
460 // May be empty if token was malformed and couldn't be deserialized. 461 // May be empty if token was malformed and couldn't be deserialized.
461 TokenBody *tokenserver1.OAuthTokenGrantBody `protobuf:"bytes,6,opt,name= token_body,json=tokenBody" json:"token_body,omitempty"` 462 TokenBody *tokenserver1.OAuthTokenGrantBody `protobuf:"bytes,6,opt,name= token_body,json=tokenBody" json:"token_body,omitempty"`
463 // The service_accounts.cfg rule that governs the service account usage.
464 //
465 // May be present even if the token is not allowed by it.
466 MatchingRule *ServiceAccountRule `protobuf:"bytes,7,opt,name=matching_ru le,json=matchingRule" json:"matching_rule,omitempty"`
467 // True if current service_accounts.cfg rules allow this token.
468 AllowedByRules bool `protobuf:"varint,8,opt,name=allowed_by_rules,json=a llowedByRules" json:"allowed_by_rules,omitempty"`
462 } 469 }
463 470
464 func (m *InspectOAuthTokenGrantResponse) Reset() { *m = Inspe ctOAuthTokenGrantResponse{} } 471 func (m *InspectOAuthTokenGrantResponse) Reset() { *m = Inspe ctOAuthTokenGrantResponse{} }
465 func (m *InspectOAuthTokenGrantResponse) String() string { return pro to.CompactTextString(m) } 472 func (m *InspectOAuthTokenGrantResponse) String() string { return pro to.CompactTextString(m) }
466 func (*InspectOAuthTokenGrantResponse) ProtoMessage() {} 473 func (*InspectOAuthTokenGrantResponse) ProtoMessage() {}
467 func (*InspectOAuthTokenGrantResponse) Descriptor() ([]byte, []int) { return fil eDescriptor0, []int{6} } 474 func (*InspectOAuthTokenGrantResponse) Descriptor() ([]byte, []int) { return fil eDescriptor0, []int{6} }
468 475
469 func (m *InspectOAuthTokenGrantResponse) GetValid() bool { 476 func (m *InspectOAuthTokenGrantResponse) GetValid() bool {
470 if m != nil { 477 if m != nil {
471 return m.Valid 478 return m.Valid
(...skipping 29 matching lines...) Expand all
501 return "" 508 return ""
502 } 509 }
503 510
504 func (m *InspectOAuthTokenGrantResponse) GetTokenBody() *tokenserver1.OAuthToken GrantBody { 511 func (m *InspectOAuthTokenGrantResponse) GetTokenBody() *tokenserver1.OAuthToken GrantBody {
505 if m != nil { 512 if m != nil {
506 return m.TokenBody 513 return m.TokenBody
507 } 514 }
508 return nil 515 return nil
509 } 516 }
510 517
518 func (m *InspectOAuthTokenGrantResponse) GetMatchingRule() *ServiceAccountRule {
519 if m != nil {
520 return m.MatchingRule
521 }
522 return nil
523 }
524
525 func (m *InspectOAuthTokenGrantResponse) GetAllowedByRules() bool {
526 if m != nil {
527 return m.AllowedByRules
528 }
529 return false
530 }
531
511 func init() { 532 func init() {
512 proto.RegisterType((*ImportedConfigs)(nil), "tokenserver.admin.ImportedC onfigs") 533 proto.RegisterType((*ImportedConfigs)(nil), "tokenserver.admin.ImportedC onfigs")
513 proto.RegisterType((*InspectMachineTokenRequest)(nil), "tokenserver.admi n.InspectMachineTokenRequest") 534 proto.RegisterType((*InspectMachineTokenRequest)(nil), "tokenserver.admi n.InspectMachineTokenRequest")
514 proto.RegisterType((*InspectMachineTokenResponse)(nil), "tokenserver.adm in.InspectMachineTokenResponse") 535 proto.RegisterType((*InspectMachineTokenResponse)(nil), "tokenserver.adm in.InspectMachineTokenResponse")
515 proto.RegisterType((*InspectDelegationTokenRequest)(nil), "tokenserver.a dmin.InspectDelegationTokenRequest") 536 proto.RegisterType((*InspectDelegationTokenRequest)(nil), "tokenserver.a dmin.InspectDelegationTokenRequest")
516 proto.RegisterType((*InspectDelegationTokenResponse)(nil), "tokenserver. admin.InspectDelegationTokenResponse") 537 proto.RegisterType((*InspectDelegationTokenResponse)(nil), "tokenserver. admin.InspectDelegationTokenResponse")
517 proto.RegisterType((*InspectOAuthTokenGrantRequest)(nil), "tokenserver.a dmin.InspectOAuthTokenGrantRequest") 538 proto.RegisterType((*InspectOAuthTokenGrantRequest)(nil), "tokenserver.a dmin.InspectOAuthTokenGrantRequest")
518 proto.RegisterType((*InspectOAuthTokenGrantResponse)(nil), "tokenserver. admin.InspectOAuthTokenGrantResponse") 539 proto.RegisterType((*InspectOAuthTokenGrantResponse)(nil), "tokenserver. admin.InspectOAuthTokenGrantResponse")
519 } 540 }
520 541
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
910 }, 931 },
911 Streams: []grpc.StreamDesc{}, 932 Streams: []grpc.StreamDesc{},
912 Metadata: "github.com/luci/luci-go/tokenserver/api/admin/v1/admin.proto" , 933 Metadata: "github.com/luci/luci-go/tokenserver/api/admin/v1/admin.proto" ,
913 } 934 }
914 935
915 func init() { 936 func init() {
916 proto.RegisterFile("github.com/luci/luci-go/tokenserver/api/admin/v1/adm in.proto", fileDescriptor0) 937 proto.RegisterFile("github.com/luci/luci-go/tokenserver/api/admin/v1/adm in.proto", fileDescriptor0)
917 } 938 }
918 939
919 var fileDescriptor0 = []byte{ 940 var fileDescriptor0 = []byte{
920 » // 672 bytes of a gzipped FileDescriptorProto 941 » // 741 bytes of a gzipped FileDescriptorProto
921 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x54, 0x4f, 0x4f, 0xdb, 0x4e, 942 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x55, 0x41, 0x4f, 0xdb, 0x4a,
922 » 0x10, 0xfd, 0x85, 0x1f, 0x49, 0xc3, 0x82, 0x28, 0x6c, 0x11, 0x75, 0x4d, 0x69, 0xa3, 0xa8, 0x07, 943 » 0x10, 0x7e, 0xe1, 0x91, 0xbc, 0xb0, 0xc9, 0xe3, 0xc1, 0x3e, 0x44, 0xdd, 0x50, 0xda, 0x28, 0x6a,
923 » 0xa4, 0x8a, 0x75, 0xa1, 0xe2, 0x54, 0x24, 0x94, 0x52, 0x54, 0x50, 0x45, 0x2b, 0x19, 0x7a, 0xe9, 944 » 0x25, 0xa4, 0x0a, 0xbb, 0xa4, 0xe2, 0x54, 0x2a, 0x14, 0x28, 0x2a, 0xb4, 0xa2, 0x95, 0x0c, 0xbd,
924 » 0xc5, 0x72, 0xec, 0xc1, 0x59, 0x11, 0xef, 0xba, 0xde, 0xb5, 0x55, 0x1f, 0x7a, 0xea, 0x07, 0xed, 945 » 0xf4, 0x62, 0x39, 0xf6, 0xe0, 0xac, 0xb0, 0x77, 0x5d, 0xef, 0x3a, 0xad, 0x0f, 0x3d, 0xf5, 0x87,
925 » 0x27, 0xa9, 0x54, 0x79, 0xd7, 0x0e, 0x4e, 0xe2, 0x44, 0xa9, 0xc4, 0x81, 0x8b, 0xb5, 0x3b, 0x3b, 946 » 0xf6, 0x77, 0xf4, 0x50, 0xa9, 0xf2, 0xae, 0x9d, 0x38, 0x89, 0x13, 0x81, 0xc4, 0x81, 0x8b, 0xb5,
926 » 0xef, 0xcd, 0x78, 0xfe, 0x3c, 0x74, 0x1c, 0x50, 0x39, 0x48, 0xfa, 0xc4, 0xe3, 0xa1, 0x35, 0x4c, 947 » 0x3b, 0x3b, 0xdf, 0x37, 0xb3, 0x33, 0xdf, 0x8e, 0xd1, 0x81, 0x47, 0xc4, 0x20, 0xee, 0xeb, 0x0e,
927 » 0x3c, 0xaa, 0x3e, 0xfb, 0x01, 0xb7, 0x24, 0xbf, 0x05, 0x26, 0x20, 0x4e, 0x21, 0xb6, 0xdc, 0x88, 948 » 0x0b, 0x0c, 0x3f, 0x76, 0x88, 0xfc, 0xec, 0x7a, 0xcc, 0x10, 0xec, 0x1a, 0x28, 0x87, 0x68, 0x08,
928 » 0x5a, 0xae, 0x1f, 0x52, 0x66, 0xa5, 0x07, 0xfa, 0x40, 0xa2, 0x98, 0x4b, 0x8e, 0x37, 0x2b, 0x5e, 949 » 0x91, 0x61, 0x87, 0xc4, 0xb0, 0xdd, 0x80, 0x50, 0x63, 0xb8, 0xa7, 0x16, 0x7a, 0x18, 0x31, 0xc1,
929 » 0x44, 0x3d, 0x98, 0x3b, 0x01, 0xe7, 0xc1, 0x10, 0x2c, 0xe5, 0xd0, 0x4f, 0x6e, 0x2c, 0x08, 0x23, 950 » 0xf0, 0x7a, 0xc1, 0x4b, 0x97, 0x07, 0xad, 0x2d, 0x8f, 0x31, 0xcf, 0x07, 0x43, 0x3a, 0xf4, 0xe3,
930 » 0x99, 0x69, 0x7f, 0xf3, 0x7c, 0x56, 0xb4, 0x32, 0x50, 0x22, 0x07, 0x96, 0x0f, 0x43, 0x08, 0x5c, 951 » 0x2b, 0x03, 0x82, 0x50, 0x24, 0xca, 0xbf, 0x75, 0x3a, 0x2f, 0x5a, 0x1e, 0x28, 0x16, 0x03, 0xc3,
931 » 0x49, 0x39, 0xb3, 0x42, 0x10, 0xc2, 0x0d, 0x40, 0x54, 0x6c, 0x05, 0xd3, 0xbb, 0x45, 0xf3, 0x0e, 952 » 0x05, 0x1f, 0x3c, 0x5b, 0x10, 0x46, 0x8d, 0x00, 0x38, 0xb7, 0x3d, 0xe0, 0x05, 0x5b, 0xc6, 0xf4,
932 » 0x5d, 0x6f, 0x40, 0x19, 0x38, 0xca, 0x5e, 0x80, 0x4f, 0x16, 0x05, 0xf3, 0x3c, 0x21, 0x0d, 0x75, 953 » 0xfa, 0xd6, 0x79, 0x3b, 0x8c, 0x5e, 0x11, 0x2f, 0x83, 0xbf, 0xba, 0x29, 0x3c, 0xb0, 0x9d, 0x01,
933 » 0x82, 0xd8, 0x65, 0x52, 0x13, 0x74, 0xf7, 0xd1, 0xe3, 0x8b, 0x30, 0xe2, 0xb1, 0x04, 0xff, 0x94, 954 » 0xa1, 0x60, 0x49, 0x7b, 0x06, 0x3e, 0xbc, 0x29, 0x98, 0xa5, 0xf7, 0x51, 0x50, 0xcb, 0x8b, 0x6c,
934 » 0xb3, 0x1b, 0x1a, 0x08, 0x6c, 0xa2, 0x76, 0x0c, 0x29, 0x15, 0x94, 0x33, 0xa3, 0xd1, 0x69, 0xec, 955 » 0x2a, 0x14, 0x41, 0x67, 0x17, 0xfd, 0x77, 0x16, 0x84, 0x2c, 0x12, 0xe0, 0x1e, 0xcb, 0xac, 0x38,
935 » 0xad, 0xd8, 0xa3, 0x7b, 0x37, 0x42, 0xe6, 0x05, 0x13, 0x11, 0x78, 0xf2, 0x52, 0x67, 0x73, 0x9d, 956 » 0x6e, 0xa1, 0x7a, 0x04, 0x43, 0xc2, 0x09, 0xa3, 0x5a, 0xa5, 0x5d, 0xd9, 0x59, 0x31, 0x47, 0xfb,
936 » 0x33, 0xda, 0xf0, 0x3d, 0x01, 0x21, 0xf1, 0x31, 0x42, 0x3a, 0x82, 0xcc, 0x22, 0x50, 0xd8, 0xf5, 957 » 0x4e, 0x88, 0x5a, 0x67, 0x94, 0x87, 0xe0, 0x88, 0x73, 0x95, 0xcd, 0x65, 0xca, 0x68, 0xc2, 0x97,
937 » 0xc3, 0x5d, 0x52, 0xad, 0x6c, 0x15, 0x75, 0x9d, 0x45, 0x60, 0xaf, 0xc8, 0xf2, 0x88, 0xb7, 0x50, 958 » 0x18, 0xb8, 0xc0, 0x07, 0x08, 0xa9, 0x08, 0x22, 0x09, 0x41, 0x62, 0x57, 0xbb, 0xdb, 0x7a, 0xb1,
938 » 0x53, 0x5d, 0x8c, 0x25, 0x15, 0x54, 0x5f, 0xba, 0xbf, 0x97, 0xd0, 0x4e, 0x6d, 0x48, 0x11, 0x71, 959 » 0x31, 0x45, 0xd4, 0x65, 0x12, 0x82, 0xb9, 0x22, 0xf2, 0x25, 0xde, 0x40, 0x55, 0xb9, 0xd1, 0x96,
939 » 0x26, 0x14, 0x2a, 0x75, 0x87, 0xd4, 0x57, 0xe1, 0xda, 0xb6, 0xbe, 0xe0, 0xd7, 0x68, 0x93, 0x32, 960 » 0x64, 0x50, 0xb5, 0xe9, 0xfc, 0x5c, 0x42, 0x5b, 0xa5, 0x21, 0x79, 0xc8, 0x28, 0x97, 0xa8, 0xa1,
940 » 0x75, 0xa4, 0x32, 0x73, 0x62, 0x70, 0x05, 0x2f, 0x79, 0x37, 0xee, 0x1e, 0x6c, 0x65, 0xc7, 0xdb, 961 » 0xed, 0x13, 0x57, 0x86, 0xab, 0x9b, 0x6a, 0x83, 0x9f, 0xa3, 0x75, 0x42, 0xe5, 0x92, 0x88, 0xc4,
941 » 0xa8, 0x25, 0x68, 0xc0, 0xc0, 0x37, 0xfe, 0x57, 0x1c, 0xc5, 0x0d, 0xbf, 0x44, 0xab, 0x8c, 0x33, 962 » 0x8a, 0xc0, 0xe6, 0x2c, 0xe7, 0x5d, 0x1b, 0x1f, 0x98, 0xd2, 0x8e, 0x37, 0x51, 0x8d, 0x13, 0x8f,
942 » 0x07, 0x7e, 0x44, 0x34, 0x06, 0xdf, 0x58, 0x56, 0x8f, 0x88, 0x71, 0x76, 0xa6, 0x2d, 0xa5, 0x43, 963 » 0x82, 0xab, 0xfd, 0x2d, 0x39, 0xb2, 0x1d, 0x7e, 0x82, 0x1a, 0x94, 0x51, 0x0b, 0xbe, 0x85, 0x24,
943 » 0x0c, 0x29, 0xbf, 0x05, 0xdf, 0x68, 0x8e, 0x1c, 0x6c, 0x6d, 0xc1, 0xaf, 0xd0, 0x7a, 0xce, 0x45, 964 » 0x02, 0x57, 0x5b, 0x96, 0x87, 0x88, 0x32, 0x7a, 0xa2, 0x2c, 0xb9, 0x43, 0x04, 0x43, 0x76, 0x0d,
944 » 0x59, 0xe0, 0xdc, 0x42, 0xe6, 0x50, 0xdf, 0x68, 0xa9, 0x1c, 0xd6, 0x0a, 0xeb, 0x27, 0xc8, 0x2e, 965 » 0xae, 0x56, 0x1d, 0x39, 0x98, 0xca, 0x82, 0x9f, 0xa2, 0xd5, 0x94, 0x8b, 0x50, 0xcf, 0xba, 0x86,
945 » 0x7c, 0xdc, 0x41, 0x6b, 0x1e, 0xc4, 0xd2, 0xf1, 0x5c, 0x87, 0xb9, 0x21, 0x18, 0x8f, 0x94, 0x0f, 966 » 0xc4, 0x22, 0xae, 0x56, 0x93, 0x39, 0x34, 0x33, 0xeb, 0x7b, 0x48, 0xce, 0x5c, 0xdc, 0x46, 0x4d,
946 » 0xca, 0x6d, 0xa7, 0xee, 0x67, 0x37, 0x04, 0x7c, 0x89, 0x70, 0xde, 0x58, 0x67, 0x6c, 0x04, 0x8c, 967 » 0x07, 0x22, 0x61, 0x39, 0xb6, 0x45, 0xed, 0x00, 0xb4, 0x7f, 0xa4, 0x0f, 0x4a, 0x6d, 0xc7, 0xf6,
947 » 0xad, 0x4e, 0x63, 0x6f, 0x75, 0x4e, 0x81, 0xdf, 0x73, 0x3f, 0x3b, 0xff, 0xcf, 0xde, 0xc8, 0xa1, 968 » 0x07, 0x3b, 0x00, 0x7c, 0x8e, 0x70, 0xda, 0x58, 0x6b, 0x42, 0x02, 0xda, 0x46, 0xbb, 0xb2, 0xd3,
948 » 0x63, 0xf6, 0xb5, 0x6a, 0x9f, 0xba, 0x47, 0x68, 0xb7, 0x28, 0xf0, 0x87, 0xd1, 0x6c, 0x8e, 0xb5, 969 » 0x58, 0x50, 0xe0, 0x23, 0xe6, 0x26, 0xa7, 0x7f, 0x99, 0x6b, 0x29, 0x74, 0xc2, 0xde, 0x2c, 0xf6,
949 » 0x75, 0xd4, 0x98, 0x46, 0xb5, 0x31, 0xbf, 0x96, 0xd0, 0x8b, 0x59, 0xb8, 0x07, 0xd0, 0x9b, 0x23, 970 » 0xa9, 0xb3, 0x8f, 0xb6, 0xb3, 0x02, 0xbf, 0x19, 0x49, 0x7b, 0xa2, 0xad, 0xa3, 0xc6, 0x54, 0x8a,
950 » 0xd4, 0x06, 0x96, 0xc2, 0x90, 0x47, 0xa0, 0x1a, 0xb3, 0x7a, 0xf8, 0x8c, 0x94, 0x4b, 0x48, 0x26, 971 » 0x8d, 0xf9, 0xb1, 0x84, 0x1e, 0xcf, 0xc3, 0xdd, 0x83, 0xde, 0xec, 0xa3, 0x3a, 0xd0, 0x21, 0xf8,
951 » 0x13, 0x1e, 0xb9, 0x62, 0x82, 0xda, 0x22, 0xe9, 0xeb, 0xdf, 0x6d, 0x29, 0x18, 0xbe, 0x83, 0x5d, 972 » 0x2c, 0x04, 0xd9, 0x98, 0x46, 0xf7, 0xa1, 0x9e, 0xbf, 0x61, 0x7d, 0x3a, 0xe1, 0x91, 0x2b, 0xd6,
952 » 0x15, 0x2f, 0xf6, 0xc8, 0xa7, 0x52, 0xbc, 0x2f, 0xbd, 0x44, 0x0e, 0x14, 0xdd, 0xc7, 0x7c, 0xbf, 973 » 0x51, 0x9d, 0xc7, 0x7d, 0x75, 0xdd, 0x9a, 0x84, 0xe1, 0x31, 0xec, 0x22, 0x3b, 0x31, 0x47, 0x3e,
953 » 0x16, 0x2e, 0xde, 0x14, 0xee, 0x01, 0x14, 0x6f, 0x7a, 0x6e, 0x9b, 0x35, 0x73, 0x7b, 0x52, 0x8e, 974 » 0x85, 0xe2, 0x7d, 0xec, 0xc5, 0x62, 0x20, 0xe9, 0xde, 0xa6, 0xef, 0x6b, 0x71, 0xf1, 0x7e, 0x8d,
954 » 0x51, 0x9f, 0xfb, 0x59, 0x51, 0xad, 0xce, 0xd8, 0x34, 0x4e, 0xfc, 0x5b, 0x3e, 0x90, 0xc5, 0xc6, 975 » 0x8b, 0x37, 0x83, 0xbb, 0x07, 0xc5, 0x9b, 0xd5, 0x6d, 0xb5, 0x44, 0xb7, 0x87, 0xb9, 0x8c, 0xfa,
955 » 0xe7, 0xc7, 0xc3, 0x3f, 0xcb, 0xa8, 0xd9, 0xcb, 0xb5, 0x16, 0x5f, 0x96, 0x32, 0x74, 0xda, 0x2b, 976 » 0xcc, 0x4d, 0xb2, 0x6a, 0xb5, 0x27, 0xd4, 0x38, 0x75, 0xb7, 0x54, 0x90, 0xd9, 0x8b, 0x4f, 0x97,
956 » 0x65, 0x68, 0x9b, 0x68, 0xfd, 0x25, 0xa5, 0xfe, 0x92, 0xb3, 0x5c, 0x7f, 0xcd, 0x2e, 0x99, 0x92, 977 » 0xf8, 0x1d, 0xfa, 0x37, 0xb0, 0x45, 0x2a, 0x4c, 0xcf, 0x8a, 0x62, 0x5f, 0x29, 0xbf, 0xd1, 0x7d,
957 » 0x6a, 0x32, 0x29, 0x61, 0x5f, 0xd1, 0x53, 0x6d, 0xba, 0x6b, 0xf4, 0x7d, 0xd0, 0x7e, 0x43, 0xcf, 978 » 0xa6, 0xcf, 0xcc, 0x72, 0xfd, 0x02, 0xa2, 0x21, 0x71, 0xa0, 0xe7, 0x38, 0x2c, 0xa6, 0xc2, 0x8c,
958 » 0xb5, 0xe9, 0x0a, 0xe2, 0x94, 0x7a, 0xd0, 0xf3, 0x3c, 0x9e, 0x30, 0x29, 0xee, 0x83, 0x5b, 0xa2, 979 » 0x7d, 0x30, 0x9b, 0x39, 0x36, 0xdd, 0xe1, 0x1d, 0xb4, 0x66, 0xfb, 0x3e, 0xfb, 0x0a, 0xae, 0xd5,
959 » 0x27, 0x35, 0x32, 0x87, 0xf7, 0xeb, 0xa0, 0x33, 0x15, 0xd8, 0x24, 0x8b, 0xba, 0x17, 0x43, 0xf6, 980 » 0x4f, 0x24, 0x1b, 0xd7, 0xea, 0xf2, 0x62, 0xab, 0x99, 0xfd, 0x28, 0x49, 0x1d, 0x79, 0xf7, 0xf7,
960 » 0x13, 0x6d, 0xd7, 0xef, 0x30, 0x7e, 0x33, 0x9b, 0xa9, 0x5e, 0x26, 0xcc, 0x83, 0x7f, 0x40, 0x4c, 981 » 0x32, 0xaa, 0xf6, 0x52, 0x52, 0x7c, 0x9e, 0x0f, 0xbf, 0xe3, 0x5e, 0x3e, 0xfc, 0x36, 0x75, 0xf5,
961 » 0x85, 0x9f, 0x98, 0x94, 0x79, 0xe1, 0xeb, 0x17, 0x6d, 0x5e, 0xf8, 0x19, 0x2b, 0xd6, 0x6f, 0xa9, 982 » 0xd3, 0xd0, 0xf3, 0x9f, 0x86, 0x7e, 0x92, 0xfe, 0x34, 0x5a, 0x9d, 0x92, 0x9c, 0xa6, 0x07, 0xe7,
962 » 0x3e, 0xbd, 0xfd, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x36, 0x69, 0x05, 0x5b, 0x3b, 0x08, 0x00, 0x00, 983 » 0x27, 0xf4, 0x40, 0x99, 0xc6, 0xf2, 0xba, 0x0b, 0xda, 0xcf, 0xe8, 0x91, 0x32, 0x4d, 0xd6, 0x80,
984 » 0xdf, 0x05, 0xb7, 0x40, 0xff, 0x97, 0x0c, 0x57, 0xbc, 0x5b, 0x06, 0x9d, 0x3b, 0xf7, 0x5b, 0xfa,
985 » 0x4d, 0xdd, 0x33, 0x69, 0x7f, 0x47, 0x9b, 0xe5, 0x93, 0x03, 0xbf, 0x98, 0xcf, 0x54, 0x3e, 0x9c,
986 » 0x5a, 0x7b, 0xb7, 0x40, 0xcc, 0x84, 0x9f, 0xd2, 0xe7, 0xa2, 0xf0, 0xe5, 0xcf, 0x7b, 0x51, 0xf8,
987 » 0x39, 0x0f, 0xbb, 0x5f, 0x93, 0x7d, 0x7a, 0xf9, 0x27, 0x00, 0x00, 0xff, 0xff, 0xdc, 0xfc, 0xfe,
988 » 0x18, 0xf0, 0x08, 0x00, 0x00,
963 } 989 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698