From 957b07c408e23931303ab8de9ae4d8258c95736d Mon Sep 17 00:00:00 2001 From: Hitoshi Mitake Date: Fri, 3 Jun 2016 16:38:59 +0900 Subject: [PATCH 1/3] *: support revoking a role from a user in auth v3 This commit implements UserRevoke() RPC for supporting revoking a role from a user in auth v3. It also adds a new subcommand "user revoke" to etcdctl. --- auth/store.go | 41 +++ clientv3/auth.go | 9 + etcdctl/ctlv3/command/user_command.go | 23 ++ etcdserver/api/v3rpc/auth.go | 7 +- etcdserver/apply.go | 7 + etcdserver/etcdserverpb/raft_internal.pb.go | 133 ++++--- etcdserver/etcdserverpb/raft_internal.proto | 1 + etcdserver/etcdserverpb/rpc.pb.go | 384 ++++++++++++-------- etcdserver/etcdserverpb/rpc.proto | 2 + etcdserver/v3_server.go | 12 + 10 files changed, 424 insertions(+), 195 deletions(-) diff --git a/auth/store.go b/auth/store.go index c401cedf9..f4cf1ad06 100644 --- a/auth/store.go +++ b/auth/store.go @@ -76,6 +76,9 @@ type AuthStore interface { // UserGet gets the detailed information of a user UserGet(r *pb.AuthUserGetRequest) (*pb.AuthUserGetResponse, error) + // UserRevoke revokes a role of a user + UserRevoke(r *pb.AuthUserRevokeRequest) (*pb.AuthUserRevokeResponse, error) + // RoleAdd adds a new role RoleAdd(r *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) @@ -324,6 +327,44 @@ func (as *authStore) UserGet(r *pb.AuthUserGetRequest) (*pb.AuthUserGetResponse, return &resp, nil } +func (as *authStore) UserRevoke(r *pb.AuthUserRevokeRequest) (*pb.AuthUserRevokeResponse, error) { + tx := as.be.BatchTx() + tx.Lock() + defer tx.Unlock() + + _, vs := tx.UnsafeRange(authUsersBucketName, []byte(r.Name), nil, 0) + if len(vs) != 1 { + return nil, ErrUserNotFound + } + + user := &authpb.User{} + err := user.Unmarshal(vs[0]) + if err != nil { + return nil, err + } + + updatedUser := &authpb.User{} + updatedUser.Name = user.Name + updatedUser.Password = user.Password + + // TODO(mitake): return error if the target role doesn't exist in the granted roles of the user + for _, role := range user.Roles { + if strings.Compare(role, r.Role) != 0 { + updatedUser.Roles = append(updatedUser.Roles, role) + } + } + + marshaledUser, merr := updatedUser.Marshal() + if merr != nil { + return nil, merr + } + + tx.UnsafePut(authUsersBucketName, updatedUser.Name, marshaledUser) + + plog.Noticef("revoked role %s from user %s", r.Role, r.Name) + return &pb.AuthUserRevokeResponse{}, nil +} + func (as *authStore) RoleGet(r *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) { tx := as.be.BatchTx() tx.Lock() diff --git a/clientv3/auth.go b/clientv3/auth.go index f903a8226..879cea0f0 100644 --- a/clientv3/auth.go +++ b/clientv3/auth.go @@ -34,6 +34,7 @@ type ( AuthUserChangePasswordResponse pb.AuthUserChangePasswordResponse AuthUserGrantResponse pb.AuthUserGrantResponse AuthUserGetResponse pb.AuthUserGetResponse + AuthUserRevokeResponse pb.AuthUserRevokeResponse AuthRoleAddResponse pb.AuthRoleAddResponse AuthRoleGrantResponse pb.AuthRoleGrantResponse AuthRoleGetResponse pb.AuthRoleGetResponse @@ -69,6 +70,9 @@ type Auth interface { // UserGet gets a detailed information of a user. UserGet(ctx context.Context, name string) (*AuthUserGetResponse, error) + // UserRevoke revokes a role of a user. + UserRevoke(ctx context.Context, name string, role string) (*AuthUserRevokeResponse, error) + // RoleAdd adds a new role to an etcd cluster. RoleAdd(ctx context.Context, name string) (*AuthRoleAddResponse, error) @@ -130,6 +134,11 @@ func (auth *auth) UserGet(ctx context.Context, name string) (*AuthUserGetRespons return (*AuthUserGetResponse)(resp), rpctypes.Error(err) } +func (auth *auth) UserRevoke(ctx context.Context, name string, role string) (*AuthUserRevokeResponse, error) { + resp, err := auth.remote.UserRevoke(ctx, &pb.AuthUserRevokeRequest{Name: name, Role: role}) + return (*AuthUserRevokeResponse)(resp), rpctypes.Error(err) +} + func (auth *auth) RoleAdd(ctx context.Context, name string) (*AuthRoleAddResponse, error) { resp, err := auth.remote.RoleAdd(ctx, &pb.AuthRoleAddRequest{Name: name}) return (*AuthRoleAddResponse)(resp), rpctypes.Error(err) diff --git a/etcdctl/ctlv3/command/user_command.go b/etcdctl/ctlv3/command/user_command.go index 42bc9bcc1..0b9036616 100644 --- a/etcdctl/ctlv3/command/user_command.go +++ b/etcdctl/ctlv3/command/user_command.go @@ -35,6 +35,7 @@ func NewUserCommand() *cobra.Command { ac.AddCommand(newUserChangePasswordCommand()) ac.AddCommand(newUserGrantCommand()) ac.AddCommand(newUserGetCommand()) + ac.AddCommand(newUserRevokeRoleCommand()) return ac } @@ -92,6 +93,14 @@ func newUserGetCommand() *cobra.Command { } } +func newUserRevokeRoleCommand() *cobra.Command { + return &cobra.Command{ + Use: "revoke-role ", + Short: "revoke a role from from a user", + Run: userRevokeRoleCommandFunc, + } +} + // userAddCommandFunc executes the "user add" command. func userAddCommandFunc(cmd *cobra.Command, args []string) { if len(args) != 1 { @@ -183,6 +192,20 @@ func userGetCommandFunc(cmd *cobra.Command, args []string) { fmt.Printf("\n") } +// userRevokeRoleCommandFunc executes the "user revoke-role" command. +func userRevokeRoleCommandFunc(cmd *cobra.Command, args []string) { + if len(args) != 2 { + ExitWithError(ExitBadArgs, fmt.Errorf("user revoke-role requires user name and role name as its argument.")) + } + + _, err := mustClientFromCmd(cmd).Auth.UserRevoke(context.TODO(), args[0], args[1]) + if err != nil { + ExitWithError(ExitError, err) + } + + fmt.Printf("Role %s is revoked from user %s\n", args[1], args[0]) +} + func readPasswordInteractive(name string) string { prompt1 := fmt.Sprintf("Password of %s: ", name) password1, err1 := speakeasy.Ask(prompt1) diff --git a/etcdserver/api/v3rpc/auth.go b/etcdserver/api/v3rpc/auth.go index da8752bca..6928585df 100644 --- a/etcdserver/api/v3rpc/auth.go +++ b/etcdserver/api/v3rpc/auth.go @@ -119,8 +119,11 @@ func (as *AuthServer) UserGrant(ctx context.Context, r *pb.AuthUserGrantRequest) } func (as *AuthServer) UserRevoke(ctx context.Context, r *pb.AuthUserRevokeRequest) (*pb.AuthUserRevokeResponse, error) { - plog.Info("not implemented yet") - return nil, nil + resp, err := as.authenticator.UserRevoke(ctx, r) + if err != nil { + return nil, togRPCError(err) + } + return resp, nil } func (as *AuthServer) UserChangePassword(ctx context.Context, r *pb.AuthUserChangePasswordRequest) (*pb.AuthUserChangePasswordResponse, error) { diff --git a/etcdserver/apply.go b/etcdserver/apply.go index fd0d104f4..28085e15a 100644 --- a/etcdserver/apply.go +++ b/etcdserver/apply.go @@ -62,6 +62,7 @@ type applierV3 interface { UserChangePassword(ua *pb.AuthUserChangePasswordRequest) (*pb.AuthUserChangePasswordResponse, error) UserGrant(ua *pb.AuthUserGrantRequest) (*pb.AuthUserGrantResponse, error) UserGet(ua *pb.AuthUserGetRequest) (*pb.AuthUserGetResponse, error) + UserRevoke(ua *pb.AuthUserRevokeRequest) (*pb.AuthUserRevokeResponse, error) RoleAdd(ua *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) RoleGrant(ua *pb.AuthRoleGrantRequest) (*pb.AuthRoleGrantResponse, error) RoleGet(ua *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) @@ -114,6 +115,8 @@ func (s *EtcdServer) applyV3Request(r *pb.InternalRaftRequest) *applyResult { ar.resp, ar.err = s.applyV3.UserGrant(r.AuthUserGrant) case r.AuthUserGet != nil: ar.resp, ar.err = s.applyV3.UserGet(r.AuthUserGet) + case r.AuthUserRevoke != nil: + ar.resp, ar.err = s.applyV3.UserRevoke(r.AuthUserRevoke) case r.AuthRoleAdd != nil: ar.resp, ar.err = s.applyV3.RoleAdd(r.AuthRoleAdd) case r.AuthRoleGrant != nil: @@ -542,6 +545,10 @@ func (a *applierV3backend) UserGet(r *pb.AuthUserGetRequest) (*pb.AuthUserGetRes return a.s.AuthStore().UserGet(r) } +func (a *applierV3backend) UserRevoke(r *pb.AuthUserRevokeRequest) (*pb.AuthUserRevokeResponse, error) { + return a.s.AuthStore().UserRevoke(r) +} + func (a *applierV3backend) RoleAdd(r *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) { return a.s.AuthStore().RoleAdd(r) } diff --git a/etcdserver/etcdserverpb/raft_internal.pb.go b/etcdserver/etcdserverpb/raft_internal.pb.go index c793d6c98..e1a8fa096 100644 --- a/etcdserver/etcdserverpb/raft_internal.pb.go +++ b/etcdserver/etcdserverpb/raft_internal.pb.go @@ -55,6 +55,7 @@ type InternalRaftRequest struct { Authenticate *AuthenticateRequest `protobuf:"bytes,1018,opt,name=authenticate" json:"authenticate,omitempty"` AuthUserGet *AuthUserGetRequest `protobuf:"bytes,1019,opt,name=auth_user_get,json=authUserGet" json:"auth_user_get,omitempty"` AuthRoleGet *AuthRoleGetRequest `protobuf:"bytes,1020,opt,name=auth_role_get,json=authRoleGet" json:"auth_role_get,omitempty"` + AuthUserRevoke *AuthUserRevokeRequest `protobuf:"bytes,1021,opt,name=auth_user_revoke,json=authUserRevoke" json:"auth_user_revoke,omitempty"` } func (m *InternalRaftRequest) Reset() { *m = InternalRaftRequest{} } @@ -358,6 +359,18 @@ func (m *InternalRaftRequest) MarshalTo(data []byte) (int, error) { } i += n21 } + if m.AuthUserRevoke != nil { + data[i] = 0xea + i++ + data[i] = 0x3f + i++ + i = encodeVarintRaftInternal(data, i, uint64(m.AuthUserRevoke.Size())) + n22, err := m.AuthUserRevoke.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n22 + } return i, nil } @@ -509,6 +522,10 @@ func (m *InternalRaftRequest) Size() (n int) { l = m.AuthRoleGet.Size() n += 2 + l + sovRaftInternal(uint64(l)) } + if m.AuthUserRevoke != nil { + l = m.AuthUserRevoke.Size() + n += 2 + l + sovRaftInternal(uint64(l)) + } return n } @@ -1370,6 +1387,39 @@ func (m *InternalRaftRequest) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 1021: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AuthUserRevoke", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftInternal + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRaftInternal + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AuthUserRevoke == nil { + m.AuthUserRevoke = &AuthUserRevokeRequest{} + } + if err := m.AuthUserRevoke.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRaftInternal(data[iNdEx:]) @@ -1547,45 +1597,46 @@ var ( ) var fileDescriptorRaftInternal = []byte{ - // 630 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x94, 0xcb, 0x6e, 0xd3, 0x40, - 0x14, 0x86, 0x49, 0xda, 0xa6, 0xcd, 0x24, 0x69, 0xa3, 0x29, 0xa0, 0x21, 0x48, 0xa5, 0x04, 0x21, - 0x21, 0x90, 0x02, 0x6a, 0x97, 0x2c, 0x20, 0x24, 0xa1, 0x54, 0x20, 0x54, 0x59, 0xb0, 0xb6, 0x26, - 0xf6, 0xc1, 0x89, 0x70, 0x6c, 0x33, 0x9e, 0x84, 0xf2, 0x0a, 0x3c, 0x59, 0x97, 0x3c, 0x02, 0xb0, - 0x62, 0xcf, 0xfd, 0xb2, 0x60, 0x2e, 0xf6, 0x38, 0x4e, 0x9c, 0x2e, 0x2c, 0xd9, 0xff, 0xfc, 0xe7, - 0x3b, 0x97, 0x39, 0x32, 0xda, 0x65, 0xf4, 0x15, 0xb7, 0xc7, 0x01, 0x07, 0x16, 0x50, 0xbf, 0x13, - 0xb1, 0x90, 0x87, 0xb8, 0x0e, 0xdc, 0x71, 0x63, 0x60, 0x33, 0x60, 0xd1, 0xb0, 0x75, 0xd1, 0x0b, - 0xbd, 0x50, 0x1d, 0xdc, 0x95, 0x6f, 0xda, 0xd3, 0x6a, 0x66, 0x9e, 0x44, 0xa9, 0xb2, 0xc8, 0xd1, - 0xaf, 0xed, 0xfb, 0xa8, 0x61, 0xc1, 0x9b, 0x29, 0xc4, 0xfc, 0x09, 0x50, 0x17, 0x18, 0xde, 0x46, - 0xe5, 0xe3, 0x3e, 0x29, 0xed, 0x97, 0x6e, 0xad, 0x5b, 0xe5, 0x71, 0x1f, 0xb7, 0xd0, 0xd6, 0x34, - 0x96, 0x29, 0x27, 0x40, 0xca, 0x42, 0xad, 0x5a, 0xe6, 0xbb, 0xfd, 0xbe, 0x86, 0x76, 0x8f, 0x93, - 0x82, 0x2c, 0x51, 0x5d, 0x42, 0x5a, 0x62, 0xdc, 0x44, 0xe5, 0xd9, 0x81, 0x8a, 0xae, 0x1d, 0x5c, - 0xea, 0xcc, 0x97, 0xdc, 0x49, 0x42, 0x2c, 0x61, 0xc0, 0xf7, 0xd0, 0x06, 0xa3, 0x81, 0x07, 0x64, - 0x4d, 0x39, 0x5b, 0x0b, 0x4e, 0x79, 0x94, 0xda, 0xb5, 0x11, 0xdf, 0x46, 0x6b, 0xd1, 0x94, 0x93, - 0x75, 0xe5, 0x27, 0x79, 0xff, 0xc9, 0x34, 0xad, 0xc7, 0x92, 0x26, 0xdc, 0x43, 0x75, 0x17, 0x7c, - 0xe0, 0x60, 0xeb, 0x24, 0x1b, 0x2a, 0x68, 0x3f, 0x1f, 0xd4, 0x57, 0x8e, 0x5c, 0xaa, 0x9a, 0x9b, - 0x69, 0x32, 0x21, 0x3f, 0x0d, 0x48, 0xa5, 0x28, 0xe1, 0x8b, 0xd3, 0xc0, 0x24, 0x14, 0x26, 0xfc, - 0x00, 0x21, 0x27, 0x9c, 0x44, 0xd4, 0xe1, 0xe3, 0x30, 0x20, 0x9b, 0x2a, 0xe4, 0x5a, 0x3e, 0xa4, - 0x67, 0xce, 0xd3, 0xc8, 0xb9, 0x10, 0xfc, 0x10, 0xd5, 0x7c, 0xa0, 0x31, 0xd8, 0x9e, 0xa8, 0x98, - 0x93, 0xad, 0x22, 0xc2, 0x33, 0x69, 0x38, 0x92, 0xe7, 0x86, 0xe0, 0x1b, 0x49, 0xf6, 0xac, 0x09, - 0x0c, 0x66, 0xe1, 0x6b, 0x20, 0xd5, 0xa2, 0x9e, 0x15, 0xc2, 0x52, 0x06, 0xd3, 0xb3, 0x9f, 0x69, - 0xf2, 0x5a, 0xa8, 0x4f, 0xd9, 0x84, 0xa0, 0xa2, 0x6b, 0xe9, 0xca, 0x23, 0x73, 0x2d, 0xca, 0x88, - 0x0f, 0x51, 0x65, 0xa4, 0xb6, 0x89, 0xb8, 0x2a, 0xe4, 0x6a, 0xe1, 0x9d, 0xeb, 0x85, 0xb3, 0x12, - 0x2b, 0xee, 0xa2, 0x1a, 0x9d, 0xf2, 0x91, 0x0d, 0x01, 0x1d, 0xfa, 0x40, 0xbe, 0x14, 0x0e, 0xac, - 0x2b, 0x1c, 0x03, 0x65, 0x30, 0xed, 0x52, 0x23, 0xe1, 0x3e, 0xaa, 0x2b, 0x84, 0x3b, 0x8e, 0x15, - 0xe3, 0xeb, 0x66, 0x51, 0xbf, 0x92, 0xd1, 0xd7, 0x0e, 0xd3, 0x2f, 0xcd, 0x34, 0x3c, 0x40, 0x0d, - 0x45, 0x91, 0x6b, 0x6e, 0x53, 0xd7, 0x25, 0xdf, 0x56, 0x62, 0x5e, 0x8a, 0xaf, 0xae, 0xeb, 0xe6, - 0x30, 0x89, 0x86, 0x9f, 0xa3, 0x66, 0x86, 0xd1, 0x3b, 0x44, 0xbe, 0x6b, 0xd2, 0x8d, 0x62, 0x52, - 0xb2, 0x7c, 0x09, 0x6c, 0x9b, 0xe6, 0x64, 0xec, 0xa1, 0x2b, 0x19, 0xcf, 0x19, 0xc9, 0x75, 0xb4, - 0x23, 0x1a, 0xc7, 0x6f, 0x43, 0xe6, 0x92, 0x1f, 0x1a, 0x7c, 0xa7, 0x18, 0xdc, 0x53, 0xee, 0x93, - 0xc4, 0x9c, 0x26, 0xb8, 0x4c, 0x0b, 0x8f, 0xf1, 0x53, 0xb4, 0x93, 0x25, 0xd2, 0xab, 0xf7, 0x53, - 0xe3, 0xdb, 0xc5, 0xf8, 0xdc, 0xfa, 0x35, 0xe8, 0xbc, 0x6a, 0x86, 0xc9, 0x42, 0x1f, 0xd4, 0x30, - 0x7f, 0xad, 0x1c, 0xa6, 0x25, 0x2c, 0x8b, 0xc3, 0x4c, 0x34, 0x53, 0x93, 0xc2, 0xe8, 0x9a, 0x7e, - 0xaf, 0xac, 0x49, 0x06, 0x2d, 0xd7, 0x64, 0x54, 0xfc, 0x58, 0xaf, 0x09, 0x04, 0x7c, 0xec, 0x50, - 0x71, 0x2b, 0x7f, 0x34, 0xe9, 0xfa, 0x32, 0x29, 0xb5, 0xa4, 0xa0, 0x5c, 0x5c, 0x7e, 0x51, 0x3c, - 0xe0, 0xe4, 0xef, 0xb9, 0x8b, 0x72, 0x04, 0x7c, 0x69, 0x51, 0x84, 0x96, 0x1f, 0x91, 0xc4, 0xfc, - 0x3b, 0x77, 0x44, 0x8b, 0x98, 0x44, 0x6b, 0xef, 0xa0, 0xc6, 0x60, 0x12, 0xf1, 0x77, 0x16, 0xc4, - 0x51, 0x18, 0xc4, 0xf0, 0xa8, 0x79, 0xf6, 0x69, 0xef, 0xc2, 0xd9, 0xe7, 0xbd, 0xd2, 0x07, 0xf1, - 0x7c, 0x14, 0xcf, 0xb0, 0xa2, 0xfe, 0xf9, 0x87, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0xbc, 0x96, - 0xbf, 0x32, 0x4b, 0x06, 0x00, 0x00, + // 644 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x95, 0xcb, 0x6f, 0xd3, 0x4c, + 0x14, 0xc5, 0xbf, 0xa6, 0xef, 0x49, 0xd3, 0x56, 0xd3, 0x0f, 0x34, 0x04, 0xa9, 0x94, 0x20, 0x24, + 0x04, 0x52, 0x41, 0xed, 0x92, 0x05, 0x84, 0xa6, 0x94, 0x0a, 0x84, 0x2a, 0x0b, 0xd6, 0xd6, 0xd4, + 0xbe, 0x38, 0x11, 0x8e, 0x6d, 0xc6, 0x93, 0x50, 0xfe, 0xc3, 0x2e, 0x59, 0xb3, 0x02, 0x56, 0xec, + 0x79, 0xbf, 0x24, 0xe6, 0xe5, 0x71, 0x26, 0x71, 0xb2, 0x88, 0x64, 0x9f, 0x39, 0xf7, 0x77, 0xef, + 0xcc, 0x1c, 0x2b, 0x68, 0x8b, 0xd1, 0x17, 0xdc, 0xef, 0x25, 0x1c, 0x58, 0x42, 0xe3, 0xdd, 0x8c, + 0xa5, 0x3c, 0xc5, 0x6b, 0xc0, 0x83, 0x30, 0x07, 0x36, 0x04, 0x96, 0x9d, 0x36, 0xff, 0x8f, 0xd2, + 0x28, 0x55, 0x0b, 0xb7, 0xe5, 0x93, 0xf6, 0x34, 0x37, 0x4b, 0x8f, 0x51, 0x56, 0x59, 0x16, 0xe8, + 0xc7, 0xd6, 0x5d, 0xd4, 0xf0, 0xe0, 0xd5, 0x00, 0x72, 0xfe, 0x08, 0x68, 0x08, 0x0c, 0xaf, 0xa3, + 0xda, 0x71, 0x87, 0xcc, 0xed, 0xcc, 0xdd, 0x58, 0xf0, 0x6a, 0xbd, 0x0e, 0x6e, 0xa2, 0x95, 0x41, + 0x2e, 0x5b, 0xf6, 0x81, 0xd4, 0x84, 0xba, 0xea, 0xd9, 0xf7, 0xd6, 0xbb, 0x3a, 0xda, 0x3a, 0x36, + 0x03, 0x79, 0x62, 0x3a, 0x43, 0x9a, 0x60, 0x5c, 0x47, 0xb5, 0xe1, 0x9e, 0xaa, 0xae, 0xef, 0x5d, + 0xd8, 0x1d, 0x1d, 0x79, 0xd7, 0x94, 0x78, 0xc2, 0x80, 0xef, 0xa0, 0x45, 0x46, 0x93, 0x08, 0xc8, + 0xbc, 0x72, 0x36, 0xc7, 0x9c, 0x72, 0xa9, 0xb0, 0x6b, 0x23, 0xbe, 0x89, 0xe6, 0xb3, 0x01, 0x27, + 0x0b, 0xca, 0x4f, 0x5c, 0xff, 0xc9, 0xa0, 0x98, 0xc7, 0x93, 0x26, 0x7c, 0x80, 0xd6, 0x42, 0x88, + 0x81, 0x83, 0xaf, 0x9b, 0x2c, 0xaa, 0xa2, 0x1d, 0xb7, 0xa8, 0xa3, 0x1c, 0x4e, 0xab, 0x7a, 0x58, + 0x6a, 0xb2, 0x21, 0x3f, 0x4b, 0xc8, 0x52, 0x55, 0xc3, 0x67, 0x67, 0x89, 0x6d, 0x28, 0x4c, 0xf8, + 0x1e, 0x42, 0x41, 0xda, 0xcf, 0x68, 0xc0, 0x7b, 0x69, 0x42, 0x96, 0x55, 0xc9, 0x15, 0xb7, 0xe4, + 0xc0, 0xae, 0x17, 0x95, 0x23, 0x25, 0xf8, 0x3e, 0xaa, 0xc7, 0x40, 0x73, 0xf0, 0x23, 0x31, 0x31, + 0x27, 0x2b, 0x55, 0x84, 0x27, 0xd2, 0x70, 0x24, 0xd7, 0x2d, 0x21, 0xb6, 0x92, 0xdc, 0xb3, 0x26, + 0x30, 0x18, 0xa6, 0x2f, 0x81, 0xac, 0x56, 0xed, 0x59, 0x21, 0x3c, 0x65, 0xb0, 0x7b, 0x8e, 0x4b, + 0x4d, 0x5e, 0x0b, 0x8d, 0x29, 0xeb, 0x13, 0x54, 0x75, 0x2d, 0x6d, 0xb9, 0x64, 0xaf, 0x45, 0x19, + 0xf1, 0x3e, 0x5a, 0xea, 0xaa, 0x34, 0x91, 0x50, 0x95, 0x5c, 0xae, 0xbc, 0x73, 0x1d, 0x38, 0xcf, + 0x58, 0x71, 0x1b, 0xd5, 0xe9, 0x80, 0x77, 0x7d, 0x48, 0xe8, 0x69, 0x0c, 0xe4, 0x53, 0xe5, 0x81, + 0xb5, 0x85, 0xe3, 0x50, 0x19, 0xec, 0x76, 0xa9, 0x95, 0x70, 0x07, 0xad, 0x29, 0x44, 0xd8, 0xcb, + 0x15, 0xe3, 0xf3, 0x72, 0xd5, 0x7e, 0x25, 0xa3, 0xa3, 0x1d, 0x76, 0xbf, 0xb4, 0xd4, 0xf0, 0x21, + 0x6a, 0x28, 0x8a, 0x8c, 0xb9, 0x4f, 0xc3, 0x90, 0x7c, 0x99, 0x8a, 0x79, 0x2e, 0xde, 0xda, 0x61, + 0xe8, 0x60, 0x8c, 0x86, 0x9f, 0xa2, 0xcd, 0x12, 0xa3, 0x33, 0x44, 0xbe, 0x6a, 0xd2, 0xb5, 0x6a, + 0x92, 0x09, 0x9f, 0x81, 0xad, 0x53, 0x47, 0xc6, 0x11, 0xba, 0x54, 0xf2, 0x82, 0xae, 0x8c, 0xa3, + 0x9f, 0xd1, 0x3c, 0x7f, 0x9d, 0xb2, 0x90, 0x7c, 0xd3, 0xe0, 0x5b, 0xd5, 0xe0, 0x03, 0xe5, 0x3e, + 0x31, 0xe6, 0xa2, 0xc1, 0x45, 0x5a, 0xb9, 0x8c, 0x1f, 0xa3, 0x8d, 0xb2, 0x91, 0x8e, 0xde, 0x77, + 0x8d, 0x6f, 0x55, 0xe3, 0x9d, 0xf8, 0x35, 0xe8, 0xa8, 0x6a, 0x0f, 0x93, 0xa5, 0x31, 0xa8, 0xc3, + 0xfc, 0x31, 0xf5, 0x30, 0x3d, 0x61, 0x19, 0x3f, 0x4c, 0xa3, 0xd9, 0x99, 0x14, 0x46, 0xcf, 0xf4, + 0x73, 0xea, 0x4c, 0xb2, 0x68, 0x72, 0x26, 0xab, 0xe2, 0x87, 0x3a, 0x26, 0x90, 0xf0, 0x5e, 0x40, + 0xc5, 0xad, 0xfc, 0xd2, 0xa4, 0xab, 0x93, 0xa4, 0xc2, 0x52, 0x80, 0x9c, 0x3a, 0x37, 0x28, 0x11, + 0x70, 0xf2, 0x7b, 0x66, 0x50, 0x8e, 0x80, 0x4f, 0x04, 0x45, 0x68, 0xee, 0x11, 0x49, 0xcc, 0x9f, + 0x99, 0x47, 0x34, 0x8e, 0x31, 0x9a, 0x9b, 0x37, 0xf3, 0xbd, 0xff, 0x9d, 0x99, 0x37, 0xf7, 0x9b, + 0xb7, 0x79, 0xd3, 0x72, 0x6b, 0x03, 0x35, 0x0e, 0xfb, 0x19, 0x7f, 0xe3, 0x41, 0x9e, 0xa5, 0x49, + 0x0e, 0x0f, 0x36, 0xcf, 0x3f, 0x6c, 0xff, 0x77, 0xfe, 0x71, 0x7b, 0xee, 0xad, 0xf8, 0xbd, 0x17, + 0xbf, 0xd3, 0x25, 0xf5, 0x1f, 0xb2, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x2d, 0xe3, 0x72, 0x0d, + 0x9b, 0x06, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/raft_internal.proto b/etcdserver/etcdserverpb/raft_internal.proto index 0b7c9eb6a..ef3c0bd69 100644 --- a/etcdserver/etcdserverpb/raft_internal.proto +++ b/etcdserver/etcdserverpb/raft_internal.proto @@ -46,6 +46,7 @@ message InternalRaftRequest { AuthenticateRequest authenticate = 1018; AuthUserGetRequest auth_user_get = 1019; AuthRoleGetRequest auth_role_get = 1020; + AuthUserRevokeRequest auth_user_revoke = 1021; } message EmptyResponse { diff --git a/etcdserver/etcdserverpb/rpc.pb.go b/etcdserver/etcdserverpb/rpc.pb.go index ae8c0fe66..743ba0c3b 100644 --- a/etcdserver/etcdserverpb/rpc.pb.go +++ b/etcdserver/etcdserverpb/rpc.pb.go @@ -1593,6 +1593,8 @@ func (*AuthUserGrantRequest) ProtoMessage() {} func (*AuthUserGrantRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{51} } type AuthUserRevokeRequest struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"` } func (m *AuthUserRevokeRequest) Reset() { *m = AuthUserRevokeRequest{} } @@ -5280,6 +5282,18 @@ func (m *AuthUserRevokeRequest) MarshalTo(data []byte) (int, error) { _ = i var l int _ = l + if len(m.Name) > 0 { + data[i] = 0xa + i++ + i = encodeVarintRpc(data, i, uint64(len(m.Name))) + i += copy(data[i:], m.Name) + } + if len(m.Role) > 0 { + data[i] = 0x12 + i++ + i = encodeVarintRpc(data, i, uint64(len(m.Role))) + i += copy(data[i:], m.Role) + } return i, nil } @@ -6657,6 +6671,14 @@ func (m *AuthUserGrantRequest) Size() (n int) { func (m *AuthUserRevokeRequest) Size() (n int) { var l int _ = l + l = len(m.Name) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + l = len(m.Role) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } return n } @@ -12409,6 +12431,64 @@ func (m *AuthUserRevokeRequest) Unmarshal(data []byte) error { return fmt.Errorf("proto: AuthUserRevokeRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Role", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Role = string(data[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRpc(data[iNdEx:]) @@ -14157,14 +14237,14 @@ var ( ) var fileDescriptorRpc = []byte{ - // 2599 bytes of a gzipped FileDescriptorProto + // 2605 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x72, 0x1b, 0xc7, 0x11, 0x26, 0x7e, 0x08, 0x10, 0x0d, 0x10, 0xa2, 0x86, 0x94, 0x4c, 0x41, 0x3f, 0x96, 0x57, 0x92, - 0xad, 0xc4, 0x0e, 0x15, 0x33, 0xce, 0x21, 0x15, 0x97, 0x52, 0x20, 0x01, 0x4b, 0x34, 0x29, 0x52, + 0xad, 0xc4, 0x0e, 0x15, 0x33, 0xce, 0x21, 0x15, 0x97, 0x5c, 0x20, 0x01, 0x4b, 0x0c, 0x29, 0x52, 0x5e, 0x82, 0x54, 0x7c, 0x62, 0x2d, 0x80, 0x11, 0xb9, 0x25, 0xfc, 0x79, 0x77, 0x41, 0x89, 0xaa, 0xca, 0x25, 0x55, 0x79, 0x02, 0xe7, 0x94, 0xca, 0x0b, 0xe4, 0x01, 0xf2, 0x0e, 0xa9, 0x5c, 0x92, 0x27, 0x48, 0x52, 0x39, 0xa5, 0x72, 0xc9, 0x3d, 0xb9, 0xa4, 0xe7, 0x6f, 0x77, 0x76, 0xb0, 0x0b, - 0xc9, 0x59, 0xe5, 0x20, 0x72, 0xa7, 0xa7, 0xfb, 0x9b, 0xee, 0x9e, 0x9e, 0x9e, 0xee, 0xa1, 0xa0, + 0xc9, 0x59, 0xe5, 0x20, 0x72, 0xa7, 0xa7, 0xe7, 0x9b, 0xee, 0x9e, 0x9e, 0x9e, 0xee, 0xa6, 0xa0, 0xe2, 0x4d, 0x7a, 0x1b, 0x13, 0x6f, 0x1c, 0x8c, 0x49, 0x8d, 0x06, 0xbd, 0xbe, 0x4f, 0xbd, 0x73, 0xea, 0x4d, 0xba, 0x8d, 0xb5, 0xd3, 0xf1, 0xe9, 0x98, 0x4f, 0x3c, 0x60, 0x5f, 0x82, 0xa7, 0x71, 0x8d, 0xf1, 0x3c, 0x18, 0x9e, 0xf7, 0x7a, 0xfc, 0xc7, 0xa4, 0xfb, 0xe0, 0xc5, 0xb9, 0x9c, 0xba, @@ -14172,153 +14252,153 @@ var fileDescriptorRpc = []byte{ 0x6e, 0x53, 0x7f, 0x32, 0x1e, 0xf9, 0xf4, 0x31, 0x75, 0xfa, 0xd4, 0x23, 0x37, 0x01, 0x7a, 0x83, 0xa9, 0x1f, 0x50, 0xef, 0xc4, 0xed, 0xaf, 0xe7, 0x6e, 0xe7, 0xee, 0x17, 0xed, 0x8a, 0xa4, 0xec, 0xf4, 0xc9, 0x75, 0xa8, 0x0c, 0xe9, 0xb0, 0x2b, 0x66, 0xf3, 0x7c, 0x76, 0x49, 0x10, 0x70, 0xb2, - 0x01, 0x4b, 0x1e, 0x3d, 0x77, 0x7d, 0x77, 0x3c, 0x5a, 0x2f, 0xe0, 0x5c, 0xc1, 0x0e, 0xc7, 0x4c, - 0xd0, 0x73, 0x9e, 0x07, 0x27, 0x08, 0x33, 0x5c, 0x2f, 0x0a, 0x41, 0x46, 0xe8, 0xe0, 0xd8, 0xfa, - 0x75, 0x01, 0x6a, 0xb6, 0x33, 0x3a, 0xa5, 0x36, 0xfd, 0x66, 0x4a, 0xfd, 0x80, 0xac, 0x40, 0xe1, - 0x05, 0xbd, 0xe0, 0xcb, 0xd7, 0x6c, 0xf6, 0x29, 0xe4, 0x91, 0xe3, 0x84, 0x8e, 0xc4, 0xc2, 0x35, - 0x26, 0x8f, 0x84, 0xf6, 0xa8, 0x4f, 0xd6, 0x60, 0x71, 0xe0, 0x0e, 0xdd, 0x40, 0xae, 0x2a, 0x06, - 0x31, 0x75, 0x8a, 0x86, 0x3a, 0xdb, 0x00, 0xfe, 0xd8, 0x0b, 0x4e, 0xc6, 0x1e, 0x1a, 0xbd, 0xbe, - 0x88, 0xb3, 0xf5, 0xcd, 0xbb, 0x1b, 0xba, 0xab, 0x37, 0x74, 0x85, 0x36, 0x0e, 0x91, 0xf9, 0x80, - 0xf1, 0xda, 0x15, 0x5f, 0x7d, 0x92, 0x2f, 0xa0, 0xca, 0x41, 0x02, 0xc7, 0x3b, 0xa5, 0xc1, 0x7a, - 0x89, 0xa3, 0xdc, 0x7b, 0x03, 0x4a, 0x87, 0x33, 0xdb, 0x7c, 0x79, 0xf1, 0x4d, 0x2c, 0xa8, 0x21, - 0xbf, 0xeb, 0x0c, 0xdc, 0xd7, 0x4e, 0x77, 0x40, 0xd7, 0xcb, 0x08, 0xb4, 0x64, 0xc7, 0x68, 0xd6, - 0x06, 0x54, 0x42, 0x1d, 0xc8, 0x12, 0x14, 0xf7, 0x0f, 0xf6, 0xdb, 0x2b, 0x0b, 0x04, 0xa0, 0xd4, - 0x3c, 0xdc, 0x6e, 0xef, 0xb7, 0x56, 0x72, 0xa4, 0x0a, 0xe5, 0x56, 0x5b, 0x0c, 0xf2, 0xd6, 0x16, - 0x40, 0xb4, 0x1a, 0x29, 0x43, 0x61, 0xb7, 0xfd, 0x35, 0xf2, 0x23, 0xcf, 0x71, 0xdb, 0x3e, 0xdc, - 0x39, 0xd8, 0x47, 0x01, 0x14, 0xde, 0xb6, 0xdb, 0xcd, 0x4e, 0x7b, 0x25, 0xcf, 0x38, 0x9e, 0x1c, - 0xb4, 0x56, 0x0a, 0xa4, 0x02, 0x8b, 0xc7, 0xcd, 0xbd, 0xa3, 0xf6, 0x4a, 0xd1, 0xfa, 0x05, 0x2c, - 0x4b, 0xf5, 0x45, 0x88, 0x90, 0xcf, 0xa0, 0x74, 0xc6, 0xc3, 0x84, 0xef, 0x4c, 0x75, 0xf3, 0x86, - 0x61, 0x6b, 0x2c, 0x94, 0x6c, 0xc9, 0x8b, 0xe6, 0x15, 0x5e, 0x9c, 0xfb, 0xb8, 0x69, 0x05, 0x14, - 0x59, 0xd9, 0x10, 0x11, 0xba, 0xb1, 0x4b, 0x2f, 0x8e, 0x9d, 0xc1, 0x94, 0xda, 0x6c, 0x92, 0x10, - 0x28, 0x0e, 0xc7, 0x1e, 0xe5, 0x1b, 0xb8, 0x64, 0xf3, 0x6f, 0xeb, 0x4b, 0x80, 0xa7, 0xd3, 0x20, - 0x3d, 0x24, 0x70, 0xd7, 0xcf, 0x19, 0x82, 0x0c, 0x07, 0x31, 0xe0, 0xb1, 0x40, 0x1d, 0x9f, 0x86, - 0xb1, 0xc0, 0x06, 0xd6, 0x36, 0x54, 0x39, 0x56, 0x16, 0x43, 0x10, 0x84, 0xb4, 0xe8, 0x80, 0x06, - 0x34, 0x43, 0xac, 0x5a, 0x14, 0x56, 0x63, 0x20, 0x99, 0x5c, 0xbb, 0x0e, 0xe5, 0x3e, 0x07, 0x13, - 0xeb, 0x14, 0x6c, 0x35, 0xb4, 0xfe, 0x95, 0xc3, 0x23, 0x25, 0x34, 0x3c, 0x1a, 0xb1, 0x88, 0x6f, - 0xc2, 0xb2, 0x27, 0xc6, 0x27, 0x5c, 0x17, 0xb9, 0x4e, 0x23, 0x3d, 0x5c, 0x1f, 0x2f, 0xd8, 0x35, - 0x29, 0xc2, 0xc9, 0xe4, 0xa7, 0x50, 0x55, 0x10, 0x93, 0x69, 0xc0, 0x57, 0xac, 0x6e, 0xae, 0xc7, - 0x01, 0xa2, 0x1d, 0x43, 0x71, 0x90, 0xec, 0x48, 0x24, 0x1d, 0x58, 0x53, 0xc2, 0x42, 0x47, 0xa9, - 0x46, 0x81, 0xa3, 0xdc, 0x8e, 0xa3, 0xcc, 0xba, 0x19, 0xd1, 0x88, 0x94, 0xd7, 0x26, 0xb7, 0x2a, - 0x50, 0x96, 0x54, 0xeb, 0xdf, 0x39, 0x0c, 0x57, 0xe9, 0x26, 0x61, 0x72, 0x0b, 0xea, 0x9e, 0x24, - 0xc4, 0x6c, 0xbe, 0x9e, 0x68, 0xb3, 0x74, 0xf0, 0x82, 0xbd, 0xac, 0x84, 0x84, 0xd5, 0x0f, 0xa1, - 0x16, 0xa2, 0x44, 0x66, 0x5f, 0x4b, 0x30, 0x3b, 0x44, 0xa8, 0x2a, 0x01, 0x66, 0xf8, 0x33, 0xb8, - 0x12, 0xca, 0x27, 0x58, 0xfe, 0xc1, 0x1c, 0xcb, 0x43, 0xc0, 0x55, 0x85, 0xa0, 0xdb, 0x0e, 0x2c, - 0xbf, 0x09, 0xb2, 0xf5, 0x9b, 0x02, 0x94, 0xb7, 0xc7, 0xc3, 0x89, 0xe3, 0xb1, 0x6d, 0x2a, 0x21, - 0x7d, 0x3a, 0x08, 0xb8, 0xb9, 0xf5, 0xcd, 0x3b, 0xf1, 0x15, 0x24, 0x9b, 0xfa, 0x6d, 0x73, 0x56, - 0x5b, 0x8a, 0x30, 0x61, 0x99, 0xce, 0xf2, 0x6f, 0x21, 0x2c, 0x93, 0x99, 0x14, 0x51, 0x47, 0xa1, - 0x10, 0x1d, 0x85, 0x06, 0x94, 0x51, 0x30, 0x4a, 0xc1, 0x68, 0x8b, 0x22, 0x90, 0xef, 0xc1, 0xa5, - 0x9e, 0x47, 0x1d, 0xe6, 0x0f, 0x95, 0xa6, 0x17, 0x25, 0x4f, 0x5d, 0x4c, 0xd8, 0x2a, 0x5d, 0xdf, - 0x81, 0xda, 0x70, 0xdc, 0x8f, 0xf8, 0x4a, 0x92, 0xaf, 0x8a, 0xd4, 0x90, 0xe9, 0xaa, 0xca, 0x07, - 0x2c, 0x7f, 0xd6, 0x70, 0x56, 0x0c, 0xad, 0x4f, 0x61, 0x39, 0x66, 0x2b, 0x4b, 0x71, 0xed, 0xaf, - 0x8e, 0x9a, 0x7b, 0x22, 0x1f, 0x3e, 0xe2, 0x29, 0xd0, 0xc6, 0x7c, 0x88, 0x69, 0x75, 0xaf, 0x7d, - 0x78, 0x88, 0xd9, 0xf3, 0xf3, 0x50, 0x44, 0x26, 0x50, 0x2d, 0x6f, 0x2e, 0x68, 0x79, 0x33, 0xa7, - 0xf2, 0x66, 0x3e, 0xca, 0x9b, 0x85, 0xad, 0x3a, 0xd4, 0x84, 0x43, 0x4e, 0xa6, 0x2c, 0x0e, 0xad, - 0xdf, 0xe5, 0x00, 0x3a, 0xaf, 0x46, 0x2a, 0x61, 0x3c, 0x80, 0x72, 0x4f, 0x80, 0xe3, 0x06, 0xb1, - 0x9c, 0x78, 0x25, 0xd1, 0xc7, 0xb6, 0xe2, 0xc2, 0xdc, 0x50, 0xf6, 0xa7, 0xbd, 0x1e, 0xf5, 0x55, - 0x12, 0x35, 0x0f, 0xad, 0x76, 0xce, 0x6d, 0xc5, 0xca, 0xa4, 0x9e, 0x3b, 0xee, 0x60, 0xca, 0xb3, - 0xea, 0x1b, 0xa5, 0x24, 0xab, 0xf5, 0xdb, 0x1c, 0x54, 0xb9, 0xae, 0x99, 0xf2, 0xd2, 0x0d, 0xa8, - 0x70, 0x35, 0x68, 0x5f, 0x66, 0xa6, 0x25, 0x3b, 0x22, 0x90, 0x9f, 0x60, 0x7e, 0x94, 0x72, 0xbe, - 0xd4, 0xed, 0x7a, 0x32, 0xac, 0x50, 0x2e, 0xe2, 0xb6, 0x76, 0xe1, 0x32, 0x77, 0x4f, 0x2f, 0x60, - 0x13, 0xd2, 0xa1, 0xfa, 0x45, 0x9f, 0x33, 0x2e, 0x7a, 0x9c, 0x9b, 0x9c, 0x5d, 0xf8, 0x6e, 0xcf, - 0x19, 0x48, 0x45, 0xc2, 0x31, 0x5e, 0x30, 0x44, 0x07, 0xcb, 0x74, 0x37, 0x2c, 0x43, 0xf5, 0xb1, - 0xe3, 0x9f, 0x49, 0x95, 0xac, 0x9f, 0x43, 0x4d, 0x0c, 0x33, 0xb9, 0x11, 0x6f, 0xc5, 0x33, 0x44, - 0xe1, 0x8a, 0x2f, 0xdb, 0xfc, 0xdb, 0xba, 0x0c, 0x97, 0x0e, 0x47, 0xce, 0xc4, 0x3f, 0x1b, 0xab, - 0x44, 0xcb, 0xca, 0xb8, 0x95, 0x88, 0x96, 0x69, 0xc5, 0x8f, 0xe0, 0x92, 0x47, 0x87, 0x8e, 0x3b, - 0x72, 0x47, 0xa7, 0x27, 0xdd, 0x8b, 0x80, 0xfa, 0xb2, 0xca, 0xab, 0x87, 0xe4, 0x2d, 0x46, 0x65, - 0xaa, 0x75, 0x07, 0xe3, 0xae, 0x3c, 0xeb, 0xfc, 0xdb, 0xfa, 0x3d, 0xde, 0x39, 0xcf, 0x9c, 0xa0, - 0xa7, 0xbc, 0x40, 0x76, 0xa0, 0x1e, 0x9e, 0x70, 0x4e, 0x91, 0xba, 0x18, 0xd9, 0x9e, 0xcb, 0x6c, - 0xcb, 0x13, 0xaf, 0xb2, 0xfd, 0x72, 0x4f, 0x27, 0x70, 0x28, 0x67, 0xd4, 0xa3, 0x83, 0x10, 0x2a, - 0x9f, 0x0e, 0xc5, 0x19, 0x75, 0x28, 0x9d, 0xb0, 0x75, 0x29, 0xba, 0x09, 0xc5, 0xf9, 0xfc, 0x36, - 0x07, 0x64, 0x56, 0x87, 0xef, 0x5a, 0x84, 0xde, 0x83, 0xba, 0x8f, 0xc7, 0x3e, 0x38, 0x31, 0x6a, - 0xe0, 0x65, 0x4e, 0x0d, 0xb3, 0x14, 0x7a, 0x18, 0x8b, 0xef, 0x53, 0x0c, 0x69, 0xff, 0x64, 0x34, - 0x0e, 0xdc, 0xe7, 0x17, 0x3c, 0x33, 0x2e, 0xd9, 0x75, 0x45, 0xde, 0xe7, 0x54, 0xeb, 0x81, 0x52, - 0x4a, 0x57, 0x9e, 0x5c, 0x83, 0xa5, 0x97, 0x8c, 0xaa, 0xaa, 0x73, 0xbc, 0xf2, 0xf9, 0x78, 0xa7, - 0x6f, 0xfd, 0x03, 0x2f, 0x40, 0xe9, 0xfe, 0x4c, 0x31, 0xa0, 0x2f, 0x91, 0x8f, 0x2d, 0xc1, 0xea, - 0x0d, 0xb1, 0x2d, 0x7d, 0x59, 0xa9, 0xa9, 0x21, 0x3b, 0x67, 0xc2, 0xcb, 0x38, 0x25, 0xec, 0x09, - 0xc7, 0x98, 0xe8, 0x57, 0x7a, 0xe2, 0x9c, 0x19, 0x99, 0xde, 0xbe, 0x24, 0xe9, 0xa1, 0x77, 0xee, - 0x41, 0x89, 0x9e, 0xd3, 0x51, 0xe0, 0xaf, 0x57, 0x79, 0x5e, 0x58, 0x56, 0xe5, 0x62, 0x9b, 0x51, - 0x6d, 0x39, 0x69, 0xfd, 0x18, 0x2e, 0xef, 0xb1, 0xba, 0xee, 0x11, 0x7a, 0x5f, 0xaf, 0x10, 0x3b, - 0x9d, 0x3d, 0xe9, 0x95, 0x42, 0xd0, 0xd9, 0x23, 0x75, 0xc8, 0xef, 0xb4, 0xa4, 0x0d, 0x79, 0xb7, - 0x65, 0xfd, 0x12, 0x37, 0x5a, 0x97, 0xcb, 0xe4, 0x26, 0x03, 0x5c, 0x2d, 0x5f, 0x88, 0x96, 0xc7, - 0x52, 0x94, 0x7a, 0xde, 0xd8, 0xe3, 0x0e, 0xa9, 0xd8, 0x62, 0x60, 0xdd, 0x95, 0x3a, 0xa0, 0xcd, - 0xe3, 0x17, 0x61, 0xb0, 0x09, 0xb4, 0x5c, 0xa8, 0xea, 0x2e, 0xac, 0xc6, 0xb8, 0x32, 0x25, 0xa7, - 0x8f, 0xe0, 0x0a, 0x07, 0xdb, 0xa5, 0x74, 0xd2, 0x1c, 0xb8, 0xe7, 0xa9, 0xab, 0x4e, 0xe0, 0xaa, - 0xc9, 0xf8, 0xff, 0xf5, 0x91, 0x75, 0x06, 0xa5, 0x27, 0xbc, 0x7f, 0xd4, 0x74, 0x29, 0x72, 0x5e, - 0xcc, 0x30, 0x23, 0x67, 0x28, 0xaa, 0xfb, 0x8a, 0xcd, 0xbf, 0x79, 0x36, 0xa7, 0xd4, 0x3b, 0xb2, - 0xf7, 0xc4, 0xc5, 0x51, 0xb1, 0xc3, 0x31, 0xb9, 0xc5, 0x3a, 0x57, 0x17, 0xc3, 0x83, 0xcf, 0x16, - 0xf9, 0xac, 0x46, 0xc1, 0x0e, 0x6a, 0x45, 0xac, 0xd4, 0xec, 0xf7, 0xb5, 0x9b, 0x23, 0xc4, 0xcb, - 0xc5, 0xf1, 0xac, 0x97, 0x70, 0x59, 0xe3, 0xcf, 0xe4, 0x86, 0x4f, 0xa0, 0x24, 0x9a, 0x64, 0x99, - 0xb4, 0xd6, 0xe2, 0x52, 0x62, 0x19, 0x5b, 0xf2, 0x58, 0xf7, 0x60, 0x55, 0x52, 0xe8, 0x70, 0x9c, - 0xb4, 0x57, 0xdc, 0x3f, 0xd6, 0x1e, 0xac, 0xc5, 0xd9, 0x32, 0x85, 0x48, 0x53, 0x2d, 0x7a, 0x34, - 0xe9, 0x6b, 0x39, 0xd0, 0xdc, 0x14, 0xdd, 0x61, 0x79, 0xc3, 0x61, 0xa1, 0x42, 0x0a, 0x22, 0x93, - 0x42, 0xab, 0xca, 0xfd, 0x7b, 0xae, 0x1f, 0xde, 0x74, 0xaf, 0x81, 0xe8, 0xc4, 0x4c, 0x9b, 0xb2, - 0x01, 0x65, 0xe1, 0x70, 0x55, 0x55, 0x25, 0xef, 0x8a, 0x62, 0x62, 0x0a, 0xb5, 0xe8, 0x73, 0xcf, - 0x39, 0x1d, 0xd2, 0x30, 0xe7, 0xb0, 0x12, 0x42, 0x27, 0x66, 0xb2, 0xf8, 0x4f, 0x78, 0x7d, 0x36, - 0x07, 0x8e, 0x37, 0x54, 0xce, 0x7f, 0x08, 0x25, 0x51, 0x9b, 0xc8, 0x42, 0xfe, 0xc3, 0x38, 0x8c, - 0xce, 0x2b, 0x06, 0x4d, 0x51, 0xc9, 0x48, 0x29, 0xb6, 0x59, 0xf2, 0x6d, 0xa6, 0x65, 0xbc, 0xd5, - 0xb4, 0xc8, 0x0f, 0x60, 0xd1, 0x61, 0x22, 0xfc, 0x2c, 0xd6, 0x37, 0xdf, 0x4b, 0x80, 0xee, 0x5c, - 0x4c, 0xa8, 0x2d, 0xb8, 0xac, 0xcf, 0xa0, 0xaa, 0xad, 0xc0, 0xaa, 0xde, 0x47, 0xed, 0x0e, 0x96, - 0xc2, 0x35, 0x58, 0x6a, 0x6e, 0x77, 0x76, 0x8e, 0x45, 0x31, 0x5c, 0x07, 0x68, 0xb5, 0xc3, 0x71, - 0x1e, 0xab, 0x20, 0x21, 0x25, 0x4f, 0xb8, 0xae, 0x4f, 0x2e, 0x4d, 0x9f, 0xfc, 0x5b, 0xe9, 0xf3, - 0x0a, 0x96, 0xa5, 0xf9, 0x99, 0x62, 0xe0, 0x53, 0xf4, 0x30, 0x83, 0x51, 0x21, 0x70, 0x2d, 0x61, - 0x59, 0x75, 0x3a, 0x05, 0xa3, 0x85, 0xd5, 0xc3, 0x61, 0xe0, 0x04, 0x53, 0x5f, 0x85, 0xc0, 0x1f, - 0x73, 0x50, 0x57, 0x94, 0xac, 0xcd, 0xbc, 0xea, 0x95, 0x44, 0xce, 0x0b, 0x3b, 0xa5, 0xab, 0x50, - 0xea, 0x77, 0x0f, 0xdd, 0xd7, 0xea, 0x51, 0x43, 0x8e, 0x18, 0x7d, 0x20, 0xd6, 0x11, 0x2f, 0x6a, - 0x72, 0xc4, 0xca, 0x6f, 0xf6, 0xb6, 0xb6, 0x33, 0xea, 0xd3, 0x57, 0xfc, 0xa6, 0x2d, 0xda, 0x11, - 0x81, 0x97, 0xcb, 0xf2, 0xe5, 0x8d, 0x37, 0x52, 0xfa, 0x4b, 0x1c, 0x06, 0x79, 0x73, 0x1a, 0x9c, - 0xb5, 0x47, 0xec, 0xd1, 0x49, 0x59, 0xb8, 0x06, 0x84, 0x11, 0x5b, 0xae, 0xaf, 0x53, 0xdb, 0xb0, - 0xca, 0xa8, 0x18, 0xf7, 0x58, 0x4c, 0x47, 0x19, 0x43, 0xa5, 0xed, 0x9c, 0x91, 0xb6, 0x1d, 0xdf, - 0x7f, 0x39, 0xf6, 0xfa, 0xd2, 0xb4, 0x70, 0x6c, 0xb5, 0x04, 0xf8, 0x91, 0x1f, 0x4b, 0xcc, 0xdf, - 0x15, 0xe5, 0x7e, 0x84, 0xf2, 0x88, 0x06, 0x73, 0x50, 0xac, 0x8f, 0xe1, 0x8a, 0xe2, 0x94, 0xcd, - 0xf4, 0x1c, 0xe6, 0x03, 0xb8, 0xa9, 0x98, 0xb7, 0xcf, 0x58, 0xa1, 0xf7, 0x54, 0x2e, 0xf8, 0xbf, - 0xea, 0xf9, 0x10, 0xd6, 0x42, 0x3d, 0xf5, 0xda, 0x05, 0x71, 0xa6, 0xbe, 0x8c, 0x17, 0xc4, 0x61, - 0xdf, 0x8c, 0xe6, 0x8d, 0x07, 0xe1, 0x05, 0xc8, 0xbe, 0xad, 0xf7, 0x22, 0xed, 0x63, 0xf5, 0x83, - 0x72, 0x80, 0x8d, 0x4c, 0xf3, 0xdd, 0xa8, 0x73, 0xc6, 0x5d, 0xc5, 0x17, 0xcb, 0xcd, 0x2e, 0xc6, - 0x38, 0x63, 0xae, 0xb2, 0x6c, 0x61, 0x05, 0x87, 0x30, 0xac, 0x98, 0xf1, 0xc6, 0x87, 0x50, 0x9c, - 0x50, 0x79, 0xae, 0xab, 0x9b, 0x64, 0x43, 0xbc, 0x42, 0x6f, 0x3c, 0x45, 0x9a, 0xeb, 0xb3, 0xe8, - 0xb6, 0xf9, 0xbc, 0xbe, 0x58, 0xdc, 0xb2, 0x2f, 0x85, 0xbe, 0x2a, 0x24, 0x33, 0xa5, 0xd8, 0x5d, - 0x11, 0xb3, 0x61, 0x24, 0x67, 0x02, 0xeb, 0x0a, 0x2f, 0x44, 0x07, 0x20, 0xd3, 0xe9, 0xc7, 0x62, - 0x31, 0x40, 0xab, 0xd5, 0xd9, 0x17, 0x03, 0xa5, 0x70, 0x78, 0x3a, 0x32, 0x29, 0xec, 0x44, 0x60, - 0x7c, 0xe7, 0xb3, 0xea, 0xcb, 0x82, 0x44, 0x95, 0x01, 0x62, 0x60, 0xed, 0xc3, 0x55, 0xf3, 0x74, - 0x65, 0x52, 0xf9, 0x18, 0x6e, 0xa5, 0x1d, 0xc0, 0x4c, 0xb8, 0x4f, 0xa2, 0x73, 0xf4, 0x0e, 0x7a, - 0x01, 0xdd, 0xec, 0x77, 0x52, 0xb0, 0xcb, 0x6d, 0x0f, 0x4f, 0x73, 0x26, 0x30, 0x3f, 0x02, 0xcb, - 0xbe, 0xed, 0xd1, 0x71, 0x2e, 0xcc, 0x3d, 0xce, 0xd2, 0x23, 0x7a, 0xee, 0x78, 0x17, 0x1b, 0xa6, - 0xa5, 0x9c, 0x77, 0xb1, 0x61, 0x7a, 0xb6, 0xc9, 0x82, 0xf7, 0x7d, 0x0b, 0x2a, 0x61, 0x8d, 0xa2, - 0xfd, 0x79, 0xa6, 0x0a, 0xe5, 0xfd, 0x83, 0xc3, 0xa7, 0xcd, 0x6d, 0xac, 0x8e, 0x36, 0xff, 0x99, - 0x87, 0xfc, 0xee, 0x31, 0xd9, 0x82, 0x45, 0xf1, 0xb0, 0x3c, 0xe7, 0xe9, 0xbd, 0x31, 0xef, 0x89, - 0xda, 0x5a, 0x20, 0x9f, 0x43, 0x81, 0x3d, 0x2d, 0xa7, 0xbe, 0xbd, 0x37, 0xd2, 0x9f, 0xa7, 0x51, - 0xba, 0x03, 0x55, 0xed, 0x1d, 0x99, 0xbc, 0xf1, 0xed, 0xbd, 0xf1, 0xe6, 0x37, 0x6a, 0xa1, 0x53, - 0xe7, 0xd5, 0xc8, 0xd4, 0x29, 0x7a, 0xf7, 0x34, 0x75, 0xd2, 0x5e, 0x19, 0x51, 0x7a, 0x5f, 0xbe, - 0x5f, 0xf7, 0x02, 0xf2, 0x7e, 0xc2, 0x73, 0xa8, 0xfe, 0xde, 0xd7, 0xb8, 0x9d, 0xce, 0xa0, 0xf0, - 0x36, 0x0f, 0x60, 0x91, 0xbf, 0x85, 0x90, 0x2f, 0xd4, 0x47, 0x23, 0xe1, 0xa5, 0x28, 0xc5, 0xdd, - 0xb1, 0x57, 0x14, 0x6b, 0xe1, 0x7e, 0xee, 0x87, 0xb9, 0xcd, 0x6f, 0xf3, 0xb0, 0xc8, 0x7b, 0x63, - 0xf2, 0x15, 0x40, 0xf4, 0x88, 0x60, 0x6a, 0x3b, 0xf3, 0x2c, 0x61, 0x6a, 0x3b, 0xfb, 0xfe, 0x20, - 0x76, 0x44, 0xeb, 0xf6, 0x49, 0x92, 0x48, 0xec, 0x52, 0x34, 0x77, 0x24, 0xe1, 0xa9, 0x00, 0x51, - 0x1d, 0xa8, 0xc7, 0xbb, 0x79, 0x72, 0x27, 0x41, 0xcc, 0x7c, 0x14, 0x68, 0xdc, 0x9d, 0xcf, 0x14, - 0xf3, 0xca, 0x5f, 0xf2, 0xb8, 0x6f, 0xe2, 0xaf, 0xc3, 0xb8, 0x85, 0x95, 0xb0, 0x61, 0x26, 0xb7, - 0x92, 0x9a, 0xa9, 0xa8, 0x32, 0x69, 0xbc, 0x9f, 0x3a, 0x1f, 0xaa, 0xff, 0x0c, 0x6a, 0x7a, 0x83, - 0x4b, 0x3e, 0x48, 0xec, 0xcf, 0xf4, 0x1e, 0xb9, 0x61, 0xcd, 0x63, 0x99, 0x05, 0x16, 0x8d, 0x6a, - 0x32, 0x70, 0xac, 0x0f, 0x4e, 0x06, 0x8e, 0xf7, 0xb9, 0x08, 0x8c, 0x91, 0x11, 0xb5, 0xa7, 0x24, - 0xd1, 0x44, 0xad, 0x9b, 0x35, 0x23, 0x63, 0xb6, 0xb3, 0xc5, 0x38, 0xfe, 0x4f, 0x1e, 0xaa, 0x4f, - 0x1c, 0x77, 0x14, 0xd0, 0x11, 0x7b, 0x4e, 0x63, 0xd9, 0x83, 0x27, 0x1a, 0x33, 0x9c, 0xf5, 0x66, - 0xd0, 0x0c, 0xe7, 0x58, 0xa7, 0x84, 0x6a, 0xb6, 0xa1, 0x24, 0x1a, 0x16, 0x62, 0x30, 0xc6, 0x1a, - 0x9b, 0xc6, 0x8d, 0xe4, 0x49, 0xdd, 0xda, 0xa8, 0xf7, 0x35, 0xad, 0x9d, 0x69, 0x95, 0x1b, 0xb7, - 0xd3, 0x19, 0x42, 0xc8, 0x9f, 0x41, 0x91, 0x3d, 0x9b, 0x13, 0x23, 0x55, 0x68, 0x2f, 0xeb, 0x8d, - 0x46, 0xd2, 0x54, 0x08, 0xf0, 0x04, 0x96, 0xd4, 0x4b, 0x38, 0xb9, 0x69, 0xe8, 0x1f, 0x7f, 0x35, - 0x6f, 0xdc, 0x4a, 0x9b, 0x56, 0x60, 0x18, 0xde, 0x7f, 0xad, 0x40, 0x91, 0xdd, 0x13, 0xcc, 0xd6, - 0xa8, 0x08, 0x35, 0x6d, 0x9d, 0xe9, 0x98, 0x4c, 0x5b, 0x67, 0xeb, 0x57, 0x71, 0xe6, 0xb5, 0x5a, - 0x94, 0x24, 0x88, 0xc4, 0x1b, 0x2e, 0xf3, 0xcc, 0x27, 0x14, 0xb2, 0x22, 0xb6, 0xf5, 0xa2, 0x94, - 0x24, 0x08, 0x19, 0x1d, 0x9b, 0x19, 0xdb, 0x49, 0x35, 0x2d, 0x02, 0x3f, 0x85, 0xb2, 0xac, 0x42, - 0x93, 0x54, 0x8d, 0xb7, 0x6f, 0x49, 0xaa, 0x1a, 0x25, 0x6c, 0x84, 0x88, 0x35, 0x49, 0x1a, 0x62, - 0xd4, 0x9f, 0xa4, 0x21, 0x6a, 0x05, 0x0d, 0x22, 0x7e, 0x0d, 0x10, 0x55, 0x9e, 0x66, 0xb2, 0x4b, - 0xec, 0xfa, 0xcc, 0x64, 0x97, 0x5c, 0xbc, 0x22, 0xf4, 0x37, 0x40, 0x66, 0x8b, 0x50, 0xf2, 0x71, - 0xb2, 0x74, 0x62, 0xaf, 0xd8, 0xf8, 0xe4, 0xed, 0x98, 0xc3, 0x25, 0x8f, 0xa1, 0x12, 0xd6, 0xa7, - 0xc4, 0x4a, 0xb1, 0x5f, 0xbf, 0x69, 0xee, 0xcc, 0xe5, 0x31, 0xbd, 0x24, 0xef, 0x9a, 0x14, 0xa1, - 0xf8, 0x75, 0x73, 0x77, 0x3e, 0x93, 0xbe, 0xa5, 0xb2, 0x66, 0x4d, 0xda, 0xd2, 0x78, 0x73, 0x9a, - 0xb4, 0xa5, 0x46, 0xc1, 0x1b, 0x21, 0xa6, 0x04, 0x49, 0xbc, 0x89, 0x4d, 0x43, 0x9c, 0x09, 0x92, - 0xa8, 0x2a, 0x4d, 0x32, 0x7f, 0xa6, 0xdf, 0x4d, 0x32, 0x7f, 0xb6, 0xb0, 0x15, 0x3b, 0x16, 0x16, - 0xa8, 0x49, 0x3b, 0x66, 0x36, 0xcc, 0x8d, 0x3b, 0x73, 0x79, 0x4c, 0x95, 0xd3, 0x77, 0x6c, 0xa6, - 0x6b, 0x4e, 0x53, 0xd9, 0xdc, 0xb1, 0xad, 0xda, 0x1f, 0xfe, 0x7e, 0x2b, 0xf7, 0x67, 0xfc, 0xf7, - 0x37, 0xfc, 0xd7, 0x2d, 0xf1, 0xff, 0x17, 0xf6, 0xa3, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x48, - 0x31, 0xae, 0xd9, 0x80, 0x26, 0x00, 0x00, + 0x01, 0x4b, 0x1e, 0x3d, 0x77, 0x7d, 0x77, 0x3c, 0x5a, 0x2f, 0xe0, 0x5c, 0xc1, 0x0e, 0xc7, 0x6c, + 0xa1, 0xe7, 0x3c, 0x0f, 0x4e, 0x10, 0x66, 0xb8, 0x5e, 0x14, 0x0b, 0x19, 0xa1, 0x83, 0x63, 0xeb, + 0xd7, 0x05, 0xa8, 0xd9, 0xce, 0xe8, 0x94, 0xda, 0xf4, 0x9b, 0x29, 0xf5, 0x03, 0xb2, 0x02, 0x85, + 0x17, 0xf4, 0x82, 0x6f, 0x5f, 0xb3, 0xd9, 0xa7, 0x58, 0x8f, 0x1c, 0x27, 0x74, 0x24, 0x36, 0xae, + 0xb1, 0xf5, 0x48, 0x68, 0x8f, 0xfa, 0x64, 0x0d, 0x16, 0x07, 0xee, 0xd0, 0x0d, 0xe4, 0xae, 0x62, + 0x10, 0x13, 0xa7, 0x68, 0x88, 0xb3, 0x0d, 0xe0, 0x8f, 0xbd, 0xe0, 0x64, 0xec, 0xa1, 0xd2, 0xeb, + 0x8b, 0x38, 0x5b, 0xdf, 0xbc, 0xbb, 0xa1, 0x9b, 0x7a, 0x43, 0x17, 0x68, 0xe3, 0x10, 0x99, 0x0f, + 0x18, 0xaf, 0x5d, 0xf1, 0xd5, 0x27, 0xf9, 0x12, 0xaa, 0x1c, 0x24, 0x70, 0xbc, 0x53, 0x1a, 0xac, + 0x97, 0x38, 0xca, 0xbd, 0x37, 0xa0, 0x74, 0x38, 0xb3, 0xcd, 0xb7, 0x17, 0xdf, 0xc4, 0x82, 0x1a, + 0xf2, 0xbb, 0xce, 0xc0, 0x7d, 0xed, 0x74, 0x07, 0x74, 0xbd, 0x8c, 0x40, 0x4b, 0x76, 0x8c, 0x66, + 0x6d, 0x40, 0x25, 0x94, 0x81, 0x2c, 0x41, 0x71, 0xff, 0x60, 0xbf, 0xbd, 0xb2, 0x40, 0x00, 0x4a, + 0xcd, 0xc3, 0xed, 0xf6, 0x7e, 0x6b, 0x25, 0x47, 0xaa, 0x50, 0x6e, 0xb5, 0xc5, 0x20, 0x6f, 0x6d, + 0x01, 0x44, 0xbb, 0x91, 0x32, 0x14, 0x76, 0xdb, 0x5f, 0x23, 0x3f, 0xf2, 0x1c, 0xb7, 0xed, 0xc3, + 0x9d, 0x83, 0x7d, 0x5c, 0x80, 0x8b, 0xb7, 0xed, 0x76, 0xb3, 0xd3, 0x5e, 0xc9, 0x33, 0x8e, 0x27, + 0x07, 0xad, 0x95, 0x02, 0xa9, 0xc0, 0xe2, 0x71, 0x73, 0xef, 0xa8, 0xbd, 0x52, 0xb4, 0x7e, 0x01, + 0xcb, 0x52, 0x7c, 0xe1, 0x22, 0xe4, 0x33, 0x28, 0x9d, 0x71, 0x37, 0xe1, 0x27, 0x53, 0xdd, 0xbc, + 0x61, 0xe8, 0x1a, 0x73, 0x25, 0x5b, 0xf2, 0xa2, 0x7a, 0x85, 0x17, 0xe7, 0x3e, 0x1e, 0x5a, 0x01, + 0x97, 0xac, 0x6c, 0x08, 0x0f, 0xdd, 0xd8, 0xa5, 0x17, 0xc7, 0xce, 0x60, 0x4a, 0x6d, 0x36, 0x49, + 0x08, 0x14, 0x87, 0x63, 0x8f, 0xf2, 0x03, 0x5c, 0xb2, 0xf9, 0xb7, 0xf5, 0x33, 0x80, 0xa7, 0xd3, + 0x20, 0xdd, 0x25, 0xf0, 0xd4, 0xcf, 0x19, 0x82, 0x74, 0x07, 0x31, 0xe0, 0xbe, 0x40, 0x1d, 0x9f, + 0x86, 0xbe, 0xc0, 0x06, 0xd6, 0x36, 0x54, 0x39, 0x56, 0x16, 0x45, 0x10, 0x84, 0xb4, 0xe8, 0x80, + 0x06, 0x34, 0x83, 0xaf, 0x5a, 0x14, 0x56, 0x63, 0x20, 0x99, 0x4c, 0xbb, 0x0e, 0xe5, 0x3e, 0x07, + 0x13, 0xfb, 0x14, 0x6c, 0x35, 0xb4, 0xfe, 0x95, 0xc3, 0x2b, 0x25, 0x24, 0x3c, 0x1a, 0x31, 0x8f, + 0x6f, 0xc2, 0xb2, 0x27, 0xc6, 0x27, 0x5c, 0x16, 0xb9, 0x4f, 0x23, 0xdd, 0x5d, 0x1f, 0x2f, 0xd8, + 0x35, 0xb9, 0x84, 0x93, 0xc9, 0x4f, 0xa1, 0xaa, 0x20, 0x26, 0xd3, 0x80, 0xef, 0x58, 0xdd, 0x5c, + 0x8f, 0x03, 0x44, 0x27, 0x86, 0xcb, 0x41, 0xb2, 0x23, 0x91, 0x74, 0x60, 0x4d, 0x2d, 0x16, 0x32, + 0x4a, 0x31, 0x0a, 0x1c, 0xe5, 0x76, 0x1c, 0x65, 0xd6, 0xcc, 0x88, 0x46, 0xe4, 0x7a, 0x6d, 0x72, + 0xab, 0x02, 0x65, 0x49, 0xb5, 0xfe, 0x9d, 0x43, 0x77, 0x95, 0x66, 0x12, 0x2a, 0xb7, 0xa0, 0xee, + 0x49, 0x42, 0x4c, 0xe7, 0xeb, 0x89, 0x3a, 0x4b, 0x03, 0x2f, 0xd8, 0xcb, 0x6a, 0x91, 0xd0, 0xfa, + 0x21, 0xd4, 0x42, 0x94, 0x48, 0xed, 0x6b, 0x09, 0x6a, 0x87, 0x08, 0x55, 0xb5, 0x80, 0x29, 0xfe, + 0x0c, 0xae, 0x84, 0xeb, 0x13, 0x34, 0xff, 0x60, 0x8e, 0xe6, 0x21, 0xe0, 0xaa, 0x42, 0xd0, 0x75, + 0x07, 0x16, 0xdf, 0x04, 0xd9, 0xfa, 0x4d, 0x01, 0xca, 0xdb, 0xe3, 0xe1, 0xc4, 0xf1, 0xd8, 0x31, + 0x95, 0x90, 0x3e, 0x1d, 0x04, 0x5c, 0xdd, 0xfa, 0xe6, 0x9d, 0xf8, 0x0e, 0x92, 0x4d, 0xfd, 0xb6, + 0x39, 0xab, 0x2d, 0x97, 0xb0, 0xc5, 0x32, 0x9c, 0xe5, 0xdf, 0x62, 0xb1, 0x0c, 0x66, 0x72, 0x89, + 0xba, 0x0a, 0x85, 0xe8, 0x2a, 0x34, 0xa0, 0x8c, 0x0b, 0xa3, 0x10, 0x8c, 0xba, 0x28, 0x02, 0xf9, + 0x1e, 0x5c, 0xea, 0x79, 0xd4, 0x61, 0xf6, 0x50, 0x61, 0x7a, 0x51, 0xf2, 0xd4, 0xc5, 0x84, 0xad, + 0xc2, 0xf5, 0x1d, 0xa8, 0x0d, 0xc7, 0xfd, 0x88, 0xaf, 0x24, 0xf9, 0xaa, 0x48, 0x0d, 0x99, 0xae, + 0xaa, 0x78, 0xc0, 0xe2, 0x67, 0x0d, 0x67, 0xc5, 0xd0, 0xfa, 0x14, 0x96, 0x63, 0xba, 0xb2, 0x10, + 0xd7, 0xfe, 0xea, 0xa8, 0xb9, 0x27, 0xe2, 0xe1, 0x23, 0x1e, 0x02, 0x6d, 0x8c, 0x87, 0x18, 0x56, + 0xf7, 0xda, 0x87, 0x87, 0x18, 0x3d, 0x3f, 0x0f, 0x97, 0xc8, 0x00, 0xaa, 0xc5, 0xcd, 0x05, 0x2d, + 0x6e, 0xe6, 0x54, 0xdc, 0xcc, 0x47, 0x71, 0xb3, 0xb0, 0x55, 0x87, 0x9a, 0x30, 0xc8, 0xc9, 0x94, + 0xf9, 0xa1, 0xf5, 0xbb, 0x1c, 0x40, 0xe7, 0xd5, 0x48, 0x05, 0x8c, 0x07, 0x50, 0xee, 0x09, 0x70, + 0x3c, 0x20, 0x16, 0x13, 0xaf, 0x24, 0xda, 0xd8, 0x56, 0x5c, 0x18, 0x1b, 0xca, 0xfe, 0xb4, 0xd7, + 0xa3, 0xbe, 0x0a, 0xa2, 0xe6, 0xa5, 0xd5, 0xee, 0xb9, 0xad, 0x58, 0xd9, 0xaa, 0xe7, 0x8e, 0x3b, + 0x98, 0xf2, 0xa8, 0xfa, 0xc6, 0x55, 0x92, 0xd5, 0xfa, 0x6d, 0x0e, 0xaa, 0x5c, 0xd6, 0x4c, 0x71, + 0xe9, 0x06, 0x54, 0xb8, 0x18, 0xb4, 0x2f, 0x23, 0xd3, 0x92, 0x1d, 0x11, 0xc8, 0x4f, 0x30, 0x3e, + 0xca, 0x75, 0xbe, 0x94, 0xed, 0x7a, 0x32, 0xac, 0x10, 0x2e, 0xe2, 0xb6, 0x76, 0xe1, 0x32, 0x37, + 0x4f, 0x2f, 0x60, 0x13, 0xd2, 0xa0, 0xfa, 0x43, 0x9f, 0x33, 0x1e, 0x7a, 0x9c, 0x9b, 0x9c, 0x5d, + 0xf8, 0x6e, 0xcf, 0x19, 0x48, 0x41, 0xc2, 0x31, 0x3e, 0x30, 0x44, 0x07, 0xcb, 0xf4, 0x36, 0x2c, + 0x43, 0xf5, 0xb1, 0xe3, 0x9f, 0x49, 0x91, 0xac, 0x9f, 0x43, 0x4d, 0x0c, 0x33, 0x99, 0x11, 0x5f, + 0xc5, 0x33, 0x44, 0xe1, 0x82, 0x2f, 0xdb, 0xfc, 0xdb, 0xba, 0x0c, 0x97, 0x0e, 0x47, 0xce, 0xc4, + 0x3f, 0x1b, 0xab, 0x40, 0xcb, 0xd2, 0xb8, 0x95, 0x88, 0x96, 0x69, 0xc7, 0x8f, 0xe0, 0x92, 0x47, + 0x87, 0x8e, 0x3b, 0x72, 0x47, 0xa7, 0x27, 0xdd, 0x8b, 0x80, 0xfa, 0x32, 0xcb, 0xab, 0x87, 0xe4, + 0x2d, 0x46, 0x65, 0xa2, 0x75, 0x07, 0xe3, 0xae, 0xbc, 0xeb, 0xfc, 0xdb, 0xfa, 0x3d, 0xbe, 0x39, + 0xcf, 0x9c, 0xa0, 0xa7, 0xac, 0x40, 0x76, 0xa0, 0x1e, 0xde, 0x70, 0x4e, 0x91, 0xb2, 0x18, 0xd1, + 0x9e, 0xaf, 0xd9, 0x96, 0x37, 0x5e, 0x45, 0xfb, 0xe5, 0x9e, 0x4e, 0xe0, 0x50, 0xce, 0xa8, 0x47, + 0x07, 0x21, 0x54, 0x3e, 0x1d, 0x8a, 0x33, 0xea, 0x50, 0x3a, 0x61, 0xeb, 0x52, 0xf4, 0x12, 0x8a, + 0xfb, 0xf9, 0x6d, 0x0e, 0xc8, 0xac, 0x0c, 0xdf, 0x35, 0x09, 0xbd, 0x07, 0x75, 0x1f, 0xaf, 0x7d, + 0x70, 0x62, 0xe4, 0xc0, 0xcb, 0x9c, 0x1a, 0x46, 0x29, 0xb4, 0x30, 0x26, 0xdf, 0xa7, 0xe8, 0xd2, + 0xfe, 0xc9, 0x68, 0x1c, 0xb8, 0xcf, 0x2f, 0x78, 0x64, 0x5c, 0xb2, 0xeb, 0x8a, 0xbc, 0xcf, 0xa9, + 0xd6, 0x03, 0x25, 0x94, 0x2e, 0x3c, 0xb9, 0x06, 0x4b, 0x2f, 0x19, 0x55, 0x65, 0xe7, 0xf8, 0xe4, + 0xf3, 0xf1, 0x4e, 0xdf, 0xfa, 0x07, 0x3e, 0x80, 0xd2, 0xfc, 0x99, 0x7c, 0x40, 0xdf, 0x22, 0x1f, + 0xdb, 0x82, 0xe5, 0x1b, 0xe2, 0x58, 0xfa, 0x32, 0x53, 0x53, 0x43, 0x76, 0xcf, 0x84, 0x95, 0x71, + 0x4a, 0xe8, 0x13, 0x8e, 0x31, 0xd0, 0xaf, 0xf4, 0xc4, 0x3d, 0x33, 0x22, 0xbd, 0x7d, 0x49, 0xd2, + 0x43, 0xeb, 0xdc, 0x83, 0x12, 0x3d, 0xa7, 0xa3, 0xc0, 0x5f, 0xaf, 0xf2, 0xb8, 0xb0, 0xac, 0xd2, + 0xc5, 0x36, 0xa3, 0xda, 0x72, 0xd2, 0xfa, 0x31, 0x5c, 0xde, 0x63, 0x79, 0xdd, 0x23, 0xb4, 0xbe, + 0x9e, 0x21, 0x76, 0x3a, 0x7b, 0xd2, 0x2a, 0x85, 0xa0, 0xb3, 0x47, 0xea, 0x90, 0xdf, 0x69, 0x49, + 0x1d, 0xf2, 0x6e, 0xcb, 0xfa, 0x25, 0x1e, 0xb4, 0xbe, 0x2e, 0x93, 0x99, 0x0c, 0x70, 0xb5, 0x7d, + 0x21, 0xda, 0x1e, 0x53, 0x51, 0xea, 0x79, 0x63, 0x8f, 0x1b, 0xa4, 0x62, 0x8b, 0x81, 0x75, 0x57, + 0xca, 0x80, 0x3a, 0x8f, 0x5f, 0x84, 0xce, 0x26, 0xd0, 0x72, 0xa1, 0xa8, 0xbb, 0xb0, 0x1a, 0xe3, + 0xca, 0x14, 0x9c, 0x3e, 0x82, 0x2b, 0x1c, 0x6c, 0x97, 0xd2, 0x49, 0x73, 0xe0, 0x9e, 0xa7, 0xee, + 0x3a, 0x81, 0xab, 0x26, 0xe3, 0xff, 0xd7, 0x46, 0xd6, 0x19, 0x94, 0x9e, 0xf0, 0xfa, 0x51, 0x93, + 0xa5, 0xc8, 0x79, 0x31, 0xc2, 0x8c, 0x9c, 0xa1, 0xc8, 0xee, 0x2b, 0x36, 0xff, 0xe6, 0xd1, 0x9c, + 0x52, 0xef, 0xc8, 0xde, 0x13, 0x0f, 0x47, 0xc5, 0x0e, 0xc7, 0xe4, 0x16, 0xab, 0x5c, 0x5d, 0x74, + 0x0f, 0x3e, 0x5b, 0xe4, 0xb3, 0x1a, 0x05, 0x2b, 0xa8, 0x15, 0xb1, 0x53, 0xb3, 0xdf, 0xd7, 0x5e, + 0x8e, 0x10, 0x2f, 0x17, 0xc7, 0xb3, 0x5e, 0xc2, 0x65, 0x8d, 0x3f, 0x93, 0x19, 0x3e, 0x81, 0x92, + 0x28, 0x92, 0x65, 0xd0, 0x5a, 0x8b, 0xaf, 0x12, 0xdb, 0xd8, 0x92, 0xc7, 0xba, 0x07, 0xab, 0x92, + 0x42, 0x87, 0xe3, 0xa4, 0xb3, 0xe2, 0xf6, 0xb1, 0xf6, 0x60, 0x2d, 0xce, 0x96, 0xc9, 0x45, 0x9a, + 0x6a, 0xd3, 0xa3, 0x49, 0x5f, 0x8b, 0x81, 0xe6, 0xa1, 0xe8, 0x06, 0xcb, 0x1b, 0x06, 0x0b, 0x05, + 0x52, 0x10, 0x99, 0x04, 0x5a, 0x55, 0xe6, 0xdf, 0x73, 0xfd, 0xf0, 0xa5, 0x7b, 0x0d, 0x44, 0x27, + 0x66, 0x3a, 0x94, 0x0d, 0x28, 0x0b, 0x83, 0xab, 0xac, 0x2a, 0xf9, 0x54, 0x14, 0x13, 0x13, 0xa8, + 0x45, 0x9f, 0x7b, 0xce, 0xe9, 0x90, 0x86, 0x31, 0x87, 0xa5, 0x10, 0x3a, 0x31, 0x93, 0xc6, 0x7f, + 0xc2, 0xe7, 0xb3, 0x39, 0x70, 0xbc, 0xa1, 0x32, 0xfe, 0x43, 0x28, 0x89, 0xdc, 0x44, 0x26, 0xf2, + 0x1f, 0xc6, 0x61, 0x74, 0x5e, 0x31, 0x68, 0x8a, 0x4c, 0x46, 0xae, 0x62, 0x87, 0x25, 0x7b, 0x33, + 0x2d, 0xa3, 0x57, 0xd3, 0x22, 0x3f, 0x80, 0x45, 0x87, 0x2d, 0xe1, 0x77, 0xb1, 0xbe, 0xf9, 0x5e, + 0x02, 0x74, 0xe7, 0x62, 0x42, 0x6d, 0xc1, 0x65, 0x7d, 0x06, 0x55, 0x6d, 0x07, 0x96, 0xf5, 0x3e, + 0x6a, 0x77, 0x30, 0x15, 0xae, 0xc1, 0x52, 0x73, 0xbb, 0xb3, 0x73, 0x2c, 0x92, 0xe1, 0x3a, 0x40, + 0xab, 0x1d, 0x8e, 0xf3, 0x98, 0x05, 0x89, 0x55, 0xf2, 0x86, 0xeb, 0xf2, 0xe4, 0xd2, 0xe4, 0xc9, + 0xbf, 0x95, 0x3c, 0xaf, 0x60, 0x59, 0xaa, 0x9f, 0xc9, 0x07, 0x3e, 0x45, 0x0b, 0x33, 0x18, 0xe5, + 0x02, 0xd7, 0x12, 0xb6, 0x55, 0xb7, 0x53, 0x30, 0x5a, 0x98, 0x3d, 0x1c, 0x06, 0x4e, 0x30, 0xf5, + 0x95, 0x0b, 0xfc, 0x31, 0x07, 0x75, 0x45, 0xc9, 0x5a, 0xcc, 0xab, 0x5a, 0x49, 0xc4, 0xbc, 0xb0, + 0x52, 0xba, 0x0a, 0xa5, 0x7e, 0xf7, 0xd0, 0x7d, 0xad, 0x9a, 0x1a, 0x72, 0xc4, 0xe8, 0x03, 0xb1, + 0x8f, 0xe8, 0xa8, 0xc9, 0x11, 0x4b, 0xbf, 0x59, 0x6f, 0x6d, 0x67, 0xd4, 0xa7, 0xaf, 0xf8, 0x4b, + 0x5b, 0xb4, 0x23, 0x02, 0x4f, 0x97, 0x65, 0xe7, 0x8d, 0x17, 0x52, 0x7a, 0x27, 0x0e, 0x9d, 0xbc, + 0x39, 0x0d, 0xce, 0xda, 0x23, 0xd6, 0x74, 0x52, 0x1a, 0xae, 0x01, 0x61, 0xc4, 0x96, 0xeb, 0xeb, + 0xd4, 0x36, 0xac, 0x32, 0x2a, 0xfa, 0x3d, 0x26, 0xd3, 0x51, 0xc4, 0x50, 0x61, 0x3b, 0x67, 0x84, + 0x6d, 0xc7, 0xf7, 0x5f, 0x8e, 0xbd, 0xbe, 0x54, 0x2d, 0x1c, 0x5b, 0x2d, 0x01, 0x7e, 0xe4, 0xc7, + 0x02, 0xf3, 0x77, 0x45, 0xb9, 0x1f, 0xa1, 0x3c, 0xa2, 0xc1, 0x1c, 0x14, 0xeb, 0x63, 0xb8, 0xa2, + 0x38, 0x65, 0x31, 0x3d, 0x87, 0xf9, 0x00, 0x6e, 0x2a, 0xe6, 0xed, 0x33, 0x96, 0xe8, 0x3d, 0x95, + 0x1b, 0xfe, 0xaf, 0x72, 0x3e, 0x84, 0xb5, 0x50, 0x4e, 0x3d, 0x77, 0x41, 0x9c, 0xa9, 0x2f, 0xfd, + 0x05, 0x71, 0xd8, 0x37, 0xa3, 0x79, 0xe3, 0x41, 0xf8, 0x00, 0xb2, 0x6f, 0xeb, 0x8b, 0x48, 0xfa, + 0x78, 0xfe, 0x90, 0x24, 0x48, 0x12, 0x80, 0x34, 0x94, 0x8d, 0xdf, 0xf3, 0xcd, 0xad, 0x73, 0xc6, + 0x4d, 0xca, 0x31, 0x73, 0x1a, 0xe6, 0x7b, 0x42, 0x28, 0xc6, 0x19, 0x33, 0xa9, 0x65, 0x0b, 0x6d, + 0x39, 0x84, 0xa1, 0xed, 0x8c, 0xb0, 0x1f, 0x42, 0x71, 0x42, 0xe5, 0xfd, 0xaf, 0x6e, 0x92, 0x0d, + 0xd1, 0xad, 0xde, 0x78, 0x8a, 0x34, 0xd7, 0x67, 0xb7, 0xc0, 0xe6, 0xf3, 0xfa, 0x66, 0x31, 0x0b, + 0xb0, 0x50, 0xac, 0xbb, 0x6e, 0xa6, 0x50, 0xbc, 0x2b, 0x7c, 0x3b, 0xf4, 0xf8, 0x4c, 0x60, 0x5d, + 0x61, 0x85, 0xe8, 0xa2, 0x64, 0x8a, 0x12, 0x98, 0x54, 0x06, 0xa8, 0xb5, 0x8a, 0x11, 0x62, 0xa0, + 0x04, 0x0e, 0x6f, 0x51, 0x26, 0x81, 0x9d, 0x08, 0x8c, 0x9f, 0x7c, 0x56, 0x79, 0x99, 0x93, 0xa8, + 0x74, 0x41, 0x0c, 0xac, 0x7d, 0xb8, 0x6a, 0xde, 0xc2, 0x4c, 0x22, 0x1f, 0xc3, 0xad, 0xb4, 0x8b, + 0x9a, 0x09, 0xf7, 0x49, 0x74, 0xdf, 0xde, 0x41, 0xcd, 0xa0, 0xab, 0xfd, 0x4e, 0x12, 0x7b, 0x79, + 0xec, 0xe1, 0x6d, 0xce, 0x04, 0xe6, 0x47, 0x60, 0xd9, 0x8f, 0x3d, 0xba, 0xce, 0x85, 0xb9, 0xd7, + 0x59, 0x5a, 0x44, 0x8f, 0x1d, 0xef, 0xe2, 0xc0, 0xb4, 0x90, 0xf3, 0x2e, 0x0e, 0x4c, 0x8f, 0x36, + 0x59, 0xf0, 0xbe, 0x6f, 0x41, 0x25, 0xcc, 0x65, 0xb4, 0x3f, 0xe3, 0x54, 0xa1, 0xbc, 0x7f, 0x70, + 0xf8, 0xb4, 0xb9, 0x8d, 0x59, 0xd4, 0xe6, 0x3f, 0xf3, 0x90, 0xdf, 0x3d, 0x26, 0x5b, 0xb0, 0x28, + 0x1a, 0xd0, 0x73, 0x5a, 0xf4, 0x8d, 0x79, 0xad, 0x6c, 0x6b, 0x81, 0x7c, 0x0e, 0x05, 0xd6, 0x82, + 0x4e, 0xed, 0xd1, 0x37, 0xd2, 0xdb, 0xd8, 0xb8, 0xba, 0x03, 0x55, 0xad, 0xdf, 0x4c, 0xde, 0xd8, + 0xa3, 0x6f, 0xbc, 0xb9, 0x97, 0x2d, 0x64, 0xea, 0xbc, 0x1a, 0x99, 0x32, 0x45, 0xfd, 0x51, 0x53, + 0x26, 0xad, 0x1b, 0x89, 0xab, 0xf7, 0x65, 0x9f, 0xbb, 0x17, 0x90, 0xf7, 0x13, 0xda, 0xa6, 0x7a, + 0x5f, 0xb0, 0x71, 0x3b, 0x9d, 0x41, 0xe1, 0x6d, 0x1e, 0xc0, 0x22, 0xef, 0x99, 0x90, 0x2f, 0xd5, + 0x47, 0x23, 0xa1, 0xa3, 0x94, 0x62, 0xee, 0x58, 0xb7, 0xc5, 0x5a, 0xb8, 0x9f, 0xfb, 0x61, 0x6e, + 0xf3, 0xdb, 0x3c, 0x2c, 0xf2, 0x1a, 0x9a, 0x7c, 0x05, 0x10, 0x35, 0x1b, 0x4c, 0x69, 0x67, 0xda, + 0x17, 0xa6, 0xb4, 0xb3, 0x7d, 0x0a, 0x71, 0x22, 0x5a, 0x57, 0x80, 0x24, 0x2d, 0x89, 0x3d, 0x8a, + 0xe6, 0x89, 0x24, 0xb4, 0x14, 0x10, 0xd5, 0x81, 0x7a, 0xbc, 0xea, 0x27, 0x77, 0x12, 0x96, 0x99, + 0xcd, 0x83, 0xc6, 0xdd, 0xf9, 0x4c, 0x31, 0xab, 0xfc, 0x25, 0x8f, 0xe7, 0x26, 0xfe, 0x8a, 0x8c, + 0x47, 0x58, 0x09, 0x0b, 0x6b, 0x72, 0x2b, 0xa9, 0xe8, 0x8a, 0x32, 0x93, 0xc6, 0xfb, 0xa9, 0xf3, + 0xa1, 0xf8, 0xcf, 0xa0, 0xa6, 0x17, 0xc2, 0xe4, 0x83, 0xc4, 0x3a, 0x4e, 0xaf, 0xa5, 0x1b, 0xd6, + 0x3c, 0x96, 0x59, 0x60, 0x51, 0xd0, 0x26, 0x03, 0xc7, 0xea, 0xe5, 0x64, 0xe0, 0x78, 0x3d, 0x8c, + 0xc0, 0xe8, 0x19, 0x51, 0x19, 0x4b, 0x12, 0x55, 0xd4, 0xaa, 0x5e, 0xd3, 0x33, 0x66, 0x2b, 0x60, + 0xf4, 0xe3, 0xff, 0xe4, 0xa1, 0xfa, 0xc4, 0x71, 0x47, 0x01, 0x1d, 0xb1, 0xb6, 0x1b, 0x8b, 0x1e, + 0x3c, 0xd0, 0x98, 0xee, 0xac, 0x17, 0x8d, 0xa6, 0x3b, 0xc7, 0x2a, 0x2a, 0x14, 0xb3, 0x0d, 0x25, + 0x51, 0xd8, 0x10, 0x83, 0x31, 0x56, 0x00, 0x35, 0x6e, 0x24, 0x4f, 0xea, 0xda, 0x46, 0x35, 0xb2, + 0xa9, 0xed, 0x4c, 0x49, 0xdd, 0xb8, 0x9d, 0xce, 0x10, 0x42, 0x7e, 0x01, 0x45, 0xd6, 0x5e, 0x27, + 0x46, 0xa8, 0xd0, 0x3a, 0xf0, 0x8d, 0x46, 0xd2, 0x54, 0x08, 0xf0, 0x04, 0x96, 0x54, 0xc7, 0x9c, + 0xdc, 0x34, 0xe4, 0x8f, 0x77, 0xd7, 0x1b, 0xb7, 0xd2, 0xa6, 0x15, 0x18, 0xba, 0xf7, 0x5f, 0x2b, + 0x50, 0x64, 0xef, 0x04, 0xd3, 0x35, 0x4a, 0x42, 0x4d, 0x5d, 0x67, 0x2a, 0x2b, 0x53, 0xd7, 0xd9, + 0xfc, 0x55, 0xdc, 0x79, 0x2d, 0x17, 0x25, 0x09, 0x4b, 0xe2, 0x85, 0x99, 0x79, 0xe7, 0x13, 0x12, + 0x59, 0xe1, 0xdb, 0x7a, 0x52, 0x4a, 0x12, 0x16, 0x19, 0x95, 0x9d, 0xe9, 0xdb, 0x49, 0x39, 0x2d, + 0x02, 0x3f, 0x85, 0xb2, 0xcc, 0x42, 0x93, 0x44, 0x8d, 0x97, 0x79, 0x49, 0xa2, 0x1a, 0x29, 0x6c, + 0x84, 0x88, 0x39, 0x49, 0x1a, 0x62, 0x54, 0x9f, 0xa4, 0x21, 0x6a, 0x09, 0x0d, 0x22, 0x7e, 0x0d, + 0x10, 0x65, 0x9e, 0x66, 0xb0, 0x4b, 0xac, 0x0e, 0xcd, 0x60, 0x97, 0x9c, 0xbc, 0x22, 0xf4, 0x37, + 0x40, 0x66, 0x93, 0x50, 0xf2, 0x71, 0xf2, 0xea, 0xc4, 0x9a, 0xb2, 0xf1, 0xc9, 0xdb, 0x31, 0x87, + 0x5b, 0x1e, 0x43, 0x25, 0xcc, 0x4f, 0x89, 0x95, 0xa2, 0xbf, 0xfe, 0xd2, 0xdc, 0x99, 0xcb, 0x63, + 0x5a, 0x49, 0xbe, 0x35, 0x29, 0x8b, 0xe2, 0xcf, 0xcd, 0xdd, 0xf9, 0x4c, 0xfa, 0x91, 0xca, 0x9c, + 0x35, 0xe9, 0x48, 0xe3, 0xc5, 0x69, 0xd2, 0x91, 0x1a, 0x09, 0x6f, 0x84, 0x98, 0xe2, 0x24, 0xf1, + 0x22, 0x36, 0x0d, 0x71, 0xc6, 0x49, 0xa2, 0xac, 0x34, 0x49, 0xfd, 0x99, 0x7a, 0x37, 0x49, 0xfd, + 0xd9, 0xc4, 0x56, 0x9c, 0x58, 0x98, 0xa0, 0x26, 0x9d, 0x98, 0x59, 0x30, 0x37, 0xee, 0xcc, 0xe5, + 0x31, 0x45, 0x4e, 0x3f, 0xb1, 0x99, 0xaa, 0x39, 0x4d, 0x64, 0xf3, 0xc4, 0xb6, 0x6a, 0x7f, 0xf8, + 0xfb, 0xad, 0xdc, 0x9f, 0xf1, 0xdf, 0xdf, 0xf0, 0x5f, 0xb7, 0xc4, 0xff, 0xff, 0xd8, 0x8f, 0xfe, + 0x1b, 0x00, 0x00, 0xff, 0xff, 0x82, 0xfb, 0xea, 0x9b, 0xa8, 0x26, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/rpc.proto b/etcdserver/etcdserverpb/rpc.proto index 0bb2f8a3e..aa92f725d 100644 --- a/etcdserver/etcdserverpb/rpc.proto +++ b/etcdserver/etcdserverpb/rpc.proto @@ -595,6 +595,8 @@ message AuthUserGrantRequest { } message AuthUserRevokeRequest { + string name = 1; + string role = 2; } message AuthRoleAddRequest { diff --git a/etcdserver/v3_server.go b/etcdserver/v3_server.go index 97eebe34e..3002d75f1 100644 --- a/etcdserver/v3_server.go +++ b/etcdserver/v3_server.go @@ -64,6 +64,7 @@ type Authenticator interface { UserChangePassword(ctx context.Context, r *pb.AuthUserChangePasswordRequest) (*pb.AuthUserChangePasswordResponse, error) UserGrant(ctx context.Context, r *pb.AuthUserGrantRequest) (*pb.AuthUserGrantResponse, error) UserGet(ctx context.Context, r *pb.AuthUserGetRequest) (*pb.AuthUserGetResponse, error) + UserRevoke(ctx context.Context, r *pb.AuthUserRevokeRequest) (*pb.AuthUserRevokeResponse, error) RoleAdd(ctx context.Context, r *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) RoleGrant(ctx context.Context, r *pb.AuthRoleGrantRequest) (*pb.AuthRoleGrantResponse, error) RoleGet(ctx context.Context, r *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) @@ -324,6 +325,17 @@ func (s *EtcdServer) UserGet(ctx context.Context, r *pb.AuthUserGetRequest) (*pb return result.resp.(*pb.AuthUserGetResponse), nil } +func (s *EtcdServer) UserRevoke(ctx context.Context, r *pb.AuthUserRevokeRequest) (*pb.AuthUserRevokeResponse, error) { + result, err := s.processInternalRaftRequest(ctx, pb.InternalRaftRequest{AuthUserRevoke: r}) + if err != nil { + return nil, err + } + if result.err != nil { + return nil, result.err + } + return result.resp.(*pb.AuthUserRevokeResponse), nil +} + func (s *EtcdServer) RoleAdd(ctx context.Context, r *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) { result, err := s.processInternalRaftRequest(ctx, pb.InternalRaftRequest{AuthRoleAdd: r}) if err != nil { From 0cb1343109ccd3cefc82eb39b18c3a4d8ff4cb05 Mon Sep 17 00:00:00 2001 From: Hitoshi Mitake Date: Fri, 3 Jun 2016 17:10:08 +0900 Subject: [PATCH 2/3] *: support revoking a key from a role in auth v3 This commit implements RoleRevoke() RPC for supporting revoking a key from a role in auth v3. It also adds a new subcommand "role revoke" to etcdctl. --- auth/store.go | 39 ++ clientv3/auth.go | 9 + etcdctl/ctlv3/command/role_command.go | 23 ++ etcdserver/api/v3rpc/auth.go | 7 +- etcdserver/apply.go | 7 + etcdserver/etcdserverpb/raft_internal.pb.go | 135 +++++-- etcdserver/etcdserverpb/raft_internal.proto | 1 + etcdserver/etcdserverpb/rpc.pb.go | 407 ++++++++++++-------- etcdserver/etcdserverpb/rpc.proto | 2 + etcdserver/v3_server.go | 12 + 10 files changed, 435 insertions(+), 207 deletions(-) diff --git a/auth/store.go b/auth/store.go index f4cf1ad06..20b80653e 100644 --- a/auth/store.go +++ b/auth/store.go @@ -88,6 +88,9 @@ type AuthStore interface { // RoleGet gets the detailed information of a role RoleGet(r *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) + // RoleRevoke gets the detailed information of a role + RoleRevoke(r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) + // UsernameFromToken gets a username from the given Token UsernameFromToken(token string) (string, bool) @@ -389,6 +392,42 @@ func (as *authStore) RoleGet(r *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, return &resp, nil } +func (as *authStore) RoleRevoke(r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) { + tx := as.be.BatchTx() + tx.Lock() + defer tx.Unlock() + + _, vs := tx.UnsafeRange(authRolesBucketName, []byte(r.Role), nil, 0) + if len(vs) != 1 { + return nil, ErrRoleNotFound + } + + role := &authpb.Role{} + err := role.Unmarshal(vs[0]) + if err != nil { + return nil, err + } + + updatedRole := &authpb.Role{} + updatedRole.Name = role.Name + + for _, perm := range role.KeyPermission { + if !bytes.Equal(perm.Key, []byte(r.Key)) { + updatedRole.KeyPermission = append(updatedRole.KeyPermission, perm) + } + } + + marshaledRole, merr := updatedRole.Marshal() + if merr != nil { + return nil, merr + } + + tx.UnsafePut(authRolesBucketName, updatedRole.Name, marshaledRole) + + plog.Noticef("revoked key %s from role %s", r.Key, r.Role) + return &pb.AuthRoleRevokeResponse{}, nil +} + func (as *authStore) RoleAdd(r *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) { tx := as.be.BatchTx() tx.Lock() diff --git a/clientv3/auth.go b/clientv3/auth.go index 879cea0f0..e32c23055 100644 --- a/clientv3/auth.go +++ b/clientv3/auth.go @@ -38,6 +38,7 @@ type ( AuthRoleAddResponse pb.AuthRoleAddResponse AuthRoleGrantResponse pb.AuthRoleGrantResponse AuthRoleGetResponse pb.AuthRoleGetResponse + AuthRoleRevokeResponse pb.AuthRoleRevokeResponse PermissionType authpb.Permission_Type ) @@ -81,6 +82,9 @@ type Auth interface { // RoleGet gets a detailed information of a role. RoleGet(ctx context.Context, role string) (*AuthRoleGetResponse, error) + + // RoleRevoke revokes a key from a user. + RoleRevoke(ctx context.Context, role string, key string) (*AuthRoleRevokeResponse, error) } type auth struct { @@ -158,6 +162,11 @@ func (auth *auth) RoleGet(ctx context.Context, role string) (*AuthRoleGetRespons return (*AuthRoleGetResponse)(resp), rpctypes.Error(err) } +func (auth *auth) RoleRevoke(ctx context.Context, role string, key string) (*AuthRoleRevokeResponse, error) { + resp, err := auth.remote.RoleRevoke(ctx, &pb.AuthRoleRevokeRequest{Role: role, Key: key}) + return (*AuthRoleRevokeResponse)(resp), rpctypes.Error(err) +} + func StrToPermissionType(s string) (PermissionType, error) { val, ok := authpb.Permission_Type_value[strings.ToUpper(s)] if ok { diff --git a/etcdctl/ctlv3/command/role_command.go b/etcdctl/ctlv3/command/role_command.go index c12c1c217..3ab7728e5 100644 --- a/etcdctl/ctlv3/command/role_command.go +++ b/etcdctl/ctlv3/command/role_command.go @@ -32,6 +32,7 @@ func NewRoleCommand() *cobra.Command { ac.AddCommand(newRoleAddCommand()) ac.AddCommand(newRoleGrantCommand()) ac.AddCommand(newRoleGetCommand()) + ac.AddCommand(newRoleRevokePermissionCommand()) return ac } @@ -60,6 +61,14 @@ func newRoleGetCommand() *cobra.Command { } } +func newRoleRevokePermissionCommand() *cobra.Command { + return &cobra.Command{ + Use: "revoke-permission ", + Short: "revoke a key from a role", + Run: roleRevokePermissionCommandFunc, + } +} + // roleAddCommandFunc executes the "role add" command. func roleAddCommandFunc(cmd *cobra.Command, args []string) { if len(args) != 1 { @@ -118,3 +127,17 @@ func roleGetCommandFunc(cmd *cobra.Command, args []string) { } } } + +// roleRevokePermissionCommandFunc executes the "role revoke-permission" command. +func roleRevokePermissionCommandFunc(cmd *cobra.Command, args []string) { + if len(args) != 2 { + ExitWithError(ExitBadArgs, fmt.Errorf("role revoke-permission command requires role name and key as its argument.")) + } + + _, err := mustClientFromCmd(cmd).Auth.RoleRevoke(context.TODO(), args[0], args[1]) + if err != nil { + ExitWithError(ExitError, err) + } + + fmt.Printf("Permission of key %s is revoked from role %s\n", args[1], args[0]) +} diff --git a/etcdserver/api/v3rpc/auth.go b/etcdserver/api/v3rpc/auth.go index 6928585df..4ab57207e 100644 --- a/etcdserver/api/v3rpc/auth.go +++ b/etcdserver/api/v3rpc/auth.go @@ -74,8 +74,11 @@ func (as *AuthServer) RoleGet(ctx context.Context, r *pb.AuthRoleGetRequest) (*p } func (as *AuthServer) RoleRevoke(ctx context.Context, r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) { - plog.Info("not implemented yet") - return nil, nil + resp, err := as.authenticator.RoleRevoke(ctx, r) + if err != nil { + return nil, togRPCError(err) + } + return resp, nil } func (as *AuthServer) RoleGrant(ctx context.Context, r *pb.AuthRoleGrantRequest) (*pb.AuthRoleGrantResponse, error) { diff --git a/etcdserver/apply.go b/etcdserver/apply.go index 28085e15a..eefa65b5b 100644 --- a/etcdserver/apply.go +++ b/etcdserver/apply.go @@ -66,6 +66,7 @@ type applierV3 interface { RoleAdd(ua *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) RoleGrant(ua *pb.AuthRoleGrantRequest) (*pb.AuthRoleGrantResponse, error) RoleGet(ua *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) + RoleRevoke(ua *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) } type applierV3backend struct { @@ -123,6 +124,8 @@ func (s *EtcdServer) applyV3Request(r *pb.InternalRaftRequest) *applyResult { ar.resp, ar.err = s.applyV3.RoleGrant(r.AuthRoleGrant) case r.AuthRoleGet != nil: ar.resp, ar.err = s.applyV3.RoleGet(r.AuthRoleGet) + case r.AuthRoleRevoke != nil: + ar.resp, ar.err = s.applyV3.RoleRevoke(r.AuthRoleRevoke) default: panic("not implemented") } @@ -561,6 +564,10 @@ func (a *applierV3backend) RoleGet(r *pb.AuthRoleGetRequest) (*pb.AuthRoleGetRes return a.s.AuthStore().RoleGet(r) } +func (a *applierV3backend) RoleRevoke(r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) { + return a.s.AuthStore().RoleRevoke(r) +} + type quotaApplierV3 struct { applierV3 q Quota diff --git a/etcdserver/etcdserverpb/raft_internal.pb.go b/etcdserver/etcdserverpb/raft_internal.pb.go index e1a8fa096..e00abdf7e 100644 --- a/etcdserver/etcdserverpb/raft_internal.pb.go +++ b/etcdserver/etcdserverpb/raft_internal.pb.go @@ -56,6 +56,7 @@ type InternalRaftRequest struct { AuthUserGet *AuthUserGetRequest `protobuf:"bytes,1019,opt,name=auth_user_get,json=authUserGet" json:"auth_user_get,omitempty"` AuthRoleGet *AuthRoleGetRequest `protobuf:"bytes,1020,opt,name=auth_role_get,json=authRoleGet" json:"auth_role_get,omitempty"` AuthUserRevoke *AuthUserRevokeRequest `protobuf:"bytes,1021,opt,name=auth_user_revoke,json=authUserRevoke" json:"auth_user_revoke,omitempty"` + AuthRoleRevoke *AuthRoleRevokeRequest `protobuf:"bytes,1022,opt,name=auth_role_revoke,json=authRoleRevoke" json:"auth_role_revoke,omitempty"` } func (m *InternalRaftRequest) Reset() { *m = InternalRaftRequest{} } @@ -371,6 +372,18 @@ func (m *InternalRaftRequest) MarshalTo(data []byte) (int, error) { } i += n22 } + if m.AuthRoleRevoke != nil { + data[i] = 0xf2 + i++ + data[i] = 0x3f + i++ + i = encodeVarintRaftInternal(data, i, uint64(m.AuthRoleRevoke.Size())) + n23, err := m.AuthRoleRevoke.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n23 + } return i, nil } @@ -526,6 +539,10 @@ func (m *InternalRaftRequest) Size() (n int) { l = m.AuthUserRevoke.Size() n += 2 + l + sovRaftInternal(uint64(l)) } + if m.AuthRoleRevoke != nil { + l = m.AuthRoleRevoke.Size() + n += 2 + l + sovRaftInternal(uint64(l)) + } return n } @@ -1420,6 +1437,39 @@ func (m *InternalRaftRequest) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 1022: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AuthRoleRevoke", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftInternal + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRaftInternal + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AuthRoleRevoke == nil { + m.AuthRoleRevoke = &AuthRoleRevokeRequest{} + } + if err := m.AuthRoleRevoke.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRaftInternal(data[iNdEx:]) @@ -1597,46 +1647,47 @@ var ( ) var fileDescriptorRaftInternal = []byte{ - // 644 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x95, 0xcb, 0x6f, 0xd3, 0x4c, - 0x14, 0xc5, 0xbf, 0xa6, 0xef, 0x49, 0xd3, 0x56, 0xd3, 0x0f, 0x34, 0x04, 0xa9, 0x94, 0x20, 0x24, - 0x04, 0x52, 0x41, 0xed, 0x92, 0x05, 0x84, 0xa6, 0x94, 0x0a, 0x84, 0x2a, 0x0b, 0xd6, 0xd6, 0xd4, - 0xbe, 0x38, 0x11, 0x8e, 0x6d, 0xc6, 0x93, 0x50, 0xfe, 0xc3, 0x2e, 0x59, 0xb3, 0x02, 0x56, 0xec, - 0x79, 0xbf, 0x24, 0xe6, 0xe5, 0x71, 0x26, 0x71, 0xb2, 0x88, 0x64, 0x9f, 0x39, 0xf7, 0x77, 0xef, - 0xcc, 0x1c, 0x2b, 0x68, 0x8b, 0xd1, 0x17, 0xdc, 0xef, 0x25, 0x1c, 0x58, 0x42, 0xe3, 0xdd, 0x8c, - 0xa5, 0x3c, 0xc5, 0x6b, 0xc0, 0x83, 0x30, 0x07, 0x36, 0x04, 0x96, 0x9d, 0x36, 0xff, 0x8f, 0xd2, - 0x28, 0x55, 0x0b, 0xb7, 0xe5, 0x93, 0xf6, 0x34, 0x37, 0x4b, 0x8f, 0x51, 0x56, 0x59, 0x16, 0xe8, - 0xc7, 0xd6, 0x5d, 0xd4, 0xf0, 0xe0, 0xd5, 0x00, 0x72, 0xfe, 0x08, 0x68, 0x08, 0x0c, 0xaf, 0xa3, - 0xda, 0x71, 0x87, 0xcc, 0xed, 0xcc, 0xdd, 0x58, 0xf0, 0x6a, 0xbd, 0x0e, 0x6e, 0xa2, 0x95, 0x41, - 0x2e, 0x5b, 0xf6, 0x81, 0xd4, 0x84, 0xba, 0xea, 0xd9, 0xf7, 0xd6, 0xbb, 0x3a, 0xda, 0x3a, 0x36, - 0x03, 0x79, 0x62, 0x3a, 0x43, 0x9a, 0x60, 0x5c, 0x47, 0xb5, 0xe1, 0x9e, 0xaa, 0xae, 0xef, 0x5d, - 0xd8, 0x1d, 0x1d, 0x79, 0xd7, 0x94, 0x78, 0xc2, 0x80, 0xef, 0xa0, 0x45, 0x46, 0x93, 0x08, 0xc8, - 0xbc, 0x72, 0x36, 0xc7, 0x9c, 0x72, 0xa9, 0xb0, 0x6b, 0x23, 0xbe, 0x89, 0xe6, 0xb3, 0x01, 0x27, - 0x0b, 0xca, 0x4f, 0x5c, 0xff, 0xc9, 0xa0, 0x98, 0xc7, 0x93, 0x26, 0x7c, 0x80, 0xd6, 0x42, 0x88, - 0x81, 0x83, 0xaf, 0x9b, 0x2c, 0xaa, 0xa2, 0x1d, 0xb7, 0xa8, 0xa3, 0x1c, 0x4e, 0xab, 0x7a, 0x58, - 0x6a, 0xb2, 0x21, 0x3f, 0x4b, 0xc8, 0x52, 0x55, 0xc3, 0x67, 0x67, 0x89, 0x6d, 0x28, 0x4c, 0xf8, - 0x1e, 0x42, 0x41, 0xda, 0xcf, 0x68, 0xc0, 0x7b, 0x69, 0x42, 0x96, 0x55, 0xc9, 0x15, 0xb7, 0xe4, - 0xc0, 0xae, 0x17, 0x95, 0x23, 0x25, 0xf8, 0x3e, 0xaa, 0xc7, 0x40, 0x73, 0xf0, 0x23, 0x31, 0x31, - 0x27, 0x2b, 0x55, 0x84, 0x27, 0xd2, 0x70, 0x24, 0xd7, 0x2d, 0x21, 0xb6, 0x92, 0xdc, 0xb3, 0x26, - 0x30, 0x18, 0xa6, 0x2f, 0x81, 0xac, 0x56, 0xed, 0x59, 0x21, 0x3c, 0x65, 0xb0, 0x7b, 0x8e, 0x4b, - 0x4d, 0x5e, 0x0b, 0x8d, 0x29, 0xeb, 0x13, 0x54, 0x75, 0x2d, 0x6d, 0xb9, 0x64, 0xaf, 0x45, 0x19, - 0xf1, 0x3e, 0x5a, 0xea, 0xaa, 0x34, 0x91, 0x50, 0x95, 0x5c, 0xae, 0xbc, 0x73, 0x1d, 0x38, 0xcf, - 0x58, 0x71, 0x1b, 0xd5, 0xe9, 0x80, 0x77, 0x7d, 0x48, 0xe8, 0x69, 0x0c, 0xe4, 0x53, 0xe5, 0x81, - 0xb5, 0x85, 0xe3, 0x50, 0x19, 0xec, 0x76, 0xa9, 0x95, 0x70, 0x07, 0xad, 0x29, 0x44, 0xd8, 0xcb, - 0x15, 0xe3, 0xf3, 0x72, 0xd5, 0x7e, 0x25, 0xa3, 0xa3, 0x1d, 0x76, 0xbf, 0xb4, 0xd4, 0xf0, 0x21, - 0x6a, 0x28, 0x8a, 0x8c, 0xb9, 0x4f, 0xc3, 0x90, 0x7c, 0x99, 0x8a, 0x79, 0x2e, 0xde, 0xda, 0x61, - 0xe8, 0x60, 0x8c, 0x86, 0x9f, 0xa2, 0xcd, 0x12, 0xa3, 0x33, 0x44, 0xbe, 0x6a, 0xd2, 0xb5, 0x6a, - 0x92, 0x09, 0x9f, 0x81, 0xad, 0x53, 0x47, 0xc6, 0x11, 0xba, 0x54, 0xf2, 0x82, 0xae, 0x8c, 0xa3, - 0x9f, 0xd1, 0x3c, 0x7f, 0x9d, 0xb2, 0x90, 0x7c, 0xd3, 0xe0, 0x5b, 0xd5, 0xe0, 0x03, 0xe5, 0x3e, - 0x31, 0xe6, 0xa2, 0xc1, 0x45, 0x5a, 0xb9, 0x8c, 0x1f, 0xa3, 0x8d, 0xb2, 0x91, 0x8e, 0xde, 0x77, - 0x8d, 0x6f, 0x55, 0xe3, 0x9d, 0xf8, 0x35, 0xe8, 0xa8, 0x6a, 0x0f, 0x93, 0xa5, 0x31, 0xa8, 0xc3, - 0xfc, 0x31, 0xf5, 0x30, 0x3d, 0x61, 0x19, 0x3f, 0x4c, 0xa3, 0xd9, 0x99, 0x14, 0x46, 0xcf, 0xf4, - 0x73, 0xea, 0x4c, 0xb2, 0x68, 0x72, 0x26, 0xab, 0xe2, 0x87, 0x3a, 0x26, 0x90, 0xf0, 0x5e, 0x40, - 0xc5, 0xad, 0xfc, 0xd2, 0xa4, 0xab, 0x93, 0xa4, 0xc2, 0x52, 0x80, 0x9c, 0x3a, 0x37, 0x28, 0x11, - 0x70, 0xf2, 0x7b, 0x66, 0x50, 0x8e, 0x80, 0x4f, 0x04, 0x45, 0x68, 0xee, 0x11, 0x49, 0xcc, 0x9f, - 0x99, 0x47, 0x34, 0x8e, 0x31, 0x9a, 0x9b, 0x37, 0xf3, 0xbd, 0xff, 0x9d, 0x99, 0x37, 0xf7, 0x9b, - 0xb7, 0x79, 0xd3, 0x72, 0x6b, 0x03, 0x35, 0x0e, 0xfb, 0x19, 0x7f, 0xe3, 0x41, 0x9e, 0xa5, 0x49, - 0x0e, 0x0f, 0x36, 0xcf, 0x3f, 0x6c, 0xff, 0x77, 0xfe, 0x71, 0x7b, 0xee, 0xad, 0xf8, 0xbd, 0x17, - 0xbf, 0xd3, 0x25, 0xf5, 0x1f, 0xb2, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x2d, 0xe3, 0x72, 0x0d, - 0x9b, 0x06, 0x00, 0x00, + // 659 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x95, 0x5b, 0x6f, 0xd3, 0x30, + 0x14, 0xc7, 0x59, 0x77, 0x77, 0xdb, 0x6d, 0xf2, 0x00, 0x99, 0x22, 0x8d, 0x51, 0x84, 0x84, 0x40, + 0x1a, 0x68, 0x7b, 0xe4, 0x01, 0xca, 0x3a, 0xc6, 0x04, 0x42, 0x53, 0x04, 0xcf, 0x95, 0x97, 0x1c, + 0xb2, 0x8a, 0x34, 0x09, 0x8e, 0x3b, 0xc6, 0x57, 0xe2, 0x93, 0xec, 0x91, 0x8f, 0x00, 0x3c, 0xf1, + 0xce, 0xfd, 0x2a, 0x7c, 0x8b, 0x33, 0xaf, 0x6e, 0x1f, 0x2a, 0x25, 0x7f, 0xff, 0xcf, 0xef, 0x1c, + 0xdb, 0xff, 0xa8, 0x68, 0x95, 0xd1, 0x17, 0xbc, 0xd7, 0x4f, 0x39, 0xb0, 0x94, 0x26, 0x1b, 0x39, + 0xcb, 0x78, 0x86, 0x1b, 0xc0, 0xc3, 0xa8, 0x00, 0x76, 0x04, 0x2c, 0x3f, 0x68, 0x9d, 0x8f, 0xb3, + 0x38, 0x53, 0x0b, 0xb7, 0xe5, 0x93, 0xf6, 0xb4, 0x56, 0x2a, 0x8f, 0x51, 0x16, 0x59, 0x1e, 0xea, + 0xc7, 0xf6, 0x5d, 0xd4, 0x0c, 0xe0, 0xd5, 0x10, 0x0a, 0xfe, 0x08, 0x68, 0x04, 0x0c, 0x2f, 0xa1, + 0xda, 0x5e, 0x97, 0x4c, 0xad, 0x4f, 0xdd, 0x98, 0x09, 0x6a, 0xfd, 0x2e, 0x6e, 0xa1, 0x85, 0x61, + 0x21, 0x5b, 0x0e, 0x80, 0xd4, 0x84, 0xba, 0x18, 0xd8, 0xf7, 0xf6, 0xdb, 0x06, 0x5a, 0xdd, 0x33, + 0x03, 0x05, 0x62, 0x3a, 0x43, 0x1a, 0x61, 0x5c, 0x47, 0xb5, 0xa3, 0x4d, 0x55, 0x5d, 0xdf, 0xbc, + 0xb0, 0x71, 0x7a, 0xe4, 0x0d, 0x53, 0x12, 0x08, 0x03, 0xbe, 0x83, 0x66, 0x19, 0x4d, 0x63, 0x20, + 0xd3, 0xca, 0xd9, 0x3a, 0xe3, 0x94, 0x4b, 0xa5, 0x5d, 0x1b, 0xf1, 0x4d, 0x34, 0x9d, 0x0f, 0x39, + 0x99, 0x51, 0x7e, 0xe2, 0xfa, 0xf7, 0x87, 0xe5, 0x3c, 0x81, 0x34, 0xe1, 0x6d, 0xd4, 0x88, 0x20, + 0x01, 0x0e, 0x3d, 0xdd, 0x64, 0x56, 0x15, 0xad, 0xbb, 0x45, 0x5d, 0xe5, 0x70, 0x5a, 0xd5, 0xa3, + 0x4a, 0x93, 0x0d, 0xf9, 0x71, 0x4a, 0xe6, 0x7c, 0x0d, 0x9f, 0x1d, 0xa7, 0xb6, 0xa1, 0x30, 0xe1, + 0x7b, 0x08, 0x85, 0xd9, 0x20, 0xa7, 0x21, 0xef, 0x67, 0x29, 0x99, 0x57, 0x25, 0x57, 0xdc, 0x92, + 0x6d, 0xbb, 0x5e, 0x56, 0x9e, 0x2a, 0xc1, 0xf7, 0x51, 0x3d, 0x01, 0x5a, 0x40, 0x2f, 0x16, 0x13, + 0x73, 0xb2, 0xe0, 0x23, 0x3c, 0x91, 0x86, 0x5d, 0xb9, 0x6e, 0x09, 0x89, 0x95, 0xe4, 0x9e, 0x35, + 0x81, 0xc1, 0x51, 0xf6, 0x12, 0xc8, 0xa2, 0x6f, 0xcf, 0x0a, 0x11, 0x28, 0x83, 0xdd, 0x73, 0x52, + 0x69, 0xf2, 0x5a, 0x68, 0x42, 0xd9, 0x80, 0x20, 0xdf, 0xb5, 0x74, 0xe4, 0x92, 0xbd, 0x16, 0x65, + 0xc4, 0x5b, 0x68, 0xee, 0x50, 0xa5, 0x89, 0x44, 0xaa, 0xe4, 0xb2, 0xf7, 0xce, 0x75, 0xe0, 0x02, + 0x63, 0xc5, 0x1d, 0x54, 0xa7, 0x43, 0x7e, 0xd8, 0x83, 0x94, 0x1e, 0x24, 0x40, 0x3e, 0x79, 0x0f, + 0xac, 0x23, 0x1c, 0x3b, 0xca, 0x60, 0xb7, 0x4b, 0xad, 0x84, 0xbb, 0xa8, 0xa1, 0x10, 0x51, 0xbf, + 0x50, 0x8c, 0xcf, 0xf3, 0xbe, 0xfd, 0x4a, 0x46, 0x57, 0x3b, 0xec, 0x7e, 0x69, 0xa5, 0xe1, 0x1d, + 0xd4, 0x54, 0x14, 0x19, 0xf3, 0x1e, 0x8d, 0x22, 0xf2, 0x65, 0x2c, 0xe6, 0xb9, 0x78, 0xeb, 0x44, + 0x91, 0x83, 0x31, 0x1a, 0x7e, 0x8a, 0x56, 0x2a, 0x8c, 0xce, 0x10, 0xf9, 0xaa, 0x49, 0xd7, 0xfc, + 0x24, 0x13, 0x3e, 0x03, 0x5b, 0xa2, 0x8e, 0x8c, 0x63, 0x74, 0xa9, 0xe2, 0x85, 0x87, 0x32, 0x8e, + 0xbd, 0x9c, 0x16, 0xc5, 0xeb, 0x8c, 0x45, 0xe4, 0x9b, 0x06, 0xdf, 0xf2, 0x83, 0xb7, 0x95, 0x7b, + 0xdf, 0x98, 0xcb, 0x06, 0x17, 0xa9, 0x77, 0x19, 0x3f, 0x46, 0xcb, 0x55, 0x23, 0x1d, 0xbd, 0xef, + 0x1a, 0xdf, 0xf6, 0xe3, 0x9d, 0xf8, 0x35, 0xe9, 0x69, 0xd5, 0x1e, 0x26, 0xcb, 0x12, 0x50, 0x87, + 0xf9, 0x63, 0xec, 0x61, 0x06, 0xc2, 0x72, 0xf6, 0x30, 0x8d, 0x66, 0x67, 0x52, 0x18, 0x3d, 0xd3, + 0xcf, 0xb1, 0x33, 0xc9, 0xa2, 0xd1, 0x99, 0xac, 0x8a, 0x1f, 0xea, 0x98, 0x40, 0xca, 0xfb, 0x21, + 0x15, 0xb7, 0xf2, 0x4b, 0x93, 0xae, 0x8e, 0x92, 0x4a, 0x4b, 0x09, 0x72, 0xea, 0xdc, 0xa0, 0xc4, + 0xc0, 0xc9, 0xef, 0x89, 0x41, 0xd9, 0x05, 0x3e, 0x12, 0x14, 0xa1, 0xb9, 0x47, 0x24, 0x31, 0x7f, + 0x26, 0x1e, 0xd1, 0x59, 0x8c, 0xd1, 0xdc, 0xbc, 0x99, 0xef, 0xfd, 0xef, 0xc4, 0xbc, 0xb9, 0xdf, + 0xbc, 0xcd, 0x9b, 0xf9, 0xec, 0x4b, 0x9e, 0x1a, 0xcb, 0xf0, 0xfe, 0x8d, 0xe5, 0xc9, 0x29, 0x3c, + 0xbc, 0x4a, 0x6e, 0x2f, 0xa3, 0xe6, 0xce, 0x20, 0xe7, 0x6f, 0x02, 0x28, 0xf2, 0x2c, 0x2d, 0xe0, + 0xc1, 0xca, 0xc9, 0x87, 0xb5, 0x73, 0x27, 0x1f, 0xd7, 0xa6, 0xde, 0x89, 0xdf, 0x7b, 0xf1, 0x3b, + 0x98, 0x53, 0xff, 0x49, 0x5b, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x3d, 0x04, 0x90, 0xdc, 0xeb, + 0x06, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/raft_internal.proto b/etcdserver/etcdserverpb/raft_internal.proto index ef3c0bd69..37208adff 100644 --- a/etcdserver/etcdserverpb/raft_internal.proto +++ b/etcdserver/etcdserverpb/raft_internal.proto @@ -47,6 +47,7 @@ message InternalRaftRequest { AuthUserGetRequest auth_user_get = 1019; AuthRoleGetRequest auth_role_get = 1020; AuthUserRevokeRequest auth_user_revoke = 1021; + AuthRoleRevokeRequest auth_role_revoke = 1022; } message EmptyResponse { diff --git a/etcdserver/etcdserverpb/rpc.pb.go b/etcdserver/etcdserverpb/rpc.pb.go index 743ba0c3b..4e06d2d9a 100644 --- a/etcdserver/etcdserverpb/rpc.pb.go +++ b/etcdserver/etcdserverpb/rpc.pb.go @@ -1649,6 +1649,8 @@ func (m *AuthRoleGrantRequest) GetPerm() *authpb.Permission { } type AuthRoleRevokeRequest struct { + Role string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"` + Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"` } func (m *AuthRoleRevokeRequest) Reset() { *m = AuthRoleRevokeRequest{} } @@ -5412,6 +5414,18 @@ func (m *AuthRoleRevokeRequest) MarshalTo(data []byte) (int, error) { _ = i var l int _ = l + if len(m.Role) > 0 { + data[i] = 0xa + i++ + i = encodeVarintRpc(data, i, uint64(len(m.Role))) + i += copy(data[i:], m.Role) + } + if len(m.Key) > 0 { + data[i] = 0x12 + i++ + i = encodeVarintRpc(data, i, uint64(len(m.Key))) + i += copy(data[i:], m.Key) + } return i, nil } @@ -6725,6 +6739,14 @@ func (m *AuthRoleGrantRequest) Size() (n int) { func (m *AuthRoleRevokeRequest) Size() (n int) { var l int _ = l + l = len(m.Role) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + l = len(m.Key) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } return n } @@ -12859,6 +12881,64 @@ func (m *AuthRoleRevokeRequest) Unmarshal(data []byte) error { return fmt.Errorf("proto: AuthRoleRevokeRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Role", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Role = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Key = string(data[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRpc(data[iNdEx:]) @@ -14237,168 +14317,169 @@ var ( ) var fileDescriptorRpc = []byte{ - // 2605 bytes of a gzipped FileDescriptorProto + // 2617 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x72, 0x1b, 0xc7, - 0x11, 0x26, 0x7e, 0x08, 0x10, 0x0d, 0x10, 0xa2, 0x86, 0x94, 0x4c, 0x41, 0x3f, 0x96, 0x57, 0x92, - 0xad, 0xc4, 0x0e, 0x15, 0x33, 0xce, 0x21, 0x15, 0x97, 0x5c, 0x20, 0x01, 0x4b, 0x0c, 0x29, 0x52, - 0x5e, 0x82, 0x54, 0x7c, 0x62, 0x2d, 0x80, 0x11, 0xb9, 0x25, 0xfc, 0x79, 0x77, 0x41, 0x89, 0xaa, - 0xca, 0x25, 0x55, 0x79, 0x02, 0xe7, 0x94, 0xca, 0x0b, 0xe4, 0x01, 0xf2, 0x0e, 0xa9, 0x5c, 0x92, - 0x27, 0x48, 0x52, 0x39, 0xa5, 0x72, 0xc9, 0x3d, 0xb9, 0xa4, 0xe7, 0x6f, 0x77, 0x76, 0xb0, 0x0b, - 0xc9, 0x59, 0xe5, 0x20, 0x72, 0xa7, 0xa7, 0xe7, 0x9b, 0xee, 0x9e, 0x9e, 0x9e, 0xee, 0xa6, 0xa0, - 0xe2, 0x4d, 0x7a, 0x1b, 0x13, 0x6f, 0x1c, 0x8c, 0x49, 0x8d, 0x06, 0xbd, 0xbe, 0x4f, 0xbd, 0x73, - 0xea, 0x4d, 0xba, 0x8d, 0xb5, 0xd3, 0xf1, 0xe9, 0x98, 0x4f, 0x3c, 0x60, 0x5f, 0x82, 0xa7, 0x71, - 0x8d, 0xf1, 0x3c, 0x18, 0x9e, 0xf7, 0x7a, 0xfc, 0xc7, 0xa4, 0xfb, 0xe0, 0xc5, 0xb9, 0x9c, 0xba, - 0xce, 0xa7, 0x9c, 0x69, 0x70, 0xc6, 0x7f, 0xe0, 0x14, 0xfb, 0x25, 0x26, 0xad, 0x5f, 0xe5, 0xa0, - 0x6e, 0x53, 0x7f, 0x32, 0x1e, 0xf9, 0xf4, 0x31, 0x75, 0xfa, 0xd4, 0x23, 0x37, 0x01, 0x7a, 0x83, - 0xa9, 0x1f, 0x50, 0xef, 0xc4, 0xed, 0xaf, 0xe7, 0x6e, 0xe7, 0xee, 0x17, 0xed, 0x8a, 0xa4, 0xec, - 0xf4, 0xc9, 0x75, 0xa8, 0x0c, 0xe9, 0xb0, 0x2b, 0x66, 0xf3, 0x7c, 0x76, 0x49, 0x10, 0x70, 0xb2, - 0x01, 0x4b, 0x1e, 0x3d, 0x77, 0x7d, 0x77, 0x3c, 0x5a, 0x2f, 0xe0, 0x5c, 0xc1, 0x0e, 0xc7, 0x6c, - 0xa1, 0xe7, 0x3c, 0x0f, 0x4e, 0x10, 0x66, 0xb8, 0x5e, 0x14, 0x0b, 0x19, 0xa1, 0x83, 0x63, 0xeb, - 0xd7, 0x05, 0xa8, 0xd9, 0xce, 0xe8, 0x94, 0xda, 0xf4, 0x9b, 0x29, 0xf5, 0x03, 0xb2, 0x02, 0x85, - 0x17, 0xf4, 0x82, 0x6f, 0x5f, 0xb3, 0xd9, 0xa7, 0x58, 0x8f, 0x1c, 0x27, 0x74, 0x24, 0x36, 0xae, - 0xb1, 0xf5, 0x48, 0x68, 0x8f, 0xfa, 0x64, 0x0d, 0x16, 0x07, 0xee, 0xd0, 0x0d, 0xe4, 0xae, 0x62, - 0x10, 0x13, 0xa7, 0x68, 0x88, 0xb3, 0x0d, 0xe0, 0x8f, 0xbd, 0xe0, 0x64, 0xec, 0xa1, 0xd2, 0xeb, - 0x8b, 0x38, 0x5b, 0xdf, 0xbc, 0xbb, 0xa1, 0x9b, 0x7a, 0x43, 0x17, 0x68, 0xe3, 0x10, 0x99, 0x0f, - 0x18, 0xaf, 0x5d, 0xf1, 0xd5, 0x27, 0xf9, 0x12, 0xaa, 0x1c, 0x24, 0x70, 0xbc, 0x53, 0x1a, 0xac, - 0x97, 0x38, 0xca, 0xbd, 0x37, 0xa0, 0x74, 0x38, 0xb3, 0xcd, 0xb7, 0x17, 0xdf, 0xc4, 0x82, 0x1a, - 0xf2, 0xbb, 0xce, 0xc0, 0x7d, 0xed, 0x74, 0x07, 0x74, 0xbd, 0x8c, 0x40, 0x4b, 0x76, 0x8c, 0x66, - 0x6d, 0x40, 0x25, 0x94, 0x81, 0x2c, 0x41, 0x71, 0xff, 0x60, 0xbf, 0xbd, 0xb2, 0x40, 0x00, 0x4a, - 0xcd, 0xc3, 0xed, 0xf6, 0x7e, 0x6b, 0x25, 0x47, 0xaa, 0x50, 0x6e, 0xb5, 0xc5, 0x20, 0x6f, 0x6d, - 0x01, 0x44, 0xbb, 0x91, 0x32, 0x14, 0x76, 0xdb, 0x5f, 0x23, 0x3f, 0xf2, 0x1c, 0xb7, 0xed, 0xc3, - 0x9d, 0x83, 0x7d, 0x5c, 0x80, 0x8b, 0xb7, 0xed, 0x76, 0xb3, 0xd3, 0x5e, 0xc9, 0x33, 0x8e, 0x27, - 0x07, 0xad, 0x95, 0x02, 0xa9, 0xc0, 0xe2, 0x71, 0x73, 0xef, 0xa8, 0xbd, 0x52, 0xb4, 0x7e, 0x01, - 0xcb, 0x52, 0x7c, 0xe1, 0x22, 0xe4, 0x33, 0x28, 0x9d, 0x71, 0x37, 0xe1, 0x27, 0x53, 0xdd, 0xbc, - 0x61, 0xe8, 0x1a, 0x73, 0x25, 0x5b, 0xf2, 0xa2, 0x7a, 0x85, 0x17, 0xe7, 0x3e, 0x1e, 0x5a, 0x01, - 0x97, 0xac, 0x6c, 0x08, 0x0f, 0xdd, 0xd8, 0xa5, 0x17, 0xc7, 0xce, 0x60, 0x4a, 0x6d, 0x36, 0x49, - 0x08, 0x14, 0x87, 0x63, 0x8f, 0xf2, 0x03, 0x5c, 0xb2, 0xf9, 0xb7, 0xf5, 0x33, 0x80, 0xa7, 0xd3, - 0x20, 0xdd, 0x25, 0xf0, 0xd4, 0xcf, 0x19, 0x82, 0x74, 0x07, 0x31, 0xe0, 0xbe, 0x40, 0x1d, 0x9f, - 0x86, 0xbe, 0xc0, 0x06, 0xd6, 0x36, 0x54, 0x39, 0x56, 0x16, 0x45, 0x10, 0x84, 0xb4, 0xe8, 0x80, - 0x06, 0x34, 0x83, 0xaf, 0x5a, 0x14, 0x56, 0x63, 0x20, 0x99, 0x4c, 0xbb, 0x0e, 0xe5, 0x3e, 0x07, - 0x13, 0xfb, 0x14, 0x6c, 0x35, 0xb4, 0xfe, 0x95, 0xc3, 0x2b, 0x25, 0x24, 0x3c, 0x1a, 0x31, 0x8f, - 0x6f, 0xc2, 0xb2, 0x27, 0xc6, 0x27, 0x5c, 0x16, 0xb9, 0x4f, 0x23, 0xdd, 0x5d, 0x1f, 0x2f, 0xd8, - 0x35, 0xb9, 0x84, 0x93, 0xc9, 0x4f, 0xa1, 0xaa, 0x20, 0x26, 0xd3, 0x80, 0xef, 0x58, 0xdd, 0x5c, - 0x8f, 0x03, 0x44, 0x27, 0x86, 0xcb, 0x41, 0xb2, 0x23, 0x91, 0x74, 0x60, 0x4d, 0x2d, 0x16, 0x32, - 0x4a, 0x31, 0x0a, 0x1c, 0xe5, 0x76, 0x1c, 0x65, 0xd6, 0xcc, 0x88, 0x46, 0xe4, 0x7a, 0x6d, 0x72, - 0xab, 0x02, 0x65, 0x49, 0xb5, 0xfe, 0x9d, 0x43, 0x77, 0x95, 0x66, 0x12, 0x2a, 0xb7, 0xa0, 0xee, - 0x49, 0x42, 0x4c, 0xe7, 0xeb, 0x89, 0x3a, 0x4b, 0x03, 0x2f, 0xd8, 0xcb, 0x6a, 0x91, 0xd0, 0xfa, - 0x21, 0xd4, 0x42, 0x94, 0x48, 0xed, 0x6b, 0x09, 0x6a, 0x87, 0x08, 0x55, 0xb5, 0x80, 0x29, 0xfe, - 0x0c, 0xae, 0x84, 0xeb, 0x13, 0x34, 0xff, 0x60, 0x8e, 0xe6, 0x21, 0xe0, 0xaa, 0x42, 0xd0, 0x75, - 0x07, 0x16, 0xdf, 0x04, 0xd9, 0xfa, 0x4d, 0x01, 0xca, 0xdb, 0xe3, 0xe1, 0xc4, 0xf1, 0xd8, 0x31, - 0x95, 0x90, 0x3e, 0x1d, 0x04, 0x5c, 0xdd, 0xfa, 0xe6, 0x9d, 0xf8, 0x0e, 0x92, 0x4d, 0xfd, 0xb6, - 0x39, 0xab, 0x2d, 0x97, 0xb0, 0xc5, 0x32, 0x9c, 0xe5, 0xdf, 0x62, 0xb1, 0x0c, 0x66, 0x72, 0x89, - 0xba, 0x0a, 0x85, 0xe8, 0x2a, 0x34, 0xa0, 0x8c, 0x0b, 0xa3, 0x10, 0x8c, 0xba, 0x28, 0x02, 0xf9, - 0x1e, 0x5c, 0xea, 0x79, 0xd4, 0x61, 0xf6, 0x50, 0x61, 0x7a, 0x51, 0xf2, 0xd4, 0xc5, 0x84, 0xad, - 0xc2, 0xf5, 0x1d, 0xa8, 0x0d, 0xc7, 0xfd, 0x88, 0xaf, 0x24, 0xf9, 0xaa, 0x48, 0x0d, 0x99, 0xae, - 0xaa, 0x78, 0xc0, 0xe2, 0x67, 0x0d, 0x67, 0xc5, 0xd0, 0xfa, 0x14, 0x96, 0x63, 0xba, 0xb2, 0x10, - 0xd7, 0xfe, 0xea, 0xa8, 0xb9, 0x27, 0xe2, 0xe1, 0x23, 0x1e, 0x02, 0x6d, 0x8c, 0x87, 0x18, 0x56, - 0xf7, 0xda, 0x87, 0x87, 0x18, 0x3d, 0x3f, 0x0f, 0x97, 0xc8, 0x00, 0xaa, 0xc5, 0xcd, 0x05, 0x2d, - 0x6e, 0xe6, 0x54, 0xdc, 0xcc, 0x47, 0x71, 0xb3, 0xb0, 0x55, 0x87, 0x9a, 0x30, 0xc8, 0xc9, 0x94, - 0xf9, 0xa1, 0xf5, 0xbb, 0x1c, 0x40, 0xe7, 0xd5, 0x48, 0x05, 0x8c, 0x07, 0x50, 0xee, 0x09, 0x70, - 0x3c, 0x20, 0x16, 0x13, 0xaf, 0x24, 0xda, 0xd8, 0x56, 0x5c, 0x18, 0x1b, 0xca, 0xfe, 0xb4, 0xd7, - 0xa3, 0xbe, 0x0a, 0xa2, 0xe6, 0xa5, 0xd5, 0xee, 0xb9, 0xad, 0x58, 0xd9, 0xaa, 0xe7, 0x8e, 0x3b, - 0x98, 0xf2, 0xa8, 0xfa, 0xc6, 0x55, 0x92, 0xd5, 0xfa, 0x6d, 0x0e, 0xaa, 0x5c, 0xd6, 0x4c, 0x71, - 0xe9, 0x06, 0x54, 0xb8, 0x18, 0xb4, 0x2f, 0x23, 0xd3, 0x92, 0x1d, 0x11, 0xc8, 0x4f, 0x30, 0x3e, - 0xca, 0x75, 0xbe, 0x94, 0xed, 0x7a, 0x32, 0xac, 0x10, 0x2e, 0xe2, 0xb6, 0x76, 0xe1, 0x32, 0x37, - 0x4f, 0x2f, 0x60, 0x13, 0xd2, 0xa0, 0xfa, 0x43, 0x9f, 0x33, 0x1e, 0x7a, 0x9c, 0x9b, 0x9c, 0x5d, - 0xf8, 0x6e, 0xcf, 0x19, 0x48, 0x41, 0xc2, 0x31, 0x3e, 0x30, 0x44, 0x07, 0xcb, 0xf4, 0x36, 0x2c, - 0x43, 0xf5, 0xb1, 0xe3, 0x9f, 0x49, 0x91, 0xac, 0x9f, 0x43, 0x4d, 0x0c, 0x33, 0x99, 0x11, 0x5f, - 0xc5, 0x33, 0x44, 0xe1, 0x82, 0x2f, 0xdb, 0xfc, 0xdb, 0xba, 0x0c, 0x97, 0x0e, 0x47, 0xce, 0xc4, - 0x3f, 0x1b, 0xab, 0x40, 0xcb, 0xd2, 0xb8, 0x95, 0x88, 0x96, 0x69, 0xc7, 0x8f, 0xe0, 0x92, 0x47, - 0x87, 0x8e, 0x3b, 0x72, 0x47, 0xa7, 0x27, 0xdd, 0x8b, 0x80, 0xfa, 0x32, 0xcb, 0xab, 0x87, 0xe4, - 0x2d, 0x46, 0x65, 0xa2, 0x75, 0x07, 0xe3, 0xae, 0xbc, 0xeb, 0xfc, 0xdb, 0xfa, 0x3d, 0xbe, 0x39, - 0xcf, 0x9c, 0xa0, 0xa7, 0xac, 0x40, 0x76, 0xa0, 0x1e, 0xde, 0x70, 0x4e, 0x91, 0xb2, 0x18, 0xd1, - 0x9e, 0xaf, 0xd9, 0x96, 0x37, 0x5e, 0x45, 0xfb, 0xe5, 0x9e, 0x4e, 0xe0, 0x50, 0xce, 0xa8, 0x47, - 0x07, 0x21, 0x54, 0x3e, 0x1d, 0x8a, 0x33, 0xea, 0x50, 0x3a, 0x61, 0xeb, 0x52, 0xf4, 0x12, 0x8a, - 0xfb, 0xf9, 0x6d, 0x0e, 0xc8, 0xac, 0x0c, 0xdf, 0x35, 0x09, 0xbd, 0x07, 0x75, 0x1f, 0xaf, 0x7d, - 0x70, 0x62, 0xe4, 0xc0, 0xcb, 0x9c, 0x1a, 0x46, 0x29, 0xb4, 0x30, 0x26, 0xdf, 0xa7, 0xe8, 0xd2, - 0xfe, 0xc9, 0x68, 0x1c, 0xb8, 0xcf, 0x2f, 0x78, 0x64, 0x5c, 0xb2, 0xeb, 0x8a, 0xbc, 0xcf, 0xa9, - 0xd6, 0x03, 0x25, 0x94, 0x2e, 0x3c, 0xb9, 0x06, 0x4b, 0x2f, 0x19, 0x55, 0x65, 0xe7, 0xf8, 0xe4, - 0xf3, 0xf1, 0x4e, 0xdf, 0xfa, 0x07, 0x3e, 0x80, 0xd2, 0xfc, 0x99, 0x7c, 0x40, 0xdf, 0x22, 0x1f, - 0xdb, 0x82, 0xe5, 0x1b, 0xe2, 0x58, 0xfa, 0x32, 0x53, 0x53, 0x43, 0x76, 0xcf, 0x84, 0x95, 0x71, - 0x4a, 0xe8, 0x13, 0x8e, 0x31, 0xd0, 0xaf, 0xf4, 0xc4, 0x3d, 0x33, 0x22, 0xbd, 0x7d, 0x49, 0xd2, - 0x43, 0xeb, 0xdc, 0x83, 0x12, 0x3d, 0xa7, 0xa3, 0xc0, 0x5f, 0xaf, 0xf2, 0xb8, 0xb0, 0xac, 0xd2, - 0xc5, 0x36, 0xa3, 0xda, 0x72, 0xd2, 0xfa, 0x31, 0x5c, 0xde, 0x63, 0x79, 0xdd, 0x23, 0xb4, 0xbe, - 0x9e, 0x21, 0x76, 0x3a, 0x7b, 0xd2, 0x2a, 0x85, 0xa0, 0xb3, 0x47, 0xea, 0x90, 0xdf, 0x69, 0x49, - 0x1d, 0xf2, 0x6e, 0xcb, 0xfa, 0x25, 0x1e, 0xb4, 0xbe, 0x2e, 0x93, 0x99, 0x0c, 0x70, 0xb5, 0x7d, - 0x21, 0xda, 0x1e, 0x53, 0x51, 0xea, 0x79, 0x63, 0x8f, 0x1b, 0xa4, 0x62, 0x8b, 0x81, 0x75, 0x57, - 0xca, 0x80, 0x3a, 0x8f, 0x5f, 0x84, 0xce, 0x26, 0xd0, 0x72, 0xa1, 0xa8, 0xbb, 0xb0, 0x1a, 0xe3, - 0xca, 0x14, 0x9c, 0x3e, 0x82, 0x2b, 0x1c, 0x6c, 0x97, 0xd2, 0x49, 0x73, 0xe0, 0x9e, 0xa7, 0xee, - 0x3a, 0x81, 0xab, 0x26, 0xe3, 0xff, 0xd7, 0x46, 0xd6, 0x19, 0x94, 0x9e, 0xf0, 0xfa, 0x51, 0x93, - 0xa5, 0xc8, 0x79, 0x31, 0xc2, 0x8c, 0x9c, 0xa1, 0xc8, 0xee, 0x2b, 0x36, 0xff, 0xe6, 0xd1, 0x9c, - 0x52, 0xef, 0xc8, 0xde, 0x13, 0x0f, 0x47, 0xc5, 0x0e, 0xc7, 0xe4, 0x16, 0xab, 0x5c, 0x5d, 0x74, - 0x0f, 0x3e, 0x5b, 0xe4, 0xb3, 0x1a, 0x05, 0x2b, 0xa8, 0x15, 0xb1, 0x53, 0xb3, 0xdf, 0xd7, 0x5e, - 0x8e, 0x10, 0x2f, 0x17, 0xc7, 0xb3, 0x5e, 0xc2, 0x65, 0x8d, 0x3f, 0x93, 0x19, 0x3e, 0x81, 0x92, - 0x28, 0x92, 0x65, 0xd0, 0x5a, 0x8b, 0xaf, 0x12, 0xdb, 0xd8, 0x92, 0xc7, 0xba, 0x07, 0xab, 0x92, - 0x42, 0x87, 0xe3, 0xa4, 0xb3, 0xe2, 0xf6, 0xb1, 0xf6, 0x60, 0x2d, 0xce, 0x96, 0xc9, 0x45, 0x9a, - 0x6a, 0xd3, 0xa3, 0x49, 0x5f, 0x8b, 0x81, 0xe6, 0xa1, 0xe8, 0x06, 0xcb, 0x1b, 0x06, 0x0b, 0x05, - 0x52, 0x10, 0x99, 0x04, 0x5a, 0x55, 0xe6, 0xdf, 0x73, 0xfd, 0xf0, 0xa5, 0x7b, 0x0d, 0x44, 0x27, - 0x66, 0x3a, 0x94, 0x0d, 0x28, 0x0b, 0x83, 0xab, 0xac, 0x2a, 0xf9, 0x54, 0x14, 0x13, 0x13, 0xa8, - 0x45, 0x9f, 0x7b, 0xce, 0xe9, 0x90, 0x86, 0x31, 0x87, 0xa5, 0x10, 0x3a, 0x31, 0x93, 0xc6, 0x7f, - 0xc2, 0xe7, 0xb3, 0x39, 0x70, 0xbc, 0xa1, 0x32, 0xfe, 0x43, 0x28, 0x89, 0xdc, 0x44, 0x26, 0xf2, - 0x1f, 0xc6, 0x61, 0x74, 0x5e, 0x31, 0x68, 0x8a, 0x4c, 0x46, 0xae, 0x62, 0x87, 0x25, 0x7b, 0x33, - 0x2d, 0xa3, 0x57, 0xd3, 0x22, 0x3f, 0x80, 0x45, 0x87, 0x2d, 0xe1, 0x77, 0xb1, 0xbe, 0xf9, 0x5e, - 0x02, 0x74, 0xe7, 0x62, 0x42, 0x6d, 0xc1, 0x65, 0x7d, 0x06, 0x55, 0x6d, 0x07, 0x96, 0xf5, 0x3e, - 0x6a, 0x77, 0x30, 0x15, 0xae, 0xc1, 0x52, 0x73, 0xbb, 0xb3, 0x73, 0x2c, 0x92, 0xe1, 0x3a, 0x40, - 0xab, 0x1d, 0x8e, 0xf3, 0x98, 0x05, 0x89, 0x55, 0xf2, 0x86, 0xeb, 0xf2, 0xe4, 0xd2, 0xe4, 0xc9, - 0xbf, 0x95, 0x3c, 0xaf, 0x60, 0x59, 0xaa, 0x9f, 0xc9, 0x07, 0x3e, 0x45, 0x0b, 0x33, 0x18, 0xe5, - 0x02, 0xd7, 0x12, 0xb6, 0x55, 0xb7, 0x53, 0x30, 0x5a, 0x98, 0x3d, 0x1c, 0x06, 0x4e, 0x30, 0xf5, - 0x95, 0x0b, 0xfc, 0x31, 0x07, 0x75, 0x45, 0xc9, 0x5a, 0xcc, 0xab, 0x5a, 0x49, 0xc4, 0xbc, 0xb0, - 0x52, 0xba, 0x0a, 0xa5, 0x7e, 0xf7, 0xd0, 0x7d, 0xad, 0x9a, 0x1a, 0x72, 0xc4, 0xe8, 0x03, 0xb1, - 0x8f, 0xe8, 0xa8, 0xc9, 0x11, 0x4b, 0xbf, 0x59, 0x6f, 0x6d, 0x67, 0xd4, 0xa7, 0xaf, 0xf8, 0x4b, - 0x5b, 0xb4, 0x23, 0x02, 0x4f, 0x97, 0x65, 0xe7, 0x8d, 0x17, 0x52, 0x7a, 0x27, 0x0e, 0x9d, 0xbc, - 0x39, 0x0d, 0xce, 0xda, 0x23, 0xd6, 0x74, 0x52, 0x1a, 0xae, 0x01, 0x61, 0xc4, 0x96, 0xeb, 0xeb, - 0xd4, 0x36, 0xac, 0x32, 0x2a, 0xfa, 0x3d, 0x26, 0xd3, 0x51, 0xc4, 0x50, 0x61, 0x3b, 0x67, 0x84, - 0x6d, 0xc7, 0xf7, 0x5f, 0x8e, 0xbd, 0xbe, 0x54, 0x2d, 0x1c, 0x5b, 0x2d, 0x01, 0x7e, 0xe4, 0xc7, - 0x02, 0xf3, 0x77, 0x45, 0xb9, 0x1f, 0xa1, 0x3c, 0xa2, 0xc1, 0x1c, 0x14, 0xeb, 0x63, 0xb8, 0xa2, - 0x38, 0x65, 0x31, 0x3d, 0x87, 0xf9, 0x00, 0x6e, 0x2a, 0xe6, 0xed, 0x33, 0x96, 0xe8, 0x3d, 0x95, - 0x1b, 0xfe, 0xaf, 0x72, 0x3e, 0x84, 0xb5, 0x50, 0x4e, 0x3d, 0x77, 0x41, 0x9c, 0xa9, 0x2f, 0xfd, - 0x05, 0x71, 0xd8, 0x37, 0xa3, 0x79, 0xe3, 0x41, 0xf8, 0x00, 0xb2, 0x6f, 0xeb, 0x8b, 0x48, 0xfa, - 0x78, 0xfe, 0x90, 0x24, 0x48, 0x12, 0x80, 0x34, 0x94, 0x8d, 0xdf, 0xf3, 0xcd, 0xad, 0x73, 0xc6, - 0x4d, 0xca, 0x31, 0x73, 0x1a, 0xe6, 0x7b, 0x42, 0x28, 0xc6, 0x19, 0x33, 0xa9, 0x65, 0x0b, 0x6d, - 0x39, 0x84, 0xa1, 0xed, 0x8c, 0xb0, 0x1f, 0x42, 0x71, 0x42, 0xe5, 0xfd, 0xaf, 0x6e, 0x92, 0x0d, - 0xd1, 0xad, 0xde, 0x78, 0x8a, 0x34, 0xd7, 0x67, 0xb7, 0xc0, 0xe6, 0xf3, 0xfa, 0x66, 0x31, 0x0b, - 0xb0, 0x50, 0xac, 0xbb, 0x6e, 0xa6, 0x50, 0xbc, 0x2b, 0x7c, 0x3b, 0xf4, 0xf8, 0x4c, 0x60, 0x5d, - 0x61, 0x85, 0xe8, 0xa2, 0x64, 0x8a, 0x12, 0x98, 0x54, 0x06, 0xa8, 0xb5, 0x8a, 0x11, 0x62, 0xa0, - 0x04, 0x0e, 0x6f, 0x51, 0x26, 0x81, 0x9d, 0x08, 0x8c, 0x9f, 0x7c, 0x56, 0x79, 0x99, 0x93, 0xa8, - 0x74, 0x41, 0x0c, 0xac, 0x7d, 0xb8, 0x6a, 0xde, 0xc2, 0x4c, 0x22, 0x1f, 0xc3, 0xad, 0xb4, 0x8b, - 0x9a, 0x09, 0xf7, 0x49, 0x74, 0xdf, 0xde, 0x41, 0xcd, 0xa0, 0xab, 0xfd, 0x4e, 0x12, 0x7b, 0x79, - 0xec, 0xe1, 0x6d, 0xce, 0x04, 0xe6, 0x47, 0x60, 0xd9, 0x8f, 0x3d, 0xba, 0xce, 0x85, 0xb9, 0xd7, - 0x59, 0x5a, 0x44, 0x8f, 0x1d, 0xef, 0xe2, 0xc0, 0xb4, 0x90, 0xf3, 0x2e, 0x0e, 0x4c, 0x8f, 0x36, - 0x59, 0xf0, 0xbe, 0x6f, 0x41, 0x25, 0xcc, 0x65, 0xb4, 0x3f, 0xe3, 0x54, 0xa1, 0xbc, 0x7f, 0x70, - 0xf8, 0xb4, 0xb9, 0x8d, 0x59, 0xd4, 0xe6, 0x3f, 0xf3, 0x90, 0xdf, 0x3d, 0x26, 0x5b, 0xb0, 0x28, - 0x1a, 0xd0, 0x73, 0x5a, 0xf4, 0x8d, 0x79, 0xad, 0x6c, 0x6b, 0x81, 0x7c, 0x0e, 0x05, 0xd6, 0x82, - 0x4e, 0xed, 0xd1, 0x37, 0xd2, 0xdb, 0xd8, 0xb8, 0xba, 0x03, 0x55, 0xad, 0xdf, 0x4c, 0xde, 0xd8, - 0xa3, 0x6f, 0xbc, 0xb9, 0x97, 0x2d, 0x64, 0xea, 0xbc, 0x1a, 0x99, 0x32, 0x45, 0xfd, 0x51, 0x53, - 0x26, 0xad, 0x1b, 0x89, 0xab, 0xf7, 0x65, 0x9f, 0xbb, 0x17, 0x90, 0xf7, 0x13, 0xda, 0xa6, 0x7a, - 0x5f, 0xb0, 0x71, 0x3b, 0x9d, 0x41, 0xe1, 0x6d, 0x1e, 0xc0, 0x22, 0xef, 0x99, 0x90, 0x2f, 0xd5, - 0x47, 0x23, 0xa1, 0xa3, 0x94, 0x62, 0xee, 0x58, 0xb7, 0xc5, 0x5a, 0xb8, 0x9f, 0xfb, 0x61, 0x6e, - 0xf3, 0xdb, 0x3c, 0x2c, 0xf2, 0x1a, 0x9a, 0x7c, 0x05, 0x10, 0x35, 0x1b, 0x4c, 0x69, 0x67, 0xda, - 0x17, 0xa6, 0xb4, 0xb3, 0x7d, 0x0a, 0x71, 0x22, 0x5a, 0x57, 0x80, 0x24, 0x2d, 0x89, 0x3d, 0x8a, - 0xe6, 0x89, 0x24, 0xb4, 0x14, 0x10, 0xd5, 0x81, 0x7a, 0xbc, 0xea, 0x27, 0x77, 0x12, 0x96, 0x99, - 0xcd, 0x83, 0xc6, 0xdd, 0xf9, 0x4c, 0x31, 0xab, 0xfc, 0x25, 0x8f, 0xe7, 0x26, 0xfe, 0x8a, 0x8c, - 0x47, 0x58, 0x09, 0x0b, 0x6b, 0x72, 0x2b, 0xa9, 0xe8, 0x8a, 0x32, 0x93, 0xc6, 0xfb, 0xa9, 0xf3, - 0xa1, 0xf8, 0xcf, 0xa0, 0xa6, 0x17, 0xc2, 0xe4, 0x83, 0xc4, 0x3a, 0x4e, 0xaf, 0xa5, 0x1b, 0xd6, - 0x3c, 0x96, 0x59, 0x60, 0x51, 0xd0, 0x26, 0x03, 0xc7, 0xea, 0xe5, 0x64, 0xe0, 0x78, 0x3d, 0x8c, - 0xc0, 0xe8, 0x19, 0x51, 0x19, 0x4b, 0x12, 0x55, 0xd4, 0xaa, 0x5e, 0xd3, 0x33, 0x66, 0x2b, 0x60, - 0xf4, 0xe3, 0xff, 0xe4, 0xa1, 0xfa, 0xc4, 0x71, 0x47, 0x01, 0x1d, 0xb1, 0xb6, 0x1b, 0x8b, 0x1e, - 0x3c, 0xd0, 0x98, 0xee, 0xac, 0x17, 0x8d, 0xa6, 0x3b, 0xc7, 0x2a, 0x2a, 0x14, 0xb3, 0x0d, 0x25, - 0x51, 0xd8, 0x10, 0x83, 0x31, 0x56, 0x00, 0x35, 0x6e, 0x24, 0x4f, 0xea, 0xda, 0x46, 0x35, 0xb2, - 0xa9, 0xed, 0x4c, 0x49, 0xdd, 0xb8, 0x9d, 0xce, 0x10, 0x42, 0x7e, 0x01, 0x45, 0xd6, 0x5e, 0x27, - 0x46, 0xa8, 0xd0, 0x3a, 0xf0, 0x8d, 0x46, 0xd2, 0x54, 0x08, 0xf0, 0x04, 0x96, 0x54, 0xc7, 0x9c, - 0xdc, 0x34, 0xe4, 0x8f, 0x77, 0xd7, 0x1b, 0xb7, 0xd2, 0xa6, 0x15, 0x18, 0xba, 0xf7, 0x5f, 0x2b, - 0x50, 0x64, 0xef, 0x04, 0xd3, 0x35, 0x4a, 0x42, 0x4d, 0x5d, 0x67, 0x2a, 0x2b, 0x53, 0xd7, 0xd9, - 0xfc, 0x55, 0xdc, 0x79, 0x2d, 0x17, 0x25, 0x09, 0x4b, 0xe2, 0x85, 0x99, 0x79, 0xe7, 0x13, 0x12, - 0x59, 0xe1, 0xdb, 0x7a, 0x52, 0x4a, 0x12, 0x16, 0x19, 0x95, 0x9d, 0xe9, 0xdb, 0x49, 0x39, 0x2d, - 0x02, 0x3f, 0x85, 0xb2, 0xcc, 0x42, 0x93, 0x44, 0x8d, 0x97, 0x79, 0x49, 0xa2, 0x1a, 0x29, 0x6c, - 0x84, 0x88, 0x39, 0x49, 0x1a, 0x62, 0x54, 0x9f, 0xa4, 0x21, 0x6a, 0x09, 0x0d, 0x22, 0x7e, 0x0d, - 0x10, 0x65, 0x9e, 0x66, 0xb0, 0x4b, 0xac, 0x0e, 0xcd, 0x60, 0x97, 0x9c, 0xbc, 0x22, 0xf4, 0x37, - 0x40, 0x66, 0x93, 0x50, 0xf2, 0x71, 0xf2, 0xea, 0xc4, 0x9a, 0xb2, 0xf1, 0xc9, 0xdb, 0x31, 0x87, - 0x5b, 0x1e, 0x43, 0x25, 0xcc, 0x4f, 0x89, 0x95, 0xa2, 0xbf, 0xfe, 0xd2, 0xdc, 0x99, 0xcb, 0x63, - 0x5a, 0x49, 0xbe, 0x35, 0x29, 0x8b, 0xe2, 0xcf, 0xcd, 0xdd, 0xf9, 0x4c, 0xfa, 0x91, 0xca, 0x9c, - 0x35, 0xe9, 0x48, 0xe3, 0xc5, 0x69, 0xd2, 0x91, 0x1a, 0x09, 0x6f, 0x84, 0x98, 0xe2, 0x24, 0xf1, - 0x22, 0x36, 0x0d, 0x71, 0xc6, 0x49, 0xa2, 0xac, 0x34, 0x49, 0xfd, 0x99, 0x7a, 0x37, 0x49, 0xfd, - 0xd9, 0xc4, 0x56, 0x9c, 0x58, 0x98, 0xa0, 0x26, 0x9d, 0x98, 0x59, 0x30, 0x37, 0xee, 0xcc, 0xe5, - 0x31, 0x45, 0x4e, 0x3f, 0xb1, 0x99, 0xaa, 0x39, 0x4d, 0x64, 0xf3, 0xc4, 0xb6, 0x6a, 0x7f, 0xf8, - 0xfb, 0xad, 0xdc, 0x9f, 0xf1, 0xdf, 0xdf, 0xf0, 0x5f, 0xb7, 0xc4, 0xff, 0xff, 0xd8, 0x8f, 0xfe, - 0x1b, 0x00, 0x00, 0xff, 0xff, 0x82, 0xfb, 0xea, 0x9b, 0xa8, 0x26, 0x00, 0x00, + 0xf1, 0x27, 0x3e, 0x08, 0x10, 0x0d, 0x10, 0xa2, 0x86, 0x94, 0x4c, 0x41, 0x1f, 0x96, 0x47, 0x92, + 0xad, 0xff, 0xdf, 0x0e, 0x15, 0x33, 0xce, 0x21, 0x15, 0x47, 0x2e, 0x90, 0x80, 0x25, 0x86, 0x14, + 0x29, 0x2f, 0x41, 0x2a, 0x3e, 0xb1, 0x16, 0xc0, 0x88, 0x44, 0x09, 0x5f, 0xde, 0x5d, 0x50, 0xa2, + 0xaa, 0x72, 0x49, 0x55, 0x9e, 0xc0, 0x39, 0xa5, 0xf2, 0x02, 0x79, 0x80, 0xbc, 0x43, 0x2a, 0x97, + 0xe4, 0x09, 0x92, 0x54, 0x4e, 0xa9, 0x5c, 0x72, 0x4f, 0x2e, 0xe9, 0xf9, 0xda, 0x9d, 0x1d, 0x2c, + 0x20, 0x39, 0xab, 0x1c, 0x44, 0xee, 0xf4, 0x74, 0xff, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7, 0xbb, 0x29, + 0x28, 0x79, 0xe3, 0xce, 0xc6, 0xd8, 0x1b, 0x05, 0x23, 0x52, 0x61, 0x41, 0xa7, 0xeb, 0x33, 0xef, + 0x9c, 0x79, 0xe3, 0x76, 0x6d, 0xed, 0x74, 0x74, 0x3a, 0x12, 0x13, 0x0f, 0xf8, 0x97, 0xe4, 0xa9, + 0x5d, 0xe3, 0x3c, 0x0f, 0x06, 0xe7, 0x9d, 0x8e, 0xf8, 0x31, 0x6e, 0x3f, 0x78, 0x71, 0xae, 0xa6, + 0xae, 0x8b, 0x29, 0x77, 0x12, 0x9c, 0x89, 0x1f, 0x38, 0xc5, 0x7f, 0xc9, 0x49, 0xfa, 0xcb, 0x0c, + 0x54, 0x1d, 0xe6, 0x8f, 0x47, 0x43, 0x9f, 0x3d, 0x66, 0x6e, 0x97, 0x79, 0xe4, 0x26, 0x40, 0xa7, + 0x3f, 0xf1, 0x03, 0xe6, 0x9d, 0xf4, 0xba, 0xeb, 0x99, 0xdb, 0x99, 0xfb, 0x79, 0xa7, 0xa4, 0x28, + 0x3b, 0x5d, 0x72, 0x1d, 0x4a, 0x03, 0x36, 0x68, 0xcb, 0xd9, 0xac, 0x98, 0x5d, 0x92, 0x04, 0x9c, + 0xac, 0xc1, 0x92, 0xc7, 0xce, 0x7b, 0x7e, 0x6f, 0x34, 0x5c, 0xcf, 0xe1, 0x5c, 0xce, 0x09, 0xc7, + 0x5c, 0xd0, 0x73, 0x9f, 0x07, 0x27, 0x08, 0x33, 0x58, 0xcf, 0x4b, 0x41, 0x4e, 0x68, 0xe1, 0x98, + 0xfe, 0x2a, 0x07, 0x15, 0xc7, 0x1d, 0x9e, 0x32, 0x87, 0x7d, 0x33, 0x61, 0x7e, 0x40, 0x56, 0x20, + 0xf7, 0x82, 0x5d, 0x88, 0xe5, 0x2b, 0x0e, 0xff, 0x94, 0xf2, 0xc8, 0x71, 0xc2, 0x86, 0x72, 0xe1, + 0x0a, 0x97, 0x47, 0x42, 0x73, 0xd8, 0x25, 0x6b, 0xb0, 0xd8, 0xef, 0x0d, 0x7a, 0x81, 0x5a, 0x55, + 0x0e, 0x62, 0xea, 0xe4, 0x2d, 0x75, 0xb6, 0x01, 0xfc, 0x91, 0x17, 0x9c, 0x8c, 0x3c, 0xdc, 0xf4, + 0xfa, 0x22, 0xce, 0x56, 0x37, 0xef, 0x6e, 0x98, 0xa6, 0xde, 0x30, 0x15, 0xda, 0x38, 0x44, 0xe6, + 0x03, 0xce, 0xeb, 0x94, 0x7c, 0xfd, 0x49, 0xbe, 0x84, 0xb2, 0x00, 0x09, 0x5c, 0xef, 0x94, 0x05, + 0xeb, 0x05, 0x81, 0x72, 0xef, 0x0d, 0x28, 0x2d, 0xc1, 0xec, 0x88, 0xe5, 0xe5, 0x37, 0xa1, 0x50, + 0x41, 0xfe, 0x9e, 0xdb, 0xef, 0xbd, 0x76, 0xdb, 0x7d, 0xb6, 0x5e, 0x44, 0xa0, 0x25, 0x27, 0x46, + 0xa3, 0x1b, 0x50, 0x0a, 0x75, 0x20, 0x4b, 0x90, 0xdf, 0x3f, 0xd8, 0x6f, 0xae, 0x2c, 0x10, 0x80, + 0x42, 0xfd, 0x70, 0xbb, 0xb9, 0xdf, 0x58, 0xc9, 0x90, 0x32, 0x14, 0x1b, 0x4d, 0x39, 0xc8, 0xd2, + 0x2d, 0x80, 0x68, 0x35, 0x52, 0x84, 0xdc, 0x6e, 0xf3, 0x6b, 0xe4, 0x47, 0x9e, 0xe3, 0xa6, 0x73, + 0xb8, 0x73, 0xb0, 0x8f, 0x02, 0x28, 0xbc, 0xed, 0x34, 0xeb, 0xad, 0xe6, 0x4a, 0x96, 0x73, 0x3c, + 0x39, 0x68, 0xac, 0xe4, 0x48, 0x09, 0x16, 0x8f, 0xeb, 0x7b, 0x47, 0xcd, 0x95, 0x3c, 0xfd, 0x39, + 0x2c, 0x2b, 0xf5, 0xa5, 0x8b, 0x90, 0xcf, 0xa0, 0x70, 0x26, 0xdc, 0x44, 0x9c, 0x4c, 0x79, 0xf3, + 0x86, 0xb5, 0xd7, 0x98, 0x2b, 0x39, 0x8a, 0x17, 0xb7, 0x97, 0x7b, 0x71, 0xee, 0xe3, 0xa1, 0xe5, + 0x50, 0x64, 0x65, 0x43, 0x7a, 0xe8, 0xc6, 0x2e, 0xbb, 0x38, 0x76, 0xfb, 0x13, 0xe6, 0xf0, 0x49, + 0x42, 0x20, 0x3f, 0x18, 0x79, 0x4c, 0x1c, 0xe0, 0x92, 0x23, 0xbe, 0xe9, 0x4f, 0x01, 0x9e, 0x4e, + 0x82, 0xd9, 0x2e, 0x81, 0xa7, 0x7e, 0xce, 0x11, 0x94, 0x3b, 0xc8, 0x81, 0xf0, 0x05, 0xe6, 0xfa, + 0x2c, 0xf4, 0x05, 0x3e, 0xa0, 0xdb, 0x50, 0x16, 0x58, 0x69, 0x36, 0x82, 0x20, 0xa4, 0xc1, 0xfa, + 0x2c, 0x60, 0x29, 0x7c, 0x95, 0x32, 0x58, 0x8d, 0x81, 0xa4, 0x32, 0xed, 0x3a, 0x14, 0xbb, 0x02, + 0x4c, 0xae, 0x93, 0x73, 0xf4, 0x90, 0xfe, 0x33, 0x83, 0x57, 0x4a, 0x6a, 0x78, 0x34, 0xe4, 0x1e, + 0x5f, 0x87, 0x65, 0x4f, 0x8e, 0x4f, 0x84, 0x2e, 0x6a, 0x9d, 0xda, 0x6c, 0x77, 0x7d, 0xbc, 0xe0, + 0x54, 0x94, 0x88, 0x20, 0x93, 0x1f, 0x43, 0x59, 0x43, 0x8c, 0x27, 0x81, 0x58, 0xb1, 0xbc, 0xb9, + 0x1e, 0x07, 0x88, 0x4e, 0x0c, 0xc5, 0x41, 0xb1, 0x23, 0x91, 0xb4, 0x60, 0x4d, 0x0b, 0x4b, 0x1d, + 0x95, 0x1a, 0x39, 0x81, 0x72, 0x3b, 0x8e, 0x32, 0x6d, 0x66, 0x44, 0x23, 0x4a, 0xde, 0x98, 0xdc, + 0x2a, 0x41, 0x51, 0x51, 0xe9, 0xbf, 0x32, 0xe8, 0xae, 0xca, 0x4c, 0x72, 0xcb, 0x0d, 0xa8, 0x7a, + 0x8a, 0x10, 0xdb, 0xf3, 0xf5, 0xc4, 0x3d, 0x2b, 0x03, 0x2f, 0x38, 0xcb, 0x5a, 0x48, 0xee, 0xfa, + 0x21, 0x54, 0x42, 0x94, 0x68, 0xdb, 0xd7, 0x12, 0xb6, 0x1d, 0x22, 0x94, 0xb5, 0x00, 0xdf, 0xf8, + 0x33, 0xb8, 0x12, 0xca, 0x27, 0xec, 0xfc, 0x83, 0x39, 0x3b, 0x0f, 0x01, 0x57, 0x35, 0x82, 0xb9, + 0x77, 0xe0, 0xf1, 0x4d, 0x92, 0xe9, 0xaf, 0x73, 0x50, 0xdc, 0x1e, 0x0d, 0xc6, 0xae, 0xc7, 0x8f, + 0xa9, 0x80, 0xf4, 0x49, 0x3f, 0x10, 0xdb, 0xad, 0x6e, 0xde, 0x89, 0xaf, 0xa0, 0xd8, 0xf4, 0x6f, + 0x47, 0xb0, 0x3a, 0x4a, 0x84, 0x0b, 0xab, 0x70, 0x96, 0x7d, 0x0b, 0x61, 0x15, 0xcc, 0x94, 0x88, + 0xbe, 0x0a, 0xb9, 0xe8, 0x2a, 0xd4, 0xa0, 0x88, 0x82, 0x51, 0x08, 0xc6, 0xbd, 0x68, 0x02, 0xf9, + 0x3f, 0xb8, 0xd4, 0xf1, 0x98, 0xcb, 0xed, 0xa1, 0xc3, 0xf4, 0xa2, 0xe2, 0xa9, 0xca, 0x09, 0x47, + 0x87, 0xeb, 0x3b, 0x50, 0x19, 0x8c, 0xba, 0x11, 0x5f, 0x41, 0xf1, 0x95, 0x91, 0x1a, 0x32, 0x5d, + 0xd5, 0xf1, 0x80, 0xc7, 0xcf, 0x0a, 0xce, 0xca, 0x21, 0xfd, 0x14, 0x96, 0x63, 0x7b, 0xe5, 0x21, + 0xae, 0xf9, 0xd5, 0x51, 0x7d, 0x4f, 0xc6, 0xc3, 0x47, 0x22, 0x04, 0x3a, 0x18, 0x0f, 0x31, 0xac, + 0xee, 0x35, 0x0f, 0x0f, 0x31, 0x7a, 0x7e, 0x1e, 0x8a, 0xa8, 0x00, 0x6a, 0xc4, 0xcd, 0x05, 0x23, + 0x6e, 0x66, 0x74, 0xdc, 0xcc, 0x46, 0x71, 0x33, 0xb7, 0x55, 0x85, 0x8a, 0x34, 0xc8, 0xc9, 0x84, + 0xfb, 0x21, 0xfd, 0x6d, 0x06, 0xa0, 0xf5, 0x6a, 0xa8, 0x03, 0xc6, 0x03, 0x28, 0x76, 0x24, 0x38, + 0x1e, 0x10, 0x8f, 0x89, 0x57, 0x12, 0x6d, 0xec, 0x68, 0x2e, 0x8c, 0x0d, 0x45, 0x7f, 0xd2, 0xe9, + 0x30, 0x5f, 0x07, 0x51, 0xfb, 0xd2, 0x1a, 0xf7, 0xdc, 0xd1, 0xac, 0x5c, 0xea, 0xb9, 0xdb, 0xeb, + 0x4f, 0x44, 0x54, 0x7d, 0xa3, 0x94, 0x62, 0xa5, 0xbf, 0xc9, 0x40, 0x59, 0xe8, 0x9a, 0x2a, 0x2e, + 0xdd, 0x80, 0x92, 0x50, 0x83, 0x75, 0x55, 0x64, 0x5a, 0x72, 0x22, 0x02, 0xf9, 0x11, 0xc6, 0x47, + 0x25, 0xe7, 0x2b, 0xdd, 0xae, 0x27, 0xc3, 0x4a, 0xe5, 0x22, 0x6e, 0xba, 0x0b, 0x97, 0x85, 0x79, + 0x3a, 0x01, 0x9f, 0x50, 0x06, 0x35, 0x1f, 0xfa, 0x8c, 0xf5, 0xd0, 0xe3, 0xdc, 0xf8, 0xec, 0xc2, + 0xef, 0x75, 0xdc, 0xbe, 0x52, 0x24, 0x1c, 0xe3, 0x03, 0x43, 0x4c, 0xb0, 0x54, 0x6f, 0xc3, 0x32, + 0x94, 0x1f, 0xbb, 0xfe, 0x99, 0x52, 0x89, 0xfe, 0x0c, 0x2a, 0x72, 0x98, 0xca, 0x8c, 0xf8, 0x2a, + 0x9e, 0x21, 0x8a, 0x50, 0x7c, 0xd9, 0x11, 0xdf, 0xf4, 0x32, 0x5c, 0x3a, 0x1c, 0xba, 0x63, 0xff, + 0x6c, 0xa4, 0x03, 0x2d, 0x4f, 0xe3, 0x56, 0x22, 0x5a, 0xaa, 0x15, 0x3f, 0x82, 0x4b, 0x1e, 0x1b, + 0xb8, 0xbd, 0x61, 0x6f, 0x78, 0x7a, 0xd2, 0xbe, 0x08, 0x98, 0xaf, 0xb2, 0xbc, 0x6a, 0x48, 0xde, + 0xe2, 0x54, 0xae, 0x5a, 0xbb, 0x3f, 0x6a, 0xab, 0xbb, 0x2e, 0xbe, 0xe9, 0xef, 0xf0, 0xcd, 0x79, + 0xe6, 0x06, 0x1d, 0x6d, 0x05, 0xb2, 0x03, 0xd5, 0xf0, 0x86, 0x0b, 0x8a, 0xd2, 0xc5, 0x8a, 0xf6, + 0x42, 0x66, 0x5b, 0xdd, 0x78, 0x1d, 0xed, 0x97, 0x3b, 0x26, 0x41, 0x40, 0xb9, 0xc3, 0x0e, 0xeb, + 0x87, 0x50, 0xd9, 0xd9, 0x50, 0x82, 0xd1, 0x84, 0x32, 0x09, 0x5b, 0x97, 0xa2, 0x97, 0x50, 0xde, + 0xcf, 0x6f, 0x33, 0x40, 0xa6, 0x75, 0xf8, 0xae, 0x49, 0xe8, 0x3d, 0xa8, 0xfa, 0x78, 0xed, 0x83, + 0x13, 0x2b, 0x07, 0x5e, 0x16, 0xd4, 0x30, 0x4a, 0xa1, 0x85, 0x31, 0xf9, 0x3e, 0x45, 0x97, 0xf6, + 0x4f, 0x86, 0xa3, 0xa0, 0xf7, 0xfc, 0x42, 0x44, 0xc6, 0x25, 0xa7, 0xaa, 0xc9, 0xfb, 0x82, 0x4a, + 0x1f, 0x68, 0xa5, 0x4c, 0xe5, 0xc9, 0x35, 0x58, 0x7a, 0xc9, 0xa9, 0x3a, 0x3b, 0xc7, 0x27, 0x5f, + 0x8c, 0x77, 0xba, 0xf4, 0xef, 0xf8, 0x00, 0x2a, 0xf3, 0xa7, 0xf2, 0x01, 0x73, 0x89, 0x6c, 0x6c, + 0x09, 0x9e, 0x6f, 0xc8, 0x63, 0xe9, 0xaa, 0x4c, 0x4d, 0x0f, 0xf9, 0x3d, 0x93, 0x56, 0xc6, 0x29, + 0xb9, 0x9f, 0x70, 0x8c, 0x81, 0x7e, 0xa5, 0x23, 0xef, 0x99, 0x15, 0xe9, 0x9d, 0x4b, 0x8a, 0x1e, + 0x5a, 0xe7, 0x1e, 0x14, 0xd8, 0x39, 0x1b, 0x06, 0xfe, 0x7a, 0x59, 0xc4, 0x85, 0x65, 0x9d, 0x2e, + 0x36, 0x39, 0xd5, 0x51, 0x93, 0xf4, 0x87, 0x70, 0x79, 0x8f, 0xe7, 0x75, 0x8f, 0xd0, 0xfa, 0x66, + 0x86, 0xd8, 0x6a, 0xed, 0x29, 0xab, 0xe4, 0x82, 0xd6, 0x1e, 0xa9, 0x42, 0x76, 0xa7, 0xa1, 0xf6, + 0x90, 0xed, 0x35, 0xe8, 0x2f, 0xf0, 0xa0, 0x4d, 0xb9, 0x54, 0x66, 0xb2, 0xc0, 0xf5, 0xf2, 0xb9, + 0x68, 0x79, 0x4c, 0x45, 0x99, 0xe7, 0x8d, 0x3c, 0x61, 0x90, 0x92, 0x23, 0x07, 0xf4, 0xae, 0xd2, + 0x01, 0xf7, 0x3c, 0x7a, 0x11, 0x3a, 0x9b, 0x44, 0xcb, 0x84, 0xaa, 0xee, 0xc2, 0x6a, 0x8c, 0x2b, + 0x55, 0x70, 0xfa, 0x08, 0xae, 0x08, 0xb0, 0x5d, 0xc6, 0xc6, 0xf5, 0x7e, 0xef, 0x7c, 0xe6, 0xaa, + 0x63, 0xb8, 0x6a, 0x33, 0xfe, 0x6f, 0x6d, 0x44, 0xcf, 0xa0, 0xf0, 0x44, 0xd4, 0x8f, 0x86, 0x2e, + 0x79, 0xc1, 0x8b, 0x11, 0x66, 0xe8, 0x0e, 0x64, 0x76, 0x5f, 0x72, 0xc4, 0xb7, 0x88, 0xe6, 0x8c, + 0x79, 0x47, 0xce, 0x9e, 0x7c, 0x38, 0x4a, 0x4e, 0x38, 0x26, 0xb7, 0x78, 0xe5, 0xda, 0x43, 0xf7, + 0x10, 0xb3, 0x79, 0x31, 0x6b, 0x50, 0xb0, 0x82, 0x5a, 0x91, 0x2b, 0xd5, 0xbb, 0x5d, 0xe3, 0xe5, + 0x08, 0xf1, 0x32, 0x71, 0x3c, 0xfa, 0x12, 0x2e, 0x1b, 0xfc, 0xa9, 0xcc, 0xf0, 0x09, 0x14, 0x64, + 0x91, 0xac, 0x82, 0xd6, 0x5a, 0x5c, 0x4a, 0x2e, 0xe3, 0x28, 0x1e, 0x7a, 0x0f, 0x56, 0x15, 0x85, + 0x0d, 0x46, 0x49, 0x67, 0x25, 0xec, 0x43, 0xf7, 0x60, 0x2d, 0xce, 0x96, 0xca, 0x45, 0xea, 0x7a, + 0xd1, 0xa3, 0x71, 0xd7, 0x88, 0x81, 0xf6, 0xa1, 0x98, 0x06, 0xcb, 0x5a, 0x06, 0x0b, 0x15, 0xd2, + 0x10, 0xa9, 0x14, 0x5a, 0xd5, 0xe6, 0xdf, 0xeb, 0xf9, 0xe1, 0x4b, 0xf7, 0x1a, 0x88, 0x49, 0x4c, + 0x75, 0x28, 0x1b, 0x50, 0x94, 0x06, 0xd7, 0x59, 0x55, 0xf2, 0xa9, 0x68, 0x26, 0xae, 0x50, 0x83, + 0x3d, 0xf7, 0xdc, 0xd3, 0x01, 0x0b, 0x63, 0x0e, 0x4f, 0x21, 0x4c, 0x62, 0xaa, 0x1d, 0xff, 0x11, + 0x9f, 0xcf, 0x7a, 0xdf, 0xf5, 0x06, 0xda, 0xf8, 0x0f, 0xa1, 0x20, 0x73, 0x13, 0x95, 0xc8, 0x7f, + 0x18, 0x87, 0x31, 0x79, 0xe5, 0xa0, 0x2e, 0x33, 0x19, 0x25, 0xc5, 0x0f, 0x4b, 0xf5, 0x66, 0x1a, + 0x56, 0xaf, 0xa6, 0x41, 0xbe, 0x07, 0x8b, 0x2e, 0x17, 0x11, 0x77, 0xb1, 0xba, 0xf9, 0x5e, 0x02, + 0x74, 0xeb, 0x62, 0xcc, 0x1c, 0xc9, 0x45, 0x3f, 0x83, 0xb2, 0xb1, 0x02, 0xcf, 0x7a, 0x1f, 0x35, + 0x5b, 0x98, 0x0a, 0x57, 0x60, 0xa9, 0xbe, 0xdd, 0xda, 0x39, 0x96, 0xc9, 0x70, 0x15, 0xa0, 0xd1, + 0x0c, 0xc7, 0x59, 0xcc, 0x82, 0xa4, 0x94, 0xba, 0xe1, 0xa6, 0x3e, 0x99, 0x59, 0xfa, 0x64, 0xdf, + 0x4a, 0x9f, 0x57, 0xb0, 0xac, 0xb6, 0x9f, 0xca, 0x07, 0x3e, 0x45, 0x0b, 0x73, 0x18, 0xed, 0x02, + 0xd7, 0x12, 0x96, 0xd5, 0xb7, 0x53, 0x32, 0x52, 0xcc, 0x1e, 0x0e, 0x03, 0x37, 0x98, 0xf8, 0xda, + 0x05, 0xfe, 0x90, 0x81, 0xaa, 0xa6, 0xa4, 0x2d, 0xe6, 0x75, 0xad, 0x24, 0x63, 0x5e, 0x58, 0x29, + 0x5d, 0x85, 0x42, 0xb7, 0x7d, 0xd8, 0x7b, 0xad, 0x9b, 0x1a, 0x6a, 0xc4, 0xe9, 0x7d, 0xb9, 0x8e, + 0xec, 0xa8, 0xa9, 0x11, 0x4f, 0xbf, 0x79, 0x6f, 0x6d, 0x67, 0xd8, 0x65, 0xaf, 0xc4, 0x4b, 0x9b, + 0x77, 0x22, 0x82, 0x48, 0x97, 0x55, 0xe7, 0x4d, 0x14, 0x52, 0x66, 0x27, 0x0e, 0x9d, 0xbc, 0x3e, + 0x09, 0xce, 0x9a, 0x43, 0xde, 0x74, 0xd2, 0x3b, 0x5c, 0x03, 0xc2, 0x89, 0x8d, 0x9e, 0x6f, 0x52, + 0x9b, 0xb0, 0xca, 0xa9, 0xe8, 0xf7, 0x98, 0x4c, 0x47, 0x11, 0x43, 0x87, 0xed, 0x8c, 0x15, 0xb6, + 0x5d, 0xdf, 0x7f, 0x39, 0xf2, 0xba, 0x6a, 0x6b, 0xe1, 0x98, 0x36, 0x24, 0xf8, 0x91, 0x1f, 0x0b, + 0xcc, 0xdf, 0x15, 0xe5, 0x7e, 0x84, 0xf2, 0x88, 0x05, 0x73, 0x50, 0xe8, 0xc7, 0x70, 0x45, 0x73, + 0xaa, 0x62, 0x7a, 0x0e, 0xf3, 0x01, 0xdc, 0xd4, 0xcc, 0xdb, 0x67, 0x3c, 0xd1, 0x7b, 0xaa, 0x16, + 0xfc, 0x6f, 0xf5, 0x7c, 0x08, 0x6b, 0xa1, 0x9e, 0x66, 0xee, 0x82, 0x38, 0x13, 0x5f, 0xf9, 0x0b, + 0xe2, 0xf0, 0x6f, 0x4e, 0xf3, 0x46, 0xfd, 0xf0, 0x01, 0xe4, 0xdf, 0xf4, 0x8b, 0x48, 0xfb, 0x78, + 0xfe, 0x90, 0xa4, 0x48, 0x12, 0x80, 0x32, 0x94, 0x83, 0xdf, 0xf3, 0xcd, 0x6d, 0x72, 0xc6, 0x4d, + 0x2a, 0x30, 0x33, 0x06, 0xe6, 0x7b, 0x52, 0x29, 0xce, 0x19, 0x33, 0x29, 0x75, 0xe4, 0x6e, 0x05, + 0x84, 0xb5, 0xdb, 0x29, 0x65, 0x3f, 0x84, 0xfc, 0x98, 0xa9, 0xfb, 0x5f, 0xde, 0x24, 0x1b, 0xb2, + 0x5b, 0xbd, 0xf1, 0x14, 0x69, 0x3d, 0x9f, 0xdf, 0x02, 0x47, 0xcc, 0xd3, 0x9f, 0x44, 0x8b, 0x4d, + 0x59, 0xc0, 0xd6, 0x4c, 0xa7, 0xf0, 0xd2, 0x00, 0xfc, 0x93, 0x07, 0x6c, 0xd3, 0xc1, 0x53, 0x05, + 0xec, 0x5d, 0x79, 0x03, 0xc2, 0x7b, 0x91, 0x0a, 0xac, 0x2d, 0x6d, 0x15, 0x5d, 0xa7, 0x54, 0xb1, + 0x04, 0x53, 0xcf, 0x00, 0x6d, 0xa3, 0x23, 0x89, 0x1c, 0x68, 0x85, 0xc3, 0xbb, 0x96, 0x4a, 0x61, + 0x37, 0x02, 0x13, 0xfe, 0x91, 0x56, 0x5f, 0x7e, 0x60, 0x3a, 0xa9, 0x90, 0x03, 0xba, 0x0f, 0x57, + 0xed, 0xbb, 0x9a, 0x4a, 0xe5, 0x63, 0xb8, 0x35, 0xeb, 0x3a, 0xa7, 0xc2, 0x7d, 0x12, 0xdd, 0xca, + 0x77, 0x50, 0x59, 0x98, 0xdb, 0x7e, 0x27, 0xe9, 0xbf, 0x3a, 0xf6, 0xf0, 0xce, 0xa7, 0x02, 0xf3, + 0x23, 0xb0, 0xf4, 0xc7, 0x1e, 0x5d, 0xfa, 0xdc, 0xdc, 0x4b, 0xaf, 0x2c, 0x62, 0x46, 0x98, 0x77, + 0x71, 0x60, 0x46, 0x60, 0x7a, 0x17, 0x07, 0x66, 0xc6, 0xa4, 0x34, 0x78, 0xff, 0x4f, 0xa1, 0x14, + 0x66, 0x3c, 0xc6, 0x1f, 0x7b, 0xca, 0x50, 0xdc, 0x3f, 0x38, 0x7c, 0x5a, 0xdf, 0xc6, 0x5c, 0x6b, + 0xf3, 0x1f, 0x59, 0xc8, 0xee, 0x1e, 0x93, 0x2d, 0x58, 0x94, 0x6d, 0xea, 0x39, 0x8d, 0xfc, 0xda, + 0xbc, 0x86, 0x37, 0x5d, 0x20, 0x9f, 0x43, 0x8e, 0x37, 0xaa, 0x67, 0x76, 0xf2, 0x6b, 0xb3, 0x9b, + 0xdd, 0x28, 0xdd, 0x82, 0xb2, 0xd1, 0x95, 0x26, 0x6f, 0xec, 0xe4, 0xd7, 0xde, 0xdc, 0xf1, 0x96, + 0x3a, 0xb5, 0x5e, 0x0d, 0x6d, 0x9d, 0xa2, 0x2e, 0xaa, 0xad, 0x93, 0xd1, 0xb3, 0x44, 0xe9, 0x7d, + 0xd5, 0x0d, 0xef, 0x04, 0xe4, 0xfd, 0x84, 0xe6, 0xaa, 0xd9, 0x3d, 0xac, 0xdd, 0x9e, 0xcd, 0xa0, + 0xf1, 0x36, 0x0f, 0x60, 0x51, 0x74, 0x56, 0xc8, 0x97, 0xfa, 0xa3, 0x96, 0xd0, 0x77, 0x9a, 0x61, + 0xee, 0x58, 0x4f, 0x86, 0x2e, 0xdc, 0xcf, 0x7c, 0x3f, 0xb3, 0xf9, 0x6d, 0x16, 0x16, 0x45, 0xa5, + 0x4d, 0xbe, 0x02, 0x88, 0x5a, 0x12, 0xb6, 0xb6, 0x53, 0x4d, 0x0e, 0x5b, 0xdb, 0xe9, 0x6e, 0x86, + 0x3c, 0x11, 0xa3, 0x77, 0x40, 0x92, 0x44, 0x62, 0x4f, 0xa7, 0x7d, 0x22, 0x09, 0x8d, 0x07, 0x44, + 0x75, 0xa1, 0x1a, 0xef, 0x0d, 0x90, 0x3b, 0x09, 0x62, 0x76, 0x8b, 0xa1, 0x76, 0x77, 0x3e, 0x53, + 0xcc, 0x2a, 0x7f, 0xce, 0xe2, 0xb9, 0xc9, 0xbf, 0x35, 0xe3, 0x11, 0x96, 0xc2, 0xf2, 0x9b, 0xdc, + 0x4a, 0x2a, 0xcd, 0xa2, 0xfc, 0xa5, 0xf6, 0xfe, 0xcc, 0xf9, 0x50, 0xfd, 0x67, 0x50, 0x31, 0xcb, + 0x65, 0xf2, 0x41, 0x62, 0xb5, 0x67, 0x56, 0xdc, 0x35, 0x3a, 0x8f, 0x65, 0x1a, 0x58, 0x96, 0xbd, + 0xc9, 0xc0, 0xb1, 0xaa, 0x3a, 0x19, 0x38, 0x5e, 0x35, 0x23, 0x30, 0x7a, 0x46, 0x54, 0xec, 0x92, + 0xc4, 0x2d, 0x1a, 0xb5, 0xb1, 0xed, 0x19, 0xd3, 0x75, 0x32, 0xfa, 0xf1, 0xbf, 0xb3, 0x50, 0x7e, + 0xe2, 0xf6, 0x86, 0x01, 0x1b, 0xf2, 0xe6, 0x1c, 0x8f, 0x1e, 0x22, 0xd0, 0xd8, 0xee, 0x6c, 0x96, + 0x96, 0xb6, 0x3b, 0xc7, 0xea, 0x2e, 0x54, 0xb3, 0x09, 0x05, 0x59, 0xfe, 0x10, 0x8b, 0x31, 0x56, + 0x26, 0xd5, 0x6e, 0x24, 0x4f, 0x9a, 0xbb, 0x8d, 0x2a, 0x69, 0x7b, 0xb7, 0x53, 0x85, 0x77, 0xed, + 0xf6, 0x6c, 0x86, 0x10, 0xf2, 0x0b, 0xc8, 0xf3, 0x26, 0x3c, 0xb1, 0x42, 0x85, 0xd1, 0xa7, 0xaf, + 0xd5, 0x92, 0xa6, 0x42, 0x80, 0x27, 0xb0, 0xa4, 0xfb, 0xea, 0xe4, 0xa6, 0xa5, 0x7f, 0xbc, 0x07, + 0x5f, 0xbb, 0x35, 0x6b, 0x5a, 0x83, 0xa1, 0x7b, 0xff, 0xa5, 0x04, 0x79, 0xfe, 0x4e, 0xf0, 0xbd, + 0x46, 0x49, 0xa8, 0xbd, 0xd7, 0xa9, 0xfa, 0xcb, 0xde, 0xeb, 0x74, 0xfe, 0x2a, 0xef, 0xbc, 0x91, + 0x8b, 0x92, 0x04, 0x91, 0x78, 0xf9, 0x66, 0xdf, 0xf9, 0x84, 0x44, 0x56, 0xfa, 0xb6, 0x99, 0x94, + 0x92, 0x04, 0x21, 0xab, 0xfe, 0xb3, 0x7d, 0x3b, 0x29, 0xa7, 0x45, 0xe0, 0xa7, 0x50, 0x54, 0x59, + 0x68, 0x92, 0xaa, 0xf1, 0x62, 0x30, 0x49, 0x55, 0x2b, 0x85, 0x8d, 0x10, 0x31, 0x27, 0x99, 0x85, + 0x18, 0x55, 0x31, 0xb3, 0x10, 0x8d, 0x84, 0x06, 0x11, 0xbf, 0x06, 0x88, 0x32, 0x4f, 0x3b, 0xd8, + 0x25, 0xd6, 0x90, 0x76, 0xb0, 0x4b, 0x4e, 0x5e, 0x11, 0xfa, 0x1b, 0x20, 0xd3, 0x49, 0x28, 0xf9, + 0x38, 0x59, 0x3a, 0xb1, 0xf2, 0xac, 0x7d, 0xf2, 0x76, 0xcc, 0xe1, 0x92, 0xc7, 0x50, 0x0a, 0xf3, + 0x53, 0x42, 0x67, 0xec, 0xdf, 0x7c, 0x69, 0xee, 0xcc, 0xe5, 0xb1, 0xad, 0xa4, 0xde, 0x9a, 0x19, + 0x42, 0xf1, 0xe7, 0xe6, 0xee, 0x7c, 0x26, 0xf3, 0x48, 0x55, 0xce, 0x9a, 0x74, 0xa4, 0xf1, 0x12, + 0x36, 0xe9, 0x48, 0xad, 0x84, 0x37, 0x42, 0x9c, 0xe1, 0x24, 0xf1, 0x52, 0x77, 0x16, 0xe2, 0x94, + 0x93, 0x44, 0x59, 0x69, 0xd2, 0xf6, 0xa7, 0xaa, 0xe2, 0xa4, 0xed, 0x4f, 0x27, 0xb6, 0xf2, 0xc4, + 0xc2, 0x04, 0x35, 0xe9, 0xc4, 0xec, 0xb2, 0xba, 0x76, 0x67, 0x2e, 0x8f, 0xad, 0xf2, 0xec, 0x13, + 0x9b, 0xaa, 0xad, 0x67, 0xa9, 0x6c, 0x9f, 0xd8, 0x56, 0xe5, 0xf7, 0x7f, 0xbb, 0x95, 0xf9, 0x13, + 0xfe, 0xfb, 0x2b, 0xfe, 0x6b, 0x17, 0xc4, 0xff, 0x32, 0xfb, 0xc1, 0x7f, 0x02, 0x00, 0x00, 0xff, + 0xff, 0x21, 0x44, 0x29, 0x94, 0xce, 0x26, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/rpc.proto b/etcdserver/etcdserverpb/rpc.proto index aa92f725d..3e771b376 100644 --- a/etcdserver/etcdserverpb/rpc.proto +++ b/etcdserver/etcdserverpb/rpc.proto @@ -619,6 +619,8 @@ message AuthRoleGrantRequest { } message AuthRoleRevokeRequest { + string role = 1; + string key = 2; } message AuthEnableResponse { diff --git a/etcdserver/v3_server.go b/etcdserver/v3_server.go index 3002d75f1..a9002dc48 100644 --- a/etcdserver/v3_server.go +++ b/etcdserver/v3_server.go @@ -68,6 +68,7 @@ type Authenticator interface { RoleAdd(ctx context.Context, r *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) RoleGrant(ctx context.Context, r *pb.AuthRoleGrantRequest) (*pb.AuthRoleGrantResponse, error) RoleGet(ctx context.Context, r *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) + RoleRevoke(ctx context.Context, r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) } func (s *EtcdServer) Range(ctx context.Context, r *pb.RangeRequest) (*pb.RangeResponse, error) { @@ -369,6 +370,17 @@ func (s *EtcdServer) RoleGet(ctx context.Context, r *pb.AuthRoleGetRequest) (*pb return result.resp.(*pb.AuthRoleGetResponse), nil } +func (s *EtcdServer) RoleRevoke(ctx context.Context, r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) { + result, err := s.processInternalRaftRequest(ctx, pb.InternalRaftRequest{AuthRoleRevoke: r}) + if err != nil { + return nil, err + } + if result.err != nil { + return nil, result.err + } + return result.resp.(*pb.AuthRoleRevokeResponse), nil +} + func (s *EtcdServer) usernameFromCtx(ctx context.Context) (string, error) { md, mdexist := metadata.FromContext(ctx) if mdexist { From c7a1423d45439c7b9c08536d299a613fefffd35b Mon Sep 17 00:00:00 2001 From: Hitoshi Mitake Date: Fri, 3 Jun 2016 17:33:05 +0900 Subject: [PATCH 3/3] *: support deleting a role in auth v3 This commit implements RoleDelete() RPC for supporting deleting a role in auth v3. It also adds a new subcommand "role delete" to etcdctl. --- auth/store.go | 31 ++ clientv3/auth.go | 9 + etcdctl/ctlv3/command/role_command.go | 23 ++ etcdserver/api/v3rpc/auth.go | 7 +- etcdserver/apply.go | 7 + etcdserver/etcdserverpb/raft_internal.pb.go | 136 ++++--- etcdserver/etcdserverpb/raft_internal.proto | 1 + etcdserver/etcdserverpb/rpc.pb.go | 370 +++++++++++--------- etcdserver/etcdserverpb/rpc.proto | 1 + etcdserver/v3_server.go | 12 + 10 files changed, 387 insertions(+), 210 deletions(-) diff --git a/auth/store.go b/auth/store.go index 20b80653e..59fa485ef 100644 --- a/auth/store.go +++ b/auth/store.go @@ -91,6 +91,9 @@ type AuthStore interface { // RoleRevoke gets the detailed information of a role RoleRevoke(r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) + // RoleDelete gets the detailed information of a role + RoleDelete(r *pb.AuthRoleDeleteRequest) (*pb.AuthRoleDeleteResponse, error) + // UsernameFromToken gets a username from the given Token UsernameFromToken(token string) (string, bool) @@ -428,6 +431,34 @@ func (as *authStore) RoleRevoke(r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevoke return &pb.AuthRoleRevokeResponse{}, nil } +func (as *authStore) RoleDelete(r *pb.AuthRoleDeleteRequest) (*pb.AuthRoleDeleteResponse, error) { + // TODO(mitake): current scheme of role deletion allows existing users to have the deleted roles + // + // Assume a case like below: + // create a role r1 + // create a user u1 and grant r1 to u1 + // delete r1 + // + // After this sequence, u1 is still granted the role r1. So if admin create a new role with the name r1, + // the new r1 is automatically granted u1. + // In some cases, it would be confusing. So we need to provide an option for deleting the grant relation + // from all users. + + tx := as.be.BatchTx() + tx.Lock() + defer tx.Unlock() + + _, vs := tx.UnsafeRange(authRolesBucketName, []byte(r.Role), nil, 0) + if len(vs) != 1 { + return nil, ErrRoleNotFound + } + + tx.UnsafeDelete(authRolesBucketName, []byte(r.Role)) + + plog.Noticef("deleted role %s", r.Role) + return &pb.AuthRoleDeleteResponse{}, nil +} + func (as *authStore) RoleAdd(r *pb.AuthRoleAddRequest) (*pb.AuthRoleAddResponse, error) { tx := as.be.BatchTx() tx.Lock() diff --git a/clientv3/auth.go b/clientv3/auth.go index e32c23055..656363694 100644 --- a/clientv3/auth.go +++ b/clientv3/auth.go @@ -39,6 +39,7 @@ type ( AuthRoleGrantResponse pb.AuthRoleGrantResponse AuthRoleGetResponse pb.AuthRoleGetResponse AuthRoleRevokeResponse pb.AuthRoleRevokeResponse + AuthRoleDeleteResponse pb.AuthRoleDeleteResponse PermissionType authpb.Permission_Type ) @@ -85,6 +86,9 @@ type Auth interface { // RoleRevoke revokes a key from a user. RoleRevoke(ctx context.Context, role string, key string) (*AuthRoleRevokeResponse, error) + + // RoleDelete deletes a role. + RoleDelete(ctx context.Context, role string) (*AuthRoleDeleteResponse, error) } type auth struct { @@ -167,6 +171,11 @@ func (auth *auth) RoleRevoke(ctx context.Context, role string, key string) (*Aut return (*AuthRoleRevokeResponse)(resp), rpctypes.Error(err) } +func (auth *auth) RoleDelete(ctx context.Context, role string) (*AuthRoleDeleteResponse, error) { + resp, err := auth.remote.RoleDelete(ctx, &pb.AuthRoleDeleteRequest{Role: role}) + return (*AuthRoleDeleteResponse)(resp), rpctypes.Error(err) +} + func StrToPermissionType(s string) (PermissionType, error) { val, ok := authpb.Permission_Type_value[strings.ToUpper(s)] if ok { diff --git a/etcdctl/ctlv3/command/role_command.go b/etcdctl/ctlv3/command/role_command.go index 3ab7728e5..4702e08b9 100644 --- a/etcdctl/ctlv3/command/role_command.go +++ b/etcdctl/ctlv3/command/role_command.go @@ -33,6 +33,7 @@ func NewRoleCommand() *cobra.Command { ac.AddCommand(newRoleGrantCommand()) ac.AddCommand(newRoleGetCommand()) ac.AddCommand(newRoleRevokePermissionCommand()) + ac.AddCommand(newRoleDeleteCommand()) return ac } @@ -69,6 +70,14 @@ func newRoleRevokePermissionCommand() *cobra.Command { } } +func newRoleDeleteCommand() *cobra.Command { + return &cobra.Command{ + Use: "delete ", + Short: "delete a role", + Run: roleDeleteCommandFunc, + } +} + // roleAddCommandFunc executes the "role add" command. func roleAddCommandFunc(cmd *cobra.Command, args []string) { if len(args) != 1 { @@ -141,3 +150,17 @@ func roleRevokePermissionCommandFunc(cmd *cobra.Command, args []string) { fmt.Printf("Permission of key %s is revoked from role %s\n", args[1], args[0]) } + +// roleDeleteCommandFunc executes the "role delete" command. +func roleDeleteCommandFunc(cmd *cobra.Command, args []string) { + if len(args) != 1 { + ExitWithError(ExitBadArgs, fmt.Errorf("role delete command requires role name as its argument.")) + } + + _, err := mustClientFromCmd(cmd).Auth.RoleDelete(context.TODO(), args[0]) + if err != nil { + ExitWithError(ExitError, err) + } + + fmt.Printf("Role %s deleted\n", args[0]) +} diff --git a/etcdserver/api/v3rpc/auth.go b/etcdserver/api/v3rpc/auth.go index 4ab57207e..589e38001 100644 --- a/etcdserver/api/v3rpc/auth.go +++ b/etcdserver/api/v3rpc/auth.go @@ -61,8 +61,11 @@ func (as *AuthServer) RoleAdd(ctx context.Context, r *pb.AuthRoleAddRequest) (*p } func (as *AuthServer) RoleDelete(ctx context.Context, r *pb.AuthRoleDeleteRequest) (*pb.AuthRoleDeleteResponse, error) { - plog.Info("not implemented yet") - return nil, nil + resp, err := as.authenticator.RoleDelete(ctx, r) + if err != nil { + return nil, togRPCError(err) + } + return resp, nil } func (as *AuthServer) RoleGet(ctx context.Context, r *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) { diff --git a/etcdserver/apply.go b/etcdserver/apply.go index eefa65b5b..60f4ca104 100644 --- a/etcdserver/apply.go +++ b/etcdserver/apply.go @@ -67,6 +67,7 @@ type applierV3 interface { RoleGrant(ua *pb.AuthRoleGrantRequest) (*pb.AuthRoleGrantResponse, error) RoleGet(ua *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) RoleRevoke(ua *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) + RoleDelete(ua *pb.AuthRoleDeleteRequest) (*pb.AuthRoleDeleteResponse, error) } type applierV3backend struct { @@ -126,6 +127,8 @@ func (s *EtcdServer) applyV3Request(r *pb.InternalRaftRequest) *applyResult { ar.resp, ar.err = s.applyV3.RoleGet(r.AuthRoleGet) case r.AuthRoleRevoke != nil: ar.resp, ar.err = s.applyV3.RoleRevoke(r.AuthRoleRevoke) + case r.AuthRoleDelete != nil: + ar.resp, ar.err = s.applyV3.RoleDelete(r.AuthRoleDelete) default: panic("not implemented") } @@ -568,6 +571,10 @@ func (a *applierV3backend) RoleRevoke(r *pb.AuthRoleRevokeRequest) (*pb.AuthRole return a.s.AuthStore().RoleRevoke(r) } +func (a *applierV3backend) RoleDelete(r *pb.AuthRoleDeleteRequest) (*pb.AuthRoleDeleteResponse, error) { + return a.s.AuthStore().RoleDelete(r) +} + type quotaApplierV3 struct { applierV3 q Quota diff --git a/etcdserver/etcdserverpb/raft_internal.pb.go b/etcdserver/etcdserverpb/raft_internal.pb.go index e00abdf7e..ce91e5945 100644 --- a/etcdserver/etcdserverpb/raft_internal.pb.go +++ b/etcdserver/etcdserverpb/raft_internal.pb.go @@ -57,6 +57,7 @@ type InternalRaftRequest struct { AuthRoleGet *AuthRoleGetRequest `protobuf:"bytes,1020,opt,name=auth_role_get,json=authRoleGet" json:"auth_role_get,omitempty"` AuthUserRevoke *AuthUserRevokeRequest `protobuf:"bytes,1021,opt,name=auth_user_revoke,json=authUserRevoke" json:"auth_user_revoke,omitempty"` AuthRoleRevoke *AuthRoleRevokeRequest `protobuf:"bytes,1022,opt,name=auth_role_revoke,json=authRoleRevoke" json:"auth_role_revoke,omitempty"` + AuthRoleDelete *AuthRoleDeleteRequest `protobuf:"bytes,1023,opt,name=auth_role_delete,json=authRoleDelete" json:"auth_role_delete,omitempty"` } func (m *InternalRaftRequest) Reset() { *m = InternalRaftRequest{} } @@ -384,6 +385,18 @@ func (m *InternalRaftRequest) MarshalTo(data []byte) (int, error) { } i += n23 } + if m.AuthRoleDelete != nil { + data[i] = 0xfa + i++ + data[i] = 0x3f + i++ + i = encodeVarintRaftInternal(data, i, uint64(m.AuthRoleDelete.Size())) + n24, err := m.AuthRoleDelete.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n24 + } return i, nil } @@ -543,6 +556,10 @@ func (m *InternalRaftRequest) Size() (n int) { l = m.AuthRoleRevoke.Size() n += 2 + l + sovRaftInternal(uint64(l)) } + if m.AuthRoleDelete != nil { + l = m.AuthRoleDelete.Size() + n += 2 + l + sovRaftInternal(uint64(l)) + } return n } @@ -1470,6 +1487,39 @@ func (m *InternalRaftRequest) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 1023: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AuthRoleDelete", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftInternal + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRaftInternal + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AuthRoleDelete == nil { + m.AuthRoleDelete = &AuthRoleDeleteRequest{} + } + if err := m.AuthRoleDelete.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRaftInternal(data[iNdEx:]) @@ -1647,47 +1697,47 @@ var ( ) var fileDescriptorRaftInternal = []byte{ - // 659 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x95, 0x5b, 0x6f, 0xd3, 0x30, - 0x14, 0xc7, 0x59, 0x77, 0x77, 0xdb, 0x6d, 0xf2, 0x00, 0x99, 0x22, 0x8d, 0x51, 0x84, 0x84, 0x40, - 0x1a, 0x68, 0x7b, 0xe4, 0x01, 0xca, 0x3a, 0xc6, 0x04, 0x42, 0x53, 0x04, 0xcf, 0x95, 0x97, 0x1c, - 0xb2, 0x8a, 0x34, 0x09, 0x8e, 0x3b, 0xc6, 0x57, 0xe2, 0x93, 0xec, 0x91, 0x8f, 0x00, 0x3c, 0xf1, - 0xce, 0xfd, 0x2a, 0x7c, 0x8b, 0x33, 0xaf, 0x6e, 0x1f, 0x2a, 0x25, 0x7f, 0xff, 0xcf, 0xef, 0x1c, - 0xdb, 0xff, 0xa8, 0x68, 0x95, 0xd1, 0x17, 0xbc, 0xd7, 0x4f, 0x39, 0xb0, 0x94, 0x26, 0x1b, 0x39, - 0xcb, 0x78, 0x86, 0x1b, 0xc0, 0xc3, 0xa8, 0x00, 0x76, 0x04, 0x2c, 0x3f, 0x68, 0x9d, 0x8f, 0xb3, - 0x38, 0x53, 0x0b, 0xb7, 0xe5, 0x93, 0xf6, 0xb4, 0x56, 0x2a, 0x8f, 0x51, 0x16, 0x59, 0x1e, 0xea, - 0xc7, 0xf6, 0x5d, 0xd4, 0x0c, 0xe0, 0xd5, 0x10, 0x0a, 0xfe, 0x08, 0x68, 0x04, 0x0c, 0x2f, 0xa1, - 0xda, 0x5e, 0x97, 0x4c, 0xad, 0x4f, 0xdd, 0x98, 0x09, 0x6a, 0xfd, 0x2e, 0x6e, 0xa1, 0x85, 0x61, - 0x21, 0x5b, 0x0e, 0x80, 0xd4, 0x84, 0xba, 0x18, 0xd8, 0xf7, 0xf6, 0xdb, 0x06, 0x5a, 0xdd, 0x33, - 0x03, 0x05, 0x62, 0x3a, 0x43, 0x1a, 0x61, 0x5c, 0x47, 0xb5, 0xa3, 0x4d, 0x55, 0x5d, 0xdf, 0xbc, - 0xb0, 0x71, 0x7a, 0xe4, 0x0d, 0x53, 0x12, 0x08, 0x03, 0xbe, 0x83, 0x66, 0x19, 0x4d, 0x63, 0x20, - 0xd3, 0xca, 0xd9, 0x3a, 0xe3, 0x94, 0x4b, 0xa5, 0x5d, 0x1b, 0xf1, 0x4d, 0x34, 0x9d, 0x0f, 0x39, - 0x99, 0x51, 0x7e, 0xe2, 0xfa, 0xf7, 0x87, 0xe5, 0x3c, 0x81, 0x34, 0xe1, 0x6d, 0xd4, 0x88, 0x20, - 0x01, 0x0e, 0x3d, 0xdd, 0x64, 0x56, 0x15, 0xad, 0xbb, 0x45, 0x5d, 0xe5, 0x70, 0x5a, 0xd5, 0xa3, - 0x4a, 0x93, 0x0d, 0xf9, 0x71, 0x4a, 0xe6, 0x7c, 0x0d, 0x9f, 0x1d, 0xa7, 0xb6, 0xa1, 0x30, 0xe1, - 0x7b, 0x08, 0x85, 0xd9, 0x20, 0xa7, 0x21, 0xef, 0x67, 0x29, 0x99, 0x57, 0x25, 0x57, 0xdc, 0x92, - 0x6d, 0xbb, 0x5e, 0x56, 0x9e, 0x2a, 0xc1, 0xf7, 0x51, 0x3d, 0x01, 0x5a, 0x40, 0x2f, 0x16, 0x13, - 0x73, 0xb2, 0xe0, 0x23, 0x3c, 0x91, 0x86, 0x5d, 0xb9, 0x6e, 0x09, 0x89, 0x95, 0xe4, 0x9e, 0x35, - 0x81, 0xc1, 0x51, 0xf6, 0x12, 0xc8, 0xa2, 0x6f, 0xcf, 0x0a, 0x11, 0x28, 0x83, 0xdd, 0x73, 0x52, - 0x69, 0xf2, 0x5a, 0x68, 0x42, 0xd9, 0x80, 0x20, 0xdf, 0xb5, 0x74, 0xe4, 0x92, 0xbd, 0x16, 0x65, - 0xc4, 0x5b, 0x68, 0xee, 0x50, 0xa5, 0x89, 0x44, 0xaa, 0xe4, 0xb2, 0xf7, 0xce, 0x75, 0xe0, 0x02, - 0x63, 0xc5, 0x1d, 0x54, 0xa7, 0x43, 0x7e, 0xd8, 0x83, 0x94, 0x1e, 0x24, 0x40, 0x3e, 0x79, 0x0f, - 0xac, 0x23, 0x1c, 0x3b, 0xca, 0x60, 0xb7, 0x4b, 0xad, 0x84, 0xbb, 0xa8, 0xa1, 0x10, 0x51, 0xbf, - 0x50, 0x8c, 0xcf, 0xf3, 0xbe, 0xfd, 0x4a, 0x46, 0x57, 0x3b, 0xec, 0x7e, 0x69, 0xa5, 0xe1, 0x1d, - 0xd4, 0x54, 0x14, 0x19, 0xf3, 0x1e, 0x8d, 0x22, 0xf2, 0x65, 0x2c, 0xe6, 0xb9, 0x78, 0xeb, 0x44, - 0x91, 0x83, 0x31, 0x1a, 0x7e, 0x8a, 0x56, 0x2a, 0x8c, 0xce, 0x10, 0xf9, 0xaa, 0x49, 0xd7, 0xfc, - 0x24, 0x13, 0x3e, 0x03, 0x5b, 0xa2, 0x8e, 0x8c, 0x63, 0x74, 0xa9, 0xe2, 0x85, 0x87, 0x32, 0x8e, - 0xbd, 0x9c, 0x16, 0xc5, 0xeb, 0x8c, 0x45, 0xe4, 0x9b, 0x06, 0xdf, 0xf2, 0x83, 0xb7, 0x95, 0x7b, - 0xdf, 0x98, 0xcb, 0x06, 0x17, 0xa9, 0x77, 0x19, 0x3f, 0x46, 0xcb, 0x55, 0x23, 0x1d, 0xbd, 0xef, - 0x1a, 0xdf, 0xf6, 0xe3, 0x9d, 0xf8, 0x35, 0xe9, 0x69, 0xd5, 0x1e, 0x26, 0xcb, 0x12, 0x50, 0x87, - 0xf9, 0x63, 0xec, 0x61, 0x06, 0xc2, 0x72, 0xf6, 0x30, 0x8d, 0x66, 0x67, 0x52, 0x18, 0x3d, 0xd3, - 0xcf, 0xb1, 0x33, 0xc9, 0xa2, 0xd1, 0x99, 0xac, 0x8a, 0x1f, 0xea, 0x98, 0x40, 0xca, 0xfb, 0x21, - 0x15, 0xb7, 0xf2, 0x4b, 0x93, 0xae, 0x8e, 0x92, 0x4a, 0x4b, 0x09, 0x72, 0xea, 0xdc, 0xa0, 0xc4, - 0xc0, 0xc9, 0xef, 0x89, 0x41, 0xd9, 0x05, 0x3e, 0x12, 0x14, 0xa1, 0xb9, 0x47, 0x24, 0x31, 0x7f, - 0x26, 0x1e, 0xd1, 0x59, 0x8c, 0xd1, 0xdc, 0xbc, 0x99, 0xef, 0xfd, 0xef, 0xc4, 0xbc, 0xb9, 0xdf, - 0xbc, 0xcd, 0x9b, 0xf9, 0xec, 0x4b, 0x9e, 0x1a, 0xcb, 0xf0, 0xfe, 0x8d, 0xe5, 0xc9, 0x29, 0x3c, - 0xbc, 0x4a, 0x6e, 0x2f, 0xa3, 0xe6, 0xce, 0x20, 0xe7, 0x6f, 0x02, 0x28, 0xf2, 0x2c, 0x2d, 0xe0, - 0xc1, 0xca, 0xc9, 0x87, 0xb5, 0x73, 0x27, 0x1f, 0xd7, 0xa6, 0xde, 0x89, 0xdf, 0x7b, 0xf1, 0x3b, - 0x98, 0x53, 0xff, 0x49, 0x5b, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x3d, 0x04, 0x90, 0xdc, 0xeb, - 0x06, 0x00, 0x00, + // 669 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x95, 0x4b, 0x6f, 0x13, 0x3f, + 0x14, 0xc5, 0xff, 0x4d, 0xdf, 0x4e, 0xd2, 0x56, 0xee, 0x1f, 0x64, 0x82, 0x54, 0x4a, 0x10, 0x12, + 0x02, 0xa9, 0xa0, 0x76, 0xc9, 0x02, 0x42, 0x53, 0x4a, 0x05, 0x42, 0xd5, 0x08, 0xd6, 0x91, 0x3b, + 0x73, 0x99, 0x46, 0x4c, 0x66, 0x06, 0x8f, 0x53, 0xca, 0x37, 0xec, 0x92, 0x8f, 0x00, 0xac, 0xd8, + 0xf3, 0x2e, 0x4f, 0xbf, 0xc6, 0x53, 0x37, 0x4e, 0x16, 0x91, 0x92, 0xe3, 0x73, 0x7f, 0xf7, 0xda, + 0x3e, 0x56, 0xd0, 0x2a, 0xa3, 0x2f, 0x78, 0xaf, 0x9f, 0x72, 0x60, 0x29, 0x4d, 0x36, 0x72, 0x96, + 0xf1, 0x0c, 0x37, 0x80, 0x87, 0x51, 0x01, 0xec, 0x08, 0x58, 0x7e, 0xd0, 0xfa, 0x3f, 0xce, 0xe2, + 0x4c, 0x2d, 0xdc, 0x96, 0xdf, 0xb4, 0xa7, 0xb5, 0x52, 0x79, 0x8c, 0xb2, 0xc8, 0xf2, 0x50, 0x7f, + 0x6d, 0xdf, 0x45, 0xcd, 0x00, 0x5e, 0x0d, 0xa1, 0xe0, 0x8f, 0x80, 0x46, 0xc0, 0xf0, 0x12, 0xaa, + 0xed, 0x75, 0xc9, 0xd4, 0xfa, 0xd4, 0x8d, 0x99, 0xa0, 0xd6, 0xef, 0xe2, 0x16, 0x5a, 0x18, 0x16, + 0xb2, 0xe5, 0x00, 0x48, 0x4d, 0xa8, 0x8b, 0x81, 0xfd, 0xdd, 0x3e, 0x6d, 0xa0, 0xd5, 0x3d, 0x33, + 0x50, 0x20, 0xa6, 0x33, 0xa4, 0x11, 0xc6, 0x75, 0x54, 0x3b, 0xda, 0x54, 0xd5, 0xf5, 0xcd, 0x0b, + 0x1b, 0x67, 0x47, 0xde, 0x30, 0x25, 0x81, 0x30, 0xe0, 0x3b, 0x68, 0x96, 0xd1, 0x34, 0x06, 0x32, + 0xad, 0x9c, 0xad, 0x73, 0x4e, 0xb9, 0x54, 0xda, 0xb5, 0x11, 0xdf, 0x44, 0xd3, 0xf9, 0x90, 0x93, + 0x19, 0xe5, 0x27, 0xae, 0x7f, 0x7f, 0x58, 0xce, 0x13, 0x48, 0x13, 0xde, 0x46, 0x8d, 0x08, 0x12, + 0xe0, 0xd0, 0xd3, 0x4d, 0x66, 0x55, 0xd1, 0xba, 0x5b, 0xd4, 0x55, 0x0e, 0xa7, 0x55, 0x3d, 0xaa, + 0x34, 0xd9, 0x90, 0x1f, 0xa7, 0x64, 0xce, 0xd7, 0xf0, 0xd9, 0x71, 0x6a, 0x1b, 0x0a, 0x13, 0xbe, + 0x87, 0x50, 0x98, 0x0d, 0x72, 0x1a, 0xf2, 0x7e, 0x96, 0x92, 0x79, 0x55, 0x72, 0xc5, 0x2d, 0xd9, + 0xb6, 0xeb, 0x65, 0xe5, 0x99, 0x12, 0x7c, 0x1f, 0xd5, 0x13, 0xa0, 0x05, 0xf4, 0x62, 0x31, 0x31, + 0x27, 0x0b, 0x3e, 0xc2, 0x13, 0x69, 0xd8, 0x95, 0xeb, 0x96, 0x90, 0x58, 0x49, 0xee, 0x59, 0x13, + 0x18, 0x1c, 0x65, 0x2f, 0x81, 0x2c, 0xfa, 0xf6, 0xac, 0x10, 0x81, 0x32, 0xd8, 0x3d, 0x27, 0x95, + 0x26, 0xaf, 0x85, 0x26, 0x94, 0x0d, 0x08, 0xf2, 0x5d, 0x4b, 0x47, 0x2e, 0xd9, 0x6b, 0x51, 0x46, + 0xbc, 0x85, 0xe6, 0x0e, 0x55, 0x9a, 0x48, 0xa4, 0x4a, 0x2e, 0x7b, 0xef, 0x5c, 0x07, 0x2e, 0x30, + 0x56, 0xdc, 0x41, 0x75, 0x3a, 0xe4, 0x87, 0x3d, 0x48, 0xe9, 0x41, 0x02, 0xe4, 0xa3, 0xf7, 0xc0, + 0x3a, 0xc2, 0xb1, 0xa3, 0x0c, 0x76, 0xbb, 0xd4, 0x4a, 0xb8, 0x8b, 0x1a, 0x0a, 0x11, 0xf5, 0x0b, + 0xc5, 0xf8, 0x34, 0xef, 0xdb, 0xaf, 0x64, 0x74, 0xb5, 0xc3, 0xee, 0x97, 0x56, 0x1a, 0xde, 0x41, + 0x4d, 0x45, 0x91, 0x31, 0xef, 0xd1, 0x28, 0x22, 0x9f, 0xc7, 0x62, 0x9e, 0x8b, 0x5f, 0x9d, 0x28, + 0x72, 0x30, 0x46, 0xc3, 0x4f, 0xd1, 0x4a, 0x85, 0xd1, 0x19, 0x22, 0x5f, 0x34, 0xe9, 0x9a, 0x9f, + 0x64, 0xc2, 0x67, 0x60, 0x4b, 0xd4, 0x91, 0x71, 0x8c, 0x2e, 0x55, 0xbc, 0xf0, 0x50, 0xc6, 0xb1, + 0x97, 0xd3, 0xa2, 0x78, 0x9d, 0xb1, 0x88, 0x7c, 0xd5, 0xe0, 0x5b, 0x7e, 0xf0, 0xb6, 0x72, 0xef, + 0x1b, 0x73, 0xd9, 0xe0, 0x22, 0xf5, 0x2e, 0xe3, 0xc7, 0x68, 0xb9, 0x6a, 0xa4, 0xa3, 0xf7, 0x4d, + 0xe3, 0xdb, 0x7e, 0xbc, 0x13, 0xbf, 0x26, 0x3d, 0xab, 0xda, 0xc3, 0x64, 0x59, 0x02, 0xea, 0x30, + 0xbf, 0x8f, 0x3d, 0xcc, 0x40, 0x58, 0xce, 0x1f, 0xa6, 0xd1, 0xec, 0x4c, 0x0a, 0xa3, 0x67, 0xfa, + 0x31, 0x76, 0x26, 0x59, 0x34, 0x3a, 0x93, 0x55, 0xf1, 0x43, 0x1d, 0x13, 0x48, 0x79, 0x3f, 0xa4, + 0xe2, 0x56, 0x4e, 0x35, 0xe9, 0xea, 0x28, 0xa9, 0xb4, 0x94, 0x20, 0xa7, 0xce, 0x0d, 0x4a, 0x0c, + 0x9c, 0xfc, 0x9c, 0x18, 0x94, 0x5d, 0xe0, 0x23, 0x41, 0x11, 0x9a, 0x7b, 0x44, 0x12, 0xf3, 0x6b, + 0xe2, 0x11, 0x9d, 0xc7, 0x18, 0xcd, 0xcd, 0x9b, 0x79, 0xef, 0xbf, 0x27, 0xe6, 0xcd, 0x7d, 0xf3, + 0x36, 0x6f, 0xe6, 0xd9, 0x97, 0x3c, 0x35, 0x96, 0xe1, 0xfd, 0x19, 0xcb, 0x93, 0x53, 0x78, 0x78, + 0x95, 0xec, 0xf2, 0xcc, 0x7b, 0xf8, 0x3b, 0x91, 0xe7, 0x79, 0x0f, 0x95, 0xdc, 0x5e, 0x46, 0xcd, + 0x9d, 0x41, 0xce, 0xdf, 0x04, 0x50, 0xe4, 0x59, 0x5a, 0xc0, 0x83, 0x95, 0x93, 0xf7, 0x6b, 0xff, + 0x9d, 0x7c, 0x58, 0x9b, 0x7a, 0x2b, 0x3e, 0xef, 0xc4, 0xe7, 0x60, 0x4e, 0xfd, 0xc7, 0x6d, 0xfd, + 0x0b, 0x00, 0x00, 0xff, 0xff, 0x67, 0xc7, 0xcd, 0x49, 0x3b, 0x07, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/raft_internal.proto b/etcdserver/etcdserverpb/raft_internal.proto index 37208adff..98ef2e44e 100644 --- a/etcdserver/etcdserverpb/raft_internal.proto +++ b/etcdserver/etcdserverpb/raft_internal.proto @@ -48,6 +48,7 @@ message InternalRaftRequest { AuthRoleGetRequest auth_role_get = 1020; AuthUserRevokeRequest auth_user_revoke = 1021; AuthRoleRevokeRequest auth_role_revoke = 1022; + AuthRoleDeleteRequest auth_role_delete = 1023; } message EmptyResponse { diff --git a/etcdserver/etcdserverpb/rpc.pb.go b/etcdserver/etcdserverpb/rpc.pb.go index 4e06d2d9a..aac87c6d8 100644 --- a/etcdserver/etcdserverpb/rpc.pb.go +++ b/etcdserver/etcdserverpb/rpc.pb.go @@ -1622,6 +1622,7 @@ func (*AuthRoleGetRequest) ProtoMessage() {} func (*AuthRoleGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{54} } type AuthRoleDeleteRequest struct { + Role string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"` } func (m *AuthRoleDeleteRequest) Reset() { *m = AuthRoleDeleteRequest{} } @@ -5362,6 +5363,12 @@ func (m *AuthRoleDeleteRequest) MarshalTo(data []byte) (int, error) { _ = i var l int _ = l + if len(m.Role) > 0 { + data[i] = 0xa + i++ + i = encodeVarintRpc(data, i, uint64(len(m.Role))) + i += copy(data[i:], m.Role) + } return i, nil } @@ -6719,6 +6726,10 @@ func (m *AuthRoleGetRequest) Size() (n int) { func (m *AuthRoleDeleteRequest) Size() (n int) { var l int _ = l + l = len(m.Role) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } return n } @@ -12719,6 +12730,35 @@ func (m *AuthRoleDeleteRequest) Unmarshal(data []byte) error { return fmt.Errorf("proto: AuthRoleDeleteRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Role", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Role = string(data[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRpc(data[iNdEx:]) @@ -14317,169 +14357,169 @@ var ( ) var fileDescriptorRpc = []byte{ - // 2617 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x72, 0x1b, 0xc7, - 0xf1, 0x27, 0x3e, 0x08, 0x10, 0x0d, 0x10, 0xa2, 0x86, 0x94, 0x4c, 0x41, 0x1f, 0x96, 0x47, 0x92, - 0xad, 0xff, 0xdf, 0x0e, 0x15, 0x33, 0xce, 0x21, 0x15, 0x47, 0x2e, 0x90, 0x80, 0x25, 0x86, 0x14, - 0x29, 0x2f, 0x41, 0x2a, 0x3e, 0xb1, 0x16, 0xc0, 0x88, 0x44, 0x09, 0x5f, 0xde, 0x5d, 0x50, 0xa2, - 0xaa, 0x72, 0x49, 0x55, 0x9e, 0xc0, 0x39, 0xa5, 0xf2, 0x02, 0x79, 0x80, 0xbc, 0x43, 0x2a, 0x97, - 0xe4, 0x09, 0x92, 0x54, 0x4e, 0xa9, 0x5c, 0x72, 0x4f, 0x2e, 0xe9, 0xf9, 0xda, 0x9d, 0x1d, 0x2c, - 0x20, 0x39, 0xab, 0x1c, 0x44, 0xee, 0xf4, 0x74, 0xff, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7, 0xbb, 0x29, - 0x28, 0x79, 0xe3, 0xce, 0xc6, 0xd8, 0x1b, 0x05, 0x23, 0x52, 0x61, 0x41, 0xa7, 0xeb, 0x33, 0xef, - 0x9c, 0x79, 0xe3, 0x76, 0x6d, 0xed, 0x74, 0x74, 0x3a, 0x12, 0x13, 0x0f, 0xf8, 0x97, 0xe4, 0xa9, - 0x5d, 0xe3, 0x3c, 0x0f, 0x06, 0xe7, 0x9d, 0x8e, 0xf8, 0x31, 0x6e, 0x3f, 0x78, 0x71, 0xae, 0xa6, - 0xae, 0x8b, 0x29, 0x77, 0x12, 0x9c, 0x89, 0x1f, 0x38, 0xc5, 0x7f, 0xc9, 0x49, 0xfa, 0xcb, 0x0c, - 0x54, 0x1d, 0xe6, 0x8f, 0x47, 0x43, 0x9f, 0x3d, 0x66, 0x6e, 0x97, 0x79, 0xe4, 0x26, 0x40, 0xa7, - 0x3f, 0xf1, 0x03, 0xe6, 0x9d, 0xf4, 0xba, 0xeb, 0x99, 0xdb, 0x99, 0xfb, 0x79, 0xa7, 0xa4, 0x28, - 0x3b, 0x5d, 0x72, 0x1d, 0x4a, 0x03, 0x36, 0x68, 0xcb, 0xd9, 0xac, 0x98, 0x5d, 0x92, 0x04, 0x9c, - 0xac, 0xc1, 0x92, 0xc7, 0xce, 0x7b, 0x7e, 0x6f, 0x34, 0x5c, 0xcf, 0xe1, 0x5c, 0xce, 0x09, 0xc7, - 0x5c, 0xd0, 0x73, 0x9f, 0x07, 0x27, 0x08, 0x33, 0x58, 0xcf, 0x4b, 0x41, 0x4e, 0x68, 0xe1, 0x98, - 0xfe, 0x2a, 0x07, 0x15, 0xc7, 0x1d, 0x9e, 0x32, 0x87, 0x7d, 0x33, 0x61, 0x7e, 0x40, 0x56, 0x20, - 0xf7, 0x82, 0x5d, 0x88, 0xe5, 0x2b, 0x0e, 0xff, 0x94, 0xf2, 0xc8, 0x71, 0xc2, 0x86, 0x72, 0xe1, - 0x0a, 0x97, 0x47, 0x42, 0x73, 0xd8, 0x25, 0x6b, 0xb0, 0xd8, 0xef, 0x0d, 0x7a, 0x81, 0x5a, 0x55, - 0x0e, 0x62, 0xea, 0xe4, 0x2d, 0x75, 0xb6, 0x01, 0xfc, 0x91, 0x17, 0x9c, 0x8c, 0x3c, 0xdc, 0xf4, - 0xfa, 0x22, 0xce, 0x56, 0x37, 0xef, 0x6e, 0x98, 0xa6, 0xde, 0x30, 0x15, 0xda, 0x38, 0x44, 0xe6, - 0x03, 0xce, 0xeb, 0x94, 0x7c, 0xfd, 0x49, 0xbe, 0x84, 0xb2, 0x00, 0x09, 0x5c, 0xef, 0x94, 0x05, - 0xeb, 0x05, 0x81, 0x72, 0xef, 0x0d, 0x28, 0x2d, 0xc1, 0xec, 0x88, 0xe5, 0xe5, 0x37, 0xa1, 0x50, - 0x41, 0xfe, 0x9e, 0xdb, 0xef, 0xbd, 0x76, 0xdb, 0x7d, 0xb6, 0x5e, 0x44, 0xa0, 0x25, 0x27, 0x46, - 0xa3, 0x1b, 0x50, 0x0a, 0x75, 0x20, 0x4b, 0x90, 0xdf, 0x3f, 0xd8, 0x6f, 0xae, 0x2c, 0x10, 0x80, - 0x42, 0xfd, 0x70, 0xbb, 0xb9, 0xdf, 0x58, 0xc9, 0x90, 0x32, 0x14, 0x1b, 0x4d, 0x39, 0xc8, 0xd2, - 0x2d, 0x80, 0x68, 0x35, 0x52, 0x84, 0xdc, 0x6e, 0xf3, 0x6b, 0xe4, 0x47, 0x9e, 0xe3, 0xa6, 0x73, - 0xb8, 0x73, 0xb0, 0x8f, 0x02, 0x28, 0xbc, 0xed, 0x34, 0xeb, 0xad, 0xe6, 0x4a, 0x96, 0x73, 0x3c, - 0x39, 0x68, 0xac, 0xe4, 0x48, 0x09, 0x16, 0x8f, 0xeb, 0x7b, 0x47, 0xcd, 0x95, 0x3c, 0xfd, 0x39, - 0x2c, 0x2b, 0xf5, 0xa5, 0x8b, 0x90, 0xcf, 0xa0, 0x70, 0x26, 0xdc, 0x44, 0x9c, 0x4c, 0x79, 0xf3, - 0x86, 0xb5, 0xd7, 0x98, 0x2b, 0x39, 0x8a, 0x17, 0xb7, 0x97, 0x7b, 0x71, 0xee, 0xe3, 0xa1, 0xe5, - 0x50, 0x64, 0x65, 0x43, 0x7a, 0xe8, 0xc6, 0x2e, 0xbb, 0x38, 0x76, 0xfb, 0x13, 0xe6, 0xf0, 0x49, - 0x42, 0x20, 0x3f, 0x18, 0x79, 0x4c, 0x1c, 0xe0, 0x92, 0x23, 0xbe, 0xe9, 0x4f, 0x01, 0x9e, 0x4e, - 0x82, 0xd9, 0x2e, 0x81, 0xa7, 0x7e, 0xce, 0x11, 0x94, 0x3b, 0xc8, 0x81, 0xf0, 0x05, 0xe6, 0xfa, - 0x2c, 0xf4, 0x05, 0x3e, 0xa0, 0xdb, 0x50, 0x16, 0x58, 0x69, 0x36, 0x82, 0x20, 0xa4, 0xc1, 0xfa, - 0x2c, 0x60, 0x29, 0x7c, 0x95, 0x32, 0x58, 0x8d, 0x81, 0xa4, 0x32, 0xed, 0x3a, 0x14, 0xbb, 0x02, - 0x4c, 0xae, 0x93, 0x73, 0xf4, 0x90, 0xfe, 0x33, 0x83, 0x57, 0x4a, 0x6a, 0x78, 0x34, 0xe4, 0x1e, - 0x5f, 0x87, 0x65, 0x4f, 0x8e, 0x4f, 0x84, 0x2e, 0x6a, 0x9d, 0xda, 0x6c, 0x77, 0x7d, 0xbc, 0xe0, - 0x54, 0x94, 0x88, 0x20, 0x93, 0x1f, 0x43, 0x59, 0x43, 0x8c, 0x27, 0x81, 0x58, 0xb1, 0xbc, 0xb9, - 0x1e, 0x07, 0x88, 0x4e, 0x0c, 0xc5, 0x41, 0xb1, 0x23, 0x91, 0xb4, 0x60, 0x4d, 0x0b, 0x4b, 0x1d, - 0x95, 0x1a, 0x39, 0x81, 0x72, 0x3b, 0x8e, 0x32, 0x6d, 0x66, 0x44, 0x23, 0x4a, 0xde, 0x98, 0xdc, - 0x2a, 0x41, 0x51, 0x51, 0xe9, 0xbf, 0x32, 0xe8, 0xae, 0xca, 0x4c, 0x72, 0xcb, 0x0d, 0xa8, 0x7a, - 0x8a, 0x10, 0xdb, 0xf3, 0xf5, 0xc4, 0x3d, 0x2b, 0x03, 0x2f, 0x38, 0xcb, 0x5a, 0x48, 0xee, 0xfa, - 0x21, 0x54, 0x42, 0x94, 0x68, 0xdb, 0xd7, 0x12, 0xb6, 0x1d, 0x22, 0x94, 0xb5, 0x00, 0xdf, 0xf8, - 0x33, 0xb8, 0x12, 0xca, 0x27, 0xec, 0xfc, 0x83, 0x39, 0x3b, 0x0f, 0x01, 0x57, 0x35, 0x82, 0xb9, - 0x77, 0xe0, 0xf1, 0x4d, 0x92, 0xe9, 0xaf, 0x73, 0x50, 0xdc, 0x1e, 0x0d, 0xc6, 0xae, 0xc7, 0x8f, - 0xa9, 0x80, 0xf4, 0x49, 0x3f, 0x10, 0xdb, 0xad, 0x6e, 0xde, 0x89, 0xaf, 0xa0, 0xd8, 0xf4, 0x6f, - 0x47, 0xb0, 0x3a, 0x4a, 0x84, 0x0b, 0xab, 0x70, 0x96, 0x7d, 0x0b, 0x61, 0x15, 0xcc, 0x94, 0x88, - 0xbe, 0x0a, 0xb9, 0xe8, 0x2a, 0xd4, 0xa0, 0x88, 0x82, 0x51, 0x08, 0xc6, 0xbd, 0x68, 0x02, 0xf9, - 0x3f, 0xb8, 0xd4, 0xf1, 0x98, 0xcb, 0xed, 0xa1, 0xc3, 0xf4, 0xa2, 0xe2, 0xa9, 0xca, 0x09, 0x47, - 0x87, 0xeb, 0x3b, 0x50, 0x19, 0x8c, 0xba, 0x11, 0x5f, 0x41, 0xf1, 0x95, 0x91, 0x1a, 0x32, 0x5d, - 0xd5, 0xf1, 0x80, 0xc7, 0xcf, 0x0a, 0xce, 0xca, 0x21, 0xfd, 0x14, 0x96, 0x63, 0x7b, 0xe5, 0x21, - 0xae, 0xf9, 0xd5, 0x51, 0x7d, 0x4f, 0xc6, 0xc3, 0x47, 0x22, 0x04, 0x3a, 0x18, 0x0f, 0x31, 0xac, - 0xee, 0x35, 0x0f, 0x0f, 0x31, 0x7a, 0x7e, 0x1e, 0x8a, 0xa8, 0x00, 0x6a, 0xc4, 0xcd, 0x05, 0x23, - 0x6e, 0x66, 0x74, 0xdc, 0xcc, 0x46, 0x71, 0x33, 0xb7, 0x55, 0x85, 0x8a, 0x34, 0xc8, 0xc9, 0x84, - 0xfb, 0x21, 0xfd, 0x6d, 0x06, 0xa0, 0xf5, 0x6a, 0xa8, 0x03, 0xc6, 0x03, 0x28, 0x76, 0x24, 0x38, - 0x1e, 0x10, 0x8f, 0x89, 0x57, 0x12, 0x6d, 0xec, 0x68, 0x2e, 0x8c, 0x0d, 0x45, 0x7f, 0xd2, 0xe9, - 0x30, 0x5f, 0x07, 0x51, 0xfb, 0xd2, 0x1a, 0xf7, 0xdc, 0xd1, 0xac, 0x5c, 0xea, 0xb9, 0xdb, 0xeb, - 0x4f, 0x44, 0x54, 0x7d, 0xa3, 0x94, 0x62, 0xa5, 0xbf, 0xc9, 0x40, 0x59, 0xe8, 0x9a, 0x2a, 0x2e, - 0xdd, 0x80, 0x92, 0x50, 0x83, 0x75, 0x55, 0x64, 0x5a, 0x72, 0x22, 0x02, 0xf9, 0x11, 0xc6, 0x47, - 0x25, 0xe7, 0x2b, 0xdd, 0xae, 0x27, 0xc3, 0x4a, 0xe5, 0x22, 0x6e, 0xba, 0x0b, 0x97, 0x85, 0x79, - 0x3a, 0x01, 0x9f, 0x50, 0x06, 0x35, 0x1f, 0xfa, 0x8c, 0xf5, 0xd0, 0xe3, 0xdc, 0xf8, 0xec, 0xc2, - 0xef, 0x75, 0xdc, 0xbe, 0x52, 0x24, 0x1c, 0xe3, 0x03, 0x43, 0x4c, 0xb0, 0x54, 0x6f, 0xc3, 0x32, - 0x94, 0x1f, 0xbb, 0xfe, 0x99, 0x52, 0x89, 0xfe, 0x0c, 0x2a, 0x72, 0x98, 0xca, 0x8c, 0xf8, 0x2a, - 0x9e, 0x21, 0x8a, 0x50, 0x7c, 0xd9, 0x11, 0xdf, 0xf4, 0x32, 0x5c, 0x3a, 0x1c, 0xba, 0x63, 0xff, - 0x6c, 0xa4, 0x03, 0x2d, 0x4f, 0xe3, 0x56, 0x22, 0x5a, 0xaa, 0x15, 0x3f, 0x82, 0x4b, 0x1e, 0x1b, - 0xb8, 0xbd, 0x61, 0x6f, 0x78, 0x7a, 0xd2, 0xbe, 0x08, 0x98, 0xaf, 0xb2, 0xbc, 0x6a, 0x48, 0xde, - 0xe2, 0x54, 0xae, 0x5a, 0xbb, 0x3f, 0x6a, 0xab, 0xbb, 0x2e, 0xbe, 0xe9, 0xef, 0xf0, 0xcd, 0x79, - 0xe6, 0x06, 0x1d, 0x6d, 0x05, 0xb2, 0x03, 0xd5, 0xf0, 0x86, 0x0b, 0x8a, 0xd2, 0xc5, 0x8a, 0xf6, - 0x42, 0x66, 0x5b, 0xdd, 0x78, 0x1d, 0xed, 0x97, 0x3b, 0x26, 0x41, 0x40, 0xb9, 0xc3, 0x0e, 0xeb, - 0x87, 0x50, 0xd9, 0xd9, 0x50, 0x82, 0xd1, 0x84, 0x32, 0x09, 0x5b, 0x97, 0xa2, 0x97, 0x50, 0xde, - 0xcf, 0x6f, 0x33, 0x40, 0xa6, 0x75, 0xf8, 0xae, 0x49, 0xe8, 0x3d, 0xa8, 0xfa, 0x78, 0xed, 0x83, - 0x13, 0x2b, 0x07, 0x5e, 0x16, 0xd4, 0x30, 0x4a, 0xa1, 0x85, 0x31, 0xf9, 0x3e, 0x45, 0x97, 0xf6, - 0x4f, 0x86, 0xa3, 0xa0, 0xf7, 0xfc, 0x42, 0x44, 0xc6, 0x25, 0xa7, 0xaa, 0xc9, 0xfb, 0x82, 0x4a, - 0x1f, 0x68, 0xa5, 0x4c, 0xe5, 0xc9, 0x35, 0x58, 0x7a, 0xc9, 0xa9, 0x3a, 0x3b, 0xc7, 0x27, 0x5f, - 0x8c, 0x77, 0xba, 0xf4, 0xef, 0xf8, 0x00, 0x2a, 0xf3, 0xa7, 0xf2, 0x01, 0x73, 0x89, 0x6c, 0x6c, - 0x09, 0x9e, 0x6f, 0xc8, 0x63, 0xe9, 0xaa, 0x4c, 0x4d, 0x0f, 0xf9, 0x3d, 0x93, 0x56, 0xc6, 0x29, - 0xb9, 0x9f, 0x70, 0x8c, 0x81, 0x7e, 0xa5, 0x23, 0xef, 0x99, 0x15, 0xe9, 0x9d, 0x4b, 0x8a, 0x1e, - 0x5a, 0xe7, 0x1e, 0x14, 0xd8, 0x39, 0x1b, 0x06, 0xfe, 0x7a, 0x59, 0xc4, 0x85, 0x65, 0x9d, 0x2e, - 0x36, 0x39, 0xd5, 0x51, 0x93, 0xf4, 0x87, 0x70, 0x79, 0x8f, 0xe7, 0x75, 0x8f, 0xd0, 0xfa, 0x66, - 0x86, 0xd8, 0x6a, 0xed, 0x29, 0xab, 0xe4, 0x82, 0xd6, 0x1e, 0xa9, 0x42, 0x76, 0xa7, 0xa1, 0xf6, - 0x90, 0xed, 0x35, 0xe8, 0x2f, 0xf0, 0xa0, 0x4d, 0xb9, 0x54, 0x66, 0xb2, 0xc0, 0xf5, 0xf2, 0xb9, - 0x68, 0x79, 0x4c, 0x45, 0x99, 0xe7, 0x8d, 0x3c, 0x61, 0x90, 0x92, 0x23, 0x07, 0xf4, 0xae, 0xd2, - 0x01, 0xf7, 0x3c, 0x7a, 0x11, 0x3a, 0x9b, 0x44, 0xcb, 0x84, 0xaa, 0xee, 0xc2, 0x6a, 0x8c, 0x2b, - 0x55, 0x70, 0xfa, 0x08, 0xae, 0x08, 0xb0, 0x5d, 0xc6, 0xc6, 0xf5, 0x7e, 0xef, 0x7c, 0xe6, 0xaa, - 0x63, 0xb8, 0x6a, 0x33, 0xfe, 0x6f, 0x6d, 0x44, 0xcf, 0xa0, 0xf0, 0x44, 0xd4, 0x8f, 0x86, 0x2e, - 0x79, 0xc1, 0x8b, 0x11, 0x66, 0xe8, 0x0e, 0x64, 0x76, 0x5f, 0x72, 0xc4, 0xb7, 0x88, 0xe6, 0x8c, - 0x79, 0x47, 0xce, 0x9e, 0x7c, 0x38, 0x4a, 0x4e, 0x38, 0x26, 0xb7, 0x78, 0xe5, 0xda, 0x43, 0xf7, - 0x10, 0xb3, 0x79, 0x31, 0x6b, 0x50, 0xb0, 0x82, 0x5a, 0x91, 0x2b, 0xd5, 0xbb, 0x5d, 0xe3, 0xe5, - 0x08, 0xf1, 0x32, 0x71, 0x3c, 0xfa, 0x12, 0x2e, 0x1b, 0xfc, 0xa9, 0xcc, 0xf0, 0x09, 0x14, 0x64, - 0x91, 0xac, 0x82, 0xd6, 0x5a, 0x5c, 0x4a, 0x2e, 0xe3, 0x28, 0x1e, 0x7a, 0x0f, 0x56, 0x15, 0x85, - 0x0d, 0x46, 0x49, 0x67, 0x25, 0xec, 0x43, 0xf7, 0x60, 0x2d, 0xce, 0x96, 0xca, 0x45, 0xea, 0x7a, - 0xd1, 0xa3, 0x71, 0xd7, 0x88, 0x81, 0xf6, 0xa1, 0x98, 0x06, 0xcb, 0x5a, 0x06, 0x0b, 0x15, 0xd2, - 0x10, 0xa9, 0x14, 0x5a, 0xd5, 0xe6, 0xdf, 0xeb, 0xf9, 0xe1, 0x4b, 0xf7, 0x1a, 0x88, 0x49, 0x4c, - 0x75, 0x28, 0x1b, 0x50, 0x94, 0x06, 0xd7, 0x59, 0x55, 0xf2, 0xa9, 0x68, 0x26, 0xae, 0x50, 0x83, - 0x3d, 0xf7, 0xdc, 0xd3, 0x01, 0x0b, 0x63, 0x0e, 0x4f, 0x21, 0x4c, 0x62, 0xaa, 0x1d, 0xff, 0x11, - 0x9f, 0xcf, 0x7a, 0xdf, 0xf5, 0x06, 0xda, 0xf8, 0x0f, 0xa1, 0x20, 0x73, 0x13, 0x95, 0xc8, 0x7f, - 0x18, 0x87, 0x31, 0x79, 0xe5, 0xa0, 0x2e, 0x33, 0x19, 0x25, 0xc5, 0x0f, 0x4b, 0xf5, 0x66, 0x1a, - 0x56, 0xaf, 0xa6, 0x41, 0xbe, 0x07, 0x8b, 0x2e, 0x17, 0x11, 0x77, 0xb1, 0xba, 0xf9, 0x5e, 0x02, - 0x74, 0xeb, 0x62, 0xcc, 0x1c, 0xc9, 0x45, 0x3f, 0x83, 0xb2, 0xb1, 0x02, 0xcf, 0x7a, 0x1f, 0x35, - 0x5b, 0x98, 0x0a, 0x57, 0x60, 0xa9, 0xbe, 0xdd, 0xda, 0x39, 0x96, 0xc9, 0x70, 0x15, 0xa0, 0xd1, - 0x0c, 0xc7, 0x59, 0xcc, 0x82, 0xa4, 0x94, 0xba, 0xe1, 0xa6, 0x3e, 0x99, 0x59, 0xfa, 0x64, 0xdf, - 0x4a, 0x9f, 0x57, 0xb0, 0xac, 0xb6, 0x9f, 0xca, 0x07, 0x3e, 0x45, 0x0b, 0x73, 0x18, 0xed, 0x02, - 0xd7, 0x12, 0x96, 0xd5, 0xb7, 0x53, 0x32, 0x52, 0xcc, 0x1e, 0x0e, 0x03, 0x37, 0x98, 0xf8, 0xda, - 0x05, 0xfe, 0x90, 0x81, 0xaa, 0xa6, 0xa4, 0x2d, 0xe6, 0x75, 0xad, 0x24, 0x63, 0x5e, 0x58, 0x29, - 0x5d, 0x85, 0x42, 0xb7, 0x7d, 0xd8, 0x7b, 0xad, 0x9b, 0x1a, 0x6a, 0xc4, 0xe9, 0x7d, 0xb9, 0x8e, - 0xec, 0xa8, 0xa9, 0x11, 0x4f, 0xbf, 0x79, 0x6f, 0x6d, 0x67, 0xd8, 0x65, 0xaf, 0xc4, 0x4b, 0x9b, - 0x77, 0x22, 0x82, 0x48, 0x97, 0x55, 0xe7, 0x4d, 0x14, 0x52, 0x66, 0x27, 0x0e, 0x9d, 0xbc, 0x3e, - 0x09, 0xce, 0x9a, 0x43, 0xde, 0x74, 0xd2, 0x3b, 0x5c, 0x03, 0xc2, 0x89, 0x8d, 0x9e, 0x6f, 0x52, - 0x9b, 0xb0, 0xca, 0xa9, 0xe8, 0xf7, 0x98, 0x4c, 0x47, 0x11, 0x43, 0x87, 0xed, 0x8c, 0x15, 0xb6, - 0x5d, 0xdf, 0x7f, 0x39, 0xf2, 0xba, 0x6a, 0x6b, 0xe1, 0x98, 0x36, 0x24, 0xf8, 0x91, 0x1f, 0x0b, - 0xcc, 0xdf, 0x15, 0xe5, 0x7e, 0x84, 0xf2, 0x88, 0x05, 0x73, 0x50, 0xe8, 0xc7, 0x70, 0x45, 0x73, - 0xaa, 0x62, 0x7a, 0x0e, 0xf3, 0x01, 0xdc, 0xd4, 0xcc, 0xdb, 0x67, 0x3c, 0xd1, 0x7b, 0xaa, 0x16, - 0xfc, 0x6f, 0xf5, 0x7c, 0x08, 0x6b, 0xa1, 0x9e, 0x66, 0xee, 0x82, 0x38, 0x13, 0x5f, 0xf9, 0x0b, - 0xe2, 0xf0, 0x6f, 0x4e, 0xf3, 0x46, 0xfd, 0xf0, 0x01, 0xe4, 0xdf, 0xf4, 0x8b, 0x48, 0xfb, 0x78, - 0xfe, 0x90, 0xa4, 0x48, 0x12, 0x80, 0x32, 0x94, 0x83, 0xdf, 0xf3, 0xcd, 0x6d, 0x72, 0xc6, 0x4d, - 0x2a, 0x30, 0x33, 0x06, 0xe6, 0x7b, 0x52, 0x29, 0xce, 0x19, 0x33, 0x29, 0x75, 0xe4, 0x6e, 0x05, - 0x84, 0xb5, 0xdb, 0x29, 0x65, 0x3f, 0x84, 0xfc, 0x98, 0xa9, 0xfb, 0x5f, 0xde, 0x24, 0x1b, 0xb2, - 0x5b, 0xbd, 0xf1, 0x14, 0x69, 0x3d, 0x9f, 0xdf, 0x02, 0x47, 0xcc, 0xd3, 0x9f, 0x44, 0x8b, 0x4d, - 0x59, 0xc0, 0xd6, 0x4c, 0xa7, 0xf0, 0xd2, 0x00, 0xfc, 0x93, 0x07, 0x6c, 0xd3, 0xc1, 0x53, 0x05, - 0xec, 0x5d, 0x79, 0x03, 0xc2, 0x7b, 0x91, 0x0a, 0xac, 0x2d, 0x6d, 0x15, 0x5d, 0xa7, 0x54, 0xb1, - 0x04, 0x53, 0xcf, 0x00, 0x6d, 0xa3, 0x23, 0x89, 0x1c, 0x68, 0x85, 0xc3, 0xbb, 0x96, 0x4a, 0x61, - 0x37, 0x02, 0x13, 0xfe, 0x91, 0x56, 0x5f, 0x7e, 0x60, 0x3a, 0xa9, 0x90, 0x03, 0xba, 0x0f, 0x57, - 0xed, 0xbb, 0x9a, 0x4a, 0xe5, 0x63, 0xb8, 0x35, 0xeb, 0x3a, 0xa7, 0xc2, 0x7d, 0x12, 0xdd, 0xca, - 0x77, 0x50, 0x59, 0x98, 0xdb, 0x7e, 0x27, 0xe9, 0xbf, 0x3a, 0xf6, 0xf0, 0xce, 0xa7, 0x02, 0xf3, - 0x23, 0xb0, 0xf4, 0xc7, 0x1e, 0x5d, 0xfa, 0xdc, 0xdc, 0x4b, 0xaf, 0x2c, 0x62, 0x46, 0x98, 0x77, - 0x71, 0x60, 0x46, 0x60, 0x7a, 0x17, 0x07, 0x66, 0xc6, 0xa4, 0x34, 0x78, 0xff, 0x4f, 0xa1, 0x14, - 0x66, 0x3c, 0xc6, 0x1f, 0x7b, 0xca, 0x50, 0xdc, 0x3f, 0x38, 0x7c, 0x5a, 0xdf, 0xc6, 0x5c, 0x6b, - 0xf3, 0x1f, 0x59, 0xc8, 0xee, 0x1e, 0x93, 0x2d, 0x58, 0x94, 0x6d, 0xea, 0x39, 0x8d, 0xfc, 0xda, - 0xbc, 0x86, 0x37, 0x5d, 0x20, 0x9f, 0x43, 0x8e, 0x37, 0xaa, 0x67, 0x76, 0xf2, 0x6b, 0xb3, 0x9b, - 0xdd, 0x28, 0xdd, 0x82, 0xb2, 0xd1, 0x95, 0x26, 0x6f, 0xec, 0xe4, 0xd7, 0xde, 0xdc, 0xf1, 0x96, - 0x3a, 0xb5, 0x5e, 0x0d, 0x6d, 0x9d, 0xa2, 0x2e, 0xaa, 0xad, 0x93, 0xd1, 0xb3, 0x44, 0xe9, 0x7d, - 0xd5, 0x0d, 0xef, 0x04, 0xe4, 0xfd, 0x84, 0xe6, 0xaa, 0xd9, 0x3d, 0xac, 0xdd, 0x9e, 0xcd, 0xa0, - 0xf1, 0x36, 0x0f, 0x60, 0x51, 0x74, 0x56, 0xc8, 0x97, 0xfa, 0xa3, 0x96, 0xd0, 0x77, 0x9a, 0x61, - 0xee, 0x58, 0x4f, 0x86, 0x2e, 0xdc, 0xcf, 0x7c, 0x3f, 0xb3, 0xf9, 0x6d, 0x16, 0x16, 0x45, 0xa5, - 0x4d, 0xbe, 0x02, 0x88, 0x5a, 0x12, 0xb6, 0xb6, 0x53, 0x4d, 0x0e, 0x5b, 0xdb, 0xe9, 0x6e, 0x86, - 0x3c, 0x11, 0xa3, 0x77, 0x40, 0x92, 0x44, 0x62, 0x4f, 0xa7, 0x7d, 0x22, 0x09, 0x8d, 0x07, 0x44, - 0x75, 0xa1, 0x1a, 0xef, 0x0d, 0x90, 0x3b, 0x09, 0x62, 0x76, 0x8b, 0xa1, 0x76, 0x77, 0x3e, 0x53, - 0xcc, 0x2a, 0x7f, 0xce, 0xe2, 0xb9, 0xc9, 0xbf, 0x35, 0xe3, 0x11, 0x96, 0xc2, 0xf2, 0x9b, 0xdc, - 0x4a, 0x2a, 0xcd, 0xa2, 0xfc, 0xa5, 0xf6, 0xfe, 0xcc, 0xf9, 0x50, 0xfd, 0x67, 0x50, 0x31, 0xcb, - 0x65, 0xf2, 0x41, 0x62, 0xb5, 0x67, 0x56, 0xdc, 0x35, 0x3a, 0x8f, 0x65, 0x1a, 0x58, 0x96, 0xbd, - 0xc9, 0xc0, 0xb1, 0xaa, 0x3a, 0x19, 0x38, 0x5e, 0x35, 0x23, 0x30, 0x7a, 0x46, 0x54, 0xec, 0x92, - 0xc4, 0x2d, 0x1a, 0xb5, 0xb1, 0xed, 0x19, 0xd3, 0x75, 0x32, 0xfa, 0xf1, 0xbf, 0xb3, 0x50, 0x7e, - 0xe2, 0xf6, 0x86, 0x01, 0x1b, 0xf2, 0xe6, 0x1c, 0x8f, 0x1e, 0x22, 0xd0, 0xd8, 0xee, 0x6c, 0x96, - 0x96, 0xb6, 0x3b, 0xc7, 0xea, 0x2e, 0x54, 0xb3, 0x09, 0x05, 0x59, 0xfe, 0x10, 0x8b, 0x31, 0x56, - 0x26, 0xd5, 0x6e, 0x24, 0x4f, 0x9a, 0xbb, 0x8d, 0x2a, 0x69, 0x7b, 0xb7, 0x53, 0x85, 0x77, 0xed, - 0xf6, 0x6c, 0x86, 0x10, 0xf2, 0x0b, 0xc8, 0xf3, 0x26, 0x3c, 0xb1, 0x42, 0x85, 0xd1, 0xa7, 0xaf, - 0xd5, 0x92, 0xa6, 0x42, 0x80, 0x27, 0xb0, 0xa4, 0xfb, 0xea, 0xe4, 0xa6, 0xa5, 0x7f, 0xbc, 0x07, - 0x5f, 0xbb, 0x35, 0x6b, 0x5a, 0x83, 0xa1, 0x7b, 0xff, 0xa5, 0x04, 0x79, 0xfe, 0x4e, 0xf0, 0xbd, - 0x46, 0x49, 0xa8, 0xbd, 0xd7, 0xa9, 0xfa, 0xcb, 0xde, 0xeb, 0x74, 0xfe, 0x2a, 0xef, 0xbc, 0x91, - 0x8b, 0x92, 0x04, 0x91, 0x78, 0xf9, 0x66, 0xdf, 0xf9, 0x84, 0x44, 0x56, 0xfa, 0xb6, 0x99, 0x94, - 0x92, 0x04, 0x21, 0xab, 0xfe, 0xb3, 0x7d, 0x3b, 0x29, 0xa7, 0x45, 0xe0, 0xa7, 0x50, 0x54, 0x59, - 0x68, 0x92, 0xaa, 0xf1, 0x62, 0x30, 0x49, 0x55, 0x2b, 0x85, 0x8d, 0x10, 0x31, 0x27, 0x99, 0x85, - 0x18, 0x55, 0x31, 0xb3, 0x10, 0x8d, 0x84, 0x06, 0x11, 0xbf, 0x06, 0x88, 0x32, 0x4f, 0x3b, 0xd8, - 0x25, 0xd6, 0x90, 0x76, 0xb0, 0x4b, 0x4e, 0x5e, 0x11, 0xfa, 0x1b, 0x20, 0xd3, 0x49, 0x28, 0xf9, - 0x38, 0x59, 0x3a, 0xb1, 0xf2, 0xac, 0x7d, 0xf2, 0x76, 0xcc, 0xe1, 0x92, 0xc7, 0x50, 0x0a, 0xf3, - 0x53, 0x42, 0x67, 0xec, 0xdf, 0x7c, 0x69, 0xee, 0xcc, 0xe5, 0xb1, 0xad, 0xa4, 0xde, 0x9a, 0x19, - 0x42, 0xf1, 0xe7, 0xe6, 0xee, 0x7c, 0x26, 0xf3, 0x48, 0x55, 0xce, 0x9a, 0x74, 0xa4, 0xf1, 0x12, - 0x36, 0xe9, 0x48, 0xad, 0x84, 0x37, 0x42, 0x9c, 0xe1, 0x24, 0xf1, 0x52, 0x77, 0x16, 0xe2, 0x94, - 0x93, 0x44, 0x59, 0x69, 0xd2, 0xf6, 0xa7, 0xaa, 0xe2, 0xa4, 0xed, 0x4f, 0x27, 0xb6, 0xf2, 0xc4, - 0xc2, 0x04, 0x35, 0xe9, 0xc4, 0xec, 0xb2, 0xba, 0x76, 0x67, 0x2e, 0x8f, 0xad, 0xf2, 0xec, 0x13, - 0x9b, 0xaa, 0xad, 0x67, 0xa9, 0x6c, 0x9f, 0xd8, 0x56, 0xe5, 0xf7, 0x7f, 0xbb, 0x95, 0xf9, 0x13, - 0xfe, 0xfb, 0x2b, 0xfe, 0x6b, 0x17, 0xc4, 0xff, 0x32, 0xfb, 0xc1, 0x7f, 0x02, 0x00, 0x00, 0xff, - 0xff, 0x21, 0x44, 0x29, 0x94, 0xce, 0x26, 0x00, 0x00, + // 2616 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x72, 0x1c, 0x49, + 0x11, 0xd6, 0xfc, 0x68, 0x46, 0x93, 0x33, 0x1a, 0xcb, 0x25, 0xd9, 0xc8, 0xe3, 0x9f, 0xf5, 0xb6, + 0xed, 0x5d, 0xc3, 0x2e, 0x32, 0x2b, 0x96, 0x03, 0xc1, 0xe2, 0x8d, 0x91, 0x66, 0xd6, 0x16, 0x92, + 0x25, 0x6f, 0x6b, 0x24, 0xb3, 0x27, 0x45, 0xcf, 0x4c, 0x59, 0xea, 0xf0, 0xfc, 0x6d, 0x77, 0x8f, + 0x6c, 0x39, 0x82, 0x0b, 0x11, 0x3c, 0xc1, 0x72, 0x22, 0x78, 0x01, 0x1e, 0x80, 0x77, 0x20, 0xb8, + 0xc0, 0x13, 0x00, 0xc1, 0x89, 0xe0, 0xc2, 0x1d, 0x2e, 0x64, 0xfd, 0x75, 0x57, 0xd7, 0x74, 0x8f, + 0xbd, 0xb4, 0x39, 0x58, 0xea, 0xca, 0xca, 0xfc, 0x2a, 0x2b, 0x2b, 0x2b, 0x2b, 0x33, 0x65, 0xa8, + 0x78, 0x93, 0xde, 0xc6, 0xc4, 0x1b, 0x07, 0x63, 0x52, 0xa3, 0x41, 0xaf, 0xef, 0x53, 0xef, 0x9c, + 0x7a, 0x93, 0x6e, 0x63, 0xed, 0x74, 0x7c, 0x3a, 0xe6, 0x13, 0x0f, 0xd8, 0x97, 0xe0, 0x69, 0x5c, + 0x63, 0x3c, 0x0f, 0x86, 0xe7, 0xbd, 0x1e, 0xff, 0x31, 0xe9, 0x3e, 0x78, 0x71, 0x2e, 0xa7, 0xae, + 0xf3, 0x29, 0x67, 0x1a, 0x9c, 0xf1, 0x1f, 0x38, 0xc5, 0x7e, 0x89, 0x49, 0xeb, 0x57, 0x39, 0xa8, + 0xdb, 0xd4, 0x9f, 0x8c, 0x47, 0x3e, 0x7d, 0x4c, 0x9d, 0x3e, 0xf5, 0xc8, 0x4d, 0x80, 0xde, 0x60, + 0xea, 0x07, 0xd4, 0x3b, 0x71, 0xfb, 0xeb, 0xb9, 0xdb, 0xb9, 0xfb, 0x45, 0xbb, 0x22, 0x29, 0x3b, + 0x7d, 0x72, 0x1d, 0x2a, 0x43, 0x3a, 0xec, 0x8a, 0xd9, 0x3c, 0x9f, 0x5d, 0x12, 0x04, 0x9c, 0x6c, + 0xc0, 0x92, 0x47, 0xcf, 0x5d, 0xdf, 0x1d, 0x8f, 0xd6, 0x0b, 0x38, 0x57, 0xb0, 0xc3, 0x31, 0x13, + 0xf4, 0x9c, 0xe7, 0xc1, 0x09, 0xc2, 0x0c, 0xd7, 0x8b, 0x42, 0x90, 0x11, 0x3a, 0x38, 0xb6, 0x7e, + 0x5d, 0x80, 0x9a, 0xed, 0x8c, 0x4e, 0xa9, 0x4d, 0xbf, 0x9e, 0x52, 0x3f, 0x20, 0x2b, 0x50, 0x78, + 0x41, 0x2f, 0xf8, 0xf2, 0x35, 0x9b, 0x7d, 0x0a, 0x79, 0xe4, 0x38, 0xa1, 0x23, 0xb1, 0x70, 0x8d, + 0xc9, 0x23, 0xa1, 0x3d, 0xea, 0x93, 0x35, 0x58, 0x1c, 0xb8, 0x43, 0x37, 0x90, 0xab, 0x8a, 0x41, + 0x4c, 0x9d, 0xa2, 0xa1, 0xce, 0x36, 0x80, 0x3f, 0xf6, 0x82, 0x93, 0xb1, 0x87, 0x9b, 0x5e, 0x5f, + 0xc4, 0xd9, 0xfa, 0xe6, 0xdd, 0x0d, 0xdd, 0xd4, 0x1b, 0xba, 0x42, 0x1b, 0x87, 0xc8, 0x7c, 0xc0, + 0x78, 0xed, 0x8a, 0xaf, 0x3e, 0xc9, 0x17, 0x50, 0xe5, 0x20, 0x81, 0xe3, 0x9d, 0xd2, 0x60, 0xbd, + 0xc4, 0x51, 0xee, 0xbd, 0x01, 0xa5, 0xc3, 0x99, 0x6d, 0xbe, 0xbc, 0xf8, 0x26, 0x16, 0xd4, 0x90, + 0xdf, 0x75, 0x06, 0xee, 0x6b, 0xa7, 0x3b, 0xa0, 0xeb, 0x65, 0x04, 0x5a, 0xb2, 0x63, 0x34, 0x6b, + 0x03, 0x2a, 0xa1, 0x0e, 0x64, 0x09, 0x8a, 0xfb, 0x07, 0xfb, 0xed, 0x95, 0x05, 0x02, 0x50, 0x6a, + 0x1e, 0x6e, 0xb7, 0xf7, 0x5b, 0x2b, 0x39, 0x52, 0x85, 0x72, 0xab, 0x2d, 0x06, 0x79, 0x6b, 0x0b, + 0x20, 0x5a, 0x8d, 0x94, 0xa1, 0xb0, 0xdb, 0xfe, 0x0a, 0xf9, 0x91, 0xe7, 0xb8, 0x6d, 0x1f, 0xee, + 0x1c, 0xec, 0xa3, 0x00, 0x0a, 0x6f, 0xdb, 0xed, 0x66, 0xa7, 0xbd, 0x92, 0x67, 0x1c, 0x4f, 0x0e, + 0x5a, 0x2b, 0x05, 0x52, 0x81, 0xc5, 0xe3, 0xe6, 0xde, 0x51, 0x7b, 0xa5, 0x68, 0xfd, 0x02, 0x96, + 0xa5, 0xfa, 0xc2, 0x45, 0xc8, 0xa7, 0x50, 0x3a, 0xe3, 0x6e, 0xc2, 0x4f, 0xa6, 0xba, 0x79, 0xc3, + 0xd8, 0x6b, 0xcc, 0x95, 0x6c, 0xc9, 0x8b, 0xdb, 0x2b, 0xbc, 0x38, 0xf7, 0xf1, 0xd0, 0x0a, 0x28, + 0xb2, 0xb2, 0x21, 0x3c, 0x74, 0x63, 0x97, 0x5e, 0x1c, 0x3b, 0x83, 0x29, 0xb5, 0xd9, 0x24, 0x21, + 0x50, 0x1c, 0x8e, 0x3d, 0xca, 0x0f, 0x70, 0xc9, 0xe6, 0xdf, 0xd6, 0xcf, 0x00, 0x9e, 0x4e, 0x83, + 0x74, 0x97, 0xc0, 0x53, 0x3f, 0x67, 0x08, 0xd2, 0x1d, 0xc4, 0x80, 0xfb, 0x02, 0x75, 0x7c, 0x1a, + 0xfa, 0x02, 0x1b, 0x58, 0xdb, 0x50, 0xe5, 0x58, 0x59, 0x36, 0x82, 0x20, 0xa4, 0x45, 0x07, 0x34, + 0xa0, 0x19, 0x7c, 0xd5, 0xa2, 0xb0, 0x1a, 0x03, 0xc9, 0x64, 0xda, 0x75, 0x28, 0xf7, 0x39, 0x98, + 0x58, 0xa7, 0x60, 0xab, 0xa1, 0xf5, 0xaf, 0x1c, 0x5e, 0x29, 0xa1, 0xe1, 0xd1, 0x88, 0x79, 0x7c, + 0x13, 0x96, 0x3d, 0x31, 0x3e, 0xe1, 0xba, 0xc8, 0x75, 0x1a, 0xe9, 0xee, 0xfa, 0x78, 0xc1, 0xae, + 0x49, 0x11, 0x4e, 0x26, 0x3f, 0x81, 0xaa, 0x82, 0x98, 0x4c, 0x03, 0xbe, 0x62, 0x75, 0x73, 0x3d, + 0x0e, 0x10, 0x9d, 0x18, 0x8a, 0x83, 0x64, 0x47, 0x22, 0xe9, 0xc0, 0x9a, 0x12, 0x16, 0x3a, 0x4a, + 0x35, 0x0a, 0x1c, 0xe5, 0x76, 0x1c, 0x65, 0xd6, 0xcc, 0x88, 0x46, 0xa4, 0xbc, 0x36, 0xb9, 0x55, + 0x81, 0xb2, 0xa4, 0x5a, 0xff, 0xce, 0xa1, 0xbb, 0x4a, 0x33, 0x89, 0x2d, 0xb7, 0xa0, 0xee, 0x49, + 0x42, 0x6c, 0xcf, 0xd7, 0x13, 0xf7, 0x2c, 0x0d, 0xbc, 0x60, 0x2f, 0x2b, 0x21, 0xb1, 0xeb, 0x87, + 0x50, 0x0b, 0x51, 0xa2, 0x6d, 0x5f, 0x4b, 0xd8, 0x76, 0x88, 0x50, 0x55, 0x02, 0x6c, 0xe3, 0xcf, + 0xe0, 0x4a, 0x28, 0x9f, 0xb0, 0xf3, 0xf7, 0xe7, 0xec, 0x3c, 0x04, 0x5c, 0x55, 0x08, 0xfa, 0xde, + 0x81, 0xc5, 0x37, 0x41, 0xb6, 0x7e, 0x53, 0x80, 0xf2, 0xf6, 0x78, 0x38, 0x71, 0x3c, 0x76, 0x4c, + 0x25, 0xa4, 0x4f, 0x07, 0x01, 0xdf, 0x6e, 0x7d, 0xf3, 0x4e, 0x7c, 0x05, 0xc9, 0xa6, 0x7e, 0xdb, + 0x9c, 0xd5, 0x96, 0x22, 0x4c, 0x58, 0x86, 0xb3, 0xfc, 0x5b, 0x08, 0xcb, 0x60, 0x26, 0x45, 0xd4, + 0x55, 0x28, 0x44, 0x57, 0xa1, 0x01, 0x65, 0x14, 0x8c, 0x42, 0x30, 0xee, 0x45, 0x11, 0xc8, 0x77, + 0xe1, 0x52, 0xcf, 0xa3, 0x0e, 0xb3, 0x87, 0x0a, 0xd3, 0x8b, 0x92, 0xa7, 0x2e, 0x26, 0x6c, 0x15, + 0xae, 0xef, 0x40, 0x6d, 0x38, 0xee, 0x47, 0x7c, 0x25, 0xc9, 0x57, 0x45, 0x6a, 0xc8, 0x74, 0x55, + 0xc5, 0x03, 0x16, 0x3f, 0x6b, 0x38, 0x2b, 0x86, 0xd6, 0x27, 0xb0, 0x1c, 0xdb, 0x2b, 0x0b, 0x71, + 0xed, 0x2f, 0x8f, 0x9a, 0x7b, 0x22, 0x1e, 0x3e, 0xe2, 0x21, 0xd0, 0xc6, 0x78, 0x88, 0x61, 0x75, + 0xaf, 0x7d, 0x78, 0x88, 0xd1, 0xf3, 0xb3, 0x50, 0x44, 0x06, 0x50, 0x2d, 0x6e, 0x2e, 0x68, 0x71, + 0x33, 0xa7, 0xe2, 0x66, 0x3e, 0x8a, 0x9b, 0x85, 0xad, 0x3a, 0xd4, 0x84, 0x41, 0x4e, 0xa6, 0xcc, + 0x0f, 0xad, 0xdf, 0xe5, 0x00, 0x3a, 0xaf, 0x46, 0x2a, 0x60, 0x3c, 0x80, 0x72, 0x4f, 0x80, 0xe3, + 0x01, 0xb1, 0x98, 0x78, 0x25, 0xd1, 0xc6, 0xb6, 0xe2, 0xc2, 0xd8, 0x50, 0xf6, 0xa7, 0xbd, 0x1e, + 0xf5, 0x55, 0x10, 0x35, 0x2f, 0xad, 0x76, 0xcf, 0x6d, 0xc5, 0xca, 0xa4, 0x9e, 0x3b, 0xee, 0x60, + 0xca, 0xa3, 0xea, 0x1b, 0xa5, 0x24, 0xab, 0xf5, 0xdb, 0x1c, 0x54, 0xb9, 0xae, 0x99, 0xe2, 0xd2, + 0x0d, 0xa8, 0x70, 0x35, 0x68, 0x5f, 0x46, 0xa6, 0x25, 0x3b, 0x22, 0x90, 0x1f, 0x63, 0x7c, 0x94, + 0x72, 0xbe, 0xd4, 0xed, 0x7a, 0x32, 0xac, 0x50, 0x2e, 0xe2, 0xb6, 0x76, 0xe1, 0x32, 0x37, 0x4f, + 0x2f, 0x60, 0x13, 0xd2, 0xa0, 0xfa, 0x43, 0x9f, 0x33, 0x1e, 0x7a, 0x9c, 0x9b, 0x9c, 0x5d, 0xf8, + 0x6e, 0xcf, 0x19, 0x48, 0x45, 0xc2, 0x31, 0x3e, 0x30, 0x44, 0x07, 0xcb, 0xf4, 0x36, 0x2c, 0x43, + 0xf5, 0xb1, 0xe3, 0x9f, 0x49, 0x95, 0xac, 0x9f, 0x43, 0x4d, 0x0c, 0x33, 0x99, 0x11, 0x5f, 0xc5, + 0x33, 0x44, 0xe1, 0x8a, 0x2f, 0xdb, 0xfc, 0xdb, 0xba, 0x0c, 0x97, 0x0e, 0x47, 0xce, 0xc4, 0x3f, + 0x1b, 0xab, 0x40, 0xcb, 0xd2, 0xb8, 0x95, 0x88, 0x96, 0x69, 0xc5, 0x0f, 0xe1, 0x92, 0x47, 0x87, + 0x8e, 0x3b, 0x72, 0x47, 0xa7, 0x27, 0xdd, 0x8b, 0x80, 0xfa, 0x32, 0xcb, 0xab, 0x87, 0xe4, 0x2d, + 0x46, 0x65, 0xaa, 0x75, 0x07, 0xe3, 0xae, 0xbc, 0xeb, 0xfc, 0xdb, 0xfa, 0x3d, 0xbe, 0x39, 0xcf, + 0x9c, 0xa0, 0xa7, 0xac, 0x40, 0x76, 0xa0, 0x1e, 0xde, 0x70, 0x4e, 0x91, 0xba, 0x18, 0xd1, 0x9e, + 0xcb, 0x6c, 0xcb, 0x1b, 0xaf, 0xa2, 0xfd, 0x72, 0x4f, 0x27, 0x70, 0x28, 0x67, 0xd4, 0xa3, 0x83, + 0x10, 0x2a, 0x9f, 0x0e, 0xc5, 0x19, 0x75, 0x28, 0x9d, 0xb0, 0x75, 0x29, 0x7a, 0x09, 0xc5, 0xfd, + 0xfc, 0x26, 0x07, 0x64, 0x56, 0x87, 0x6f, 0x9b, 0x84, 0xde, 0x83, 0xba, 0x8f, 0xd7, 0x3e, 0x38, + 0x31, 0x72, 0xe0, 0x65, 0x4e, 0x0d, 0xa3, 0x14, 0x5a, 0x18, 0x93, 0xef, 0x53, 0x74, 0x69, 0xff, + 0x64, 0x34, 0x0e, 0xdc, 0xe7, 0x17, 0x3c, 0x32, 0x2e, 0xd9, 0x75, 0x45, 0xde, 0xe7, 0x54, 0xeb, + 0x81, 0x52, 0x4a, 0x57, 0x9e, 0x5c, 0x83, 0xa5, 0x97, 0x8c, 0xaa, 0xb2, 0x73, 0x7c, 0xf2, 0xf9, + 0x78, 0xa7, 0x6f, 0xfd, 0x03, 0x1f, 0x40, 0x69, 0xfe, 0x4c, 0x3e, 0xa0, 0x2f, 0x91, 0x8f, 0x2d, + 0xc1, 0xf2, 0x0d, 0x71, 0x2c, 0x7d, 0x99, 0xa9, 0xa9, 0x21, 0xbb, 0x67, 0xc2, 0xca, 0x38, 0x25, + 0xf6, 0x13, 0x8e, 0x31, 0xd0, 0xaf, 0xf4, 0xc4, 0x3d, 0x33, 0x22, 0xbd, 0x7d, 0x49, 0xd2, 0x43, + 0xeb, 0xdc, 0x83, 0x12, 0x3d, 0xa7, 0xa3, 0xc0, 0x5f, 0xaf, 0xf2, 0xb8, 0xb0, 0xac, 0xd2, 0xc5, + 0x36, 0xa3, 0xda, 0x72, 0xd2, 0xfa, 0x11, 0x5c, 0xde, 0x63, 0x79, 0xdd, 0x23, 0xb4, 0xbe, 0x9e, + 0x21, 0x76, 0x3a, 0x7b, 0xd2, 0x2a, 0x85, 0xa0, 0xb3, 0x47, 0xea, 0x90, 0xdf, 0x69, 0xc9, 0x3d, + 0xe4, 0xdd, 0x96, 0xf5, 0x4b, 0x3c, 0x68, 0x5d, 0x2e, 0x93, 0x99, 0x0c, 0x70, 0xb5, 0x7c, 0x21, + 0x5a, 0x1e, 0x53, 0x51, 0xea, 0x79, 0x63, 0x8f, 0x1b, 0xa4, 0x62, 0x8b, 0x81, 0x75, 0x57, 0xea, + 0x80, 0x7b, 0x1e, 0xbf, 0x08, 0x9d, 0x4d, 0xa0, 0xe5, 0x42, 0x55, 0x77, 0x61, 0x35, 0xc6, 0x95, + 0x29, 0x38, 0x7d, 0x08, 0x57, 0x38, 0xd8, 0x2e, 0xa5, 0x93, 0xe6, 0xc0, 0x3d, 0x4f, 0x5d, 0x75, + 0x02, 0x57, 0x4d, 0xc6, 0xff, 0xaf, 0x8d, 0xac, 0x33, 0x28, 0x3d, 0xe1, 0xf5, 0xa3, 0xa6, 0x4b, + 0x91, 0xf3, 0x62, 0x84, 0x19, 0x39, 0x43, 0x91, 0xdd, 0x57, 0x6c, 0xfe, 0xcd, 0xa3, 0x39, 0xa5, + 0xde, 0x91, 0xbd, 0x27, 0x1e, 0x8e, 0x8a, 0x1d, 0x8e, 0xc9, 0x2d, 0x56, 0xb9, 0xba, 0xe8, 0x1e, + 0x7c, 0xb6, 0xc8, 0x67, 0x35, 0x0a, 0x56, 0x50, 0x2b, 0x62, 0xa5, 0x66, 0xbf, 0xaf, 0xbd, 0x1c, + 0x21, 0x5e, 0x2e, 0x8e, 0x67, 0xbd, 0x84, 0xcb, 0x1a, 0x7f, 0x26, 0x33, 0x7c, 0x0c, 0x25, 0x51, + 0x24, 0xcb, 0xa0, 0xb5, 0x16, 0x97, 0x12, 0xcb, 0xd8, 0x92, 0xc7, 0xba, 0x07, 0xab, 0x92, 0x42, + 0x87, 0xe3, 0xa4, 0xb3, 0xe2, 0xf6, 0xb1, 0xf6, 0x60, 0x2d, 0xce, 0x96, 0xc9, 0x45, 0x9a, 0x6a, + 0xd1, 0xa3, 0x49, 0x5f, 0x8b, 0x81, 0xe6, 0xa1, 0xe8, 0x06, 0xcb, 0x1b, 0x06, 0x0b, 0x15, 0x52, + 0x10, 0x99, 0x14, 0x5a, 0x55, 0xe6, 0xdf, 0x73, 0xfd, 0xf0, 0xa5, 0x7b, 0x0d, 0x44, 0x27, 0x66, + 0x3a, 0x94, 0x0d, 0x28, 0x0b, 0x83, 0xab, 0xac, 0x2a, 0xf9, 0x54, 0x14, 0x13, 0x53, 0xa8, 0x45, + 0x9f, 0x7b, 0xce, 0xe9, 0x90, 0x86, 0x31, 0x87, 0xa5, 0x10, 0x3a, 0x31, 0xd3, 0x8e, 0xff, 0x84, + 0xcf, 0x67, 0x73, 0xe0, 0x78, 0x43, 0x65, 0xfc, 0x87, 0x50, 0x12, 0xb9, 0x89, 0x4c, 0xe4, 0x3f, + 0x88, 0xc3, 0xe8, 0xbc, 0x62, 0xd0, 0x14, 0x99, 0x8c, 0x94, 0x62, 0x87, 0x25, 0x7b, 0x33, 0x2d, + 0xa3, 0x57, 0xd3, 0x22, 0xdf, 0x87, 0x45, 0x87, 0x89, 0xf0, 0xbb, 0x58, 0xdf, 0xfc, 0x4e, 0x02, + 0x74, 0xe7, 0x62, 0x42, 0x6d, 0xc1, 0x65, 0x7d, 0x0a, 0x55, 0x6d, 0x05, 0x96, 0xf5, 0x3e, 0x6a, + 0x77, 0x30, 0x15, 0xae, 0xc1, 0x52, 0x73, 0xbb, 0xb3, 0x73, 0x2c, 0x92, 0xe1, 0x3a, 0x40, 0xab, + 0x1d, 0x8e, 0xf3, 0x98, 0x05, 0x09, 0x29, 0x79, 0xc3, 0x75, 0x7d, 0x72, 0x69, 0xfa, 0xe4, 0xdf, + 0x4a, 0x9f, 0x57, 0xb0, 0x2c, 0xb7, 0x9f, 0xc9, 0x07, 0x3e, 0x41, 0x0b, 0x33, 0x18, 0xe5, 0x02, + 0xd7, 0x12, 0x96, 0x55, 0xb7, 0x53, 0x30, 0x5a, 0x98, 0x3d, 0x1c, 0x06, 0x4e, 0x30, 0xf5, 0x95, + 0x0b, 0xfc, 0x31, 0x07, 0x75, 0x45, 0xc9, 0x5a, 0xcc, 0xab, 0x5a, 0x49, 0xc4, 0xbc, 0xb0, 0x52, + 0xba, 0x0a, 0xa5, 0x7e, 0xf7, 0xd0, 0x7d, 0xad, 0x9a, 0x1a, 0x72, 0xc4, 0xe8, 0x03, 0xb1, 0x8e, + 0xe8, 0xa8, 0xc9, 0x11, 0x4b, 0xbf, 0x59, 0x6f, 0x6d, 0x67, 0xd4, 0xa7, 0xaf, 0xf8, 0x4b, 0x5b, + 0xb4, 0x23, 0x02, 0x4f, 0x97, 0x65, 0xe7, 0x8d, 0x17, 0x52, 0x7a, 0x27, 0x0e, 0x9d, 0xbc, 0x39, + 0x0d, 0xce, 0xda, 0x23, 0xd6, 0x74, 0x52, 0x3b, 0x5c, 0x03, 0xc2, 0x88, 0x2d, 0xd7, 0xd7, 0xa9, + 0x6d, 0x58, 0x65, 0x54, 0xf4, 0x7b, 0x4c, 0xa6, 0xa3, 0x88, 0xa1, 0xc2, 0x76, 0xce, 0x08, 0xdb, + 0x8e, 0xef, 0xbf, 0x1c, 0x7b, 0x7d, 0xb9, 0xb5, 0x70, 0x6c, 0xb5, 0x04, 0xf8, 0x91, 0x1f, 0x0b, + 0xcc, 0xdf, 0x16, 0xe5, 0x7e, 0x84, 0xf2, 0x88, 0x06, 0x73, 0x50, 0xac, 0x8f, 0xe0, 0x8a, 0xe2, + 0x94, 0xc5, 0xf4, 0x1c, 0xe6, 0x03, 0xb8, 0xa9, 0x98, 0xb7, 0xcf, 0x58, 0xa2, 0xf7, 0x54, 0x2e, + 0xf8, 0xbf, 0xea, 0xf9, 0x10, 0xd6, 0x42, 0x3d, 0xf5, 0xdc, 0x05, 0x71, 0xa6, 0xbe, 0xf4, 0x17, + 0xc4, 0x61, 0xdf, 0x8c, 0xe6, 0x8d, 0x07, 0xe1, 0x03, 0xc8, 0xbe, 0xad, 0xcf, 0x23, 0xed, 0xe3, + 0xf9, 0x43, 0x92, 0x22, 0x49, 0x00, 0xd2, 0x50, 0x36, 0x7e, 0xcf, 0x37, 0xb7, 0xce, 0x19, 0x37, + 0x29, 0xc7, 0xcc, 0x69, 0x98, 0xd2, 0xa4, 0x8c, 0x73, 0xc6, 0xa4, 0x33, 0xcc, 0xb6, 0xb0, 0x00, + 0x87, 0x35, 0x2c, 0x30, 0xb3, 0x81, 0x0f, 0xa0, 0x38, 0xa1, 0x32, 0x26, 0x54, 0x37, 0xc9, 0x86, + 0xe8, 0x60, 0x6f, 0x3c, 0x45, 0x9a, 0xeb, 0xb3, 0x9b, 0x61, 0xf3, 0x79, 0xeb, 0xa7, 0x91, 0x02, + 0x33, 0x56, 0x31, 0x15, 0x50, 0x69, 0xbd, 0x30, 0x0a, 0xfb, 0x64, 0x41, 0x5c, 0x77, 0xfa, 0x4c, + 0x41, 0x7c, 0x57, 0xdc, 0x8a, 0xf0, 0xae, 0x64, 0x02, 0xeb, 0x0a, 0x5b, 0x45, 0x57, 0x2c, 0x53, + 0x7c, 0xc1, 0x74, 0x34, 0x40, 0xdb, 0xa8, 0xe8, 0x22, 0x06, 0x4a, 0xe1, 0xf0, 0xfe, 0x65, 0x52, + 0xd8, 0x89, 0xc0, 0xb8, 0xcf, 0x64, 0xd5, 0x97, 0x1d, 0x98, 0x4a, 0x34, 0xc4, 0xc0, 0xda, 0x87, + 0xab, 0xe6, 0xfd, 0xcd, 0xa4, 0xf2, 0x31, 0xdc, 0x4a, 0xbb, 0xe2, 0x99, 0x70, 0x9f, 0x44, 0x37, + 0xf5, 0x1d, 0x54, 0x1b, 0xfa, 0xb6, 0xdf, 0x49, 0x49, 0x20, 0x8f, 0x3d, 0x8c, 0x03, 0x99, 0xc0, + 0xfc, 0x08, 0x2c, 0xfb, 0xb1, 0x47, 0x97, 0xbe, 0x30, 0xf7, 0xd2, 0x4b, 0x8b, 0xe8, 0x51, 0xe7, + 0x5d, 0x1c, 0x98, 0x16, 0x98, 0xde, 0xc5, 0x81, 0xe9, 0x31, 0x29, 0x0b, 0xde, 0xf7, 0x2c, 0xa8, + 0x84, 0x59, 0x90, 0xf6, 0x07, 0xa0, 0x2a, 0x94, 0xf7, 0x0f, 0x0e, 0x9f, 0x36, 0xb7, 0x31, 0xff, + 0xda, 0xfc, 0x67, 0x1e, 0xf2, 0xbb, 0xc7, 0x64, 0x0b, 0x16, 0x45, 0xeb, 0x7a, 0x4e, 0x73, 0xbf, + 0x31, 0xaf, 0x09, 0x6e, 0x2d, 0x90, 0xcf, 0xa0, 0xc0, 0x9a, 0xd7, 0xa9, 0xdd, 0xfd, 0x46, 0x7a, + 0x03, 0x1c, 0xa5, 0x3b, 0x50, 0xd5, 0x3a, 0xd5, 0xe4, 0x8d, 0xdd, 0xfd, 0xc6, 0x9b, 0xbb, 0xe0, + 0x42, 0xa7, 0xce, 0xab, 0x91, 0xa9, 0x53, 0xd4, 0x59, 0x35, 0x75, 0xd2, 0xfa, 0x98, 0x28, 0xbd, + 0x2f, 0x3b, 0xe4, 0xbd, 0x80, 0xbc, 0x97, 0xd0, 0x70, 0xd5, 0x3b, 0x8a, 0x8d, 0xdb, 0xe9, 0x0c, + 0x0a, 0x6f, 0xf3, 0x00, 0x16, 0x79, 0xb7, 0x85, 0x7c, 0xa1, 0x3e, 0x1a, 0x09, 0xbd, 0xa8, 0x14, + 0x73, 0xc7, 0xfa, 0x34, 0xd6, 0xc2, 0xfd, 0xdc, 0x0f, 0x72, 0x9b, 0xdf, 0xe4, 0x61, 0x91, 0x57, + 0xdf, 0xe4, 0x4b, 0x80, 0xa8, 0x4d, 0x61, 0x6a, 0x3b, 0xd3, 0xf8, 0x30, 0xb5, 0x9d, 0xed, 0x70, + 0x88, 0x13, 0xd1, 0xfa, 0x09, 0x24, 0x49, 0x24, 0xf6, 0x74, 0x9a, 0x27, 0x92, 0xd0, 0x8c, 0x40, + 0x54, 0x07, 0xea, 0xf1, 0x7e, 0x01, 0xb9, 0x93, 0x20, 0x66, 0xb6, 0x1d, 0x1a, 0x77, 0xe7, 0x33, + 0xc5, 0xac, 0xf2, 0x97, 0x3c, 0x9e, 0x9b, 0xf8, 0xfb, 0x33, 0x1e, 0x61, 0x25, 0x2c, 0xc9, 0xc9, + 0xad, 0xa4, 0x72, 0x2d, 0xca, 0x69, 0x1a, 0xef, 0xa5, 0xce, 0x87, 0xea, 0x3f, 0x83, 0x9a, 0x5e, + 0x42, 0x93, 0xf7, 0x13, 0x2b, 0x40, 0xbd, 0x0a, 0x6f, 0x58, 0xf3, 0x58, 0x66, 0x81, 0x45, 0x29, + 0x9c, 0x0c, 0x1c, 0xab, 0xb4, 0x93, 0x81, 0xe3, 0x95, 0x34, 0x02, 0xa3, 0x67, 0x44, 0x05, 0x30, + 0x49, 0xdc, 0xa2, 0x56, 0x2f, 0x9b, 0x9e, 0x31, 0x5b, 0x3b, 0xa3, 0x1f, 0xff, 0x27, 0x0f, 0xd5, + 0x27, 0x8e, 0x3b, 0x0a, 0xe8, 0x88, 0x35, 0xec, 0x58, 0xf4, 0xe0, 0x81, 0xc6, 0x74, 0x67, 0xbd, + 0xdc, 0x34, 0xdd, 0x39, 0x56, 0x8b, 0xa1, 0x9a, 0x6d, 0x28, 0x89, 0x92, 0x88, 0x18, 0x8c, 0xb1, + 0xd2, 0xa9, 0x71, 0x23, 0x79, 0x52, 0xdf, 0x6d, 0x54, 0x5d, 0x9b, 0xbb, 0x9d, 0x29, 0xc6, 0x1b, + 0xb7, 0xd3, 0x19, 0x42, 0xc8, 0xcf, 0xa1, 0xc8, 0x1a, 0xf3, 0xc4, 0x08, 0x15, 0x5a, 0xef, 0xbe, + 0xd1, 0x48, 0x9a, 0x0a, 0x01, 0x9e, 0xc0, 0x92, 0xea, 0xb5, 0x93, 0x9b, 0x86, 0xfe, 0xf1, 0xbe, + 0x7c, 0xe3, 0x56, 0xda, 0xb4, 0x02, 0x43, 0xf7, 0xfe, 0x6b, 0x05, 0x8a, 0xec, 0x9d, 0x60, 0x7b, + 0x8d, 0x92, 0x50, 0x73, 0xaf, 0x33, 0x35, 0x99, 0xb9, 0xd7, 0xd9, 0xfc, 0x55, 0xdc, 0x79, 0x2d, + 0x17, 0x25, 0x09, 0x22, 0xf1, 0x92, 0xce, 0xbc, 0xf3, 0x09, 0x89, 0xac, 0xf0, 0x6d, 0x3d, 0x29, + 0x25, 0x09, 0x42, 0x46, 0x4d, 0x68, 0xfa, 0x76, 0x52, 0x4e, 0x8b, 0xc0, 0x4f, 0xa1, 0x2c, 0xb3, + 0xd0, 0x24, 0x55, 0xe3, 0x05, 0x62, 0x92, 0xaa, 0x46, 0x0a, 0x1b, 0x21, 0x62, 0x4e, 0x92, 0x86, + 0x18, 0x55, 0x36, 0x69, 0x88, 0x5a, 0x42, 0x83, 0x88, 0x5f, 0x01, 0x44, 0x99, 0xa7, 0x19, 0xec, + 0x12, 0xeb, 0x4a, 0x33, 0xd8, 0x25, 0x27, 0xaf, 0x08, 0xfd, 0x35, 0x90, 0xd9, 0x24, 0x94, 0x7c, + 0x94, 0x2c, 0x9d, 0x58, 0x8d, 0x36, 0x3e, 0x7e, 0x3b, 0xe6, 0x70, 0xc9, 0x63, 0xa8, 0x84, 0xf9, + 0x29, 0xb1, 0x52, 0xf6, 0xaf, 0xbf, 0x34, 0x77, 0xe6, 0xf2, 0x98, 0x56, 0x92, 0x6f, 0x4d, 0x8a, + 0x50, 0xfc, 0xb9, 0xb9, 0x3b, 0x9f, 0x49, 0x3f, 0x52, 0x99, 0xb3, 0x26, 0x1d, 0x69, 0xbc, 0xac, + 0x4d, 0x3a, 0x52, 0x23, 0xe1, 0x8d, 0x10, 0x53, 0x9c, 0x24, 0x5e, 0xfe, 0xa6, 0x21, 0xce, 0x38, + 0x49, 0x94, 0x95, 0x26, 0x6d, 0x7f, 0xa6, 0x52, 0x4e, 0xda, 0xfe, 0x6c, 0x62, 0x2b, 0x4e, 0x2c, + 0x4c, 0x50, 0x93, 0x4e, 0xcc, 0x2c, 0xab, 0x1b, 0x77, 0xe6, 0xf2, 0x98, 0x2a, 0xa7, 0x9f, 0xd8, + 0x4c, 0x6d, 0x9d, 0xa6, 0xb2, 0x79, 0x62, 0x5b, 0xb5, 0x3f, 0xfc, 0xfd, 0x56, 0xee, 0xcf, 0xf8, + 0xef, 0x6f, 0xf8, 0xaf, 0x5b, 0xe2, 0xff, 0xf3, 0xec, 0x87, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, + 0xb2, 0x78, 0xd4, 0xb9, 0xe2, 0x26, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/rpc.proto b/etcdserver/etcdserverpb/rpc.proto index 3e771b376..52421e94b 100644 --- a/etcdserver/etcdserverpb/rpc.proto +++ b/etcdserver/etcdserverpb/rpc.proto @@ -609,6 +609,7 @@ message AuthRoleGetRequest { } message AuthRoleDeleteRequest { + string role = 1; } message AuthRoleGrantRequest { diff --git a/etcdserver/v3_server.go b/etcdserver/v3_server.go index a9002dc48..4743e4daa 100644 --- a/etcdserver/v3_server.go +++ b/etcdserver/v3_server.go @@ -69,6 +69,7 @@ type Authenticator interface { RoleGrant(ctx context.Context, r *pb.AuthRoleGrantRequest) (*pb.AuthRoleGrantResponse, error) RoleGet(ctx context.Context, r *pb.AuthRoleGetRequest) (*pb.AuthRoleGetResponse, error) RoleRevoke(ctx context.Context, r *pb.AuthRoleRevokeRequest) (*pb.AuthRoleRevokeResponse, error) + RoleDelete(ctx context.Context, r *pb.AuthRoleDeleteRequest) (*pb.AuthRoleDeleteResponse, error) } func (s *EtcdServer) Range(ctx context.Context, r *pb.RangeRequest) (*pb.RangeResponse, error) { @@ -381,6 +382,17 @@ func (s *EtcdServer) RoleRevoke(ctx context.Context, r *pb.AuthRoleRevokeRequest return result.resp.(*pb.AuthRoleRevokeResponse), nil } +func (s *EtcdServer) RoleDelete(ctx context.Context, r *pb.AuthRoleDeleteRequest) (*pb.AuthRoleDeleteResponse, error) { + result, err := s.processInternalRaftRequest(ctx, pb.InternalRaftRequest{AuthRoleDelete: r}) + if err != nil { + return nil, err + } + if result.err != nil { + return nil, result.err + } + return result.resp.(*pb.AuthRoleDeleteResponse), nil +} + func (s *EtcdServer) usernameFromCtx(ctx context.Context) (string, error) { md, mdexist := metadata.FromContext(ctx) if mdexist {