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

Unified Diff: tokenserver/api/admin/v1/admin.pb.go

Issue 2785973002: token-server: Add protos for new API for generating service account tokens. (Closed)
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: tokenserver/api/admin/v1/admin.pb.go
diff --git a/tokenserver/api/admin/v1/admin.pb.go b/tokenserver/api/admin/v1/admin.pb.go
index be2058fc0538ce7c8749edacb921a7eaa2e58b6c..bb6539df190fd3463b34a80df135adc1c5da53f1 100644
--- a/tokenserver/api/admin/v1/admin.pb.go
+++ b/tokenserver/api/admin/v1/admin.pb.go
@@ -16,6 +16,8 @@ It has these top-level messages:
InspectMachineTokenResponse
InspectDelegationTokenRequest
InspectDelegationTokenResponse
+ InspectOAuthTokenGrantRequest
+ InspectOAuthTokenGrantResponse
FetchCRLRequest
FetchCRLResponse
ListCAsResponse
@@ -31,6 +33,8 @@ It has these top-level messages:
DomainConfig
DelegationPermissions
DelegationRule
+ ServiceAccountsPermissions
+ ServiceAccountRule
*/
package admin
@@ -42,6 +46,7 @@ import math "math"
import google_protobuf "github.com/golang/protobuf/ptypes/empty"
import messages "github.com/luci/luci-go/server/auth/delegation/messages"
import tokenserver "github.com/luci/luci-go/tokenserver/api"
+import tokenserver1 "github.com/luci/luci-go/tokenserver/api"
import (
context "golang.org/x/net/context"
@@ -422,6 +427,109 @@ func (m *InspectDelegationTokenResponse) GetSubtoken() *messages.Subtoken {
return nil
}
+// InspectOAuthTokenGrantRequest is body of InspectOAuthTokenGrant RPC call.
+type InspectOAuthTokenGrantRequest struct {
+ // The token body.
+ Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
+}
+
+func (m *InspectOAuthTokenGrantRequest) Reset() { *m = InspectOAuthTokenGrantRequest{} }
+func (m *InspectOAuthTokenGrantRequest) String() string { return proto.CompactTextString(m) }
+func (*InspectOAuthTokenGrantRequest) ProtoMessage() {}
+func (*InspectOAuthTokenGrantRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
+
+func (m *InspectOAuthTokenGrantRequest) GetToken() string {
+ if m != nil {
+ return m.Token
+ }
+ return ""
+}
+
+// InspectOAuthTokenGrantResponse is return value of InspectOAuthTokenGrant RPC.
+type InspectOAuthTokenGrantResponse struct {
+ // True if the token is valid.
+ //
+ // A token is valid if its signature is correct and it hasn't expired yet.
+ Valid bool `protobuf:"varint,1,opt,name=valid" json:"valid,omitempty"`
+ // Human readable summary of why token is invalid.
+ //
+ // Summarizes the rest of the fields of this struct. Set only if 'valid' is
+ // false.
+ InvalidityReason string `protobuf:"bytes,2,opt,name=invalidity_reason,json=invalidityReason" json:"invalidity_reason,omitempty"`
+ // True if the token signature was verified.
+ //
+ // It means the token was generated by the token server and its body is not
+ // a garbage. Note that a token can be correctly signed, but invalid (if it
+ // has expired).
+ //
+ // If 'signed' is false, the fields below may (or may not) be a garbage.
+ //
+ // The token server uses private keys managed by Google Cloud Platform, they
+ // are constantly being rotated and "old" signatures become invalid over time
+ // (when corresponding keys are rotated out of existence).
+ //
+ // If 'signed' is false, use the rest of the response only as FYI, possibly
+ // invalid or even maliciously constructed.
+ Signed bool `protobuf:"varint,3,opt,name=signed" json:"signed,omitempty"`
+ // True if the token signature was verified and token hasn't expired yet.
+ //
+ // We use "non_" prefix to make default 'false' value safer.
+ NonExpired bool `protobuf:"varint,4,opt,name=non_expired,json=nonExpired" json:"non_expired,omitempty"`
+ // ID of a token server private key used to sign the token.
+ SigningKeyId string `protobuf:"bytes,5,opt,name=signing_key_id,json=signingKeyId" json:"signing_key_id,omitempty"`
+ // The deserialized token body.
+ //
+ // May be empty if token was malformed and couldn't be deserialized.
+ TokenBody *tokenserver1.OAuthTokenGrantBody `protobuf:"bytes,6,opt,name=token_body,json=tokenBody" json:"token_body,omitempty"`
+}
+
+func (m *InspectOAuthTokenGrantResponse) Reset() { *m = InspectOAuthTokenGrantResponse{} }
+func (m *InspectOAuthTokenGrantResponse) String() string { return proto.CompactTextString(m) }
+func (*InspectOAuthTokenGrantResponse) ProtoMessage() {}
+func (*InspectOAuthTokenGrantResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
+
+func (m *InspectOAuthTokenGrantResponse) GetValid() bool {
+ if m != nil {
+ return m.Valid
+ }
+ return false
+}
+
+func (m *InspectOAuthTokenGrantResponse) GetInvalidityReason() string {
+ if m != nil {
+ return m.InvalidityReason
+ }
+ return ""
+}
+
+func (m *InspectOAuthTokenGrantResponse) GetSigned() bool {
+ if m != nil {
+ return m.Signed
+ }
+ return false
+}
+
+func (m *InspectOAuthTokenGrantResponse) GetNonExpired() bool {
+ if m != nil {
+ return m.NonExpired
+ }
+ return false
+}
+
+func (m *InspectOAuthTokenGrantResponse) GetSigningKeyId() string {
+ if m != nil {
+ return m.SigningKeyId
+ }
+ return ""
+}
+
+func (m *InspectOAuthTokenGrantResponse) GetTokenBody() *tokenserver1.OAuthTokenGrantBody {
+ if m != nil {
+ return m.TokenBody
+ }
+ return nil
+}
+
func init() {
proto.RegisterType((*ImportedConfigs)(nil), "tokenserver.admin.ImportedConfigs")
proto.RegisterType((*ImportedConfigs_ConfigFile)(nil), "tokenserver.admin.ImportedConfigs.ConfigFile")
@@ -429,6 +537,8 @@ func init() {
proto.RegisterType((*InspectMachineTokenResponse)(nil), "tokenserver.admin.InspectMachineTokenResponse")
proto.RegisterType((*InspectDelegationTokenRequest)(nil), "tokenserver.admin.InspectDelegationTokenRequest")
proto.RegisterType((*InspectDelegationTokenResponse)(nil), "tokenserver.admin.InspectDelegationTokenResponse")
+ proto.RegisterType((*InspectOAuthTokenGrantRequest)(nil), "tokenserver.admin.InspectOAuthTokenGrantRequest")
+ proto.RegisterType((*InspectOAuthTokenGrantResponse)(nil), "tokenserver.admin.InspectOAuthTokenGrantResponse")
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -442,20 +552,12 @@ const _ = grpc.SupportPackageIsVersion4
// Client API for Admin service
type AdminClient interface {
- // ImportCAConfigs makes the server read CA configs from luci-config.
- //
- // This reads 'tokenserver.cfg' file.
- //
- // Note that regularly configs are read in background each 5 min.
- // ImportCAConfigs can be used to force config reread immediately. It will
- // block until the configs are read.
+ // ImportCAConfigs makes the server read 'tokenserver.cfg'.
ImportCAConfigs(ctx context.Context, in *google_protobuf.Empty, opts ...grpc.CallOption) (*ImportedConfigs, error)
- // ImportDelegationConfigs makes the server read 'delegation.cfg' config.
- //
- // Note that regularly configs are read in background each 5 min.
- // ImportDelegationConfigs can be used to force config reread immediately. It
- // will block until the configs are read.
+ // ImportDelegationConfigs makes the server read 'delegation.cfg'.
ImportDelegationConfigs(ctx context.Context, in *google_protobuf.Empty, opts ...grpc.CallOption) (*ImportedConfigs, error)
+ // ImportServiceAccountsConfigs makes the server read 'service_accounts.cfg'.
+ ImportServiceAccountsConfigs(ctx context.Context, in *google_protobuf.Empty, opts ...grpc.CallOption) (*ImportedConfigs, error)
// InspectMachineToken decodes a machine token and verifies it is valid.
//
// It verifies the token was signed by a private key of the token server and
@@ -488,6 +590,22 @@ type AdminClient interface {
// grpc.InvalidArgument error for unsupported token kind.
// grpc.Internal error for transient errors.
InspectDelegationToken(ctx context.Context, in *InspectDelegationTokenRequest, opts ...grpc.CallOption) (*InspectDelegationTokenResponse, error)
+ // InspectOAuthTokenGrant decodes OAuth token grant and verifies it is valid.
+ //
+ // It verifies the token was signed by a private key of the token server and
+ // checks token's expiration time.
+ //
+ // It tries to give as much information about the token and its status as
+ // possible (e.g. attempts to decode the body even if the signing key has been
+ // rotated already).
+ //
+ // Administrators can use this call to debug issues with tokens.
+ //
+ // Returns:
+ // InspectOAuthTokenGrantResponse for tokens of supported kind.
+ // grpc.InvalidArgument error for unsupported token kind.
+ // grpc.Internal error for transient errors.
+ InspectOAuthTokenGrant(ctx context.Context, in *InspectOAuthTokenGrantRequest, opts ...grpc.CallOption) (*InspectOAuthTokenGrantResponse, error)
}
type adminPRPCClient struct {
client *prpc.Client
@@ -515,6 +633,15 @@ func (c *adminPRPCClient) ImportDelegationConfigs(ctx context.Context, in *googl
return out, nil
}
+func (c *adminPRPCClient) ImportServiceAccountsConfigs(ctx context.Context, in *google_protobuf.Empty, opts ...grpc.CallOption) (*ImportedConfigs, error) {
+ out := new(ImportedConfigs)
+ err := c.client.Call(ctx, "tokenserver.admin.Admin", "ImportServiceAccountsConfigs", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *adminPRPCClient) InspectMachineToken(ctx context.Context, in *InspectMachineTokenRequest, opts ...grpc.CallOption) (*InspectMachineTokenResponse, error) {
out := new(InspectMachineTokenResponse)
err := c.client.Call(ctx, "tokenserver.admin.Admin", "InspectMachineToken", in, out, opts...)
@@ -533,6 +660,15 @@ func (c *adminPRPCClient) InspectDelegationToken(ctx context.Context, in *Inspec
return out, nil
}
+func (c *adminPRPCClient) InspectOAuthTokenGrant(ctx context.Context, in *InspectOAuthTokenGrantRequest, opts ...grpc.CallOption) (*InspectOAuthTokenGrantResponse, error) {
+ out := new(InspectOAuthTokenGrantResponse)
+ err := c.client.Call(ctx, "tokenserver.admin.Admin", "InspectOAuthTokenGrant", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
type adminClient struct {
cc *grpc.ClientConn
}
@@ -559,6 +695,15 @@ func (c *adminClient) ImportDelegationConfigs(ctx context.Context, in *google_pr
return out, nil
}
+func (c *adminClient) ImportServiceAccountsConfigs(ctx context.Context, in *google_protobuf.Empty, opts ...grpc.CallOption) (*ImportedConfigs, error) {
+ out := new(ImportedConfigs)
+ err := grpc.Invoke(ctx, "/tokenserver.admin.Admin/ImportServiceAccountsConfigs", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *adminClient) InspectMachineToken(ctx context.Context, in *InspectMachineTokenRequest, opts ...grpc.CallOption) (*InspectMachineTokenResponse, error) {
out := new(InspectMachineTokenResponse)
err := grpc.Invoke(ctx, "/tokenserver.admin.Admin/InspectMachineToken", in, out, c.cc, opts...)
@@ -577,23 +722,24 @@ func (c *adminClient) InspectDelegationToken(ctx context.Context, in *InspectDel
return out, nil
}
+func (c *adminClient) InspectOAuthTokenGrant(ctx context.Context, in *InspectOAuthTokenGrantRequest, opts ...grpc.CallOption) (*InspectOAuthTokenGrantResponse, error) {
+ out := new(InspectOAuthTokenGrantResponse)
+ err := grpc.Invoke(ctx, "/tokenserver.admin.Admin/InspectOAuthTokenGrant", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// Server API for Admin service
type AdminServer interface {
- // ImportCAConfigs makes the server read CA configs from luci-config.
- //
- // This reads 'tokenserver.cfg' file.
- //
- // Note that regularly configs are read in background each 5 min.
- // ImportCAConfigs can be used to force config reread immediately. It will
- // block until the configs are read.
+ // ImportCAConfigs makes the server read 'tokenserver.cfg'.
ImportCAConfigs(context.Context, *google_protobuf.Empty) (*ImportedConfigs, error)
- // ImportDelegationConfigs makes the server read 'delegation.cfg' config.
- //
- // Note that regularly configs are read in background each 5 min.
- // ImportDelegationConfigs can be used to force config reread immediately. It
- // will block until the configs are read.
+ // ImportDelegationConfigs makes the server read 'delegation.cfg'.
ImportDelegationConfigs(context.Context, *google_protobuf.Empty) (*ImportedConfigs, error)
+ // ImportServiceAccountsConfigs makes the server read 'service_accounts.cfg'.
+ ImportServiceAccountsConfigs(context.Context, *google_protobuf.Empty) (*ImportedConfigs, error)
// InspectMachineToken decodes a machine token and verifies it is valid.
//
// It verifies the token was signed by a private key of the token server and
@@ -626,6 +772,22 @@ type AdminServer interface {
// grpc.InvalidArgument error for unsupported token kind.
// grpc.Internal error for transient errors.
InspectDelegationToken(context.Context, *InspectDelegationTokenRequest) (*InspectDelegationTokenResponse, error)
+ // InspectOAuthTokenGrant decodes OAuth token grant and verifies it is valid.
+ //
+ // It verifies the token was signed by a private key of the token server and
+ // checks token's expiration time.
+ //
+ // It tries to give as much information about the token and its status as
+ // possible (e.g. attempts to decode the body even if the signing key has been
+ // rotated already).
+ //
+ // Administrators can use this call to debug issues with tokens.
+ //
+ // Returns:
+ // InspectOAuthTokenGrantResponse for tokens of supported kind.
+ // grpc.InvalidArgument error for unsupported token kind.
+ // grpc.Internal error for transient errors.
+ InspectOAuthTokenGrant(context.Context, *InspectOAuthTokenGrantRequest) (*InspectOAuthTokenGrantResponse, error)
}
func RegisterAdminServer(s prpc.Registrar, srv AdminServer) {
@@ -668,6 +830,24 @@ func _Admin_ImportDelegationConfigs_Handler(srv interface{}, ctx context.Context
return interceptor(ctx, in, info, handler)
}
+func _Admin_ImportServiceAccountsConfigs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(google_protobuf.Empty)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(AdminServer).ImportServiceAccountsConfigs(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/tokenserver.admin.Admin/ImportServiceAccountsConfigs",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(AdminServer).ImportServiceAccountsConfigs(ctx, req.(*google_protobuf.Empty))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _Admin_InspectMachineToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(InspectMachineTokenRequest)
if err := dec(in); err != nil {
@@ -704,6 +884,24 @@ func _Admin_InspectDelegationToken_Handler(srv interface{}, ctx context.Context,
return interceptor(ctx, in, info, handler)
}
+func _Admin_InspectOAuthTokenGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(InspectOAuthTokenGrantRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(AdminServer).InspectOAuthTokenGrant(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/tokenserver.admin.Admin/InspectOAuthTokenGrant",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(AdminServer).InspectOAuthTokenGrant(ctx, req.(*InspectOAuthTokenGrantRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _Admin_serviceDesc = grpc.ServiceDesc{
ServiceName: "tokenserver.admin.Admin",
HandlerType: (*AdminServer)(nil),
@@ -717,6 +915,10 @@ var _Admin_serviceDesc = grpc.ServiceDesc{
Handler: _Admin_ImportDelegationConfigs_Handler,
},
{
+ MethodName: "ImportServiceAccountsConfigs",
+ Handler: _Admin_ImportServiceAccountsConfigs_Handler,
+ },
+ {
MethodName: "InspectMachineToken",
Handler: _Admin_InspectMachineToken_Handler,
},
@@ -724,6 +926,10 @@ var _Admin_serviceDesc = grpc.ServiceDesc{
MethodName: "InspectDelegationToken",
Handler: _Admin_InspectDelegationToken_Handler,
},
+ {
+ MethodName: "InspectOAuthTokenGrant",
+ Handler: _Admin_InspectOAuthTokenGrant_Handler,
+ },
},
Streams: []grpc.StreamDesc{},
Metadata: "github.com/luci/luci-go/tokenserver/api/admin/v1/admin.proto",
@@ -734,44 +940,50 @@ func init() {
}
var fileDescriptor0 = []byte{
- // 621 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x54, 0xcd, 0x6e, 0xd3, 0x40,
- 0x10, 0x26, 0xfd, 0x09, 0xe9, 0xa4, 0xea, 0xcf, 0x52, 0x15, 0xe3, 0xaa, 0x10, 0x45, 0x1c, 0x2a,
- 0xa1, 0xae, 0x69, 0x50, 0x4f, 0xf4, 0x52, 0x4a, 0x51, 0x2b, 0x54, 0x0e, 0xa6, 0x48, 0xdc, 0x2c,
- 0xc7, 0x9e, 0xba, 0xab, 0xc6, 0xbb, 0xc6, 0xbb, 0xb6, 0xf0, 0x81, 0x13, 0x6f, 0xc2, 0x8d, 0xa7,
- 0xe2, 0x55, 0x90, 0x77, 0x6d, 0x27, 0x29, 0x09, 0x14, 0x89, 0x03, 0x97, 0x64, 0xe7, 0x9b, 0xef,
- 0x9b, 0x99, 0xf5, 0xcc, 0x2c, 0x1c, 0x45, 0x4c, 0x5d, 0x67, 0x43, 0x1a, 0x88, 0xd8, 0x19, 0x65,
- 0x01, 0xd3, 0x3f, 0xfb, 0x91, 0x70, 0x94, 0xb8, 0x41, 0x2e, 0x31, 0xcd, 0x31, 0x75, 0xfc, 0x84,
- 0x39, 0x7e, 0x18, 0x33, 0xee, 0xe4, 0x07, 0xe6, 0x40, 0x93, 0x54, 0x28, 0x41, 0x36, 0x27, 0x58,
- 0x54, 0x3b, 0xec, 0x9d, 0x48, 0x88, 0x68, 0x84, 0x8e, 0x26, 0x0c, 0xb3, 0x2b, 0x07, 0xe3, 0x44,
- 0x15, 0x86, 0x6f, 0x9f, 0xcd, 0xcb, 0x56, 0x27, 0xca, 0xd4, 0xb5, 0x13, 0xe2, 0x08, 0x23, 0x5f,
- 0x31, 0xc1, 0x9d, 0x18, 0xa5, 0xf4, 0x23, 0x94, 0x13, 0x58, 0x15, 0xe9, 0xe5, 0x5d, 0xeb, 0x8e,
- 0xfd, 0xe0, 0x9a, 0x71, 0xf4, 0x34, 0x6e, 0xc4, 0xfd, 0xef, 0x2d, 0x58, 0x3f, 0x8f, 0x13, 0x91,
- 0x2a, 0x0c, 0x4f, 0x04, 0xbf, 0x62, 0x91, 0x24, 0x1f, 0x61, 0x83, 0x55, 0x90, 0x17, 0x18, 0xcc,
- 0x6a, 0xf5, 0x16, 0xf7, 0xba, 0x83, 0x7d, 0xfa, 0xcb, 0x2d, 0xe9, 0x2d, 0x35, 0x35, 0xff, 0x6f,
- 0xd8, 0x08, 0xdd, 0x75, 0x36, 0xed, 0xb3, 0x8f, 0x00, 0xc6, 0x6e, 0x42, 0x60, 0x89, 0xfb, 0x31,
- 0x5a, 0xad, 0x5e, 0x6b, 0x6f, 0xc5, 0xd5, 0x67, 0x62, 0x43, 0x27, 0xc5, 0x9c, 0x49, 0x26, 0xb8,
- 0xb5, 0xa0, 0xf1, 0xc6, 0xee, 0x27, 0x60, 0x9f, 0x73, 0x99, 0x60, 0xa0, 0x2e, 0xcc, 0x4d, 0x2e,
- 0xcb, 0x62, 0x5c, 0xfc, 0x94, 0xa1, 0x54, 0xe4, 0x08, 0x40, 0x17, 0xe7, 0xa9, 0x22, 0x31, 0x31,
- 0xd7, 0x06, 0xbb, 0x53, 0xf5, 0x4e, 0xaa, 0x2e, 0x8b, 0x04, 0xdd, 0x15, 0x55, 0x1f, 0xc9, 0x16,
- 0x2c, 0x6b, 0xa3, 0x4a, 0x6a, 0x8c, 0xfe, 0x8f, 0x05, 0xd8, 0x99, 0x99, 0x52, 0x26, 0x82, 0x4b,
- 0xad, 0xca, 0xfd, 0x11, 0x0b, 0x75, 0xba, 0x8e, 0x6b, 0x0c, 0xf2, 0x0c, 0x36, 0x19, 0xd7, 0x47,
- 0xa6, 0x0a, 0x2f, 0x45, 0x5f, 0x36, 0x97, 0xd9, 0x18, 0x3b, 0x5c, 0x8d, 0x93, 0x6d, 0x68, 0x4b,
- 0x16, 0x71, 0x0c, 0xad, 0x45, 0x1d, 0xa3, 0xb2, 0xc8, 0x13, 0xe8, 0x72, 0xc1, 0x3d, 0xfc, 0x9c,
- 0xb0, 0x14, 0x43, 0x6b, 0x49, 0x3b, 0x81, 0x0b, 0x7e, 0x6a, 0x90, 0x9a, 0x90, 0x62, 0x2e, 0x6e,
- 0x30, 0xb4, 0x96, 0x1b, 0x82, 0x6b, 0x10, 0xf2, 0x14, 0xd6, 0xca, 0x58, 0x8c, 0x47, 0xde, 0x0d,
- 0x16, 0x1e, 0x0b, 0xad, 0xb6, 0xae, 0x61, 0xb5, 0x42, 0xdf, 0x62, 0x71, 0x1e, 0x92, 0x1e, 0xac,
- 0x06, 0x98, 0x2a, 0x2f, 0xf0, 0x3d, 0xdd, 0x8c, 0xfb, 0x9a, 0x03, 0x25, 0x76, 0xe2, 0xbf, 0x2b,
- 0x5b, 0x72, 0x01, 0xa4, 0x9c, 0x28, 0x6f, 0x6a, 0x7c, 0xac, 0xad, 0x5e, 0x6b, 0xaf, 0xfb, 0x9b,
- 0x0f, 0xfc, 0x4a, 0x84, 0xc5, 0xd9, 0x3d, 0x77, 0xa3, 0x94, 0x4e, 0xe1, 0xab, 0x93, 0x7d, 0xea,
- 0x1f, 0xc2, 0x6e, 0xf5, 0x81, 0x5f, 0x37, 0x73, 0x3d, 0xd5, 0xd6, 0xa6, 0x31, 0xad, 0xc9, 0xc6,
- 0x7c, 0x5d, 0x80, 0xc7, 0xf3, 0x74, 0xff, 0x41, 0x6f, 0x0e, 0xa1, 0x83, 0x3c, 0xc7, 0x91, 0x48,
- 0x50, 0x37, 0xa6, 0x3b, 0x78, 0x44, 0xeb, 0x05, 0xa6, 0xb7, 0x0b, 0x6e, 0xa8, 0x84, 0x42, 0x47,
- 0x66, 0x43, 0x73, 0xdd, 0xb6, 0x96, 0x91, 0xb1, 0xec, 0x7d, 0xe5, 0x71, 0x1b, 0xce, 0xe0, 0xdb,
- 0x22, 0x2c, 0x1f, 0x97, 0x4b, 0x48, 0x2e, 0xea, 0x2d, 0x3e, 0x39, 0xae, 0xb7, 0x78, 0x9b, 0x9a,
- 0xe7, 0x87, 0xd6, 0xcf, 0x0f, 0x3d, 0x2d, 0x9f, 0x1f, 0xbb, 0xff, 0xe7, 0x1d, 0x26, 0x1f, 0xe0,
- 0xa1, 0x81, 0xc6, 0xb5, 0xfe, 0x8b, 0xb0, 0x0a, 0x1e, 0xcc, 0xd8, 0x26, 0x32, 0xf3, 0x55, 0x99,
- 0xbb, 0xe8, 0x36, 0xbd, 0x2b, 0xbd, 0x1a, 0x84, 0x2f, 0xb0, 0x3d, 0x7b, 0x54, 0xc8, 0xf3, 0xf9,
- 0x91, 0x66, 0x4f, 0xa3, 0x7d, 0xf0, 0x17, 0x0a, 0x93, 0x7e, 0xd8, 0xd6, 0x1f, 0xea, 0xc5, 0xcf,
- 0x00, 0x00, 0x00, 0xff, 0xff, 0xcd, 0xd3, 0xe9, 0xb4, 0x5f, 0x06, 0x00, 0x00,
+ // 716 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x54, 0xcd, 0x4e, 0xdb, 0x4a,
+ 0x14, 0xbe, 0x01, 0x92, 0x1b, 0x4e, 0x10, 0x3f, 0x73, 0x11, 0xd7, 0xd7, 0x5c, 0xda, 0x28, 0xea,
+ 0x02, 0xa9, 0xc2, 0x2e, 0xa9, 0x58, 0x15, 0x09, 0xa5, 0x94, 0x16, 0x54, 0xd1, 0x4a, 0x86, 0x4a,
+ 0x55, 0x37, 0x96, 0x63, 0x1f, 0x9c, 0x11, 0xc9, 0x8c, 0xeb, 0x19, 0x47, 0xf5, 0xa2, 0xab, 0x3e,
+ 0x4d, 0x9f, 0xaa, 0x4f, 0x52, 0xa9, 0xf2, 0x8c, 0x9d, 0xff, 0xd0, 0x54, 0x62, 0xc1, 0x26, 0x99,
+ 0xf9, 0xe6, 0x7c, 0xe7, 0x1c, 0x9f, 0x9f, 0x0f, 0x8e, 0x43, 0x2a, 0x3b, 0x49, 0xdb, 0xf2, 0x79,
+ 0xcf, 0xee, 0x26, 0x3e, 0x55, 0x3f, 0x07, 0x21, 0xb7, 0x25, 0xbf, 0x45, 0x26, 0x30, 0xee, 0x63,
+ 0x6c, 0x7b, 0x11, 0xb5, 0xbd, 0xa0, 0x47, 0x99, 0xdd, 0x3f, 0xd4, 0x07, 0x2b, 0x8a, 0xb9, 0xe4,
+ 0x64, 0x6b, 0xc4, 0xca, 0x52, 0x0f, 0xe6, 0x6e, 0xc8, 0x79, 0xd8, 0x45, 0x5b, 0x19, 0xb4, 0x93,
+ 0x1b, 0x1b, 0x7b, 0x91, 0x4c, 0xb5, 0xbd, 0x79, 0x3e, 0x2f, 0x5a, 0x11, 0x28, 0x91, 0x1d, 0x3b,
+ 0xc0, 0x2e, 0x86, 0x9e, 0xa4, 0x9c, 0xd9, 0x3d, 0x14, 0xc2, 0x0b, 0x51, 0x8c, 0x60, 0xb9, 0xa7,
+ 0x17, 0x8b, 0xe6, 0xdd, 0xf3, 0xfc, 0x0e, 0x65, 0xe8, 0x2a, 0x3c, 0x27, 0x9f, 0x2c, 0x4a, 0xe6,
+ 0x59, 0x42, 0x9a, 0xea, 0x86, 0xb1, 0xc7, 0xa4, 0x76, 0xd0, 0xf8, 0x5e, 0x82, 0x8d, 0x8b, 0x5e,
+ 0xc4, 0x63, 0x89, 0xc1, 0x29, 0x67, 0x37, 0x34, 0x14, 0xe4, 0x23, 0x6c, 0xd2, 0x1c, 0x72, 0x7d,
+ 0x8d, 0x19, 0xa5, 0xfa, 0xf2, 0x7e, 0xad, 0x79, 0x60, 0x4d, 0x95, 0xc9, 0x9a, 0x60, 0x5b, 0xfa,
+ 0xff, 0x35, 0xed, 0xa2, 0xb3, 0x41, 0xc7, 0xdf, 0xcc, 0x63, 0x80, 0xe1, 0x33, 0x21, 0xb0, 0xc2,
+ 0xbc, 0x1e, 0x1a, 0xa5, 0x7a, 0x69, 0x7f, 0xd5, 0x51, 0x67, 0x62, 0x42, 0x35, 0xc6, 0x3e, 0x15,
+ 0x94, 0x33, 0x63, 0x49, 0xe1, 0x83, 0x7b, 0x23, 0x02, 0xf3, 0x82, 0x89, 0x08, 0x7d, 0x79, 0xa9,
+ 0x4b, 0x71, 0x9d, 0x25, 0xe3, 0xe0, 0xe7, 0x04, 0x85, 0x24, 0xc7, 0x00, 0xfa, 0xf3, 0x64, 0x1a,
+ 0x69, 0x9f, 0xeb, 0xcd, 0xbd, 0xb1, 0x7c, 0x47, 0x59, 0xd7, 0x69, 0x84, 0xce, 0xaa, 0x2c, 0x8e,
+ 0x64, 0x1b, 0xca, 0xea, 0x92, 0x07, 0xd5, 0x97, 0xc6, 0x8f, 0x25, 0xd8, 0x9d, 0x19, 0x52, 0x44,
+ 0x9c, 0x09, 0xc5, 0xea, 0x7b, 0x5d, 0x1a, 0xa8, 0x70, 0x55, 0x47, 0x5f, 0xc8, 0x53, 0xd8, 0xa2,
+ 0x4c, 0x1d, 0xa9, 0x4c, 0xdd, 0x18, 0x3d, 0x31, 0xf8, 0x98, 0xcd, 0xe1, 0x83, 0xa3, 0x70, 0xb2,
+ 0x03, 0x15, 0x41, 0x43, 0x86, 0x81, 0xb1, 0xac, 0x7c, 0xe4, 0x37, 0xf2, 0x18, 0x6a, 0x8c, 0x33,
+ 0x17, 0xbf, 0x44, 0x34, 0xc6, 0xc0, 0x58, 0x51, 0x8f, 0xc0, 0x38, 0x3b, 0xd3, 0x48, 0x61, 0x10,
+ 0x63, 0x9f, 0xdf, 0x62, 0x60, 0x94, 0x07, 0x06, 0x8e, 0x46, 0xc8, 0x13, 0x58, 0xcf, 0x7c, 0x51,
+ 0x16, 0xba, 0xb7, 0x98, 0xba, 0x34, 0x30, 0x2a, 0x2a, 0x87, 0xb5, 0x1c, 0x7d, 0x8b, 0xe9, 0x45,
+ 0x40, 0xea, 0xb0, 0xe6, 0x63, 0x2c, 0x5d, 0xdf, 0x73, 0x55, 0x33, 0xfe, 0x56, 0x36, 0x90, 0x61,
+ 0xa7, 0xde, 0xbb, 0xac, 0x25, 0x97, 0x40, 0xb2, 0xa9, 0x72, 0xc7, 0xe6, 0xcf, 0xd8, 0xae, 0x97,
+ 0xf6, 0x6b, 0x77, 0x14, 0xf8, 0x25, 0x0f, 0xd2, 0xf3, 0xbf, 0x9c, 0xcd, 0x8c, 0x3a, 0x86, 0xaf,
+ 0x8d, 0xf6, 0xa9, 0x71, 0x04, 0x7b, 0x79, 0x81, 0x5f, 0x0d, 0x16, 0x63, 0xac, 0xad, 0x83, 0xc6,
+ 0x94, 0x46, 0x1b, 0xf3, 0x6d, 0x09, 0x1e, 0xcd, 0xe3, 0x3d, 0x80, 0xde, 0x1c, 0x41, 0x15, 0x59,
+ 0x1f, 0xbb, 0x3c, 0x42, 0xd5, 0x98, 0x5a, 0xf3, 0x3f, 0xab, 0x50, 0x00, 0x6b, 0x32, 0xe1, 0x81,
+ 0x29, 0xb1, 0xa0, 0x2a, 0x92, 0xb6, 0xfe, 0xdc, 0x8a, 0xa2, 0x91, 0x21, 0xed, 0x2a, 0x7f, 0x71,
+ 0x06, 0x36, 0x23, 0xc5, 0x7b, 0xdf, 0x4a, 0x64, 0x47, 0xb9, 0x7b, 0x93, 0x2d, 0xf7, 0xc2, 0xc5,
+ 0x9b, 0xe2, 0x3d, 0x80, 0xe2, 0x4d, 0xcf, 0x6d, 0x79, 0xc6, 0xdc, 0x9e, 0x14, 0x63, 0xd4, 0xe6,
+ 0x41, 0x9a, 0x57, 0xab, 0x3e, 0x36, 0x8d, 0x13, 0xdf, 0x96, 0x0d, 0x64, 0xbe, 0xf1, 0xd9, 0xb1,
+ 0xf9, 0x73, 0x05, 0xca, 0xad, 0x4c, 0xc1, 0xc8, 0x65, 0x21, 0x81, 0xa7, 0xad, 0x42, 0x02, 0x77,
+ 0x2c, 0x2d, 0xfe, 0x56, 0x21, 0xfe, 0xd6, 0x59, 0x26, 0xfe, 0x66, 0xe3, 0xf7, 0x02, 0x48, 0x3e,
+ 0xc0, 0xbf, 0x1a, 0x1a, 0x36, 0xfa, 0x3e, 0xdc, 0x7e, 0x82, 0xff, 0x35, 0x74, 0x85, 0x71, 0x9f,
+ 0xfa, 0xd8, 0xf2, 0x7d, 0x9e, 0x30, 0x29, 0xee, 0xc3, 0xb7, 0x84, 0x7f, 0x66, 0xc8, 0x1c, 0x99,
+ 0x29, 0xf7, 0x73, 0x15, 0xd8, 0xb4, 0x16, 0x35, 0xcf, 0x87, 0xec, 0x2b, 0xec, 0xcc, 0xde, 0x61,
+ 0xf2, 0x6c, 0xbe, 0xa7, 0xd9, 0x32, 0x61, 0x1e, 0xfe, 0x01, 0x63, 0x2a, 0xfc, 0xc4, 0xa4, 0xdc,
+ 0x15, 0x7e, 0xf6, 0xa2, 0xdd, 0x15, 0x7e, 0xce, 0x8a, 0xb5, 0x2b, 0xaa, 0x4f, 0xcf, 0x7f, 0x05,
+ 0x00, 0x00, 0xff, 0xff, 0x0e, 0x57, 0xaa, 0xd5, 0xb8, 0x08, 0x00, 0x00,
}

Powered by Google App Engine
This is Rietveld 408576698