From a56270827181aaa397c0527d0eeba166c4534ff6 Mon Sep 17 00:00:00 2001 From: Siyuan Zhang Date: Fri, 2 Feb 2024 13:59:18 -0800 Subject: [PATCH] Add handling of AuthStatusRequest. Signed-off-by: Siyuan Zhang --- etcdserver/apply.go | 9 + etcdserver/etcdserverpb/etcdserver.pb.go | 2 + etcdserver/etcdserverpb/raft_internal.pb.go | 215 +++-- etcdserver/etcdserverpb/raft_internal.proto | 1 + etcdserver/etcdserverpb/rpc.pb.go | 828 +++++++++++++------- etcdserver/etcdserverpb/rpc.proto | 10 + 6 files changed, 719 insertions(+), 346 deletions(-) diff --git a/etcdserver/apply.go b/etcdserver/apply.go index f43904dea922..164d3b809baa 100644 --- a/etcdserver/apply.go +++ b/etcdserver/apply.go @@ -64,6 +64,7 @@ type applierV3 interface { AuthEnable() (*pb.AuthEnableResponse, error) AuthDisable() (*pb.AuthDisableResponse, error) + AuthStatus() (*pb.AuthStatusResponse, error) UserAdd(ua *pb.AuthUserAddRequest) (*pb.AuthUserAddResponse, error) UserDelete(ua *pb.AuthUserDeleteRequest) (*pb.AuthUserDeleteResponse, error) @@ -143,6 +144,8 @@ func (a *applierV3backend) Apply(r *pb.InternalRaftRequest) *applyResult { ar.resp, ar.err = a.s.applyV3.AuthEnable() case r.AuthDisable != nil: ar.resp, ar.err = a.s.applyV3.AuthDisable() + case r.AuthStatus != nil: + ar.resp, ar.err = a.s.applyV3.AuthStatus() case r.AuthUserAdd != nil: ar.resp, ar.err = a.s.applyV3.UserAdd(r.AuthUserAdd) case r.AuthUserDelete != nil: @@ -719,6 +722,12 @@ func (a *applierV3backend) AuthDisable() (*pb.AuthDisableResponse, error) { return &pb.AuthDisableResponse{Header: newHeader(a.s)}, nil } +func (a *applierV3backend) AuthStatus() (*pb.AuthStatusResponse, error) { + enabled := a.s.AuthStore().IsAuthEnabled() + authRevision := a.s.AuthStore().Revision() + return &pb.AuthStatusResponse{Header: newHeader(a.s), Enabled: enabled, AuthRevision: authRevision}, nil +} + func (a *applierV3backend) Authenticate(r *pb.InternalAuthenticateRequest) (*pb.AuthenticateResponse, error) { ctx := context.WithValue(context.WithValue(a.s.ctx, auth.AuthenticateParamIndex{}, a.s.consistIndex.ConsistentIndex()), auth.AuthenticateParamSimpleTokenPrefix{}, r.SimpleToken) resp, err := a.s.AuthStore().Authenticate(ctx, r.Name, r.Password) diff --git a/etcdserver/etcdserverpb/etcdserver.pb.go b/etcdserver/etcdserverpb/etcdserver.pb.go index 06f820a922d9..fd478848876d 100644 --- a/etcdserver/etcdserverpb/etcdserver.pb.go +++ b/etcdserver/etcdserverpb/etcdserver.pb.go @@ -79,6 +79,7 @@ It has these top-level messages: StatusResponse AuthEnableRequest AuthDisableRequest + AuthStatusRequest AuthenticateRequest AuthUserAddRequest AuthUserGetRequest @@ -95,6 +96,7 @@ It has these top-level messages: AuthRoleRevokePermissionRequest AuthEnableResponse AuthDisableResponse + AuthStatusResponse AuthenticateResponse AuthUserAddResponse AuthUserGetResponse diff --git a/etcdserver/etcdserverpb/raft_internal.pb.go b/etcdserver/etcdserverpb/raft_internal.pb.go index b170499e4b6c..99986c84ea7e 100644 --- a/etcdserver/etcdserverpb/raft_internal.pb.go +++ b/etcdserver/etcdserverpb/raft_internal.pb.go @@ -50,6 +50,7 @@ type InternalRaftRequest struct { LeaseCheckpoint *LeaseCheckpointRequest `protobuf:"bytes,11,opt,name=lease_checkpoint,json=leaseCheckpoint" json:"lease_checkpoint,omitempty"` AuthEnable *AuthEnableRequest `protobuf:"bytes,1000,opt,name=auth_enable,json=authEnable" json:"auth_enable,omitempty"` AuthDisable *AuthDisableRequest `protobuf:"bytes,1011,opt,name=auth_disable,json=authDisable" json:"auth_disable,omitempty"` + AuthStatus *AuthStatusRequest `protobuf:"bytes,1013,opt,name=auth_status,json=authStatus" json:"auth_status,omitempty"` Authenticate *InternalAuthenticateRequest `protobuf:"bytes,1012,opt,name=authenticate" json:"authenticate,omitempty"` AuthUserAdd *AuthUserAddRequest `protobuf:"bytes,1100,opt,name=auth_user_add,json=authUserAdd" json:"auth_user_add,omitempty"` AuthUserDelete *AuthUserDeleteRequest `protobuf:"bytes,1101,opt,name=auth_user_delete,json=authUserDelete" json:"auth_user_delete,omitempty"` @@ -304,17 +305,29 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { } i += n14 } + if m.AuthStatus != nil { + dAtA[i] = 0xaa + i++ + dAtA[i] = 0x3f + i++ + i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthStatus.Size())) + n15, err := m.AuthStatus.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n15 + } if m.AuthUserAdd != nil { dAtA[i] = 0xe2 i++ dAtA[i] = 0x44 i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthUserAdd.Size())) - n15, err := m.AuthUserAdd.MarshalTo(dAtA[i:]) + n16, err := m.AuthUserAdd.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n15 + i += n16 } if m.AuthUserDelete != nil { dAtA[i] = 0xea @@ -322,11 +335,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x44 i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthUserDelete.Size())) - n16, err := m.AuthUserDelete.MarshalTo(dAtA[i:]) + n17, err := m.AuthUserDelete.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n16 + i += n17 } if m.AuthUserGet != nil { dAtA[i] = 0xf2 @@ -334,11 +347,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x44 i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthUserGet.Size())) - n17, err := m.AuthUserGet.MarshalTo(dAtA[i:]) + n18, err := m.AuthUserGet.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n17 + i += n18 } if m.AuthUserChangePassword != nil { dAtA[i] = 0xfa @@ -346,11 +359,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x44 i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthUserChangePassword.Size())) - n18, err := m.AuthUserChangePassword.MarshalTo(dAtA[i:]) + n19, err := m.AuthUserChangePassword.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n18 + i += n19 } if m.AuthUserGrantRole != nil { dAtA[i] = 0x82 @@ -358,11 +371,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x45 i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthUserGrantRole.Size())) - n19, err := m.AuthUserGrantRole.MarshalTo(dAtA[i:]) + n20, err := m.AuthUserGrantRole.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n19 + i += n20 } if m.AuthUserRevokeRole != nil { dAtA[i] = 0x8a @@ -370,11 +383,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x45 i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthUserRevokeRole.Size())) - n20, err := m.AuthUserRevokeRole.MarshalTo(dAtA[i:]) + n21, err := m.AuthUserRevokeRole.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n20 + i += n21 } if m.AuthUserList != nil { dAtA[i] = 0x92 @@ -382,11 +395,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x45 i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthUserList.Size())) - n21, err := m.AuthUserList.MarshalTo(dAtA[i:]) + n22, err := m.AuthUserList.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n21 + i += n22 } if m.AuthRoleList != nil { dAtA[i] = 0x9a @@ -394,11 +407,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x45 i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthRoleList.Size())) - n22, err := m.AuthRoleList.MarshalTo(dAtA[i:]) + n23, err := m.AuthRoleList.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n22 + i += n23 } if m.AuthRoleAdd != nil { dAtA[i] = 0x82 @@ -406,11 +419,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4b i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthRoleAdd.Size())) - n23, err := m.AuthRoleAdd.MarshalTo(dAtA[i:]) + n24, err := m.AuthRoleAdd.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n23 + i += n24 } if m.AuthRoleDelete != nil { dAtA[i] = 0x8a @@ -418,11 +431,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4b i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthRoleDelete.Size())) - n24, err := m.AuthRoleDelete.MarshalTo(dAtA[i:]) + n25, err := m.AuthRoleDelete.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n24 + i += n25 } if m.AuthRoleGet != nil { dAtA[i] = 0x92 @@ -430,11 +443,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4b i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthRoleGet.Size())) - n25, err := m.AuthRoleGet.MarshalTo(dAtA[i:]) + n26, err := m.AuthRoleGet.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n25 + i += n26 } if m.AuthRoleGrantPermission != nil { dAtA[i] = 0x9a @@ -442,11 +455,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4b i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthRoleGrantPermission.Size())) - n26, err := m.AuthRoleGrantPermission.MarshalTo(dAtA[i:]) + n27, err := m.AuthRoleGrantPermission.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n26 + i += n27 } if m.AuthRoleRevokePermission != nil { dAtA[i] = 0xa2 @@ -454,11 +467,11 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4b i++ i = encodeVarintRaftInternal(dAtA, i, uint64(m.AuthRoleRevokePermission.Size())) - n27, err := m.AuthRoleRevokePermission.MarshalTo(dAtA[i:]) + n28, err := m.AuthRoleRevokePermission.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n27 + i += n28 } return i, nil } @@ -604,6 +617,10 @@ func (m *InternalRaftRequest) Size() (n int) { l = m.Authenticate.Size() n += 2 + l + sovRaftInternal(uint64(l)) } + if m.AuthStatus != nil { + l = m.AuthStatus.Size() + n += 2 + l + sovRaftInternal(uint64(l)) + } if m.AuthUserAdd != nil { l = m.AuthUserAdd.Size() n += 2 + l + sovRaftInternal(uint64(l)) @@ -1323,6 +1340,39 @@ func (m *InternalRaftRequest) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 1013: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AuthStatus", 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.AuthStatus == nil { + m.AuthStatus = &AuthStatusRequest{} + } + if err := m.AuthStatus.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 1100: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field AuthUserAdd", wireType) @@ -2068,60 +2118,61 @@ var ( func init() { proto.RegisterFile("raft_internal.proto", fileDescriptorRaftInternal) } var fileDescriptorRaftInternal = []byte{ - // 867 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x96, 0xcb, 0x52, 0x33, 0x45, - 0x14, 0xc7, 0x49, 0xb8, 0xa6, 0x13, 0x2e, 0x36, 0xa0, 0x6d, 0xa8, 0x8a, 0x10, 0xbc, 0xe0, 0x0d, - 0xad, 0xf0, 0x00, 0x1a, 0x13, 0x0a, 0xa8, 0xa2, 0x90, 0x9a, 0xc2, 0x2a, 0xab, 0x5c, 0x8c, 0xcd, - 0xcc, 0x21, 0x19, 0x99, 0xcc, 0x8c, 0x3d, 0x9d, 0x88, 0x6f, 0xe2, 0x63, 0x78, 0xdb, 0xbb, 0x65, - 0xe1, 0x05, 0xf5, 0x05, 0x14, 0x37, 0xee, 0xbf, 0xef, 0x01, 0xbe, 0xea, 0xcb, 0xf4, 0x64, 0x92, - 0x0e, 0xbb, 0xc9, 0x39, 0xff, 0xf3, 0xfb, 0x9f, 0x99, 0x3e, 0x07, 0x1a, 0x6d, 0x32, 0x7a, 0xc3, - 0xdd, 0x20, 0xe2, 0xc0, 0x22, 0x1a, 0x1e, 0x26, 0x2c, 0xe6, 0x31, 0xae, 0x01, 0xf7, 0xfc, 0x14, - 0xd8, 0x08, 0x58, 0x72, 0x5d, 0xdf, 0xea, 0xc5, 0xbd, 0x58, 0x26, 0x3e, 0x10, 0x4f, 0x4a, 0x53, - 0xdf, 0xc8, 0x35, 0x3a, 0x52, 0x61, 0x89, 0xa7, 0x1e, 0x9b, 0x5f, 0xa2, 0x55, 0x07, 0xbe, 0x1e, - 0x42, 0xca, 0x4f, 0x81, 0xfa, 0xc0, 0xf0, 0x1a, 0x2a, 0x9f, 0x75, 0x49, 0x69, 0xb7, 0x74, 0xb0, - 0xe0, 0x94, 0xcf, 0xba, 0xb8, 0x8e, 0x56, 0x86, 0xa9, 0xb0, 0x1c, 0x00, 0x29, 0xef, 0x96, 0x0e, - 0x2a, 0x8e, 0xf9, 0x8d, 0xf7, 0xd1, 0x2a, 0x1d, 0xf2, 0xbe, 0xcb, 0x60, 0x14, 0xa4, 0x41, 0x1c, - 0x91, 0x79, 0x59, 0x56, 0x13, 0x41, 0x47, 0xc7, 0x9a, 0xbf, 0xac, 0xa3, 0xcd, 0x33, 0xdd, 0xb5, - 0x43, 0x6f, 0xb8, 0xb6, 0x9b, 0x32, 0x7a, 0x03, 0x95, 0x47, 0x2d, 0x69, 0x51, 0x6d, 0x6d, 0x1f, - 0x8e, 0xbf, 0xd7, 0xa1, 0x2e, 0x71, 0xca, 0xa3, 0x16, 0xfe, 0x10, 0x2d, 0x32, 0x1a, 0xf5, 0x40, - 0x7a, 0x55, 0x5b, 0xf5, 0x09, 0xa5, 0x48, 0x65, 0x72, 0x25, 0xc4, 0xef, 0xa0, 0xf9, 0x64, 0xc8, - 0xc9, 0x82, 0xd4, 0x93, 0xa2, 0xfe, 0x72, 0x98, 0xf5, 0xe3, 0x08, 0x11, 0xee, 0xa0, 0x9a, 0x0f, - 0x21, 0x70, 0x70, 0x95, 0xc9, 0xa2, 0x2c, 0xda, 0x2d, 0x16, 0x75, 0xa5, 0xa2, 0x60, 0x55, 0xf5, - 0xf3, 0x98, 0x30, 0xe4, 0x77, 0x11, 0x59, 0xb2, 0x19, 0x5e, 0xdd, 0x45, 0xc6, 0x90, 0xdf, 0x45, - 0xf8, 0x23, 0x84, 0xbc, 0x78, 0x90, 0x50, 0x8f, 0x8b, 0xef, 0xb7, 0x2c, 0x4b, 0x5e, 0x2b, 0x96, - 0x74, 0x4c, 0x3e, 0xab, 0x1c, 0x2b, 0xc1, 0x1f, 0xa3, 0x6a, 0x08, 0x34, 0x05, 0xb7, 0xc7, 0x68, - 0xc4, 0xc9, 0x8a, 0x8d, 0x70, 0x2e, 0x04, 0x27, 0x22, 0x6f, 0x08, 0xa1, 0x09, 0x89, 0x77, 0x56, - 0x04, 0x06, 0xa3, 0xf8, 0x16, 0x48, 0xc5, 0xf6, 0xce, 0x12, 0xe1, 0x48, 0x81, 0x79, 0xe7, 0x30, - 0x8f, 0x89, 0x63, 0xa1, 0x21, 0x65, 0x03, 0x82, 0x6c, 0xc7, 0xd2, 0x16, 0x29, 0x73, 0x2c, 0x52, - 0x88, 0x3f, 0x45, 0x1b, 0xca, 0xd6, 0xeb, 0x83, 0x77, 0x9b, 0xc4, 0x41, 0xc4, 0x49, 0x55, 0x16, - 0xbf, 0x6e, 0xb1, 0xee, 0x18, 0x51, 0x86, 0x59, 0x0f, 0x8b, 0x71, 0x7c, 0x84, 0x96, 0xfa, 0x72, - 0x86, 0x89, 0x2f, 0x31, 0x3b, 0xd6, 0x21, 0x52, 0x63, 0xee, 0x68, 0x29, 0x6e, 0xa3, 0xaa, 0x1c, - 0x61, 0x88, 0xe8, 0x75, 0x08, 0xe4, 0x7f, 0xeb, 0x09, 0xb4, 0x87, 0xbc, 0x7f, 0x2c, 0x05, 0xe6, - 0xfb, 0x51, 0x13, 0xc2, 0x5d, 0x24, 0x07, 0xde, 0xf5, 0x83, 0x54, 0x32, 0x9e, 0x2d, 0xdb, 0x3e, - 0xa0, 0x60, 0x74, 0x95, 0xc2, 0x7c, 0x40, 0x9a, 0xc7, 0xf0, 0x85, 0xa2, 0x40, 0xc4, 0x03, 0x8f, - 0x72, 0x20, 0xcf, 0x15, 0xe5, 0xed, 0x22, 0x25, 0x5b, 0xa4, 0xf6, 0x98, 0x34, 0xc3, 0x15, 0xea, - 0xf1, 0xb1, 0xde, 0x4d, 0xb1, 0xac, 0x2e, 0xf5, 0x7d, 0xf2, 0xeb, 0xca, 0xac, 0xb6, 0x3e, 0x4b, - 0x81, 0xb5, 0x7d, 0xbf, 0xd0, 0x96, 0x8e, 0xe1, 0x0b, 0xb4, 0x91, 0x63, 0xd4, 0x90, 0x93, 0xdf, - 0x14, 0x69, 0xdf, 0x4e, 0xd2, 0xdb, 0xa1, 0x61, 0x6b, 0xb4, 0x10, 0x2e, 0xb6, 0xd5, 0x03, 0x4e, - 0x7e, 0x7f, 0xb2, 0xad, 0x13, 0xe0, 0x53, 0x6d, 0x9d, 0x00, 0xc7, 0x3d, 0xf4, 0x6a, 0x8e, 0xf1, - 0xfa, 0x62, 0xed, 0xdc, 0x84, 0xa6, 0xe9, 0x37, 0x31, 0xf3, 0xc9, 0x1f, 0x0a, 0xf9, 0xae, 0x1d, - 0xd9, 0x91, 0xea, 0x4b, 0x2d, 0xce, 0xe8, 0x2f, 0x53, 0x6b, 0x1a, 0x7f, 0x8e, 0xb6, 0xc6, 0xfa, - 0x15, 0xfb, 0xe2, 0xb2, 0x38, 0x04, 0xf2, 0xa0, 0x3c, 0xde, 0x9c, 0xd1, 0xb6, 0xdc, 0xb5, 0x38, - 0x3f, 0xea, 0x97, 0xe8, 0x64, 0x06, 0x7f, 0x81, 0xb6, 0x73, 0xb2, 0x5a, 0x3d, 0x85, 0xfe, 0x53, - 0xa1, 0xdf, 0xb2, 0xa3, 0xf5, 0x0e, 0x8e, 0xb1, 0x31, 0x9d, 0x4a, 0xe1, 0x53, 0xb4, 0x96, 0xc3, - 0xc3, 0x20, 0xe5, 0xe4, 0x2f, 0x45, 0xdd, 0xb3, 0x53, 0xcf, 0x83, 0x94, 0x17, 0xe6, 0x28, 0x0b, - 0x1a, 0x92, 0x68, 0x4d, 0x91, 0xfe, 0x9e, 0x49, 0x12, 0xd6, 0x53, 0xa4, 0x2c, 0x68, 0x8e, 0x5e, - 0x92, 0xc4, 0x44, 0x7e, 0x5f, 0x99, 0x75, 0xf4, 0xa2, 0x66, 0x72, 0x22, 0x75, 0xcc, 0x4c, 0xa4, - 0xc4, 0xe8, 0x89, 0xfc, 0xa1, 0x32, 0x6b, 0x22, 0x45, 0x95, 0x65, 0x22, 0xf3, 0x70, 0xb1, 0x2d, - 0x31, 0x91, 0x3f, 0x3e, 0xd9, 0xd6, 0xe4, 0x44, 0xea, 0x18, 0xfe, 0x0a, 0xd5, 0xc7, 0x30, 0x72, - 0x50, 0x12, 0x60, 0x83, 0x20, 0x95, 0xff, 0x18, 0x7f, 0x52, 0xcc, 0xf7, 0x66, 0x30, 0x85, 0xfc, - 0xd2, 0xa8, 0x33, 0xfe, 0x2b, 0xd4, 0x9e, 0xc7, 0x03, 0xb4, 0x93, 0x7b, 0xe9, 0xd1, 0x19, 0x33, - 0xfb, 0x59, 0x99, 0xbd, 0x6f, 0x37, 0x53, 0x53, 0x32, 0xed, 0x46, 0xe8, 0x0c, 0x41, 0x73, 0x1d, - 0xad, 0x1e, 0x0f, 0x12, 0xfe, 0xad, 0x03, 0x69, 0x12, 0x47, 0x29, 0x34, 0x13, 0xb4, 0xf3, 0xc4, - 0x1f, 0x22, 0x8c, 0xd1, 0x82, 0xbc, 0x2e, 0x94, 0xe4, 0x75, 0x41, 0x3e, 0x8b, 0x6b, 0x84, 0xd9, - 0x4f, 0x7d, 0x8d, 0xc8, 0x7e, 0xe3, 0x3d, 0x54, 0x4b, 0x83, 0x41, 0x12, 0x82, 0xcb, 0xe3, 0x5b, - 0x50, 0xb7, 0x88, 0x8a, 0x53, 0x55, 0xb1, 0x2b, 0x11, 0xfa, 0x64, 0xeb, 0xfe, 0xdf, 0xc6, 0xdc, - 0xfd, 0x63, 0xa3, 0xf4, 0xf0, 0xd8, 0x28, 0xfd, 0xf3, 0xd8, 0x28, 0x7d, 0xf7, 0x5f, 0x63, 0xee, - 0x7a, 0x49, 0xde, 0x61, 0x8e, 0x5e, 0x04, 0x00, 0x00, 0xff, 0xff, 0xed, 0x36, 0xf0, 0x6f, 0x1b, - 0x09, 0x00, 0x00, + // 888 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x96, 0xdd, 0x72, 0x1b, 0x35, + 0x14, 0xc7, 0x6b, 0x37, 0x4d, 0x63, 0xd9, 0x49, 0x8d, 0x9a, 0x82, 0x70, 0x66, 0x4c, 0xea, 0xf2, + 0x51, 0xbe, 0x02, 0xe3, 0x3e, 0x00, 0x18, 0x3b, 0x93, 0x66, 0xa6, 0x53, 0x32, 0x4b, 0x98, 0x61, + 0x86, 0x8b, 0x45, 0xd9, 0x3d, 0xb1, 0x97, 0xac, 0x77, 0x17, 0x49, 0x36, 0xe1, 0x96, 0xa7, 0xe0, + 0x31, 0xf8, 0x7a, 0x88, 0x5c, 0xf0, 0x11, 0xe0, 0x05, 0x20, 0xdc, 0x70, 0x0f, 0xdc, 0x77, 0xf4, + 0xb1, 0x5a, 0xaf, 0xad, 0xcd, 0xdd, 0xfa, 0xe8, 0x7f, 0x7e, 0xff, 0x23, 0xe9, 0x9c, 0x44, 0xe8, + 0x2e, 0xa3, 0xa7, 0xc2, 0x8f, 0x12, 0x01, 0x2c, 0xa1, 0xf1, 0x5e, 0xc6, 0x52, 0x91, 0xe2, 0x16, + 0x88, 0x20, 0xe4, 0xc0, 0xe6, 0xc0, 0xb2, 0x93, 0xce, 0xf6, 0x38, 0x1d, 0xa7, 0x6a, 0xe1, 0x1d, + 0xf9, 0xa5, 0x35, 0x9d, 0x76, 0xa1, 0x31, 0x91, 0x06, 0xcb, 0x02, 0xfd, 0xd9, 0xfb, 0x0c, 0x6d, + 0x7a, 0xf0, 0xc5, 0x0c, 0xb8, 0x78, 0x0c, 0x34, 0x04, 0x86, 0xb7, 0x50, 0xfd, 0x70, 0x44, 0x6a, + 0xbb, 0xb5, 0x87, 0x6b, 0x5e, 0xfd, 0x70, 0x84, 0x3b, 0x68, 0x63, 0xc6, 0xa5, 0xe5, 0x14, 0x48, + 0x7d, 0xb7, 0xf6, 0xb0, 0xe1, 0xd9, 0xdf, 0xf8, 0x01, 0xda, 0xa4, 0x33, 0x31, 0xf1, 0x19, 0xcc, + 0x23, 0x1e, 0xa5, 0x09, 0xb9, 0xa9, 0xd2, 0x5a, 0x32, 0xe8, 0x99, 0x58, 0xef, 0xeb, 0x36, 0xba, + 0x7b, 0x68, 0xaa, 0xf6, 0xe8, 0xa9, 0x30, 0x76, 0x2b, 0x46, 0xaf, 0xa0, 0xfa, 0xbc, 0xaf, 0x2c, + 0x9a, 0xfd, 0x7b, 0x7b, 0x8b, 0xfb, 0xda, 0x33, 0x29, 0x5e, 0x7d, 0xde, 0xc7, 0xef, 0xa2, 0x5b, + 0x8c, 0x26, 0x63, 0x50, 0x5e, 0xcd, 0x7e, 0x67, 0x49, 0x29, 0x97, 0x72, 0xb9, 0x16, 0xe2, 0x37, + 0xd0, 0xcd, 0x6c, 0x26, 0xc8, 0x9a, 0xd2, 0x93, 0xb2, 0xfe, 0x68, 0x96, 0xd7, 0xe3, 0x49, 0x11, + 0x1e, 0xa2, 0x56, 0x08, 0x31, 0x08, 0xf0, 0xb5, 0xc9, 0x2d, 0x95, 0xb4, 0x5b, 0x4e, 0x1a, 0x29, + 0x45, 0xc9, 0xaa, 0x19, 0x16, 0x31, 0x69, 0x28, 0xce, 0x13, 0xb2, 0xee, 0x32, 0x3c, 0x3e, 0x4f, + 0xac, 0xa1, 0x38, 0x4f, 0xf0, 0x7b, 0x08, 0x05, 0xe9, 0x34, 0xa3, 0x81, 0x90, 0xe7, 0x77, 0x5b, + 0xa5, 0xbc, 0x54, 0x4e, 0x19, 0xda, 0xf5, 0x3c, 0x73, 0x21, 0x05, 0xbf, 0x8f, 0x9a, 0x31, 0x50, + 0x0e, 0xfe, 0x98, 0xd1, 0x44, 0x90, 0x0d, 0x17, 0xe1, 0x89, 0x14, 0x1c, 0xc8, 0x75, 0x4b, 0x88, + 0x6d, 0x48, 0xee, 0x59, 0x13, 0x18, 0xcc, 0xd3, 0x33, 0x20, 0x0d, 0xd7, 0x9e, 0x15, 0xc2, 0x53, + 0x02, 0xbb, 0xe7, 0xb8, 0x88, 0xc9, 0x6b, 0xa1, 0x31, 0x65, 0x53, 0x82, 0x5c, 0xd7, 0x32, 0x90, + 0x4b, 0xf6, 0x5a, 0x94, 0x10, 0x7f, 0x88, 0xda, 0xda, 0x36, 0x98, 0x40, 0x70, 0x96, 0xa5, 0x51, + 0x22, 0x48, 0x53, 0x25, 0xbf, 0xec, 0xb0, 0x1e, 0x5a, 0x51, 0x8e, 0xb9, 0x13, 0x97, 0xe3, 0xf8, + 0x11, 0x5a, 0x9f, 0xa8, 0x1e, 0x26, 0xa1, 0xc2, 0xec, 0x38, 0x9b, 0x48, 0xb7, 0xb9, 0x67, 0xa4, + 0x78, 0x80, 0x9a, 0xaa, 0x85, 0x21, 0xa1, 0x27, 0x31, 0x90, 0x7f, 0x9c, 0x37, 0x30, 0x98, 0x89, + 0xc9, 0xbe, 0x12, 0xd8, 0xf3, 0xa3, 0x36, 0x84, 0x47, 0x48, 0x35, 0xbc, 0x1f, 0x46, 0x5c, 0x31, + 0xfe, 0xbd, 0xed, 0x3a, 0x40, 0xc9, 0x18, 0x69, 0x85, 0x3d, 0x40, 0x5a, 0xc4, 0xf0, 0x53, 0x4d, + 0x81, 0x44, 0x44, 0x01, 0x15, 0x40, 0xfe, 0xd3, 0x94, 0xd7, 0xcb, 0x94, 0x7c, 0x90, 0x06, 0x0b, + 0xd2, 0x1c, 0x57, 0xca, 0xb7, 0x1b, 0xe3, 0x82, 0x8a, 0x19, 0x27, 0xff, 0x57, 0x6e, 0xec, 0x23, + 0x25, 0x28, 0x6d, 0x4c, 0x87, 0xf0, 0xbe, 0x19, 0x6f, 0x39, 0xef, 0x3e, 0x0d, 0x43, 0xf2, 0xd3, + 0x46, 0xd5, 0xce, 0x3e, 0xe6, 0xc0, 0x06, 0x61, 0x58, 0xda, 0x99, 0x89, 0xe1, 0xa7, 0xa8, 0x5d, + 0x60, 0xf4, 0x9c, 0x90, 0x9f, 0x35, 0xe9, 0x81, 0x9b, 0x64, 0x06, 0xcc, 0xc0, 0xb6, 0x68, 0x29, + 0x5c, 0x2e, 0x6b, 0x0c, 0x82, 0xfc, 0x72, 0x6d, 0x59, 0x07, 0x20, 0x56, 0xca, 0x3a, 0x00, 0x81, + 0xc7, 0xe8, 0xc5, 0x02, 0x13, 0x4c, 0xe4, 0xe4, 0xfa, 0x19, 0xe5, 0xfc, 0xcb, 0x94, 0x85, 0xe4, + 0x57, 0x8d, 0x7c, 0xd3, 0x8d, 0x1c, 0x2a, 0xf5, 0x91, 0x11, 0xe7, 0xf4, 0xe7, 0xa9, 0x73, 0x19, + 0x7f, 0x82, 0xb6, 0x17, 0xea, 0x95, 0x23, 0xe7, 0xb3, 0x34, 0x06, 0x72, 0xa9, 0x3d, 0x5e, 0xad, + 0x28, 0x5b, 0x8d, 0x6b, 0x5a, 0x74, 0xcb, 0x73, 0x74, 0x79, 0x05, 0x7f, 0x8a, 0xee, 0x15, 0x64, + 0x3d, 0xbd, 0x1a, 0xfd, 0x9b, 0x46, 0xbf, 0xe6, 0x46, 0x9b, 0x31, 0x5e, 0x60, 0x63, 0xba, 0xb2, + 0x84, 0x1f, 0xa3, 0xad, 0x02, 0x1e, 0x47, 0x5c, 0x90, 0xdf, 0x35, 0xf5, 0xbe, 0x9b, 0xfa, 0x24, + 0xe2, 0xa2, 0xd4, 0x8a, 0x79, 0xd0, 0x92, 0x64, 0x69, 0x9a, 0xf4, 0x47, 0x25, 0x49, 0x5a, 0xaf, + 0x90, 0xf2, 0xa0, 0xbd, 0x7a, 0x45, 0x92, 0x1d, 0xf9, 0x6d, 0xa3, 0xea, 0xea, 0x65, 0xce, 0x72, + 0x47, 0x9a, 0x98, 0xed, 0x48, 0x85, 0x31, 0x1d, 0xf9, 0x5d, 0xa3, 0xaa, 0x23, 0x65, 0x96, 0xa3, + 0x23, 0x8b, 0x70, 0xb9, 0x2c, 0xd9, 0x91, 0xdf, 0x5f, 0x5b, 0xd6, 0x72, 0x47, 0x9a, 0x18, 0xfe, + 0x1c, 0x75, 0x16, 0x30, 0xaa, 0x51, 0x32, 0x60, 0xd3, 0x88, 0xab, 0xff, 0xad, 0x3f, 0x68, 0xe6, + 0x5b, 0x15, 0x4c, 0x29, 0x3f, 0xb2, 0xea, 0x9c, 0xff, 0x02, 0x75, 0xaf, 0xe3, 0x29, 0xda, 0x29, + 0xbc, 0x4c, 0xeb, 0x2c, 0x98, 0xfd, 0xa8, 0xcd, 0xde, 0x76, 0x9b, 0xe9, 0x2e, 0x59, 0x75, 0x23, + 0xb4, 0x42, 0xd0, 0xbb, 0x83, 0x36, 0xf7, 0xa7, 0x99, 0xf8, 0xca, 0x03, 0x9e, 0xa5, 0x09, 0x87, + 0x5e, 0x86, 0x76, 0xae, 0xf9, 0x5b, 0x86, 0x31, 0x5a, 0x53, 0x2f, 0x8e, 0x9a, 0x7a, 0x71, 0xa8, + 0x6f, 0xf9, 0x12, 0xb1, 0xf3, 0x69, 0x5e, 0x22, 0xf9, 0x6f, 0x7c, 0x1f, 0xb5, 0x78, 0x34, 0xcd, + 0x62, 0xf0, 0x45, 0x7a, 0x06, 0xfa, 0x21, 0xd2, 0xf0, 0x9a, 0x3a, 0x76, 0x2c, 0x43, 0x1f, 0x6c, + 0x5f, 0xfc, 0xd5, 0xbd, 0x71, 0x71, 0xd5, 0xad, 0x5d, 0x5e, 0x75, 0x6b, 0x7f, 0x5e, 0x75, 0x6b, + 0xdf, 0xfc, 0xdd, 0xbd, 0x71, 0xb2, 0xae, 0x9e, 0x41, 0x8f, 0x9e, 0x05, 0x00, 0x00, 0xff, 0xff, + 0xe3, 0xf8, 0x76, 0x98, 0x5e, 0x09, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/raft_internal.proto b/etcdserver/etcdserverpb/raft_internal.proto index 7111f4572b21..3d2ff6fc32ed 100644 --- a/etcdserver/etcdserverpb/raft_internal.proto +++ b/etcdserver/etcdserverpb/raft_internal.proto @@ -41,6 +41,7 @@ message InternalRaftRequest { AuthEnableRequest auth_enable = 1000; AuthDisableRequest auth_disable = 1011; + AuthStatusRequest auth_status = 1013; InternalAuthenticateRequest authenticate = 1012; diff --git a/etcdserver/etcdserverpb/rpc.pb.go b/etcdserver/etcdserverpb/rpc.pb.go index 6cbccc797c43..d915c77d5168 100644 --- a/etcdserver/etcdserverpb/rpc.pb.go +++ b/etcdserver/etcdserverpb/rpc.pb.go @@ -2727,6 +2727,14 @@ func (m *AuthDisableRequest) String() string { return proto.CompactTe func (*AuthDisableRequest) ProtoMessage() {} func (*AuthDisableRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{60} } +type AuthStatusRequest struct { +} + +func (m *AuthStatusRequest) Reset() { *m = AuthStatusRequest{} } +func (m *AuthStatusRequest) String() string { return proto.CompactTextString(m) } +func (*AuthStatusRequest) ProtoMessage() {} +func (*AuthStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{61} } + type AuthenticateRequest struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` @@ -2735,7 +2743,7 @@ type AuthenticateRequest struct { func (m *AuthenticateRequest) Reset() { *m = AuthenticateRequest{} } func (m *AuthenticateRequest) String() string { return proto.CompactTextString(m) } func (*AuthenticateRequest) ProtoMessage() {} -func (*AuthenticateRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{61} } +func (*AuthenticateRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{62} } func (m *AuthenticateRequest) GetName() string { if m != nil { @@ -2760,7 +2768,7 @@ type AuthUserAddRequest struct { func (m *AuthUserAddRequest) Reset() { *m = AuthUserAddRequest{} } func (m *AuthUserAddRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserAddRequest) ProtoMessage() {} -func (*AuthUserAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{62} } +func (*AuthUserAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{63} } func (m *AuthUserAddRequest) GetName() string { if m != nil { @@ -2790,7 +2798,7 @@ type AuthUserGetRequest struct { func (m *AuthUserGetRequest) Reset() { *m = AuthUserGetRequest{} } func (m *AuthUserGetRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserGetRequest) ProtoMessage() {} -func (*AuthUserGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{63} } +func (*AuthUserGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{64} } func (m *AuthUserGetRequest) GetName() string { if m != nil { @@ -2807,7 +2815,7 @@ type AuthUserDeleteRequest struct { func (m *AuthUserDeleteRequest) Reset() { *m = AuthUserDeleteRequest{} } func (m *AuthUserDeleteRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserDeleteRequest) ProtoMessage() {} -func (*AuthUserDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{64} } +func (*AuthUserDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{65} } func (m *AuthUserDeleteRequest) GetName() string { if m != nil { @@ -2827,7 +2835,7 @@ func (m *AuthUserChangePasswordRequest) Reset() { *m = AuthUserChangePas func (m *AuthUserChangePasswordRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserChangePasswordRequest) ProtoMessage() {} func (*AuthUserChangePasswordRequest) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{65} + return fileDescriptorRpc, []int{66} } func (m *AuthUserChangePasswordRequest) GetName() string { @@ -2854,7 +2862,7 @@ type AuthUserGrantRoleRequest struct { func (m *AuthUserGrantRoleRequest) Reset() { *m = AuthUserGrantRoleRequest{} } func (m *AuthUserGrantRoleRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserGrantRoleRequest) ProtoMessage() {} -func (*AuthUserGrantRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{66} } +func (*AuthUserGrantRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{67} } func (m *AuthUserGrantRoleRequest) GetUser() string { if m != nil { @@ -2878,7 +2886,7 @@ type AuthUserRevokeRoleRequest struct { func (m *AuthUserRevokeRoleRequest) Reset() { *m = AuthUserRevokeRoleRequest{} } func (m *AuthUserRevokeRoleRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserRevokeRoleRequest) ProtoMessage() {} -func (*AuthUserRevokeRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{67} } +func (*AuthUserRevokeRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{68} } func (m *AuthUserRevokeRoleRequest) GetName() string { if m != nil { @@ -2902,7 +2910,7 @@ type AuthRoleAddRequest struct { func (m *AuthRoleAddRequest) Reset() { *m = AuthRoleAddRequest{} } func (m *AuthRoleAddRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleAddRequest) ProtoMessage() {} -func (*AuthRoleAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{68} } +func (*AuthRoleAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{69} } func (m *AuthRoleAddRequest) GetName() string { if m != nil { @@ -2918,7 +2926,7 @@ type AuthRoleGetRequest struct { func (m *AuthRoleGetRequest) Reset() { *m = AuthRoleGetRequest{} } func (m *AuthRoleGetRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleGetRequest) ProtoMessage() {} -func (*AuthRoleGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{69} } +func (*AuthRoleGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{70} } func (m *AuthRoleGetRequest) GetRole() string { if m != nil { @@ -2933,7 +2941,7 @@ type AuthUserListRequest struct { func (m *AuthUserListRequest) Reset() { *m = AuthUserListRequest{} } func (m *AuthUserListRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserListRequest) ProtoMessage() {} -func (*AuthUserListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{70} } +func (*AuthUserListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{71} } type AuthRoleListRequest struct { } @@ -2941,7 +2949,7 @@ type AuthRoleListRequest struct { func (m *AuthRoleListRequest) Reset() { *m = AuthRoleListRequest{} } func (m *AuthRoleListRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleListRequest) ProtoMessage() {} -func (*AuthRoleListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{71} } +func (*AuthRoleListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{72} } type AuthRoleDeleteRequest struct { Role string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"` @@ -2950,7 +2958,7 @@ type AuthRoleDeleteRequest struct { func (m *AuthRoleDeleteRequest) Reset() { *m = AuthRoleDeleteRequest{} } func (m *AuthRoleDeleteRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleDeleteRequest) ProtoMessage() {} -func (*AuthRoleDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{72} } +func (*AuthRoleDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{73} } func (m *AuthRoleDeleteRequest) GetRole() string { if m != nil { @@ -2970,7 +2978,7 @@ func (m *AuthRoleGrantPermissionRequest) Reset() { *m = AuthRoleGrantPer func (m *AuthRoleGrantPermissionRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleGrantPermissionRequest) ProtoMessage() {} func (*AuthRoleGrantPermissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{73} + return fileDescriptorRpc, []int{74} } func (m *AuthRoleGrantPermissionRequest) GetName() string { @@ -2997,7 +3005,7 @@ func (m *AuthRoleRevokePermissionRequest) Reset() { *m = AuthRoleRevokeP func (m *AuthRoleRevokePermissionRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleRevokePermissionRequest) ProtoMessage() {} func (*AuthRoleRevokePermissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{74} + return fileDescriptorRpc, []int{75} } func (m *AuthRoleRevokePermissionRequest) GetRole() string { @@ -3028,7 +3036,7 @@ type AuthEnableResponse struct { func (m *AuthEnableResponse) Reset() { *m = AuthEnableResponse{} } func (m *AuthEnableResponse) String() string { return proto.CompactTextString(m) } func (*AuthEnableResponse) ProtoMessage() {} -func (*AuthEnableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{75} } +func (*AuthEnableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{76} } func (m *AuthEnableResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3044,7 +3052,7 @@ type AuthDisableResponse struct { func (m *AuthDisableResponse) Reset() { *m = AuthDisableResponse{} } func (m *AuthDisableResponse) String() string { return proto.CompactTextString(m) } func (*AuthDisableResponse) ProtoMessage() {} -func (*AuthDisableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{76} } +func (*AuthDisableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{77} } func (m *AuthDisableResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3053,6 +3061,39 @@ func (m *AuthDisableResponse) GetHeader() *ResponseHeader { return nil } +type AuthStatusResponse struct { + Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` + Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"` + // authRevision is the current revision of auth store + AuthRevision uint64 `protobuf:"varint,3,opt,name=authRevision,proto3" json:"authRevision,omitempty"` +} + +func (m *AuthStatusResponse) Reset() { *m = AuthStatusResponse{} } +func (m *AuthStatusResponse) String() string { return proto.CompactTextString(m) } +func (*AuthStatusResponse) ProtoMessage() {} +func (*AuthStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{78} } + +func (m *AuthStatusResponse) GetHeader() *ResponseHeader { + if m != nil { + return m.Header + } + return nil +} + +func (m *AuthStatusResponse) GetEnabled() bool { + if m != nil { + return m.Enabled + } + return false +} + +func (m *AuthStatusResponse) GetAuthRevision() uint64 { + if m != nil { + return m.AuthRevision + } + return 0 +} + type AuthenticateResponse struct { Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` // token is an authorized token that can be used in succeeding RPCs @@ -3062,7 +3103,7 @@ type AuthenticateResponse struct { func (m *AuthenticateResponse) Reset() { *m = AuthenticateResponse{} } func (m *AuthenticateResponse) String() string { return proto.CompactTextString(m) } func (*AuthenticateResponse) ProtoMessage() {} -func (*AuthenticateResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{77} } +func (*AuthenticateResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{79} } func (m *AuthenticateResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3085,7 +3126,7 @@ type AuthUserAddResponse struct { func (m *AuthUserAddResponse) Reset() { *m = AuthUserAddResponse{} } func (m *AuthUserAddResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserAddResponse) ProtoMessage() {} -func (*AuthUserAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{78} } +func (*AuthUserAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{80} } func (m *AuthUserAddResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3102,7 +3143,7 @@ type AuthUserGetResponse struct { func (m *AuthUserGetResponse) Reset() { *m = AuthUserGetResponse{} } func (m *AuthUserGetResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserGetResponse) ProtoMessage() {} -func (*AuthUserGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{79} } +func (*AuthUserGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{81} } func (m *AuthUserGetResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3125,7 +3166,7 @@ type AuthUserDeleteResponse struct { func (m *AuthUserDeleteResponse) Reset() { *m = AuthUserDeleteResponse{} } func (m *AuthUserDeleteResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserDeleteResponse) ProtoMessage() {} -func (*AuthUserDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{80} } +func (*AuthUserDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{82} } func (m *AuthUserDeleteResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3142,7 +3183,7 @@ func (m *AuthUserChangePasswordResponse) Reset() { *m = AuthUserChangePa func (m *AuthUserChangePasswordResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserChangePasswordResponse) ProtoMessage() {} func (*AuthUserChangePasswordResponse) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{81} + return fileDescriptorRpc, []int{83} } func (m *AuthUserChangePasswordResponse) GetHeader() *ResponseHeader { @@ -3159,7 +3200,7 @@ type AuthUserGrantRoleResponse struct { func (m *AuthUserGrantRoleResponse) Reset() { *m = AuthUserGrantRoleResponse{} } func (m *AuthUserGrantRoleResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserGrantRoleResponse) ProtoMessage() {} -func (*AuthUserGrantRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{82} } +func (*AuthUserGrantRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{84} } func (m *AuthUserGrantRoleResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3175,7 +3216,7 @@ type AuthUserRevokeRoleResponse struct { func (m *AuthUserRevokeRoleResponse) Reset() { *m = AuthUserRevokeRoleResponse{} } func (m *AuthUserRevokeRoleResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserRevokeRoleResponse) ProtoMessage() {} -func (*AuthUserRevokeRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{83} } +func (*AuthUserRevokeRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{85} } func (m *AuthUserRevokeRoleResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3191,7 +3232,7 @@ type AuthRoleAddResponse struct { func (m *AuthRoleAddResponse) Reset() { *m = AuthRoleAddResponse{} } func (m *AuthRoleAddResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleAddResponse) ProtoMessage() {} -func (*AuthRoleAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{84} } +func (*AuthRoleAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{86} } func (m *AuthRoleAddResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3208,7 +3249,7 @@ type AuthRoleGetResponse struct { func (m *AuthRoleGetResponse) Reset() { *m = AuthRoleGetResponse{} } func (m *AuthRoleGetResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleGetResponse) ProtoMessage() {} -func (*AuthRoleGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{85} } +func (*AuthRoleGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{87} } func (m *AuthRoleGetResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3232,7 +3273,7 @@ type AuthRoleListResponse struct { func (m *AuthRoleListResponse) Reset() { *m = AuthRoleListResponse{} } func (m *AuthRoleListResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleListResponse) ProtoMessage() {} -func (*AuthRoleListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{86} } +func (*AuthRoleListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{88} } func (m *AuthRoleListResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3256,7 +3297,7 @@ type AuthUserListResponse struct { func (m *AuthUserListResponse) Reset() { *m = AuthUserListResponse{} } func (m *AuthUserListResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserListResponse) ProtoMessage() {} -func (*AuthUserListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{87} } +func (*AuthUserListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{89} } func (m *AuthUserListResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3279,7 +3320,7 @@ type AuthRoleDeleteResponse struct { func (m *AuthRoleDeleteResponse) Reset() { *m = AuthRoleDeleteResponse{} } func (m *AuthRoleDeleteResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleDeleteResponse) ProtoMessage() {} -func (*AuthRoleDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{88} } +func (*AuthRoleDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{90} } func (m *AuthRoleDeleteResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3296,7 +3337,7 @@ func (m *AuthRoleGrantPermissionResponse) Reset() { *m = AuthRoleGrantPe func (m *AuthRoleGrantPermissionResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleGrantPermissionResponse) ProtoMessage() {} func (*AuthRoleGrantPermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{89} + return fileDescriptorRpc, []int{91} } func (m *AuthRoleGrantPermissionResponse) GetHeader() *ResponseHeader { @@ -3314,7 +3355,7 @@ func (m *AuthRoleRevokePermissionResponse) Reset() { *m = AuthRoleRevoke func (m *AuthRoleRevokePermissionResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleRevokePermissionResponse) ProtoMessage() {} func (*AuthRoleRevokePermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{90} + return fileDescriptorRpc, []int{92} } func (m *AuthRoleRevokePermissionResponse) GetHeader() *ResponseHeader { @@ -3386,6 +3427,7 @@ func init() { proto.RegisterType((*StatusResponse)(nil), "etcdserverpb.StatusResponse") proto.RegisterType((*AuthEnableRequest)(nil), "etcdserverpb.AuthEnableRequest") proto.RegisterType((*AuthDisableRequest)(nil), "etcdserverpb.AuthDisableRequest") + proto.RegisterType((*AuthStatusRequest)(nil), "etcdserverpb.AuthStatusRequest") proto.RegisterType((*AuthenticateRequest)(nil), "etcdserverpb.AuthenticateRequest") proto.RegisterType((*AuthUserAddRequest)(nil), "etcdserverpb.AuthUserAddRequest") proto.RegisterType((*AuthUserGetRequest)(nil), "etcdserverpb.AuthUserGetRequest") @@ -3402,6 +3444,7 @@ func init() { proto.RegisterType((*AuthRoleRevokePermissionRequest)(nil), "etcdserverpb.AuthRoleRevokePermissionRequest") proto.RegisterType((*AuthEnableResponse)(nil), "etcdserverpb.AuthEnableResponse") proto.RegisterType((*AuthDisableResponse)(nil), "etcdserverpb.AuthDisableResponse") + proto.RegisterType((*AuthStatusResponse)(nil), "etcdserverpb.AuthStatusResponse") proto.RegisterType((*AuthenticateResponse)(nil), "etcdserverpb.AuthenticateResponse") proto.RegisterType((*AuthUserAddResponse)(nil), "etcdserverpb.AuthUserAddResponse") proto.RegisterType((*AuthUserGetResponse)(nil), "etcdserverpb.AuthUserGetResponse") @@ -7566,6 +7609,24 @@ func (m *AuthDisableRequest) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *AuthStatusRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *AuthStatusRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + return i, nil +} + func (m *AuthenticateRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -8008,7 +8069,7 @@ func (m *AuthDisableResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } -func (m *AuthenticateResponse) Marshal() (dAtA []byte, err error) { +func (m *AuthStatusResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) @@ -8018,7 +8079,7 @@ func (m *AuthenticateResponse) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *AuthenticateResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *AuthStatusResponse) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int @@ -8033,6 +8094,49 @@ func (m *AuthenticateResponse) MarshalTo(dAtA []byte) (int, error) { } i += n48 } + if m.Enabled { + dAtA[i] = 0x10 + i++ + if m.Enabled { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } + if m.AuthRevision != 0 { + dAtA[i] = 0x18 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.AuthRevision)) + } + return i, nil +} + +func (m *AuthenticateResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *AuthenticateResponse) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.Header != nil { + dAtA[i] = 0xa + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) + n49, err := m.Header.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n49 + } if len(m.Token) > 0 { dAtA[i] = 0x12 i++ @@ -8061,11 +8165,11 @@ func (m *AuthUserAddResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n49, err := m.Header.MarshalTo(dAtA[i:]) + n50, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n49 + i += n50 } return i, nil } @@ -8089,11 +8193,11 @@ func (m *AuthUserGetResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n50, err := m.Header.MarshalTo(dAtA[i:]) + n51, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n50 + i += n51 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -8132,11 +8236,11 @@ func (m *AuthUserDeleteResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n51, err := m.Header.MarshalTo(dAtA[i:]) + n52, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n51 + i += n52 } return i, nil } @@ -8160,11 +8264,11 @@ func (m *AuthUserChangePasswordResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n52, err := m.Header.MarshalTo(dAtA[i:]) + n53, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n52 + i += n53 } return i, nil } @@ -8188,11 +8292,11 @@ func (m *AuthUserGrantRoleResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n53, err := m.Header.MarshalTo(dAtA[i:]) + n54, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n53 + i += n54 } return i, nil } @@ -8216,11 +8320,11 @@ func (m *AuthUserRevokeRoleResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n54, err := m.Header.MarshalTo(dAtA[i:]) + n55, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n54 + i += n55 } return i, nil } @@ -8244,11 +8348,11 @@ func (m *AuthRoleAddResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n55, err := m.Header.MarshalTo(dAtA[i:]) + n56, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n55 + i += n56 } return i, nil } @@ -8272,11 +8376,11 @@ func (m *AuthRoleGetResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n56, err := m.Header.MarshalTo(dAtA[i:]) + n57, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n56 + i += n57 } if len(m.Perm) > 0 { for _, msg := range m.Perm { @@ -8312,11 +8416,11 @@ func (m *AuthRoleListResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n57, err := m.Header.MarshalTo(dAtA[i:]) + n58, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n57 + i += n58 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -8355,11 +8459,11 @@ func (m *AuthUserListResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n58, err := m.Header.MarshalTo(dAtA[i:]) + n59, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n58 + i += n59 } if len(m.Users) > 0 { for _, s := range m.Users { @@ -8398,11 +8502,11 @@ func (m *AuthRoleDeleteResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n59, err := m.Header.MarshalTo(dAtA[i:]) + n60, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n59 + i += n60 } return i, nil } @@ -8426,11 +8530,11 @@ func (m *AuthRoleGrantPermissionResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n60, err := m.Header.MarshalTo(dAtA[i:]) + n61, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n60 + i += n61 } return i, nil } @@ -8454,11 +8558,11 @@ func (m *AuthRoleRevokePermissionResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n61, err := m.Header.MarshalTo(dAtA[i:]) + n62, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n61 + i += n62 } return i, nil } @@ -9516,6 +9620,12 @@ func (m *AuthDisableRequest) Size() (n int) { return n } +func (m *AuthStatusRequest) Size() (n int) { + var l int + _ = l + return n +} + func (m *AuthenticateRequest) Size() (n int) { var l int _ = l @@ -9704,6 +9814,22 @@ func (m *AuthDisableResponse) Size() (n int) { return n } +func (m *AuthStatusResponse) Size() (n int) { + var l int + _ = l + if m.Header != nil { + l = m.Header.Size() + n += 1 + l + sovRpc(uint64(l)) + } + if m.Enabled { + n += 2 + } + if m.AuthRevision != 0 { + n += 1 + sovRpc(uint64(m.AuthRevision)) + } + return n +} + func (m *AuthenticateResponse) Size() (n int) { var l int _ = l @@ -16934,6 +17060,56 @@ func (m *AuthDisableRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *AuthStatusRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: AuthStatusRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AuthStatusRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipRpc(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRpc + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *AuthenticateRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -18421,6 +18597,128 @@ func (m *AuthDisableResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *AuthStatusResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: AuthStatusResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AuthStatusResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Header == nil { + m.Header = &ResponseHeader{} + } + if err := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Enabled", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.Enabled = bool(v != 0) + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field AuthRevision", wireType) + } + m.AuthRevision = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.AuthRevision |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipRpc(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRpc + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *AuthenticateResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -19838,33 +20136,33 @@ var ( func init() { proto.RegisterFile("rpc.proto", fileDescriptorRpc) } var fileDescriptorRpc = []byte{ - // 3928 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0x5b, 0x6f, 0x23, 0xc9, - 0x75, 0x56, 0x93, 0xe2, 0xed, 0xf0, 0x22, 0xaa, 0x74, 0x19, 0x0e, 0x67, 0x46, 0xa3, 0xad, 0xd9, - 0xd9, 0xd5, 0xce, 0xec, 0x8a, 0x6b, 0xd9, 0x4e, 0x80, 0x49, 0xe2, 0x58, 0x23, 0x71, 0x67, 0xb4, - 0xd2, 0x88, 0xda, 0x16, 0x67, 0xf6, 0x02, 0x23, 0x42, 0x8b, 0x2c, 0x49, 0x1d, 0x91, 0xdd, 0x74, - 0x77, 0x93, 0x23, 0x6d, 0x2e, 0x0e, 0x0c, 0xc7, 0x40, 0xf2, 0x68, 0x03, 0x41, 0xf2, 0x90, 0xa7, - 0x20, 0x08, 0xfc, 0x90, 0xe7, 0x00, 0xf9, 0x05, 0x79, 0xca, 0x05, 0xf9, 0x03, 0xc1, 0xc6, 0x2f, - 0xc9, 0xaf, 0x30, 0xea, 0xd6, 0x5d, 0x7d, 0xa3, 0xc6, 0xa6, 0x77, 0x5f, 0xa4, 0xae, 0x53, 0xa7, - 0xce, 0x39, 0x75, 0xaa, 0xea, 0x9c, 0xd3, 0x5f, 0x17, 0xa1, 0xe4, 0x8c, 0x7a, 0x9b, 0x23, 0xc7, + // 3960 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0x5b, 0x6f, 0x23, 0x47, + 0x76, 0x56, 0x93, 0xe2, 0xed, 0xf0, 0x22, 0xaa, 0x74, 0x19, 0x0e, 0x67, 0x46, 0x23, 0xd7, 0x78, + 0x6c, 0x79, 0xc6, 0x16, 0xbd, 0xda, 0xdd, 0x04, 0x98, 0x24, 0x9b, 0xd5, 0x48, 0xf4, 0x8c, 0x2c, + 0x8d, 0x28, 0xb7, 0x38, 0xe3, 0x0b, 0x16, 0x11, 0x5a, 0x64, 0x49, 0xea, 0x88, 0xec, 0xe6, 0x76, + 0x37, 0x69, 0xc9, 0xb9, 0x6c, 0xb0, 0xd8, 0x2c, 0x92, 0x3c, 0xee, 0x02, 0x41, 0xf2, 0x90, 0xa7, + 0x20, 0x08, 0xf6, 0x21, 0xcf, 0x01, 0xf2, 0x0b, 0xf2, 0x94, 0x0b, 0xf2, 0x07, 0x02, 0x67, 0x5f, + 0x92, 0x5f, 0x11, 0xd4, 0xad, 0xbb, 0xfa, 0x46, 0xcd, 0x9a, 0xb6, 0x5f, 0xa4, 0xae, 0x53, 0xa7, + 0xce, 0x39, 0x75, 0xaa, 0xea, 0x9c, 0xd3, 0x5f, 0x35, 0xa1, 0xe4, 0x8c, 0x7a, 0x9b, 0x23, 0xc7, 0xf6, 0x6c, 0x54, 0x21, 0x5e, 0xaf, 0xef, 0x12, 0x67, 0x42, 0x9c, 0xd1, 0x69, 0x73, 0xf9, 0xdc, 0x3e, 0xb7, 0x59, 0x47, 0x8b, 0x3e, 0x71, 0x9e, 0xe6, 0x6d, 0xca, 0xd3, 0x1a, 0x4e, 0x7a, 0x3d, 0xf6, 0x67, 0x74, 0xda, 0xba, 0x9c, 0x88, 0xae, 0x3b, 0xac, 0xcb, 0x18, 0x7b, 0x17, 0xec, 0xcf, 0xe8, 0x94, 0xfd, 0x13, 0x9d, 0x77, 0xcf, 0x6d, 0xfb, 0x7c, 0x40, 0x5a, 0xc6, 0xc8, 0x6c, 0x19, - 0x96, 0x65, 0x7b, 0x86, 0x67, 0xda, 0x96, 0xcb, 0x7b, 0xf1, 0x5f, 0x6a, 0x50, 0xd3, 0x89, 0x3b, + 0x96, 0x65, 0x7b, 0x86, 0x67, 0xda, 0x96, 0xcb, 0x7b, 0xf1, 0x9f, 0x6b, 0x50, 0xd3, 0x89, 0x3b, 0xb2, 0x2d, 0x97, 0x3c, 0x27, 0x46, 0x9f, 0x38, 0xe8, 0x1e, 0x40, 0x6f, 0x30, 0x76, 0x3d, 0xe2, 0x9c, 0x98, 0xfd, 0x86, 0xb6, 0xae, 0x6d, 0xcc, 0xeb, 0x25, 0x41, 0xd9, 0xeb, 0xa3, 0x3b, 0x50, 0x1a, 0x92, 0xe1, 0x29, 0xef, 0xcd, 0xb0, 0xde, 0x22, 0x27, 0xec, 0xf5, 0x51, 0x13, 0x8a, 0x0e, 0x99, 0x98, 0xae, 0x69, 0x5b, 0x8d, 0xec, 0xba, 0xb6, 0x91, 0xd5, 0xfd, 0x36, 0x1d, 0xe8, 0x18, - 0x67, 0xde, 0x89, 0x47, 0x9c, 0x61, 0x63, 0x9e, 0x0f, 0xa4, 0x84, 0x2e, 0x71, 0x86, 0xf8, 0x27, - 0x39, 0xa8, 0xe8, 0x86, 0x75, 0x4e, 0x74, 0xf2, 0xc3, 0x31, 0x71, 0x3d, 0x54, 0x87, 0xec, 0x25, + 0x67, 0xde, 0x89, 0x47, 0x9c, 0x61, 0x63, 0x9e, 0x0f, 0xa4, 0x84, 0x2e, 0x71, 0x86, 0xf8, 0x67, + 0x39, 0xa8, 0xe8, 0x86, 0x75, 0x4e, 0x74, 0xf2, 0xe3, 0x31, 0x71, 0x3d, 0x54, 0x87, 0xec, 0x25, 0xb9, 0x66, 0xea, 0x2b, 0x3a, 0x7d, 0xe4, 0xe3, 0xad, 0x73, 0x72, 0x42, 0x2c, 0xae, 0xb8, 0x42, 0xc7, 0x5b, 0xe7, 0xa4, 0x6d, 0xf5, 0xd1, 0x32, 0xe4, 0x06, 0xe6, 0xd0, 0xf4, 0x84, 0x56, 0xde, 0x08, 0x99, 0x33, 0x1f, 0x31, 0x67, 0x07, 0xc0, 0xb5, 0x1d, 0xef, 0xc4, 0x76, 0xfa, 0xc4, 0x69, - 0xe4, 0xd6, 0xb5, 0x8d, 0xda, 0xd6, 0xdb, 0x9b, 0xea, 0x42, 0x6c, 0xaa, 0x06, 0x6d, 0x1e, 0xdb, - 0x8e, 0xd7, 0xa1, 0xbc, 0x7a, 0xc9, 0x95, 0x8f, 0xe8, 0x23, 0x28, 0x33, 0x21, 0x9e, 0xe1, 0x9c, + 0xe4, 0xd6, 0xb5, 0x8d, 0xda, 0xd6, 0x9b, 0x9b, 0xea, 0x42, 0x6c, 0xaa, 0x06, 0x6d, 0x1e, 0xdb, + 0x8e, 0xd7, 0xa1, 0xbc, 0x7a, 0xc9, 0x95, 0x8f, 0xe8, 0x03, 0x28, 0x33, 0x21, 0x9e, 0xe1, 0x9c, 0x13, 0xaf, 0x91, 0x67, 0x52, 0x1e, 0xde, 0x20, 0xa5, 0xcb, 0x98, 0x75, 0xa6, 0x9e, 0x3f, 0x23, - 0x0c, 0x15, 0x97, 0x38, 0xa6, 0x31, 0x30, 0xbf, 0x34, 0x4e, 0x07, 0xa4, 0x51, 0x58, 0xd7, 0x36, + 0x0c, 0x15, 0x97, 0x38, 0xa6, 0x31, 0x30, 0xbf, 0x30, 0x4e, 0x07, 0xa4, 0x51, 0x58, 0xd7, 0x36, 0x8a, 0x7a, 0x88, 0x46, 0xe7, 0x7f, 0x49, 0xae, 0xdd, 0x13, 0xdb, 0x1a, 0x5c, 0x37, 0x8a, 0x8c, 0xa1, 0x48, 0x09, 0x1d, 0x6b, 0x70, 0xcd, 0x16, 0xcd, 0x1e, 0x5b, 0x1e, 0xef, 0x2d, 0xb1, 0xde, 0x12, 0xa3, 0xb0, 0xee, 0x0d, 0xa8, 0x0f, 0x4d, 0xeb, 0x64, 0x68, 0xf7, 0x4f, 0x7c, 0x87, 0x00, @@ -19873,216 +20171,218 @@ var fileDescriptorRpc = []byte{ 0x2b, 0x8c, 0x79, 0x71, 0x68, 0x5a, 0x3b, 0xac, 0x27, 0xc4, 0x6f, 0x5c, 0xc5, 0xf8, 0xab, 0x82, 0xdf, 0xb8, 0x0a, 0xf3, 0xe3, 0x4d, 0x28, 0xf9, 0x3e, 0x47, 0x45, 0x98, 0x3f, 0xec, 0x1c, 0xb6, 0xeb, 0x73, 0x08, 0x20, 0xbf, 0x7d, 0xbc, 0xd3, 0x3e, 0xdc, 0xad, 0x6b, 0xa8, 0x0c, 0x85, 0xdd, - 0x36, 0x6f, 0x64, 0xf0, 0x53, 0x80, 0xc0, 0xbb, 0xa8, 0x00, 0xd9, 0xfd, 0xf6, 0xe7, 0xf5, 0x39, + 0x36, 0x6f, 0x64, 0xf0, 0x53, 0x80, 0xc0, 0xbb, 0xa8, 0x00, 0xd9, 0xfd, 0xf6, 0xa7, 0xf5, 0x39, 0xca, 0xf3, 0xaa, 0xad, 0x1f, 0xef, 0x75, 0x0e, 0xeb, 0x1a, 0x1d, 0xbc, 0xa3, 0xb7, 0xb7, 0xbb, 0xed, 0x7a, 0x86, 0x72, 0xbc, 0xe8, 0xec, 0xd6, 0xb3, 0xa8, 0x04, 0xb9, 0x57, 0xdb, 0x07, 0x2f, - 0xdb, 0xf5, 0x79, 0xfc, 0x73, 0x0d, 0xaa, 0x62, 0xbd, 0xf8, 0x99, 0x40, 0xdf, 0x81, 0xfc, 0x05, + 0xdb, 0xf5, 0x79, 0xfc, 0x4b, 0x0d, 0xaa, 0x62, 0xbd, 0xf8, 0x99, 0x40, 0xdf, 0x83, 0xfc, 0x05, 0x3b, 0x17, 0x6c, 0x2b, 0x96, 0xb7, 0xee, 0x46, 0x16, 0x37, 0x74, 0x76, 0x74, 0xc1, 0x8b, 0x30, 0x64, 0x2f, 0x27, 0x6e, 0x23, 0xb3, 0x9e, 0xdd, 0x28, 0x6f, 0xd5, 0x37, 0xf9, 0x81, 0xdd, 0xdc, 0x27, 0xd7, 0xaf, 0x8c, 0xc1, 0x98, 0xe8, 0xb4, 0x13, 0x21, 0x98, 0x1f, 0xda, 0x0e, 0x61, 0x3b, - 0xb6, 0xa8, 0xb3, 0x67, 0xba, 0x8d, 0xd9, 0xa2, 0x89, 0xdd, 0xca, 0x1b, 0xf8, 0x17, 0x1a, 0xc0, + 0xb6, 0xa8, 0xb3, 0x67, 0xba, 0x8d, 0xd9, 0xa2, 0x89, 0xdd, 0xca, 0x1b, 0xf8, 0x57, 0x1a, 0xc0, 0xd1, 0xd8, 0x4b, 0x3f, 0x1a, 0xcb, 0x90, 0x9b, 0x50, 0xc1, 0xe2, 0x58, 0xf0, 0x06, 0x3b, 0x13, 0xc4, 0x70, 0x89, 0x7f, 0x26, 0x68, 0x03, 0xdd, 0x82, 0xc2, 0xc8, 0x21, 0x93, 0x93, 0xcb, 0x09, - 0x53, 0x52, 0xd4, 0xf3, 0xb4, 0xb9, 0x3f, 0x41, 0x6f, 0x41, 0xc5, 0x3c, 0xb7, 0x6c, 0x87, 0x9c, + 0x53, 0x52, 0xd4, 0xf3, 0xb4, 0xb9, 0x3f, 0x41, 0x6f, 0x40, 0xc5, 0x3c, 0xb7, 0x6c, 0x87, 0x9c, 0x70, 0x59, 0x39, 0xd6, 0x5b, 0xe6, 0x34, 0x66, 0xb7, 0xc2, 0xc2, 0x05, 0xe7, 0x55, 0x96, 0x03, - 0x4a, 0xc2, 0x16, 0x94, 0x99, 0xa9, 0x33, 0xb9, 0xef, 0xbd, 0xc0, 0xc6, 0x0c, 0x1b, 0x16, 0x77, - 0xa1, 0xb0, 0x1a, 0xff, 0x00, 0xd0, 0x2e, 0x19, 0x10, 0x8f, 0xcc, 0x12, 0x3d, 0x14, 0x9f, 0x64, - 0x55, 0x9f, 0xe0, 0x9f, 0x69, 0xb0, 0x14, 0x12, 0x3f, 0xd3, 0xb4, 0x1a, 0x50, 0xe8, 0x33, 0x61, + 0x4a, 0xc2, 0x16, 0x94, 0x99, 0xa9, 0x33, 0xb9, 0xef, 0x9d, 0xc0, 0xc6, 0x0c, 0x1b, 0x16, 0x77, + 0xa1, 0xb0, 0x1a, 0xff, 0x08, 0xd0, 0x2e, 0x19, 0x10, 0x8f, 0xcc, 0x12, 0x3d, 0x14, 0x9f, 0x64, + 0x55, 0x9f, 0xe0, 0x5f, 0x68, 0xb0, 0x14, 0x12, 0x3f, 0xd3, 0xb4, 0x1a, 0x50, 0xe8, 0x33, 0x61, 0xdc, 0x82, 0xac, 0x2e, 0x9b, 0xe8, 0x31, 0x14, 0x85, 0x01, 0x6e, 0x23, 0x9b, 0xb2, 0x69, 0x0a, - 0xdc, 0x26, 0x17, 0xff, 0x22, 0x03, 0x25, 0x31, 0xd1, 0xce, 0x08, 0x6d, 0x43, 0xd5, 0xe1, 0x8d, + 0xdc, 0x26, 0x17, 0xff, 0x2a, 0x03, 0x25, 0x31, 0xd1, 0xce, 0x08, 0x6d, 0x43, 0xd5, 0xe1, 0x8d, 0x13, 0x36, 0x1f, 0x61, 0x51, 0x33, 0x3d, 0x08, 0x3d, 0x9f, 0xd3, 0x2b, 0x62, 0x08, 0x23, 0xa3, - 0xdf, 0x83, 0xb2, 0x14, 0x31, 0x1a, 0x7b, 0xc2, 0xe5, 0x8d, 0xb0, 0x80, 0x60, 0xff, 0x3d, 0x9f, + 0xdf, 0x81, 0xb2, 0x14, 0x31, 0x1a, 0x7b, 0xc2, 0xe5, 0x8d, 0xb0, 0x80, 0x60, 0xff, 0x3d, 0x9f, 0xd3, 0x41, 0xb0, 0x1f, 0x8d, 0x3d, 0xd4, 0x85, 0x65, 0x39, 0x98, 0xcf, 0x46, 0x98, 0x91, 0x65, 0x52, 0xd6, 0xc3, 0x52, 0xe2, 0x4b, 0xf5, 0x7c, 0x4e, 0x47, 0x62, 0xbc, 0xd2, 0xa9, 0x9a, 0xe4, 0x5d, 0xf1, 0xe0, 0x1d, 0x33, 0xa9, 0x7b, 0x65, 0xc5, 0x4d, 0xea, 0x5e, 0x59, 0x4f, 0x4b, 0x50, - 0x10, 0x2d, 0xfc, 0x2f, 0x19, 0x00, 0xb9, 0x1a, 0x9d, 0x11, 0xda, 0x85, 0x9a, 0x23, 0x5a, 0x21, - 0x6f, 0xdd, 0x49, 0xf4, 0x96, 0x58, 0xc4, 0x39, 0xbd, 0x2a, 0x07, 0x71, 0xe3, 0xbe, 0x07, 0x15, - 0x5f, 0x4a, 0xe0, 0xb0, 0xdb, 0x09, 0x0e, 0xf3, 0x25, 0x94, 0xe5, 0x00, 0xea, 0xb2, 0x4f, 0x61, - 0xc5, 0x1f, 0x9f, 0xe0, 0xb3, 0xb7, 0xa6, 0xf8, 0xcc, 0x17, 0xb8, 0x24, 0x25, 0xa8, 0x5e, 0x53, + 0x10, 0x2d, 0xfc, 0xcf, 0x19, 0x00, 0xb9, 0x1a, 0x9d, 0x11, 0xda, 0x85, 0x9a, 0x23, 0x5a, 0x21, + 0x6f, 0xdd, 0x49, 0xf4, 0x96, 0x58, 0xc4, 0x39, 0xbd, 0x2a, 0x07, 0x71, 0xe3, 0x7e, 0x00, 0x15, + 0x5f, 0x4a, 0xe0, 0xb0, 0xdb, 0x09, 0x0e, 0xf3, 0x25, 0x94, 0xe5, 0x00, 0xea, 0xb2, 0x8f, 0x61, + 0xc5, 0x1f, 0x9f, 0xe0, 0xb3, 0x37, 0xa6, 0xf8, 0xcc, 0x17, 0xb8, 0x24, 0x25, 0xa8, 0x5e, 0x53, 0x0d, 0x0b, 0xdc, 0x76, 0x3b, 0xc1, 0x6d, 0x71, 0xc3, 0xa8, 0xe3, 0x80, 0xe6, 0x4b, 0xde, 0xc4, - 0xff, 0x97, 0x85, 0xc2, 0x8e, 0x3d, 0x1c, 0x19, 0x0e, 0x5d, 0x8d, 0xbc, 0x43, 0xdc, 0xf1, 0xc0, + 0xff, 0x9b, 0x85, 0xc2, 0x8e, 0x3d, 0x1c, 0x19, 0x0e, 0x5d, 0x8d, 0xbc, 0x43, 0xdc, 0xf1, 0xc0, 0x63, 0xee, 0xaa, 0x6d, 0x3d, 0x08, 0x4b, 0x14, 0x6c, 0xf2, 0xbf, 0xce, 0x58, 0x75, 0x31, 0x84, - 0x0e, 0x16, 0xe9, 0x31, 0xf3, 0x06, 0x83, 0x45, 0x72, 0x14, 0x43, 0xe4, 0x41, 0xce, 0x06, 0x07, - 0xb9, 0x09, 0x85, 0x09, 0x71, 0x82, 0x94, 0xfe, 0x7c, 0x4e, 0x97, 0x04, 0xf4, 0x1e, 0x2c, 0x44, + 0x0e, 0x16, 0xe9, 0x31, 0xf3, 0x1a, 0x83, 0x45, 0x72, 0x14, 0x43, 0xe4, 0x41, 0xce, 0x06, 0x07, + 0xb9, 0x09, 0x85, 0x09, 0x71, 0x82, 0x94, 0xfe, 0x7c, 0x4e, 0x97, 0x04, 0xf4, 0x0e, 0x2c, 0x44, 0xd3, 0x4b, 0x4e, 0xf0, 0xd4, 0x7a, 0xe1, 0x6c, 0xf4, 0x00, 0x2a, 0xa1, 0x1c, 0x97, 0x17, 0x7c, 0xe5, 0xa1, 0x92, 0xe2, 0x56, 0x65, 0x5c, 0xa5, 0xf9, 0xb8, 0xf2, 0x7c, 0x4e, 0x46, 0xd6, 0x55, - 0x19, 0x59, 0x8b, 0x62, 0x94, 0x88, 0xad, 0xa1, 0x20, 0xf3, 0xfd, 0x70, 0x90, 0xc1, 0xdf, 0x87, - 0x6a, 0xc8, 0x41, 0x34, 0xef, 0xb4, 0x3f, 0x79, 0xb9, 0x7d, 0xc0, 0x93, 0xd4, 0x33, 0x96, 0x97, + 0x19, 0x59, 0x8b, 0x62, 0x94, 0x88, 0xad, 0xa1, 0x20, 0xf3, 0xc3, 0x70, 0x90, 0xc1, 0x3f, 0x84, + 0x6a, 0xc8, 0x41, 0x34, 0xef, 0xb4, 0x3f, 0x7a, 0xb9, 0x7d, 0xc0, 0x93, 0xd4, 0x33, 0x96, 0x97, 0xf4, 0xba, 0x46, 0x73, 0xdd, 0x41, 0xfb, 0xf8, 0xb8, 0x9e, 0x41, 0x55, 0x28, 0x1d, 0x76, 0xba, 0x27, 0x9c, 0x2b, 0x8b, 0x9f, 0xf9, 0x12, 0x44, 0x92, 0x53, 0x72, 0xdb, 0x9c, 0x92, 0xdb, 0x34, 0x99, 0xdb, 0x32, 0x41, 0x6e, 0x63, 0x69, 0xee, 0xa0, 0xbd, 0x7d, 0xdc, 0xae, 0xcf, 0x3f, 0xad, - 0x41, 0x85, 0xfb, 0xf7, 0x64, 0x6c, 0xd1, 0x54, 0xfb, 0x0f, 0x1a, 0x40, 0x70, 0x9a, 0x50, 0x0b, - 0x0a, 0x3d, 0xae, 0xa7, 0xa1, 0xb1, 0x60, 0xb4, 0x92, 0xb8, 0x64, 0xba, 0xe4, 0x42, 0xdf, 0x82, + 0x41, 0x85, 0xfb, 0xf7, 0x64, 0x6c, 0xd1, 0x54, 0xfb, 0xf7, 0x1a, 0x40, 0x70, 0x9a, 0x50, 0x0b, + 0x0a, 0x3d, 0xae, 0xa7, 0xa1, 0xb1, 0x60, 0xb4, 0x92, 0xb8, 0x64, 0xba, 0xe4, 0x42, 0xdf, 0x81, 0x82, 0x3b, 0xee, 0xf5, 0x88, 0x2b, 0x53, 0xde, 0xad, 0x68, 0x3c, 0x14, 0xd1, 0x4a, 0x97, 0x7c, - 0x74, 0xc8, 0x99, 0x61, 0x0e, 0xc6, 0x2c, 0x01, 0x4e, 0x1f, 0x22, 0xf8, 0xf0, 0xdf, 0x69, 0x50, - 0x56, 0x36, 0xef, 0x6f, 0x18, 0x84, 0xef, 0x42, 0x89, 0xd9, 0x40, 0xfa, 0x22, 0x0c, 0x17, 0xf5, - 0x80, 0x80, 0x7e, 0x07, 0x4a, 0xf2, 0x04, 0xc8, 0x48, 0xdc, 0x48, 0x16, 0xdb, 0x19, 0xe9, 0x01, - 0x2b, 0xde, 0x87, 0x45, 0xe6, 0x95, 0x1e, 0x2d, 0xae, 0xa5, 0x1f, 0xd5, 0xf2, 0x53, 0x8b, 0x94, - 0x9f, 0x4d, 0x28, 0x8e, 0x2e, 0xae, 0x5d, 0xb3, 0x67, 0x0c, 0x84, 0x15, 0x7e, 0x1b, 0x7f, 0x0c, - 0x48, 0x15, 0x36, 0xcb, 0x74, 0x71, 0x15, 0xca, 0xcf, 0x0d, 0xf7, 0x42, 0x98, 0x84, 0x1f, 0x43, - 0x95, 0x36, 0xf7, 0x5f, 0xbd, 0x81, 0x8d, 0xec, 0xe5, 0x40, 0x72, 0xcf, 0xe4, 0x73, 0x04, 0xf3, - 0x17, 0x86, 0x7b, 0xc1, 0x26, 0x5a, 0xd5, 0xd9, 0x33, 0x7a, 0x0f, 0xea, 0x3d, 0x3e, 0xc9, 0x93, - 0xc8, 0x2b, 0xc3, 0x82, 0xa0, 0xfb, 0x95, 0xe0, 0x67, 0x50, 0xe1, 0x73, 0xf8, 0x6d, 0x1b, 0x81, - 0x17, 0x61, 0xe1, 0xd8, 0x32, 0x46, 0xee, 0x85, 0x2d, 0xb3, 0x1b, 0x9d, 0x74, 0x3d, 0xa0, 0xcd, - 0xa4, 0xf1, 0x5d, 0x58, 0x70, 0xc8, 0xd0, 0x30, 0x2d, 0xd3, 0x3a, 0x3f, 0x39, 0xbd, 0xf6, 0x88, - 0x2b, 0x5e, 0x98, 0x6a, 0x3e, 0xf9, 0x29, 0xa5, 0x52, 0xd3, 0x4e, 0x07, 0xf6, 0xa9, 0x08, 0x73, - 0xec, 0x19, 0xff, 0x34, 0x03, 0x95, 0x4f, 0x0d, 0xaf, 0x27, 0x97, 0x0e, 0xed, 0x41, 0xcd, 0x0f, - 0x6e, 0x8c, 0x22, 0x6c, 0x89, 0xa4, 0x58, 0x36, 0x46, 0x96, 0xd2, 0x32, 0x3b, 0x56, 0x7b, 0x2a, - 0x81, 0x89, 0x32, 0xac, 0x1e, 0x19, 0xf8, 0xa2, 0x32, 0xe9, 0xa2, 0x18, 0xa3, 0x2a, 0x4a, 0x25, - 0xa0, 0x0e, 0xd4, 0x47, 0x8e, 0x7d, 0xee, 0x10, 0xd7, 0xf5, 0x85, 0xf1, 0x34, 0x86, 0x13, 0x84, - 0x1d, 0x09, 0xd6, 0x40, 0xdc, 0xc2, 0x28, 0x4c, 0x7a, 0xba, 0x10, 0xd4, 0x33, 0x3c, 0x38, 0xfd, - 0x57, 0x06, 0x50, 0x7c, 0x52, 0xbf, 0x6e, 0x89, 0xf7, 0x10, 0x6a, 0xae, 0x67, 0x38, 0xb1, 0xcd, - 0x56, 0x65, 0x54, 0x3f, 0xe2, 0xbf, 0x0b, 0xbe, 0x41, 0x27, 0x96, 0xed, 0x99, 0x67, 0xd7, 0xa2, - 0x4a, 0xae, 0x49, 0xf2, 0x21, 0xa3, 0xa2, 0x36, 0x14, 0xce, 0xcc, 0x81, 0x47, 0x1c, 0xb7, 0x91, - 0x5b, 0xcf, 0x6e, 0xd4, 0xb6, 0x1e, 0xdf, 0xb4, 0x0c, 0x9b, 0x1f, 0x31, 0xfe, 0xee, 0xf5, 0x88, - 0xe8, 0x72, 0xac, 0x5a, 0x79, 0xe6, 0x43, 0xd5, 0xf8, 0x6d, 0x28, 0xbe, 0xa6, 0x22, 0xe8, 0x5b, - 0x76, 0x81, 0x17, 0x8b, 0xac, 0xcd, 0x5f, 0xb2, 0xcf, 0x1c, 0xe3, 0x7c, 0x48, 0x2c, 0x4f, 0xbe, - 0x07, 0xca, 0x36, 0x7e, 0x08, 0x10, 0xa8, 0xa1, 0x21, 0xff, 0xb0, 0x73, 0xf4, 0xb2, 0x5b, 0x9f, - 0x43, 0x15, 0x28, 0x1e, 0x76, 0x76, 0xdb, 0x07, 0x6d, 0x9a, 0x1f, 0x70, 0x4b, 0xba, 0x34, 0xb4, - 0x96, 0xaa, 0x4e, 0x2d, 0xa4, 0x13, 0xaf, 0xc2, 0x72, 0xd2, 0x02, 0xd2, 0x5a, 0xb4, 0x2a, 0x76, - 0xe9, 0x4c, 0x47, 0x45, 0x55, 0x9d, 0x09, 0x4f, 0xb7, 0x01, 0x05, 0xbe, 0x7b, 0xfb, 0xa2, 0x38, - 0x97, 0x4d, 0xea, 0x08, 0xbe, 0x19, 0x49, 0x5f, 0xac, 0x92, 0xdf, 0x4e, 0x0c, 0x2f, 0xb9, 0xc4, - 0xf0, 0x82, 0x1e, 0x40, 0xd5, 0x3f, 0x0d, 0x86, 0x2b, 0x6a, 0x81, 0x92, 0x5e, 0x91, 0x1b, 0x9d, - 0xd2, 0x42, 0x4e, 0x2f, 0x84, 0x9d, 0x8e, 0x1e, 0x42, 0x9e, 0x4c, 0x88, 0xe5, 0xb9, 0x8d, 0x32, - 0xcb, 0x18, 0x55, 0x59, 0xbb, 0xb7, 0x29, 0x55, 0x17, 0x9d, 0xf8, 0xbb, 0xb0, 0xc8, 0xde, 0x91, - 0x9e, 0x39, 0x86, 0xa5, 0xbe, 0xcc, 0x75, 0xbb, 0x07, 0xc2, 0xdd, 0xf4, 0x11, 0xd5, 0x20, 0xb3, - 0xb7, 0x2b, 0x9c, 0x90, 0xd9, 0xdb, 0xc5, 0x3f, 0xd6, 0x00, 0xa9, 0xe3, 0x66, 0xf2, 0x73, 0x44, - 0xb8, 0x54, 0x9f, 0x0d, 0xd4, 0x2f, 0x43, 0x8e, 0x38, 0x8e, 0xed, 0x30, 0x8f, 0x96, 0x74, 0xde, - 0xc0, 0x6f, 0x0b, 0x1b, 0x74, 0x32, 0xb1, 0x2f, 0xfd, 0x33, 0xc8, 0xa5, 0x69, 0xbe, 0xa9, 0xfb, - 0xb0, 0x14, 0xe2, 0x9a, 0x29, 0x73, 0x7d, 0x04, 0x0b, 0x4c, 0xd8, 0xce, 0x05, 0xe9, 0x5d, 0x8e, - 0x6c, 0xd3, 0x8a, 0xe9, 0xa3, 0x2b, 0x17, 0x04, 0x58, 0x3a, 0x0f, 0x3e, 0xb1, 0x8a, 0x4f, 0xec, - 0x76, 0x0f, 0xf0, 0xe7, 0xb0, 0x1a, 0x91, 0x23, 0xcd, 0xff, 0x43, 0x28, 0xf7, 0x7c, 0xa2, 0x2b, - 0x6a, 0x9d, 0x7b, 0x61, 0xe3, 0xa2, 0x43, 0xd5, 0x11, 0xb8, 0x03, 0xb7, 0x62, 0xa2, 0x67, 0x9a, - 0xf3, 0xbb, 0xb0, 0xc2, 0x04, 0xee, 0x13, 0x32, 0xda, 0x1e, 0x98, 0x93, 0x54, 0x4f, 0x8f, 0xc4, - 0xa4, 0x14, 0xc6, 0xaf, 0x77, 0x5f, 0xe0, 0xdf, 0x17, 0x1a, 0xbb, 0xe6, 0x90, 0x74, 0xed, 0x83, - 0x74, 0xdb, 0x68, 0x36, 0xbb, 0x24, 0xd7, 0xae, 0x28, 0x6b, 0xd8, 0x33, 0xfe, 0x47, 0x4d, 0xb8, - 0x4a, 0x1d, 0xfe, 0x35, 0xef, 0xe4, 0x35, 0x80, 0x73, 0x7a, 0x64, 0x48, 0x9f, 0x76, 0x70, 0x44, - 0x45, 0xa1, 0xf8, 0x76, 0xd2, 0xf8, 0x5d, 0x11, 0x76, 0x2e, 0x8b, 0x7d, 0xce, 0xfe, 0xf8, 0x51, - 0xee, 0x1e, 0x94, 0x19, 0xe1, 0xd8, 0x33, 0xbc, 0xb1, 0x1b, 0x5b, 0x8c, 0x3f, 0x17, 0xdb, 0x5e, - 0x0e, 0x9a, 0x69, 0x5e, 0xdf, 0x82, 0x3c, 0x7b, 0x99, 0x90, 0xa5, 0xf4, 0xed, 0x84, 0xfd, 0xc8, - 0xed, 0xd0, 0x05, 0x23, 0xfe, 0xa9, 0x06, 0xf9, 0x17, 0x0c, 0x82, 0x55, 0x4c, 0x9b, 0x97, 0x6b, - 0x61, 0x19, 0x43, 0x0e, 0x0c, 0x95, 0x74, 0xf6, 0xcc, 0x4a, 0x4f, 0x42, 0x9c, 0x97, 0xfa, 0x01, - 0x2f, 0x71, 0x4b, 0xba, 0xdf, 0xa6, 0x3e, 0xeb, 0x0d, 0x4c, 0x62, 0x79, 0xac, 0x77, 0x9e, 0xf5, - 0x2a, 0x14, 0x5a, 0x3d, 0x9b, 0xee, 0x01, 0x31, 0x1c, 0x4b, 0x80, 0xa6, 0x45, 0x3d, 0x20, 0xe0, - 0x03, 0xa8, 0x73, 0x3b, 0xb6, 0xfb, 0x7d, 0xa5, 0xc0, 0xf4, 0xb5, 0x69, 0x11, 0x6d, 0x21, 0x69, - 0x99, 0xa8, 0xb4, 0x7f, 0xd2, 0x60, 0x51, 0x11, 0x37, 0x93, 0x57, 0xdf, 0x87, 0x3c, 0x07, 0xa9, - 0x45, 0xa5, 0xb3, 0x1c, 0x1e, 0xc5, 0xd5, 0xe8, 0x82, 0x07, 0x6d, 0x42, 0x81, 0x3f, 0xc9, 0x77, - 0x80, 0x64, 0x76, 0xc9, 0x84, 0x1f, 0xc2, 0x92, 0x20, 0x91, 0xa1, 0x9d, 0x74, 0x30, 0xd8, 0x62, - 0xe0, 0x3f, 0x85, 0xe5, 0x30, 0xdb, 0x4c, 0x53, 0x52, 0x8c, 0xcc, 0xbc, 0x89, 0x91, 0xdb, 0xd2, - 0xc8, 0x97, 0xa3, 0xbe, 0x52, 0x47, 0x45, 0x77, 0x8c, 0xba, 0x5e, 0x99, 0xf0, 0x7a, 0x05, 0x13, - 0x90, 0x22, 0xbe, 0xd1, 0x09, 0x2c, 0xc9, 0xed, 0x70, 0x60, 0xba, 0x7e, 0xb9, 0xfe, 0x25, 0x20, - 0x95, 0xf8, 0x8d, 0x1a, 0xf4, 0x8e, 0x74, 0xc7, 0x91, 0x63, 0x0f, 0xed, 0x54, 0x97, 0xe2, 0x3f, - 0x83, 0x95, 0x08, 0xdf, 0x37, 0xed, 0xb7, 0x5d, 0x22, 0x8b, 0x15, 0xe9, 0xb7, 0x8f, 0x01, 0xa9, - 0xc4, 0x99, 0xb2, 0x56, 0x0b, 0x16, 0x5f, 0xd8, 0x13, 0x1a, 0xfe, 0x28, 0x35, 0x38, 0xf7, 0x1c, - 0x63, 0xf0, 0x5d, 0xe1, 0xb7, 0xa9, 0x72, 0x75, 0xc0, 0x4c, 0xca, 0xff, 0x43, 0x83, 0xca, 0xf6, - 0xc0, 0x70, 0x86, 0x52, 0xf1, 0xf7, 0x20, 0xcf, 0xdf, 0x9c, 0x05, 0x58, 0xf5, 0x4e, 0x58, 0x8c, - 0xca, 0xcb, 0x1b, 0xdb, 0xfc, 0x3d, 0x5b, 0x8c, 0xa2, 0x86, 0x8b, 0xef, 0x59, 0xbb, 0x91, 0xef, - 0x5b, 0xbb, 0xe8, 0x03, 0xc8, 0x19, 0x74, 0x08, 0x4b, 0x33, 0xb5, 0x28, 0x66, 0xc1, 0xa4, 0xb1, - 0xfa, 0x9e, 0x73, 0xe1, 0xef, 0x40, 0x59, 0xd1, 0x80, 0x0a, 0x90, 0x7d, 0xd6, 0x16, 0xc5, 0xf8, - 0xf6, 0x4e, 0x77, 0xef, 0x15, 0x07, 0x6b, 0x6a, 0x00, 0xbb, 0x6d, 0xbf, 0x9d, 0xc1, 0x9f, 0x89, - 0x51, 0x22, 0xa4, 0xab, 0xf6, 0x68, 0x69, 0xf6, 0x64, 0xde, 0xc8, 0x9e, 0x2b, 0xa8, 0x8a, 0xe9, - 0xcf, 0x9a, 0xa2, 0x98, 0xbc, 0x94, 0x14, 0xa5, 0x18, 0xaf, 0x0b, 0x46, 0xbc, 0x00, 0x55, 0x91, - 0xb4, 0xc4, 0xfe, 0xfb, 0xf7, 0x0c, 0xd4, 0x24, 0x65, 0x56, 0x50, 0x5d, 0xe2, 0x81, 0x3c, 0xc9, - 0xf9, 0x68, 0xe0, 0x2a, 0xe4, 0xfb, 0xa7, 0xc7, 0xe6, 0x97, 0xf2, 0x03, 0x88, 0x68, 0x51, 0xfa, - 0x80, 0xeb, 0xe1, 0x5f, 0x21, 0x45, 0x8b, 0x66, 0x23, 0xc7, 0x38, 0xf3, 0xf6, 0xac, 0x3e, 0xb9, - 0x62, 0xb9, 0x6d, 0x5e, 0x0f, 0x08, 0x0c, 0x28, 0x11, 0x5f, 0x2b, 0xd9, 0x0b, 0x82, 0xf2, 0xf5, - 0x12, 0x3d, 0x82, 0x3a, 0x7d, 0xde, 0x1e, 0x8d, 0x06, 0x26, 0xe9, 0x73, 0x01, 0x05, 0xc6, 0x13, - 0xa3, 0x53, 0xed, 0xac, 0xa4, 0x76, 0x1b, 0x45, 0x16, 0x5d, 0x45, 0x0b, 0xad, 0x43, 0x99, 0xdb, - 0xb7, 0x67, 0xbd, 0x74, 0x09, 0xfb, 0x84, 0x97, 0xd5, 0x55, 0x52, 0x38, 0x5b, 0x42, 0x34, 0x5b, - 0x2e, 0xc1, 0xe2, 0xf6, 0xd8, 0xbb, 0x68, 0x5b, 0xc6, 0xe9, 0x40, 0x46, 0x22, 0x5a, 0xce, 0x50, - 0xe2, 0xae, 0xe9, 0xaa, 0xd4, 0x36, 0x2c, 0x51, 0x2a, 0xb1, 0x3c, 0xb3, 0xa7, 0x64, 0x02, 0x59, - 0x2b, 0x68, 0x91, 0x5a, 0xc1, 0x70, 0xdd, 0xd7, 0xb6, 0xd3, 0x17, 0xee, 0xf5, 0xdb, 0x78, 0xc2, - 0x85, 0xbf, 0x74, 0x43, 0xf9, 0xfe, 0xd7, 0x94, 0x82, 0x3e, 0x84, 0x82, 0x3d, 0x62, 0x9f, 0xa4, - 0x05, 0x6e, 0xb0, 0xba, 0xc9, 0x3f, 0x62, 0x6f, 0x0a, 0xc1, 0x1d, 0xde, 0xab, 0x4b, 0x36, 0xbc, - 0x11, 0xe8, 0x7d, 0x46, 0xbc, 0x29, 0x7a, 0xf1, 0x63, 0x58, 0x91, 0x9c, 0x02, 0x26, 0x9f, 0xc2, - 0xdc, 0x81, 0x7b, 0x92, 0x79, 0xe7, 0xc2, 0xb0, 0xce, 0xc9, 0x91, 0x30, 0xf1, 0x37, 0xf5, 0xcf, - 0x53, 0x68, 0xf8, 0x76, 0xb2, 0x57, 0x37, 0x7b, 0xa0, 0x1a, 0x30, 0x76, 0xc5, 0x4e, 0x2f, 0xe9, - 0xec, 0x99, 0xd2, 0x1c, 0x7b, 0xe0, 0xd7, 0x6a, 0xf4, 0x19, 0xef, 0xc0, 0x6d, 0x29, 0x43, 0xbc, - 0x54, 0x85, 0x85, 0xc4, 0x0c, 0x4a, 0x12, 0x22, 0x1c, 0x46, 0x87, 0x4e, 0x5f, 0x28, 0x95, 0x33, - 0xec, 0x5a, 0x26, 0x53, 0x53, 0x64, 0xae, 0xf0, 0x3d, 0x44, 0x0d, 0x53, 0xd3, 0xb1, 0x20, 0x53, - 0x01, 0x2a, 0x59, 0x2c, 0x04, 0x25, 0xc7, 0x16, 0x22, 0x26, 0xfa, 0x07, 0xb0, 0xe6, 0x1b, 0x41, - 0xfd, 0x76, 0x44, 0x9c, 0xa1, 0xe9, 0xba, 0x0a, 0xb0, 0x9a, 0x34, 0xf1, 0x77, 0x60, 0x7e, 0x44, - 0x44, 0x24, 0x2c, 0x6f, 0x21, 0xb9, 0x89, 0x94, 0xc1, 0xac, 0x1f, 0xf7, 0xe1, 0xbe, 0x94, 0xce, - 0x3d, 0x9a, 0x28, 0x3e, 0x6a, 0x94, 0x84, 0x9b, 0x32, 0x29, 0x70, 0x53, 0x36, 0x02, 0xf6, 0x7f, - 0xcc, 0x1d, 0x29, 0x4f, 0xe3, 0x4c, 0x19, 0x6e, 0x9f, 0xfb, 0xd4, 0x3f, 0xc4, 0x33, 0x09, 0x3b, - 0x85, 0xe5, 0xf0, 0xd9, 0x9f, 0x29, 0xf8, 0x2e, 0x43, 0xce, 0xb3, 0x2f, 0x89, 0x0c, 0xbd, 0xbc, - 0x21, 0x0d, 0xf6, 0x03, 0xc3, 0x4c, 0x06, 0x1b, 0x81, 0x30, 0xb6, 0x25, 0x67, 0xb5, 0x97, 0xae, - 0xa6, 0xac, 0x6c, 0x79, 0x03, 0x1f, 0xc2, 0x6a, 0x34, 0x4c, 0xcc, 0x64, 0xf2, 0x2b, 0xbe, 0x81, - 0x93, 0x22, 0xc9, 0x4c, 0x72, 0x3f, 0x09, 0x82, 0x81, 0x12, 0x50, 0x66, 0x12, 0xa9, 0x43, 0x33, - 0x29, 0xbe, 0xfc, 0x36, 0xf6, 0xab, 0x1f, 0x6e, 0x66, 0x12, 0xe6, 0x06, 0xc2, 0x66, 0x5f, 0xfe, - 0x20, 0x46, 0x64, 0xa7, 0xc6, 0x08, 0x71, 0x48, 0x82, 0x28, 0xf6, 0x35, 0x6c, 0x3a, 0xa1, 0x23, - 0x08, 0xa0, 0xb3, 0xea, 0xa0, 0x39, 0xc4, 0xd7, 0xc1, 0x1a, 0x72, 0x63, 0xab, 0x61, 0x77, 0xa6, - 0xc5, 0xf8, 0x34, 0x88, 0x9d, 0xb1, 0xc8, 0x3c, 0x93, 0xe0, 0xcf, 0x60, 0x3d, 0x3d, 0x28, 0xcf, - 0x22, 0xf9, 0x51, 0x0b, 0x4a, 0x7e, 0x19, 0xac, 0xdc, 0x22, 0x2a, 0x43, 0xe1, 0xb0, 0x73, 0x7c, - 0xb4, 0xbd, 0xd3, 0xe6, 0xd7, 0x88, 0x76, 0x3a, 0xba, 0xfe, 0xf2, 0xa8, 0x5b, 0xcf, 0x6c, 0xfd, - 0x32, 0x0b, 0x99, 0xfd, 0x57, 0xe8, 0x73, 0xc8, 0xf1, 0x6f, 0xea, 0x53, 0x2e, 0x52, 0x34, 0xa7, - 0x5d, 0x1b, 0xc0, 0xb7, 0x7e, 0xfc, 0xdf, 0xbf, 0xfc, 0x79, 0x66, 0x11, 0x57, 0x5a, 0x93, 0x6f, - 0xb7, 0x2e, 0x27, 0x2d, 0x96, 0x1b, 0x9e, 0x68, 0x8f, 0xd0, 0x27, 0x90, 0x3d, 0x1a, 0x7b, 0x28, - 0xf5, 0x82, 0x45, 0x33, 0xfd, 0x26, 0x01, 0x5e, 0x61, 0x42, 0x17, 0x30, 0x08, 0xa1, 0xa3, 0xb1, - 0x47, 0x45, 0xfe, 0x10, 0xca, 0xea, 0x3d, 0x80, 0x1b, 0x6f, 0x5d, 0x34, 0x6f, 0xbe, 0x63, 0x80, - 0xef, 0x31, 0x55, 0xb7, 0x30, 0x12, 0xaa, 0xf8, 0x4d, 0x05, 0x75, 0x16, 0xdd, 0x2b, 0x0b, 0xa5, - 0xde, 0xc9, 0x68, 0xa6, 0x5f, 0x3b, 0x88, 0xcd, 0xc2, 0xbb, 0xb2, 0xa8, 0xc8, 0x3f, 0x16, 0x37, - 0x0e, 0x7a, 0x1e, 0xba, 0x9f, 0xf0, 0xc5, 0x59, 0xfd, 0xb6, 0xda, 0x5c, 0x4f, 0x67, 0x10, 0x4a, - 0xee, 0x32, 0x25, 0xab, 0x78, 0x51, 0x28, 0xe9, 0xf9, 0x2c, 0x4f, 0xb4, 0x47, 0x5b, 0x3d, 0xc8, - 0xb1, 0xef, 0x16, 0xe8, 0x0b, 0xf9, 0xd0, 0x4c, 0xf8, 0x80, 0x93, 0xb2, 0xd0, 0xa1, 0x2f, 0x1e, - 0x78, 0x99, 0x29, 0xaa, 0xe1, 0x12, 0x55, 0xc4, 0xbe, 0x5a, 0x3c, 0xd1, 0x1e, 0x6d, 0x68, 0x1f, - 0x6a, 0x5b, 0xff, 0x9c, 0x83, 0x1c, 0x03, 0xec, 0xd0, 0x25, 0x40, 0x80, 0xe1, 0x47, 0x67, 0x17, - 0xfb, 0x2a, 0x10, 0x9d, 0x5d, 0x1c, 0xfe, 0xc7, 0x4d, 0xa6, 0x74, 0x19, 0x2f, 0x50, 0xa5, 0x0c, - 0x07, 0x6c, 0x31, 0x68, 0x93, 0xfa, 0xf1, 0xaf, 0x34, 0x81, 0x57, 0xf2, 0xb3, 0x84, 0x92, 0xa4, - 0x85, 0x80, 0xfc, 0xe8, 0x76, 0x48, 0x00, 0xf1, 0xf1, 0x77, 0x99, 0xc2, 0x16, 0xae, 0x07, 0x0a, - 0x1d, 0xc6, 0xf1, 0x44, 0x7b, 0xf4, 0x45, 0x03, 0x2f, 0x09, 0x2f, 0x47, 0x7a, 0xd0, 0x8f, 0xa0, - 0x16, 0x06, 0xaa, 0xd1, 0x83, 0x04, 0x5d, 0x51, 0xbc, 0xbb, 0xf9, 0xf6, 0x74, 0x26, 0x61, 0xd3, - 0x1a, 0xb3, 0x49, 0x28, 0xe7, 0x9a, 0x2f, 0x09, 0x19, 0x19, 0x94, 0x49, 0xac, 0x01, 0xfa, 0x7b, - 0x4d, 0x7c, 0x47, 0x08, 0x90, 0x67, 0x94, 0x24, 0x3d, 0x86, 0x6b, 0x37, 0x1f, 0xde, 0xc0, 0x25, - 0x8c, 0xf8, 0x03, 0x66, 0xc4, 0xef, 0xe2, 0xe5, 0xc0, 0x08, 0xcf, 0x1c, 0x12, 0xcf, 0x16, 0x56, - 0x7c, 0x71, 0x17, 0xdf, 0x0a, 0x39, 0x27, 0xd4, 0x1b, 0x2c, 0x16, 0x47, 0x8f, 0x13, 0x17, 0x2b, - 0x84, 0x46, 0x27, 0x2e, 0x56, 0x18, 0x7a, 0x4e, 0x5a, 0x2c, 0x8e, 0x15, 0x27, 0x2d, 0x96, 0xdf, - 0xb3, 0xf5, 0xff, 0xf3, 0x50, 0xd8, 0xe1, 0x37, 0x7d, 0x91, 0x0d, 0x25, 0x1f, 0x7c, 0x45, 0x6b, - 0x49, 0x08, 0x53, 0xf0, 0x2e, 0xd1, 0xbc, 0x9f, 0xda, 0x2f, 0x0c, 0x7a, 0x8b, 0x19, 0x74, 0x07, - 0xaf, 0x52, 0xcd, 0xe2, 0x32, 0x71, 0x8b, 0xc3, 0x18, 0x2d, 0xa3, 0xdf, 0xa7, 0x8e, 0xf8, 0x13, - 0xa8, 0xa8, 0xe8, 0x28, 0x7a, 0x2b, 0x11, 0xd5, 0x52, 0x01, 0xd6, 0x26, 0x9e, 0xc6, 0x22, 0x34, - 0xbf, 0xcd, 0x34, 0xaf, 0xe1, 0xdb, 0x09, 0x9a, 0x1d, 0xc6, 0x1a, 0x52, 0xce, 0x91, 0xcd, 0x64, - 0xe5, 0x21, 0xe0, 0x34, 0x59, 0x79, 0x18, 0x18, 0x9d, 0xaa, 0x7c, 0xcc, 0x58, 0xa9, 0x72, 0x17, - 0x20, 0xc0, 0x30, 0x51, 0xa2, 0x2f, 0x95, 0x97, 0xa9, 0x68, 0x70, 0x88, 0xc3, 0x9f, 0x18, 0x33, - 0xb5, 0x62, 0xdf, 0x45, 0xd4, 0x0e, 0x4c, 0xd7, 0xe3, 0x07, 0xb3, 0x1a, 0x02, 0x25, 0x51, 0xe2, - 0x7c, 0xc2, 0xc8, 0x66, 0xf3, 0xc1, 0x54, 0x1e, 0xa1, 0xfd, 0x21, 0xd3, 0x7e, 0x1f, 0x37, 0x13, - 0xb4, 0x8f, 0x38, 0x2f, 0xdd, 0x6c, 0x7f, 0x9d, 0x87, 0xf2, 0x0b, 0xc3, 0xb4, 0x3c, 0x62, 0x19, - 0x56, 0x8f, 0xa0, 0x53, 0xc8, 0xb1, 0x4c, 0x1d, 0x0d, 0xc4, 0x2a, 0x60, 0x17, 0x0d, 0xc4, 0x21, - 0x34, 0x0b, 0xaf, 0x33, 0xc5, 0x4d, 0xbc, 0x42, 0x15, 0x0f, 0x03, 0xd1, 0x2d, 0x06, 0x42, 0xd1, - 0x49, 0x9f, 0x41, 0x5e, 0x7c, 0xc3, 0x89, 0x08, 0x0a, 0x81, 0x53, 0xcd, 0xbb, 0xc9, 0x9d, 0x49, - 0x7b, 0x59, 0x55, 0xe3, 0x32, 0x3e, 0xaa, 0x67, 0x02, 0x10, 0xa0, 0xab, 0xd1, 0x15, 0x8d, 0x81, - 0xb1, 0xcd, 0xf5, 0x74, 0x86, 0x24, 0x9f, 0xaa, 0x3a, 0xfb, 0x3e, 0x2f, 0xd5, 0xfb, 0x47, 0x30, - 0xff, 0xdc, 0x70, 0x2f, 0x50, 0x24, 0xf7, 0x2a, 0x37, 0x80, 0x9a, 0xcd, 0xa4, 0x2e, 0xa1, 0xe5, - 0x3e, 0xd3, 0x72, 0x9b, 0x87, 0x32, 0x55, 0xcb, 0x85, 0xe1, 0xd2, 0xa4, 0x86, 0xfa, 0x90, 0xe7, - 0x17, 0x82, 0xa2, 0xfe, 0x0b, 0x5d, 0x2a, 0x8a, 0xfa, 0x2f, 0x7c, 0x87, 0xe8, 0x66, 0x2d, 0x23, - 0x28, 0xca, 0x1b, 0x38, 0x28, 0xf2, 0x39, 0x36, 0x72, 0x5b, 0xa7, 0xb9, 0x96, 0xd6, 0x2d, 0x74, - 0x3d, 0x60, 0xba, 0xee, 0xe1, 0x46, 0x6c, 0xad, 0x04, 0xe7, 0x13, 0xed, 0xd1, 0x87, 0x1a, 0xfa, - 0x11, 0x40, 0x00, 0x48, 0xc7, 0x4e, 0x60, 0x14, 0xdb, 0x8e, 0x9d, 0xc0, 0x18, 0x96, 0x8d, 0x37, - 0x99, 0xde, 0x0d, 0xfc, 0x20, 0xaa, 0xd7, 0x73, 0x0c, 0xcb, 0x3d, 0x23, 0xce, 0x07, 0x1c, 0x74, - 0x74, 0x2f, 0xcc, 0x11, 0x3d, 0x0c, 0xff, 0xba, 0x00, 0xf3, 0xb4, 0x02, 0xa6, 0x85, 0x42, 0x00, - 0x1c, 0x44, 0x2d, 0x89, 0x01, 0x7c, 0x51, 0x4b, 0xe2, 0x98, 0x43, 0xb8, 0x50, 0x60, 0xbf, 0x11, - 0x21, 0x8c, 0x81, 0x3a, 0xda, 0x86, 0xb2, 0x82, 0x2c, 0xa0, 0x04, 0x61, 0x61, 0xe4, 0x30, 0x9a, - 0x7a, 0x12, 0x60, 0x09, 0x7c, 0x87, 0xe9, 0x5b, 0xe1, 0xa9, 0x87, 0xe9, 0xeb, 0x73, 0x0e, 0xaa, - 0xf0, 0x35, 0x54, 0x54, 0xf4, 0x01, 0x25, 0xc8, 0x8b, 0xa0, 0x92, 0xd1, 0x30, 0x9b, 0x04, 0x5e, - 0x84, 0x0f, 0xbe, 0xff, 0x3b, 0x18, 0xc9, 0x46, 0x15, 0x0f, 0xa0, 0x20, 0xe0, 0x88, 0xa4, 0x59, - 0x86, 0x21, 0xcc, 0xa4, 0x59, 0x46, 0xb0, 0x8c, 0x70, 0x71, 0xc9, 0x34, 0xd2, 0x37, 0x2e, 0x99, - 0xca, 0x84, 0xb6, 0x67, 0xc4, 0x4b, 0xd3, 0x16, 0xa0, 0x6b, 0x69, 0xda, 0x94, 0xb7, 0xdd, 0x34, - 0x6d, 0xe7, 0xc4, 0x13, 0xc7, 0x45, 0xbe, 0x45, 0xa2, 0x14, 0x61, 0x6a, 0xfa, 0xc0, 0xd3, 0x58, - 0x92, 0x6a, 0xff, 0x40, 0xa1, 0xcc, 0x1d, 0x57, 0x00, 0x01, 0x58, 0x12, 0x2d, 0xe8, 0x12, 0x11, - 0xd7, 0x68, 0x41, 0x97, 0x8c, 0xb7, 0x84, 0x43, 0x43, 0xa0, 0x97, 0xbf, 0x7a, 0x50, 0xcd, 0x3f, - 0xd3, 0x00, 0xc5, 0x71, 0x15, 0xf4, 0x38, 0x59, 0x7a, 0x22, 0x8e, 0xdb, 0x7c, 0xff, 0xcd, 0x98, - 0x93, 0xa2, 0x7d, 0x60, 0x52, 0x8f, 0x71, 0x8f, 0x5e, 0x53, 0xa3, 0xfe, 0x42, 0x83, 0x6a, 0x08, - 0x94, 0x41, 0xef, 0xa4, 0xac, 0x69, 0x04, 0x06, 0x6e, 0xbe, 0x7b, 0x23, 0x5f, 0x52, 0xa5, 0xab, - 0xec, 0x00, 0x59, 0xf2, 0xff, 0x44, 0x83, 0x5a, 0x18, 0xc4, 0x41, 0x29, 0xb2, 0x63, 0x30, 0x72, - 0x73, 0xe3, 0x66, 0xc6, 0xe9, 0xcb, 0x13, 0x54, 0xfb, 0x03, 0x28, 0x08, 0xd8, 0x27, 0x69, 0xe3, - 0x87, 0x01, 0xe8, 0xa4, 0x8d, 0x1f, 0xc1, 0x8c, 0x12, 0x36, 0xbe, 0x63, 0x0f, 0x88, 0x72, 0xcc, - 0x04, 0x2e, 0x94, 0xa6, 0x6d, 0xfa, 0x31, 0x8b, 0x80, 0x4a, 0x69, 0xda, 0x82, 0x63, 0x26, 0x01, - 0x21, 0x94, 0x22, 0xec, 0x86, 0x63, 0x16, 0xc5, 0x93, 0x12, 0x8e, 0x19, 0x53, 0xa8, 0x1c, 0xb3, - 0x00, 0xba, 0x49, 0x3a, 0x66, 0x31, 0x3c, 0x3d, 0xe9, 0x98, 0xc5, 0xd1, 0x9f, 0x84, 0x75, 0x64, - 0x7a, 0x43, 0xc7, 0x6c, 0x29, 0x01, 0xe5, 0x41, 0xef, 0xa7, 0x38, 0x31, 0x11, 0xa6, 0x6f, 0x7e, - 0xf0, 0x86, 0xdc, 0xa9, 0x7b, 0x9c, 0xbb, 0x5f, 0xee, 0xf1, 0xbf, 0xd1, 0x60, 0x39, 0x09, 0x21, - 0x42, 0x29, 0x7a, 0x52, 0xe0, 0xfd, 0xe6, 0xe6, 0x9b, 0xb2, 0x4f, 0xf7, 0x96, 0xbf, 0xeb, 0x9f, - 0xd6, 0xff, 0xed, 0xab, 0x35, 0xed, 0x3f, 0xbf, 0x5a, 0xd3, 0xfe, 0xe7, 0xab, 0x35, 0xed, 0x6f, - 0xff, 0x77, 0x6d, 0xee, 0x34, 0xcf, 0x7e, 0x5d, 0xf9, 0xed, 0x5f, 0x05, 0x00, 0x00, 0xff, 0xff, - 0x52, 0x4e, 0xd7, 0x33, 0xe4, 0x39, 0x00, 0x00, + 0x74, 0xc8, 0x99, 0x61, 0x0e, 0xc6, 0x2c, 0x01, 0x4e, 0x1f, 0x22, 0xf8, 0xf0, 0xdf, 0x6a, 0x50, + 0x56, 0x36, 0xef, 0x57, 0x0c, 0xc2, 0x77, 0xa1, 0xc4, 0x6c, 0x20, 0x7d, 0x11, 0x86, 0x8b, 0x7a, + 0x40, 0x40, 0xbf, 0x05, 0x25, 0x79, 0x02, 0x64, 0x24, 0x6e, 0x24, 0x8b, 0xed, 0x8c, 0xf4, 0x80, + 0x15, 0xef, 0xc3, 0x22, 0xf3, 0x4a, 0x8f, 0x16, 0xd7, 0xd2, 0x8f, 0x6a, 0xf9, 0xa9, 0x45, 0xca, + 0xcf, 0x26, 0x14, 0x47, 0x17, 0xd7, 0xae, 0xd9, 0x33, 0x06, 0xc2, 0x0a, 0xbf, 0x8d, 0x3f, 0x04, + 0xa4, 0x0a, 0x9b, 0x65, 0xba, 0xb8, 0x0a, 0xe5, 0xe7, 0x86, 0x7b, 0x21, 0x4c, 0xc2, 0x8f, 0xa1, + 0x4a, 0x9b, 0xfb, 0xaf, 0x5e, 0xc3, 0x46, 0xf6, 0x72, 0x20, 0xb9, 0x67, 0xf2, 0x39, 0x82, 0xf9, + 0x0b, 0xc3, 0xbd, 0x60, 0x13, 0xad, 0xea, 0xec, 0x19, 0xbd, 0x03, 0xf5, 0x1e, 0x9f, 0xe4, 0x49, + 0xe4, 0x95, 0x61, 0x41, 0xd0, 0xfd, 0x4a, 0xf0, 0x13, 0xa8, 0xf0, 0x39, 0x7c, 0xdd, 0x46, 0xe0, + 0x45, 0x58, 0x38, 0xb6, 0x8c, 0x91, 0x7b, 0x61, 0xcb, 0xec, 0x46, 0x27, 0x5d, 0x0f, 0x68, 0x33, + 0x69, 0x7c, 0x1b, 0x16, 0x1c, 0x32, 0x34, 0x4c, 0xcb, 0xb4, 0xce, 0x4f, 0x4e, 0xaf, 0x3d, 0xe2, + 0x8a, 0x17, 0xa6, 0x9a, 0x4f, 0x7e, 0x4a, 0xa9, 0xd4, 0xb4, 0xd3, 0x81, 0x7d, 0x2a, 0xc2, 0x1c, + 0x7b, 0xc6, 0x3f, 0xcf, 0x40, 0xe5, 0x63, 0xc3, 0xeb, 0xc9, 0xa5, 0x43, 0x7b, 0x50, 0xf3, 0x83, + 0x1b, 0xa3, 0x08, 0x5b, 0x22, 0x29, 0x96, 0x8d, 0x91, 0xa5, 0xb4, 0xcc, 0x8e, 0xd5, 0x9e, 0x4a, + 0x60, 0xa2, 0x0c, 0xab, 0x47, 0x06, 0xbe, 0xa8, 0x4c, 0xba, 0x28, 0xc6, 0xa8, 0x8a, 0x52, 0x09, + 0xa8, 0x03, 0xf5, 0x91, 0x63, 0x9f, 0x3b, 0xc4, 0x75, 0x7d, 0x61, 0x3c, 0x8d, 0xe1, 0x04, 0x61, + 0x47, 0x82, 0x35, 0x10, 0xb7, 0x30, 0x0a, 0x93, 0x9e, 0x2e, 0x04, 0xf5, 0x0c, 0x0f, 0x4e, 0xff, + 0x99, 0x01, 0x14, 0x9f, 0xd4, 0x6f, 0x5a, 0xe2, 0x3d, 0x84, 0x9a, 0xeb, 0x19, 0x4e, 0x6c, 0xb3, + 0x55, 0x19, 0xd5, 0x8f, 0xf8, 0x6f, 0x83, 0x6f, 0xd0, 0x89, 0x65, 0x7b, 0xe6, 0xd9, 0xb5, 0xa8, + 0x92, 0x6b, 0x92, 0x7c, 0xc8, 0xa8, 0xa8, 0x0d, 0x85, 0x33, 0x73, 0xe0, 0x11, 0xc7, 0x6d, 0xe4, + 0xd6, 0xb3, 0x1b, 0xb5, 0xad, 0xc7, 0x37, 0x2d, 0xc3, 0xe6, 0x07, 0x8c, 0xbf, 0x7b, 0x3d, 0x22, + 0xba, 0x1c, 0xab, 0x56, 0x9e, 0xf9, 0x50, 0x35, 0x7e, 0x1b, 0x8a, 0x9f, 0x53, 0x11, 0xf4, 0x2d, + 0xbb, 0xc0, 0x8b, 0x45, 0xd6, 0xe6, 0x2f, 0xd9, 0x67, 0x8e, 0x71, 0x3e, 0x24, 0x96, 0x27, 0xdf, + 0x03, 0x65, 0x1b, 0x3f, 0x04, 0x08, 0xd4, 0xd0, 0x90, 0x7f, 0xd8, 0x39, 0x7a, 0xd9, 0xad, 0xcf, + 0xa1, 0x0a, 0x14, 0x0f, 0x3b, 0xbb, 0xed, 0x83, 0x36, 0xcd, 0x0f, 0xb8, 0x25, 0x5d, 0x1a, 0x5a, + 0x4b, 0x55, 0xa7, 0x16, 0xd2, 0x89, 0x57, 0x61, 0x39, 0x69, 0x01, 0x69, 0x2d, 0x5a, 0x15, 0xbb, + 0x74, 0xa6, 0xa3, 0xa2, 0xaa, 0xce, 0x84, 0xa7, 0xdb, 0x80, 0x02, 0xdf, 0xbd, 0x7d, 0x51, 0x9c, + 0xcb, 0x26, 0x75, 0x04, 0xdf, 0x8c, 0xa4, 0x2f, 0x56, 0xc9, 0x6f, 0x27, 0x86, 0x97, 0x5c, 0x62, + 0x78, 0x41, 0x0f, 0xa0, 0xea, 0x9f, 0x06, 0xc3, 0x15, 0xb5, 0x40, 0x49, 0xaf, 0xc8, 0x8d, 0x4e, + 0x69, 0x21, 0xa7, 0x17, 0xc2, 0x4e, 0x47, 0x0f, 0x21, 0x4f, 0x26, 0xc4, 0xf2, 0xdc, 0x46, 0x99, + 0x65, 0x8c, 0xaa, 0xac, 0xdd, 0xdb, 0x94, 0xaa, 0x8b, 0x4e, 0xfc, 0x7d, 0x58, 0x64, 0xef, 0x48, + 0xcf, 0x1c, 0xc3, 0x52, 0x5f, 0xe6, 0xba, 0xdd, 0x03, 0xe1, 0x6e, 0xfa, 0x88, 0x6a, 0x90, 0xd9, + 0xdb, 0x15, 0x4e, 0xc8, 0xec, 0xed, 0xe2, 0x9f, 0x6a, 0x80, 0xd4, 0x71, 0x33, 0xf9, 0x39, 0x22, + 0x5c, 0xaa, 0xcf, 0x06, 0xea, 0x97, 0x21, 0x47, 0x1c, 0xc7, 0x76, 0x98, 0x47, 0x4b, 0x3a, 0x6f, + 0xe0, 0x37, 0x85, 0x0d, 0x3a, 0x99, 0xd8, 0x97, 0xfe, 0x19, 0xe4, 0xd2, 0x34, 0xdf, 0xd4, 0x7d, + 0x58, 0x0a, 0x71, 0xcd, 0x94, 0xb9, 0x3e, 0x80, 0x05, 0x26, 0x6c, 0xe7, 0x82, 0xf4, 0x2e, 0x47, + 0xb6, 0x69, 0xc5, 0xf4, 0xd1, 0x95, 0x0b, 0x02, 0x2c, 0x9d, 0x07, 0x9f, 0x58, 0xc5, 0x27, 0x76, + 0xbb, 0x07, 0xf8, 0x53, 0x58, 0x8d, 0xc8, 0x91, 0xe6, 0xff, 0x3e, 0x94, 0x7b, 0x3e, 0xd1, 0x15, + 0xb5, 0xce, 0xbd, 0xb0, 0x71, 0xd1, 0xa1, 0xea, 0x08, 0xdc, 0x81, 0x5b, 0x31, 0xd1, 0x33, 0xcd, + 0xf9, 0x6d, 0x58, 0x61, 0x02, 0xf7, 0x09, 0x19, 0x6d, 0x0f, 0xcc, 0x49, 0xaa, 0xa7, 0x47, 0x62, + 0x52, 0x0a, 0xe3, 0x37, 0xbb, 0x2f, 0xf0, 0xef, 0x0a, 0x8d, 0x5d, 0x73, 0x48, 0xba, 0xf6, 0x41, + 0xba, 0x6d, 0x34, 0x9b, 0x5d, 0x92, 0x6b, 0x57, 0x94, 0x35, 0xec, 0x19, 0xff, 0x83, 0x26, 0x5c, + 0xa5, 0x0e, 0xff, 0x86, 0x77, 0xf2, 0x1a, 0xc0, 0x39, 0x3d, 0x32, 0xa4, 0x4f, 0x3b, 0x38, 0xa2, + 0xa2, 0x50, 0x7c, 0x3b, 0x69, 0xfc, 0xae, 0x08, 0x3b, 0x97, 0xc5, 0x3e, 0x67, 0x7f, 0xfc, 0x28, + 0x77, 0x0f, 0xca, 0x8c, 0x70, 0xec, 0x19, 0xde, 0xd8, 0x8d, 0x2d, 0xc6, 0x9f, 0x8a, 0x6d, 0x2f, + 0x07, 0xcd, 0x34, 0xaf, 0xef, 0x40, 0x9e, 0xbd, 0x4c, 0xc8, 0x52, 0xfa, 0x76, 0xc2, 0x7e, 0xe4, + 0x76, 0xe8, 0x82, 0x11, 0xff, 0x5c, 0x83, 0xfc, 0x0b, 0x06, 0xc1, 0x2a, 0xa6, 0xcd, 0xcb, 0xb5, + 0xb0, 0x8c, 0x21, 0x07, 0x86, 0x4a, 0x3a, 0x7b, 0x66, 0xa5, 0x27, 0x21, 0xce, 0x4b, 0xfd, 0x80, + 0x97, 0xb8, 0x25, 0xdd, 0x6f, 0x53, 0x9f, 0xf5, 0x06, 0x26, 0xb1, 0x3c, 0xd6, 0x3b, 0xcf, 0x7a, + 0x15, 0x0a, 0xad, 0x9e, 0x4d, 0xf7, 0x80, 0x18, 0x8e, 0x25, 0x40, 0xd3, 0xa2, 0x1e, 0x10, 0xf0, + 0x01, 0xd4, 0xb9, 0x1d, 0xdb, 0xfd, 0xbe, 0x52, 0x60, 0xfa, 0xda, 0xb4, 0x88, 0xb6, 0x90, 0xb4, + 0x4c, 0x54, 0xda, 0x3f, 0x6a, 0xb0, 0xa8, 0x88, 0x9b, 0xc9, 0xab, 0xef, 0x42, 0x9e, 0x83, 0xd4, + 0xa2, 0xd2, 0x59, 0x0e, 0x8f, 0xe2, 0x6a, 0x74, 0xc1, 0x83, 0x36, 0xa1, 0xc0, 0x9f, 0xe4, 0x3b, + 0x40, 0x32, 0xbb, 0x64, 0xc2, 0x0f, 0x61, 0x49, 0x90, 0xc8, 0xd0, 0x4e, 0x3a, 0x18, 0x6c, 0x31, + 0xf0, 0x1f, 0xc3, 0x72, 0x98, 0x6d, 0xa6, 0x29, 0x29, 0x46, 0x66, 0x5e, 0xc7, 0xc8, 0x6d, 0x69, + 0xe4, 0xcb, 0x51, 0x5f, 0xa9, 0xa3, 0xa2, 0x3b, 0x46, 0x5d, 0xaf, 0x4c, 0x78, 0xbd, 0x82, 0x09, + 0x48, 0x11, 0xdf, 0xea, 0x04, 0x96, 0xe4, 0x76, 0x38, 0x30, 0x5d, 0xbf, 0x5c, 0xff, 0x02, 0x90, + 0x4a, 0xfc, 0x56, 0x0d, 0x7a, 0x4b, 0xba, 0xe3, 0xc8, 0xb1, 0x87, 0x76, 0xaa, 0x4b, 0xf1, 0x9f, + 0xc0, 0x4a, 0x84, 0xef, 0xdb, 0xf6, 0xdb, 0x2e, 0x91, 0xc5, 0x8a, 0xf4, 0xdb, 0x87, 0x80, 0x54, + 0xe2, 0x4c, 0x59, 0xab, 0x05, 0x8b, 0x2f, 0xec, 0x09, 0x0d, 0x7f, 0x94, 0x1a, 0x9c, 0x7b, 0x8e, + 0x31, 0xf8, 0xae, 0xf0, 0xdb, 0x54, 0xb9, 0x3a, 0x60, 0x26, 0xe5, 0xff, 0xae, 0x41, 0x65, 0x7b, + 0x60, 0x38, 0x43, 0xa9, 0xf8, 0x07, 0x90, 0xe7, 0x6f, 0xce, 0x02, 0xac, 0x7a, 0x2b, 0x2c, 0x46, + 0xe5, 0xe5, 0x8d, 0x6d, 0xfe, 0x9e, 0x2d, 0x46, 0x51, 0xc3, 0xc5, 0x7d, 0xd6, 0x6e, 0xe4, 0x7e, + 0x6b, 0x17, 0xbd, 0x07, 0x39, 0x83, 0x0e, 0x61, 0x69, 0xa6, 0x16, 0xc5, 0x2c, 0x98, 0x34, 0x56, + 0xdf, 0x73, 0x2e, 0xfc, 0x3d, 0x28, 0x2b, 0x1a, 0x50, 0x01, 0xb2, 0xcf, 0xda, 0xa2, 0x18, 0xdf, + 0xde, 0xe9, 0xee, 0xbd, 0xe2, 0x60, 0x4d, 0x0d, 0x60, 0xb7, 0xed, 0xb7, 0x33, 0xf8, 0x13, 0x31, + 0x4a, 0x84, 0x74, 0xd5, 0x1e, 0x2d, 0xcd, 0x9e, 0xcc, 0x6b, 0xd9, 0x73, 0x05, 0x55, 0x31, 0xfd, + 0x59, 0x53, 0x14, 0x93, 0x97, 0x92, 0xa2, 0x14, 0xe3, 0x75, 0xc1, 0x88, 0x17, 0xa0, 0x2a, 0x92, + 0x96, 0xd8, 0x7f, 0xff, 0x96, 0x81, 0x9a, 0xa4, 0xcc, 0x0a, 0xaa, 0x4b, 0x3c, 0x90, 0x27, 0x39, + 0x1f, 0x0d, 0x5c, 0x85, 0x7c, 0xff, 0xf4, 0xd8, 0xfc, 0x42, 0x5e, 0x80, 0x88, 0x16, 0xa5, 0x0f, + 0xb8, 0x1e, 0x7e, 0x0b, 0x29, 0x5a, 0x34, 0x1b, 0x39, 0xc6, 0x99, 0xb7, 0x67, 0xf5, 0xc9, 0x15, + 0xcb, 0x6d, 0xf3, 0x7a, 0x40, 0x60, 0x40, 0x89, 0xb8, 0xad, 0x64, 0x2f, 0x08, 0xca, 0xed, 0x25, + 0x7a, 0x04, 0x75, 0xfa, 0xbc, 0x3d, 0x1a, 0x0d, 0x4c, 0xd2, 0xe7, 0x02, 0x0a, 0x8c, 0x27, 0x46, + 0xa7, 0xda, 0x59, 0x49, 0xed, 0x36, 0x8a, 0x2c, 0xba, 0x8a, 0x16, 0x5a, 0x87, 0x32, 0xb7, 0x6f, + 0xcf, 0x7a, 0xe9, 0x12, 0x76, 0x85, 0x97, 0xd5, 0x55, 0x52, 0x38, 0x5b, 0x42, 0x34, 0x5b, 0x2e, + 0xc1, 0xe2, 0xf6, 0xd8, 0xbb, 0x68, 0x5b, 0xc6, 0xe9, 0x40, 0x46, 0x22, 0x5a, 0xce, 0x50, 0xe2, + 0xae, 0xe9, 0xaa, 0x54, 0xc1, 0x1a, 0x5e, 0x90, 0x36, 0x2c, 0x51, 0x22, 0xb1, 0x3c, 0xb3, 0xa7, + 0xa4, 0x07, 0x59, 0x40, 0x68, 0x91, 0x02, 0xc2, 0x70, 0xdd, 0xcf, 0x6d, 0xa7, 0x2f, 0x7c, 0xee, + 0xb7, 0xf1, 0x84, 0x6b, 0x7c, 0xe9, 0x86, 0x8a, 0x80, 0xdf, 0x50, 0x0a, 0x7a, 0x1f, 0x0a, 0xf6, + 0x88, 0xdd, 0x53, 0x0b, 0x30, 0x61, 0x75, 0x93, 0xdf, 0x6c, 0x6f, 0x0a, 0xc1, 0x1d, 0xde, 0xab, + 0x4b, 0x36, 0xbc, 0x11, 0xe8, 0x7d, 0x46, 0xbc, 0x29, 0x7a, 0xf1, 0x63, 0x58, 0x91, 0x9c, 0x02, + 0x3b, 0x9f, 0xc2, 0xdc, 0x81, 0x7b, 0x92, 0x79, 0xe7, 0xc2, 0xb0, 0xce, 0xc9, 0x91, 0x30, 0xf1, + 0xab, 0xfa, 0xe7, 0x29, 0x34, 0x7c, 0x3b, 0xd9, 0xfb, 0x9c, 0x3d, 0x50, 0x0d, 0x18, 0xbb, 0x62, + 0xfb, 0x97, 0x74, 0xf6, 0x4c, 0x69, 0x8e, 0x3d, 0xf0, 0x0b, 0x38, 0xfa, 0x8c, 0x77, 0xe0, 0xb6, + 0x94, 0x21, 0xde, 0xb4, 0xc2, 0x42, 0x62, 0x06, 0x25, 0x09, 0x11, 0x0e, 0xa3, 0x43, 0xa7, 0x2f, + 0x94, 0xca, 0x19, 0x76, 0x2d, 0x93, 0xa9, 0x29, 0x32, 0x57, 0xf8, 0x1e, 0xa2, 0x86, 0xa9, 0x39, + 0x5a, 0x90, 0xa9, 0x00, 0x95, 0x2c, 0x16, 0x82, 0x92, 0x63, 0x0b, 0x11, 0x13, 0xfd, 0x23, 0x58, + 0xf3, 0x8d, 0xa0, 0x7e, 0x3b, 0x22, 0xce, 0xd0, 0x74, 0x5d, 0x05, 0x6d, 0x4d, 0x9a, 0xf8, 0x5b, + 0x30, 0x3f, 0x22, 0x22, 0x3c, 0x96, 0xb7, 0x90, 0xdc, 0x44, 0xca, 0x60, 0xd6, 0x8f, 0xfb, 0x70, + 0x5f, 0x4a, 0xe7, 0x1e, 0x4d, 0x14, 0x1f, 0x35, 0x4a, 0x62, 0x50, 0x99, 0x14, 0x0c, 0x2a, 0x1b, + 0xb9, 0x01, 0xf8, 0x90, 0x3b, 0x52, 0x1e, 0xd1, 0x99, 0xd2, 0xde, 0x3e, 0xf7, 0xa9, 0x7f, 0xb2, + 0x67, 0x12, 0xf6, 0x17, 0x1a, 0xb7, 0xec, 0xeb, 0x0a, 0xc8, 0x84, 0xcd, 0x50, 0xc2, 0xeb, 0xb2, + 0x89, 0x30, 0x54, 0xe8, 0x02, 0xe8, 0x2a, 0x02, 0x37, 0xaf, 0x87, 0x68, 0xf8, 0x14, 0x96, 0xc3, + 0x61, 0x68, 0x26, 0x5b, 0x96, 0x21, 0xe7, 0xd9, 0x97, 0x44, 0xa6, 0x06, 0xde, 0x90, 0xbe, 0xf3, + 0x63, 0xd4, 0x4c, 0xbe, 0x33, 0x02, 0x61, 0xec, 0x74, 0xcc, 0x6a, 0x2f, 0xdd, 0x58, 0xb2, 0xf2, + 0xe6, 0x0d, 0x7c, 0x08, 0xab, 0xd1, 0x88, 0x35, 0x93, 0xc9, 0xaf, 0xf8, 0x59, 0x4a, 0x0a, 0x6a, + 0x33, 0xc9, 0xfd, 0x28, 0x88, 0x4b, 0x4a, 0x6c, 0x9b, 0x49, 0xa4, 0x0e, 0xcd, 0xa4, 0x50, 0xf7, + 0x75, 0x1c, 0x1d, 0x3f, 0xf2, 0xcd, 0x24, 0xcc, 0x0d, 0x84, 0xcd, 0xbe, 0xfc, 0x41, 0xb8, 0xca, + 0x4e, 0x0d, 0x57, 0xe2, 0x90, 0x04, 0x01, 0xf5, 0x1b, 0xd8, 0x74, 0x42, 0x47, 0x10, 0xcb, 0x67, + 0xd5, 0x41, 0xd3, 0x99, 0xaf, 0x83, 0x35, 0xe4, 0xc6, 0x56, 0x33, 0xc0, 0x4c, 0x8b, 0xf1, 0x71, + 0x10, 0xc6, 0x63, 0x49, 0x62, 0x26, 0xc1, 0x9f, 0xc0, 0x7a, 0x7a, 0x7e, 0x98, 0x45, 0xf2, 0xa3, + 0x16, 0x94, 0xfc, 0x32, 0x5d, 0xf9, 0xca, 0xa9, 0x0c, 0x85, 0xc3, 0xce, 0xf1, 0xd1, 0xf6, 0x4e, + 0x9b, 0x7f, 0xe6, 0xb4, 0xd3, 0xd1, 0xf5, 0x97, 0x47, 0xdd, 0x7a, 0x66, 0xeb, 0xd7, 0x59, 0xc8, + 0xec, 0xbf, 0x42, 0x9f, 0x42, 0x8e, 0xdf, 0xf9, 0x4f, 0xf9, 0xd0, 0xa3, 0x39, 0xed, 0xb3, 0x06, + 0x7c, 0xeb, 0xa7, 0xff, 0xf5, 0xeb, 0x5f, 0x66, 0x16, 0x71, 0xa5, 0x35, 0xf9, 0x6e, 0xeb, 0x72, + 0xd2, 0x62, 0x69, 0xea, 0x89, 0xf6, 0x08, 0x7d, 0x04, 0xd9, 0xa3, 0xb1, 0x87, 0x52, 0x3f, 0x00, + 0x69, 0xa6, 0x7f, 0xe9, 0x80, 0x57, 0x98, 0xd0, 0x05, 0x0c, 0x42, 0xe8, 0x68, 0xec, 0x51, 0x91, + 0x3f, 0x86, 0xb2, 0xfa, 0x9d, 0xc2, 0x8d, 0x5f, 0x85, 0x34, 0x6f, 0xfe, 0x06, 0x02, 0xdf, 0x63, + 0xaa, 0x6e, 0x61, 0x24, 0x54, 0xf1, 0x2f, 0x29, 0xd4, 0x59, 0x74, 0xaf, 0x2c, 0x94, 0xfa, 0xcd, + 0x48, 0x33, 0xfd, 0xb3, 0x88, 0xd8, 0x2c, 0xbc, 0x2b, 0x8b, 0x8a, 0xfc, 0x43, 0xf1, 0x45, 0x44, + 0xcf, 0x43, 0xf7, 0x13, 0x6e, 0xc4, 0xd5, 0xbb, 0xdf, 0xe6, 0x7a, 0x3a, 0x83, 0x50, 0x72, 0x97, + 0x29, 0x59, 0xc5, 0x8b, 0x42, 0x49, 0xcf, 0x67, 0x79, 0xa2, 0x3d, 0xda, 0xea, 0x41, 0x8e, 0xdd, + 0xab, 0xa0, 0xcf, 0xe4, 0x43, 0x33, 0xe1, 0x82, 0x29, 0x65, 0xa1, 0x43, 0x37, 0x32, 0x78, 0x99, + 0x29, 0xaa, 0xe1, 0x12, 0x55, 0xc4, 0x6e, 0x55, 0x9e, 0x68, 0x8f, 0x36, 0xb4, 0xf7, 0xb5, 0xad, + 0x7f, 0xca, 0x41, 0x8e, 0x01, 0x8a, 0xe8, 0x12, 0x20, 0xb8, 0x63, 0x88, 0xce, 0x2e, 0x76, 0x6b, + 0x11, 0x9d, 0x5d, 0xfc, 0x7a, 0x02, 0x37, 0x99, 0xd2, 0x65, 0xbc, 0x40, 0x95, 0x32, 0x9c, 0xb2, + 0xc5, 0xa0, 0x57, 0xea, 0xc7, 0xbf, 0xd4, 0x04, 0x9e, 0xca, 0xcf, 0x12, 0x4a, 0x92, 0x16, 0xba, + 0x68, 0x88, 0x6e, 0x87, 0x84, 0x4b, 0x06, 0xfc, 0x7d, 0xa6, 0xb0, 0x85, 0xeb, 0x81, 0x42, 0x87, + 0x71, 0x3c, 0xd1, 0x1e, 0x7d, 0xd6, 0xc0, 0x4b, 0xc2, 0xcb, 0x91, 0x1e, 0xf4, 0x13, 0xa8, 0x85, + 0x81, 0x74, 0xf4, 0x20, 0x41, 0x57, 0x14, 0x8f, 0x6f, 0xbe, 0x39, 0x9d, 0x49, 0xd8, 0xb4, 0xc6, + 0x6c, 0x12, 0xca, 0xb9, 0xe6, 0x4b, 0x42, 0x46, 0x06, 0x65, 0x12, 0x6b, 0x80, 0xfe, 0x4e, 0x13, + 0xf7, 0x1c, 0x01, 0x32, 0x8e, 0x92, 0xa4, 0xc7, 0x70, 0xf7, 0xe6, 0xc3, 0x1b, 0xb8, 0x84, 0x11, + 0xbf, 0xc7, 0x8c, 0xf8, 0x6d, 0xbc, 0x1c, 0x18, 0xe1, 0x99, 0x43, 0xe2, 0xd9, 0xc2, 0x8a, 0xcf, + 0xee, 0xe2, 0x5b, 0x21, 0xe7, 0x84, 0x7a, 0x83, 0xc5, 0xe2, 0xe8, 0x76, 0xe2, 0x62, 0x85, 0xd0, + 0xf2, 0xc4, 0xc5, 0x0a, 0x43, 0xe3, 0x49, 0x8b, 0xc5, 0xb1, 0xec, 0xa4, 0xc5, 0xf2, 0x7b, 0xb6, + 0xfe, 0x6f, 0x1e, 0x0a, 0x3b, 0xfc, 0x4b, 0x64, 0x64, 0x43, 0xc9, 0x07, 0x87, 0xd1, 0x5a, 0x12, + 0x02, 0x16, 0xbc, 0xd6, 0x34, 0xef, 0xa7, 0xf6, 0x0b, 0x83, 0xde, 0x60, 0x06, 0xdd, 0xc1, 0xab, + 0x54, 0xb3, 0xf8, 0xd8, 0xb9, 0xc5, 0x61, 0x96, 0x96, 0xd1, 0xef, 0x53, 0x47, 0xfc, 0x11, 0x54, + 0x54, 0xf4, 0x16, 0xbd, 0x91, 0x88, 0xba, 0xa9, 0x00, 0x70, 0x13, 0x4f, 0x63, 0x11, 0x9a, 0xdf, + 0x64, 0x9a, 0xd7, 0xf0, 0xed, 0x04, 0xcd, 0x0e, 0x63, 0x0d, 0x29, 0xe7, 0xc8, 0x6b, 0xb2, 0xf2, + 0x10, 0xb0, 0x9b, 0xac, 0x3c, 0x0c, 0xdc, 0x4e, 0x55, 0x3e, 0x66, 0xac, 0x54, 0xb9, 0x0b, 0x10, + 0x60, 0xac, 0x28, 0xd1, 0x97, 0xca, 0x7b, 0x5d, 0x34, 0x38, 0xc4, 0xe1, 0x59, 0x8c, 0x99, 0x5a, + 0xb1, 0xef, 0x22, 0x6a, 0x07, 0xa6, 0xeb, 0xf1, 0x83, 0x59, 0x0d, 0x81, 0xa6, 0x28, 0x71, 0x3e, + 0x61, 0xe4, 0xb5, 0xf9, 0x60, 0x2a, 0x8f, 0xd0, 0xfe, 0x90, 0x69, 0xbf, 0x8f, 0x9b, 0x09, 0xda, + 0x47, 0x9c, 0x97, 0x6e, 0xb6, 0xbf, 0xca, 0x43, 0xf9, 0x85, 0x61, 0x5a, 0x1e, 0xb1, 0x0c, 0xab, + 0x47, 0xd0, 0x29, 0xe4, 0x58, 0xa6, 0x8e, 0x06, 0x62, 0x15, 0x50, 0x8c, 0x06, 0xe2, 0x10, 0xda, + 0x86, 0xd7, 0x99, 0xe2, 0x26, 0x5e, 0xa1, 0x8a, 0x87, 0x81, 0xe8, 0x16, 0x03, 0xc9, 0xe8, 0xa4, + 0xcf, 0x20, 0x2f, 0xee, 0x98, 0x22, 0x82, 0x42, 0x58, 0x4d, 0xf3, 0x6e, 0x72, 0x67, 0xd2, 0x5e, + 0x56, 0xd5, 0xb8, 0x8c, 0x8f, 0xea, 0x99, 0x00, 0x04, 0xe8, 0x6f, 0x74, 0x45, 0x63, 0x60, 0x71, + 0x73, 0x3d, 0x9d, 0x21, 0xc9, 0xa7, 0xaa, 0xce, 0xbe, 0xcf, 0x4b, 0xf5, 0xfe, 0x01, 0xcc, 0x3f, + 0x37, 0xdc, 0x0b, 0x14, 0xc9, 0xbd, 0xca, 0x17, 0x4a, 0xcd, 0x66, 0x52, 0x97, 0xd0, 0x72, 0x9f, + 0x69, 0xb9, 0xcd, 0x43, 0x99, 0xaa, 0xe5, 0xc2, 0x70, 0x69, 0x52, 0x43, 0x7d, 0xc8, 0xf3, 0x0f, + 0x96, 0xa2, 0xfe, 0x0b, 0x7d, 0xf4, 0x14, 0xf5, 0x5f, 0xf8, 0x1b, 0xa7, 0x9b, 0xb5, 0x8c, 0xa0, + 0x28, 0xbf, 0x10, 0x42, 0x91, 0xeb, 0xe2, 0xc8, 0xd7, 0x44, 0xcd, 0xb5, 0xb4, 0x6e, 0xa1, 0xeb, + 0x01, 0xd3, 0x75, 0x0f, 0x37, 0x62, 0x6b, 0x25, 0x38, 0x9f, 0x68, 0x8f, 0xde, 0xd7, 0xd0, 0x4f, + 0x00, 0x02, 0xc0, 0x3c, 0x76, 0x02, 0xa3, 0xd8, 0x7b, 0xec, 0x04, 0xc6, 0xb0, 0x76, 0xbc, 0xc9, + 0xf4, 0x6e, 0xe0, 0x07, 0x51, 0xbd, 0x9e, 0x63, 0x58, 0xee, 0x19, 0x71, 0xde, 0xe3, 0xa0, 0xa8, + 0x7b, 0x61, 0x8e, 0xe8, 0x61, 0xf8, 0x97, 0x05, 0x98, 0xa7, 0x15, 0x30, 0x2d, 0x14, 0x02, 0x0c, + 0x23, 0x6a, 0x49, 0x0c, 0x80, 0x8c, 0x5a, 0x12, 0x87, 0x3f, 0xc2, 0x85, 0x02, 0xfb, 0x0d, 0x0b, + 0x87, 0x0b, 0xa8, 0xa3, 0x6d, 0x28, 0x2b, 0x20, 0x07, 0x4a, 0x10, 0x16, 0x46, 0x36, 0xa3, 0xa9, + 0x27, 0x01, 0x21, 0xc1, 0x77, 0x98, 0xbe, 0x15, 0x9e, 0x7a, 0x98, 0xbe, 0x3e, 0xe7, 0xa0, 0x0a, + 0x3f, 0x87, 0x8a, 0x8a, 0x3e, 0xa0, 0x04, 0x79, 0x11, 0x80, 0x34, 0x1a, 0x66, 0x93, 0xc0, 0x8b, + 0xf0, 0xc1, 0xf7, 0x7f, 0xa7, 0x23, 0xd9, 0xa8, 0xe2, 0x01, 0x14, 0x04, 0x1c, 0x91, 0x34, 0xcb, + 0x30, 0x9a, 0x9a, 0x34, 0xcb, 0x08, 0x96, 0x11, 0x2e, 0x2e, 0x99, 0x46, 0xfa, 0xc6, 0x25, 0x53, + 0x99, 0xd0, 0xf6, 0x8c, 0x78, 0x69, 0xda, 0x02, 0xa0, 0x2f, 0x4d, 0x9b, 0xf2, 0xb6, 0x9b, 0xa6, + 0xed, 0x9c, 0x78, 0xe2, 0xb8, 0xc8, 0xb7, 0x48, 0x94, 0x22, 0x4c, 0x4d, 0x1f, 0x78, 0x1a, 0x4b, + 0x52, 0xed, 0x1f, 0x28, 0x94, 0xb9, 0xe3, 0x0a, 0x20, 0x00, 0x4b, 0xa2, 0x05, 0x5d, 0x22, 0xf8, + 0x1b, 0x2d, 0xe8, 0x92, 0xf1, 0x96, 0x70, 0x68, 0x08, 0xf4, 0xf2, 0x57, 0x0f, 0xaa, 0xf9, 0x17, + 0x1a, 0xa0, 0x38, 0xae, 0x82, 0x1e, 0x27, 0x4b, 0x4f, 0x84, 0x94, 0x9b, 0xef, 0xbe, 0x1e, 0x73, + 0x52, 0xb4, 0x0f, 0x4c, 0xea, 0x31, 0xee, 0xd1, 0xe7, 0xd4, 0xa8, 0x3f, 0xd3, 0xa0, 0x1a, 0x02, + 0x65, 0xd0, 0x5b, 0x29, 0x6b, 0x1a, 0x41, 0xa4, 0x9b, 0x6f, 0xdf, 0xc8, 0x97, 0x54, 0xe9, 0x2a, + 0x3b, 0x40, 0x96, 0xfc, 0x3f, 0xd3, 0xa0, 0x16, 0x06, 0x71, 0x50, 0x8a, 0xec, 0x18, 0xa2, 0xdd, + 0xdc, 0xb8, 0x99, 0x71, 0xfa, 0xf2, 0x04, 0xd5, 0xfe, 0x00, 0x0a, 0x02, 0xf6, 0x49, 0xda, 0xf8, + 0x61, 0x2c, 0x3c, 0x69, 0xe3, 0x47, 0x30, 0xa3, 0x84, 0x8d, 0xef, 0xd8, 0x03, 0xa2, 0x1c, 0x33, + 0x81, 0x0b, 0xa5, 0x69, 0x9b, 0x7e, 0xcc, 0x22, 0xa0, 0x52, 0x9a, 0xb6, 0xe0, 0x98, 0x49, 0x40, + 0x08, 0xa5, 0x08, 0xbb, 0xe1, 0x98, 0x45, 0xf1, 0xa4, 0x84, 0x63, 0xc6, 0x14, 0x2a, 0xc7, 0x2c, + 0x80, 0x6e, 0x92, 0x8e, 0x59, 0x0c, 0xda, 0x4f, 0x3a, 0x66, 0x71, 0xf4, 0x27, 0x61, 0x1d, 0x99, + 0xde, 0xd0, 0x31, 0x5b, 0x4a, 0x40, 0x79, 0xd0, 0xbb, 0x29, 0x4e, 0x4c, 0xbc, 0x31, 0x68, 0xbe, + 0xf7, 0x9a, 0xdc, 0xa9, 0x7b, 0x9c, 0xbb, 0x5f, 0xee, 0xf1, 0xbf, 0xd6, 0x60, 0x39, 0x09, 0x21, + 0x42, 0x29, 0x7a, 0x52, 0x6e, 0x1a, 0x9a, 0x9b, 0xaf, 0xcb, 0x3e, 0xdd, 0x5b, 0xfe, 0xae, 0x7f, + 0x5a, 0xff, 0xd7, 0x2f, 0xd7, 0xb4, 0xff, 0xf8, 0x72, 0x4d, 0xfb, 0xef, 0x2f, 0xd7, 0xb4, 0xbf, + 0xf9, 0x9f, 0xb5, 0xb9, 0xd3, 0x3c, 0xfb, 0xf5, 0xe7, 0x77, 0xff, 0x3f, 0x00, 0x00, 0xff, 0xff, + 0xbe, 0xff, 0x51, 0xe1, 0x84, 0x3a, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/rpc.proto b/etcdserver/etcdserverpb/rpc.proto index 423eabada4e4..0f4903fd5eb5 100644 --- a/etcdserver/etcdserverpb/rpc.proto +++ b/etcdserver/etcdserverpb/rpc.proto @@ -1000,6 +1000,9 @@ message AuthEnableRequest { message AuthDisableRequest { } +message AuthStatusRequest { +} + message AuthenticateRequest { string name = 1; string password = 2; @@ -1079,6 +1082,13 @@ message AuthDisableResponse { ResponseHeader header = 1; } +message AuthStatusResponse { + ResponseHeader header = 1; + bool enabled = 2; + // authRevision is the current revision of auth store + uint64 authRevision = 3; +} + message AuthenticateResponse { ResponseHeader header = 1; // token is an authorized token that can be used in succeeding RPCs