diff --git a/Documentation/dev-guide/api_reference_v3.md b/Documentation/dev-guide/api_reference_v3.md index b3481fa83cfa..5622616daf12 100644 --- a/Documentation/dev-guide/api_reference_v3.md +++ b/Documentation/dev-guide/api_reference_v3.md @@ -245,6 +245,7 @@ Empty field. | ----- | ----------- | ---- | | name | | string | | password | | string | +| options | | authpb.UserAddOptions | @@ -945,6 +946,15 @@ User is a single entry in the bucket authUsers | name | | bytes | | password | | bytes | | roles | | (slice of) string | +| options | | UserAddOptions | + + + +##### message `UserAddOptions` (auth/authpb/auth.proto) + +| Field | Description | Type | +| ----- | ----------- | ---- | +| no_password | | bool | diff --git a/Documentation/dev-guide/apispec/swagger/rpc.swagger.json b/Documentation/dev-guide/apispec/swagger/rpc.swagger.json index a0217d29d6bf..e0dfa82710f5 100644 --- a/Documentation/dev-guide/apispec/swagger/rpc.swagger.json +++ b/Documentation/dev-guide/apispec/swagger/rpc.swagger.json @@ -1192,6 +1192,15 @@ "READWRITE" ] }, + "authpbUserAddOptions": { + "type": "object", + "properties": { + "no_password": { + "type": "boolean", + "format": "boolean" + } + } + }, "etcdserverpbAlarmMember": { "type": "object", "properties": { @@ -1393,6 +1402,9 @@ "name": { "type": "string" }, + "options": { + "$ref": "#/definitions/authpbUserAddOptions" + }, "password": { "type": "string" } diff --git a/auth/authpb/auth.pb.go b/auth/authpb/auth.pb.go index 1a940c39b26e..7e038df0146c 100644 --- a/auth/authpb/auth.pb.go +++ b/auth/authpb/auth.pb.go @@ -8,6 +8,7 @@ auth.proto It has these top-level messages: + UserAddOptions User Permission Role @@ -59,19 +60,29 @@ var Permission_Type_value = map[string]int32{ func (x Permission_Type) String() string { return proto.EnumName(Permission_Type_name, int32(x)) } -func (Permission_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptorAuth, []int{1, 0} } +func (Permission_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptorAuth, []int{2, 0} } + +type UserAddOptions struct { + NoPassword bool `protobuf:"varint,1,opt,name=no_password,json=noPassword,proto3" json:"no_password,omitempty"` +} + +func (m *UserAddOptions) Reset() { *m = UserAddOptions{} } +func (m *UserAddOptions) String() string { return proto.CompactTextString(m) } +func (*UserAddOptions) ProtoMessage() {} +func (*UserAddOptions) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{0} } // User is a single entry in the bucket authUsers type User struct { - Name []byte `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Password []byte `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` - Roles []string `protobuf:"bytes,3,rep,name=roles" json:"roles,omitempty"` + Name []byte `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Password []byte `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` + Roles []string `protobuf:"bytes,3,rep,name=roles" json:"roles,omitempty"` + Options *UserAddOptions `protobuf:"bytes,4,opt,name=options" json:"options,omitempty"` } func (m *User) Reset() { *m = User{} } func (m *User) String() string { return proto.CompactTextString(m) } func (*User) ProtoMessage() {} -func (*User) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{0} } +func (*User) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{1} } // Permission is a single entity type Permission struct { @@ -83,7 +94,7 @@ type Permission struct { func (m *Permission) Reset() { *m = Permission{} } func (m *Permission) String() string { return proto.CompactTextString(m) } func (*Permission) ProtoMessage() {} -func (*Permission) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{1} } +func (*Permission) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{2} } // Role is a single entry in the bucket authRoles type Role struct { @@ -94,14 +105,43 @@ type Role struct { func (m *Role) Reset() { *m = Role{} } func (m *Role) String() string { return proto.CompactTextString(m) } func (*Role) ProtoMessage() {} -func (*Role) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{2} } +func (*Role) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{3} } func init() { + proto.RegisterType((*UserAddOptions)(nil), "authpb.UserAddOptions") proto.RegisterType((*User)(nil), "authpb.User") proto.RegisterType((*Permission)(nil), "authpb.Permission") proto.RegisterType((*Role)(nil), "authpb.Role") proto.RegisterEnum("authpb.Permission_Type", Permission_Type_name, Permission_Type_value) } +func (m *UserAddOptions) 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 *UserAddOptions) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.NoPassword { + dAtA[i] = 0x8 + i++ + if m.NoPassword { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } + return i, nil +} + func (m *User) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -144,6 +184,16 @@ func (m *User) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], s) } } + if m.Options != nil { + dAtA[i] = 0x22 + i++ + i = encodeVarintAuth(dAtA, i, uint64(m.Options.Size())) + n1, err := m.Options.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n1 + } return i, nil } @@ -227,6 +277,15 @@ func encodeVarintAuth(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return offset + 1 } +func (m *UserAddOptions) Size() (n int) { + var l int + _ = l + if m.NoPassword { + n += 2 + } + return n +} + func (m *User) Size() (n int) { var l int _ = l @@ -244,6 +303,10 @@ func (m *User) Size() (n int) { n += 1 + l + sovAuth(uint64(l)) } } + if m.Options != nil { + l = m.Options.Size() + n += 1 + l + sovAuth(uint64(l)) + } return n } @@ -293,6 +356,76 @@ func sovAuth(x uint64) (n int) { func sozAuth(x uint64) (n int) { return sovAuth(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } +func (m *UserAddOptions) 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 ErrIntOverflowAuth + } + 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: UserAddOptions: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: UserAddOptions: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field NoPassword", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuth + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.NoPassword = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipAuth(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAuth + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *User) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -413,6 +546,39 @@ func (m *User) Unmarshal(dAtA []byte) error { } m.Roles = append(m.Roles, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Options", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuth + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAuth + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Options == nil { + m.Options = &UserAddOptions{} + } + if err := m.Options.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAuth(dAtA[iNdEx:]) @@ -785,23 +951,27 @@ var ( func init() { proto.RegisterFile("auth.proto", fileDescriptorAuth) } var fileDescriptorAuth = []byte{ - // 288 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0xc1, 0x4a, 0xc3, 0x30, - 0x1c, 0xc6, 0x9b, 0xb6, 0x1b, 0xed, 0x5f, 0x27, 0x25, 0x0c, 0x0c, 0x13, 0x42, 0xe9, 0xa9, 0x78, - 0xa8, 0xb0, 0x5d, 0xbc, 0x2a, 0xf6, 0x20, 0x78, 0x90, 0x50, 0xf1, 0x28, 0x1d, 0x0d, 0x75, 0x6c, - 0x6d, 0x4a, 0x32, 0x91, 0xbe, 0x89, 0x07, 0x1f, 0x68, 0xc7, 0x3d, 0x82, 0xab, 0x2f, 0x22, 0x4d, - 0x64, 0x43, 0xdc, 0xed, 0xfb, 0xbe, 0xff, 0x97, 0xe4, 0x97, 0x3f, 0x40, 0xfe, 0xb6, 0x7e, 0x4d, - 0x1a, 0x29, 0xd6, 0x02, 0x0f, 0x7b, 0xdd, 0xcc, 0x27, 0xe3, 0x52, 0x94, 0x42, 0x47, 0x57, 0xbd, - 0x32, 0xd3, 0xe8, 0x01, 0xdc, 0x27, 0xc5, 0x25, 0xc6, 0xe0, 0xd6, 0x79, 0xc5, 0x09, 0x0a, 0x51, - 0x7c, 0xca, 0xb4, 0xc6, 0x13, 0xf0, 0x9a, 0x5c, 0xa9, 0x77, 0x21, 0x0b, 0x62, 0xeb, 0x7c, 0xef, - 0xf1, 0x18, 0x06, 0x52, 0xac, 0xb8, 0x22, 0x4e, 0xe8, 0xc4, 0x3e, 0x33, 0x26, 0xfa, 0x44, 0x00, - 0x8f, 0x5c, 0x56, 0x0b, 0xa5, 0x16, 0xa2, 0xc6, 0x33, 0xf0, 0x1a, 0x2e, 0xab, 0xac, 0x6d, 0xcc, - 0xc5, 0x67, 0xd3, 0xf3, 0xc4, 0xd0, 0x24, 0x87, 0x56, 0xd2, 0x8f, 0xd9, 0xbe, 0x88, 0x03, 0x70, - 0x96, 0xbc, 0xfd, 0x7d, 0xb0, 0x97, 0xf8, 0x02, 0x7c, 0x99, 0xd7, 0x25, 0x7f, 0xe1, 0x75, 0x41, - 0x1c, 0x03, 0xa2, 0x83, 0xb4, 0x2e, 0xa2, 0x4b, 0x70, 0xf5, 0x31, 0x0f, 0x5c, 0x96, 0xde, 0xdc, - 0x05, 0x16, 0xf6, 0x61, 0xf0, 0xcc, 0xee, 0xb3, 0x34, 0x40, 0x78, 0x04, 0x7e, 0x1f, 0x1a, 0x6b, - 0x47, 0x19, 0xb8, 0x4c, 0xac, 0xf8, 0xd1, 0xcf, 0x5e, 0xc3, 0x68, 0xc9, 0xdb, 0x03, 0x16, 0xb1, - 0x43, 0x27, 0x3e, 0x99, 0xe2, 0xff, 0xc0, 0xec, 0x6f, 0xf1, 0x96, 0x6c, 0x76, 0xd4, 0xda, 0xee, - 0xa8, 0xb5, 0xe9, 0x28, 0xda, 0x76, 0x14, 0x7d, 0x75, 0x14, 0x7d, 0x7c, 0x53, 0x6b, 0x3e, 0xd4, - 0x3b, 0x9e, 0xfd, 0x04, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x76, 0x8d, 0x4f, 0x8f, 0x01, 0x00, 0x00, + // 338 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xcf, 0x4e, 0xea, 0x40, + 0x14, 0xc6, 0x3b, 0xb4, 0x70, 0xdb, 0xc3, 0x85, 0x90, 0x13, 0x72, 0x6f, 0x83, 0x49, 0x6d, 0xba, + 0x6a, 0x5c, 0x54, 0x85, 0x8d, 0x5b, 0x8c, 0x2c, 0x5c, 0x49, 0x26, 0x18, 0x97, 0xa4, 0xa4, 0x13, + 0x24, 0xc0, 0x4c, 0x33, 0x83, 0x31, 0x6c, 0x7c, 0x0e, 0x17, 0x3e, 0x10, 0x4b, 0x1e, 0x41, 0xf0, + 0x45, 0x4c, 0x67, 0xf8, 0x13, 0xa2, 0xbb, 0xef, 0x7c, 0xe7, 0xfb, 0x66, 0x7e, 0x99, 0x01, 0x48, + 0x5f, 0x16, 0xcf, 0x49, 0x2e, 0xc5, 0x42, 0x60, 0xa5, 0xd0, 0xf9, 0xa8, 0xd5, 0x1c, 0x8b, 0xb1, + 0xd0, 0xd6, 0x65, 0xa1, 0xcc, 0x36, 0xba, 0x86, 0xfa, 0xa3, 0x62, 0xb2, 0x9b, 0x65, 0x0f, 0xf9, + 0x62, 0x22, 0xb8, 0xc2, 0x73, 0xa8, 0x72, 0x31, 0xcc, 0x53, 0xa5, 0x5e, 0x85, 0xcc, 0x7c, 0x12, + 0x92, 0xd8, 0xa5, 0xc0, 0x45, 0x7f, 0xe7, 0x44, 0x6f, 0xe0, 0x14, 0x15, 0x44, 0x70, 0x78, 0x3a, + 0x67, 0x3a, 0xf1, 0x97, 0x6a, 0x8d, 0x2d, 0x70, 0x0f, 0xcd, 0x92, 0xf6, 0x0f, 0x33, 0x36, 0xa1, + 0x2c, 0xc5, 0x8c, 0x29, 0xdf, 0x0e, 0xed, 0xd8, 0xa3, 0x66, 0xc0, 0x2b, 0xf8, 0x23, 0xcc, 0xcd, + 0xbe, 0x13, 0x92, 0xb8, 0xda, 0xfe, 0x97, 0x18, 0xe0, 0xe4, 0x94, 0x8b, 0xee, 0x63, 0xd1, 0x07, + 0x01, 0xe8, 0x33, 0x39, 0x9f, 0x28, 0x35, 0x11, 0x1c, 0x3b, 0xe0, 0xe6, 0x4c, 0xce, 0x07, 0xcb, + 0xdc, 0xa0, 0xd4, 0xdb, 0xff, 0xf7, 0x27, 0x1c, 0x53, 0x49, 0xb1, 0xa6, 0x87, 0x20, 0x36, 0xc0, + 0x9e, 0xb2, 0xe5, 0x0e, 0xb1, 0x90, 0x78, 0x06, 0x9e, 0x4c, 0xf9, 0x98, 0x0d, 0x19, 0xcf, 0x7c, + 0xdb, 0xa0, 0x6b, 0xa3, 0xc7, 0xb3, 0xe8, 0x02, 0x1c, 0x5d, 0x73, 0xc1, 0xa1, 0xbd, 0xee, 0x5d, + 0xc3, 0x42, 0x0f, 0xca, 0x4f, 0xf4, 0x7e, 0xd0, 0x6b, 0x10, 0xac, 0x81, 0x57, 0x98, 0x66, 0x2c, + 0x45, 0x03, 0x70, 0xa8, 0x98, 0xb1, 0x5f, 0x9f, 0xe7, 0x06, 0x6a, 0x53, 0xb6, 0x3c, 0x62, 0xf9, + 0xa5, 0xd0, 0x8e, 0xab, 0x6d, 0xfc, 0x09, 0x4c, 0x4f, 0x83, 0xb7, 0xfe, 0x6a, 0x13, 0x58, 0xeb, + 0x4d, 0x60, 0xad, 0xb6, 0x01, 0x59, 0x6f, 0x03, 0xf2, 0xb9, 0x0d, 0xc8, 0xfb, 0x57, 0x60, 0x8d, + 0x2a, 0xfa, 0x23, 0x3b, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x61, 0x66, 0xc6, 0x9d, 0xf4, 0x01, + 0x00, 0x00, } diff --git a/auth/authpb/auth.proto b/auth/authpb/auth.proto index 001d33435483..8f82b7cf1e42 100644 --- a/auth/authpb/auth.proto +++ b/auth/authpb/auth.proto @@ -9,11 +9,16 @@ option (gogoproto.unmarshaler_all) = true; option (gogoproto.goproto_getters_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; +message UserAddOptions { + bool no_password = 1; +}; + // User is a single entry in the bucket authUsers message User { bytes name = 1; bytes password = 2; repeated string roles = 3; + UserAddOptions options = 4; } // Permission is a single entity diff --git a/auth/store.go b/auth/store.go index 44df87873288..4cd8ed053790 100644 --- a/auth/store.go +++ b/auth/store.go @@ -301,6 +301,10 @@ func (as *authStore) Authenticate(ctx context.Context, username, password string return nil, ErrAuthFailed } + if user.Options.NoPassword { + return nil, ErrAuthFailed + } + // Password checking is already performed in the API layer, so we don't need to check for now. // Staleness of password can be detected with OCC in the API layer, too. @@ -335,6 +339,10 @@ func (as *authStore) CheckPassword(username, password string) (uint64, error) { return 0, ErrAuthFailed } + if user.Options.NoPassword { + return 0, ErrAuthFailed + } + if bcrypt.CompareHashAndPassword(user.Password, []byte(password)) != nil { if as.lg != nil { as.lg.Info("invalid password", zap.String("user-name", username)) @@ -372,18 +380,23 @@ func (as *authStore) UserAdd(r *pb.AuthUserAddRequest) (*pb.AuthUserAddResponse, return nil, ErrUserEmpty } - hashed, err := bcrypt.GenerateFromPassword([]byte(r.Password), as.bcryptCost) - if err != nil { - if as.lg != nil { - as.lg.Warn( - "failed to bcrypt hash password", - zap.String("user-name", r.Name), - zap.Error(err), - ) - } else { - plog.Errorf("failed to hash password: %s", err) + var hashed []byte + var err error + + if !r.Options.NoPassword { + hashed, err = bcrypt.GenerateFromPassword([]byte(r.Password), as.bcryptCost) + if err != nil { + if as.lg != nil { + as.lg.Warn( + "failed to bcrypt hash password", + zap.String("user-name", r.Name), + zap.Error(err), + ) + } else { + plog.Errorf("failed to hash password: %s", err) + } + return nil, err } - return nil, err } tx := as.be.BatchTx() @@ -395,9 +408,17 @@ func (as *authStore) UserAdd(r *pb.AuthUserAddRequest) (*pb.AuthUserAddResponse, return nil, ErrUserAlreadyExist } + options := r.Options + if options == nil { + options = &authpb.UserAddOptions{ + NoPassword: false, + } + } + newUser := &authpb.User{ Name: []byte(r.Name), Password: hashed, + Options: options, } putUser(as.lg, tx, newUser) @@ -480,6 +501,7 @@ func (as *authStore) UserChangePassword(r *pb.AuthUserChangePasswordRequest) (*p Name: []byte(r.Name), Roles: user.Roles, Password: hashed, + Options: user.Options, } putUser(as.lg, tx, updatedUser) @@ -609,6 +631,7 @@ func (as *authStore) UserRevokeRole(r *pb.AuthUserRevokeRoleRequest) (*pb.AuthUs updatedUser := &authpb.User{ Name: user.Name, Password: user.Password, + Options: user.Options, } for _, role := range user.Roles { @@ -740,6 +763,7 @@ func (as *authStore) RoleDelete(r *pb.AuthRoleDeleteRequest) (*pb.AuthRoleDelete updatedUser := &authpb.User{ Name: user.Name, Password: user.Password, + Options: user.Options, } for _, role := range user.Roles { diff --git a/auth/store_test.go b/auth/store_test.go index 05d2c03a80f2..4978f93bf54d 100644 --- a/auth/store_test.go +++ b/auth/store_test.go @@ -114,7 +114,7 @@ func setupAuthStore(t *testing.T) (store *authStore, teardownfunc func(t *testin t.Fatal(err) } - ua := &pb.AuthUserAddRequest{Name: "foo", Password: "bar"} + ua := &pb.AuthUserAddRequest{Name: "foo", Password: "bar", Options: &authpb.UserAddOptions{NoPassword: false}} _, err = as.UserAdd(ua) // add a non-existing user if err != nil { t.Fatal(err) @@ -129,7 +129,7 @@ func setupAuthStore(t *testing.T) (store *authStore, teardownfunc func(t *testin } func enableAuthAndCreateRoot(as *authStore) error { - _, err := as.UserAdd(&pb.AuthUserAddRequest{Name: "root", Password: "root"}) + _, err := as.UserAdd(&pb.AuthUserAddRequest{Name: "root", Password: "root", Options: &authpb.UserAddOptions{NoPassword: false}}) if err != nil { return err } @@ -151,7 +151,7 @@ func TestUserAdd(t *testing.T) { as, tearDown := setupAuthStore(t) defer tearDown(t) - ua := &pb.AuthUserAddRequest{Name: "foo"} + ua := &pb.AuthUserAddRequest{Name: "foo", Options: &authpb.UserAddOptions{NoPassword: false}} _, err := as.UserAdd(ua) // add an existing user if err == nil { t.Fatalf("expected %v, got %v", ErrUserAlreadyExist, err) @@ -160,7 +160,7 @@ func TestUserAdd(t *testing.T) { t.Fatalf("expected %v, got %v", ErrUserAlreadyExist, err) } - ua = &pb.AuthUserAddRequest{Name: ""} + ua = &pb.AuthUserAddRequest{Name: "", Options: &authpb.UserAddOptions{NoPassword: false}} _, err = as.UserAdd(ua) // add a user with empty name if err != ErrUserEmpty { t.Fatal(err) @@ -305,7 +305,7 @@ func TestListUsers(t *testing.T) { as, tearDown := setupAuthStore(t) defer tearDown(t) - ua := &pb.AuthUserAddRequest{Name: "user1", Password: "pwd1"} + ua := &pb.AuthUserAddRequest{Name: "user1", Password: "pwd1", Options: &authpb.UserAddOptions{NoPassword: false}} _, err := as.UserAdd(ua) // add a non-existing user if err != nil { t.Fatal(err) @@ -548,7 +548,7 @@ func TestAuthInfoFromCtxRace(t *testing.T) { ctx := metadata.NewIncomingContext(context.Background(), metadata.New(map[string]string{rpctypes.TokenFieldNameGRPC: "test"})) as.AuthInfoFromCtx(ctx) }() - as.UserAdd(&pb.AuthUserAddRequest{Name: "test"}) + as.UserAdd(&pb.AuthUserAddRequest{Name: "test", Options: &authpb.UserAddOptions{NoPassword: false}}) <-donec } @@ -584,7 +584,7 @@ func TestIsAdminPermitted(t *testing.T) { func TestRecoverFromSnapshot(t *testing.T) { as, _ := setupAuthStore(t) - ua := &pb.AuthUserAddRequest{Name: "foo"} + ua := &pb.AuthUserAddRequest{Name: "foo", Options: &authpb.UserAddOptions{NoPassword: false}} _, err := as.UserAdd(ua) // add an existing user if err == nil { t.Fatalf("expected %v, got %v", ErrUserAlreadyExist, err) @@ -593,7 +593,7 @@ func TestRecoverFromSnapshot(t *testing.T) { t.Fatalf("expected %v, got %v", ErrUserAlreadyExist, err) } - ua = &pb.AuthUserAddRequest{Name: ""} + ua = &pb.AuthUserAddRequest{Name: "", Options: &authpb.UserAddOptions{NoPassword: false}} _, err = as.UserAdd(ua) // add a user with empty name if err != ErrUserEmpty { t.Fatal(err) @@ -649,7 +649,7 @@ func TestHammerSimpleAuthenticate(t *testing.T) { // create lots of users for i := 0; i < 50; i++ { u := fmt.Sprintf("user-%d", i) - ua := &pb.AuthUserAddRequest{Name: u, Password: "123"} + ua := &pb.AuthUserAddRequest{Name: u, Password: "123", Options: &authpb.UserAddOptions{NoPassword: false}} if _, err := as.UserAdd(ua); err != nil { t.Fatal(err) } @@ -694,7 +694,7 @@ func TestRolesOrder(t *testing.T) { } username := "user" - _, err = as.UserAdd(&pb.AuthUserAddRequest{Name: username, Password: "pass"}) + _, err = as.UserAdd(&pb.AuthUserAddRequest{Name: username, Password: "pass", Options: &authpb.UserAddOptions{NoPassword: false}}) if err != nil { t.Fatal(err) } diff --git a/clientv3/auth.go b/clientv3/auth.go index 0238920321c4..ca3e74ab6042 100644 --- a/clientv3/auth.go +++ b/clientv3/auth.go @@ -53,6 +53,8 @@ const ( PermReadWrite = authpb.READWRITE ) +type UserAddOptions authpb.UserAddOptions + type Auth interface { // AuthEnable enables auth of an etcd cluster. AuthEnable(ctx context.Context) (*AuthEnableResponse, error) @@ -63,6 +65,9 @@ type Auth interface { // UserAdd adds a new user to an etcd cluster. UserAdd(ctx context.Context, name string, password string) (*AuthUserAddResponse, error) + // UserAddWithOptions adds a new user to an etcd cluster with some options. + UserAddWithOptions(ctx context.Context, name string, password string, opt *UserAddOptions) (*AuthUserAddResponse, error) + // UserDelete deletes a user from an etcd cluster. UserDelete(ctx context.Context, name string) (*AuthUserDeleteResponse, error) @@ -124,7 +129,12 @@ func (auth *authClient) AuthDisable(ctx context.Context) (*AuthDisableResponse, } func (auth *authClient) UserAdd(ctx context.Context, name string, password string) (*AuthUserAddResponse, error) { - resp, err := auth.remote.UserAdd(ctx, &pb.AuthUserAddRequest{Name: name, Password: password}, auth.callOpts...) + resp, err := auth.remote.UserAdd(ctx, &pb.AuthUserAddRequest{Name: name, Password: password, Options: &authpb.UserAddOptions{NoPassword: false}}, auth.callOpts...) + return (*AuthUserAddResponse)(resp), toErr(ctx, err) +} + +func (auth *authClient) UserAddWithOptions(ctx context.Context, name string, password string, options *UserAddOptions) (*AuthUserAddResponse, error) { + resp, err := auth.remote.UserAdd(ctx, &pb.AuthUserAddRequest{Name: name, Password: password, Options: (*authpb.UserAddOptions)(options)}, auth.callOpts...) return (*AuthUserAddResponse)(resp), toErr(ctx, err) } diff --git a/etcdctl/ctlv3/command/user_command.go b/etcdctl/ctlv3/command/user_command.go index 447a6c57cf26..e5f406e69182 100644 --- a/etcdctl/ctlv3/command/user_command.go +++ b/etcdctl/ctlv3/command/user_command.go @@ -20,6 +20,7 @@ import ( "strings" "github.com/bgentry/speakeasy" + "github.com/coreos/etcd/clientv3" "github.com/spf13/cobra" ) @@ -48,6 +49,7 @@ func NewUserCommand() *cobra.Command { var ( passwordInteractive bool passwordFromFlag string + noPassword bool ) func newUserAddCommand() *cobra.Command { @@ -59,6 +61,7 @@ func newUserAddCommand() *cobra.Command { cmd.Flags().BoolVar(&passwordInteractive, "interactive", true, "Read password from stdin instead of interactive terminal") cmd.Flags().StringVar(&passwordFromFlag, "new-user-password", "", "Supply password from the command line flag") + cmd.Flags().BoolVar(&noPassword, "no-password", false, "Create a user without password (CN based auth only)") return &cmd } @@ -128,28 +131,37 @@ func userAddCommandFunc(cmd *cobra.Command, args []string) { var password string var user string - if passwordFromFlag != "" { - user = args[0] - password = passwordFromFlag - } else { - splitted := strings.SplitN(args[0], ":", 2) - if len(splitted) < 2 { + options := &clientv3.UserAddOptions{ + NoPassword: false, + } + + if !noPassword { + if passwordFromFlag != "" { user = args[0] - if !passwordInteractive { - fmt.Scanf("%s", &password) - } else { - password = readPasswordInteractive(args[0]) - } + password = passwordFromFlag } else { - user = splitted[0] - password = splitted[1] - if len(user) == 0 { - ExitWithError(ExitBadArgs, fmt.Errorf("empty user name is not allowed.")) + splitted := strings.SplitN(args[0], ":", 2) + if len(splitted) < 2 { + user = args[0] + if !passwordInteractive { + fmt.Scanf("%s", &password) + } else { + password = readPasswordInteractive(args[0]) + } + } else { + user = splitted[0] + password = splitted[1] + if len(user) == 0 { + ExitWithError(ExitBadArgs, fmt.Errorf("empty user name is not allowed.")) + } } } + } else { + user = args[0] + options.NoPassword = true } - resp, err := mustClientFromCmd(cmd).Auth.UserAdd(context.TODO(), user, password) + resp, err := mustClientFromCmd(cmd).Auth.UserAddWithOptions(context.TODO(), user, password, options) if err != nil { ExitWithError(ExitError, err) } diff --git a/etcdserver/etcdserverpb/rpc.pb.go b/etcdserver/etcdserverpb/rpc.pb.go index 0aed0d43b7cf..62237ee623db 100644 --- a/etcdserver/etcdserverpb/rpc.pb.go +++ b/etcdserver/etcdserverpb/rpc.pb.go @@ -2579,8 +2579,9 @@ func (m *AuthenticateRequest) GetPassword() string { } type AuthUserAddRequest 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"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` + Options *authpb.UserAddOptions `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"` } func (m *AuthUserAddRequest) Reset() { *m = AuthUserAddRequest{} } @@ -2602,6 +2603,13 @@ func (m *AuthUserAddRequest) GetPassword() string { return "" } +func (m *AuthUserAddRequest) GetOptions() *authpb.UserAddOptions { + if m != nil { + return m.Options + } + return nil +} + type AuthUserGetRequest struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` } @@ -7190,6 +7198,16 @@ func (m *AuthUserAddRequest) MarshalTo(dAtA []byte) (int, error) { i = encodeVarintRpc(dAtA, i, uint64(len(m.Password))) i += copy(dAtA[i:], m.Password) } + if m.Options != nil { + dAtA[i] = 0x1a + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.Options.Size())) + n41, err := m.Options.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n41 + } return i, nil } @@ -7464,11 +7482,11 @@ func (m *AuthRoleGrantPermissionRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintRpc(dAtA, i, uint64(m.Perm.Size())) - n41, err := m.Perm.MarshalTo(dAtA[i:]) + n42, err := m.Perm.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n41 + i += n42 } return i, nil } @@ -7528,11 +7546,11 @@ func (m *AuthEnableResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n42, err := m.Header.MarshalTo(dAtA[i:]) + n43, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n42 + i += n43 } return i, nil } @@ -7556,11 +7574,11 @@ func (m *AuthDisableResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n43, err := m.Header.MarshalTo(dAtA[i:]) + n44, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n43 + i += n44 } return i, nil } @@ -7584,11 +7602,11 @@ func (m *AuthenticateResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n44, err := m.Header.MarshalTo(dAtA[i:]) + n45, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n44 + i += n45 } if len(m.Token) > 0 { dAtA[i] = 0x12 @@ -7618,11 +7636,11 @@ func (m *AuthUserAddResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n45, err := m.Header.MarshalTo(dAtA[i:]) + n46, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n45 + i += n46 } return i, nil } @@ -7646,11 +7664,11 @@ func (m *AuthUserGetResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n46, err := m.Header.MarshalTo(dAtA[i:]) + n47, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n46 + i += n47 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -7689,11 +7707,11 @@ func (m *AuthUserDeleteResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n47, err := m.Header.MarshalTo(dAtA[i:]) + n48, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n47 + i += n48 } return i, nil } @@ -7717,11 +7735,11 @@ func (m *AuthUserChangePasswordResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n48, err := m.Header.MarshalTo(dAtA[i:]) + n49, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n48 + i += n49 } return i, nil } @@ -7745,11 +7763,11 @@ func (m *AuthUserGrantRoleResponse) 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 } @@ -7773,11 +7791,11 @@ func (m *AuthUserRevokeRoleResponse) 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 } return i, nil } @@ -7801,11 +7819,11 @@ func (m *AuthRoleAddResponse) 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 } @@ -7829,11 +7847,11 @@ func (m *AuthRoleGetResponse) 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 } if len(m.Perm) > 0 { for _, msg := range m.Perm { @@ -7869,11 +7887,11 @@ func (m *AuthRoleListResponse) 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 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -7912,11 +7930,11 @@ func (m *AuthUserListResponse) 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 } if len(m.Users) > 0 { for _, s := range m.Users { @@ -7955,11 +7973,11 @@ func (m *AuthRoleDeleteResponse) 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 } @@ -7983,11 +8001,11 @@ func (m *AuthRoleGrantPermissionResponse) 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 } return i, nil } @@ -8011,11 +8029,11 @@ func (m *AuthRoleRevokePermissionResponse) 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 } return i, nil } @@ -9015,6 +9033,10 @@ func (m *AuthUserAddRequest) Size() (n int) { if l > 0 { n += 1 + l + sovRpc(uint64(l)) } + if m.Options != nil { + l = m.Options.Size() + n += 1 + l + sovRpc(uint64(l)) + } return n } @@ -16022,6 +16044,39 @@ func (m *AuthUserAddRequest) Unmarshal(dAtA []byte) error { } m.Password = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Options", 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.Options == nil { + m.Options = &authpb.UserAddOptions{} + } + if err := m.Options.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRpc(dAtA[iNdEx:]) @@ -18698,240 +18753,241 @@ var ( func init() { proto.RegisterFile("rpc.proto", fileDescriptorRpc) } var fileDescriptorRpc = []byte{ - // 3750 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0xcd, 0x6f, 0x1c, 0x47, - 0x76, 0x67, 0xcf, 0x70, 0xbe, 0xde, 0x7c, 0x70, 0x58, 0x24, 0xa5, 0xd1, 0x48, 0xa2, 0xa8, 0x92, - 0x64, 0xd1, 0x92, 0xcd, 0xb1, 0x69, 0x3b, 0x01, 0x94, 0xc4, 0x30, 0x45, 0x8e, 0x45, 0x9a, 0x14, - 0x49, 0x37, 0x87, 0xf2, 0x07, 0x8c, 0x10, 0xcd, 0x99, 0x22, 0xd9, 0xe1, 0x4c, 0xf7, 0xb8, 0xbb, - 0x67, 0x44, 0x3a, 0x41, 0x1c, 0x18, 0xce, 0x21, 0x39, 0xda, 0x40, 0x90, 0x1c, 0x72, 0x0a, 0x82, - 0xc0, 0x87, 0x00, 0x7b, 0x59, 0x2c, 0xb0, 0x7f, 0xc1, 0xde, 0x76, 0x17, 0xfb, 0x0f, 0x2c, 0xbc, - 0xbe, 0xec, 0x7f, 0xb1, 0xa8, 0xaf, 0xee, 0xea, 0x9e, 0x6e, 0x52, 0xf6, 0xd8, 0xbe, 0x50, 0x5d, - 0x55, 0xaf, 0xde, 0xef, 0xd5, 0xab, 0xaa, 0xf7, 0xaa, 0x7e, 0x35, 0x82, 0x82, 0xd3, 0x6f, 0x2f, - 0xf5, 0x1d, 0xdb, 0xb3, 0x51, 0x89, 0x78, 0xed, 0x8e, 0x4b, 0x9c, 0x21, 0x71, 0xfa, 0x87, 0xf5, - 0xd9, 0x63, 0xfb, 0xd8, 0x66, 0x0d, 0x0d, 0xfa, 0xc5, 0x65, 0xea, 0xd7, 0xa8, 0x4c, 0xa3, 0x37, - 0x6c, 0xb7, 0xd9, 0x9f, 0xfe, 0x61, 0xe3, 0x74, 0x28, 0x9a, 0xae, 0xb3, 0x26, 0x63, 0xe0, 0x9d, - 0xb0, 0x3f, 0xfd, 0x43, 0xf6, 0x8f, 0x68, 0xbc, 0x71, 0x6c, 0xdb, 0xc7, 0x5d, 0xd2, 0x30, 0xfa, - 0x66, 0xc3, 0xb0, 0x2c, 0xdb, 0x33, 0x3c, 0xd3, 0xb6, 0x5c, 0xde, 0x8a, 0xff, 0x55, 0x83, 0x8a, - 0x4e, 0xdc, 0xbe, 0x6d, 0xb9, 0x64, 0x9d, 0x18, 0x1d, 0xe2, 0xa0, 0x9b, 0x00, 0xed, 0xee, 0xc0, - 0xf5, 0x88, 0x73, 0x60, 0x76, 0x6a, 0xda, 0x82, 0xb6, 0x38, 0xa9, 0x17, 0x44, 0xcd, 0x46, 0x07, - 0x5d, 0x87, 0x42, 0x8f, 0xf4, 0x0e, 0x79, 0x6b, 0x8a, 0xb5, 0xe6, 0x79, 0xc5, 0x46, 0x07, 0xd5, - 0x21, 0xef, 0x90, 0xa1, 0xe9, 0x9a, 0xb6, 0x55, 0x4b, 0x2f, 0x68, 0x8b, 0x69, 0xdd, 0x2f, 0xd3, - 0x8e, 0x8e, 0x71, 0xe4, 0x1d, 0x78, 0xc4, 0xe9, 0xd5, 0x26, 0x79, 0x47, 0x5a, 0xd1, 0x22, 0x4e, - 0x0f, 0x7f, 0x99, 0x81, 0x92, 0x6e, 0x58, 0xc7, 0x44, 0x27, 0x9f, 0x0e, 0x88, 0xeb, 0xa1, 0x2a, - 0xa4, 0x4f, 0xc9, 0x39, 0x83, 0x2f, 0xe9, 0xf4, 0x93, 0xf7, 0xb7, 0x8e, 0xc9, 0x01, 0xb1, 0x38, - 0x70, 0x89, 0xf6, 0xb7, 0x8e, 0x49, 0xd3, 0xea, 0xa0, 0x59, 0xc8, 0x74, 0xcd, 0x9e, 0xe9, 0x09, - 0x54, 0x5e, 0x08, 0x99, 0x33, 0x19, 0x31, 0x67, 0x15, 0xc0, 0xb5, 0x1d, 0xef, 0xc0, 0x76, 0x3a, - 0xc4, 0xa9, 0x65, 0x16, 0xb4, 0xc5, 0xca, 0xf2, 0xdd, 0x25, 0x75, 0x22, 0x96, 0x54, 0x83, 0x96, - 0xf6, 0x6c, 0xc7, 0xdb, 0xa1, 0xb2, 0x7a, 0xc1, 0x95, 0x9f, 0xe8, 0x5d, 0x28, 0x32, 0x25, 0x9e, - 0xe1, 0x1c, 0x13, 0xaf, 0x96, 0x65, 0x5a, 0xee, 0x5d, 0xa2, 0xa5, 0xc5, 0x84, 0x75, 0x06, 0xcf, - 0xbf, 0x11, 0x86, 0x92, 0x4b, 0x1c, 0xd3, 0xe8, 0x9a, 0x9f, 0x19, 0x87, 0x5d, 0x52, 0xcb, 0x2d, - 0x68, 0x8b, 0x79, 0x3d, 0x54, 0x47, 0xc7, 0x7f, 0x4a, 0xce, 0xdd, 0x03, 0xdb, 0xea, 0x9e, 0xd7, - 0xf2, 0x4c, 0x20, 0x4f, 0x2b, 0x76, 0xac, 0xee, 0x39, 0x9b, 0x34, 0x7b, 0x60, 0x79, 0xbc, 0xb5, - 0xc0, 0x5a, 0x0b, 0xac, 0x86, 0x35, 0x2f, 0x42, 0xb5, 0x67, 0x5a, 0x07, 0x3d, 0xbb, 0x73, 0xe0, - 0x3b, 0x04, 0x98, 0x43, 0x2a, 0x3d, 0xd3, 0x7a, 0x6a, 0x77, 0x74, 0xe9, 0x16, 0x2a, 0x69, 0x9c, - 0x85, 0x25, 0x8b, 0x42, 0xd2, 0x38, 0x53, 0x25, 0x97, 0x60, 0x86, 0xea, 0x6c, 0x3b, 0xc4, 0xf0, - 0x48, 0x20, 0x5c, 0x62, 0xc2, 0xd3, 0x3d, 0xd3, 0x5a, 0x65, 0x2d, 0x21, 0x79, 0xe3, 0x6c, 0x44, - 0xbe, 0x2c, 0xe4, 0x8d, 0xb3, 0xb0, 0x3c, 0x5e, 0x82, 0x82, 0xef, 0x73, 0x94, 0x87, 0xc9, 0xed, - 0x9d, 0xed, 0x66, 0x75, 0x02, 0x01, 0x64, 0x57, 0xf6, 0x56, 0x9b, 0xdb, 0x6b, 0x55, 0x0d, 0x15, - 0x21, 0xb7, 0xd6, 0xe4, 0x85, 0x14, 0x7e, 0x0c, 0x10, 0x78, 0x17, 0xe5, 0x20, 0xbd, 0xd9, 0xfc, - 0xa8, 0x3a, 0x41, 0x65, 0x9e, 0x35, 0xf5, 0xbd, 0x8d, 0x9d, 0xed, 0xaa, 0x46, 0x3b, 0xaf, 0xea, - 0xcd, 0x95, 0x56, 0xb3, 0x9a, 0xa2, 0x12, 0x4f, 0x77, 0xd6, 0xaa, 0x69, 0x54, 0x80, 0xcc, 0xb3, - 0x95, 0xad, 0xfd, 0x66, 0x75, 0x12, 0x7f, 0xad, 0x41, 0x59, 0xcc, 0x17, 0xdf, 0x13, 0xe8, 0x4d, - 0xc8, 0x9e, 0xb0, 0x7d, 0xc1, 0x96, 0x62, 0x71, 0xf9, 0x46, 0x64, 0x72, 0x43, 0x7b, 0x47, 0x17, - 0xb2, 0x08, 0x43, 0xfa, 0x74, 0xe8, 0xd6, 0x52, 0x0b, 0xe9, 0xc5, 0xe2, 0x72, 0x75, 0x89, 0x6f, - 0xd8, 0xa5, 0x4d, 0x72, 0xfe, 0xcc, 0xe8, 0x0e, 0x88, 0x4e, 0x1b, 0x11, 0x82, 0xc9, 0x9e, 0xed, - 0x10, 0xb6, 0x62, 0xf3, 0x3a, 0xfb, 0xa6, 0xcb, 0x98, 0x4d, 0x9a, 0x58, 0xad, 0xbc, 0x80, 0xbf, - 0xd1, 0x00, 0x76, 0x07, 0x5e, 0xf2, 0xd6, 0x98, 0x85, 0xcc, 0x90, 0x2a, 0x16, 0xdb, 0x82, 0x17, - 0xd8, 0x9e, 0x20, 0x86, 0x4b, 0xfc, 0x3d, 0x41, 0x0b, 0xe8, 0x2a, 0xe4, 0xfa, 0x0e, 0x19, 0x1e, - 0x9c, 0x0e, 0x19, 0x48, 0x5e, 0xcf, 0xd2, 0xe2, 0xe6, 0x10, 0xdd, 0x86, 0x92, 0x79, 0x6c, 0xd9, - 0x0e, 0x39, 0xe0, 0xba, 0x32, 0xac, 0xb5, 0xc8, 0xeb, 0x98, 0xdd, 0x8a, 0x08, 0x57, 0x9c, 0x55, - 0x45, 0xb6, 0x68, 0x15, 0xb6, 0xa0, 0xc8, 0x4c, 0x1d, 0xcb, 0x7d, 0x2f, 0x07, 0x36, 0xa6, 0x58, - 0xb7, 0x51, 0x17, 0x0a, 0xab, 0xf1, 0x27, 0x80, 0xd6, 0x48, 0x97, 0x78, 0x64, 0x9c, 0xe8, 0xa1, - 0xf8, 0x24, 0xad, 0xfa, 0x04, 0x7f, 0xa5, 0xc1, 0x4c, 0x48, 0xfd, 0x58, 0xc3, 0xaa, 0x41, 0xae, - 0xc3, 0x94, 0x71, 0x0b, 0xd2, 0xba, 0x2c, 0xa2, 0x87, 0x90, 0x17, 0x06, 0xb8, 0xb5, 0x74, 0xc2, - 0xa2, 0xc9, 0x71, 0x9b, 0x5c, 0xfc, 0x4d, 0x0a, 0x0a, 0x62, 0xa0, 0x3b, 0x7d, 0xb4, 0x02, 0x65, - 0x87, 0x17, 0x0e, 0xd8, 0x78, 0x84, 0x45, 0xf5, 0xe4, 0x20, 0xb4, 0x3e, 0xa1, 0x97, 0x44, 0x17, - 0x56, 0x8d, 0xfe, 0x06, 0x8a, 0x52, 0x45, 0x7f, 0xe0, 0x09, 0x97, 0xd7, 0xc2, 0x0a, 0x82, 0xf5, - 0xb7, 0x3e, 0xa1, 0x83, 0x10, 0xdf, 0x1d, 0x78, 0xa8, 0x05, 0xb3, 0xb2, 0x33, 0x1f, 0x8d, 0x30, - 0x23, 0xcd, 0xb4, 0x2c, 0x84, 0xb5, 0x8c, 0x4e, 0xd5, 0xfa, 0x84, 0x8e, 0x44, 0x7f, 0xa5, 0x51, - 0x35, 0xc9, 0x3b, 0xe3, 0xc1, 0x7b, 0xc4, 0xa4, 0xd6, 0x99, 0x35, 0x6a, 0x52, 0xeb, 0xcc, 0x7a, - 0x5c, 0x80, 0x9c, 0x28, 0xe1, 0x5f, 0xa5, 0x00, 0xe4, 0x6c, 0xec, 0xf4, 0xd1, 0x1a, 0x54, 0x1c, - 0x51, 0x0a, 0x79, 0xeb, 0x7a, 0xac, 0xb7, 0xc4, 0x24, 0x4e, 0xe8, 0x65, 0xd9, 0x89, 0x1b, 0xf7, - 0x36, 0x94, 0x7c, 0x2d, 0x81, 0xc3, 0xae, 0xc5, 0x38, 0xcc, 0xd7, 0x50, 0x94, 0x1d, 0xa8, 0xcb, - 0x3e, 0x80, 0x39, 0xbf, 0x7f, 0x8c, 0xcf, 0x6e, 0x5f, 0xe0, 0x33, 0x5f, 0xe1, 0x8c, 0xd4, 0xa0, - 0x7a, 0x4d, 0x35, 0x2c, 0x70, 0xdb, 0xb5, 0x18, 0xb7, 0x8d, 0x1a, 0x46, 0x1d, 0x07, 0x34, 0x5f, - 0xf2, 0x22, 0xfe, 0x73, 0x1a, 0x72, 0xab, 0x76, 0xaf, 0x6f, 0x38, 0x74, 0x36, 0xb2, 0x0e, 0x71, - 0x07, 0x5d, 0x8f, 0xb9, 0xab, 0xb2, 0x7c, 0x27, 0xac, 0x51, 0x88, 0xc9, 0x7f, 0x75, 0x26, 0xaa, - 0x8b, 0x2e, 0xb4, 0xb3, 0x48, 0x8f, 0xa9, 0x17, 0xe8, 0x2c, 0x92, 0xa3, 0xe8, 0x22, 0x37, 0x72, - 0x3a, 0xd8, 0xc8, 0x75, 0xc8, 0x0d, 0x89, 0x13, 0xa4, 0xf4, 0xf5, 0x09, 0x5d, 0x56, 0xa0, 0x97, - 0x61, 0x2a, 0x9a, 0x5e, 0x32, 0x42, 0xa6, 0xd2, 0x0e, 0x67, 0xa3, 0x3b, 0x50, 0x0a, 0xe5, 0xb8, - 0xac, 0x90, 0x2b, 0xf6, 0x94, 0x14, 0x77, 0x45, 0xc6, 0x55, 0x9a, 0x8f, 0x4b, 0xeb, 0x13, 0x32, - 0xb2, 0x5e, 0x91, 0x91, 0x35, 0x2f, 0x7a, 0x89, 0xd8, 0x1a, 0x0a, 0x32, 0xef, 0x84, 0x83, 0x0c, - 0x7e, 0x07, 0xca, 0x21, 0x07, 0xd1, 0xbc, 0xd3, 0x7c, 0x7f, 0x7f, 0x65, 0x8b, 0x27, 0xa9, 0x27, - 0x2c, 0x2f, 0xe9, 0x55, 0x8d, 0xe6, 0xba, 0xad, 0xe6, 0xde, 0x5e, 0x35, 0x85, 0xca, 0x50, 0xd8, - 0xde, 0x69, 0x1d, 0x70, 0xa9, 0x34, 0x7e, 0xe2, 0x6b, 0x10, 0x49, 0x4e, 0xc9, 0x6d, 0x13, 0x4a, - 0x6e, 0xd3, 0x64, 0x6e, 0x4b, 0x05, 0xb9, 0x8d, 0xa5, 0xb9, 0xad, 0xe6, 0xca, 0x5e, 0xb3, 0x3a, - 0xf9, 0xb8, 0x02, 0x25, 0xee, 0xdf, 0x83, 0x81, 0x45, 0x53, 0xed, 0xff, 0x68, 0x00, 0xc1, 0x6e, - 0x42, 0x0d, 0xc8, 0xb5, 0x39, 0x4e, 0x4d, 0x63, 0xc1, 0x68, 0x2e, 0x76, 0xca, 0x74, 0x29, 0x85, - 0x5e, 0x87, 0x9c, 0x3b, 0x68, 0xb7, 0x89, 0x2b, 0x53, 0xde, 0xd5, 0x68, 0x3c, 0x14, 0xd1, 0x4a, - 0x97, 0x72, 0xb4, 0xcb, 0x91, 0x61, 0x76, 0x07, 0x2c, 0x01, 0x5e, 0xdc, 0x45, 0xc8, 0xe1, 0xff, - 0xd2, 0xa0, 0xa8, 0x2c, 0xde, 0x1f, 0x18, 0x84, 0x6f, 0x40, 0x81, 0xd9, 0x40, 0x3a, 0x22, 0x0c, - 0xe7, 0xf5, 0xa0, 0x02, 0xfd, 0x15, 0x14, 0xe4, 0x0e, 0x90, 0x91, 0xb8, 0x16, 0xaf, 0x76, 0xa7, - 0xaf, 0x07, 0xa2, 0x78, 0x13, 0xa6, 0x99, 0x57, 0xda, 0xf4, 0x70, 0x2d, 0xfd, 0xa8, 0x1e, 0x3f, - 0xb5, 0xc8, 0xf1, 0xb3, 0x0e, 0xf9, 0xfe, 0xc9, 0xb9, 0x6b, 0xb6, 0x8d, 0xae, 0xb0, 0xc2, 0x2f, - 0xe3, 0xf7, 0x00, 0xa9, 0xca, 0xc6, 0x19, 0x2e, 0x2e, 0x43, 0x71, 0xdd, 0x70, 0x4f, 0x84, 0x49, - 0xf8, 0x21, 0x94, 0x69, 0x71, 0xf3, 0xd9, 0x0b, 0xd8, 0xc8, 0x2e, 0x07, 0x52, 0x7a, 0x2c, 0x9f, - 0x23, 0x98, 0x3c, 0x31, 0xdc, 0x13, 0x36, 0xd0, 0xb2, 0xce, 0xbe, 0xd1, 0xcb, 0x50, 0x6d, 0xf3, - 0x41, 0x1e, 0x44, 0xae, 0x0c, 0x53, 0xa2, 0xde, 0x3f, 0x09, 0x7e, 0x08, 0x25, 0x3e, 0x86, 0x1f, - 0xdb, 0x08, 0x3c, 0x0d, 0x53, 0x7b, 0x96, 0xd1, 0x77, 0x4f, 0x6c, 0x99, 0xdd, 0xe8, 0xa0, 0xab, - 0x41, 0xdd, 0x58, 0x88, 0xf7, 0x61, 0xca, 0x21, 0x3d, 0xc3, 0xb4, 0x4c, 0xeb, 0xf8, 0xe0, 0xf0, - 0xdc, 0x23, 0xae, 0xb8, 0x30, 0x55, 0xfc, 0xea, 0xc7, 0xb4, 0x96, 0x9a, 0x76, 0xd8, 0xb5, 0x0f, - 0x45, 0x98, 0x63, 0xdf, 0xf8, 0x97, 0x1a, 0x94, 0x3e, 0x30, 0xbc, 0xb6, 0x9c, 0x3a, 0xb4, 0x01, - 0x15, 0x3f, 0xb8, 0xb1, 0x1a, 0x61, 0x4b, 0x24, 0xc5, 0xb2, 0x3e, 0xf2, 0x28, 0x2d, 0xb3, 0x63, - 0xb9, 0xad, 0x56, 0x30, 0x55, 0x86, 0xd5, 0x26, 0x5d, 0x5f, 0x55, 0x2a, 0x59, 0x15, 0x13, 0x54, - 0x55, 0xa9, 0x15, 0x8f, 0xa7, 0x82, 0xe3, 0x07, 0x8f, 0x25, 0xbf, 0x4f, 0x01, 0x1a, 0xb5, 0xe1, - 0xfb, 0x9e, 0xc8, 0xee, 0x41, 0xc5, 0xf5, 0x0c, 0x67, 0x64, 0x6d, 0x94, 0x59, 0xad, 0x1f, 0xa0, - 0xef, 0xc3, 0x54, 0xdf, 0xb1, 0x8f, 0x1d, 0xe2, 0xba, 0x07, 0x96, 0xed, 0x99, 0x47, 0xe7, 0xe2, - 0x50, 0x5b, 0x91, 0xd5, 0xdb, 0xac, 0x16, 0x35, 0x21, 0x77, 0x64, 0x76, 0x3d, 0xe2, 0xb8, 0xb5, - 0xcc, 0x42, 0x7a, 0xb1, 0xb2, 0xfc, 0xf0, 0x32, 0xaf, 0x2d, 0xbd, 0xcb, 0xe4, 0x5b, 0xe7, 0x7d, - 0xa2, 0xcb, 0xbe, 0xea, 0x41, 0x31, 0x1b, 0x3a, 0x3c, 0x5f, 0x83, 0xfc, 0x73, 0xaa, 0x82, 0x5e, - 0x8a, 0x73, 0xfc, 0x6c, 0xc7, 0xca, 0xfc, 0x4e, 0x7c, 0xe4, 0x18, 0xc7, 0x3d, 0x62, 0x79, 0xf2, - 0xda, 0x26, 0xcb, 0xf8, 0x1e, 0x40, 0x00, 0x43, 0x23, 0xf4, 0xf6, 0xce, 0xee, 0x7e, 0xab, 0x3a, - 0x81, 0x4a, 0x90, 0xdf, 0xde, 0x59, 0x6b, 0x6e, 0x35, 0x69, 0x38, 0xc7, 0x0d, 0xe9, 0x52, 0xd5, - 0xf5, 0x21, 0x4c, 0x2d, 0x84, 0x49, 0x8f, 0x88, 0x65, 0xb1, 0x78, 0xc6, 0x5a, 0xc1, 0x2a, 0x44, - 0x2a, 0x3c, 0xac, 0x1a, 0xe4, 0xf8, 0xa2, 0xea, 0x88, 0x33, 0xb3, 0x2c, 0xd2, 0x01, 0xf3, 0x35, - 0x42, 0x3a, 0x62, 0x36, 0xfc, 0x72, 0xec, 0xae, 0xcf, 0xc4, 0xee, 0x7a, 0x74, 0x07, 0xca, 0xfe, - 0x22, 0x35, 0x5c, 0x91, 0xa2, 0x0b, 0x7a, 0x49, 0xae, 0x3f, 0x5a, 0x17, 0x72, 0x6e, 0x2e, 0xec, - 0x5c, 0x74, 0x0f, 0xb2, 0x64, 0x48, 0x2c, 0xcf, 0xad, 0x15, 0x59, 0x20, 0x2f, 0xcb, 0x23, 0x75, - 0x93, 0xd6, 0xea, 0xa2, 0x11, 0xbf, 0x05, 0xd3, 0xec, 0xea, 0xf2, 0xc4, 0x31, 0x2c, 0xf5, 0x8e, - 0xd5, 0x6a, 0x6d, 0x09, 0xb7, 0xd2, 0x4f, 0x54, 0x81, 0xd4, 0xc6, 0x9a, 0x70, 0x42, 0x6a, 0x63, - 0x0d, 0x7f, 0xa1, 0x01, 0x52, 0xfb, 0x8d, 0xe5, 0xe7, 0x88, 0x72, 0x09, 0x9f, 0x0e, 0xe0, 0x67, - 0x21, 0x43, 0x1c, 0xc7, 0x76, 0x98, 0x47, 0x0b, 0x3a, 0x2f, 0xe0, 0xbb, 0xc2, 0x06, 0x9d, 0x0c, - 0xed, 0x53, 0x7f, 0xaf, 0x71, 0x6d, 0x9a, 0x6f, 0xea, 0x26, 0xcc, 0x84, 0xa4, 0xc6, 0x4a, 0x28, - 0xf7, 0x61, 0x8e, 0x29, 0xdb, 0x24, 0xa4, 0xbf, 0xd2, 0x35, 0x87, 0x89, 0xa8, 0x7d, 0xb8, 0x12, - 0x15, 0xfc, 0x69, 0x7d, 0x84, 0xff, 0x56, 0x20, 0xb6, 0xcc, 0x1e, 0x69, 0xd9, 0x5b, 0xc9, 0xb6, - 0xd1, 0x80, 0x7b, 0x4a, 0xce, 0x5d, 0x91, 0x79, 0xd9, 0x37, 0xfe, 0x5f, 0x0d, 0xae, 0x8e, 0x74, - 0xff, 0x89, 0x67, 0x75, 0x1e, 0xe0, 0x98, 0x2e, 0x1f, 0xd2, 0xa1, 0x0d, 0xfc, 0xd2, 0xaf, 0xd4, - 0xf8, 0x76, 0xd2, 0x98, 0x55, 0x12, 0x76, 0xce, 0x8a, 0x39, 0x67, 0x7f, 0x5c, 0x99, 0xb6, 0x6e, - 0x42, 0x91, 0x55, 0xec, 0x79, 0x86, 0x37, 0x70, 0x47, 0x26, 0xe3, 0x9f, 0xc5, 0x12, 0x90, 0x9d, - 0xc6, 0x1a, 0xd7, 0xeb, 0x90, 0x65, 0xe7, 0x5d, 0x79, 0xda, 0x8b, 0x5c, 0x30, 0x14, 0x3b, 0x74, - 0x21, 0x88, 0x4f, 0x20, 0xfb, 0x94, 0x91, 0x84, 0x8a, 0x65, 0x93, 0x72, 0x2a, 0x2c, 0xa3, 0xc7, - 0xa9, 0x8b, 0x82, 0xce, 0xbe, 0xd9, 0xe1, 0x88, 0x10, 0x67, 0x5f, 0xdf, 0xe2, 0x87, 0xb0, 0x82, - 0xee, 0x97, 0xa9, 0xcb, 0xda, 0x5d, 0x93, 0x58, 0x1e, 0x6b, 0x9d, 0x64, 0xad, 0x4a, 0x0d, 0x5e, - 0x82, 0x2a, 0x47, 0x5a, 0xe9, 0x74, 0x94, 0x43, 0x8e, 0xaf, 0x4f, 0x0b, 0xeb, 0xc3, 0xff, 0xa7, - 0xc1, 0xb4, 0xd2, 0x61, 0x2c, 0xc7, 0xbc, 0x02, 0x59, 0x4e, 0x85, 0x8a, 0x7c, 0x3a, 0x1b, 0xee, - 0xc5, 0x61, 0x74, 0x21, 0x83, 0x96, 0x20, 0xc7, 0xbf, 0xe4, 0x49, 0x33, 0x5e, 0x5c, 0x0a, 0xe1, - 0x7b, 0x30, 0x23, 0xaa, 0x48, 0xcf, 0x8e, 0x5b, 0xdb, 0xcc, 0xa1, 0xf8, 0x9f, 0x60, 0x36, 0x2c, - 0x36, 0xd6, 0x90, 0x14, 0x23, 0x53, 0x2f, 0x62, 0xe4, 0x8a, 0x34, 0x72, 0xbf, 0xdf, 0x51, 0xd2, - 0x7f, 0x74, 0xd6, 0xd5, 0x19, 0x49, 0x45, 0x66, 0xc4, 0x1f, 0x80, 0x54, 0xf1, 0xb3, 0x0e, 0x60, - 0x46, 0x2e, 0x87, 0x2d, 0xd3, 0xf5, 0x0f, 0x85, 0x9f, 0x01, 0x52, 0x2b, 0x7f, 0x6e, 0x83, 0xd6, - 0x88, 0x4c, 0x6a, 0xd2, 0xa0, 0xf7, 0x00, 0xa9, 0x95, 0x63, 0x45, 0xf4, 0x06, 0x4c, 0x3f, 0xb5, - 0x87, 0x34, 0x34, 0xd0, 0xda, 0x60, 0xcb, 0xf0, 0x2b, 0xa2, 0x3f, 0x6d, 0x7e, 0x99, 0x82, 0xab, - 0x1d, 0xc6, 0x02, 0xff, 0xad, 0x06, 0xa5, 0x95, 0xae, 0xe1, 0xf4, 0x24, 0xf0, 0xdb, 0x90, 0xe5, - 0x17, 0x1f, 0xc1, 0x35, 0xbc, 0x14, 0x56, 0xa3, 0xca, 0xf2, 0xc2, 0x0a, 0xbf, 0x26, 0x89, 0x5e, - 0xd4, 0x70, 0xf1, 0x1c, 0xb1, 0x16, 0x79, 0x9e, 0x58, 0x43, 0xaf, 0x42, 0xc6, 0xa0, 0x5d, 0x58, - 0x08, 0xae, 0x44, 0xaf, 0x9c, 0x4c, 0x1b, 0x3b, 0xef, 0x71, 0x29, 0xfc, 0x26, 0x14, 0x15, 0x04, - 0x7a, 0xa9, 0x7e, 0xd2, 0x14, 0x87, 0xb3, 0x95, 0xd5, 0xd6, 0xc6, 0x33, 0x7e, 0xd7, 0xae, 0x00, - 0xac, 0x35, 0xfd, 0x72, 0x0a, 0x7f, 0x28, 0x7a, 0x89, 0x78, 0xa7, 0xda, 0xa3, 0x25, 0xd9, 0x93, - 0x7a, 0x21, 0x7b, 0xce, 0xa0, 0x2c, 0x86, 0x3f, 0x6e, 0xf8, 0x66, 0xfa, 0x12, 0xc2, 0xb7, 0x62, - 0xbc, 0x2e, 0x04, 0xf1, 0x14, 0x94, 0x45, 0x40, 0x17, 0xeb, 0xef, 0x17, 0x29, 0xa8, 0xc8, 0x9a, - 0x71, 0x39, 0x51, 0x49, 0xe7, 0xf0, 0x0c, 0xe0, 0x93, 0x39, 0x57, 0x20, 0xdb, 0x39, 0xdc, 0x33, - 0x3f, 0x93, 0xfc, 0xb5, 0x28, 0xd1, 0xfa, 0x2e, 0xc7, 0xe1, 0x8f, 0x48, 0xa2, 0x44, 0x2f, 0xf6, - 0x8e, 0x71, 0xe4, 0x6d, 0x58, 0x1d, 0x72, 0xc6, 0xce, 0x94, 0x93, 0x7a, 0x50, 0xc1, 0xee, 0xb9, - 0xe2, 0xb1, 0x89, 0x1d, 0x24, 0x95, 0xc7, 0x27, 0xf4, 0x00, 0xaa, 0xf4, 0x7b, 0xa5, 0xdf, 0xef, - 0x9a, 0xa4, 0xc3, 0x15, 0xe4, 0x98, 0xcc, 0x48, 0x3d, 0x45, 0x67, 0x47, 0x2f, 0xb7, 0x96, 0x67, - 0x61, 0x4b, 0x94, 0xd0, 0x02, 0x14, 0xb9, 0x7d, 0x1b, 0xd6, 0xbe, 0x4b, 0xd8, 0x0b, 0x4c, 0x5a, - 0x57, 0xab, 0xe8, 0x3e, 0x5e, 0x19, 0x78, 0x27, 0x4d, 0xcb, 0x38, 0xec, 0xca, 0xb8, 0x48, 0x93, - 0x39, 0xad, 0x5c, 0x33, 0x5d, 0xb5, 0xb6, 0x09, 0x33, 0xb4, 0x96, 0x58, 0x9e, 0xd9, 0x56, 0x82, - 0xa8, 0x4c, 0x95, 0x5a, 0x24, 0x55, 0x1a, 0xae, 0xfb, 0xdc, 0x76, 0x3a, 0xc2, 0x81, 0x7e, 0x19, - 0xaf, 0x71, 0xe5, 0xfb, 0x6e, 0x28, 0x19, 0x7e, 0x5f, 0x2d, 0x8b, 0x81, 0x96, 0x27, 0xc4, 0xbb, - 0x40, 0x0b, 0x7e, 0x08, 0x73, 0x52, 0x52, 0xb0, 0x92, 0x17, 0x08, 0xef, 0xc0, 0x4d, 0x29, 0xbc, - 0x7a, 0x42, 0xaf, 0x7d, 0xbb, 0x02, 0xf0, 0x87, 0xda, 0xf9, 0x18, 0x6a, 0xbe, 0x9d, 0xec, 0x48, - 0x6e, 0x77, 0x55, 0x03, 0x06, 0xae, 0x58, 0x99, 0x05, 0x9d, 0x7d, 0xd3, 0x3a, 0xc7, 0xee, 0xfa, - 0x07, 0x0f, 0xfa, 0x8d, 0x57, 0xe1, 0x9a, 0xd4, 0x21, 0x0e, 0xcb, 0x61, 0x25, 0x23, 0x06, 0xc5, - 0x29, 0x11, 0x0e, 0xa3, 0x5d, 0x2f, 0x76, 0xbb, 0x2a, 0x19, 0x76, 0x2d, 0xd3, 0xa9, 0x29, 0x3a, - 0xe7, 0xf8, 0x8a, 0xa0, 0x86, 0xa9, 0x79, 0x49, 0x54, 0x53, 0x05, 0x6a, 0xb5, 0x98, 0x08, 0x5a, - 0x3d, 0x32, 0x11, 0x23, 0xaa, 0x3f, 0x81, 0x79, 0xdf, 0x08, 0xea, 0xb7, 0x5d, 0xe2, 0xf4, 0x4c, - 0xd7, 0x55, 0x78, 0xac, 0xb8, 0x81, 0xbf, 0x04, 0x93, 0x7d, 0x22, 0x22, 0x57, 0x71, 0x19, 0x2d, - 0xf1, 0x87, 0xe7, 0x25, 0xa5, 0x33, 0x6b, 0xc7, 0x1d, 0xb8, 0x25, 0xb5, 0x73, 0x8f, 0xc6, 0xaa, - 0x8f, 0x1a, 0x25, 0xe9, 0x82, 0x54, 0x02, 0x5d, 0x90, 0x8e, 0x70, 0xab, 0xef, 0x71, 0x47, 0xca, - 0xbd, 0x35, 0x56, 0x46, 0xda, 0xe4, 0x3e, 0xf5, 0xb7, 0xe4, 0x58, 0xca, 0x0e, 0x61, 0x36, 0xbc, - 0x93, 0xc7, 0x0a, 0x96, 0xb3, 0x90, 0xf1, 0xec, 0x53, 0x22, 0x43, 0x25, 0x2f, 0x48, 0x83, 0xfd, - 0x6d, 0x3e, 0x96, 0xc1, 0x46, 0xa0, 0x8c, 0x2d, 0xc9, 0x71, 0xed, 0xa5, 0xb3, 0x29, 0x8f, 0x78, - 0xbc, 0x80, 0xb7, 0xe1, 0x4a, 0x34, 0x4c, 0x8c, 0x65, 0xf2, 0x33, 0xbe, 0x80, 0xe3, 0x22, 0xc9, - 0x58, 0x7a, 0xdf, 0x0f, 0x82, 0x81, 0x12, 0x50, 0xc6, 0x52, 0xa9, 0x43, 0x3d, 0x2e, 0xbe, 0xfc, - 0x18, 0xeb, 0xd5, 0x0f, 0x37, 0x63, 0x29, 0x73, 0x03, 0x65, 0xe3, 0x4f, 0x7f, 0x10, 0x23, 0xd2, - 0x17, 0xc6, 0x08, 0xb1, 0x49, 0x82, 0x28, 0xf6, 0x13, 0x2c, 0x3a, 0x81, 0x11, 0x04, 0xd0, 0x71, - 0x31, 0x68, 0x0e, 0xf1, 0x31, 0x58, 0x41, 0x2e, 0x6c, 0x35, 0xec, 0x8e, 0x35, 0x19, 0x1f, 0x04, - 0xb1, 0x73, 0x24, 0x32, 0x8f, 0xa5, 0xf8, 0x43, 0x58, 0x48, 0x0e, 0xca, 0xe3, 0x68, 0x7e, 0xd0, - 0x80, 0x82, 0x7f, 0x6c, 0x55, 0x7e, 0xb4, 0x51, 0x84, 0xdc, 0xf6, 0xce, 0xde, 0xee, 0xca, 0x6a, - 0x93, 0xff, 0x6a, 0x63, 0x75, 0x47, 0xd7, 0xf7, 0x77, 0x5b, 0xd5, 0xd4, 0xf2, 0x77, 0x69, 0x48, - 0x6d, 0x3e, 0x43, 0x1f, 0x41, 0x86, 0x3f, 0x61, 0x5e, 0xf0, 0x6e, 0x5d, 0xbf, 0xe8, 0x95, 0x16, - 0x5f, 0xfd, 0xe2, 0x0f, 0xdf, 0x7d, 0x9d, 0x9a, 0xc6, 0xa5, 0xc6, 0xf0, 0x8d, 0xc6, 0xe9, 0xb0, - 0xc1, 0x72, 0xc3, 0x23, 0xed, 0x01, 0x7a, 0x1f, 0xd2, 0xbb, 0x03, 0x0f, 0x25, 0xbe, 0x67, 0xd7, - 0x93, 0x1f, 0x6e, 0xf1, 0x1c, 0x53, 0x3a, 0x85, 0x41, 0x28, 0xed, 0x0f, 0x3c, 0xaa, 0xf2, 0x53, - 0x28, 0xaa, 0xcf, 0xae, 0x97, 0x3e, 0x72, 0xd7, 0x2f, 0x7f, 0xd2, 0xc5, 0x37, 0x19, 0xd4, 0x55, - 0x8c, 0x04, 0x14, 0x7f, 0x18, 0x56, 0x47, 0xd1, 0x3a, 0xb3, 0x50, 0xe2, 0x13, 0x78, 0x3d, 0xf9, - 0x95, 0x77, 0x64, 0x14, 0xde, 0x99, 0x45, 0x55, 0xfe, 0x83, 0x78, 0xe0, 0x6d, 0x7b, 0xe8, 0x56, - 0xcc, 0x03, 0x9f, 0xfa, 0x94, 0x55, 0x5f, 0x48, 0x16, 0x10, 0x20, 0x37, 0x18, 0xc8, 0x15, 0x3c, - 0x2d, 0x40, 0xda, 0xbe, 0xc8, 0x23, 0xed, 0xc1, 0x72, 0x1b, 0x32, 0x8c, 0x8f, 0x46, 0x1f, 0xcb, - 0x8f, 0x7a, 0x0c, 0x01, 0x9f, 0x30, 0xd1, 0x21, 0x26, 0x1b, 0xcf, 0x32, 0xa0, 0x0a, 0x2e, 0x50, - 0x20, 0xc6, 0x46, 0x3f, 0xd2, 0x1e, 0x2c, 0x6a, 0xaf, 0x69, 0xcb, 0xff, 0x9f, 0x81, 0x0c, 0x23, - 0x9f, 0xd0, 0x29, 0x40, 0xc0, 0xcd, 0x46, 0x47, 0x37, 0xc2, 0xf6, 0x46, 0x47, 0x37, 0x4a, 0xeb, - 0xe2, 0x3a, 0x03, 0x9d, 0xc5, 0x53, 0x14, 0x94, 0x71, 0x5a, 0x0d, 0x46, 0xd3, 0x51, 0x3f, 0xfe, - 0x9b, 0x26, 0xb8, 0x37, 0xbe, 0x97, 0x50, 0x9c, 0xb6, 0x10, 0x41, 0x1b, 0x5d, 0x0e, 0x31, 0xe4, - 0x2c, 0x7e, 0x8b, 0x01, 0x36, 0x70, 0x35, 0x00, 0x74, 0x98, 0xc4, 0x23, 0xed, 0xc1, 0xc7, 0x35, - 0x3c, 0x23, 0xbc, 0x1c, 0x69, 0x41, 0x9f, 0x43, 0x25, 0x4c, 0xba, 0xa2, 0x3b, 0x31, 0x58, 0x51, - 0xee, 0xb6, 0x7e, 0xf7, 0x62, 0x21, 0x61, 0xd3, 0x3c, 0xb3, 0x49, 0x80, 0x73, 0xe4, 0x53, 0x42, - 0xfa, 0x06, 0x15, 0x12, 0x73, 0x80, 0xfe, 0x5b, 0x83, 0xa9, 0x08, 0x8b, 0x8a, 0xe2, 0xb4, 0x8f, - 0x70, 0xb4, 0xf5, 0x7b, 0x97, 0x48, 0x09, 0x23, 0xfe, 0x8e, 0x19, 0xf1, 0xd7, 0x78, 0x36, 0x30, - 0xc2, 0x33, 0x7b, 0xc4, 0xb3, 0x85, 0x15, 0x1f, 0xdf, 0xc0, 0x57, 0x43, 0xce, 0x09, 0xb5, 0x06, - 0x93, 0xc5, 0x99, 0xd0, 0xd8, 0xc9, 0x0a, 0x31, 0xab, 0xb1, 0x93, 0x15, 0xa6, 0x51, 0xe3, 0x26, - 0x8b, 0xf3, 0x9e, 0x71, 0x93, 0xe5, 0xb7, 0x2c, 0xb3, 0x9f, 0x58, 0xf0, 0x1f, 0x56, 0x22, 0x1b, - 0x0a, 0x3e, 0x0b, 0x89, 0xe6, 0xe3, 0x18, 0xa1, 0xe0, 0x2e, 0x51, 0xbf, 0x95, 0xd8, 0x2e, 0x0c, - 0xba, 0xcd, 0x0c, 0xba, 0x8e, 0xaf, 0x50, 0x64, 0xf1, 0xdb, 0xcd, 0x06, 0xa7, 0x1d, 0x1a, 0x46, - 0xa7, 0x43, 0x1d, 0xf1, 0x8f, 0x50, 0x52, 0x69, 0x42, 0x74, 0x3b, 0x96, 0x85, 0x52, 0x99, 0xc6, - 0x3a, 0xbe, 0x48, 0x44, 0x20, 0xdf, 0x65, 0xc8, 0xf3, 0xf8, 0x5a, 0x0c, 0xb2, 0xc3, 0x44, 0x43, - 0xe0, 0x9c, 0xe2, 0x8b, 0x07, 0x0f, 0x31, 0x88, 0xf1, 0xe0, 0x61, 0x86, 0xf0, 0x42, 0xf0, 0x01, - 0x13, 0xa5, 0xe0, 0x2e, 0x40, 0x40, 0xe6, 0xa1, 0x58, 0x5f, 0x2a, 0x97, 0xa9, 0x68, 0x70, 0x18, - 0xe5, 0x01, 0x31, 0x66, 0xb0, 0x62, 0xdd, 0x45, 0x60, 0xbb, 0xa6, 0x4b, 0x83, 0xc4, 0xf2, 0xbf, - 0x67, 0xa1, 0xf8, 0xd4, 0x30, 0x2d, 0x8f, 0x58, 0x86, 0xd5, 0x26, 0xe8, 0x10, 0x32, 0x2c, 0x51, - 0x46, 0xe3, 0xa0, 0xca, 0x6f, 0x45, 0xe3, 0x60, 0x88, 0xfc, 0xc1, 0x0b, 0x0c, 0xb5, 0x8e, 0xe7, - 0x28, 0x6a, 0x2f, 0x50, 0xdd, 0x60, 0x9c, 0x0d, 0x1d, 0xe8, 0x11, 0x64, 0xc5, 0x73, 0x40, 0x44, - 0x51, 0x88, 0xcb, 0xa9, 0xdf, 0x88, 0x6f, 0x8c, 0x5b, 0x4a, 0x2a, 0x8c, 0xcb, 0xe4, 0x28, 0xce, - 0x10, 0x20, 0x20, 0x23, 0xa3, 0x0e, 0x1d, 0xe1, 0x2e, 0xeb, 0x0b, 0xc9, 0x02, 0x02, 0xf3, 0x1e, - 0xc3, 0xbc, 0x85, 0xeb, 0x51, 0xcc, 0x8e, 0x2f, 0x4b, 0x71, 0xff, 0x1e, 0x26, 0xd7, 0x0d, 0xf7, - 0x04, 0x45, 0x52, 0x9f, 0xf2, 0x7b, 0x87, 0x7a, 0x3d, 0xae, 0x49, 0xa0, 0xdc, 0x62, 0x28, 0xd7, - 0x78, 0x24, 0x51, 0x51, 0x4e, 0x0c, 0x97, 0xe6, 0x14, 0xd4, 0x81, 0x2c, 0xff, 0xf9, 0x43, 0xd4, - 0x7f, 0xa1, 0x9f, 0x50, 0x44, 0xfd, 0x17, 0xfe, 0xc5, 0xc4, 0xe5, 0x28, 0x7d, 0xc8, 0xcb, 0xdf, - 0x1b, 0xa0, 0x9b, 0x91, 0xa9, 0x08, 0xff, 0x36, 0xa1, 0x3e, 0x9f, 0xd4, 0x2c, 0xb0, 0xee, 0x30, - 0xac, 0x9b, 0xb8, 0x36, 0x32, 0x57, 0x42, 0xf2, 0x91, 0xf6, 0xe0, 0x35, 0x0d, 0x7d, 0x0e, 0x10, - 0xf0, 0xb7, 0x23, 0x1b, 0x20, 0x4a, 0x05, 0x8f, 0x6c, 0x80, 0x11, 0xea, 0x17, 0x2f, 0x31, 0xdc, - 0x45, 0x7c, 0x27, 0x8a, 0xeb, 0x39, 0x86, 0xe5, 0x1e, 0x11, 0xe7, 0x55, 0xce, 0xd1, 0xb9, 0x27, - 0x66, 0x9f, 0x6e, 0x86, 0x5f, 0x4f, 0xc1, 0x24, 0x3d, 0x80, 0xd2, 0x3c, 0x1d, 0xdc, 0xdb, 0xa3, - 0x96, 0x8c, 0xb0, 0x65, 0x51, 0x4b, 0x46, 0xaf, 0xfc, 0xe1, 0x3c, 0xcd, 0x7e, 0x11, 0x4f, 0x98, - 0x00, 0x75, 0xb4, 0x0d, 0x45, 0xe5, 0x62, 0x8f, 0x62, 0x94, 0x85, 0x69, 0xb8, 0x68, 0xe4, 0x8f, - 0x61, 0x05, 0xf0, 0x75, 0x86, 0x37, 0xc7, 0x23, 0x3f, 0xc3, 0xeb, 0x70, 0x09, 0x0a, 0xf8, 0x1c, - 0x4a, 0xea, 0xe5, 0x1f, 0xc5, 0xe8, 0x8b, 0x50, 0x7c, 0xd1, 0x28, 0x17, 0xc7, 0x1d, 0x84, 0x37, - 0xbe, 0xff, 0xab, 0x7f, 0x29, 0x46, 0x81, 0xbb, 0x90, 0x13, 0x6c, 0x40, 0xdc, 0x28, 0xc3, 0x7c, - 0x60, 0xdc, 0x28, 0x23, 0x54, 0x42, 0xf8, 0x6c, 0xc7, 0x10, 0xe9, 0x85, 0x47, 0x66, 0x12, 0x81, - 0xf6, 0x84, 0x78, 0x49, 0x68, 0x01, 0xb9, 0x95, 0x84, 0xa6, 0x5c, 0x36, 0x93, 0xd0, 0x8e, 0x89, - 0x27, 0xb6, 0x8b, 0xbc, 0xc4, 0xa1, 0x04, 0x65, 0x6a, 0xf4, 0xc6, 0x17, 0x89, 0xc4, 0x1d, 0xbd, - 0x03, 0x40, 0x11, 0xba, 0xd1, 0x19, 0x40, 0xc0, 0x55, 0x44, 0xcf, 0x53, 0xb1, 0x84, 0x67, 0xf4, - 0x3c, 0x15, 0x4f, 0x77, 0x84, 0x43, 0x43, 0x80, 0xcb, 0x4f, 0xfe, 0x14, 0xf9, 0x2b, 0x0d, 0xd0, - 0x28, 0xad, 0x81, 0x1e, 0xc6, 0x6b, 0x8f, 0xa5, 0x51, 0xeb, 0xaf, 0xbc, 0x98, 0x70, 0x5c, 0xb4, - 0x0f, 0x4c, 0x6a, 0x33, 0xe9, 0xfe, 0x73, 0x6a, 0xd4, 0xbf, 0x68, 0x50, 0x0e, 0x71, 0x22, 0xe8, - 0xa5, 0x84, 0x39, 0x8d, 0xb0, 0xb0, 0xf5, 0xfb, 0x97, 0xca, 0xc5, 0x1d, 0x34, 0x95, 0x15, 0x20, - 0x4f, 0xdc, 0x5f, 0x6a, 0x50, 0x09, 0x73, 0x28, 0x28, 0x41, 0xf7, 0x08, 0x8b, 0x5b, 0x5f, 0xbc, - 0x5c, 0xf0, 0xe2, 0xe9, 0x09, 0x0e, 0xdb, 0x5d, 0xc8, 0x09, 0xd6, 0x25, 0x6e, 0xe1, 0x87, 0xf9, - 0xdf, 0xb8, 0x85, 0x1f, 0xa1, 0x6c, 0x62, 0x16, 0xbe, 0x63, 0x77, 0x89, 0xb2, 0xcd, 0x04, 0x2d, - 0x93, 0x84, 0x76, 0xf1, 0x36, 0x8b, 0x70, 0x3a, 0x49, 0x68, 0xc1, 0x36, 0x93, 0x7c, 0x0c, 0x4a, - 0x50, 0x76, 0xc9, 0x36, 0x8b, 0xd2, 0x39, 0x31, 0xdb, 0x8c, 0x01, 0x2a, 0xdb, 0x2c, 0x60, 0x4e, - 0xe2, 0xb6, 0xd9, 0x08, 0x9d, 0x1d, 0xb7, 0xcd, 0x46, 0xc9, 0x97, 0x98, 0x79, 0x64, 0xb8, 0xa1, - 0x6d, 0x36, 0x13, 0x43, 0xb2, 0xa0, 0x57, 0x12, 0x9c, 0x18, 0xcb, 0x92, 0xd7, 0x5f, 0x7d, 0x41, - 0xe9, 0xc4, 0x35, 0xce, 0xdd, 0x2f, 0xd7, 0xf8, 0x7f, 0x68, 0x30, 0x1b, 0x47, 0xd0, 0xa0, 0x04, - 0x9c, 0x04, 0x76, 0xbd, 0xbe, 0xf4, 0xa2, 0xe2, 0x17, 0x7b, 0xcb, 0x5f, 0xf5, 0x8f, 0xab, 0xbf, - 0xf9, 0x76, 0x5e, 0xfb, 0xdd, 0xb7, 0xf3, 0xda, 0x1f, 0xbf, 0x9d, 0xd7, 0xfe, 0xf3, 0x4f, 0xf3, - 0x13, 0x87, 0x59, 0xf6, 0x7f, 0xc9, 0xde, 0xf8, 0x4b, 0x00, 0x00, 0x00, 0xff, 0xff, 0x91, 0xd4, - 0xc1, 0xf9, 0xd2, 0x36, 0x00, 0x00, + // 3769 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0xdb, 0x6f, 0x1b, 0x47, + 0x77, 0xd7, 0x92, 0xe2, 0xed, 0xf0, 0x22, 0x6a, 0x74, 0x31, 0x4d, 0xdb, 0xb2, 0x3c, 0xb6, 0x63, + 0xc5, 0x4e, 0xc4, 0x44, 0x49, 0x5a, 0xc0, 0x6d, 0x83, 0xc8, 0x12, 0x63, 0x29, 0x92, 0x25, 0x65, + 0x45, 0x39, 0x17, 0x04, 0x15, 0x56, 0xe4, 0x48, 0xda, 0x8a, 0xdc, 0x65, 0x76, 0x97, 0xb4, 0x94, + 0x16, 0x4d, 0x11, 0xa4, 0x0f, 0xed, 0x63, 0x02, 0x14, 0xed, 0x43, 0x9f, 0x8a, 0xa2, 0xc8, 0x43, + 0x81, 0xbe, 0x14, 0x05, 0xfa, 0x17, 0xf4, 0xad, 0x2d, 0xbe, 0x7f, 0xe0, 0x43, 0xbe, 0xbc, 0x7c, + 0xff, 0xc5, 0x87, 0xb9, 0xed, 0xce, 0x2e, 0x77, 0x25, 0x27, 0x4c, 0xf2, 0x22, 0xef, 0xcc, 0x9c, + 0x39, 0xbf, 0x33, 0x67, 0x66, 0xce, 0x99, 0xf9, 0x0d, 0x0d, 0x05, 0xa7, 0xdf, 0x5e, 0xee, 0x3b, + 0xb6, 0x67, 0xa3, 0x12, 0xf1, 0xda, 0x1d, 0x97, 0x38, 0x43, 0xe2, 0xf4, 0x8f, 0xea, 0xb3, 0x27, + 0xf6, 0x89, 0xcd, 0x1a, 0x1a, 0xf4, 0x8b, 0xcb, 0xd4, 0xaf, 0x53, 0x99, 0x46, 0x6f, 0xd8, 0x6e, + 0xb3, 0x3f, 0xfd, 0xa3, 0xc6, 0xd9, 0x50, 0x34, 0xdd, 0x60, 0x4d, 0xc6, 0xc0, 0x3b, 0x65, 0x7f, + 0xfa, 0x47, 0xec, 0x1f, 0xd1, 0x78, 0xf3, 0xc4, 0xb6, 0x4f, 0xba, 0xa4, 0x61, 0xf4, 0xcd, 0x86, + 0x61, 0x59, 0xb6, 0x67, 0x78, 0xa6, 0x6d, 0xb9, 0xbc, 0x15, 0xff, 0xad, 0x06, 0x15, 0x9d, 0xb8, + 0x7d, 0xdb, 0x72, 0xc9, 0x06, 0x31, 0x3a, 0xc4, 0x41, 0xb7, 0x00, 0xda, 0xdd, 0x81, 0xeb, 0x11, + 0xe7, 0xd0, 0xec, 0xd4, 0xb4, 0x45, 0x6d, 0x69, 0x52, 0x2f, 0x88, 0x9a, 0xcd, 0x0e, 0xba, 0x01, + 0x85, 0x1e, 0xe9, 0x1d, 0xf1, 0xd6, 0x14, 0x6b, 0xcd, 0xf3, 0x8a, 0xcd, 0x0e, 0xaa, 0x43, 0xde, + 0x21, 0x43, 0xd3, 0x35, 0x6d, 0xab, 0x96, 0x5e, 0xd4, 0x96, 0xd2, 0xba, 0x5f, 0xa6, 0x1d, 0x1d, + 0xe3, 0xd8, 0x3b, 0xf4, 0x88, 0xd3, 0xab, 0x4d, 0xf2, 0x8e, 0xb4, 0xa2, 0x45, 0x9c, 0x1e, 0xfe, + 0x3a, 0x03, 0x25, 0xdd, 0xb0, 0x4e, 0x88, 0x4e, 0x3e, 0x1f, 0x10, 0xd7, 0x43, 0x55, 0x48, 0x9f, + 0x91, 0x0b, 0x06, 0x5f, 0xd2, 0xe9, 0x27, 0xef, 0x6f, 0x9d, 0x90, 0x43, 0x62, 0x71, 0xe0, 0x12, + 0xed, 0x6f, 0x9d, 0x90, 0xa6, 0xd5, 0x41, 0xb3, 0x90, 0xe9, 0x9a, 0x3d, 0xd3, 0x13, 0xa8, 0xbc, + 0x10, 0x32, 0x67, 0x32, 0x62, 0xce, 0x1a, 0x80, 0x6b, 0x3b, 0xde, 0xa1, 0xed, 0x74, 0x88, 0x53, + 0xcb, 0x2c, 0x6a, 0x4b, 0x95, 0x95, 0x7b, 0xcb, 0xea, 0x44, 0x2c, 0xab, 0x06, 0x2d, 0xef, 0xdb, + 0x8e, 0xb7, 0x4b, 0x65, 0xf5, 0x82, 0x2b, 0x3f, 0xd1, 0xfb, 0x50, 0x64, 0x4a, 0x3c, 0xc3, 0x39, + 0x21, 0x5e, 0x2d, 0xcb, 0xb4, 0xdc, 0xbf, 0x42, 0x4b, 0x8b, 0x09, 0xeb, 0x0c, 0x9e, 0x7f, 0x23, + 0x0c, 0x25, 0x97, 0x38, 0xa6, 0xd1, 0x35, 0xbf, 0x30, 0x8e, 0xba, 0xa4, 0x96, 0x5b, 0xd4, 0x96, + 0xf2, 0x7a, 0xa8, 0x8e, 0x8e, 0xff, 0x8c, 0x5c, 0xb8, 0x87, 0xb6, 0xd5, 0xbd, 0xa8, 0xe5, 0x99, + 0x40, 0x9e, 0x56, 0xec, 0x5a, 0xdd, 0x0b, 0x36, 0x69, 0xf6, 0xc0, 0xf2, 0x78, 0x6b, 0x81, 0xb5, + 0x16, 0x58, 0x0d, 0x6b, 0x5e, 0x82, 0x6a, 0xcf, 0xb4, 0x0e, 0x7b, 0x76, 0xe7, 0xd0, 0x77, 0x08, + 0x30, 0x87, 0x54, 0x7a, 0xa6, 0xf5, 0xcc, 0xee, 0xe8, 0xd2, 0x2d, 0x54, 0xd2, 0x38, 0x0f, 0x4b, + 0x16, 0x85, 0xa4, 0x71, 0xae, 0x4a, 0x2e, 0xc3, 0x0c, 0xd5, 0xd9, 0x76, 0x88, 0xe1, 0x91, 0x40, + 0xb8, 0xc4, 0x84, 0xa7, 0x7b, 0xa6, 0xb5, 0xc6, 0x5a, 0x42, 0xf2, 0xc6, 0xf9, 0x88, 0x7c, 0x59, + 0xc8, 0x1b, 0xe7, 0x61, 0x79, 0xbc, 0x0c, 0x05, 0xdf, 0xe7, 0x28, 0x0f, 0x93, 0x3b, 0xbb, 0x3b, + 0xcd, 0xea, 0x04, 0x02, 0xc8, 0xae, 0xee, 0xaf, 0x35, 0x77, 0xd6, 0xab, 0x1a, 0x2a, 0x42, 0x6e, + 0xbd, 0xc9, 0x0b, 0x29, 0xfc, 0x04, 0x20, 0xf0, 0x2e, 0xca, 0x41, 0x7a, 0xab, 0xf9, 0x49, 0x75, + 0x82, 0xca, 0x3c, 0x6f, 0xea, 0xfb, 0x9b, 0xbb, 0x3b, 0x55, 0x8d, 0x76, 0x5e, 0xd3, 0x9b, 0xab, + 0xad, 0x66, 0x35, 0x45, 0x25, 0x9e, 0xed, 0xae, 0x57, 0xd3, 0xa8, 0x00, 0x99, 0xe7, 0xab, 0xdb, + 0x07, 0xcd, 0xea, 0x24, 0xfe, 0x56, 0x83, 0xb2, 0x98, 0x2f, 0xbe, 0x27, 0xd0, 0xdb, 0x90, 0x3d, + 0x65, 0xfb, 0x82, 0x2d, 0xc5, 0xe2, 0xca, 0xcd, 0xc8, 0xe4, 0x86, 0xf6, 0x8e, 0x2e, 0x64, 0x11, + 0x86, 0xf4, 0xd9, 0xd0, 0xad, 0xa5, 0x16, 0xd3, 0x4b, 0xc5, 0x95, 0xea, 0x32, 0xdf, 0xb0, 0xcb, + 0x5b, 0xe4, 0xe2, 0xb9, 0xd1, 0x1d, 0x10, 0x9d, 0x36, 0x22, 0x04, 0x93, 0x3d, 0xdb, 0x21, 0x6c, + 0xc5, 0xe6, 0x75, 0xf6, 0x4d, 0x97, 0x31, 0x9b, 0x34, 0xb1, 0x5a, 0x79, 0x01, 0x7f, 0xa7, 0x01, + 0xec, 0x0d, 0xbc, 0xe4, 0xad, 0x31, 0x0b, 0x99, 0x21, 0x55, 0x2c, 0xb6, 0x05, 0x2f, 0xb0, 0x3d, + 0x41, 0x0c, 0x97, 0xf8, 0x7b, 0x82, 0x16, 0xd0, 0x35, 0xc8, 0xf5, 0x1d, 0x32, 0x3c, 0x3c, 0x1b, + 0x32, 0x90, 0xbc, 0x9e, 0xa5, 0xc5, 0xad, 0x21, 0xba, 0x03, 0x25, 0xf3, 0xc4, 0xb2, 0x1d, 0x72, + 0xc8, 0x75, 0x65, 0x58, 0x6b, 0x91, 0xd7, 0x31, 0xbb, 0x15, 0x11, 0xae, 0x38, 0xab, 0x8a, 0x6c, + 0xd3, 0x2a, 0x6c, 0x41, 0x91, 0x99, 0x3a, 0x96, 0xfb, 0x5e, 0x0d, 0x6c, 0x4c, 0xb1, 0x6e, 0xa3, + 0x2e, 0x14, 0x56, 0xe3, 0xcf, 0x00, 0xad, 0x93, 0x2e, 0xf1, 0xc8, 0x38, 0xd1, 0x43, 0xf1, 0x49, + 0x5a, 0xf5, 0x09, 0xfe, 0x46, 0x83, 0x99, 0x90, 0xfa, 0xb1, 0x86, 0x55, 0x83, 0x5c, 0x87, 0x29, + 0xe3, 0x16, 0xa4, 0x75, 0x59, 0x44, 0x8f, 0x20, 0x2f, 0x0c, 0x70, 0x6b, 0xe9, 0x84, 0x45, 0x93, + 0xe3, 0x36, 0xb9, 0xf8, 0xbb, 0x14, 0x14, 0xc4, 0x40, 0x77, 0xfb, 0x68, 0x15, 0xca, 0x0e, 0x2f, + 0x1c, 0xb2, 0xf1, 0x08, 0x8b, 0xea, 0xc9, 0x41, 0x68, 0x63, 0x42, 0x2f, 0x89, 0x2e, 0xac, 0x1a, + 0xfd, 0x09, 0x14, 0xa5, 0x8a, 0xfe, 0xc0, 0x13, 0x2e, 0xaf, 0x85, 0x15, 0x04, 0xeb, 0x6f, 0x63, + 0x42, 0x07, 0x21, 0xbe, 0x37, 0xf0, 0x50, 0x0b, 0x66, 0x65, 0x67, 0x3e, 0x1a, 0x61, 0x46, 0x9a, + 0x69, 0x59, 0x0c, 0x6b, 0x19, 0x9d, 0xaa, 0x8d, 0x09, 0x1d, 0x89, 0xfe, 0x4a, 0xa3, 0x6a, 0x92, + 0x77, 0xce, 0x83, 0xf7, 0x88, 0x49, 0xad, 0x73, 0x6b, 0xd4, 0xa4, 0xd6, 0xb9, 0xf5, 0xa4, 0x00, + 0x39, 0x51, 0xc2, 0xff, 0x95, 0x02, 0x90, 0xb3, 0xb1, 0xdb, 0x47, 0xeb, 0x50, 0x71, 0x44, 0x29, + 0xe4, 0xad, 0x1b, 0xb1, 0xde, 0x12, 0x93, 0x38, 0xa1, 0x97, 0x65, 0x27, 0x6e, 0xdc, 0xbb, 0x50, + 0xf2, 0xb5, 0x04, 0x0e, 0xbb, 0x1e, 0xe3, 0x30, 0x5f, 0x43, 0x51, 0x76, 0xa0, 0x2e, 0xfb, 0x08, + 0xe6, 0xfc, 0xfe, 0x31, 0x3e, 0xbb, 0x73, 0x89, 0xcf, 0x7c, 0x85, 0x33, 0x52, 0x83, 0xea, 0x35, + 0xd5, 0xb0, 0xc0, 0x6d, 0xd7, 0x63, 0xdc, 0x36, 0x6a, 0x18, 0x75, 0x1c, 0xd0, 0x7c, 0xc9, 0x8b, + 0xf8, 0xf7, 0x69, 0xc8, 0xad, 0xd9, 0xbd, 0xbe, 0xe1, 0xd0, 0xd9, 0xc8, 0x3a, 0xc4, 0x1d, 0x74, + 0x3d, 0xe6, 0xae, 0xca, 0xca, 0xdd, 0xb0, 0x46, 0x21, 0x26, 0xff, 0xd5, 0x99, 0xa8, 0x2e, 0xba, + 0xd0, 0xce, 0x22, 0x3d, 0xa6, 0x5e, 0xa2, 0xb3, 0x48, 0x8e, 0xa2, 0x8b, 0xdc, 0xc8, 0xe9, 0x60, + 0x23, 0xd7, 0x21, 0x37, 0x24, 0x4e, 0x90, 0xd2, 0x37, 0x26, 0x74, 0x59, 0x81, 0x5e, 0x85, 0xa9, + 0x68, 0x7a, 0xc9, 0x08, 0x99, 0x4a, 0x3b, 0x9c, 0x8d, 0xee, 0x42, 0x29, 0x94, 0xe3, 0xb2, 0x42, + 0xae, 0xd8, 0x53, 0x52, 0xdc, 0xbc, 0x8c, 0xab, 0x34, 0x1f, 0x97, 0x36, 0x26, 0x64, 0x64, 0x9d, + 0x97, 0x91, 0x35, 0x2f, 0x7a, 0x89, 0xd8, 0x1a, 0x0a, 0x32, 0xef, 0x85, 0x83, 0x0c, 0x7e, 0x0f, + 0xca, 0x21, 0x07, 0xd1, 0xbc, 0xd3, 0xfc, 0xf0, 0x60, 0x75, 0x9b, 0x27, 0xa9, 0xa7, 0x2c, 0x2f, + 0xe9, 0x55, 0x8d, 0xe6, 0xba, 0xed, 0xe6, 0xfe, 0x7e, 0x35, 0x85, 0xca, 0x50, 0xd8, 0xd9, 0x6d, + 0x1d, 0x72, 0xa9, 0x34, 0x7e, 0xea, 0x6b, 0x10, 0x49, 0x4e, 0xc9, 0x6d, 0x13, 0x4a, 0x6e, 0xd3, + 0x64, 0x6e, 0x4b, 0x05, 0xb9, 0x8d, 0xa5, 0xb9, 0xed, 0xe6, 0xea, 0x7e, 0xb3, 0x3a, 0xf9, 0xa4, + 0x02, 0x25, 0xee, 0xdf, 0xc3, 0x81, 0x45, 0x53, 0xed, 0xbf, 0x68, 0x00, 0xc1, 0x6e, 0x42, 0x0d, + 0xc8, 0xb5, 0x39, 0x4e, 0x4d, 0x63, 0xc1, 0x68, 0x2e, 0x76, 0xca, 0x74, 0x29, 0x85, 0xde, 0x84, + 0x9c, 0x3b, 0x68, 0xb7, 0x89, 0x2b, 0x53, 0xde, 0xb5, 0x68, 0x3c, 0x14, 0xd1, 0x4a, 0x97, 0x72, + 0xb4, 0xcb, 0xb1, 0x61, 0x76, 0x07, 0x2c, 0x01, 0x5e, 0xde, 0x45, 0xc8, 0xe1, 0x7f, 0xd2, 0xa0, + 0xa8, 0x2c, 0xde, 0x9f, 0x18, 0x84, 0x6f, 0x42, 0x81, 0xd9, 0x40, 0x3a, 0x22, 0x0c, 0xe7, 0xf5, + 0xa0, 0x02, 0xfd, 0x11, 0x14, 0xe4, 0x0e, 0x90, 0x91, 0xb8, 0x16, 0xaf, 0x76, 0xb7, 0xaf, 0x07, + 0xa2, 0x78, 0x0b, 0xa6, 0x99, 0x57, 0xda, 0xf4, 0x70, 0x2d, 0xfd, 0xa8, 0x1e, 0x3f, 0xb5, 0xc8, + 0xf1, 0xb3, 0x0e, 0xf9, 0xfe, 0xe9, 0x85, 0x6b, 0xb6, 0x8d, 0xae, 0xb0, 0xc2, 0x2f, 0xe3, 0x0f, + 0x00, 0xa9, 0xca, 0xc6, 0x19, 0x2e, 0x2e, 0x43, 0x71, 0xc3, 0x70, 0x4f, 0x85, 0x49, 0xf8, 0x11, + 0x94, 0x69, 0x71, 0xeb, 0xf9, 0x4b, 0xd8, 0xc8, 0x2e, 0x07, 0x52, 0x7a, 0x2c, 0x9f, 0x23, 0x98, + 0x3c, 0x35, 0xdc, 0x53, 0x36, 0xd0, 0xb2, 0xce, 0xbe, 0xd1, 0xab, 0x50, 0x6d, 0xf3, 0x41, 0x1e, + 0x46, 0xae, 0x0c, 0x53, 0xa2, 0xde, 0x3f, 0x09, 0x7e, 0x0c, 0x25, 0x3e, 0x86, 0x9f, 0xdb, 0x08, + 0x3c, 0x0d, 0x53, 0xfb, 0x96, 0xd1, 0x77, 0x4f, 0x6d, 0x99, 0xdd, 0xe8, 0xa0, 0xab, 0x41, 0xdd, + 0x58, 0x88, 0x0f, 0x60, 0xca, 0x21, 0x3d, 0xc3, 0xb4, 0x4c, 0xeb, 0xe4, 0xf0, 0xe8, 0xc2, 0x23, + 0xae, 0xb8, 0x30, 0x55, 0xfc, 0xea, 0x27, 0xb4, 0x96, 0x9a, 0x76, 0xd4, 0xb5, 0x8f, 0x44, 0x98, + 0x63, 0xdf, 0xf8, 0x3f, 0x35, 0x28, 0x7d, 0x64, 0x78, 0x6d, 0x39, 0x75, 0x68, 0x13, 0x2a, 0x7e, + 0x70, 0x63, 0x35, 0xc2, 0x96, 0x48, 0x8a, 0x65, 0x7d, 0xe4, 0x51, 0x5a, 0x66, 0xc7, 0x72, 0x5b, + 0xad, 0x60, 0xaa, 0x0c, 0xab, 0x4d, 0xba, 0xbe, 0xaa, 0x54, 0xb2, 0x2a, 0x26, 0xa8, 0xaa, 0x52, + 0x2b, 0x9e, 0x4c, 0x05, 0xc7, 0x0f, 0x1e, 0x4b, 0xfe, 0x3f, 0x05, 0x68, 0xd4, 0x86, 0x1f, 0x7b, + 0x22, 0xbb, 0x0f, 0x15, 0xd7, 0x33, 0x9c, 0x91, 0xb5, 0x51, 0x66, 0xb5, 0x7e, 0x80, 0x7e, 0x00, + 0x53, 0x7d, 0xc7, 0x3e, 0x71, 0x88, 0xeb, 0x1e, 0x5a, 0xb6, 0x67, 0x1e, 0x5f, 0x88, 0x43, 0x6d, + 0x45, 0x56, 0xef, 0xb0, 0x5a, 0xd4, 0x84, 0xdc, 0xb1, 0xd9, 0xf5, 0x88, 0xe3, 0xd6, 0x32, 0x8b, + 0xe9, 0xa5, 0xca, 0xca, 0xa3, 0xab, 0xbc, 0xb6, 0xfc, 0x3e, 0x93, 0x6f, 0x5d, 0xf4, 0x89, 0x2e, + 0xfb, 0xaa, 0x07, 0xc5, 0x6c, 0xe8, 0xf0, 0x7c, 0x1d, 0xf2, 0x2f, 0xa8, 0x0a, 0x7a, 0x29, 0xce, + 0xf1, 0xb3, 0x1d, 0x2b, 0xf3, 0x3b, 0xf1, 0xb1, 0x63, 0x9c, 0xf4, 0x88, 0xe5, 0xc9, 0x6b, 0x9b, + 0x2c, 0xe3, 0xfb, 0x00, 0x01, 0x0c, 0x8d, 0xd0, 0x3b, 0xbb, 0x7b, 0x07, 0xad, 0xea, 0x04, 0x2a, + 0x41, 0x7e, 0x67, 0x77, 0xbd, 0xb9, 0xdd, 0xa4, 0xe1, 0x1c, 0x37, 0xa4, 0x4b, 0x55, 0xd7, 0x87, + 0x30, 0xb5, 0x10, 0x26, 0x3d, 0x22, 0x96, 0xc5, 0xe2, 0x19, 0x6b, 0x05, 0xab, 0x10, 0xa9, 0xf0, + 0xb0, 0x6a, 0x90, 0xe3, 0x8b, 0xaa, 0x23, 0xce, 0xcc, 0xb2, 0x48, 0x07, 0xcc, 0xd7, 0x08, 0xe9, + 0x88, 0xd9, 0xf0, 0xcb, 0xb1, 0xbb, 0x3e, 0x13, 0xbb, 0xeb, 0xd1, 0x5d, 0x28, 0xfb, 0x8b, 0xd4, + 0x70, 0x45, 0x8a, 0x2e, 0xe8, 0x25, 0xb9, 0xfe, 0x68, 0x5d, 0xc8, 0xb9, 0xb9, 0xb0, 0x73, 0xd1, + 0x7d, 0xc8, 0x92, 0x21, 0xb1, 0x3c, 0xb7, 0x56, 0x64, 0x81, 0xbc, 0x2c, 0x8f, 0xd4, 0x4d, 0x5a, + 0xab, 0x8b, 0x46, 0xfc, 0x0e, 0x4c, 0xb3, 0xab, 0xcb, 0x53, 0xc7, 0xb0, 0xd4, 0x3b, 0x56, 0xab, + 0xb5, 0x2d, 0xdc, 0x4a, 0x3f, 0x51, 0x05, 0x52, 0x9b, 0xeb, 0xc2, 0x09, 0xa9, 0xcd, 0x75, 0xfc, + 0x95, 0x06, 0x48, 0xed, 0x37, 0x96, 0x9f, 0x23, 0xca, 0x25, 0x7c, 0x3a, 0x80, 0x9f, 0x85, 0x0c, + 0x71, 0x1c, 0xdb, 0x61, 0x1e, 0x2d, 0xe8, 0xbc, 0x80, 0xef, 0x09, 0x1b, 0x74, 0x32, 0xb4, 0xcf, + 0xfc, 0xbd, 0xc6, 0xb5, 0x69, 0xbe, 0xa9, 0x5b, 0x30, 0x13, 0x92, 0x1a, 0x2b, 0xa1, 0x3c, 0x80, + 0x39, 0xa6, 0x6c, 0x8b, 0x90, 0xfe, 0x6a, 0xd7, 0x1c, 0x26, 0xa2, 0xf6, 0x61, 0x3e, 0x2a, 0xf8, + 0xcb, 0xfa, 0x08, 0xff, 0xa9, 0x40, 0x6c, 0x99, 0x3d, 0xd2, 0xb2, 0xb7, 0x93, 0x6d, 0xa3, 0x01, + 0xf7, 0x8c, 0x5c, 0xb8, 0x22, 0xf3, 0xb2, 0x6f, 0xfc, 0xaf, 0x1a, 0x5c, 0x1b, 0xe9, 0xfe, 0x0b, + 0xcf, 0xea, 0x02, 0xc0, 0x09, 0x5d, 0x3e, 0xa4, 0x43, 0x1b, 0xf8, 0xa5, 0x5f, 0xa9, 0xf1, 0xed, + 0xa4, 0x31, 0xab, 0x24, 0xec, 0x9c, 0x15, 0x73, 0xce, 0xfe, 0xb8, 0x32, 0x6d, 0xdd, 0x82, 0x22, + 0xab, 0xd8, 0xf7, 0x0c, 0x6f, 0xe0, 0x8e, 0x4c, 0xc6, 0x5f, 0x8b, 0x25, 0x20, 0x3b, 0x8d, 0x35, + 0xae, 0x37, 0x21, 0xcb, 0xce, 0xbb, 0xf2, 0xb4, 0x17, 0xb9, 0x60, 0x28, 0x76, 0xe8, 0x42, 0x10, + 0x9f, 0x42, 0xf6, 0x19, 0x23, 0x09, 0x15, 0xcb, 0x26, 0xe5, 0x54, 0x58, 0x46, 0x8f, 0x53, 0x17, + 0x05, 0x9d, 0x7d, 0xb3, 0xc3, 0x11, 0x21, 0xce, 0x81, 0xbe, 0xcd, 0x0f, 0x61, 0x05, 0xdd, 0x2f, + 0x53, 0x97, 0xb5, 0xbb, 0x26, 0xb1, 0x3c, 0xd6, 0x3a, 0xc9, 0x5a, 0x95, 0x1a, 0xbc, 0x0c, 0x55, + 0x8e, 0xb4, 0xda, 0xe9, 0x28, 0x87, 0x1c, 0x5f, 0x9f, 0x16, 0xd6, 0x87, 0xff, 0x4d, 0x83, 0x69, + 0xa5, 0xc3, 0x58, 0x8e, 0x79, 0x0d, 0xb2, 0x9c, 0x0a, 0x15, 0xf9, 0x74, 0x36, 0xdc, 0x8b, 0xc3, + 0xe8, 0x42, 0x06, 0x2d, 0x43, 0x8e, 0x7f, 0xc9, 0x93, 0x66, 0xbc, 0xb8, 0x14, 0xc2, 0xf7, 0x61, + 0x46, 0x54, 0x91, 0x9e, 0x1d, 0xb7, 0xb6, 0x99, 0x43, 0xf1, 0x5f, 0xc1, 0x6c, 0x58, 0x6c, 0xac, + 0x21, 0x29, 0x46, 0xa6, 0x5e, 0xc6, 0xc8, 0x55, 0x69, 0xe4, 0x41, 0xbf, 0xa3, 0xa4, 0xff, 0xe8, + 0xac, 0xab, 0x33, 0x92, 0x8a, 0xcc, 0x88, 0x3f, 0x00, 0xa9, 0xe2, 0x57, 0x1d, 0xc0, 0x8c, 0x5c, + 0x0e, 0xdb, 0xa6, 0xeb, 0x1f, 0x0a, 0xbf, 0x00, 0xa4, 0x56, 0xfe, 0xda, 0x06, 0xad, 0x13, 0x99, + 0xd4, 0xa4, 0x41, 0x1f, 0x00, 0x52, 0x2b, 0xc7, 0x8a, 0xe8, 0x0d, 0x98, 0x7e, 0x66, 0x0f, 0x69, + 0x68, 0xa0, 0xb5, 0xc1, 0x96, 0xe1, 0x57, 0x44, 0x7f, 0xda, 0xfc, 0x32, 0x05, 0x57, 0x3b, 0x8c, + 0x05, 0xfe, 0xbf, 0x1a, 0x94, 0x56, 0xbb, 0x86, 0xd3, 0x93, 0xc0, 0xef, 0x42, 0x96, 0x5f, 0x7c, + 0x04, 0xd7, 0xf0, 0x4a, 0x58, 0x8d, 0x2a, 0xcb, 0x0b, 0xab, 0xfc, 0x9a, 0x24, 0x7a, 0x51, 0xc3, + 0xc5, 0x73, 0xc4, 0x7a, 0xe4, 0x79, 0x62, 0x1d, 0xbd, 0x0e, 0x19, 0x83, 0x76, 0x61, 0x21, 0xb8, + 0x12, 0xbd, 0x72, 0x32, 0x6d, 0xec, 0xbc, 0xc7, 0xa5, 0xf0, 0xdb, 0x50, 0x54, 0x10, 0xe8, 0xa5, + 0xfa, 0x69, 0x53, 0x1c, 0xce, 0x56, 0xd7, 0x5a, 0x9b, 0xcf, 0xf9, 0x5d, 0xbb, 0x02, 0xb0, 0xde, + 0xf4, 0xcb, 0x29, 0xfc, 0xb1, 0xe8, 0x25, 0xe2, 0x9d, 0x6a, 0x8f, 0x96, 0x64, 0x4f, 0xea, 0xa5, + 0xec, 0x39, 0x87, 0xb2, 0x18, 0xfe, 0xb8, 0xe1, 0x9b, 0xe9, 0x4b, 0x08, 0xdf, 0x8a, 0xf1, 0xba, + 0x10, 0xc4, 0x53, 0x50, 0x16, 0x01, 0x5d, 0xac, 0xbf, 0xff, 0x48, 0x41, 0x45, 0xd6, 0x8c, 0xcb, + 0x89, 0x4a, 0x3a, 0x87, 0x67, 0x00, 0x9f, 0xcc, 0x99, 0x87, 0x6c, 0xe7, 0x68, 0xdf, 0xfc, 0x42, + 0xf2, 0xd7, 0xa2, 0x44, 0xeb, 0xbb, 0x1c, 0x87, 0x3f, 0x22, 0x89, 0x12, 0xbd, 0xd8, 0x3b, 0xc6, + 0xb1, 0xb7, 0x69, 0x75, 0xc8, 0x39, 0x3b, 0x53, 0x4e, 0xea, 0x41, 0x05, 0xbb, 0xe7, 0x8a, 0xc7, + 0x26, 0x76, 0x90, 0x54, 0x1e, 0x9f, 0xd0, 0x43, 0xa8, 0xd2, 0xef, 0xd5, 0x7e, 0xbf, 0x6b, 0x92, + 0x0e, 0x57, 0x90, 0x63, 0x32, 0x23, 0xf5, 0x14, 0x9d, 0x1d, 0xbd, 0xdc, 0x5a, 0x9e, 0x85, 0x2d, + 0x51, 0x42, 0x8b, 0x50, 0xe4, 0xf6, 0x6d, 0x5a, 0x07, 0x2e, 0x61, 0x2f, 0x30, 0x69, 0x5d, 0xad, + 0xa2, 0xfb, 0x78, 0x75, 0xe0, 0x9d, 0x36, 0x2d, 0xe3, 0xa8, 0x2b, 0xe3, 0x22, 0x4d, 0xe6, 0xb4, + 0x72, 0xdd, 0x74, 0xd5, 0xda, 0x26, 0xcc, 0xd0, 0x5a, 0x62, 0x79, 0x66, 0x5b, 0x09, 0xa2, 0x32, + 0x55, 0x6a, 0x91, 0x54, 0x69, 0xb8, 0xee, 0x0b, 0xdb, 0xe9, 0x08, 0x07, 0xfa, 0x65, 0x3c, 0xe4, + 0xca, 0x0f, 0xdc, 0x50, 0x32, 0xfc, 0x91, 0x5a, 0xd0, 0x1b, 0x90, 0xb3, 0xfb, 0xec, 0xcd, 0x50, + 0xf0, 0x93, 0xf3, 0xcb, 0xfc, 0x95, 0x71, 0x59, 0x28, 0xde, 0xe5, 0xad, 0xba, 0x14, 0xc3, 0x4b, + 0x01, 0xee, 0x53, 0xe2, 0x5d, 0x82, 0x8b, 0x1f, 0xc1, 0x9c, 0x94, 0x14, 0x3c, 0xe6, 0x25, 0xc2, + 0xbb, 0x70, 0x4b, 0x0a, 0xaf, 0x9d, 0xd2, 0x8b, 0xe2, 0x9e, 0x30, 0xf1, 0xa7, 0xfa, 0xe7, 0x09, + 0xd4, 0x7c, 0x3b, 0xd9, 0x21, 0xde, 0xee, 0xaa, 0x06, 0x0c, 0x5c, 0xb1, 0x96, 0x0b, 0x3a, 0xfb, + 0xa6, 0x75, 0x8e, 0xdd, 0xf5, 0x8f, 0x2a, 0xf4, 0x1b, 0xaf, 0xc1, 0x75, 0xa9, 0x43, 0x1c, 0xaf, + 0xc3, 0x4a, 0x46, 0x0c, 0x8a, 0x53, 0x22, 0x1c, 0x46, 0xbb, 0x5e, 0x3e, 0x51, 0xaa, 0x64, 0xd8, + 0xb5, 0x4c, 0xa7, 0xa6, 0xe8, 0x9c, 0xe3, 0x6b, 0x88, 0x1a, 0xa6, 0x66, 0x32, 0x51, 0x4d, 0x15, + 0xa8, 0xd5, 0x62, 0x22, 0x68, 0xf5, 0xc8, 0x44, 0x8c, 0xa8, 0xfe, 0x0c, 0x16, 0x7c, 0x23, 0xa8, + 0xdf, 0xf6, 0x88, 0xd3, 0x33, 0x5d, 0x57, 0x61, 0xbe, 0xe2, 0x06, 0xfe, 0x0a, 0x4c, 0xf6, 0x89, + 0x88, 0x75, 0xc5, 0x15, 0x24, 0x17, 0x91, 0xd2, 0x99, 0xb5, 0xe3, 0x0e, 0xdc, 0x96, 0xda, 0xb9, + 0x47, 0x63, 0xd5, 0x47, 0x8d, 0x92, 0x04, 0x43, 0x2a, 0x81, 0x60, 0x48, 0x47, 0xd8, 0xd8, 0x0f, + 0xb8, 0x23, 0xe5, 0x6e, 0x1c, 0x2b, 0x87, 0x6d, 0x71, 0x9f, 0xfa, 0x9b, 0x78, 0x2c, 0x65, 0x47, + 0x30, 0x1b, 0xde, 0xfb, 0x63, 0x85, 0xd7, 0x59, 0xc8, 0x78, 0xf6, 0x19, 0x91, 0xc1, 0x95, 0x17, + 0xa4, 0xc1, 0x7e, 0x60, 0x18, 0xcb, 0x60, 0x23, 0x50, 0xc6, 0x96, 0xe4, 0xb8, 0xf6, 0xd2, 0xd9, + 0x94, 0x87, 0x42, 0x5e, 0xc0, 0x3b, 0x30, 0x1f, 0x0d, 0x13, 0x63, 0x99, 0xfc, 0x9c, 0x2f, 0xe0, + 0xb8, 0x48, 0x32, 0x96, 0xde, 0x0f, 0x83, 0x60, 0xa0, 0x04, 0x94, 0xb1, 0x54, 0xea, 0x50, 0x8f, + 0x8b, 0x2f, 0x3f, 0xc7, 0x7a, 0xf5, 0xc3, 0xcd, 0x58, 0xca, 0xdc, 0x40, 0xd9, 0xf8, 0xd3, 0x1f, + 0xc4, 0x88, 0xf4, 0xa5, 0x31, 0x42, 0x6c, 0x92, 0x20, 0x8a, 0xfd, 0x02, 0x8b, 0x4e, 0x60, 0x04, + 0x01, 0x74, 0x5c, 0x0c, 0x9a, 0x43, 0x7c, 0x0c, 0x56, 0x90, 0x0b, 0x5b, 0x0d, 0xbb, 0x63, 0x4d, + 0xc6, 0x47, 0x41, 0xec, 0x1c, 0x89, 0xcc, 0x63, 0x29, 0xfe, 0x18, 0x16, 0x93, 0x83, 0xf2, 0x38, + 0x9a, 0x1f, 0x36, 0xa0, 0xe0, 0x1f, 0x74, 0x95, 0x9f, 0x79, 0x14, 0x21, 0xb7, 0xb3, 0xbb, 0xbf, + 0xb7, 0xba, 0xd6, 0xe4, 0xbf, 0xf3, 0x58, 0xdb, 0xd5, 0xf5, 0x83, 0xbd, 0x56, 0x35, 0xb5, 0xf2, + 0x43, 0x1a, 0x52, 0x5b, 0xcf, 0xd1, 0x27, 0x90, 0xe1, 0x8f, 0x9e, 0x97, 0xbc, 0x74, 0xd7, 0x2f, + 0x7b, 0xd7, 0xc5, 0xd7, 0xbe, 0xfa, 0xcd, 0x0f, 0xdf, 0xa6, 0xa6, 0x71, 0xa9, 0x31, 0x7c, 0xab, + 0x71, 0x36, 0x6c, 0xb0, 0xdc, 0xf0, 0x58, 0x7b, 0x88, 0x3e, 0x84, 0xf4, 0xde, 0xc0, 0x43, 0x89, + 0x2f, 0xe0, 0xf5, 0xe4, 0xa7, 0x5e, 0x3c, 0xc7, 0x94, 0x4e, 0x61, 0x10, 0x4a, 0xfb, 0x03, 0x8f, + 0xaa, 0xfc, 0x1c, 0x8a, 0xea, 0x43, 0xed, 0x95, 0xcf, 0xe2, 0xf5, 0xab, 0x1f, 0x81, 0xf1, 0x2d, + 0x06, 0x75, 0x0d, 0x23, 0x01, 0xc5, 0x9f, 0x92, 0xd5, 0x51, 0xb4, 0xce, 0x2d, 0x94, 0xf8, 0x68, + 0x5e, 0x4f, 0x7e, 0x17, 0x1e, 0x19, 0x85, 0x77, 0x6e, 0x51, 0x95, 0x7f, 0x21, 0x9e, 0x84, 0xdb, + 0x1e, 0xba, 0x1d, 0xf3, 0x24, 0xa8, 0x3e, 0x7e, 0xd5, 0x17, 0x93, 0x05, 0x04, 0xc8, 0x4d, 0x06, + 0x32, 0x8f, 0xa7, 0x05, 0x48, 0xdb, 0x17, 0x79, 0xac, 0x3d, 0x5c, 0x69, 0x43, 0x86, 0x31, 0xd8, + 0xe8, 0x53, 0xf9, 0x51, 0x8f, 0xa1, 0xec, 0x13, 0x26, 0x3a, 0xc4, 0x7d, 0xe3, 0x59, 0x06, 0x54, + 0xc1, 0x05, 0x0a, 0xc4, 0xf8, 0xeb, 0xc7, 0xda, 0xc3, 0x25, 0xed, 0x0d, 0x6d, 0xe5, 0xdf, 0x33, + 0x90, 0x61, 0x74, 0x15, 0x3a, 0x03, 0x08, 0xd8, 0xdc, 0xe8, 0xe8, 0x46, 0xf8, 0xe1, 0xe8, 0xe8, + 0x46, 0x89, 0x60, 0x5c, 0x67, 0xa0, 0xb3, 0x78, 0x8a, 0x82, 0x32, 0x16, 0xac, 0xc1, 0x88, 0x3d, + 0xea, 0xc7, 0xbf, 0xd3, 0x04, 0x5b, 0xc7, 0xf7, 0x12, 0x8a, 0xd3, 0x16, 0xa2, 0x74, 0xa3, 0xcb, + 0x21, 0x86, 0xce, 0xc5, 0xef, 0x30, 0xc0, 0x06, 0xae, 0x06, 0x80, 0x0e, 0x93, 0x78, 0xac, 0x3d, + 0xfc, 0xb4, 0x86, 0x67, 0x84, 0x97, 0x23, 0x2d, 0xe8, 0x4b, 0xa8, 0x84, 0x69, 0x5a, 0x74, 0x37, + 0x06, 0x2b, 0xca, 0xf6, 0xd6, 0xef, 0x5d, 0x2e, 0x24, 0x6c, 0x5a, 0x60, 0x36, 0x09, 0x70, 0x8e, + 0x7c, 0x46, 0x48, 0xdf, 0xa0, 0x42, 0x62, 0x0e, 0xd0, 0x3f, 0x6b, 0x30, 0x15, 0xe1, 0x5d, 0x51, + 0x9c, 0xf6, 0x11, 0x56, 0xb7, 0x7e, 0xff, 0x0a, 0x29, 0x61, 0xc4, 0x9f, 0x31, 0x23, 0xfe, 0x18, + 0xcf, 0x06, 0x46, 0x78, 0x66, 0x8f, 0x78, 0xb6, 0xb0, 0xe2, 0xd3, 0x9b, 0xf8, 0x5a, 0xc8, 0x39, + 0xa1, 0xd6, 0x60, 0xb2, 0x38, 0x77, 0x1a, 0x3b, 0x59, 0x21, 0x2e, 0x36, 0x76, 0xb2, 0xc2, 0xc4, + 0x6b, 0xdc, 0x64, 0x71, 0xa6, 0x34, 0x6e, 0xb2, 0xfc, 0x96, 0x15, 0xf6, 0xa3, 0x0c, 0xfe, 0x53, + 0x4c, 0x64, 0x43, 0xc1, 0xe7, 0x2d, 0xd1, 0x42, 0x1c, 0x87, 0x14, 0xdc, 0x25, 0xea, 0xb7, 0x13, + 0xdb, 0x85, 0x41, 0x77, 0x98, 0x41, 0x37, 0xf0, 0x3c, 0x45, 0x16, 0xbf, 0xf6, 0x6c, 0x70, 0xa2, + 0xa2, 0x61, 0x74, 0x3a, 0xd4, 0x11, 0x7f, 0x09, 0x25, 0x95, 0x58, 0x44, 0x77, 0x62, 0x79, 0x2b, + 0x95, 0x9b, 0xac, 0xe3, 0xcb, 0x44, 0x04, 0xf2, 0x3d, 0x86, 0xbc, 0x80, 0xaf, 0xc7, 0x20, 0x3b, + 0x4c, 0x34, 0x04, 0xce, 0x49, 0xc1, 0x78, 0xf0, 0x10, 0xe7, 0x18, 0x0f, 0x1e, 0xe6, 0x14, 0x2f, + 0x05, 0x1f, 0x30, 0x51, 0x0a, 0xee, 0x02, 0x04, 0xf4, 0x1f, 0x8a, 0xf5, 0xa5, 0x72, 0x99, 0x8a, + 0x06, 0x87, 0x51, 0xe6, 0x10, 0x63, 0x06, 0x2b, 0xd6, 0x5d, 0x04, 0xb6, 0x6b, 0xba, 0x34, 0x48, + 0xac, 0xfc, 0x7d, 0x16, 0x8a, 0xcf, 0x0c, 0xd3, 0xf2, 0x88, 0x65, 0x58, 0x6d, 0x82, 0x8e, 0x20, + 0xc3, 0x12, 0x65, 0x34, 0x0e, 0xaa, 0x8c, 0x58, 0x34, 0x0e, 0x86, 0xe8, 0x22, 0xbc, 0xc8, 0x50, + 0xeb, 0x78, 0x8e, 0xa2, 0xf6, 0x02, 0xd5, 0x0d, 0xc6, 0xf2, 0xd0, 0x81, 0x1e, 0x43, 0x56, 0x3c, + 0x20, 0x44, 0x14, 0x85, 0xd8, 0x9f, 0xfa, 0xcd, 0xf8, 0xc6, 0xb8, 0xa5, 0xa4, 0xc2, 0xb8, 0x4c, + 0x8e, 0xe2, 0x0c, 0x01, 0x02, 0xfa, 0x32, 0xea, 0xd0, 0x11, 0xb6, 0xb3, 0xbe, 0x98, 0x2c, 0x20, + 0x30, 0xef, 0x33, 0xcc, 0xdb, 0xb8, 0x1e, 0xc5, 0xec, 0xf8, 0xb2, 0x14, 0xf7, 0xcf, 0x61, 0x72, + 0xc3, 0x70, 0x4f, 0x51, 0x24, 0xf5, 0x29, 0xbf, 0x90, 0xa8, 0xd7, 0xe3, 0x9a, 0x04, 0xca, 0x6d, + 0x86, 0x72, 0x9d, 0x47, 0x12, 0x15, 0xe5, 0xd4, 0x70, 0x69, 0x4e, 0x41, 0x1d, 0xc8, 0xf2, 0x1f, + 0x4c, 0x44, 0xfd, 0x17, 0xfa, 0xd1, 0x45, 0xd4, 0x7f, 0xe1, 0xdf, 0x58, 0x5c, 0x8d, 0xd2, 0x87, + 0xbc, 0xfc, 0x85, 0x02, 0xba, 0x15, 0x99, 0x8a, 0xf0, 0xaf, 0x19, 0xea, 0x0b, 0x49, 0xcd, 0x02, + 0xeb, 0x2e, 0xc3, 0xba, 0x85, 0x6b, 0x23, 0x73, 0x25, 0x24, 0x1f, 0x6b, 0x0f, 0xdf, 0xd0, 0xd0, + 0x97, 0x00, 0x01, 0xe3, 0x3b, 0xb2, 0x01, 0xa2, 0xe4, 0xf1, 0xc8, 0x06, 0x18, 0x21, 0x8b, 0xf1, + 0x32, 0xc3, 0x5d, 0xc2, 0x77, 0xa3, 0xb8, 0x9e, 0x63, 0x58, 0xee, 0x31, 0x71, 0x5e, 0xe7, 0xac, + 0x9e, 0x7b, 0x6a, 0xf6, 0xe9, 0x66, 0xf8, 0xef, 0x29, 0x98, 0xa4, 0x07, 0x50, 0x9a, 0xa7, 0x83, + 0x7b, 0x7b, 0xd4, 0x92, 0x11, 0x7e, 0x2d, 0x6a, 0xc9, 0xe8, 0x95, 0x3f, 0x9c, 0xa7, 0xd9, 0x6f, + 0xe8, 0x09, 0x13, 0xa0, 0x8e, 0xb6, 0xa1, 0xa8, 0x5c, 0xec, 0x51, 0x8c, 0xb2, 0x30, 0x71, 0x17, + 0x8d, 0xfc, 0x31, 0xac, 0x00, 0xbe, 0xc1, 0xf0, 0xe6, 0x78, 0xe4, 0x67, 0x78, 0x1d, 0x2e, 0x41, + 0x01, 0x5f, 0x40, 0x49, 0xbd, 0xfc, 0xa3, 0x18, 0x7d, 0x11, 0x52, 0x30, 0x1a, 0xe5, 0xe2, 0xb8, + 0x83, 0xf0, 0xc6, 0xf7, 0xff, 0x9f, 0x80, 0x14, 0xa3, 0xc0, 0x5d, 0xc8, 0x09, 0x36, 0x20, 0x6e, + 0x94, 0x61, 0x06, 0x31, 0x6e, 0x94, 0x11, 0x2a, 0x21, 0x7c, 0xb6, 0x63, 0x88, 0xf4, 0xc2, 0x23, + 0x33, 0x89, 0x40, 0x7b, 0x4a, 0xbc, 0x24, 0xb4, 0x80, 0xdc, 0x4a, 0x42, 0x53, 0x2e, 0x9b, 0x49, + 0x68, 0x27, 0xc4, 0x13, 0xdb, 0x45, 0x5e, 0xe2, 0x50, 0x82, 0x32, 0x35, 0x7a, 0xe3, 0xcb, 0x44, + 0xe2, 0x8e, 0xde, 0x01, 0xa0, 0x08, 0xdd, 0xe8, 0x1c, 0x20, 0xe0, 0x2a, 0xa2, 0xe7, 0xa9, 0x58, + 0xc2, 0x33, 0x7a, 0x9e, 0x8a, 0xa7, 0x3b, 0xc2, 0xa1, 0x21, 0xc0, 0xe5, 0x27, 0x7f, 0x8a, 0xfc, + 0x8d, 0x06, 0x68, 0x94, 0xd6, 0x40, 0x8f, 0xe2, 0xb5, 0xc7, 0xd2, 0xa8, 0xf5, 0xd7, 0x5e, 0x4e, + 0x38, 0x2e, 0xda, 0x07, 0x26, 0xb5, 0x99, 0x74, 0xff, 0x05, 0x35, 0xea, 0x6f, 0x34, 0x28, 0x87, + 0x38, 0x11, 0xf4, 0x4a, 0xc2, 0x9c, 0x46, 0x58, 0xd8, 0xfa, 0x83, 0x2b, 0xe5, 0xe2, 0x0e, 0x9a, + 0xca, 0x0a, 0x90, 0x27, 0xee, 0xaf, 0x35, 0xa8, 0x84, 0x39, 0x14, 0x94, 0xa0, 0x7b, 0x84, 0xc5, + 0xad, 0x2f, 0x5d, 0x2d, 0x78, 0xf9, 0xf4, 0x04, 0x87, 0xed, 0x2e, 0xe4, 0x04, 0xeb, 0x12, 0xb7, + 0xf0, 0xc3, 0xfc, 0x6f, 0xdc, 0xc2, 0x8f, 0x50, 0x36, 0x31, 0x0b, 0xdf, 0xb1, 0xbb, 0x44, 0xd9, + 0x66, 0x82, 0x96, 0x49, 0x42, 0xbb, 0x7c, 0x9b, 0x45, 0x38, 0x9d, 0x24, 0xb4, 0x60, 0x9b, 0x49, + 0x3e, 0x06, 0x25, 0x28, 0xbb, 0x62, 0x9b, 0x45, 0xe9, 0x9c, 0x98, 0x6d, 0xc6, 0x00, 0x95, 0x6d, + 0x16, 0x30, 0x27, 0x71, 0xdb, 0x6c, 0x84, 0xce, 0x8e, 0xdb, 0x66, 0xa3, 0xe4, 0x4b, 0xcc, 0x3c, + 0x32, 0xdc, 0xd0, 0x36, 0x9b, 0x89, 0x21, 0x59, 0xd0, 0x6b, 0x09, 0x4e, 0x8c, 0x65, 0xc9, 0xeb, + 0xaf, 0xbf, 0xa4, 0x74, 0xe2, 0x1a, 0xe7, 0xee, 0x97, 0x6b, 0xfc, 0x1f, 0x34, 0x98, 0x8d, 0x23, + 0x68, 0x50, 0x02, 0x4e, 0x02, 0xbb, 0x5e, 0x5f, 0x7e, 0x59, 0xf1, 0xcb, 0xbd, 0xe5, 0xaf, 0xfa, + 0x27, 0xd5, 0xff, 0xf9, 0x7e, 0x41, 0xfb, 0xbf, 0xef, 0x17, 0xb4, 0xdf, 0x7e, 0xbf, 0xa0, 0xfd, + 0xe3, 0xef, 0x16, 0x26, 0x8e, 0xb2, 0xec, 0x7f, 0x9f, 0xbd, 0xf5, 0x87, 0x00, 0x00, 0x00, 0xff, + 0xff, 0xdf, 0xcb, 0x11, 0x22, 0x04, 0x37, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/rpc.proto b/etcdserver/etcdserverpb/rpc.proto index b4ed52056ab9..4a8cbd228747 100644 --- a/etcdserver/etcdserverpb/rpc.proto +++ b/etcdserver/etcdserverpb/rpc.proto @@ -958,6 +958,7 @@ message AuthenticateRequest { message AuthUserAddRequest { string name = 1; string password = 2; + authpb.UserAddOptions options = 3; } message AuthUserGetRequest { diff --git a/integration/v3_auth_test.go b/integration/v3_auth_test.go index bec4f8ae4230..ab5d303e2130 100644 --- a/integration/v3_auth_test.go +++ b/integration/v3_auth_test.go @@ -96,7 +96,7 @@ func TestV3AuthRevision(t *testing.T) { rev := presp.Header.Revision ctx, cancel = context.WithTimeout(context.Background(), 5*time.Second) - aresp, aerr := api.Auth.UserAdd(ctx, &pb.AuthUserAddRequest{Name: "root", Password: "123"}) + aresp, aerr := api.Auth.UserAdd(ctx, &pb.AuthUserAddRequest{Name: "root", Password: "123", Options: &authpb.UserAddOptions{NoPassword: false}}) cancel() if aerr != nil { t.Fatal(aerr) @@ -294,7 +294,7 @@ func TestV3AuthWithLeaseAttach(t *testing.T) { func authSetupUsers(t *testing.T, auth pb.AuthClient, users []user) { for _, user := range users { - if _, err := auth.UserAdd(context.TODO(), &pb.AuthUserAddRequest{Name: user.name, Password: user.password}); err != nil { + if _, err := auth.UserAdd(context.TODO(), &pb.AuthUserAddRequest{Name: user.name, Password: user.password, Options: &authpb.UserAddOptions{NoPassword: false}}); err != nil { t.Fatal(err) } if _, err := auth.RoleAdd(context.TODO(), &pb.AuthRoleAddRequest{Name: user.role}); err != nil { diff --git a/tests/e2e/v3_curl_test.go b/tests/e2e/v3_curl_test.go index 1515cfb3112b..e4b881298643 100644 --- a/tests/e2e/v3_curl_test.go +++ b/tests/e2e/v3_curl_test.go @@ -22,6 +22,7 @@ import ( "strconv" "testing" + "github.com/coreos/etcd/auth/authpb" epb "github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb" "github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes" pb "github.com/coreos/etcd/etcdserver/etcdserverpb" @@ -181,7 +182,7 @@ func testV3CurlTxn(cx ctlCtx) { func testV3CurlAuth(cx ctlCtx) { // create root user - userreq, err := json.Marshal(&pb.AuthUserAddRequest{Name: string("root"), Password: string("toor")}) + userreq, err := json.Marshal(&pb.AuthUserAddRequest{Name: string("root"), Password: string("toor"), Options: &authpb.UserAddOptions{NoPassword: false}}) testutil.AssertNil(cx.t, err) p := cx.apiPrefix diff --git a/tools/etcd-dump-logs/etcd-dump-log_test.go b/tools/etcd-dump-logs/etcd-dump-log_test.go index ef0d49f2b38b..786e32d8e3a8 100644 --- a/tools/etcd-dump-logs/etcd-dump-log_test.go +++ b/tools/etcd-dump-logs/etcd-dump-log_test.go @@ -203,7 +203,7 @@ func appendNormalIRREnts(ents *[]raftpb.Entry) { irrauthenticate := &etcdserverpb.InternalAuthenticateRequest{Name: "myname", Password: "password", SimpleToken: "token"} - irrauthuseradd := &etcdserverpb.AuthUserAddRequest{Name: "name1", Password: "pass1"} + irrauthuseradd := &etcdserverpb.AuthUserAddRequest{Name: "name1", Password: "pass1", Options: &authpb.UserAddOptions{NoPassword: false}} irrauthuserdelete := &etcdserverpb.AuthUserDeleteRequest{Name: "name1"}