|
@@ -225,13 +225,20 @@ pub enum UserErrCode {
|
|
UserNotLoginYet = 10,
|
|
UserNotLoginYet = 10,
|
|
ReadCurrentIdFailed = 11,
|
|
ReadCurrentIdFailed = 11,
|
|
WriteCurrentIdFailed = 12,
|
|
WriteCurrentIdFailed = 12,
|
|
- EmailInvalid = 20,
|
|
|
|
- PasswordInvalid = 21,
|
|
|
|
- UserNameInvalid = 22,
|
|
|
|
- UserWorkspaceInvalid = 23,
|
|
|
|
- UserIdInvalid = 24,
|
|
|
|
- CreateDefaultWorkspaceFailed = 25,
|
|
|
|
- DefaultWorkspaceAlreadyExist = 26,
|
|
|
|
|
|
+ EmailIsEmpty = 20,
|
|
|
|
+ EmailFormatInvalid = 21,
|
|
|
|
+ EmailAlreadyExists = 22,
|
|
|
|
+ PasswordIsEmpty = 30,
|
|
|
|
+ PasswordTooLong = 31,
|
|
|
|
+ PasswordContainsForbidCharacters = 32,
|
|
|
|
+ PasswordFormatInvalid = 33,
|
|
|
|
+ UserNameTooLong = 40,
|
|
|
|
+ UserNameContainsForbiddenCharacters = 41,
|
|
|
|
+ UserNameIsEmpty = 42,
|
|
|
|
+ UserWorkspaceInvalid = 50,
|
|
|
|
+ UserIdInvalid = 51,
|
|
|
|
+ CreateDefaultWorkspaceFailed = 52,
|
|
|
|
+ DefaultWorkspaceAlreadyExist = 53,
|
|
NetworkError = 100,
|
|
NetworkError = 100,
|
|
}
|
|
}
|
|
|
|
|
|
@@ -252,13 +259,20 @@ impl ::protobuf::ProtobufEnum for UserErrCode {
|
|
10 => ::std::option::Option::Some(UserErrCode::UserNotLoginYet),
|
|
10 => ::std::option::Option::Some(UserErrCode::UserNotLoginYet),
|
|
11 => ::std::option::Option::Some(UserErrCode::ReadCurrentIdFailed),
|
|
11 => ::std::option::Option::Some(UserErrCode::ReadCurrentIdFailed),
|
|
12 => ::std::option::Option::Some(UserErrCode::WriteCurrentIdFailed),
|
|
12 => ::std::option::Option::Some(UserErrCode::WriteCurrentIdFailed),
|
|
- 20 => ::std::option::Option::Some(UserErrCode::EmailInvalid),
|
|
|
|
- 21 => ::std::option::Option::Some(UserErrCode::PasswordInvalid),
|
|
|
|
- 22 => ::std::option::Option::Some(UserErrCode::UserNameInvalid),
|
|
|
|
- 23 => ::std::option::Option::Some(UserErrCode::UserWorkspaceInvalid),
|
|
|
|
- 24 => ::std::option::Option::Some(UserErrCode::UserIdInvalid),
|
|
|
|
- 25 => ::std::option::Option::Some(UserErrCode::CreateDefaultWorkspaceFailed),
|
|
|
|
- 26 => ::std::option::Option::Some(UserErrCode::DefaultWorkspaceAlreadyExist),
|
|
|
|
|
|
+ 20 => ::std::option::Option::Some(UserErrCode::EmailIsEmpty),
|
|
|
|
+ 21 => ::std::option::Option::Some(UserErrCode::EmailFormatInvalid),
|
|
|
|
+ 22 => ::std::option::Option::Some(UserErrCode::EmailAlreadyExists),
|
|
|
|
+ 30 => ::std::option::Option::Some(UserErrCode::PasswordIsEmpty),
|
|
|
|
+ 31 => ::std::option::Option::Some(UserErrCode::PasswordTooLong),
|
|
|
|
+ 32 => ::std::option::Option::Some(UserErrCode::PasswordContainsForbidCharacters),
|
|
|
|
+ 33 => ::std::option::Option::Some(UserErrCode::PasswordFormatInvalid),
|
|
|
|
+ 40 => ::std::option::Option::Some(UserErrCode::UserNameTooLong),
|
|
|
|
+ 41 => ::std::option::Option::Some(UserErrCode::UserNameContainsForbiddenCharacters),
|
|
|
|
+ 42 => ::std::option::Option::Some(UserErrCode::UserNameIsEmpty),
|
|
|
|
+ 50 => ::std::option::Option::Some(UserErrCode::UserWorkspaceInvalid),
|
|
|
|
+ 51 => ::std::option::Option::Some(UserErrCode::UserIdInvalid),
|
|
|
|
+ 52 => ::std::option::Option::Some(UserErrCode::CreateDefaultWorkspaceFailed),
|
|
|
|
+ 53 => ::std::option::Option::Some(UserErrCode::DefaultWorkspaceAlreadyExist),
|
|
100 => ::std::option::Option::Some(UserErrCode::NetworkError),
|
|
100 => ::std::option::Option::Some(UserErrCode::NetworkError),
|
|
_ => ::std::option::Option::None
|
|
_ => ::std::option::Option::None
|
|
}
|
|
}
|
|
@@ -276,9 +290,16 @@ impl ::protobuf::ProtobufEnum for UserErrCode {
|
|
UserErrCode::UserNotLoginYet,
|
|
UserErrCode::UserNotLoginYet,
|
|
UserErrCode::ReadCurrentIdFailed,
|
|
UserErrCode::ReadCurrentIdFailed,
|
|
UserErrCode::WriteCurrentIdFailed,
|
|
UserErrCode::WriteCurrentIdFailed,
|
|
- UserErrCode::EmailInvalid,
|
|
|
|
- UserErrCode::PasswordInvalid,
|
|
|
|
- UserErrCode::UserNameInvalid,
|
|
|
|
|
|
+ UserErrCode::EmailIsEmpty,
|
|
|
|
+ UserErrCode::EmailFormatInvalid,
|
|
|
|
+ UserErrCode::EmailAlreadyExists,
|
|
|
|
+ UserErrCode::PasswordIsEmpty,
|
|
|
|
+ UserErrCode::PasswordTooLong,
|
|
|
|
+ UserErrCode::PasswordContainsForbidCharacters,
|
|
|
|
+ UserErrCode::PasswordFormatInvalid,
|
|
|
|
+ UserErrCode::UserNameTooLong,
|
|
|
|
+ UserErrCode::UserNameContainsForbiddenCharacters,
|
|
|
|
+ UserErrCode::UserNameIsEmpty,
|
|
UserErrCode::UserWorkspaceInvalid,
|
|
UserErrCode::UserWorkspaceInvalid,
|
|
UserErrCode::UserIdInvalid,
|
|
UserErrCode::UserIdInvalid,
|
|
UserErrCode::CreateDefaultWorkspaceFailed,
|
|
UserErrCode::CreateDefaultWorkspaceFailed,
|
|
@@ -314,62 +335,80 @@ impl ::protobuf::reflect::ProtobufValue for UserErrCode {
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
\n\x0cerrors.proto\"?\n\tUserError\x12\x20\n\x04code\x18\x01\x20\x01(\
|
|
\n\x0cerrors.proto\"?\n\tUserError\x12\x20\n\x04code\x18\x01\x20\x01(\
|
|
\x0e2\x0c.UserErrCodeR\x04code\x12\x10\n\x03msg\x18\x02\x20\x01(\tR\x03m\
|
|
\x0e2\x0c.UserErrCodeR\x04code\x12\x10\n\x03msg\x18\x02\x20\x01(\tR\x03m\
|
|
- sg*\xc8\x03\n\x0bUserErrCode\x12\x0b\n\x07Unknown\x10\0\x12\x1a\n\x16Use\
|
|
|
|
|
|
+ sg*\x8c\x05\n\x0bUserErrCode\x12\x0b\n\x07Unknown\x10\0\x12\x1a\n\x16Use\
|
|
rDatabaseInitFailed\x10\x01\x12\x1b\n\x17UserDatabaseWriteLocked\x10\x02\
|
|
rDatabaseInitFailed\x10\x01\x12\x1b\n\x17UserDatabaseWriteLocked\x10\x02\
|
|
\x12\x1a\n\x16UserDatabaseReadLocked\x10\x03\x12\x1b\n\x17UserDatabaseDi\
|
|
\x12\x1a\n\x16UserDatabaseReadLocked\x10\x03\x12\x1b\n\x17UserDatabaseDi\
|
|
dNotMatch\x10\x04\x12\x1d\n\x19UserDatabaseInternalError\x10\x05\x12\x14\
|
|
dNotMatch\x10\x04\x12\x1d\n\x19UserDatabaseInternalError\x10\x05\x12\x14\
|
|
\n\x10SqlInternalError\x10\x06\x12\x13\n\x0fUserNotLoginYet\x10\n\x12\
|
|
\n\x10SqlInternalError\x10\x06\x12\x13\n\x0fUserNotLoginYet\x10\n\x12\
|
|
\x17\n\x13ReadCurrentIdFailed\x10\x0b\x12\x18\n\x14WriteCurrentIdFailed\
|
|
\x17\n\x13ReadCurrentIdFailed\x10\x0b\x12\x18\n\x14WriteCurrentIdFailed\
|
|
- \x10\x0c\x12\x10\n\x0cEmailInvalid\x10\x14\x12\x13\n\x0fPasswordInvalid\
|
|
|
|
- \x10\x15\x12\x13\n\x0fUserNameInvalid\x10\x16\x12\x18\n\x14UserWorkspace\
|
|
|
|
- Invalid\x10\x17\x12\x11\n\rUserIdInvalid\x10\x18\x12\x20\n\x1cCreateDefa\
|
|
|
|
- ultWorkspaceFailed\x10\x19\x12\x20\n\x1cDefaultWorkspaceAlreadyExist\x10\
|
|
|
|
- \x1a\x12\x10\n\x0cNetworkError\x10dJ\x92\x07\n\x06\x12\x04\0\0\x19\x01\n\
|
|
|
|
- \x08\n\x01\x0c\x12\x03\0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\x05\x01\n\n\
|
|
|
|
- \n\x03\x04\0\x01\x12\x03\x02\x08\x11\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\
|
|
|
|
- \x04\x19\n\x0c\n\x05\x04\0\x02\0\x06\x12\x03\x03\x04\x0f\n\x0c\n\x05\x04\
|
|
|
|
- \0\x02\0\x01\x12\x03\x03\x10\x14\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\
|
|
|
|
- \x17\x18\n\x0b\n\x04\x04\0\x02\x01\x12\x03\x04\x04\x13\n\x0c\n\x05\x04\0\
|
|
|
|
- \x02\x01\x05\x12\x03\x04\x04\n\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\x04\
|
|
|
|
- \x0b\x0e\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\x04\x11\x12\n\n\n\x02\x05\
|
|
|
|
- \0\x12\x04\x06\0\x19\x01\n\n\n\x03\x05\0\x01\x12\x03\x06\x05\x10\n\x0b\n\
|
|
|
|
- \x04\x05\0\x02\0\x12\x03\x07\x04\x10\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\
|
|
|
|
- \x07\x04\x0b\n\x0c\n\x05\x05\0\x02\0\x02\x12\x03\x07\x0e\x0f\n\x0b\n\x04\
|
|
|
|
- \x05\0\x02\x01\x12\x03\x08\x04\x1f\n\x0c\n\x05\x05\0\x02\x01\x01\x12\x03\
|
|
|
|
- \x08\x04\x1a\n\x0c\n\x05\x05\0\x02\x01\x02\x12\x03\x08\x1d\x1e\n\x0b\n\
|
|
|
|
- \x04\x05\0\x02\x02\x12\x03\t\x04\x20\n\x0c\n\x05\x05\0\x02\x02\x01\x12\
|
|
|
|
- \x03\t\x04\x1b\n\x0c\n\x05\x05\0\x02\x02\x02\x12\x03\t\x1e\x1f\n\x0b\n\
|
|
|
|
- \x04\x05\0\x02\x03\x12\x03\n\x04\x1f\n\x0c\n\x05\x05\0\x02\x03\x01\x12\
|
|
|
|
- \x03\n\x04\x1a\n\x0c\n\x05\x05\0\x02\x03\x02\x12\x03\n\x1d\x1e\n\x0b\n\
|
|
|
|
- \x04\x05\0\x02\x04\x12\x03\x0b\x04\x20\n\x0c\n\x05\x05\0\x02\x04\x01\x12\
|
|
|
|
- \x03\x0b\x04\x1b\n\x0c\n\x05\x05\0\x02\x04\x02\x12\x03\x0b\x1e\x1f\n\x0b\
|
|
|
|
- \n\x04\x05\0\x02\x05\x12\x03\x0c\x04\"\n\x0c\n\x05\x05\0\x02\x05\x01\x12\
|
|
|
|
- \x03\x0c\x04\x1d\n\x0c\n\x05\x05\0\x02\x05\x02\x12\x03\x0c\x20!\n\x0b\n\
|
|
|
|
- \x04\x05\0\x02\x06\x12\x03\r\x04\x19\n\x0c\n\x05\x05\0\x02\x06\x01\x12\
|
|
|
|
- \x03\r\x04\x14\n\x0c\n\x05\x05\0\x02\x06\x02\x12\x03\r\x17\x18\n\x0b\n\
|
|
|
|
- \x04\x05\0\x02\x07\x12\x03\x0e\x04\x19\n\x0c\n\x05\x05\0\x02\x07\x01\x12\
|
|
|
|
- \x03\x0e\x04\x13\n\x0c\n\x05\x05\0\x02\x07\x02\x12\x03\x0e\x16\x18\n\x0b\
|
|
|
|
- \n\x04\x05\0\x02\x08\x12\x03\x0f\x04\x1d\n\x0c\n\x05\x05\0\x02\x08\x01\
|
|
|
|
- \x12\x03\x0f\x04\x17\n\x0c\n\x05\x05\0\x02\x08\x02\x12\x03\x0f\x1a\x1c\n\
|
|
|
|
- \x0b\n\x04\x05\0\x02\t\x12\x03\x10\x04\x1e\n\x0c\n\x05\x05\0\x02\t\x01\
|
|
|
|
- \x12\x03\x10\x04\x18\n\x0c\n\x05\x05\0\x02\t\x02\x12\x03\x10\x1b\x1d\n\
|
|
|
|
- \x0b\n\x04\x05\0\x02\n\x12\x03\x11\x04\x16\n\x0c\n\x05\x05\0\x02\n\x01\
|
|
|
|
- \x12\x03\x11\x04\x10\n\x0c\n\x05\x05\0\x02\n\x02\x12\x03\x11\x13\x15\n\
|
|
|
|
- \x0b\n\x04\x05\0\x02\x0b\x12\x03\x12\x04\x19\n\x0c\n\x05\x05\0\x02\x0b\
|
|
|
|
- \x01\x12\x03\x12\x04\x13\n\x0c\n\x05\x05\0\x02\x0b\x02\x12\x03\x12\x16\
|
|
|
|
- \x18\n\x0b\n\x04\x05\0\x02\x0c\x12\x03\x13\x04\x19\n\x0c\n\x05\x05\0\x02\
|
|
|
|
- \x0c\x01\x12\x03\x13\x04\x13\n\x0c\n\x05\x05\0\x02\x0c\x02\x12\x03\x13\
|
|
|
|
- \x16\x18\n\x0b\n\x04\x05\0\x02\r\x12\x03\x14\x04\x1e\n\x0c\n\x05\x05\0\
|
|
|
|
- \x02\r\x01\x12\x03\x14\x04\x18\n\x0c\n\x05\x05\0\x02\r\x02\x12\x03\x14\
|
|
|
|
- \x1b\x1d\n\x0b\n\x04\x05\0\x02\x0e\x12\x03\x15\x04\x17\n\x0c\n\x05\x05\0\
|
|
|
|
- \x02\x0e\x01\x12\x03\x15\x04\x11\n\x0c\n\x05\x05\0\x02\x0e\x02\x12\x03\
|
|
|
|
- \x15\x14\x16\n\x0b\n\x04\x05\0\x02\x0f\x12\x03\x16\x04&\n\x0c\n\x05\x05\
|
|
|
|
- \0\x02\x0f\x01\x12\x03\x16\x04\x20\n\x0c\n\x05\x05\0\x02\x0f\x02\x12\x03\
|
|
|
|
- \x16#%\n\x0b\n\x04\x05\0\x02\x10\x12\x03\x17\x04&\n\x0c\n\x05\x05\0\x02\
|
|
|
|
- \x10\x01\x12\x03\x17\x04\x20\n\x0c\n\x05\x05\0\x02\x10\x02\x12\x03\x17#%\
|
|
|
|
- \n\x0b\n\x04\x05\0\x02\x11\x12\x03\x18\x04\x17\n\x0c\n\x05\x05\0\x02\x11\
|
|
|
|
- \x01\x12\x03\x18\x04\x10\n\x0c\n\x05\x05\0\x02\x11\x02\x12\x03\x18\x13\
|
|
|
|
- \x16b\x06proto3\
|
|
|
|
|
|
+ \x10\x0c\x12\x10\n\x0cEmailIsEmpty\x10\x14\x12\x16\n\x12EmailFormatInval\
|
|
|
|
+ id\x10\x15\x12\x16\n\x12EmailAlreadyExists\x10\x16\x12\x13\n\x0fPassword\
|
|
|
|
+ IsEmpty\x10\x1e\x12\x13\n\x0fPasswordTooLong\x10\x1f\x12$\n\x20PasswordC\
|
|
|
|
+ ontainsForbidCharacters\x10\x20\x12\x19\n\x15PasswordFormatInvalid\x10!\
|
|
|
|
+ \x12\x13\n\x0fUserNameTooLong\x10(\x12'\n#UserNameContainsForbiddenChara\
|
|
|
|
+ cters\x10)\x12\x13\n\x0fUserNameIsEmpty\x10*\x12\x18\n\x14UserWorkspaceI\
|
|
|
|
+ nvalid\x102\x12\x11\n\rUserIdInvalid\x103\x12\x20\n\x1cCreateDefaultWork\
|
|
|
|
+ spaceFailed\x104\x12\x20\n\x1cDefaultWorkspaceAlreadyExist\x105\x12\x10\
|
|
|
|
+ \n\x0cNetworkError\x10dJ\xb1\t\n\x06\x12\x04\0\0\x20\x01\n\x08\n\x01\x0c\
|
|
|
|
+ \x12\x03\0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\x05\x01\n\n\n\x03\x04\0\
|
|
|
|
+ \x01\x12\x03\x02\x08\x11\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\x04\x19\n\
|
|
|
|
+ \x0c\n\x05\x04\0\x02\0\x06\x12\x03\x03\x04\x0f\n\x0c\n\x05\x04\0\x02\0\
|
|
|
|
+ \x01\x12\x03\x03\x10\x14\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\x17\x18\
|
|
|
|
+ \n\x0b\n\x04\x04\0\x02\x01\x12\x03\x04\x04\x13\n\x0c\n\x05\x04\0\x02\x01\
|
|
|
|
+ \x05\x12\x03\x04\x04\n\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\x04\x0b\x0e\
|
|
|
|
+ \n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\x04\x11\x12\n\n\n\x02\x05\0\x12\
|
|
|
|
+ \x04\x06\0\x20\x01\n\n\n\x03\x05\0\x01\x12\x03\x06\x05\x10\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\0\x12\x03\x07\x04\x10\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\x07\
|
|
|
|
+ \x04\x0b\n\x0c\n\x05\x05\0\x02\0\x02\x12\x03\x07\x0e\x0f\n\x0b\n\x04\x05\
|
|
|
|
+ \0\x02\x01\x12\x03\x08\x04\x1f\n\x0c\n\x05\x05\0\x02\x01\x01\x12\x03\x08\
|
|
|
|
+ \x04\x1a\n\x0c\n\x05\x05\0\x02\x01\x02\x12\x03\x08\x1d\x1e\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x02\x12\x03\t\x04\x20\n\x0c\n\x05\x05\0\x02\x02\x01\x12\x03\t\
|
|
|
|
+ \x04\x1b\n\x0c\n\x05\x05\0\x02\x02\x02\x12\x03\t\x1e\x1f\n\x0b\n\x04\x05\
|
|
|
|
+ \0\x02\x03\x12\x03\n\x04\x1f\n\x0c\n\x05\x05\0\x02\x03\x01\x12\x03\n\x04\
|
|
|
|
+ \x1a\n\x0c\n\x05\x05\0\x02\x03\x02\x12\x03\n\x1d\x1e\n\x0b\n\x04\x05\0\
|
|
|
|
+ \x02\x04\x12\x03\x0b\x04\x20\n\x0c\n\x05\x05\0\x02\x04\x01\x12\x03\x0b\
|
|
|
|
+ \x04\x1b\n\x0c\n\x05\x05\0\x02\x04\x02\x12\x03\x0b\x1e\x1f\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x05\x12\x03\x0c\x04\"\n\x0c\n\x05\x05\0\x02\x05\x01\x12\x03\
|
|
|
|
+ \x0c\x04\x1d\n\x0c\n\x05\x05\0\x02\x05\x02\x12\x03\x0c\x20!\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x06\x12\x03\r\x04\x19\n\x0c\n\x05\x05\0\x02\x06\x01\x12\x03\r\
|
|
|
|
+ \x04\x14\n\x0c\n\x05\x05\0\x02\x06\x02\x12\x03\r\x17\x18\n\x0b\n\x04\x05\
|
|
|
|
+ \0\x02\x07\x12\x03\x0e\x04\x19\n\x0c\n\x05\x05\0\x02\x07\x01\x12\x03\x0e\
|
|
|
|
+ \x04\x13\n\x0c\n\x05\x05\0\x02\x07\x02\x12\x03\x0e\x16\x18\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x08\x12\x03\x0f\x04\x1d\n\x0c\n\x05\x05\0\x02\x08\x01\x12\x03\
|
|
|
|
+ \x0f\x04\x17\n\x0c\n\x05\x05\0\x02\x08\x02\x12\x03\x0f\x1a\x1c\n\x0b\n\
|
|
|
|
+ \x04\x05\0\x02\t\x12\x03\x10\x04\x1e\n\x0c\n\x05\x05\0\x02\t\x01\x12\x03\
|
|
|
|
+ \x10\x04\x18\n\x0c\n\x05\x05\0\x02\t\x02\x12\x03\x10\x1b\x1d\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\n\x12\x03\x11\x04\x16\n\x0c\n\x05\x05\0\x02\n\x01\x12\x03\x11\
|
|
|
|
+ \x04\x10\n\x0c\n\x05\x05\0\x02\n\x02\x12\x03\x11\x13\x15\n\x0b\n\x04\x05\
|
|
|
|
+ \0\x02\x0b\x12\x03\x12\x04\x1c\n\x0c\n\x05\x05\0\x02\x0b\x01\x12\x03\x12\
|
|
|
|
+ \x04\x16\n\x0c\n\x05\x05\0\x02\x0b\x02\x12\x03\x12\x19\x1b\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x0c\x12\x03\x13\x04\x1c\n\x0c\n\x05\x05\0\x02\x0c\x01\x12\x03\
|
|
|
|
+ \x13\x04\x16\n\x0c\n\x05\x05\0\x02\x0c\x02\x12\x03\x13\x19\x1b\n\x0b\n\
|
|
|
|
+ \x04\x05\0\x02\r\x12\x03\x14\x04\x19\n\x0c\n\x05\x05\0\x02\r\x01\x12\x03\
|
|
|
|
+ \x14\x04\x13\n\x0c\n\x05\x05\0\x02\r\x02\x12\x03\x14\x16\x18\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x0e\x12\x03\x15\x04\x19\n\x0c\n\x05\x05\0\x02\x0e\x01\x12\x03\
|
|
|
|
+ \x15\x04\x13\n\x0c\n\x05\x05\0\x02\x0e\x02\x12\x03\x15\x16\x18\n\x0b\n\
|
|
|
|
+ \x04\x05\0\x02\x0f\x12\x03\x16\x04*\n\x0c\n\x05\x05\0\x02\x0f\x01\x12\
|
|
|
|
+ \x03\x16\x04$\n\x0c\n\x05\x05\0\x02\x0f\x02\x12\x03\x16')\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x10\x12\x03\x17\x04\x1f\n\x0c\n\x05\x05\0\x02\x10\x01\x12\x03\
|
|
|
|
+ \x17\x04\x19\n\x0c\n\x05\x05\0\x02\x10\x02\x12\x03\x17\x1c\x1e\n\x0b\n\
|
|
|
|
+ \x04\x05\0\x02\x11\x12\x03\x18\x04\x19\n\x0c\n\x05\x05\0\x02\x11\x01\x12\
|
|
|
|
+ \x03\x18\x04\x13\n\x0c\n\x05\x05\0\x02\x11\x02\x12\x03\x18\x16\x18\n\x0b\
|
|
|
|
+ \n\x04\x05\0\x02\x12\x12\x03\x19\x04-\n\x0c\n\x05\x05\0\x02\x12\x01\x12\
|
|
|
|
+ \x03\x19\x04'\n\x0c\n\x05\x05\0\x02\x12\x02\x12\x03\x19*,\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x13\x12\x03\x1a\x04\x19\n\x0c\n\x05\x05\0\x02\x13\x01\x12\x03\
|
|
|
|
+ \x1a\x04\x13\n\x0c\n\x05\x05\0\x02\x13\x02\x12\x03\x1a\x16\x18\n\x0b\n\
|
|
|
|
+ \x04\x05\0\x02\x14\x12\x03\x1b\x04\x1e\n\x0c\n\x05\x05\0\x02\x14\x01\x12\
|
|
|
|
+ \x03\x1b\x04\x18\n\x0c\n\x05\x05\0\x02\x14\x02\x12\x03\x1b\x1b\x1d\n\x0b\
|
|
|
|
+ \n\x04\x05\0\x02\x15\x12\x03\x1c\x04\x17\n\x0c\n\x05\x05\0\x02\x15\x01\
|
|
|
|
+ \x12\x03\x1c\x04\x11\n\x0c\n\x05\x05\0\x02\x15\x02\x12\x03\x1c\x14\x16\n\
|
|
|
|
+ \x0b\n\x04\x05\0\x02\x16\x12\x03\x1d\x04&\n\x0c\n\x05\x05\0\x02\x16\x01\
|
|
|
|
+ \x12\x03\x1d\x04\x20\n\x0c\n\x05\x05\0\x02\x16\x02\x12\x03\x1d#%\n\x0b\n\
|
|
|
|
+ \x04\x05\0\x02\x17\x12\x03\x1e\x04&\n\x0c\n\x05\x05\0\x02\x17\x01\x12\
|
|
|
|
+ \x03\x1e\x04\x20\n\x0c\n\x05\x05\0\x02\x17\x02\x12\x03\x1e#%\n\x0b\n\x04\
|
|
|
|
+ \x05\0\x02\x18\x12\x03\x1f\x04\x17\n\x0c\n\x05\x05\0\x02\x18\x01\x12\x03\
|
|
|
|
+ \x1f\x04\x10\n\x0c\n\x05\x05\0\x02\x18\x02\x12\x03\x1f\x13\x16b\x06proto\
|
|
|
|
+ 3\
|
|
";
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|