diff --git a/common/src/sr_tools.rs b/common/src/sr_tools.rs index f3c3ed2..703d283 100644 --- a/common/src/sr_tools.rs +++ b/common/src/sr_tools.rs @@ -1,4 +1,4 @@ -use proto::{Avatar, AvatarSkillTree, MultiPathAvatarTypeInfo}; +use proto::{Avatar, AvatarSkillTree, MultiPathAvatarInfo}; use serde::{Deserialize, Serialize}; use std::collections::{BTreeMap, HashMap}; @@ -67,14 +67,14 @@ impl FreesrData { }) .collect::>(), equipment_unique_id: lightcone.map(|v| v.get_unique_id()).unwrap_or_default(), - first_met_timestamp: 1712924677, + first_met_time_stamp: 1712924677, equip_relic_list: relics.map(|v| v.into()).collect::>(), unk_enhanced_id: avatar.enhanced_id.unwrap_or_default(), ..Default::default() }) } - pub fn get_avatar_multipath_proto(&self, avatar_id: u32) -> Option { + pub fn get_avatar_multipath_proto(&self, avatar_id: u32) -> Option { let avatar = self.avatars.get(&avatar_id)?; let mp_type = MultiPathAvatar::from(avatar_id); @@ -82,7 +82,7 @@ impl FreesrData { return None; } - Some(MultiPathAvatarTypeInfo { + Some(MultiPathAvatarInfo { avatar_id: mp_type as i32, rank: avatar.data.rank, equip_relic_list: self @@ -91,7 +91,7 @@ impl FreesrData { .filter(|relic| relic.equip_avatar == mp_type as u32) .map(|relic| relic.into()) .collect(), - skilltree_list: avatar + multi_path_skill_tree: avatar .data .skills .iter() @@ -111,7 +111,7 @@ impl FreesrData { }) } - pub fn get_multi_path_info(&self) -> Vec { + pub fn get_multi_path_info(&self) -> Vec { MultiPathAvatar::to_vec() .into_iter() .filter_map(|mp_type| { @@ -120,7 +120,7 @@ impl FreesrData { } let avatar_info = self.avatars.get(&((mp_type) as u32))?; - Some(MultiPathAvatarTypeInfo { + Some(MultiPathAvatarInfo { avatar_id: mp_type as i32, rank: avatar_info.data.rank, equip_relic_list: self @@ -129,7 +129,7 @@ impl FreesrData { .filter(|relic| relic.equip_avatar == mp_type as u32) .map(|relic| relic.into()) .collect(), - skilltree_list: avatar_info + multi_path_skill_tree: avatar_info .data .skills .iter() diff --git a/common/src/structs/avatar.rs b/common/src/structs/avatar.rs index 24d3295..b94a558 100644 --- a/common/src/structs/avatar.rs +++ b/common/src/structs/avatar.rs @@ -163,7 +163,7 @@ impl AvatarJson { }) .collect::>(), equipment_unique_id: lightcone.map(|v| v.get_unique_id()).unwrap_or_default(), - first_met_timestamp: 1712924677, + first_met_time_stamp: 1712924677, equip_relic_list: relics.iter().map(|v| (*v).into()).collect::>(), unk_enhanced_id: self.enhanced_id.unwrap_or_default(), ..Default::default() @@ -212,7 +212,7 @@ impl AvatarJson { for buff_id in &self.techniques { battle_buff.push(BattleBuff { wave_flag: 0xffffffff, - owner_id: index, + owner_index: index, level: 1, id: *buff_id, dynamic_values: HashMap::from([(String::from("SkillIndex"), 2.0)]), diff --git a/common/src/structs/battle.rs b/common/src/structs/battle.rs index bc8dfd3..0748cb0 100644 --- a/common/src/structs/battle.rs +++ b/common/src/structs/battle.rs @@ -37,9 +37,10 @@ impl Default for BattleConfig { } } -#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +#[derive(Default, Debug, Serialize, Deserialize, Clone, PartialEq)] pub enum BattleType { #[serde(alias = "DEFAULT")] + #[default] Default = 0, #[serde(alias = "MOC")] Moc = 1, @@ -49,12 +50,6 @@ pub enum BattleType { AA = 5, } -impl Default for BattleType { - fn default() -> Self { - Self::Default - } -} - // BATTLE BUFFS #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct BattleBuffJson { @@ -78,7 +73,7 @@ impl BattleBuffJson { id: self.id, level: self.level, wave_flag: 0xffffffff, - owner_id: 0xffffffff, + owner_index: 0xffffffff, dynamic_values: if let Some(dyn_key) = &self.dynamic_key { HashMap::from([(dyn_key.key.clone(), dyn_key.value as f32)]) } else { diff --git a/common/src/structs/lightcone.rs b/common/src/structs/lightcone.rs index 8f914ea..52c4e66 100644 --- a/common/src/structs/lightcone.rs +++ b/common/src/structs/lightcone.rs @@ -18,7 +18,7 @@ pub struct Lightcone { impl_from!(Lightcone, Equipment, |value| { Equipment { - equip_avatar_id: value.equip_avatar, + dress_avatar_id: value.equip_avatar, exp: 0, is_protected: false, level: value.level, diff --git a/common/src/structs/monster.rs b/common/src/structs/monster.rs index 18c6873..291f759 100644 --- a/common/src/structs/monster.rs +++ b/common/src/structs/monster.rs @@ -28,8 +28,8 @@ impl Monster { } SceneMonsterWave { - wave_id, - wave_param: Some(SceneMonsterWaveParam { + battle_wave_id: wave_id, + monster_param: Some(SceneMonsterWaveParam { level: monsters.iter().map(|v| v.level).max().unwrap_or(95), ..Default::default() }), diff --git a/common/src/structs/relic.rs b/common/src/structs/relic.rs index e708ad3..a7a2848 100644 --- a/common/src/structs/relic.rs +++ b/common/src/structs/relic.rs @@ -74,7 +74,7 @@ impl_from!(Relic, EquipRelic, |value| { impl_from!(Relic, proto::Relic, |value| { proto::Relic { - equip_avatar_id: value.equip_avatar, + dress_avatar_id: value.equip_avatar, exp: 0, is_protected: false, level: value.level, diff --git a/gameserver/src/lib.rs b/gameserver/src/lib.rs index bd52bd3..2fcbacb 100644 --- a/gameserver/src/lib.rs +++ b/gameserver/src/lib.rs @@ -1,4 +1,3 @@ -#![feature(let_chains)] use anyhow::Result; mod net; diff --git a/gameserver/src/net/handlers/avatar.rs b/gameserver/src/net/handlers/avatar.rs index 4852c68..c60c446 100644 --- a/gameserver/src/net/handlers/avatar.rs +++ b/gameserver/src/net/handlers/avatar.rs @@ -2,12 +2,12 @@ use std::collections::HashMap; use super::*; -pub static UNLOCKED_AVATARS: [u32; 73] = [ +pub static UNLOCKED_AVATARS: [u32; 74] = [ 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1013, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1217, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1312, 1315, 1310, 1314, 1218, 1221, 1220, 1222, 1223, 1317, 1313, 1225, 1402, 1401, 1404, 1403, 1405, 1407, 1406, - 1409, 1014, 1015, 1408, 1410, 1412, 1413, 1414, 1415 + 1409, 1014, 1015, 1408, 1410, 1412, 1413, 1414, 1415, 1321, ]; pub async fn on_get_avatar_data_cs_req( @@ -57,18 +57,18 @@ pub async fn on_get_avatar_data_cs_req( level: 1, }) .collect(), - first_met_timestamp: 1712924677, + first_met_time_stamp: 1712924677, ..Default::default() }) }) .collect(); - res.current_multi_path_avatar_id = HashMap::from([ + res.cur_avatar_path = HashMap::from([ (8001, json.main_character.get_type().into()), (1001, json.march_type.get_type().into()), ]); - res.multi_path_avatar_type_info_list = json.get_multi_path_info(); + res.multi_path_avatar_info_list = json.get_multi_path_info(); } pub async fn on_set_avatar_enhanced_id_cs_req( diff --git a/gameserver/src/net/handlers/battle.rs b/gameserver/src/net/handlers/battle.rs index e138a8c..bb4d2fe 100644 --- a/gameserver/src/net/handlers/battle.rs +++ b/gameserver/src/net/handlers/battle.rs @@ -1,11 +1,10 @@ use std::collections::HashMap; use rand::Rng; -use rogue_magic_battle_unit_info::Item; use common::{ resources::GAME_RES, - structs::{BattleType, Monster, RogueMagicComponentType}, + structs::{BattleType, Monster}, }; use super::*; @@ -50,7 +49,7 @@ pub async fn on_scene_cast_skill_cs_req( req: &SceneCastSkillCsReq, res: &mut SceneCastSkillScRsp, ) { - res.attacked_group_id = req.attacked_group_id; + res.cast_entity_id = req.cast_entity_id; let targets = req .hit_target_entity_id_list @@ -64,9 +63,9 @@ pub async fn on_scene_cast_skill_cs_req( return; } - let battle_info = create_battle_info(session, req.caster_id, req.skill_index).await; + let battle_info = create_battle_info(session, req.attacked_by_entity_id, req.skill_index).await; - res.attacked_group_id = req.attacked_group_id; + res.cast_entity_id = req.cast_entity_id; res.battle_info = Some(battle_info); } @@ -133,7 +132,7 @@ async fn create_battle_info( battle_info.buff_list.push(BattleBuff { id: avatar_config.weakness_buff_id, level: 1, - owner_id: *avatar_index, + owner_index: *avatar_index, wave_flag: 0xffffffff, dynamic_values: HashMap::from([( String::from("SkillIndex"), @@ -151,7 +150,7 @@ async fn create_battle_info( id: 122401, level: 3, wave_flag: 0xffffffff, - owner_id: *avatar_index, + owner_index: *avatar_index, dynamic_values: HashMap::from([ (String::from("#ADF_1"), 3f32), (String::from("#ADF_2"), 3f32), @@ -168,7 +167,7 @@ async fn create_battle_info( if first_avatar_id != 0 { for buff in battle_info.buff_list.iter_mut() { if buff.id == 141202 || buff.id == 141403 { - buff.owner_id = first_avatar_id + buff.owner_index = first_avatar_id } } } @@ -207,7 +206,7 @@ async fn create_battle_info( id: blessing.id, level: blessing.level, wave_flag: 0xffffffff, - owner_id: 0xffffffff, + owner_index: 0xffffffff, ..Default::default() }; @@ -296,72 +295,73 @@ async fn create_battle_info( // SU if player.battle_config.battle_type == BattleType::SU { - battle_info - .event_battle_info_list - .push(BattleEventBattleInfo { - battle_event_id: player.battle_config.path_resonance_id, - status: Some(BattleEventInitedData { - sp_bar: Some(SpBarInfo { - cur_sp: 10_000, - max_sp: 10_000, - }), + battle_info.battle_event.push(BattleEventBattleInfo { + battle_event_id: player.battle_config.path_resonance_id, + status: Some(BattleEventProperty { + sp_bar: Some(SpBarInfo { + cur_sp: 10_000, + max_sp: 10_000, }), - skill_info: Vec::with_capacity(0), - }) + }), + skill_info: Vec::with_capacity(0), + }) } // Monsters battle_info.monster_wave_list = Monster::to_scene_monster_waves(&player.battle_config.monsters); // Rogue Magic + // TODO: i dont need these shit if !player.battle_config.scepters.is_empty() { - battle_info.rogue_magic_battle_info = Some(RogueMagicBattleInfo { - player_detail_info: Some(RogueMagicBattleUnitInfo { - item: Some(Item::BattleRogueMagicData(BattleRogueMagicData { - round_cnt: Some(BattleRogueMagicRoundCount { - gpojenhaiba: 3, - kljklbmlefo: 0, - }), - battle_scepter_list: player - .battle_config - .scepters - .iter() - .map(|scepter| { - let mut battle_scepter = BattleRogueMagicScepter { - level: scepter.level, - scepter_id: scepter.id, - magic_list: Vec::new(), - trench_count: HashMap::from([(3, 0), (4, 0), (5, 0)]), - }; - - let mut index = [0u32; 3]; - - for component in &scepter.components { - let (slot_type, locked) = match component.component_type { - RogueMagicComponentType::Passive => (3u32, false), - RogueMagicComponentType::Active => (4, true), - RogueMagicComponentType::Attach => (5, false), - }; - - let slot_index = &mut index[slot_type as usize - 3]; - battle_scepter.magic_list.push(BattleRogueMagicUnit { - level: component.level, - unit_id: component.id, - slot_id: *slot_index, - locked, - counter_map: Default::default(), - }); - *slot_index += 1; - *battle_scepter.trench_count.get_mut(&slot_type).unwrap() += 1; - } - - battle_scepter - }) - .collect(), - })), - }), - scepter: Some(Plgjihifpag { egmebanhhnf: 5 }), - }); + // battle_info.battle_rogue_magic_info = Some(BattleRogueMagicInfo { + // detail_info: Some(BattleRogueMagicDetailInfo { + // paiigoggofj: Some(Item::BattleRogueMagicData(BattleRogueMagicData { + // round_cnt: Some(BattleRogueMagicRoundCount { + // gpojenhaiba: 3, + // kljklbmlefo: 0, + // }), + // battle_scepter_list: player + // .battle_config + // .scepters + // .iter() + // .map(|scepter| { + // let mut battle_scepter = BattleRogueMagicScepter { + // level: scepter.level, + // scepter_id: scepter.id, + // magic_list: Vec::new(), + // trench_count: HashMap::from([(3, 0), (4, 0), (5, 0)]), + // }; + // + // let mut index = [0u32; 3]; + // + // for component in &scepter.components { + // let (slot_type, locked) = match component.component_type { + // RogueMagicComponentType::Passive => (3u32, false), + // RogueMagicComponentType::Active => (4, true), + // RogueMagicComponentType::Attach => (5, false), + // }; + // + // let slot_index = &mut index[slot_type as usize - 3]; + // battle_scepter.magic_list.push(BattleRogueMagicUnit { + // level: component.level, + // unit_id: component.id, + // slot_id: *slot_index, + // locked, + // counter_map: Default::default(), + // }); + // *slot_index += 1; + // *battle_scepter.trench_count.get_mut(&slot_type).unwrap() += 1; + // } + // + // battle_scepter + // }) + // .collect(), + // })), + // }), + // modifier_content: Some(BattleRogueMagicModifierInfo { + // rogue_magic_battle_const: 5, + // }), + // }); } // Global Buff @@ -369,7 +369,7 @@ async fn create_battle_info( battle_info.buff_list.push(BattleBuff { id: 140703, level: 1, - owner_id: u32::MAX, + owner_index: u32::MAX, wave_flag: u32::MAX, target_index_list: Vec::with_capacity(0), dynamic_values: HashMap::with_capacity(0), diff --git a/gameserver/src/net/handlers/chat.rs b/gameserver/src/net/handlers/chat.rs index 2bdb1ad..107409b 100644 --- a/gameserver/src/net/handlers/chat.rs +++ b/gameserver/src/net/handlers/chat.rs @@ -20,7 +20,8 @@ pub async fn on_get_friend_login_info_cs_req( _req: &GetFriendLoginInfoCsReq, res: &mut GetFriendLoginInfoScRsp, ) { - res.friend_uid_list = vec![SERVER_UID]; + res.cmcilifageb = vec![SERVER_UID]; + res.gddmgcalkhc = vec![SERVER_UID]; } pub async fn on_get_friend_list_info_cs_req( @@ -28,9 +29,9 @@ pub async fn on_get_friend_list_info_cs_req( _req: &GetFriendListInfoCsReq, res: &mut GetFriendListInfoScRsp, ) { - res.friend_list = vec![FriendListInfo { - friend_name: String::from("RobinSR"), - simple_info: Some(PlayerSimpleInfo { + res.friend_list = vec![FriendSimpleInfo { + remark_name: String::from("RobinSR"), + player_info: Some(PlayerSimpleInfo { uid: SERVER_UID, platform: PlatformType::Pc.into(), online_status: FriendOnlineStatus::Online.into(), @@ -42,7 +43,7 @@ pub async fn on_get_friend_list_info_cs_req( ..Default::default() }), is_marked: true, - sent_time: 0, + create_time: 0, ..Default::default() }]; } @@ -53,18 +54,18 @@ pub async fn on_get_private_chat_history_cs_req( res: &mut GetPrivateChatHistoryScRsp, ) { let cur_time = cur_timestamp_ms(); - res.chat_list = SERVER_CHAT_HISTORY + res.chat_message_list = SERVER_CHAT_HISTORY .iter() - .map(|text| Chat { - msg_type: MsgType::CustomText.into(), - sent_time: cur_time, - text: String::from(*text), - sender_uid: SERVER_UID, + .map(|text| ChatMessageData { + message_type: MsgType::CustomText.into(), + create_time: cur_time, + content: String::from(*text), + sender_id: SERVER_UID, ..Default::default() }) .collect(); - res.to_uid = req.to_uid; - res.from_uid = SERVER_UID; + res.target_side = req.target_side; + res.contact_side = SERVER_UID; } pub async fn on_send_msg_cs_req( @@ -77,19 +78,19 @@ pub async fn on_send_msg_cs_req( return; }; - if let Some((cmd, args)) = parse_command(&body.text) { + if let Some((cmd, args)) = parse_command(&body.message_text) { match cmd { "sync" => { session.sync_player().await; session .send(RevcMsgScNotify { - msg_type: body.msg_type, - text: String::from("Inventory Synced"), - emote: body.emote, - from_uid: SERVER_UID, - to_uid: 25, + message_type: body.message_type, + message_text: String::from("Inventory Synced"), + extra_id: body.extra_id, + source_uid: SERVER_UID, + target_uid: 25, chat_type: body.chat_type, - hnbepabnbng: body.hnbepabnbng, + dijgjpgfflg: body.dijgjpgfflg.clone(), }) .await .unwrap(); @@ -117,13 +118,13 @@ pub async fn on_send_msg_cs_req( session .send(RevcMsgScNotify { - msg_type: body.msg_type, - text: format!("Success change mc to {mc:#?}"), - emote: body.emote, - from_uid: SERVER_UID, - to_uid: 25, + message_type: body.message_type, + message_text: format!("Success change mc to {mc:#?}"), + extra_id: body.extra_id, + source_uid: SERVER_UID, + target_uid: 25, chat_type: body.chat_type, - hnbepabnbng: body.hnbepabnbng, + dijgjpgfflg: body.dijgjpgfflg.clone(), }) .await .unwrap(); @@ -155,13 +156,13 @@ pub async fn on_send_msg_cs_req( session .send(RevcMsgScNotify { - msg_type: body.msg_type, - text: format!("Success change march to {march_type:#?}"), - emote: body.emote, - from_uid: SERVER_UID, - to_uid: 25, + message_type: body.message_type, + message_text: format!("Success change march to {march_type:#?}"), + extra_id: body.extra_id, + source_uid: SERVER_UID, + target_uid: 25, chat_type: body.chat_type, - hnbepabnbng: body.hnbepabnbng, + dijgjpgfflg: body.dijgjpgfflg.clone(), }) .await .unwrap(); diff --git a/gameserver/src/net/handlers/inventory.rs b/gameserver/src/net/handlers/inventory.rs index 9ddd525..6005f7e 100644 --- a/gameserver/src/net/handlers/inventory.rs +++ b/gameserver/src/net/handlers/inventory.rs @@ -236,7 +236,7 @@ fn equip_relic(player: &mut FreesrData, req: &DressRelicAvatarCsReq) -> Option

Option

Option>(); ret.avatar_sync = Some(AvatarSync { avatar_list }); - ret.multi_path_avatar_type_info_list = avatar_ids + ret.multi_path_avatar_info_list = avatar_ids .into_iter() .filter_map(|id| player.get_avatar_multipath_proto(id)) .collect(); diff --git a/gameserver/src/net/handlers/lineup.rs b/gameserver/src/net/handlers/lineup.rs index a8b632d..25be979 100644 --- a/gameserver/src/net/handlers/lineup.rs +++ b/gameserver/src/net/handlers/lineup.rs @@ -76,7 +76,7 @@ pub async fn on_replace_lineup_cs_req( let lineups = &mut player.lineups; for (slot, avatar_id) in &mut *lineups { - if let Some(lineup) = req.slots.get(*slot as usize) { + if let Some(lineup) = req.lineup_slot_list.get(*slot as usize) { *avatar_id = lineup.id; } else { *avatar_id = 0; @@ -131,15 +131,15 @@ async fn refresh_lineup(session: &mut PlayerSession) { session .send(SceneGroupRefreshScNotify { - group_refresh_info: vec![SceneGroupRefreshInfo { + group_refresh_list: vec![GroupRefreshInfo { group_id: 0, state: 0, - group_refresh_type: SceneGroupRefreshType::Loaded.into(), + refresh_type: SceneGroupRefreshType::Loaded.into(), refresh_entity: new_entities, - bccgjihncdn: Vec::with_capacity(0), + ..Default::default() }], floor_id, - gfhglffhfbd: 0, + dimension_id: 0, }) .await .unwrap(); diff --git a/gameserver/src/net/handlers/mail.rs b/gameserver/src/net/handlers/mail.rs index 3c2e4c7..9d09ad3 100644 --- a/gameserver/src/net/handlers/mail.rs +++ b/gameserver/src/net/handlers/mail.rs @@ -23,7 +23,7 @@ pub async fn on_get_mail_cs_req( ..Default::default() }], }), - mail_type: MailType::Normal.into(), + mail_type: 0, template_id: 0, }]; } diff --git a/gameserver/src/net/handlers/mod.rs b/gameserver/src/net/handlers/mod.rs index bbb5984..59382dd 100644 --- a/gameserver/src/net/handlers/mod.rs +++ b/gameserver/src/net/handlers/mod.rs @@ -43,7 +43,7 @@ use proto::{ CmdMissionType::*, CmdMonopolyType::*, CmdMultiplayerType::*, CmdMultipleDropType::*, CmdMuseumType::*, CmdOfferingType::*, CmdPamMissionType::*, CmdPhoneType::*, CmdPlayerBoardType::*, CmdPlayerReturnType::*, CmdPlayerSync::*, CmdPlayerType::*, - CmdPlotType::*, CmdPunkLordType::*, CmdQuestType::*, CmdRaidCollectionType::*, CmdRaidType::*, + CmdPunkLordType::*, CmdQuestType::*, CmdRaidCollectionType::*, CmdRaidType::*, CmdRechargeGiftType::*, CmdRecommendType::*, CmdRedDotType::*, CmdReplayType::*, CmdRndOptionType::*, CmdRogueCommonType::*, CmdRogueEndless::*, CmdRogueModifierType::*, CmdRogueTournType::*, CmdRogueType::*, CmdRollShopType::*, CmdSceneType::*, @@ -90,7 +90,7 @@ macro_rules! dummy { dummy! { // SceneEntityMove, GetLevelRewardTakenList, - GetRogueScoreRewardInfo, + // GetRogueScoreRewardInfo, // ?3.7.51 // GetGachaInfo, QueryProductInfo, GetQuestData, @@ -98,33 +98,33 @@ dummy! { // GetFriendListInfo, // GetFriendApplyListInfo, GetCurAssist, - GetRogueHandbookData, + // GetRogueHandbookData, // ?3.7.51 GetDailyActiveInfo, GetFightActivityData, - GetMultipleDropInfo, - GetPlayerReturnMultiDropInfo, - GetShareData, - GetTreasureDungeonActivityData, - PlayerReturnInfoQuery, + // GetMultipleDropInfo, // ?3.7.51 + // GetPlayerReturnMultiDropInfo, // ?3.7.51 + // GetShareData, // ?3.7.51 + // GetTreasureDungeonActivityData, // ?3.7.51 + // PlayerReturnInfoQuery, // ?3.7.51 // GetBag, GetPlayerBoardData, GetActivityScheduleConfig, GetMissionData, GetChallenge, GetCurChallenge, - GetRogueInfo, + // GetRogueInfo, // ?3.7.51 GetExpeditionData, // GetRogueDialogueEventData, GetJukeboxData, SyncClientResVersion, - DailyFirstMeetPam, - GetMuseumInfo, + // DailyFirstMeetPam, // ?3.7.51 + // GetMuseumInfo, // ?3.7.51 GetLoginActivity, GetRaidInfo, GetTrialActivityData, - GetBoxingClubInfo, + // GetBoxingClubInfo, // ?3.7.51 GetNpcStatus, - TextJoinQuery, + // TextJoinQuery, // ?3.7.51 // GetSpringRecoverData, // Removed 2.7.51 // GetChatFriendHistory, GetSecretKeyInfo, diff --git a/gameserver/src/net/handlers/player.rs b/gameserver/src/net/handlers/player.rs index e06c587..ebc3879 100644 --- a/gameserver/src/net/handlers/player.rs +++ b/gameserver/src/net/handlers/player.rs @@ -32,14 +32,14 @@ pub async fn on_player_login_finish_cs_req( ) -> Result<()> { session .send(ContentPackageSyncDataScNotify { - data: Some(PackageData { - info_list: [ + data: Some(ContentPackageData { + content_package_list: [ 200001, 200002, 200003, 200004, 200005, 200006, 200007, 200008, 150017, 150015, 150021, 150018, 130011, 130012, 130013, 150025, 140006, 150026, 130014, 150034, 150029, 150035, 150041, 150039, 150045, ] .into_iter() - .map(|v| ContentInfo { + .map(|v| ContentPackageInfo { status: ContentPackageStatus::Finished.into(), content_id: v, }) diff --git a/gameserver/src/net/handlers/scene.rs b/gameserver/src/net/handlers/scene.rs index fcc8dc8..764327d 100644 --- a/gameserver/src/net/handlers/scene.rs +++ b/gameserver/src/net/handlers/scene.rs @@ -46,7 +46,7 @@ pub async fn on_enter_scene_cs_req( .await .is_err() { - res.retcode = Retcode::RetSceneEntryIdNotMatch as u32; + res.retcode = 2605; }; } @@ -56,19 +56,19 @@ pub async fn on_get_scene_map_info_cs_req( res: &mut GetSceneMapInfoScRsp, ) { for floor_id in &req.floor_id_list { - let mut map_info = MazeMapData { + let mut map_info = SceneMapInfo { retcode: 0, - unlocked_chest_list: vec![ - MazeChest { - map_info_chest_type: MapInfoChestType::Normal.into(), + chest_list: vec![ + ChestInfo { + chest_type: 101, ..Default::default() }, - MazeChest { - map_info_chest_type: MapInfoChestType::Puzzle.into(), + ChestInfo { + chest_type: 102, ..Default::default() }, - MazeChest { - map_info_chest_type: MapInfoChestType::Challenge.into(), + ChestInfo { + chest_type: 104, ..Default::default() }, ], @@ -94,37 +94,39 @@ pub async fn on_get_scene_map_info_cs_req( }); for teleport in group.teleports.keys() { - map_info.unlocked_teleport_list.push(*teleport) + map_info.unlock_teleport_list.push(*teleport) } for prop in &group.props { - map_info.maze_prop_list.push(MazeProp { + map_info.maze_prop_list.push(MazePropState { group_id: prop.group_id, state: prop.prop_state, config_id: prop.inst_id, }); - map_info.maze_prop_extra_list.push(MazePropExtra { - group_id: prop.group_id, - state: prop.prop_state, - config_id: prop.inst_id, - extra_info: Option::None, - }); + map_info + .maze_prop_extra_state_list + .push(MazePropExtraState { + group_id: prop.group_id, + state: prop.prop_state, + config_id: prop.inst_id, + extra_info: Option::None, + }); } } map_info.lighten_section_list = floor_config.sections.clone(); map_info.floor_saved_data = floor_config.saved_values.clone(); - // TODO! - map_info - .chest_unlock_progress_list - .push(ChestUnlockProgress { - r#type: 0, - total_chest_count: 25, - unlocked_chest_count: 25, - }); + // #TODO! + // map_info + // .chest_unlock_progress_list + // .push(ChestUnlockProgress { + // r#type: 0, + // total_chest_count: 25, + // unlocked_chest_count: 25, + // }); } - res.map_list.push(map_info) + res.scene_map_info.push(map_info) } } @@ -170,7 +172,7 @@ pub async fn on_get_entered_scene_cs_req( _req: &GetEnteredSceneCsReq, res: &mut GetEnteredSceneScRsp, ) { - res.entered_scene_info = GAME_RES + res.entered_scene_info_list = GAME_RES .level_output_configs .iter() .flat_map(|(_, v)| { @@ -249,13 +251,13 @@ async fn load_scene( scene.world_id }, lighten_section_list: scene.sections.clone(), - chest_id_list: scene + lddigmlcgdb: scene .scenes .values() .flat_map(|v| v.chests.clone()) .collect::>(), scene_mission_info: Some(MissionStatusBySceneInfo { - finished_mission_id_list: scene + finished_main_mission_id_list: scene .scenes .values() .flat_map(|s| s.finished_main_missions.clone()) @@ -392,7 +394,7 @@ async fn load_scene( scene_info.entity_group_list.push(group_info); - scene_info.group_state_list.push(SceneGroupState { + scene_info.clecmgljocl.push(SceneGroupState { group_id: *group_id, is_default: true, state: 0, @@ -403,7 +405,7 @@ async fn load_scene( scene_info.entity_group_list.push(SceneEntityGroupInfo { state: 0, group_id: 0, - hejamoojbcj: HashMap::with_capacity(0), + jnajakchjdf: HashMap::with_capacity(0), entity_list: json .lineups .iter() diff --git a/gameserver/src/net/packet.rs b/gameserver/src/net/packet.rs index 4cbd93a..0354ab3 100644 --- a/gameserver/src/net/packet.rs +++ b/gameserver/src/net/packet.rs @@ -17,7 +17,7 @@ use proto::{ CmdMissionType::*, CmdMonopolyType::*, CmdMultiplayerType::*, CmdMultipleDropType::*, CmdMuseumType::*, CmdOfferingType::*, CmdPamMissionType::*, CmdPhoneType::*, CmdPlayerBoardType::*, CmdPlayerReturnType::*, CmdPlayerSync::*, CmdPlayerType::*, - CmdPlotType::*, CmdPunkLordType::*, CmdQuestType::*, CmdRaidCollectionType::*, CmdRaidType::*, + CmdPunkLordType::*, CmdQuestType::*, CmdRaidCollectionType::*, CmdRaidType::*, CmdRecommendType::*, CmdRedDotType::*, CmdReplayType::*, CmdRndOptionType::*, CmdRogueCommonType::*, CmdRogueEndless::*, CmdRogueModifierType::*, CmdRogueTournType::*, CmdRogueType::*, CmdRollShopType::*, CmdSceneType::*, CmdServerPrefsType::*, CmdShopType::*, diff --git a/gameserver/src/net/session.rs b/gameserver/src/net/session.rs index 25f5f89..72e50c2 100644 --- a/gameserver/src/net/session.rs +++ b/gameserver/src/net/session.rs @@ -10,7 +10,7 @@ use anyhow::Result; use common::sr_tools::FreesrData; use mhy_kcp::Kcp; use prost::Message; -use proto::{AvatarSync, CmdID, CmdPlayerType, PlayerSyncScNotify}; +use proto::{AvatarSync, CmdID, PlayerSyncScNotify}; use tokio::{ io::AsyncWrite, net::UdpSocket, @@ -70,11 +70,12 @@ impl PlayerSession { drop(kcp); for packet in packets { - if packet.cmd_type == CmdPlayerType::CmdPlayerLogoutCsReq as u16 { - tracing::info!("Player logged out"); - let _ = self.shutdown_tx.send(()); - return Ok(()); - }; + // #TODO + // if packet.cmd_type == CmdPlayerType::CmdPlayerLogoutCsReq as u16 { + // tracing::info!("Player logged out"); + // let _ = self.shutdown_tx.send(()); + // return Ok(()); + // }; Self::on_message(self, packet.cmd_type, packet.body).await?; } @@ -140,7 +141,7 @@ impl PlayerSession { .map(|avatar| avatar.to_avatar_proto(Option::None, vec![])) .collect::>(), }), - multi_path_avatar_type_info_list: json.get_multi_path_info(), + multi_path_avatar_info_list: json.get_multi_path_info(), ..Default::default() }) .await diff --git a/proto/out/_.rs b/proto/out/_.rs index dd54940..34713fc 100644 --- a/proto/out/_.rs +++ b/proto/out/_.rs @@ -7,83 +7,83 @@ pub struct EmbeddedAttribute {} pub struct RefSafetyRulesAttribute {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mmmnfdnljmd { - /// offset: 36 - #[prost(uint32, tag = "1")] - pub hbapccegnme: u32, +pub struct Cdmdoheokmn { /// offset: 32 + #[prost(uint32, tag = "1")] + pub queue_position: u32, + /// offset: 40 #[prost(uint32, tag = "2")] - pub gpjggknoafd: u32, + pub ebcdklnhhno: u32, #[prost( - oneof = "mmmnfdnljmd::Oeehifhnfdh", + oneof = "cdmdoheokmn::Jlgkloocajk", tags = "101, 102, 103, 104, 201, 202, 203" )] - pub oeehifhnfdh: ::core::option::Option, + pub jlgkloocajk: ::core::option::Option, } -/// Nested message and enum types in `MMMNFDNLJMD`. -pub mod mmmnfdnljmd { +/// Nested message and enum types in `CDMDOHEOKMN`. +pub mod cdmdoheokmn { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Oeehifhnfdh { + pub enum Jlgkloocajk { /// offset: 24 #[prost(message, tag = "101")] - MarbleGameBegin(super::Ljnpgkdojho), + MarbleGameBegin(super::Lgjegnghkpi), /// offset: 24 #[prost(message, tag = "102")] - MarbleGameEnd(super::Bpnmjchednl), + MarbleGameEnd(super::Pnhipahakab), /// offset: 24 #[prost(message, tag = "103")] - MarbleGameRound(super::Foopingafeg), + MarbleGameRound(super::Dpaaanlpmbd), /// offset: 24 #[prost(message, tag = "104")] - MarbleGameTurn(super::Ofilkjclegi), + MarbleGameTurn(super::Ngeldpianjc), /// offset: 24 #[prost(message, tag = "201")] - CakeRaceSectionBegin(super::Befcmjcmiee), + CakeRaceSectionBegin(super::Olcmofmfbkp), /// offset: 24 #[prost(message, tag = "202")] - CakeRaceSectionEnd(super::Kpjhjiaeibb), + CakeRaceSectionEnd(super::Mjddhdjcocp), /// offset: 24 #[prost(message, tag = "203")] - CakeRaceRoomSectionSettle(super::Eopeomghcdj), + CakeRaceRoomSectionSettle(super::Oicioagdcel), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hcjjoofkcjh { - /// offset: 36 - #[prost(uint32, tag = "1")] - pub lpdbpkkadgg: u32, - /// offset: 24 - #[prost(int32, tag = "2")] - pub homgcfjpblk: i32, - /// offset: 32 - #[prost(int32, tag = "3")] - pub cjjblmkjapa: i32, +pub struct Polglnildbi { /// offset: 28 + #[prost(uint32, tag = "1")] + pub boehkclliep: u32, + /// offset: 32 + #[prost(int32, tag = "2")] + pub gbdgpaiahjk: i32, + /// offset: 24 + #[prost(int32, tag = "3")] + pub mbfomhmcodm: i32, + /// offset: 36 #[prost(uint32, tag = "4")] - pub lhcppplbmkf: u32, + pub lagkjgjflci: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lngmdmipckl { +pub struct Gonfonmjnae { /// offset: 24 #[prost(uint32, tag = "1")] - pub lpdbpkkadgg: u32, + pub boehkclliep: u32, /// offset: 28 #[prost(uint32, tag = "2")] - pub jojahiafnlk: u32, + pub mfmgcfgdbbh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cccnhoeccmd { - /// offset: 32 +pub struct Gopnionbgjg { + /// offset: 36 #[prost(uint32, tag = "1")] pub item_id: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub banelelnlkb: u32, /// offset: 24 + #[prost(uint32, tag = "2")] + pub lnkpohpbfje: u32, + /// offset: 32 #[prost(uint32, tag = "3")] pub skill_id: u32, /// offset: 28 @@ -92,758 +92,761 @@ pub struct Cccnhoeccmd { } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Noobbihjkma { - /// offset: 36 +pub struct Jiehflfcfej { + /// offset: 32 #[prost(int32, tag = "1")] - pub mflekhhpieo: i32, - /// offset: 24 - #[prost(int32, tag = "2")] - pub majlgjcfgja: i32, + pub naajpldkddl: i32, /// offset: 28 + #[prost(int32, tag = "2")] + pub kpkdanemcgc: i32, + /// offset: 36 #[prost(int32, tag = "3")] - pub iolcflofagf: i32, - /// offset: 32 + pub ccfeobdcmif: i32, + /// offset: 24 #[prost(int32, tag = "4")] - pub ameiimfkbfa: i32, + pub amjgimpplce: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ljnpgkdojho { - /// offset: 64 - #[prost(uint32, tag = "1")] - pub endjgmlkpbp: u32, - /// offset: 56 - #[prost(uint64, tag = "2")] - pub dbadlnfopao: u64, +pub struct Lgjegnghkpi { /// offset: 72 + #[prost(uint32, tag = "1")] + pub monster_battle_type: u32, + /// offset: 48 + #[prost(uint64, tag = "2")] + pub jpdkenlgbem: u64, + /// offset: 68 #[prost(uint32, tag = "3")] - pub acjcphifmln: u32, - /// offset: 40 + pub level_id: u32, + /// offset: 60 #[prost(uint32, tag = "4")] - pub marble_level_id: u32, + pub ndbpolnhhcn: u32, /// offset: 32 #[prost(message, repeated, tag = "5")] - pub biecgfimcfb: ::prost::alloc::vec::Vec, - /// offset: 44 + pub dkmihnjmege: ::prost::alloc::vec::Vec, + /// offset: 64 #[prost(uint32, tag = "6")] pub rank: u32, - /// offset: 48 + /// offset: 40 #[prost(uint64, tag = "7")] - pub ekldpalnldc: u64, - /// offset: 16 + pub ilibdokgcbj: u64, + /// offset: 24 #[prost(message, repeated, tag = "8")] - pub fffgfcphbpn: ::prost::alloc::vec::Vec, - /// offset: 68 + pub hklbimfahbb: ::prost::alloc::vec::Vec, + /// offset: 56 #[prost(uint32, tag = "9")] - pub jblmgnpmadm: u32, + pub kjdiaaaidgl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bpnmjchednl { - /// offset: 68 +pub struct Pnhipahakab { + /// offset: 56 #[prost(uint32, tag = "1")] - pub endjgmlkpbp: u32, - /// offset: 88 + pub monster_battle_type: u32, + /// offset: 48 #[prost(uint64, tag = "2")] - pub dbadlnfopao: u64, + pub jpdkenlgbem: u64, /// offset: 96 #[prost(uint32, tag = "3")] - pub acjcphifmln: u32, - /// offset: 76 + pub level_id: u32, + /// offset: 64 #[prost(uint32, tag = "4")] - pub marble_level_id: u32, - /// offset: 32 + pub ndbpolnhhcn: u32, + /// offset: 24 #[prost(message, repeated, tag = "5")] - pub biecgfimcfb: ::prost::alloc::vec::Vec, - /// offset: 48 + pub dkmihnjmege: ::prost::alloc::vec::Vec, + /// offset: 72 #[prost(uint32, tag = "6")] pub rank: u32, - /// offset: 80 + /// offset: 88 #[prost(uint64, tag = "7")] - pub ekldpalnldc: u64, - /// offset: 40 + pub ilibdokgcbj: u64, + /// offset: 16 #[prost(message, repeated, tag = "8")] - pub fffgfcphbpn: ::prost::alloc::vec::Vec, - /// offset: 108 + pub hklbimfahbb: ::prost::alloc::vec::Vec, + /// offset: 76 #[prost(uint32, tag = "9")] - pub jblmgnpmadm: u32, - /// offset: 56 + pub kjdiaaaidgl: u32, + /// offset: 100 #[prost(uint32, tag = "10")] - pub imbclfcbodj: u32, - /// offset: 52 + pub dpagmmimhjn: u32, + /// offset: 108 #[prost(int32, tag = "11")] - pub score: i32, - /// offset: 100 - #[prost(int32, tag = "12")] - pub npjeecedpok: i32, - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub pceaecmkdeh: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "14")] - pub ifnmbngifph: u32, - /// offset: 72 - #[prost(uint32, tag = "15")] - pub iehjgombpbi: u32, - /// offset: 104 - #[prost(uint32, tag = "16")] - pub iphafkfgnao: u32, + pub score_id: i32, /// offset: 60 + #[prost(int32, tag = "12")] + pub dfemjmlccbn: i32, + /// offset: 40 + #[prost(message, repeated, tag = "13")] + pub cenflpnkibf: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "14")] + pub gkogedgkibf: u32, + /// offset: 104 + #[prost(uint32, tag = "15")] + pub gnfnlkfjhhd: u32, + /// offset: 68 + #[prost(uint32, tag = "16")] + pub fhhlgehdddb: u32, + /// offset: 80 #[prost(uint32, tag = "17")] - pub lbpfeclgefc: u32, + pub kkogonbpmji: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Foopingafeg { - /// offset: 96 - #[prost(uint32, tag = "1")] - pub endjgmlkpbp: u32, - /// offset: 80 - #[prost(uint64, tag = "2")] - pub dbadlnfopao: u64, +pub struct Dpaaanlpmbd { /// offset: 100 - #[prost(uint32, tag = "3")] - pub acjcphifmln: u32, - /// offset: 112 - #[prost(uint32, tag = "4")] - pub marble_level_id: u32, - /// offset: 108 - #[prost(uint32, tag = "5")] - pub ighlabggije: u32, + #[prost(uint32, tag = "1")] + pub monster_battle_type: u32, /// offset: 88 - #[prost(uint32, tag = "6")] - pub lpdbpkkadgg: u32, - /// offset: 92 - #[prost(bool, tag = "7")] - pub hgbbkgnepfb: bool, - /// offset: 32 - #[prost(message, repeated, tag = "8")] - pub feopfholkbm: ::prost::alloc::vec::Vec, + #[prost(uint64, tag = "2")] + pub jpdkenlgbem: u64, + /// offset: 76 + #[prost(uint32, tag = "3")] + pub level_id: u32, /// offset: 72 + #[prost(uint32, tag = "4")] + pub ndbpolnhhcn: u32, + /// offset: 116 + #[prost(uint32, tag = "5")] + pub ecjhiddjfpj: u32, + /// offset: 104 + #[prost(uint32, tag = "6")] + pub boehkclliep: u32, + /// offset: 80 + #[prost(bool, tag = "7")] + pub ocbgchniaao: bool, + /// offset: 40 + #[prost(message, repeated, tag = "8")] + pub kpbnaedakdp: ::prost::alloc::vec::Vec, + /// offset: 108 #[prost(uint32, tag = "9")] pub rank: u32, - /// offset: 56 + /// offset: 48 #[prost(message, repeated, tag = "10")] - pub cndckakkmcg: ::prost::alloc::vec::Vec, - /// offset: 104 + pub ebocoebahck: ::prost::alloc::vec::Vec, + /// offset: 96 #[prost(uint32, tag = "11")] - pub jblmgnpmadm: u32, - /// offset: 64 - #[prost(message, repeated, tag = "12")] - pub skill_info: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub kbgajgeomgl: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "14")] - pub lelhcfoeoco: ::prost::alloc::vec::Vec, + pub kjdiaaaidgl: u32, /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub skill_info: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "13")] + pub infillofgde: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(message, repeated, tag = "14")] + pub gkejfdijnno: ::prost::alloc::vec::Vec, + /// offset: 56 #[prost(message, repeated, tag = "15")] - pub imjekfdhing: ::prost::alloc::vec::Vec, - /// offset: 76 + pub chabkobkbem: ::prost::alloc::vec::Vec, + /// offset: 112 #[prost(uint32, tag = "16")] - pub djnmhmpkkkb: u32, + pub jlaecgccllj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ofilkjclegi { - /// offset: 56 +pub struct Ngeldpianjc { + /// offset: 68 #[prost(uint32, tag = "1")] - pub endjgmlkpbp: u32, + pub monster_battle_type: u32, /// offset: 48 #[prost(uint64, tag = "2")] - pub dbadlnfopao: u64, - /// offset: 68 + pub jpdkenlgbem: u64, + /// offset: 80 #[prost(uint32, tag = "3")] - pub acjcphifmln: u32, - /// offset: 64 + pub level_id: u32, + /// offset: 32 #[prost(uint32, tag = "4")] - pub marble_level_id: u32, - /// offset: 84 - #[prost(bool, tag = "5")] - pub nleaijhapap: bool, + pub ndbpolnhhcn: u32, /// offset: 72 + #[prost(bool, tag = "5")] + pub ekcaijecgbd: bool, + /// offset: 64 #[prost(uint32, tag = "6")] - pub ighlabggije: u32, - /// offset: 60 + pub ecjhiddjfpj: u32, + /// offset: 56 #[prost(uint32, tag = "7")] pub rank: u32, /// offset: 40 #[prost(uint64, tag = "8")] - pub ekldpalnldc: u64, - /// offset: 80 + pub ilibdokgcbj: u64, + /// offset: 60 #[prost(uint32, tag = "9")] - pub jblmgnpmadm: u32, + pub kjdiaaaidgl: u32, /// offset: 76 #[prost(uint32, tag = "10")] - pub cboiiacbakf: u32, - /// offset: 24 + pub dmaphfdccll: u32, + /// offset: 16 #[prost(uint32, repeated, tag = "11")] pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 32 + /// offset: 84 #[prost(uint32, tag = "12")] - pub djnmhmpkkkb: u32, + pub jlaecgccllj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mnlpbkhikog { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub jblecmapfdc: ::prost::alloc::vec::Vec, +pub struct Icfpcbbpdgf { /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub kplgpkfiakk: ::prost::alloc::vec::Vec, + /// offset: 16 #[prost(uint32, repeated, tag = "2")] - pub pcoggadelbj: ::prost::alloc::vec::Vec, + pub ldmeekcalde: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aacplmaajmh { +pub struct Mcnnfigkcjh { /// offset: 24 #[prost(uint32, tag = "1")] - pub dmkfffpdldi: u32, + pub ipednalijjm: u32, /// offset: 28 #[prost(uint32, tag = "2")] - pub ajafcdkhfcc: u32, + pub hkfnkopjdei: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hkpemapjhip { - /// offset: 36 +pub struct Bkknnklebpe { + /// offset: 32 #[prost(uint32, tag = "1")] - pub jigjfedkkfi: u32, - /// offset: 44 + pub ijedmbinian: u32, + /// offset: 48 #[prost(uint32, tag = "2")] pub rank: u32, - /// offset: 32 + /// offset: 44 #[prost(uint32, tag = "3")] - pub lkefolcgfgd: u32, - /// offset: 48 - #[prost(uint32, tag = "4")] - pub nnhmkjkcnim: u32, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub ibcdnjmcfea: ::prost::alloc::vec::Vec, + pub kmhcbofgfjf: u32, /// offset: 40 + #[prost(uint32, tag = "4")] + pub aklifkofobh: u32, + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub kmgiglmemne: ::prost::alloc::vec::Vec, + /// offset: 36 #[prost(uint32, tag = "6")] - pub goclpmedhpn: u32, + pub limjfdkmkfk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mlmkgkgngjm { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub jigjfedkkfi: u32, +pub struct Pedjaplamfc { /// offset: 28 - #[prost(uint32, tag = "2")] - pub jojahiafnlk: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Befcmjcmiee { - /// offset: 32 - #[prost(string, tag = "1")] - pub room_id: ::prost::alloc::string::String, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub hgmnjfjpmdf: u32, - /// offset: 44 - #[prost(uint32, tag = "3")] - pub lbmncagokif: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub simple_info: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kpjhjiaeibb { - /// offset: 32 - #[prost(string, tag = "1")] - pub room_id: ::prost::alloc::string::String, - /// offset: 72 - #[prost(uint32, tag = "2")] - pub hgmnjfjpmdf: u32, - /// offset: 88 - #[prost(uint32, tag = "3")] - pub lbmncagokif: u32, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub oilpchbijno: u32, - /// offset: 92 - #[prost(uint32, tag = "5")] - pub bjojpbmlbap: u32, - /// offset: 80 - #[prost(uint32, tag = "6")] - pub olbmanbpejj: u32, + #[prost(uint32, tag = "1")] + pub ijedmbinian: u32, /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub bbgkakhgoio: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "8")] - pub adooenkcbbe: u32, - /// offset: 52 - #[prost(uint32, tag = "9")] - pub hbacllconmj: u32, - /// offset: 84 - #[prost(float, tag = "10")] - pub pkfjmoaccon: f32, - /// offset: 56 - #[prost(int32, tag = "11")] - pub jbhleifcnfa: i32, + #[prost(uint32, tag = "2")] + pub mfmgcfgdbbh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Olcmofmfbkp { + /// offset: 16 + #[prost(string, tag = "1")] + pub room_id: ::prost::alloc::string::String, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub fedbcocnceo: u32, /// offset: 44 - #[prost(int32, tag = "12")] - pub mbjaajolmee: i32, + #[prost(uint32, tag = "3")] + pub section_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub player_info: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mjddhdjcocp { + /// offset: 24 + #[prost(string, tag = "1")] + pub room_id: ::prost::alloc::string::String, /// offset: 60 - #[prost(int32, tag = "13")] - pub jdhjmiedpnh: i32, + #[prost(uint32, tag = "2")] + pub fedbcocnceo: u32, + /// offset: 52 + #[prost(uint32, tag = "3")] + pub section_id: u32, + /// offset: 84 + #[prost(uint32, tag = "4")] + pub mcgppkgbpae: u32, + /// offset: 68 + #[prost(uint32, tag = "5")] + pub eianodljngd: u32, + /// offset: 48 + #[prost(uint32, tag = "6")] + pub einjocgkjem: u32, + /// offset: 32 + #[prost(message, repeated, tag = "7")] + pub bfkgahhcnod: ::prost::alloc::vec::Vec, /// offset: 96 - #[prost(uint32, tag = "14")] - pub kgnkobmffpj: u32, + #[prost(uint32, tag = "8")] + pub doloojjddef: u32, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub mgabiofmldp: u32, + /// offset: 56 + #[prost(float, tag = "10")] + pub dmnhmeffnjc: f32, + /// offset: 88 + #[prost(int32, tag = "11")] + pub fbbbhffldgn: i32, /// offset: 64 + #[prost(int32, tag = "12")] + pub ecmphobjdfb: i32, + /// offset: 72 + #[prost(int32, tag = "13")] + pub fdmiddicpdi: i32, + /// offset: 80 + #[prost(uint32, tag = "14")] + pub kidfcilfhda: u32, + /// offset: 92 #[prost(int32, tag = "15")] - pub gciielfbban: i32, + pub dalpbcdonbd: i32, /// offset: 76 #[prost(int32, tag = "16")] - pub cjepoadeieh: i32, - /// offset: 68 + pub dmjonkefoph: i32, + /// offset: 40 #[prost(uint32, tag = "17")] - pub nmipgonokgd: u32, + pub aonpnkjfcac: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eopeomghcdj { - /// offset: 40 +pub struct Oicioagdcel { + /// offset: 64 #[prost(string, tag = "1")] pub room_id: ::prost::alloc::string::String, /// offset: 80 #[prost(uint32, tag = "2")] - pub hgmnjfjpmdf: u32, + pub fedbcocnceo: u32, /// offset: 84 #[prost(uint32, tag = "3")] - pub lbmncagokif: u32, - /// offset: 56 - #[prost(message, optional, tag = "4")] - pub simple_info: ::core::option::Option, + pub section_id: u32, /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub idmofogmnla: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, repeated, tag = "6")] - pub iikabemhobn: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "4")] + pub player_info: ::core::option::Option, /// offset: 48 - #[prost(uint32, repeated, tag = "7")] - pub naicbncifce: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, repeated, tag = "8")] - pub plhgjgmhbjd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub lkolbneiknp: ::prost::alloc::vec::Vec, /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub cdkkaeeaccl: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, repeated, tag = "7")] + pub cganjdjfgfa: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, repeated, tag = "8")] + pub aplknfgjolg: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(message, repeated, tag = "9")] - pub hnphhkalljn: ::prost::alloc::vec::Vec, + pub oalkoomhbaf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerBasicInfo { - /// offset: 24 + /// offset: 16 #[prost(string, tag = "1")] pub nickname: ::prost::alloc::string::String, - /// offset: 48 + /// offset: 44 #[prost(uint32, tag = "2")] pub level: u32, - /// offset: 40 + /// offset: 32 #[prost(uint32, tag = "3")] pub exp: u32, - /// offset: 52 + /// offset: 56 #[prost(uint32, tag = "4")] pub stamina: u32, - /// offset: 36 + /// offset: 48 #[prost(uint32, tag = "5")] pub mcoin: u32, - /// offset: 32 + /// offset: 52 #[prost(uint32, tag = "6")] pub hcoin: u32, - /// offset: 56 + /// offset: 36 #[prost(uint32, tag = "7")] pub scoin: u32, - /// offset: 44 + /// offset: 40 #[prost(uint32, tag = "8")] pub world_level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bahlpcddjgg { - /// offset: 16 +pub struct Eeaffoimnac { + /// offset: 24 #[prost(uint32, repeated, tag = "1")] - pub ioblckidhhp: ::prost::alloc::vec::Vec, + pub jfbbfekffll: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpBarInfo { - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "1")] pub cur_sp: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "2")] pub max_sp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BlackInfo { - /// offset: 24 + /// offset: 32 #[prost(int64, tag = "1")] pub begin_time: i64, - /// offset: 32 + /// offset: 24 #[prost(int64, tag = "2")] pub end_time: i64, /// offset: 40 #[prost(uint32, tag = "3")] - pub jfciibecncm: u32, + pub limit_level: u32, /// offset: 44 #[prost(uint32, tag = "4")] - pub ccabdcplmpj: u32, + pub ban_type: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bpdfjaaeofo { +pub struct FeverTimeAvatar { + /// offset: 24 + #[prost(enumeration = "AvatarType", tag = "1")] + pub avatar_type: i32, /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "1")] - pub avatar_type: i32, - /// offset: 24 #[prost(uint32, tag = "2")] pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oilpiacennh { - /// offset: 24 +pub struct Dmknghmfjph { + /// offset: 40 #[prost(enumeration = "AvatarType", tag = "1")] pub avatar_type: i32, - /// offset: 40 + /// offset: 28 #[prost(uint32, tag = "2")] pub id: u32, - /// offset: 36 + /// offset: 32 #[prost(uint32, tag = "3")] pub level: u32, - /// offset: 32 + /// offset: 36 #[prost(uint32, tag = "4")] pub index: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "5")] - pub ggdiibcdobb: u32, + pub blehkkonehp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct VersionCount { - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "1")] pub version: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "2")] pub count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientDownloadData { - /// offset: 40 + /// offset: 44 #[prost(uint32, tag = "1")] pub version: u32, /// offset: 32 #[prost(int64, tag = "2")] pub time: i64, - /// offset: 16 + /// offset: 24 #[prost(bytes = "vec", tag = "3")] pub data: ::prost::alloc::vec::Vec, - /// offset: 44 + /// offset: 40 #[prost(uint32, tag = "4")] - pub channel_id: u32, + pub bfajppkembm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientObjDownloadData { - /// offset: 40 + /// offset: 32 #[prost(bytes = "vec", tag = "1")] - pub bidjpeimllf: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub download_data: ::core::option::Option, + pub limlhjpieoc: ::prost::alloc::vec::Vec, /// offset: 24 + #[prost(message, optional, tag = "2")] + pub client_obj_download_data: ::core::option::Option, + /// offset: 40 #[prost(message, repeated, tag = "3")] - pub download_data_list: ::prost::alloc::vec::Vec, + pub hgjooepcbkm: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientUploadData { - /// offset: 32 - #[prost(string, tag = "1")] - pub eamajgpcgfd: ::prost::alloc::string::String, /// offset: 16 + #[prost(string, tag = "1")] + pub tag: ::prost::alloc::string::String, + /// offset: 24 #[prost(string, tag = "2")] pub value: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeatureSwitchParam { - /// offset: 16 + /// offset: 24 #[prost(uint32, repeated, tag = "1")] - pub param_list: ::prost::alloc::vec::Vec, + pub switch_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hpiofdcgmej { +pub struct Gkofnogbanp { /// offset: 36 #[prost(enumeration = "FeatureSwitchType", tag = "1")] pub r#type: i32, - /// offset: 24 + /// offset: 16 #[prost(message, repeated, tag = "2")] - pub njcjdnhpcjn: ::prost::alloc::vec::Vec, + pub icmpfohpdcf: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(bool, tag = "3")] - pub oafmljmdjfo: bool, + pub hhpbfdidhgj: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MobileDeviceInfo { +pub struct Ccbodegcndc { /// offset: 32 #[prost(string, tag = "1")] - pub mobile_device_uuid: ::prost::alloc::string::String, - /// offset: 16 - #[prost(string, tag = "2")] - pub device_model: ::prost::alloc::string::String, - /// offset: 72 - #[prost(string, tag = "3")] - pub gioohoomjho: ::prost::alloc::string::String, + pub lhpfnndohpb: ::prost::alloc::string::String, /// offset: 56 - #[prost(string, tag = "4")] - pub fbmllnkcfen: ::prost::alloc::string::String, - /// offset: 40 - #[prost(string, tag = "5")] - pub dgoohibaoee: ::prost::alloc::string::String, - /// offset: 48 - #[prost(string, tag = "6")] - pub fkbamboodkj: ::prost::alloc::string::String, + #[prost(string, tag = "2")] + pub fldflgoihmj: ::prost::alloc::string::String, /// offset: 24 + #[prost(string, tag = "3")] + pub caagfhckckl: ::prost::alloc::string::String, + /// offset: 48 + #[prost(string, tag = "4")] + pub plkmaemhfko: ::prost::alloc::string::String, + /// offset: 64 + #[prost(string, tag = "5")] + pub allkpnpinco: ::prost::alloc::string::String, + /// offset: 72 + #[prost(string, tag = "6")] + pub djljioefkgh: ::prost::alloc::string::String, + /// offset: 16 #[prost(string, tag = "7")] - pub mac_address: ::prost::alloc::string::String, + pub mac: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct AgeInfo { - /// offset: 16 +pub struct Eoelkfeofkn { + /// offset: 24 #[prost(string, tag = "1")] - pub agdaelenhmi: ::prost::alloc::string::String, - /// offset: 40 + pub midphdalgpa: ::prost::alloc::string::String, + /// offset: 44 #[prost(int32, tag = "2")] - pub ejieagflged: i32, + pub bgjkfepcpmd: i32, /// offset: 36 #[prost(int32, tag = "3")] - pub allow_pay: i32, - /// offset: 44 - #[prost(int32, tag = "4")] - pub age_group: i32, + pub hajgmegnfei: i32, /// offset: 32 + #[prost(int32, tag = "4")] + pub lcmllinglbn: i32, + /// offset: 40 #[prost(int32, tag = "5")] - pub lrsag: i32, + pub adfckcankmn: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReplayInfo { - /// offset: 40 + /// offset: 72 #[prost(uint64, tag = "1")] - pub dknpkjmahcm: u64, - /// offset: 60 + pub glbnkgnboog: u64, + /// offset: 48 #[prost(enumeration = "ReplayType", tag = "2")] pub replay_type: i32, - /// offset: 52 + /// offset: 56 #[prost(uint32, tag = "3")] pub stage_id: u32, - /// offset: 76 + /// offset: 52 #[prost(uint32, tag = "4")] pub uid: u32, - /// offset: 32 + /// offset: 24 #[prost(string, tag = "5")] pub nickname: ::prost::alloc::string::String, - /// offset: 72 + /// offset: 44 #[prost(uint32, tag = "6")] pub head_icon: u32, - /// offset: 16 + /// offset: 32 #[prost(string, tag = "7")] pub replay_name: ::prost::alloc::string::String, /// offset: 64 #[prost(uint64, tag = "8")] - pub sent_time: u64, - /// offset: 48 + pub create_time: u64, + /// offset: 40 #[prost(uint32, tag = "9")] - pub afehlmfibmd: u32, - /// offset: 56 + pub bcclfaemjij: u32, + /// offset: 60 #[prost(uint32, tag = "10")] - pub cmpbkbbkaoa: u32, + pub ikebdbccimb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pigodjnhjml { - /// offset: 28 +pub struct Mehmmalnonl { + /// offset: 24 #[prost(uint32, tag = "1")] pub avatar_id: u32, - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "2")] pub avatar_level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ahkankepadj { +pub struct Ahkmnpheacg { /// offset: 52 #[prost(uint32, tag = "1")] pub uid: u32, - /// offset: 44 + /// offset: 64 #[prost(uint32, tag = "2")] - pub jhhlpljaame: u32, - /// offset: 40 + pub lnigjnajeii: u32, + /// offset: 48 #[prost(bool, tag = "3")] - pub obhidgfgamd: bool, - /// offset: 56 + pub jclgajihdmc: bool, + /// offset: 40 #[prost(uint32, tag = "4")] - pub pofhpdgamkl: u32, + pub efagbmpbbmc: u32, /// offset: 24 #[prost(string, tag = "5")] - pub bdnlnmcohgb: ::prost::alloc::string::String, + pub kmhapafocco: ::prost::alloc::string::String, /// offset: 16 #[prost(message, repeated, tag = "6")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub ncacoccjnld: u32, + pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 60 + #[prost(uint32, tag = "7")] + pub ambnoncfbcg: u32, + /// offset: 44 #[prost(uint32, tag = "8")] - pub ahjfpngdbdo: u32, - /// offset: 64 + pub ckamnjcdpgl: u32, + /// offset: 56 #[prost(uint32, tag = "9")] - pub pgofpnlapoe: u32, + pub pfkiappijnn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PunkLordBattleRecordList { /// offset: 16 #[prost(message, repeated, tag = "1")] - pub battle_record_list: ::prost::alloc::vec::Vec, + pub battle_record_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PunkLordMonsterKey { - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "1")] pub uid: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "2")] pub monster_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PunkLordMonsterBasicInfo { - /// offset: 60 + /// offset: 44 #[prost(uint32, tag = "1")] pub uid: u32, - /// offset: 32 + /// offset: 40 #[prost(uint32, tag = "2")] pub monster_id: u32, - /// offset: 24 + /// offset: 56 #[prost(uint32, tag = "3")] pub config_id: u32, - /// offset: 48 + /// offset: 24 #[prost(uint32, tag = "4")] pub world_level: u32, - /// offset: 40 + /// offset: 48 #[prost(int64, tag = "5")] - pub sent_time: i64, - /// offset: 56 + pub create_time: i64, + /// offset: 36 #[prost(uint32, tag = "6")] pub left_hp: u32, - /// offset: 52 - #[prost(uint32, tag = "7")] - pub pjdcnahgahc: u32, /// offset: 28 + #[prost(uint32, tag = "7")] + pub attacker_num: u32, + /// offset: 60 #[prost(enumeration = "PunkLordShareType", tag = "8")] pub share_type: i32, - /// offset: 36 + /// offset: 32 #[prost(bool, tag = "9")] - pub ppboceckcah: bool, + pub njekdbpoalk: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cemedoehbge { - /// offset: 16 - #[prost(string, tag = "1")] - pub bdnlnmcohgb: ::prost::alloc::string::String, +pub struct Ndhnecgfbnn { /// offset: 24 + #[prost(string, tag = "1")] + pub kmhapafocco: ::prost::alloc::string::String, + /// offset: 16 #[prost(message, optional, tag = "2")] - pub fgnfbkbogdj: ::core::option::Option, + pub odiccgcinnc: ::core::option::Option, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ildhfmhbknc { - /// offset: 24 +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Idkbgcojhhj { + /// offset: 40 #[prost(uint64, tag = "1")] - pub infhikbljla: u64, + pub copgbefikge: u64, /// offset: 32 #[prost(uint32, tag = "2")] - pub fight_game_mode: u32, + pub gclccogidoa: u32, /// offset: 36 #[prost(uint32, tag = "3")] - pub ahbemdlggeo: u32, + pub gbahhhpmldk: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub lchndbnknio: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lkapfhahnem { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub module_id: u32, +pub struct Bmemlbhjdmj { /// offset: 28 + #[prost(uint32, tag = "1")] + pub panel_id: u32, + /// offset: 24 #[prost(uint32, tag = "2")] - pub lghokgabgck: u32, + pub modifier_content_type: u32, /// offset: 32 #[prost(uint64, tag = "3")] - pub cfdanmomhpi: u64, + pub obifcelhinm: u64, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pedlphdbnaf { - #[prost(oneof = "pedlphdbnaf::Gjmelakijif", tags = "101, 102")] - pub gjmelakijif: ::core::option::Option, +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ajemanpknhc { + #[prost(oneof = "ajemanpknhc::Deemiabhjjk", tags = "101, 102")] + pub deemiabhjjk: ::core::option::Option, } -/// Nested message and enum types in `PEDLPHDBNAF`. -pub mod pedlphdbnaf { +/// Nested message and enum types in `AJEMANPKNHC`. +pub mod ajemanpknhc { #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Gjmelakijif { + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Deemiabhjjk { /// offset: 16 #[prost(message, tag = "101")] - Lfcphajcekf(super::Ildhfmhbknc), + Pajimkagapi(super::Idkbgcojhhj), /// offset: 16 #[prost(message, tag = "102")] - Celmkolbjnn(super::Lkapfhahnem), + Cjpmkijmpoe(super::Bmemlbhjdmj), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RegionEntry { - /// offset: 24 +pub struct RegionInfo { + /// offset: 40 #[prost(string, tag = "1")] pub name: ::prost::alloc::string::String, /// offset: 32 #[prost(string, tag = "2")] pub title: ::prost::alloc::string::String, - /// offset: 64 + /// offset: 16 #[prost(string, tag = "3")] pub dispatch_url: ::prost::alloc::string::String, - /// offset: 56 + /// offset: 64 #[prost(string, tag = "4")] pub env_type: ::prost::alloc::string::String, /// offset: 48 #[prost(string, tag = "5")] pub display_name: ::prost::alloc::string::String, - /// offset: 40 + /// offset: 56 #[prost(string, tag = "6")] pub msg: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct DispatchRegionData { +pub struct Dispatch { /// offset: 56 #[prost(uint32, tag = "1")] pub retcode: u32, @@ -853,168 +856,168 @@ pub struct DispatchRegionData { /// offset: 24 #[prost(string, tag = "3")] pub top_sever_region_name: ::prost::alloc::string::String, - /// offset: 48 - #[prost(message, repeated, tag = "4")] - pub region_list: ::prost::alloc::vec::Vec, /// offset: 40 + #[prost(message, repeated, tag = "4")] + pub region_list: ::prost::alloc::vec::Vec, + /// offset: 48 #[prost(string, tag = "5")] pub stop_desc: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iipkannmlfn { - /// offset: 92 +pub struct Bdkoopinmgl { + /// offset: 96 #[prost(uint32, tag = "1")] - pub hpolocpddac: u32, - /// offset: 72 + pub ablidofcdff: u32, + /// offset: 80 #[prost(uint32, repeated, tag = "2")] - pub kjebidedlld: ::prost::alloc::vec::Vec, - /// offset: 56 + pub hpcdonpjbme: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(uint32, repeated, tag = "3")] - pub kkcmfgmhimo: ::prost::alloc::vec::Vec, - /// offset: 48 + pub bcmkogcnhib: ::prost::alloc::vec::Vec, + /// offset: 64 #[prost(uint32, repeated, tag = "4")] - pub lgejjajpedk: ::prost::alloc::vec::Vec, + pub hpnnmlpcgeh: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, repeated, tag = "5")] - pub fbbajbinglb: ::prost::alloc::vec::Vec, - /// offset: 16 + pub mllbkpjmjhi: ::prost::alloc::vec::Vec, + /// offset: 56 #[prost(uint32, repeated, tag = "6")] - pub mpmfahlkeob: ::prost::alloc::vec::Vec, - /// offset: 96 + pub djolodcmnnl: ::prost::alloc::vec::Vec, + /// offset: 92 #[prost(bool, tag = "7")] - pub knljgcadljk: bool, + pub nmoepahcogk: bool, /// offset: 88 #[prost(uint32, tag = "8")] - pub iamcofeijki: u32, - /// offset: 24 + pub lngkibelolc: u32, + /// offset: 72 #[prost(uint32, repeated, tag = "9")] - pub cgpdcgdhgjf: ::prost::alloc::vec::Vec, - /// offset: 80 + pub edbclellcam: ::prost::alloc::vec::Vec, + /// offset: 16 #[prost(uint32, repeated, tag = "10")] - pub iknccgnelkn: ::prost::alloc::vec::Vec, - /// offset: 32 + pub lacbmkaadoe: ::prost::alloc::vec::Vec, + /// offset: 24 #[prost(uint32, repeated, tag = "11")] - pub ajhlfmljoib: ::prost::alloc::vec::Vec, + pub dfkmomcdlik: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fmgeohcakip { - #[prost(oneof = "fmgeohcakip::Emokphngbfa", tags = "101")] - pub emokphngbfa: ::core::option::Option, +pub struct Ldjpeibnele { + #[prost(oneof = "ldjpeibnele::Idooakegpgd", tags = "101")] + pub idooakegpgd: ::core::option::Option, } -/// Nested message and enum types in `FMGEOHCAKIP`. -pub mod fmgeohcakip { +/// Nested message and enum types in `LDJPEIBNELE`. +pub mod ldjpeibnele { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Emokphngbfa { - /// offset: 24 + pub enum Idooakegpgd { + /// offset: 16 #[prost(uint32, tag = "101")] - Mhkhaclnbpm(u32), + Ojhffmmafgg(u32), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ppjiobhifhp { +pub struct Iobfliemhln { /// offset: 32 - #[prost(enumeration = "Idppelmiihe", tag = "1")] - pub nbemngdpmcl: i32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub nalclkhbgjn: u32, + #[prost(enumeration = "Dlmigaafpel", tag = "1")] + pub bopionmneln: i32, /// offset: 40 + #[prost(uint32, tag = "2")] + pub acpecifcaee: u32, + /// offset: 36 #[prost(uint32, tag = "3")] pub num: u32, /// offset: 16 #[prost(message, optional, tag = "5")] - pub display_value: ::core::option::Option, + pub display_value: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jiochilhlgd { - /// offset: 24 +pub struct Lpklgaefilo { + /// offset: 16 #[prost(message, repeated, tag = "1")] - pub jcdljghhaof: ::prost::alloc::vec::Vec, + pub gkkgkebinak: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleOp { - /// offset: 36 + /// offset: 44 #[prost(uint32, tag = "1")] pub turn_counter: u32, - /// offset: 56 + /// offset: 32 #[prost(uint32, tag = "2")] pub state: u32, - /// offset: 52 + /// offset: 56 #[prost(uint32, tag = "3")] pub action_entity_id: u32, - /// offset: 44 + /// offset: 48 #[prost(uint32, tag = "4")] pub target_entity_id: u32, - /// offset: 32 + /// offset: 36 #[prost(uint32, tag = "5")] pub op_type: u32, - /// offset: 48 + /// offset: 52 #[prost(uint32, tag = "6")] pub skill_index: u32, /// offset: 40 #[prost(uint32, tag = "7")] pub operation_counter: u32, - /// offset: 24 + /// offset: 16 #[prost(string, tag = "8")] - pub nplieiphcbf: ::prost::alloc::string::String, + pub bfmacjhekkk: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattleEquipment { - /// offset: 32 + /// offset: 24 #[prost(uint32, tag = "1")] pub id: u32, - /// offset: 24 + /// offset: 36 #[prost(uint32, tag = "2")] pub level: u32, - /// offset: 36 + /// offset: 28 #[prost(uint32, tag = "3")] pub promotion: u32, - /// offset: 28 + /// offset: 32 #[prost(uint32, tag = "4")] pub rank: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleRelic { - /// offset: 48 + /// offset: 52 #[prost(uint32, tag = "1")] pub id: u32, - /// offset: 40 + /// offset: 44 #[prost(uint32, tag = "2")] pub level: u32, - /// offset: 32 + /// offset: 36 #[prost(uint32, tag = "3")] pub main_affix_id: u32, /// offset: 24 #[prost(message, repeated, tag = "4")] pub sub_affix_list: ::prost::alloc::vec::Vec, - /// offset: 56 + /// offset: 32 #[prost(uint32, tag = "5")] pub unique_id: u32, - /// offset: 44 + /// offset: 40 #[prost(uint32, tag = "6")] - pub relic_id: u32, - /// offset: 36 + pub set_id: u32, + /// offset: 48 #[prost(uint32, tag = "7")] pub r#type: u32, - /// offset: 52 + /// offset: 56 #[prost(uint32, tag = "8")] - pub jlkmncoidlg: u32, + pub rarity: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarSkillTree { - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "1")] pub point_id: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "2")] pub level: u32, } @@ -1033,165 +1036,165 @@ pub struct RelicAffix { } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bjhebccbana { +pub struct Cbfnacmkcpi { /// offset: 36 #[prost(bool, tag = "1")] - pub ljpadncgloc: bool, - /// offset: 24 + pub eljgjigbgfk: bool, + /// offset: 16 #[prost(uint32, repeated, tag = "2")] - pub dddhnaklmhf: ::prost::alloc::vec::Vec, + pub miilkifelej: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "3")] - pub jgjcdmjimnn: u32, + pub mihojocbhnb: u32, /// offset: 40 #[prost(uint32, tag = "4")] - pub pofmkdabehd: u32, + pub ohiikhjenkl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleAvatar { - /// offset: 92 + /// offset: 104 #[prost(enumeration = "AvatarType", tag = "1")] pub avatar_type: i32, - /// offset: 96 + /// offset: 80 #[prost(uint32, tag = "2")] pub id: u32, - /// offset: 112 + /// offset: 88 #[prost(uint32, tag = "3")] pub level: u32, /// offset: 108 #[prost(uint32, tag = "4")] pub rank: u32, - /// offset: 76 + /// offset: 112 #[prost(uint32, tag = "5")] pub index: u32, - /// offset: 24 + /// offset: 48 #[prost(message, repeated, tag = "6")] pub skilltree_list: ::prost::alloc::vec::Vec, - /// offset: 48 + /// offset: 64 #[prost(message, repeated, tag = "7")] pub equipment_list: ::prost::alloc::vec::Vec, - /// offset: 88 + /// offset: 72 #[prost(uint32, tag = "8")] pub hp: u32, - /// offset: 84 + /// offset: 96 #[prost(uint32, tag = "10")] pub promotion: u32, - /// offset: 16 + /// offset: 56 #[prost(message, repeated, tag = "11")] pub relic_list: ::prost::alloc::vec::Vec, - /// offset: 100 + /// offset: 76 #[prost(uint32, tag = "12")] pub world_level: u32, - /// offset: 72 + /// offset: 84 #[prost(uint32, tag = "13")] pub assist_uid: u32, - /// offset: 56 + /// offset: 32 #[prost(message, optional, tag = "15")] - pub ecifjlakhcl: ::core::option::Option, - /// offset: 64 + pub fihfpgogbje: ::core::option::Option, + /// offset: 16 #[prost(message, optional, tag = "16")] pub sp_bar: ::core::option::Option, - /// offset: 104 + /// offset: 92 #[prost(uint32, tag = "17")] - pub gmobaocefce: u32, - /// offset: 32 + pub lhnojaaojee: u32, + /// offset: 40 #[prost(message, repeated, tag = "18")] - pub imjjkbjoohj: ::prost::alloc::vec::Vec, - /// offset: 80 + pub kjeheclgbhc: ::prost::alloc::vec::Vec, + /// offset: 100 #[prost(uint32, tag = "19")] pub enhanced_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattleMonsterParam { - /// offset: 40 + /// offset: 36 #[prost(uint32, tag = "1")] pub hard_level_group: u32, - /// offset: 24 + /// offset: 32 #[prost(uint32, tag = "2")] pub level: u32, - /// offset: 32 + /// offset: 40 #[prost(uint32, tag = "3")] pub elite_group: u32, /// offset: 28 #[prost(uint32, tag = "4")] - pub dneampllfme: u32, - /// offset: 36 + pub fhekhieinaa: u32, + /// offset: 24 #[prost(uint32, tag = "5")] - pub ldhmijjjffg: u32, + pub jdgdabpellj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Anmijpjfgfj { +pub struct Kcjjihdmeph { /// offset: 32 #[prost(uint32, tag = "1")] - pub mhkhaclnbpm: u32, + pub ojhffmmafgg: u32, /// offset: 24 #[prost(message, repeated, tag = "2")] - pub ncdhlinjiii: ::prost::alloc::vec::Vec, + pub nnfidlhcchg: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Acjonmdefip { - #[prost(oneof = "acjonmdefip::Genebcenkhc", tags = "101")] - pub genebcenkhc: ::core::option::Option, +pub struct Epgdfempbki { + #[prost(oneof = "epgdfempbki::Ahioppppjbn", tags = "101")] + pub ahioppppjbn: ::core::option::Option, } -/// Nested message and enum types in `ACJONMDEFIP`. -pub mod acjonmdefip { +/// Nested message and enum types in `EPGDFEMPBKI`. +pub mod epgdfempbki { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Genebcenkhc { - /// offset: 16 + pub enum Ahioppppjbn { + /// offset: 24 #[prost(message, tag = "101")] - Lgmblfhdclp(super::Anmijpjfgfj), + Eeigdoojogb(super::Kcjjihdmeph), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleMonster { - /// offset: 36 + /// offset: 32 #[prost(uint32, tag = "1")] pub monster_id: u32, /// offset: 40 #[prost(uint32, tag = "2")] pub cur_hp: u32, - /// offset: 32 + /// offset: 36 #[prost(uint32, tag = "3")] pub max_hp: u32, /// offset: 16 #[prost(message, optional, tag = "4")] - pub extra_info: ::core::option::Option, + pub extra_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleMonsterWave { - /// offset: 24 + /// offset: 32 #[prost(message, repeated, tag = "1")] pub monster_list: ::prost::alloc::vec::Vec, - /// offset: 16 + /// offset: 24 #[prost(message, optional, tag = "2")] - pub wave_param: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub stage_id: u32, + pub monster_param: ::core::option::Option, /// offset: 44 + #[prost(uint32, tag = "3")] + pub battle_stage_id: u32, + /// offset: 40 #[prost(uint32, tag = "4")] - pub wave_id: u32, + pub battle_wave_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleBuff { - /// offset: 40 + /// offset: 44 #[prost(uint32, tag = "1")] pub id: u32, - /// offset: 44 + /// offset: 40 #[prost(uint32, tag = "2")] pub level: u32, - /// offset: 52 - #[prost(uint32, tag = "3")] - pub owner_id: u32, /// offset: 48 + #[prost(uint32, tag = "3")] + pub owner_index: u32, + /// offset: 52 #[prost(uint32, tag = "4")] pub wave_flag: u32, /// offset: 32 @@ -1203,41 +1206,41 @@ pub struct BattleBuff { } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Illcdmocldo { +pub struct Fefkbldlkng { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub id: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub cnempadnnnp: u32, /// offset: 32 - #[prost(uint32, tag = "1")] - pub id: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub hfaljihkecn: u32, - /// offset: 24 #[prost(uint32, tag = "3")] - pub laejdghmkdb: u32, + pub total_progress: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ljgiaglfhhc { +pub struct Ikppecihhee { /// offset: 24 #[prost(uint32, tag = "1")] - pub fenmmmkoocf: u32, + pub abohjgkieca: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Enflfbdaoij { - /// offset: 24 +pub struct Joflklhepdd { + /// offset: 28 #[prost(uint32, tag = "1")] pub id: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "2")] - pub hfaljihkecn: u32, + pub cnempadnnnp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gmgjcihdfma { - /// offset: 24 +pub struct Kkenefhgdlk { + /// offset: 28 #[prost(uint32, tag = "1")] pub id: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "2")] pub progress: u32, } @@ -1252,7 +1255,7 @@ pub struct BattleTarget { pub progress: u32, /// offset: 28 #[prost(uint32, tag = "3")] - pub laejdghmkdb: u32, + pub total_progress: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -1264,277 +1267,277 @@ pub struct BattleTargetList { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleLineup { - /// offset: 104 + /// offset: 88 #[prost(message, repeated, tag = "1")] pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 72 + /// offset: 96 #[prost(message, repeated, tag = "2")] pub monster_wave_list: ::prost::alloc::vec::Vec, - /// offset: 88 + /// offset: 16 #[prost(message, repeated, tag = "3")] pub buff_list: ::prost::alloc::vec::Vec, /// offset: 112 #[prost(uint32, tag = "7")] pub world_level: u32, - /// offset: 56 + /// offset: 104 #[prost(map = "uint32, message", tag = "9")] pub battle_target_info: ::std::collections::HashMap, - /// offset: 48 + /// offset: 56 #[prost(message, optional, tag = "10")] - pub ajgpjglpmio: ::core::option::Option, + pub jnaacndilea: ::core::option::Option, /// offset: 64 #[prost(message, repeated, tag = "11")] - pub ejcljldendm: ::prost::alloc::vec::Vec, - /// offset: 16 + pub inhjpnoonod: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(message, optional, tag = "12")] - pub jpgifchjdlk: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub mfkjokajjmj: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub rogue_magic_battle_info: ::core::option::Option, - /// offset: 96 - #[prost(message, optional, tag = "15")] - pub gegdpnkkakg: ::core::option::Option, + pub hjmnhbfnpfc: ::core::option::Option, /// offset: 80 + #[prost(message, optional, tag = "13")] + pub bemadclhmef: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "14")] + pub battle_rogue_magic_info: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub mblkljhljib: ::core::option::Option, + /// offset: 24 #[prost(message, optional, tag = "16")] - pub lgmblfhdclp: ::core::option::Option, + pub eeigdoojogb: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gieibeacbao { +pub struct Chjjmdmkhhg { /// offset: 16 #[prost(map = "uint32, uint32", tag = "1")] - pub gccjdhkhmnk: ::std::collections::HashMap, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub fpbnipmhanh: u32, + pub jnlhoipkjem: ::std::collections::HashMap, /// offset: 40 + #[prost(uint32, tag = "2")] + pub hffmbjbdnbi: u32, + /// offset: 36 #[prost(uint32, tag = "3")] - pub aagiancieeg: u32, + pub bomimhnbggo: u32, /// offset: 32 #[prost(uint32, tag = "4")] - pub elpfomlcobm: u32, + pub jdlgkdcjmjk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pkiakjmeaml { +pub struct AetherAvatarInfo { /// offset: 44 #[prost(uint32, tag = "1")] pub id: u32, /// offset: 48 #[prost(uint32, tag = "2")] pub index: u32, - /// offset: 40 + /// offset: 52 #[prost(uint32, tag = "3")] pub promotion: u32, - /// offset: 24 + /// offset: 16 #[prost(uint32, repeated, tag = "4")] pub passive_skill: ::prost::alloc::vec::Vec, - /// offset: 52 + /// offset: 40 #[prost(enumeration = "AetherdivideSpiritLineupType", tag = "5")] pub spirit_lineup_type: i32, - /// offset: 32 + /// offset: 24 #[prost(message, optional, tag = "6")] pub sp_bar: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pndfmbjfgim { - /// offset: 16 +pub struct Kdngfglpclj { + /// offset: 40 #[prost(message, repeated, tag = "1")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 24 + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(message, repeated, tag = "2")] pub monster_wave_list: ::prost::alloc::vec::Vec, - /// offset: 32 + /// offset: 16 #[prost(message, repeated, tag = "3")] pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientTurnSnapshot { - /// offset: 48 + /// offset: 44 #[prost(uint32, tag = "1")] pub turn_counter: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub dnapmnemhbo: u32, /// offset: 52 + #[prost(uint32, tag = "2")] + pub random_counter: u32, + /// offset: 48 #[prost(uint32, tag = "3")] - pub ibjfafabgbk: u32, + pub anim_event_counter: u32, /// offset: 24 #[prost(message, repeated, tag = "4")] - pub cdafgdbmajn: ::prost::alloc::vec::Vec, + pub snapshot_list: ::prost::alloc::vec::Vec, /// offset: 16 #[prost(message, repeated, tag = "5")] - pub kflnkebbonk: ::prost::alloc::vec::Vec, + pub anim_event_list: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "6")] - pub jeinbmlfcbp: u32, + pub gbciinphfne: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GamecoreConfig { - /// offset: 33 + /// offset: 39 #[prost(bool, tag = "1")] - pub fkmdhibfomh: bool, - /// offset: 36 + pub is_skip_verify: bool, + /// offset: 40 #[prost(uint32, tag = "2")] - pub kpebbgcmmip: u32, - /// offset: 35 + pub max_turn_cnt: u32, + /// offset: 36 #[prost(bool, tag = "3")] pub is_auto_fight: bool, /// offset: 24 #[prost(string, tag = "4")] - pub fhidoicafol: ::prost::alloc::string::String, - /// offset: 32 + pub csv_path: ::prost::alloc::string::String, + /// offset: 38 #[prost(bool, tag = "5")] - pub lkfdpdldmib: bool, - /// offset: 34 + pub lpjhgfofjfi: bool, + /// offset: 37 #[prost(bool, tag = "6")] - pub mnalpnfnmio: bool, - /// offset: 40 + pub edecgmhaike: bool, + /// offset: 32 #[prost(uint32, tag = "7")] - pub ggfcojflkbp: u32, + pub oiimnmnckmh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleBuffMsg { - /// offset: 32 - #[prost(uint32, repeated, tag = "1")] - pub bought_miracle_list: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub ejhflinciaf: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub buff_id_list: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub ofnapbilngg: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "2")] + pub buff_index_list: ::prost::alloc::vec::Vec, /// offset: 40 + #[prost(uint32, repeated, tag = "3")] + pub buff_level_list: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(uint32, repeated, tag = "4")] - pub hejhnakohlm: ::prost::alloc::vec::Vec, + pub buff_flag_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dkflaljdifl { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub mbbchgenggl: u32, +pub struct Jnboobpombm { /// offset: 24 + #[prost(uint32, tag = "1")] + pub glmcigmecno: u32, + /// offset: 28 #[prost(uint32, tag = "2")] - pub hfcdphchfgk: u32, + pub ojpdoonchbj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mbmcfoliolo { +pub struct Ldcleiodnle { /// offset: 40 #[prost(bool, tag = "1")] - pub cdnojcacelj: bool, + pub hefijajenhg: bool, /// offset: 16 #[prost(map = "string, message", tag = "2")] - pub haneginlani: ::std::collections::HashMap< + pub apfjfnbpnek: ::std::collections::HashMap< ::prost::alloc::string::String, - Dkflaljdifl, + Jnboobpombm, >, - /// offset: 32 + /// offset: 24 #[prost(bytes = "vec", tag = "3")] - pub cjkmgenojbe: ::prost::alloc::vec::Vec, + pub ochhgnmlbji: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Miaidaildkm { - /// offset: 24 +pub struct Fajobpimhgo { + /// offset: 40 #[prost(message, repeated, tag = "1")] - pub eeflghcobml: ::prost::alloc::vec::Vec, - /// offset: 48 + pub gdjcmmbmpah: ::prost::alloc::vec::Vec, + /// offset: 56 #[prost(string, tag = "2")] - pub kgbhehhfmpi: ::prost::alloc::string::String, - /// offset: 32 + pub lcfnbblpoij: ::prost::alloc::string::String, + /// offset: 24 #[prost(string, tag = "3")] pub debug_extra_info: ::prost::alloc::string::String, - /// offset: 56 + /// offset: 32 #[prost(message, repeated, tag = "4")] - pub hlagimenbjg: ::prost::alloc::vec::Vec, - /// offset: 68 + pub jlghahahbhb: ::prost::alloc::vec::Vec, + /// offset: 64 #[prost(uint32, tag = "5")] pub plane_id: u32, - /// offset: 72 + /// offset: 80 #[prost(uint32, tag = "6")] pub floor_id: u32, - /// offset: 80 + /// offset: 72 #[prost(uint32, tag = "7")] - pub ebhlfaeglcd: u32, + pub ebgpkgfnhii: u32, /// offset: 76 #[prost(uint32, tag = "8")] - pub bnjmmlkofcp: u32, + pub bliifggpelj: u32, /// offset: 16 #[prost(message, optional, tag = "9")] - pub edhbgdeicnc: ::core::option::Option, - /// offset: 64 + pub ondphcjhdgg: ::core::option::Option, + /// offset: 68 #[prost(uint32, tag = "10")] - pub bbnaefbaplg: u32, + pub ffaedbomged: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ialpdfglbml { - /// offset: 100 +pub struct BattleReplay { + /// offset: 96 #[prost(uint32, tag = "1")] pub version: u32, - /// offset: 128 + /// offset: 100 #[prost(uint32, tag = "2")] pub logic_random_seed: u32, - /// offset: 108 + /// offset: 120 #[prost(uint32, tag = "3")] pub stage_id: u32, - /// offset: 56 + /// offset: 32 #[prost(message, optional, tag = "4")] pub lineup: ::core::option::Option, - /// offset: 32 + /// offset: 56 #[prost(message, repeated, tag = "5")] pub op_list: ::prost::alloc::vec::Vec, - /// offset: 48 + /// offset: 24 #[prost(bytes = "vec", tag = "6")] pub turn_snapshot_hash: ::prost::alloc::vec::Vec, - /// offset: 112 + /// offset: 124 #[prost(uint32, tag = "7")] pub maze_plane_id: u32, - /// offset: 24 + /// offset: 64 #[prost(uint32, repeated, tag = "8")] pub extra_ability_list: ::prost::alloc::vec::Vec, - /// offset: 124 + /// offset: 132 #[prost(bool, tag = "9")] pub is_ai_consider_ultra_skill: bool, - /// offset: 116 + /// offset: 104 #[prost(enumeration = "BattleCheckStrategyType", tag = "10")] pub check_strategy: i32, - /// offset: 96 + /// offset: 108 #[prost(enumeration = "BattleModuleType", tag = "11")] pub battle_module_type: i32, /// offset: 72 #[prost(message, repeated, tag = "12")] - pub event_battle_info_list: ::prost::alloc::vec::Vec, - /// offset: 104 + pub battle_event: ::prost::alloc::vec::Vec, + /// offset: 116 #[prost(uint32, tag = "14")] pub rounds_limit: u32, - /// offset: 40 + /// offset: 16 #[prost(message, optional, tag = "15")] pub config: ::core::option::Option, - /// offset: 80 + /// offset: 40 #[prost(bytes = "vec", tag = "16")] pub game_core_log_encode: ::prost::alloc::vec::Vec, - /// offset: 132 + /// offset: 112 #[prost(uint32, tag = "17")] - pub pak_type_version: u32, - /// offset: 120 + pub client_version: u32, + /// offset: 128 #[prost(uint32, tag = "18")] - pub wave_count: u32, - /// offset: 64 + pub lpgaejnblik: u32, + /// offset: 80 #[prost(message, optional, tag = "19")] - pub gmpcfgedhki: ::core::option::Option, - /// offset: 16 + pub afllbfbimbm: ::core::option::Option, + /// offset: 88 #[prost(message, optional, tag = "100")] - pub bnmiiahadjh: ::core::option::Option, + pub fnaiofkgmga: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -1549,48 +1552,48 @@ pub struct BattleReplayStringHash { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarProperty { - /// offset: 64 + /// offset: 72 #[prost(double, tag = "1")] pub max_hp: f64, - /// offset: 48 + /// offset: 24 #[prost(double, tag = "2")] pub attack: f64, - /// offset: 32 + /// offset: 40 #[prost(double, tag = "3")] pub defence: f64, - /// offset: 40 + /// offset: 64 #[prost(double, tag = "4")] pub speed: f64, - /// offset: 24 + /// offset: 56 #[prost(double, tag = "5")] pub left_hp: f64, - /// offset: 56 + /// offset: 32 #[prost(double, tag = "6")] pub left_sp: f64, - /// offset: 72 + /// offset: 48 #[prost(double, tag = "7")] pub max_sp: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EquipmentProperty { - /// offset: 28 + /// offset: 36 #[prost(uint32, tag = "1")] pub id: u32, - /// offset: 36 + /// offset: 32 #[prost(uint32, tag = "2")] pub rank: u32, - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "3")] pub promotion: u32, - /// offset: 32 + /// offset: 24 #[prost(uint32, tag = "4")] pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AttackDamageProperty { - /// offset: 24 + /// offset: 16 #[prost(string, tag = "1")] pub attack_type: ::prost::alloc::string::String, /// offset: 32 @@ -1600,54 +1603,54 @@ pub struct AttackDamageProperty { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SkillUseProperty { - /// offset: 60 + /// offset: 56 #[prost(uint32, tag = "1")] pub skill_id: u32, - /// offset: 16 + /// offset: 24 #[prost(string, tag = "2")] pub skill_type: ::prost::alloc::string::String, - /// offset: 48 + /// offset: 52 #[prost(uint32, tag = "3")] pub skill_level: u32, /// offset: 44 #[prost(uint32, tag = "4")] pub skill_use_count: u32, - /// offset: 36 + /// offset: 60 #[prost(uint32, tag = "5")] - pub ifejkalhopi: u32, - /// offset: 52 + pub nncgmjicild: u32, + /// offset: 48 #[prost(uint32, tag = "6")] - pub jhdhlcncdnc: u32, - /// offset: 40 + pub aoipdaenijh: u32, + /// offset: 36 #[prost(uint32, tag = "7")] - pub hoafnnijoom: u32, + pub icbcohccfhh: u32, /// offset: 32 #[prost(uint32, tag = "8")] - pub mdeadclnjcj: u32, - /// offset: 56 + pub hnhbnadnbdb: u32, + /// offset: 40 #[prost(uint32, tag = "9")] - pub ohnppjemkde: u32, + pub ifjadpaoapn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gaagehabinm { +pub struct Bdamngoklfo { /// offset: 40 #[prost(uint32, tag = "1")] pub skill_id: u32, - /// offset: 32 + /// offset: 48 #[prost(double, tag = "2")] - pub hgflpenkiii: f64, + pub mgjbcnbkodj: f64, /// offset: 16 #[prost(uint32, repeated, tag = "3")] pub battle_target_list: ::prost::alloc::vec::Vec, - /// offset: 48 + /// offset: 32 #[prost(double, tag = "4")] pub damage: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpAddSource { - /// offset: 16 + /// offset: 24 #[prost(string, tag = "1")] pub source: ::prost::alloc::string::String, /// offset: 32 @@ -1657,200 +1660,200 @@ pub struct SpAddSource { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AbilityUseStt { - /// offset: 24 + /// offset: 16 #[prost(string, tag = "1")] - pub fkhhobbfmeh: ::prost::alloc::string::String, - /// offset: 32 + pub bokmabdjopj: ::prost::alloc::string::String, + /// offset: 40 #[prost(uint32, tag = "2")] pub count: u32, - /// offset: 40 + /// offset: 32 #[prost(double, tag = "3")] pub total_damage: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pjnblnipfig { +pub struct Ikoadldjdmk { /// offset: 32 #[prost(double, tag = "1")] - pub iilhldhebba: f64, + pub eoeeiaanlak: f64, /// offset: 16 #[prost(uint32, repeated, tag = "2")] - pub fjilkkfmkgk: ::prost::alloc::vec::Vec, + pub aeafmlegjgi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarBattleInfo { - /// offset: 288 + /// offset: 372 #[prost(enumeration = "AvatarType", tag = "1")] pub avatar_type: i32, - /// offset: 236 + /// offset: 368 #[prost(uint32, tag = "2")] pub id: u32, - /// offset: 352 + /// offset: 184 #[prost(uint32, tag = "3")] pub avatar_level: u32, - /// offset: 320 + /// offset: 188 #[prost(uint32, tag = "4")] pub avatar_rank: u32, - /// offset: 136 + /// offset: 376 #[prost(uint32, tag = "5")] pub avatar_promotion: u32, - /// offset: 24 + /// offset: 40 #[prost(message, optional, tag = "6")] pub avatar_status: ::core::option::Option, - /// offset: 104 + /// offset: 56 #[prost(message, repeated, tag = "7")] pub avatar_skill: ::prost::alloc::vec::Vec, - /// offset: 88 + /// offset: 64 #[prost(message, repeated, tag = "8")] pub avatar_equipment: ::prost::alloc::vec::Vec, - /// offset: 140 + /// offset: 324 #[prost(uint32, tag = "9")] pub total_turns: u32, - /// offset: 264 + /// offset: 336 #[prost(double, tag = "10")] pub total_damage: f64, /// offset: 248 #[prost(double, tag = "11")] pub total_heal: f64, - /// offset: 176 + /// offset: 128 #[prost(double, tag = "12")] pub total_damage_taken: f64, - /// offset: 360 + /// offset: 240 #[prost(double, tag = "13")] pub total_hp_recover: f64, - /// offset: 368 + /// offset: 216 #[prost(double, tag = "14")] - pub maceeaaeemc: f64, - /// offset: 232 + pub total_sp_cost: f64, + /// offset: 224 #[prost(uint32, tag = "15")] pub stage_id: u32, - /// offset: 284 + /// offset: 212 #[prost(uint32, tag = "16")] pub stage_type: u32, - /// offset: 256 + /// offset: 168 #[prost(double, tag = "17")] - pub lankmapidbd: f64, - /// offset: 32 + pub total_break_damage: f64, + /// offset: 16 #[prost(message, repeated, tag = "18")] - pub attack_damage_type: ::prost::alloc::vec::Vec, - /// offset: 56 + pub attack_type_damage: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(message, repeated, tag = "19")] pub attack_type_break_damage: ::prost::alloc::vec::Vec, - /// offset: 64 + /// offset: 112 #[prost(message, repeated, tag = "20")] pub attack_type_max_damage: ::prost::alloc::vec::Vec, - /// offset: 120 + /// offset: 96 #[prost(message, repeated, tag = "21")] pub skill_times: ::prost::alloc::vec::Vec, - /// offset: 344 + /// offset: 272 #[prost(double, tag = "22")] pub delay_cumulate: f64, - /// offset: 200 + /// offset: 300 #[prost(uint32, tag = "23")] pub total_sp_add: u32, - /// offset: 72 + /// offset: 80 #[prost(message, repeated, tag = "24")] - pub sp_add_source_list: ::prost::alloc::vec::Vec, - /// offset: 132 + pub sp_add_source: ::prost::alloc::vec::Vec, + /// offset: 328 #[prost(uint32, tag = "25")] pub total_bp_cost: u32, - /// offset: 356 + /// offset: 296 #[prost(uint32, tag = "26")] pub die_times: u32, - /// offset: 208 + /// offset: 228 #[prost(uint32, tag = "27")] pub revive_times: u32, - /// offset: 312 + /// offset: 232 #[prost(uint32, tag = "28")] pub break_times: u32, - /// offset: 168 + /// offset: 260 #[prost(uint32, tag = "29")] pub extra_turns: u32, - /// offset: 192 + /// offset: 136 #[prost(double, tag = "30")] pub total_shield: f64, - /// offset: 224 + /// offset: 200 #[prost(double, tag = "31")] pub total_shield_taken: f64, - /// offset: 376 + /// offset: 192 #[prost(double, tag = "32")] pub total_shield_damage: f64, - /// offset: 40 + /// offset: 88 #[prost(message, optional, tag = "33")] pub initial_status: ::core::option::Option, - /// offset: 80 + /// offset: 120 #[prost(message, repeated, tag = "34")] pub relics: ::prost::alloc::vec::Vec, - /// offset: 336 + /// offset: 208 #[prost(uint32, tag = "35")] pub assist_uid: u32, - /// offset: 96 + /// offset: 24 #[prost(message, repeated, tag = "36")] - pub aadgflpbpdf: ::prost::alloc::vec::Vec, - /// offset: 160 + pub nefoicoccol: ::prost::alloc::vec::Vec, + /// offset: 312 #[prost(double, tag = "37")] - pub fpfbmimbbhj: f64, - /// offset: 144 + pub jjgiifckkoj: f64, + /// offset: 352 #[prost(double, tag = "38")] - pub ggpjohnocpc: f64, - /// offset: 296 + pub ecdbafbekcn: f64, + /// offset: 176 #[prost(double, tag = "39")] - pub lackcjhhimk: f64, - /// offset: 152 + pub hhgfbhpfmjp: f64, + /// offset: 144 #[prost(double, tag = "40")] - pub fmodlgobnpe: f64, - /// offset: 16 + pub epclkkekdcf: f64, + /// offset: 104 #[prost(message, repeated, tag = "41")] - pub lhkabnickjn: ::prost::alloc::vec::Vec, - /// offset: 316 - #[prost(uint32, tag = "42")] - pub ncjhdjjdjnl: u32, - /// offset: 212 - #[prost(uint32, tag = "43")] - pub lkmgdiadopb: u32, - /// offset: 328 - #[prost(double, tag = "44")] - pub iblgmcipckm: f64, - /// offset: 216 - #[prost(double, tag = "45")] - pub hacjdjigmgp: f64, - /// offset: 272 - #[prost(double, tag = "46")] - pub imdjahajgcf: f64, - /// offset: 304 - #[prost(double, tag = "47")] - pub jdolkdbiclj: f64, - /// offset: 184 - #[prost(double, tag = "48")] - pub caccoddcjhi: f64, + pub aacihpgnjlb: ::prost::alloc::vec::Vec, /// offset: 280 + #[prost(uint32, tag = "42")] + pub ngobaogfoca: u32, + /// offset: 380 + #[prost(uint32, tag = "43")] + pub ojeemplglna: u32, + /// offset: 360 + #[prost(double, tag = "44")] + pub hipclgofjfp: f64, + /// offset: 304 + #[prost(double, tag = "45")] + pub coieadbflnc: f64, + /// offset: 344 + #[prost(double, tag = "46")] + pub bpcknhmiedp: f64, + /// offset: 288 + #[prost(double, tag = "47")] + pub egicdocmden: f64, + /// offset: 160 + #[prost(double, tag = "48")] + pub hbhffofijea: f64, + /// offset: 152 #[prost(uint32, tag = "49")] - pub lldmlohbflo: u32, - /// offset: 324 + pub eljolpgcblj: u32, + /// offset: 284 #[prost(uint32, tag = "50")] - pub chnikkcibeg: u32, - /// offset: 292 + pub medakfnmmgk: u32, + /// offset: 156 #[prost(uint32, tag = "51")] - pub lbnjhhhlpmo: u32, - /// offset: 240 + pub ccdjjbidcak: u32, + /// offset: 264 #[prost(double, tag = "52")] - pub pdlilfichil: f64, - /// offset: 340 + pub koicgjnoemg: f64, + /// offset: 332 #[prost(uint32, tag = "53")] - pub pmklphjiohc: u32, - /// offset: 172 + pub pljldfhopka: u32, + /// offset: 320 #[prost(uint32, tag = "54")] - pub mpfaenekfdc: u32, - /// offset: 128 + pub aembokfgfpc: u32, + /// offset: 236 #[prost(uint32, tag = "55")] pub enhanced_id: u32, - /// offset: 204 + /// offset: 256 #[prost(uint32, tag = "56")] - pub ldmjdilbdfo: u32, + pub ebjkgacdeoo: u32, /// offset: 48 #[prost(message, optional, tag = "57")] - pub jkhdleljfic: ::core::option::Option, + pub chofmabbfcj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] @@ -1858,141 +1861,141 @@ pub struct MonsterProperty { /// offset: 40 #[prost(double, tag = "1")] pub max_hp: f64, - /// offset: 72 + /// offset: 56 #[prost(double, tag = "2")] pub attack: f64, /// offset: 32 #[prost(double, tag = "3")] pub defence: f64, - /// offset: 56 + /// offset: 48 #[prost(double, tag = "4")] pub shield: f64, - /// offset: 64 + /// offset: 24 #[prost(double, tag = "5")] pub speed: f64, - /// offset: 48 + /// offset: 72 #[prost(double, tag = "6")] pub left_hp: f64, - /// offset: 24 + /// offset: 64 #[prost(double, tag = "7")] pub enter_battle_hp: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonsterPhaseStt { - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "1")] - pub ndbojandnjn: u32, + pub ojplfjnhjoh: u32, /// offset: 40 #[prost(double, tag = "2")] - pub mmcphlpecdj: f64, - /// offset: 32 + pub cecfnobgloe: f64, + /// offset: 24 #[prost(uint32, tag = "3")] - pub doiadgdbohf: u32, - /// offset: 28 + pub iccepdihneh: u32, + /// offset: 32 #[prost(uint32, tag = "4")] pub break_times: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonsterBattleInfo { - /// offset: 160 + /// offset: 128 #[prost(uint32, tag = "1")] pub entity_id: u32, - /// offset: 104 + /// offset: 140 #[prost(uint32, tag = "2")] pub monster_id: u32, - /// offset: 144 + /// offset: 124 #[prost(uint32, tag = "3")] - pub oakilfgdacj: u32, - /// offset: 88 + pub fedlacmbpce: u32, + /// offset: 68 #[prost(uint32, tag = "4")] - pub bfpaoanbjon: u32, - /// offset: 24 + pub fffohjdkmjd: u32, + /// offset: 48 #[prost(message, optional, tag = "5")] - pub nkcmcmhafaf: ::core::option::Option, - /// offset: 92 + pub coaabaeiecf: ::core::option::Option, + /// offset: 164 #[prost(uint32, tag = "6")] pub total_turns: u32, - /// offset: 112 + /// offset: 88 #[prost(double, tag = "7")] pub total_damage: f64, - /// offset: 120 + /// offset: 192 #[prost(double, tag = "8")] pub total_heal: f64, - /// offset: 64 + /// offset: 176 #[prost(double, tag = "9")] pub total_damage_taken: f64, - /// offset: 72 + /// offset: 112 #[prost(double, tag = "10")] - pub akgfcpfaolp: f64, - /// offset: 152 + pub backfngggfo: f64, + /// offset: 72 #[prost(double, tag = "11")] pub total_hp_recover: f64, - /// offset: 136 + /// offset: 104 #[prost(uint32, tag = "12")] pub stage_id: u32, - /// offset: 148 + /// offset: 188 #[prost(uint32, tag = "13")] pub battle_id: u32, - /// offset: 140 + /// offset: 152 #[prost(uint32, tag = "14")] - pub jbcdlfjjjdg: u32, - /// offset: 48 + pub clhlklcpcae: u32, + /// offset: 56 #[prost(message, repeated, tag = "15")] - pub attack_damage_type: ::prost::alloc::vec::Vec, - /// offset: 40 + pub attack_type_damage: ::prost::alloc::vec::Vec, + /// offset: 16 #[prost(message, repeated, tag = "16")] pub skill_times: ::prost::alloc::vec::Vec, - /// offset: 196 + /// offset: 160 #[prost(uint32, tag = "17")] pub stage_type: u32, - /// offset: 168 + /// offset: 80 #[prost(double, tag = "18")] - pub acofippjkbi: f64, - /// offset: 96 + pub okckkbkoieo: f64, + /// offset: 144 #[prost(double, tag = "19")] pub delay_cumulate: f64, - /// offset: 128 + /// offset: 172 #[prost(enumeration = "DeathSource", tag = "20")] - pub fiedknkiebh: i32, - /// offset: 188 + pub oabciidbanc: i32, + /// offset: 96 #[prost(uint32, tag = "21")] pub wave: u32, - /// offset: 108 + /// offset: 184 #[prost(int32, tag = "22")] - pub jhaogjjdbhl: i32, - /// offset: 132 + pub dbondkdkfpo: i32, + /// offset: 120 #[prost(uint32, tag = "23")] pub phase: u32, - /// offset: 192 + /// offset: 156 #[prost(uint32, tag = "24")] - pub dcmohecbolk: u32, - /// offset: 176 - #[prost(enumeration = "Agbpcblfnol", tag = "25")] - pub jedahlgbiem: i32, + pub fdggbijomef: u32, + /// offset: 100 + #[prost(enumeration = "BattleTag", tag = "25")] + pub gkdhimkoeoj: i32, /// offset: 32 #[prost(message, repeated, tag = "26")] - pub skill_info: ::prost::alloc::vec::Vec, - /// offset: 80 + pub skill_info: ::prost::alloc::vec::Vec, + /// offset: 132 #[prost(uint32, tag = "27")] - pub lanfclolbof: u32, - /// offset: 16 + pub dmeodknpgpn: u32, + /// offset: 40 #[prost(message, repeated, tag = "28")] - pub kfgjbiljgdp: ::prost::alloc::vec::Vec, - /// offset: 180 + pub eaahnfallpo: ::prost::alloc::vec::Vec, + /// offset: 64 #[prost(uint32, tag = "29")] - pub fpkoniklica: u32, - /// offset: 184 + pub pfojnebaidc: u32, + /// offset: 168 #[prost(uint32, tag = "30")] - pub jeemgaeifae: u32, - /// offset: 84 - #[prost(enumeration = "Hembndjafda", tag = "31")] - pub hbofdajjjme: i32, + pub ajjcegbeelb: u32, + /// offset: 136 + #[prost(enumeration = "Bkmkgjhidjn", tag = "31")] + pub boaioeemhha: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct BattleEventInitedData { +pub struct BattleEventProperty { /// offset: 24 #[prost(message, optional, tag = "2")] pub sp_bar: ::core::option::Option, @@ -2005,222 +2008,222 @@ pub struct BattleEventBattleInfo { pub battle_event_id: u32, /// offset: 16 #[prost(message, optional, tag = "2")] - pub status: ::core::option::Option, + pub status: ::core::option::Option, /// offset: 24 #[prost(message, repeated, tag = "3")] - pub skill_info: ::prost::alloc::vec::Vec, + pub skill_info: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ScoreInfo { /// offset: 24 #[prost(uint32, tag = "1")] - pub fjjdfpkgopc: u32, + pub lbkmcgilhmo: u32, /// offset: 28 #[prost(uint32, tag = "2")] - pub score: u32, + pub score_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ibffajohkmo { +pub struct Mcefobidpch { /// offset: 76 #[prost(uint32, tag = "1")] pub avatar_id: u32, - /// offset: 16 + /// offset: 32 #[prost(uint32, repeated, tag = "2")] - pub leickpdifog: ::prost::alloc::vec::Vec, - /// offset: 48 + pub mcjobkmdckm: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(uint32, tag = "3")] pub source: u32, /// offset: 64 #[prost(double, tag = "4")] pub damage: f64, - /// offset: 32 + /// offset: 24 #[prost(uint32, repeated, tag = "5")] - pub dikkhpfkapf: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(int32, tag = "6")] - pub eoofimegmfb: i32, - /// offset: 40 - #[prost(double, tag = "7")] - pub bkjeampnank: f64, + pub fincjnikmjn: ::prost::alloc::vec::Vec, /// offset: 72 + #[prost(int32, tag = "6")] + pub ojkgkgocjmf: i32, + /// offset: 56 + #[prost(double, tag = "7")] + pub mhdedeahpoh: f64, + /// offset: 44 #[prost(uint32, tag = "8")] - pub blfhkgpmndk: u32, - /// offset: 52 + pub nggmjiickke: u32, + /// offset: 48 #[prost(uint32, tag = "9")] pub wave: u32, - /// offset: 60 + /// offset: 52 #[prost(uint32, tag = "10")] pub enhanced_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kkmpkjpggcl { +pub struct Pjlkebgglgn { /// offset: 28 #[prost(uint32, tag = "1")] pub avatar_id: u32, /// offset: 32 #[prost(int32, tag = "2")] - pub abapdfgjnme: i32, + pub mhpgnpgdeib: i32, /// offset: 24 #[prost(uint32, tag = "3")] pub enhanced_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cnpnnijglfi { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub dpdnnmbcpoi: u32, +pub struct Cfneajepfip { /// offset: 32 - #[prost(uint32, tag = "2")] - pub dbeljgbkbpa: u32, + #[prost(uint32, tag = "1")] + pub cnimnhacedi: u32, /// offset: 24 + #[prost(uint32, tag = "2")] + pub hchhcpfoodd: u32, + /// offset: 28 #[prost(uint32, tag = "3")] pub entity_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iiiphjimnid { - /// offset: 48 +pub struct Hnlahamjnna { + /// offset: 40 #[prost(uint32, tag = "1")] - pub ndbojandnjn: u32, + pub ojplfjnhjoh: u32, /// offset: 44 #[prost(uint32, tag = "2")] pub monster_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub nglpbhmlehn: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub hgflpenkiii: u32, /// offset: 32 + #[prost(message, repeated, tag = "3")] + pub iikmojmceod: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub mgjbcnbkodj: u32, + /// offset: 24 #[prost(message, repeated, tag = "5")] - pub akkggpadaoo: ::prost::alloc::vec::Vec, + pub geglbaibadk: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mmndjamebml { - /// offset: 24 - #[prost(enumeration = "Oedifangclh", tag = "1")] - pub r#type: i32, +pub struct Fdjlaijmpbd { /// offset: 32 + #[prost(enumeration = "BattleStaticticEventType", tag = "1")] + pub r#type: i32, + /// offset: 24 #[prost(uint32, tag = "2")] - pub ocpppkddiml: u32, + pub jibdlkdoapm: u32, /// offset: 28 #[prost(uint32, tag = "3")] pub display_value: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kpkkkjpjcpc { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub lidgjndgbkm: u32, +pub struct Hoekfobegei { /// offset: 24 + #[prost(uint32, tag = "1")] + pub hcpilcoamel: u32, + /// offset: 28 #[prost(uint32, tag = "2")] - pub oaabadfkcoa: u32, + pub edpcejkgkfj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Meoifioaecf { +pub struct Gedhmahgefg { /// offset: 36 #[prost(uint32, tag = "1")] - pub jjccjjinlfl: u32, + pub dieincoipfa: u32, /// offset: 32 #[prost(bool, tag = "2")] - pub locked: bool, - /// offset: 24 + pub eboafiaodfm: bool, + /// offset: 16 #[prost(message, optional, tag = "3")] - pub kacalgioedb: ::core::option::Option, + pub cjofibipbaa: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bhgboojeopf { - /// offset: 36 +pub struct Jijogbnfiah { + /// offset: 32 #[prost(uint32, tag = "1")] pub card_id: u32, /// offset: 40 #[prost(double, tag = "2")] pub display_value: f64, - /// offset: 32 + /// offset: 36 #[prost(bool, tag = "3")] - pub pmfhmbcfcpe: bool, + pub jffhkdcmfgi: bool, /// offset: 24 #[prost(double, repeated, tag = "4")] - pub param_list: ::prost::alloc::vec::Vec, + pub switch_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Afndaflhcip { - /// offset: 24 +pub struct Jjhbdnjaiie { + /// offset: 40 #[prost(uint32, tag = "1")] - pub lidgjndgbkm: u32, - /// offset: 32 + pub hcpilcoamel: u32, + /// offset: 24 #[prost(double, tag = "2")] pub damage: f64, - /// offset: 40 - #[prost(double, tag = "3")] - pub ldejnhdmcbn: f64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lgifednkhon { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub dakijnbfkob: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, repeated, tag = "2")] - pub fjjobaemehp: ::prost::alloc::vec::Vec, + #[prost(double, tag = "3")] + pub egododmkhea: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mjkibjlobkd { +pub struct Jnghpakdafc { + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub honklamgkcm: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub hcmeonhjmkc: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mdpmnnoamdn { /// offset: 32 #[prost(uint32, tag = "1")] pub wave: u32, - /// offset: 44 + /// offset: 36 #[prost(uint32, tag = "2")] - pub score: u32, - /// offset: 40 + pub score_id: u32, + /// offset: 44 #[prost(uint32, tag = "3")] - pub dchiolbfkjn: u32, + pub ihdljnohnkh: u32, /// offset: 16 #[prost(message, repeated, tag = "4")] - pub bhjkmhmoeak: ::prost::alloc::vec::Vec, - /// offset: 36 + pub benoocjngjm: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(float, tag = "5")] - pub hgflpenkiii: f32, + pub mgjbcnbkodj: f32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dkookejchgo { +pub struct Pbiegmdbcea { /// offset: 32 #[prost(uint32, tag = "1")] - pub chbjkkmiofd: u32, + pub lgjjkcikchg: u32, /// offset: 24 #[prost(double, tag = "2")] - pub hgflpenkiii: f64, + pub mgjbcnbkodj: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pmnhmamhgai { +pub struct Nfhcnfpnafg { /// offset: 40 #[prost(uint32, tag = "1")] - pub icphoomndka: u32, - /// offset: 24 + pub pfbkadljono: u32, + /// offset: 32 #[prost(message, repeated, tag = "2")] - pub enbjcpkgcol: ::prost::alloc::vec::Vec, + pub adcmgpdbhij: ::prost::alloc::vec::Vec, /// offset: 16 #[prost(message, repeated, tag = "3")] - pub oooglieooki: ::prost::alloc::vec::Vec, + pub pemijjkpian: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Egdajhjplgi { +pub struct Ccamfgeogbc { /// offset: 24 - #[prost(enumeration = "Bojgakmdpdl", tag = "1")] + #[prost(enumeration = "Coeoggeplbo", tag = "1")] pub r#type: i32, /// offset: 28 #[prost(uint32, tag = "2")] @@ -2228,429 +2231,435 @@ pub struct Egdajhjplgi { } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Inkfcpkbgph { - /// offset: 168 +pub struct Jgejjpacanc { + /// offset: 132 #[prost(uint32, tag = "1")] - pub ljekppnpbpp: u32, - /// offset: 160 + pub cur_level_id: u32, + /// offset: 156 #[prost(uint32, tag = "2")] - pub aehcbdhhhja: u32, + pub mjfldneeghg: u32, /// offset: 144 #[prost(uint32, tag = "3")] - pub mnkeniamhdd: u32, + pub rogue_money: u32, /// offset: 104 #[prost(message, repeated, tag = "4")] - pub ojgnnmiepmj: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(message, repeated, tag = "5")] - pub ogdoijmhjah: ::prost::alloc::vec::Vec, + pub fookeaagdib: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, repeated, tag = "6")] - pub affgjjjenhg: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, optional, tag = "7")] - pub cphondeagei: ::core::option::Option, - /// offset: 112 - #[prost(uint32, repeated, tag = "8")] - pub afdpnimpcnm: ::prost::alloc::vec::Vec, - /// offset: 136 - #[prost(uint32, tag = "9")] - pub effcpkkcnig: u32, - /// offset: 132 - #[prost(uint32, tag = "10")] - pub dfjhpekkjpj: u32, - /// offset: 152 - #[prost(uint32, tag = "11")] - pub lehomjlaleo: u32, - /// offset: 72 - #[prost(uint32, repeated, tag = "12")] - pub lgdniigephh: ::prost::alloc::vec::Vec, - /// offset: 156 - #[prost(uint32, tag = "13")] - pub kaiopgghnme: u32, - /// offset: 124 - #[prost(uint32, tag = "14")] - pub kkhmebdhlbc: u32, - /// offset: 166 - #[prost(bool, tag = "15")] - pub oofhjahfidh: bool, - /// offset: 164 - #[prost(bool, tag = "16")] - pub dehghedinih: bool, - /// offset: 16 - #[prost(message, repeated, tag = "17")] - pub card_data_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "18")] - pub oganphdcjel: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(uint32, repeated, tag = "19")] - pub iifdnhdnmca: ::prost::alloc::vec::Vec, - /// offset: 165 - #[prost(bool, tag = "20")] - pub hlnlhbjdcda: bool, - /// offset: 140 - #[prost(uint32, tag = "21")] - pub bgkdndeagfh: u32, - /// offset: 64 - #[prost(message, optional, tag = "22")] - pub omdmnplnake: ::core::option::Option, - /// offset: 128 - #[prost(uint32, tag = "23")] - pub acghmbangdj: u32, - /// offset: 148 - #[prost(uint32, tag = "24")] - pub khflllgjafd: u32, - /// offset: 40 - #[prost(uint32, repeated, tag = "25")] - pub kagkcdhdigj: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub gaadlddhjfp: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(message, repeated, tag = "26")] - pub gnoncmjmcbf: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "6")] + pub oioklakojbo: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(message, optional, tag = "7")] + pub ojhnnmggfff: ::core::option::Option, + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub iikljmkafko: ::prost::alloc::vec::Vec, + /// offset: 160 + #[prost(uint32, tag = "9")] + pub jkjbnfidcim: u32, + /// offset: 136 + #[prost(uint32, tag = "10")] + pub fnggafindpm: u32, + /// offset: 168 + #[prost(uint32, tag = "11")] + pub hkanjjfbjfc: u32, + /// offset: 96 + #[prost(uint32, repeated, tag = "12")] + pub lablfmpebpl: ::prost::alloc::vec::Vec, + /// offset: 148 + #[prost(uint32, tag = "13")] + pub amcefclljhc: u32, + /// offset: 128 + #[prost(uint32, tag = "14")] + pub hnjapfabida: u32, + /// offset: 141 + #[prost(bool, tag = "15")] + pub ggdabdmgice: bool, + /// offset: 142 + #[prost(bool, tag = "16")] + pub hbbifhiknoo: bool, + /// offset: 56 + #[prost(message, repeated, tag = "17")] + pub dgjogacbmfa: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(message, repeated, tag = "18")] + pub leajejmkhof: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "19")] + pub ipioncgjfdd: ::prost::alloc::vec::Vec, + /// offset: 140 + #[prost(bool, tag = "20")] + pub mpblmgicbpn: bool, + /// offset: 124 + #[prost(uint32, tag = "21")] + pub nhanecjpdae: u32, + /// offset: 112 + #[prost(message, optional, tag = "22")] + pub nplffhalppl: ::core::option::Option, + /// offset: 164 + #[prost(uint32, tag = "23")] + pub lpnlhffgffo: u32, /// offset: 120 + #[prost(uint32, tag = "24")] + pub flconablgfe: u32, + /// offset: 72 + #[prost(uint32, repeated, tag = "25")] + pub khmdenafjkf: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "26")] + pub workbench_func_list: ::prost::alloc::vec::Vec, + /// offset: 152 #[prost(uint32, tag = "27")] - pub jdnlmdlmejd: u32, + pub fbmedogmkoj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hhlfaipaaph { +pub struct Holefhmebmo { /// offset: 24 #[prost(uint32, tag = "1")] - pub gcpfibgpang: u32, + pub daecbnalfic: u32, /// offset: 28 #[prost(uint32, tag = "2")] - pub falpfhhdnna: u32, + pub idadolnknih: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lpnhmknboeo { +pub struct Ojdalejmjka { /// offset: 16 #[prost(uint32, repeated, tag = "1")] - pub jpojhpefiig: ::prost::alloc::vec::Vec, + pub dehjlnnllco: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ihgeklpianl { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub libkldalhjp: u32, +pub struct Ohnfmmijamn { /// offset: 28 + #[prost(uint32, tag = "1")] + pub bklmihhlfog: u32, + /// offset: 24 #[prost(uint32, tag = "2")] pub unique_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lmbdadopcpg { - /// offset: 24 +pub struct Kdhdodoaokf { + /// offset: 16 #[prost(uint32, repeated, tag = "1")] - pub jngfnjphmlj: ::prost::alloc::vec::Vec, - /// offset: 32 + pub ibhnpaaohbl: ::prost::alloc::vec::Vec, + /// offset: 24 #[prost(uint32, repeated, tag = "2")] - pub canngfdafoe: ::prost::alloc::vec::Vec, + pub ckjjbecaeld: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hocgmcoojba { +pub struct Cbjdaebgkgi { /// offset: 32 #[prost(uint32, tag = "1")] - pub enhgonphgef: u32, + pub jojbeoapfld: u32, /// offset: 24 #[prost(map = "uint32, message", tag = "2")] - pub nnelfalcdol: ::std::collections::HashMap, + pub hkfcmeoobae: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Glajkeikpkh { +pub struct Pnaokoadfgm { /// offset: 32 #[prost(uint32, tag = "1")] - pub gcpfibgpang: u32, - #[prost(oneof = "glajkeikpkh::Emokphngbfa", tags = "101, 102, 103")] - pub emokphngbfa: ::core::option::Option, + pub daecbnalfic: u32, + #[prost(oneof = "pnaokoadfgm::Idooakegpgd", tags = "101, 102, 103")] + pub idooakegpgd: ::core::option::Option, } -/// Nested message and enum types in `GLAJKEIKPKH`. -pub mod glajkeikpkh { +/// Nested message and enum types in `PNAOKOADFGM`. +pub mod pnaokoadfgm { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Emokphngbfa { - /// offset: 24 + pub enum Idooakegpgd { + /// offset: 16 #[prost(message, tag = "101")] - Idhfmbgpaln(super::Ihgeklpianl), - /// offset: 24 + Mdddbcbiflj(super::Ohnfmmijamn), + /// offset: 16 #[prost(message, tag = "102")] - Iibbgjfchdo(super::Lmbdadopcpg), - /// offset: 24 + Fgejcnnefmh(super::Kdhdodoaokf), + /// offset: 16 #[prost(message, tag = "103")] - Mljjlbhnadk(super::Hocgmcoojba), + Ajegdahhclk(super::Cbjdaebgkgi), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bldbbpbfien { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub hhdbkabgbcn: u32, - /// offset: 36 - #[prost(enumeration = "Ddlhaknkjen", tag = "2")] - pub haijeahidck: i32, +pub struct Ookbcjjnhmh { /// offset: 28 - #[prost(uint32, tag = "3")] - pub ohoijlhekok: u32, + #[prost(uint32, tag = "1")] + pub gaepioibban: u32, /// offset: 32 - #[prost(enumeration = "Nhpokicfaja", tag = "4")] - pub fbgmagfbbla: i32, + #[prost(enumeration = "Dpkfpdoflgf", tag = "2")] + pub bnpmjpokemi: i32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub cifdohkifcg: u32, + /// offset: 36 + #[prost(enumeration = "Dnhfhekjlkm", tag = "4")] + pub ndamkiikmoe: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Akgjihkpbgc { +pub struct Aelhejgmcif { /// offset: 40 #[prost(uint32, tag = "1")] - pub jhnkmohlbpj: u32, - /// offset: 48 + pub lodfbklaaag: u32, + /// offset: 44 #[prost(uint32, tag = "2")] - pub onofhghjogp: u32, + pub bnifgplolon: u32, /// offset: 16 #[prost(message, repeated, tag = "3")] - pub hnjgpkabcca: ::prost::alloc::vec::Vec, + pub bianianplhj: ::prost::alloc::vec::Vec, /// offset: 24 #[prost(message, repeated, tag = "5")] - pub hgcgilabndl: ::prost::alloc::vec::Vec, - /// offset: 44 + pub lfnnahjdcnb: ::prost::alloc::vec::Vec, + /// offset: 52 #[prost(uint32, tag = "6")] - pub kafpihpafee: u32, + pub eocdknbgkpg: u32, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub dpebppolpii: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ocijdcfomdn { - /// offset: 52 +pub struct Bckehaepllp { + /// offset: 48 #[prost(uint32, tag = "1")] - pub libkldalhjp: u32, - /// offset: 56 + pub bklmihhlfog: u32, + /// offset: 60 #[prost(uint32, tag = "2")] - pub mhkhaclnbpm: u32, + pub ojhffmmafgg: u32, /// offset: 64 #[prost(uint32, tag = "3")] pub pos: u32, /// offset: 32 #[prost(message, repeated, tag = "7")] - pub bllpkhgmihh: ::prost::alloc::vec::Vec, - /// offset: 48 + pub hheajgdjcao: ::prost::alloc::vec::Vec, + /// offset: 56 #[prost(uint32, tag = "8")] pub avatar_id: u32, - /// offset: 16 - #[prost(map = "string, uint32", tag = "9")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, /// offset: 24 + #[prost(map = "string, uint32", tag = "9")] + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + /// offset: 16 #[prost(map = "uint32, uint32", tag = "10")] - pub immnngmmdai: ::std::collections::HashMap, - /// offset: 60 + pub oepklfcbcda: ::std::collections::HashMap, + /// offset: 52 #[prost(uint32, tag = "11")] pub unique_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jneaplkkpej { - /// offset: 32 +pub struct Pgekpaomiie { + /// offset: 36 #[prost(uint32, tag = "1")] pub unique_id: u32, - /// offset: 36 + /// offset: 40 #[prost(uint32, tag = "2")] pub npc_id: u32, - /// offset: 40 + /// offset: 32 #[prost(uint32, tag = "3")] pub pos: u32, /// offset: 16 #[prost(message, repeated, tag = "4")] - pub aoefihbbage: ::prost::alloc::vec::Vec, + pub bkihcaalbnb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hkeicmkmibk { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub jniiboloemp: u32, - /// offset: 24 - #[prost(map = "uint32, uint32", tag = "4")] - pub immnngmmdai: ::std::collections::HashMap, +pub struct Nmlmfafbkmh { /// offset: 36 + #[prost(uint32, tag = "2")] + pub gmbhfoclice: u32, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "4")] + pub oepklfcbcda: ::std::collections::HashMap, + /// offset: 32 #[prost(uint32, tag = "5")] pub unique_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fbpjabohkfi { +pub struct Fkncjgikbil { /// offset: 32 #[prost(uint32, tag = "1")] - pub hbekefkjaga: u32, - /// offset: 16 + pub npciencemod: u32, + /// offset: 24 #[prost(map = "string, uint32", tag = "2")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Haeajbcohnc { +pub struct Acbplbbkloi { /// offset: 32 #[prost(uint32, tag = "1")] - pub afddeocomhm: u32, + pub mepjhoamnnn: u32, /// offset: 16 #[prost(map = "string, uint32", tag = "2")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Edbhpdfmojd { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub jbeaoafmama: u32, +pub struct Oainfbfhfoa { /// offset: 28 + #[prost(uint32, tag = "1")] + pub lahbhhemmhg: u32, + /// offset: 36 #[prost(uint32, tag = "2")] - pub kiekjeffphk: u32, + pub cmlelldmboe: u32, /// offset: 32 #[prost(uint32, tag = "3")] - pub lbmncagokif: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oondiimgnbo { - /// offset: 32 - #[prost(message, repeated, tag = "1")] - pub nobnojalnnl: ::prost::alloc::vec::Vec, - /// offset: 84 - #[prost(uint32, tag = "2")] - pub wave_id: u32, - /// offset: 108 - #[prost(uint32, tag = "3")] - pub kgcldfkjccl: u32, - /// offset: 88 - #[prost(uint32, tag = "4")] - pub nciadbakmae: u32, - /// offset: 48 - #[prost(message, repeated, tag = "7")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(message, repeated, tag = "8")] - pub pbldmkiffno: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(uint32, tag = "9")] - pub dfnbkalpgph: u32, + pub section_id: u32, /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub mfkbgcjjhhb: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, optional, tag = "11")] - pub bddnmagknpf: ::core::option::Option, - /// offset: 100 - #[prost(uint32, tag = "12")] - pub fjndompbnep: u32, - /// offset: 80 - #[prost(uint32, tag = "13")] - pub ahanjlehcga: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub inmmpdekgbo: ::prost::alloc::vec::Vec, - /// offset: 92 - #[prost(bool, tag = "15")] - pub akncldodlml: bool, - /// offset: 104 - #[prost(uint32, tag = "16")] - pub elifnjbnagc: u32, - /// offset: 40 - #[prost(message, repeated, tag = "17")] - pub johmobdipjd: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub caappfmofgk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Plpnlibmnio { +pub struct Aejeagaomhn { + /// offset: 48 + #[prost(message, repeated, tag = "1")] + pub iepihndglie: ::prost::alloc::vec::Vec, + /// offset: 96 + #[prost(uint32, tag = "2")] + pub battle_wave_id: u32, + /// offset: 104 + #[prost(uint32, tag = "3")] + pub jcncbnbpmca: u32, + /// offset: 92 + #[prost(uint32, tag = "4")] + pub efkgmhefobg: u32, /// offset: 40 + #[prost(message, repeated, tag = "7")] + pub khhopfjphec: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "8")] + pub bedjaofbokb: ::prost::alloc::vec::Vec, + /// offset: 100 + #[prost(uint32, tag = "9")] + pub mmgbpbmfbia: u32, + /// offset: 64 + #[prost(message, repeated, tag = "10")] + pub jbhdbelfefn: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(message, optional, tag = "11")] + pub mhffgpgpfcg: ::core::option::Option, + /// offset: 80 + #[prost(uint32, tag = "12")] + pub kbjdjijgfbg: u32, + /// offset: 84 + #[prost(uint32, tag = "13")] + pub season: u32, + /// offset: 56 + #[prost(message, repeated, tag = "14")] + pub ccpdbbkpmin: ::prost::alloc::vec::Vec, + /// offset: 108 + #[prost(bool, tag = "15")] + pub ojdobchgkmj: bool, + /// offset: 88 + #[prost(uint32, tag = "16")] + pub fkgbojhnhij: u32, + /// offset: 16 + #[prost(message, repeated, tag = "17")] + pub pdemmpcifen: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ogcmpnfonhh { + /// offset: 16 #[prost(string, tag = "1")] pub phase: ::prost::alloc::string::String, - /// offset: 60 - #[prost(float, tag = "2")] - pub dbdcnafoglf: f32, - /// offset: 52 - #[prost(float, tag = "3")] - pub hdalbiancmf: f32, /// offset: 72 + #[prost(float, tag = "2")] + pub pmaehmhpcdo: f32, + /// offset: 64 + #[prost(float, tag = "3")] + pub djojpbphcfk: f32, + /// offset: 52 #[prost(uint32, tag = "4")] - pub adjbbabehah: u32, + pub mhgieimdinf: u32, /// offset: 68 #[prost(uint32, tag = "5")] - pub pjbiaejecae: u32, - /// offset: 56 + pub dpkloakaadh: u32, + /// offset: 60 #[prost(uint32, tag = "6")] - pub kpnacghjalj: u32, - /// offset: 48 + pub nnfkoehggkh: u32, + /// offset: 56 #[prost(uint32, tag = "7")] - pub fpjadbgohkm: u32, - /// offset: 64 + pub pccfiebikab: u32, + /// offset: 48 #[prost(uint32, tag = "8")] - pub cjejofamdcd: u32, - /// offset: 24 + pub pmnbhmgglld: u32, + /// offset: 40 #[prost(uint32, repeated, tag = "9")] - pub bgjcedeahgm: ::prost::alloc::vec::Vec, + pub lidcjijfmfn: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, repeated, tag = "10")] - pub aagjcjiofpa: ::prost::alloc::vec::Vec, + pub banbfkomooi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Chdonigoknm { - /// offset: 56 - #[prost(uint32, tag = "1")] - pub heocpakcelm: u32, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub bghkbmfhmoj: u32, - /// offset: 44 - #[prost(uint32, tag = "3")] - pub loollagmnlh: u32, +pub struct Fdfnofleogl { /// offset: 60 + #[prost(uint32, tag = "1")] + pub pmjlfahimil: u32, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub mklhagepkja: u32, + /// offset: 56 + #[prost(uint32, tag = "3")] + pub bdbllpninff: u32, + /// offset: 48 #[prost(uint32, tag = "4")] - pub hecjooobahc: u32, + pub lnmngfepafb: u32, /// offset: 40 #[prost(uint32, tag = "5")] - pub fkeaaipkpaa: u32, + pub mflbeealbho: u32, /// offset: 52 #[prost(uint32, tag = "6")] - pub icleenhipoh: u32, - /// offset: 16 + pub fgbklmikhff: u32, + /// offset: 32 #[prost(uint32, repeated, tag = "7")] pub boss_info: ::prost::alloc::vec::Vec, - /// offset: 32 + /// offset: 16 #[prost(message, repeated, tag = "8")] - pub odbonkcmdmp: ::prost::alloc::vec::Vec, + pub lfefdpdnkim: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jffndobbnfb { - /// offset: 28 +pub struct Ooapnjaldae { + /// offset: 52 #[prost(uint32, tag = "1")] pub wave: u32, - /// offset: 48 - #[prost(double, tag = "2")] - pub hfihdddiljb: f64, /// offset: 56 + #[prost(double, tag = "2")] + pub plgoncpoopl: f64, + /// offset: 40 #[prost(double, tag = "3")] - pub khgclcllecl: f64, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub ffpmjfhncho: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub gmmbgamhbkb: u32, + pub lbnknkgphbd: f64, /// offset: 32 + #[prost(uint32, tag = "4")] + pub peejcgnmbmp: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub pdiknkbdmln: u32, + /// offset: 48 #[prost(uint32, tag = "6")] pub status: u32, - /// offset: 40 + /// offset: 36 #[prost(uint32, tag = "7")] - pub bmbgklkecaj: u32, - /// offset: 44 + pub nkmkmcmnlla: u32, + /// offset: 28 #[prost(uint32, tag = "8")] - pub mamhhhchpdk: u32, + pub doebdllhdbk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ekbagmomecl { - /// offset: 24 +pub struct Odfilbbdnje { + /// offset: 16 #[prost(string, tag = "1")] pub key: ::prost::alloc::string::String, /// offset: 32 @@ -2659,817 +2668,856 @@ pub struct Ekbagmomecl { } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Plgjihifpag { +pub struct BattleRogueMagicModifierInfo { /// offset: 24 #[prost(uint32, tag = "1")] - pub egmebanhhnf: u32, + pub rogue_magic_battle_const: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattleRogueMagicRoundCount { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub gpojenhaiba: u32, /// offset: 28 + #[prost(uint32, tag = "1")] + pub battle_standard_round_limit: u32, + /// offset: 24 #[prost(uint32, tag = "2")] - pub kljklbmlefo: u32, + pub battle_extra_round_limit: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleRogueMagicUnit { /// offset: 44 #[prost(uint32, tag = "1")] - pub unit_id: u32, - /// offset: 36 + pub magic_unit_id: u32, + /// offset: 32 #[prost(uint32, tag = "2")] pub level: u32, - /// offset: 32 + /// offset: 36 #[prost(bool, tag = "3")] - pub locked: bool, + pub eboafiaodfm: bool, /// offset: 40 #[prost(uint32, tag = "4")] - pub slot_id: u32, + pub dice_slot_id: u32, /// offset: 16 #[prost(map = "uint32, uint32", tag = "5")] - pub counter_map: ::std::collections::HashMap, + pub hobmcidgmal: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleRogueMagicScepter { - /// offset: 40 + /// offset: 44 #[prost(uint32, tag = "1")] pub scepter_id: u32, - /// offset: 24 + /// offset: 16 #[prost(message, repeated, tag = "2")] - pub magic_list: ::prost::alloc::vec::Vec, - /// offset: 44 + pub rogue_magic_unit_info_list: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(uint32, tag = "3")] pub level: u32, - /// offset: 16 + /// offset: 32 #[prost(map = "uint32, uint32", tag = "4")] - pub trench_count: ::std::collections::HashMap, + pub lfmcocghfam: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct BattleRogueMagicData { - /// offset: 24 +pub struct BattleRogueMagicItemInfo { + /// offset: 32 #[prost(message, optional, tag = "1")] - pub round_cnt: ::core::option::Option, + pub battle_round_count: ::core::option::Option, /// offset: 16 #[prost(message, repeated, tag = "2")] pub battle_scepter_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fkocboocdnl { +pub struct Bkbojklkpda { /// offset: 24 #[prost(uint32, tag = "1")] - pub poiiaiakilf: u32, + pub amabghfojek: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicBattleUnitInfo { - #[prost(oneof = "rogue_magic_battle_unit_info::Item", tags = "1, 2")] - pub item: ::core::option::Option, +pub struct BattleRogueMagicDetailInfo { + #[prost(oneof = "battle_rogue_magic_detail_info::Paiigoggofj", tags = "1, 2")] + pub paiigoggofj: ::core::option::Option, } -/// Nested message and enum types in `RogueMagicBattleUnitInfo`. -pub mod rogue_magic_battle_unit_info { +/// Nested message and enum types in `BattleRogueMagicDetailInfo`. +pub mod battle_rogue_magic_detail_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Item { + pub enum Paiigoggofj { /// offset: 24 #[prost(message, tag = "1")] - BattleRogueMagicData(super::BattleRogueMagicData), + BattleMagicItemInfo(super::BattleRogueMagicItemInfo), /// offset: 24 #[prost(message, tag = "2")] - Ennpjglcbem(super::Fkocboocdnl), + Ojefjfombco(super::Bkbojklkpda), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicBattleInfo { - /// offset: 32 +pub struct BattleRogueMagicInfo { + /// offset: 16 #[prost(message, optional, tag = "1")] - pub scepter: ::core::option::Option, + pub modifier_content: ::core::option::Option, /// offset: 24 #[prost(message, optional, tag = "2")] - pub player_detail_info: ::core::option::Option, + pub detail_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ccccgjabbpm { - /// offset: 32 +pub struct Hhnjidmdgna { + /// offset: 24 #[prost(uint32, tag = "1")] pub scepter_id: u32, - /// offset: 36 + /// offset: 28 #[prost(uint32, tag = "2")] pub level: u32, - /// offset: 24 + /// offset: 32 #[prost(double, tag = "3")] pub total_damage: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aenpijcdbmh { +pub struct Pgkmihlkgam { /// offset: 36 #[prost(uint32, tag = "1")] - pub klmcppbbooh: u32, + pub hjkhcknlali: u32, /// offset: 32 #[prost(uint32, tag = "2")] - pub kmoeadpmflg: u32, + pub dglkbmdkbhf: u32, /// offset: 16 #[prost(message, repeated, tag = "3")] - pub cicanokpnbm: ::prost::alloc::vec::Vec, + pub fdljlcgmflb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gbncgkdnmil { +pub struct Ofbhgjdbilj { /// offset: 32 #[prost(uint32, tag = "1")] - pub aenkmaoabmp: u32, + pub ekolannaihg: u32, /// offset: 36 #[prost(uint32, tag = "2")] - pub mcdpiabdigi: u32, - /// offset: 40 - #[prost(double, tag = "3")] - pub jnimloiohnh: f64, + pub abldaaoiidj: u32, /// offset: 24 + #[prost(double, tag = "3")] + pub bfcaokofdih: f64, + /// offset: 40 #[prost(double, tag = "4")] - pub iejjjkfedah: f64, + pub olhglbnfnpg: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mbjhfpcjaln { - /// offset: 16 +pub struct Abejoflfeoh { + /// offset: 24 #[prost(message, optional, tag = "1")] - pub ehnnecghjal: ::core::option::Option, + pub klcomicpfce: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aigknhfanga { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub eilaabldphm: ::core::option::Option, +pub struct Dnfnlombhfk { /// offset: 16 + #[prost(message, optional, tag = "1")] + pub kppegbedlmj: ::core::option::Option, + /// offset: 32 #[prost(message, optional, tag = "2")] - pub inpkgdfmpea: ::core::option::Option, + pub gkmdhpfkoba: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ldobbiabddl { +pub struct Fdibppnjafn { /// offset: 24 #[prost(uint32, tag = "1")] - pub geddibikmmp: u32, + pub kcilhecoflh: u32, /// offset: 32 #[prost(double, tag = "2")] - pub kggdjhjlenl: f64, + pub fmagcaddalc: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hpkeffechfg { +pub struct Bmnkgkcbipl { /// offset: 32 - #[prost(enumeration = "Dlbfahoagph", tag = "1")] + #[prost(enumeration = "Oehbalahkeb", tag = "1")] pub r#type: i32, - /// offset: 36 + /// offset: 40 #[prost(uint32, tag = "2")] pub config_id: u32, - /// offset: 44 + /// offset: 36 #[prost(uint32, tag = "3")] pub unique_id: u32, - /// offset: 40 + /// offset: 44 #[prost(uint32, tag = "4")] pub level: u32, - /// offset: 16 + /// offset: 24 #[prost(message, repeated, tag = "5")] - pub param_list: ::prost::alloc::vec::Vec, + pub switch_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pfkamafikko { +pub struct Eeccgodhkcb { /// offset: 32 #[prost(uint32, tag = "1")] - pub labaigdgjhl: u32, + pub kmlbkjheghk: u32, /// offset: 24 #[prost(uint32, repeated, tag = "2")] - pub jnbegheioci: ::prost::alloc::vec::Vec, + pub lpambdblhef: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eacdeapkilk { - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub cfkjepmnlji: ::prost::alloc::vec::Vec, +pub struct Kjpnnljlamh { /// offset: 40 + #[prost(message, repeated, tag = "1")] + pub glgmmnfhgbb: ::prost::alloc::vec::Vec, + /// offset: 16 #[prost(map = "uint32, uint32", tag = "2")] - pub lkgdfhfblde: ::std::collections::HashMap, + pub oaalofmhean: ::std::collections::HashMap, /// offset: 32 #[prost(message, repeated, tag = "3")] - pub febmncjifmn: ::prost::alloc::vec::Vec, + pub npenaciicbg: ::prost::alloc::vec::Vec, /// offset: 52 #[prost(uint32, tag = "4")] pub area_id: u32, /// offset: 48 #[prost(uint32, tag = "5")] - pub pbalfienefo: u32, + pub difficulty_level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lhlbianfohk { +pub struct Laopokpogjn { /// offset: 28 #[prost(uint32, tag = "1")] pub monster_id: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub gmlfmpjpegg: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub ffpmjfhncho: u32, /// offset: 36 + #[prost(uint32, tag = "2")] + pub oghnmgalmap: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub peejcgnmbmp: u32, + /// offset: 32 #[prost(uint32, tag = "4")] - pub gmmbgamhbkb: u32, + pub pdiknkbdmln: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Llbmaphbogd { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub acpbmmmcjip: u32, +pub struct Gjfpbcfficp { /// offset: 40 + #[prost(uint32, tag = "1")] + pub ejmboepbjcf: u32, + /// offset: 32 #[prost(double, tag = "2")] - pub kkancjaljpo: f64, - /// offset: 48 + pub kllfpnjeibh: f64, + /// offset: 24 #[prost(double, tag = "3")] - pub mfjkflgpgko: f64, - /// offset: 60 + pub inipofggbhd: f64, + /// offset: 48 #[prost(uint32, tag = "4")] pub wave: u32, - /// offset: 56 + /// offset: 44 #[prost(uint32, tag = "5")] - pub gmlfmpjpegg: u32, - /// offset: 32 + pub oghnmgalmap: u32, + /// offset: 56 #[prost(double, tag = "6")] - pub abmnlnnoklo: f64, + pub hboeeoblnam: f64, /// offset: 64 #[prost(double, tag = "7")] - pub ihbbekcoeae: f64, + pub dldjnjamfgc: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dpndlhgemei { +pub struct Ljenaifiede { /// offset: 32 #[prost(uint32, tag = "1")] - pub imcpkldfdog: u32, - /// offset: 36 + pub neflpihoebk: u32, + /// offset: 40 #[prost(uint32, tag = "2")] - pub ajgeofiiddh: u32, + pub knappbpnfpk: u32, /// offset: 24 #[prost(double, tag = "3")] - pub omoenbakmhj: f64, + pub nkahendlcgk: f64, /// offset: 44 #[prost(uint32, tag = "4")] pub wave: u32, - /// offset: 40 + /// offset: 36 #[prost(uint32, tag = "5")] - pub gmlfmpjpegg: u32, + pub oghnmgalmap: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cpfcbladmbh { - /// offset: 40 - #[prost(message, repeated, tag = "1")] - pub haafhkiagkm: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "2")] - pub oeagamjdlma: ::prost::alloc::vec::Vec, +pub struct Ocgnmdackmo { /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub kglamnloncl: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub cepmmhpbnoe: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(message, repeated, tag = "3")] - pub plennpagjll: ::prost::alloc::vec::Vec, + pub hkjjdgfiden: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ecblblfaaff { - /// offset: 24 +pub struct Nlmhgccgchb { + /// offset: 28 #[prost(uint32, tag = "1")] pub avatar_id: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "2")] - pub fkonlcicmhp: u32, + pub ndnfbmhpffc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mogbgncdoia { - /// offset: 56 - #[prost(uint32, tag = "1")] - pub mckamfciodd: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub chgcmofefjj: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub anejepppiia: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "4")] - pub igehhgeicnm: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub olemcihlfpf: ::prost::alloc::vec::Vec, +pub struct Geljkagbhml { /// offset: 48 - #[prost(uint32, tag = "6")] - pub deblcofcdda: u32, + #[prost(uint32, tag = "1")] + pub doknjohpdcl: u32, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub mhpmdkideai: u32, /// offset: 52 + #[prost(uint32, tag = "3")] + pub jgenickfeih: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub khhgimikego: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub elgelknoflh: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub ljpfpijcgap: u32, + /// offset: 44 #[prost(uint32, tag = "7")] - pub kncnplndoio: u32, + pub akdebeijikl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nekaenfggac { +pub struct Feajaiolebd { /// offset: 16 #[prost(message, optional, tag = "1")] - pub aldghbnaonn: ::core::option::Option, + pub chbnbnnfnhc: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Njhccemdeoc { +pub struct Kgdmngehmmg { /// offset: 24 #[prost(uint32, tag = "1")] pub progress: u32, } #[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pbaafdpofkh { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub elnocnpgpna: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub dhkbkphjpln: u32, +} +#[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Baagnohehma { - /// offset: 32 +pub struct Nmhhmdikgjb { + /// offset: 24 #[prost(message, optional, tag = "1")] - pub oimbgaehdbi: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub kkolfabgbkg: ::core::option::Option, + pub cjeillbnahc: ::core::option::Option, /// offset: 40 + #[prost(message, optional, tag = "2")] + pub khllnihinbc: ::core::option::Option, + /// offset: 32 #[prost(message, optional, tag = "3")] - pub igicbcemhee: ::core::option::Option, + pub dkdmbmeenbb: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub mehbebehdnh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mkeecchgigh { - /// offset: 56 - #[prost(uint32, tag = "1")] - pub nmimbiopeki: u32, - /// offset: 72 - #[prost(double, tag = "2")] - pub kkancjaljpo: f64, - /// offset: 88 - #[prost(double, tag = "3")] - pub mfjkflgpgko: f64, +pub struct Dmndlhfhaae { /// offset: 80 - #[prost(uint32, tag = "4")] - pub fgmlckanian: u32, - /// offset: 60 - #[prost(uint32, tag = "5")] - pub goaebjjpajo: u32, - /// offset: 64 - #[prost(uint32, tag = "6")] - pub nilakidfhej: u32, - /// offset: 84 - #[prost(uint32, tag = "7")] - pub pigndajgdgj: u32, - /// offset: 24 - #[prost(double, tag = "8")] - pub abmnlnnoklo: f64, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub jbjmophgmfa: u32, + #[prost(uint32, tag = "1")] + pub mfmaphlacfi: u32, /// offset: 40 - #[prost(uint32, tag = "10")] - pub pobibiloani: u32, + #[prost(double, tag = "2")] + pub kllfpnjeibh: f64, + /// offset: 64 + #[prost(double, tag = "3")] + pub inipofggbhd: f64, + /// offset: 76 + #[prost(uint32, tag = "4")] + pub hcgpmngfidn: u32, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub ajbfcfejcni: u32, + /// offset: 72 + #[prost(uint32, tag = "6")] + pub cpjfpojijcb: u32, /// offset: 48 - #[prost(double, tag = "11")] - pub ihbbekcoeae: f64, + #[prost(uint32, tag = "7")] + pub pmfipjblccp: u32, /// offset: 32 + #[prost(double, tag = "8")] + pub hboeeoblnam: f64, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub idkkbcbbfcd: u32, + /// offset: 52 + #[prost(uint32, tag = "10")] + pub dccpgoknhge: u32, + /// offset: 88 + #[prost(double, tag = "11")] + pub dldjnjamfgc: f64, + /// offset: 28 #[prost(uint32, tag = "12")] - pub loollagmnlh: u32, - /// offset: 44 + pub bdbllpninff: u32, + /// offset: 60 #[prost(uint32, tag = "13")] - pub fkeaaipkpaa: u32, + pub mflbeealbho: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bdmgoejbfgl { - /// offset: 36 +pub struct Jjkednhiikn { + /// offset: 40 #[prost(uint32, tag = "1")] - pub loollagmnlh: u32, + pub bdbllpninff: u32, /// offset: 32 #[prost(uint32, tag = "2")] - pub fkeaaipkpaa: u32, - /// offset: 40 + pub mflbeealbho: u32, + /// offset: 36 #[prost(uint32, tag = "3")] - pub akpmnjcggai: u32, - /// offset: 16 + pub bkbonlpkkeb: u32, + /// offset: 24 #[prost(message, repeated, tag = "4")] - pub oeagamjdlma: ::prost::alloc::vec::Vec, + pub cepmmhpbnoe: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hanhnlneicm { - /// offset: 72 +pub struct Kaohigladke { + /// offset: 116 #[prost(uint32, tag = "1")] pub avatar_id: u32, - /// offset: 116 + /// offset: 72 #[prost(uint32, tag = "2")] - pub dpdnnmbcpoi: u32, - /// offset: 132 + pub cnimnhacedi: u32, + /// offset: 88 #[prost(uint32, tag = "3")] pub total_turns: u32, - /// offset: 168 + /// offset: 144 #[prost(double, tag = "4")] - pub fbcmjgmbjfc: f64, - /// offset: 40 + pub efmcdcjkmgn: f64, + /// offset: 24 #[prost(message, repeated, tag = "5")] pub skill_times: ::prost::alloc::vec::Vec, - /// offset: 136 + /// offset: 80 #[prost(double, tag = "6")] pub total_damage: f64, - /// offset: 144 + /// offset: 120 #[prost(double, tag = "7")] - pub lankmapidbd: f64, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub attack_damage_type: ::prost::alloc::vec::Vec, + pub total_break_damage: f64, /// offset: 48 + #[prost(message, repeated, tag = "8")] + pub attack_type_damage: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(message, repeated, tag = "9")] pub attack_type_break_damage: ::prost::alloc::vec::Vec, - /// offset: 24 + /// offset: 16 #[prost(message, repeated, tag = "10")] pub attack_type_max_damage: ::prost::alloc::vec::Vec, - /// offset: 56 + /// offset: 160 #[prost(double, tag = "11")] pub total_damage_taken: f64, - /// offset: 160 + /// offset: 56 #[prost(double, tag = "12")] pub total_heal: f64, - /// offset: 88 + /// offset: 128 #[prost(double, tag = "13")] pub total_hp_recover: f64, - /// offset: 152 + /// offset: 136 #[prost(double, tag = "14")] pub total_shield: f64, - /// offset: 120 + /// offset: 104 #[prost(double, tag = "15")] pub total_shield_taken: f64, - /// offset: 64 + /// offset: 96 #[prost(double, tag = "16")] pub total_shield_damage: f64, - /// offset: 112 + /// offset: 64 #[prost(uint32, tag = "17")] pub break_times: u32, - /// offset: 104 + /// offset: 76 #[prost(uint32, tag = "18")] - pub jeplcjkfomb: u32, - /// offset: 100 + pub nemlhmkcmje: u32, + /// offset: 68 #[prost(uint32, tag = "19")] - pub ncjhdjjdjnl: u32, - /// offset: 128 + pub ngobaogfoca: u32, + /// offset: 172 #[prost(uint32, tag = "20")] - pub lkmgdiadopb: u32, - /// offset: 80 + pub ojeemplglna: u32, + /// offset: 152 #[prost(double, tag = "21")] - pub iblgmcipckm: f64, - /// offset: 108 + pub hipclgofjfp: f64, + /// offset: 112 #[prost(uint32, tag = "22")] pub entity_id: u32, - /// offset: 96 + /// offset: 168 #[prost(uint32, tag = "23")] - pub ldmjdilbdfo: u32, + pub ebjkgacdeoo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pedjnpjkock { +pub struct Mlblgknkiig { /// offset: 28 #[prost(uint32, tag = "1")] pub avatar_id: u32, /// offset: 24 #[prost(uint32, tag = "2")] - pub ojeblmkkmgo: u32, + pub maze_buff_id: u32, /// offset: 32 #[prost(uint32, tag = "3")] - pub iagenfadhlp: u32, + pub polgefgdjkc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nmcmohahopl { +pub struct Oifeggnidhh { /// offset: 16 #[prost(message, repeated, tag = "1")] - pub pccdmdfnjpd: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub hkpbefflfeo: u32, + pub mljomgkploh: ::prost::alloc::vec::Vec, /// offset: 36 + #[prost(uint32, tag = "2")] + pub bodcjahpglj: u32, + /// offset: 32 #[prost(uint32, tag = "3")] - pub dfnkmijebld: u32, + pub fedmnhkhbmb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gjdkilhkied { - /// offset: 32 +pub struct Cjpgpokljij { + /// offset: 24 #[prost(uint32, tag = "1")] - pub imhhilcmmgi: u32, + pub obfinaicadi: u32, /// offset: 28 #[prost(uint32, tag = "2")] - pub hahjhbfaefc: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub bilejkhihjl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Demlpcndjjp { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub gjdokfchbga: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub cfkjepmnlji: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lgekfekklfh { - /// offset: 92 - #[prost(uint32, tag = "1")] - pub ecbalmaebjc: u32, - /// offset: 80 - #[prost(uint32, tag = "2")] - pub nihhejliced: u32, + pub afhelangnjl: u32, /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub bnepbmhncpl: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub amelbpednbd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kfecpdbjdik { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub ggmccepebnj: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "2")] + pub glgmmnfhgbb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eobdobkjiee { + /// offset: 112 + #[prost(uint32, tag = "1")] + pub joeanebolgi: u32, + /// offset: 108 + #[prost(uint32, tag = "2")] + pub hagoedbcmbj: u32, /// offset: 48 + #[prost(message, repeated, tag = "3")] + pub hlllnpchelo: ::prost::alloc::vec::Vec, + /// offset: 16 #[prost(message, repeated, tag = "4")] - pub chbijccmeac: ::prost::alloc::vec::Vec, - /// offset: 24 + pub nonknijaldf: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(message, repeated, tag = "5")] - pub pleffoikanh: ::prost::alloc::vec::Vec, - /// offset: 56 + pub njohdopcehc: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(message, repeated, tag = "6")] - pub ehfbkjpfndh: ::prost::alloc::vec::Vec, + pub jkenjbjomlf: ::prost::alloc::vec::Vec, /// offset: 64 #[prost(message, repeated, tag = "8")] - pub jfaeccekojp: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(uint32, tag = "9")] - pub adbmleoohcj: u32, - /// offset: 40 - #[prost(message, repeated, tag = "10")] - pub pedflpmjeef: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(double, tag = "11")] - pub hilgkgmalhb: f64, + pub bobghppkbbl: ::prost::alloc::vec::Vec, /// offset: 104 + #[prost(uint32, tag = "9")] + pub hjmacmocedl: u32, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub ioanniippcg: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(double, tag = "11")] + pub cilcgmhfgko: f64, + /// offset: 96 #[prost(double, tag = "12")] - pub oghodhmnegk: f64, - /// offset: 72 + pub bmcaaimccka: f64, + /// offset: 88 #[prost(double, tag = "13")] - pub dlapkfblgim: f64, - /// offset: 84 + pub jdknocjbjkh: f64, + /// offset: 116 #[prost(uint32, tag = "14")] - pub ifgjienmnll: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ecgfcicbckl { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub gcpfibgpang: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub param_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(map = "uint32, message", tag = "5")] - pub nnelfalcdol: ::std::collections::HashMap, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jdaheplgjdg { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub jhnkmohlbpj: u32, - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub bjifeaaimeo: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(double, tag = "3")] - pub damage: f64, - /// offset: 48 - #[prost(double, tag = "4")] - pub bcdfflofeng: f64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mnedlnmmeok { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub hbekefkjaga: u32, - /// offset: 24 - #[prost(map = "string, uint32", tag = "2")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ijapgdmhmkh { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub afddeocomhm: u32, - /// offset: 16 - #[prost(map = "string, uint32", tag = "2")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + pub kmkdekabmag: u32, + /// offset: 56 + #[prost(message, repeated, tag = "15")] + pub khlohfmjhdb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jinbaihfhli { +pub struct Njmidbmgdgk { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub bdijfnoecna: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mdcgiflpjam { + #[prost(oneof = "mdcgiflpjam::Mlneddhojgc", tags = "1")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `MDCGIFLPJAM`. +pub mod mdcgiflpjam { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 24 + #[prost(message, tag = "1")] + Niopppnkjba(super::Njmidbmgdgk), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ibieeelgfnk { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub daecbnalfic: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "2")] + pub switch_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(map = "uint32, message", tag = "5")] + pub hkfcmeoobae: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aphljmfcigl { + /// offset: 48 + #[prost(uint32, tag = "1")] + pub lodfbklaaag: u32, + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub gmclifimhml: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(double, tag = "3")] + pub damage: f64, + /// offset: 40 + #[prost(double, tag = "4")] + pub fjefiklopoc: f64, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pmddofhlhhb { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub npciencemod: u32, + /// offset: 16 + #[prost(map = "string, uint32", tag = "2")] + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oninlhegokp { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub mepjhoamnnn: u32, + /// offset: 16 + #[prost(map = "string, uint32", tag = "2")] + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Obmpfnmooip { /// offset: 28 #[prost(uint32, tag = "1")] - pub lgklonagblm: u32, + pub oakbdmjehmj: u32, /// offset: 24 #[prost(uint32, tag = "2")] pub monster_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eoabpneejmf { +pub struct Njgnjjcplpd { /// offset: 32 #[prost(uint32, tag = "1")] - pub eadmccaenma: u32, + pub elibhklkimd: u32, /// offset: 24 #[prost(message, repeated, tag = "2")] - pub archive_monster_id_list: ::prost::alloc::vec::Vec, + pub kill_monster_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fefmhjpgplg { +pub struct Gejlfpnchko { /// offset: 32 #[prost(uint32, tag = "1")] - pub libkldalhjp: u32, + pub bklmihhlfog: u32, /// offset: 24 #[prost(double, tag = "2")] pub damage: f64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kbefkiedncm { - /// offset: 48 - #[prost(uint32, tag = "1")] - pub libkldalhjp: u32, +pub struct Nlggdfojnab { /// offset: 56 + #[prost(uint32, tag = "1")] + pub bklmihhlfog: u32, + /// offset: 48 #[prost(double, tag = "2")] pub damage: f64, /// offset: 24 #[prost(map = "string, uint32", tag = "3")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, /// offset: 16 #[prost(message, optional, tag = "4")] - pub jcdljghhaof: ::core::option::Option, + pub gkkgkebinak: ::core::option::Option, /// offset: 64 #[prost(double, tag = "5")] - pub bcdfflofeng: f64, - /// offset: 32 + pub fjefiklopoc: f64, + /// offset: 40 #[prost(map = "uint32, double", tag = "6")] - pub kdhkkpejjmf: ::std::collections::HashMap, + pub ilglhgochdc: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleStatistics { - /// offset: 232 + /// offset: 264 #[prost(uint32, tag = "1")] - pub angplnaledp: u32, - /// offset: 284 + pub total_battle_turns: u32, + /// offset: 240 #[prost(uint32, tag = "2")] - pub khkfkdnbhpe: u32, - /// offset: 72 + pub total_auto_turns: u32, + /// offset: 200 #[prost(uint32, repeated, tag = "3")] pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 272 + /// offset: 244 #[prost(uint32, tag = "4")] - pub bfdobflljbe: u32, - /// offset: 248 - #[prost(double, tag = "5")] - pub nnmdmpkccke: f64, + pub ultra_cnt: u32, /// offset: 256 + #[prost(double, tag = "5")] + pub total_delay_cumulate: f64, + /// offset: 272 #[prost(double, tag = "6")] - pub bclnmidffoh: f64, - /// offset: 144 + pub cost_time: f64, + /// offset: 192 #[prost(message, repeated, tag = "7")] - pub akfkcpfabmk: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub jojfmjfoehb: ::prost::alloc::vec::Vec, - /// offset: 280 - #[prost(uint32, tag = "9")] - pub lmkmfcdmfbi: u32, - /// offset: 268 - #[prost(uint32, tag = "10")] - pub dnjidnnnmna: u32, - /// offset: 264 - #[prost(uint32, tag = "11")] - pub hhhapgmlbjc: u32, - /// offset: 224 - #[prost(uint32, tag = "12")] - pub kjmfjifdgpj: u32, - /// offset: 80 - #[prost(map = "string, float", tag = "13")] - pub nbdekmakpkj: ::std::collections::HashMap<::prost::alloc::string::String, f32>, - /// offset: 276 - #[prost(uint32, tag = "14")] - pub kgecjkkpbdh: u32, + pub battle_avatar_list: ::prost::alloc::vec::Vec, /// offset: 176 - #[prost(message, repeated, tag = "16")] - pub ijolofbjinb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub monster_list: ::prost::alloc::vec::Vec, + /// offset: 248 + #[prost(uint32, tag = "9")] + pub round_cnt: u32, + /// offset: 224 + #[prost(uint32, tag = "10")] + pub cocoon_dead_wave: u32, + /// offset: 280 + #[prost(uint32, tag = "11")] + pub avatar_battle_turns: u32, /// offset: 236 + #[prost(uint32, tag = "12")] + pub monster_battle_turns: u32, + /// offset: 184 + #[prost(map = "string, float", tag = "13")] + pub custom_values: ::std::collections::HashMap<::prost::alloc::string::String, f32>, + /// offset: 228 + #[prost(uint32, tag = "14")] + pub challenge_score: u32, + /// offset: 112 + #[prost(message, repeated, tag = "16")] + pub ekfnajlbnel: ::prost::alloc::vec::Vec, + /// offset: 252 #[prost(enumeration = "BattleEndReason", tag = "19")] - pub hbgclmcgnfm: i32, - /// offset: 56 + pub end_reason: i32, + /// offset: 80 #[prost(message, repeated, tag = "21")] - pub glojpnlnhjh: ::prost::alloc::vec::Vec, - /// offset: 128 + pub immlpplnjhb: ::prost::alloc::vec::Vec, + /// offset: 208 #[prost(int32, repeated, tag = "22")] - pub iiccefcgpak: ::prost::alloc::vec::Vec, - /// offset: 160 + pub homkkmphhac: ::prost::alloc::vec::Vec, + /// offset: 104 #[prost(message, repeated, tag = "23")] - pub ldgaanonmbk: ::prost::alloc::vec::Vec, - /// offset: 40 + pub oajcficohjh: ::prost::alloc::vec::Vec, + /// offset: 72 #[prost(message, repeated, tag = "26")] - pub adbhgkpnikp: ::prost::alloc::vec::Vec, - /// offset: 216 + pub icbgippgkom: ::prost::alloc::vec::Vec, + /// offset: 152 #[prost(message, repeated, tag = "27")] - pub ecefbcnofkb: ::prost::alloc::vec::Vec, - /// offset: 96 + pub fgmcfagnanm: ::prost::alloc::vec::Vec, + /// offset: 88 #[prost(map = "uint32, message", tag = "28")] pub battle_target_info: ::std::collections::HashMap, - /// offset: 16 + /// offset: 160 #[prost(message, repeated, tag = "29")] - pub najlkhfllpg: ::prost::alloc::vec::Vec, - /// offset: 192 + pub ajmoidpmaak: ::prost::alloc::vec::Vec, + /// offset: 16 #[prost(message, optional, tag = "30")] - pub jpgifchjdlk: ::core::option::Option, - /// offset: 48 + pub hjmnhbfnpfc: ::core::option::Option, + /// offset: 24 #[prost(message, optional, tag = "31")] - pub mnphnjkgpkl: ::core::option::Option, - /// offset: 228 + pub effglphnnbm: ::core::option::Option, + /// offset: 268 #[prost(bool, tag = "32")] - pub leddodammno: bool, - /// offset: 168 + pub hgeklekecol: bool, + /// offset: 32 #[prost(message, repeated, tag = "33")] - pub enbjcpkgcol: ::prost::alloc::vec::Vec, - /// offset: 104 + pub adcmgpdbhij: ::prost::alloc::vec::Vec, + /// offset: 48 #[prost(message, repeated, tag = "34")] - pub ngoknfdmhmf: ::prost::alloc::vec::Vec, - /// offset: 240 + pub ikmoboipdkn: ::prost::alloc::vec::Vec, + /// offset: 232 #[prost(uint32, tag = "35")] - pub dkoeadnamcj: u32, - /// offset: 200 + pub emgmbilkbjm: u32, + /// offset: 96 #[prost(message, optional, tag = "36")] - pub idcgpakjfmd: ::core::option::Option, - /// offset: 152 + pub dondoknabfa: ::core::option::Option, + /// offset: 216 #[prost(message, optional, tag = "37")] - pub billjjbfiol: ::core::option::Option, - /// offset: 208 + pub kepihhppgie: ::core::option::Option, + /// offset: 128 #[prost(message, optional, tag = "38")] - pub hmpgmiljapb: ::core::option::Option, - /// offset: 184 + pub pjamnpfciag: ::core::option::Option, + /// offset: 56 #[prost(message, optional, tag = "39")] - pub nocigfllifg: ::core::option::Option, - /// offset: 120 - #[prost(message, optional, tag = "40")] - pub jnjiimjbojp: ::core::option::Option, - /// offset: 244 - #[prost(uint32, tag = "41")] - pub kkpkaljmamf: u32, - /// offset: 88 - #[prost(message, repeated, tag = "42")] - pub okgcipahmei: ::prost::alloc::vec::Vec, + pub dndegoklnck: ::core::option::Option, /// offset: 64 + #[prost(message, optional, tag = "40")] + pub kmdcolmmppk: ::core::option::Option, + /// offset: 284 + #[prost(uint32, tag = "41")] + pub pjnepjdemlj: u32, + /// offset: 168 + #[prost(message, repeated, tag = "42")] + pub igekcffeode: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(message, optional, tag = "43")] - pub elfgpgdjppp: ::core::option::Option, - /// offset: 112 - #[prost(uint32, repeated, tag = "44")] - pub bapohblolcc: ::prost::alloc::vec::Vec, + pub pjfkdfpdoml: ::core::option::Option, /// offset: 136 + #[prost(uint32, repeated, tag = "44")] + pub jebhhgpnghm: ::prost::alloc::vec::Vec, + /// offset: 120 #[prost(uint32, repeated, tag = "45")] - pub ldmjdilbdfo: ::prost::alloc::vec::Vec, + pub ebjkgacdeoo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eagocahfgaf { +pub struct Dohaeelcdna { /// offset: 24 #[prost(uint32, tag = "1")] - pub oefeefglieb: u32, + pub pjpeabgnkhl: u32, /// offset: 28 #[prost(uint32, tag = "2")] - pub pbhphhmpaih: u32, + pub ebdmdldfebe: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gmkepcomhpn { - /// offset: 36 +pub struct Djbgbjdneae { + /// offset: 32 #[prost(enumeration = "AetherdivideSpiritLineupType", tag = "1")] pub r#type: i32, - /// offset: 32 + /// offset: 36 #[prost(uint32, tag = "2")] pub id: u32, /// offset: 16 @@ -3478,11 +3526,11 @@ pub struct Gmkepcomhpn { } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dkojghahgaj { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub hciigmflpim: u32, +pub struct MultiPath { /// offset: 32 + #[prost(uint32, tag = "1")] + pub multi_path_type: u32, + /// offset: 28 #[prost(uint32, tag = "2")] pub level: u32, /// offset: 24 @@ -3491,434 +3539,434 @@ pub struct Dkojghahgaj { } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ephilimkadk { +pub struct Dopmdgeifij { /// offset: 56 #[prost(enumeration = "BattleCheckResultType", tag = "1")] pub retcode: i32, /// offset: 52 #[prost(enumeration = "BattleEndStatus", tag = "2")] pub end_status: i32, - /// offset: 16 + /// offset: 32 #[prost(message, optional, tag = "3")] pub stt: ::core::option::Option, - /// offset: 24 + /// offset: 16 #[prost(bytes = "vec", tag = "4")] pub game_core_log_encode: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(map = "string, uint32", tag = "5")] - pub dgnmmingacj: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + pub laffeomdgcj: ::std::collections::HashMap<::prost::alloc::string::String, u32>, /// offset: 60 #[prost(uint32, tag = "6")] - pub ndcmdokkphh: u32, + pub mismatch_turn_count: u32, /// offset: 48 #[prost(uint32, tag = "7")] - pub mdlpcfcphdk: u32, + pub knpgkfiefno: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pfifdmeajab { - /// offset: 44 +pub struct Lopljalimok { + /// offset: 40 #[prost(uint32, tag = "1")] pub pos: u32, /// offset: 48 #[prost(uint32, tag = "2")] - pub libkldalhjp: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub mhkhaclnbpm: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub ffcogpomcpg: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(map = "string, uint32", tag = "5")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eokkljdkiab { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub kndgkpghhem: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "2")] - pub adhjphfajlc: ::std::collections::HashMap, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nhlpkmodcnn { - /// offset: 52 - #[prost(uint32, tag = "1")] - pub uid: u32, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub nciadbakmae: u32, + pub bklmihhlfog: u32, /// offset: 44 #[prost(uint32, tag = "3")] - pub elifnjbnagc: u32, - /// offset: 60 - #[prost(uint32, tag = "4")] - pub iglblbggkam: u32, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub kiekjeffphk: u32, - /// offset: 56 - #[prost(uint32, tag = "6")] - pub lbmncagokif: u32, - /// offset: 32 - #[prost(message, repeated, tag = "7")] - pub pbldmkiffno: ::prost::alloc::vec::Vec, + pub ojhffmmafgg: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub cmdjknkahfn: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(message, optional, tag = "8")] - pub alajiddcdne: ::core::option::Option, + #[prost(map = "string, uint32", tag = "5")] + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kbphaigenoo { - /// offset: 16 +pub struct Dffehkognmd { + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub efjepcimgak: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "2")] + pub hekglkbpaoa: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gcmkpejhpme { + /// offset: 44 + #[prost(uint32, tag = "1")] + pub uid: u32, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub efkgmhefobg: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub fkgbojhnhij: u32, + /// offset: 56 + #[prost(uint32, tag = "4")] + pub cmdhegjjdki: u32, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub cmlelldmboe: u32, + /// offset: 60 + #[prost(uint32, tag = "6")] + pub section_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub bedjaofbokb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "8")] + pub ckmigmiaoih: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mafmnogdkeb { + /// offset: 24 #[prost(message, repeated, tag = "1")] - pub amlgpnmcnjj: ::prost::alloc::vec::Vec, + pub ohnfehengno: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CharacterSnapshot { /// offset: 32 #[prost(uint32, tag = "1")] - pub kpjddifefdd: u32, + pub runtime_id: u32, /// offset: 24 #[prost(uint64, repeated, tag = "2")] - pub biappigpbog: ::prost::alloc::vec::Vec, + pub properties: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Elcpgninpin { - /// offset: 24 +pub struct AnimEventSnapshot { + /// offset: 16 #[prost(string, tag = "1")] - pub cjilblkomak: ::prost::alloc::string::String, + pub event_name: ::prost::alloc::string::String, /// offset: 32 #[prost(uint32, tag = "2")] pub count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oodocmdlomf { - /// offset: 48 +pub struct Demkgbgglhb { + /// offset: 68 #[prost(uint32, tag = "1")] pub uid: u32, - /// offset: 68 + /// offset: 48 #[prost(uint32, tag = "2")] pub level: u32, - /// offset: 16 + /// offset: 40 #[prost(string, tag = "3")] pub nickname: ::prost::alloc::string::String, - /// offset: 52 + /// offset: 76 #[prost(uint32, tag = "4")] - pub gfidnaanafh: u32, + pub dlenfjkldpl: u32, /// offset: 64 #[prost(enumeration = "PlatformType", tag = "5")] - pub platform_type: i32, + pub platform: i32, /// offset: 32 #[prost(string, tag = "6")] - pub akcejfcfban: ::prost::alloc::string::String, - /// offset: 24 + pub hojbikbjfcj: ::prost::alloc::string::String, + /// offset: 16 #[prost(string, tag = "7")] - pub bjellapogjn: ::prost::alloc::string::String, + pub gnhelleohmh: ::prost::alloc::string::String, /// offset: 56 #[prost(uint64, tag = "8")] pub version: u64, - /// offset: 76 - #[prost(bool, tag = "9")] - pub cocongacifj: bool, /// offset: 72 + #[prost(bool, tag = "9")] + pub modgelhpima: bool, + /// offset: 52 #[prost(uint32, tag = "10")] - pub innaniclcae: u32, + pub flnhdnejfcd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iddlkhhlecg { +pub struct Oiklnobjmoa { /// offset: 24 - #[prost(enumeration = "Hbpfdgnndef", tag = "1")] - pub noiiaoidgeo: i32, + #[prost(enumeration = "LobbyCharacterType", tag = "1")] + pub ghkmenbjifm: i32, /// offset: 28 - #[prost(enumeration = "Edkfijacjgl", tag = "2")] + #[prost(enumeration = "LobbyCharacterStatus", tag = "2")] pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Njfgjpcandi { - /// offset: 32 +pub struct Akbjhdpbajo { + /// offset: 36 #[prost(uint32, tag = "1")] - pub bkmpfeocfib: u32, + pub mefeplccgle: u32, /// offset: 40 #[prost(bool, tag = "2")] - pub cocongacifj: bool, - /// offset: 36 + pub modgelhpima: bool, + /// offset: 32 #[prost(uint32, tag = "3")] - pub jejkigabeek: u32, + pub hopebdlfmmp: u32, /// offset: 44 #[prost(uint32, tag = "4")] - pub miafpfpmaca: u32, + pub jfdmcfdbjkh: u32, /// offset: 24 #[prost(message, optional, tag = "5")] - pub mmohlkeikgk: ::core::option::Option, + pub ppkecdkimnc: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lcmifobknen { +pub struct Emkhdoaajhj { /// offset: 32 #[prost(uint32, tag = "1")] - pub mkfdpcckfnf: u32, - /// offset: 36 + pub bodhlpioeci: u32, + /// offset: 40 #[prost(uint32, tag = "2")] pub rank: u32, /// offset: 16 #[prost(uint32, repeated, tag = "3")] - pub gnigohiaffi: ::prost::alloc::vec::Vec, - /// offset: 40 + pub bepcjbhmdlf: ::prost::alloc::vec::Vec, + /// offset: 36 #[prost(uint32, tag = "4")] - pub score: u32, + pub score_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Glmcgepnaia { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub dmkfffpdldi: u32, +pub struct Bgebmcfiije { /// offset: 28 + #[prost(uint32, tag = "1")] + pub ipednalijjm: u32, + /// offset: 24 #[prost(uint32, tag = "2")] - pub fojcmhimafn: u32, + pub fabiicnalfb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nfobaphmibf { - /// offset: 36 - #[prost(uint32, tag = "1")] - pub mkfdpcckfnf: u32, +pub struct Nkaegefdbpp { /// offset: 44 + #[prost(uint32, tag = "1")] + pub bodhlpioeci: u32, + /// offset: 32 #[prost(uint32, tag = "2")] - pub pcidndobjgb: u32, - /// offset: 40 + pub hokgdgpiijc: u32, + /// offset: 48 #[prost(uint32, tag = "3")] - pub dpbmlffpokh: u32, - /// offset: 52 + pub dhfijlednjk: u32, + /// offset: 36 #[prost(uint32, tag = "4")] - pub ognepbfpilh: u32, + pub dbpnfbjnmfc: u32, /// offset: 16 #[prost(message, repeated, tag = "5")] - pub ibcdnjmcfea: ::prost::alloc::vec::Vec, - /// offset: 48 + pub kmgiglmemne: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(uint32, tag = "6")] - pub jeffmofipmh: u32, - /// offset: 32 + pub hfapgpdadoc: u32, + /// offset: 52 #[prost(uint32, tag = "7")] - pub kmflkmmamng: u32, + pub jppackmgikh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fdhjbimpkek { +pub struct Dfhjbpdnbff { /// offset: 24 #[prost(message, optional, tag = "1")] - pub mmohlkeikgk: ::core::option::Option, + pub ppkecdkimnc: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Plnnphlofhj { - /// offset: 32 +pub struct Nnhhdjpbfpe { + /// offset: 16 #[prost(uint32, repeated, tag = "1")] - pub kadgadlohfa: ::prost::alloc::vec::Vec, + pub gebaideclok: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "2")] - pub hhjocgomeco: u32, + pub fnelbbmapee: u32, /// offset: 44 #[prost(uint32, tag = "3")] - pub score: u32, + pub score_id: u32, /// offset: 24 #[prost(string, tag = "4")] - pub hcnnobahcbp: ::prost::alloc::string::String, + pub fjpcaeegden: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Epeghcgcmhp { +pub struct Bblmkdkfbkn { /// offset: 24 #[prost(string, repeated, tag = "1")] - pub bhgghfjmmbm: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + pub koacohlkgnl: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, /// offset: 40 #[prost(bool, tag = "2")] - pub fmopbfknlni: bool, - #[prost(oneof = "epeghcgcmhp::Gegmajgejfl", tags = "1001, 1002, 1003, 1004")] - pub gegmajgejfl: ::core::option::Option, + pub lgjhfmkfpic: bool, + #[prost(oneof = "bblmkdkfbkn::Dngpoppkhej", tags = "1001, 1002, 1003, 1004")] + pub dngpoppkhej: ::core::option::Option, } -/// Nested message and enum types in `EPEGHCGCMHP`. -pub mod epeghcgcmhp { +/// Nested message and enum types in `BBLMKDKFBKN`. +pub mod bblmkdkfbkn { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Gegmajgejfl { + pub enum Dngpoppkhej { /// offset: 32 #[prost(message, tag = "1001")] - Dchdjallnec(super::Njfgjpcandi), + Kpbkhkgllkn(super::Akbjhdpbajo), /// offset: 32 #[prost(message, tag = "1002")] - Embbhncjdpk(super::Lcmifobknen), + Kfoghcokkkh(super::Emkhdoaajhj), /// offset: 32 #[prost(message, tag = "1003")] - Minkkejione(super::Fdhjbimpkek), + Bfekfhbgcfh(super::Dfhjbpdnbff), /// offset: 32 #[prost(message, tag = "1004")] - Kaomfckhpnm(super::Plnnphlofhj), + Mengbblmabj(super::Nnhhdjpbfpe), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cbbdiomifhd { - /// offset: 24 +pub struct Lneeiclfgdn { + /// offset: 32 #[prost(message, optional, tag = "1")] - pub basic_info: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "2")] - pub nckccokdkol: ::core::option::Option, + pub basic_info: ::core::option::Option, /// offset: 16 + #[prost(message, optional, tag = "2")] + pub njanliniakb: ::core::option::Option, + /// offset: 24 #[prost(message, optional, tag = "3")] - pub stage_info: ::core::option::Option, + pub stage_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cdimemfjjfp { - /// offset: 56 - #[prost(uint32, tag = "1")] - pub lmmgodphjne: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub pgjccgnbbpi: u32, - /// offset: 68 - #[prost(uint32, tag = "3")] - pub nnbhkcjcpio: u32, - /// offset: 72 - #[prost(uint32, tag = "4")] - pub khbnjgpphoa: u32, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub agdceblfgkh: u32, - /// offset: 52 - #[prost(uint32, tag = "6")] - pub dncpbbliopl: u32, - /// offset: 60 - #[prost(uint32, tag = "7")] - pub lilifgbafkn: u32, - /// offset: 76 - #[prost(uint32, tag = "8")] - pub mmiijhohoge: u32, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub iokfikhhang: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub cilkfjblejg: u32, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub mkfebpjemad: u32, - /// offset: 64 - #[prost(uint32, tag = "12")] - pub efgomfdmnop: u32, +pub struct Mhhfchbnnge { /// offset: 24 + #[prost(uint32, tag = "1")] + pub gdmogahpnec: u32, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub ecjlphligno: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub jijeadbpppa: u32, + /// offset: 64 + #[prost(uint32, tag = "4")] + pub mfogbmaammo: u32, + /// offset: 76 + #[prost(uint32, tag = "5")] + pub nocjfodhojh: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub naaphchojkb: u32, + /// offset: 68 + #[prost(uint32, tag = "7")] + pub dfcmmfbehef: u32, + /// offset: 56 + #[prost(uint32, tag = "8")] + pub cfimnmjbdje: u32, + /// offset: 52 + #[prost(uint32, tag = "9")] + pub lkjlclbmhoa: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub kgfeombnklo: u32, + /// offset: 60 + #[prost(uint32, tag = "11")] + pub ffpldgblhie: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub hocaenbfpej: u32, + /// offset: 72 #[prost(uint32, tag = "13")] - pub jflkpcdbbjd: u32, + pub niadjlneepk: u32, /// offset: 48 #[prost(uint32, tag = "14")] - pub apkcbmgelji: u32, + pub dalmlbkpmff: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ppggkmdaoea { +pub struct Bdmepnipoom { /// offset: 32 #[prost(uint64, tag = "1")] - pub lofamegpmbc: u64, + pub pelogdhkilb: u64, /// offset: 24 - #[prost(enumeration = "Noogdpkefkl", tag = "2")] - pub gbahcdlhacn: i32, + #[prost(enumeration = "FightGameMode", tag = "2")] + pub fmcmlofedcp: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Biplkgdfafj { +pub struct Ifjdlhadbof { /// offset: 40 #[prost(uint64, tag = "1")] pub id: u64, - /// offset: 76 - #[prost(enumeration = "Noogdpkefkl", tag = "2")] - pub pdmolplcflg: i32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub iihpmlibbeb: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(enumeration = "Khjpjangecp", tag = "4")] - pub r#type: i32, /// offset: 64 - #[prost(uint64, tag = "5")] - pub infhikbljla: u64, + #[prost(enumeration = "FightGameMode", tag = "2")] + pub bkofiemhpfc: i32, + /// offset: 32 + #[prost(message, repeated, tag = "3")] + pub fnncefhgcbc: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(enumeration = "MatchUnitType", tag = "4")] + pub r#type: i32, /// offset: 48 + #[prost(uint64, tag = "5")] + pub copgbefikge: u64, + /// offset: 72 #[prost(uint64, tag = "6")] - pub mlelajdljnl: u64, + pub khnjjckpona: u64, /// offset: 60 #[prost(uint32, tag = "7")] - pub jbnenlhccbh: u32, - /// offset: 72 - #[prost(enumeration = "Aebboeppijl", tag = "8")] - pub kbonjbcihbm: i32, + pub hfmhhajpidj: u32, + /// offset: 68 + #[prost(enumeration = "Egifkhkekdh", tag = "8")] + pub pojkhkfbpjn: i32, /// offset: 24 #[prost(message, optional, tag = "9")] - pub hfpohcffmgp: ::core::option::Option, + pub icdjijjipak: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fhfhpamfalc { +pub struct Iklhenbigho { /// offset: 24 #[prost(uint32, tag = "1")] - pub hgmnjfjpmdf: u32, + pub fedbcocnceo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ekhmdhchojn { - #[prost(oneof = "ekhmdhchojn::Inbkijdhplp", tags = "1001")] - pub inbkijdhplp: ::core::option::Option, +pub struct Kigohnmahlp { + #[prost(oneof = "kigohnmahlp::Gioikhjjidg", tags = "1001")] + pub gioikhjjidg: ::core::option::Option, } -/// Nested message and enum types in `EKHMDHCHOJN`. -pub mod ekhmdhchojn { +/// Nested message and enum types in `KIGOHNMAHLP`. +pub mod kigohnmahlp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Inbkijdhplp { - /// offset: 16 + pub enum Gioikhjjidg { + /// offset: 24 #[prost(message, tag = "1001")] - Kaomfckhpnm(super::Fhfhpamfalc), + Mengbblmabj(super::Iklhenbigho), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jpeceoigdlh { +pub struct Madhdhdkbga { /// offset: 24 #[prost(uint32, tag = "1")] - pub hgmnjfjpmdf: u32, + pub fedbcocnceo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lkibpclpfeb { - #[prost(oneof = "lkibpclpfeb::Inbkijdhplp", tags = "1001")] - pub inbkijdhplp: ::core::option::Option, +pub struct Ppbdlljlibh { + #[prost(oneof = "ppbdlljlibh::Gioikhjjidg", tags = "1001")] + pub gioikhjjidg: ::core::option::Option, } -/// Nested message and enum types in `LKIBPCLPFEB`. -pub mod lkibpclpfeb { +/// Nested message and enum types in `PPBDLLJLIBH`. +pub mod ppbdlljlibh { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Inbkijdhplp { - /// offset: 16 + pub enum Gioikhjjidg { + /// offset: 24 #[prost(message, tag = "1001")] - Kaomfckhpnm(super::Jpeceoigdlh), + Mengbblmabj(super::Madhdhdkbga), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct VectorSnapshot { - /// offset: 32 + /// offset: 24 #[prost(sint32, tag = "1")] pub x: i32, - /// offset: 24 + /// offset: 32 #[prost(sint32, tag = "2")] pub y: i32, /// offset: 28 @@ -3928,7 +3976,7 @@ pub struct VectorSnapshot { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MotionInfoSnapshot { - /// offset: 24 + /// offset: 32 #[prost(message, optional, tag = "1")] pub pos: ::core::option::Option, /// offset: 16 @@ -3941,16 +3989,16 @@ pub struct FloorCustomValueSnapshot { /// offset: 32 #[prost(string, tag = "1")] pub name: ::prost::alloc::string::String, - /// offset: 48 - #[prost(enumeration = "Eigngigplkl", tag = "2")] - pub r#type: i32, /// offset: 44 + #[prost(enumeration = "Mbdnnnbgbmb", tag = "2")] + pub r#type: i32, + /// offset: 48 #[prost(bool, tag = "3")] pub bool_val: bool, /// offset: 40 #[prost(float, tag = "4")] pub float_val: f32, - /// offset: 16 + /// offset: 24 #[prost(string, tag = "5")] pub str_val: ::prost::alloc::string::String, } @@ -3974,17 +4022,17 @@ pub struct PropInfoSnapshot { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EntitySnapshot { - /// offset: 52 + /// offset: 44 #[prost(uint32, tag = "1")] pub entity_id: u32, - /// offset: 48 + /// offset: 40 #[prost(uint32, tag = "2")] pub instance_id: u32, /// offset: 24 #[prost(message, optional, tag = "3")] pub motion_info: ::core::option::Option, - /// offset: 40 - #[prost(enumeration = "Goihbgiabge", tag = "4")] + /// offset: 52 + #[prost(enumeration = "Eckdoloppal", tag = "4")] pub map_object_type: i32, #[prost(oneof = "entity_snapshot::Entity", tags = "5")] pub entity: ::core::option::Option, @@ -3994,7 +4042,7 @@ pub mod entity_snapshot { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Entity { - /// offset: 16 + /// offset: 32 #[prost(message, tag = "5")] Prop(super::PropInfoSnapshot), } @@ -4002,22 +4050,22 @@ pub mod entity_snapshot { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GroupSnapshot { - /// offset: 56 + /// offset: 60 #[prost(uint32, tag = "1")] pub group_id: u32, - /// offset: 60 + /// offset: 56 #[prost(uint32, tag = "2")] pub group_state: u32, - /// offset: 16 + /// offset: 40 #[prost(message, repeated, tag = "3")] pub entity_list: ::prost::alloc::vec::Vec, - /// offset: 48 + /// offset: 32 #[prost(map = "string, int32", tag = "4")] pub property_map: ::std::collections::HashMap<::prost::alloc::string::String, i32>, - /// offset: 32 + /// offset: 16 #[prost(uint32, repeated, tag = "5")] pub active_submission_list: ::prost::alloc::vec::Vec, - /// offset: 40 + /// offset: 24 #[prost(message, repeated, tag = "6")] pub active_mcv_key_list: ::prost::alloc::vec::Vec, } @@ -4037,7 +4085,7 @@ pub struct MissionCustomValueSnapshot { /// offset: 32 #[prost(uint32, tag = "1")] pub custom_value: u32, - /// offset: 16 + /// offset: 24 #[prost(string, tag = "2")] pub mcv_key: ::prost::alloc::string::String, } @@ -4071,30 +4119,39 @@ pub struct MainMissionSnapshot { /// offset: 32 #[prost(uint32, tag = "1")] pub main_mission_id: u32, - /// offset: 24 + /// offset: 16 #[prost(message, repeated, tag = "2")] pub sub_mission_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionSnapshot { - /// offset: 32 + /// offset: 24 #[prost(message, repeated, tag = "1")] pub server_mcv_list: ::prost::alloc::vec::Vec, - /// offset: 16 + /// offset: 56 #[prost(message, repeated, tag = "2")] pub client_mcv_list: ::prost::alloc::vec::Vec, - /// offset: 40 + /// offset: 32 #[prost(message, optional, tag = "3")] pub tracking_main_mission: ::core::option::Option, + /// offset: 64 + #[prost(bool, tag = "4")] + pub has_mission_audio_snapshot: bool, + /// offset: 48 + #[prost(string, tag = "5")] + pub cur_audio_emotion_state: ::prost::alloc::string::String, + /// offset: 40 + #[prost(string, tag = "6")] + pub cur_sound_effect_state: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EraFlipperRegionDataSnapshot { - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "1")] pub region_id: u32, - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "2")] pub state: u32, } @@ -4108,33 +4165,33 @@ pub struct EraFlipperSnapshot { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotationMapInfoSnapshot { - /// offset: 16 + /// offset: 32 #[prost(message, optional, tag = "1")] pub map_pos: ::core::option::Option, - /// offset: 24 + /// offset: 16 #[prost(message, optional, tag = "2")] pub map_rot: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MapRotationSnapshot { - /// offset: 32 + /// offset: 36 #[prost(int32, tag = "1")] pub region_id: i32, - /// offset: 36 + /// offset: 32 #[prost(uint32, tag = "2")] pub pose_id: u32, - /// offset: 16 + /// offset: 24 #[prost(message, optional, tag = "3")] pub map_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DialogSnapshot { - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "1")] pub group_id: u32, - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "2")] pub entity_id: u32, } @@ -4144,13 +4201,13 @@ pub struct SwitchHandDataNodeSnapshot { /// offset: 44 #[prost(uint32, tag = "1")] pub config_id: u32, - /// offset: 24 + /// offset: 16 #[prost(message, optional, tag = "2")] pub hand_transform: ::core::option::Option, /// offset: 40 #[prost(uint32, tag = "3")] pub hand_state: u32, - /// offset: 16 + /// offset: 24 #[prost(bytes = "vec", tag = "4")] pub hand_param: ::prost::alloc::vec::Vec, /// offset: 48 @@ -4166,1157 +4223,1151 @@ pub struct SwitchHandSnapshot { } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bajclchickp { - /// offset: 136 +pub struct Lfkpjdabohj { + /// offset: 120 #[prost(uint32, tag = "1")] - pub npc_talk_id: u32, + pub performance_id: u32, /// offset: 140 #[prost(uint32, tag = "2")] - pub jlbkkiaakma: u32, - /// offset: 132 + pub ljjdekkjcan: u32, + /// offset: 160 #[prost(uint32, tag = "3")] pub plane_id: u32, - /// offset: 160 + /// offset: 128 #[prost(uint32, tag = "4")] pub floor_id: u32, - /// offset: 152 + /// offset: 132 #[prost(uint32, tag = "5")] - pub gfhglffhfbd: u32, - /// offset: 124 + pub dimension_id: u32, + /// offset: 148 #[prost(uint32, tag = "6")] pub game_story_line_id: u32, - /// offset: 148 + /// offset: 136 #[prost(uint32, tag = "7")] pub content_id: u32, - /// offset: 120 + /// offset: 144 #[prost(uint32, tag = "8")] pub entry_id: u32, - /// offset: 128 + /// offset: 156 #[prost(uint32, tag = "9")] pub version: u32, - /// offset: 32 + /// offset: 72 #[prost(message, optional, tag = "10")] - pub magedpcmcah: ::core::option::Option, - /// offset: 88 + pub fkcbjihdokd: ::core::option::Option, + /// offset: 32 #[prost(message, optional, tag = "11")] - pub ocincpoabkk: ::core::option::Option, - /// offset: 112 + pub knekdbgiojd: ::core::option::Option, + /// offset: 80 #[prost(message, optional, tag = "12")] - pub hodeomdlgoa: ::core::option::Option, - /// offset: 64 + pub mpikkmahlbe: ::core::option::Option, + /// offset: 112 #[prost(message, repeated, tag = "13")] pub entity_group_list: ::prost::alloc::vec::Vec, - /// offset: 72 + /// offset: 24 #[prost(message, repeated, tag = "14")] - pub loojmbnllog: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "15")] - pub aclpiblheap: ::prost::alloc::vec::Vec, + pub ceaodlbodfg: ::prost::alloc::vec::Vec, /// offset: 40 + #[prost(message, repeated, tag = "15")] + pub piingpbipji: ::prost::alloc::vec::Vec, + /// offset: 48 #[prost(message, repeated, tag = "16")] - pub pndjbldccmj: ::prost::alloc::vec::Vec, - /// offset: 104 - #[prost(map = "string, int32", tag = "17")] - pub clbghlnnebl: ::std::collections::HashMap<::prost::alloc::string::String, i32>, + pub mnjgddeppnp: ::prost::alloc::vec::Vec, /// offset: 96 + #[prost(map = "string, int32", tag = "17")] + pub ncoecbcidok: ::std::collections::HashMap<::prost::alloc::string::String, i32>, + /// offset: 56 #[prost(map = "string, message", tag = "18")] - pub dkobnekfkge: ::std::collections::HashMap< + pub ejniciaddkj: ::std::collections::HashMap< ::prost::alloc::string::String, FloorCustomValueSnapshot, >, - /// offset: 16 + /// offset: 104 #[prost(message, optional, tag = "19")] - pub map_rotation_data: ::core::option::Option, - /// offset: 144 + pub andajclclom: ::core::option::Option, + /// offset: 124 #[prost(uint32, tag = "20")] - pub npebnekdlen: u32, - /// offset: 24 + pub jhjpdninclj: u32, + /// offset: 16 #[prost(message, optional, tag = "21")] - pub edioenloaoi: ::core::option::Option, - /// offset: 156 + pub afdpobdbehi: ::core::option::Option, + /// offset: 152 #[prost(uint32, tag = "22")] - pub meppfkaajkf: u32, - /// offset: 56 + pub foochleglgi: u32, + /// offset: 88 #[prost(message, optional, tag = "23")] - pub hcoficcjfmf: ::core::option::Option, + pub cpajfblpbnj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fonbbadfkbk { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub jlhoggdhmhg: ::prost::alloc::vec::Vec, +pub struct LoginActivityData { /// offset: 40 - #[prost(uint32, tag = "15")] - pub module_id: u32, + #[prost(uint32, tag = "5")] + pub login_days: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub id: u32, /// offset: 32 #[prost(uint32, tag = "11")] - pub fdejbipgndl: u32, + pub panel_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub mlgbigiecco: ::prost::alloc::vec::Vec, } -/// Obf: EDJAELBBBPL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2699)] +#[cmdid(2647)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLoginActivityCsReq {} -/// Obf: JHGDJDIOECM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2623)] +#[cmdid(2609)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLoginActivityScRsp { + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub login_activity_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "1")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub kjcgmejfjfc: ::prost::alloc::vec::Vec, } -/// Obf: HFNIJKDDACE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2698)] +#[cmdid(2638)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeLoginActivityRewardCsReq { /// offset: 28 - #[prost(uint32, tag = "12")] - pub id: u32, + #[prost(uint32, tag = "8")] + pub take_days: u32, /// offset: 24 #[prost(uint32, tag = "14")] - pub iafhepinjhl: u32, + pub id: u32, } -/// Obf: BEEDJDOIKBI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2665)] +#[cmdid(2617)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeLoginActivityRewardScRsp { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub iafhepinjhl: u32, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub module_id: u32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub id: u32, - /// offset: 24 - #[prost(message, optional, tag = "4")] + /// offset: 16 + #[prost(message, optional, tag = "13")] pub reward: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub panel_id: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub take_days: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ActivityScheduleInfo { +pub struct ActivityScheduleData { /// offset: 28 - #[prost(uint32, tag = "7")] - pub activity_id: u32, - /// offset: 32 - #[prost(int64, tag = "12")] - pub begin_time: i64, - /// offset: 40 - #[prost(int64, tag = "6")] - pub end_time: i64, + #[prost(uint32, tag = "13")] + pub panel_id: u32, /// offset: 24 - #[prost(uint32, tag = "9")] - pub module_id: u32, + #[prost(uint32, tag = "8")] + pub activity_id: u32, + /// offset: 40 + #[prost(int64, tag = "14")] + pub end_time: i64, + /// offset: 32 + #[prost(int64, tag = "11")] + pub begin_time: i64, } -/// Obf: LIPEJIELOMO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2683)] +#[cmdid(2651)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetActivityScheduleConfigCsReq {} -/// Obf: KGDABKFEHJF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2686)] +#[cmdid(2611)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetActivityScheduleConfigScRsp { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub schedule_data: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub activity_schedule_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hmkikhbgbfp { +pub struct TrialActivityInfo { /// offset: 24 - #[prost(uint32, tag = "5")] - pub stage_id: u32, - /// offset: 28 - #[prost(bool, tag = "4")] + #[prost(bool, tag = "12")] pub taken_reward: bool, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub stage_id: u32, } -/// Obf: MJNHBKEGKJJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2601)] +#[cmdid(2632)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTrialActivityDataCsReq {} -/// Obf: ILDLCCMOHPI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2696)] +#[cmdid(2700)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTrialActivityDataScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub bjcanppbjhd: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "2")] - pub retcode: u32, + pub activity_stage_id: u32, /// offset: 32 - #[prost(message, repeated, tag = "6")] - pub faglfbdceic: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub trial_activity_info_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "10")] + pub jhhohjlmngb: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "9")] - pub akbclhjhodd: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, } -/// Obf: NCOLNMNCJBP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(2625)] +#[cmdid(2634)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrialActivityDataChangeScNotify { /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub bjcanppbjhd: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "8")] + pub jhhohjlmngb: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(message, optional, tag = "5")] - pub gljbjhjmcfp: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub trial_activity_info: ::core::option::Option, } -/// Obf: LCBHEGHLNOO #[derive(proto_derive::CmdID)] -#[cmdid(2685)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterTrialActivityStageCsReq { /// offset: 24 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub stage_id: u32, } -/// Obf: PDCKDBHBAIM +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(2672)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterTrialActivityStageScRsp { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub battle_info: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub battle_info: ::core::option::Option, } -/// Obf: GILJFKPFFPO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2640)] +#[cmdid(2665)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeTrialActivityRewardCsReq { /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub stage_id: u32, } -/// Obf: NJLEPOIEAFL -#[derive(proto_derive::CmdID)] -#[cmdid(2666)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeTrialActivityRewardScRsp { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub stage_id: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: GHJFHIPDLMD +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(2639)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartTrialActivityCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeTrialActivityRewardScRsp { + /// offset: 36 + #[prost(uint32, tag = "5")] pub stage_id: u32, -} -/// Obf: HFCEGJOCPDN -#[derive(proto_derive::CmdID)] -#[cmdid(2645)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartTrialActivityScRsp { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub stage_id: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] + /// offset: 32 + #[prost(uint32, tag = "13")] pub retcode: u32, -} -/// Obf: CHLMPOPOLCE -#[derive(proto_derive::CmdID)] -#[cmdid(2695)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveTrialActivityCsReq { /// offset: 24 - #[prost(uint32, tag = "7")] - pub stage_id: u32, + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, } -/// Obf: DMENGGDAFCN +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(2679)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveTrialActivityScRsp { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub retcode: u32, +pub struct StartTrialActivityCsReq { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "12")] pub stage_id: u32, } -/// Obf: NGCLEMHDAHG +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2627)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct StartTrialActivityScRsp { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub stage_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2631)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct LeaveTrialActivityCsReq { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub stage_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2641)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct LeaveTrialActivityScRsp { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub stage_id: u32, +} +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(2602)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CurTrialActivityScNotify { /// offset: 28 - #[prost(enumeration = "Pmidehdobhj", tag = "15")] + #[prost(enumeration = "TrialActivityStatus", tag = "3")] pub status: i32, /// offset: 24 - #[prost(uint32, tag = "11")] - pub akbclhjhodd: u32, + #[prost(uint32, tag = "14")] + pub activity_stage_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bcekbnmnhoo { +pub struct Gljdaflolfi { + /// offset: 33 + #[prost(bool, tag = "9")] + pub ddcfjgbpngo: bool, /// offset: 28 - #[prost(uint32, tag = "5")] - pub pehofbbdnic: u32, + #[prost(uint32, tag = "7")] + pub mmflcfgkndj: u32, /// offset: 32 - #[prost(uint32, tag = "6")] - pub module_id: u32, - /// offset: 24 - #[prost(bool, tag = "10")] - pub is_taken_reward: bool, - /// offset: 25 #[prost(bool, tag = "2")] - pub cbnffemdbkf: bool, + pub is_taken_reward: bool, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub panel_id: u32, } -/// Obf: JKHHDAMCDPN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2668)] +#[cmdid(2693)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMaterialSubmitActivityDataCsReq {} -/// Obf: MIMIBBEOEEO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2649)] +#[cmdid(2637)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMaterialSubmitActivityDataScRsp { /// offset: 32 #[prost(uint32, tag = "9")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub nblhgehlodn: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub mabjpcmbfcl: ::prost::alloc::vec::Vec, } -/// Obf: OHLPOJADNJA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2680)] +#[cmdid(2610)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitMaterialSubmitActivityMaterialCsReq { /// offset: 24 - #[prost(uint32, tag = "6")] - pub pehofbbdnic: u32, + #[prost(uint32, tag = "3")] + pub mmflcfgkndj: u32, } -/// Obf: EAAKFJNFGKB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2677)] +#[cmdid(2667)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitMaterialSubmitActivityMaterialScRsp { /// offset: 16 - #[prost(message, optional, tag = "6")] - pub blaaoiaeiah: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub fgdgmmlohig: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub retcode: u32, } -/// Obf: BEKEMIDKBFF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2605)] +#[cmdid(2662)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeMaterialSubmitActivityRewardCsReq { /// offset: 24 - #[prost(uint32, tag = "10")] - pub pehofbbdnic: u32, + #[prost(uint32, tag = "4")] + pub mmflcfgkndj: u32, } -/// Obf: BKGKKDKCKHF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2651)] +#[cmdid(2635)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMaterialSubmitActivityRewardScRsp { - /// offset: 36 - #[prost(uint32, tag = "12")] - pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "1")] - pub pehofbbdnic: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] + #[prost(uint32, tag = "9")] + pub mmflcfgkndj: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "1")] pub reward: ::core::option::Option, } -/// Obf: OHANJNJCEPG -#[derive(proto_derive::CmdID)] -#[cmdid(2688)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAvatarDeliverRewardActivityDataCsReq {} -/// Obf: OHMLBNLDMAC -#[derive(proto_derive::CmdID)] -#[cmdid(2630)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAvatarDeliverRewardActivityDataScRsp { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub avatar_id: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 32 - #[prost(bool, tag = "3")] - pub is_taken_reward: bool, -} -/// Obf: EKNDBKPMEDA +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(2618)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetAvatarDeliverRewardActivityDataCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2680)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetAvatarDeliverRewardActivityDataScRsp { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub avatar_id: u32, + /// offset: 32 + #[prost(bool, tag = "5")] + pub is_taken_reward: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2683)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarDeliverRewardChooseAvatarCsReq { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "14")] pub avatar_id: u32, } -/// Obf: AACHMPNFJHN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2654)] +#[cmdid(2653)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarDeliverRewardChooseAvatarScRsp { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub retcode: u32, /// offset: 24 #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] pub avatar_id: u32, } -/// Obf: ABMHBIAPENA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2661)] +#[cmdid(2696)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarDeliverRewardTakeRewardCsReq {} -/// Obf: OLKPEIJAMPM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2633)] +#[cmdid(2648)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarDeliverRewardTakeRewardScRsp { - /// offset: 16 - #[prost(message, optional, tag = "14")] + /// offset: 24 + #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pbpmlifepcb { +pub struct Kchcilognlo { /// offset: 32 - #[prost(uint32, tag = "3")] - pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub jpibmbbkgnd: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub num: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub hccpbennfkm: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hmkpecmbpdc { +pub struct Modjconngdk { /// offset: 32 - #[prost(uint32, tag = "7")] - pub module_id: u32, + #[prost(uint32, tag = "15")] + pub panel_id: u32, /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub flichmijhnf: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub knfgbihkjdj: ::prost::alloc::vec::Vec, } -/// Obf: EEKFGJIBMAB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9116)] +#[cmdid(9112)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetActivityHotDataCsReq {} -/// Obf: AOBMAILBCFP +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(9117)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetActivityHotDataScRsp { /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub info_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] + pub content_package_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "4")] pub retcode: u32, } -/// Obf: OOCDKCGNCBD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9114)] +#[cmdid(9120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetActivityRewardCountDataCsReq {} -/// Obf: DBFOLCNCFAC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(9119)] +#[cmdid(9111)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetActivityRewardCountDataScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub info_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub content_package_list: ::prost::alloc::vec::Vec, } -/// Obf: JHJJGMHMHEH #[derive(proto_derive::CmdID)] -#[cmdid(1399)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterAdventureCsReq { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub map_id: u32, } -/// Obf: IPOCHENBLOI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1323)] +#[cmdid(1309)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterAdventureScRsp { /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] + /// offset: 24 + #[prost(message, optional, tag = "5")] pub scene: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FarmStageGachaInfo { - /// offset: 24 - #[prost(int64, tag = "12")] - pub begin_time: i64, /// offset: 32 #[prost(int64, tag = "7")] - pub end_time: i64, + pub begin_time: i64, /// offset: 40 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "15")] pub gacha_id: u32, + /// offset: 24 + #[prost(int64, tag = "14")] + pub end_time: i64, } -/// Obf: HGGIMLCFBBI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1398)] +#[cmdid(1338)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFarmStageGachaInfoCsReq { /// offset: 16 - #[prost(uint32, repeated, tag = "14")] + #[prost(uint32, repeated, tag = "10")] pub farm_stage_gacha_id_list: ::prost::alloc::vec::Vec, } -/// Obf: HDCFNKHHELC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1365)] +#[cmdid(1317)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFarmStageGachaInfoScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "15")] + /// offset: 16 + #[prost(message, repeated, tag = "10")] pub farm_stage_gacha_info_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: LGMLDHNBGKM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1383)] +#[cmdid(1351)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuickStartCocoonStageCsReq { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub kmffahenckb: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub world_level: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub wave: u32, /// offset: 36 + #[prost(uint32, tag = "12")] + pub wave: u32, + /// offset: 28 #[prost(uint32, tag = "7")] + pub world_level: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub kidieobnbdm: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] pub cocoon_id: u32, } -/// Obf: JPJCEMFPGMI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1386)] +#[cmdid(1311)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QuickStartCocoonStageScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub kmffahenckb: u32, /// offset: 36 + #[prost(uint32, tag = "13")] + pub wave: u32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 32 #[prost(uint32, tag = "8")] + pub kidieobnbdm: u32, + /// offset: 44 + #[prost(uint32, tag = "2")] pub cocoon_id: u32, /// offset: 16 - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "1")] pub battle_info: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub wave: u32, } -/// Obf: MGOCDCOOKBM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1394)] +#[cmdid(1389)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuickStartFarmElementCsReq { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub world_level: u32, /// offset: 32 - #[prost(uint32, tag = "9")] - pub jdanoknhnhl: u32, + #[prost(uint32, tag = "14")] + pub lofafgipdfp: u32, /// offset: 28 #[prost(uint32, tag = "15")] - pub world_level: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub kmffahenckb: u32, + pub kidieobnbdm: u32, } -/// Obf: LILJNDPJMGO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1352)] +#[cmdid(1320)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QuickStartFarmElementScRsp { - /// offset: 40 - #[prost(uint32, tag = "10")] - pub jdanoknhnhl: u32, /// offset: 16 - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "12")] pub battle_info: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] pub world_level: u32, /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, + #[prost(uint32, tag = "5")] + pub lofafgipdfp: u32, } -/// Obf: LAEAAHOIMHE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1319)] +#[cmdid(1395)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CocoonSweepCsReq { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub world_level: u32, /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] + pub world_level: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] pub cocoon_id: u32, } -/// Obf: MNDINDAANLM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1344)] +#[cmdid(1391)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CocoonSweepScRsp { + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub drop_data: ::core::option::Option, /// offset: 44 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub jhmmoojpkha: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub nhanakjfeab: ::core::option::Option, + #[prost(uint32, tag = "13")] + pub cocoon_id: u32, /// offset: 40 #[prost(uint32, tag = "14")] - pub cocoon_id: u32, + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub multiple_drop_data: ::core::option::Option, } -/// Obf: BDNEKEEAGHG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1381)] +#[cmdid(1361)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FarmElementSweepCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub jdanoknhnhl: u32, /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub world_level: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub lofafgipdfp: u32, } -/// Obf: CFIIHLKJDHO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1369)] +#[cmdid(1345)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FarmElementSweepScRsp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub jdanoknhnhl: u32, /// offset: 32 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub lofafgipdfp: u32, /// offset: 24 #[prost(message, optional, tag = "6")] - pub jhmmoojpkha: ::core::option::Option, + pub multiple_drop_data: ::core::option::Option, } -/// Obf: GBMCHNAAPHJ #[derive(proto_derive::CmdID)] -#[cmdid(4826)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterAetherDivideSceneCsReq { +pub struct Oeogebjmkpn { /// offset: 24 - #[prost(uint32, tag = "4")] - pub bdkngdocpgp: u32, + #[prost(uint32, tag = "1")] + pub mnjdbgbifcb: u32, } -/// Obf: AGJOLICKDKI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4828)] +#[cmdid(4802)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterAetherDivideSceneScRsp { +pub struct Ojjadenfndj { /// offset: 24 - #[prost(uint32, tag = "13")] - pub retcode: u32, + #[prost(uint32, tag = "8")] + pub mnjdbgbifcb: u32, /// offset: 28 - #[prost(uint32, tag = "7")] - pub bdkngdocpgp: u32, -} -/// Obf: CKMPKDBGMOO -#[derive(proto_derive::CmdID)] -#[cmdid(4821)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveAetherDivideSceneCsReq {} -/// Obf: NFEBDGBMPMN -#[derive(proto_derive::CmdID)] -#[cmdid(4838)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveAetherDivideSceneScRsp { - /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub retcode: u32, } -/// Obf: IEMNKFBPDGA +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4848)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Diohkakcklc {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(4805)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartAetherDivideSceneBattleCsReq { - /// offset: 48 - #[prost(uint32, tag = "9")] - pub skill_index: u32, - /// offset: 32 - #[prost(message, repeated, tag = "14")] - pub assist_monster_wave_list: ::prost::alloc::vec::Vec, +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Icebbmakhie { /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub caster_id: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub attacked_group_id: u32, -} -/// Obf: ENAPGDHEMFD -#[derive(proto_derive::CmdID)] -#[cmdid(4827)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartAetherDivideSceneBattleScRsp { - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub battle_info: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub attacked_group_id: u32, - /// offset: 32 #[prost(uint32, tag = "14")] pub retcode: u32, } -/// Obf: BBPHCGMCLDE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4820)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartAetherDivideChallengeBattleCsReq { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub knlbemfihnp: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub challenge_id: u32, -} -/// Obf: CLDHFFGAAOA -#[derive(proto_derive::CmdID)] -#[cmdid(4844)] +#[cmdid(4835)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartAetherDivideChallengeBattleScRsp { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub battle_info: ::core::option::Option, +pub struct Mppinlpankb { /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hffiajianhd { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub slot: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gjilpebeool { - /// offset: 52 - #[prost(uint32, tag = "2")] - pub jdhchabclcc: u32, - /// offset: 44 - #[prost(uint32, tag = "7")] - pub exp: u32, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub offgcgdndil: u32, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub passive_skill: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "9")] - pub promotion: u32, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub sp_bar: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jhjlepefadf { - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub gphepenpccp: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub slot: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ibmcnafobnb { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub ebcbklncmip: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub num: u32, -} -/// Obf: FODLPLLGEJK -#[derive(proto_derive::CmdID)] -#[cmdid(4843)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAetherDivideInfoCsReq {} -/// Obf: FOAIHIJIJIL -#[derive(proto_derive::CmdID)] -#[cmdid(4803)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetAetherDivideInfoScRsp { - /// offset: 64 - #[prost(uint32, tag = "2")] - pub phlkdnghooa: u32, - /// offset: 48 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 60 - #[prost(uint32, tag = "7")] - pub ibcipiidcol: u32, - /// offset: 40 #[prost(message, repeated, tag = "6")] - pub lineup_list: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "15")] - pub pfljggdaofm: u32, - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub nlfihkicddo: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "4")] - pub jdhlmhjbojm: u32, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub skill_info_list: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(uint32, tag = "13")] - pub egemndnedip: u32, -} -/// Obf: KBKOKHBKJIN -#[derive(proto_derive::CmdID)] -#[cmdid(4823)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetAetherDivideLineUpCsReq { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub lineup: ::core::option::Option, -} -/// Obf: IFHPLDIHDDI -#[derive(proto_derive::CmdID)] -#[cmdid(4819)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetAetherDivideLineUpScRsp { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub lineup: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: ILCFPIGENHF -#[derive(proto_derive::CmdID)] -#[cmdid(4847)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EquipAetherDividePassiveSkillCsReq { - /// offset: 24 + pub assist_monster_entity_info: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub skill_index: u32, + /// offset: 44 #[prost(uint32, tag = "14")] - pub slot: u32, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub offgcgdndil: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub item_id: u32, + pub cast_entity_id: u32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub attacked_by_entity_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, } -/// Obf: DCCCBLEJJAH +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(4833)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EquipAetherDividePassiveSkillScRsp { - /// offset: 40 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub bjmebepplei: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub pbgmmfomcke: ::core::option::Option, -} -/// Obf: MMOFLMJNLPA -#[derive(proto_derive::CmdID)] -#[cmdid(4830)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClearAetherDividePassiveSkillCsReq { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub offgcgdndil: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub slot: u32, -} -/// Obf: CCMGFBKFGDL -#[derive(proto_derive::CmdID)] -#[cmdid(4811)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ClearAetherDividePassiveSkillScRsp { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub bjmebepplei: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "8")] +pub struct Aeinlinfcdl { + /// offset: 36 + #[prost(uint32, tag = "4")] pub retcode: u32, /// offset: 32 - #[prost(message, optional, tag = "2")] - pub pbgmmfomcke: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub cast_entity_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub battle_info: ::core::option::Option, } -/// Obf: HKKBFELNEHG +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(4831)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AetherDivideSpiritExpUpCsReq { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub jdhlmhjbojm: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub offgcgdndil: u32, +pub struct Knccobpcfel { /// offset: 28 - #[prost(uint32, tag = "12")] - pub kbmlajoaane: u32, + #[prost(uint32, tag = "10")] + pub igjmkdjnmmd: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub challenge_id: u32, } -/// Obf: KPBKAKNMNED +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4808)] +#[cmdid(4825)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct AetherDivideSpiritExpUpScRsp { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub bjmebepplei: ::core::option::Option, +pub struct Cjcjefbpebc { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub battle_info: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "2")] pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub jdhlmhjbojm: u32, } -/// Obf: CKELLMBLCAL #[derive(proto_derive::CmdID)] -#[cmdid(4829)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchAetherDivideLineUpSlotCsReq { +pub struct Ccpnagleabi { /// offset: 24 - #[prost(uint32, tag = "7")] - pub knlbemfihnp: u32, -} -/// Obf: FFCIBDGAMFN -#[derive(proto_derive::CmdID)] -#[cmdid(4835)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchAetherDivideLineUpSlotScRsp { + #[prost(uint32, tag = "14")] + pub slot: u32, /// offset: 28 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub knlbemfihnp: u32, + #[prost(uint32, tag = "8")] + pub item_id: u32, } -/// Obf: MFMDINOGOKE +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ijjeeaichdb { + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub sp_bar: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "4")] + pub promotion: u32, + /// offset: 52 + #[prost(uint32, tag = "3")] + pub exp: u32, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub lkoikhbpabn: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub cjabniacmge: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub passive_skill: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hfpiagnkcaf { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub slot: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "3")] + pub cmlmepafkmb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Akcnedhbiph { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub item_id: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub num: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub gnhhahlmfcp: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(4812)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartAetherDivideStageBattleCsReq { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub event_id: u32, -} -/// Obf: MMCMFMJNHFD +pub struct Ibnojkhjclc {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4815)] +#[cmdid(4809)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartAetherDivideStageBattleScRsp { +pub struct Opblfmboffa { + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub nodlankahbl: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "4")] + pub ikncnpbbppe: u32, + /// offset: 52 + #[prost(uint32, tag = "9")] + pub jlogekicdlm: u32, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub ghcjjccebcp: u32, + /// offset: 64 + #[prost(uint32, tag = "5")] + pub gjgnlalfehm: u32, + /// offset: 68 + #[prost(uint32, tag = "7")] + pub hkgnpgngcan: u32, + /// offset: 40 + #[prost(message, repeated, tag = "10")] + pub pkengahemod: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4813)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kejcgnhoaml { + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub lineup: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4843)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lafnpeblnde { /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "10")] - pub battle_info: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub lineup: ::core::option::Option, } -/// Obf: PHJIPDDMMKB -#[derive(proto_derive::CmdID)] -#[cmdid(4836)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AetherDivideLineupScNotify { - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub lineup: ::core::option::Option, -} -/// Obf: BOMBCLHPBHP -#[derive(proto_derive::CmdID)] -#[cmdid(4802)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AetherDivideSpiritInfoScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub mgegimbbajb: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub bjmebepplei: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub jdhlmhjbojm: u32, -} -/// Obf: HGNAHIANDOC +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(4834)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAetherDivideChallengeInfoCsReq {} -/// Obf: FPIDHHNHPAB -#[derive(proto_derive::CmdID)] -#[cmdid(4806)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetAetherDivideChallengeInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "11")] - pub pcnnmjbjioc: u32, +pub struct Opekcngfdjo { /// offset: 32 - #[prost(uint32, repeated, tag = "6")] - pub gkhjkfcccgp: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub bfdipgblmmo: ::prost::alloc::vec::Vec, -} -/// Obf: JFOELNLGHKM -#[derive(proto_derive::CmdID)] -#[cmdid(4849)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AetherDivideFinishChallengeScNotify { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub challenge_id: u32, -} -/// Obf: CEOKHNMHAON -#[derive(proto_derive::CmdID)] -#[cmdid(4832)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AetherDivideTainerInfoScNotify { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub egemndnedip: u32, -} -/// Obf: CKLFIPMKMBM -#[derive(proto_derive::CmdID)] -#[cmdid(4825)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AetherDivideSkillItemScNotify { - /// offset: 24 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "14")] pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub num: u32, -} -/// Obf: PLIGNAIDLND -#[derive(proto_derive::CmdID)] -#[cmdid(4809)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AetherDivideRefreshEndlessCsReq {} -/// Obf: BOAPINGNNNN -#[derive(proto_derive::CmdID)] -#[cmdid(4822)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AetherDivideRefreshEndlessScRsp { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub lkoikhbpabn: u32, /// offset: 28 #[prost(uint32, tag = "7")] - pub ibcipiidcol: u32, + pub slot: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4820)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ljnbhdoaooc { /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(message, optional, tag = "9")] + pub aphegpknmif: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "11")] pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub oefdkhnehnp: ::core::option::Option, } -/// Obf: PHJIOLOKLHE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4816)] +#[cmdid(4807)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AetherDivideRefreshEndlessScNotify { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub ibcipiidcol: u32, -} -/// Obf: JKNAPGCLALC -#[derive(proto_derive::CmdID)] -#[cmdid(4842)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AetherDivideTakeChallengeRewardCsReq { +pub struct Chjjofpenla { /// offset: 24 #[prost(uint32, tag = "5")] + pub slot: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub lkoikhbpabn: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4827)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cmafkhkkdnm { + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub oefdkhnehnp: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub aphegpknmif: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4823)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mhcgodlnnpj { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub oagcjoigmao: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub lkoikhbpabn: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub ghcjjccebcp: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4816)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mhjbacdklfe { + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub aphegpknmif: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub ghcjjccebcp: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4810)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hlbckcdicaa { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub igjmkdjnmmd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4850)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kgjpebcepdl { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub igjmkdjnmmd: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4840)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fojnpaeenop { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub event_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4826)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Odigipehbgg { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub battle_info: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4811)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fmhgdkefbbj { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub lineup: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4824)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lihkfbkognb { + /// offset: 40 + #[prost(uint32, tag = "13")] + pub ghcjjccebcp: u32, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub aljnickcjgk: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub aphegpknmif: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4836)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gejionmnikj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4814)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dbjkdlioieo { + /// offset: 40 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub fjdompeilgm: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub cielmlcnndd: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "3")] + pub hkmkkjdklig: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4839)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Edagaaechlk { + /// offset: 24 + #[prost(uint32, tag = "13")] pub challenge_id: u32, } -/// Obf: IEGDPIEIGKF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4837)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AetherDivideTakeChallengeRewardScRsp { - /// offset: 32 +#[cmdid(4801)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oicmoejbnjd { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub jlogekicdlm: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4845)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hefcpafnhhk { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub num: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub item_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4829)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Andacjggbeb {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4844)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dmllgodhjpa { + /// offset: 24 #[prost(uint32, tag = "4")] + pub hkgnpgngcan: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4847)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dnheionheie { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub hkgnpgngcan: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4830)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nofnmhpmcjn { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub challenge_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4804)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mjfpnikjefi { + /// offset: 32 + #[prost(uint32, tag = "13")] pub challenge_id: u32, /// offset: 24 #[prost(message, optional, tag = "5")] @@ -5325,626 +5376,620 @@ pub struct AetherDivideTakeChallengeRewardScRsp { #[prost(uint32, tag = "9")] pub retcode: u32, } +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4747)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hednplncicc {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jongagachho {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Adoleofegok { +pub struct Hkmgekaebif { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub map_id: u32, /// offset: 28 - #[prost(uint32, tag = "10")] - pub poiiaiakilf: u32, + #[prost(uint32, tag = "3")] + pub amabghfojek: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Klmngfhbgla { /// offset: 24 #[prost(uint32, tag = "5")] - pub map_id: u32, -} -/// Obf: OAJLGIONPGE -#[derive(proto_derive::CmdID)] -#[cmdid(4799)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAlleyInfoCsReq { - /// offset: 28 - #[prost(uint32, tag = "11")] pub shop_id: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] + /// offset: 28 + #[prost(uint32, tag = "4")] pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Agademajimd { +pub struct Dofkpelojgh { /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub immlphdnmol: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "11")] - pub fmjplhohbab: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub hnfojbcjamg: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub kegkmbkddpb: ::prost::alloc::vec::Vec, /// offset: 32 + #[prost(message, repeated, tag = "1")] + pub ljmnmleggam: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "2")] + pub mokhmhcgkpo: ::prost::alloc::vec::Vec, + /// offset: 16 #[prost(uint32, repeated, tag = "10")] - pub omngcijalfm: ::prost::alloc::vec::Vec, + pub dcklmagplnk: ::prost::alloc::vec::Vec, } -/// Obf: FCFGLDOMNDJ -#[derive(proto_derive::CmdID)] -#[cmdid(4723)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetAlleyInfoScRsp { - /// offset: 100 - #[prost(uint32, tag = "14")] - pub level: u32, - /// offset: 96 - #[prost(uint32, tag = "15")] - pub dbjhemippim: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "10")] - pub glboemjjahd: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, repeated, tag = "11")] - pub gefndeeikef: ::prost::alloc::vec::Vec, - /// offset: 92 - #[prost(uint32, tag = "7")] - pub nopodeimffb: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub klpngfnmipi: ::core::option::Option, - /// offset: 72 - #[prost(message, optional, tag = "4")] - pub bokolcpkejm: ::core::option::Option, - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "13")] - pub nplakeokekb: ::std::collections::HashMap, - /// offset: 64 - #[prost(message, repeated, tag = "6")] - pub bjcmphlpknf: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "12")] - pub oedpopcohgb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub njgamccgadc: ::core::option::Option, - /// offset: 88 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kfaifhopnhh { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub iffppglafnb: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub bddldnejfkn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kgcanljikcp { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub kalfmcaghdo: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub goods_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AlleyPlacingShip { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub ship_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub goods_list: ::prost::alloc::vec::Vec, -} -/// Obf: IEEAOPJGINP -#[derive(proto_derive::CmdID)] -#[cmdid(4757)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AlleyPlacingGameCsReq { - /// offset: 48 - #[prost(uint32, tag = "12")] - pub bmnhhidhodd: u32, - /// offset: 44 - #[prost(uint32, tag = "15")] - pub fjdabppandc: u32, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub dhhjlchclaf: u32, - /// offset: 56 - #[prost(uint32, tag = "13")] - pub hlojkekipkf: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub engdbiimaff: u32, - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub ejjodhjhham: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "1")] - pub bclnmidffoh: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub keokdnikbda: u32, - /// offset: 60 - #[prost(uint32, tag = "4")] - pub indeplofdec: u32, -} -/// Obf: BFMIPGGOELO -#[derive(proto_derive::CmdID)] -#[cmdid(4715)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AlleyPlacingGameScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub kfboklhdjda: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub event_id: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub ilegfkgcmom: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub elbbanddjci: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub koficklljni: u32, - /// offset: 52 - #[prost(uint32, tag = "4")] - pub pglgblkkida: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub khibbgphdmb: u32, -} -/// Obf: ICABJGOKGHH -#[derive(proto_derive::CmdID)] -#[cmdid(4710)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ActivityRaidPlacingGameCsReq { - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub ejjodhjhham: ::core::option::Option, - #[prost(oneof = "activity_raid_placing_game_cs_req::Gcoiiopkjpf", tags = "1, 12")] - pub gcoiiopkjpf: ::core::option::Option< - activity_raid_placing_game_cs_req::Gcoiiopkjpf, - >, -} -/// Nested message and enum types in `ActivityRaidPlacingGameCsReq`. -pub mod activity_raid_placing_game_cs_req { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Gcoiiopkjpf { - /// offset: 16 - #[prost(uint32, tag = "1")] - Cjemmdpiclj(u32), - /// offset: 16 - #[prost(uint32, tag = "12")] - Fjdabppandc(u32), - } -} -/// Obf: OLAFFEPAICB -#[derive(proto_derive::CmdID)] -#[cmdid(4753)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ActivityRaidPlacingGameScRsp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub retcode: u32, - #[prost(oneof = "activity_raid_placing_game_sc_rsp::Gcoiiopkjpf", tags = "14, 15")] - pub gcoiiopkjpf: ::core::option::Option< - activity_raid_placing_game_sc_rsp::Gcoiiopkjpf, - >, -} -/// Nested message and enum types in `ActivityRaidPlacingGameScRsp`. -pub mod activity_raid_placing_game_sc_rsp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Gcoiiopkjpf { - /// offset: 16 - #[prost(uint32, tag = "14")] - Cjemmdpiclj(u32), - /// offset: 16 - #[prost(uint32, tag = "15")] - Fjdabppandc(u32), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ecjmjjkjgop { - /// offset: 32 - #[prost(uint32, repeated, tag = "14")] - pub jdjcnbgoglp: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(bool, tag = "7")] - pub iichhokopgg: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub fbeildajede: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "12")] - pub jalhneidhgj: u32, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub cpgajpckcdg: u32, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub hdkdkjbdgcc: u32, -} -/// Obf: DFLHKJHDOCK -#[derive(proto_derive::CmdID)] -#[cmdid(4780)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AlleyOrderChangedScNotify { - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub pphiadnkgaf: ::core::option::Option, -} -/// Obf: EMCEPDLELHE -#[derive(proto_derive::CmdID)] -#[cmdid(4703)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AlleyShipUnlockScNotify { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub ejdfknmnale: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lllomacpcgb { - /// offset: 56 - #[prost(uint32, tag = "10")] - pub lepacdhlbib: u32, - /// offset: 48 - #[prost(uint32, tag = "3")] - pub behpabeeodh: u32, - /// offset: 52 - #[prost(uint32, tag = "6")] - pub shop_id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub cadhphlnoch: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub ppibbkhlmjc: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "2")] - pub cakccbjohoi: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "14")] - pub dgnkgdlillb: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Njaoiggmeal { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub hofdbflcgkb: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub bclnmidffoh: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub map_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LogisticsScore { - /// offset: 36 - #[prost(uint32, tag = "5")] - pub max_score: u32, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub map_id: u32, - /// offset: 52 - #[prost(uint32, tag = "3")] - pub unlock_level: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub last_max_score: u32, - /// offset: 48 - #[prost(uint32, tag = "1")] - pub cur_score: u32, - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub reward: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "14")] - pub last_level: u32, -} -/// Obf: BAKNCHMDANL -#[derive(proto_derive::CmdID)] -#[cmdid(4798)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LogisticsGameCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub apmcphfmaeg: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "14")] - pub boblnbjmkca: bool, -} -/// Obf: ODAENPNMIHC -#[derive(proto_derive::CmdID)] -#[cmdid(4721)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LogisticsScoreRewardSyncInfoScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub fmjplhohbab: ::prost::alloc::vec::Vec, -} -/// Obf: MECOFAJONFP -#[derive(proto_derive::CmdID)] -#[cmdid(4765)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LogisticsGameScRsp { - /// offset: 36 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 32 - #[prost(bool, tag = "14")] - pub boblnbjmkca: bool, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub event_id: u32, - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub fmjplhohbab: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hehaomiamgl { - /// offset: 32 - #[prost(enumeration = "Bjlncfjoiaf", tag = "15")] - pub state: i32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub event_id: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub ningbnbmkop: u32, -} -/// Obf: IIBMDIJBLOB -#[derive(proto_derive::CmdID)] -#[cmdid(4794)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartAlleyEventCsReq { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub event_id: u32, -} -/// Obf: GCCCHNPFPLP -#[derive(proto_derive::CmdID)] -#[cmdid(4752)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartAlleyEventScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub event_id: u32, -} -/// Obf: GBOOJMAOLDH -#[derive(proto_derive::CmdID)] -#[cmdid(4719)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AlleyEventChangeNotify { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub hcnldibeaca: u32, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub nfldodiabcl: ::core::option::Option, -} -/// Obf: PDPEIEHBKDN -#[derive(proto_derive::CmdID)] -#[cmdid(4744)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AlleyEventEffectNotify { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub lfilnmfdnig: u32, -} -/// Obf: GJLHOFGMAHJ -#[derive(proto_derive::CmdID)] -#[cmdid(4781)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakePrestigeRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub level: u32, -} -/// Obf: FGNNNDKEEHB -#[derive(proto_derive::CmdID)] -#[cmdid(4769)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakePrestigeRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub level: u32, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub reward: ::core::option::Option, -} -/// Obf: AGLOLFIPCDP -#[derive(proto_derive::CmdID)] -#[cmdid(4705)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PrestigeLevelUpCsReq {} -/// Obf: JEMEEDBIDOB -#[derive(proto_derive::CmdID)] -#[cmdid(4751)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PrestigeLevelUpScRsp { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub level: u32, -} -/// Obf: BNFGELHDPEE -#[derive(proto_derive::CmdID)] -#[cmdid(4729)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AlleyFundsScNotify { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub dbjhemippim: u32, -} -/// Obf: AIAANLBAGMD +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(4709)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SaveLogisticsCsReq { - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub apmcphfmaeg: ::prost::alloc::vec::Vec, -} -/// Obf: HCDCIKFBLEP -#[derive(proto_derive::CmdID)] -#[cmdid(4762)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SaveLogisticsScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub apmcphfmaeg: ::prost::alloc::vec::Vec, -} -/// Obf: FEMPLINBLJG -#[derive(proto_derive::CmdID)] -#[cmdid(4759)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LogisticsInfoScNotify { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub njgamccgadc: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Laiemcfacdk { - /// offset: 36 - #[prost(uint32, tag = "4")] - pub pghckcpkgll: u32, +pub struct Gjdjcdbbhoe { + /// offset: 92 + #[prost(uint32, tag = "6")] + pub level: u32, + /// offset: 56 + #[prost(uint32, repeated, tag = "14")] + pub ekbeefgbdpk: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(message, repeated, tag = "15")] + pub lhnaamcgige: ::prost::alloc::vec::Vec, + /// offset: 88 + #[prost(uint32, tag = "11")] + pub cur_fund: u32, /// offset: 24 - #[prost(map = "uint32, uint32", tag = "12")] - pub aahapcbilhc: ::std::collections::HashMap, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub alghcnajbmm: u32, -} -/// Obf: DDNICGDDLCO -#[derive(proto_derive::CmdID)] -#[cmdid(4722)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AlleyShipmentEventEffectsScNotify { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub lgjkpjojblf: ::core::option::Option, -} -/// Obf: NGMEMMOENFH -#[derive(proto_derive::CmdID)] -#[cmdid(4797)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetSaveLogisticsMapCsReq {} -/// Obf: FMCFCLGGHCE -#[derive(proto_derive::CmdID)] -#[cmdid(4755)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSaveLogisticsMapScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub hnfojbcjamg: ::prost::alloc::vec::Vec, - /// offset: 32 + #[prost(message, optional, tag = "5")] + pub hgndeaokpfj: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub ipmlnmkacml: ::core::option::Option, + /// offset: 96 #[prost(uint32, tag = "12")] pub retcode: u32, + /// offset: 40 + #[prost(map = "uint32, uint32", tag = "10")] + pub llndkakdobj: ::std::collections::HashMap, + /// offset: 100 + #[prost(uint32, tag = "3")] + pub kooaleiecpa: u32, + /// offset: 48 + #[prost(message, optional, tag = "9")] + pub jfbhfffdghl: ::core::option::Option, + /// offset: 72 + #[prost(uint32, repeated, tag = "8")] + pub lmjfiohligb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "13")] + pub kiponomimon: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dcfoajbjdfi { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub edaafehelnm: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub olplfibeifb: u32, } -/// Obf: CGHOCDCODMF #[derive(proto_derive::CmdID)] -#[cmdid(4750)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct AlleyShipUsedCountScNotify { +pub struct Lmdaeaijnla { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub goods_id: u32, /// offset: 16 - #[prost(map = "uint32, uint32", tag = "15")] - pub nplakeokekb: ::std::collections::HashMap, + #[prost(message, repeated, tag = "9")] + pub bgmngjipghh: ::prost::alloc::vec::Vec, } -/// Obf: IHIKFLJEIJD #[derive(proto_derive::CmdID)] -#[cmdid(4760)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AlleyGuaranteedFundsCsReq {} -/// Obf: PKJNKFAGCBP +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jjmidclnoib { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub jkaomnddacc: u32, + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub jhjbcgfkknj: ::prost::alloc::vec::Vec, +} +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4771)] +#[cmdid(4776)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eiophckbeep { + /// offset: 40 + #[prost(uint32, tag = "9")] + pub nllmcajgjlg: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub liaofnfmnfh: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub cost_time: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub enmhmcjplgj: u32, + /// offset: 60 + #[prost(uint32, tag = "7")] + pub bgcmpefghhm: u32, + /// offset: 52 + #[prost(uint32, tag = "11")] + pub poemamjhbgl: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub ckkeobekdld: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub leohmhnkhfi: u32, + /// offset: 56 + #[prost(uint32, tag = "1")] + pub kfgbfffhmjk: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4752)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AlleyGuaranteedFundsScRsp { +pub struct Okojaakffdb { + /// offset: 40 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub bhajhofhiod: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub nmclkipamin: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub kpcliahaeib: u32, + /// offset: 44 + #[prost(uint32, tag = "4")] + pub labonbejiga: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub event_id: u32, + /// offset: 52 + #[prost(uint32, tag = "15")] + pub mgfblpjgcnf: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub haaknepfmhh: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4703)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gkfkfejipbl { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub ckkeobekdld: ::core::option::Option, + #[prost(oneof = "gkfkfejipbl::Jgmpcpmlphi", tags = "14, 3")] + pub jgmpcpmlphi: ::core::option::Option, +} +/// Nested message and enum types in `GKFKFEJIPBL`. +pub mod gkfkfejipbl { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Jgmpcpmlphi { + /// offset: 32 + #[prost(uint32, tag = "14")] + Lcacllfikkc(u32), + /// offset: 32 + #[prost(uint32, tag = "3")] + Leohmhnkhfi(u32), + } +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4755)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eikfiejkmnc { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, + #[prost(oneof = "eikfiejkmnc::Jgmpcpmlphi", tags = "4, 10")] + pub jgmpcpmlphi: ::core::option::Option, +} +/// Nested message and enum types in `EIKFIEJKMNC`. +pub mod eikfiejkmnc { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Jgmpcpmlphi { + /// offset: 16 + #[prost(uint32, tag = "4")] + Lcacllfikkc(u32), + /// offset: 16 + #[prost(uint32, tag = "10")] + Leohmhnkhfi(u32), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lkdjmkjcgfo { + /// offset: 48 + #[prost(uint32, tag = "11")] + pub npedpfmnkip: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub jpfemopnjbl: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub dlejjloncjf: u32, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub lfcbobfmjno: u32, + /// offset: 52 + #[prost(bool, tag = "4")] + pub hloofoafflb: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub lnnpenalmjf: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4710)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mcodbgamgae { + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub fbhbkfijmdn: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4792)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kigdognlbej { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub jkaomnddacc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mbbjceahejd { + /// offset: 60 + #[prost(uint32, tag = "2")] + pub nbfpmkcfdlp: u32, + /// offset: 52 + #[prost(uint32, tag = "10")] + pub himafmcfmbo: u32, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub gepcnbpnfih: u32, + /// offset: 56 + #[prost(uint32, tag = "12")] + pub shop_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub hanfmngkkjk: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub jhjbcgfkknj: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "6")] + pub lhcflikfchg: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aggphhoajfa { + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub ikhalbbdeno: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub map_id: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub cost_time: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iacmbkiahkd { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub reward: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub kmfnhlkolkk: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub cjiihgfelkn: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub kcnmnfenkii: u32, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub max_score: u32, + /// offset: 52 + #[prost(uint32, tag = "14")] + pub map_id: u32, + /// offset: 44 + #[prost(uint32, tag = "1")] + pub gjocecachep: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4738)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mbffbcabiml { + /// offset: 32 + #[prost(bool, tag = "10")] + pub pkmmmmkoghe: bool, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub kjpikkmddle: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4788)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lihohdabgec { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub ljmnmleggam: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4717)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nibocpdlgfg { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub event_id: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub ljmnmleggam: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(bool, tag = "13")] + pub pkmmmmkoghe: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Boffinmckhp { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub event_id: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub cmfaeebdacn: u32, + /// offset: 28 + #[prost(enumeration = "Mdejakhmhio", tag = "8")] + pub state: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4789)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fbmpmkjcpkd { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub event_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4720)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aedklldfcpn { /// offset: 24 #[prost(uint32, tag = "11")] - pub retcode: u32, + pub event_id: u32, /// offset: 28 - #[prost(uint32, tag = "14")] - pub clibobehndm: u32, + #[prost(uint32, tag = "5")] + pub retcode: u32, } -/// Obf: MDGBHHGPDAJ +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4795)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pgheieekelk { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub ljdcmdppcbc: u32, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub fnndckcdhja: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4791)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dfjdecbjkmb { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub ckbpcejclih: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4761)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hknkcnmbeao { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub level: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4745)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hmlpkfeohkh { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub reward: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub level: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4762)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjbddadipnl {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(4735)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AlleyTakeEventRewardCsReq { +pub struct Lcfijcknmdb { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub level: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4798)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hifeimicdml { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub cur_fund: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4714)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nhlcpfejmhc { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub kjpikkmddle: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4726)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dofpcpjleec { + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub kjpikkmddle: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4757)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Holmfmjbkbk { + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub jfbhfffdghl: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gaaldnonmeo { + /// offset: 36 + #[prost(uint32, tag = "4")] + pub gffolgajanp: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub gkidgfbcpfp: u32, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "13")] + pub lcdcacjpido: ::std::collections::HashMap, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4715)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cjghaplbfab { + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub ikabodeflnd: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4773)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fleggmnphjd {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4770)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oeodhmafebf { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub kegkmbkddpb: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4713)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ceeicjcfggc { + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "8")] + pub llndkakdobj: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Onjhodbdnmc {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4749)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Chbooadlnea { + /// offset: 28 + #[prost(uint32, tag = "8")] + pub apljpmlpjbk: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4777)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Npekkfmmkhl { /// offset: 24 #[prost(uint32, tag = "11")] pub event_id: u32, } -/// Obf: GBDLKBGCBAO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4774)] +#[cmdid(4719)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct AlleyTakeEventRewardScRsp { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub reward: ::core::option::Option, +pub struct Cjinjhfhopb { /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub reward: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4769)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mgmdengangh {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4706)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jglpimncioo { + /// offset: 24 #[prost(uint32, tag = "5")] pub retcode: u32, } -/// Obf: PCMDHOMOLFB -#[derive(proto_derive::CmdID)] -#[cmdid(4716)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LogisticsDetonateStarSkiffCsReq {} -/// Obf: MGDIBDJAMII -#[derive(proto_derive::CmdID)] -#[cmdid(4756)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LogisticsDetonateStarSkiffScRsp { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RelicArchive { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub r#type: u32, +pub struct RelicList { /// offset: 28 + #[prost(uint32, tag = "13")] + pub r#type: u32, + /// offset: 24 #[prost(uint32, tag = "3")] - pub relic_id: u32, + pub set_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonsterArchive { +pub struct MonsterList { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub monster_id: u32, /// offset: 28 #[prost(uint32, tag = "7")] @@ -5953,30 +5998,30 @@ pub struct MonsterArchive { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ArchiveData { - /// offset: 56 - #[prost(message, repeated, tag = "14")] - pub relic_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub archive_equipment_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "9")] - pub archive_missing_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "4")] - pub archive_monster_id_list: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "1")] + pub archive_equipment_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub relic_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "11")] + pub kill_monster_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, repeated, tag = "12")] + pub archive_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] pub archive_missing_equipment_id_list: ::prost::alloc::vec::Vec, } -/// Obf: GBKFNMIJNJM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2399)] +#[cmdid(2347)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetArchiveDataCsReq {} -/// Obf: ELKFLJKDFDB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2323)] +#[cmdid(2309)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetArchiveDataScRsp { /// offset: 24 @@ -5986,5859 +6031,6717 @@ pub struct GetArchiveDataScRsp { #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: NKDHENMJGDK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2398)] +#[cmdid(2338)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetUpdatedArchiveDataCsReq {} -/// Obf: HGJNHMIDNNP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2365)] +#[cmdid(2317)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetUpdatedArchiveDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "5")] + /// offset: 16 + #[prost(message, optional, tag = "3")] pub archive_data: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, } -/// Obf: FDBODLGODJN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(399)] +#[cmdid(347)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAvatarDataCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "3")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(bool, tag = "3")] + #[prost(bool, tag = "1")] pub is_get_all: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Avatar { - /// offset: 60 - #[prost(uint32, tag = "7")] - pub dressed_skin_id: u32, /// offset: 52 - #[prost(uint32, tag = "8")] - pub exp: u32, - /// offset: 88 - #[prost(uint64, tag = "2")] - pub first_met_timestamp: u64, - /// offset: 80 - #[prost(uint32, tag = "3")] - pub rank: u32, - /// offset: 40 - #[prost(message, repeated, tag = "14")] - pub equip_relic_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(bool, tag = "11")] - pub is_marked: bool, - /// offset: 72 - #[prost(uint32, tag = "10")] - pub level: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub taken_rewards: ::prost::alloc::vec::Vec, - /// offset: 64 #[prost(uint32, tag = "12")] pub unk_enhanced_id: u32, - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub skilltree_list: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(uint32, tag = "1")] - pub base_avatar_id: u32, - /// offset: 76 - #[prost(uint32, tag = "15")] + /// offset: 92 + #[prost(uint32, tag = "3")] pub promotion: u32, - /// offset: 56 + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub skilltree_list: ::prost::alloc::vec::Vec, + /// offset: 48 #[prost(uint32, tag = "6")] - pub equipment_unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiPathAvatarTypeInfo { - /// offset: 68 + pub exp: u32, + /// offset: 56 + #[prost(bool, tag = "8")] + pub is_marked: bool, + /// offset: 40 + #[prost(message, repeated, tag = "4")] + pub equip_relic_list: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "2")] + pub level: u32, + /// offset: 76 + #[prost(uint32, tag = "9")] + pub base_avatar_id: u32, + /// offset: 88 #[prost(uint32, tag = "13")] pub dressed_skin_id: u32, - /// offset: 64 - #[prost(uint32, tag = "10")] + /// offset: 80 + #[prost(uint32, tag = "14")] pub rank: u32, - /// offset: 56 - #[prost(uint64, tag = "6")] - pub kdmclkjljpp: u64, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub path_equipment_id: u32, - /// offset: 48 - #[prost(enumeration = "MultiPathAvatarType", tag = "12")] - pub avatar_id: i32, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub skilltree_list: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "15")] + pub equipment_unique_id: u32, /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub equip_relic_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub unk_enhanced_id: u32, + #[prost(uint32, repeated, tag = "7")] + pub has_taken_promotion_reward_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint64, tag = "11")] + pub first_met_time_stamp: u64, } -/// Obf: LLKPMKBOPAE #[derive(proto_derive::CmdID)] -#[cmdid(323)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MultiPathAvatarInfo { + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub equip_relic_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(enumeration = "MultiPathAvatarType", tag = "4")] + pub avatar_id: i32, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub rank: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub path_equipment_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub multi_path_skill_tree: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "10")] + pub unk_enhanced_id: u32, + /// offset: 64 + #[prost(uint64, tag = "8")] + pub deadhpickbo: u64, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub dressed_skin_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(309)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAvatarDataScRsp { - /// offset: 92 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 48 - #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "13")] - pub pnkcfealami: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(message, repeated, tag = "10")] - pub fefpijjlnfg: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "6")] - pub multi_path_avatar_type_info_list: ::prost::alloc::vec::Vec< - MultiPathAvatarTypeInfo, - >, - /// offset: 88 - #[prost(bool, tag = "14")] - pub is_get_all: bool, - /// offset: 96 - #[prost(uint32, tag = "4")] - pub jpnlpopmkej: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub owned_skin_id_list: ::prost::alloc::vec::Vec, /// offset: 80 - #[prost(map = "uint32, enumeration(MultiPathAvatarType)", tag = "8")] - pub current_multi_path_avatar_id: ::std::collections::HashMap, - /// offset: 32 - #[prost(message, optional, tag = "5")] - pub enfkeibdllf: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub jlmnicahjde: ::core::option::Option, /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub skin_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(map = "uint32, enumeration(MultiPathAvatarType)", tag = "5")] + pub cur_avatar_path: ::std::collections::HashMap, + /// offset: 88 + #[prost(bool, tag = "9")] + pub is_get_all: bool, + /// offset: 48 + #[prost(enumeration = "GrowthTartgetFuncType", repeated, tag = "3")] + pub mgjggnlnhle: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(message, repeated, tag = "4")] + pub icmoeiaboml: ::prost::alloc::vec::Vec, /// offset: 64 - #[prost(uint32, repeated, tag = "1")] - pub halndfogjnf: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 96 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 92 + #[prost(uint32, tag = "12")] + pub igjhpcebbjp: u32, + /// offset: 56 + #[prost(message, repeated, tag = "11")] + pub multi_path_avatar_info_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "2")] + pub basic_type_id_list: ::prost::alloc::vec::Vec, } -/// Obf: DJJKIIAHALC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(398)] +#[cmdid(338)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarExpUpCsReq { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub base_avatar_id: u32, /// offset: 24 - #[prost(message, optional, tag = "1")] - pub item_cost_list: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub item_cost: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub base_avatar_id: u32, } -/// Obf: INHIJFMNOAO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(365)] +#[cmdid(317)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarExpUpScRsp { /// offset: 32 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "7")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "11")] + /// offset: 24 + #[prost(message, repeated, tag = "2")] pub return_item_list: ::prost::alloc::vec::Vec, } -/// Obf: KFOMNLIPHKM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(383)] +#[cmdid(351)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockSkilltreeCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub point_id: u32, /// offset: 32 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub level: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub point_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub item_list: ::prost::alloc::vec::Vec, } -/// Obf: GOFNEGEKNHK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(386)] +#[cmdid(311)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockSkilltreeScRsp { /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "7")] pub point_id: u32, /// offset: 28 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] pub level: u32, } -/// Obf: FMDODPOOBAK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(394)] +#[cmdid(389)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PromoteAvatarCsReq { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub base_avatar_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] + /// offset: 24 + #[prost(message, repeated, tag = "12")] pub item_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub base_avatar_id: u32, } -/// Obf: NPAFCPEKNPG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(352)] +#[cmdid(320)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PromoteAvatarScRsp { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: OKIHBJFFGHB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(319)] +#[cmdid(395)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressAvatarCsReq { /// offset: 24 - #[prost(uint32, tag = "3")] - pub avatar_id: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub equipment_unique_id: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub avatar_id: u32, } -/// Obf: FIGIBBKEBBD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(344)] +#[cmdid(391)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressAvatarScRsp { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: GKOAAJMMEMA -#[derive(proto_derive::CmdID)] -#[cmdid(381)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeOffEquipmentCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub avatar_id: u32, -} -/// Obf: MGEJBJLFBPC -#[derive(proto_derive::CmdID)] -#[cmdid(369)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeOffEquipmentScRsp { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: KAIMCKHIFHP -#[derive(proto_derive::CmdID)] -#[cmdid(357)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AddAvatarScNotify { - /// offset: 40 - #[prost(bool, tag = "7")] - pub is_new: bool, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub base_avatar_id: u32, - /// offset: 32 - #[prost(enumeration = "AddAvatarSrc", tag = "15")] - pub src: i32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub reward: ::core::option::Option, -} -/// Obf: EBPDFOPKBHC -#[derive(proto_derive::CmdID)] -#[cmdid(322)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AddMultiPathAvatarScNotify { - /// offset: 40 - #[prost(enumeration = "Obipkiialhc", tag = "10")] - pub fmgnioehhcf: i32, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub avatar_id: u32, - /// offset: 32 - #[prost(bool, tag = "12")] - pub is_new: bool, -} -/// Obf: OLCFHOGGKNC -#[derive(proto_derive::CmdID)] -#[cmdid(315)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RankUpAvatarCsReq { - /// offset: 36 - #[prost(uint32, tag = "4")] - pub rank: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub avatar_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub item_cost_list: ::core::option::Option, -} -/// Obf: LLLGFJMKHHK -#[derive(proto_derive::CmdID)] -#[cmdid(392)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RankUpAvatarScRsp { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RelicParam { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub relic_unique_id: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub slot: u32, -} -/// Obf: CAMOJCCLNCE -#[derive(proto_derive::CmdID)] -#[cmdid(337)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DressRelicAvatarCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub param_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub avatar_id: u32, -} -/// Obf: ADPAIPLCFIC -#[derive(proto_derive::CmdID)] -#[cmdid(368)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DressRelicAvatarScRsp { /// offset: 24 #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: DDPFFOPJHHM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(349)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeOffRelicCsReq { +#[cmdid(361)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct TakeOffEquipmentCsReq { /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub slot_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] pub avatar_id: u32, } -/// Obf: HEENELCHMKP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(380)] +#[cmdid(345)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct TakeOffEquipmentScRsp { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(376)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct AddAvatarScNotify { + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(bool, tag = "8")] + pub is_new: bool, + /// offset: 36 + #[prost(enumeration = "AddAvatarSrcState", tag = "7")] + pub src: i32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub base_avatar_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(315)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct AddMultiPathAvatarScNotify { + /// offset: 36 + #[prost(uint32, tag = "15")] + pub avatar_id: u32, + /// offset: 40 + #[prost(bool, tag = "5")] + pub is_new: bool, + /// offset: 32 + #[prost(enumeration = "Nablpjaiioh", tag = "4")] + pub hecnhlbhpol: i32, + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub reward: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(352)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RankUpAvatarCsReq { + /// offset: 36 + #[prost(uint32, tag = "7")] + pub rank: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub avatar_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub cost_data: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(350)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RankUpAvatarScRsp { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct DressRelicParam { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub relic_unique_id: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub relic_type: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(381)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct DressRelicAvatarCsReq { + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub switch_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub avatar_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(393)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct DressRelicAvatarScRsp { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(337)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeOffRelicCsReq { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub avatar_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub relic_type_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(310)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeOffRelicScRsp { /// offset: 24 #[prost(uint32, tag = "3")] pub retcode: u32, } -/// Obf: EMAJLDJJNLL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(377)] +#[cmdid(367)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakePromotionRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub base_avatar_id: u32, /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub promotion: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub base_avatar_id: u32, } -/// Obf: HDEAAFNFGCM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(305)] +#[cmdid(362)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakePromotionRewardScRsp { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub reward_list: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub reward_list: ::core::option::Option, } -/// Obf: PHEMPEFMECP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(351)] +#[cmdid(335)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressAvatarSkinCsReq { /// offset: 28 - #[prost(uint32, tag = "1")] - pub avatar_id: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub skin_id: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub avatar_id: u32, } -/// Obf: MEKBMEPIDHM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(329)] +#[cmdid(398)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DressAvatarSkinScRsp { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub retcode: u32, } -/// Obf: HJBAMOJDEEM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(338)] +#[cmdid(346)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeOffAvatarSkinCsReq { /// offset: 24 #[prost(uint32, tag = "5")] pub avatar_id: u32, } -/// Obf: ABOODONGNHG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(303)] +#[cmdid(392)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeOffAvatarSkinScRsp { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: CFBNAMCDBCC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(309)] +#[cmdid(314)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockAvatarSkinScNotify { /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "14")] pub skin_id: u32, } -/// Obf: EFJAEIOOBAP -#[derive(proto_derive::CmdID)] -#[cmdid(353)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetPlayerOutfitCsReq { - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub enfkeibdllf: ::core::option::Option, -} -/// Obf: DMOLAOHBEJJ -#[derive(proto_derive::CmdID)] -#[cmdid(342)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetPlayerOutfitScRsp { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub retcode: u32, -} -/// Obf: HNEPFBPJKLI -#[derive(proto_derive::CmdID)] -#[cmdid(362)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarkAvatarCsReq { - /// offset: 24 - #[prost(bool, tag = "9")] - pub is_marked: bool, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub avatar_id: u32, -} -/// Obf: NGPKIPOGOHO -#[derive(proto_derive::CmdID)] -#[cmdid(359)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarkAvatarScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 32 - #[prost(bool, tag = "8")] - pub is_marked: bool, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub avatar_id: u32, -} -/// Obf: BFCKHJIDMJO -#[derive(proto_derive::CmdID)] -#[cmdid(397)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetGrowthTargetAvatarCsReq { - /// offset: 16 - #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "3")] - pub ejbjbocoinb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub avatar_id: u32, - /// offset: 36 - #[prost(enumeration = "Gifjdobiiik", tag = "9")] - pub source: i32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub idnmeknhlpo: u32, -} -/// Obf: CEICLCJFPDI +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(355)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetGrowthTargetAvatarScRsp { - /// offset: 40 - #[prost(uint32, tag = "13")] - pub jpnlpopmkej: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub growth_avatar_id: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub retcode: u32, +pub struct SetPlayerOutfitCsReq { /// offset: 24 - #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "14")] - pub ejbjbocoinb: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "9")] + pub jlmnicahjde: ::core::option::Option, } -/// Obf: MLGLOKGPPEG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(350)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GrowthTargetAvatarChangedScNotify { - /// offset: 24 - #[prost(enumeration = "Bcmljcfoefm", repeated, tag = "10")] - pub ejbjbocoinb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub jpnlpopmkej: u32, -} -/// Obf: ECEAPFHMMEI -#[derive(proto_derive::CmdID)] -#[cmdid(321)] +#[cmdid(330)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPreAvatarActivityListCsReq {} -/// Obf: NLBLICCIFCC -#[derive(proto_derive::CmdID)] -#[cmdid(310)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPreAvatarActivityListScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub phhncjjpkic: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nmifoljfcjh { - /// offset: 60 - #[prost(uint32, tag = "81")] - pub dggnnbcjocc: u32, - /// offset: 48 - #[prost(string, tag = "1532")] - pub oanpnfjjfhg: ::prost::alloc::string::String, - /// offset: 64 - #[prost(uint32, tag = "1642")] - pub module_id: u32, - /// offset: 104 - #[prost(uint32, tag = "1728")] - pub r#type: u32, - /// offset: 96 - #[prost(uint32, tag = "6")] - pub dlapkbddbbc: u32, - /// offset: 100 - #[prost(uint32, tag = "11")] - pub egddnpeonkc: u32, - /// offset: 116 - #[prost(uint32, tag = "7")] - pub jjmkeadciag: u32, - /// offset: 56 - #[prost(uint32, tag = "4")] - pub dbijfkobkkh: u32, - /// offset: 68 - #[prost(uint32, tag = "14")] - pub hdnikcblkil: u32, - /// offset: 88 - #[prost(uint32, tag = "12")] - pub lkkamllafae: u32, +pub struct SetPlayerOutfitScRsp { /// offset: 24 - #[prost(string, tag = "699")] - pub ebppbpmhdhi: ::prost::alloc::string::String, - /// offset: 124 - #[prost(uint32, tag = "15")] - pub aekfjkenphn: u32, - /// offset: 120 - #[prost(uint32, tag = "3")] - pub kjaeojbjojd: u32, - /// offset: 92 - #[prost(uint32, tag = "9")] - pub pmmcfgmplba: u32, - /// offset: 32 - #[prost(string, tag = "1569")] - pub mkhldlfonkn: ::prost::alloc::string::String, - /// offset: 72 - #[prost(uint32, tag = "2")] - pub ihokhlfhocc: u32, - /// offset: 112 - #[prost(uint32, tag = "13")] - pub lijcngohkhf: u32, - /// offset: 76 - #[prost(uint32, tag = "5")] - pub flaagnapdhp: u32, - /// offset: 108 - #[prost(uint32, tag = "8")] - pub fojcckacdhh: u32, - /// offset: 40 - #[prost(string, tag = "824")] - pub kpjhbeilaip: ::prost::alloc::string::String, - /// offset: 80 #[prost(uint32, tag = "10")] - pub kiejacmogan: u32, - /// offset: 84 - #[prost(uint32, tag = "1")] - pub phibnkmiogp: u32, -} -/// Obf: NKLEGHEBAKI -#[derive(proto_derive::CmdID)] -#[cmdid(360)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPreAvatarGrowthInfoCsReq {} -/// Obf: GEFENNPHDME -#[derive(proto_derive::CmdID)] -#[cmdid(371)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPreAvatarGrowthInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub ijonomejohm: ::prost::alloc::vec::Vec, } -/// Obf: FEBPEIFDKNN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(316)] +#[cmdid(326)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetAvatarEnhancedIdCsReq { +pub struct MarkAvatarCsReq { + /// offset: 24 + #[prost(bool, tag = "10")] + pub is_marked: bool, /// offset: 28 - #[prost(uint32, tag = "8")] - pub enhanced_id: u32, + #[prost(uint32, tag = "5")] + pub avatar_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(357)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MarkAvatarScRsp { + /// offset: 28 + #[prost(bool, tag = "15")] + pub is_marked: bool, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, /// offset: 24 #[prost(uint32, tag = "13")] pub avatar_id: u32, } -/// Obf: DPEFJJFALKG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(356)] +#[cmdid(373)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetGrowthTargetAvatarCsReq { + /// offset: 16 + #[prost(enumeration = "GrowthTartgetFuncType", repeated, tag = "3")] + pub growth_target_type_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub pgcelobpnkb: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub avatar_id: u32, + /// offset: 36 + #[prost(enumeration = "GrowthTargetState", tag = "1")] + pub source: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(370)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetGrowthTargetAvatarScRsp { + /// offset: 16 + #[prost(enumeration = "GrowthTartgetFuncType", repeated, tag = "7")] + pub growth_target_type_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub growth_avatar_id: u32, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub igjhpcebbjp: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(313)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GrowthTargetAvatarChangedScNotify { + /// offset: 16 + #[prost(enumeration = "GrowthTartgetFuncType", repeated, tag = "12")] + pub growth_target_type_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub igjhpcebbjp: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(388)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetPreAvatarActivityListCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(303)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetPreAvatarActivityListScRsp { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub aglcbhnokhf: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nohafbokhek { + /// offset: 48 + #[prost(string, tag = "475")] + pub ohljlhipjfo: ::prost::alloc::string::String, + /// offset: 64 + #[prost(uint32, tag = "56")] + pub r#type: u32, + /// offset: 96 + #[prost(uint32, tag = "9")] + pub fiaccbmmfkp: u32, + /// offset: 76 + #[prost(uint32, tag = "13")] + pub kknbkpigfja: u32, + /// offset: 40 + #[prost(string, tag = "1380")] + pub flillkafpak: ::prost::alloc::string::String, + /// offset: 112 + #[prost(uint32, tag = "15")] + pub cdkmcdjbgbb: u32, + /// offset: 68 + #[prost(uint32, tag = "12")] + pub gbebhhleeep: u32, + /// offset: 120 + #[prost(uint32, tag = "8")] + pub leckfgekfdo: u32, + /// offset: 88 + #[prost(uint32, tag = "1906")] + pub bncdgmcofga: u32, + /// offset: 104 + #[prost(uint32, tag = "10")] + pub acmijnfkbeo: u32, + /// offset: 24 + #[prost(string, tag = "217")] + pub mpilipndjjj: ::prost::alloc::string::String, + /// offset: 92 + #[prost(uint32, tag = "6")] + pub lickjeebnli: u32, + /// offset: 56 + #[prost(uint32, tag = "14")] + pub anbmbhmgmfd: u32, + /// offset: 108 + #[prost(uint32, tag = "119")] + pub panel_id: u32, + /// offset: 124 + #[prost(uint32, tag = "1")] + pub fcphepnpjel: u32, + /// offset: 116 + #[prost(uint32, tag = "2")] + pub nighkldikbb: u32, + /// offset: 100 + #[prost(uint32, tag = "3")] + pub ojcfhmcffmk: u32, + /// offset: 60 + #[prost(uint32, tag = "4")] + pub lonkcodcife: u32, + /// offset: 84 + #[prost(uint32, tag = "7")] + pub ibfjemackkn: u32, + /// offset: 32 + #[prost(string, tag = "1394")] + pub jckbkflmbpg: ::prost::alloc::string::String, + /// offset: 80 + #[prost(uint32, tag = "11")] + pub djbahnopmlb: u32, + /// offset: 72 + #[prost(uint32, tag = "5")] + pub bkbmjjohgdk: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(301)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetPreAvatarGrowthInfoCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(349)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetPreAvatarGrowthInfoScRsp { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub ijjkajjlmkm: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(369)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetAvatarEnhancedIdCsReq { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub avatar_id: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub enhanced_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(306)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetAvatarEnhancedIdScRsp { /// offset: 28 #[prost(uint32, tag = "13")] - pub growth_avatar_id: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] pub unk_enhanced_id: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub growth_avatar_id: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub retcode: u32, } -/// Obf: LBBLEAJKMIK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(370)] +#[cmdid(333)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetAvatarPathCsReq { /// offset: 24 #[prost(enumeration = "MultiPathAvatarType", tag = "9")] pub avatar_id: i32, } -/// Obf: GCENDFMFELN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(341)] +#[cmdid(366)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetAvatarPathScRsp { - /// offset: 28 - #[prost(enumeration = "MultiPathAvatarType", tag = "5")] - pub avatar_id: i32, /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "8")] pub retcode: u32, + /// offset: 28 + #[prost(enumeration = "MultiPathAvatarType", tag = "10")] + pub avatar_id: i32, } -/// Obf: BDCJMLIKLOE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(304)] +#[cmdid(307)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetMultipleAvatarPathsCsReq { /// offset: 16 - #[prost(enumeration = "MultiPathAvatarType", repeated, tag = "6")] + #[prost(enumeration = "MultiPathAvatarType", repeated, tag = "12")] pub avatar_id_list: ::prost::alloc::vec::Vec, } -/// Obf: ICLMIMNMAFO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(311)] +#[cmdid(397)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetMultipleAvatarPathsScRsp { /// offset: 24 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "4")] pub retcode: u32, } -/// Obf: NPCBNNEEDEL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(306)] +#[cmdid(385)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockAvatarPathCsReq { /// offset: 24 - #[prost(enumeration = "MultiPathAvatarType", tag = "12")] + #[prost(enumeration = "MultiPathAvatarType", tag = "11")] pub avatar_id: i32, } -/// Obf: GOKAANGNBHD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(363)] +#[cmdid(325)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockAvatarPathScRsp { - /// offset: 44 - #[prost(enumeration = "MultiPathAvatarType", tag = "5")] - pub avatar_id: i32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub halndfogjnf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "4")] pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "11")] + pub basic_type_id_list: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(enumeration = "MultiPathAvatarType", tag = "3")] + pub avatar_id: i32, } -/// Obf: NFHMHFNKECL +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(312)] +#[cmdid(336)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarPathChangedNotify { /// offset: 28 - #[prost(enumeration = "MultiPathAvatarType", tag = "12")] + #[prost(enumeration = "MultiPathAvatarType", tag = "3")] pub cur_multi_path_avatar_type: i32, /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub base_avatar_id: u32, } -/// Obf: LMEMJLHPGPL +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(301)] +#[cmdid(332)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AvatarSpecialSkilltreeUnlockScNotify { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub jcfagkilmke: u32, /// offset: 28 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "1")] + pub afmjjbpdegj: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] pub avatar_id: u32, } -/// Obf: BAOHDDGLEIA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(199)] +#[cmdid(147)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PveBattleResultCsReq { - /// offset: 16 - #[prost(bytes = "vec", tag = "4")] - pub turn_snapshot_hash: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "5")] - pub bclnmidffoh: u32, - /// offset: 84 - #[prost(uint32, tag = "11")] - pub pak_type_version: u32, - /// offset: 92 - #[prost(uint32, tag = "12")] - pub jcjfgojfege: u32, - /// offset: 73 - #[prost(bool, tag = "10")] - pub is_ai_consider_ultra_skill: bool, - /// offset: 76 - #[prost(uint32, tag = "13")] - pub client_res_version: u32, - /// offset: 74 - #[prost(bool, tag = "3")] - pub gjgkagfpagm: bool, - /// offset: 40 - #[prost(string, tag = "1")] - pub debug_extra_info: ::prost::alloc::string::String, - /// offset: 72 - #[prost(bool, tag = "6")] + /// offset: 78 + #[prost(bool, tag = "11")] + pub dcbdjplecfo: bool, + /// offset: 88 + #[prost(uint32, tag = "1")] + pub client_version: u32, + /// offset: 77 + #[prost(bool, tag = "4")] pub is_auto_fight: bool, - /// offset: 64 - #[prost(uint32, tag = "8")] + /// offset: 84 + #[prost(uint32, tag = "2")] pub battle_id: u32, - /// offset: 68 - #[prost(enumeration = "BattleEndStatus", tag = "14")] - pub end_status: i32, - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub op_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(map = "string, uint32", tag = "7")] - pub hpekekipjlf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, - /// offset: 88 - #[prost(uint32, tag = "2")] - pub stage_id: u32, - /// offset: 48 - #[prost(message, optional, tag = "9")] - pub stt: ::core::option::Option, -} -/// Obf: PFAIJOHBNCF -#[derive(proto_derive::CmdID)] -#[cmdid(123)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PveBattleResultScRsp { - /// offset: 24 - #[prost(message, optional, tag = "417")] - pub nbhlifpblmf: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub drop_data: ::core::option::Option, - /// offset: 72 - #[prost(string, tag = "15")] - pub res_version: ::prost::alloc::string::String, - /// offset: 116 - #[prost(uint32, tag = "2")] - pub klodelecmci: u32, - /// offset: 80 - #[prost(string, tag = "9")] - pub bin_version: ::prost::alloc::string::String, - /// offset: 88 - #[prost(bool, tag = "13")] - pub check_identical: bool, - /// offset: 120 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 64 - #[prost(message, repeated, tag = "10")] - pub battle_avatar_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(map = "string, uint32", tag = "15")] + pub kommcoihcob: ::std::collections::HashMap<::prost::alloc::string::String, u32>, /// offset: 92 #[prost(uint32, tag = "14")] - pub ndcmdokkphh: u32, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub nhanakjfeab: ::core::option::Option, - /// offset: 96 - #[prost(uint32, tag = "12")] pub stage_id: u32, - /// offset: 100 - #[prost(uint32, tag = "5")] - pub event_id: u32, - /// offset: 108 - #[prost(uint32, tag = "7")] - pub ggmpfnkofkd: u32, - /// offset: 56 - #[prost(message, optional, tag = "1810")] - pub kjchgehdlno: ::core::option::Option, - /// offset: 104 - #[prost(enumeration = "BattleEndStatus", tag = "11")] + /// offset: 80 + #[prost(enumeration = "BattleEndStatus", tag = "13")] pub end_status: i32, + /// offset: 72 + #[prost(uint32, tag = "8")] + pub client_res_version: u32, + /// offset: 68 + #[prost(uint32, tag = "10")] + pub hjgcpafofcg: u32, + /// offset: 64 + #[prost(uint32, tag = "12")] + pub cost_time: u32, + /// offset: 56 + #[prost(string, tag = "9")] + pub debug_extra_info: ::prost::alloc::string::String, + /// offset: 76 + #[prost(bool, tag = "6")] + pub is_ai_consider_ultra_skill: bool, + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub op_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(bytes = "vec", tag = "3")] + pub turn_snapshot_hash: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(message, optional, tag = "4")] - pub jhmmoojpkha: ::core::option::Option, - /// offset: 112 - #[prost(uint32, tag = "3")] - pub battle_id: u32, -} -/// Obf: FJPLPFNKKKF -#[derive(proto_derive::CmdID)] -#[cmdid(198)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct QuitBattleCsReq { - /// offset: 16 #[prost(message, optional, tag = "5")] pub stt: ::core::option::Option, - /// offset: 32 - #[prost(enumeration = "Lipekjfjmnm", tag = "13")] - pub nikhbkchhjg: i32, } -/// Obf: PLOAKKONHKL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(165)] +#[cmdid(109)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PveBattleResultScRsp { + /// offset: 104 + #[prost(uint32, tag = "8")] + pub battle_id: u32, + /// offset: 120 + #[prost(enumeration = "BattleEndStatus", tag = "10")] + pub end_status: i32, + /// offset: 80 + #[prost(message, optional, tag = "262")] + pub item_list_unk1: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "1427")] + pub pkinokcincf: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "12")] + pub item_list_unk2: ::core::option::Option, + /// offset: 92 + #[prost(uint32, tag = "14")] + pub gmacmmepppe: u32, + /// offset: 100 + #[prost(uint32, tag = "4")] + pub mismatch_turn_count: u32, + /// offset: 88 + #[prost(bool, tag = "6")] + pub check_identical: bool, + /// offset: 96 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 72 + #[prost(string, tag = "1")] + pub res_version: ::prost::alloc::string::String, + /// offset: 112 + #[prost(uint32, tag = "15")] + pub event_id: u32, + /// offset: 116 + #[prost(uint32, tag = "5")] + pub pahkdhnnodf: u32, + /// offset: 32 + #[prost(string, tag = "7")] + pub bin_version: ::prost::alloc::string::String, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub battle_avatar_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub multiple_drop_data: ::core::option::Option, + /// offset: 108 + #[prost(uint32, tag = "3")] + pub stage_id: u32, + /// offset: 40 + #[prost(message, optional, tag = "9")] + pub drop_data: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(138)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct QuitBattleCsReq { + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub stt: ::core::option::Option, + /// offset: 32 + #[prost(enumeration = "RebattleType", tag = "14")] + pub rebattle_type: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(117)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitBattleScRsp { /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub retcode: u32, } -/// Obf: KJLJOBFCGDD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(183)] +#[cmdid(151)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCurBattleInfoCsReq {} -/// Obf: LHAFGCJCLFJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(186)] +#[cmdid(111)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetCurBattleInfoScRsp { - /// offset: 44 - #[prost(enumeration = "BattleEndStatus", tag = "9")] - pub hddndocnefo: i32, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub pbphjbafgbb: ::core::option::Option, /// offset: 48 - #[prost(uint32, tag = "1")] - pub ibpjkffflng: u32, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub retcode: u32, + #[prost(enumeration = "BattleEndStatus", tag = "15")] + pub last_end_status: i32, /// offset: 16 - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "1")] + pub ddfnfolgmhl: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "7")] + pub ogbanabpbkf: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "13")] pub battle_info: ::core::option::Option, } -/// Obf: OJMPHGKIIOC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(194)] +#[cmdid(189)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncClientResVersionCsReq { /// offset: 24 #[prost(uint32, tag = "5")] pub client_res_version: u32, } -/// Obf: GHIJAKBMJFH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(152)] +#[cmdid(120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncClientResVersionScRsp { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] pub client_res_version: u32, /// offset: 28 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: HEFKLAHHJPD +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(119)] +#[cmdid(195)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuitBattleScNotify {} -/// Obf: EBKCKNCFAKC #[derive(proto_derive::CmdID)] -#[cmdid(144)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattleLogReportCsReq {} -/// Obf: CGGHCMBCGBG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(181)] +#[cmdid(161)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattleLogReportScRsp { /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, + #[prost(bool, tag = "2")] + pub is_battle_log_report: bool, /// offset: 28 - #[prost(bool, tag = "3")] - pub lcgbacgbknc: bool, + #[prost(uint32, tag = "1")] + pub retcode: u32, } -/// Obf: INAKOOFBIBC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(169)] +#[cmdid(145)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ServerSimulateBattleFinishScNotify {} -/// Obf: BKPKHGCNLAM +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(157)] +#[cmdid(176)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReBattleAfterBattleLoseCsNotify { /// offset: 24 - #[prost(bool, tag = "6")] - pub pmjahilblfl: bool, + #[prost(bool, tag = "2")] + pub pkhecogkach: bool, } -/// Obf: JADANENHLEF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(115)] +#[cmdid(152)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RebattleByClientCsNotify { - /// offset: 24 - #[prost(message, optional, tag = "13")] + /// offset: 16 + #[prost(message, optional, tag = "1")] pub stt: ::core::option::Option, /// offset: 32 - #[prost(enumeration = "Lipekjfjmnm", tag = "10")] - pub nikhbkchhjg: i32, + #[prost(enumeration = "RebattleType", tag = "14")] + pub rebattle_type: i32, } -/// Obf: EEHPKOFBGJI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5799)] +#[cmdid(5747)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBattleCollegeDataCsReq {} -/// Obf: EDOBBBIOGOM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5723)] +#[cmdid(5709)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBattleCollegeDataScRsp { /// offset: 32 + #[prost(uint32, tag = "11")] + pub bmjiofkgfjp: u32, + /// offset: 36 #[prost(uint32, tag = "6")] pub retcode: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "5")] + #[prost(uint32, repeated, tag = "1")] pub finished_college_id_list: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub mamhojmfjof: u32, } -/// Obf: CPLJOBGDALK +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5798)] +#[cmdid(5738)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BattleCollegeDataChangeScNotify { - /// offset: 32 - #[prost(message, optional, tag = "2")] - pub reward: ::core::option::Option, /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub finished_college_id_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "14")] + pub reward: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "1")] - pub mamhojmfjof: u32, + #[prost(uint32, tag = "13")] + pub bmjiofkgfjp: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "2")] + pub finished_college_id_list: ::prost::alloc::vec::Vec, } -/// Obf: MNBLONDLDJD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5765)] +#[cmdid(5717)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartBattleCollegeCsReq { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub id: u32, } -/// Obf: MOPKNCIPMMP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5783)] +#[cmdid(5751)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartBattleCollegeScRsp { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub id: u32, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub id: u32, /// offset: 24 - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "9")] pub battle_info: ::core::option::Option, } -/// Obf: LCGKPCGHILI +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(3099)] +#[cmdid(3047)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BattlePassInfoNotify { - /// offset: 80 - #[prost(uint64, tag = "12")] - pub ekgopldjoii: u64, - /// offset: 40 - #[prost(uint64, tag = "11")] - pub nkaoknmholh: u64, - /// offset: 96 - #[prost(uint64, tag = "7")] - pub ljoekefkpko: u64, - /// offset: 108 - #[prost(uint32, tag = "14")] - pub exp: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub edbmnmdjbko: u32, /// offset: 104 - #[prost(uint32, tag = "2")] - pub level: u32, + #[prost(uint64, tag = "2")] + pub plddjjfinal: u64, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub exp: u32, + /// offset: 80 + #[prost(enumeration = "BpTierType", tag = "10")] + pub cdlpffofbem: i32, /// offset: 56 - #[prost(uint64, tag = "8")] - pub inbockjglbo: u64, - /// offset: 48 + #[prost(uint32, tag = "12")] + pub level: u32, + /// offset: 44 #[prost(uint32, tag = "15")] - pub ljflflimkad: u32, - /// offset: 32 - #[prost(enumeration = "BpTierType", tag = "9")] - pub bp_tier_type: i32, - /// offset: 72 - #[prost(uint64, tag = "13")] - pub cbjklleohdc: u64, - /// offset: 24 - #[prost(uint64, tag = "4")] - pub hkeoaaccbpl: u64, - /// offset: 88 - #[prost(uint64, tag = "10")] - pub cphiiockhpi: u64, + pub hnplmbafafl: u32, + /// offset: 48 + #[prost(uint64, tag = "7")] + pub ghcmcpmhbio: u64, /// offset: 64 + #[prost(uint64, tag = "9")] + pub idgdihgolmh: u64, + /// offset: 88 + #[prost(uint64, tag = "13")] + pub lejcfaigdlp: u64, + /// offset: 32 + #[prost(uint64, tag = "1")] + pub hmkljhboggb: u64, + /// offset: 96 + #[prost(uint64, tag = "3")] + pub kjkkmkplfni: u64, + /// offset: 60 + #[prost(uint32, tag = "14")] + pub lhdcnhblpde: u32, + /// offset: 72 #[prost(uint64, tag = "5")] - pub fdkkikganck: u64, + pub mepalgogggc: u64, + /// offset: 24 + #[prost(uint64, tag = "6")] + pub oknllkcbbcp: u64, } -/// Obf: EBLMPDFIFGF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3065)] +#[cmdid(3017)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeBpRewardCsReq { /// offset: 32 - #[prost(uint32, tag = "14")] - pub optional_reward_id: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub level: u32, - /// offset: 28 - #[prost(enumeration = "BpRewardType", tag = "8")] + #[prost(enumeration = "BpRewardType", tag = "3")] pub r#type: i32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub level: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub optional_reward_id: u32, } -/// Obf: DCNCOIBPBJD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3083)] +#[cmdid(3051)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeBpRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, /// offset: 24 - #[prost(message, optional, tag = "2")] + #[prost(message, optional, tag = "13")] pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub retcode: u32, } -/// Obf: BPNKPCIPOOB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3086)] +#[cmdid(3011)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BuyBpLevelCsReq { /// offset: 24 - #[prost(uint32, tag = "1")] - pub ldnjeacfbje: u32, + #[prost(uint32, tag = "10")] + pub fdbojjijfgn: u32, } -/// Obf: GFEGGMHOBLN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3094)] +#[cmdid(3089)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct BuyBpLevelScRsp { /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct OptionalReward { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub optional_reward_id: u32, /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub optional_reward_id: u32, } -/// Obf: CILPIOAHNIB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3052)] +#[cmdid(3020)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeAllRewardCsReq { /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub modoofjoiao: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub efmkjajoklk: ::prost::alloc::vec::Vec, } -/// Obf: BOJPKOEHOCI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3019)] +#[cmdid(3095)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeAllRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 + /// offset: 16 #[prost(message, optional, tag = "2")] pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, } -/// Obf: PGPCBBCOBHG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4876)] +#[cmdid(4869)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBenefitActivityInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ecmkalkcjac { +pub struct Lpaecmoijhh { + /// offset: 24 + #[prost(string, tag = "3")] + pub agpfljglpnh: ::prost::alloc::string::String, /// offset: 40 #[prost(uint32, tag = "4")] pub head_icon: u32, /// offset: 16 - #[prost(string, tag = "15")] - pub cmamedolljl: ::prost::alloc::string::String, - /// offset: 32 - #[prost(string, tag = "6")] - pub mpbpongigid: ::prost::alloc::string::String, + #[prost(string, tag = "10")] + pub opbbmpplngh: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fecadlcjfic { +pub struct BenefitRewardItem { /// offset: 24 #[prost(message, optional, tag = "7")] pub item_list: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "8")] pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ojfaklfikcj { - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub nkjpgkmlhnk: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint64, tag = "13")] +pub struct BenefitItemConfig { + /// offset: 32 + #[prost(message, repeated, tag = "9")] + pub rogue_score_reward_info: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint64, tag = "4")] pub begin_time: u64, /// offset: 64 - #[prost(uint32, tag = "1")] - pub iigmeobdmje: u32, - /// offset: 48 #[prost(uint64, tag = "3")] + pub reveal_time: u64, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub lucky_koi_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint64, tag = "13")] pub end_time: u64, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub pfeaniahfpc: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint64, tag = "2")] - pub pjpmlcdhebl: u64, + /// offset: 48 + #[prost(uint32, tag = "8")] + pub reveal_num_limit: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mogacgjehae { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub config: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub status: u32, +pub struct BenefitData { /// offset: 40 - #[prost(uint32, tag = "12")] - pub colbgejelgi: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub level: u32, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub config: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub daily_index: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub status: u32, } -/// Obf: LPELGNPNFLO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4878)] +#[cmdid(4852)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBenefitActivityInfoScRsp { - /// offset: 32 - #[prost(bool, tag = "4")] - pub ofnginbodlp: bool, - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub fmkcnmcailn: ::prost::alloc::vec::Vec, /// offset: 36 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "1")] pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub benefit_data_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(bool, tag = "3")] + pub is_open: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lflogadlema { +pub struct SwitchItem { /// offset: 28 - #[prost(bool, tag = "5")] - pub einfbgkendh: bool, + #[prost(uint32, tag = "14")] + pub daily_index: u32, /// offset: 24 - #[prost(uint32, tag = "12")] - pub colbgejelgi: u32, + #[prost(bool, tag = "5")] + pub mfcjngoepdd: bool, } -/// Obf: BJJDECAGCII +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4871)] +#[cmdid(4898)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeBenefitActivityRewardCsReq { - /// offset: 32 - #[prost(bool, tag = "11")] - pub bfbpcbnpfph: bool, /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub param_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub switch_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(bool, tag = "14")] + pub pnkmphimlam: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cmgdhfiobef { - /// offset: 32 - #[prost(bool, tag = "13")] - pub einfbgkendh: bool, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub colbgejelgi: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub item_list: ::core::option::Option, -} -/// Obf: FEDPIHJNBHF -#[derive(proto_derive::CmdID)] -#[cmdid(4888)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeBenefitActivityRewardScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub param_list: ::prost::alloc::vec::Vec, +pub struct RewardSwitchItem { /// offset: 24 #[prost(message, optional, tag = "6")] - pub ckekcconjgb: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub retcode: u32, + pub item_list: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub daily_index: u32, + /// offset: 32 + #[prost(bool, tag = "4")] + pub mfcjngoepdd: bool, } -/// Obf: NBAMKPBNEMA +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(4855)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeBenefitActivityRewardScRsp { + /// offset: 32 + #[prost(message, optional, tag = "11")] + pub fmclhfhdfgo: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub switch_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4885)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct JoinBenefitActivityCsReq { /// offset: 24 - #[prost(uint32, tag = "14")] - pub colbgejelgi: u32, + #[prost(uint32, tag = "2")] + pub daily_index: u32, } -/// Obf: PMMCAMJGHKD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4877)] +#[cmdid(4883)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct JoinBenefitActivityScRsp { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub colbgejelgi: u32, /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] + pub daily_index: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ijkjjdhlklb { +pub struct Pmdceiciaje { /// offset: 28 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub avatar_id: u32, /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "7")] + #[prost(enumeration = "AvatarType", tag = "4")] pub avatar_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fcihijlomga { +pub struct Hmhecigchkg { /// offset: 68 #[prost(uint32, tag = "2")] - pub challenge_id: u32, - /// offset: 56 - #[prost(bool, tag = "10")] - pub aplknjegbkf: bool, - /// offset: 60 - #[prost(uint32, tag = "8")] - pub llfofpndafg: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "1")] - pub hlibijfhhpg: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub mdlachdkmph: ::prost::alloc::vec::Vec, + pub okkhpeggclh: u32, /// offset: 40 - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "13")] + pub jialfidedfh: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 72 - #[prost(uint32, tag = "14")] - pub hnpeappmgaa: u32, + #[prost(uint32, tag = "8")] + pub mibphnfggca: u32, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub jhmakjmgmbi: ::prost::alloc::vec::Vec, /// offset: 64 - #[prost(uint32, tag = "13")] - pub cpgoipicpjf: u32, - /// offset: 52 - #[prost(uint32, tag = "4")] - pub hjmglemjhkg: u32, + #[prost(uint32, tag = "14")] + pub challenge_id: u32, + /// offset: 60 + #[prost(bool, tag = "9")] + pub nghdplfehdc: bool, + /// offset: 56 + #[prost(uint32, tag = "3")] + pub iomhjaakjej: u32, /// offset: 48 - #[prost(uint32, tag = "9")] - pub naalcbmbpgc: u32, + #[prost(uint32, tag = "15")] + pub gdepfbkckbn: u32, + /// offset: 52 + #[prost(uint32, tag = "11")] + pub kiodeiecepb: u32, } -/// Obf: BNABKPINGGB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4299)] +#[cmdid(4247)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetBoxingClubInfoCsReq {} -/// Obf: BHDCDGAPHGH +pub struct Dpcfnekeagf {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4223)] +#[cmdid(4209)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetBoxingClubInfoScRsp { +pub struct Bpnmebkdjea { /// offset: 32 #[prost(uint32, tag = "1")] pub retcode: u32, /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub challenge_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub challenge_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gneibbpoaab { +pub struct Cmpabahikbf { /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub avatar_id: u32, /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "14")] + #[prost(enumeration = "AvatarType", tag = "5")] pub avatar_type: i32, } -/// Obf: MPBJBFHDDJG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4298)] +#[cmdid(4238)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchBoxingClubOpponentCsReq { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub challenge_id: u32, - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub mdlachdkmph: ::prost::alloc::vec::Vec, +pub struct Jfplikoofeh { /// offset: 32 - #[prost(uint32, repeated, tag = "9")] - pub avatar_list: ::prost::alloc::vec::Vec, -} -/// Obf: NGBFMHIJBIJ -#[derive(proto_derive::CmdID)] -#[cmdid(4265)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchBoxingClubOpponentScRsp { - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub dddikpnnble: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: ACIMGINPANN -#[derive(proto_derive::CmdID)] -#[cmdid(4281)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChooseBoxingClubResonanceCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub llfofpndafg: u32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub challenge_id: u32, -} -/// Obf: ADIJJGADDHF -#[derive(proto_derive::CmdID)] -#[cmdid(4269)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChooseBoxingClubResonanceScRsp { - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub dddikpnnble: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: JNJKBCNNKGB -#[derive(proto_derive::CmdID)] -#[cmdid(4257)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetBoxingClubResonanceLineupCsReq { - /// offset: 16 #[prost(message, repeated, tag = "12")] - pub mdlachdkmph: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub challenge_id: u32, -} -/// Obf: JHGHHPBOCHK -#[derive(proto_derive::CmdID)] -#[cmdid(4215)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetBoxingClubResonanceLineupScRsp { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub dddikpnnble: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: NGNGPMKLFAK -#[derive(proto_derive::CmdID)] -#[cmdid(4292)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChooseBoxingClubStageOptionalBuffCsReq { + pub jhmakjmgmbi: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(uint32, tag = "13")] - pub fmgmaiegofp: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub challenge_id: u32, -} -/// Obf: JBJPGCDOCJC -#[derive(proto_derive::CmdID)] -#[cmdid(4237)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChooseBoxingClubStageOptionalBuffScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub dddikpnnble: ::core::option::Option, -} -/// Obf: IBNNGGAGIPD -#[derive(proto_derive::CmdID)] -#[cmdid(4283)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartBoxingClubBattleCsReq { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub challenge_id: u32, -} -/// Obf: CKFFILONDHI -#[derive(proto_derive::CmdID)] -#[cmdid(4286)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartBoxingClubBattleScRsp { - /// offset: 36 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub challenge_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub battle_info: ::core::option::Option, -} -/// Obf: IGPNNOGBAFH -#[derive(proto_derive::CmdID)] -#[cmdid(4294)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GiveUpBoxingClubChallengeCsReq { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub challenge_id: u32, - /// offset: 24 - #[prost(bool, tag = "14")] - pub pcpdfjhdjcc: bool, -} -/// Obf: LAPAICIPAHE -#[derive(proto_derive::CmdID)] -#[cmdid(4252)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GiveUpBoxingClubChallengeScRsp { - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub dddikpnnble: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -/// Obf: JBENHLGKAOM -#[derive(proto_derive::CmdID)] -#[cmdid(4219)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct BoxingClubRewardScNotify { + #[prost(uint32, repeated, tag = "7")] + pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(bool, tag = "15")] - pub is_win: bool, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub challenge_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - /// offset: 36 #[prost(uint32, tag = "3")] - pub naalcbmbpgc: u32, + pub challenge_id: u32, } -/// Obf: BLPFDJGEHMF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4244)] +#[cmdid(4217)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct BoxingClubChallengeUpdateScNotify { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub dddikpnnble: ::core::option::Option, -} -/// Obf: NAGDDBAKAKA -#[derive(proto_derive::CmdID)] -#[cmdid(9128)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceGetDataCsReq {} -/// Obf: BBHCCIGAPAF -#[derive(proto_derive::CmdID)] -#[cmdid(9121)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceGetDataScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub ojiobjghnkk: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "15")] - pub score: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub kadgadlohfa: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub jgbidekmhml: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub padfjmcnkjn: u32, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub item_value: u32, - /// offset: 52 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: GNGMCKJOMED -#[derive(proto_derive::CmdID)] -#[cmdid(9135)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceLoanCsReq {} -/// Obf: IJJIJPFPNCJ -#[derive(proto_derive::CmdID)] -#[cmdid(9143)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceLoanScRsp { +pub struct Jcmiigmbked { /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub retcode: u32, /// offset: 16 #[prost(message, optional, tag = "4")] - pub item_list: ::core::option::Option, + pub fammakbffnl: ::core::option::Option, } -/// Obf: NGCKFEMDALF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9145)] +#[cmdid(4261)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceStartPveCsReq { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub hgmnjfjpmdf: u32, -} -/// Obf: BKKOAPALIHK -#[derive(proto_derive::CmdID)] -#[cmdid(9136)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceStartPveScRsp { +pub struct Glmffpngofa { /// offset: 28 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] + pub mibphnfggca: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub challenge_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4245)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ohfglcdjbaj { + /// offset: 32 + #[prost(uint32, tag = "4")] pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "7")] - pub hgmnjfjpmdf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gbchndncjeo { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub jigjfedkkfi: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub hbacllconmj: u32, + #[prost(message, optional, tag = "14")] + pub fammakbffnl: ::core::option::Option, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(4276)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Epdooimjkbe { +pub struct Ihcmmgaebjl { /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub ppgpadindeg: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1")] + pub jhmakjmgmbi: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub challenge_id: u32, } -/// Obf: ANIJOLKDLAE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(9134)] +#[cmdid(4252)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceUpdatePveCsReq { - /// offset: 36 - #[prost(uint32, tag = "14")] - pub hgmnjfjpmdf: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub imdddbkkfhk: u32, - #[prost( - oneof = "cake_race_update_pve_cs_req::Jpnibpmbcjp", - tags = "13, 10, 6, 2, 5" - )] - pub jpnibpmbcjp: ::core::option::Option, -} -/// Nested message and enum types in `CakeRaceUpdatePveCsReq`. -pub mod cake_race_update_pve_cs_req { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Jpnibpmbcjp { - /// offset: 24 - #[prost(message, tag = "13")] - Kicoifibakg(super::Gbchndncjeo), - /// offset: 24 - #[prost(uint32, tag = "10")] - Ahnmegibkgj(u32), - /// offset: 24 - #[prost(bool, tag = "6")] - Paodbcbifkg(bool), - /// offset: 24 - #[prost(message, tag = "2")] - Dflploljkao(super::Epdooimjkbe), - /// offset: 24 - #[prost(bool, tag = "5")] - Fegjkodnbdl(bool), - } -} -/// Obf: CNBHBAIAFPM -#[derive(proto_derive::CmdID)] -#[cmdid(9123)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceUpdatePveScRsp { +pub struct Ilafjjcacna { /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(message, optional, tag = "8")] + pub fammakbffnl: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: MPCAGPCHMEN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9133)] +#[cmdid(4250)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceFinishPveCsReq { +pub struct Ljokckagipn { /// offset: 24 - #[prost(uint32, tag = "9")] - pub score: u32, + #[prost(uint32, tag = "4")] + pub hgmklchplgj: u32, /// offset: 28 - #[prost(bool, tag = "6")] - pub bagmaoipmje: bool, + #[prost(uint32, tag = "5")] + pub challenge_id: u32, } -/// Obf: BJBICMKLGDL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(9137)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceFinishPveScRsp { - /// offset: 24 +#[cmdid(4281)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ndbjemiiblf { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub fammakbffnl: ::core::option::Option, + /// offset: 32 #[prost(uint32, tag = "6")] pub retcode: u32, } -/// Obf: PHNAEBAHPAF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9127)] +#[cmdid(4251)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gboggnakmfg { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub challenge_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4211)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceFinishFieldRewardScNotify { +pub struct Klnkdcogkab { /// offset: 32 - #[prost(uint32, tag = "11")] - pub hgmnjfjpmdf: u32, - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub reward: ::core::option::Option, -} -/// Obf: FBKHOEKBOLP -#[derive(proto_derive::CmdID)] -#[cmdid(9126)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceCoinScoreChangeScNotify { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub padfjmcnkjn: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub score: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub item_value: u32, -} -/// Obf: KNGACOLIBIG -#[derive(proto_derive::CmdID)] -#[cmdid(9131)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceGetHandbookCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kgjddegkbah { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub dlmhbkfndnb: u32, - /// offset: 28 #[prost(uint32, tag = "2")] - pub jdjleifoepp: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub jigjfedkkfi: u32, -} -/// Obf: PFCMENGEDDA -#[derive(proto_derive::CmdID)] -#[cmdid(9130)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceGetHandbookScRsp { + pub challenge_id: u32, /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub npacbfkeake: ::prost::alloc::vec::Vec, - /// offset: 32 + #[prost(message, optional, tag = "6")] + pub battle_info: ::core::option::Option, + /// offset: 36 #[prost(uint32, tag = "8")] pub retcode: u32, } -/// Obf: NNDEKBCLEOL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9139)] +#[cmdid(4289)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceGetFriendRankingInfoListCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ejaghnhjjml { +pub struct Majgiaamopl { + /// offset: 28 + #[prost(bool, tag = "13")] + pub lmeeapiecch: bool, /// offset: 24 - #[prost(uint32, tag = "2")] - pub padfjmcnkjn: u32, + #[prost(uint32, tag = "10")] + pub challenge_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4220)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Emchjnaojml { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub fammakbffnl: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4295)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bbphbnhnnkj { + /// offset: 40 + #[prost(bool, tag = "15")] + pub is_win: bool, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub reward: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub challenge_id: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub gdepfbkckbn: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4291)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Opgobplgboi { + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub fammakbffnl: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9143)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Amfbceopcdp {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9130)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ffmdkkcihma { + /// offset: 24 + #[prost(uint32, repeated, tag = "10")] + pub gebaideclok: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub score_id: u32, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub geibknhcgjf: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub blhbjdppjnf: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub galgjfpbkha: u32, + /// offset: 52 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9125)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bofanblckgi {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9133)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ndlobadoaao { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub item_list: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub retcode: u32, /// offset: 32 #[prost(uint32, tag = "15")] - pub uid: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub dadhpbolgnl: u32, + pub bdfimkncpcl: u32, } -/// Obf: OGLBJBKCEFC +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9127)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fcpemjijnpj { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub fedbcocnceo: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9137)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kdcglmgicmg { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub fedbcocnceo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ffajnhjmenn { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub ijedmbinian: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub mgabiofmldp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cdcbhahmgpc { + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub hjpjblegbgb: ::prost::alloc::vec::Vec, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(9138)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceGetFriendRankingInfoListScRsp { - /// offset: 40 - #[prost(uint32, tag = "15")] - pub retcode: u32, +pub struct Gkmkceamkpf { /// offset: 32 - #[prost(message, repeated, tag = "4")] - pub cnheklkbmhh: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub ofiodjnlbea: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub iokibicjkma: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub fedbcocnceo: u32, + #[prost(oneof = "gkmkceamkpf::Okfmckjkcdc", tags = "6, 14, 13, 7, 2")] + pub okfmckjkcdc: ::core::option::Option, } -/// Obf: GOOFDEALDGO +/// Nested message and enum types in `GKMKCEAMKPF`. +pub mod gkmkceamkpf { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Okfmckjkcdc { + /// offset: 24 + #[prost(message, tag = "6")] + Cjkaincdhoa(super::Ffajnhjmenn), + /// offset: 24 + #[prost(uint32, tag = "14")] + Jbgcbbldpod(u32), + /// offset: 24 + #[prost(bool, tag = "13")] + Jhilikfnemj(bool), + /// offset: 24 + #[prost(message, tag = "7")] + Bafaacbckhn(super::Cdcbhahmgpc), + /// offset: 24 + #[prost(bool, tag = "2")] + Oidpamifpgd(bool), + } +} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(9149)] +#[cmdid(9132)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceLikeFriendRankingInfoCsReq { +pub struct Nbjpofhicid { /// offset: 24 - #[prost(uint32, tag = "12")] - pub cbegnbkmhcd: u32, + #[prost(uint32, tag = "10")] + pub retcode: u32, } -/// Obf: AGHKLMIOACF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9147)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceLikeFriendRankingInfoScRsp { - /// offset: 44 - #[prost(uint32, tag = "6")] - pub cbegnbkmhcd: u32, +#[cmdid(9129)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Menbjhdinmp { + /// offset: 28 + #[prost(bool, tag = "10")] + pub oognhlpfeok: bool, /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub ofiodjnlbea: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub score_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9144)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pabipmphmhc { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(9122)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jefonnolaeb { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub reward: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "1")] - pub reward_list: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub fedbcocnceo: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(9150)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dmgiohdpgio { + /// offset: 28 + #[prost(uint32, tag = "6")] + pub geibknhcgjf: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub score_id: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub galgjfpbkha: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9126)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hgchmeogoma {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ogpgdicekcb { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub bjfoehnaehc: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub ijedmbinian: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub kjocgimicep: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9121)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fhpkllopkoc { + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub onidlkjbgpd: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9135)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hmjicdopolh {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Miiblfajjjf { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub uid: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub galgjfpbkha: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub ejfllnhiffd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9142)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Okpoacnhjek { + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub kaifocikjba: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "8")] + pub pjjcjckngnm: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "7")] pub retcode: u32, } -/// Obf: ELNKAHBHBGA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9144)] +#[cmdid(9149)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceGetDailyLikeCsReq {} -/// Obf: KMMEEMCDNJD -#[derive(proto_derive::CmdID)] -#[cmdid(9142)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceGetDailyLikeScRsp { +pub struct Agjlobmfknc { /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub ofiodjnlbea: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, + #[prost(uint32, tag = "1")] + pub nbgndibkajl: u32, } -/// Obf: IAPBHHHCENI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(9122)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CakeRaceGetMatchDataCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mikodbpikjf { +#[cmdid(9134)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Leibjekbpbj { /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub pjjcjckngnm: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub reward_list: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 40 #[prost(uint32, tag = "14")] - pub ddakopoelje: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub keklgligbed: u32, + pub nbgndibkajl: u32, } -/// Obf: EHCMHMGONJM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9132)] +#[cmdid(9124)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ehgaliklnha {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9123)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct CakeRaceGetMatchDataScRsp { +pub struct Kemcceijakd { /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub info_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub pjjcjckngnm: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub retcode: u32, } #[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bddghnjfcba {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Poalcipjmmh { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub bdichdhifla: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub ngepmlochnb: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9146)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ccienkdnoae { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub content_package_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Challenge { /// offset: 52 - #[prost(uint32, tag = "15")] - pub score_two: u32, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub score: u32, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub stars: u32, - /// offset: 56 - #[prost(bool, tag = "2")] - pub kfdaicilnmb: bool, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub stage_info: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "9")] - pub attempts: u32, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub taken_reward: u32, - /// offset: 32 #[prost(uint32, tag = "13")] + pub star: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub record_id: u32, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub taken_reward: u32, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub score_two: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] pub challenge_id: u32, + /// offset: 40 + #[prost(bool, tag = "11")] + pub jgcdebhplmi: bool, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub score_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub stage_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChallengeReward { +pub struct ChallengeGroup { /// offset: 24 - #[prost(uint64, tag = "6")] - pub taken_challenge_reward: u64, - /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] pub group_id: u32, + /// offset: 32 + #[prost(uint64, tag = "6")] + pub taken_stars_count_reward: u64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeHistoryMaxLevel { - /// offset: 28 + /// offset: 24 #[prost(uint32, tag = "8")] pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub ordering_index: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub reward_display_type: u32, } -/// Obf: BKGDNIMPOKJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1799)] +#[cmdid(1747)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChallengeCsReq {} -/// Obf: KAMDAMIGPGL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1723)] +#[cmdid(1709)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChallengeScRsp { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub max_level_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub challenge_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "3")] + pub retcode: u32, /// offset: 52 - #[prost(uint32, tag = "2")] - pub lpljmkpblif: u32, + #[prost(uint32, tag = "7")] + pub ppdlodjeclp: u32, /// offset: 32 #[prost(message, repeated, tag = "14")] - pub challenge_reward_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 40 - #[prost(message, repeated, tag = "15")] - pub challenge_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub max_level_list: ::prost::alloc::vec::Vec, + pub challenge_group_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StoryStageBuffInfo { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub buff_one: u32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub buff_two: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct BossStageBuffInfo { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub buff_two: u32, +pub struct ChallengeStoryBuffInfo { /// offset: 28 #[prost(uint32, tag = "4")] pub buff_one: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub buff_two: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ChallengeBossBuffInfo { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub buff_one: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub buff_two: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeBuffInfo { - #[prost(oneof = "challenge_buff_info::Info", tags = "12, 1")] - pub info: ::core::option::Option, + #[prost(oneof = "challenge_buff_info::Mlneddhojgc", tags = "12, 15")] + pub mlneddhojgc: ::core::option::Option, } /// Nested message and enum types in `ChallengeBuffInfo`. pub mod challenge_buff_info { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Mlneddhojgc { /// offset: 24 #[prost(message, tag = "12")] - StoryInfo(super::StoryStageBuffInfo), + StoryInfo(super::ChallengeStoryBuffInfo), /// offset: 24 - #[prost(message, tag = "1")] - BossInfo(super::BossStageBuffInfo), + #[prost(message, tag = "15")] + BossInfo(super::ChallengeBossBuffInfo), } } -/// Obf: HJMBNPPOMNE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1798)] +#[cmdid(1738)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartChallengeCsReq { /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub first_lineup_ids: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub second_lineup_ids: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "12")] pub stage_info: ::core::option::Option, /// offset: 48 #[prost(uint32, tag = "3")] pub challenge_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub second_lineup: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "14")] + pub first_lineup: ::prost::alloc::vec::Vec, } -/// Obf: NLLMMAHMCEA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1765)] +#[cmdid(1717)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartChallengeScRsp { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub cur_challenge_instance: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "15")] + /// offset: 40 + #[prost(message, optional, tag = "14")] pub scene: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "6")] - pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub stage_info: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "13")] - pub stage_info: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "7")] + #[prost(message, repeated, tag = "3")] pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub cur_challenge: ::core::option::Option, } -/// Obf: FICKCKBMKOB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1780)] +#[cmdid(1710)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartPartialChallengeCsReq { - /// offset: 28 - #[prost(bool, tag = "12")] - pub is_first_half: bool, /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] + pub challenge_id: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] pub buff_id: u32, /// offset: 32 - #[prost(uint32, tag = "8")] - pub challenge_id: u32, + #[prost(bool, tag = "14")] + pub is_first_half: bool, } -/// Obf: MMPPOEFOALC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1777)] +#[cmdid(1767)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartPartialChallengeScRsp { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub cur_challenge_instance: ::core::option::Option, /// offset: 16 - #[prost(message, optional, tag = "5")] - pub lineup: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 40 - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "13")] pub scene: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub cur_challenge: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub lineup: ::core::option::Option, } -/// Obf: EFDLMFKDMKF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1783)] +#[cmdid(1751)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveChallengeCsReq {} -/// Obf: CFJBOKIKIEN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1786)] +#[cmdid(1711)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveChallengeScRsp { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub retcode: u32, } -/// Obf: IMMJAEDHHIA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1794)] +#[cmdid(1789)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeSettleNotify { - /// offset: 76 - #[prost(bool, tag = "8")] - pub is_win: bool, /// offset: 60 - #[prost(uint32, tag = "2")] - pub challenge_score: u32, - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub max_level: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "9")] - pub reward: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "12")] - pub stars: u32, - /// offset: 48 - #[prost(message, optional, tag = "13")] - pub cur_challenge_instance: ::core::option::Option, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub hahaeifmlbm: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "14")] - pub lpljmkpblif: u32, - /// offset: 68 #[prost(uint32, tag = "4")] - pub challenge_id: u32, + pub ppdlodjeclp: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub fpapligcbca: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, optional, tag = "9")] + pub cur_challenge: ::core::option::Option, + /// offset: 68 + #[prost(uint32, tag = "6")] + pub score_two: u32, + /// offset: 76 + #[prost(bool, tag = "1")] + pub is_win: bool, /// offset: 56 #[prost(uint32, tag = "11")] - pub score_two: u32, + pub challenge_id: u32, + /// offset: 72 + #[prost(uint32, tag = "7")] + pub challenge_score: u32, + /// offset: 64 + #[prost(uint32, tag = "13")] + pub star: u32, + /// offset: 40 + #[prost(message, optional, tag = "5")] + pub max_level: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "10")] + pub reward: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct KillMonsterInfo { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub kill_num: u32, +pub struct KillMonster { /// offset: 28 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] + pub kill_num: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] pub monster_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeStoryStageBuff { - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] +pub struct ChallengeStoryBuffList { + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossStageBuff { +pub struct ChallengeBossBuffList { /// offset: 24 - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "4")] pub buff_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "13")] - pub kbhnhbbahhf: u32, + #[prost(uint32, tag = "2")] + pub challenge_boss_const: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeStageBuffInfo { - #[prost(oneof = "challenge_stage_buff_info::Info", tags = "3, 11")] - pub info: ::core::option::Option, +pub struct ChallengeCurBuffInfo { + #[prost(oneof = "challenge_cur_buff_info::Mlneddhojgc", tags = "2, 10")] + pub mlneddhojgc: ::core::option::Option, } -/// Nested message and enum types in `ChallengeStageBuffInfo`. -pub mod challenge_stage_buff_info { +/// Nested message and enum types in `ChallengeCurBuffInfo`. +pub mod challenge_cur_buff_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Mlneddhojgc { /// offset: 24 - #[prost(message, tag = "3")] - StoryBuff(super::ChallengeStoryStageBuff), + #[prost(message, tag = "2")] + CurStoryBuffs(super::ChallengeStoryBuffList), /// offset: 24 - #[prost(message, tag = "11")] - BossBuff(super::ChallengeBossStageBuff), + #[prost(message, tag = "10")] + CurBossBuffs(super::ChallengeBossBuffList), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct CurChallengeInstance { +pub struct CurChallenge { + /// offset: 44 + #[prost(uint32, tag = "5")] + pub challenge_id: u32, /// offset: 40 #[prost(enumeration = "ExtraLineupType", tag = "9")] pub extra_lineup_type: i32, + /// offset: 64 + #[prost(enumeration = "ChallengeStatus", tag = "2")] + pub status: i32, /// offset: 56 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "4")] + pub score_id: u32, + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub kill_monster_list: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "7")] + pub round_count: u32, + /// offset: 48 + #[prost(uint32, tag = "3")] pub score_two: u32, /// offset: 52 - #[prost(uint32, tag = "10")] - pub denbnlilgij: u32, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub round_count: u32, - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub stage_info: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub dead_avatar_num: u32, /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub archive_monster_id_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "5")] - pub challenge_id: u32, - /// offset: 60 - #[prost(enumeration = "ChallengeStatus", tag = "11")] - pub status: i32, - /// offset: 64 - #[prost(uint32, tag = "6")] - pub score: u32, + #[prost(message, optional, tag = "14")] + pub stage_info: ::core::option::Option, } -/// Obf: GLABHAOJNNK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1744)] +#[cmdid(1791)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCurChallengeCsReq {} -/// Obf: PDAIAOMIFCG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1781)] +#[cmdid(1761)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetCurChallengeScRsp { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub cur_challenge_instance: ::core::option::Option, - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub lineup_list: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub cur_challenge: ::core::option::Option, } -/// Obf: PDJJKPKEHIG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1769)] +#[cmdid(1745)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeLineupNotify { /// offset: 24 - #[prost(enumeration = "ExtraLineupType", tag = "14")] + #[prost(enumeration = "ExtraLineupType", tag = "12")] pub extra_lineup_type: i32, } -/// Obf: EAKKAPGCAEJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1792)] +#[cmdid(1750)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeChallengeRewardCsReq { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub group_id: u32, } -/// Obf: OINBAGIIMKJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1737)] +#[cmdid(1781)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeChallengeRewardScRsp { /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 36 #[prost(uint32, tag = "6")] pub group_id: u32, /// offset: 16 - #[prost(message, repeated, tag = "5")] + #[prost(message, repeated, tag = "7")] pub taken_reward_list: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakenChallengeRewardInfo { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub reward: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub star_count: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeMemoryStats { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub attempts: u32, +pub struct ChallengeStatistics { /// offset: 24 #[prost(message, optional, tag = "6")] - pub clear_info: ::core::option::Option, + pub stage_tertinggi: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub record_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeStoryStats { +pub struct ChallengeStoryStatistics { /// offset: 32 - #[prost(uint32, tag = "12")] - pub attempts: u32, + #[prost(uint32, tag = "10")] + pub record_id: u32, /// offset: 24 #[prost(message, optional, tag = "7")] - pub clear_info: ::core::option::Option, + pub stage_tertinggi: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossStats { - /// offset: 24 +pub struct ChallengeBossStatistics { + /// offset: 16 #[prost(message, optional, tag = "10")] - pub clear_info: ::core::option::Option, + pub stage_tertinggi: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "14")] - pub attempts: u32, + #[prost(uint32, tag = "9")] + pub record_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeMemoryClearInfo { - /// offset: 36 - #[prost(uint32, tag = "7")] - pub round_count: u32, +pub struct ChallengeStageTertinggi { /// offset: 40 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub level: u32, - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub lineup_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "5")] - pub max_star: u32, + #[prost(uint32, tag = "6")] + pub round_count: u32, + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub pclmhkdneef: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeStoryClearInfo { +pub struct ChallengeStoryStageTertinggi { /// offset: 36 - #[prost(uint32, tag = "11")] - pub max_star: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub score: u32, - /// offset: 48 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "1")] pub buff_two: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] + /// offset: 48 + #[prost(uint32, tag = "9")] pub buff_one: u32, - /// offset: 40 + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(uint32, tag = "4")] pub level: u32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub lineup_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossClearInfo { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub buff_one: u32, - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub lineup_list: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub buff_two: u32, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub score_id: u32, /// offset: 40 #[prost(uint32, tag = "3")] - pub level: u32, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub max_star: u32, - /// offset: 48 - #[prost(uint32, tag = "8")] - pub score: u32, + pub pclmhkdneef: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeLineup { +pub struct ChallengeBossStageTertinggi { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub buff_two: u32, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub buff_one: u32, /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub pclmhkdneef: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub score_id: u32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengeLineupList { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub avatar_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChallengeLineupMember { - /// offset: 36 - #[prost(uint32, tag = "11")] - pub ggdiibcdobb: u32, +pub struct ChallengeAvatarInfo { /// offset: 32 - #[prost(uint32, tag = "8")] - pub level: u32, - /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "13")] + #[prost(uint32, tag = "4")] + pub blehkkonehp: u32, + /// offset: 40 + #[prost(enumeration = "AvatarType", tag = "1")] pub avatar_type: i32, /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub id: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] + /// offset: 36 + #[prost(uint32, tag = "15")] pub index: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub level: u32, } -/// Obf: NCPOHOIHIDC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1768)] +#[cmdid(1793)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChallengeGroupStatisticsCsReq { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "13")] pub group_id: u32, } -/// Obf: PADOFDJLIFE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1749)] +#[cmdid(1737)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChallengeGroupStatisticsScRsp { - /// offset: 36 - #[prost(uint32, tag = "3")] + /// offset: 40 + #[prost(uint32, tag = "14")] pub group_id: u32, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub retcode: u32, #[prost( - oneof = "get_challenge_group_statistics_sc_rsp::ChallengeType", - tags = "7, 4, 2" + oneof = "get_challenge_group_statistics_sc_rsp::Oojbogcmbjd", + tags = "10, 3, 4" )] - pub challenge_type: ::core::option::Option< - get_challenge_group_statistics_sc_rsp::ChallengeType, + pub oojbogcmbjd: ::core::option::Option< + get_challenge_group_statistics_sc_rsp::Oojbogcmbjd, >, } /// Nested message and enum types in `GetChallengeGroupStatisticsScRsp`. pub mod get_challenge_group_statistics_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum ChallengeType { + pub enum Oojbogcmbjd { /// offset: 16 - #[prost(message, tag = "7")] - MemoryStats(super::ChallengeMemoryStats), + #[prost(message, tag = "10")] + ChallengeDefault(super::ChallengeStatistics), + /// offset: 16 + #[prost(message, tag = "3")] + ChallengeStory(super::ChallengeStoryStatistics), /// offset: 16 #[prost(message, tag = "4")] - StoryStats(super::ChallengeStoryStats), - /// offset: 16 - #[prost(message, tag = "2")] - BossStats(super::ChallengeBossStats), + ChallengeBoss(super::ChallengeBossStatistics), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeBossSingleNodeInfo { /// offset: 28 - #[prost(uint32, tag = "1")] - pub stage_score: u32, - /// offset: 25 - #[prost(bool, tag = "5")] - pub meelgndnomn: bool, + #[prost(bool, tag = "2")] + pub iieocaojdaj: bool, /// offset: 24 - #[prost(bool, tag = "15")] - pub is_win: bool, - /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub buff_id: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub max_score: u32, + /// offset: 29 + #[prost(bool, tag = "10")] + pub is_win: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChallengeBossAvatarEquipment { - /// offset: 36 - #[prost(uint32, tag = "5")] - pub tid: u32, +pub struct ChallengeBossEquipmentInfo { /// offset: 32 - #[prost(uint32, tag = "6")] - pub rank: u32, - /// offset: 28 - #[prost(uint32, tag = "9")] - pub level: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub unique_id: u32, - /// offset: 24 #[prost(uint32, tag = "15")] - pub promotion: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossRelic { - /// offset: 44 - #[prost(uint32, tag = "14")] - pub unique_id: u32, + pub rank: u32, /// offset: 40 - #[prost(uint32, tag = "13")] - pub tid: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub main_affix_id: u32, - /// offset: 36 #[prost(uint32, tag = "8")] - pub level: u32, - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub sub_affix_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossAvatarRelic { - /// offset: 16 - #[prost(map = "uint32, message", tag = "12")] - pub equipped_relic_map: ::std::collections::HashMap, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeBossStageInfo { - /// offset: 72 - #[prost(bool, tag = "10")] - pub ncbdnpgpeai: bool, - /// offset: 48 - #[prost(message, optional, tag = "8")] - pub second_node: ::core::option::Option, + pub unique_id: u32, /// offset: 24 - #[prost(map = "uint32, message", tag = "4")] - pub avatar_relic_map: ::std::collections::HashMap, + #[prost(uint32, tag = "4")] + pub promotion: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub level: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub tid: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengeBossRelicInfo { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub tid: u32, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub sub_affix_list: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub main_affix_id: u32, /// offset: 40 - #[prost(map = "uint32, message", tag = "3")] - pub avatar_equipment_map: ::std::collections::HashMap< + #[prost(uint32, tag = "5")] + pub unique_id: u32, + /// offset: 44 + #[prost(uint32, tag = "13")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengeBossAvatarRelicInfo { + /// offset: 24 + #[prost(map = "uint32, message", tag = "15")] + pub avatar_relic_slot_map: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengeBossInfo { + /// offset: 64 + #[prost(message, optional, tag = "5")] + pub second_node: ::core::option::Option, + /// offset: 48 + #[prost(map = "uint32, message", tag = "9")] + pub challenge_avatar_equipment_map: ::std::collections::HashMap< u32, - ChallengeBossAvatarEquipment, + ChallengeBossEquipmentInfo, + >, + /// offset: 72 + #[prost(bool, tag = "15")] + pub unk1: bool, + /// offset: 40 + #[prost(map = "uint32, message", tag = "7")] + pub challenge_avatar_relic_map: ::std::collections::HashMap< + u32, + ChallengeBossAvatarRelicInfo, >, /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub first_lineup: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub second_lineup: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(message, optional, tag = "1")] pub first_node: ::core::option::Option, - /// offset: 32 - #[prost(uint32, repeated, tag = "7")] - pub second_lineup_ids: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, repeated, tag = "6")] - pub first_lineup_ids: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengeExtStageInfo { - #[prost(oneof = "challenge_ext_stage_info::Info", tags = "8")] - pub info: ::core::option::Option, +pub struct ChallengeStageInfo { + #[prost(oneof = "challenge_stage_info::Mlneddhojgc", tags = "15")] + pub mlneddhojgc: ::core::option::Option, } -/// Nested message and enum types in `ChallengeExtStageInfo`. -pub mod challenge_ext_stage_info { +/// Nested message and enum types in `ChallengeStageInfo`. +pub mod challenge_stage_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Mlneddhojgc { /// offset: 16 - #[prost(message, tag = "8")] - BossInfo(super::ChallengeBossStageInfo), + #[prost(message, tag = "15")] + BossInfo(super::ChallengeBossInfo), } } -/// Obf: HJFFBHBBADC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1751)] +#[cmdid(1735)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RestartChallengePhaseCsReq {} -/// Obf: CHAJPMIBFLH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1729)] +#[cmdid(1798)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RestartChallengePhaseScRsp { /// offset: 32 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "13")] pub scene: ::core::option::Option, } -/// Obf: BPLCLIOADHE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1738)] +#[cmdid(1746)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterChallengeNextPhaseCsReq {} -/// Obf: JKPDIFEIBBF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1703)] +#[cmdid(1792)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterChallengeNextPhaseScRsp { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub scene: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub scene: ::core::option::Option, } -/// Obf: BAGDAHEKNJA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1709)] +#[cmdid(1714)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChallengeBossPhaseSettleNotify { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub challenge_score: u32, - /// offset: 44 - #[prost(uint32, tag = "12")] - pub stars: u32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub phase: u32, - /// offset: 48 - #[prost(bool, tag = "1")] - pub is_end: bool, /// offset: 50 - #[prost(bool, tag = "9")] - pub is_win: bool, - /// offset: 56 - #[prost(uint32, tag = "15")] - pub fcmagjblgoj: u32, + #[prost(bool, tag = "1")] + pub is_second_half: bool, + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub battle_target_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub challenge_score: u32, /// offset: 52 #[prost(uint32, tag = "6")] - pub challenge_id: u32, - /// offset: 49 - #[prost(bool, tag = "8")] - pub show_reward: bool, + pub star: u32, /// offset: 36 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] + pub phase: u32, + /// offset: 56 + #[prost(uint32, tag = "15")] pub score_two: u32, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub challenge_battle_target_list: ::prost::alloc::vec::Vec, + /// offset: 49 + #[prost(bool, tag = "3")] + pub is_reward: bool, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub challenge_id: u32, + /// offset: 44 + #[prost(uint32, tag = "4")] + pub page_type: u32, + /// offset: 48 + #[prost(bool, tag = "10")] + pub is_win: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bbalihokmmp { - /// offset: 16 - #[prost(message, repeated, tag = "8")] +pub struct ChallengePeakBuild { + /// offset: 24 + #[prost(message, repeated, tag = "12")] pub relic_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "2")] - pub ggdiibcdobb: u32, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub avatar_id: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "5")] pub equipment_unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pabemlpnghb { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub kgaeplcaefa: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub cpjdjhihnjb: u32, - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub lgomfkkogcf: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(bool, tag = "5")] - pub biinncndpcg: bool, - /// offset: 32 - #[prost(uint32, repeated, tag = "10")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "15")] - pub ofgpfijlhnc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mocoibeceni { - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub nbamnjcgoik: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "3")] - pub famkhoikgfj: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub nealhnndbll: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "7")] - pub kgaeplcaefa: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(bool, tag = "15")] - pub biinncndpcg: bool, - /// offset: 56 + /// offset: 36 #[prost(uint32, tag = "4")] - pub buff_id: u32, - /// offset: 64 + pub blehkkonehp: u32, + /// offset: 40 #[prost(uint32, tag = "13")] - pub jbolaafdkan: u32, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub kjblmapkmbk: u32, + pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Flmlkhddebl { +pub struct ChallengePeak { + /// offset: 40 + #[prost(uint32, repeated, tag = "10")] + pub finished_target_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub peak_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(bool, tag = "4")] + pub has_passed: bool, /// offset: 52 - #[prost(uint32, tag = "9")] - pub dbpglfinfbf: u32, + #[prost(uint32, tag = "14")] + pub cycles_used: u32, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub peak_id: u32, + /// offset: 32 + #[prost(message, repeated, tag = "1")] + pub peak_build_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengePeakBossClearance { + /// offset: 56 + #[prost(uint32, tag = "7")] + pub pjgldlmgbfj: u32, + /// offset: 64 + #[prost(uint32, tag = "4")] + pub best_cycle_count: u32, + /// offset: 60 + #[prost(bool, tag = "14")] + pub has_passed: bool, + /// offset: 40 + #[prost(uint32, repeated, tag = "12")] + pub idhokmbmknj: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "1")] + pub lakianocini: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "13")] + pub bggbjacgaic: u32, + /// offset: 52 + #[prost(uint32, tag = "6")] + pub buff_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub peak_avatar_id_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengePeakBoss { + /// offset: 48 + #[prost(bool, tag = "7")] + pub hard_mode_has_passed: bool, /// offset: 16 #[prost(message, optional, tag = "10")] - pub icpdaijjflb: ::core::option::Option, - /// offset: 48 - #[prost(bool, tag = "13")] - pub plfkncnaphm: bool, - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, + pub hard_mode: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "13")] + pub cjlemlmdodl: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "5")] + pub finished_target_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(message, optional, tag = "2")] - pub alkneffmcld: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub easy_mode: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dgffnopflne { +pub struct WaitConfirmData { /// offset: 32 - #[prost(uint32, tag = "1")] - pub ofgpfijlhnc: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub cpjdjhihnjb: u32, + #[prost(uint32, tag = "2")] + pub cycles_used: u32, /// offset: 36 - #[prost(bool, tag = "13")] - pub jbicibkpjki: bool, + #[prost(uint32, tag = "10")] + pub peak_id: u32, + /// offset: 40 + #[prost(bool, tag = "15")] + pub is_wait_confirm: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "13")] + pub finished_target_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jnllonbknei { +pub struct Bodccjimbak { /// offset: 28 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "13")] pub avatar_id: u32, /// offset: 24 - #[prost(uint32, tag = "1")] - pub ggdiibcdobb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ciilcbckmpd { - /// offset: 52 - #[prost(uint32, tag = "11")] - pub cpjdjhihnjb: u32, - /// offset: 48 - #[prost(uint32, tag = "6")] - pub ofgpfijlhnc: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub kgaeplcaefa: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "9")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oegmepohpma { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub nhfmpgiipid: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kcbdoafmojh { - /// offset: 56 - #[prost(message, optional, tag = "13")] - pub efipigenfni: ::core::option::Option, - /// offset: 40 - #[prost(message, repeated, tag = "15")] - pub nhfmpgiipid: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub kdaodllehei: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "7")] - pub capmhjgcglf: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "9")] - pub oeleefgaonp: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "5")] - pub lmjfjcgnehi: u32, - /// offset: 76 - #[prost(uint32, tag = "10")] - pub bklhgnobplk: u32, - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub apgefofmkbg: ::core::option::Option, - /// offset: 68 - #[prost(bool, tag = "2")] - pub dgkncbominf: bool, -} -/// Obf: GCBMDJNLCGD -#[derive(proto_derive::CmdID)] -#[cmdid(8926)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetChallengePeakDataCsReq {} -/// Obf: DABKJKEPFGA -#[derive(proto_derive::CmdID)] -#[cmdid(8928)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetChallengePeakDataScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub mdjiponllhf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub fhodlmicbgp: u32, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: IKODNCIFGFB -#[derive(proto_derive::CmdID)] -#[cmdid(8921)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartChallengePeakCsReq { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub mgfapdjhiie: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub kgaeplcaefa: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub ofgpfijlhnc: u32, -} -/// Obf: CMHMBGGKHLI -#[derive(proto_derive::CmdID)] -#[cmdid(8938)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartChallengePeakScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: EIGBFKLKENK -#[derive(proto_derive::CmdID)] -#[cmdid(8905)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveChallengePeakCsReq {} -/// Obf: HJPGHCABPIB -#[derive(proto_derive::CmdID)] -#[cmdid(8927)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveChallengePeakScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: GIPBMCGBBHF -#[derive(proto_derive::CmdID)] -#[cmdid(8920)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengePeakSettleScNotify { - /// offset: 54 - #[prost(bool, tag = "13")] - pub jbicibkpjki: bool, - /// offset: 57 - #[prost(bool, tag = "6")] - pub abpdakncnfm: bool, - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub jelpifamdaj: ::prost::alloc::vec::Vec, - /// offset: 55 - #[prost(bool, tag = "15")] - pub hnafianijah: bool, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub hoehiobiiej: u32, - /// offset: 52 - #[prost(bool, tag = "1")] - pub is_win: bool, - /// offset: 53 - #[prost(bool, tag = "4")] - pub bkfloogpepg: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(bool, tag = "3")] - pub plfkncnaphm: bool, - /// offset: 44 - #[prost(uint32, tag = "12")] - pub ofgpfijlhnc: u32, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub cpjdjhihnjb: u32, -} -/// Obf: GDMDKLHGAMH -#[derive(proto_derive::CmdID)] -#[cmdid(8944)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChallengePeakGroupDataUpdateScNotify { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub hcckagmnloc: ::core::option::Option, -} -/// Obf: GALPPDPCDPA -#[derive(proto_derive::CmdID)] -#[cmdid(8901)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeChallengePeakRewardCsReq { - /// offset: 40 - #[prost(uint32, tag = "10")] - pub lmjfjcgnehi: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub fknnnplpngj: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "8")] - pub lpjhfgjhomf: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jcdlcpnogep { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub lpjhfgjhomf: u32, -} -/// Obf: EFEJOAMOCLJ -#[derive(proto_derive::CmdID)] -#[cmdid(8945)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeChallengePeakRewardScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub jelpifamdaj: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub lmjfjcgnehi: u32, -} -/// Obf: BKJGCKCDNNB -#[derive(proto_derive::CmdID)] -#[cmdid(8943)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetCurChallengePeakCsReq {} -/// Obf: IPNPCFNOLMO -#[derive(proto_derive::CmdID)] -#[cmdid(8903)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetCurChallengePeakScRsp { - /// offset: 48 - #[prost(uint32, tag = "1")] - pub mgfapdjhiie: u32, - /// offset: 32 - #[prost(bool, tag = "12")] - pub biinncndpcg: bool, - /// offset: 33 - #[prost(bool, tag = "4")] - pub jbicibkpjki: bool, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 36 #[prost(uint32, tag = "9")] - pub cpjdjhihnjb: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub ofgpfijlhnc: u32, + pub blehkkonehp: u32, } -/// Obf: PBOFNCOBLID #[derive(proto_derive::CmdID)] -#[cmdid(8923)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetChallengePeakBossHardModeCsReq { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Flcjhlahgie { + /// offset: 40 + #[prost(uint32, repeated, tag = "10")] + pub finished_target_list: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "8")] + pub cycles_used: u32, /// offset: 24 - #[prost(uint32, tag = "3")] - pub lmjfjcgnehi: u32, - /// offset: 28 - #[prost(bool, tag = "5")] - pub fkphnanlemj: bool, + #[prost(message, repeated, tag = "11")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "9")] + pub peak_id: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "3")] + pub peak_avatar_id_list: ::prost::alloc::vec::Vec, } -/// Obf: NIBCEIJIGDD +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Obojokjkllh { + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub peaks: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengePeakGroup { + /// offset: 56 + #[prost(message, optional, tag = "9")] + pub pnchigmcffp: ::core::option::Option, + /// offset: 76 + #[prost(uint32, tag = "13")] + pub obtained_stars: u32, + /// offset: 48 + #[prost(message, optional, tag = "10")] + pub wait_confirm_data: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub peaks: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "8")] + pub peak_group_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub peak_boss: ::core::option::Option, + /// offset: 32 + #[prost(uint32, repeated, tag = "5")] + pub taken_star_rewards: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "6")] + pub count_of_peaks: u32, + /// offset: 64 + #[prost(bool, tag = "14")] + pub disable_hard_mode: bool, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8919)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetChallengePeakBossHardModeScRsp { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub lmjfjcgnehi: u32, - /// offset: 28 - #[prost(bool, tag = "12")] - pub fkphnanlemj: bool, -} -/// Obf: OCGDHEAKLKD -#[derive(proto_derive::CmdID)] -#[cmdid(8947)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ReStartChallengePeakCsReq {} -/// Obf: OEHPKDFCHEC -#[derive(proto_derive::CmdID)] -#[cmdid(8933)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ReStartChallengePeakScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} +pub struct GetChallengePeakDataCsReq {} +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(8902)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Begpfghcdka { - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub kgaeplcaefa: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub ofgpfijlhnc: u32, -} -/// Obf: ACOBKDILCIK -#[derive(proto_derive::CmdID)] -#[cmdid(8929)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetChallengePeakMobLineupAvatarCsReq { - /// offset: 32 - #[prost(message, repeated, tag = "12")] - pub lineup_list: ::prost::alloc::vec::Vec, +pub struct GetChallengePeakDataScRsp { + /// offset: 36 + #[prost(uint32, tag = "13")] + pub current_peak_group_id: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub chhccglgfff: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub lmjfjcgnehi: u32, + #[prost(message, repeated, tag = "1")] + pub challenge_peak_groups: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub retcode: u32, } -/// Obf: MIBPKDAMIGL +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8948)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct StartChallengePeakCsReq { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub boss_buff_id: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub peak_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub peak_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8905)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct StartChallengePeakScRsp { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8935)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetChallengePeakMobLineupAvatarScRsp { +pub struct LeaveChallengePeakCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8933)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct LeaveChallengePeakScRsp { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "1")] pub retcode: u32, } -/// Obf: EBLCCMKBLHP +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(8931)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengePeakSettleScNotify { + /// offset: 50 + #[prost(bool, tag = "9")] + pub is_unlock_easy_boss: bool, + /// offset: 53 + #[prost(bool, tag = "14")] + pub is_first_pass: bool, + /// offset: 51 + #[prost(bool, tag = "2")] + pub is_wait_confirm: bool, + /// offset: 56 + #[prost(uint32, tag = "13")] + pub cycles_used: u32, + /// offset: 48 + #[prost(bool, tag = "4")] + pub is_win: bool, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub peak_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub peak_reward_group_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub finished_target_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub turn_left: u32, + /// offset: 49 + #[prost(bool, tag = "1")] + pub hard_mode_has_passed: bool, + /// offset: 52 + #[prost(bool, tag = "7")] + pub gdbabjiolid: bool, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8925)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengePeakGroupDataUpdateScNotify { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub challenge_peak_group: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8946)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeChallengePeakRewardCsReq { + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub normal_reward_id_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub reward_id: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub peak_group_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengePeakRewardGroup { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub reward_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub reward: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8917)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeChallengePeakRewardScRsp { + /// offset: 36 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub peak_reward_group_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub peak_group_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8912)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetCurChallengePeakCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8909)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetCurChallengePeakScRsp { + /// offset: 45 + #[prost(bool, tag = "4")] + pub is_wait_confirm: bool, + /// offset: 44 + #[prost(bool, tag = "15")] + pub has_passed: bool, + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub finished_target_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub cycles_used: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub boss_buff_id: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub peak_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8913)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetChallengePeakBossHardModeCsReq { + /// offset: 24 + #[prost(bool, tag = "15")] + pub is_hard_mode: bool, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub peak_group_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8943)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetChallengePeakBossHardModeScRsp { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub peak_group_id: u32, + /// offset: 32 + #[prost(bool, tag = "14")] + pub is_hard_mode: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8934)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ReStartChallengePeakCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8920)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ReStartChallengePeakScRsp { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengePeakLineup { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub peak_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub peak_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8910)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetChallengePeakMobLineupAvatarCsReq { + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub jjcgaincidl: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub peak_group_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8950)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetChallengePeakMobLineupAvatarScRsp { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8923)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ConfirmChallengePeakSettleCsReq { - /// offset: 28 - #[prost(bool, tag = "11")] - pub ndeffpjmffb: bool, /// offset: 24 - #[prost(uint32, tag = "6")] - pub ofgpfijlhnc: u32, + #[prost(bool, tag = "13")] + pub ojgbbnmjhom: bool, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub peak_id: u32, } -/// Obf: ENPOBAHGKKI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8908)] +#[cmdid(8916)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ConfirmChallengePeakSettleScRsp { /// offset: 24 - #[prost(bool, tag = "6")] - pub ndeffpjmffb: bool, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, + #[prost(uint32, tag = "13")] + pub peak_id: u32, /// offset: 28 - #[prost(uint32, tag = "2")] - pub ofgpfijlhnc: u32, + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 32 + #[prost(bool, tag = "7")] + pub ojgbbnmjhom: bool, } -/// Obf: GLHAAABCBBI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3999)] +#[cmdid(3947)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SendMsgCsReq { - /// offset: 16 - #[prost(string, tag = "9")] - pub text: ::prost::alloc::string::String, - /// offset: 48 - #[prost(enumeration = "MsgType", tag = "7")] - pub msg_type: i32, - /// offset: 56 - #[prost(enumeration = "ChatType", tag = "4")] - pub chat_type: i32, /// offset: 40 - #[prost(uint32, repeated, tag = "11")] - pub to_uid_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub hnbepabnbng: ::core::option::Option, + #[prost(string, tag = "7")] + pub message_text: ::prost::alloc::string::String, + /// offset: 48 + #[prost(enumeration = "MsgType", tag = "11")] + pub message_type: i32, /// offset: 52 - #[prost(uint32, tag = "5")] - pub emote: u32, + #[prost(enumeration = "ChatType", tag = "1")] + pub chat_type: i32, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub dijgjpgfflg: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub target_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "10")] + pub extra_id: u32, } -/// Obf: BDMDFGCCAFJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3923)] +#[cmdid(3909)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SendMsgScRsp { - /// offset: 24 - #[prost(uint64, tag = "4")] - pub end_time: u64, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint64, tag = "10")] + pub end_time: u64, + /// offset: 24 + #[prost(uint32, tag = "7")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Chat { - /// offset: 40 - #[prost(enumeration = "MsgType", tag = "15")] - pub msg_type: i32, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub emote: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub hnbepabnbng: ::core::option::Option, - /// offset: 32 - #[prost(string, tag = "6")] - pub text: ::prost::alloc::string::String, - /// offset: 48 - #[prost(uint64, tag = "14")] - pub sent_time: u64, +pub struct ChatMessageData { /// offset: 56 - #[prost(uint32, tag = "9")] - pub sender_uid: u32, + #[prost(enumeration = "MsgType", tag = "12")] + pub message_type: i32, + /// offset: 40 + #[prost(uint64, tag = "7")] + pub create_time: u64, + /// offset: 48 + #[prost(uint32, tag = "8")] + pub extra_id: u32, + /// offset: 52 + #[prost(uint32, tag = "13")] + pub sender_id: u32, + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub dijgjpgfflg: ::core::option::Option, + /// offset: 16 + #[prost(string, tag = "9")] + pub content: ::prost::alloc::string::String, } -/// Obf: OBDANOMEOCB +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(3998)] +#[cmdid(3938)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RevcMsgScNotify { + /// offset: 48 + #[prost(uint32, tag = "8")] + pub source_uid: u32, + /// offset: 44 + #[prost(uint32, tag = "4")] + pub extra_id: u32, + /// offset: 52 + #[prost(enumeration = "MsgType", tag = "2")] + pub message_type: i32, + /// offset: 24 + #[prost(string, tag = "6")] + pub message_text: ::prost::alloc::string::String, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub dijgjpgfflg: ::core::option::Option, + /// offset: 56 + #[prost(enumeration = "ChatType", tag = "10")] + pub chat_type: i32, /// offset: 40 #[prost(uint32, tag = "9")] - pub to_uid: u32, - /// offset: 16 - #[prost(string, tag = "1")] - pub text: ::prost::alloc::string::String, - /// offset: 44 - #[prost(enumeration = "ChatType", tag = "4")] - pub chat_type: i32, - /// offset: 56 - #[prost(uint32, tag = "13")] - pub emote: u32, - /// offset: 52 - #[prost(enumeration = "MsgType", tag = "15")] - pub msg_type: i32, - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub hnbepabnbng: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "12")] - pub from_uid: u32, + pub target_uid: u32, } -/// Obf: MCFHPBPGJHA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(3965)] +#[cmdid(3917)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PrivateMsgOfflineUsersScNotify { /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub aibfdnekjmg: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "8")] + pub contact_id_list: ::prost::alloc::vec::Vec, } -/// Obf: FBNPMGMMBCB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3983)] +#[cmdid(3951)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPrivateChatHistoryCsReq { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub target_side: u32, /// offset: 24 #[prost(uint32, tag = "9")] - pub from_uid: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub to_uid: u32, + pub contact_side: u32, } -/// Obf: PBIHKCAJOJM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3986)] +#[cmdid(3911)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPrivateChatHistoryScRsp { /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "9")] + pub contact_side: u32, + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub chat_message_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] pub retcode: u32, /// offset: 36 #[prost(uint32, tag = "6")] - pub to_uid: u32, - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub chat_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub from_uid: u32, + pub target_side: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Onbgidncbob { +pub struct FriendHistoryInfo { /// offset: 32 - #[prost(int64, tag = "12")] - pub fflipihfaef: i64, + #[prost(uint32, tag = "14")] + pub contact_side: u32, /// offset: 24 - #[prost(uint32, tag = "11")] - pub to_uid: u32, + #[prost(int64, tag = "7")] + pub last_send_time: i64, } -/// Obf: CCNBMJDHJKH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3994)] +#[cmdid(3989)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChatFriendHistoryCsReq {} -/// Obf: OEPOODKIDLF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3952)] +#[cmdid(3920)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChatFriendHistoryScRsp { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub friend_history_info: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub iligpoleepj: ::prost::alloc::vec::Vec, } -/// Obf: LMGLHEKDJAJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3919)] +#[cmdid(3995)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChatEmojiListCsReq {} -/// Obf: DMPOKADBKBK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3944)] +#[cmdid(3991)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChatEmojiListScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub jepkimmipom: ::prost::alloc::vec::Vec, -} -/// Obf: HDDJNPMHDCJ -#[derive(proto_derive::CmdID)] -#[cmdid(3981)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarkChatEmojiCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub emote: u32, - /// offset: 28 - #[prost(bool, tag = "9")] - pub ncknkebngoh: bool, -} -/// Obf: ACJOGCJGFIN -#[derive(proto_derive::CmdID)] -#[cmdid(3969)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarkChatEmojiScRsp { - /// offset: 32 - #[prost(bool, tag = "7")] - pub ncknkebngoh: bool, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub emote: u32, -} -/// Obf: HNKAMIGEFDP -#[derive(proto_derive::CmdID)] -#[cmdid(3957)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct BatchMarkChatEmojiCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub gcjkopicjhd: ::prost::alloc::vec::Vec, -} -/// Obf: BBJKHANKCJN -#[derive(proto_derive::CmdID)] -#[cmdid(3915)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct BatchMarkChatEmojiScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub gcjkopicjhd: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, -} -/// Obf: GBILEJOLHFD -#[derive(proto_derive::CmdID)] -#[cmdid(3992)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetLoginChatInfoCsReq {} -/// Obf: PHPIJGBLAMH -#[derive(proto_derive::CmdID)] -#[cmdid(3937)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetLoginChatInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub aibfdnekjmg: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ncciejolncf { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub gficflciejj: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ehanapnjfjd { - /// offset: 32 - #[prost(message, optional, tag = "1")] - pub lineup: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub scene: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oaloinnaini { - /// offset: 68 - #[prost(bool, tag = "6")] - pub bnafeecpego: bool, - /// offset: 24 - #[prost(message, optional, tag = "1803")] - pub licobikoaao: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "14")] - pub pagpblafneh: u32, - /// offset: 96 - #[prost(uint32, tag = "9")] - pub onlglocadgd: u32, - /// offset: 80 - #[prost(uint32, tag = "12")] - pub kpnakipljgb: u32, - /// offset: 64 - #[prost(uint32, tag = "3")] - pub cjgonlaecko: u32, - /// offset: 84 - #[prost(uint32, tag = "1")] - pub ciblonpnbfe: u32, - /// offset: 100 - #[prost(uint32, tag = "8")] - pub omcagfaahke: u32, - /// offset: 88 - #[prost(uint32, tag = "5")] - pub hfmjdfpnncm: u32, - /// offset: 60 - #[prost(int32, tag = "872")] - pub jfipiifpmmb: i32, - /// offset: 32 - #[prost(message, optional, tag = "122")] - pub edphldegjlm: ::core::option::Option, - /// offset: 69 - #[prost(bool, tag = "525")] - pub fneidjimjph: bool, - /// offset: 76 - #[prost(uint32, tag = "7")] - pub gofpdnoapbb: u32, - /// offset: 92 - #[prost(enumeration = "Nlmollcfcgb", tag = "11")] - pub iccepgcifmg: i32, - /// offset: 72 - #[prost(enumeration = "Aikblmohhjp", tag = "2")] - pub bkknaegklcb: i32, - /// offset: 48 - #[prost(uint32, repeated, tag = "1024")] - pub ngdedlkngfg: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "185")] - pub boncmhigpfj: ::core::option::Option, -} -/// Obf: HPIOLDGGBMD -#[derive(proto_derive::CmdID)] -#[cmdid(5412)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueRollDiceCsReq { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub kchfjdajecm: u32, -} -/// Obf: NOGNCPJBEHK -#[derive(proto_derive::CmdID)] -#[cmdid(5473)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueRollDiceScRsp { /// offset: 32 #[prost(uint32, tag = "2")] pub retcode: u32, /// offset: 24 - #[prost(message, optional, tag = "5")] - pub aiaonpfbgng: ::core::option::Option, + #[prost(uint32, repeated, tag = "10")] + pub chat_emoji_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3961)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MarkChatEmojiCsReq { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub extra_id: u32, + /// offset: 24 + #[prost(bool, tag = "1")] + pub is_remove_id: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3945)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MarkChatEmojiScRsp { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub extra_id: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 28 + #[prost(bool, tag = "15")] + pub is_remove_id: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3976)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct BatchMarkChatEmojiCsReq { + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub marked_emoji_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3952)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct BatchMarkChatEmojiScRsp { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub marked_emoji_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3950)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetLoginChatInfoCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3981)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetLoginChatInfoScRsp { + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub contact_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dlngeidenfi { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub baookdnbkbg: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nhiibninjeh { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub scene: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub lineup: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mmbfhilfahf { + /// offset: 16 + #[prost(message, optional, tag = "784")] + pub gafclehpmdm: ::core::option::Option, + /// offset: 64 + #[prost(enumeration = "Kpoaknfkcoj", tag = "4")] + pub ljikneihomj: i32, + /// offset: 56 + #[prost(uint32, tag = "2")] + pub fnbcdggopaj: u32, + /// offset: 40 + #[prost(message, optional, tag = "954")] + pub opnnhkdpmng: ::core::option::Option, + /// offset: 92 + #[prost(uint32, tag = "5")] + pub helkbdkcoma: u32, + /// offset: 48 + #[prost(message, optional, tag = "1088")] + pub domjjnhhgjf: ::core::option::Option, + /// offset: 72 + #[prost(uint32, tag = "10")] + pub cfejpfgogfm: u32, + /// offset: 96 + #[prost(bool, tag = "8")] + pub fhkfcghoilg: bool, + /// offset: 76 + #[prost(uint32, tag = "13")] + pub pdknepbfoge: u32, + /// offset: 68 + #[prost(enumeration = "Dgobmnejpin", tag = "15")] + pub ngojfeeagpp: i32, + /// offset: 24 + #[prost(uint32, repeated, tag = "967")] + pub hclmkjobkek: ::prost::alloc::vec::Vec, + /// offset: 97 + #[prost(bool, tag = "261")] + pub jclldgbofjh: bool, + /// offset: 84 + #[prost(int32, tag = "180")] + pub jfmjmmpcnib: i32, + /// offset: 88 + #[prost(uint32, tag = "1")] + pub gdiodpahnlp: u32, + /// offset: 100 + #[prost(uint32, tag = "6")] + pub gjfocogbldl: u32, + /// offset: 80 + #[prost(uint32, tag = "9")] + pub mdnlpakikaa: u32, + /// offset: 60 + #[prost(uint32, tag = "3")] + pub bnfioendgjn: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5427)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ccamijodaeo { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub iecooipkbjc: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5569)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kkejmjmklbh { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub kjlajnjamik: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iaaefegdnlo { +pub struct Iblejcdahpl { /// offset: 28 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] pub monster_id: u32, /// offset: 24 - #[prost(uint32, tag = "7")] - pub mldlfhjlhoc: u32, + #[prost(uint32, tag = "1")] + pub kogdeabkgdn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mmopbldhjmf { - /// offset: 32 - #[prost(bool, tag = "3")] - pub pipmgacmjnn: bool, +pub struct Kjgpidcjhig { /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub cdodefkbkpd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub jakenmollci: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub fgkdpeehjak: u32, /// offset: 36 - #[prost(uint32, tag = "8")] - pub endidlcdnni: u32, + #[prost(bool, tag = "14")] + pub koamfafdead: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ilhlpphldcg { +pub struct Hnfbhbiglcb { /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub gcnkifmgmce: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub ikdggpadole: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ikhpeepogle { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub cjiakcaphjg: ::core::option::Option, +pub struct Ohoijkcloia { /// offset: 32 - #[prost(message, optional, tag = "6")] - pub hgimnjflklb: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub nbaoeecldfj: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub dpdeplmifoc: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pihkdokdikf { - #[prost(oneof = "pihkdokdikf::Inbkijdhplp", tags = "3, 8, 1")] - pub inbkijdhplp: ::core::option::Option, +pub struct Egmmmjgmpnc { + #[prost(oneof = "egmmmjgmpnc::Gioikhjjidg", tags = "1, 7, 4")] + pub gioikhjjidg: ::core::option::Option, } -/// Nested message and enum types in `PIHKDOKDIKF`. -pub mod pihkdokdikf { +/// Nested message and enum types in `EGMMMJGMPNC`. +pub mod egmmmjgmpnc { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Inbkijdhplp { - /// offset: 16 - #[prost(message, tag = "3")] - Hgimnjflklb(super::Mmopbldhjmf), - /// offset: 16 - #[prost(message, tag = "8")] - Cjiakcaphjg(super::Ilhlpphldcg), + pub enum Gioikhjjidg { /// offset: 16 #[prost(message, tag = "1")] - Iagebjbplfm(super::Ikhpeepogle), + Nbaoeecldfj(super::Kjgpidcjhig), + /// offset: 16 + #[prost(message, tag = "7")] + Dpdeplmifoc(super::Hnfbhbiglcb), + /// offset: 16 + #[prost(message, tag = "4")] + Jcocacfjcnp(super::Ohoijkcloia), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mknhikdcjjg { - /// offset: 52 - #[prost(uint32, tag = "6")] - pub room_id: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub feknlhbagdd: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub dknjlpihepj: u32, +pub struct Jhhkdnknfil { /// offset: 64 - #[prost(uint32, tag = "11")] - pub iigoemfhgll: u32, - /// offset: 60 - #[prost(enumeration = "Eieenafclll", tag = "10")] - pub daajljcajob: i32, - /// offset: 49 - #[prost(bool, tag = "15")] - pub knbdpfeidnm: bool, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub stage_info: ::core::option::Option, + #[prost(enumeration = "Okenkfkomnf", tag = "9")] + pub paopcobeefa: i32, + /// offset: 40 + #[prost(bool, tag = "13")] + pub dbelbgklhpg: bool, /// offset: 32 #[prost(uint32, tag = "1")] + pub epadnenmggm: u32, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub mknmnlgmipc: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] pub id: u32, /// offset: 56 - #[prost(enumeration = "Ogjbgonlhih", tag = "14")] - pub hkcjgfephea: i32, + #[prost(uint32, tag = "5")] + pub fadmcofoemj: u32, /// offset: 48 - #[prost(bool, tag = "2")] - pub alifdhnigal: bool, + #[prost(uint32, tag = "6")] + pub room_id: u32, + /// offset: 52 + #[prost(enumeration = "Cfcnieaomjp", tag = "4")] + pub cbllncjpepb: i32, + /// offset: 41 + #[prost(bool, tag = "11")] + pub magpfbddfgj: bool, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub stage_info: ::core::option::Option, /// offset: 44 #[prost(uint32, tag = "12")] - pub gicooehhhig: u32, + pub eolndellijn: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ofphdlopiem { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub hdhiongofid: u32, - /// offset: 40 +pub struct Ajbfknmocdh { + /// offset: 44 #[prost(uint32, tag = "13")] - pub bmajdilbpob: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub hlamiclgpee: u32, - /// offset: 44 - #[prost(uint32, tag = "15")] - pub nghppegbpao: u32, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub iafbijekkpg: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Doiblcekfdg { - /// offset: 28 - #[prost(uint32, tag = "6")] - pub hhcbjghkcpc: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub room_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kkckgeojfke { + pub knhkiomnbeh: u32, /// offset: 32 - #[prost(uint32, tag = "5")] - pub bdmlgepndfm: u32, + #[prost(uint32, tag = "9")] + pub iikfkebcmfc: u32, /// offset: 24 - #[prost(message, optional, tag = "10")] - pub bohdminejno: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hajpalbodih { - /// offset: 48 - #[prost(message, optional, tag = "15")] - pub cfekaolkhjg: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub anhjnbgielf: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "11")] - pub aoeppibmggn: u32, - /// offset: 60 - #[prost(enumeration = "Eieenafclll", tag = "5")] - pub ccghbbbolmh: i32, - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub ingagmmhmjc: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "10")] - pub mcknecfhdkg: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "6")] - pub pmgpokklkdd: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Afabkdefddg { - /// offset: 60 - #[prost(uint32, tag = "11")] - pub ppjbgnbmkpm: u32, - /// offset: 56 - #[prost(int32, tag = "8")] - pub ocdnmhnnkgm: i32, - /// offset: 52 - #[prost(uint32, tag = "2")] - pub mhoijafgecp: u32, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub id: u32, - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub jmgkbhhigmk: ::core::option::Option, + #[prost(message, repeated, tag = "3")] + pub comcgahchjc: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "1")] - pub eehkfnkhnbi: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub cpbmapflplc: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(int32, tag = "10")] - pub ljffcnbpjdd: i32, + pub nfpmclfmkoi: u32, + /// offset: 36 + #[prost(uint32, tag = "4")] + pub pphpclpfcac: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Llbjabeocec { +pub struct Kolgfdjfddc { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub room_id: u32, /// offset: 28 + #[prost(uint32, tag = "1")] + pub llnngangkha: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kmjkophohig { + /// offset: 32 #[prost(uint32, tag = "3")] - pub mamhojmfjof: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub aeon_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pgaldkkfblc { - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub pjkdpobkkgb: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cjembcbcbkj { + pub bjcdpcmndjn: u32, /// offset: 16 - #[prost(message, optional, tag = "10")] - pub hlagjpbaeml: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub nlcnoekofld: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pikamnhmdff { + /// offset: 60 + #[prost(uint32, tag = "1")] + pub chgojleebpe: u32, + /// offset: 56 + #[prost(uint32, tag = "14")] + pub bgjiaicdfhm: u32, + /// offset: 64 + #[prost(enumeration = "Okenkfkomnf", tag = "12")] + pub iepfaabfkci: i32, /// offset: 24 - #[prost(message, optional, tag = "11")] - pub bohdminejno: ::core::option::Option, - /// offset: 52 - #[prost(int32, tag = "2")] - pub icjabpgmacj: i32, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub amnbmjofjoo: u32, + #[prost(uint32, repeated, tag = "7")] + pub bcfojioomoe: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub cpchapfnicg: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub cmckjillmcp: ::core::option::Option, /// offset: 40 - #[prost(uint32, repeated, tag = "9")] - pub fpchnblonlc: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub hpclfmekgip: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hmaeckbpjeh { + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub mbjbehhaljn: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub pfcancenebi: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "15")] + pub pfhaakiofaj: u32, + /// offset: 56 + #[prost(uint32, tag = "14")] + pub id: u32, + /// offset: 52 + #[prost(int32, tag = "8")] + pub fokdepldjck: i32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub ambmeconiin: u32, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub edlnpgndjco: u32, + /// offset: 44 + #[prost(int32, tag = "1")] + pub kpidlalciof: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Knlmliimohd { +pub struct Dgikpbdpjff { + /// offset: 28 + #[prost(uint32, tag = "6")] + pub aeon_id: u32, /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] + pub bmjiofkgfjp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pbpfkghoegm { + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub iinfkiibhbc: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nkbpmekddgk { + /// offset: 48 + #[prost(uint32, tag = "8")] + pub ogbojfjagcb: u32, + /// offset: 52 + #[prost(int32, tag = "1")] + pub mbgmloellnf: i32, + /// offset: 16 + #[prost(uint32, repeated, tag = "3")] + pub ilnoedogifc: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, optional, tag = "2")] + pub nlcnoekofld: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub ehekclacnfd: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mmoecobidjn { + /// offset: 24 + #[prost(uint32, tag = "9")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iegmfgpfadl { +pub struct Bffgnegpjcd { /// offset: 24 - #[prost(message, optional, tag = "3")] - pub fpjckpnlnfm: ::core::option::Option, - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub ajljgmilelp: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub nlomaglpooh: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub dgaggcpodkg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hkmlalbdpgo { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub fahihdjfohm: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub boonpdeobla: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub lhcbbgimmdg: u32, +pub struct Glkblgplkfm { + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub pfecalapcfg: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(bool, tag = "12")] - pub fjkgkaekbkj: bool, + #[prost(bool, tag = "8")] + pub cojpioldcbb: bool, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub fmdjjdngmfa: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub abckiiljiik: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ocbcbidlllj { +pub struct Iibmmhjllnh { /// offset: 24 - #[prost(int32, tag = "6")] - pub odjpoenppob: i32, + #[prost(int32, tag = "9")] + pub hgfkofocdfh: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hijkilgjclp { +pub struct Ekhnopojdge { /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub dimhpbcpnlc: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] + pub bmijmioikjp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fflapkolhcm { +pub struct Gddadjlinnc { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub eafkfiaoahc: ::core::option::Option, /// offset: 72 - #[prost(message, repeated, tag = "7")] - pub biphngcadde: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub story_info: ::core::option::Option, - /// offset: 88 - #[prost(message, optional, tag = "12")] - pub aabchfbkpeg: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "3")] - pub chmhpcngfao: ::core::option::Option, - /// offset: 104 - #[prost(message, optional, tag = "6")] - pub aiaonpfbgng: ::core::option::Option, - /// offset: 80 - #[prost(message, optional, tag = "15")] - pub lgopnbhhhbg: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "10")] - pub embagmmhipa: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub kndmeilhkej: ::core::option::Option, - /// offset: 120 - #[prost(message, optional, tag = "2")] - pub eeppkmpajoh: ::core::option::Option, - /// offset: 56 - #[prost(message, optional, tag = "9")] - pub ibmioggkbfb: ::core::option::Option, - /// offset: 64 - #[prost(message, optional, tag = "1889")] - pub fiocabcbnkb: ::core::option::Option, - /// offset: 128 - #[prost(uint32, tag = "13")] - pub rogue_sub_mode: u32, - /// offset: 112 #[prost(message, optional, tag = "5")] - pub opakjjmagph: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub lmgkmaoicgc: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jacmenokjfm { - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub bbcpoebnanc: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub fiocabcbnkb: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "6")] - pub hlagjpbaeml: ::core::option::Option, - /// offset: 32 - #[prost(uint32, repeated, tag = "11")] - pub cpbmapflplc: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, optional, tag = "4")] - pub talent_info: ::core::option::Option, + pub boncaalanbg: ::core::option::Option, + /// offset: 120 + #[prost(message, optional, tag = "1")] + pub ldlakmodanm: ::core::option::Option, + /// offset: 112 + #[prost(message, optional, tag = "13")] + pub gclekilecbi: ::core::option::Option, + /// offset: 88 + #[prost(message, optional, tag = "1717")] + pub nllcochlenf: ::core::option::Option, + /// offset: 104 + #[prost(message, optional, tag = "11")] + pub iicdmmgjdno: ::core::option::Option, /// offset: 48 - #[prost(uint32, repeated, tag = "13")] - pub cmnnlmcemcg: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bipddejaadc { - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub biphngcadde: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub rogue_sub_mode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ihnjghalkjb { - /// offset: 48 - #[prost(uint32, repeated, tag = "12")] - pub cpbmapflplc: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, optional, tag = "9")] - pub hlagjpbaeml: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub bbcpoebnanc: ::core::option::Option, - /// offset: 56 - #[prost(uint32, repeated, tag = "5")] - pub cmnnlmcemcg: ::prost::alloc::vec::Vec, - /// offset: 16 #[prost(message, optional, tag = "10")] - pub talent_info: ::core::option::Option, + pub plnhmfpoohn: ::core::option::Option, + /// offset: 128 + #[prost(uint32, tag = "12")] + pub ekolmjjicdm: u32, + /// offset: 96 + #[prost(message, optional, tag = "6")] + pub kjlajnjamik: ::core::option::Option, /// offset: 40 #[prost(message, optional, tag = "7")] - pub fiocabcbnkb: ::core::option::Option, + pub pehfgbfodma: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "8")] + pub bempjacpimk: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "4")] + pub phmbjpfkkak: ::core::option::Option, + /// offset: 64 + #[prost(message, optional, tag = "3")] + pub story_info: ::core::option::Option, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub jdkbogfifdd: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ccodjoaholb { - /// offset: 56 - #[prost(message, optional, tag = "617")] - pub opakjjmagph: ::core::option::Option, - /// offset: 76 - #[prost(enumeration = "Kfhlbkccaco", tag = "15")] - pub gmolnjibnja: i32, - /// offset: 104 - #[prost(uint32, tag = "1251")] - pub egpcibjiajd: u32, - /// offset: 72 - #[prost(uint32, tag = "3")] - pub blbbokogfda: u32, - /// offset: 96 - #[prost(bool, tag = "11")] - pub hlnfbgacnpo: bool, - /// offset: 80 - #[prost(uint32, tag = "339")] - pub score: u32, - /// offset: 88 - #[prost(uint32, tag = "322")] - pub opoimhhafjo: u32, - /// offset: 112 - #[prost(uint32, tag = "1785")] - pub abehkcjhceh: u32, +pub struct Lpjdhlhijkn { + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub pfcancenebi: ::prost::alloc::vec::Vec, /// offset: 64 + #[prost(message, optional, tag = "13")] + pub nllcochlenf: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub fhckbpigcjc: ::core::option::Option, + /// offset: 40 + #[prost(uint32, repeated, tag = "8")] + pub cbdbildghfo: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, optional, tag = "6")] + pub cligehmkabg: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "3")] + pub ehekclacnfd: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ncholpggegm { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub jdkbogfifdd: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub ekolmjjicdm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aiidgcdhibi { + /// offset: 64 + #[prost(message, optional, tag = "14")] + pub nllcochlenf: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "4")] + pub ehekclacnfd: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub cligehmkabg: ::core::option::Option, + /// offset: 16 #[prost(message, optional, tag = "9")] - pub eeppkmpajoh: ::core::option::Option, - /// offset: 84 + pub fhckbpigcjc: ::core::option::Option, + /// offset: 40 + #[prost(uint32, repeated, tag = "11")] + pub pfcancenebi: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "6")] + pub cbdbildghfo: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ecldbmnmjll { + /// offset: 24 + #[prost(message, optional, tag = "1088")] + pub bempjacpimk: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "11")] + pub iicdmmgjdno: ::core::option::Option, + /// offset: 112 + #[prost(uint32, tag = "204")] + pub ekolmjjicdm: u32, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub boncaalanbg: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub ebcjngbbppc: ::core::option::Option, + /// offset: 116 + #[prost(uint32, tag = "15")] + pub fnmplhjefcg: u32, + /// offset: 104 #[prost(uint32, tag = "1")] - pub pbalfienefo: u32, + pub cpaokhdkhde: u32, + /// offset: 100 + #[prost(uint32, tag = "7")] + pub gbihmmmnjbm: u32, + /// offset: 108 + #[prost(uint32, tag = "635")] + pub score_id: u32, + /// offset: 72 + #[prost(uint32, tag = "587")] + pub idljdoeiccp: u32, /// offset: 48 #[prost(message, optional, tag = "8")] - pub bgpeckfdeld: ::core::option::Option, - /// offset: 108 - #[prost(uint32, tag = "13")] - pub plbcdiaadkd: u32, - /// offset: 100 - #[prost(uint32, tag = "10")] - pub ipojmmgoopj: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub lgopnbhhhbg: ::core::option::Option, + pub ckofalndgbp: ::core::option::Option, /// offset: 40 - #[prost(uint32, repeated, tag = "7")] - pub ojggmoopgil: ::prost::alloc::vec::Vec, - /// offset: 92 - #[prost(uint32, tag = "6")] - pub dmbdnaicpfb: u32, - /// offset: 116 - #[prost(uint32, tag = "1311")] - pub rogue_sub_mode: u32, + #[prost(uint32, repeated, tag = "12")] + pub impjghdihaf: ::prost::alloc::vec::Vec, + /// offset: 76 + #[prost(uint32, tag = "47")] + pub cmcaclgmfgk: u32, + /// offset: 80 + #[prost(uint32, tag = "1975")] + pub ghkfiehmaga: u32, + /// offset: 84 + #[prost(enumeration = "Baihgdmjpjc", tag = "10")] + pub lhoelgjffhp: i32, /// offset: 120 - #[prost(uint32, tag = "2")] - pub fgomiplmeic: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub anniaoidado: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub lbgibgaabif: u32, + /// offset: 92 + #[prost(uint32, tag = "13")] + pub difficulty_level: u32, + /// offset: 96 + #[prost(uint32, tag = "9")] + pub glakhhnkpgb: u32, + /// offset: 88 + #[prost(bool, tag = "3")] + pub is_finish: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ojleefjelap { +pub struct Iaponakbhce { /// offset: 32 - #[prost(uint32, tag = "3")] - pub hbcmgiicjmk: u32, + #[prost(uint32, tag = "13")] + pub ccdhfgdoipj: u32, /// offset: 24 #[prost(message, repeated, tag = "11")] - pub iafbijekkpg: ::prost::alloc::vec::Vec, + pub comcgahchjc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lahjpfooheb { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub kenpckfonok: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub fgomiplmeic: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dipmfomgcgl { - /// offset: 28 - #[prost(uint32, tag = "6")] - pub fahihdjfohm: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub cfibpmkaino: u32, -} -/// Obf: DFPMEHBDAFP -#[derive(proto_derive::CmdID)] -#[cmdid(5562)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueQueryCsReq {} -/// Obf: FFICMOGJCGL -#[derive(proto_derive::CmdID)] -#[cmdid(5596)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueQueryScRsp { - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub operating_system: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "10")] - pub blndmfgkpmj: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub hndlhicdnpc: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "4")] - pub boikablfkec: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: GFFNDENCOPM -#[derive(proto_derive::CmdID)] -#[cmdid(5469)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueEnterCellCsReq { +pub struct Klbhkpchkma { /// offset: 28 #[prost(uint32, tag = "4")] - pub hhcbjghkcpc: u32, + pub lbgibgaabif: u32, /// offset: 24 - #[prost(uint32, tag = "14")] - pub femgpnlfagc: u32, + #[prost(uint32, tag = "5")] + pub ajdebdohgjn: u32, } -/// Obf: FLGHAEAHAIE #[derive(proto_derive::CmdID)] -#[cmdid(5510)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueEnterCellScRsp { - /// offset: 44 - #[prost(uint32, tag = "3")] - pub hhcbjghkcpc: u32, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub stage_info: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub hndlhicdnpc: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: ADCOMLGAENP -#[derive(proto_derive::CmdID)] -#[cmdid(5411)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueEnterCsReq { +pub struct Olacdpdjnml { /// offset: 24 - #[prost(uint32, tag = "14")] - pub id: u32, + #[prost(uint32, tag = "2")] + pub abckiiljiik: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub mgkgojebocp: u32, } -/// Obf: DGLBNHHIPFH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5564)] +#[cmdid(5532)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fmdbhhlpjlf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5549)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueEnterScRsp { - /// offset: 44 +pub struct Pbjpgcckdaa { + /// offset: 56 #[prost(uint32, tag = "9")] pub retcode: u32, - /// offset: 16 + /// offset: 48 + #[prost(message, optional, tag = "8")] + pub rogue_get_info: ::core::option::Option, + /// offset: 40 #[prost(message, optional, tag = "6")] - pub stage_info: ::core::option::Option, + pub doflagfnkbn: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub kakghnmkdjm: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub mpilhnmbfoe: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5571)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lihdjldpbgo { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub llnngangkha: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub decgdjomcgh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5459)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hcimdmndajh { + /// offset: 44 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub doflagfnkbn: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub llnngangkha: u32, + /// offset: 32 + #[prost(message, optional, tag = "8")] + pub stage_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5559)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gfhpielaemd { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5541)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ijifckaifam { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub stage_info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub doflagfnkbn: ::core::option::Option, /// offset: 40 #[prost(uint32, tag = "1")] pub id: u32, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub hndlhicdnpc: ::core::option::Option, -} -/// Obf: MGMMCBBIKMO -#[derive(proto_derive::CmdID)] -#[cmdid(5404)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueLeaveCsReq {} -/// Obf: MFDMEODLBJI -#[derive(proto_derive::CmdID)] -#[cmdid(5523)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueLeaveScRsp { - /// offset: 32 - #[prost(message, optional, tag = "15")] - pub operating_system: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub stage_info: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "12")] - pub blndmfgkpmj: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub chmhpcngfao: ::core::option::Option, -} -/// Obf: ODPOLCDMIHM -#[derive(proto_derive::CmdID)] -#[cmdid(5449)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueGiveUpCsReq {} -/// Obf: EFFDKLFNALG -#[derive(proto_derive::CmdID)] -#[cmdid(5425)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueGiveUpScRsp { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub stage_info: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "6")] - pub blndmfgkpmj: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub boikablfkec: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub operating_system: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "5")] - pub chmhpcngfao: ::core::option::Option, -} -/// Obf: OJEFOAPJBNN -#[derive(proto_derive::CmdID)] -#[cmdid(5511)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueStartCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub base_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "10")] - pub id: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "8")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "3")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "11")] - pub aeon_id: u32, - /// offset: 60 - #[prost(uint32, tag = "5")] - pub dhndampbhpp: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub ahiibhkdfjb: ::prost::alloc::vec::Vec, -} -/// Obf: DCLBJGFLPGI -#[derive(proto_derive::CmdID)] -#[cmdid(5445)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueStartScRsp { - /// offset: 48 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub hndlhicdnpc: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "15")] - pub dbdgahblgbb: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "4")] - pub stage_info: ::core::option::Option, -} -/// Obf: KKEIBLACBDH -#[derive(proto_derive::CmdID)] -#[cmdid(5512)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueQueryAeonDimensionsCsReq {} -/// Obf: LKOPLOODPAL -#[derive(proto_derive::CmdID)] -#[cmdid(5530)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueQueryAeonDimensionsScRsp { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub hndlhicdnpc: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: MCMOFBLFAJA -#[derive(proto_derive::CmdID)] -#[cmdid(5491)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueChangeyAeonDimensionNotify { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub hndlhicdnpc: ::core::option::Option, -} -/// Obf: FBOAJCKGDEN -#[derive(proto_derive::CmdID)] -#[cmdid(5500)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueSelectCellCsReq { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub hhcbjghkcpc: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub femgpnlfagc: u32, -} -/// Obf: HMICABPCDCP -#[derive(proto_derive::CmdID)] -#[cmdid(5576)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueSelectCellScRsp { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub kajafnpekaj: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub femgpnlfagc: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub hhcbjghkcpc: u32, -} -/// Obf: ILGKMJJPAAM -#[derive(proto_derive::CmdID)] -#[cmdid(5422)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueLayerAccountInfoNotify { - /// offset: 32 - #[prost(uint32, tag = "7")] - pub ppjbgnbmkpm: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub pbalfienefo: u32, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub boikablfkec: ::core::option::Option, -} -/// Obf: JOJNOKAGLPI -#[derive(proto_derive::CmdID)] -#[cmdid(5421)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetChessRogueBuffEnhanceInfoCsReq {} -/// Obf: GPKDBFDBOBH -#[derive(proto_derive::CmdID)] -#[cmdid(5587)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetChessRogueBuffEnhanceInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub buff_enhance_info: ::core::option::Option, -} -/// Obf: NPEHJAHJEPA -#[derive(proto_derive::CmdID)] -#[cmdid(5475)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnhanceChessRogueBuffCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub ojeblmkkmgo: u32, -} -/// Obf: AFNJNBKBABB -#[derive(proto_derive::CmdID)] -#[cmdid(5458)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnhanceChessRogueBuffScRsp { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub buff_enhance_info: ::core::option::Option, /// offset: 44 - #[prost(bool, tag = "1")] - pub is_success: bool, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub rogue_buff: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "6")] pub retcode: u32, } -/// Obf: JGHADCEKFGG -#[derive(proto_derive::CmdID)] -#[cmdid(5508)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRoguePickAvatarCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub prop_entity_id: u32, -} -/// Obf: FEPOEPBDPPM -#[derive(proto_derive::CmdID)] -#[cmdid(5527)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRoguePickAvatarScRsp { - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "3")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub embagmmhipa: ::core::option::Option, -} -/// Obf: DHDPCOIJBGJ -#[derive(proto_derive::CmdID)] -#[cmdid(5433)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueReviveAvatarCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub interacted_prop_entity_id: u32, -} -/// Obf: KEHIIMHCHLI -#[derive(proto_derive::CmdID)] -#[cmdid(5503)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueReviveAvatarScRsp { - /// offset: 32 - #[prost(uint32, repeated, tag = "13")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub fpjckpnlnfm: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: GOAMHGNKPJM -#[derive(proto_derive::CmdID)] -#[cmdid(5574)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateReviveInfoScNotify { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub fpjckpnlnfm: ::core::option::Option, -} -/// Obf: CEMBPPNNHBN -#[derive(proto_derive::CmdID)] -#[cmdid(5437)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateMoneyInfoScNotify { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub aabchfbkpeg: ::core::option::Option, -} -/// Obf: PFDMKAMINEM -#[derive(proto_derive::CmdID)] -#[cmdid(5490)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateDiceInfoScNotify { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub aiaonpfbgng: ::core::option::Option, -} -/// Obf: KCKJOLHPNEE -#[derive(proto_derive::CmdID)] -#[cmdid(5560)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateLevelBaseInfoScNotify { - /// offset: 28 - #[prost(enumeration = "Ibmlfggingp", tag = "4")] - pub eehkfnkhnbi: i32, - /// offset: 24 - #[prost(enumeration = "Mmkdkdgfblh", tag = "1")] - pub reason: i32, -} -/// Obf: HFINFFLLHOC -#[derive(proto_derive::CmdID)] -#[cmdid(5570)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateAllowedSelectCellScNotify { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub ingagmmhmjc: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub eamgahffeco: u32, -} -/// Obf: DMAGHPKHLBO -#[derive(proto_derive::CmdID)] -#[cmdid(5474)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateBoardScNotify { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub dhdknmfmgbc: ::core::option::Option, -} -/// Obf: BOLPCHMMDHM -#[derive(proto_derive::CmdID)] -#[cmdid(5548)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateAeonModifierValueScNotify { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub aeon_id: u32, - /// offset: 24 - #[prost(int32, tag = "15")] - pub icjabpgmacj: i32, -} -/// Obf: ACIENOHKCOG +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5580)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateDicePassiveAccumulateValueScNotify { - /// offset: 24 - #[prost(int32, tag = "12")] - pub cblaememmig: i32, -} -/// Obf: MLLPACPPJBB +pub struct Folenggpdhf {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5529)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueSkipTeachingLevelCsReq {} -/// Obf: FGKJAPFGFLN -#[derive(proto_derive::CmdID)] -#[cmdid(5533)] +#[cmdid(5404)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueSkipTeachingLevelScRsp { - /// offset: 16 +pub struct Hlmlppgfcok { + /// offset: 40 + #[prost(message, optional, tag = "6")] + pub rogue_get_info: ::core::option::Option, + /// offset: 32 #[prost(message, optional, tag = "1")] - pub ndeeffooflg: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: OAPHEAMIIFF -#[derive(proto_derive::CmdID)] -#[cmdid(5456)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateUnlockLevelScNotify { - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub cpbmapflplc: ::prost::alloc::vec::Vec, -} -/// Obf: BIHDFJFHHMA -#[derive(proto_derive::CmdID)] -#[cmdid(5551)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueEnterNextLayerCsReq {} -/// Obf: PFJHDBLEKHD -#[derive(proto_derive::CmdID)] -#[cmdid(5547)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueEnterNextLayerScRsp { - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub rogue_info: ::core::option::Option, + pub pehfgbfodma: ::core::option::Option, /// offset: 24 #[prost(message, optional, tag = "5")] - pub stage_info: ::core::option::Option, + pub stage_info: ::core::option::Option, /// offset: 48 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 16 #[prost(message, optional, tag = "7")] - pub dbdgahblgbb: ::core::option::Option, -} -/// Obf: APNIJKHIJDD -#[derive(proto_derive::CmdID)] -#[cmdid(5440)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueReRollDiceCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub kchfjdajecm: u32, -} -/// Obf: JBHIKPPOCBH -#[derive(proto_derive::CmdID)] -#[cmdid(5513)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueReRollDiceScRsp { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub aiaonpfbgng: ::core::option::Option, -} -/// Obf: CAEECAHOEOL -#[derive(proto_derive::CmdID)] -#[cmdid(5525)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueConfirmRollCsReq { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub kchfjdajecm: u32, -} -/// Obf: FDMLPJGLCLF -#[derive(proto_derive::CmdID)] -#[cmdid(5489)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueConfirmRollScRsp { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub aiaonpfbgng: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -/// Obf: KJNFLIGHDII -#[derive(proto_derive::CmdID)] -#[cmdid(5466)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueCheatRollCsReq { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub eooadpocphd: u32, - /// offset: 24 + pub mpilhnmbfoe: ::core::option::Option, + /// offset: 56 #[prost(uint32, tag = "12")] - pub kchfjdajecm: u32, + pub retcode: u32, } -/// Obf: PENOIKKIHPB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5588)] +#[cmdid(5453)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iklemedkbfa {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5435)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueCheatRollScRsp { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub aiaonpfbgng: ::core::option::Option, +pub struct Dipabhgiohc { + /// offset: 32 + #[prost(message, optional, tag = "2")] + pub pehfgbfodma: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "4")] - pub eooadpocphd: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub nljoldmcgai: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: KMFHMGOABIP -#[derive(proto_derive::CmdID)] -#[cmdid(5552)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueGiveUpRollCsReq {} -/// Obf: OHJANOLOLLE -#[derive(proto_derive::CmdID)] -#[cmdid(5482)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueGiveUpRollScRsp { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 32 + #[prost(message, optional, tag = "6")] + pub rogue_get_info: ::core::option::Option, + /// offset: 16 #[prost(message, optional, tag = "13")] - pub nkmjhejcolp: ::core::option::Option, + pub mpilhnmbfoe: ::core::option::Option, + /// offset: 64 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 56 + #[prost(message, optional, tag = "11")] + pub kakghnmkdjm: ::core::option::Option, /// offset: 24 #[prost(message, optional, tag = "9")] - pub aiaonpfbgng: ::core::option::Option, + pub stage_info: ::core::option::Option, } -/// Obf: GDAIDHNKFCG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5524)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueQuitCsReq {} -/// Obf: HFGHFCGANCF -#[derive(proto_derive::CmdID)] -#[cmdid(5441)] +#[cmdid(5465)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueQuitScRsp { - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub boikablfkec: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "5")] - pub lmgkmaoicgc: ::core::option::Option, +pub struct Fdpnnaddhfb { /// offset: 64 - #[prost(message, optional, tag = "15")] - pub stage_info: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub operating_system: ::core::option::Option, - /// offset: 72 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub chmhpcngfao: ::core::option::Option, - /// offset: 56 - #[prost(message, optional, tag = "8")] - pub blndmfgkpmj: ::core::option::Option, -} -/// Obf: GPJCDDBBMCB -#[derive(proto_derive::CmdID)] -#[cmdid(5561)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueCellUpdateNotify { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub iafbijekkpg: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(enumeration = "Lgmdbcffjof", tag = "9")] - pub dniibbhllnb: i32, - /// offset: 36 - #[prost(enumeration = "Aebjegdpong", tag = "5")] - pub reason: i32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub eamgahffeco: u32, -} -/// Obf: JGJNNDHAAIC -#[derive(proto_derive::CmdID)] -#[cmdid(5567)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueQuestFinishNotify { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub jlfabhhnhcm: u32, - /// offset: 28 #[prost(uint32, tag = "4")] - pub nnjccfeindo: u32, -} -/// Obf: AEHKPMIEHJI -#[derive(proto_derive::CmdID)] -#[cmdid(5419)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetChessRogueStoryInfoCsReq {} -/// Obf: CHNCADPNMIB -#[derive(proto_derive::CmdID)] -#[cmdid(5536)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetChessRogueStoryInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "2")] - pub idgiahopgaj: ::prost::alloc::vec::Vec, + pub id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub fncabmlhcim: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub aeon_id: u32, + /// offset: 48 + #[prost(uint32, repeated, tag = "12")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub mnhmekkhkna: ::prost::alloc::vec::Vec, -} -/// Obf: GGIDCJDDGGP -#[derive(proto_derive::CmdID)] -#[cmdid(5553)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SelectChessRogueSubStoryCsReq { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub ifiijgngogp: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub rogue_dialogue_event_id: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub ikmnamkjafa: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub fahihdjfohm: u32, -} -/// Obf: IMHNNPFBGPI -#[derive(proto_derive::CmdID)] -#[cmdid(5452)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SelectChessRogueSubStoryScRsp { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub ikmnamkjafa: u32, - /// offset: 40 + #[prost(uint32, repeated, tag = "13")] + pub oppdalfjpmh: ::prost::alloc::vec::Vec, + /// offset: 60 #[prost(uint32, tag = "3")] - pub rogue_dialogue_event_id: u32, + pub ddeppoalnki: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "8")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5527)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aejfofifgjj { + /// offset: 48 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub doflagfnkbn: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub lhmppfaknnc: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub stage_info: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gjoeindkhhb {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5466)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bjcgpiddkco { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub doflagfnkbn: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5588)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Agmnchofgep { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub doflagfnkbn: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5538)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ocagicpapnn { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub llnngangkha: u32, /// offset: 28 #[prost(uint32, tag = "9")] - pub fahihdjfohm: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] + pub decgdjomcgh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5575)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hjbinchfmij { + /// offset: 36 + #[prost(uint32, tag = "1")] + pub llnngangkha: u32, + /// offset: 40 + #[prost(uint32, tag = "2")] pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub decgdjomcgh: u32, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub kkgfjncpmfd: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5431)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hgpgndfjfnc { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub kakghnmkdjm: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub difficulty_level: u32, /// offset: 36 #[prost(uint32, tag = "5")] - pub ifiijgngogp: u32, + pub ambmeconiin: u32, } -/// Obf: GIEFBJHKBOK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5478)] +#[cmdid(5592)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishChessRogueSubStoryCsReq { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub ikmnamkjafa: u32, -} -/// Obf: IEJBFANAEMO +pub struct Ohpfcgmaoek {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5402)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishChessRogueSubStoryScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub fgomiplmeic: u32, +#[cmdid(5455)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ceeeekkfeen { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub dghcmekdcon: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "13")] pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub ikmnamkjafa: u32, } -/// Obf: KGDAGPJHBMJ +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5584)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bmemeaipico { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub maze_buff_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5535)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dkmlfpliolm { + /// offset: 44 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub aphcnkfmmil: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "8")] + pub dghcmekdcon: ::core::option::Option, + /// offset: 40 + #[prost(bool, tag = "15")] + pub boghpmklged: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5440)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jogmakfdddi { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub prop_entity_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5497)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Akeadaimkkb { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub plnhmfpoohn: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5545)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueUpdateActionPointScNotify { - /// offset: 24 - #[prost(int32, tag = "15")] - pub ljffcnbpjdd: i32, +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Afbhpglblch { + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub interacted_prop_entity_id: u32, } -/// Obf: HFEOILGGHKA +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5468)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hjppoljobdc { + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub dgaggcpodkg: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5508)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pjbeehefgii { + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub dgaggcpodkg: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5479)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjmlhaeoogl { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub ldlakmodanm: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5529)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ekkdjdgiocn { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub kjlajnjamik: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5598)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nhmdadncdbn { + /// offset: 24 + #[prost(enumeration = "Mbbakondodg", tag = "12")] + pub edlnpgndjco: i32, + /// offset: 28 + #[prost(enumeration = "Ignaggmojbh", tag = "5")] + pub reason: i32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5579)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Neepidokioe { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub dhlganhechc: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub bcfojioomoe: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5402)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kidimagoddo { + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub dhheipndalo: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5502)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bgepeaiekbl { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub aeon_id: u32, + /// offset: 24 + #[prost(int32, tag = "13")] + pub mbgmloellnf: i32, +} +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(5504)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterChessRogueAeonRoomCsReq {} -/// Obf: PEDBKMGBGEK +pub struct Mdfhejdfppf { + /// offset: 24 + #[prost(int32, tag = "8")] + pub bcpgkmohjnk: i32, +} +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5471)] +#[cmdid(5434)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ngopjfjghpf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5477)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterChessRogueAeonRoomScRsp { +pub struct Ajidlgfblbc { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub leodjkmooid: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5546)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cejfnfdkadc { + /// offset: 16 + #[prost(uint32, repeated, tag = "10")] + pub pfcancenebi: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5451)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kjllinokeeg {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5596)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aibmgoglflj { + /// offset: 40 + #[prost(message, optional, tag = "1")] + pub rogue_game_info: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub stage_info: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub lhmppfaknnc: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5576)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Odoghfdoame { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub iecooipkbjc: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5540)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Legnfijhfja { + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub kjlajnjamik: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5585)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jolmfhdnmjc { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub iecooipkbjc: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5490)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hfgikbfcnhj { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub kjlajnjamik: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5577)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ebcgenehplo { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub hiidjonlkci: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub iecooipkbjc: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5433)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fnkbmegfcao { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub hiidjonlkci: u32, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub kjlajnjamik: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub ljfibkheohj: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nhhmnnkdelf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5555)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lokepeoldlk { + /// offset: 40 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub kjlajnjamik: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub mkgnlablkna: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5478)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ldjcmnilfig {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5565)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Niphnioeooh { + /// offset: 72 + #[prost(uint32, tag = "1")] + pub retcode: u32, /// offset: 24 #[prost(message, optional, tag = "12")] - pub stage_info: ::core::option::Option, + pub rogue_get_info: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub mpilhnmbfoe: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "3")] + pub kakghnmkdjm: ::core::option::Option, + /// offset: 64 + #[prost(message, optional, tag = "13")] + pub phmbjpfkkak: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, + #[prost(message, optional, tag = "10")] + pub stage_info: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "8")] + pub pehfgbfodma: ::core::option::Option, } -/// Obf: CIHFECGBLCP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5521)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetChessRogueStoryAeonTalkInfoCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub cdjecokfiof: u32, -} -/// Obf: NEHFFDDBJJP -#[derive(proto_derive::CmdID)] -#[cmdid(5446)] +#[cmdid(5597)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetChessRogueStoryAeonTalkInfoScRsp { - /// offset: 36 - #[prost(uint32, tag = "10")] - pub cdjecokfiof: u32, +pub struct Cmjmfikajbg { /// offset: 32 - #[prost(uint32, tag = "9")] + #[prost(enumeration = "Dgpmdefdmke", tag = "8")] + pub fkjooongpjd: i32, + /// offset: 36 + #[prost(enumeration = "Abbkdokebbi", tag = "14")] + pub reason: i32, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub dhlganhechc: u32, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub comcgahchjc: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5454)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gaaknmclfdb { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub knphffpfhoa: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub quest_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5460)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pdlhodmbdgg {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5492)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ohkobjkmjif { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub ddhfchhijbo: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "14")] pub retcode: u32, /// offset: 24 - #[prost(map = "uint32, uint32", tag = "2")] - pub kjcbneindhl: ::std::collections::HashMap, + #[prost(message, repeated, tag = "13")] + pub bmklnllnknn: ::prost::alloc::vec::Vec, } -/// Obf: CNFKEJPJDCI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5423)] +#[cmdid(5562)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncChessRogueMainStoryFinishScNotify { +pub struct Bopibeaabhm { + /// offset: 36 + #[prost(uint32, tag = "1")] + pub kfmllokgibn: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub rogue_dialogue_event_id: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub noejeibmkmk: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub abckiiljiik: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5429)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mjkhajmofhd { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub abckiiljiik: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub noejeibmkmk: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub rogue_dialogue_event_id: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub kfmllokgibn: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5552)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ifnppmegagk { /// offset: 24 #[prost(uint32, tag = "4")] - pub kenpckfonok: u32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub fgomiplmeic: u32, + pub noejeibmkmk: u32, } -/// Obf: MJGHIBKOCAA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5499)] +#[cmdid(5452)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncChessRogueNousValueScNotify { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub ibmioggkbfb: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gbeejnbebep { +pub struct Ichjabjdiln { /// offset: 28 #[prost(uint32, tag = "12")] - pub fgomiplmeic: u32, + pub lbgibgaabif: u32, /// offset: 24 - #[prost(enumeration = "Cdoegmdjgoc", tag = "10")] + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub noejeibmkmk: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5595)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lamoknaccfe { + /// offset: 24 + #[prost(int32, tag = "3")] + pub fokdepldjck: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5403)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lilaoomjgbo {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5573)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mgcocdhlobl { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub stage_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5572)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Phpghelojon { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub talk_dialogue_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5530)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fgbhbckpeec { + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "13")] + pub kgebnecnfok: ::std::collections::HashMap, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub talk_dialogue_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5482)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hdelcmikkhe { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub lbgibgaabif: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub ajdebdohgjn: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5594)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Njndmaklhgh { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub eafkfiaoahc: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cnhgnpnlmfm { + /// offset: 28 + #[prost(uint32, tag = "9")] + pub lbgibgaabif: u32, + /// offset: 24 + #[prost(enumeration = "Kdjdilcchjg", tag = "15")] pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Diecddgebnb { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub ikmnamkjafa: u32, -} -/// Obf: CLNPFNGPJMM -#[derive(proto_derive::CmdID)] -#[cmdid(5554)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetChessRogueNousStoryInfoCsReq {} -/// Obf: NLJCLCHNAFB -#[derive(proto_derive::CmdID)] -#[cmdid(5585)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetChessRogueNousStoryInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub mnhmekkhkna: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub idgiahopgaj: ::prost::alloc::vec::Vec, -} -/// Obf: CLNNAJGNMAF -#[derive(proto_derive::CmdID)] -#[cmdid(5537)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncChessRogueNousSubStoryScNotify { +pub struct Llajpjomhef { /// offset: 24 #[prost(uint32, tag = "2")] - pub ikmnamkjafa: u32, -} -/// Obf: NGGNCMHBNPE -#[derive(proto_derive::CmdID)] -#[cmdid(5507)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncChessRogueNousMainStoryScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub idgiahopgaj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Imnpeajajjo { - /// offset: 49 - #[prost(bool, tag = "3")] - pub fjkgkaekbkj: bool, - /// offset: 56 - #[prost(uint32, tag = "7")] - pub ffmdbdehheg: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub oblhboeolaf: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub emllecgepck: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "15")] - pub ilmookbjhhc: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "6")] - pub ikmnamkjafa: u32, - /// offset: 60 - #[prost(uint32, tag = "11")] - pub fgomiplmeic: u32, - /// offset: 48 - #[prost(bool, tag = "8")] - pub ffheeidbhea: bool, + pub noejeibmkmk: u32, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(5525)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hngihjjiaco { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub eooadpocphd: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub slot_id: u32, -} +pub struct Migikkgehab {} +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(5514)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kjehfkbjphd { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub dhndampbhpp: u32, +pub struct Hjfpnhkkgem { /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub igbcacgfckb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub ddhfchhijbo: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "1")] - pub hmkebdlflpg: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "10")] - pub oabliofcofo: u32, + #[prost(message, repeated, tag = "15")] + pub bmklnllnknn: ::prost::alloc::vec::Vec, } +/// Type: Notify #[derive(proto_derive::CmdID)] +#[cmdid(5536)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nchaneedheb { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub noejeibmkmk: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5406)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dffjcmlaicl { - /// offset: 40 - #[prost(uint32, repeated, tag = "15")] - pub jkmimlbajbl: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(map = "uint32, bool", tag = "6")] - pub nbcmaknlphg: ::std::collections::HashMap, +pub struct Ooaknkppfjn { /// offset: 24 #[prost(message, repeated, tag = "1")] - pub alehdaaohoe: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(enumeration = "Faohejiddhj", tag = "3")] - pub hdmpbpoffdk: i32, + pub ddhfchhijbo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lgeljhjomlo { +pub struct Fmhmlgefoij { + /// offset: 48 + #[prost(bool, tag = "15")] + pub effdkfigkhc: bool, + /// offset: 40 + #[prost(uint32, repeated, tag = "1")] + pub bldaodklbmc: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub noejeibmkmk: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub fjbfailkjeg: ::prost::alloc::vec::Vec, + /// offset: 49 + #[prost(bool, tag = "10")] + pub cojpioldcbb: bool, + /// offset: 52 + #[prost(uint32, tag = "7")] + pub lbgibgaabif: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub baddhicmnbh: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "13")] + pub agdglacfajp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Agcglffhijm { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub hiidjonlkci: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub dice_slot_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Apnlimiefmi { + /// offset: 40 + #[prost(uint32, tag = "7")] + pub mklabhfiain: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub ddeppoalnki: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub ephmmclgkla: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "2")] - pub pofmjblmbji: u32, + pub hiccldmbmcl: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cfhoemfmbln { + /// offset: 48 + #[prost(enumeration = "Gopcighiegf", tag = "6")] + pub eljlkgkjedj: i32, + /// offset: 40 + #[prost(map = "uint32, bool", tag = "13")] + pub cjadeilpeld: ::std::collections::HashMap, /// offset: 24 - #[prost(message, optional, tag = "12")] - pub jmgipebloge: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Afaghelicpd { + #[prost(message, repeated, tag = "8")] + pub hfdhkbeclef: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub gihdmhdadon: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub fpmmhdonlke: ::prost::alloc::vec::Vec, } -/// Obf: GLIGOBEJCEE #[derive(proto_derive::CmdID)] -#[cmdid(5556)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueNousEditDiceCsReq { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub bbcpoebnanc: ::core::option::Option, -} -/// Obf: CGHIHPAIEGL -#[derive(proto_derive::CmdID)] -#[cmdid(5594)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueNousEditDiceScRsp { +pub struct Dhljcmhmjpo { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub lgldcpemipo: u32, /// offset: 24 - #[prost(message, optional, tag = "9")] - pub bbcpoebnanc: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub klipbhgoekc: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hoelhoehhpl { + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub henocfakoon: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5543)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Egoebbekoak { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub cligehmkabg: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5591)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dhkbdlakcjc { /// offset: 32 #[prost(uint32, tag = "14")] pub retcode: u32, -} -/// Obf: HPGJGJBCEEF -#[derive(proto_derive::CmdID)] -#[cmdid(5443)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueNousDiceUpdateNotify { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub mbibkhkkefb: ::core::option::Option, -} -/// Obf: BLNHPBNMGND -#[derive(proto_derive::CmdID)] -#[cmdid(5403)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueNousDiceSurfaceUnlockNotify { /// offset: 24 - #[prost(uint32, tag = "15")] - pub caphiddhlfg: u32, + #[prost(message, optional, tag = "2")] + pub cligehmkabg: ::core::option::Option, } -/// Obf: CKPGAINGLAN +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5522)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueNousGetRogueTalentInfoCsReq {} -/// Obf: FFFAADGCBIO -#[derive(proto_derive::CmdID)] -#[cmdid(5557)] +#[cmdid(5499)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueNousGetRogueTalentInfoScRsp { - /// offset: 36 - #[prost(uint32, tag = "3")] - pub retcode: u32, +pub struct Kodbmifickl { /// offset: 24 - #[prost(message, optional, tag = "12")] - pub talent_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub pofmjblmbji: u32, + #[prost(message, optional, tag = "10")] + pub ppdfbephfnl: ::core::option::Option, } -/// Obf: GGLPHNHLGOA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5465)] +#[cmdid(5425)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChessRogueNousEnableRogueTalentCsReq { +pub struct Okiecejgbnh { /// offset: 24 - #[prost(uint32, tag = "1")] - pub talent_id: u32, + #[prost(uint32, tag = "13")] + pub npbaahidink: u32, } -/// Obf: EONJEJPDIBH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5598)] +#[cmdid(5472)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dceinfonekb {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5566)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChessRogueNousEnableRogueTalentScRsp { +pub struct Mjgelcnmlim { /// offset: 36 #[prost(uint32, tag = "12")] + pub lgldcpemipo: u32, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub fhckbpigcjc: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "7")] pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub pofmjblmbji: u32, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub talent_info: ::core::option::Option, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(5515)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aacofikdcpl { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub progress: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub ienpelbphdp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Odnnkbimefh { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub keedplpaclp: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eadganmjipk { - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub ibpfgebmilb: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jcnjdffcldg { - /// offset: 44 - #[prost(int32, tag = "15")] - pub lkeblpijmgb: i32, - /// offset: 48 - #[prost(int32, tag = "11")] - pub hp: i32, - /// offset: 52 - #[prost(bool, tag = "10")] - pub jnboonpdoce: bool, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub id: u32, - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub keedplpaclp: ::core::option::Option, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub oopkikmbbhh: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mpjdibccohf { - /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub obcpgobaede: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub miaiopgiphh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Difpdplcigd { +pub struct Bigogdodafh { /// offset: 24 #[prost(uint32, tag = "10")] - pub jfpnmoonlnj: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub goneakbdgek: u32, + pub gjjkacomphd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5506)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Emgannehnlj { + /// offset: 36 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub fhckbpigcjc: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub lgldcpemipo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jmaanmpanhm { - /// offset: 52 - #[prost(uint32, tag = "9")] - pub noeimmhckpm: u32, +pub struct Khfagajgpfm { /// offset: 24 - #[prost(uint32, tag = "11")] - pub clpmibdfpjc: u32, - /// offset: 28 - #[prost(int32, tag = "4")] - pub attack: i32, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub index: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub nkoffbmhapi: u32, - /// offset: 36 - #[prost(int32, tag = "15")] - pub hp: i32, - /// offset: 32 #[prost(uint32, tag = "13")] - pub nhjalpdbogn: u32, + pub cnmmoadklbd: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub progress: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kadmheohncm { + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub mfakplcefmm: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bkfpajfgmpc { + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub imdhhmmmhki: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gfjecghmnhn { + /// offset: 52 + #[prost(int32, tag = "4")] + pub hp: i32, + /// offset: 40 + #[prost(int32, tag = "2")] + pub jddjkfifcih: i32, + /// offset: 48 + #[prost(bool, tag = "1")] + pub jhgobonlgdd: bool, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub id: u32, + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub mfakplcefmm: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub dmpmhpmdlni: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Noikpkoinpn { + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub lmdfefbnjmb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub ilbcldepffg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fabkolapgpk { + /// offset: 28 + #[prost(uint32, tag = "1")] + pub gbohfhmofhb: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub obiifeibgik: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Imkljonlooi { + /// offset: 36 + #[prost(uint32, tag = "12")] + pub pmgbofgcijk: u32, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub fcaabakelgk: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub ghkkjkebejg: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub index: u32, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub kjpojdjgljn: u32, + /// offset: 24 + #[prost(int32, tag = "1")] + pub attack: i32, /// offset: 48 #[prost(uint32, tag = "7")] - pub fpaibldakli: u32, + pub igbpciblnbh: u32, + /// offset: 44 + #[prost(int32, tag = "14")] + pub hp: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Egdghfllmgn { - /// offset: 40 - #[prost(uint32, tag = "2")] - pub lcjhgdjdeng: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub bclnmidffoh: u32, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub cfijipchhgo: u32, +pub struct Cmdmfmolkgb { /// offset: 44 #[prost(uint32, tag = "7")] - pub total_turns: u32, - /// offset: 24 + pub total_damage: u32, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub total_auto_turns: u32, + /// offset: 32 #[prost(uint32, tag = "14")] - pub khkfkdnbhpe: u32, + pub pajjebalehh: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub eiefoljialc: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub total_turns: u32, /// offset: 28 #[prost(uint32, tag = "3")] - pub total_damage: u32, + pub cost_time: u32, } -/// Obf: CHDKEPCOKNK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8167)] +#[cmdid(8173)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChimeraGetDataCsReq {} -/// Obf: DPLGEGIJCEF +pub struct Imeipjbflpl {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8166)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bojimhgfgee { + /// offset: 56 + #[prost(enumeration = "Knkbgoljmbf", tag = "12")] + pub apkgpgigkfn: i32, + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub lineup: ::core::option::Option, + /// offset: 80 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 88 + #[prost(uint32, tag = "8")] + pub obiifeibgik: u32, + /// offset: 72 + #[prost(uint32, tag = "1359")] + pub ikgljclfehe: u32, + /// offset: 76 + #[prost(uint32, tag = "14")] + pub pkpnbpldkom: u32, + /// offset: 92 + #[prost(uint32, tag = "1687")] + pub aanolfmhnoa: u32, + /// offset: 104 + #[prost(uint32, tag = "1")] + pub nbndbakgkpb: u32, + /// offset: 40 + #[prost(message, repeated, tag = "9")] + pub cjaifjidmld: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "10")] + pub fpodedjcegc: u32, + /// offset: 84 + #[prost(uint32, tag = "15")] + pub ipjifkacjij: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub npjkjgkhiid: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub ijjmobnmppf: u32, + /// offset: 48 + #[prost(uint32, repeated, tag = "4")] + pub ladfdgaombo: ::prost::alloc::vec::Vec, + /// offset: 108 + #[prost(uint32, tag = "11")] + pub djglimcnoai: u32, + /// offset: 100 + #[prost(uint32, tag = "171")] + pub allmamnmdei: u32, + /// offset: 64 + #[prost(uint32, tag = "828")] + pub ehnadkcpoab: u32, + /// offset: 96 + #[prost(uint32, tag = "7")] + pub ldfkbjdcilo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Idaioepikmc { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub lineup: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8165)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hbedpfhcapj { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub lineup: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lmhjgpkmgii { + /// offset: 64 + #[prost(map = "uint32, message", tag = "15")] + pub oblepmpefod: ::std::collections::HashMap, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub lineup: ::core::option::Option, + /// offset: 72 + #[prost(uint32, tag = "13")] + pub ojojmbecine: u32, + /// offset: 80 + #[prost(bool, tag = "12")] + pub kjhbefoifkm: bool, + /// offset: 56 + #[prost(message, repeated, tag = "3")] + pub pekcobnhpnf: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "4")] + pub mgjajpkhglp: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(map = "uint32, uint32", tag = "14")] + pub jbecdfjffoe: ::std::collections::HashMap, + /// offset: 76 + #[prost(enumeration = "Djbnaabkcfa", tag = "2")] + pub end_reason: i32, + /// offset: 32 + #[prost(message, optional, tag = "10")] + pub stt: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8164)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eabdahbdkpe { + /// offset: 76 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 69 + #[prost(bool, tag = "6")] + pub cmoodjfjifn: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub ladfdgaombo: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(bool, tag = "4")] + pub kjhbefoifkm: bool, + /// offset: 96 + #[prost(uint32, tag = "8")] + pub ldfkbjdcilo: u32, + /// offset: 40 + #[prost(message, repeated, tag = "9")] + pub cjaifjidmld: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub kgpapgkdnok: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(map = "uint32, message", tag = "12")] + pub fbhnicdjggb: ::std::collections::HashMap, + /// offset: 80 + #[prost(enumeration = "Djbnaabkcfa", tag = "1")] + pub end_reason: i32, + /// offset: 92 + #[prost(enumeration = "Knkbgoljmbf", tag = "10")] + pub apkgpgigkfn: i32, + /// offset: 64 + #[prost(uint32, tag = "7")] + pub ijjmobnmppf: u32, + /// offset: 88 + #[prost(uint32, tag = "14")] + pub djglimcnoai: u32, + /// offset: 72 + #[prost(uint32, tag = "13")] + pub obiifeibgik: u32, + /// offset: 84 + #[prost(uint32, tag = "3")] + pub aanolfmhnoa: u32, + /// offset: 56 + #[prost(map = "uint32, message", tag = "11")] + pub oapmlcfjmke: ::std::collections::HashMap, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8163)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iclgfihjiaf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8177)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iomkbpmhpam { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8172)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bnabeagdklp { + /// offset: 60 + #[prost(uint32, tag = "14")] + pub allmamnmdei: u32, + /// offset: 40 + #[prost(message, repeated, tag = "12")] + pub pekcobnhpnf: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub lineup: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub stt: ::core::option::Option, + /// offset: 56 + #[prost(bool, tag = "2")] + pub ceicihhhjdc: bool, + /// offset: 48 + #[prost(uint32, repeated, tag = "5")] + pub mgjajpkhglp: ::prost::alloc::vec::Vec, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8161)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraGetDataScRsp { - /// offset: 96 - #[prost(enumeration = "Oapdmkkkeol", tag = "11")] - pub bbmgiimecel: i32, +pub struct Jimmklihona { /// offset: 56 - #[prost(uint32, tag = "15")] - pub ijeiommfpka: u32, - /// offset: 64 - #[prost(uint32, tag = "7")] - pub cjekjhpibjl: u32, - /// offset: 72 - #[prost(uint32, tag = "9")] - pub jfpnmoonlnj: u32, + #[prost(uint32, tag = "4")] + pub nbndbakgkpb: u32, /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub ncdaoblmhhp: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(uint32, tag = "632")] - pub cagaplnhabb: u32, - /// offset: 104 - #[prost(uint32, tag = "6")] - pub lfkfocjfncj: u32, - /// offset: 32 #[prost(message, repeated, tag = "2")] - pub kiimkaeajal: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "12")] - pub lineup: ::core::option::Option, - /// offset: 68 - #[prost(uint32, tag = "8")] - pub eaiojcnlmng: u32, - /// offset: 92 - #[prost(uint32, tag = "1055")] - pub kilpnhjbpdb: u32, - /// offset: 80 - #[prost(uint32, tag = "1550")] - pub olldkajoajd: u32, - /// offset: 60 - #[prost(uint32, tag = "10")] + pub gpnkpjpiice: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "5")] pub retcode: u32, - /// offset: 100 - #[prost(uint32, tag = "3")] - pub cjkcnhclmgd: u32, - /// offset: 76 - #[prost(uint32, tag = "1855")] - pub cpbdbaidaeh: u32, - /// offset: 108 + /// offset: 44 + #[prost(uint32, tag = "12")] + pub allmamnmdei: u32, + /// offset: 48 #[prost(uint32, tag = "13")] - pub bbbgkchnock: u32, - /// offset: 84 - #[prost(uint32, tag = "4")] - pub gbemdnckkba: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "14")] - pub mfafnncjjng: ::prost::alloc::vec::Vec, + pub fpodedjcegc: u32, + /// offset: 52 + #[prost(bool, tag = "1")] + pub ceicihhhjdc: bool, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub bgdoekpckeb: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub ipjifkacjij: u32, } -/// Obf: NHENNNBHLCA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8173)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraSetLineupCsReq { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub lineup: ::core::option::Option, -} -/// Obf: IGCADEMMOKK +#[cmdid(8170)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ebnikjnjmbd {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8179)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraSetLineupScRsp { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub lineup: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] +#[cmdid(8180)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hkfibmbcpnk { + /// offset: 24 + #[prost(uint32, tag = "5")] pub retcode: u32, } -/// Obf: BKHCMDINFJN #[derive(proto_derive::CmdID)] -#[cmdid(8163)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraFinishRoundCsReq { - /// offset: 24 - #[prost(map = "uint32, uint32", tag = "13")] - pub bahhnmlhalj: ::std::collections::HashMap, - /// offset: 48 - #[prost(message, optional, tag = "4")] - pub stt: ::core::option::Option, - /// offset: 80 - #[prost(uint32, tag = "9")] - pub hjoeamdlbpl: u32, +pub struct Kjaodlphkff { /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub hgodgdeaajo: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] + pub mgjajpkhglp: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "2")] + pub pekcobnhpnf: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "5")] + pub allmamnmdei: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub stt: ::core::option::Option, /// offset: 32 - #[prost(message, repeated, tag = "12")] - pub opamaeijcoh: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(enumeration = "Biakdfeljfm", tag = "3")] - pub hbgclmcgnfm: i32, - /// offset: 64 - #[prost(message, optional, tag = "2")] - pub lineup: ::core::option::Option, - /// offset: 40 - #[prost(map = "uint32, message", tag = "7")] - pub mlbaljkcmcg: ::std::collections::HashMap, - /// offset: 76 - #[prost(bool, tag = "1")] - pub molidikifgb: bool, + #[prost(message, optional, tag = "12")] + pub lineup: ::core::option::Option, + /// offset: 56 + #[prost(bool, tag = "10")] + pub ceicihhhjdc: bool, } -/// Obf: MBPCAMJPKMA +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8175)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraFinishRoundScRsp { - /// offset: 32 - #[prost(map = "uint32, message", tag = "8")] - pub ghkgcfclabf: ::std::collections::HashMap, - /// offset: 72 - #[prost(enumeration = "Biakdfeljfm", tag = "11")] - pub hbgclmcgnfm: i32, - /// offset: 97 - #[prost(bool, tag = "10")] - pub molidikifgb: bool, - /// offset: 64 +pub struct Okomobednpf { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub gpnkpjpiice: ::prost::alloc::vec::Vec, + /// offset: 44 #[prost(uint32, tag = "3")] - pub ijeiommfpka: u32, + pub allmamnmdei: u32, /// offset: 68 #[prost(uint32, tag = "6")] - pub jfpnmoonlnj: u32, - /// offset: 80 - #[prost(enumeration = "Oapdmkkkeol", tag = "14")] - pub bbmgiimecel: i32, - /// offset: 84 - #[prost(uint32, tag = "1")] - pub olldkajoajd: u32, - /// offset: 76 - #[prost(uint32, tag = "2")] - pub cjkcnhclmgd: u32, - /// offset: 88 - #[prost(uint32, tag = "4")] - pub eaiojcnlmng: u32, - /// offset: 96 - #[prost(bool, tag = "15")] - pub jieifdocohe: bool, - /// offset: 40 - #[prost(map = "uint32, message", tag = "13")] - pub nahpkppmdkk: ::std::collections::HashMap, - /// offset: 48 - #[prost(uint32, repeated, tag = "5")] - pub mfafnncjjng: ::prost::alloc::vec::Vec, - /// offset: 92 - #[prost(uint32, tag = "7")] pub retcode: u32, /// offset: 56 - #[prost(message, repeated, tag = "9")] - pub goiakpgjlcb: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub ncdaoblmhhp: ::prost::alloc::vec::Vec, -} -/// Obf: AMCAGDKFNLA -#[derive(proto_derive::CmdID)] -#[cmdid(8168)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChimeraStartEndlessCsReq {} -/// Obf: AIFMPIGKCGP -#[derive(proto_derive::CmdID)] -#[cmdid(8171)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChimeraStartEndlessScRsp { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: IMAACGNDEDK -#[derive(proto_derive::CmdID)] -#[cmdid(8170)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraFinishEndlessRoundCsReq { - /// offset: 60 - #[prost(uint32, tag = "7")] - pub cpbdbaidaeh: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub hgodgdeaajo: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub lineup: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub stt: ::core::option::Option, - /// offset: 56 - #[prost(bool, tag = "3")] - pub pahmagpfddj: bool, - /// offset: 48 - #[prost(message, repeated, tag = "8")] - pub opamaeijcoh: ::prost::alloc::vec::Vec, -} -/// Obf: FKGECNEDFJB -#[derive(proto_derive::CmdID)] -#[cmdid(8176)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraFinishEndlessRoundScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub igagibnelck: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(bool, tag = "10")] - pub pahmagpfddj: bool, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub lfkfocjfncj: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub cpbdbaidaeh: u32, - /// offset: 48 - #[prost(uint32, tag = "12")] - pub bbbgkchnock: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 52 - #[prost(uint32, tag = "13")] - pub aebjngimhcj: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub gbemdnckkba: u32, -} -/// Obf: GIGMKHMONPI -#[derive(proto_derive::CmdID)] -#[cmdid(8178)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChimeraQuitEndlessCsReq {} -/// Obf: HAPEJPNCICF -#[derive(proto_derive::CmdID)] -#[cmdid(8166)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChimeraQuitEndlessScRsp { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -/// Obf: LCBCPIPHIMN -#[derive(proto_derive::CmdID)] -#[cmdid(8174)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraDoFinalRoundCsReq { - /// offset: 56 - #[prost(bool, tag = "8")] - pub pahmagpfddj: bool, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub stt: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub opamaeijcoh: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "6")] - pub lineup: ::core::option::Option, - /// offset: 48 - #[prost(uint32, repeated, tag = "12")] - pub hgodgdeaajo: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "4")] - pub cpbdbaidaeh: u32, -} -/// Obf: CLKGPDAIAME -#[derive(proto_derive::CmdID)] -#[cmdid(8180)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraDoFinalRoundScRsp { - /// offset: 44 #[prost(uint32, tag = "10")] - pub index: u32, - /// offset: 48 - #[prost(bool, tag = "13")] - pub pahmagpfddj: bool, - /// offset: 68 - #[prost(uint32, tag = "4")] - pub jfpnmoonlnj: u32, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub igagibnelck: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "7")] - pub eaiojcnlmng: u32, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub cagaplnhabb: u32, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub ncdaoblmhhp: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "15")] - pub cpbdbaidaeh: u32, - /// offset: 52 - #[prost(uint32, tag = "6")] - pub olldkajoajd: u32, - /// offset: 56 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: HMLGEPFNKDJ -#[derive(proto_derive::CmdID)] -#[cmdid(8177)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChimeraRoundWorkStartCsReq { - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub opamaeijcoh: ::prost::alloc::vec::Vec, + pub ikgljclfehe: u32, /// offset: 32 - #[prost(message, optional, tag = "13")] - pub lineup: ::core::option::Option, + #[prost(message, repeated, tag = "2")] + pub cjaifjidmld: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "9")] - pub mdfeekikbmj: u32, - /// offset: 44 - #[prost(uint32, tag = "12")] - pub flgjpheopaa: u32, + pub ldfkbjdcilo: u32, + /// offset: 48 + #[prost(bool, tag = "7")] + pub ceicihhhjdc: bool, + /// offset: 52 + #[prost(uint32, tag = "1")] + pub index: u32, + /// offset: 60 + #[prost(uint32, tag = "4")] + pub aanolfmhnoa: u32, + /// offset: 64 + #[prost(uint32, tag = "13")] + pub obiifeibgik: u32, } -/// Obf: MKGBDLADHNK +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8179)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Edkdbkodjna { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub lineup: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub alboidnceef: u32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub fipeojgdmha: u32, + /// offset: 32 + #[prost(message, repeated, tag = "3")] + pub pekcobnhpnf: ::prost::alloc::vec::Vec, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8162)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChimeraRoundWorkStartScRsp { +pub struct Mmpamlgkgfg { /// offset: 24 #[prost(uint32, tag = "8")] pub retcode: u32, } -/// Obf: PHNFMMBJABG #[derive(proto_derive::CmdID)] -#[cmdid(7226)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lapmjbmfapf { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub hnmjpdhcadf: u32, + /// offset: 32 + #[prost(enumeration = "Ipfkdopibck", tag = "12")] + pub phkopcbnocc: i32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub llaieicnihj: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ajidikdkeea { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub rank: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub score_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fccmckfdnhh { + /// offset: 56 + #[prost(uint32, repeated, tag = "14")] + pub kbjjlcbldep: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "3")] + pub najlieojopa: u32, + /// offset: 48 + #[prost(uint32, repeated, tag = "6")] + pub fkinkcalamf: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub lolbkfaecdk: ::core::option::Option, + /// offset: 80 + #[prost(uint32, tag = "1")] + pub iaclofhicmm: u32, + /// offset: 64 + #[prost(uint32, tag = "10")] + pub gcejdmegjcb: u32, + /// offset: 76 + #[prost(uint32, tag = "2")] + pub ifkjmcihgcl: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "5")] + pub agaiaooopph: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "9")] + pub danakdffkpl: u32, + /// offset: 16 + #[prost(message, repeated, tag = "4")] + pub dlkmlpnahgh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Egbhfendndn { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub unique_id: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub item_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cbampgmkhlb { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub dccodohidnb: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub unique_id: u32, + /// offset: 48 + #[prost(int32, tag = "13")] + pub fokhchmnnai: i32, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub kjpojdjgljn: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub exp: u32, + /// offset: 44 + #[prost(int32, tag = "2")] + pub eogbeafacjm: i32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub fdjdgkhekng: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pknnbmecidb { + /// offset: 40 + #[prost(uint32, repeated, tag = "3")] + pub nmhhnnmecgh: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub hp: u32, + /// offset: 68 + #[prost(uint32, tag = "2")] + pub rank: u32, + /// offset: 16 + #[prost(string, tag = "12")] + pub nickname: ::prost::alloc::string::String, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub bdlchlkjfok: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "14")] + pub famgkmjmhnh: u32, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub head_icon: u32, + /// offset: 48 + #[prost(uint32, tag = "15")] + pub uid: u32, + /// offset: 60 + #[prost(uint32, tag = "11")] + pub aacojcnfpmf: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ambncgliemk { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub jdlpggcpcbk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nodabeiiiha { + /// offset: 36 + #[prost(uint32, tag = "10")] + pub ncdmklmgnki: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub edpjcopnagg: u32, + /// offset: 24 + #[prost(bool, tag = "8")] + pub eboafiaodfm: bool, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub kjpojdjgljn: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub gmbhfoclice: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Piaenopnmck { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub item_id: u32, + /// offset: 24 + #[prost(bool, tag = "15")] + pub eboafiaodfm: bool, + /// offset: 25 + #[prost(bool, tag = "4")] + pub fckoiibaici: bool, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub ejkfeaghfmk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Epknnfjccng { + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub anbodlhgdih: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub gnkcdefccpd: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9244)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gcajbficccl { + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub jfkjkokilbl: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub gpchonljain: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub gfkknknmngi: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9230)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Afnhgdhfpgo { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9217)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Miiepdaigch { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub ejkfeaghfmk: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub foibjpfeank: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9237)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nifbffobean { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9220)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oihhmibgpia { + /// offset: 36 + #[prost(bool, tag = "11")] + pub is_locked: bool, + #[prost(oneof = "oihhmibgpia::Mlneddhojgc", tags = "12, 15")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `OIHHMIBGPIA`. +pub mod oihhmibgpia { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(uint32, tag = "12")] + Edpjcopnagg(u32), + /// offset: 16 + #[prost(uint32, tag = "15")] + Ejkfeaghfmk(u32), + } +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9260)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aipgpjmnocb { + /// offset: 32 + #[prost(bool, tag = "7")] + pub is_locked: bool, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub retcode: u32, + #[prost(oneof = "aipgpjmnocb::Mlneddhojgc", tags = "13, 3")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `AIPGPJMNOCB`. +pub mod aipgpjmnocb { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(uint32, tag = "13")] + Edpjcopnagg(u32), + /// offset: 16 + #[prost(uint32, tag = "3")] + Ejkfeaghfmk(u32), + } +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9250)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ikibclkmnjj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9236)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gdngcfmfjia { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Moffhgibeop { + /// offset: 56 + #[prost(uint32, tag = "13")] + pub omahinbdbpi: u32, + /// offset: 32 + #[prost(message, repeated, tag = "3")] + pub bdlchlkjfok: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "15")] + pub aacojcnfpmf: u32, + /// offset: 60 + #[prost(uint32, tag = "1")] + pub mancccancgf: u32, + /// offset: 68 + #[prost(uint32, tag = "2")] + pub lpbkdmlhked: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub odpplgcnjge: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "12")] + pub eogimijogld: u32, + /// offset: 72 + #[prost(uint32, tag = "4")] + pub famgkmjmhnh: u32, + /// offset: 76 + #[prost(uint32, tag = "7")] + pub hp: u32, + #[prost(oneof = "moffhgibeop::Maefeapkffb", tags = "203, 1921")] + pub maefeapkffb: ::core::option::Option, +} +/// Nested message and enum types in `MOFFHGIBEOP`. +pub mod moffhgibeop { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Maefeapkffb { + /// offset: 40 + #[prost(message, tag = "203")] + Dkkcpgnmhia(super::Epknnfjccng), + /// offset: 40 + #[prost(message, tag = "1921")] + Abildabdkcc(super::Ambncgliemk), + } +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9229)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cjgiapjkidl {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9212)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Daedkdpbmim { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub joafglccakb: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "13")] + pub mcnnaljcobc: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9245)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Happjbcbmgc { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub famgkmjmhnh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9243)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gmdgfjlkgkf { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub iaclofhicmm: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub famgkmjmhnh: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9241)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ehpcncmnboh { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub famgkmjmhnh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9235)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Imnegokaghm { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub mcnnaljcobc: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9256)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ggknjfglkke {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9227)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nenfnaaclgl { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub mcnnaljcobc: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fplglocdchf { + /// offset: 44 + #[prost(uint32, tag = "5")] + pub afalhijfmaj: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub najlieojopa: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub mcnnaljcobc: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub lolbkfaecdk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mighfokkhmc { + /// offset: 56 + #[prost(uint32, tag = "2")] + pub level: u32, + /// offset: 44 + #[prost(uint32, tag = "7")] + pub kjpojdjgljn: u32, + /// offset: 28 + #[prost(int32, tag = "5")] + pub jddjkfifcih: i32, + /// offset: 64 + #[prost(int32, tag = "3")] + pub hp: i32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub fcaabakelgk: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub exp: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub igbpciblnbh: u32, + /// offset: 48 + #[prost(uint32, tag = "9")] + pub pmgbofgcijk: u32, + /// offset: 52 + #[prost(uint32, tag = "12")] + pub index: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub unique_id: u32, + /// offset: 72 + #[prost(uint32, tag = "14")] + pub gmbhfoclice: u32, + /// offset: 68 + #[prost(uint32, tag = "10")] + pub ghkkjkebejg: u32, + /// offset: 60 + #[prost(enumeration = "Belfhimennn", tag = "4")] + pub status: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mbndeemllin { + /// offset: 36 + #[prost(uint32, tag = "3")] + pub total_turns: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub pnapieiflni: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub eiefoljialc: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub pajjebalehh: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub total_auto_turns: u32, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub eoganjdjgke: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Idgfgdhjlcd { + /// offset: 52 + #[prost(uint32, tag = "9")] + pub total_damage: u32, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub ciklmnfggno: ::core::option::Option, + /// offset: 40 + #[prost(message, repeated, tag = "1")] + pub jfincaapdln: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub einbeadlmhl: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "11")] + pub cost_time: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9222)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cjegeaeejnp { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub pfcgnadljhd: u32, + /// offset: 36 + #[prost(enumeration = "Flkaipgjeni", tag = "3")] + pub aamaolkegdj: i32, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub stt: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9219)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fpeoncpamoi { + /// offset: 40 + #[prost(enumeration = "Flkaipgjeni", tag = "8")] + pub aamaolkegdj: i32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + #[prost(oneof = "fpeoncpamoi::Mlneddhojgc", tags = "599, 672")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `FPEONCPAMOI`. +pub mod fpeoncpamoi { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "599")] + Mcnnaljcobc(super::Moffhgibeop), + /// offset: 16 + #[prost(message, tag = "672")] + Hcdidfopkeb(super::Fplglocdchf), + } +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9223)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pbgekeeihci {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9253)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mjimhknamcd { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub hcdidfopkeb: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Apkldnmlflc { + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub jfkjkokilbl: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kgagpnleakl { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub nhdlaeijgge: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "8")] + pub ldedjkfkoec: u32, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub source: ::core::option::Option, + #[prost(oneof = "kgagpnleakl::Nbedlhdifng", tags = "485, 989, 977")] + pub nbedlhdifng: ::core::option::Option, +} +/// Nested message and enum types in `KGAGPNLEAKL`. +pub mod kgagpnleakl { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Nbedlhdifng { + /// offset: 16 + #[prost(enumeration = "super::Cjjdahejiga", tag = "485")] + Dbnajjelomf(i32), + /// offset: 16 + #[prost(uint32, tag = "989")] + Hhaldiffbgk(u32), + /// offset: 16 + #[prost(message, tag = "977")] + Hdongnkfpji(super::Apkldnmlflc), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eeeidhocgmc { + /// offset: 16 + #[prost(uint32, repeated, tag = "3")] + pub nmhhnnmecgh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jdickncnaod { + /// offset: 32 + #[prost(bool, tag = "15")] + pub cbfgnaadfcn: bool, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub bncehkpmhjl: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Boeipconmnm { + #[prost( + oneof = "boeipconmnm::Paiigoggofj", + tags = "10, 8, 11, 4, 14, 1, 2, 3, 9, 7, 5" + )] + pub paiigoggofj: ::core::option::Option, +} +/// Nested message and enum types in `BOEIPCONMNM`. +pub mod boeipconmnm { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Paiigoggofj { + /// offset: 16 + #[prost(message, tag = "10")] + Cjghjhdjook(super::Kgagpnleakl), + /// offset: 16 + #[prost(uint32, tag = "8")] + Jeabpdpcmga(u32), + /// offset: 16 + #[prost(message, tag = "11")] + Klijpkljnfo(super::Cbampgmkhlb), + /// offset: 16 + #[prost(uint32, tag = "4")] + Mcnkaaeamhp(u32), + /// offset: 16 + #[prost(message, tag = "14")] + Kdpedodnoke(super::Jdickncnaod), + /// offset: 16 + #[prost(message, tag = "1")] + Oieipkflbjd(super::Eeeidhocgmc), + /// offset: 16 + #[prost(uint32, tag = "2")] + Gpchonljain(u32), + /// offset: 16 + #[prost(uint32, tag = "3")] + Bnghhbjlibk(u32), + /// offset: 16 + #[prost(uint32, tag = "9")] + Iaclofhicmm(u32), + /// offset: 16 + #[prost(message, tag = "7")] + Apegiodokhn(super::Mioanmembfo), + /// offset: 16 + #[prost(uint32, tag = "5")] + Danakdffkpl(u32), + } +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(9233)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nackbgdhdic { + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub eamakkonfje: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9226)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hbplljkpeia { + /// offset: 36 + #[prost(uint32, tag = "8")] + pub mbgdedknmhn: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub nmhhnnmecgh: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub mgeilegcnpj: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9234)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hgdldldkfjd { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub nmhhnnmecgh: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9246)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iagepphbbpc { + /// offset: 24 + #[prost(uint32, repeated, tag = "14")] + pub nmhhnnmecgh: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub edpjcopnagg: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9224)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aekejpohhlo { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "1")] + pub nmhhnnmecgh: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub edpjcopnagg: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9249)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nodcklphmim { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub najlieojopa: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9211)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bnineboobca { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub najlieojopa: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cleajeffmlp { + /// offset: 40 + #[prost(uint32, tag = "11")] + pub famgkmjmhnh: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub nmhhnnmecgh: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub bdlchlkjfok: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mioanmembfo { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub slot: u32, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub lineup: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9255)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gndnngomnpb { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub slot: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9228)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mihenfclphe { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub slot: u32, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub lineup: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9221)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gblkbgalmib { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub slot: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9239)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dnkcjelfhok { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub slot: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9254)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dnlbfeelooa {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Janmncikfhk { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub uid: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub score_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub lineup: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9257)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ockfhjahccj { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub friend_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9240)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ommklgojjmb { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub famgkmjmhnh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9214)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kameillbjof { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub famgkmjmhnh: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7219)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClockParkGetInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nlljbbcjiam { - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub odogfhenjep: ::prost::alloc::vec::Vec, +pub struct Keljljnakbd { + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub kbcgheoolnb: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "8")] - pub clkeoehplng: u32, + #[prost(uint32, tag = "5")] + pub script_id: u32, } -/// Obf: FFOPBLNLPGI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7228)] +#[cmdid(7202)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClockParkGetInfoScRsp { - /// offset: 52 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "11")] - pub ibjpcofdlji: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "14")] - pub ediajgcbpfo: u32, - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub bnfhfhefmem: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub jmfhcbgebak: u32, /// offset: 48 #[prost(uint32, tag = "13")] - pub gfadcahlkfp: u32, + pub hhggapconmg: u32, /// offset: 40 - #[prost(uint32, tag = "10")] - pub progress: u32, -} -/// Obf: POHKPBOBJEA -#[derive(proto_derive::CmdID)] -#[cmdid(7205)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClockParkUnlockTalentCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub talent_id: u32, -} -/// Obf: EPOOLCKMMKB -#[derive(proto_derive::CmdID)] -#[cmdid(7227)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClockParkUnlockTalentScRsp { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub talent_id: u32, - /// offset: 24 #[prost(uint32, tag = "1")] pub retcode: u32, -} -/// Obf: IKMEOFEDGFD -#[derive(proto_derive::CmdID)] -#[cmdid(7220)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ClockParkStartScriptCsReq { + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub pjnpanfdkhb: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "6")] + pub progress: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub jmojeoalclo: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub clkeoehplng: u32, + #[prost(uint32, repeated, tag = "15")] + pub cmknheecflc: ::prost::alloc::vec::Vec, } -/// Obf: ELDBJPOGEIF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7244)] +#[cmdid(7235)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClockParkStartScriptScRsp { +pub struct Fagpoldodgp { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub gjjkacomphd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7233)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jiobhlopkhb { /// offset: 24 #[prost(uint32, tag = "11")] - pub clkeoehplng: u32, + pub gjjkacomphd: u32, /// offset: 28 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "5")] pub retcode: u32, } -/// Obf: HMODIPBDAMG -#[derive(proto_derive::CmdID)] -#[cmdid(7201)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClockParkGetOngoingScriptInfoCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lnihjdaildj {} +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(7231)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Accbigfanoa { - /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub pneoolflnlk: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub card_id: u32, +pub struct Cchimmemkbo { /// offset: 32 #[prost(uint32, tag = "12")] - pub bjkhpadclhi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hdckchpdmmi { + pub script_id: u32, /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub card_data_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "2")] - pub pneoolflnlk: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub dljchjijllb: ::prost::alloc::vec::Vec, } +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nnccfpoockh { - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub ancpcpcljed: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Machndhamnm { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub ancpcpcljed: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ifbdbdccopo { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub ancpcpcljed: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Glijklooapa { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub ecfagnkdaef: u32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub ancpcpcljed: ::core::option::Option, - /// offset: 32 +#[cmdid(7225)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fknhmacbhlp { + /// offset: 28 #[prost(uint32, tag = "1")] - pub gacha_random: u32, + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub script_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7246)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jmcmmnkaneo {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kdggfdpkimd {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Glfigaikkfk { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub npkmfdeodfk: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub card_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub eapdlbophbn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Anbankmlclh { +pub struct Hbomaegllll { /// offset: 16 - #[prost(message, optional, tag = "7")] - pub ancpcpcljed: ::core::option::Option, + #[prost(message, repeated, tag = "2")] + pub dgjogacbmfa: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub eapdlbophbn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dhmoklcacki { + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub jgncddklpka: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hfhdcplnhfi { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub jgncddklpka: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Empihadhnel { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub jgncddklpka: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Doonlghijke { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub gacha_random: u32, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub jgncddklpka: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "4")] + pub kpfionocahn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Koionopapjo { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub jgncddklpka: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eppnkgolaap { +pub struct Ngldnoadgam { /// offset: 24 - #[prost(bool, tag = "3")] - pub bgdoijphfdb: bool, + #[prost(bool, tag = "13")] + pub piafedffjpk: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lkbbkojddpd { +pub struct Ccmmjoooadn { /// offset: 36 - #[prost(uint32, tag = "7")] - pub ahidjbjggpp: u32, - #[prost(oneof = "lkbbkojddpd::Acnpgajffhi", tags = "15, 12, 2, 1, 8, 14, 6, 3")] - pub acnpgajffhi: ::core::option::Option, + #[prost(uint32, tag = "4")] + pub mancccancgf: u32, + #[prost(oneof = "ccmmjoooadn::Lhcefkfmckg", tags = "12, 15, 13, 8, 5, 11, 7, 10")] + pub lhcefkfmckg: ::core::option::Option, } -/// Nested message and enum types in `LKBBKOJDDPD`. -pub mod lkbbkojddpd { +/// Nested message and enum types in `CCMMJOOOADN`. +pub mod ccmmjoooadn { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Acnpgajffhi { - /// offset: 16 - #[prost(message, tag = "15")] - Pnimpjfilgf(super::Lnihjdaildj), + pub enum Lhcefkfmckg { /// offset: 16 #[prost(message, tag = "12")] - Dhleejmiimo(super::Nnccfpoockh), + Ekncigeaahk(super::Kdggfdpkimd), /// offset: 16 - #[prost(message, tag = "2")] - Oeofnnbljik(super::Machndhamnm), + #[prost(message, tag = "15")] + Algjibggjel(super::Dhmoklcacki), /// offset: 16 - #[prost(message, tag = "1")] - Gpbgdcmjhln(super::Ifbdbdccopo), + #[prost(message, tag = "13")] + Epfcjlnpiik(super::Hfhdcplnhfi), /// offset: 16 #[prost(message, tag = "8")] - Lnkpgggkmnk(super::Glijklooapa), + Cpffhadfjbk(super::Empihadhnel), /// offset: 16 - #[prost(message, tag = "14")] - Aenefmcbfgm(super::Anbankmlclh), + #[prost(message, tag = "5")] + Nemdmgkodok(super::Doonlghijke), /// offset: 16 - #[prost(message, tag = "6")] - Bciighioapl(super::Eppnkgolaap), + #[prost(message, tag = "11")] + Emendgpmfne(super::Koionopapjo), /// offset: 16 - #[prost(bool, tag = "3")] - Gneooaifkib(bool), + #[prost(message, tag = "7")] + Aohjggelein(super::Ngldnoadgam), + /// offset: 16 + #[prost(bool, tag = "10")] + Ahghdpgpglc(bool), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bmlofpcngkn { - /// offset: 24 - #[prost(int32, tag = "5")] - pub ofcndemappl: i32, +pub struct Bhibbbibdbk { /// offset: 28 - #[prost(int32, tag = "10")] - pub djfhcddifmi: i32, + #[prost(int32, tag = "15")] + pub onalkfbokbb: i32, /// offset: 32 - #[prost(int32, tag = "7")] - pub ihlhdpnaekc: i32, + #[prost(int32, tag = "10")] + pub idkoicdbkli: i32, + /// offset: 24 + #[prost(int32, tag = "11")] + pub aoecjfljjdj: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ioncppdejej { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub feonehhcjjm: u32, - /// offset: 24 - #[prost(uint64, tag = "11")] - pub unique_id: u64, +pub struct Idalcogdlck { /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub buff_id: u32, + /// offset: 24 + #[prost(uint64, tag = "8")] + pub unique_id: u64, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub gkmgkmhenoo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ecmilhckomo { +pub struct Mcaabjjaakh { /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub buff_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub buff_list: ::prost::alloc::vec::Vec, } -/// Obf: EHPCJHHNFAJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7245)] +#[cmdid(7217)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ClockParkGetOngoingScriptInfoScRsp { - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub mjdogpbojip: ::core::option::Option, - /// offset: 48 - #[prost(string, tag = "10")] - pub cmgkeolcbip: ::prost::alloc::string::String, - /// offset: 88 - #[prost(uint32, tag = "15")] - pub aigehhnhkpm: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub eidlleolfgm: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "11")] - pub kiekjeffphk: u32, - /// offset: 76 - #[prost(uint32, tag = "2")] - pub obpfblnbfki: u32, - /// offset: 80 - #[prost(uint32, tag = "12")] - pub clkeoehplng: u32, - /// offset: 84 - #[prost(uint32, tag = "4")] - pub blhgbednfib: u32, - /// offset: 68 - #[prost(uint32, tag = "3")] - pub chobaogmlfn: u32, +pub struct Lfodgnfbpob { /// offset: 64 #[prost(uint32, tag = "9")] - pub retcode: u32, + pub cmlelldmboe: u32, + /// offset: 76 + #[prost(uint32, tag = "7")] + pub oghefideemm: u32, /// offset: 56 - #[prost(message, optional, tag = "5")] - pub lgopnbhhhbg: ::core::option::Option, - /// offset: 40 #[prost(message, optional, tag = "13")] - pub ienphefangl: ::core::option::Option, + pub cccinfhcjjh: ::core::option::Option, + /// offset: 88 + #[prost(uint32, tag = "3")] + pub kimfnaohlhm: u32, + /// offset: 80 + #[prost(uint32, tag = "8")] + pub script_id: u32, + /// offset: 24 + #[prost(string, tag = "14")] + pub ihbpenegccb: ::prost::alloc::string::String, + /// offset: 40 + #[prost(uint32, repeated, tag = "15")] + pub paflmlamlgm: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "2")] + pub odiccaangig: u32, + /// offset: 68 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 72 + #[prost(uint32, tag = "11")] + pub meehanlepkk: u32, + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub boncaalanbg: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub jjpknoppkfg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Obnonmhmeck {} +pub struct Jbogcofobdh {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ffomibncfki { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub ancpcpcljed: ::core::option::Option, +pub struct Opmnjnkonof { + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub jgncddklpka: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ajehamdabna { - /// offset: 28 +pub struct Cfedgdhphid { + /// offset: 24 #[prost(bool, tag = "7")] pub is_win: bool, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub omddfkmaape: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub knhdjoohnmm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Amghdcabjmj { - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] +pub struct Cojgbhnabba { + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] pub avatar_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Innnicfolii { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub gacha_random: u32, +pub struct Ndhmfffnjmf { /// offset: 28 - #[prost(bool, tag = "15")] - pub jcnodamfffc: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ceoonflondj { - /// offset: 28 - #[prost(bool, tag = "8")] - pub is_win: bool, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub omddfkmaape: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Helnoihmdha {} -/// Obf: ELGHHAKOKPB -#[derive(proto_derive::CmdID)] -#[cmdid(7243)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ClockParkHandleWaitOperationCsReq { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub ahidjbjggpp: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub clkeoehplng: u32, - #[prost( - oneof = "clock_park_handle_wait_operation_cs_req::Dejmpmfhioc", - tags = "15, 11, 7, 12, 2, 14, 4, 1" - )] - pub dejmpmfhioc: ::core::option::Option< - clock_park_handle_wait_operation_cs_req::Dejmpmfhioc, - >, -} -/// Nested message and enum types in `ClockParkHandleWaitOperationCsReq`. -pub mod clock_park_handle_wait_operation_cs_req { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Dejmpmfhioc { - /// offset: 16 - #[prost(message, tag = "15")] - Jfbckclpako(super::Obnonmhmeck), - /// offset: 16 - #[prost(message, tag = "11")] - Ipikflcefla(super::Ffomibncfki), - /// offset: 16 - #[prost(message, tag = "7")] - Megnbbfilnl(super::Ajehamdabna), - /// offset: 16 - #[prost(message, tag = "12")] - Abkkdhapchn(super::Amghdcabjmj), - /// offset: 16 - #[prost(message, tag = "2")] - Lihjmeingik(super::Innnicfolii), - /// offset: 16 - #[prost(message, tag = "14")] - Lmgglcncdhf(super::Ceoonflondj), - /// offset: 16 - #[prost(message, tag = "4")] - Fngfoaepfjn(super::Helnoihmdha), - /// offset: 16 - #[prost(uint32, tag = "1")] - Obpfblnbfki(u32), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mdjlojfmemc { - /// offset: 44 - #[prost(uint32, tag = "1")] - pub kiekjeffphk: u32, - /// offset: 41 - #[prost(bool, tag = "2")] - pub kfdaicilnmb: bool, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub clkeoehplng: u32, - /// offset: 40 - #[prost(bool, tag = "3")] - pub eeehghkocji: bool, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub reward: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "4")] - pub aigehhnhkpm: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub progress: u32, -} -/// Obf: LBGJOELCNHC -#[derive(proto_derive::CmdID)] -#[cmdid(7203)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ClockParkHandleWaitOperationScRsp { - /// offset: 48 - #[prost(enumeration = "Egblomhgijm", tag = "9")] - pub jfkdbmdomnk: i32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub ahidjbjggpp: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub ficfgdnhnge: u32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub battle_info: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub koijfoffjnj: u32, -} -/// Obf: HAEOGLJFLGE -#[derive(proto_derive::CmdID)] -#[cmdid(7223)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClockParkQuitScriptCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub clkeoehplng: u32, - /// offset: 28 - #[prost(bool, tag = "8")] - pub khnhpgdeimm: bool, -} -/// Obf: FAPAGKJIBAJ -#[derive(proto_derive::CmdID)] -#[cmdid(7219)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClockParkQuitScriptScRsp { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: LJMIHCBEGLJ -#[derive(proto_derive::CmdID)] -#[cmdid(7230)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClockParkBattleEndScNotify { - /// offset: 24 #[prost(uint32, tag = "15")] - pub ahidjbjggpp: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -/// Obf: AKIGDDCAHOL -#[derive(proto_derive::CmdID)] -#[cmdid(7229)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ClockParkUseBuffCsReq { - /// offset: 32 - #[prost(uint64, tag = "2")] - pub unique_id: u64, + pub gacha_random: u32, /// offset: 24 - #[prost(uint32, tag = "7")] - pub ahidjbjggpp: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub clkeoehplng: u32, + #[prost(bool, tag = "7")] + pub kfejpikjckf: bool, } -/// Obf: LEOEDAODJNM #[derive(proto_derive::CmdID)] -#[cmdid(7235)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ClockParkUseBuffScRsp { - /// offset: 48 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub ahidjbjggpp: u32, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub clkeoehplng: u32, - /// offset: 32 - #[prost(message, optional, tag = "4")] - pub lgopnbhhhbg: ::core::option::Option, - #[prost(oneof = "clock_park_use_buff_sc_rsp::Dblaaokfnih", tags = "1544, 342")] - pub dblaaokfnih: ::core::option::Option, +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ooogliagkfc { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub knhdjoohnmm: u32, + /// offset: 28 + #[prost(bool, tag = "14")] + pub is_win: bool, } -/// Nested message and enum types in `ClockParkUseBuffScRsp`. -pub mod clock_park_use_buff_sc_rsp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Dblaaokfnih { - /// offset: 24 - #[prost(message, tag = "1544")] - Ancpcpcljed(super::Hdckchpdmmi), - /// offset: 24 - #[prost(message, tag = "342")] - Mjdogpbojip(super::Bmlofpcngkn), - } -} -/// Obf: GFGGJLLCNIB +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Giojoomhbda {} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7212)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ClockParkFinishScriptScNotify { +pub struct Bmdpjkogjdm { + /// offset: 36 + #[prost(uint32, tag = "9")] + pub script_id: u32, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub mancccancgf: u32, + #[prost(oneof = "bmdpjkogjdm::Mlofipbnfll", tags = "8, 11, 13, 1, 5, 4, 7, 15")] + pub mlofipbnfll: ::core::option::Option, +} +/// Nested message and enum types in `BMDPJKOGJDM`. +pub mod bmdpjkogjdm { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlofipbnfll { + /// offset: 16 + #[prost(message, tag = "8")] + Dncjaicoolc(super::Jbogcofobdh), + /// offset: 16 + #[prost(message, tag = "11")] + Pllflppmknh(super::Opmnjnkonof), + /// offset: 16 + #[prost(message, tag = "13")] + Iagobmmlmek(super::Cfedgdhphid), + /// offset: 16 + #[prost(message, tag = "1")] + Ebpofjelagb(super::Cojgbhnabba), + /// offset: 16 + #[prost(message, tag = "5")] + Ednheccakal(super::Ndhmfffnjmf), + /// offset: 16 + #[prost(message, tag = "4")] + Gogoalnhach(super::Ooogliagkfc), + /// offset: 16 + #[prost(message, tag = "7")] + Jdlaakgajik(super::Giojoomhbda), + /// offset: 16 + #[prost(uint32, tag = "15")] + Kimfnaohlhm(u32), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cgilginoimc { + /// offset: 33 + #[prost(bool, tag = "6")] + pub cgeacoiioik: bool, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub progress: u32, + /// offset: 48 + #[prost(uint32, tag = "9")] + pub cmlelldmboe: u32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub script_id: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub meehanlepkk: u32, + /// offset: 32 + #[prost(bool, tag = "15")] + pub jgcdebhplmi: bool, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub reward: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7209)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Feipjnnpmoc { /// offset: 24 - #[prost(message, optional, tag = "12")] - pub finish_info: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub battle_info: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub fbgidiopkbf: u32, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub mancccancgf: u32, + /// offset: 32 + #[prost(enumeration = "ClockParkPlayStatus", tag = "4")] + pub mhjaboejaji: i32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub bbobejbpkbm: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7213)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nnkemldcggp { + /// offset: 28 + #[prost(bool, tag = "15")] + pub gnikjbmmmgg: bool, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub script_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7243)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ebgildgngcl { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7207)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bpmlefkkjcg { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub mancccancgf: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7210)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jlmemdmfkgm { + /// offset: 36 + #[prost(uint32, tag = "4")] + pub mancccancgf: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub script_id: u32, + /// offset: 24 + #[prost(uint64, tag = "12")] + pub unique_id: u64, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7250)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hpdkmojigne { + /// offset: 44 + #[prost(uint32, tag = "4")] + pub script_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub boncaalanbg: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub mancccancgf: u32, + #[prost(oneof = "hpdkmojigne::Phfdcnifikn", tags = "170, 175")] + pub phfdcnifikn: ::core::option::Option, +} +/// Nested message and enum types in `HPDKMOJIGNE`. +pub mod hpdkmojigne { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Phfdcnifikn { + /// offset: 32 + #[prost(message, tag = "170")] + Jgncddklpka(super::Hbomaegllll), + /// offset: 32 + #[prost(message, tag = "175")] + Jjpknoppkfg(super::Bhibbbibdbk), + } +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7240)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hcbiodpeohe { + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub rogue_finish_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Item { - /// offset: 48 - #[prost(uint32, tag = "7")] - pub rank: u32, /// offset: 28 - #[prost(uint32, tag = "14")] - pub num: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub unique_id: u32, + #[prost(uint32, tag = "1")] + pub rank: u32, + /// offset: 48 + #[prost(uint32, tag = "9")] + pub promotion: u32, /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "10")] pub level: u32, /// offset: 36 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub item_id: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub num: u32, /// offset: 40 - #[prost(uint32, tag = "1")] - pub promotion: u32, + #[prost(uint32, tag = "5")] + pub unique_id: u32, /// offset: 44 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "15")] pub main_affix_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ItemList { - /// offset: 16 - #[prost(message, repeated, tag = "13")] + /// offset: 24 + #[prost(message, repeated, tag = "1")] pub item_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PileItem { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub item_num: u32, /// offset: 24 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "11")] pub item_id: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub item_num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ItemCost { - #[prost(oneof = "item_cost::Item", tags = "3, 10, 14")] + #[prost(oneof = "item_cost::Item", tags = "15, 14, 13")] pub item: ::core::option::Option, } /// Nested message and enum types in `ItemCost`. @@ -11846,11084 +12749,11079 @@ pub mod item_cost { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] pub enum Item { - /// offset: 16 - #[prost(message, tag = "3")] + /// offset: 24 + #[prost(message, tag = "15")] PileItem(super::PileItem), - /// offset: 16 - #[prost(uint32, tag = "10")] - EquipmentUniqueId(u32), - /// offset: 16 + /// offset: 24 #[prost(uint32, tag = "14")] + EquipmentUniqueId(u32), + /// offset: 24 + #[prost(uint32, tag = "13")] RelicUniqueId(u32), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ItemCostList { +pub struct ItemCostData { /// offset: 24 - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "12")] pub item_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iekhjdecape { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub mbejblfhcbh: u32, +pub struct Fjdpfoijcle { /// offset: 24 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub item_id: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub item_count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Akcpalgemol { - /// offset: 36 - #[prost(uint32, tag = "3")] - pub tid: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] +pub struct Dhmgahdjaif { + /// offset: 32 + #[prost(uint32, tag = "4")] pub promotion: u32, - /// offset: 40 + /// offset: 28 + #[prost(uint32, tag = "10")] + pub rank: u32, + /// offset: 24 #[prost(uint32, tag = "9")] pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] + /// offset: 40 + #[prost(uint32, tag = "1")] + pub tid: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] pub exp: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub rank: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nhdbofcfcjm { - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub sub_affix_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub main_affix_id: u32, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub exp: u32, +pub struct Ofifbfjmbfn { /// offset: 40 #[prost(uint32, tag = "5")] - pub tid: u32, + pub exp: u32, /// offset: 36 + #[prost(uint32, tag = "12")] + pub main_affix_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub sub_affix_list: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub tid: u32, + /// offset: 32 #[prost(uint32, tag = "13")] pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ndhopedofoc { - #[prost(oneof = "ndhopedofoc::Bpbopjfhloo", tags = "7, 8, 3")] - pub bpbopjfhloo: ::core::option::Option, +pub struct Gpkklclbkkp { + #[prost(oneof = "gpkklclbkkp::Kkhiojjiccm", tags = "12, 1, 7")] + pub kkhiojjiccm: ::core::option::Option, } -/// Nested message and enum types in `NDHOPEDOFOC`. -pub mod ndhopedofoc { +/// Nested message and enum types in `GPKKLCLBKKP`. +pub mod gpkklclbkkp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Bpbopjfhloo { + pub enum Kkhiojjiccm { + /// offset: 16 + #[prost(message, tag = "12")] + Deaggfnkoam(super::Fjdpfoijcle), + /// offset: 16 + #[prost(message, tag = "1")] + Fmjddlknnpb(super::Dhmgahdjaif), /// offset: 16 #[prost(message, tag = "7")] - Oekhngffgkb(super::Iekhjdecape), - /// offset: 16 - #[prost(message, tag = "8")] - Adeoigebmdf(super::Akcpalgemol), - /// offset: 16 - #[prost(message, tag = "3")] - Fhgafcjcaoa(super::Nhdbofcfcjm), + Hnpebnndaba(super::Ofifbfjmbfn), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aodidfnpicf { +pub struct Dfencahnjdm { /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub item_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "10")] + pub item_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Vector { /// offset: 24 - #[prost(sint32, tag = "12")] - pub x: i32, - /// offset: 32 - #[prost(sint32, tag = "2")] + #[prost(sint32, tag = "5")] pub z: i32, + /// offset: 32 + #[prost(sint32, tag = "14")] + pub x: i32, /// offset: 28 - #[prost(sint32, tag = "7")] + #[prost(sint32, tag = "15")] pub y: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MotionInfo { - /// offset: 16 - #[prost(message, optional, tag = "8")] + /// offset: 32 + #[prost(message, optional, tag = "3")] pub rot: ::core::option::Option, /// offset: 24 - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "12")] pub pos: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RotateVector { - /// offset: 24 - #[prost(float, tag = "3")] - pub z: f32, +pub struct Vector4 { /// offset: 36 - #[prost(float, tag = "7")] - pub x: f32, - /// offset: 28 #[prost(float, tag = "6")] - pub rotate: f32, - /// offset: 32 - #[prost(float, tag = "11")] + pub z: f32, + /// offset: 24 + #[prost(float, tag = "10")] pub y: f32, + /// offset: 28 + #[prost(float, tag = "8")] + pub x: f32, + /// offset: 32 + #[prost(float, tag = "9")] + pub w: f32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneMonsterWaveParam { /// offset: 32 - #[prost(uint32, tag = "9")] - pub dneampllfme: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub ldhmijjjffg: u32, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub hard_level_group: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub elite_group: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub jdgdabpellj: u32, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub fhekhieinaa: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub hard_level_group: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hjfmcaajkdl { - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub ncdhlinjiii: ::prost::alloc::vec::Vec, +pub struct Jkpkfehcjfp { /// offset: 32 #[prost(uint32, tag = "6")] - pub mhkhaclnbpm: u32, + pub ojhffmmafgg: u32, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub nnfidlhcchg: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ojadkcloknl { - #[prost(oneof = "ojadkcloknl::Genebcenkhc", tags = "1490")] - pub genebcenkhc: ::core::option::Option, +pub struct Bapdjoocpck { + #[prost(oneof = "bapdjoocpck::Ahioppppjbn", tags = "301")] + pub ahioppppjbn: ::core::option::Option, } -/// Nested message and enum types in `OJADKCLOKNL`. -pub mod ojadkcloknl { +/// Nested message and enum types in `BAPDJOOCPCK`. +pub mod bapdjoocpck { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Genebcenkhc { + pub enum Ahioppppjbn { /// offset: 24 - #[prost(message, tag = "1490")] - Lgmblfhdclp(super::Hjfmcaajkdl), + #[prost(message, tag = "301")] + Eeigdoojogb(super::Jkpkfehcjfp), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneMonster { + /// offset: 40 + #[prost(uint32, tag = "8")] + pub max_hp: u32, /// offset: 32 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub monster_id: u32, /// offset: 24 - #[prost(message, optional, tag = "13")] - pub extra_info: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub cur_hp: u32, + #[prost(message, optional, tag = "7")] + pub extra_info: ::core::option::Option, /// offset: 36 - #[prost(uint32, tag = "6")] - pub max_hp: u32, + #[prost(uint32, tag = "4")] + pub cur_hp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneMonsterWave { - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub jcdljghhaof: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, tag = "15")] - pub wave_id: u32, - /// offset: 52 - #[prost(uint32, tag = "3")] - pub stage_id: u32, + #[prost(uint32, tag = "13")] + pub battle_stage_id: u32, /// offset: 40 - #[prost(message, repeated, tag = "2")] + #[prost(message, repeated, tag = "12")] pub monster_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub wave_param: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "2")] + pub gkkgkebinak: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "14")] + pub battle_wave_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub monster_param: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneBattleInfo { - /// offset: 104 - #[prost(message, optional, tag = "1704")] - pub mfkjokajjmj: ::core::option::Option, - /// offset: 24 - #[prost(map = "uint32, message", tag = "1211")] + /// offset: 80 + #[prost(map = "uint32, message", tag = "1278")] pub battle_target_info: ::std::collections::HashMap, - /// offset: 136 - #[prost(uint32, tag = "14")] + /// offset: 124 + #[prost(uint32, tag = "6")] pub logic_random_seed: u32, - /// offset: 128 - #[prost(uint32, tag = "13")] - pub wave_count: u32, - /// offset: 40 - #[prost(message, repeated, tag = "1143")] - pub event_battle_info_list: ::prost::alloc::vec::Vec, - /// offset: 132 - #[prost(bool, tag = "4")] - pub nbckfdgmfdb: bool, + /// offset: 104 + #[prost(message, optional, tag = "529")] + pub jnaacndilea: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "950")] + pub mblkljhljib: ::core::option::Option, + /// offset: 96 + #[prost(message, optional, tag = "1240")] + pub eeigdoojogb: ::core::option::Option, + /// offset: 112 + #[prost(bool, tag = "13")] + pub bmibfhljeph: bool, /// offset: 120 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub rounds_limit: u32, /// offset: 32 - #[prost(message, optional, tag = "986")] - pub lgmblfhdclp: ::core::option::Option, - /// offset: 124 - #[prost(uint32, tag = "5")] + #[prost(message, repeated, tag = "7")] + pub monster_wave_list: ::prost::alloc::vec::Vec, + /// offset: 136 + #[prost(uint32, tag = "3")] + pub battle_id: u32, + /// offset: 88 + #[prost(message, optional, tag = "1355")] + pub bemadclhmef: ::core::option::Option, + /// offset: 128 + #[prost(uint32, tag = "2")] pub stage_id: u32, - /// offset: 80 - #[prost(message, optional, tag = "1609")] - pub jpgifchjdlk: ::core::option::Option, + /// offset: 132 + #[prost(uint32, tag = "5")] + pub lpgaejnblik: u32, + /// offset: 48 + #[prost(message, optional, tag = "1890")] + pub battle_rogue_magic_info: ::core::option::Option, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub battle_avatar_list: ::prost::alloc::vec::Vec, /// offset: 64 + #[prost(message, optional, tag = "1454")] + pub hjmnhbfnpfc: ::core::option::Option, + /// offset: 16 #[prost(message, repeated, tag = "12")] pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(message, optional, tag = "1559")] - pub rogue_magic_battle_info: ::core::option::Option, - /// offset: 88 - #[prost(message, optional, tag = "1458")] - pub ajgpjglpmio: ::core::option::Option, - /// offset: 112 - #[prost(uint32, tag = "9")] - pub world_level: u32, - /// offset: 16 - #[prost(message, optional, tag = "1938")] - pub gegdpnkkakg: ::core::option::Option, /// offset: 72 - #[prost(message, repeated, tag = "2")] - pub battle_avatar_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1902")] + pub battle_event: ::prost::alloc::vec::Vec, /// offset: 116 - #[prost(uint32, tag = "15")] - pub battle_id: u32, - /// offset: 56 - #[prost(message, repeated, tag = "11")] - pub monster_wave_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub world_level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bbdikgejbmp { +pub struct AetherDivideBattleInfo { + /// offset: 56 + #[prost(bool, tag = "14")] + pub bmibfhljeph: bool, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub logic_random_seed: u32, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub monster_wave_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub battle_avatar_list: ::prost::alloc::vec::Vec, /// offset: 52 + #[prost(uint32, tag = "6")] + pub battle_id: u32, + /// offset: 60 #[prost(uint32, tag = "15")] pub stage_id: u32, - /// offset: 32 - #[prost(message, repeated, tag = "2")] - pub battle_avatar_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "5")] - pub logic_random_seed: u32, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub battle_id: u32, /// offset: 40 - #[prost(message, repeated, tag = "14")] - pub monster_wave_list: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(bool, tag = "4")] - pub nbckfdgmfdb: bool, + #[prost(message, repeated, tag = "1")] + pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Phhkombgppk { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub assist_uid: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub id: u32, +pub struct Bogoikofccl { /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "8")] + #[prost(enumeration = "AvatarType", tag = "1")] pub avatar_type: i32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub assist_uid: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mbkocmmicpg { - /// offset: 40 - #[prost(bool, tag = "6")] - pub ebnkeiehnha: bool, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub return_item_list: ::core::option::Option, +pub struct Labggoepeba { /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub locked_relic_id_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "3")] + pub return_item_list: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "14")] + pub relic_ids: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(bool, tag = "9")] + pub ceabkaiggoi: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Khocchabnmn { - /// offset: 28 - #[prost(uint32, tag = "6")] - pub key: u32, +pub struct Hcdnjaibbjo { /// offset: 24 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub value: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub key: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kephnhmpfac { - /// offset: 24 - #[prost(sint32, tag = "15")] - pub value: i32, +pub struct Ciiancdbolh { /// offset: 28 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub key: u32, + /// offset: 24 + #[prost(sint32, tag = "4")] + pub value: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EquipRelic { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub relic_unique_id: u32, /// offset: 28 #[prost(uint32, tag = "3")] - pub relic_unique_id: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] pub r#type: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Inlcgkhmahe { +pub struct HeadFrameInfo { /// offset: 32 - #[prost(int64, tag = "15")] - pub bmpahpkkpdg: i64, + #[prost(int64, tag = "4")] + pub head_frame_expire_time: i64, /// offset: 24 - #[prost(uint32, tag = "5")] - pub kfolpgeaknh: u32, + #[prost(uint32, tag = "7")] + pub head_frame_item_id: u32, } -/// Obf: NGJLLIPIIEA #[derive(proto_derive::CmdID)] -#[cmdid(7526)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ContentPackageGetDataCsReq {} -/// Obf: OMIGANNPOJA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7528)] +#[cmdid(7502)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ContentPackageGetDataScRsp { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub data: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "4")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ContentInfo { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub content_id: u32, +pub struct ContentPackageInfo { /// offset: 24 - #[prost(enumeration = "ContentPackageStatus", tag = "9")] + #[prost(uint32, tag = "9")] + pub content_id: u32, + /// offset: 28 + #[prost(enumeration = "ContentPackageStatus", tag = "6")] pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PackageData { - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub info_list: ::prost::alloc::vec::Vec, +pub struct ContentPackageData { /// offset: 32 - #[prost(uint32, tag = "3")] - pub nklobnhgfhb: u32, + #[prost(uint32, tag = "9")] + pub cur_content_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub content_package_list: ::prost::alloc::vec::Vec, } -/// Obf: BAFENJAPGCK +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7521)] +#[cmdid(7548)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ContentPackageSyncDataScNotify { /// offset: 16 - #[prost(message, optional, tag = "1")] - pub data: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub data: ::core::option::Option, } -/// Obf: PGBAFKCKDMJ +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7538)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ContentPackageUnlockCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub content_id: u32, -} -/// Obf: PEDJDFLKFLL -#[derive(proto_derive::CmdID)] -#[cmdid(7505)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ContentPackageUnlockScRsp { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub content_id: u32, -} -/// Obf: CJKIDMMIHKB -#[derive(proto_derive::CmdID)] -#[cmdid(7527)] +#[cmdid(7533)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ContentPackageTransferScNotify {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DailyActivityInfo { - /// offset: 28 - #[prost(bool, tag = "15")] - pub is_has_taken: bool, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub level: u32, /// offset: 36 #[prost(uint32, tag = "11")] pub world_level: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] + /// offset: 28 + #[prost(uint32, tag = "14")] pub daily_active_point: u32, /// offset: 24 - #[prost(uint32, tag = "7")] - pub level: u32, + #[prost(bool, tag = "1")] + pub is_has_taken: bool, } -/// Obf: KLEJANCIKIG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3399)] +#[cmdid(3347)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeApRewardCsReq { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub level: u32, } -/// Obf: DFANCHBCHGC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3323)] +#[cmdid(3309)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeApRewardScRsp { - /// offset: 36 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub level: u32, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub reward: ::core::option::Option, -} -/// Obf: EKGDCAICJPH -#[derive(proto_derive::CmdID)] -#[cmdid(3398)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetDailyActiveInfoCsReq {} -/// Obf: COPNLCKMLEC -#[derive(proto_derive::CmdID)] -#[cmdid(3365)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetDailyActiveInfoScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub daily_active_level_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub daily_active_quest_id_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub daily_active_point: u32, -} -/// Obf: BLOBJAJFLKH -#[derive(proto_derive::CmdID)] -#[cmdid(3383)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DailyActiveInfoNotify { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub daily_active_quest_id_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub daily_active_level_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub daily_active_point: u32, -} -/// Obf: HPAJNLOKJNA -#[derive(proto_derive::CmdID)] -#[cmdid(3386)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeAllApRewardCsReq {} -/// Obf: KJECLEPJJCE -#[derive(proto_derive::CmdID)] -#[cmdid(3394)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeAllApRewardScRsp { - /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub fbkccpkieia: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub reward: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hiamkficmnm { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub ebmbbpinpgk: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub eoclpoepkmp: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub ghbgpekcehh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eekfecdihje { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub dgppffkihoc: u32, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub kidbbfghecn: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub dbpgefglfjj: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub jiblnlhcnkd: u32, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub odmphfaniee: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mflpamafjnc { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub kcfpiecmgbd: u32, - /// offset: 28 - #[prost(bool, tag = "7")] - pub is_success: bool, -} -/// Obf: CILOJNNLNFK -#[derive(proto_derive::CmdID)] -#[cmdid(6987)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetDrinkMakerDataCsReq {} -/// Obf: AHKIKIHJOOP -#[derive(proto_derive::CmdID)] -#[cmdid(6981)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetDrinkMakerDataScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub pcnnpejegef: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "10")] - pub pjkibodpcki: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "3")] - pub level: u32, - /// offset: 68 - #[prost(uint32, tag = "15")] - pub dhakofagdof: u32, - /// offset: 64 - #[prost(uint32, tag = "6")] - pub amefgbicgdi: u32, - /// offset: 56 - #[prost(uint32, tag = "1")] - pub hepalniojnp: u32, - /// offset: 72 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub boinombhpcl: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "14")] - pub eaolmhoaaml: u32, - /// offset: 60 - #[prost(uint32, tag = "4")] - pub exp: u32, -} -/// Obf: KBFOHKHKANJ -#[derive(proto_derive::CmdID)] -#[cmdid(6993)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MakeDrinkCsReq { - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub lpmcgnjlbgd: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub eaolmhoaaml: u32, -} -/// Obf: OFCOGMPMLFO -#[derive(proto_derive::CmdID)] -#[cmdid(6999)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MakeDrinkScRsp { - /// offset: 24 - #[prost(bool, tag = "15")] - pub is_success: bool, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub apiaceaploe: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: MIBAMEIGMED -#[derive(proto_derive::CmdID)] -#[cmdid(6983)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EndDrinkMakerSequenceCsReq {} -/// Obf: GHONBJJIJCD -#[derive(proto_derive::CmdID)] -#[cmdid(6995)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EndDrinkMakerSequenceScRsp { - /// offset: 52 - #[prost(uint32, tag = "13")] - pub amefgbicgdi: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub caikjbmngld: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "3")] - pub exp: u32, - /// offset: 40 - #[prost(message, repeated, tag = "4")] - pub lbkbnlljhmf: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "8")] - pub elngbaokfik: u32, - /// offset: 56 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub reward: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "12")] - pub level: u32, -} -/// Obf: OHIGLDPPJHI -#[derive(proto_derive::CmdID)] -#[cmdid(6988)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MakeMissionDrinkCsReq { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub lpmcgnjlbgd: ::core::option::Option, - /// offset: 36 - #[prost(bool, tag = "1")] - pub jgeaegmhdoc: bool, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub kcfpiecmgbd: u32, -} -/// Obf: JCCIKNCFFFM -#[derive(proto_derive::CmdID)] -#[cmdid(6991)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MakeMissionDrinkScRsp { - /// offset: 36 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 32 - #[prost(bool, tag = "7")] - pub jgeaegmhdoc: bool, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub boinombhpcl: ::core::option::Option, - /// offset: 33 - #[prost(bool, tag = "11")] - pub is_success: bool, -} -/// Obf: DLDNKDIKPBO -#[derive(proto_derive::CmdID)] -#[cmdid(6990)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DrinkMakerDayEndScNotify { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub ecilicnolfn: u32, -} -/// Obf: MIGGMONDLHO -#[derive(proto_derive::CmdID)] -#[cmdid(6996)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DrinkMakerChallengeCsReq { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub challenge_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub lpmcgnjlbgd: ::core::option::Option, -} -/// Obf: BKMIEADDANJ -#[derive(proto_derive::CmdID)] -#[cmdid(6998)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DrinkMakerChallengeScRsp { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub reward: ::core::option::Option, - /// offset: 32 - #[prost(bool, tag = "8")] - pub is_success: bool, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub challenge_id: u32, -} -/// Obf: KEAHBLFMMAB -#[derive(proto_derive::CmdID)] -#[cmdid(6986)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DrinkMakerUpdateTipsNotify { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub amefgbicgdi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Loflgicopcj { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub lpmcgnjlbgd: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub jkeddognlif: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub immanipgmif: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(bool, tag = "6")] - pub pbhedbcpdmi: bool, -} -/// Obf: JDOLKLDFKNK -#[derive(proto_derive::CmdID)] -#[cmdid(6994)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DrinkMakerCheersGetDataCsReq {} -/// Obf: AJGBCANLBGK -#[derive(proto_derive::CmdID)] -#[cmdid(7000)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DrinkMakerCheersGetDataScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub gfdakngldja: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub llddjenbeog: u32, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub dmkelehlhdp: u32, -} -/// Obf: JEOKFKBBFOP -#[derive(proto_derive::CmdID)] -#[cmdid(6997)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DrinkMakerCheersMakeDrinkCsReq { - /// offset: 40 - #[prost(uint32, tag = "10")] - pub jkeddognlif: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub lpmcgnjlbgd: ::core::option::Option, - /// offset: 36 - #[prost(bool, tag = "7")] - pub fgfkbcjmcnn: bool, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub group_id: u32, -} -/// Obf: BCALEEFDFMG -#[derive(proto_derive::CmdID)] -#[cmdid(6982)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DrinkMakerCheersMakeDrinkScRsp { /// offset: 24 #[prost(message, optional, tag = "4")] - pub eknampljcbe: ::core::option::Option, + pub reward: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] + pub level: u32, + /// offset: 36 + #[prost(uint32, tag = "13")] pub retcode: u32, } -/// Obf: KPHDMHANJEO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6992)] +#[cmdid(3338)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DrinkMakerCheersEnterNextGroupCsReq {} -/// Obf: MPAPPBABILD +pub struct GetDailyActiveInfoCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3317)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetDailyActiveInfoScRsp { + /// offset: 44 + #[prost(uint32, tag = "10")] + pub daily_active_point: u32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "15")] + pub daily_active_quest_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub daily_active_level_list: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3351)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct DailyActiveInfoNotify { + /// offset: 40 + #[prost(uint32, tag = "14")] + pub daily_active_point: u32, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub daily_active_level_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "15")] + pub daily_active_quest_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3311)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct TakeAllApRewardCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3389)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeAllApRewardScRsp { + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub take_reward_level_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ojkjcnagckb { + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub eoeiabneiga: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub bhkdifplina: u32, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub hofkgjfnjme: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hifmfklghhk { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub ocnbnflkfig: u32, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub fllcimbpgij: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub eecpjoadeea: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub obmkdkijpol: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub hhonigkjfkk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjcoehheejf { + /// offset: 28 + #[prost(uint32, tag = "8")] + pub aejnnoeaigk: u32, + /// offset: 24 + #[prost(bool, tag = "7")] + pub boghpmklged: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6993)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Immcalokijn {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6986)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kmcheilekki { + /// offset: 68 + #[prost(uint32, tag = "9")] + pub exp: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub ofhebclkkhh: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 64 + #[prost(uint32, tag = "13")] + pub fnankbmppjh: u32, + /// offset: 72 + #[prost(uint32, tag = "2")] + pub joeeanjkkae: u32, + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub ljepfimanef: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub plcjhdnphlk: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "5")] + pub gebfogbhjhc: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "7")] + pub level: u32, + /// offset: 60 + #[prost(uint32, tag = "12")] + pub ocgpbodanlk: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6989)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ogdmbjbobdn { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub joeeanjkkae: u32, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub nmfheedbbni: ::core::option::Option, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6985)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DrinkMakerCheersEnterNextGroupScRsp { +pub struct Mddjjljface { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub jillkbacbkp: u32, /// offset: 24 + #[prost(bool, tag = "15")] + pub boghpmklged: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6994)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nlbilpplbfl {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6984)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aklpocneddj { + /// offset: 48 + #[prost(uint32, tag = "9")] + pub fnankbmppjh: u32, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub reward: ::core::option::Option, + /// offset: 60 + #[prost(uint32, tag = "12")] + pub fpcffhbmged: u32, + /// offset: 64 + #[prost(uint32, tag = "14")] + pub exp: u32, + /// offset: 40 + #[prost(message, optional, tag = "1")] + pub focnpmdihci: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "13")] + pub level: u32, + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub chhdcnkiaph: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6983)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Npopgihldno { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub aejnnoeaigk: u32, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub nmfheedbbni: ::core::option::Option, + /// offset: 36 + #[prost(bool, tag = "11")] + pub is_save: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6997)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gbncomhbfja { + /// offset: 36 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 32 + #[prost(bool, tag = "9")] + pub boghpmklged: bool, + /// offset: 33 + #[prost(bool, tag = "11")] + pub is_save: bool, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub ofhebclkkhh: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6992)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Feppfechkpb { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub enlfhiimjom: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6981)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jadfjjnoaab { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub challenge_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub nmfheedbbni: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6990)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lfhdjpdihdo { + /// offset: 36 + #[prost(uint32, tag = "8")] + pub challenge_id: u32, + /// offset: 32 + #[prost(bool, tag = "1")] + pub boghpmklged: bool, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7000)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mgmacjhpeld { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub fnankbmppjh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mdjdbglooaf { + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub eijdbcnclkh: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub mcfccfdoein: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub nmfheedbbni: ::core::option::Option, + /// offset: 44 + #[prost(bool, tag = "8")] + pub gjaelcemmoh: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6987)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ophhnpgiknk {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6995)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Haibddpanjj { + /// offset: 40 + #[prost(uint32, tag = "7")] + pub pgfdlojjjnk: u32, + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub lcjefglichp: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub olkhijhpfik: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6999)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fpklbdnapeg { + /// offset: 36 + #[prost(bool, tag = "11")] + pub ijanopmjomb: bool, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub group_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub nmfheedbbni: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub mcfccfdoein: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6982)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kadiildgapd { + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub noeehfdgpod: ::core::option::Option, + /// offset: 32 #[prost(uint32, tag = "8")] pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6998)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iaaciljiodi {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6991)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mfiepphjhbc { /// offset: 28 - #[prost(uint32, tag = "1")] - pub llddjenbeog: u32, + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub olkhijhpfik: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kcdjppaedii { - /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "1")] - pub avatar_type: i32, +pub struct ElationActivityAvatar { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(enumeration = "AvatarType", tag = "15")] + pub avatar_type: i32, + /// offset: 28 + #[prost(uint32, tag = "5")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Onmmachaolb { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub dbcjbojceac: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub pmhbdmjgdgj: u32, - /// offset: 40 - #[prost(bool, tag = "13")] - pub ncnaonifpfm: bool, +pub struct ElationActivityLevelData { /// offset: 32 - #[prost(uint32, tag = "1")] - pub gbchdbmblik: u32, + #[prost(uint32, tag = "7")] + pub kbhpmladink: u32, + /// offset: 36 + #[prost(bool, tag = "10")] + pub is_perfect: bool, /// offset: 28 - #[prost(uint32, tag = "11")] - pub acjcphifmln: u32, + #[prost(uint32, tag = "12")] + pub level_id: u32, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub fighpdcccce: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub hcficdmenhe: u32, } -/// Obf: DOCGDGFAMAJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9106)] +#[cmdid(9102)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetElationActivityDataCsReq {} -/// Obf: GHOLFFPFKIN +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(9107)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetElationActivityDataScRsp { /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub lkmjinniadi: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] + pub music_level: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] pub retcode: u32, } -/// Obf: LDDHLJMCFHA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9104)] +#[cmdid(9110)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterElationActivityStageCsReq { /// offset: 40 - #[prost(uint32, tag = "13")] - pub acjcphifmln: u32, - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub edhadpoojfe: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub level_id: u32, /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub pipoggcmlda: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub player_selected_avatar_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub fixed_avatar_list: ::prost::alloc::vec::Vec, } -/// Obf: IODCNKMADFB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(9109)] +#[cmdid(9101)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterElationActivityStageScRsp { - /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "14")] - pub acjcphifmln: u32, + #[prost(uint32, tag = "15")] + pub level_id: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "13")] pub battle_info: ::core::option::Option, } -/// Obf: PKCNNOFJDBO +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(9110)] +#[cmdid(9103)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ElationActivityBattleEndScNotify { /// offset: 32 - #[prost(uint32, tag = "4")] - pub glpefchdpek: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub kjllemkogeg: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub acjcphifmln: u32, + #[prost(uint32, tag = "1")] + pub jponibjjcff: u32, /// offset: 40 - #[prost(uint32, tag = "2")] - pub jpnaeehibdm: u32, + #[prost(uint32, tag = "14")] + pub perfect_wave: u32, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub iahmkbdklpd: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub level_data: ::core::option::Option, /// offset: 44 - #[prost(uint32, tag = "7")] - pub hphkfnckbfc: u32, + #[prost(uint32, tag = "12")] + pub level_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Elplcmogogj { +pub struct Infmbnlkepn { /// offset: 24 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub progress: u32, /// offset: 28 - #[prost(uint32, tag = "6")] - pub njdacjfdokj: u32, + #[prost(uint32, tag = "8")] + pub jnnhfndmacm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cgclcmmibie { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub hfaljihkecn: u32, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub kipoofoobgh: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(bool, tag = "6")] - pub gcifdnngopg: bool, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub odeeebpgilc: u32, +pub struct Kdhlkhjlhed { /// offset: 44 - #[prost(uint32, tag = "7")] - pub gmfebdafdpj: u32, + #[prost(uint32, tag = "1")] + pub enibkgfbpdn: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub jfbmhcidljp: u32, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub bpikncnggek: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub cnempadnnnp: u32, + /// offset: 40 + #[prost(bool, tag = "15")] + pub chjpjoghdoe: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jfnbfkblgoh { +pub struct Koffmpfdbnm { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub llnngangkha: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub fedbcocnceo: u32, /// offset: 36 + #[prost(bool, tag = "8")] + pub mmcepebfbdo: bool, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub fccfociedeg: u32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub gfhnnpiabjl: u32, + /// offset: 37 + #[prost(bool, tag = "14")] + pub pacjejneifl: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jjehenhljhc { + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub nbacjojcgja: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub bklhodcegeg: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(bool, tag = "2")] + pub dkodkifikea: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oejmkcjcdcd { + /// offset: 28 #[prost(uint32, tag = "1")] - pub fnddkopjgda: u32, + pub level: u32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub lfojpogbhik: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pibcijmlicc { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub cephgcddobd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Onokpjekmdf { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub jjmidhklppl: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub cephgcddobd: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub hlolgedahcm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kopbfellgka { /// offset: 28 #[prost(uint32, tag = "15")] - pub bfecjmdnnob: u32, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub hgmnjfjpmdf: u32, - /// offset: 25 - #[prost(bool, tag = "6")] - pub egegckinjjd: bool, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub hhcbjghkcpc: u32, - /// offset: 24 - #[prost(bool, tag = "12")] - pub afpkfgmagkl: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jbgkhhhpmcn { - /// offset: 40 - #[prost(bool, tag = "8")] - pub bceiljeabki: bool, - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub pgnanlaiiik: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub ondcbdnghee: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pkikefaoide { - /// offset: 28 - #[prost(uint32, tag = "6")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub cjidbadekbo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ljjahilcode { + pub nhgbfopjgld: u32, /// offset: 24 #[prost(uint32, tag = "1")] - pub level: u32, - /// offset: 28 - #[prost(uint32, tag = "9")] - pub mfamkibgbbg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dgmgkoghfoo { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub dlnkdkaocae: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub mfamkibgbbg: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub mpojckofikf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dfkmfndiipe { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub hpcholpmjfp: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] pub count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jmgeggolamn { - /// offset: 56 - #[prost(uint64, tag = "7")] - pub fpgedabjbho: u64, +pub struct Defijabmdhd { + /// offset: 60 + #[prost(uint32, tag = "2")] + pub apeaoocamce: u32, /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub fciaojklbnj: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "13")] - pub heldfglcnfb: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub lgiecnjocjn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "9")] + pub aaligbgfkfi: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub lfeilclonnd: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(message, repeated, tag = "14")] - pub gpphocnojnf: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub galdgonnddg: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub cljlmnoffec: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub pbampcjljal: u32, /// offset: 64 - #[prost(uint32, tag = "12")] - pub nmoeicllcpg: u32, - /// offset: 68 - #[prost(uint32, tag = "15")] - pub obgkjkeodng: u32, + #[prost(uint64, tag = "1")] + pub delgpmggedb: u64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ddkdlamfomm { - /// offset: 40 - #[prost(message, optional, tag = "1")] - pub baojdbhjokd: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub jobmngmjjmm: ::prost::alloc::vec::Vec, +pub struct Epabgcpgjkc { + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub nbdaclponoc: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(message, repeated, tag = "8")] - pub dafdgjldnah: ::prost::alloc::vec::Vec, + pub ojelmclldlb: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub ipniehkekpj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aicnonbgnnp { - /// offset: 28 - #[prost(uint32, tag = "6")] - pub pkgdlpkjbcn: u32, +pub struct Lffmobjmfbf { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "12")] + pub aacajamgekb: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kjclgniiapa { - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub cmijghajlol: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cjdninmibpf { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub ljooflngmel: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub doahmgaoloj: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub hkjomdjfhim: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hmkhillipoh { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub doahmgaoloj: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub dldpmojfamc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ijlgeioknen { - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub dlcjadnlldm: ::prost::alloc::vec::Vec, +pub struct Bnehpdepknb { /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub khipjlhidie: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub faaafffmfhg: ::prost::alloc::vec::Vec, } -/// Obf: OKAMOGHODFI #[derive(proto_derive::CmdID)] -#[cmdid(2576)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetElfRestaurantDataCsReq {} -/// Obf: CLDNCCBAKJC -#[derive(proto_derive::CmdID)] -#[cmdid(2578)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetElfRestaurantDataScRsp { - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub plfhgamomlj: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "6")] - pub fodhbfmdjco: ::core::option::Option, +pub struct Nejdgphkmdd { /// offset: 32 - #[prost(message, optional, tag = "10")] - pub acaekpjmphn: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub fghciicclmp: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 40 - #[prost(message, optional, tag = "15")] - pub lnkfnbflnnd: ::core::option::Option, -} -/// Obf: NCCPLCHMJID -#[derive(proto_derive::CmdID)] -#[cmdid(2571)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterElfRestaurantNextDayCsReq {} -/// Obf: ENPJDKJGAHP -#[derive(proto_derive::CmdID)] -#[cmdid(2588)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterElfRestaurantNextDayScRsp { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oeacnfiknmd { - #[prost( - oneof = "oeacnfiknmd::Ipkneapgpon", - tags = "2, 13, 11, 5, 1, 3, 10, 15, 8, 7, 6, 12" - )] - pub ipkneapgpon: ::core::option::Option, -} -/// Nested message and enum types in `OEACNFIKNMD`. -pub mod oeacnfiknmd { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Ipkneapgpon { - /// offset: 16 - #[prost(message, tag = "2")] - Lfabgnphgaf(super::Cgclcmmibie), - /// offset: 16 - #[prost(message, tag = "13")] - Nhjbpknlkmi(super::Jfnbfkblgoh), - /// offset: 16 - #[prost(message, tag = "11")] - Odeagkejeci(super::Aicnonbgnnp), - /// offset: 16 - #[prost(uint32, tag = "5")] - Nobbfjbdeei(u32), - /// offset: 16 - #[prost(message, tag = "1")] - Emjfjmbkaig(super::Pkikefaoide), - /// offset: 16 - #[prost(message, tag = "3")] - Nhcbgllnnpc(super::Ljjahilcode), - /// offset: 16 - #[prost(message, tag = "10")] - Ccpkahfcpij(super::Cjdninmibpf), - /// offset: 16 - #[prost(uint32, tag = "15")] - Mkjnogjnnag(u32), - /// offset: 16 - #[prost(message, tag = "8")] - Ffcmchkdfac(super::Hmkhillipoh), - /// offset: 16 - #[prost(uint32, tag = "7")] - Ganikgkogoh(u32), - /// offset: 16 - #[prost(bool, tag = "6")] - Bceiljeabki(bool), - /// offset: 16 - #[prost(message, tag = "12")] - Epcojmkghph(super::Jmgeggolamn), - } -} -/// Obf: CHMANANGEPM -#[derive(proto_derive::CmdID)] -#[cmdid(2577)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantDataChangeNotify { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub leadmneimdp: ::prost::alloc::vec::Vec, -} -/// Obf: GINBDFAOHAC -#[derive(proto_derive::CmdID)] -#[cmdid(2570)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantBuyFieldCsReq { + #[prost(uint32, tag = "7")] + pub icdlhggmjnm: u32, /// offset: 24 #[prost(uint32, tag = "8")] - pub hgmnjfjpmdf: u32, -} -/// Obf: NFGHKOJKHPL -#[derive(proto_derive::CmdID)] -#[cmdid(2594)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantBuyFieldScRsp { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub bhjapdfonaa: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pfoopmonpmb { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub hgmnjfjpmdf: u32, + pub oipdfgadlhj: u32, /// offset: 28 - #[prost(uint32, tag = "11")] - pub hhcbjghkcpc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gmanhhhcpme { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub hgmnjfjpmdf: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub bhjapdfonaa: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub hhcbjghkcpc: u32, -} -/// Obf: BEECOEFDNKC -#[derive(proto_derive::CmdID)] -#[cmdid(2551)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantPlantSeedCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub ondcbdnghee: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub fnddkopjgda: u32, -} -/// Obf: JLPODOPBIBC -#[derive(proto_derive::CmdID)] -#[cmdid(2595)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantPlantSeedScRsp { - /// offset: 40 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub mangjgkhknj: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "4")] - pub aogdklonihi: ::prost::alloc::vec::Vec, -} -/// Obf: HPFECGNFEAO -#[derive(proto_derive::CmdID)] -#[cmdid(2593)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantHarvestCropCsReq { - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub ondcbdnghee: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jblgalhcbgc { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub gigcojgolpm: ::core::option::Option, - /// offset: 44 #[prost(uint32, tag = "12")] - pub hgmnjfjpmdf: u32, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub hhcbjghkcpc: u32, - /// offset: 24 - #[prost(map = "uint32, message", tag = "14")] - pub knmmcboncch: ::std::collections::HashMap, + pub ilkodndgdfl: u32, } -/// Obf: LFGDHLNKDGD #[derive(proto_derive::CmdID)] -#[cmdid(2553)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantHarvestCropScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub hhmigilbhph: ::prost::alloc::vec::Vec, - /// offset: 32 +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eelcliehleg { + /// offset: 28 #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: POFJKOIAMML -#[derive(proto_derive::CmdID)] -#[cmdid(2573)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantRecycleSeedCsReq { + pub oipdfgadlhj: u32, /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub ondcbdnghee: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub blimedagpbf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ojfpdnajkpl { +pub struct Fncbaechcph { /// offset: 32 - #[prost(uint32, tag = "15")] - pub hgmnjfjpmdf: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub hhcbjghkcpc: u32, + #[prost(message, repeated, tag = "13")] + pub anbodlhgdih: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(message, optional, tag = "3")] - pub bjfphmcgflb: ::core::option::Option, + #[prost(message, repeated, tag = "12")] + pub pjkfolpgmjd: ::prost::alloc::vec::Vec, } -/// Obf: KOMJMNBNPMF +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(2569)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantRecycleSeedScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub aogdklonihi: ::prost::alloc::vec::Vec, -} -/// Obf: NFJBOPIDAEA -#[derive(proto_derive::CmdID)] -#[cmdid(2582)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantTakeVillagerRewardCsReq {} +pub struct Aieaadpofka {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2552)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dahlbdgmhch { + /// offset: 48 + #[prost(message, optional, tag = "15")] + pub pdhjmmohoil: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub gnmkcmflbep: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "5")] + pub ofjncgbgbae: ::core::option::Option, + /// offset: 64 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 40 + #[prost(message, optional, tag = "10")] + pub bhhilifippa: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub pglbgjbellj: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2598)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jelfffknfch {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2555)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dcaokhoahmd { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nccdeeohkjd { - /// offset: 36 - #[prost(uint32, tag = "15")] - pub progress: u32, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub afenfnmlhah: u32, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub reward_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub kogdnpfmgfc: u32, +pub struct Ecidfkhklhc { + #[prost( + oneof = "ecidfkhklhc::Gfjnadjnpjp", + tags = "10, 2, 13, 7, 14, 12, 11, 5, 9, 1, 3, 6" + )] + pub gfjnadjnpjp: ::core::option::Option, } -/// Obf: KNIMAMFFNJC +/// Nested message and enum types in `ECIDFKHKLHC`. +pub mod ecidfkhklhc { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Gfjnadjnpjp { + /// offset: 16 + #[prost(message, tag = "10")] + Niigmhbgahd(super::Kdhlkhjlhed), + /// offset: 16 + #[prost(message, tag = "2")] + Fihgkaffcfd(super::Koffmpfdbnm), + /// offset: 16 + #[prost(message, tag = "13")] + Bhhknbmchle(super::Lffmobjmfbf), + /// offset: 16 + #[prost(uint32, tag = "7")] + Bopbkeljmlk(u32), + /// offset: 16 + #[prost(message, tag = "14")] + Giobpbbnllc(super::Oejmkcjcdcd), + /// offset: 16 + #[prost(message, tag = "12")] + Ehlkgokfgho(super::Pibcijmlicc), + /// offset: 16 + #[prost(message, tag = "11")] + Ccbljbebglp(super::Nejdgphkmdd), + /// offset: 16 + #[prost(uint32, tag = "5")] + Ldopolgnebc(u32), + /// offset: 16 + #[prost(message, tag = "9")] + Hjbpohonglg(super::Eelcliehleg), + /// offset: 16 + #[prost(uint32, tag = "1")] + Jheoccmgmfd(u32), + /// offset: 16 + #[prost(bool, tag = "3")] + Dkodkifikea(bool), + /// offset: 16 + #[prost(message, tag = "6")] + Apgcicghmob(super::Defijabmdhd), + } +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(2583)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jklcpkejgno { + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub eamakkonfje: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2581)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ekamfgaibib { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub fedbcocnceo: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(2575)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantTakeVillagerRewardScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub lblidldbobm: ::prost::alloc::vec::Vec, +pub struct Maaanablhcf { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub ckencpihcfh: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] pub retcode: u32, } -/// Obf: DPLJBKFMHIN #[derive(proto_derive::CmdID)] -#[cmdid(2580)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantUpgradeEmployeeLevelCsReq { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub ldnjeacfbje: u32, +pub struct Jeedebccmfm { /// offset: 28 #[prost(uint32, tag = "12")] - pub pkgdlpkjbcn: u32, + pub llnngangkha: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub fedbcocnceo: u32, } -/// Obf: HNMNLAJJFFH +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ciibneegokg { + /// offset: 36 + #[prost(uint32, tag = "6")] + pub fedbcocnceo: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub llnngangkha: u32, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub ckencpihcfh: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2596)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hliocieddgl { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub fccfociedeg: u32, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub bklhodcegeg: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2567)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fnlldopiphd { + /// offset: 40 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub bclhhiiafgo: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "6")] + pub ocioedloibi: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2562)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kcmhlaliifl { + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub bklhodcegeg: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hkijbmpiohl { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub dkdheppndpn: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub llnngangkha: u32, + /// offset: 32 + #[prost(map = "uint32, message", tag = "2")] + pub japhcanbbjm: ::std::collections::HashMap, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub fedbcocnceo: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2559)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ajdkjffjame { + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub daliikaoplp: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2563)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kaidaliamll { + /// offset: 16 + #[prost(message, repeated, tag = "4")] + pub bklhodcegeg: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ennkiepkikf { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub llnngangkha: u32, + /// offset: 36 + #[prost(uint32, tag = "3")] + pub fedbcocnceo: u32, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub ngkpkpljlli: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2593)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kebecgmklnm { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub bclhhiiafgo: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2551)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Egkkapicimp {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kpkffddeilg { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub lkpoealbhaj: u32, + /// offset: 36 + #[prost(uint32, tag = "4")] + pub progress: u32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub reward_list: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub joddofdmfaj: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2595)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bkbjglioajc { + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub reward_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2557)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jmdpennddha { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub fdbojjijfgn: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub aacajamgekb: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2577)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fnikjflfmhp { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub ckencpihcfh: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2560)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Adhbnifdgld { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub lfojpogbhik: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub fdbojjijfgn: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2600)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gglhjmhlpoi { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2590)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cpoannnhkgp { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub fdbojjijfgn: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub cephgcddobd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2576)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lphfjlkinio { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Imbpgcnmohg { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub cephgcddobd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ciagmkhphnc { + /// offset: 36 + #[prost(bool, tag = "10")] + pub iplflncnndc: bool, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub njjpfkifahn: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub hkdcjggjeal: u32, + /// offset: 37 + #[prost(bool, tag = "11")] + pub dlilgmibaad: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Baphleidhoh { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub num: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub jokdfodleph: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gfkkolgidki { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub conblfmjolg: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub eedepibbkpe: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Copaohebpll { + /// offset: 48 + #[prost(uint32, tag = "4")] + pub hhjllepmdcc: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub cppfnnjapap: u32, + /// offset: 53 + #[prost(bool, tag = "8")] + pub icjddpdbgli: bool, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub cephgcddobd: u32, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub kbbejgfkbdm: u32, + /// offset: 44 + #[prost(uint32, tag = "11")] + pub ecdhocnoffe: u32, + /// offset: 52 + #[prost(bool, tag = "15")] + pub bmjiepoppbo: bool, + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub egooopjbejm: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aanobmldadm { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub kbbejgfkbdm: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub efifmnbgnnf: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub event_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2573)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cbhchlcpdkk { + /// offset: 40 + #[prost(message, repeated, tag = "1")] + pub mmkiapghaae: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "13")] + pub kanhafonjlm: u32, + /// offset: 68 + #[prost(uint32, tag = "6")] + pub cost_time: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub jmeldlffolj: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "10")] + pub pnpgahobfbn: u32, + /// offset: 72 + #[prost(uint32, tag = "2")] + pub cgdachdiaoe: u32, + /// offset: 88 + #[prost(uint32, tag = "9")] + pub aoamhgkdfec: u32, + /// offset: 80 + #[prost(uint32, tag = "14")] + pub jgjpdnfnehf: u32, + /// offset: 48 + #[prost(message, repeated, tag = "5")] + pub dbpklcchkfk: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, repeated, tag = "7")] + pub djekdpkpgnb: ::prost::alloc::vec::Vec, + /// offset: 76 + #[prost(uint32, tag = "4")] + pub delgpmggedb: u32, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub elgblpfmlil: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2566)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mdngdcfhdgg { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2574)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jgnemnfkcgj { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub ilkodndgdfl: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub hpendbolcpa: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2586)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lofbejofpnb { + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub fcioknbjcof: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub ilkodndgdfl: u32, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub ckencpihcfh: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2564)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lbldgljflmc { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub blimedagpbf: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2589)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fnlgjfeoimd { + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub ckencpihcfh: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub blimedagpbf: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub fcioknbjcof: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2568)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pblckliblci { + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub dnikhmabfgn: ::prost::alloc::vec::Vec, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(2561)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantUpgradeEmployeeLevelScRsp { - /// offset: 32 - #[prost(uint32, tag = "2")] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Icidmoinjoo { + /// offset: 24 + #[prost(uint32, tag = "15")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub bhjapdfonaa: ::core::option::Option, } -/// Obf: HCBMFEOPKED +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(2579)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantUpgradeFacilityLevelCsReq { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub cjidbadekbo: u32, +pub struct Omndpbijkeo { + /// offset: 24 + #[prost(bool, tag = "14")] + pub hmopokhjcmd: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2594)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hhmdibhfifg { /// offset: 24 #[prost(uint32, tag = "13")] - pub ldnjeacfbje: u32, -} -/// Obf: GNHLLIDGIEK -#[derive(proto_derive::CmdID)] -#[cmdid(2585)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantUpgradeFacilityLevelScRsp { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: DJDGKLDDELE -#[derive(proto_derive::CmdID)] -#[cmdid(2562)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantUpgradeRecipeLevelCsReq { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub ldnjeacfbje: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub mfamkibgbbg: u32, -} -/// Obf: PEMLOPNEEBJ -#[derive(proto_derive::CmdID)] -#[cmdid(2565)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantUpgradeRecipeLevelScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pkdknkjmfdi { +pub struct Ipkndkkgogf { /// offset: 24 - #[prost(uint32, tag = "14")] - pub mfamkibgbbg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ciphpenjcak { - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub gacjifjkdaj: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(bool, tag = "3")] - pub eejjginlmoo: bool, - /// offset: 37 - #[prost(bool, tag = "1")] - pub hflcmjbgome: bool, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub ioflmhamfhj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Egoiiehkmbg { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub num: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub hoiokbkgfdn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ioihfbklkom { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub bejeedaebbe: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub pnpmlafdaih: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dbklngebbid { - /// offset: 44 - #[prost(uint32, tag = "12")] - pub gfppcallgek: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub mnkahinfmca: u32, - /// offset: 52 - #[prost(uint32, tag = "13")] - pub mfamkibgbbg: u32, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub mlagphllbfb: u32, - /// offset: 49 - #[prost(bool, tag = "10")] - pub kfagaobapdi: bool, - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub hekbbdcpobo: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub dajjjfchooj: u32, - /// offset: 48 - #[prost(bool, tag = "2")] - pub lhffapbdglp: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Klfhmmhgobn { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub dajjjfchooj: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub event_id: u32, - /// offset: 28 #[prost(uint32, tag = "7")] - pub hbkgiimpljh: u32, -} -/// Obf: LKMIKCMNMIC -#[derive(proto_derive::CmdID)] -#[cmdid(2581)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SettleElfRestaurantPlayCsReq { - /// offset: 40 - #[prost(message, repeated, tag = "10")] - pub hejmepgdhgm: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub mcklehjkcdc: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "14")] - pub flhmafijone: u32, - /// offset: 76 - #[prost(uint32, tag = "6")] - pub bclnmidffoh: u32, - /// offset: 88 - #[prost(uint32, tag = "15")] - pub hmkholplkni: u32, - /// offset: 68 - #[prost(uint32, tag = "12")] - pub fpgedabjbho: u32, - /// offset: 64 - #[prost(uint32, tag = "13")] - pub nbijiocfkin: u32, - /// offset: 48 - #[prost(message, repeated, tag = "3")] - pub aejcocnnkjd: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "8")] - pub jehjljdkbge: u32, - /// offset: 84 - #[prost(uint32, tag = "7")] - pub bmlemobcncm: u32, - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub dmkahooamdm: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub ajjihpfbhji: ::prost::alloc::vec::Vec, -} -/// Obf: GOCKHMGIGNN -#[derive(proto_derive::CmdID)] -#[cmdid(2558)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SettleElfRestaurantPlayScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: JLMLPAKIMJN -#[derive(proto_derive::CmdID)] -#[cmdid(2552)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantBuyShopItemCsReq { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub bkcgmckgoki: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub hkjomdjfhim: u32, -} -/// Obf: FENFNGBGLDD -#[derive(proto_derive::CmdID)] -#[cmdid(2584)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantBuyShopItemScRsp { - /// offset: 40 - #[prost(uint32, tag = "13")] - pub hkjomdjfhim: u32, - /// offset: 32 - #[prost(message, optional, tag = "10")] - pub bhjapdfonaa: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub fobnkeccaab: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: NEGOELIKKDP -#[derive(proto_derive::CmdID)] -#[cmdid(2556)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantFinishTradeOrderCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub dldpmojfamc: u32, -} -/// Obf: LLGFCEFMOCN -#[derive(proto_derive::CmdID)] -#[cmdid(2599)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ElfRestaurantFinishTradeOrderScRsp { - /// offset: 44 - #[prost(uint32, tag = "11")] - pub dldpmojfamc: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub bhjapdfonaa: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 32 - #[prost(message, optional, tag = "5")] - pub fobnkeccaab: ::core::option::Option, -} -/// Obf: HKLNOACLMGK -#[derive(proto_derive::CmdID)] -#[cmdid(2598)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetElfRestaurantPlayRecipeCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub nlmfknkeioi: ::prost::alloc::vec::Vec, -} -/// Obf: LBLAOKMOHID -#[derive(proto_derive::CmdID)] -#[cmdid(2586)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetElfRestaurantPlayRecipeScRsp { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: DCHHLCIBCAP -#[derive(proto_derive::CmdID)] -#[cmdid(2559)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantClientStatusCsReq { - /// offset: 24 - #[prost(bool, tag = "8")] - pub fjinnlfcboj: bool, -} -/// Obf: GDBCDJBMJLF -#[derive(proto_derive::CmdID)] -#[cmdid(2572)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ElfRestaurantClientStatusScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Goahfmlpdmf { - /// offset: 24 - #[prost(uint32, tag = "4")] pub state: u32, /// offset: 28 #[prost(uint32, tag = "12")] - pub acnpbbnlmie: u32, + pub era_flipper_region_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kkeaenndmkb { +pub struct Kaodjlbgpml { /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub ndpgblaaghk: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "10")] + pub dmfmnpmehkm: ::prost::alloc::vec::Vec, } -/// Obf: IFBIEEKFDJM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6558)] +#[cmdid(6567)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetEraFlipperDataCsReq {} -/// Obf: MGOGBDBOKFB +pub struct Pkbpgmgmdac {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6551)] +#[cmdid(6557)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetEraFlipperDataScRsp { +pub struct Ojobjihlcak { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub data: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6574)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bgdhcmbnnfc { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub data: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6559)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bdagnlnghic { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub data: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "2")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub data: ::core::option::Option, } -/// Obf: AAMKEPIPNGO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6563)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChangeEraFlipperDataCsReq { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub data: ::core::option::Option, +#[cmdid(6570)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Akhjllnnaja { + /// offset: 24 + #[prost(bool, tag = "2")] + pub ceicihhhjdc: bool, } -/// Obf: MEHGKNJPOJE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6566)] +#[cmdid(6572)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ChangeEraFlipperDataScRsp { +pub struct Iheocpcambf { /// offset: 32 - #[prost(uint32, tag = "9")] + #[prost(bool, tag = "11")] + pub ceicihhhjdc: bool, + /// offset: 36 + #[prost(uint32, tag = "15")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub data: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub data: ::core::option::Option, } -/// Obf: FFFNNIALANO +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6555)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hhlngdghhhh { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub state: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub era_flipper_region_id: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6568)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ResetEraFlipperDataCsReq { +pub struct Pfndodnbajk { /// offset: 24 - #[prost(bool, tag = "2")] - pub pahmagpfddj: bool, -} -/// Obf: JIOJIJLGGOD -#[derive(proto_derive::CmdID)] -#[cmdid(6565)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ResetEraFlipperDataScRsp { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub data: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 32 - #[prost(bool, tag = "8")] - pub pahmagpfddj: bool, -} -/// Obf: MCDHIAJANIH -#[derive(proto_derive::CmdID)] -#[cmdid(6553)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterEraFlipperRegionCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub acnpbbnlmie: u32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub state: u32, -} -/// Obf: CEPMIOIMPAP -#[derive(proto_derive::CmdID)] -#[cmdid(6575)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterEraFlipperRegionScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "7")] pub retcode: u32, /// offset: 28 - #[prost(uint32, tag = "5")] - pub acnpbbnlmie: u32, + #[prost(uint32, tag = "11")] + pub era_flipper_region_id: u32, } -/// Obf: JPPIMNMMJFB +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6556)] +#[cmdid(6562)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EraFlipperDataChangeScNotify { +pub struct Pgnmplfhdna { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub data: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "9")] pub floor_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Faocjecpdeg { - /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "11")] - pub avatar_type: i32, +pub struct Nfieloklfjk { /// offset: 32 - #[prost(double, tag = "12")] - pub damage: f64, + #[prost(enumeration = "AvatarType", tag = "2")] + pub avatar_type: i32, /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(double, tag = "5")] + pub damage: f64, + /// offset: 36 + #[prost(uint32, tag = "12")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Opoopmfpnpf { +pub struct Jcokdjnbmpg { /// offset: 48 - #[prost(uint32, repeated, tag = "8")] - pub lgdniigephh: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "6")] + pub battle_info: ::core::option::Option, + /// offset: 64 + #[prost(enumeration = "Ldgnfpgdfpe", tag = "5")] + pub pdpfmffkjoj: i32, + /// offset: 56 + #[prost(uint32, tag = "13")] + pub round_cnt: u32, /// offset: 60 - #[prost(enumeration = "Klnipnjcnmj", tag = "11")] - pub mdcjfoafdjk: i32, + #[prost(uint32, tag = "7")] + pub ddnpjopjooi: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "8")] + pub lablfmpebpl: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "12")] + pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 24 #[prost(message, repeated, tag = "4")] - pub challenge_battle_target_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub battle_info: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "10")] - pub lmkmfcdmfbi: u32, - /// offset: 64 - #[prost(uint32, tag = "12")] - pub ehpgcogighm: u32, + pub battle_target_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ceenlalpdmk { +pub struct Obhhbnbogho { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub level_id: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub max_score: u32, /// offset: 24 #[prost(uint32, tag = "7")] - pub stage_score: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub acjcphifmln: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub ceadmdamhmo: u32, + pub ciibelhijnm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Imgjiebfgpf { +pub struct Ehngbdoolnc { /// offset: 28 - #[prost(uint32, tag = "9")] - pub neciljojgan: u32, + #[prost(uint32, tag = "12")] + pub npleimndomh: u32, /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ecmmjllhpmd { - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub lgdniigephh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "10")] - pub cadmfghaljg: bool, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub acjcphifmln: u32, +pub struct Aifnlajijbe { /// offset: 33 - #[prost(bool, tag = "9")] - pub najohihmabc: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pdfhjmmdgae { + #[prost(bool, tag = "12")] + pub clmolgijiac: bool, /// offset: 32 - #[prost(uint32, tag = "10")] - pub item_value: u32, + #[prost(bool, tag = "11")] + pub dfodjnfelkp: bool, /// offset: 36 - #[prost(enumeration = "Klnipnjcnmj", tag = "11")] - pub mdcjfoafdjk: i32, - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub cokdnpeemag: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub level_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub lablfmpebpl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pdicnbbkfnp { +pub struct Beinhdkgfij { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub geibknhcgjf: u32, + /// offset: 36 + #[prost(enumeration = "Ldgnfpgdfpe", tag = "1")] + pub pdpfmffkjoj: i32, /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub lmeljcifbdf: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "14")] + #[prost(message, repeated, tag = "13")] + pub hedohmpiacf: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eaebhplmeia { + /// offset: 40 + #[prost(uint32, repeated, tag = "14")] + pub damgcommnfi: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub fcdiohhdpjd: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "10")] pub exp: u32, /// offset: 56 - #[prost(message, repeated, tag = "6")] - pub cokdnpeemag: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "5")] - pub item_value: u32, - /// offset: 64 #[prost(message, repeated, tag = "2")] - pub fejgmnnfflg: ::prost::alloc::vec::Vec, + pub oiidhkkliec: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(uint32, tag = "1")] + pub geibknhcgjf: u32, + /// offset: 64 + #[prost(message, repeated, tag = "12")] + pub hedohmpiacf: ::prost::alloc::vec::Vec, /// offset: 76 #[prost(uint32, tag = "15")] - pub eodgcnafiac: u32, - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub klgheccbhcg: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub lcjnndgkidp: ::prost::alloc::vec::Vec, + pub aijfddbemik: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub cfcpncffbni: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, repeated, tag = "8")] - pub fjocdkifppc: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "6")] + pub fhmeompbmfk: ::prost::alloc::vec::Vec, } -/// Obf: LAMIFJCNFHH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7126)] +#[cmdid(7119)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildQueryInfoCsReq {} -/// Obf: KHDHBJJEOKB +pub struct Lccnlfahcba {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7128)] +#[cmdid(7102)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildQueryInfoScRsp { - /// offset: 32 - #[prost(message, repeated, tag = "8")] - pub dhmbdiibklm: ::prost::alloc::vec::Vec, +pub struct Nkejnocljea { + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub mcnnaljcobc: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub bpjopicnjka: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "13")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub omcbcgchlgn: ::core::option::Option, } -/// Obf: DNHBALAHPBG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7121)] +#[cmdid(7148)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildStartLevelCsReq { +pub struct Dabhbbcpifg { + /// offset: 40 + #[prost(uint32, tag = "9")] + pub level_id: u32, /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub acjcphifmln: u32, + #[prost(message, optional, tag = "6")] + pub klmmomljoga: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "3")] - pub jiapjhdlfbj: ::core::option::Option, + #[prost(message, repeated, tag = "7")] + pub avatar_list: ::prost::alloc::vec::Vec, } -/// Obf: BFIEPMAPCME -#[derive(proto_derive::CmdID)] -#[cmdid(7138)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildStartLevelScRsp { - /// offset: 32 - #[prost(message, optional, tag = "5")] - pub lmgkmaoicgc: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub nopheehjhek: ::core::option::Option, -} -/// Obf: LEAGCOGMOJM +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7105)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mfplapmoblk { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub phmbjpfkkak: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub bbmdjjcomhf: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7135)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildStartStageCsReq { +pub struct Fkjkjkgljmp { /// offset: 24 #[prost(uint32, tag = "9")] - pub acjcphifmln: u32, + pub level_id: u32, } -/// Obf: FBEAPHBAIFP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7127)] +#[cmdid(7133)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildStartStageScRsp { +pub struct Gbpdeecdbef { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub bbmdjjcomhf: ::core::option::Option, /// offset: 40 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub phmbjpfkkak: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7131)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hmdklfghgmg { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub level_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7125)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Clbifdfpjnk { + /// offset: 32 #[prost(uint32, tag = "4")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub lmgkmaoicgc: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub nopheehjhek: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub phmbjpfkkak: ::core::option::Option, } -/// Obf: BCGILDDNIIH +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Likcinhmond {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7117)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kmllppeibop { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub phmbjpfkkak: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7112)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Agoklpncbdn { + /// offset: 48 + #[prost(uint32, tag = "10")] + pub exp: u32, + /// offset: 36 + #[prost(uint32, tag = "3")] + pub score_id: u32, + /// offset: 56 + #[prost(uint32, tag = "2")] + pub level_id: u32, + /// offset: 60 + #[prost(enumeration = "Kfcdfiiflfb", tag = "4")] + pub oibihigmeba: i32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub wave: u32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub geibknhcgjf: u32, + /// offset: 52 + #[prost(bool, tag = "12")] + pub ehhdljalgob: bool, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub gkpkecbnnfb: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub phmbjpfkkak: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7109)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eaokbocdhhg { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub level_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7113)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bkhonfcfgkb { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub llcfijjocdb: ::core::option::Option, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildGiveupCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub acjcphifmln: u32, -} -/// Obf: MENHNDFMFKL -#[derive(proto_derive::CmdID)] -#[cmdid(7144)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildGiveupScRsp { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub lmgkmaoicgc: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: KJHBEPOJJCO -#[derive(proto_derive::CmdID)] -#[cmdid(7101)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildLeaveCsReq {} -/// Obf: HAEDIEJIDGC -#[derive(proto_derive::CmdID)] -#[cmdid(7145)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildLeaveScRsp { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub lmgkmaoicgc: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: HGEJNHEBOCP -#[derive(proto_derive::CmdID)] -#[cmdid(7143)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildFinishScNotify { - /// offset: 40 - #[prost(enumeration = "Dlhcmcnihii", tag = "4")] - pub gdlocmnkgfc: i32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub exp: u32, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub item_value: u32, - /// offset: 48 - #[prost(uint32, tag = "12")] - pub wave: u32, - /// offset: 36 - #[prost(bool, tag = "14")] - pub hklndnaleck: bool, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub lmgkmaoicgc: ::core::option::Option, - /// offset: 60 - #[prost(uint32, tag = "7")] - pub acjcphifmln: u32, - /// offset: 52 - #[prost(uint32, tag = "15")] - pub oikaipngpkp: u32, - /// offset: 56 - #[prost(uint32, tag = "8")] - pub score: u32, -} -/// Obf: BKBIPBBOBIO -#[derive(proto_derive::CmdID)] -#[cmdid(7103)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildReRandomStageCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub acjcphifmln: u32, -} -/// Obf: BPKNBKMPCFG -#[derive(proto_derive::CmdID)] -#[cmdid(7123)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildReRandomStageScRsp { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub jgpbflccijp: ::core::option::Option, -} -/// Obf: IENKMECLNJM -#[derive(proto_derive::CmdID)] -#[cmdid(7133)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildShopAbilityUpCsReq { +pub struct Mbjffjdbajj { /// offset: 28 - #[prost(uint32, tag = "7")] - pub neciljojgan: u32, - /// offset: 24 #[prost(uint32, tag = "11")] pub level: u32, -} -/// Obf: EPFGDIPDKAO -#[derive(proto_derive::CmdID)] -#[cmdid(7130)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildShopAbilityUpScRsp { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub level: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub neciljojgan: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: JKBPDBKBNHB -#[derive(proto_derive::CmdID)] -#[cmdid(7111)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildShopAbilityDownCsReq { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub level: u32, /// offset: 24 #[prost(uint32, tag = "3")] - pub neciljojgan: u32, + pub npleimndomh: u32, } -/// Obf: MFFCJHKLKBP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7129)] +#[cmdid(7107)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildShopAbilityDownScRsp { +pub struct Pejjabdloih { /// offset: 32 - #[prost(uint32, tag = "14")] - pub neciljojgan: u32, - /// offset: 28 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub level: u32, -} -/// Obf: PBKJMDMFLNN -#[derive(proto_derive::CmdID)] -#[cmdid(7115)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildShopAbilityResetCsReq { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub npleimndomh: u32, /// offset: 24 - #[prost(enumeration = "Klnipnjcnmj", tag = "11")] - pub mdcjfoafdjk: i32, + #[prost(uint32, tag = "6")] + pub retcode: u32, } -/// Obf: NMGLNOLFPMI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7131)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EvolveBuildShopAbilityResetScRsp { - /// offset: 40 - #[prost(enumeration = "Klnipnjcnmj", tag = "14")] - pub mdcjfoafdjk: i32, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub cokdnpeemag: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub item_value: u32, +#[cmdid(7127)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dcfmocenkkj { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub npleimndomh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7110)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kjlcmecmhhe { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub npleimndomh: u32, /// offset: 32 + #[prost(uint32, tag = "8")] + pub level: u32, + /// offset: 24 #[prost(uint32, tag = "4")] pub retcode: u32, } -/// Obf: IHNIHBPEKDK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7108)] +#[cmdid(7126)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildCoinNotify { +pub struct Homkhaknbcd { /// offset: 24 - #[prost(enumeration = "Klnipnjcnmj", tag = "4")] - pub mdcjfoafdjk: i32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub item_value: u32, + #[prost(enumeration = "Ldgnfpgdfpe", tag = "9")] + pub pdpfmffkjoj: i32, } -/// Obf: LCAOFIDPICA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7134)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildSkipTeachLevelCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub acjcphifmln: u32, -} -/// Obf: OBBGCAMDHFG -#[derive(proto_derive::CmdID)] -#[cmdid(7106)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EvolveBuildSkipTeachLevelScRsp { - /// offset: 28 - #[prost(uint32, tag = "7")] +#[cmdid(7123)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gdpemimgbni { + /// offset: 32 + #[prost(uint32, tag = "3")] pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub acjcphifmln: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fjibdhhohmh { - /// offset: 40 - #[prost(uint32, tag = "11")] - pub aoedghmhgjj: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub id: u32, - /// offset: 32 - #[prost(int64, tag = "7")] - pub ponadanoaln: i64, /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub avatar_id_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kimnfbjceol { + #[prost(message, repeated, tag = "15")] + pub hedohmpiacf: ::prost::alloc::vec::Vec, /// offset: 36 - #[prost(uint32, tag = "9")] - pub hnaamdcfida: u32, - /// offset: 48 - #[prost(int64, tag = "2")] - pub ponadanoaln: i64, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub id: u32, - /// offset: 56 + #[prost(uint32, tag = "10")] + pub geibknhcgjf: u32, + /// offset: 40 + #[prost(enumeration = "Ldgnfpgdfpe", tag = "5")] + pub pdpfmffkjoj: i32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7116)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hhohohhfjlf { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub geibknhcgjf: u32, + /// offset: 28 + #[prost(enumeration = "Ldgnfpgdfpe", tag = "10")] + pub pdpfmffkjoj: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7136)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fkcibemnkfe { + /// offset: 24 #[prost(uint32, tag = "7")] - pub ojfnlmhmlof: u32, - /// offset: 60 - #[prost(uint32, tag = "8")] - pub fnggnbmofaa: u32, - /// offset: 16 + pub level_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7114)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lihdihmolgb { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub level_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ExpeditionInfo { + /// offset: 44 + #[prost(uint32, tag = "10")] + pub total_duration: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(int64, tag = "5")] + pub start_expedition_time: i64, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActivityExpedition { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub aliofdghmlm: u32, + /// offset: 56 + #[prost(uint32, tag = "9")] + pub llknjjacmkc: u32, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub aemaoeeecom: u32, + /// offset: 52 + #[prost(uint32, tag = "12")] + pub jlacpjkdhkf: u32, + /// offset: 24 #[prost(uint32, repeated, tag = "4")] pub avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "8")] + pub id: u32, /// offset: 40 - #[prost(uint32, tag = "11")] - pub ipgeclelhgj: u32, + #[prost(int64, tag = "5")] + pub start_expedition_time: i64, } -/// Obf: OIEKBHIHCIJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2526)] +#[cmdid(2519)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetExpeditionDataCsReq {} -/// Obf: OGHFHDGNKEK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2528)] +#[cmdid(2502)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetExpeditionDataScRsp { /// offset: 32 - #[prost(uint32, repeated, tag = "3")] - pub jfjpadlalmd: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 48 - #[prost(message, repeated, tag = "10")] - pub hjbkdbmgmbd: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "8")] - pub dipkgomgmoa: u32, + #[prost(message, repeated, tag = "3")] + pub expedition_info: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, repeated, tag = "12")] - pub fnalloldglm: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "14")] - pub fjgimkepjob: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "6")] + pub jnilmhaogjb: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "11")] + pub activity_expedition_info: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "9")] + pub total_expedition_count: u32, /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub pageieobhbp: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "13")] + pub libhopinoio: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "1")] + pub moclcedlfba: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "15")] + pub retcode: u32, } -/// Obf: KPECCFNGJKH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2521)] +#[cmdid(2548)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptExpeditionCsReq { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub pmhmlhlfgae: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub accept_expedition: ::core::option::Option, } -/// Obf: MKOOBKEONFO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2538)] +#[cmdid(2505)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptExpeditionScRsp { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "8")] - pub pmhmlhlfgae: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub accept_expedition: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2520)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct AcceptMultipleExpeditionCsReq { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub expedition: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2507)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct AcceptMultipleExpeditionScRsp { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub accept_multi_expedition: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "1")] pub retcode: u32, } -/// Obf: BKPNMEKHABD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2533)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AcceptMultipleExpeditionCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub egnpoofacdb: ::prost::alloc::vec::Vec, -} -/// Obf: JBJJBMLBAEE -#[derive(proto_derive::CmdID)] -#[cmdid(2530)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AcceptMultipleExpeditionScRsp { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub ohhgihlnepk: ::prost::alloc::vec::Vec, -} -/// Obf: MLLMLDEONPD -#[derive(proto_derive::CmdID)] -#[cmdid(2505)] +#[cmdid(2535)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelExpeditionCsReq { /// offset: 24 #[prost(uint32, tag = "14")] - pub nnmlockecka: u32, + pub expedition_id: u32, } -/// Obf: CKFBOEBNOFJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2527)] +#[cmdid(2533)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CancelExpeditionScRsp { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub pehcdfaeefk: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "5")] - pub nnmlockecka: u32, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub extra_reward: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub reward: ::core::option::Option, /// offset: 40 #[prost(int64, tag = "4")] pub finish_time: i64, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub reward: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "14")] - pub retcode: u32, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub expedition_id: u32, } -/// Obf: CICAAONIKLP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2520)] +#[cmdid(2531)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeExpeditionRewardCsReq { /// offset: 24 - #[prost(uint32, tag = "4")] - pub nnmlockecka: u32, + #[prost(uint32, tag = "10")] + pub expedition_id: u32, } -/// Obf: MJAPIHCEOJM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2544)] +#[cmdid(2525)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeExpeditionRewardScRsp { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub pehcdfaeefk: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub nnmlockecka: u32, /// offset: 16 - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "15")] + pub extra_reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub expedition_id: u32, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "13")] pub reward: ::core::option::Option, } -/// Obf: KLPCGCINMKC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2511)] +#[cmdid(2527)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMultipleExpeditionRewardCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub ijajdhkgnkl: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub take_multi_expedition: ::prost::alloc::vec::Vec, } -/// Obf: IKDCPJGPIFK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2529)] +#[cmdid(2510)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMultipleExpeditionRewardScRsp { - /// offset: 56 - #[prost(message, optional, tag = "8")] - pub pehcdfaeefk: ::core::option::Option, - /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub pppbklohckk: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub lblidldbobm: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub lfbfmochjbl: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: BODEAMBDFDH -#[derive(proto_derive::CmdID)] -#[cmdid(2501)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ExpeditionDataChangeScNotify { - /// offset: 32 - #[prost(message, repeated, tag = "10")] - pub hjbkdbmgmbd: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub jfjpadlalmd: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub fnalloldglm: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "1")] - pub dipkgomgmoa: u32, /// offset: 48 #[prost(message, repeated, tag = "15")] - pub pageieobhbp: ::prost::alloc::vec::Vec, + pub reward_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 56 + #[prost(message, repeated, tag = "6")] + pub extra_reward_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, optional, tag = "12")] + pub extra_reward: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub reward_expedition: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub reward: ::core::option::Option, } -/// Obf: MPIHHIBDOHO +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(2545)] +#[cmdid(2546)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ExpeditionDataChangeScNotify { + /// offset: 40 + #[prost(message, repeated, tag = "15")] + pub expedition_info: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "13")] + pub jnilmhaogjb: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "8")] + pub total_expedition_count: u32, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub activity_expedition_info: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "3")] + pub moclcedlfba: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2517)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AcceptActivityExpeditionCsReq { /// offset: 24 - #[prost(message, optional, tag = "14")] - pub lgkjlfjgoje: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub igggckfldma: ::core::option::Option, } -/// Obf: OMDOBPBPOLA -#[derive(proto_derive::CmdID)] -#[cmdid(2543)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AcceptActivityExpeditionScRsp { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub lgkjlfjgoje: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: JMFIHJAIMAD -#[derive(proto_derive::CmdID)] -#[cmdid(2503)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CancelActivityExpeditionCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub mpgemlglhbh: u32, -} -/// Obf: LNBBELACOID -#[derive(proto_derive::CmdID)] -#[cmdid(2523)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CancelActivityExpeditionScRsp { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub mpgemlglhbh: u32, -} -/// Obf: PNOEHDKCDCP -#[derive(proto_derive::CmdID)] -#[cmdid(2519)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeActivityExpeditionRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub mpgemlglhbh: u32, -} -/// Obf: LOAMIMDLJNC -#[derive(proto_derive::CmdID)] -#[cmdid(2547)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeActivityExpeditionRewardScRsp { - /// offset: 40 - #[prost(uint32, tag = "6")] - pub score: u32, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub pehcdfaeefk: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub mpgemlglhbh: u32, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: MAFGCPMGAII -#[derive(proto_derive::CmdID)] -#[cmdid(2535)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeMultipleActivityExpeditionRewardCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub gomdmnhmmnh: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mmnjmingahj { - /// offset: 40 - #[prost(uint32, tag = "11")] - pub mpgemlglhbh: u32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub pehcdfaeefk: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub reward: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub score: u32, -} -/// Obf: ACBFOFDKOFJ +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(2512)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeMultipleActivityExpeditionRewardScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub jieeelikijm: ::prost::alloc::vec::Vec, +pub struct AcceptActivityExpeditionScRsp { /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub cdndfceedco: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "3")] + #[prost(message, optional, tag = "12")] + pub igggckfldma: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "5")] pub retcode: u32, } +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2509)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct CancelActivityExpeditionCsReq { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub koimokndblh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2513)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct CancelActivityExpeditionScRsp { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub koimokndblh: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2543)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct TakeActivityExpeditionRewardCsReq { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub koimokndblh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2534)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeActivityExpeditionRewardScRsp { + /// offset: 44 + #[prost(uint32, tag = "14")] + pub score_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub extra_reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub reward: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "8")] + pub koimokndblh: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2550)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeMultipleActivityExpeditionRewardCsReq { + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub jikdlfoolim: ::prost::alloc::vec::Vec, +} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gcaiemmcpdh { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub avatar_list: ::prost::alloc::vec::Vec, +pub struct Jfpjbhndmpa { + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub reward: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub koimokndblh: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "1")] + #[prost(message, optional, tag = "4")] + pub extra_reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub score_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2540)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeMultipleActivityExpeditionRewardScRsp { + /// offset: 40 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "3")] + pub bkpbdjjfmab: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub dfnijpbmgie: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pkopecpcaah { + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fhblgmpmiie { - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "11")] - pub jgajkoefgpc: ::std::collections::HashMap, +pub struct Gfapjikaikc { /// offset: 56 #[prost(uint32, repeated, tag = "12")] - pub amdhncjjoph: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(map = "uint32, message", tag = "10")] - pub gblooeppgdm: ::std::collections::HashMap, - /// offset: 64 - #[prost(uint32, repeated, tag = "14")] - pub njngbpjemcl: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "13")] - pub bejcaldilnc: u32, + pub emomliencen: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "4")] + pub amnaafdigbc: ::std::collections::HashMap, /// offset: 32 - #[prost(uint32, repeated, tag = "7")] - pub edhnakfofgj: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "8")] + pub lgpkopdgpmb: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(map = "uint32, message", tag = "7")] + pub iigcpdmeecj: ::std::collections::HashMap, + /// offset: 40 + #[prost(uint32, repeated, tag = "15")] + pub ppkiibklojj: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "10")] + pub ckjckgfeija: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub hkmmnfghfpb: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub jcchbnjddoc: ::prost::alloc::vec::Vec, } -/// Obf: CLJEPFDCHON +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4999)] +#[cmdid(4947)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetFantasticStoryActivityDataCsReq { +pub struct Cedicahdico { /// offset: 24 - #[prost(uint32, tag = "9")] - pub bejcaldilnc: u32, + #[prost(uint32, tag = "13")] + pub ckjckgfeija: u32, } -/// Obf: NAOJJABOCOJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4923)] +#[cmdid(4909)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetFantasticStoryActivityDataScRsp { +pub struct Ahgmkogahgd { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, /// offset: 16 #[prost(message, optional, tag = "1")] - pub fpepicfcffm: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, + pub gbcjapkgecb: ::core::option::Option, } -/// Obf: BFBBJFNLFDF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4998)] +#[cmdid(4938)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FinishChapterScNotify { +pub struct Nkgdpmonopd { /// offset: 16 - #[prost(message, optional, tag = "3")] - pub fpepicfcffm: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub gbcjapkgecb: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kjmfeockcml { - /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "15")] - pub avatar_type: i32, +pub struct Hfjkefjikog { /// offset: 28 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub avatar_id: u32, -} -/// Obf: LAHJHNKHPMD -#[derive(proto_derive::CmdID)] -#[cmdid(4965)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterFantasticStoryActivityStageCsReq { /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub bejcaldilnc: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] + #[prost(enumeration = "AvatarType", tag = "5")] + pub avatar_type: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4917)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Afganafooij { + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "8")] pub buff_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub ckjckgfeija: u32, /// offset: 44 #[prost(uint32, tag = "1")] pub battle_id: u32, } -/// Obf: MCHENFGFKNN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4983)] +#[cmdid(4951)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterFantasticStoryActivityStageScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "7")] +pub struct Pkieooohpkg { + /// offset: 16 + #[prost(message, optional, tag = "2")] pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, /// offset: 36 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] + pub ckjckgfeija: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] pub battle_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4911)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hehlnimbfpm { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub ckjckgfeija: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub kkhalfcnokj: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub battle_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Djmbhpfocme { + /// offset: 24 + #[prost(enumeration = "Oehbalahkeb", tag = "5")] + pub phkopcbnocc: i32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub gikbcppcpid: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cmildjbkpeh { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub unique_id: u32, /// offset: 40 #[prost(uint32, tag = "5")] - pub bejcaldilnc: u32, -} -/// Obf: AOJIAEAKEBH -#[derive(proto_derive::CmdID)] -#[cmdid(4986)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FantasticStoryActivityBattleEndScNotify { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub pkklpbbnnce: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub bejcaldilnc: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub battle_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ehfogjkjmef { - /// offset: 28 - #[prost(enumeration = "Dlbfahoagph", tag = "5")] - pub hhmabjdimgm: i32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub imfcimkmjpl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Maaolkgllbi { - /// offset: 40 - #[prost(bool, tag = "13")] - pub hhenfgjpfoa: bool, - /// offset: 41 - #[prost(bool, tag = "10")] - pub kkeaebagmke: bool, - /// offset: 32 - #[prost(uint32, tag = "2")] pub affix_id: u32, + /// offset: 37 + #[prost(bool, tag = "2")] + pub pcenbhlimjm: bool, /// offset: 36 - #[prost(uint32, tag = "14")] - pub unique_id: u32, + #[prost(bool, tag = "4")] + pub fdpmdfiljfb: bool, /// offset: 24 - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "15")] pub monster_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nfkdaagbmpj { - /// offset: 44 - #[prost(enumeration = "Mgpocjfmkpm", tag = "5")] +pub struct Faccdigebch { + /// offset: 36 + #[prost(uint32, tag = "6")] + pub avatar_id: u32, + /// offset: 40 + #[prost(enumeration = "Lblpeccjfbp", tag = "7")] pub status: i32, /// offset: 32 - #[prost(uint32, tag = "14")] - pub avatar_id: u32, - /// offset: 40 - #[prost(int32, tag = "2")] - pub hp: i32, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub rank: u32, - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub mhgdggnijcg: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(int32, tag = "3")] + #[prost(int32, tag = "8")] pub max_hp: i32, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub rank: u32, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub jpjkgkoifik: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(int32, tag = "11")] + pub hp: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fekfbaocgkp { - /// offset: 28 - #[prost(bool, tag = "9")] - pub hnjfffjdgne: bool, +pub struct Dhhpeejfedj { /// offset: 24 - #[prost(uint32, tag = "8")] + #[prost(bool, tag = "5")] + pub bffffngbpin: bool, + /// offset: 28 + #[prost(uint32, tag = "12")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oiegknhnian { +pub struct Bkhligilbfa { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub mcjbopfpmgc: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "6")] - pub jmjdbalgmhd: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub lghocabppeh: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub amcnipinflb: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Makgeehgpoh { - /// offset: 16 +pub struct Cnlnnjddegm { + /// offset: 24 #[prost(message, repeated, tag = "5")] - pub gmmopdhdfci: ::prost::alloc::vec::Vec, + pub gnbmecnengf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gkicocclpmg { +pub struct Jeiboohekak { /// offset: 24 - #[prost(uint32, tag = "6")] - pub cnt: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub buff_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aogeppfcpin { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub cnt: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub source: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ahnnknpfagd { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub jhnkmohlbpj: u32, - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub lfegonpnpkg: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cahihnjiajb { - /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub mialmmljbml: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub aekjlhjopce: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "4")] - pub dmhedhldhmo: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "1")] - pub mkjlcadgmle: u32, - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "6")] - pub fajjeogkoon: ::std::collections::HashMap, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Emnmliilkke { - /// offset: 28 #[prost(uint32, tag = "13")] - pub khckfbhcfpl: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub buff_id: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] pub cnt: u32, - /// offset: 24 - #[prost(bool, tag = "4")] - pub hdbbbggmfjp: bool, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bmkfoiflble { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub item_value: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub kmdeifbpncb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bmmlafjknlh { - /// offset: 52 - #[prost(uint32, tag = "15")] - pub item_value: u32, +pub struct Dchdgjigmkg { /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub ihjifpphkjd: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub akidclefpdk: u32, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub meecngkldjg: u32, - /// offset: 48 - #[prost(bool, tag = "4")] - pub dipjoiaclhn: bool, - /// offset: 32 - #[prost(message, repeated, tag = "6")] - pub ppibbkhlmjc: ::prost::alloc::vec::Vec, - /// offset: 49 - #[prost(bool, tag = "2")] - pub bcfaiijflfa: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mlkoinjenmh { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub hpljnilnick: u32, + #[prost(message, optional, tag = "12")] + pub source: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "5")] - pub ndbojandnjn: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub nodmobecpeo: u32, + pub cnt: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mmefnocbbbc { +pub struct Jlhcgonlpcp { /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub pmaokeoobno: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub edapdbekbmg: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub lodfbklaaag: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dpchehnhcgo { + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub aipdjdafbid: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "3")] + pub ahbbhgngfnc: u32, + /// offset: 56 + #[prost(message, repeated, tag = "2")] + pub buff_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(map = "uint32, uint32", tag = "8")] + pub ciicipdbeag: ::std::collections::HashMap, + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub afpaldnnhcj: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "14")] + pub cdaecdmpnpa: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lomjkobdjfp { +pub struct Kppackjjaci { /// offset: 24 - #[prost(uint32, tag = "9")] - pub unique_id: u32, + #[prost(bool, tag = "14")] + pub ijkafgejbhn: bool, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub buff_id: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub ifpnaeakclm: u32, /// offset: 28 #[prost(uint32, tag = "7")] - pub finbjpffdhi: u32, + pub cnt: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mblnbbodell { +pub struct Jkplchnbchk { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub geibknhcgjf: u32, /// offset: 28 - #[prost(int32, tag = "6")] + #[prost(uint32, tag = "13")] + pub kceodcplcij: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ellmdaefbfe { + /// offset: 48 + #[prost(bool, tag = "14")] + pub deimngjnaab: bool, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub klelilggmic: u32, + /// offset: 44 + #[prost(uint32, tag = "1")] + pub geibknhcgjf: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub eophcfffohk: u32, + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub ndkemjaphjl: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "10")] + pub jhjbcgfkknj: ::prost::alloc::vec::Vec, + /// offset: 49 + #[prost(bool, tag = "8")] + pub knbimmheffc: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pmbigoadbkn { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub ojplfjnhjoh: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub cjoojnncpgp: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub omahinbdbpi: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Edofbkhgpac { + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub hhlbdehhhdh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ihnmncliodc { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub fkhinknnone: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jaobjfjnlfg { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub mjadlaoahel: u32, + /// offset: 28 + #[prost(int32, tag = "11")] pub value: i32, /// offset: 24 - #[prost(uint32, tag = "7")] - pub hapeknjboje: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "1")] pub unique_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hdhapalllmk { - /// offset: 88 - #[prost(message, repeated, tag = "12")] - pub fbfjmpfbchb: ::prost::alloc::vec::Vec, +pub struct Cdkjnodkdlm { + /// offset: 40 + #[prost(message, optional, tag = "1271")] + pub ifleggnpnbm: ::core::option::Option, /// offset: 80 - #[prost(message, optional, tag = "3")] - pub dhcllaaneef: ::core::option::Option, + #[prost(message, repeated, tag = "8")] + pub gipgljkjdka: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, optional, tag = "10")] - pub dpjegibddpc: ::core::option::Option, - /// offset: 72 - #[prost(message, optional, tag = "2029")] - pub dgnamoelmgk: ::core::option::Option, - /// offset: 116 - #[prost(uint32, tag = "7")] - pub pbalfienefo: u32, - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub jbpmibfmcpl: ::core::option::Option, - /// offset: 96 - #[prost(message, optional, tag = "14")] - pub cjcdndkhmnk: ::core::option::Option, - /// offset: 104 - #[prost(uint32, tag = "8")] - pub area_id: u32, - /// offset: 48 - #[prost(message, repeated, tag = "9")] - pub nlmhpldmcmd: ::prost::alloc::vec::Vec, - /// offset: 56 #[prost(message, optional, tag = "5")] - pub deajilaeako: ::core::option::Option, + pub nlmpbndpcnh: ::core::option::Option, /// offset: 112 - #[prost(enumeration = "Ghhdmemlkpo", tag = "6")] - pub status: i32, - /// offset: 64 - #[prost(message, optional, tag = "538")] - pub jcoodgoenpm: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub area_id: u32, /// offset: 108 - #[prost(uint32, tag = "15")] - pub cbfhidmkflb: u32, + #[prost(uint32, tag = "13")] + pub difficulty_level: u32, + /// offset: 64 + #[prost(message, optional, tag = "1301")] + pub ekfdifklkap: ::core::option::Option, + /// offset: 72 + #[prost(message, optional, tag = "1")] + pub ekfiibkjlef: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "15")] + pub gclekilecbi: ::core::option::Option, + /// offset: 96 + #[prost(message, optional, tag = "3")] + pub kgblipkdfni: ::core::option::Option, + /// offset: 104 + #[prost(uint32, tag = "2")] + pub lalbmnbakka: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub bfbflganphk: ::core::option::Option, + /// offset: 88 + #[prost(message, optional, tag = "6")] + pub nggeclafcjg: ::core::option::Option, + /// offset: 116 + #[prost(enumeration = "Gnkmcjofmgb", tag = "10")] + pub status: i32, /// offset: 32 - #[prost(message, optional, tag = "13")] - pub kndmeilhkej: ::core::option::Option, + #[prost(message, repeated, tag = "12")] + pub kaedlabjdca: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kadinmkcjbh { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub kiabcfhdgbk: ::core::option::Option, +pub struct Iidphhdbflo { /// offset: 32 - #[prost(uint32, tag = "2")] - pub hbapccegnme: u32, + #[prost(uint32, tag = "10")] + pub queue_position: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub afbocdnjhoo: ::core::option::Option, } -/// Obf: JCECEDFJDGO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5979)] +#[cmdid(5960)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateHandlePendingActionCsReq { - /// offset: 36 - #[prost(uint32, tag = "12")] - pub hbapccegnme: u32, - #[prost(oneof = "fate_handle_pending_action_cs_req::Koijfoffjnj", tags = "4, 14")] - pub koijfoffjnj: ::core::option::Option< - fate_handle_pending_action_cs_req::Koijfoffjnj, - >, +pub struct Micglcnilol { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub queue_position: u32, + #[prost(oneof = "micglcnilol::Fbgidiopkbf", tags = "9, 8")] + pub fbgidiopkbf: ::core::option::Option, } -/// Nested message and enum types in `FateHandlePendingActionCsReq`. -pub mod fate_handle_pending_action_cs_req { +/// Nested message and enum types in `MICGLCNILOL`. +pub mod micglcnilol { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Koijfoffjnj { - /// offset: 24 - #[prost(message, tag = "4")] - Bamnojkmbmn(super::Licmpolbcfj), - /// offset: 24 - #[prost(message, tag = "14")] - Fjgmnioilok(super::Danemlljaco), + pub enum Fbgidiopkbf { + /// offset: 16 + #[prost(message, tag = "9")] + Kgpdijalamb(super::Gedcajcinch), + /// offset: 16 + #[prost(message, tag = "8")] + Ehhiobbonfn(super::Efogeofeehn), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Licmpolbcfj { +pub struct Gedcajcinch { /// offset: 24 - #[prost(uint32, tag = "3")] - pub nojipbnofep: u32, + #[prost(uint32, tag = "5")] + pub jndcecmfnio: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Danemlljaco { - /// offset: 24 - #[prost(bool, tag = "10")] - pub lecdhddceia: bool, +pub struct Efogeofeehn { /// offset: 28 - #[prost(uint32, tag = "12")] - pub bcoleedgcpk: u32, + #[prost(uint32, tag = "8")] + pub mbmffhpcclb: u32, + /// offset: 24 + #[prost(bool, tag = "14")] + pub ibbenihpcin: bool, } -/// Obf: OIPFGJIKAIJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5985)] +#[cmdid(6000)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateHandlePendingActionScRsp { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub hbapccegnme: u32, +pub struct Cjmdehegbdb { /// offset: 24 + #[prost(uint32, tag = "8")] + pub queue_position: u32, + /// offset: 28 #[prost(uint32, tag = "3")] pub retcode: u32, } -/// Obf: LKOFMHMKFDA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5962)] +#[cmdid(5990)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateSyncActionResultScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub action_result_list: ::prost::alloc::vec::Vec, +pub struct Fjfkpkdakgf { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub imkeiipjhgl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ibeiihldkan { +pub struct Dpehdeamihd { #[prost( - oneof = "ibeiihldkan::Item", - tags = "3, 4, 9, 12, 2, 6, 11, 15, 10, 1, 8, 7, 14, 5, 13, 417, 140, 1538, 416, 363, 450, 679" + oneof = "dpehdeamihd::Paiigoggofj", + tags = "9, 1, 2, 14, 5, 10, 11, 4, 15, 13, 6, 7, 8, 12, 3, 1660, 2027, 1523, 1392, 717, 1108, 1727" )] - pub item: ::core::option::Option, + pub paiigoggofj: ::core::option::Option, } -/// Nested message and enum types in `IBEIIHLDKAN`. -pub mod ibeiihldkan { +/// Nested message and enum types in `DPEHDEAMIHD`. +pub mod dpehdeamihd { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Item { - /// offset: 24 - #[prost(message, tag = "3")] - Dpbgpfadpjb(super::Jkpnbbiibnp), - /// offset: 24 - #[prost(message, tag = "4")] - Apoaajehefa(super::Cifdfldeokc), - /// offset: 24 + pub enum Paiigoggofj { + /// offset: 16 #[prost(message, tag = "9")] - Mheagdglgcd(super::Kojppiagbdf), - /// offset: 24 - #[prost(message, tag = "12")] - Ljoikifpdkd(super::Hifebjcjlcn), - /// offset: 24 - #[prost(message, tag = "2")] - Jfcopcfmobc(super::Jbhpfnnfkip), - /// offset: 24 - #[prost(message, tag = "6")] - Oodnpibegcf(super::Hmcapgmlpob), - /// offset: 24 - #[prost(message, tag = "11")] - Ofjfladagpg(super::Ohcmfggbjcj), - /// offset: 24 - #[prost(message, tag = "15")] - Clmcjcoahja(super::Lolenbeahbi), - /// offset: 24 - #[prost(message, tag = "10")] - Ilpmcfeplhd(super::Igkeehmgcpa), - /// offset: 24 + Ofnjkhbpeap(super::Jkgdghdndfh), + /// offset: 16 #[prost(message, tag = "1")] - Eabfcllkpja(super::Algenlcoggi), - /// offset: 24 - #[prost(message, tag = "8")] - Gdfapbiomgp(super::Aifkhomfglf), - /// offset: 24 - #[prost(message, tag = "7")] - Jgblimaookd(super::Jpbjlkjbjoa), - /// offset: 24 + Hkbjgbgpjbg(super::Cldpmjjgpie), + /// offset: 16 + #[prost(message, tag = "2")] + Njpekndbdpb(super::Akjkejhhehg), + /// offset: 16 #[prost(message, tag = "14")] - Epejbioejgh(super::Mfdalmkkhom), - /// offset: 24 + Pkboahgghcd(super::Bpdjjknjhdg), + /// offset: 16 #[prost(message, tag = "5")] - Lgkfigmhhog(super::Bhihnlgpffg), - /// offset: 24 - #[prost(message, tag = "13")] - Khcdhcngffd(super::Homjemilmmf), - /// offset: 24 - #[prost(message, tag = "417")] - Mbifdipfmdn(super::Eglbnljhbfj), - /// offset: 24 - #[prost(message, tag = "140")] - Phfpngodbld(super::Oklhbcfmbbo), - /// offset: 24 - #[prost(message, tag = "1538")] - Ncffkkbbbof(super::Fajofmfcjem), - /// offset: 24 - #[prost(message, tag = "416")] - Indjmlocfki(super::Oagaopcjdja), - /// offset: 24 - #[prost(message, tag = "363")] - Mbampalalie(super::Iaknhmegiko), - /// offset: 24 - #[prost(message, tag = "450")] - Fneffjodfji(super::Limlkcfgkfa), - /// offset: 24 - #[prost(message, tag = "679")] - Pgcpaiccckh(super::Mkgohmihggj), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hmcapgmlpob { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub meecngkldjg: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub akidclefpdk: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Homjemilmmf { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub deajilaeako: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Limlkcfgkfa { - /// offset: 24 - #[prost(bool, tag = "6")] - pub bcfaiijflfa: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mkgohmihggj { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub pmaokeoobno: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jpbjlkjbjoa { - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub ijombhbcgnn: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub inbadcfnjif: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mfdalmkkhom { - /// offset: 32 - #[prost(uint32, repeated, tag = "5")] - pub ieakbnhfnid: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub bjgmjngogjg: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bhihnlgpffg { - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub fndgcjhfcdg: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "8")] - pub icfpflmbjgp: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oklhbcfmbbo { - /// offset: 32 - #[prost(map = "uint32, uint32", tag = "9")] - pub nfbglbeeibm: ::std::collections::HashMap, - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub mcpmijacmci: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iaknhmegiko { - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub aekjlhjopce: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fajofmfcjem { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub gakbpipldio: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oagaopcjdja { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub fhikihfleia: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jkpnbbiibnp { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub kfgjbiljgdp: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cifdfldeokc { - /// offset: 24 - #[prost(enumeration = "Ghhdmemlkpo", tag = "15")] - pub pjgbfknjpno: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kclgbmfehbe { - /// offset: 60 - #[prost(uint32, tag = "15")] - pub avatar_id: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub bpockmfjmek: u32, - /// offset: 56 - #[prost(uint32, tag = "12")] - pub bamedjdaomc: u32, - /// offset: 48 - #[prost(double, tag = "9")] - pub kdgccomkipo: f64, - /// offset: 33 - #[prost(bool, tag = "8")] - pub dcabnhjmmjg: bool, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub nfkmddnpgbj: u32, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub nkbmebellfj: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub cblamaccepb: u32, - /// offset: 32 - #[prost(bool, tag = "11")] - pub empljnhephc: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kojppiagbdf { - /// offset: 60 - #[prost(bool, tag = "10")] - pub cfldplofkam: bool, - /// offset: 56 - #[prost(uint32, tag = "13")] - pub hahjhbfaefc: u32, - /// offset: 52 - #[prost(uint32, tag = "12")] - pub bilejkhihjl: u32, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub amhblhcpcoh: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "1")] - pub cpcnmdejili: u32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub gmmopdhdfci: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "6")] - pub imhhilcmmgi: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub dkpdehndflh: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hifebjcjlcn { - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub fmllhlkojlj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jbhpfnnfkip { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub hhjocgomeco: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ohcmfggbjcj { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub mkjlcadgmle: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lolenbeahbi { - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub gecnffhgiah: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Igkeehmgcpa { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Algenlcoggi { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub hkfhbakhnlh: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aifkhomfglf { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eglbnljhbfj { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub aimgdmfaahh: ::core::option::Option, -} -/// Obf: GHPEMHBJFIG -#[derive(proto_derive::CmdID)] -#[cmdid(5965)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateSyncPendingActionScNotify { - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub kndmeilhkej: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Peajladinfk { - #[prost(oneof = "peajladinfk::Item", tags = "15, 8")] - pub item: ::core::option::Option, -} -/// Nested message and enum types in `PEAJLADINFK`. -pub mod peajladinfk { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Item { - /// offset: 24 + Onbmbhcalnb(super::Feodbmcddgi), + /// offset: 16 + #[prost(message, tag = "10")] + Aidphdimnke(super::Elgapepdeke), + /// offset: 16 + #[prost(message, tag = "11")] + Cbfieaeckci(super::Cpeoofbakln), + /// offset: 16 + #[prost(message, tag = "4")] + Bdhalkehnhh(super::Obhmeknehfc), + /// offset: 16 #[prost(message, tag = "15")] - Bamnojkmbmn(super::Cmhmblalohn), - /// offset: 24 + Epeocjelhll(super::Jhdfadamgjl), + /// offset: 16 + #[prost(message, tag = "13")] + Falcligcmig(super::Dnmemlfekfj), + /// offset: 16 + #[prost(message, tag = "6")] + Cmejnkdgkgh(super::Hocedmpfkgi), + /// offset: 16 + #[prost(message, tag = "7")] + Oehfajindof(super::Ddcnjpgdnni), + /// offset: 16 #[prost(message, tag = "8")] - Fjgmnioilok(super::Nlfdkoiodmd), + Jammpfhbhna(super::Mkibjkbmbnl), + /// offset: 16 + #[prost(message, tag = "12")] + Pdeolpcdkbm(super::Cgfgmnncfbg), + /// offset: 16 + #[prost(message, tag = "3")] + Kpjphdcmfnk(super::Lnllgnibceb), + /// offset: 16 + #[prost(message, tag = "1660")] + Minmikfdlfd(super::Igeoklhogkc), + /// offset: 16 + #[prost(message, tag = "2027")] + Ohbfgicieie(super::Hcjmjcjflhg), + /// offset: 16 + #[prost(message, tag = "1523")] + Ddnncacaebp(super::Ojmbccnffge), + /// offset: 16 + #[prost(message, tag = "1392")] + Likpmfplmlf(super::Llmlbncmplm), + /// offset: 16 + #[prost(message, tag = "717")] + Pcifphpfpkf(super::Ekcgfngknkb), + /// offset: 16 + #[prost(message, tag = "1108")] + Fcfbjojhibe(super::Chjnimapolm), + /// offset: 16 + #[prost(message, tag = "1727")] + Nlfkfollbbc(super::Efmaadhcmhm), } } #[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Elgapepdeke { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub klelilggmic: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub eophcfffohk: u32, +} +#[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cmhmblalohn { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub gpbgbmaljkp: ::prost::alloc::vec::Vec, +pub struct Lnllgnibceb { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub nggeclafcjg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Idmdlokhebj { +pub struct Chjnimapolm { /// offset: 24 - #[prost(uint32, tag = "2")] - pub hapeknjboje: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub appkeeobjkc: u32, + #[prost(bool, tag = "3")] + pub knbimmheffc: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nlfdkoiodmd { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub ipmajojkbdb: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mgcehcmpahe { - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub jjdoackkcbj: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "4")] - pub mfkjdoeblim: ::core::option::Option, +pub struct Efmaadhcmhm { /// offset: 16 #[prost(uint32, repeated, tag = "15")] - pub ehbghcgkfbh: ::prost::alloc::vec::Vec, + pub hhlbdehhhdh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ddcnjpgdnni { + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub lfhooodpkmi: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub fpbcolihfgh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mkibjkbmbnl { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub fnoldgdijnl: ::prost::alloc::vec::Vec, /// offset: 24 #[prost(uint32, repeated, tag = "10")] - pub ngpigmbniac: ::prost::alloc::vec::Vec, + pub lgmilopndmp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dlikbegadfp { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub hcnphhbabpi: ::core::option::Option, - /// offset: 48 - #[prost(message, repeated, tag = "9")] - pub ajaoolenenn: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "10")] - pub kgffjfomcjh: u32, +pub struct Cgfgmnncfbg { /// offset: 24 - #[prost(map = "uint32, message", tag = "4")] - pub ognklcejpha: ::std::collections::HashMap, + #[prost(uint32, repeated, tag = "1")] + pub lenihgpaohm: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub cjfclodjhph: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hcjmjcjflhg { + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub dmofpoijgoj: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "1")] + pub pcnhdmcbldo: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ekcgfngknkb { + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub aipdjdafbid: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ojmbccnffge { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub anpolbpljhk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Llmlbncmplm { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub ccdgnnbllbh: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jkgdghdndfh { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub eaahnfallpo: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cldpmjjgpie { + /// offset: 24 + #[prost(enumeration = "Gnkmcjofmgb", tag = "15")] + pub bcdchnedgli: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ofhoobmnice { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub oimgpcpolbp: u32, + /// offset: 48 + #[prost(double, tag = "13")] + pub apechlhnpfc: f64, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub ihmibmmepdh: u32, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub avatar_id: u32, + /// offset: 60 + #[prost(bool, tag = "8")] + pub cigblblkagl: bool, + /// offset: 61 + #[prost(bool, tag = "14")] + pub deipaakkbpe: bool, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub ebibobjaadc: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub dhhbfnilncm: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub fniiepdgkdo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Akjkejhhehg { + /// offset: 60 + #[prost(uint32, tag = "13")] + pub afhelangnjl: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "3")] + pub nhkcaammdmm: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "1")] + pub gnnpnmjogbb: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub gbmhefblbbe: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub obfinaicadi: u32, + /// offset: 32 + #[prost(message, repeated, tag = "15")] + pub gnbmecnengf: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(bool, tag = "11")] + pub eflcleeplak: bool, + /// offset: 64 + #[prost(uint32, tag = "12")] + pub amelbpednbd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bpdjjknjhdg { + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub pmdlmhpmklj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Feodbmcddgi { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub fnelbbmapee: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cpeoofbakln { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub ahbbhgngfnc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Obhmeknehfc { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub dalnkmapffi: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jhdfadamgjl { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dnmemlfekfj { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub ceaeppmkbaj: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hocedmpfkgi { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Igeoklhogkc { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub ncjphdckfim: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5976)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pjccjafepmp { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub gclekilecbi: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hlljhdbbkml { + #[prost(oneof = "hlljhdbbkml::Paiigoggofj", tags = "14, 1")] + pub paiigoggofj: ::core::option::Option, +} +/// Nested message and enum types in `HLLJHDBBKML`. +pub mod hlljhdbbkml { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Paiigoggofj { + /// offset: 24 + #[prost(message, tag = "14")] + Kgpdijalamb(super::Hflajkjibld), + /// offset: 24 + #[prost(message, tag = "1")] + Ehhiobbonfn(super::Jhaobfinkmo), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hflajkjibld { + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub nhcjllegdnd: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cdijgbkakpe { + /// offset: 28 + #[prost(uint32, tag = "1")] + pub kniejlcppmj: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub mjadlaoahel: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jhaobfinkmo { + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub mpjadjbmjbk: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jcljcoiackp { + /// offset: 32 + #[prost(uint32, repeated, tag = "13")] + pub pkbplacjicg: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub bggcghgnofl: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub oejblijbljj: ::core::option::Option, + /// offset: 40 + #[prost(uint32, repeated, tag = "1")] + pub ocbhondeooo: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ocnhfmlldco { + /// offset: 56 + #[prost(uint32, tag = "5")] + pub jnkkefinhjo: u32, + /// offset: 48 + #[prost(message, optional, tag = "9")] + pub npjpjajbmcg: ::core::option::Option, + /// offset: 32 + #[prost(map = "uint32, message", tag = "1")] + pub iaddchnjkag: ::std::collections::HashMap, /// offset: 40 #[prost(message, optional, tag = "7")] - pub ehmojbccemh: ::core::option::Option, + pub blkenggfkpj: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub megollcjoae: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jgogdbmplcp { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub fjokplkodld: ::prost::alloc::vec::Vec, +pub struct Ebgaaoihjgp { + /// offset: 32 + #[prost(uint32, repeated, tag = "7")] + pub hdggncimjcd: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "6")] pub exp: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub fmcdgpjfeaf: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub dgahopmbgki: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Okdbfbhkakk { +pub struct Ogmgdcjlkic { + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "2")] + pub jkokldifnme: ::std::collections::HashMap, /// offset: 24 - #[prost(map = "uint32, uint32", tag = "6")] - pub ljlkndjcbmf: ::std::collections::HashMap, - /// offset: 44 - #[prost(uint32, tag = "15")] - pub lbbjimamcge: u32, + #[prost(uint32, repeated, tag = "14")] + pub faelgahgbip: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "12")] - pub blfaanhjpad: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "9")] - pub ceihfokenob: ::prost::alloc::vec::Vec, -} -/// Obf: FNNHLADLMKI -#[derive(proto_derive::CmdID)] -#[cmdid(5976)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateQueryCsReq {} -/// Obf: MLALAGCOKGB -#[derive(proto_derive::CmdID)] -#[cmdid(5978)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateQueryScRsp { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub operating_system: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub lmgkmaoicgc: ::core::option::Option, -} -/// Obf: HNMHJAPPEIH -#[derive(proto_derive::CmdID)] -#[cmdid(5971)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateStartCsReq { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub pbalfienefo: u32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub area_id: u32, -} -/// Obf: BNOJIGOOFMJ -#[derive(proto_derive::CmdID)] -#[cmdid(5988)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateStartScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub lmgkmaoicgc: ::core::option::Option, -} -/// Obf: JHCNOBJJLHC -#[derive(proto_derive::CmdID)] -#[cmdid(5955)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateBattleStartCsReq {} -/// Obf: FPDPAHAHJJA -#[derive(proto_derive::CmdID)] -#[cmdid(5977)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateBattleStartScRsp { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub battle_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: FFHIKHDACJG -#[derive(proto_derive::CmdID)] -#[cmdid(5970)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateChangeLineupCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub avatar_list: ::prost::alloc::vec::Vec, -} -/// Obf: KNGMCHHDEEH -#[derive(proto_derive::CmdID)] -#[cmdid(5994)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateChangeLineupScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: FAONFKOLKHA -#[derive(proto_derive::CmdID)] -#[cmdid(5951)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopBuyGoodsCsReq { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub dbankkbmemm: u32, -} -/// Obf: CGFKBGODDBH -#[derive(proto_derive::CmdID)] -#[cmdid(5995)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopBuyGoodsScRsp { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub dbankkbmemm: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: LIMBIABGFML -#[derive(proto_derive::CmdID)] -#[cmdid(5993)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopSellBuffCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub imajoanakdc: u32, - /// offset: 28 - #[prost(bool, tag = "9")] - pub pigdohejlmj: bool, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub olpemmhkjpn: u32, -} -/// Obf: KBMEDCKINPF -#[derive(proto_derive::CmdID)] -#[cmdid(5953)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopSellBuffScRsp { - /// offset: 24 - #[prost(bool, tag = "4")] - pub pigdohejlmj: bool, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub olpemmhkjpn: u32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 28 #[prost(uint32, tag = "1")] - pub imajoanakdc: u32, + pub mpklhhlonio: u32, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub akebmncomak: u32, } -/// Obf: KOKPDLAHMGD -#[derive(proto_derive::CmdID)] -#[cmdid(5973)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopRefreshGoodsCsReq {} -/// Obf: IMEKJPIELCO +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5969)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateShopRefreshGoodsScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub ppibbkhlmjc: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 36 - #[prost(bool, tag = "1")] - pub dipjoiaclhn: bool, -} -/// Obf: ILAHJPGGHJK -#[derive(proto_derive::CmdID)] -#[cmdid(5997)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopLockGoodsCsReq { - /// offset: 24 - #[prost(bool, tag = "10")] - pub is_protected: bool, -} -/// Obf: MCGGPPKDBKL -#[derive(proto_derive::CmdID)] -#[cmdid(5983)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopLockGoodsScRsp { - /// offset: 28 - #[prost(bool, tag = "3")] - pub is_protected: bool, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: KPOCKEFCLNC -#[derive(proto_derive::CmdID)] -#[cmdid(5980)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopLeaveCsReq {} -/// Obf: EKGELMFKDED -#[derive(proto_derive::CmdID)] -#[cmdid(5961)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateShopLeaveScRsp { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fbfbmdepcbp { - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub fmllhlkojlj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Coieihnkcdk { - /// offset: 16 - #[prost(map = "uint32, double", tag = "13")] - pub dfgdjmpmblf: ::std::collections::HashMap, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub source: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pnnaeeakhof { - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub jjboohnmpnb: ::prost::alloc::vec::Vec, -} -/// Obf: JHBCCJJBHPJ -#[derive(proto_derive::CmdID)] -#[cmdid(5981)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateSettleCsReq {} -/// Obf: HJBKPEJMPJE -#[derive(proto_derive::CmdID)] -#[cmdid(5958)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateSettleScRsp { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bhmcfkhilfo { - /// offset: 36 - #[prost(enumeration = "AvatarType", tag = "4")] - pub avatar_type: i32, - /// offset: 32 - #[prost(bool, tag = "5")] - pub chnpdajeipk: bool, - /// offset: 28 - #[prost(uint32, tag = "8")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ckfknbmhmhm { - /// offset: 96 - #[prost(uint32, tag = "10")] - pub hpljnilnick: u32, - /// offset: 84 - #[prost(uint32, tag = "14")] - pub pbalfienefo: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "8")] - pub nlmhpldmcmd: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "12")] - pub cbfhidmkflb: u32, - /// offset: 40 - #[prost(message, repeated, tag = "9")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "1")] - pub chcbopflici: ::std::collections::HashMap, - /// offset: 56 - #[prost(map = "uint32, uint32", tag = "5")] - pub eaefkgokfkh: ::std::collections::HashMap, - /// offset: 88 - #[prost(uint32, tag = "11")] - pub acjcphifmln: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub fbfjmpfbchb: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(map = "uint32, uint32", tag = "1204")] - pub gibchcagian: ::std::collections::HashMap, - /// offset: 92 - #[prost(uint32, tag = "13")] - pub nodmobecpeo: u32, - /// offset: 80 - #[prost(uint32, tag = "4")] - pub obndmkngojj: u32, - /// offset: 76 - #[prost(uint32, tag = "3")] - pub ndbojandnjn: u32, -} -/// Obf: KCOKPEBPOLL +pub struct Ebcacfhppcf {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(5952)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateSettleScNotify { +pub struct Dmffkcbgkkj { + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub rogue_get_info: ::core::option::Option, /// offset: 24 - #[prost(message, optional, tag = "4")] - pub okecgddembl: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub reward: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub phmbjpfkkak: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "7")] - pub score: u32, + #[prost(uint32, tag = "4")] + pub retcode: u32, } -/// Obf: DBPIEADFIEJ +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5998)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pkkggnjiceo { + /// offset: 36 + #[prost(uint32, tag = "1")] + pub area_id: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub difficulty_level: u32, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub avatar_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5955)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cnacenhjlol { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub phmbjpfkkak: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5985)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjfjaafodac {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5983)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pamknhokhdl { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub battle_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5981)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jdbgcnbdllo { + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub avatar_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5975)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Panodpajmoj { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5996)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dhkkjdjokmh { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub ppcaaekchnb: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5967)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mmpjpkeodel { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub ppcaaekchnb: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5962)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Egmpiicelah { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub ganbdnjamie: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub ilhojkhfheg: u32, + /// offset: 32 + #[prost(bool, tag = "10")] + pub kahcbfcjfkn: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5959)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hpafbmdjodd { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub ilhojkhfheg: u32, + /// offset: 24 + #[prost(bool, tag = "11")] + pub kahcbfcjfkn: bool, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub ganbdnjamie: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5963)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mdldapdjnmk {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5993)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fmllcfaegkf { + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub jhjbcgfkknj: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(bool, tag = "3")] + pub deimngjnaab: bool, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5984)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FateTakeExpRewardCsReq {} -/// Obf: FBGCAPAJHBD -#[derive(proto_derive::CmdID)] -#[cmdid(5956)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FateTakeExpRewardScRsp { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub reward: ::core::option::Option, +pub struct Admnibijhfl { /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub jgfbcdoicjf: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, repeated, tag = "2")] - pub obgoboelefm: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "9")] + pub is_locked: bool, } +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(5970)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Okcndieklpm { - /// offset: 24 - #[prost(enumeration = "Pmnfdjcllgb", tag = "7")] - pub plikadkklgd: i32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub jbolaafdkan: u32, +pub struct Emopjegphgk { /// offset: 28 - #[prost(uint32, tag = "11")] - pub nlpklpccjpl: u32, + #[prost(bool, tag = "10")] + pub is_locked: bool, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub retcode: u32, } -/// Obf: OIMCKJDFFKE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7159)] +#[cmdid(5957)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetFeverTimeActivityDataCsReq {} -/// Obf: FGENJLKFAAN +pub struct Nanefgenlao {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5977)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oiffdiomiif { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} #[derive(proto_derive::CmdID)] -#[cmdid(7160)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetFeverTimeActivityDataScRsp { +pub struct Oondhdoable { + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub pmdlmhpmklj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jfnbgkjggfh { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub source: ::core::option::Option, /// offset: 32 + #[prost(map = "uint32, double", tag = "15")] + pub magmnlobaej: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jgmjjpmjkip { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub ponglednfcp: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5973)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ghccoimogjb {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5966)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jlkbppljkij { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pieihmkiknb { + /// offset: 24 + #[prost(bool, tag = "7")] + pub ijmacfgdhhb: bool, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub id: u32, + /// offset: 32 + #[prost(enumeration = "AvatarType", tag = "5")] + pub avatar_type: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nikfpkgcoop { + /// offset: 76 + #[prost(uint32, tag = "13")] + pub level_id: u32, + /// offset: 72 + #[prost(uint32, tag = "2")] + pub difficulty_level: u32, + /// offset: 56 + #[prost(map = "uint32, uint32", tag = "1301")] + pub fgbbefdehal: ::std::collections::HashMap, + /// offset: 84 + #[prost(uint32, tag = "12")] + pub lalbmnbakka: u32, + /// offset: 32 + #[prost(map = "uint32, uint32", tag = "8")] + pub lgdgalbkcna: ::std::collections::HashMap, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub gipgljkjdka: ::prost::alloc::vec::Vec, + /// offset: 92 + #[prost(uint32, tag = "1")] + pub jkdlghjmlcg: u32, + /// offset: 96 + #[prost(uint32, tag = "7")] + pub cjoojnncpgp: u32, + /// offset: 40 + #[prost(message, repeated, tag = "3")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub kaedlabjdca: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(uint32, tag = "11")] + pub omahinbdbpi: u32, + /// offset: 64 + #[prost(map = "uint32, uint32", tag = "6")] + pub phkphfofjna: ::std::collections::HashMap, + /// offset: 88 + #[prost(uint32, tag = "14")] + pub ojplfjnhjoh: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5974)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Noebcpdgjac { + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub kcjmfdeboag: ::core::option::Option, + /// offset: 40 #[prost(uint32, tag = "5")] + pub score_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5986)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fdcnfhljejh {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5964)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dpolnplhiaa { + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub reward: ::core::option::Option, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub ajhbdhplakb: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "8")] + pub eakmpilaaie: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ehnelhjamli { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub bggbjacgaic: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub hahkiaagfie: u32, + /// offset: 28 + #[prost(enumeration = "Nmimbjmphoh", tag = "12")] + pub okmaijhgimp: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7151)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Olpaahbahmj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7153)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Adebblihhno { + /// offset: 32 + #[prost(uint32, tag = "6")] pub retcode: u32, /// offset: 16 #[prost(message, repeated, tag = "13")] - pub caaejfijidj: ::prost::alloc::vec::Vec, + pub abajinbjiel: ::prost::alloc::vec::Vec, } -/// Obf: KGMMHKFPJMG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7154)] +#[cmdid(7160)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FeverTimeActivityBattleEndScNotify { - /// offset: 24 - #[prost(enumeration = "Pmnfdjcllgb", tag = "9")] - pub lfjkkfgpkdm: i32, +pub struct Fdecmdakedc { /// offset: 28 - #[prost(uint32, tag = "11")] - pub fhfmfmlllgd: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub hoehiobiiej: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub id: u32, + /// offset: 32 + #[prost(enumeration = "Nmimbjmphoh", tag = "9")] + pub mlpimofffop: i32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub turn_left: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub ldhnheipail: u32, } -/// Obf: IHBFKMBMBEE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7156)] +#[cmdid(7152)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterFeverTimeActivityStageCsReq { +pub struct Cnlbffielgm { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub piddfekbgbj: u32, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 36 #[prost(uint32, tag = "4")] - pub ffinmbacahh: u32, - /// offset: 40 - #[prost(uint32, tag = "6")] pub id: u32, - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 32 + /// offset: 40 #[prost(uint32, tag = "3")] - pub gcjeicifjgi: u32, + pub madbanbmpeg: u32, } -/// Obf: BJAHJOGMEND +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7157)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterFeverTimeActivityStageScRsp { +pub struct Fpccjfbknfi { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub id: u32, /// offset: 36 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub retcode: u32, /// offset: 24 - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "6")] pub battle_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub id: u32, } -/// Obf: IOENCAFKENL #[derive(proto_derive::CmdID)] -#[cmdid(30099)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightEnterCsReq { - /// offset: 56 - #[prost(uint32, tag = "12")] - pub fgojlpaejec: u32, - /// offset: 60 - #[prost(uint32, tag = "8")] - pub mkiniofgiag: u32, - /// offset: 40 - #[prost(uint64, tag = "10")] - pub kpkdnmdajgl: u64, /// offset: 52 - #[prost(uint32, tag = "7")] - pub uid: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub platform_type: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub client_res_version: u32, - /// offset: 16 - #[prost(string, tag = "9")] - pub aokcmmpfgbc: ::prost::alloc::string::String, - /// offset: 48 + #[prost(uint32, tag = "2")] + pub hhbnhhbmghp: u32, + /// offset: 24 + #[prost(string, tag = "4")] + pub idnogliomah: ::prost::alloc::string::String, + /// offset: 60 #[prost(uint32, tag = "1")] - pub icmfpnpijjf: u32, + pub platform: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub hjnafkhlapg: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub uid: u32, + /// offset: 40 + #[prost(uint64, tag = "13")] + pub bjjmichmlpa: u64, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub client_res_version: u32, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub jkfeklkbgjg: u32, } -/// Obf: AFCPBFPGGEI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(30023)] +#[cmdid(30009)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightEnterScRsp { - /// offset: 28 - #[prost(bool, tag = "8")] - pub jlpkeobincp: bool, /// offset: 40 - #[prost(uint32, tag = "9")] - pub mkiniofgiag: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 48 - #[prost(uint64, tag = "2")] + #[prost(uint64, tag = "15")] pub server_timestamp_ms: u64, - /// offset: 32 - #[prost(uint64, tag = "12")] + /// offset: 48 + #[prost(uint64, tag = "8")] pub secret_key_seed: u64, + /// offset: 24 + #[prost(bool, tag = "1")] + pub nkdgcolocom: bool, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub hhbnhhbmghp: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, } -/// Obf: NBMHOFJAPJO +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(30098)] +#[cmdid(30038)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightLeaveScNotify { /// offset: 24 - #[prost(uint32, tag = "6")] - pub cagjmmmfdli: u32, + #[prost(uint32, tag = "12")] + pub cfhonhhfhpb: u32, } -/// Obf: FKGGCDCILNB +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(30065)] +#[cmdid(30017)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightKickOutScNotify { /// offset: 24 - #[prost(enumeration = "Dkiifbicieg", tag = "5")] - pub mglldoifgnd: i32, + #[prost(enumeration = "FightKickoutType", tag = "11")] + pub kick_type: i32, } -/// Obf: EJLIFAJIAEF #[derive(proto_derive::CmdID)] -#[cmdid(30083)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightHeartBeatCsReq { /// offset: 24 - #[prost(uint64, tag = "14")] + #[prost(uint64, tag = "6")] pub client_time_ms: u64, } -/// Obf: FOKGAFGKBHJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(30086)] +#[cmdid(30011)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightHeartBeatScRsp { - /// offset: 40 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 24 + /// offset: 32 #[prost(uint64, tag = "8")] pub client_time_ms: u64, - /// offset: 32 - #[prost(uint64, tag = "1")] + /// offset: 40 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 24 + #[prost(uint64, tag = "6")] pub server_time_ms: u64, } -/// Obf: GNFGCANGLHJ +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(30094)] +#[cmdid(30089)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FightSessionStopScNotify { /// offset: 24 - #[prost(message, optional, tag = "12")] - pub pfffjngnpom: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub mbapapjpcni: ::core::option::Option, } -/// Obf: KCPBMCNDJKE #[derive(proto_derive::CmdID)] -#[cmdid(30052)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightGeneralCsReq { - /// offset: 16 - #[prost(bytes = "vec", tag = "4")] - pub mbbdnlncejd: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "8")] - pub jjcmfkjhcfa: u32, + #[prost(uint32, tag = "13")] + pub naffafehpfk: u32, + /// offset: 24 + #[prost(bytes = "vec", tag = "3")] + pub ahlhkglphfm: ::prost::alloc::vec::Vec, } -/// Obf: EKHLHJOIEMP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(30019)] +#[cmdid(30095)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightGeneralScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, /// offset: 36 - #[prost(uint32, tag = "12")] - pub jjcmfkjhcfa: u32, - /// offset: 24 - #[prost(bytes = "vec", tag = "5")] - pub mbbdnlncejd: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub naffafehpfk: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(bytes = "vec", tag = "12")] + pub ahlhkglphfm: ::prost::alloc::vec::Vec, } -/// Obf: GCBMBGNKHGF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(30044)] +#[cmdid(30091)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FightGeneralScNotify { /// offset: 32 - #[prost(uint32, tag = "4")] - pub jjcmfkjhcfa: u32, + #[prost(uint32, tag = "15")] + pub naffafehpfk: u32, /// offset: 16 - #[prost(bytes = "vec", tag = "13")] - pub mbbdnlncejd: ::prost::alloc::vec::Vec, + #[prost(bytes = "vec", tag = "14")] + pub ahlhkglphfm: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nohcjiafbfg { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub ojamoiiaikb: ::core::option::Option, +pub struct Cfanaffamgf { /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub jblecmapfdc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hfohpbdjhif { + #[prost(message, optional, tag = "6")] + pub aokhgahjobm: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "6")] - pub elinmpkbefl: u32, + #[prost(uint32, repeated, tag = "11")] + pub kplgpkfiakk: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Edheljhigen { /// offset: 16 - #[prost(bytes = "vec", tag = "4")] - pub lbgdlhkeekc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jhpknhhnapp { - /// offset: 64 - #[prost(message, repeated, tag = "8")] - pub kmhhkbdhgjk: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "13")] - pub elinmpkbefl: u32, - /// offset: 40 - #[prost(message, repeated, tag = "10")] - pub lpkbcnbegik: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bytes = "vec", tag = "6")] - pub kbjfonagbhk: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub jblecmapfdc: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(bytes = "vec", tag = "3")] - pub lbgdlhkeekc: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "9")] - pub ahmdobiceca: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aidoadpoofg { - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub hfpohcffmgp: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iclfkknfdme { + #[prost(bytes = "vec", tag = "8")] + pub klbjbnbepjm: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "5")] - pub akdldfhcfbk: u32, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub okjnnenklce: u32, + pub djopgaihjnc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ecpkjhfnadg { /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub ggghoogilfh: ::prost::alloc::vec::Vec, - /// offset: 36 + #[prost(message, repeated, tag = "12")] + pub oinjnmgiigp: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub amidcpklhjo: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(bytes = "vec", tag = "10")] + pub ignpdnmkadg: ::prost::alloc::vec::Vec, + /// offset: 72 #[prost(uint32, tag = "6")] + pub djopgaihjnc: u32, + /// offset: 32 + #[prost(bytes = "vec", tag = "13")] + pub klbjbnbepjm: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, repeated, tag = "9")] + pub kplgpkfiakk: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, repeated, tag = "5")] + pub cckfjhcobdo: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mcegbcfjbol { + /// offset: 32 + #[prost(message, repeated, tag = "14")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub icdjijjipak: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lkokdgdlefi { + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub epabmhpbgam: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub bcgmfiajoeo: u32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub dgfbjfiilmi: u32, + /// offset: 36 + #[prost(uint32, tag = "3")] pub group_id: u32, } -/// Obf: NGCDAFKKFPC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3699)] +#[cmdid(3647)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFightActivityDataCsReq {} -/// Obf: HCKIMJDGKIG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3623)] +#[cmdid(3609)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFightActivityDataScRsp { - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "2")] - pub dgnfcmdjopa: ::std::collections::HashMap, - /// offset: 32 - #[prost(message, repeated, tag = "12")] - pub groups: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub world_level: u32, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 48 - #[prost(bool, tag = "13")] - pub kaiompfbgkl: bool, -} -/// Obf: OBIEGBGBACI -#[derive(proto_derive::CmdID)] -#[cmdid(3698)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightActivityDataChangeScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub groups: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(map = "uint32, uint32", tag = "12")] - pub dgnfcmdjopa: ::std::collections::HashMap, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Npedhhcklia { - /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "10")] - pub avatar_type: i32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub avatar_id: u32, -} -/// Obf: GGFJFHPNCEJ -#[derive(proto_derive::CmdID)] -#[cmdid(3665)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterFightActivityStageCsReq { - /// offset: 40 - #[prost(uint32, repeated, tag = "15")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub group_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "13")] - pub difficulty: u32, - /// offset: 32 - #[prost(message, repeated, tag = "6")] - pub fopnlgbgagh: ::prost::alloc::vec::Vec, -} -/// Obf: HPKCEGKMPOI -#[derive(proto_derive::CmdID)] -#[cmdid(3683)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterFightActivityStageScRsp { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub battle_info: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub group_id: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub difficulty: u32, -} -/// Obf: PLLLPGHMPNF -#[derive(proto_derive::CmdID)] -#[cmdid(3686)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeFightActivityRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub group_id: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub difficulty: u32, -} -/// Obf: EJHMPNBEJLG -#[derive(proto_derive::CmdID)] -#[cmdid(3694)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeFightActivityRewardScRsp { - /// offset: 36 - #[prost(uint32, tag = "10")] - pub group_id: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub difficulty: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub reward: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gabdhoomlgn { - /// offset: 52 - #[prost(uint32, tag = "2")] - pub ldnbeidjbhi: u32, /// offset: 48 #[prost(uint32, tag = "4")] - pub clbnhpeabfk: u32, - /// offset: 60 - #[prost(enumeration = "Ffjppngglff", tag = "7")] - pub oilpchbijno: i32, + pub world_level: u32, /// offset: 40 - #[prost(uint32, repeated, tag = "15")] - pub iijeecbgjhn: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "5")] - pub apkjblbmneg: u32, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub afkkbbgajpb: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub pddhdojfbib: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fhjapmgmgfc { - /// offset: 40 - #[prost(uint64, tag = "4")] - pub bfokfhojfpc: u64, - /// offset: 32 - #[prost(float, tag = "6")] - pub apfdolkccdp: f32, - /// offset: 24 - #[prost(float, tag = "5")] - pub y: f32, - /// offset: 28 - #[prost(float, tag = "9")] - pub z: f32, - /// offset: 36 - #[prost(float, tag = "2")] - pub x: f32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bhfpiemmmdf { - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub cigimjaabhl: ::core::option::Option, - /// offset: 40 - #[prost(int32, tag = "9")] - pub bdlibhakjig: i32, - /// offset: 64 #[prost(uint32, tag = "15")] - pub config_id: u32, - /// offset: 48 - #[prost(int32, tag = "4")] - pub gododggkdnp: i32, + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub fgphkkkcfmn: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "13")] + pub oeidaicidjg: ::std::collections::HashMap, + /// offset: 44 + #[prost(bool, tag = "6")] + pub ichpgfanhkm: bool, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3638)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FightActivityDataChangeScNotify { + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "5")] + pub oeidaicidjg: ::std::collections::HashMap, + /// offset: 32 + #[prost(message, repeated, tag = "10")] + pub fgphkkkcfmn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mhamhhhecbd { + /// offset: 28 + #[prost(uint32, tag = "4")] + pub avatar_id: u32, + /// offset: 24 + #[prost(enumeration = "AvatarType", tag = "14")] + pub avatar_type: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3617)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct EnterFightActivityStageCsReq { /// offset: 52 - #[prost(uint32, tag = "13")] - pub begcbmgbpkk: u32, - /// offset: 60 - #[prost(int32, tag = "5")] - pub peaenjcdbpb: i32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub miajjhlofkc: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub fgbgdaodohh: u32, - /// offset: 56 - #[prost(uint32, tag = "1")] - pub kpjddifefdd: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fpkadnobkmj { - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub bacekckhfgg: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub dnpoppiklml: u32, /// offset: 32 - #[prost(int32, tag = "12")] - pub cbajgkfbkpj: i32, - /// offset: 36 - #[prost(int32, tag = "2")] - pub unique_id: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Alhlonoafom { - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub bacekckhfgg: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub hclbhkoeplg: u32, - /// offset: 44 - #[prost(int32, tag = "8")] - pub unique_id: i32, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub bccgjihncdn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fagaajkieji { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub chllmfjgppa: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub hbacllconmj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Anmejcaelbp { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub friend_recommend_list: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub gjhjfckcbfp: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub gjkmjigoobc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bicakoanjki { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub jfeonbmppfa: u32, + #[prost(uint32, repeated, tag = "12")] + pub item_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub group_id: u32, /// offset: 24 #[prost(uint32, repeated, tag = "6")] - pub lnmijeadjla: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bcbaagkilkn { - /// offset: 88 - #[prost(uint32, tag = "8")] - pub eooacefkecl: u32, - /// offset: 56 - #[prost(uint32, repeated, tag = "2")] - pub icgocloolgg: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(map = "uint32, uint32", tag = "1")] - pub gckfdjofmje: ::std::collections::HashMap, - /// offset: 76 - #[prost(uint32, tag = "5")] - pub ophfeijgknk: u32, - /// offset: 40 - #[prost(message, repeated, tag = "7")] - pub iddedgembdn: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "4")] - pub ognfmmkpgfd: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub fodkcjkobfl: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "9")] - pub lbmncagokif: u32, + pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub bfolfedndpj: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint64, tag = "15")] - pub dafojflmblo: u64, + #[prost(message, repeated, tag = "9")] + pub lhjggnnifhp: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3651)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct EnterFightActivityStageScRsp { + /// offset: 40 + #[prost(uint32, tag = "7")] + pub group_id: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub dnpoppiklml: u32, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3611)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct TakeFightActivityRewardCsReq { + /// offset: 28 + #[prost(uint32, tag = "8")] + pub dnpoppiklml: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub group_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3689)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeFightActivityRewardScRsp { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub group_id: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub dnpoppiklml: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Egelnehojad { +pub struct Dijpaahcdbd { + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub cbaghpjoaoe: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(enumeration = "Mbcghhbanfk", tag = "15")] + pub mcgppkgbpae: i32, + /// offset: 40 + #[prost(message, repeated, tag = "11")] + pub kcfkliocbbd: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub oghoidigfac: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "10")] + pub ellbbdopcam: u32, + /// offset: 56 + #[prost(uint32, tag = "12")] + pub hjjbonomdan: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub phlndcoibon: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Adgdepghkbc { + /// offset: 24 + #[prost(float, tag = "5")] + pub z: f32, + /// offset: 32 + #[prost(float, tag = "13")] + pub mlfpeljddgh: f32, + /// offset: 28 + #[prost(float, tag = "14")] + pub y: f32, + /// offset: 36 + #[prost(float, tag = "8")] + pub x: f32, + /// offset: 40 + #[prost(uint64, tag = "4")] + pub gknkpoimncj: u64, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hdlnapoomnn { + /// offset: 56 + #[prost(int32, tag = "2")] + pub kamdphadlhj: i32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub bmajdmhbijk: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "9")] + pub runtime_id: u32, + /// offset: 40 + #[prost(int32, tag = "10")] + pub lbpacccffkc: i32, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub nbjajfgcmok: ::core::option::Option, + /// offset: 60 + #[prost(uint32, tag = "14")] + pub ljijoifhpab: u32, + /// offset: 64 + #[prost(uint32, tag = "5")] + pub config_id: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub mpoffpfpgpj: u32, + /// offset: 44 + #[prost(int32, tag = "8")] + pub mkpfhbopmmf: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jankfknjano { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub kmihfbildem: ::core::option::Option, + /// offset: 36 + #[prost(int32, tag = "11")] + pub unique_id: i32, + /// offset: 32 + #[prost(int32, tag = "8")] + pub ebmghdaield: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bhfchpbkmkj { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub kmihfbildem: ::core::option::Option, + /// offset: 40 + #[prost(int32, tag = "9")] + pub unique_id: i32, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub akifmcjmocg: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub glekekfelpo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Icheonfibbn { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub mgabiofmldp: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub omoophclihh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cfacehkpehd { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub fiepfkankbc: u32, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub icgdobkbofd: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub cclphmhebce: u32, /// offset: 16 #[prost(message, repeated, tag = "2")] - pub iigcfcdngka: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(message, optional, tag = "11")] - pub giejodnpklk: ::core::option::Option, - /// offset: 80 - #[prost(message, repeated, tag = "8")] - pub moenjjgjmnn: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "14")] - pub aajnolaniil: ::prost::alloc::vec::Vec, - /// offset: 116 - #[prost(uint32, tag = "9")] - pub hbepndpjagf: u32, - /// offset: 112 - #[prost(bool, tag = "15")] - pub pkbahpfjgdb: bool, - /// offset: 72 - #[prost(message, optional, tag = "5")] - pub bblbkibgfmm: ::core::option::Option, - /// offset: 96 - #[prost(message, repeated, tag = "4")] - pub dacoblkfcmm: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, optional, tag = "3")] - pub bhlheolpbka: ::core::option::Option, - /// offset: 104 - #[prost(uint64, tag = "1")] - pub dpiiallfakk: u64, - /// offset: 32 - #[prost(message, repeated, tag = "7")] - pub gmbondkcend: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "10")] - pub lfjpdmoefad: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, repeated, tag = "6")] - pub aikmbppnokd: ::prost::alloc::vec::Vec, + pub player_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cffoihfcmbj { +pub struct Gnjgdjaojil { + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub hdcmdbmdgom: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub bgdnpfpbdlp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kmfibliipeb { + /// offset: 72 + #[prost(uint64, tag = "7")] + pub lgbndlafaac: u64, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "9")] + pub ienpcbdplah: ::std::collections::HashMap, + /// offset: 80 + #[prost(uint32, tag = "1")] + pub gdlopnnijje: u32, + /// offset: 84 + #[prost(uint32, tag = "15")] + pub section_id: u32, + /// offset: 88 + #[prost(uint32, tag = "12")] + pub khijhhljige: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "5")] + #[prost(message, repeated, tag = "4")] + pub fckdapmgcla: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "10")] + pub lbjkaaidipi: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, repeated, tag = "8")] + pub mebbehdpmag: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, repeated, tag = "2")] + pub fdhpddpedjn: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "6")] + pub dnkecpnfpao: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fbjpmbmjjfh { + /// offset: 112 + #[prost(uint64, tag = "6")] + pub cobhoidehkd: u64, + /// offset: 88 + #[prost(message, repeated, tag = "15")] + pub efhpfmomkbf: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, repeated, tag = "2")] + pub kojmagkklpi: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(message, optional, tag = "3")] + pub kdpdjkbnakh: ::core::option::Option, + /// offset: 48 + #[prost(message, repeated, tag = "12")] + pub gmdaehaaipm: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(message, repeated, tag = "7")] + pub jgfnbfcgemo: ::prost::alloc::vec::Vec, + /// offset: 96 + #[prost(message, repeated, tag = "10")] + pub dkinoenpndb: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(message, optional, tag = "5")] + pub foedilkbjob: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub bmeccefbdpi: ::prost::alloc::vec::Vec, + /// offset: 108 + #[prost(bool, tag = "11")] + pub lcohcjfnenk: bool, + /// offset: 104 + #[prost(uint32, tag = "9")] + pub ookemlddneo: u32, + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub phcgeidneeh: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub ghbiakkcemn: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mfljhcmjfjd { + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] pub region_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Adjhipfemkf { +pub struct Elopenaacha { + /// offset: 40 + #[prost(message, repeated, tag = "4")] + pub fghlehpbidh: ::prost::alloc::vec::Vec, /// offset: 60 - #[prost(bool, tag = "6")] - pub jikeigbcabb: bool, - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub jfjfikldije: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub jblecmapfdc: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "10")] - pub fabcmmnfefk: u32, - /// offset: 32 - #[prost(message, repeated, tag = "14")] - pub cnbdlhbkdkl: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "13")] - pub maifefhkkoa: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "8")] - pub himhaoglagj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fapmanokdmd { - /// offset: 32 - #[prost(uint32, tag = "7")] - pub lhlgdbjeogl: u32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub mejdmjikimo: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kbecdlfkibn { - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub fnpahpapldc: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "11")] - pub dacoblkfcmm: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "10")] - pub ojjfgocbfmd: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub dedjclcgmpp: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, repeated, tag = "3")] - pub aikmbppnokd: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aciikdociln { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub lhlgdbjeogl: u32, - /// offset: 32 - #[prost(uint64, tag = "13")] - pub dpiiallfakk: u64, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub aajnolaniil: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub hbepndpjagf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aengfonnlgd { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub bfenpbgmdde: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub gjhjfckcbfp: u32, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub jojahiafnlk: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ppklgmanbbk { - /// offset: 52 - #[prost(uint32, tag = "14")] - pub bnaohjmlpdo: u32, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub rank: u32, - /// offset: 36 #[prost(uint32, tag = "3")] - pub score: u32, - /// offset: 40 - #[prost(int32, tag = "4")] - pub ofelifehfpk: i32, - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub ngjhmidhdml: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub oahofdiimco: u32, + pub koaefldkbgg: u32, /// offset: 32 - #[prost(int32, tag = "6")] - pub anankjbbodh: i32, + #[prost(message, repeated, tag = "11")] + pub gjgkppgpagd: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(bool, tag = "10")] + pub gkmcgeilohj: bool, + /// offset: 48 + #[prost(uint32, repeated, tag = "13")] + pub kplgpkfiakk: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub mdobmiincho: u32, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub lknkaiiagmh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jpbnokhnlpa { - /// offset: 24 +pub struct Mgopnjmflfm { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub hbnphljhppo: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub lnejgfhhjhi: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ceghkkonebg { + /// offset: 32 #[prost(message, repeated, tag = "2")] - pub iddedgembdn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ddajfgfamgl { + pub joafcedgnfh: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub mjjjldobnal: ::core::option::Option, /// offset: 24 - #[prost(int32, tag = "13")] - pub afbfdcaoeah: i32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub iicegmeldkj: u32, + #[prost(message, repeated, tag = "5")] + pub kojmagkklpi: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "1")] + pub jgfnbfcgemo: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "4")] + pub elfehgihgap: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gfdncjjgjle { + /// offset: 44 + #[prost(uint32, tag = "3")] + pub ookemlddneo: u32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub lnejgfhhjhi: u32, /// offset: 32 - #[prost(uint32, tag = "7")] - pub jdjmheedgpd: u32, + #[prost(uint64, tag = "14")] + pub cobhoidehkd: u64, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub dkinoenpndb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bmmmdbedlek { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub mfmgcfgdbbh: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub afdndabhama: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub cclphmhebce: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hjeldcheceo { + /// offset: 44 + #[prost(uint32, tag = "3")] + pub pdnopkipefd: u32, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub coagmnacglo: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(int32, tag = "7")] + pub accmldcnjjo: i32, + /// offset: 52 + #[prost(int32, tag = "11")] + pub jecfcbbdpib: i32, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub fhfgdbbpgdb: u32, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub score_id: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub rank: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nkmkocfgifm { + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub dnkecpnfpao: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mbdmjijmkki { +pub struct Pdkcchhhlae { /// offset: 32 + #[prost(uint32, tag = "5")] + pub onblnfboaed: u32, + /// offset: 28 + #[prost(int32, tag = "4")] + pub fhbfhldebfj: i32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub mijejmddhcd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lpaajmhjfpl { + /// offset: 32 + #[prost(int32, tag = "11")] + pub z: i32, + /// offset: 28 #[prost(int32, tag = "3")] pub y: i32, /// offset: 24 #[prost(int32, tag = "1")] pub x: i32, - /// offset: 28 - #[prost(int32, tag = "9")] - pub z: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ficnhhklemi { +pub struct Lgcbjakfkgl { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub pos: ::core::option::Option, + /// offset: 36 + #[prost(int32, tag = "2")] + pub unique_id: i32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub hdjbkikdmcc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ljlmefkngik { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub item_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub eagclknfefe: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "11")] + pub glekekfelpo: u32, + /// offset: 48 + #[prost(enumeration = "Kdibbpcjgbo", tag = "10")] + pub ibieikkocfj: i32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub fjcplbflpen: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub npleimndomh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cbhpdfkjfbp { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub bdfocdecgnf: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hgkdddaablh { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub efcojjgihob: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "8")] - pub jkekaaogjkj: u32, - /// offset: 36 - #[prost(int32, tag = "13")] - pub unique_id: i32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub pos: ::core::option::Option, + pub r#type: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Edaookpoabp { +pub struct Mjlkbalglmc { + /// offset: 44 + #[prost(bool, tag = "3")] + pub clpffgihmld: bool, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub mfcofmdjnlg: ::core::option::Option, + #[prost(oneof = "mjlkbalglmc::Pofhephfion", tags = "15, 4")] + pub pofhephfion: ::core::option::Option, +} +/// Nested message and enum types in `MJLKBALGLMC`. +pub mod mjlkbalglmc { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Pofhephfion { + /// offset: 24 + #[prost(uint32, tag = "15")] + Jhjoamnmhgm(u32), + /// offset: 24 + #[prost(bool, tag = "4")] + Glmmeifdnjg(bool), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nccllmbdgde { + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub neilpjlfggg: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jbjfcjcgaao { /// offset: 36 + #[prost(uint32, tag = "11")] + pub ijedmbinian: u32, + /// offset: 40 #[prost(uint32, tag = "9")] + pub hokgmfnhpej: u32, + #[prost(oneof = "jbjfcjcgaao::Cdhfnnhlohp", tags = "10, 4")] + pub cdhfnnhlohp: ::core::option::Option, +} +/// Nested message and enum types in `JBJFCJCGAAO`. +pub mod jbjfcjcgaao { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Cdhfnnhlohp { + /// offset: 16 + #[prost(uint32, tag = "10")] + Lmbofbihofa(u32), + /// offset: 16 + #[prost(message, tag = "4")] + Lgfaiacngna(super::Hgkdddaablh), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fjcmgfonllj { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub hnljhdmmnhg: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jnghnlcnnhl { + /// offset: 16 + #[prost(uint32, repeated, tag = "10")] + pub gbgjiipkndg: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub lnpodoahoig: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dhkjdkflfmb { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub ancfclccohb: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub bpdbcdimecf: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mhpbidbigck { + #[prost(oneof = "mhpbidbigck::Fepjnnidmmf", tags = "3")] + pub fepjnnidmmf: ::core::option::Option, +} +/// Nested message and enum types in `MHPBIDBIGCK`. +pub mod mhpbidbigck { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Fepjnnidmmf { + /// offset: 24 + #[prost(message, tag = "3")] + Nakiifnigjl(super::Dhkjdkflfmb), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hcpemdeaaoh { + /// offset: 48 + #[prost(int32, tag = "1")] + pub unique_id: i32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub mifghmmdkmd: u32, + /// offset: 44 + #[prost(bool, tag = "3")] + pub clpffgihmld: bool, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub lnipnndhcop: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "13")] + pub pos: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pajimmcoiec { + #[prost(oneof = "pajimmcoiec::Ahdknbglccg", tags = "13, 5")] + pub ahdknbglccg: ::core::option::Option, +} +/// Nested message and enum types in `PAJIMMCOIEC`. +pub mod pajimmcoiec { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Ahdknbglccg { + /// offset: 16 + #[prost(uint32, tag = "13")] + Hoobbbhmmpe(u32), + /// offset: 16 + #[prost(uint32, tag = "5")] + ExtraId(u32), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fnbemhnbmga { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub hjjbonomdan: u32, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub hkjfkncofgc: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iaeonkfobap { + /// offset: 32 + #[prost(uint32, tag = "12")] pub item_id: u32, /// offset: 24 - #[prost(message, optional, tag = "8")] - pub phnldpokbkl: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub papkmecifla: u32, + #[prost(uint32, repeated, tag = "9")] + pub hjpjblegbgb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iebleccjnfl { /// offset: 32 - #[prost(uint32, tag = "2")] - pub neciljojgan: u32, + #[prost(uint64, tag = "3")] + pub gknkpoimncj: u64, /// offset: 40 - #[prost(enumeration = "Pohheefaeja", tag = "15")] - pub jdbgcdolcje: i32, - /// offset: 44 #[prost(uint32, tag = "5")] - pub hclbhkoeplg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pnjdlegnnch { - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub djkkhmhjcff: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kajfpijgcoo { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub r#type: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub gpjhkeoooel: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mhplnfehaef { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub hocnlijhjjk: ::core::option::Option, - /// offset: 32 - #[prost(bool, tag = "12")] - pub kbjpcdohdmg: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dochabndopi { - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub mflgoambhge: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ilaidmpiadp { - /// offset: 40 - #[prost(uint32, tag = "4")] - pub jigjfedkkfi: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub adlocijicaa: u32, - #[prost(oneof = "ilaidmpiadp::Hplnnjbfgbj", tags = "3, 11")] - pub hplnnjbfgbj: ::core::option::Option, -} -/// Nested message and enum types in `ILAIDMPIADP`. -pub mod ilaidmpiadp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Hplnnjbfgbj { - /// offset: 24 - #[prost(uint32, tag = "3")] - Iggnkggkpce(u32), - /// offset: 24 - #[prost(message, tag = "11")] - Ebegpnfcjce(super::Kajfpijgcoo), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pbddmpofngg { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub onblkmbimej: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mfonaihkmdk { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub omgobjhkckf: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub ajpgnedbhci: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mnkbigeohij { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub fbjocakhjhn: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub pnbaiknhdij: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fajjliobpnp { - #[prost(oneof = "fajjliobpnp::Edemjbhhmhe", tags = "10")] - pub edemjbhhmhe: ::core::option::Option, -} -/// Nested message and enum types in `FAJJLIOBPNP`. -pub mod fajjliobpnp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Edemjbhhmhe { - /// offset: 24 - #[prost(message, tag = "10")] - Egjcdcdnbap(super::Mnkbigeohij), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gmlmpgkaocc { - /// offset: 48 - #[prost(bool, tag = "11")] - pub kbjpcdohdmg: bool, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub pos: ::core::option::Option, - /// offset: 40 - #[prost(int32, tag = "10")] - pub unique_id: i32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub nceiaikfcai: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub jdakkofdgep: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kbfojlhedle { - #[prost(oneof = "kbfojlhedle::Lldgeaoggab", tags = "9, 12")] - pub lldgeaoggab: ::core::option::Option, -} -/// Nested message and enum types in `KBFOJLHEDLE`. -pub mod kbfojlhedle { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Lldgeaoggab { - /// offset: 16 - #[prost(uint32, tag = "9")] - Ebljcldnhaj(u32), - /// offset: 16 - #[prost(uint32, tag = "12")] - Emote(u32), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kkdpfafbkmb { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub ldnbeidjbhi: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub akflkcjhcea: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mbhaeckmffo { - /// offset: 40 - #[prost(uint64, tag = "13")] - pub bfokfhojfpc: u64, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub ahehkcildfa: u32, + pub cliglpccjmh: u32, #[prost( - oneof = "mbhaeckmffo::Hbfofpdafpd", - tags = "494, 1193, 1198, 675, 385, 250, 1217, 1697, 1694, 1148, 1115, 1075, 1233" + oneof = "iebleccjnfl::Ijhaaaifljl", + tags = "1297, 993, 443, 1910, 357, 151, 194, 224, 1859, 1504, 525, 1824, 674, 560" )] - pub hbfofpdafpd: ::core::option::Option, + pub ijhaaaifljl: ::core::option::Option, } -/// Nested message and enum types in `MBHAECKMFFO`. -pub mod mbhaeckmffo { +/// Nested message and enum types in `IEBLECCJNFL`. +pub mod iebleccjnfl { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Hbfofpdafpd { + pub enum Ijhaaaifljl { /// offset: 16 - #[prost(message, tag = "494")] - Mejdmjikimo(super::Fapmanokdmd), + #[prost(message, tag = "1297")] + Hbnphljhppo(super::Mgopnjmflfm), /// offset: 16 - #[prost(message, tag = "1193")] - Oiochddgigo(super::Kbecdlfkibn), + #[prost(message, tag = "993")] + Mhmpadbenki(super::Ceghkkonebg), /// offset: 16 - #[prost(message, tag = "1198")] - Bppabloipmg(super::Aciikdociln), + #[prost(message, tag = "443")] + Dlogkhklebn(super::Gfdncjjgjle), /// offset: 16 - #[prost(message, tag = "675")] - Pfilbjcdfoj(super::Ppklgmanbbk), + #[prost(message, tag = "1910")] + Onndfgfoncm(super::Hjeldcheceo), /// offset: 16 - #[prost(message, tag = "385")] - Jhdecbjfjke(super::Jpbnokhnlpa), + #[prost(message, tag = "357")] + Kabmjmlcelp(super::Nkmkocfgifm), /// offset: 16 - #[prost(message, tag = "250")] - Cdlbikmfjnl(super::Edaookpoabp), + #[prost(message, tag = "151")] + Amligicbkme(super::Ljlmefkngik), /// offset: 16 - #[prost(message, tag = "1217")] - Cpmdkofbafk(super::Pnjdlegnnch), + #[prost(message, tag = "194")] + Amojnffkmjk(super::Cbhpdfkjfbp), /// offset: 16 - #[prost(message, tag = "1697")] - Akibmbddnmn(super::Dochabndopi), + #[prost(message, tag = "224")] + Cnmhdbhkaae(super::Nccllmbdgde), /// offset: 16 - #[prost(message, tag = "1694")] - Ejccoldaamm(super::Pbddmpofngg), + #[prost(message, tag = "1859")] + Kinpmfldhnh(super::Fjcmgfonllj), /// offset: 16 - #[prost(message, tag = "1148")] - Bblbkibgfmm(super::Mfonaihkmdk), + #[prost(message, tag = "1504")] + Ghbiakkcemn(super::Jnghnlcnnhl), /// offset: 16 - #[prost(message, tag = "1115")] - Idajjphmhjb(super::Gmlmpgkaocc), + #[prost(message, tag = "525")] + Eohchkgahil(super::Hcpemdeaaoh), /// offset: 16 - #[prost(message, tag = "1075")] - Akflkcjhcea(super::Kkdpfafbkmb), + #[prost(message, tag = "1824")] + Hkjfkncofgc(super::Fnbemhnbmga), /// offset: 16 - #[prost(message, tag = "1233")] - Nidinhkkdjn(super::Bhfpiemmmdf), + #[prost(message, tag = "674")] + Eabdjepohlm(super::Hdlnapoomnn), + /// offset: 16 + #[prost(message, tag = "560")] + Knkhamfghnc(super::Iaeonkfobap), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kbbdabicbbn { - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub ngaedidjpkn: ::prost::alloc::vec::Vec, +pub struct Defjaicjili { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub afnpfmklgmn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bdhknkgkpfm { +pub struct Mlofpbijgak { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub jeokadbklnj: ::core::option::Option, + /// offset: 56 + #[prost(uint64, tag = "15")] + pub bobgmlokdli: u64, /// offset: 24 #[prost(message, optional, tag = "11")] - pub pfilbjcdfoj: ::core::option::Option, + pub hbnphljhppo: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "1")] - pub mejdmjikimo: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub onndfgfoncm: ::core::option::Option, /// offset: 48 #[prost(uint64, tag = "9")] - pub lkcedfkpncl: u64, - /// offset: 40 - #[prost(message, optional, tag = "7")] - pub gflldmmihkh: ::core::option::Option, - /// offset: 56 - #[prost(uint64, tag = "8")] - pub bfokfhojfpc: u64, + pub gknkpoimncj: u64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ibogbbhhlai { +pub struct Podcfpbdljj { /// offset: 24 - #[prost(uint32, tag = "12")] - pub hbacllconmj: u32, + #[prost(uint32, tag = "10")] + pub mgabiofmldp: u32, /// offset: 28 - #[prost(uint32, tag = "3")] - pub gjhjfckcbfp: u32, + #[prost(uint32, tag = "6")] + pub cclphmhebce: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jeicpedhgkd { +pub struct Andnhnhaaan { /// offset: 28 - #[prost(uint32, tag = "4")] - pub gjhjfckcbfp: u32, + #[prost(uint32, tag = "1")] + pub mgabiofmldp: u32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub cclphmhebce: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aehfkobmici { /// offset: 24 #[prost(uint32, tag = "5")] - pub hbacllconmj: u32, + pub bgdnpfpbdlp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gapfaejdplf { +pub struct Pojcomjfogp { /// offset: 24 - #[prost(uint32, tag = "9")] - pub jfeonbmppfa: u32, + #[prost(uint32, tag = "6")] + pub bgdnpfpbdlp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ghoablbehpc { +pub struct Nhhnngjcmmk {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gngnfgmeaca {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mndighanhpp { /// offset: 24 - #[prost(uint32, tag = "2")] - pub jfeonbmppfa: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Godaelfklmf {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hanmkgicpgp {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jjffminpfjo { + #[prost(message, optional, tag = "6")] + pub eagclknfefe: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "14")] - pub item_id: u32, + #[prost(uint32, tag = "8")] + pub fjcplbflpen: u32, /// offset: 36 - #[prost(uint32, tag = "2")] - pub papkmecifla: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub phnldpokbkl: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bfcginankdd {} +pub struct Fkdfnlmeemf {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Efmofbpmbdk { +pub struct Nhonnmmdagk { /// offset: 24 - #[prost(message, optional, tag = "2")] - pub akflkcjhcea: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub hkjfkncofgc: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kdalejdiapn {} +pub struct Kfcejppimgl {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iklnilkpena { +pub struct Genjbkaande { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub afflidclkch: u32, + /// offset: 36 + #[prost(enumeration = "Hakpdjkhecm", tag = "8")] + pub okmaijhgimp: i32, /// offset: 24 #[prost(uint32, tag = "7")] pub challenge_id: u32, /// offset: 28 - #[prost(uint32, tag = "9")] - pub jbolaafdkan: u32, - /// offset: 36 #[prost(uint32, tag = "1")] - pub aeieojgcmmo: u32, - /// offset: 32 - #[prost(enumeration = "Hgdapjpkffb", tag = "8")] - pub plikadkklgd: i32, + pub bggbjacgaic: u32, } -/// Obf: OPIDGKKKBFP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7276)] +#[cmdid(7269)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetFightFestDataCsReq {} -/// Obf: CKNPNLGPAPP +pub struct Kfagmgmmhgc {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7278)] +#[cmdid(7252)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetFightFestDataScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub mfgonhjgipp: ::prost::alloc::vec::Vec, +pub struct Doeamnckpnn { /// offset: 44 - #[prost(uint32, tag = "15")] - pub score: u32, - /// offset: 48 - #[prost(uint32, tag = "6")] - pub item_value: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub challenge_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Afodmejodlg { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub id: u32, - /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "9")] - pub avatar_type: i32, -} -/// Obf: IEGCIHAEMFK -#[derive(proto_derive::CmdID)] -#[cmdid(7271)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartFightFestCsReq { - /// offset: 44 - #[prost(uint32, tag = "9")] - pub event_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "10")] - pub id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub mfgonhjgipp: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(enumeration = "Aploagdibki", tag = "1")] - pub r#type: i32, -} -/// Obf: JDJAJJGBGHA -#[derive(proto_derive::CmdID)] -#[cmdid(7288)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartFightFestScRsp { - /// offset: 40 - #[prost(uint32, tag = "8")] - pub event_id: u32, - /// offset: 44 - #[prost(enumeration = "Aploagdibki", tag = "13")] - pub r#type: i32, /// offset: 32 - #[prost(uint32, tag = "15")] - pub id: u32, + #[prost(uint32, repeated, tag = "6")] + pub mpaeabhcnga: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, optional, tag = "12")] - pub battle_info: ::core::option::Option, - /// offset: 36 + #[prost(message, repeated, tag = "1")] + pub challenge_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub score_id: u32, + /// offset: 48 #[prost(uint32, tag = "11")] - pub retcode: u32, + pub geibknhcgjf: u32, } -/// Obf: EEGLBGDIILH +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pldmijkejaj { + /// offset: 24 + #[prost(enumeration = "AvatarType", tag = "1")] + pub avatar_type: i32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7298)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hckpaancjeh { + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub mpaeabhcnga: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub id: u32, + /// offset: 48 + #[prost(enumeration = "Nadagifciba", tag = "3")] + pub r#type: i32, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub event_id: u32, + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub avatar_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7255)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightFestScoreUpdateNotify { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub score: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub gnpkpljlabm: u32, -} -/// Obf: DKGGEJBDFBO -#[derive(proto_derive::CmdID)] -#[cmdid(7277)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightFestUnlockSkillNotify { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub ejjehjmmbgj: u32, -} -/// Obf: EMBLJKGDDMB -#[derive(proto_derive::CmdID)] -#[cmdid(7270)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightFestUpdateChallengeRecordNotify { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cgaagokhiem { /// offset: 36 - #[prost(uint32, tag = "13")] + #[prost(enumeration = "Nadagifciba", tag = "13")] + pub r#type: i32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub id: u32, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub battle_info: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "7")] + pub event_id: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7285)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lmaolbgbfhh { + /// offset: 28 + #[prost(uint32, tag = "9")] + pub pcfibnmemfe: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub score_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7283)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gbfldclcedo { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub cgojooghlmj: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7281)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gkialgmgjnd { + /// offset: 40 + #[prost(enumeration = "Hakpdjkhecm", tag = "6")] + pub rank: i32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub turn_left: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] pub challenge_id: u32, /// offset: 24 - #[prost(enumeration = "Hgdapjpkffb", tag = "10")] - pub rank: i32, - /// offset: 40 + #[prost(uint32, tag = "9")] + pub bggbjacgaic: u32, + /// offset: 32 + #[prost(enumeration = "Hakpdjkhecm", tag = "3")] + pub bmlkhjlmaep: i32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7275)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cjdinmhaicj { + /// offset: 24 #[prost(uint32, tag = "5")] - pub hoehiobiiej: u32, + pub geibknhcgjf: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mbheocgacml { /// offset: 32 - #[prost(enumeration = "Hgdapjpkffb", tag = "1")] - pub fkpepbmjhkn: i32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub jbolaafdkan: u32, -} -/// Obf: ODLIIOLEIAK -#[derive(proto_derive::CmdID)] -#[cmdid(7294)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightFestUpdateCoinNotify { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub item_value: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kpbfckneeia { - /// offset: 24 - #[prost(int32, tag = "8")] - pub blgnmalbolo: i32, - /// offset: 28 - #[prost(enumeration = "Ffjppngglff", tag = "10")] - pub oilpchbijno: i32, - /// offset: 32 - #[prost(uint64, tag = "5")] - pub ldnbeidjbhi: u64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gldhepjpmfm { - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub action_result_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pfgaiebghcp { - /// offset: 28 - #[prost(float, tag = "2")] - pub y: f32, - /// offset: 24 - #[prost(float, tag = "9")] - pub x: f32, -} -/// Obf: JEJDMMBDALP -#[derive(proto_derive::CmdID)] -#[cmdid(30157)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3UseItemCsReq { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub kbcejinfnnj: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub item_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Akokicdpfmp { + #[prost(int32, tag = "11")] + pub jmpiemgembn: i32, /// offset: 36 - #[prost(uint32, tag = "6")] - pub ahehkcildfa: u32, - #[prost(oneof = "akokicdpfmp::Hbfofpdafpd", tags = "908, 234, 1289, 61, 178")] - pub hbfofpdafpd: ::core::option::Option, + #[prost(enumeration = "Mbcghhbanfk", tag = "4")] + pub mcgppkgbpae: i32, + /// offset: 24 + #[prost(uint64, tag = "12")] + pub hjjbonomdan: u64, } -/// Nested message and enum types in `AKOKICDPFMP`. -pub mod akokicdpfmp { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nabinnnjjdl { + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub imkeiipjhgl: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ekmcdlkmplp { + /// offset: 24 + #[prost(float, tag = "6")] + pub x: f32, + /// offset: 28 + #[prost(float, tag = "13")] + pub y: f32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ppdimglcbpi { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub item_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub oakccofjffe: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bgelogjbpbf { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub cliglpccjmh: u32, + #[prost(oneof = "bgelogjbpbf::Ijhaaaifljl", tags = "822, 1982, 1336, 941, 1972")] + pub ijhaaaifljl: ::core::option::Option, +} +/// Nested message and enum types in `BGELOGJBPBF`. +pub mod bgelogjbpbf { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Hbfofpdafpd { - /// offset: 16 - #[prost(message, tag = "908")] - Lgpiemdlhjm(super::Lbaogibpjop), - /// offset: 16 - #[prost(message, tag = "234")] - Phmcjejidja(super::Gldnbpfcnhd), - /// offset: 16 - #[prost(message, tag = "1289")] - FinishInfo(super::Icaooppmjdj), - /// offset: 16 - #[prost(message, tag = "61")] - Mejdmjikimo(super::Maogfdkdckm), - /// offset: 16 - #[prost(message, tag = "178")] - Jhfgdijpfcg(super::Gockgigbdcg), + pub enum Ijhaaaifljl { + /// offset: 24 + #[prost(message, tag = "822")] + Lcnapoppcin(super::Jncoahiibmm), + /// offset: 24 + #[prost(message, tag = "1982")] + Indkihojnjj(super::Dijpjhmobgc), + /// offset: 24 + #[prost(message, tag = "1336")] + RogueFinishInfo(super::Nfacoalichp), + /// offset: 24 + #[prost(message, tag = "941")] + Hbnphljhppo(super::Boagohjaoha), + /// offset: 24 + #[prost(message, tag = "1972")] + Epgheolabnk(super::Mcjlknneaom), } } -/// Obf: GEMEBEBMIAH -#[derive(proto_derive::CmdID)] -#[cmdid(30186)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3SwapCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub lndigheihln: ::prost::alloc::vec::Vec, -} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lbaogibpjop { - /// offset: 40 - #[prost(uint32, repeated, tag = "9")] - pub pcmgagahblk: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "5")] - pub eigabckednp: u32, - /// offset: 48 - #[prost(enumeration = "Jomkpegefmp", tag = "8")] - pub hjefolkgaei: i32, - /// offset: 60 - #[prost(uint32, tag = "15")] - pub marble_level_id: u32, - /// offset: 52 - #[prost(uint32, tag = "1")] - pub dkpnenbhelh: u32, - /// offset: 76 - #[prost(uint32, tag = "11")] - pub acjcphifmln: u32, - /// offset: 92 - #[prost(uint32, tag = "12")] - pub moddklndamk: u32, - /// offset: 69 - #[prost(bool, tag = "13")] - pub jikeigbcabb: bool, - /// offset: 84 - #[prost(uint32, tag = "7")] - pub pbfaiojjgnl: u32, - /// offset: 88 - #[prost(uint32, tag = "2")] - pub bbdoplekiac: u32, - /// offset: 80 - #[prost(enumeration = "Jomkpegefmp", tag = "14")] - pub ceifkjieaje: i32, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub jjefbpkpkbk: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "3")] - pub jijhaaihncn: u32, - /// offset: 68 - #[prost(bool, tag = "10")] - pub likhclpmhjk: bool, - /// offset: 32 - #[prost(message, repeated, tag = "1996")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "4")] - pub khcmofpfoak: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gkloaldhnef { - /// offset: 28 - #[prost(int32, tag = "4")] - pub falbkimmpih: i32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub jojahiafnlk: u32, - /// offset: 24 - #[prost(int32, tag = "11")] - pub jphednecagd: i32, - /// offset: 40 - #[prost(int32, tag = "1")] - pub total_damage: i32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub item_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Icaooppmjdj { - /// offset: 32 - #[prost(int32, tag = "10")] - pub clbnhpeabfk: i32, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub chllmfjgppa: u32, - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub bpipobhcmfd: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub blkfgajhmlk: u32, - /// offset: 44 - #[prost(enumeration = "Eeibhjpnjcf", tag = "1")] - pub kjpmohfiilo: i32, - /// offset: 41 - #[prost(bool, tag = "12")] - pub djeeeabmddk: bool, - /// offset: 40 - #[prost(bool, tag = "2")] - pub is_win: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dcdniajcehn { - /// offset: 48 - #[prost(message, optional, tag = "8")] - pub fnihjjjgoee: ::core::option::Option, - /// offset: 92 - #[prost(uint32, tag = "9")] - pub jljigeplpmh: u32, - /// offset: 144 - #[prost(uint32, tag = "269")] - pub cmmbbhhpmko: u32, - /// offset: 88 - #[prost(uint32, tag = "727")] - pub jijhaaihncn: u32, - /// offset: 132 - #[prost(int32, tag = "1")] - pub attack: i32, - /// offset: 148 - #[prost(int32, tag = "1218")] - pub hdblelebkho: i32, - /// offset: 100 - #[prost(uint32, tag = "444")] - pub buff_id: u32, - /// offset: 76 - #[prost(uint32, tag = "11")] - pub id: u32, - /// offset: 73 - #[prost(bool, tag = "390")] - pub nbkelchilgg: bool, - /// offset: 120 - #[prost(uint32, tag = "710")] - pub pnldlmnkjmk: u32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub godnaalnokl: ::core::option::Option, - /// offset: 156 - #[prost(float, tag = "1180")] - pub ggbfkenahoe: f32, - /// offset: 116 - #[prost(enumeration = "Lkkajcaciji", tag = "4")] - pub kamihnejmfg: i32, - /// offset: 136 - #[prost(enumeration = "Fippklcoegj", tag = "1423")] - pub cclmfabdena: i32, - /// offset: 56 - #[prost(message, optional, tag = "6")] - pub iaaggmkgodc: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub fdndmhjohmo: ::core::option::Option, - /// offset: 84 - #[prost(uint32, tag = "892")] - pub level: u32, - /// offset: 96 - #[prost(uint32, tag = "1991")] - pub jlcikblnenh: u32, - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub lkefolcgfgd: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "2")] - pub cipiclllijh: u32, - /// offset: 124 - #[prost(float, tag = "10")] - pub time: f32, - /// offset: 74 - #[prost(bool, tag = "1330")] - pub plfkoccdbag: bool, - /// offset: 140 - #[prost(uint32, tag = "476")] - pub dhelbcimlga: u32, - /// offset: 112 - #[prost(uint32, tag = "5")] - pub skill_id: u32, - /// offset: 128 - #[prost(int32, tag = "3")] - pub hp: i32, - /// offset: 72 - #[prost(bool, tag = "1305")] - pub dmbbmffejgi: bool, - /// offset: 80 - #[prost(enumeration = "Pajnhiagodd", tag = "15")] - pub djoadecjpob: i32, - /// offset: 152 - #[prost(uint32, tag = "1883")] - pub dkpnenbhelh: u32, - /// offset: 68 - #[prost(int32, tag = "12")] - pub max_hp: i32, - /// offset: 108 - #[prost(uint32, tag = "1411")] - pub idabofpkokn: u32, - /// offset: 104 - #[prost(float, tag = "1780")] - pub mnbemgnnfod: f32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gldnbpfcnhd { - /// offset: 64 - #[prost(uint32, tag = "10")] - pub kjgdknjfcpg: u32, - /// offset: 108 - #[prost(enumeration = "Impkpkamiaf", tag = "12")] - pub dndjkdfhepe: i32, - /// offset: 40 - #[prost(uint32, repeated, tag = "13")] - pub dpooapkpchf: ::prost::alloc::vec::Vec, - /// offset: 106 - #[prost(bool, tag = "1297")] - pub omkkpgfjhfe: bool, - /// offset: 72 - #[prost(uint32, tag = "802")] - pub fombhjkdhgo: u32, - /// offset: 84 - #[prost(uint32, tag = "1")] - pub fmkdifnjajc: u32, - /// offset: 80 - #[prost(uint32, tag = "11")] - pub emote: u32, - /// offset: 24 - #[prost(message, repeated, tag = "1149")] - pub ainlmgdnhib: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub hlieamplipp: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub jldcflkcbld: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(float, tag = "4")] - pub eefcbbkkflc: f32, - /// offset: 104 - #[prost(bool, tag = "9")] - pub pmanbplflkl: bool, - /// offset: 105 - #[prost(bool, tag = "14")] - pub fjkbaimdpep: bool, - /// offset: 100 - #[prost(uint32, tag = "6")] - pub ehcjcilcnop: u32, - /// offset: 76 - #[prost(uint32, tag = "8")] - pub hbapccegnme: u32, - /// offset: 88 - #[prost(uint32, tag = "1541")] - pub nkhpckegpcl: u32, - /// offset: 112 - #[prost(uint32, tag = "3")] - pub dhelbcimlga: u32, - /// offset: 56 - #[prost(uint32, repeated, tag = "2")] - pub knchehiijnn: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(uint32, tag = "15")] - pub hmffhgbkogl: u32, - /// offset: 92 - #[prost(uint32, tag = "1956")] - pub iepgclgkheg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Maogfdkdckm { - /// offset: 84 - #[prost(uint32, tag = "10")] - pub iehfhkmdagc: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub knchehiijnn: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "1")] - pub dibpggoogpk: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "11")] - pub olkmcbjflej: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub khcmofpfoak: ::core::option::Option, - /// offset: 76 - #[prost(float, tag = "4")] - pub dplgcekjack: f32, - /// offset: 80 - #[prost(uint32, tag = "5")] - pub chllmfjgppa: u32, - /// offset: 88 - #[prost(uint32, tag = "14")] - pub hmffhgbkogl: u32, - /// offset: 72 - #[prost(bool, tag = "9")] - pub omkkpgfjhfe: bool, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub lgpiemdlhjm: ::core::option::Option, - /// offset: 92 - #[prost(enumeration = "Ppiffkjejja", tag = "6")] - pub phase: i32, - /// offset: 56 - #[prost(message, optional, tag = "3")] - pub bbdoplekiac: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gockgigbdcg { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub kbcejinfnnj: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub item_id: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub chllmfjgppa: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eojlngddlnn { - /// offset: 52 - #[prost(uint32, tag = "11")] - pub panbcnicohj: u32, - /// offset: 40 - #[prost(message, repeated, tag = "12")] - pub nbkhpjhjmho: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub jfedjmkmlfo: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "6")] - pub cgnbhkbhicg: u32, - /// offset: 32 - #[prost(message, repeated, tag = "13")] - pub mdbggblegem: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(bool, tag = "15")] - pub nbkelchilgg: bool, - /// offset: 49 - #[prost(bool, tag = "7")] - pub blaljmmhifp: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hbghaopbkjp { - /// offset: 48 - #[prost(uint32, tag = "7")] - pub id: u32, - /// offset: 60 - #[prost(uint32, tag = "3")] - pub buff_id: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub level: u32, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub fnihjjjgoee: ::core::option::Option, - /// offset: 43 - #[prost(bool, tag = "12")] - pub plfkoccdbag: bool, - /// offset: 68 - #[prost(int32, tag = "6")] - pub attack: i32, - /// offset: 42 - #[prost(bool, tag = "14")] - pub dmbbmffejgi: bool, - /// offset: 56 - #[prost(float, tag = "11")] - pub mnbemgnnfod: f32, - /// offset: 41 - #[prost(bool, tag = "2")] - pub bmnecpiopdn: bool, - /// offset: 72 - #[prost(uint32, tag = "5")] - pub jlcikblnenh: u32, - /// offset: 52 - #[prost(int32, tag = "1")] - pub max_hp: i32, - /// offset: 40 - #[prost(bool, tag = "4")] - pub pmanbplflkl: bool, - /// offset: 32 - #[prost(message, optional, tag = "15")] - pub lkefolcgfgd: ::core::option::Option, - /// offset: 64 - #[prost(int32, tag = "10")] - pub hp: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jallappcpfe { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub dhelbcimlga: u32, - /// offset: 24 - #[prost(bool, tag = "8")] - pub fhokfdmfnkg: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mekdnikfdna { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub rank: u32, - /// offset: 52 - #[prost(uint32, tag = "4")] - pub ognepbfpilh: u32, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub nmlffogbpoc: u32, - /// offset: 56 - #[prost(enumeration = "Nppnfppenmc", tag = "8")] - pub state: i32, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub hp: u32, - /// offset: 44 - #[prost(bool, tag = "10")] - pub hnjfffjdgne: bool, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub score: u32, - /// offset: 60 - #[prost(uint32, tag = "6")] - pub ldnbeidjbhi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kldmjemimcn { - /// offset: 52 - #[prost(uint32, tag = "10")] - pub danccaojljn: u32, - /// offset: 40 - #[prost(message, optional, tag = "15")] - pub mejdmjikimo: ::core::option::Option, - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub hbanccokofc: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub cpkpincceip: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint64, tag = "14")] - pub mcokhhfpbpj: u64, - /// offset: 48 - #[prost(enumeration = "Dgfcbofaoia", tag = "5")] - pub jgibhfjmobe: i32, - /// offset: 56 - #[prost(int32, tag = "11")] - pub hcbbhckjnji: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jjaepdihcnl { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub heckmdlolag: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub fpbedncocho: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mdohafbeepk { - /// offset: 40 - #[prost(message, optional, tag = "11")] - pub niaeghjlnmb: ::core::option::Option, - /// offset: 56 - #[prost(message, repeated, tag = "12")] - pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "13")] - pub score: u32, - /// offset: 68 - #[prost(uint32, tag = "15")] - pub energy_info: u32, - /// offset: 88 - #[prost(uint32, tag = "1")] - pub cur_hp: u32, - /// offset: 80 - #[prost(uint32, tag = "14")] - pub gdfndpmjdaf: u32, - /// offset: 92 - #[prost(uint32, tag = "8")] - pub midejnjcaia: u32, - /// offset: 76 - #[prost(uint32, tag = "10")] - pub najlpnlnoje: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub aihmghajgkj: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(uint32, tag = "2")] - pub anhfjkepcgf: u32, - /// offset: 84 - #[prost(uint32, tag = "5")] - pub pkdpiemgibe: u32, - /// offset: 32 - #[prost(message, repeated, tag = "7")] - pub op_list: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(enumeration = "Nppnfppenmc", tag = "3")] - pub kjpmohfiilo: i32, - /// offset: 48 - #[prost(message, repeated, tag = "4")] - pub item_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Egcddlkhfeb { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub mlpcfgdafnd: ::core::option::Option, - /// offset: 32 - #[prost(enumeration = "Bfilliobmfn", tag = "4")] - pub olkndfjbdgj: i32, -} -/// Obf: JGMOEPGHEMC -#[derive(proto_derive::CmdID)] -#[cmdid(30199)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3DataCsReq { - /// offset: 24 - #[prost(int32, tag = "14")] - pub player_data: i32, -} -/// Obf: HLMOJIFFMBM -#[derive(proto_derive::CmdID)] -#[cmdid(30123)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3DataScRsp { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub data: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "6")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, -} -/// Obf: HJKLKELKOND -#[derive(proto_derive::CmdID)] -#[cmdid(30198)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3StartCountDownScNotify { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub data: ::core::option::Option, -} -/// Obf: EFPIPLGFIOB -#[derive(proto_derive::CmdID)] -#[cmdid(30165)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3TurnStartScNotify { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub hkpodflgcdj: ::core::option::Option, -} -/// Obf: MAGECDJBPAJ -#[derive(proto_derive::CmdID)] -#[cmdid(30183)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3TurnEndScNotify { - /// offset: 32 - #[prost(message, optional, tag = "5")] - pub cinlcmhhkko: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub hiklobgicmp: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Galeopdomkg { - /// offset: 48 - #[prost(uint32, tag = "10")] - pub upgrade_level: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub phnldpokbkl: ::core::option::Option, +pub struct Neghififdmi { /// offset: 16 #[prost(message, repeated, tag = "2")] - pub eckkblnelbm: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "11")] - pub feclglbfidh: ::core::option::Option, + pub fjhadpbckob: ::prost::alloc::vec::Vec, } -/// Obf: CDOAJIMLMGM #[derive(proto_derive::CmdID)] -#[cmdid(30194)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3SwapScRsp { - /// offset: 40 - #[prost(bool, tag = "5")] - pub pgmgmjdilcl: bool, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub chmaonmmegm: ::core::option::Option, - /// offset: 32 +pub struct Jncoahiibmm { + /// offset: 76 + #[prost(uint32, tag = "12")] + pub bknefmhpdgc: u32, + /// offset: 80 #[prost(uint32, tag = "13")] - pub upgrade_level: u32, -} -/// Obf: POGGJHOLGEJ -#[derive(proto_derive::CmdID)] -#[cmdid(30152)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3OpponentDataScNotify { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub danccaojljn: u32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub score: u32, - /// offset: 48 - #[prost(enumeration = "Nppnfppenmc", tag = "10")] - pub state: i32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub nmlffogbpoc: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub hp: u32, -} -/// Obf: IELOFCNMAFK -#[derive(proto_derive::CmdID)] -#[cmdid(30119)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3ChatCsReq { - /// offset: 24 + pub agedfhomhai: u32, + /// offset: 88 + #[prost(bool, tag = "15")] + pub niladkeiodc: bool, + /// offset: 56 + #[prost(uint32, tag = "10")] + pub bioinjcmclh: u32, + /// offset: 60 #[prost(uint32, tag = "11")] - pub habdkbfmkee: u32, -} -/// Obf: HFCOKMNPCDC -#[derive(proto_derive::CmdID)] -#[cmdid(30144)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3ChatScRsp { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub habdkbfmkee: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: HEPAKJBNHHF -#[derive(proto_derive::CmdID)] -#[cmdid(30181)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3ChatScNotify { - /// offset: 28 + pub cldfpdidpma: u32, + /// offset: 84 + #[prost(enumeration = "Knbjclilnkp", tag = "2")] + pub bopcjfefhde: i32, + /// offset: 92 #[prost(uint32, tag = "6")] - pub habdkbfmkee: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub egkpfgnjahn: u32, -} -/// Obf: KPIFKJHIEJK -#[derive(proto_derive::CmdID)] -#[cmdid(30169)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3ForceUpdateNotify { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub data: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bhgphklehec { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub cur_times: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub fojcmhimafn: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub dmkfffpdldi: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub nffnnefcmoi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oddkkahnmhk { - /// offset: 24 - #[prost(enumeration = "Nlaamogoobe", tag = "10")] - pub op_type: i32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub hefmjahohkg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kndbnnpidpb { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub display_value: u32, - /// offset: 28 - #[prost(enumeration = "Ganmcijcoki", tag = "10")] - pub peplinogegc: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bfdlhidcnmf { - /// offset: 60 - #[prost(uint32, tag = "15")] - pub ldnbeidjbhi: u32, - /// offset: 68 - #[prost(bool, tag = "13")] - pub jdngfboajap: bool, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub score: u32, - /// offset: 69 - #[prost(bool, tag = "10")] - pub cocongacifj: bool, + pub level_id: u32, + /// offset: 89 + #[prost(bool, tag = "14")] + pub gkmcgeilohj: bool, /// offset: 16 - #[prost(message, optional, tag = "9")] - pub niaeghjlnmb: ::core::option::Option, - /// offset: 44 - #[prost(enumeration = "Nppnfppenmc", tag = "3")] - pub kjpmohfiilo: i32, + #[prost(uint32, repeated, tag = "9")] + pub dbpjkhpdnpd: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "181")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, tag = "1")] - pub midejnjcaia: u32, - /// offset: 52 - #[prost(uint32, tag = "2")] - pub energy_info: u32, + #[prost(uint32, tag = "5")] + pub lajdkhloobj: u32, /// offset: 64 - #[prost(uint32, tag = "5")] - pub anhfjkepcgf: u32, - /// offset: 56 - #[prost(uint32, tag = "12")] - pub ognepbfpilh: u32, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub item_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ioijepgmjaf { - /// offset: 60 - #[prost(int32, tag = "6")] - pub hcbbhckjnji: i32, - /// offset: 56 - #[prost(uint32, tag = "14")] - pub hloacjfdngn: u32, - /// offset: 40 - #[prost(uint64, tag = "8")] - pub mcokhhfpbpj: u64, - /// offset: 48 - #[prost(enumeration = "Kjjldimbgmm", tag = "3")] - pub jgibhfjmobe: i32, - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub mejdmjikimo: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "12")] - pub ebkpmeobnpo: u32, - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub cpkpincceip: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bcekdidflcm { - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub gdimmfmfpja: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub eckkblnelbm: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub use_item_id: u32, - /// offset: 44 - #[prost(uint32, tag = "12")] - pub hnpkghloiid: u32, -} -/// Obf: LLAPFAIHPHO -#[derive(proto_derive::CmdID)] -#[cmdid(30115)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3UseItemScRsp { - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub ehelgaoabjj: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 32 #[prost(uint32, tag = "7")] - pub use_item_id: u32, -} -/// Obf: OBDDHIENCGG -#[derive(proto_derive::CmdID)] -#[cmdid(30192)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloDataCsReq {} -/// Obf: ILLGCECFCBF -#[derive(proto_derive::CmdID)] -#[cmdid(30137)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloDataScRsp { - /// offset: 32 - #[prost(message, repeated, tag = "8")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub data: ::core::option::Option, -} -/// Obf: FFADONHMPKE -#[derive(proto_derive::CmdID)] -#[cmdid(30168)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloAnimEndCsReq { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub bkggnmbbgnl: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub gdchlibmfkm: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub hloacjfdngn: u32, -} -/// Obf: CJNONNDMGAO -#[derive(proto_derive::CmdID)] -#[cmdid(30149)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloAnimEndScRsp { - /// offset: 24 + pub dhooidcjcom: u32, + /// offset: 68 #[prost(uint32, tag = "1")] - pub retcode: u32, + pub ndbpolnhhcn: u32, + /// offset: 52 + #[prost(enumeration = "Knbjclilnkp", tag = "8")] + pub bohellmkfcc: i32, + /// offset: 40 + #[prost(uint32, repeated, tag = "4")] + pub abfnikpdejm: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "3")] + pub mkffchamjbk: u32, } -/// Obf: POEDBCBDLOP #[derive(proto_derive::CmdID)] -#[cmdid(30180)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloDataUpdateNotify { +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Noojjmfbfhg { + /// offset: 36 + #[prost(int32, tag = "1")] + pub cjgjdlmjilh: i32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub mfmgcfgdbbh: u32, /// offset: 32 - #[prost(enumeration = "Abbdjbmiibe", tag = "15")] - pub reason: i32, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub data: ::core::option::Option, -} -/// Obf: IGCFCAIKKAA -#[derive(proto_derive::CmdID)] -#[cmdid(30177)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloSwapNotify { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub medbonhalod: ::core::option::Option, + #[prost(int32, tag = "8")] + pub total_damage: i32, /// offset: 24 - #[prost(message, optional, tag = "9")] - pub ehelgaoabjj: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub item_id: u32, + /// offset: 28 + #[prost(int32, tag = "6")] + pub ogaonkgllnm: i32, } -/// Obf: DJBKIPEHLNM #[derive(proto_derive::CmdID)] -#[cmdid(30105)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloUseItemNotify { - /// offset: 16 +pub struct Nfacoalichp { + /// offset: 40 + #[prost(uint32, tag = "9")] + pub ffalodfbpko: u32, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub omoophclihh: u32, + /// offset: 36 + #[prost(bool, tag = "11")] + pub is_win: bool, + /// offset: 44 + #[prost(int32, tag = "5")] + pub ellbbdopcam: i32, + /// offset: 32 + #[prost(enumeration = "Dbigboeemkb", tag = "1")] + pub necnngiecnf: i32, + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub jdodfkcbfbh: ::prost::alloc::vec::Vec, + /// offset: 37 + #[prost(bool, tag = "2")] + pub nkfaocphkeg: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bajmkoddpgd { + /// offset: 116 + #[prost(uint32, tag = "8")] + pub id: u32, + /// offset: 144 + #[prost(enumeration = "Giehoaonegk", tag = "5")] + pub ikbdjhailgk: i32, + /// offset: 120 + #[prost(uint32, tag = "15")] + pub dmdjngdahhl: u32, + /// offset: 72 + #[prost(enumeration = "Kjoacmfoonb", tag = "4")] + pub chgkjilnffk: i32, + /// offset: 112 + #[prost(uint32, tag = "1183")] + pub buff_id: u32, + /// offset: 84 + #[prost(float, tag = "692")] + pub afehlboafkb: f32, + /// offset: 76 + #[prost(uint32, tag = "9")] + pub skill_id: u32, + /// offset: 90 + #[prost(bool, tag = "202")] + pub ibdkfmghckb: bool, + /// offset: 136 + #[prost(enumeration = "Jjgbjlkbhkl", tag = "365")] + pub fmindbaamjl: i32, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub kmicghkjpid: ::core::option::Option, + /// offset: 80 + #[prost(float, tag = "1")] + pub time: f32, + /// offset: 68 + #[prost(uint32, tag = "1228")] + pub ldedjkfkoec: u32, + /// offset: 100 + #[prost(uint32, tag = "1104")] + pub aanobebjapa: u32, + /// offset: 128 + #[prost(uint32, tag = "1928")] + pub lajdkhloobj: u32, + /// offset: 108 + #[prost(int32, tag = "10")] + pub max_hp: i32, + /// offset: 140 + #[prost(int32, tag = "367")] + pub eogbeafacjm: i32, + /// offset: 64 + #[prost(uint32, tag = "1604")] + pub ajjehigepji: u32, + /// offset: 152 + #[prost(float, tag = "1210")] + pub pbfnapagnnk: f32, + /// offset: 104 + #[prost(uint32, tag = "791")] + pub level: u32, + /// offset: 148 + #[prost(uint32, tag = "1145")] + pub ohchfkbloan: u32, + /// offset: 48 + #[prost(message, optional, tag = "7")] + pub kmhcbofgfjf: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub fopbegefjgc: ::core::option::Option, + /// offset: 156 + #[prost(uint32, tag = "66")] + pub bioinjcmclh: u32, + /// offset: 88 + #[prost(bool, tag = "636")] + pub jmdidbjkilh: bool, + /// offset: 56 + #[prost(message, optional, tag = "14")] + pub poegcejdaob: ::core::option::Option, + /// offset: 124 + #[prost(uint32, tag = "6")] + pub kigpklhgigl: u32, + /// offset: 92 + #[prost(uint32, tag = "443")] + pub text_id: u32, + /// offset: 89 + #[prost(bool, tag = "979")] + pub aelmibdngbh: bool, + /// offset: 40 #[prost(message, optional, tag = "11")] - pub ehelgaoabjj: ::core::option::Option, + pub coopobjaecp: ::core::option::Option, + /// offset: 96 + #[prost(int32, tag = "12")] + pub hp: i32, + /// offset: 132 + #[prost(int32, tag = "2")] + pub attack: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dijpjhmobgc { + /// offset: 104 + #[prost(float, tag = "15")] + pub goaacbjohgh: f32, + /// offset: 68 + #[prost(uint32, tag = "1")] + pub ajjehigepji: u32, + /// offset: 16 + #[prost(message, repeated, tag = "358")] + pub lnpaopldonk: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(bool, tag = "10")] + pub cfcfckioflf: bool, + /// offset: 92 + #[prost(uint32, tag = "8")] + pub hgcahiekmjb: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "14")] + pub ikjiclgcaki: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub hnmhbemjhlk: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "2")] + pub eglhhdoliji: u32, + /// offset: 96 + #[prost(uint32, tag = "7")] + pub queue_position: u32, + /// offset: 112 + #[prost(uint32, tag = "1320")] + pub hebhpacnfge: u32, + /// offset: 108 + #[prost(uint32, tag = "1673")] + pub kllmccbgikm: u32, + /// offset: 88 + #[prost(uint32, tag = "11")] + pub lbbfjlnhaam: u32, + /// offset: 74 + #[prost(bool, tag = "97")] + pub kmdammdibim: bool, + /// offset: 73 + #[prost(bool, tag = "3")] + pub kbalikmbljn: bool, + /// offset: 48 + #[prost(uint32, repeated, tag = "12")] + pub aoglffjlaoc: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "4")] + pub extra_id: u32, + /// offset: 76 + #[prost(uint32, tag = "1842")] + pub eeffplhfcbi: u32, + /// offset: 100 + #[prost(uint32, tag = "6")] + pub gogoakkonid: u32, + /// offset: 56 + #[prost(message, repeated, tag = "13")] + pub kkdcnbmldan: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(enumeration = "Ajlhaglidde", tag = "5")] + pub kdldaecdbjb: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Boagohjaoha { + /// offset: 88 + #[prost(bool, tag = "3")] + pub kmdammdibim: bool, + /// offset: 84 + #[prost(uint32, tag = "5")] + pub hgcahiekmjb: u32, + /// offset: 64 + #[prost(message, repeated, tag = "2")] + pub ageekanmobh: ::prost::alloc::vec::Vec, + /// offset: 76 + #[prost(enumeration = "Fjkioojffap", tag = "12")] + pub phase: i32, + /// offset: 48 + #[prost(message, optional, tag = "1")] + pub agedfhomhai: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub lcnapoppcin: ::core::option::Option, + /// offset: 92 + #[prost(float, tag = "4")] + pub keonecongkp: f32, + /// offset: 40 + #[prost(uint32, repeated, tag = "6")] + pub hnmhbemjhlk: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, repeated, tag = "10")] + pub okadpnijkbo: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(message, optional, tag = "8")] - pub medbonhalod: ::core::option::Option, -} -/// Obf: HIFPDFFIFAM -#[derive(proto_derive::CmdID)] -#[cmdid(30151)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloPreTurnEndCsReq {} -/// Obf: HCOACOGFAJG -#[derive(proto_derive::CmdID)] -#[cmdid(30129)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3SoloPreTurnEndScRsp { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub retcode: u32, + pub cldfpdidpma: ::core::option::Option, + /// offset: 80 + #[prost(uint32, tag = "13")] + pub omoophclihh: u32, + /// offset: 72 + #[prost(uint32, tag = "15")] + pub ppahlnkjknc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kakebehfeio { +pub struct Mcjlknneaom { /// offset: 32 - #[prost(enumeration = "Nppnfppenmc", tag = "2")] - pub state: i32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub ldnbeidjbhi: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub score: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub rank: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nfbflcejnbe { - /// offset: 40 - #[prost(uint64, tag = "7")] - pub mcokhhfpbpj: u64, - /// offset: 56 #[prost(uint32, tag = "2")] - pub ebkpmeobnpo: u32, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub cpkpincceip: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(enumeration = "Nonmoljkoci", tag = "8")] - pub jgibhfjmobe: i32, - /// offset: 48 - #[prost(int32, tag = "9")] - pub hcbbhckjnji: i32, + pub omoophclihh: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub item_id: u32, /// offset: 16 - #[prost(message, optional, tag = "1")] - pub mejdmjikimo: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub oakccofjffe: ::core::option::Option, } -/// Obf: AKOLFJKHFJJ #[derive(proto_derive::CmdID)] -#[cmdid(30138)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FightMatch3RoyaleDataCsReq {} -/// Obf: DFFEPHNBJGN -#[derive(proto_derive::CmdID)] -#[cmdid(30103)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3RoyaleDataScRsp { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub cakpioegdin: ::core::option::Option, +pub struct Bhimecmbggp { /// offset: 40 - #[prost(uint32, tag = "9")] - pub retcode: u32, + #[prost(uint32, repeated, tag = "7")] + pub kenliccemej: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(bool, tag = "1")] + pub jfpadommnpc: bool, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub bgchjfpjjjg: u32, + /// offset: 32 + #[prost(message, repeated, tag = "8")] + pub pehgfandfic: ::prost::alloc::vec::Vec, + /// offset: 49 + #[prost(bool, tag = "10")] + pub ibdkfmghckb: bool, /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub eaolhbhekfl: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "12")] + pub cakhefengkm: u32, } -/// Obf: EKCMNEFJIJD +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mdalelfandi { + /// offset: 68 + #[prost(uint32, tag = "8")] + pub level: u32, + /// offset: 60 + #[prost(uint32, tag = "3")] + pub buff_id: u32, + /// offset: 52 + #[prost(int32, tag = "12")] + pub max_hp: i32, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub fopbegefjgc: ::core::option::Option, + /// offset: 56 + #[prost(bool, tag = "14")] + pub maacdekhdpa: bool, + /// offset: 72 + #[prost(uint32, tag = "9")] + pub aanobebjapa: u32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub id: u32, + /// offset: 64 + #[prost(float, tag = "4")] + pub afehlboafkb: f32, + /// offset: 58 + #[prost(bool, tag = "15")] + pub kbalikmbljn: bool, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub kmhcbofgfjf: ::core::option::Option, + /// offset: 59 + #[prost(bool, tag = "6")] + pub jmdidbjkilh: bool, + /// offset: 44 + #[prost(int32, tag = "2")] + pub attack: i32, + /// offset: 57 + #[prost(bool, tag = "13")] + pub aelmibdngbh: bool, + /// offset: 48 + #[prost(int32, tag = "5")] + pub hp: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fnehdmpkdbi { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub ajjehigepji: u32, + /// offset: 24 + #[prost(bool, tag = "3")] + pub ickfgfeoijj: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ojjdkkdggem { + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub item_list: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "4")] + pub score_id: u32, + /// offset: 48 + #[prost(bool, tag = "2")] + pub bffffngbpin: bool, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub hjjbonomdan: u32, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub inabecdgmhj: u32, + /// offset: 36 + #[prost(enumeration = "Hffeajpohao", tag = "11")] + pub state: i32, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub rank: u32, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub dbpnfbjnmfc: u32, + /// offset: 56 + #[prost(uint32, tag = "14")] + pub hp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gaggmnmkone { + /// offset: 48 + #[prost(int32, tag = "14")] + pub ncaobfapbnc: i32, + /// offset: 40 + #[prost(message, optional, tag = "1")] + pub hbnphljhppo: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub kjoifoehbbg: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "13")] + pub obibpeakenj: u32, + /// offset: 64 + #[prost(uint64, tag = "11")] + pub idlhgadbgog: u64, + /// offset: 56 + #[prost(enumeration = "Gajcafhhdin", tag = "8")] + pub okkoillkfoh: i32, + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub iginifobkam: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jenjglgccne { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub jgnaahigacd: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub gdeplmjeonj: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gghapjnnaek { + /// offset: 64 + #[prost(uint32, tag = "13")] + pub fieeibjbphh: u32, + /// offset: 68 + #[prost(uint32, tag = "12")] + pub score_id: u32, + /// offset: 84 + #[prost(uint32, tag = "14")] + pub igkamonfdbj: u32, + /// offset: 72 + #[prost(uint32, tag = "1")] + pub adphggcfome: u32, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub item_list: ::prost::alloc::vec::Vec, + /// offset: 76 + #[prost(uint32, tag = "15")] + pub energy_info: u32, + /// offset: 88 + #[prost(uint32, tag = "8")] + pub elobopjaefe: u32, + /// offset: 96 + #[prost(enumeration = "Hffeajpohao", tag = "7")] + pub necnngiecnf: i32, + /// offset: 56 + #[prost(message, repeated, tag = "10")] + pub buff_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub fhkheegbajc: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, optional, tag = "5")] + pub cmiimjbobmj: ::core::option::Option, + /// offset: 40 + #[prost(message, repeated, tag = "11")] + pub op_list: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(uint32, tag = "2")] + pub cur_hp: u32, + /// offset: 92 + #[prost(uint32, tag = "9")] + pub oaalaakccii: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Heidloolpfi { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub pjdecnmgaka: ::core::option::Option, + /// offset: 32 + #[prost(enumeration = "Hgpdfoilhak", tag = "1")] + pub keaenpdfldl: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Penhponndjn { + /// offset: 24 + #[prost(int32, tag = "9")] + pub player_data: i32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(30109)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3RoyaleDataUpdateNotify { +pub struct Fndjdjneaea { /// offset: 24 - #[prost(message, optional, tag = "14")] - pub cakpioegdin: ::core::option::Option, - /// offset: 32 - #[prost(enumeration = "Minnalimmgd", tag = "9")] - pub reason: i32, + #[prost(message, optional, tag = "7")] + pub data: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub retcode: u32, } -/// Obf: HGHMLMPIHJA +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30138)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fcjhebmdcha { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub data: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30117)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Igeiiokaklg { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub kcdnnokbkeg: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30151)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Elngdgghlpl { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub giohbibemom: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub dniadnmigdj: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bfiekmokjla { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub pcjkelilccj: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub eagclknfefe: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "15")] + pub ejmbgddeglg: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub cur_index: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(30189)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bcicfmmjjoi { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub bebfecbbbkf: ::core::option::Option, + /// offset: 40 + #[prost(bool, tag = "7")] + pub agohjocppkm: bool, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub cur_index: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30120)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gbonfncical { + /// offset: 40 + #[prost(uint32, tag = "11")] + pub hp: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub item_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(enumeration = "Hffeajpohao", tag = "13")] + pub state: i32, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub score_id: u32, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub obibpeakenj: u32, + /// offset: 36 + #[prost(uint32, tag = "4")] + pub inabecdgmhj: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ppmhjdoklcl { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub dcnemdmacjb: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(30191)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dfakfbefhbi { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub dcnemdmacjb: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30161)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cconboocedk { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub degagoplokd: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub dcnemdmacjb: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30145)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gghdplpgcmn { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub data: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cncjdpdpaal { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub gkicnfcjpgh: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub cur_times: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub fabiicnalfb: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub ipednalijjm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Imcmhdigdhp { + /// offset: 24 + #[prost(enumeration = "Gafekhlpblp", tag = "2")] + pub op_type: i32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub plaepdnngjg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Magdolfdegk { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub display_value: u32, + /// offset: 24 + #[prost(enumeration = "Eodehdemmll", tag = "3")] + pub afakjhhlmdh: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gbcalcaljjh { + /// offset: 68 + #[prost(uint32, tag = "1")] + pub oaalaakccii: u32, + /// offset: 57 + #[prost(bool, tag = "13")] + pub modgelhpima: bool, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub igkamonfdbj: u32, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub item_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "4")] + pub score_id: u32, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub cmiimjbobmj: ::core::option::Option, + /// offset: 52 + #[prost(enumeration = "Hffeajpohao", tag = "9")] + pub necnngiecnf: i32, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub dbpnfbjnmfc: u32, + /// offset: 56 + #[prost(bool, tag = "15")] + pub mgapjblfgib: bool, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub energy_info: u32, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub hjjbonomdan: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kfjfebmmoao { + /// offset: 44 + #[prost(enumeration = "Ppckjibbhed", tag = "6")] + pub okkoillkfoh: i32, + /// offset: 52 + #[prost(uint32, tag = "4")] + pub hakdomihgda: u32, + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub hbnphljhppo: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub kjoifoehbbg: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint64, tag = "13")] + pub idlhgadbgog: u64, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub bjddjippolc: u32, + /// offset: 40 + #[prost(int32, tag = "15")] + pub ncaobfapbnc: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ndnjggfhood { + /// offset: 32 + #[prost(message, repeated, tag = "14")] + pub ejmbgddeglg: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub cegebheagmd: u32, + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub npgfppibnnk: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "4")] + pub use_item_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(30152)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jkiahgladjf { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub ndkdkdpbogd: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub use_item_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hcppmamoikg {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(30181)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Icielffcaeg { + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub data: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hfkohicglph { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub ijmjlmbnfji: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub bjddjippolc: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub hephoihcede: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(30137)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fenmjkpfkfo { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30110)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oebpdlgbcbb { + /// offset: 32 + #[prost(enumeration = "Jgppdjhfiek", tag = "12")] + pub reason: i32, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub data: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30167)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bgemckfpjfb { + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub ndkdkdpbogd: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub cffdenalgdj: ::core::option::Option, +} +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(30162)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightMatch3RoyaleRankUpdateNotify { +pub struct Conoimjddpb { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub ndkdkdpbogd: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub cffdenalgdj: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Icjbbgnecfg {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(30198)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bihjppjhohh { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eikegdlepbb { + /// offset: 36 + #[prost(uint32, tag = "3")] + pub rank: u32, /// offset: 32 #[prost(uint32, tag = "10")] - pub ebkpmeobnpo: u32, + pub hjjbonomdan: u32, + /// offset: 28 + #[prost(enumeration = "Hffeajpohao", tag = "7")] + pub state: i32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub score_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mkhgeegiega { + /// offset: 32 + #[prost(message, repeated, tag = "9")] + pub kjoifoehbbg: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "1")] + pub hakdomihgda: u32, + /// offset: 56 + #[prost(uint64, tag = "8")] + pub idlhgadbgog: u64, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub hbnphljhppo: ::core::option::Option, + /// offset: 40 + #[prost(int32, tag = "4")] + pub ncaobfapbnc: i32, + /// offset: 48 + #[prost(enumeration = "Lcaaabngmce", tag = "14")] + pub okkoillkfoh: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Clijhlkkgfe {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(30192)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ejjmmhmpgnf { + /// offset: 40 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "13")] + pub odiiddefcom: ::core::option::Option, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30114)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ligdmicinab { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub odiiddefcom: ::core::option::Option, + /// offset: 32 + #[prost(enumeration = "Jmhhekndjcc", tag = "5")] + pub reason: i32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(30126)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bldppinbdfc { /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub cpkpincceip: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] + pub kjoifoehbbg: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub hakdomihgda: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AssistSimpleInfo { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub level: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub avatar_id: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub dressed_skin_id: u32, /// offset: 28 #[prost(uint32, tag = "3")] pub pos: u32, + /// offset: 36 + #[prost(uint32, tag = "4")] + pub avatar_id: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub level: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub dressed_skin_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ihkgnjdnalj { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub jgmipmdppij: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub total_star_count: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub group_id: u32, +pub struct Pajdgpinepn { /// offset: 28 - #[prost(uint32, tag = "5")] - pub fccdilggoci: u32, + #[prost(uint32, tag = "15")] + pub geobdecolfp: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub acgmlkekmkd: u32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub group_id: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub bijoeenhpmg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kpiglopemcf { +pub struct Dphmgnfcoch { /// offset: 24 - #[prost(uint32, tag = "1")] - pub ijhlojefcpm: u32, + #[prost(uint32, tag = "2")] + pub lnajblplanb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Phhliogfdek { - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub capiccciebo: ::prost::alloc::vec::Vec, +pub struct Hakbgjfghlo { /// offset: 32 - #[prost(uint32, tag = "5")] - pub ofgbjcccike: u32, + #[prost(uint32, tag = "12")] + pub lnajblplanb: u32, /// offset: 36 #[prost(uint32, tag = "13")] - pub ijhlojefcpm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bcpdfipomap { + pub iklpglpanca: u32, /// offset: 24 - #[prost(message, optional, tag = "9")] - pub lbhjehfjlnf: ::core::option::Option, + #[prost(uint32, repeated, tag = "11")] + pub iobnafhodoi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Obihngmnkek { - #[prost(oneof = "obihngmnkek::Jehdfhlgcnl", tags = "2, 13")] - pub jehdfhlgcnl: ::core::option::Option, +pub struct Lebgnafnlgh { + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub npmjojbcngh: ::core::option::Option, } -/// Nested message and enum types in `OBIHNGMNKEK`. -pub mod obihngmnkek { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kkbmpknljga { + #[prost(oneof = "kkbmpknljga::Oajlpfbkdmm", tags = "12, 14")] + pub oajlpfbkdmm: ::core::option::Option, +} +/// Nested message and enum types in `KKBMPKNLJGA`. +pub mod kkbmpknljga { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Jehdfhlgcnl { + pub enum Oajlpfbkdmm { /// offset: 24 - #[prost(message, tag = "2")] - Loonehfnapc(super::Kpiglopemcf), + #[prost(message, tag = "12")] + Ojmgaegkooo(super::Dphmgnfcoch), /// offset: 24 - #[prost(message, tag = "13")] - Daopohamomf(super::Bcpdfipomap), + #[prost(message, tag = "14")] + Caeoplpoefc(super::Lebgnafnlgh), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dfdooedboda { +pub struct Nbkpmkonfij { /// offset: 24 - #[prost(uint32, tag = "8")] - pub kampliigngb: u32, + #[prost(uint32, tag = "1")] + pub oocaobicbab: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hiejjbdncnh { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub jfpcpdcflmd: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub eboomgdgnep: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "5")] - pub fmobggmfbfa: ::core::option::Option, +pub struct Gjdjheekkgm { /// offset: 48 - #[prost(enumeration = "Pcahopmikim", tag = "11")] + #[prost(enumeration = "BattleRecordType", tag = "4")] pub display_type: i32, + /// offset: 40 + #[prost(message, optional, tag = "8")] + pub efpiodeljkb: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub mfnkfnjhehi: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub knlkbefamlp: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerSimpleInfo { - /// offset: 108 - #[prost(bool, tag = "4")] - pub is_banned: bool, - /// offset: 16 - #[prost(string, tag = "3")] - pub signature: ::prost::alloc::string::String, - /// offset: 84 - #[prost(uint32, tag = "2")] - pub head_icon: u32, - /// offset: 72 - #[prost(message, repeated, tag = "8")] + /// offset: 32 + #[prost(message, repeated, tag = "10")] pub assist_info_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(string, tag = "14")] - pub nickname: ::prost::alloc::string::String, - /// offset: 56 - #[prost(message, optional, tag = "5")] - pub player_outfit_data: ::core::option::Option, - /// offset: 80 - #[prost(uint32, tag = "9")] - pub level: u32, - /// offset: 88 - #[prost(int64, tag = "1")] - pub logout_time: i64, - /// offset: 116 - #[prost(enumeration = "PlatformType", tag = "11")] - pub platform: i32, - /// offset: 64 - #[prost(string, tag = "10")] - pub platform_uuid: ::prost::alloc::string::String, - /// offset: 24 - #[prost(message, optional, tag = "1036")] - pub head_icon_frame_info: ::core::option::Option, - /// offset: 112 - #[prost(uint32, tag = "6")] - pub chat_bubble: u32, - /// offset: 40 - #[prost(string, tag = "7")] - pub platform_nick: ::prost::alloc::string::String, /// offset: 104 #[prost(uint32, tag = "12")] - pub personal_card: u32, - /// offset: 100 - #[prost(enumeration = "FriendOnlineStatus", tag = "15")] - pub online_status: i32, + pub chat_bubble: u32, + /// offset: 64 + #[prost(string, tag = "5")] + pub nickname: ::prost::alloc::string::String, + /// offset: 88 + #[prost(uint32, tag = "426")] + pub gender: u32, + /// offset: 120 + #[prost(int64, tag = "8")] + pub logout_time: i64, + /// offset: 72 + #[prost(string, tag = "15")] + pub platform_nick: ::prost::alloc::string::String, + /// offset: 16 + #[prost(message, optional, tag = "1426")] + pub head_icon_frame_info: ::core::option::Option, /// offset: 96 #[prost(uint32, tag = "13")] pub uid: u32, + /// offset: 80 + #[prost(enumeration = "PlatformType", tag = "9")] + pub platform: i32, + /// offset: 84 + #[prost(enumeration = "FriendOnlineStatus", tag = "4")] + pub online_status: i32, + /// offset: 92 + #[prost(bool, tag = "14")] + pub is_banned: bool, + /// offset: 112 + #[prost(uint32, tag = "2")] + pub personal_card: u32, + /// offset: 24 + #[prost(string, tag = "6")] + pub signature: ::prost::alloc::string::String, + /// offset: 108 + #[prost(uint32, tag = "7")] + pub level: u32, + /// offset: 56 + #[prost(message, optional, tag = "1")] + pub player_outfit_data: ::core::option::Option, + /// offset: 100 + #[prost(uint32, tag = "3")] + pub head_icon: u32, + /// offset: 40 + #[prost(string, tag = "11")] + pub platform_uuid: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DisplayEquipmentInfo { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub promotion: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub rank: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub exp: u32, /// offset: 40 - #[prost(uint32, tag = "3")] - pub tid: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] + pub exp: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] pub level: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub tid: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub rank: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub promotion: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DisplayRelicInfo { - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub sub_affix_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "15")] - pub tid: u32, /// offset: 36 - #[prost(uint32, tag = "1")] - pub exp: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub level: u32, + #[prost(uint32, tag = "3")] + pub tid: u32, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub sub_affix_list: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "10")] - pub main_affix_id: u32, + #[prost(uint32, tag = "7")] + pub exp: u32, /// offset: 40 #[prost(uint32, tag = "11")] + pub main_affix_id: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub level: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] pub r#type: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DisplayAvatarDetailInfo { - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub relic_list: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "7")] - pub rank: u32, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub skilltree_list: ::prost::alloc::vec::Vec, - /// offset: 76 - #[prost(uint32, tag = "10")] - pub enhanced_id: u32, - /// offset: 60 - #[prost(uint32, tag = "15")] - pub exp: u32, - /// offset: 48 - #[prost(uint32, tag = "6")] - pub level: u32, - /// offset: 56 - #[prost(uint32, tag = "13")] - pub promotion: u32, - /// offset: 72 - #[prost(uint32, tag = "11")] - pub avatar_id: u32, /// offset: 40 - #[prost(message, optional, tag = "8")] - pub equipment: ::core::option::Option, - /// offset: 68 - #[prost(uint32, tag = "1")] - pub dressed_skin_id: u32, + #[prost(message, repeated, tag = "2")] + pub skilltree_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "6")] + pub relic_list: ::prost::alloc::vec::Vec, + /// offset: 76 + #[prost(uint32, tag = "13")] + pub exp: u32, /// offset: 52 + #[prost(uint32, tag = "1")] + pub level: u32, + /// offset: 68 #[prost(uint32, tag = "4")] + pub enhanced_id: u32, + /// offset: 56 + #[prost(uint32, tag = "9")] + pub promotion: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub equipment: ::core::option::Option, + /// offset: 64 + #[prost(uint32, tag = "15")] + pub rank: u32, + /// offset: 72 + #[prost(uint32, tag = "12")] + pub avatar_id: u32, + /// offset: 48 + #[prost(uint32, tag = "8")] pub pos: u32, + /// offset: 60 + #[prost(uint32, tag = "3")] + pub dressed_skin_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerCollectionInfo { /// offset: 36 - #[prost(uint32, tag = "10")] - pub ljpekedicml: u32, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub nljifekdphn: u32, - /// offset: 24 #[prost(uint32, tag = "1")] - pub pgcdmmnncjc: u32, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub bdbmikdjlko: u32, + pub gmlnlpcmpjo: u32, /// offset: 28 + #[prost(uint32, tag = "9")] + pub kegcpdcgnbg: u32, + /// offset: 32 #[prost(uint32, tag = "12")] - pub pjcjnkbeimk: u32, + pub nhbcdnbnpdh: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub manacaegckh: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub bcnpkmkimid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerRecordInfo { - /// offset: 60 - #[prost(uint32, tag = "6")] - pub jfpgbkbpbnf: u32, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub cfdfmgllico: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub emjdebdmhll: u32, /// offset: 32 - #[prost(uint32, tag = "10")] - pub hknoakgcjbk: u32, + #[prost(uint32, tag = "4")] + pub hdeofpjlnec: u32, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub fmfeinlbclk: u32, /// offset: 36 - #[prost(uint32, tag = "9")] - pub bhfefeodnim: u32, + #[prost(uint32, tag = "6")] + pub maohemhkiin: u32, /// offset: 52 - #[prost(uint32, tag = "13")] - pub gekkndonhlj: u32, - /// offset: 24 - #[prost(message, optional, tag = "15")] + #[prost(uint32, tag = "3")] + pub liblnnfalfo: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] pub collection_info: ::core::option::Option, - /// offset: 56 + /// offset: 60 #[prost(uint32, tag = "5")] - pub ehbdeijjohk: u32, + pub ofihombklkd: u32, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub afkakmdagad: u32, + /// offset: 56 + #[prost(uint32, tag = "1")] + pub nlpillaaojb: u32, /// offset: 48 - #[prost(uint32, tag = "2")] - pub fhkkmpddmgo: u32, + #[prost(uint32, tag = "9")] + pub gbcaambnlgd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlayerDisplaySettings { - /// offset: 25 - #[prost(bool, tag = "12")] - pub aponeidmphl: bool, +pub struct PrivacySettings { + /// offset: 24 + #[prost(bool, tag = "1")] + pub display_diary: bool, /// offset: 26 #[prost(bool, tag = "5")] - pub pbkbglhhkpe: bool, - /// offset: 28 - #[prost(bool, tag = "3")] - pub njfmiljofok: bool, + pub laopcfdchei: bool, /// offset: 27 + #[prost(bool, tag = "4")] + pub ifmcmacgpgk: bool, + /// offset: 28 + #[prost(bool, tag = "11")] + pub dgnmjambilo: bool, + /// offset: 25 #[prost(bool, tag = "7")] - pub aicnfaobcpi: bool, - /// offset: 24 - #[prost(bool, tag = "9")] - pub kjncckhjfhe: bool, + pub lkhffohiedb: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Knhlnlngahp { +pub struct PlayerDisplaySettings { /// offset: 32 - #[prost(message, optional, tag = "11")] - pub jfpcpdcflmd: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub efpiodeljkb: ::core::option::Option, /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub challenge_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "6")] + pub challenge_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerDetailInfo { - /// offset: 48 - #[prost(string, tag = "7")] - pub gmalcpnohbf: ::prost::alloc::string::String, - /// offset: 124 - #[prost(bool, tag = "1")] - pub jfgaekjjpie: bool, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub record_info: ::core::option::Option, - /// offset: 56 - #[prost(string, tag = "13")] - pub nickname: ::prost::alloc::string::String, - /// offset: 125 - #[prost(bool, tag = "5")] - pub show_display_avatars: bool, - /// offset: 40 - #[prost(message, optional, tag = "185")] - pub lolnmadmpkl: ::core::option::Option, - /// offset: 64 - #[prost(message, optional, tag = "294")] - pub fdfpgmioimm: ::core::option::Option, - /// offset: 116 - #[prost(uint32, tag = "15")] - pub kbmgbninfbk: u32, - /// offset: 132 - #[prost(uint32, tag = "4")] - pub world_level: u32, - /// offset: 128 - #[prost(uint32, tag = "805")] - pub anpllaobfji: u32, - /// offset: 120 - #[prost(uint32, tag = "14")] - pub ooopbhimnfd: u32, - /// offset: 140 - #[prost(enumeration = "PlatformType", tag = "6")] - pub platform_type: i32, - /// offset: 136 - #[prost(uint32, tag = "8")] - pub uid: u32, - /// offset: 32 - #[prost(message, optional, tag = "731")] - pub onkhlhojhgn: ::core::option::Option, /// offset: 96 - #[prost(message, repeated, tag = "1119")] - pub display_avatar_list: ::prost::alloc::vec::Vec, - /// offset: 104 - #[prost(message, optional, tag = "95")] - pub enfkeibdllf: ::core::option::Option, - /// offset: 144 - #[prost(uint32, tag = "2")] - pub head_icon: u32, + #[prost(string, tag = "10")] + pub nickname: ::prost::alloc::string::String, + /// offset: 72 + #[prost(message, optional, tag = "2033")] + pub head_frame_info: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "13")] + pub record_info: ::core::option::Option, /// offset: 80 - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "745")] pub assist_avatar_list: ::prost::alloc::vec::Vec, - /// offset: 112 - #[prost(uint32, tag = "9")] + /// offset: 24 + #[prost(message, optional, tag = "1309")] + pub privacy_settings: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "1262")] + pub emhkbnhdbjl: ::core::option::Option, + /// offset: 120 + #[prost(uint32, tag = "894")] + pub ikjcpllmiff: u32, + /// offset: 140 + #[prost(bool, tag = "14")] + pub is_banned: bool, + /// offset: 144 + #[prost(uint32, tag = "6")] + pub world_level: u32, + /// offset: 141 + #[prost(bool, tag = "3")] + pub hcdmhhjndpc: bool, + /// offset: 128 + #[prost(uint32, tag = "8")] + pub head_icon: u32, + /// offset: 132 + #[prost(uint32, tag = "11")] pub level: u32, - /// offset: 16 - #[prost(string, tag = "12")] - pub akcejfcfban: ::prost::alloc::string::String, + /// offset: 64 + #[prost(message, repeated, tag = "9")] + pub display_avatar_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(string, tag = "2")] + pub dolkndaiojk: ::prost::alloc::string::String, /// offset: 88 - #[prost(string, tag = "11")] + #[prost(string, tag = "1")] pub signature: ::prost::alloc::string::String, + /// offset: 116 + #[prost(uint32, tag = "4")] + pub gbgjciheanj: u32, + /// offset: 40 + #[prost(string, tag = "5")] + pub hojbikbjfcj: ::prost::alloc::string::String, + /// offset: 136 + #[prost(enumeration = "PlatformType", tag = "7")] + pub platform: i32, + /// offset: 124 + #[prost(uint32, tag = "12")] + pub efpjakhndad: u32, + /// offset: 104 + #[prost(message, optional, tag = "692")] + pub jlmnicahjde: ::core::option::Option, + /// offset: 112 + #[prost(uint32, tag = "15")] + pub uid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FriendListInfo { +pub struct FriendSimpleInfo { + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub player_info: ::core::option::Option, + /// offset: 40 + #[prost(string, tag = "5")] + pub remark_name: ::prost::alloc::string::String, /// offset: 52 #[prost(enumeration = "PlayingState", tag = "4")] pub playing_state: i32, - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub simple_info: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "1")] - pub ilchajcffbf: ::core::option::Option, - /// offset: 24 - #[prost(string, tag = "9")] - pub friend_name: ::prost::alloc::string::String, /// offset: 48 - #[prost(bool, tag = "3")] + #[prost(bool, tag = "1")] pub is_marked: bool, + /// offset: 32 + #[prost(message, optional, tag = "8")] + pub ekggkkfckfc: ::core::option::Option, /// offset: 56 - #[prost(int64, tag = "12")] - pub sent_time: i64, + #[prost(int64, tag = "9")] + pub create_time: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FriendApplyInfo { - /// offset: 32 - #[prost(int64, tag = "14")] - pub lffcmnahbdp: i64, /// offset: 24 - #[prost(message, optional, tag = "1")] - pub simple_info: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub player_info: ::core::option::Option, + /// offset: 32 + #[prost(int64, tag = "15")] + pub apply_time: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FriendRecommendInfo { /// offset: 16 - #[prost(message, optional, tag = "11")] - pub simple_info: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub player_info: ::core::option::Option, /// offset: 32 - #[prost(bool, tag = "6")] - pub jholblpeglj: bool, + #[prost(bool, tag = "8")] + pub iikhgmggagb: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lpkdgnbjdem { +pub struct PlayerAssistInfo { /// offset: 32 - #[prost(message, optional, tag = "5")] - pub simple_info: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub mdhfanlhnma: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Flcmjahgkfk { - /// offset: 72 - #[prost(uint32, tag = "3")] - pub level: u32, - /// offset: 32 - #[prost(string, tag = "15")] - pub gmalcpnohbf: ::prost::alloc::string::String, - /// offset: 68 - #[prost(uint32, tag = "5")] - pub innaniclcae: u32, - /// offset: 48 - #[prost(message, optional, tag = "12")] - pub lolnmadmpkl: ::core::option::Option, - /// offset: 60 - #[prost(enumeration = "PlatformType", tag = "7")] - pub platform_type: i32, - /// offset: 40 - #[prost(string, tag = "10")] - pub friend_name: ::prost::alloc::string::String, - /// offset: 56 - #[prost(uint32, tag = "11")] - pub nppphgfenph: u32, - /// offset: 64 - #[prost(uint32, tag = "4")] - pub head_icon: u32, - /// offset: 76 - #[prost(uint32, tag = "2")] - pub uid: u32, - /// offset: 16 - #[prost(string, tag = "6")] - pub nickname: ::prost::alloc::string::String, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FriendChallengeLineup { - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub lineup_list: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "9")] - pub buff_two: u32, - /// offset: 56 - #[prost(uint32, tag = "11")] - pub max_star: u32, - /// offset: 52 - #[prost(uint32, tag = "2")] - pub score: u32, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub buff_one: u32, + #[prost(message, optional, tag = "2")] + pub pmaplgpeoac: ::core::option::Option, /// offset: 24 - #[prost(string, tag = "8")] - pub friend_name: ::prost::alloc::string::String, - /// offset: 40 - #[prost(message, optional, tag = "12")] - pub simple_info: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub player_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FriendChallengeClearanceInfo { - /// offset: 36 +pub struct Jpflmcnicpm { + /// offset: 64 + #[prost(uint32, tag = "7")] + pub flnhdnejfcd: u32, + /// offset: 48 + #[prost(string, tag = "4")] + pub nickname: ::prost::alloc::string::String, + /// offset: 16 + #[prost(string, tag = "13")] + pub remark_name: ::prost::alloc::string::String, + /// offset: 76 + #[prost(uint32, tag = "3")] + pub aockifmhmeg: u32, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub head_frame_info: ::core::option::Option, + /// offset: 60 + #[prost(uint32, tag = "11")] + pub uid: u32, + /// offset: 56 #[prost(uint32, tag = "15")] - pub total_star_count: u32, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub group_id: u32, - #[prost( - oneof = "friend_challenge_clearance_info::ChallengeType", - tags = "1928, 621, 1633" - )] - pub challenge_type: ::core::option::Option< - friend_challenge_clearance_info::ChallengeType, - >, + pub level: u32, + /// offset: 72 + #[prost(uint32, tag = "12")] + pub head_icon: u32, + /// offset: 24 + #[prost(string, tag = "1")] + pub dolkndaiojk: ::prost::alloc::string::String, + /// offset: 68 + #[prost(enumeration = "PlatformType", tag = "9")] + pub platform: i32, } -/// Nested message and enum types in `FriendChallengeClearanceInfo`. -pub mod friend_challenge_clearance_info { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jbjpokeofok { + /// offset: 52 + #[prost(uint32, tag = "8")] + pub score_id: u32, + /// offset: 32 + #[prost(message, repeated, tag = "7")] + pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub buff_one: u32, + /// offset: 40 + #[prost(string, tag = "2")] + pub remark_name: ::prost::alloc::string::String, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub player_info: ::core::option::Option, + /// offset: 60 + #[prost(uint32, tag = "4")] + pub pclmhkdneef: u32, + /// offset: 56 + #[prost(uint32, tag = "3")] + pub buff_two: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ojdhpljdhgf { + /// offset: 36 + #[prost(uint32, tag = "9")] + pub group_id: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub geobdecolfp: u32, + #[prost(oneof = "ojdhpljdhgf::Oojbogcmbjd", tags = "932, 1335, 749")] + pub oojbogcmbjd: ::core::option::Option, +} +/// Nested message and enum types in `OJDHPLJDHGF`. +pub mod ojdhpljdhgf { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum ChallengeType { + pub enum Oojbogcmbjd { /// offset: 16 - #[prost(message, tag = "1928")] - MemoryStats(super::ChallengeMemoryStats), + #[prost(message, tag = "932")] + ChallengeDefault(super::ChallengeStatistics), /// offset: 16 - #[prost(message, tag = "621")] - StoryStats(super::ChallengeStoryStats), + #[prost(message, tag = "1335")] + ChallengeStory(super::ChallengeStoryStatistics), /// offset: 16 - #[prost(message, tag = "1633")] - BossStats(super::ChallengeBossStats), + #[prost(message, tag = "749")] + ChallengeBoss(super::ChallengeBossStatistics), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ognldadpjfo { +pub struct Cgifenpoefa { /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub map_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub finish_info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub rogue_finish_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eaimkomhkhd { +pub struct Lolffjbdjel { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub blehkkonehp: u32, /// offset: 24 #[prost(uint32, tag = "12")] pub avatar_id: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub ggdiibcdobb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Angoamadoma { +pub struct Epdamjhljcl { + /// offset: 36 + #[prost(uint32, tag = "5")] + pub fbeoojddbaj: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub lnajblplanb: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub tourn_finish_info: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub iklpglpanca: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bflchdiafme { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub gijlimokiog: u32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub area_id: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub ckffhoannce: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cegnkmodhbi { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub oemefnpakik: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub hmpkfjjiafg: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub area_id: u32, /// offset: 32 #[prost(uint32, tag = "8")] - pub ijhlojefcpm: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub njnjebodmnl: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub jbloklcpafn: u32, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub ofgbjcccike: u32, + pub lcieobdmkkb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ggkbhalpidk { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub area_id: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub lhbdonjiicc: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub imlhfgepcan: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lfjpddcnbkc { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub area_id: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub fnmgaohmlim: u32, +pub struct Echjppfhpfl { /// offset: 32 #[prost(uint32, tag = "15")] - pub epljmcapmpc: u32, - /// offset: 28 + pub ddiciloljfe: u32, + /// offset: 24 #[prost(uint32, tag = "7")] - pub fjhigbbmjdm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nhagpmmcdcf { - /// offset: 28 - #[prost(uint32, tag = "14")] pub area_id: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub onahhamhfdb: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub nmjinhniddg: u32, /// offset: 36 - #[prost(uint32, tag = "15")] - pub oiajancbabp: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub agijkfbcjoc: u32, + #[prost(uint32, tag = "9")] + pub ahmnnnmjdcb: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Okdbogbabni { - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub apmjfgkifon: ::core::option::Option, +pub struct Jbeanhhedjo { /// offset: 32 - #[prost(message, optional, tag = "6")] - pub hdljbadekfi: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub fhibolefbhi: ::core::option::Option, /// offset: 16 - #[prost(message, optional, tag = "7")] - pub plccehdnafl: ::core::option::Option, - #[prost(oneof = "okdbogbabni::Gnkackhfhhd", tags = "583, 528")] - pub gnkackhfhhd: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub pknapnbdmhl: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub epbaafafgac: ::core::option::Option, + #[prost(oneof = "jbeanhhedjo::Ecgccekijkc", tags = "1491, 1519")] + pub ecgccekijkc: ::core::option::Option, } -/// Nested message and enum types in `OKDBOGBABNI`. -pub mod okdbogbabni { +/// Nested message and enum types in `JBEANHHEDJO`. +pub mod jbeanhhedjo { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Gnkackhfhhd { + pub enum Ecgccekijkc { /// offset: 40 - #[prost(message, tag = "583")] - Edgfedjbahf(super::Ognldadpjfo), + #[prost(message, tag = "1491")] + Epaffeohdpj(super::Cgifenpoefa), /// offset: 40 - #[prost(message, tag = "528")] - Opfpolcgmed(super::Angoamadoma), + #[prost(message, tag = "1519")] + Dkompmpepmn(super::Epdamjhljcl), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Okheklbfaca { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub iephdlmloao: ::prost::alloc::vec::Vec, +pub struct Lgfhaffapbf { /// offset: 44 - #[prost(uint32, tag = "9")] - pub cpjdjhihnjb: u32, + #[prost(uint32, tag = "12")] + pub peak_id: u32, /// offset: 16 - #[prost(message, optional, tag = "13")] - pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub lineup: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "10")] - pub ofgpfijlhnc: u32, + #[prost(uint32, tag = "6")] + pub cycles_used: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub cmpniboclne: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ppcfhapccib { - /// offset: 48 - #[prost(uint32, tag = "3")] - pub buff_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub lineup: ::core::option::Option, - /// offset: 41 - #[prost(bool, tag = "11")] - pub nhgomakhcop: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub iephdlmloao: ::prost::alloc::vec::Vec, +pub struct PlayerChallengePeakRecordBossData { /// offset: 56 - #[prost(uint32, tag = "8")] - pub kjblmapkmbk: u32, - /// offset: 40 - #[prost(bool, tag = "15")] - pub lgjcepnmckm: bool, + #[prost(bool, tag = "11")] + pub dcbdfgcjpjd: bool, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub lineup: ::core::option::Option, /// offset: 52 #[prost(uint32, tag = "10")] - pub jbolaafdkan: u32, + pub best_cycle_count: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub cmpniboclne: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "13")] - pub ofgpfijlhnc: u32, + #[prost(uint32, tag = "3")] + pub bggbjacgaic: u32, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub peak_id: u32, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub buff_id: u32, + /// offset: 57 + #[prost(bool, tag = "7")] + pub eojfdbcgcop: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mnfmhooamnl { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub eiccamlkjfh: ::prost::alloc::vec::Vec, +pub struct Ejhambodinl { /// offset: 16 - #[prost(message, optional, tag = "7")] - pub faidfgbdojj: ::core::option::Option, + #[prost(message, repeated, tag = "9")] + pub ccdcjhnmkdo: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "7")] pub group_id: u32, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub ofaookedcgb: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Olegedoemij { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub kampliigngb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iojhjahimhm { +pub struct Pkebopioedm { /// offset: 24 #[prost(uint32, tag = "2")] + pub oocaobicbab: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ledkapbacjf { + /// offset: 24 + #[prost(uint32, tag = "9")] pub area_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jienkfadche { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub njoiciopbnh: u32, +pub struct Nibkiifknai { /// offset: 28 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "9")] pub area_id: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub khjlfjegjli: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Meehcbgdbea { +pub struct Gadgpdfalhk { /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub challenge_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pddkmlpnmah { +pub struct Mohadaenaap { /// offset: 24 - #[prost(uint32, tag = "7")] - pub ofgpfijlhnc: u32, + #[prost(uint32, tag = "14")] + pub peak_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nlccedehehe { +pub struct Ffddnidkdmp { /// offset: 24 - #[prost(uint32, tag = "13")] - pub ofgbjcccike: u32, + #[prost(uint32, tag = "14")] + pub iklpglpanca: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aeagjcionfe { +pub struct Dmebehdmfhe { /// offset: 24 #[prost(uint32, tag = "8")] - pub kampliigngb: u32, + pub oocaobicbab: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jpjoljfibcb { +pub struct Bceijhfmphl { /// offset: 24 - #[prost(uint32, tag = "7")] - pub elifnjbnagc: u32, + #[prost(uint32, tag = "4")] + pub fkgbojhnhij: u32, /// offset: 28 #[prost(bool, tag = "10")] - pub fnlfihlhbji: bool, + pub ffjkcjidlkm: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dhahakmpnaf { +pub struct Jbgbbnjaebb { /// offset: 32 - #[prost(int64, tag = "12")] + #[prost(int64, tag = "7")] pub time: i64, - /// offset: 40 - #[prost(enumeration = "DevelopmentType", tag = "11")] - pub ejhmnkhepfa: i32, + /// offset: 44 + #[prost(enumeration = "DevelopmentType", tag = "2")] + pub ndlnoomhfab: i32, #[prost( - oneof = "dhahakmpnaf::Ebbmjdkkfib", - tags = "132, 249, 2015, 105, 1160, 2043, 847, 531, 1435, 78, 1625" + oneof = "jbgbbnjaebb::Necgmeoadjc", + tags = "369, 1809, 751, 1546, 671, 869, 1869, 397, 1212, 115, 1427" )] - pub ebbmjdkkfib: ::core::option::Option, + pub necgmeoadjc: ::core::option::Option, } -/// Nested message and enum types in `DHAHAKMPNAF`. -pub mod dhahakmpnaf { +/// Nested message and enum types in `JBGBBNJAEBB`. +pub mod jbgbbnjaebb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Ebbmjdkkfib { + pub enum Necgmeoadjc { /// offset: 16 - #[prost(message, tag = "132")] - Liibbggehfp(super::Iojhjahimhm), + #[prost(message, tag = "369")] + Mephcpdjkpd(super::Ledkapbacjf), /// offset: 16 - #[prost(message, tag = "249")] - Ikffobamghj(super::Meehcbgdbea), + #[prost(message, tag = "1809")] + Glmgakcdejh(super::Gadgpdfalhk), /// offset: 16 - #[prost(uint32, tag = "2015")] + #[prost(uint32, tag = "751")] AvatarId(u32), /// offset: 16 - #[prost(uint32, tag = "105")] - Mdmgkhlhiin(u32), + #[prost(uint32, tag = "1546")] + Pdjhilhiimo(u32), /// offset: 16 - #[prost(uint32, tag = "1160")] - Ckknnhmdcog(u32), + #[prost(uint32, tag = "671")] + Djhcnfcbokf(u32), /// offset: 16 - #[prost(message, tag = "2043")] - Ielhlbffagk(super::Jienkfadche), + #[prost(message, tag = "869")] + Pbbckdmfejh(super::Nibkiifknai), /// offset: 16 - #[prost(uint32, tag = "847")] - ModuleId(u32), + #[prost(uint32, tag = "1869")] + PanelId(u32), /// offset: 16 - #[prost(message, tag = "531")] - Fjdlniaohfc(super::Pddkmlpnmah), + #[prost(message, tag = "397")] + Gcemeebdgpi(super::Mohadaenaap), /// offset: 16 - #[prost(message, tag = "1435")] - Pkeoapliobh(super::Nlccedehehe), + #[prost(message, tag = "1212")] + Clbjoihmkfd(super::Ffddnidkdmp), /// offset: 16 - #[prost(message, tag = "78")] - Nkpcdmmanee(super::Aeagjcionfe), + #[prost(message, tag = "115")] + Oickfachpgi(super::Dmebehdmfhe), /// offset: 16 - #[prost(message, tag = "1625")] - Kolkgcnchah(super::Jpjoljfibcb), + #[prost(message, tag = "1427")] + Mjkfapaifoa(super::Bceijhfmphl), } } -/// Obf: LPPOPKEICAN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2999)] +#[cmdid(2947)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendListInfoCsReq {} -/// Obf: GEDMHDHGEAP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2923)] +#[cmdid(2909)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendListInfoScRsp { /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub friend_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "10")] + pub black_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "4")] + pub friend_list: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "7")] pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "2")] - pub pelmgopehkn: ::prost::alloc::vec::Vec, } -/// Obf: KGLCJPEBPDL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2998)] +#[cmdid(2938)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPlayerDetailInfoCsReq { /// offset: 24 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub uid: u32, } -/// Obf: BLJKKGNCNNG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2965)] +#[cmdid(2917)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlayerDetailInfoScRsp { /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub player_detail_info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub detail_info: ::core::option::Option, } -/// Obf: KBCAJJPFLDL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2983)] +#[cmdid(2951)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendApplyListInfoCsReq {} -/// Obf: KNFEJCOGNMM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2986)] +#[cmdid(2911)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendApplyListInfoScRsp { /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub friend_apply_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "7")] + #[prost(message, repeated, tag = "2")] + pub receive_apply_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] pub send_apply_list: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "13")] pub retcode: u32, } -/// Obf: HOGLMIBJAGP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2994)] +#[cmdid(2989)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ApplyFriendCsReq { /// offset: 28 - #[prost(uint32, tag = "2")] - pub uid: u32, - /// offset: 24 - #[prost(enumeration = "FriendApplySource", tag = "5")] + #[prost(enumeration = "FriendApplySource", tag = "12")] pub source: i32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub uid: u32, } -/// Obf: GHOKGMDLPOO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2952)] +#[cmdid(2920)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ApplyFriendScRsp { /// offset: 28 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "6")] pub uid: u32, } -/// Obf: EEMKGEHBLNM +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(2919)] +#[cmdid(2995)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncApplyFriendScNotify { /// offset: 24 - #[prost(message, optional, tag = "15")] - pub friend_apply_info: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub apply_info: ::core::option::Option, } -/// Obf: IHNFMCAHGFN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2944)] +#[cmdid(2991)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HandleFriendCsReq { /// offset: 28 + #[prost(bool, tag = "15")] + pub is_accept: bool, + /// offset: 24 #[prost(uint32, tag = "1")] pub uid: u32, - /// offset: 24 - #[prost(bool, tag = "6")] - pub handle_result: bool, } -/// Obf: GDKLMAMFKEN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2981)] +#[cmdid(2961)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HandleFriendScRsp { - /// offset: 40 - #[prost(uint32, tag = "6")] - pub uid: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 32 - #[prost(bool, tag = "7")] - pub handle_result: bool, /// offset: 16 - #[prost(message, optional, tag = "10")] - pub handle_friend_info: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub friend_info: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub uid: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 40 + #[prost(bool, tag = "9")] + pub is_accept: bool, } -/// Obf: IFOOAMDBDCK +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(2969)] +#[cmdid(2945)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncHandleFriendScNotify { /// offset: 32 #[prost(uint32, tag = "8")] pub uid: u32, /// offset: 36 - #[prost(bool, tag = "13")] - pub handle_result: bool, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub handle_friend_info: ::core::option::Option, + #[prost(bool, tag = "14")] + pub is_accept: bool, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub friend_info: ::core::option::Option, } -/// Obf: IECGIIJDBCD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2957)] +#[cmdid(2976)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeleteFriendCsReq { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub uid: u32, /// offset: 28 - #[prost(uint32, tag = "4")] - pub fiocdbipcgb: u32, -} -/// Obf: HOCJANHPBLI -#[derive(proto_derive::CmdID)] -#[cmdid(2915)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DeleteFriendScRsp { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub uid: u32, -} -/// Obf: CLEKCBJMKPD -#[derive(proto_derive::CmdID)] -#[cmdid(2992)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncDeleteFriendScNotify { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub uid: u32, -} -/// Obf: KPGFPDMKGBI -#[derive(proto_derive::CmdID)] -#[cmdid(2937)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AddBlacklistCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub uid: u32, -} -/// Obf: LBODLIPMMON -#[derive(proto_derive::CmdID)] -#[cmdid(2968)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AddBlacklistScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub black_info: ::core::option::Option, -} -/// Obf: AEHGONDBHAJ -#[derive(proto_derive::CmdID)] -#[cmdid(2949)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncAddBlacklistScNotify { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub uid: u32, -} -/// Obf: BABKADMDHDP -#[derive(proto_derive::CmdID)] -#[cmdid(2980)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetFriendRecommendListInfoCsReq { - /// offset: 24 - #[prost(bool, tag = "3")] - pub ahoilnfiieg: bool, -} -/// Obf: PNFFPBIHJJH -#[derive(proto_derive::CmdID)] -#[cmdid(2977)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetFriendRecommendListInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub friend_recommend_list: ::prost::alloc::vec::Vec, -} -/// Obf: JMICCHOBEEL -#[derive(proto_derive::CmdID)] -#[cmdid(2905)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetFriendRemarkNameCsReq { - /// offset: 24 - #[prost(string, tag = "14")] - pub friend_name: ::prost::alloc::string::String, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub uid: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub reason: u32, -} -/// Obf: IIKBBNDCHBL -#[derive(proto_derive::CmdID)] -#[cmdid(2951)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetFriendRemarkNameScRsp { - /// offset: 36 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub uid: u32, - /// offset: 24 - #[prost(string, tag = "14")] - pub friend_name: ::prost::alloc::string::String, -} -/// Obf: JOMLPKFBNLP -#[derive(proto_derive::CmdID)] -#[cmdid(2929)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ReportPlayerCsReq { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub ehbcljfpooe: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub uid: u32, - /// offset: 16 - #[prost(string, tag = "11")] - pub mimakhaabah: ::prost::alloc::string::String, -} -/// Obf: JKPIPGHOCHN -#[derive(proto_derive::CmdID)] -#[cmdid(2938)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ReportPlayerScRsp { + #[prost(uint32, tag = "7")] + pub pjgpjefaimm: u32, /// offset: 24 #[prost(uint32, tag = "9")] + pub uid: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2952)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct DeleteFriendScRsp { + /// offset: 24 + #[prost(uint32, tag = "15")] pub retcode: u32, -} -/// Obf: DEGBEHAGPKE -#[derive(proto_derive::CmdID)] -#[cmdid(2903)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DeleteBlacklistCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub uid: u32, -} -/// Obf: LHJCOILKDKH -#[derive(proto_derive::CmdID)] -#[cmdid(2909)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DeleteBlacklistScRsp { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub uid: u32, /// offset: 28 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: NFCFGGLOFHM -#[derive(proto_derive::CmdID)] -#[cmdid(2962)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SearchPlayerCsReq { - /// offset: 32 - #[prost(bool, tag = "8")] - pub ahoilnfiieg: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub search_uid_list: ::prost::alloc::vec::Vec, -} -/// Obf: CDKLHLINJKN -#[derive(proto_derive::CmdID)] -#[cmdid(2959)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SearchPlayerScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub search_result_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "7")] - pub search_uid_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: LMHCBMCBJHC -#[derive(proto_derive::CmdID)] -#[cmdid(2922)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAssistListCsReq { - /// offset: 25 - #[prost(bool, tag = "10")] - pub kiboagmojcp: bool, - /// offset: 24 - #[prost(bool, tag = "4")] - pub ahoilnfiieg: bool, -} -/// Obf: EAJEAKDAKPC -#[derive(proto_derive::CmdID)] -#[cmdid(2997)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetAssistListScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub giecjkakcko: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: OHDJHIAEJKK -#[derive(proto_derive::CmdID)] -#[cmdid(2955)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetAssistCsReq { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub avatar_id: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub uid: u32, } -/// Obf: KBFGCNFFGAA +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(2950)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetAssistScRsp { +pub struct SyncDeleteFriendScNotify { /// offset: 24 - #[prost(uint32, tag = "1")] - pub uid: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub avatar_id: u32, -} -/// Obf: BHKAPLNNKJA -#[derive(proto_derive::CmdID)] -#[cmdid(2960)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetCurAssistCsReq {} -/// Obf: IGKGGOADBKP -#[derive(proto_derive::CmdID)] -#[cmdid(2971)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetCurAssistScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub dpjbdhelnoe: ::core::option::Option, -} -/// Obf: HIFKDLLODAL -#[derive(proto_derive::CmdID)] -#[cmdid(2935)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAssistHistoryCsReq {} -/// Obf: EFJIHGJHKBO -#[derive(proto_derive::CmdID)] -#[cmdid(2974)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetAssistHistoryScRsp { - /// offset: 40 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 36 #[prost(uint32, tag = "7")] - pub omhchjlliif: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub nfjjapnppkp: u32, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub pbfneigopmp: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub phplnjfimdc: ::prost::alloc::vec::Vec, + pub uid: u32, } -/// Obf: FNBHGNIEKBO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2916)] +#[cmdid(2981)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct NewAssistHistoryNotify { +pub struct AddBlacklistCsReq { /// offset: 24 - #[prost(uint32, tag = "12")] - pub nfjjapnppkp: u32, + #[prost(uint32, tag = "8")] + pub uid: u32, } -/// Obf: PFLOBGHELNH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2956)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeAssistRewardCsReq {} -/// Obf: ABGKAIBFDJD -#[derive(proto_derive::CmdID)] -#[cmdid(2921)] +#[cmdid(2993)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeAssistRewardScRsp { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub retcode: u32, +pub struct AddBlacklistScRsp { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub black_info: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "4")] - pub reward: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub nlcnbiehcoh: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub retcode: u32, } -/// Obf: JCHKKENIBJK +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(2937)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SyncAddBlacklistScNotify { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub uid: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(2910)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CurAssistChangedNotify { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub dpjbdhelnoe: ::core::option::Option, -} -/// Obf: HBOFJGNBFBG -#[derive(proto_derive::CmdID)] -#[cmdid(2953)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPlatformPlayerInfoCsReq { - /// offset: 16 - #[prost(string, repeated, tag = "5")] - pub dnenlchjekg: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - /// offset: 32 - #[prost(enumeration = "PlatformType", tag = "7")] - pub platform_type: i32, -} -/// Obf: ACPKGEEJJFL -#[derive(proto_derive::CmdID)] -#[cmdid(2942)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPlatformPlayerInfoScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub friend_recommend_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: CJOENDLMMEG -#[derive(proto_derive::CmdID)] -#[cmdid(2970)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetFriendLoginInfoCsReq {} -/// Obf: GMJEHFLHLGO -#[derive(proto_derive::CmdID)] -#[cmdid(2941)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetFriendLoginInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 44 - #[prost(bool, tag = "1")] - pub bohnbjmmkbo: bool, - /// offset: 45 +pub struct GetFriendRecommendListInfoCsReq { + /// offset: 24 #[prost(bool, tag = "9")] - pub lifcehlfdnm: bool, - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub friend_uid_list: ::prost::alloc::vec::Vec, + pub iihollffnbk: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2967)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetFriendRecommendListInfoScRsp { /// offset: 32 - #[prost(uint32, repeated, tag = "8")] - pub iihdbinopmg: ::prost::alloc::vec::Vec, -} -/// Obf: BKPGKBKJEEF -#[derive(proto_derive::CmdID)] -#[cmdid(2912)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetForbidOtherApplyFriendCsReq { - /// offset: 24 - #[prost(bool, tag = "13")] - pub mjpflikafej: bool, -} -/// Obf: HOKMICOJAFK -#[derive(proto_derive::CmdID)] -#[cmdid(2906)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetForbidOtherApplyFriendScRsp { - /// offset: 24 - #[prost(bool, tag = "12")] - pub mjpflikafej: bool, - /// offset: 28 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub player_info_list: ::prost::alloc::vec::Vec, } -/// Obf: EAEMLKIPOGO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2963)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetFriendMarkCsReq { - /// offset: 28 - #[prost(bool, tag = "11")] - pub is_set_mark: bool, +#[cmdid(2962)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetFriendRemarkNameCsReq { /// offset: 32 #[prost(uint32, tag = "15")] pub uid: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub reason: u32, + /// offset: 24 + #[prost(string, tag = "4")] + pub remark_name: ::prost::alloc::string::String, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2935)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetFriendRemarkNameScRsp { + /// offset: 24 + #[prost(string, tag = "13")] + pub remark_name: ::prost::alloc::string::String, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub uid: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2998)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ReportPlayerCsReq { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub bmfflfnhooi: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub uid: u32, + /// offset: 16 + #[prost(string, tag = "10")] + pub fgedhphbdjl: ::prost::alloc::string::String, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2946)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ReportPlayerScRsp { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2992)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct DeleteBlacklistCsReq { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub uid: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2914)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct DeleteBlacklistScRsp { /// offset: 24 #[prost(uint32, tag = "1")] - pub reason: u32, + pub uid: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub retcode: u32, } -/// Obf: DDHDGOIPCPA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2904)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetFriendMarkScRsp { +#[cmdid(2926)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SearchPlayerCsReq { + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub uid_list: ::prost::alloc::vec::Vec, /// offset: 32 + #[prost(bool, tag = "7")] + pub iihollffnbk: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2957)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SearchPlayerScRsp { + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub simple_info_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub result_uid_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2915)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetAssistListCsReq { + /// offset: 24 + #[prost(bool, tag = "5")] + pub dffemijcfbd: bool, + /// offset: 25 + #[prost(bool, tag = "4")] + pub iihollffnbk: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2973)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetAssistListScRsp { + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub assist_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2970)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetAssistCsReq { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub avatar_id: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub uid: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2913)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetAssistScRsp { + /// offset: 28 #[prost(uint32, tag = "14")] pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "11")] - pub uid: u32, - /// offset: 28 - #[prost(bool, tag = "6")] - pub is_set_mark: bool, -} -/// Obf: MPBPGPDGGDK -#[derive(proto_derive::CmdID)] -#[cmdid(2911)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetFriendAssistListCsReq { - /// offset: 40 - #[prost(enumeration = "AssistAvatarType", tag = "9")] - pub mloogabmihp: i32, - /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub bijgjecjmhm: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "10")] - pub from_uid: u32, + #[prost(uint32, tag = "7")] + pub avatar_id: u32, /// offset: 32 - #[prost(uint32, repeated, tag = "3")] - pub kcpaodebjdg: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(bool, tag = "8")] - pub ahoilnfiieg: bool, + #[prost(uint32, tag = "5")] + pub uid: u32, } -/// Obf: EDBEFIDAGCO +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(2901)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetCurAssistCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2949)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetFriendAssistListScRsp { +pub struct GetCurAssistScRsp { + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub assist_info: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2977)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetAssistHistoryCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2919)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetAssistHistoryScRsp { + /// offset: 36 + #[prost(uint32, tag = "6")] + pub ioiijfgcpeg: u32, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub oenkcpijhhl: u32, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub oboegeeodec: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub today_use_uid_list: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(2969)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct NewAssistHistoryNotify { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub ioiijfgcpeg: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2906)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct TakeAssistRewardCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2988)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeAssistRewardScRsp { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub lnfffdnhebe: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(2903)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct CurAssistChangedNotify { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub assist_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2955)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetPlatformPlayerInfoCsReq { + /// offset: 32 + #[prost(enumeration = "PlatformType", tag = "2")] + pub platform: i32, + /// offset: 24 + #[prost(string, repeated, tag = "6")] + pub ifjpbafaomm: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2930)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetPlatformPlayerInfoScRsp { + /// offset: 32 + #[prost(uint32, tag = "15")] pub retcode: u32, /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub giecjkakcko: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub from_uid: u32, + #[prost(message, repeated, tag = "12")] + pub player_info_list: ::prost::alloc::vec::Vec, } +/// Type: Req #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kamciopbpga { - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "10")] - pub avatar_list: ::prost::alloc::vec::Vec, -} +#[cmdid(2933)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetFriendLoginInfoCsReq {} +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(2966)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Giihbkmjkhm { - /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, +pub struct GetFriendLoginInfoScRsp { /// offset: 40 - #[prost(uint32, tag = "5")] - pub ofgpfijlhnc: u32, + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 45 + #[prost(bool, tag = "8")] + pub mgfnlgamkfh: bool, /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub avatar_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dkhenlmaebe { - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub hfppegifflm: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iigjfpmigkf { + #[prost(uint32, repeated, tag = "4")] + pub cmcilifageb: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub jhiakmchplb: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "15")] + pub gddmgcalkhc: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "6")] - pub buff_id: u32, + #[prost(bool, tag = "11")] + pub ghpnnbpcdjj: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2936)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetForbidOtherApplyFriendCsReq { + /// offset: 24 + #[prost(bool, tag = "12")] + pub hneekkpodgb: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2985)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetForbidOtherApplyFriendScRsp { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 24 + #[prost(bool, tag = "8")] + pub hneekkpodgb: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2925)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetFriendMarkCsReq { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub reason: u32, + /// offset: 28 + #[prost(bool, tag = "14")] + pub iinlappnagb: bool, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub uid: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2907)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetFriendMarkScRsp { + /// offset: 28 + #[prost(bool, tag = "15")] + pub iinlappnagb: bool, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub uid: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2997)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetFriendAssistListCsReq { + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub jimkcdcnogh: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(bool, tag = "2")] - pub plfkncnaphm: bool, - /// offset: 41 - #[prost(bool, tag = "7")] - pub fkphnanlemj: bool, - /// offset: 16 + pub iihollffnbk: bool, + /// offset: 32 + #[prost(uint32, repeated, tag = "12")] + pub gffpekhafga: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub target_side: u32, + /// offset: 44 + #[prost(enumeration = "AssistAvatarType", tag = "9")] + pub hchpjcpciaa: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2932)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetFriendAssistListScRsp { + /// offset: 36 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 24 #[prost(message, repeated, tag = "13")] - pub avatar_list: ::prost::alloc::vec::Vec, + pub assist_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub target_side: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kehmgkihefn { - /// offset: 40 - #[prost(message, optional, tag = "9")] - pub simple_info: ::core::option::Option, - /// offset: 24 - #[prost(string, tag = "4")] - pub friend_name: ::prost::alloc::string::String, - #[prost(oneof = "kehmgkihefn::Nfgnbbjgang", tags = "13, 3, 1, 2")] - pub nfgnbbjgang: ::core::option::Option, +pub struct Hdlenlbpdjh { + /// offset: 32 + #[prost(message, repeated, tag = "1")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub finished_target_list: ::prost::alloc::vec::Vec, } -/// Nested message and enum types in `KEHMGKIHEFN`. -pub mod kehmgkihefn { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hjbjchoehfb { + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub finished_target_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub peak_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub avatar_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Golmafpeonc { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub ddgeddnhljp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ChallengePeakBossFriendLineupRecommendation { + /// offset: 44 + #[prost(uint32, tag = "3")] + pub buff_id: u32, + /// offset: 41 + #[prost(bool, tag = "11")] + pub hard_mode_has_passed: bool, + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(bool, tag = "4")] + pub is_hard_mode: bool, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub finished_target_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Koclbbleilb { + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub player_info: ::core::option::Option, + /// offset: 40 + #[prost(string, tag = "1")] + pub remark_name: ::prost::alloc::string::String, + #[prost(oneof = "koclbbleilb::Pieebieoopg", tags = "2, 11, 14, 5")] + pub pieebieoopg: ::core::option::Option, +} +/// Nested message and enum types in `KOCLBBLEILB`. +pub mod koclbbleilb { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Nfgnbbjgang { - /// offset: 16 - #[prost(message, tag = "13")] - Gieidjeepac(super::FriendChallengeLineup), - /// offset: 16 - #[prost(message, tag = "3")] - Addcjejpfef(super::Kamciopbpga), - /// offset: 16 - #[prost(message, tag = "1")] - Pmhibhnephi(super::Dkhenlmaebe), - /// offset: 16 + pub enum Pieebieoopg { + /// offset: 32 #[prost(message, tag = "2")] - Jilkkajbljk(super::Iigjfpmigkf), + Lcckopeaoch(super::Jbjpokeofok), + /// offset: 32 + #[prost(message, tag = "11")] + Cplbfbogndn(super::Hdlenlbpdjh), + /// offset: 32 + #[prost(message, tag = "14")] + Panpdkfnaal(super::Golmafpeonc), + /// offset: 32 + #[prost(message, tag = "5")] + Picdbgcggkp(super::ChallengePeakBossFriendLineupRecommendation), } } -/// Obf: IDNHIELAIFM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2995)] +#[cmdid(2931)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendRecommendLineupCsReq { /// offset: 28 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "11")] pub key: u32, /// offset: 24 - #[prost(enumeration = "Dllleandaih", tag = "8")] + #[prost(enumeration = "Ldpgcfighfd", tag = "7")] pub r#type: i32, } -/// Obf: PCAPDIPOLMC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2979)] +#[cmdid(2941)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendRecommendLineupScRsp { - /// offset: 36 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub key: u32, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub jaejjmjpmnc: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(enumeration = "Dllleandaih", tag = "3")] - pub r#type: i32, /// offset: 40 - #[prost(bool, tag = "15")] - pub onocjeebfci: bool, + #[prost(uint32, tag = "10")] + pub key: u32, + /// offset: 44 + #[prost(bool, tag = "3")] + pub lkfhegkmlki: bool, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub challenge_recommend_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(enumeration = "Ldpgcfighfd", tag = "15")] + pub r#type: i32, } -/// Obf: HHIOHFKOCFD +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(2902)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendRecommendLineupDetailCsReq { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub uid: u32, /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub key: u32, /// offset: 28 - #[prost(enumeration = "Dllleandaih", tag = "12")] + #[prost(uint32, tag = "4")] + pub uid: u32, + /// offset: 32 + #[prost(enumeration = "Ldpgcfighfd", tag = "14")] pub r#type: i32, } -/// Obf: CLCGHILDELA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2988)] +#[cmdid(2918)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendRecommendLineupDetailScRsp { /// offset: 44 - #[prost(uint32, tag = "4")] - pub uid: u32, - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub ccgdmoolhhb: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(enumeration = "Dllleandaih", tag = "13")] - pub r#type: i32, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "6")] pub key: u32, + /// offset: 40 + #[prost(enumeration = "Ldpgcfighfd", tag = "15")] + pub r#type: i32, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub faojejfcdjp: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub uid: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, } -/// Obf: OIODMCPAMEG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2940)] +#[cmdid(2965)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendBattleRecordDetailCsReq { /// offset: 24 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub uid: u32, } -/// Obf: CHKNEOBBFDF -#[derive(proto_derive::CmdID)] -#[cmdid(2966)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetFriendBattleRecordDetailScRsp { - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub fmobggmfbfa: ::core::option::Option, - /// offset: 60 - #[prost(uint32, tag = "13")] - pub uid: u32, - /// offset: 56 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 48 - #[prost(message, repeated, tag = "2")] - pub jdidihobaod: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub fgcjfjjenjf: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "10")] - pub pgbbepkahbh: ::core::option::Option, -} -/// Obf: IFHKCHCHJKH +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(2939)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetFriendBattleRecordDetailScRsp { + /// offset: 56 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 60 + #[prost(uint32, tag = "8")] + pub uid: u32, + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub plcgiemkgna: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub knlkbefamlp: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub abpbjbkaeji: ::core::option::Option, + /// offset: 40 + #[prost(message, repeated, tag = "14")] + pub ikfdjhkiifp: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2979)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetFriendDevelopmentInfoCsReq { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "2")] pub uid: u32, } -/// Obf: MBBIJCDDMPK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2945)] +#[cmdid(2927)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFriendDevelopmentInfoScRsp { /// offset: 36 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "6")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub jbhbfbjgbph: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub uid: u32, + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub eilbgljdlmm: ::prost::alloc::vec::Vec, } -/// Obf: FIAMOECBPNM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1999)] +#[cmdid(1947)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetGachaInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GachaCeilingAvatar { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub avatar_id: u32, /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "15")] + pub avatar_id: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] pub repeated_cnt: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GachaCeiling { - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "11")] - pub ceiling_num: u32, - /// offset: 36 - #[prost(bool, tag = "3")] + #[prost(bool, tag = "1")] pub is_claimed: bool, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub ceiling_num: u32, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub avatar_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lopdjahfphn { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub dlabdnpihff: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub jigonealcpc: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub chdoibfehlp: u32, +pub struct Aoeoiaocljf { /// offset: 44 - #[prost(uint32, tag = "14")] - pub iincdjpoomc: u32, + #[prost(uint32, tag = "9")] + pub gcdjlakllio: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub dpkopfdefmn: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub chmmplofcpn: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "8")] + pub giihkbcogob: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GachaInfo { - /// offset: 88 - #[prost(int64, tag = "2")] - pub begin_time: i64, + /// offset: 92 + #[prost(uint32, tag = "10")] + pub gacha_id: u32, /// offset: 72 + #[prost(uint32, tag = "11")] + pub eoheegmkmoe: u32, + /// offset: 88 + #[prost(uint32, tag = "6")] + pub dkhdcpoohka: u32, + /// offset: 96 + #[prost(int64, tag = "12")] + pub begin_time: i64, + /// offset: 32 + #[prost(string, tag = "7")] + pub detail_webview: ::prost::alloc::string::String, + /// offset: 80 #[prost(int64, tag = "4")] pub end_time: i64, - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub item_detail_list: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "7")] - pub gdifaahifbh: u32, - /// offset: 64 - #[prost(uint32, repeated, tag = "13")] - pub prize_item_list: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(uint32, tag = "5")] - pub kmnjnmjfgbg: u32, - /// offset: 84 - #[prost(uint32, tag = "15")] - pub gacha_id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub anngpmhpnim: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(string, tag = "6")] - pub detail_webview: ::prost::alloc::string::String, - /// offset: 100 - #[prost(uint32, tag = "3")] - pub iincdjpoomc: u32, - /// offset: 32 - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "15")] pub gacha_ceiling: ::core::option::Option, /// offset: 56 - #[prost(string, tag = "10")] + #[prost(string, tag = "5")] pub drop_history_webview: ::prost::alloc::string::String, + /// offset: 76 + #[prost(uint32, tag = "13")] + pub chmmplofcpn: u32, + /// offset: 64 + #[prost(uint32, repeated, tag = "8")] + pub item_detail_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub prize_item_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "3")] + pub ipgjnfpojnh: ::prost::alloc::vec::Vec, } -/// Obf: HOBMNDENOHD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1923)] +#[cmdid(1909)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetGachaInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub nopbebkhika: u32, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub idehajmemak: ::prost::alloc::vec::Vec, /// offset: 56 - #[prost(uint32, tag = "3")] - pub gacha_random: u32, + #[prost(uint32, tag = "15")] + pub fmcpobkemag: u32, /// offset: 24 #[prost(message, repeated, tag = "10")] - pub gacha_info_list: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "2")] - pub nbelnoipoek: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub retcode: u32, + pub olkgfjhefdg: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, tag = "15")] - pub djndmnpebka: u32, + #[prost(uint32, tag = "11")] + pub aecadldckdd: u32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub apocgaojojf: u32, + /// offset: 52 + #[prost(uint32, tag = "8")] + pub gacha_random: u32, + /// offset: 32 + #[prost(message, repeated, tag = "3")] + pub gacha_info_list: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "14")] + pub retcode: u32, } -/// Obf: BEHHJDKOGHH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1998)] +#[cmdid(1938)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DoGachaCsReq { - /// offset: 36 - #[prost(uint32, tag = "4")] - pub gacha_num: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub simulate_magic: u32, /// offset: 24 + #[prost(uint32, tag = "11")] + pub gacha_random: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub gacha_num: u32, + /// offset: 28 #[prost(uint32, tag = "6")] pub gacha_id: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub gacha_random: u32, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub simulate_magic: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GachaItem { - /// offset: 40 - #[prost(message, optional, tag = "15")] - pub token_item: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub transfer_item_list: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub gacha_item: ::core::option::Option, /// offset: 48 - #[prost(bool, tag = "12")] + #[prost(bool, tag = "5")] pub is_new: bool, + /// offset: 40 + #[prost(message, optional, tag = "2")] + pub transfer_item_list: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub token_item: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub gacha_item: ::core::option::Option, } -/// Obf: KHKCPPLPKND +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1965)] +#[cmdid(1917)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DoGachaScRsp { - /// offset: 56 - #[prost(uint32, tag = "9")] - pub penilhglhhm: u32, /// offset: 24 - #[prost(message, repeated, tag = "15")] + #[prost(message, repeated, tag = "11")] pub gacha_item_list: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "11")] - pub gdifaahifbh: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub gacha_num: u32, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub retcode: u32, /// offset: 60 #[prost(uint32, tag = "8")] - pub gacha_id: u32, - /// offset: 44 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub ceiling_num: u32, - /// offset: 48 + pub gacha_num: u32, + /// offset: 56 #[prost(uint32, tag = "7")] - pub nopbebkhika: u32, + pub ceiling_num: u32, /// offset: 36 - #[prost(uint32, tag = "1")] - pub kmnjnmjfgbg: u32, + #[prost(uint32, tag = "5")] + pub gacha_id: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub bdanbfdobgi: u32, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub dkhdcpoohka: u32, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub fmcpobkemag: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub eoheegmkmoe: u32, } -/// Obf: GCCGABDOLLK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1983)] +#[cmdid(1951)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetGachaCeilingCsReq { /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub gacha_type: u32, } -/// Obf: PCMFELPJEAL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1986)] +#[cmdid(1911)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetGachaCeilingScRsp { /// offset: 32 #[prost(uint32, tag = "6")] - pub gacha_type: u32, - /// offset: 36 - #[prost(uint32, tag = "11")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] + /// offset: 36 + #[prost(uint32, tag = "8")] + pub gacha_type: u32, + /// offset: 24 + #[prost(message, optional, tag = "14")] pub gacha_ceiling: ::core::option::Option, } -/// Obf: IHBMAOEAOHA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1994)] +#[cmdid(1989)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExchangeGachaCeilingCsReq { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub gacha_type: u32, /// offset: 28 - #[prost(uint32, tag = "12")] - pub avatar_id: u32, -} -/// Obf: JPJGLKKFGFM -#[derive(proto_derive::CmdID)] -#[cmdid(1952)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ExchangeGachaCeilingScRsp { - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub transfer_item_list: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub gacha_type: u32, - /// offset: 40 #[prost(uint32, tag = "5")] pub avatar_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub gacha_ceiling: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub retcode: u32, } -/// Obf: DFBBEFDPCII +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1919)] +#[cmdid(1920)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ExchangeGachaCeilingScRsp { + /// offset: 44 + #[prost(uint32, tag = "15")] + pub avatar_id: u32, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub transfer_item_list: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub gacha_type: u32, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub gacha_ceiling: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1995)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGachaDecideItemCsReq { /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub dlabdnpihff: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub dpkopfdefmn: ::prost::alloc::vec::Vec, /// offset: 36 #[prost(uint32, tag = "2")] - pub chdoibfehlp: u32, + pub gcdjlakllio: u32, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub gacha_id: u32, } -/// Obf: KBDBMGGFCKI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1944)] +#[cmdid(1991)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGachaDecideItemScRsp { /// offset: 32 #[prost(uint32, tag = "11")] pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub gdpoeejnmhn: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub dcjpkilikom: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Glcjajjmfba { - #[prost(oneof = "glcjajjmfba::Jpbheojakge", tags = "7, 5, 4, 9, 14, 1, 11, 8, 12")] - pub jpbheojakge: ::core::option::Option, +pub struct Omblhdlmgkp { + #[prost(oneof = "omblhdlmgkp::Gfnmajmmdef", tags = "7, 3, 9, 12, 15, 13, 6, 2, 1")] + pub gfnmajmmdef: ::core::option::Option, } -/// Nested message and enum types in `GLCJAJJMFBA`. -pub mod glcjajjmfba { +/// Nested message and enum types in `OMBLHDLMGKP`. +pub mod omblhdlmgkp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Jpbheojakge { - /// offset: 24 + pub enum Gfnmajmmdef { + /// offset: 16 #[prost(message, tag = "7")] - Lnbgmjcncci(super::Hhheokppead), - /// offset: 24 - #[prost(message, tag = "5")] - Emkdeoeemek(super::Bncclpfkian), - /// offset: 24 - #[prost(message, tag = "4")] - Hilodamiieo(super::Kgcjcefnefp), - /// offset: 24 + Igjbcfpiemn(super::Djobmngnddm), + /// offset: 16 + #[prost(message, tag = "3")] + Ljlhhphgajd(super::Elpfjgfnoog), + /// offset: 16 #[prost(message, tag = "9")] - Phnehgkkolh(super::Jkidimikhgf), - /// offset: 24 - #[prost(message, tag = "14")] - Igddgjgghnj(super::Ijdgbcimkkk), - /// offset: 24 - #[prost(message, tag = "1")] - Dolckiibiae(super::Paojifhgaej), - /// offset: 24 - #[prost(message, tag = "11")] - Bcaeolkbjff(super::Gdfmncoepcp), - /// offset: 24 - #[prost(message, tag = "8")] - Mbfbgjihghh(super::Iildmflijjk), - /// offset: 24 + Igppbglmodj(super::Ihihabjildg), + /// offset: 16 #[prost(message, tag = "12")] - Cpfodiehfdl(super::Bgmnelolhij), + Lkidjpmehnf(super::Lokaebacagj), + /// offset: 16 + #[prost(message, tag = "15")] + Fniekbbkplo(super::Lpohmgmancb), + /// offset: 16 + #[prost(message, tag = "13")] + Dbblccmbdpj(super::Jbheekgppjl), + /// offset: 16 + #[prost(message, tag = "6")] + Obojofgeinf(super::Jfpkapgmebf), + /// offset: 16 + #[prost(message, tag = "2")] + Ealiambojlm(super::Hefjaamoldk), + /// offset: 16 + #[prost(message, tag = "1")] + Kndfejoiiek(super::Ikmhmgphiif), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cbjpmjgiike { - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub kndmeilhkej: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "7")] - pub gcncnpmpjce: ::core::option::Option, +pub struct Bddinonagbn { /// offset: 52 - #[prost(uint32, tag = "15")] - pub ahanjlehcga: u32, - /// offset: 32 - #[prost(message, repeated, tag = "12")] - pub biphngcadde: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "14")] + pub ojdobchgkmj: bool, /// offset: 56 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] pub unique_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub gclekilecbi: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "15")] + pub jdkbogfifdd: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(bool, tag = "8")] - pub akncldodlml: bool, + #[prost(uint32, tag = "4")] + pub oocaobicbab: u32, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub abdljhfbhfl: ::core::option::Option, /// offset: 60 #[prost(uint32, tag = "3")] - pub kampliigngb: u32, + pub season: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bhjalapdblh { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub foljiadhccm: u32, +pub struct Fjhimicjdpi { /// offset: 28 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] + pub mlnbmeikbgg: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] pub progress: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Opibbpchfii { - /// offset: 32 - #[prost(uint32, repeated, tag = "3")] - pub libgoffofip: ::prost::alloc::vec::Vec, +pub struct Ijdbiojkbbj { + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub imgmpoicepg: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(message, optional, tag = "2")] - pub ijdiaominlb: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub paehgnmobkh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oleidblbild { - /// offset: 24 - #[prost(enumeration = "Pgkahnkhnbm", tag = "6")] - pub oohodcddlhb: i32, +pub struct Oblflobpgmi { /// offset: 28 - #[prost(enumeration = "Dafjdhmghdc", tag = "11")] - pub ngmgngefkni: i32, + #[prost(enumeration = "Mookocdkdjd", tag = "14")] + pub kkghjhcmiop: i32, + /// offset: 24 + #[prost(enumeration = "Llicmhionjd", tag = "13")] + pub bglklnnmaol: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hhheokppead { - /// offset: 84 - #[prost(uint32, tag = "3")] - pub kgcldfkjccl: u32, - /// offset: 104 - #[prost(enumeration = "Dafjdhmghdc", tag = "6")] - pub ngmgngefkni: i32, - /// offset: 16 - #[prost(message, optional, tag = "1652")] - pub ocmgmehecbb: ::core::option::Option, - /// offset: 96 - #[prost(uint32, tag = "12")] - pub nhioiaecddl: u32, - /// offset: 80 - #[prost(uint32, tag = "4")] - pub hhjocgomeco: u32, - /// offset: 88 - #[prost(uint32, tag = "11")] - pub pfihghdioad: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "1920")] - pub lpempkfnnol: ::prost::alloc::vec::Vec, - /// offset: 116 - #[prost(uint32, tag = "2")] - pub nciadbakmae: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub jahjhadaogn: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(string, tag = "206")] - pub ejaolahnkpc: ::prost::alloc::string::String, +pub struct Djobmngnddm { /// offset: 100 - #[prost(uint32, tag = "13")] - pub cilgifgfbih: u32, - /// offset: 76 - #[prost(uint32, tag = "1")] - pub gnhkdamogbn: u32, - /// offset: 40 - #[prost(message, repeated, tag = "5")] - pub acefippnnpn: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, optional, tag = "1100")] - pub calcjmhakpf: ::core::option::Option, - /// offset: 108 - #[prost(uint32, tag = "9")] - pub ehknpgeaemh: u32, - /// offset: 92 - #[prost(uint32, tag = "10")] - pub hllijicgonn: u32, - /// offset: 120 - #[prost(uint32, tag = "14")] - pub dndfmejblho: u32, - /// offset: 112 - #[prost(uint32, tag = "7")] - pub mkfkgeahfbn: u32, - /// offset: 72 #[prost(uint32, tag = "8")] - pub effcpkkcnig: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mofdjedcoko { - /// offset: 40 - #[prost(map = "string, uint32", tag = "5")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, - /// offset: 60 - #[prost(uint32, tag = "3")] - pub mhkhaclnbpm: u32, - /// offset: 56 - #[prost(uint32, tag = "8")] - pub pos: u32, - /// offset: 52 - #[prost(uint32, tag = "4")] - pub unique_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub lbiblgggfig: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "11")] - pub immnngmmdai: ::std::collections::HashMap, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cghjefoneak { - /// offset: 32 - #[prost(uint32, tag = "12")] - pub unique_id: u32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub lbiblgggfig: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub pos: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nmkhcchhlja { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub bmifagdclco: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub pjlmjflfhaf: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub unique_id: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub pos: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ipfdckeeogl { - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub oilenhonpie: ::prost::alloc::vec::Vec, + pub cdhnfadlafn: u32, /// offset: 24 #[prost(uint32, repeated, tag = "15")] - pub jngfnjphmlj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Amepicmddfk { - /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub pihldojpbpl: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pmdpagcpefn { - /// offset: 36 + pub bchhncocmeo: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(message, optional, tag = "1263")] + pub gbcmpododmc: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "1481")] + pub oefkidlojbb: ::core::option::Option, + /// offset: 96 #[prost(uint32, tag = "11")] - pub gcpfibgpang: u32, - #[prost(oneof = "pmdpagcpefn::Emokphngbfa", tags = "1865, 758, 1811, 1579")] - pub emokphngbfa: ::core::option::Option, + pub jigjocallbm: u32, + /// offset: 72 + #[prost(uint32, tag = "14")] + pub pgnaeabpkgk: u32, + /// offset: 112 + #[prost(uint32, tag = "1")] + pub lbbojjiphdg: u32, + /// offset: 92 + #[prost(uint32, tag = "4")] + pub efkgmhefobg: u32, + /// offset: 56 + #[prost(message, repeated, tag = "5")] + pub omdagkokcha: ::prost::alloc::vec::Vec, + /// offset: 116 + #[prost(uint32, tag = "6")] + pub kejaelipjjb: u32, + /// offset: 84 + #[prost(uint32, tag = "13")] + pub jcncbnbpmca: u32, + /// offset: 76 + #[prost(uint32, tag = "10")] + pub bfbehjeiaph: u32, + /// offset: 32 + #[prost(string, tag = "150")] + pub iingahpeogk: ::prost::alloc::string::String, + /// offset: 120 + #[prost(uint32, tag = "12")] + pub fnelbbmapee: u32, + /// offset: 88 + #[prost(uint32, tag = "9")] + pub jkjbnfidcim: u32, + /// offset: 108 + #[prost(uint32, tag = "2")] + pub ialhhaoomcp: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "1158")] + pub cjlmbnehpbd: ::prost::alloc::vec::Vec, + /// offset: 104 + #[prost(enumeration = "Llicmhionjd", tag = "3")] + pub bglklnnmaol: i32, + /// offset: 80 + #[prost(uint32, tag = "7")] + pub iekjklegnao: u32, } -/// Nested message and enum types in `PMDPAGCPEFN`. -pub mod pmdpagcpefn { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ampggdeemel { + /// offset: 56 + #[prost(uint32, tag = "9")] + pub unique_id: u32, + /// offset: 60 + #[prost(uint32, tag = "1")] + pub pos: u32, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub bacchlmlbap: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(map = "string, uint32", tag = "13")] + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "2")] + pub oepklfcbcda: ::std::collections::HashMap, + /// offset: 52 + #[prost(uint32, tag = "14")] + pub ojhffmmafgg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Keajcpeofbe { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub unique_id: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub id: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub pos: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub bacchlmlbap: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ojehifaeloe { + /// offset: 40 + #[prost(uint32, tag = "3")] + pub gakcjcjbaop: u32, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub cphjhaojkpk: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub pos: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kdpjnmabjkp { + /// offset: 32 + #[prost(uint32, repeated, tag = "2")] + pub ibhnpaaohbl: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "13")] + pub jfiojlajepd: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jihdejcfdfh { + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub cafpmgnjpne: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ogimdhhmocl { + /// offset: 36 + #[prost(uint32, tag = "3")] + pub daecbnalfic: u32, + #[prost(oneof = "ogimdhhmocl::Idooakegpgd", tags = "780, 60, 98, 1606")] + pub idooakegpgd: ::core::option::Option, +} +/// Nested message and enum types in `OGIMDHHMOCL`. +pub mod ogimdhhmocl { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Emokphngbfa { - /// offset: 16 - #[prost(uint32, tag = "1865")] - Idhfmbgpaln(u32), - /// offset: 16 - #[prost(message, tag = "758")] - Iibbgjfchdo(super::Ipfdckeeogl), - /// offset: 16 - #[prost(uint32, tag = "1811")] - Mankcgaiipb(u32), - /// offset: 16 - #[prost(message, tag = "1579")] - Oadkoemmggj(super::Amepicmddfk), + pub enum Idooakegpgd { + /// offset: 24 + #[prost(uint32, tag = "780")] + Mdddbcbiflj(u32), + /// offset: 24 + #[prost(message, tag = "60")] + Fgejcnnefmh(super::Kdpjnmabjkp), + /// offset: 24 + #[prost(uint32, tag = "98")] + Abnhfmmbbhm(u32), + /// offset: 24 + #[prost(message, tag = "1606")] + Bcnpeliekbh(super::Jihdejcfdfh), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nmbapnfidei { +pub struct Medpendhned { /// offset: 32 - #[prost(uint32, tag = "2")] - pub jhnkmohlbpj: u32, - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub japmjmonpia: ::core::option::Option, - /// offset: 36 - #[prost(bool, tag = "8")] - pub mcjolajphoc: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fbnhedkdkfa { - /// offset: 44 - #[prost(uint32, tag = "15")] - pub jhnkmohlbpj: u32, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub hnjgpkabcca: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub oilenhonpie: ::prost::alloc::vec::Vec, - /// offset: 40 #[prost(uint32, tag = "1")] - pub onofhghjogp: u32, + pub lodfbklaaag: u32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub amfkmjckdgf: ::core::option::Option, + /// offset: 36 + #[prost(bool, tag = "7")] + pub cifggpkkppi: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bgmnelolhij { +pub struct Mookehjlnnf { + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub jfiojlajepd: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub lodfbklaaag: u32, + /// offset: 32 + #[prost(message, repeated, tag = "2")] + pub bianianplhj: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub bnifgplolon: u32, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub dpebppolpii: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ikmhmgphiif { /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub pbldmkiffno: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub pdemmpcifen: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(message, repeated, tag = "9")] - pub johmobdipjd: ::prost::alloc::vec::Vec, + pub bedjaofbokb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "2")] + pub nhpncdgfldk: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Elpfjgfnoog { /// offset: 16 #[prost(message, repeated, tag = "13")] - pub pdgclinnebm: ::prost::alloc::vec::Vec, + pub bedjaofbokb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bncclpfkian { +pub struct Hefjaamoldk { /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub pbldmkiffno: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iildmflijjk { - /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "10")] + pub khhopfjphec: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cfncileamki { +pub struct Bdacfgcafii { /// offset: 28 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "14")] pub num: u32, /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cancjnhihol { - /// offset: 36 - #[prost(bool, tag = "12")] - pub olenalddbge: bool, +pub struct Ddhjiiephpa { /// offset: 40 - #[prost(uint32, tag = "4")] - pub jniiboloemp: u32, - /// offset: 24 - #[prost(map = "uint32, uint32", tag = "9")] - pub immnngmmdai: ::std::collections::HashMap, - /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(bool, tag = "4")] + pub okgfcfkimjm: bool, + /// offset: 36 + #[prost(uint32, tag = "1")] pub unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ckjhjmemhbm { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub gmbhfoclice: u32, /// offset: 24 - #[prost(uint32, tag = "13")] - pub jniiboloemp: u32, + #[prost(map = "uint32, uint32", tag = "14")] + pub oepklfcbcda: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kdgdhppimpm { +pub struct Iccajaodnik { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub gmbhfoclice: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Blfpdnjamjk { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub nlkmnninagg: u32, /// offset: 28 - #[prost(uint32, tag = "15")] - pub ifeelncpbkf: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub libkldalhjp: u32, + #[prost(uint32, tag = "14")] + pub bklmihhlfog: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mmldaefdekm { - #[prost(oneof = "mmldaefdekm::Khmpjeknjni", tags = "7, 8")] - pub khmpjeknjni: ::core::option::Option, +pub struct Ecgffnlapko { + #[prost(oneof = "ecgffnlapko::Oopnnlibkhg", tags = "7, 2")] + pub oopnnlibkhg: ::core::option::Option, } -/// Nested message and enum types in `MMLDAEFDEKM`. -pub mod mmldaefdekm { +/// Nested message and enum types in `ECGFFNLAPKO`. +pub mod ecgffnlapko { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Khmpjeknjni { + pub enum Oopnnlibkhg { /// offset: 24 #[prost(message, tag = "7")] - Nbdgddafdkg(super::Ckjhjmemhbm), + Dccodohidnb(super::Iccajaodnik), /// offset: 24 - #[prost(message, tag = "8")] - Fmfacbkdeda(super::Kdgdhppimpm), + #[prost(message, tag = "2")] + Fhiollabfba(super::Blfpdnjamjk), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kgcjcefnefp { - /// offset: 32 +pub struct Ihihabjildg { + /// offset: 40 #[prost(message, repeated, tag = "12")] - pub cagncjbkkde: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub pdgclinnebm: ::prost::alloc::vec::Vec, + pub bkihcaalbnb: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub aoefihbbage: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub nhpncdgfldk: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "4")] + pub enbmdcenfbg: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ojmnkhbamnh { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub libkldalhjp: u32, +pub struct Leodjhbhgbo { /// offset: 28 - #[prost(uint32, tag = "10")] - pub mhkhaclnbpm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lhbijdpbogl { + #[prost(uint32, tag = "11")] + pub bklmihhlfog: u32, /// offset: 24 #[prost(uint32, tag = "4")] - pub nkbidgajnke: u32, + pub ojhffmmafgg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Boihogjgkel { +pub struct Jagehfoahml { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub efhmdppppai: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ekfgjmhjkom { /// offset: 40 - #[prost(bool, tag = "15")] - pub nonombaafgm: bool, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub khckfbhcfpl: u32, - #[prost(oneof = "boihogjgkel::Emkjaappbgf", tags = "423, 1637")] - pub emkjaappbgf: ::core::option::Option, -} -/// Nested message and enum types in `BOIHOGJGKEL`. -pub mod boihogjgkel { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Emkjaappbgf { - /// offset: 24 - #[prost(message, tag = "423")] - Fmfacbkdeda(super::Ojmnkhbamnh), - /// offset: 24 - #[prost(message, tag = "1637")] - Bodfoggnaff(super::Lhbijdpbogl), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eapbbieieih { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub dmokdoiinjf: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub cdfgkgldklg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jecnmkhmjkd { - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub ogfnnlpaegk: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jkidimikhgf { - /// offset: 48 - #[prost(uint32, tag = "6")] - pub nnkgmfdmebi: u32, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub bdockgkifpj: u32, - /// offset: 32 - #[prost(message, repeated, tag = "8")] - pub ppibbkhlmjc: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub hlbbcoeegnf: ::core::option::Option, - /// offset: 44 - #[prost(bool, tag = "14")] - pub mpmncakcpho: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cnjnilbghom { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub ceieidcpbdf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dimlbjhhaop { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub afddeocomhm: u32, - /// offset: 16 - #[prost(map = "string, uint32", tag = "12")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aajoflfjlkl { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub monster_id: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub ceieidcpbdf: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub mhkhaclnbpm: u32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub mhbihghnhcf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mpgnmmpmhpj { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub chbjkkmiofd: u32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub fijnjgfabjd: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fmfogikhinl { - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub monster_wave_list: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub mnfpgocecom: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub fjjpiepcace: u32, - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub oghiockkpmk: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hgjfbjfcnab { - /// offset: 36 - #[prost(uint32, tag = "9")] - pub dpdlonjdebe: u32, - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub kncjakainfh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub encbhjipdpi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Obeeloegiml { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub libkldalhjp: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub ffcogpomcpg: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jliiopbijmi { + #[prost(uint32, tag = "4")] + pub ifpnaeakclm: u32, /// offset: 32 #[prost(bool, tag = "7")] - pub ajcgpfpjomg: bool, - #[prost(oneof = "jliiopbijmi::Jklfnkhnbil", tags = "1914")] - pub jklfnkhnbil: ::core::option::Option, + pub bgflambihpm: bool, + #[prost(oneof = "ekfgjmhjkom::Dgobphkcneb", tags = "749, 1959")] + pub dgobphkcneb: ::core::option::Option, } -/// Nested message and enum types in `JLIIOPBIJMI`. -pub mod jliiopbijmi { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Jklfnkhnbil { - /// offset: 24 - #[prost(message, tag = "1914")] - Limeifpeabm(super::Hgjfbjfcnab), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fpgnfjlkjac { - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub fipoencfakh: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nadmhkmdinm { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub ceieidcpbdf: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub cedgehhjnjo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aabhbdjncgg { - /// offset: 36 - #[prost(uint32, tag = "10")] - pub kiekjeffphk: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub cepdpamdaib: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub lbmncagokif: u32, - #[prost(oneof = "aabhbdjncgg::Bakmgkhmclf", tags = "823")] - pub bakmgkhmclf: ::core::option::Option, -} -/// Nested message and enum types in `AABHBDJNCGG`. -pub mod aabhbdjncgg { +/// Nested message and enum types in `EKFGJMHJKOM`. +pub mod ekfgjmhjkom { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Bakmgkhmclf { + pub enum Dgobphkcneb { /// offset: 24 - #[prost(message, tag = "823")] - Lbljplbpibi(super::Nadmhkmdinm), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Achjgeekcah { - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub iifafncmkgo: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "2")] - pub flbnpabokkp: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cckcfeopmcn { - /// offset: 32 - #[prost(message, optional, tag = "1")] - pub dilhfehbgdn: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub inekefnpjcl: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cclmiaehmgi { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub kiekjeffphk: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub lbmncagokif: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aiojjdgfpej { - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub flokpiicohn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ijdgbcimkkk { - /// offset: 84 - #[prost(uint32, tag = "13")] - pub lbmncagokif: u32, - /// offset: 64 - #[prost(message, optional, tag = "3")] - pub cgaijcclkbh: ::core::option::Option, - /// offset: 72 - #[prost(message, optional, tag = "15")] - pub ikkcgefcann: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub boss_info: ::core::option::Option, - /// offset: 48 - #[prost(uint32, repeated, tag = "1")] - pub jflfiajnmia: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, optional, tag = "2")] - pub fnkjljdfild: ::core::option::Option, - /// offset: 40 - #[prost(message, repeated, tag = "11")] - pub ooonchpijkp: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(uint32, tag = "5")] - pub kiekjeffphk: u32, - /// offset: 80 - #[prost(uint32, tag = "4")] - pub jbeaoafmama: u32, - /// offset: 32 - #[prost(message, repeated, tag = "12")] - pub inmmpdekgbo: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mdelojbkabh { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub kegeephaocl: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Paojifhgaej { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub dffgpgagkep: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Niheonjbecd { - /// offset: 24 - #[prost(double, repeated, tag = "5")] - pub iglpdkafhhc: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub jdakkofdgep: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Focmikklopf { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub hcjnedecblk: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lealfpladje { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub einlfnbgdnj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dafmnhmiema { - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub fmdkhadmcoc: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "1")] - pub unique_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub hcjnedecblk: ::core::option::Option, - #[prost( - oneof = "dafmnhmiema::Pfemoimkgca", - tags = "1422, 1406, 1207, 1476, 1813, 263, 905, 1683, 698, 792, 1734, 248, 737, 860, 1347, 991" - )] - pub pfemoimkgca: ::core::option::Option, -} -/// Nested message and enum types in `DAFMNHMIEMA`. -pub mod dafmnhmiema { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Pfemoimkgca { - /// offset: 40 - #[prost(message, tag = "1422")] - Pdnnkhhcljo(super::Jgmihlgpicm), - /// offset: 40 - #[prost(message, tag = "1406")] - Hdfbicindpe(super::Jdbkobknieg), - /// offset: 40 - #[prost(message, tag = "1207")] - Fomaobcmmnj(super::Mjalolgflfo), - /// offset: 40 - #[prost(message, tag = "1476")] - Cnnnkllpddo(super::Ndklhcljpgi), - /// offset: 40 - #[prost(message, tag = "1813")] - Aiflejmbcgj(super::Oigofmcappg), - /// offset: 40 - #[prost(message, tag = "263")] - Mbiddkedhnm(super::Gacoobpeiak), - /// offset: 40 - #[prost(message, tag = "905")] - Hlekkgboool(super::Dmajkgpfjmk), - /// offset: 40 - #[prost(message, tag = "1683")] - Aialgoomaol(super::Pkplnmodnpb), - /// offset: 40 - #[prost(message, tag = "698")] - Aphokjcfaop(super::Nclmfeebgif), - /// offset: 40 - #[prost(message, tag = "792")] - Cipdgelplkn(super::Joeccjkcncj), - /// offset: 40 - #[prost(message, tag = "1734")] - Cdjciikjjpa(super::Nkfcpoakfkd), - /// offset: 40 - #[prost(message, tag = "248")] - Diplpfadnmk(super::Cajemkaeiih), - /// offset: 40 - #[prost(message, tag = "737")] - Oakdmcdmdal(super::Hpngkjbjjnn), - /// offset: 40 - #[prost(message, tag = "860")] - Dckjnoagoch(super::Khbjfgbfclc), - /// offset: 40 - #[prost(message, tag = "1347")] - Jcdhfkocdol(super::Pdmbjjofilk), - /// offset: 40 - #[prost(message, tag = "991")] - Gcciejcippg(super::Bgnbpkjglcl), + #[prost(message, tag = "749")] + Fhiollabfba(super::Leodjhbhgbo), + /// offset: 24 + #[prost(message, tag = "1959")] + Bdhdhofodfl(super::Jagehfoahml), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jgmihlgpicm { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub lbmncagokif: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub kiekjeffphk: u32, +pub struct Dnpechideie { /// offset: 24 #[prost(uint32, tag = "9")] - pub cepdpamdaib: u32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub bkmdgkcmgpf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jdbkobknieg { - /// offset: 24 - #[prost(int64, tag = "6")] - pub coifhfpegph: i64, - /// offset: 32 - #[prost(int64, tag = "13")] - pub nndofbncadi: i64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mjalolgflfo { - /// offset: 32 - #[prost(int64, tag = "14")] - pub coifhfpegph: i64, - /// offset: 28 - #[prost(uint32, tag = "8")] - pub ipcdcehipgm: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub hpkdafhbebk: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ndklhcljpgi { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub cbgiolfilco: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub nihhejliced: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oigofmcappg { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub kjjeccgaaad: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gacoobpeiak { - /// offset: 28 - #[prost(uint32, tag = "6")] - pub fempmcdngpl: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub pecajfhljdi: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub cepdpamdaib: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dmajkgpfjmk { - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub naikcgjakeo: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pkplnmodnpb { - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub naikcgjakeo: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nclmfeebgif { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub aeifabkjipi: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub hmlncddjgag: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Joeccjkcncj {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nkfcpoakfkd { - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "2")] - pub gejfkghokba: ::std::collections::HashMap, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cajemkaeiih { - /// offset: 32 - #[prost(bool, tag = "8")] - pub ojelakggimf: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub dlabdnpihff: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hpngkjbjjnn {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Khbjfgbfclc {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pdmbjjofilk {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bgnbpkjglcl { + pub iafoahocpni: u32, /// offset: 28 #[prost(uint32, tag = "1")] - pub fpceieihiii: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub jhnkmohlbpj: u32, + pub nolnfkbmbkh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Blmnhoeempd { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub hbekefkjaga: u32, - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub mebjclenpio: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(map = "string, uint32", tag = "13")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, - /// offset: 44 - #[prost(bool, tag = "11")] - pub eglclmjbdfp: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nibedibnpik { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub ddbgefinoof: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dcblgeahoeg { - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub ddbgefinoof: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gdfmncoepcp { - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub mfkbgcjjhhb: ::prost::alloc::vec::Vec, -} -/// Obf: KCODPFMFBLP -#[derive(proto_derive::CmdID)] -#[cmdid(8511)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightGetDataCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub ahanjlehcga: u32, -} -/// Obf: FMCJKPDKGOC -#[derive(proto_derive::CmdID)] -#[cmdid(8445)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightGetDataScRsp { - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub operating_system: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub hoaeankohdn: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oaapdhafbjl { - /// offset: 28 - #[prost(int32, tag = "1")] - pub bmalpkekbel: i32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub item_id: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub num: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gehkkfiiobe { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub cagncjbkkde: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub aoefihbbage: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub mlljblmndfa: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "8")] - pub pdgclinnebm: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cgfbagafmog { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub nolicmebngn: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub exp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Blcjgggckil { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub kgcldfkjccl: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub pfihghdioad: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iplclclpegl { - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub hlbbcoeegnf: ::core::option::Option, - /// offset: 48 - #[prost(bool, tag = "8")] - pub mpmncakcpho: bool, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub ppibbkhlmjc: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub bdockgkifpj: u32, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub nnkgmfdmebi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Joaaophpmhk { - /// offset: 24 - #[prost(map = "string, uint32", tag = "10")] - pub kfokaikgokf: ::std::collections::HashMap<::prost::alloc::string::String, u32>, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub afddeocomhm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gngadhlllka { - /// offset: 36 - #[prost(uint32, tag = "3")] - pub kiekjeffphk: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub lbmncagokif: u32, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub fnkjljdfild: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Manaanbincb { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub unique_id: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub kegeephaocl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oknaelmpkdf { - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub jahjhadaogn: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "2")] - pub apihkjhbdli: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cfbcjhiamnn { - /// offset: 40 - #[prost(uint32, tag = "13")] - pub nmjemhamihd: u32, - /// offset: 44 - #[prost(enumeration = "Hjldegakhhb", tag = "14")] - pub source: i32, - /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub ffcogpomcpg: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "6")] - pub okhfaejfgdj: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "9")] - pub kolkidopmab: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cgleipapnkd { - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub acefippnnpn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kbolmkbfbjj { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub dpdlonjdebe: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Knpkpnelagf { - #[prost(oneof = "knpkpnelagf::Pphbgcabelf", tags = "10, 8, 2")] - pub pphbgcabelf: ::core::option::Option, -} -/// Nested message and enum types in `KNPKPNELAGF`. -pub mod knpkpnelagf { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Pphbgcabelf { - /// offset: 16 - #[prost(uint32, tag = "10")] - Hagmamjgdcb(u32), - /// offset: 16 - #[prost(message, tag = "8")] - Ilndfepfbih(super::Bhjalapdblh), - /// offset: 16 - #[prost(uint32, tag = "2")] - Pfgdngpfjdh(u32), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oeponanpglo { - #[prost( - oneof = "oeponanpglo::Pphbgcabelf", - tags = "1550, 1277, 799, 905, 185, 511, 1524, 1082, 1338, 250, 1259, 975, 1809, 1390, 1862, 459, 241, 1722, 1697, 1629, 1196, 794, 1782, 1898, 390, 756, 1326, 579, 2025, 1683, 1726, 181, 1582, 261, 804, 139, 556, 1973, 755, 91, 708, 1656, 317" - )] - pub pphbgcabelf: ::core::option::Option, -} -/// Nested message and enum types in `OEPONANPGLO`. -pub mod oeponanpglo { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Pphbgcabelf { - /// offset: 24 - #[prost(message, tag = "1550")] - Cgijfmdhllh(super::Mofdjedcoko), - /// offset: 24 - #[prost(message, tag = "1277")] - Oghdlceamac(super::Mofdjedcoko), - /// offset: 24 - #[prost(uint32, tag = "799")] - Aginaojajgl(u32), - /// offset: 24 - #[prost(message, tag = "905")] - Pmlocbhiddl(super::Gehkkfiiobe), - /// offset: 24 - #[prost(message, tag = "185")] - Gknadiiojnd(super::Gehkkfiiobe), - /// offset: 24 - #[prost(message, tag = "511")] - Pplhdfifogb(super::Gehkkfiiobe), - /// offset: 24 - #[prost(uint32, tag = "1524")] - ItemValue(u32), - /// offset: 24 - #[prost(message, tag = "1082")] - Eodgcnafiac(super::Cgfbagafmog), - /// offset: 24 - #[prost(message, tag = "1338")] - Kgcldfkjccl(super::Blcjgggckil), - /// offset: 24 - #[prost(uint32, tag = "250")] - Gjelghkiebb(u32), - /// offset: 24 - #[prost(message, tag = "1259")] - Nbjicdajdgf(super::Iplclclpegl), - /// offset: 24 - #[prost(message, tag = "975")] - Kndmeilhkej(super::Ggpmkhlhknb), - /// offset: 24 - #[prost(message, tag = "1809")] - Hfgiindbcoe(super::Joaaophpmhk), - /// offset: 24 - #[prost(message, tag = "1390")] - Ladfkcdbjnd(super::Gngadhlllka), - /// offset: 24 - #[prost(message, tag = "1862")] - Fkjioliflkc(super::Manaanbincb), - /// offset: 24 - #[prost(message, tag = "459")] - Alafjilcomo(super::Aabhbdjncgg), - /// offset: 24 - #[prost(message, tag = "241")] - Mpccpgjfbdh(super::Dcblgeahoeg), - /// offset: 24 - #[prost(uint32, tag = "1722")] - Cadadfncnmo(u32), - /// offset: 24 - #[prost(uint32, tag = "1697")] - Eepcjkmbpjo(u32), - /// offset: 24 - #[prost(uint32, tag = "1629")] - Ehknpgeaemh(u32), - /// offset: 24 - #[prost(uint32, tag = "1196")] - Cilgifgfbih(u32), - /// offset: 24 - #[prost(message, tag = "794")] - Leahfmpgabj(super::Nmbapnfidei), - /// offset: 24 - #[prost(enumeration = "super::Dafjdhmghdc", tag = "1782")] - Ngmgngefkni(i32), - /// offset: 24 - #[prost(message, tag = "1898")] - Ganfibdmilh(super::Oknaelmpkdf), - /// offset: 24 - #[prost(uint32, tag = "390")] - Gnhkdamogbn(u32), - /// offset: 24 - #[prost(uint32, tag = "756")] - Nhioiaecddl(u32), - /// offset: 24 - #[prost(uint32, tag = "1326")] - Dndfmejblho(u32), - /// offset: 24 - #[prost(message, tag = "579")] - Dilhfehbgdn(super::Achjgeekcah), - /// offset: 24 - #[prost(message, tag = "2025")] - Gaadmklllmg(super::Kbolmkbfbjj), - /// offset: 24 - #[prost(message, tag = "1683")] - Ioocmieipgd(super::Cghjefoneak), - /// offset: 24 - #[prost(message, tag = "1726")] - Nelljajjghp(super::Cghjefoneak), - /// offset: 24 - #[prost(uint32, tag = "181")] - Oloklnfnhlm(u32), - /// offset: 24 - #[prost(message, tag = "1582")] - Gnnhcdmjhfn(super::Nmkhcchhlja), - /// offset: 24 - #[prost(message, tag = "261")] - Fipjeemclbb(super::Nmkhcchhlja), - /// offset: 24 - #[prost(uint32, tag = "804")] - Klpeeepekem(u32), - /// offset: 24 - #[prost(message, tag = "139")] - Hjbacjkmmam(super::Nibedibnpik), - /// offset: 24 - #[prost(message, tag = "556")] - Ahphkchhico(super::Cgleipapnkd), - /// offset: 24 - #[prost(message, tag = "1973")] - Dbbnodeindm(super::Dafmnhmiema), - /// offset: 24 - #[prost(uint32, tag = "755")] - Cgfamhgaica(u32), - /// offset: 24 - #[prost(uint32, tag = "91")] - Kpnbfheddof(u32), - /// offset: 24 - #[prost(message, tag = "708")] - Pomelemopak(super::Knpkpnelagf), - /// offset: 24 - #[prost(message, tag = "1656")] - Fmnkmcgamjf(super::Oleidblbild), - /// offset: 24 - #[prost(uint32, tag = "317")] - Ikegndeipfg(u32), - } -} -/// Obf: ACDKIIMCNGM -#[derive(proto_derive::CmdID)] -#[cmdid(8412)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightDataScNotify { - /// offset: 32 - #[prost(uint32, repeated, tag = "14")] - pub onmdgnhmabo: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub fflpklldhlm: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(enumeration = "Clghhjdadef", tag = "10")] - pub fbgmagfbbla: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gppddfghhgn { - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub fflpklldhlm: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(enumeration = "Clghhjdadef", tag = "1")] - pub fbgmagfbbla: i32, - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub onmdgnhmabo: ::prost::alloc::vec::Vec, -} -/// Obf: BGDNPEFEJJD -#[derive(proto_derive::CmdID)] -#[cmdid(8560)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightSyncUpdateResultScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub cklmjeenicl: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kidgkabhijc { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub pos: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub unique_id: u32, -} -/// Obf: HAFBHKIOFDI -#[derive(proto_derive::CmdID)] -#[cmdid(8518)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdatePosCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub khhgfadibkf: ::prost::alloc::vec::Vec, -} -/// Obf: PDIFBPJOAPG -#[derive(proto_derive::CmdID)] -#[cmdid(8558)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdatePosScRsp { +pub struct Mhljncjbhfo { /// offset: 24 #[prost(message, repeated, tag = "13")] - pub khhgfadibkf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, + pub dnheenhcolc: ::prost::alloc::vec::Vec, } -/// Obf: OHJPMALENLC #[derive(proto_derive::CmdID)] -#[cmdid(8469)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightRecycleRoleCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub unique_id: u32, -} -/// Obf: ONOHNEGDHAN -#[derive(proto_derive::CmdID)] -#[cmdid(8510)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightRecycleRoleScRsp { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: ODCKNBGCDIK -#[derive(proto_derive::CmdID)] -#[cmdid(8562)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightEquipDressCsReq { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub ljmcdalgiin: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub ddkjjcbogch: u32, - /// offset: 32 - #[prost(enumeration = "Odihphkjlfp", tag = "14")] - pub nhkgogcnbbj: i32, -} -/// Obf: BEOFGKJGKEF -#[derive(proto_derive::CmdID)] -#[cmdid(8596)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightEquipDressScRsp { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: IBJNPJFMKDP -#[derive(proto_derive::CmdID)] -#[cmdid(8411)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightEquipCraftCsReq { - /// offset: 36 - #[prost(uint32, tag = "14")] - pub cbkoaiggoff: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub bdeihnajihg: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub jfccpkdgopi: ::prost::alloc::vec::Vec, +pub struct Lokaebacagj { /// offset: 40 - #[prost(enumeration = "Ehfpjajohlj", tag = "7")] - pub source: i32, -} -/// Obf: KJFEKMELCPF -#[derive(proto_derive::CmdID)] -#[cmdid(8564)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightEquipCraftScRsp { + #[prost(bool, tag = "6")] + pub phgldmgbibl: bool, + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub jhjbcgfkknj: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "3")] + pub kifgicehhcd: u32, /// offset: 24 - #[prost(uint32, tag = "10")] - pub retcode: u32, + #[prost(message, optional, tag = "2")] + pub gpalhmnijeb: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "13")] + pub klpmcheinmg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Opcbhkooaoe { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub ljmcdalgiin: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mkcnjfhooag { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub ljmcdalgiin: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub ddkjjcbogch: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pfbjigneopk { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub ddkjjcbogch: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Egboknnbkgn { +pub struct Aahkahpohda { /// offset: 24 #[prost(uint32, tag = "2")] - pub ljmcdalgiin: u32, + pub kblbiaahmcn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gecmaafiaon { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub mepjhoamnnn: u32, + /// offset: 16 + #[prost(map = "string, uint32", tag = "3")] + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bfkklmcgegk { +pub struct Japdfakfjmo { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub kblbiaahmcn: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub monster_id: u32, /// offset: 24 - #[prost(uint32, tag = "5")] - pub ljmcdalgiin: u32, + #[prost(uint32, tag = "6")] + pub ojhffmmafgg: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub negfbcjcobc: u32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fjdgkcpahml { - #[prost(oneof = "fjdgkcpahml::Emokphngbfa", tags = "1635, 1794, 843, 454, 1715")] - pub emokphngbfa: ::core::option::Option, +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jfjmjjijakf { + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub eppalcpbadf: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub lgjjkcikchg: u32, } -/// Nested message and enum types in `FJDGKCPAHML`. -pub mod fjdgkcpahml { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Encgohnmcjh { + /// offset: 40 + #[prost(uint32, tag = "11")] + pub mmgbpbmfbia: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub ghkgbefjhjc: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub kddjimefggj: u32, + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub monster_wave_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub ffehdbahdjd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hmkabbolhff { + /// offset: 36 + #[prost(uint32, tag = "1")] + pub oekpgghfnck: u32, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub moghbclnhdh: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub ooknimciabg: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ciljcphpjod { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub bklmihhlfog: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub cmdjknkahfn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ljhdjhkihgk { + /// offset: 36 + #[prost(bool, tag = "7")] + pub oflnpfmhoop: bool, + #[prost(oneof = "ljhdjhkihgk::Glaoadjnhpg", tags = "554")] + pub glaoadjnhpg: ::core::option::Option, +} +/// Nested message and enum types in `LJHDJHKIHGK`. +pub mod ljhdjhkihgk { #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Emokphngbfa { - /// offset: 24 - #[prost(message, tag = "1635")] - Ggkilihiocc(super::Opcbhkooaoe), - /// offset: 24 - #[prost(message, tag = "1794")] - Fcpemegblpe(super::Mkcnjfhooag), - /// offset: 24 - #[prost(message, tag = "843")] - Elnhfhdgjjc(super::Pfbjigneopk), - /// offset: 24 - #[prost(message, tag = "454")] - Cinjjpbeohk(super::Egboknnbkgn), - /// offset: 24 - #[prost(message, tag = "1715")] - Jocnifaafdp(super::Bfkklmcgegk), + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Glaoadjnhpg { + /// offset: 16 + #[prost(message, tag = "554")] + Jhnopohoemj(super::Hmkabbolhff), } } -/// Obf: BFFCLLJJMDM #[derive(proto_derive::CmdID)] -#[cmdid(8404)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUseConsumableCsReq { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hohfdkcbakg { /// offset: 24 - #[prost(message, optional, tag = "9")] - pub display_value: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub item_id: u32, + #[prost(message, repeated, tag = "15")] + pub plodacaiolp: ::prost::alloc::vec::Vec, } -/// Obf: HJEICPOBAKK #[derive(proto_derive::CmdID)] -#[cmdid(8523)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUseConsumableScRsp { +pub struct Eokaoajejch { /// offset: 24 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: PJCEBDHHBDC -#[derive(proto_derive::CmdID)] -#[cmdid(8552)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUseForgeCsReq { + #[prost(uint32, tag = "2")] + pub kblbiaahmcn: u32, /// offset: 28 + #[prost(uint32, tag = "1")] + pub haicdliadml: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fjogloimljn { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub section_id: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub cmlelldmboe: u32, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub caappfmofgk: u32, + #[prost(oneof = "fjogloimljn::Dpiccdjncbn", tags = "2044")] + pub dpiccdjncbn: ::core::option::Option, +} +/// Nested message and enum types in `FJOGLOIMLJN`. +pub mod fjogloimljn { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Dpiccdjncbn { + /// offset: 16 + #[prost(message, tag = "2044")] + Gafemegdafg(super::Eokaoajejch), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gkdlhgbbbac { + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub mbadiiapnjm: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub cjjkhnmifdn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mbemnbgbdml { + /// offset: 32 + #[prost(message, repeated, tag = "15")] + pub fnbdllhplak: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub kmlgcckbdia: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jbnkbhgbjkc { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub cmlelldmboe: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub section_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ddbnbpgmoid { + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub aclimkfjkjc: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lpohmgmancb { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub naaejmdhigi: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub boss_info: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "4")] + pub ccpdbbkpmin: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, repeated, tag = "11")] + pub pggcanillmd: ::prost::alloc::vec::Vec, + /// offset: 80 #[prost(uint32, tag = "5")] + pub section_id: u32, + /// offset: 56 + #[prost(message, optional, tag = "2")] + pub bhiglfbkhck: ::core::option::Option, + /// offset: 64 + #[prost(message, optional, tag = "1")] + pub cbgcnnikfnf: ::core::option::Option, + /// offset: 40 + #[prost(message, repeated, tag = "15")] + pub anngfejaanl: ::prost::alloc::vec::Vec, + /// offset: 88 + #[prost(uint32, tag = "13")] + pub cmlelldmboe: u32, + /// offset: 84 + #[prost(uint32, tag = "6")] + pub lahbhhemmhg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kkjjbemmaco { + /// offset: 28 + #[prost(uint32, tag = "3")] pub unique_id: u32, /// offset: 24 - #[prost(uint32, tag = "9")] - pub oimbggcbmpm: u32, + #[prost(uint32, tag = "6")] + pub omfaiookmeh: u32, } -/// Obf: JJFBPJPHEBM #[derive(proto_derive::CmdID)] -#[cmdid(8482)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUseForgeScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: FMIPKGNJBLJ -#[derive(proto_derive::CmdID)] -#[cmdid(8508)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUseOrbCsReq { - /// offset: 32 - #[prost(bool, tag = "12")] - pub is_get_all: bool, +pub struct Jbheekgppjl { /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub cghebngpmjd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] + pub onoddmbmnjf: ::prost::alloc::vec::Vec, } -/// Obf: NGKECNMINMF +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gjjikkphflh { + /// offset: 24 + #[prost(double, repeated, tag = "9")] + pub bcehfioickf: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub mifghmmdkmd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ppohbcaphoc { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub mlpiahjbpkd: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aagmdfofhmp { + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub bgocckmgdap: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jkaimhfmpph { + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub mlpiahjbpkd: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "10")] + pub unique_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub cnlipfjgcec: ::prost::alloc::vec::Vec, + #[prost( + oneof = "jkaimhfmpph::Majalojogbh", + tags = "1056, 708, 1615, 459, 111, 908, 1864, 1668, 859, 302, 1030, 1319, 1654, 373, 1776, 210, 991, 1697" + )] + pub majalojogbh: ::core::option::Option, +} +/// Nested message and enum types in `JKAIMHFMPPH`. +pub mod jkaimhfmpph { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Majalojogbh { + /// offset: 40 + #[prost(message, tag = "1056")] + Kdbcigojkee(super::Lgdadjhjoae), + /// offset: 40 + #[prost(message, tag = "708")] + Cebjipmgmci(super::Eifcbodpaca), + /// offset: 40 + #[prost(message, tag = "1615")] + Pcbcephjade(super::Gmaegjbiadb), + /// offset: 40 + #[prost(message, tag = "459")] + Gmhngllljlp(super::Fcbhahiodoc), + /// offset: 40 + #[prost(message, tag = "111")] + Aljkfomddlb(super::Bojmaficjbf), + /// offset: 40 + #[prost(message, tag = "908")] + Hjinlofohbc(super::Plhoikfdfgf), + /// offset: 40 + #[prost(message, tag = "1864")] + Jacjkmfmklj(super::Jpbjbfpgjfe), + /// offset: 40 + #[prost(message, tag = "1668")] + Jnockelopfa(super::Oelinbccfcl), + /// offset: 40 + #[prost(message, tag = "859")] + Pbcmdgdiegd(super::Pekmcpmlcfb), + /// offset: 40 + #[prost(message, tag = "302")] + Jfkglfikmjl(super::Moeenbegfpj), + /// offset: 40 + #[prost(message, tag = "1030")] + Denfdkcmfmf(super::Bmiikkljbkf), + /// offset: 40 + #[prost(message, tag = "1319")] + Ncakloahmnb(super::Ipkpngpakop), + /// offset: 40 + #[prost(message, tag = "1654")] + Oadbjckbakn(super::Eggijcomomj), + /// offset: 40 + #[prost(message, tag = "373")] + Deceflekgnf(super::Ahpkkapjcpl), + /// offset: 40 + #[prost(message, tag = "1776")] + Bjaiangppbd(super::Igcgldbkaji), + /// offset: 40 + #[prost(message, tag = "210")] + Jhaokgdpain(super::Elmjbgnnmec), + /// offset: 40 + #[prost(message, tag = "991")] + Nipfklbpemp(super::Dkeedhojfff), + /// offset: 40 + #[prost(message, tag = "1697")] + Gmmhlbdomkk(super::Fbkncafcnac), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lgdadjhjoae { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub caappfmofgk: u32, + /// offset: 36 + #[prost(uint32, tag = "3")] + pub ojobffppojj: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub section_id: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub cmlelldmboe: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eifcbodpaca { + /// offset: 24 + #[prost(int64, tag = "3")] + pub ljdjckmgddb: i64, + /// offset: 32 + #[prost(int64, tag = "2")] + pub dkhoeiijhip: i64, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gmaegjbiadb { + /// offset: 24 + #[prost(int64, tag = "7")] + pub dkhoeiijhip: i64, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub jdnioojbjpo: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub ohhdliehemh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fcbhahiodoc { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub hagoedbcmbj: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub cfgbmknmogh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bojmaficjbf { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub afpmigpnjdb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Plhoikfdfgf { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub flbnknagpgl: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub jopmeahibhk: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub caappfmofgk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jpbjbfpgjfe { + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub ffoaifkibdo: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oelinbccfcl { + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub ffoaifkibdo: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pekmcpmlcfb { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub ljhgchlhjjg: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub cmlelldmboe: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub hbnkocpkmfg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Moeenbegfpj {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bmiikkljbkf { + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "4")] + pub dgflgojdlne: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ipkpngpakop { + /// offset: 32 + #[prost(bool, tag = "4")] + pub dllcgofpjnk: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub dpkopfdefmn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eggijcomomj {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ahpkkapjcpl {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Igcgldbkaji {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Elmjbgnnmec { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub lodfbklaaag: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub dpebppolpii: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dkeedhojfff { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub edohkgddclb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fbkncafcnac { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub jamnmlimlip: u32, + /// offset: 24 + #[prost(double, tag = "8")] + pub himnbghpghd: f64, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Golojphiobj { + /// offset: 44 + #[prost(uint32, tag = "10")] + pub npciencemod: u32, + /// offset: 40 + #[prost(bool, tag = "5")] + pub aicenmflobg: bool, + /// offset: 24 + #[prost(map = "string, uint32", tag = "14")] + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + /// offset: 32 + #[prost(message, repeated, tag = "7")] + pub pmkilnpebfi: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Adabpnnbchm { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub gkhojfjelmo: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nmeiechfigf { + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub gkhojfjelmo: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jfpkapgmebf { + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub jbhdbelfefn: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8465)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pbpigabcjed { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub season: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8527)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUseOrbScRsp { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Abjbjocbplh { + /// offset: 32 + #[prost(message, optional, tag = "11")] + pub pcbdhdfdkmj: ::core::option::Option, /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(message, optional, tag = "13")] + pub rogue_get_info: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "4")] pub retcode: u32, } -/// Obf: BAPAMODKPEH +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ohnilgjnmln { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub num: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub item_id: u32, + /// offset: 32 + #[prost(int32, tag = "7")] + pub npookjkkedj: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oldppegblhc { + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub fmjnlchicoh: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub nhpncdgfldk: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub bkihcaalbnb: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "7")] + pub enbmdcenfbg: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fgpbofkgnfi { + /// offset: 28 + #[prost(uint32, tag = "1")] + pub mjlniaiccbb: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub exp: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dlnmannhhan { + /// offset: 28 + #[prost(uint32, tag = "9")] + pub jcncbnbpmca: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub kejaelipjjb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Inlmmkljclf { + /// offset: 48 + #[prost(uint32, tag = "12")] + pub klpmcheinmg: u32, + /// offset: 16 + #[prost(message, repeated, tag = "4")] + pub jhjbcgfkknj: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub kifgicehhcd: u32, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub gpalhmnijeb: ::core::option::Option, + /// offset: 40 + #[prost(bool, tag = "2")] + pub phgldmgbibl: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bfagpfameaf { + /// offset: 24 + #[prost(map = "string, uint32", tag = "10")] + pub dfplnainbem: ::std::collections::HashMap<::prost::alloc::string::String, u32>, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub mepjhoamnnn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kllkboeacaj { + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub bhiglfbkhck: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub cmlelldmboe: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub section_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nngecooobke { + /// offset: 28 + #[prost(uint32, tag = "8")] + pub unique_id: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub omfaiookmeh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lfmahpklbnk { + /// offset: 32 + #[prost(bool, tag = "6")] + pub pbmfbbalkfi: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub bchhncocmeo: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lbemdkfjmgc { + /// offset: 44 + #[prost(enumeration = "Plngddngcnc", tag = "14")] + pub source: i32, + /// offset: 32 + #[prost(uint32, repeated, tag = "7")] + pub joamooegpjp: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub gmaoccgmbid: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub cmdjknkahfn: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub pkobmkblhhn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mfnekaakfbl { + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub omdagkokcha: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nkljinfdcjg { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub oekpgghfnck: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cpgiakiigpk { + #[prost(oneof = "cpgiakiigpk::Ginfiafkmdn", tags = "12, 9, 15")] + pub ginfiafkmdn: ::core::option::Option, +} +/// Nested message and enum types in `CPGIAKIIGPK`. +pub mod cpgiakiigpk { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Ginfiafkmdn { + /// offset: 24 + #[prost(uint32, tag = "12")] + Dhmoccncdmn(u32), + /// offset: 24 + #[prost(message, tag = "9")] + Aeffgkodbli(super::Fjhimicjdpi), + /// offset: 24 + #[prost(uint32, tag = "15")] + Lgkhnlgeajm(u32), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pamfkkjcpcn { + #[prost( + oneof = "pamfkkjcpcn::Ginfiafkmdn", + tags = "368, 1606, 1204, 650, 835, 1464, 149, 525, 195, 1285, 577, 1867, 1069, 362, 1400, 1010, 1164, 79, 413, 1624, 1220, 1708, 1907, 390, 1773, 812, 927, 1384, 628, 216, 355, 371, 772, 1767, 999, 1240, 1962, 1522, 1917, 1181, 278, 2002, 1701" + )] + pub ginfiafkmdn: ::core::option::Option, +} +/// Nested message and enum types in `PAMFKKJCPCN`. +pub mod pamfkkjcpcn { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Ginfiafkmdn { + /// offset: 24 + #[prost(message, tag = "368")] + Jpbmgigkiae(super::Ampggdeemel), + /// offset: 24 + #[prost(message, tag = "1606")] + Mdjgmedlfcb(super::Ampggdeemel), + /// offset: 24 + #[prost(uint32, tag = "1204")] + Fdkcmjmfmgc(u32), + /// offset: 24 + #[prost(message, tag = "650")] + Hcdnbdlgbld(super::Oldppegblhc), + /// offset: 24 + #[prost(message, tag = "835")] + Jjdfbjldhei(super::Oldppegblhc), + /// offset: 24 + #[prost(message, tag = "1464")] + Obpdakkbolh(super::Oldppegblhc), + /// offset: 24 + #[prost(uint32, tag = "149")] + Geibknhcgjf(u32), + /// offset: 24 + #[prost(message, tag = "525")] + Aijfddbemik(super::Fgpbofkgnfi), + /// offset: 24 + #[prost(message, tag = "195")] + Jcncbnbpmca(super::Dlnmannhhan), + /// offset: 24 + #[prost(uint32, tag = "1285")] + Kcjihkikjmo(u32), + /// offset: 24 + #[prost(message, tag = "577")] + Elhkkabfjgf(super::Inlmmkljclf), + /// offset: 24 + #[prost(message, tag = "1867")] + Gclekilecbi(super::Lmccgdopbao), + /// offset: 24 + #[prost(message, tag = "1069")] + Fjbeebdphnn(super::Bfagpfameaf), + /// offset: 24 + #[prost(message, tag = "362")] + Fgboaipggfk(super::Kllkboeacaj), + /// offset: 24 + #[prost(message, tag = "1400")] + Pgahfmemijn(super::Nngecooobke), + /// offset: 24 + #[prost(message, tag = "1010")] + Ncidjcakboa(super::Fjogloimljn), + /// offset: 24 + #[prost(message, tag = "1164")] + Laajhfpfhli(super::Nmeiechfigf), + /// offset: 24 + #[prost(uint32, tag = "79")] + Deckggoojlg(u32), + /// offset: 24 + #[prost(uint32, tag = "413")] + Ndcjhppphnp(u32), + /// offset: 24 + #[prost(uint32, tag = "1624")] + Lbbojjiphdg(u32), + /// offset: 24 + #[prost(uint32, tag = "1220")] + Ialhhaoomcp(u32), + /// offset: 24 + #[prost(message, tag = "1708")] + Kfamnkegahb(super::Medpendhned), + /// offset: 24 + #[prost(enumeration = "super::Llicmhionjd", tag = "1907")] + Bglklnnmaol(i32), + /// offset: 24 + #[prost(message, tag = "390")] + Acjamodpbkm(super::Lfmahpklbnk), + /// offset: 24 + #[prost(uint32, tag = "1773")] + Pgnaeabpkgk(u32), + /// offset: 24 + #[prost(uint32, tag = "812")] + Bfbehjeiaph(u32), + /// offset: 24 + #[prost(uint32, tag = "927")] + Cdhnfadlafn(u32), + /// offset: 24 + #[prost(message, tag = "1384")] + Kmlgcckbdia(super::Gkdlhgbbbac), + /// offset: 24 + #[prost(message, tag = "628")] + Ihcfmihklkg(super::Nkljinfdcjg), + /// offset: 24 + #[prost(message, tag = "216")] + Chefolgidhi(super::Keajcpeofbe), + /// offset: 24 + #[prost(message, tag = "355")] + Gdmpdokdbod(super::Keajcpeofbe), + /// offset: 24 + #[prost(uint32, tag = "371")] + Ogmclkbfhlf(u32), + /// offset: 24 + #[prost(message, tag = "772")] + Eoejkfamhgg(super::Ojehifaeloe), + /// offset: 24 + #[prost(message, tag = "1767")] + Jaijobbgfml(super::Ojehifaeloe), + /// offset: 24 + #[prost(uint32, tag = "999")] + Cnnfpagkjom(u32), + /// offset: 24 + #[prost(message, tag = "1240")] + Gjilfhjhnpb(super::Adabpnnbchm), + /// offset: 24 + #[prost(message, tag = "1962")] + Fbebgnmcgbm(super::Mfnekaakfbl), + /// offset: 24 + #[prost(message, tag = "1522")] + Cpajhpmlklk(super::Jkaimhfmpph), + /// offset: 24 + #[prost(uint32, tag = "1917")] + Npifoobdjdb(u32), + /// offset: 24 + #[prost(uint32, tag = "1181")] + Bkehghiahio(u32), + /// offset: 24 + #[prost(message, tag = "278")] + Iikomjkjljd(super::Cpgiakiigpk), + /// offset: 24 + #[prost(message, tag = "2002")] + Kjopkehamop(super::Oblflobpgmi), + /// offset: 24 + #[prost(uint32, tag = "1701")] + Nglipmgafkh(u32), + } +} +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(8427)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUseOrbNotify { +pub struct Beopbdooppd { + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub aamkokdddog: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(enumeration = "Kfgdppgfnge", tag = "2")] + pub ndamkiikmoe: i32, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub laehobnnlmj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lijglfcmegk { + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub aamkokdddog: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(enumeration = "Kfgdppgfnge", tag = "6")] + pub ndamkiikmoe: i32, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub laehobnnlmj: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8598)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Onbjlecgiid { + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub mgmomcfhmea: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nopimpmjmeb { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub pos: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub unique_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8474)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mmjaglclipo { + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub eblcdfmccaa: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8445)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fjdagbijmep { + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub eblcdfmccaa: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "3")] - pub ioambnahfhm: u32, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub jcdljghhaof: ::core::option::Option, -} -/// Obf: INPFIGPPNJG -#[derive(proto_derive::CmdID)] -#[cmdid(8449)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightBuyExpCsReq {} -/// Obf: JBNLNHCECBP -#[derive(proto_derive::CmdID)] -#[cmdid(8425)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightBuyExpScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: LCKCMDJPGGP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8512)] +#[cmdid(8571)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightRefreshShopCsReq {} -/// Obf: LLPDFCHEPLE -#[derive(proto_derive::CmdID)] -#[cmdid(8530)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightRefreshShopScRsp { +pub struct Lcnhojpjkhm { /// offset: 24 - #[prost(uint32, tag = "13")] - pub retcode: u32, + #[prost(uint32, tag = "6")] + pub unique_id: u32, } -/// Obf: CHGDCIIJFLM -#[derive(proto_derive::CmdID)] -#[cmdid(8491)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightLockShopCsReq { - /// offset: 24 - #[prost(bool, tag = "15")] - pub is_protected: bool, -} -/// Obf: CKNPDBGOMDB -#[derive(proto_derive::CmdID)] -#[cmdid(8500)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightLockShopScRsp { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: BPEIEBGADLP -#[derive(proto_derive::CmdID)] -#[cmdid(8576)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightBuyGoodsCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub peblikhecfi: ::prost::alloc::vec::Vec, -} -/// Obf: BNHKNLCPPFP +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8459)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightBuyGoodsScRsp { +pub struct Ehbepefdphc { /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "7")] pub retcode: u32, } -/// Obf: HKCJFIKJJPC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8433)] +#[cmdid(8532)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightGetShopRandomRuleCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ojpncmpgbdl { +pub struct Dmklpokpige { /// offset: 28 #[prost(uint32, tag = "2")] - pub libkldalhjp: u32, + pub lopbhckejbd: u32, /// offset: 24 - #[prost(uint32, tag = "3")] - pub cdfgkgldklg: u32, + #[prost(enumeration = "Pckjppikdhg", tag = "15")] + pub lgkklfdjebb: i32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub anjobcgpbdc: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8549)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kaccpaljofk { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8559)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Npfmipdcloi { + /// offset: 36 + #[prost(uint32, tag = "7")] + pub klbkabhdjih: u32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub phkfenomigm: u32, + /// offset: 32 + #[prost(enumeration = "Icnccfgdgde", tag = "4")] + pub source: i32, + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub imojhcibhil: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8541)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gmcaikpagmc { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Joobjoegapl { +pub struct Kmgcjigkfco { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub lopbhckejbd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jcnkbiigddh { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub lopbhckejbd: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub anjobcgpbdc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Baaoenclpcm { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub anjobcgpbdc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dhnjojjcjhb { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub lopbhckejbd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cidmbdmdjbp { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub lopbhckejbd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jjdjmadomjh { + #[prost(oneof = "jjdjmadomjh::Idooakegpgd", tags = "347, 886, 489, 1724, 1984")] + pub idooakegpgd: ::core::option::Option, +} +/// Nested message and enum types in `JJDJMADOMJH`. +pub mod jjdjmadomjh { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Idooakegpgd { + /// offset: 24 + #[prost(message, tag = "347")] + Jmacaagbebm(super::Kmgcjigkfco), + /// offset: 24 + #[prost(message, tag = "886")] + Cliajdffoad(super::Jcnkbiigddh), + /// offset: 24 + #[prost(message, tag = "489")] + Gbfiglnakca(super::Baaoenclpcm), + /// offset: 24 + #[prost(message, tag = "1724")] + Jpklpncgema(super::Dhnjojjcjhb), + /// offset: 24 + #[prost(message, tag = "1984")] + Clofgihggcg(super::Cidmbdmdjbp), + } +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8580)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nofklglkcal { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub item_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub display_value: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8404)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ikomimhgiin { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8589)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pgkdcdonkei { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub hhohagldgoj: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub unique_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8555)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ibobbdillef { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8440)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cjhkhijcbdl { + /// offset: 32 + #[prost(bool, tag = "3")] + pub is_get_all: bool, + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub mdlaecainnm: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8497)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hhghiljdnai { /// offset: 24 #[prost(uint32, tag = "15")] - pub libkldalhjp: u32, + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8415)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Figghkdldeh { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub pollhnbepkj: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub gkkgkebinak: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8453)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fcmphkjebja {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8435)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gpibedecndp { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8405)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jcmooebeonf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8466)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ekelngfidjd { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8588)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ofhphmdaeab { + /// offset: 24 + #[prost(bool, tag = "4")] + pub is_locked: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8538)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ledeckhlpjn { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8575)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pnnjikhkihj { + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub dobpfiebpif: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8438)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ijncidccnfg { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kgppecdjlkp {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gkdpdnkkjng { /// offset: 28 + #[prost(uint32, tag = "12")] + pub iafoahocpni: u32, + /// offset: 24 #[prost(uint32, tag = "8")] + pub bklmihhlfog: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lajbjblbjah { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub bklmihhlfog: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] pub num: u32, } -/// Obf: DAANLDOLJIH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8503)] +#[cmdid(8468)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightGetShopRandomRuleScRsp { - /// offset: 32 - #[prost(message, repeated, tag = "7")] - pub mlhnadioenj: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub oanndojkoik: ::prost::alloc::vec::Vec, +pub struct Nfpbidkbclm { /// offset: 40 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ihjhphgjkcl { - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub djhaphkeegh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub gmilngghedc: u32, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub elfncgkgkan: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub baaoinneaai: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Feegcapdnik { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub jnbjcfmdaml: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub hbekefkjaga: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub leipdibkepo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kmihapbnddk { - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub jipddomihcf: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lpdehkfaohl { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub gcpfibgpang: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub jhnkmohlbpj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ggeghppbbnj { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub gmilngghedc: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub baaoinneaai: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mnfoaelkfnb { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub baaoinneaai: u32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub dlfieecjggg: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub gmilngghedc: u32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub mekefpnmnle: u32, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub jlhikchiedj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kkkflpdoepo { - /// offset: 36 - #[prost(uint32, tag = "4")] - pub jhnkmohlbpj: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub ianknnonfcp: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(bool, tag = "6")] - pub eeijdhfnedm: bool, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub gcpfibgpang: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dcoenebmfgb {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gbgkfgdpgkd {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oilindpigmo {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cifkijkjbnp { - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub hcokodhpnib: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lfjbnhemnam { - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub hcokodhpnib: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nfnmnidibfh { - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub pjlmjflfhaf: ::prost::alloc::vec::Vec, - /// offset: 32 #[prost(uint32, tag = "7")] - pub bmifagdclco: u32, + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub dbejjcjinac: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub jlfdgadegoi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ggpmkhlhknb { +pub struct Olplnokepkp { + /// offset: 40 + #[prost(uint32, tag = "11")] + pub mkfplfjjpmk: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub ahomjoamdgc: u32, /// offset: 36 - #[prost(uint32, tag = "2")] - pub hbapccegnme: u32, - #[prost( - oneof = "ggpmkhlhknb::Dmjfkdoofmp", - tags = "803, 1859, 877, 924, 1523, 1747, 257, 1038, 1598, 1828, 991, 1220" - )] - pub dmjfkdoofmp: ::core::option::Option, -} -/// Nested message and enum types in `GGPMKHLHKNB`. -pub mod ggpmkhlhknb { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Dmjfkdoofmp { - /// offset: 16 - #[prost(message, tag = "803")] - Jenfiofknkb(super::Ihjhphgjkcl), - /// offset: 16 - #[prost(message, tag = "1859")] - Ggahbpnaodd(super::Kmihapbnddk), - /// offset: 16 - #[prost(message, tag = "877")] - Cnpcehhnbml(super::Lpdehkfaohl), - /// offset: 16 - #[prost(message, tag = "924")] - Cffndgfnflg(super::Ggeghppbbnj), - /// offset: 16 - #[prost(message, tag = "1523")] - Oadkoemmggj(super::Kkkflpdoepo), - /// offset: 16 - #[prost(message, tag = "1747")] - Lcdgkimaohb(super::Dcoenebmfgb), - /// offset: 16 - #[prost(message, tag = "257")] - Kfoipfjnmne(super::Gbgkfgdpgkd), - /// offset: 16 - #[prost(message, tag = "1038")] - Gjiaaiakfmc(super::Oilindpigmo), - /// offset: 16 - #[prost(message, tag = "1598")] - Bpcdpeadabo(super::Mnfoaelkfnb), - /// offset: 16 - #[prost(message, tag = "1828")] - Pcomdkepbgh(super::Cifkijkjbnp), - /// offset: 16 - #[prost(message, tag = "991")] - Hnjhkllimpj(super::Lfjbnhemnam), - /// offset: 16 - #[prost(message, tag = "1220")] - Ghphepcnaaj(super::Nfnmnidibfh), - } + #[prost(uint32, tag = "15")] + pub hogifkocohf: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub ljadelaepln: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Klpiegfimmc { +pub struct Neacbmkijgm { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub bcdamjfnmda: u32, /// offset: 24 #[prost(uint32, tag = "15")] - pub nbaofflccpg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nmedlomnmnp {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Clhnpdjcdff { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub hbekefkjaga: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fbfglpbceon { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub hbekefkjaga: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nipolnnpmpg { + pub ojeilkfblih: u32, /// offset: 28 - #[prost(uint32, tag = "1")] - pub unique_id: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub libkldalhjp: u32, + #[prost(uint32, tag = "13")] + pub npciencemod: u32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kaifhelenkp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub dpdlonjdebe: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hognfeajklj {} -#[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ldeoopibogp { - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub aoeapiddjnc: ::prost::alloc::vec::Vec, +pub struct Jplmaplkppn { + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub bbkfidgpmaj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pkbfchmhopm { +pub struct Klcegcmpkjo { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub daecbnalfic: u32, /// offset: 24 + #[prost(uint32, tag = "9")] + pub lodfbklaaag: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ckpilkmkcma { + /// offset: 28 #[prost(uint32, tag = "14")] - pub lohpffgeabh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hogacmcaokh { + pub ahomjoamdgc: u32, /// offset: 24 - #[prost(uint32, tag = "14")] - pub lohpffgeabh: u32, + #[prost(uint32, tag = "5")] + pub mkfplfjjpmk: u32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fhdoikofdcf { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub oimbggcbmpm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oliinimnjfi {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cjnalbcnhck { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub kdmlllghjon: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fnfipempgag {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Becppofoanb {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gajcmdikdig {} -/// Obf: LONEFENNDLD -#[derive(proto_derive::CmdID)] -#[cmdid(8437)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightHandlePendingActionCsReq { +pub struct Cfeijimbfah { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub mkfplfjjpmk: u32, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub ahomjoamdgc: u32, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub fnefpnokagl: ::prost::alloc::vec::Vec, /// offset: 36 - #[prost(uint32, tag = "8")] - pub hbapccegnme: u32, - #[prost( - oneof = "grid_fight_handle_pending_action_cs_req::Dmjfkdoofmp", - tags = "1425, 459, 1518, 1957, 1281, 1633, 297, 321, 983, 631, 1589, 1749, 1519, 976, 1532, 614" - )] - pub dmjfkdoofmp: ::core::option::Option< - grid_fight_handle_pending_action_cs_req::Dmjfkdoofmp, - >, + #[prost(uint32, tag = "9")] + pub bdejkjpojgj: u32, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub kjnmafhacae: u32, } -/// Nested message and enum types in `GridFightHandlePendingActionCsReq`. -pub mod grid_fight_handle_pending_action_cs_req { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hlmkhagdjpe { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub lodfbklaaag: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub pbhddhjbnlf: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub daecbnalfic: u32, + /// offset: 40 + #[prost(bool, tag = "9")] + pub ipenbdmihoc: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kfjjjdimkca {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Begenhdeihd {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjjpdbaahjb {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Faeffblahhn { + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub hfbcdldpfga: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oemkclnjoic { + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub hfbcdldpfga: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Injngdiacoh { + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub cphjhaojkpk: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub gakcjcjbaop: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lmccgdopbao { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub queue_position: u32, + #[prost( + oneof = "lmccgdopbao::Oajnjfnliec", + tags = "359, 747, 2022, 1796, 862, 1657, 1229, 542, 971, 1259, 1290, 93" + )] + pub oajnjfnliec: ::core::option::Option, +} +/// Nested message and enum types in `LMCCGDOPBAO`. +pub mod lmccgdopbao { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Dmjfkdoofmp { - /// offset: 16 - #[prost(message, tag = "1425")] - Jenfiofknkb(super::Klpiegfimmc), - /// offset: 16 - #[prost(message, tag = "459")] - Debagcgjlna(super::Nmedlomnmnp), - /// offset: 16 - #[prost(message, tag = "1518")] - Ggahbpnaodd(super::Clhnpdjcdff), - /// offset: 16 - #[prost(message, tag = "1957")] - Ibkjefpkdaa(super::Fbfglpbceon), - /// offset: 16 - #[prost(message, tag = "1281")] - Cnpcehhnbml(super::Nipolnnpmpg), - /// offset: 16 - #[prost(message, tag = "1633")] - Cffndgfnflg(super::Kaifhelenkp), - /// offset: 16 - #[prost(message, tag = "297")] - Oadkoemmggj(super::Cjnalbcnhck), - /// offset: 16 - #[prost(message, tag = "321")] - Lcdgkimaohb(super::Fnfipempgag), - /// offset: 16 - #[prost(message, tag = "983")] - Kfoipfjnmne(super::Becppofoanb), - /// offset: 16 - #[prost(message, tag = "631")] - Gjiaaiakfmc(super::Gajcmdikdig), - /// offset: 16 - #[prost(message, tag = "1589")] - Bpcdpeadabo(super::Ldeoopibogp), - /// offset: 16 - #[prost(message, tag = "1749")] - Ldmkbmlemkp(super::Oliinimnjfi), - /// offset: 16 - #[prost(message, tag = "1519")] - Pcomdkepbgh(super::Pkbfchmhopm), - /// offset: 16 - #[prost(message, tag = "976")] - Eppnnfjbpol(super::Hognfeajklj), - /// offset: 16 - #[prost(message, tag = "1532")] - Hnjhkllimpj(super::Hogacmcaokh), - /// offset: 16 - #[prost(message, tag = "614")] - Ghphepcnaaj(super::Fhdoikofdcf), + pub enum Oajnjfnliec { + /// offset: 24 + #[prost(message, tag = "359")] + Idpeiolopji(super::Olplnokepkp), + /// offset: 24 + #[prost(message, tag = "747")] + Gjjegjmjijj(super::Jplmaplkppn), + /// offset: 24 + #[prost(message, tag = "2022")] + Glcieniabph(super::Klcegcmpkjo), + /// offset: 24 + #[prost(message, tag = "1796")] + Jfianfmnkbj(super::Ckpilkmkcma), + /// offset: 24 + #[prost(message, tag = "862")] + Bcnpeliekbh(super::Hlmkhagdjpe), + /// offset: 24 + #[prost(message, tag = "1657")] + Manfblfdpkm(super::Kfjjjdimkca), + /// offset: 24 + #[prost(message, tag = "1229")] + Olnkkbgnfcc(super::Begenhdeihd), + /// offset: 24 + #[prost(message, tag = "542")] + Mjaiajbahnb(super::Hjjpdbaahjb), + /// offset: 24 + #[prost(message, tag = "971")] + Bhfmdbbilem(super::Cfeijimbfah), + /// offset: 24 + #[prost(message, tag = "1259")] + Najjmfbkcco(super::Faeffblahhn), + /// offset: 24 + #[prost(message, tag = "1290")] + Cahebgcjfdf(super::Oemkclnjoic), + /// offset: 24 + #[prost(message, tag = "93")] + Gcchbdobddn(super::Injngdiacoh), } } -/// Obf: HACCNHFLBBP #[derive(proto_derive::CmdID)] -#[cmdid(8490)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightHandlePendingActionScRsp { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub retcode: u32, +pub struct Khhifofklnl { /// offset: 24 - #[prost(uint32, tag = "4")] - pub hbapccegnme: u32, + #[prost(uint32, tag = "14")] + pub blhigcohmod: u32, } -/// Obf: APKGNLENMKP #[derive(proto_derive::CmdID)] -#[cmdid(8514)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightStartGamePlayCsReq { - /// offset: 32 - #[prost(bool, tag = "8")] - pub akncldodlml: bool, +pub struct Djnkglamgno {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fcmbfinhebh { /// offset: 24 #[prost(uint32, tag = "2")] - pub kampliigngb: u32, + pub npciencemod: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jencmkjknmh { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub npciencemod: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oaonehbcoei { + /// offset: 28 + #[prost(uint32, tag = "8")] + pub unique_id: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub bklmihhlfog: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oicfbpffoph { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub oekpgghfnck: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Njhebjmbpmh {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Illjlmbncgd { + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub odmommgaijf: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gacocgfecla { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub hcdnfgionjh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kljbbehafml { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub hcdnfgionjh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lomjhbhpnej { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub hhohagldgoj: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pmgfgenkpci {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fkpcmcmbgho { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub llhfnkjofma: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lcfehljmhkh {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dppnocgojpj {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mppagenfbhc {} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8479)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Goiialeibob { + /// offset: 36 + #[prost(uint32, tag = "12")] + pub queue_position: u32, + #[prost( + oneof = "goiialeibob::Oajnjfnliec", + tags = "1396, 1655, 651, 587, 49, 1521, 1020, 1103, 1831, 1481, 493, 1795, 1704, 1242, 1767, 719" + )] + pub oajnjfnliec: ::core::option::Option, +} +/// Nested message and enum types in `GOIIALEIBOB`. +pub mod goiialeibob { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Oajnjfnliec { + /// offset: 16 + #[prost(message, tag = "1396")] + Idpeiolopji(super::Khhifofklnl), + /// offset: 16 + #[prost(message, tag = "1655")] + Nfmikafgjdo(super::Djnkglamgno), + /// offset: 16 + #[prost(message, tag = "651")] + Gjjegjmjijj(super::Fcmbfinhebh), + /// offset: 16 + #[prost(message, tag = "587")] + Lnnnecgjhjf(super::Jencmkjknmh), + /// offset: 16 + #[prost(message, tag = "49")] + Glcieniabph(super::Oaonehbcoei), + /// offset: 16 + #[prost(message, tag = "1521")] + Jfianfmnkbj(super::Oicfbpffoph), + /// offset: 16 + #[prost(message, tag = "1020")] + Bcnpeliekbh(super::Fkpcmcmbgho), + /// offset: 16 + #[prost(message, tag = "1103")] + Manfblfdpkm(super::Lcfehljmhkh), + /// offset: 16 + #[prost(message, tag = "1831")] + Olnkkbgnfcc(super::Dppnocgojpj), + /// offset: 16 + #[prost(message, tag = "1481")] + Mjaiajbahnb(super::Mppagenfbhc), + /// offset: 16 + #[prost(message, tag = "493")] + Bhfmdbbilem(super::Illjlmbncgd), + /// offset: 16 + #[prost(message, tag = "1795")] + Mghfbkgblnl(super::Pmgfgenkpci), + /// offset: 16 + #[prost(message, tag = "1704")] + Najjmfbkcco(super::Gacocgfecla), + /// offset: 16 + #[prost(message, tag = "1242")] + Hnbhpbjnpam(super::Njhebjmbpmh), + /// offset: 16 + #[prost(message, tag = "1767")] + Cahebgcjfdf(super::Kljbbehafml), + /// offset: 16 + #[prost(message, tag = "719")] + Gcchbdobddn(super::Lomjhbhpnej), + } +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8529)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fcdpnmdngfc { /// offset: 28 #[prost(uint32, tag = "14")] - pub ahanjlehcga: u32, + pub queue_position: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, } -/// Obf: CJIFCEGLJLG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8470)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightStartGamePlayScRsp { +#[cmdid(8548)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gkilpaeeljh { /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, + #[prost(uint32, tag = "2")] + pub season: u32, + /// offset: 28 + #[prost(bool, tag = "10")] + pub ojdobchgkmj: bool, /// offset: 24 - #[prost(message, optional, tag = "15")] - pub hoaeankohdn: ::core::option::Option, + #[prost(uint32, tag = "7")] + pub oocaobicbab: u32, } -/// Obf: BBKKNONCBNL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8413)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightQuitLeaveGamePlayCsReq {} -/// Obf: EKNEPMOJBKO -#[derive(proto_derive::CmdID)] -#[cmdid(8593)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightQuitLeaveGamePlayScRsp { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: BJGNGNDNMHJ -#[derive(proto_derive::CmdID)] -#[cmdid(8495)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightResumeGamePlayCsReq { +#[cmdid(8563)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hehlilcfmme { /// offset: 24 + #[prost(message, optional, tag = "11")] + pub pcbdhdfdkmj: ::core::option::Option, + /// offset: 32 #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8486)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Glfkbpcdnlm {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8568)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Delmbjcmfap { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8511)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dlkclhjnegb { + /// offset: 24 + #[prost(uint32, tag = "5")] pub unique_id: u32, } -/// Obf: COGKPIGDBNB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8455)] +#[cmdid(8432)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightResumeGamePlayScRsp { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: CPDJHDGLMHH -#[derive(proto_derive::CmdID)] -#[cmdid(8579)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightFinishTutorialCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub okjmholgbio: u32, -} -/// Obf: OIJOFAHGGPI -#[derive(proto_derive::CmdID)] -#[cmdid(8472)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightFinishTutorialScRsp { +pub struct Bklfedbgiop { /// offset: 24 #[prost(uint32, tag = "12")] pub retcode: u32, } -/// Obf: GBKADGKBOEF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8544)] +#[cmdid(8550)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightEnterBattleStageCsReq {} -/// Obf: PJPBPABDOBP +pub struct Ndajhdmmcoi { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub npimhoihmak: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8422)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightEnterBattleStageScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] +#[cmdid(8528)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cgdadaacbfo { + /// offset: 24 + #[prost(uint32, tag = "15")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "11")] +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8401)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ghbgnokpdkl {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8431)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iehclhcbiap { + /// offset: 24 + #[prost(message, optional, tag = "2")] pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eofjgfclief { +pub struct Fgoipcgkaph { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub efjlfkkpbfi: u32, + /// offset: 28 + #[prost(enumeration = "Ajafjogocnn", tag = "12")] + pub reason: i32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub bnabpmefpid: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ogjejfnpljk { + /// offset: 40 + #[prost(uint32, tag = "4")] + pub ncfjjolaild: u32, + /// offset: 28 + #[prost(int32, tag = "14")] + pub efjlfkkpbfi: i32, + /// offset: 32 + #[prost(enumeration = "Blfiehcingg", tag = "13")] + pub reason: i32, + /// offset: 24 + #[prost(int32, tag = "5")] + pub bnabpmefpid: i32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub peahiecpjci: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Joiaeagdmjg { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub lbjpanfklpg: u32, /// offset: 28 #[prost(uint32, tag = "9")] - pub doipiknbllj: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub bfamlgblnnl: u32, - /// offset: 24 - #[prost(enumeration = "Cdmemgiljgb", tag = "13")] - pub reason: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oekklgopmol { - /// offset: 32 - #[prost(int32, tag = "9")] - pub doipiknbllj: i32, - /// offset: 36 - #[prost(int32, tag = "2")] - pub bfamlgblnnl: i32, - /// offset: 24 - #[prost(enumeration = "Pnhijblbjlj", tag = "13")] - pub reason: i32, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub alogfkmcnaf: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub gldancicpbo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ldphpfhhhhk { - /// offset: 32 - #[prost(uint32, tag = "5")] pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub fdeddkdhgnh: u32, - /// offset: 28 + /// offset: 32 #[prost(uint32, tag = "1")] pub exp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hehhadkpdoc { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub cgecgaajljm: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub poijkblcjla: u32, - /// offset: 32 - #[prost(message, optional, tag = "4")] - pub nmmjmpngigd: ::core::option::Option, -} -/// Obf: GKGLFGNHNLB -#[derive(proto_derive::CmdID)] -#[cmdid(8440)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightEndBattleStageNotify { - /// offset: 56 - #[prost(message, optional, tag = "1474")] - pub emllkallopl: ::core::option::Option, - /// offset: 72 - #[prost(uint32, tag = "12")] - pub hopfmdllnnj: u32, +pub struct Klnnafmldkg { /// offset: 24 - #[prost(message, repeated, tag = "231")] - pub nicjfkdcfhg: ::prost::alloc::vec::Vec, - /// offset: 132 - #[prost(uint32, tag = "1")] - pub nihhejliced: u32, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub dilhfehbgdn: ::core::option::Option, - /// offset: 88 - #[prost(uint32, tag = "13")] - pub jbeaoafmama: u32, - /// offset: 96 - #[prost(uint32, tag = "15")] - pub lbmncagokif: u32, - /// offset: 80 - #[prost(bool, tag = "10")] - pub jhpgefjmblh: bool, - /// offset: 76 - #[prost(uint32, tag = "4")] - pub aejkopopfji: u32, - /// offset: 68 - #[prost(uint32, tag = "14")] - pub kiekjeffphk: u32, - /// offset: 100 - #[prost(uint32, tag = "2")] - pub ecbalmaebjc: u32, - /// offset: 124 - #[prost(uint32, tag = "510")] - pub kikafjklaeh: u32, - /// offset: 104 + #[prost(message, optional, tag = "15")] + pub fdgjhoglgee: ::core::option::Option, + /// offset: 40 #[prost(uint32, tag = "11")] - pub poijkblcjla: u32, - /// offset: 120 - #[prost(uint32, tag = "1703")] - pub adbmleoohcj: u32, + pub nbgkjpibnke: u32, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub anbflmndfma: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8576)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mgccigagecd { + /// offset: 24 + #[prost(message, repeated, tag = "997")] + pub fkboonohfdc: ::prost::alloc::vec::Vec, + /// offset: 116 + #[prost(uint32, tag = "713")] + pub oodoneolfng: u32, + /// offset: 132 + #[prost(uint32, tag = "14")] + pub nbgkjpibnke: u32, + /// offset: 76 + #[prost(uint32, tag = "15")] + pub bomdnabikij: u32, + /// offset: 80 + #[prost(uint32, tag = "1658")] + pub efjlfkkpbfi: u32, + /// offset: 112 + #[prost(uint32, tag = "179")] + pub ackkdihlaic: u32, /// offset: 16 #[prost(map = "uint32, message", tag = "9")] - pub leagflcpkid: ::std::collections::HashMap, - /// offset: 108 - #[prost(uint32, tag = "6")] - pub hlmfgimkjgh: u32, - /// offset: 64 - #[prost(uint32, tag = "1363")] - pub hanomiedkbj: u32, - /// offset: 112 - #[prost(uint32, tag = "318")] - pub mligmbodoeg: u32, - /// offset: 92 - #[prost(uint32, tag = "1273")] - pub doipiknbllj: u32, - /// offset: 116 - #[prost(uint32, tag = "5")] - pub lpapaabnlaj: u32, + pub odfogjlbjcj: ::std::collections::HashMap, + /// offset: 48 + #[prost(message, optional, tag = "13")] + pub kmlgcckbdia: ::core::option::Option, + /// offset: 96 + #[prost(uint32, tag = "1354")] + pub bcelpbpjdcb: u32, + /// offset: 56 + #[prost(message, repeated, tag = "1266")] + pub kiebkdbfgeo: ::prost::alloc::vec::Vec, + /// offset: 100 + #[prost(uint32, tag = "1")] + pub lahbhhemmhg: u32, + /// offset: 104 + #[prost(uint32, tag = "706")] + pub hjmacmocedl: u32, /// offset: 128 + #[prost(uint32, tag = "10")] + pub hagoedbcmbj: u32, + /// offset: 88 #[prost(uint32, tag = "3")] - pub ekelnlifmhh: u32, + pub lfdckmlejpl: u32, + /// offset: 64 + #[prost(uint32, tag = "4")] + pub gagbchbkkep: u32, + /// offset: 120 + #[prost(uint32, tag = "8")] + pub section_id: u32, /// offset: 40 - #[prost(message, repeated, tag = "655")] - pub gdaobcphncg: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "1140")] + pub jlpkmeagcbo: ::core::option::Option, + /// offset: 68 + #[prost(uint32, tag = "6")] + pub ickeodgjidi: u32, + /// offset: 72 + #[prost(uint32, tag = "7")] + pub joeanebolgi: u32, /// offset: 84 - #[prost(uint32, tag = "1453")] - pub hlcepephdhb: u32, + #[prost(uint32, tag = "630")] + pub bpciapmbddm: u32, + /// offset: 124 + #[prost(uint32, tag = "5")] + pub fekjlnjmffj: u32, + /// offset: 108 + #[prost(bool, tag = "2")] + pub epbjbapnffi: bool, + /// offset: 92 + #[prost(uint32, tag = "11")] + pub cmlelldmboe: u32, } -/// Obf: IJLMGIPJCCI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8541)] +#[cmdid(8500)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightQuitSettleCsReq {} -/// Obf: HIDJDDBFGKD +pub struct Gdbehbfbkkd {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8476)] +#[cmdid(8430)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightQuitSettleScRsp { +pub struct Bhfcgfiipek { /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oaamekmcohh { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub unique_id: u32, +pub struct Cloaoahmigh { /// offset: 28 - #[prost(uint32, tag = "1")] - pub libkldalhjp: u32, -} -/// Obf: NHMHANGNCNM -#[derive(proto_derive::CmdID)] -#[cmdid(8466)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightTraitUpdateCsReq { - /// offset: 40 #[prost(uint32, tag = "6")] - pub jhnkmohlbpj: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub gcpfibgpang: u32, - #[prost(oneof = "grid_fight_trait_update_cs_req::Emokphngbfa", tags = "400")] - pub emokphngbfa: ::core::option::Option, + pub unique_id: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub bklmihhlfog: u32, } -/// Nested message and enum types in `GridFightTraitUpdateCsReq`. -pub mod grid_fight_trait_update_cs_req { +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8577)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Doekjbohggd { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub daecbnalfic: u32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub lodfbklaaag: u32, + #[prost(oneof = "doekjbohggd::Idooakegpgd", tags = "1579")] + pub idooakegpgd: ::core::option::Option, +} +/// Nested message and enum types in `DOEKJBOHGGD`. +pub mod doekjbohggd { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Emokphngbfa { - /// offset: 24 - #[prost(message, tag = "400")] - Dllgojlihml(super::Oaamekmcohh), + pub enum Idooakegpgd { + /// offset: 16 + #[prost(message, tag = "1579")] + Jioanoccpdm(super::Cloaoahmigh), } } -/// Obf: CPGLGCAIAFK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8588)] +#[cmdid(8433)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightTraitUpdateScRsp { +pub struct Kmeojgkpnic { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: HAFHEKDMOPL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8545)] +#[cmdid(8595)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUpdateTraitTrackCsReq { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub jhnkmohlbpj: u32, +pub struct Ndhpmcecjdn { /// offset: 24 #[prost(bool, tag = "4")] - pub nkpbecmpmhi: bool, -} -/// Obf: FLKAOEABLMH -#[derive(proto_derive::CmdID)] -#[cmdid(8574)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUpdateTraitTrackScRsp { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Llkekfnofao { - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub kolkidopmab: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(enumeration = "Hjldegakhhb", tag = "10")] - pub source: i32, - /// offset: 40 - #[prost(bool, tag = "1")] - pub nkpbecmpmhi: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub ffcogpomcpg: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub okhfaejfgdj: u32, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub nmjemhamihd: u32, -} -/// Obf: NNIEBIIPHNJ -#[derive(proto_derive::CmdID)] -#[cmdid(8546)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdateEquipTrackCsReq { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub pmdkkfkdfof: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "Hjldegakhhb", tag = "6")] - pub source: i32, -} -/// Obf: CPDPJHGOBOB -#[derive(proto_derive::CmdID)] -#[cmdid(8589)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUpdateEquipTrackScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Anahkfnbaif { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub okhfaejfgdj: u32, + pub kjhljabgodk: bool, /// offset: 28 - #[prost(uint32, tag = "1")] - pub nmjemhamihd: u32, -} -/// Obf: BPLHNCEHFAO -#[derive(proto_derive::CmdID)] -#[cmdid(8426)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdateEquipTrackProrityCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub flchopicici: ::prost::alloc::vec::Vec, -} -/// Obf: LFCOJCFHKHF -#[derive(proto_derive::CmdID)] -#[cmdid(8573)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUpdateEquipTrackProrityScRsp { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: ECMFJBKNCGB -#[derive(proto_derive::CmdID)] -#[cmdid(8462)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUpdateEliteBranchSelectCsReq { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub dpdlonjdebe: u32, -} -/// Obf: ACNBNAJDAJH -#[derive(proto_derive::CmdID)] -#[cmdid(8528)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightUpdateEliteBranchSelectScRsp { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iiccnoeoini { - /// offset: 44 - #[prost(bool, tag = "9")] - pub joohildghgo: bool, - /// offset: 56 - #[prost(uint32, tag = "13")] - pub libkldalhjp: u32, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub mhkhaclnbpm: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub ffcogpomcpg: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "10")] - pub unique_id: u32, - /// offset: 48 - #[prost(uint32, tag = "4")] - pub pos: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub lbiblgggfig: ::prost::alloc::vec::Vec, -} -/// Obf: HOPKIMKBONJ -#[derive(proto_derive::CmdID)] -#[cmdid(8590)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightApplyFormationCsReq { - /// offset: 40 - #[prost(uint32, tag = "14")] - pub pos: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub lbiblgggfig: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub ffcogpomcpg: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub npc_id: u32, - /// offset: 48 - #[prost(uint32, tag = "10")] - pub unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fhhdiceehoe { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub aoefihbbage: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "12")] - pub doekpglnkfb: bool, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub libkldalhjp: u32, - /// offset: 48 - #[prost(double, tag = "9")] - pub total_damage: f64, - /// offset: 33 - #[prost(bool, tag = "10")] - pub iafflnfpljc: bool, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub mhkhaclnbpm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ibcdjfdbggi { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub onofhghjogp: u32, - /// offset: 32 - #[prost(double, tag = "2")] - pub damage: f64, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub jhnkmohlbpj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kcmlojbjmjg { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub jbeaoafmama: u32, - /// offset: 32 #[prost(uint32, tag = "11")] - pub pehingjkgcb: u32, + pub lodfbklaaag: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8508)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gfdgpbelegb { /// offset: 24 - #[prost(uint32, tag = "7")] - pub mligmbodoeg: u32, - /// offset: 48 - #[prost(uint32, tag = "3")] - pub kiekjeffphk: u32, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub elifnjbnagc: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub lbmncagokif: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub hlcepephdhb: u32, + #[prost(uint32, tag = "8")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Apdbhpicoin { - /// offset: 48 - #[prost(message, repeated, tag = "3")] - pub bjoffcackoa: ::prost::alloc::vec::Vec, - /// offset: 117 - #[prost(bool, tag = "1431")] - pub akncldodlml: bool, - /// offset: 24 - #[prost(message, repeated, tag = "1474")] - pub johmobdipjd: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub mfkbgcjjhhb: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(message, repeated, tag = "7")] - pub flbnpabokkp: ::prost::alloc::vec::Vec, - /// offset: 120 - #[prost(enumeration = "Pmlcfanemja", tag = "659")] - pub reason: i32, - /// offset: 112 - #[prost(uint32, tag = "661")] - pub koopgnalfic: u32, - /// offset: 116 - #[prost(bool, tag = "1572")] - pub bhkoioeippl: bool, +pub struct Dclpcadfoed { + /// offset: 40 + #[prost(uint32, tag = "8")] + pub pkobmkblhhn: u32, /// offset: 32 - #[prost(message, repeated, tag = "74")] - pub pbldmkiffno: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(uint32, repeated, tag = "392")] - pub hdbmfkaenbh: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, repeated, tag = "1302")] - pub aoefihbbage: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(message, repeated, tag = "5")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, - /// offset: 124 - #[prost(uint32, tag = "9")] - pub pljfhjafbdd: u32, - /// offset: 104 - #[prost(message, repeated, tag = "1360")] - pub iifafncmkgo: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "14")] - pub ikobkinkhcf: ::core::option::Option, - /// offset: 56 - #[prost(uint32, repeated, tag = "114")] - pub nomlpcgceoe: ::prost::alloc::vec::Vec, -} -/// Obf: OFMIKNOEMAP -#[derive(proto_derive::CmdID)] -#[cmdid(8561)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightSettleNotify { - /// offset: 40 - #[prost(uint32, tag = "1623")] - pub iabjbocdabb: u32, - /// offset: 60 - #[prost(uint32, tag = "14")] - pub lfemohdkmci: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub bncbpjibhgi: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub fdelacbnagi: u32, - /// offset: 52 - #[prost(uint32, tag = "7")] - pub pagfadgimcf: u32, - /// offset: 48 - #[prost(uint32, tag = "3")] - pub nolohnhokop: u32, - /// offset: 16 - #[prost(message, optional, tag = "935")] - pub njnjebodmnl: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "744")] - pub mbeidhbmgje: u32, + #[prost(uint32, repeated, tag = "1")] + pub cmdjknkahfn: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "6")] - pub ifehbimemec: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pmnohbnepnc { + #[prost(uint32, tag = "2")] + pub gmaoccgmbid: u32, /// offset: 16 #[prost(uint32, repeated, tag = "11")] - pub jmojeoalclo: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hmcddlgcejo { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub gddhbecjecp: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub bncbpjibhgi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ghmbapoaabf { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub miaeilhciol: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub mgggajjbamn: u32, - /// offset: 56 - #[prost(uint32, tag = "10")] - pub kampliigngb: u32, - /// offset: 32 - #[prost(message, optional, tag = "15")] - pub ipdbbohhenk: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "4")] - pub exp: ::core::option::Option, + pub joamooegpjp: ::prost::alloc::vec::Vec, /// offset: 52 - #[prost(uint32, tag = "5")] - pub ecmbjbbghgg: u32, - /// offset: 60 - #[prost(uint32, tag = "3")] - pub ifehbimemec: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jclpokgfdge { - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub kedhklhgjfb: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub miaeilhciol: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oamkofkolba { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub pmalnhhngcc: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub mdcjfoafdjk: ::core::option::Option, -} -/// Obf: PGNNHEDHHMN -#[derive(proto_derive::CmdID)] -#[cmdid(8502)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightEnablePermanentTalentCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub talent_id: u32, -} -/// Obf: BLLPKFINICH -#[derive(proto_derive::CmdID)] -#[cmdid(8407)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightEnablePermanentTalentScRsp { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "8")] - pub talent_id: u32, -} -/// Obf: PBGBGGIMLFH -#[derive(proto_derive::CmdID)] -#[cmdid(8450)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightEnableSeasonTalentCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub talent_id: u32, -} -/// Obf: BDMCFBLEMHC -#[derive(proto_derive::CmdID)] -#[cmdid(8519)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightEnableSeasonTalentScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "8")] - pub talent_id: u32, -} -/// Obf: AIPFAFJHLGB -#[derive(proto_derive::CmdID)] -#[cmdid(8436)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightResetPermanentTalentCsReq {} -/// Obf: NIEPBIFKADE -#[derive(proto_derive::CmdID)] -#[cmdid(8507)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightResetPermanentTalentScRsp { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -/// Obf: FNAOJLNJJHG -#[derive(proto_derive::CmdID)] -#[cmdid(8522)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightResetSeasonTalentCsReq {} -/// Obf: KJPMJEHPMIO -#[derive(proto_derive::CmdID)] -#[cmdid(8557)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightResetSeasonTalentScRsp { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Chbpagmnhhc { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub baphhckihmo: u32, - /// offset: 28 - #[prost(uint32, tag = "8")] - pub mbejblfhcbh: u32, -} -/// Obf: BNNEGOPCJGM -#[derive(proto_derive::CmdID)] -#[cmdid(8537)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightSyncVirtualItemScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub item_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cieoiigpfcp { - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub jngfnjphmlj: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub onaldpflebp: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nlndaliadif { - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub ffcogpomcpg: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub blehomhalim: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kjlphcgknfb { - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub maggpfkaddd: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub gbhhgcocoog: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ilgbfipcgjp { - /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub kdnnliejenc: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub djhaphkeegh: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Heofaknhlai { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub bpiangjdlap: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "3")] - pub ooonchpijkp: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ehmekpeagnf { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub nlmlfebhafo: ::core::option::Option, + #[prost(enumeration = "Plngddngcnc", tag = "10")] + pub source: i32, /// offset: 48 - #[prost(message, optional, tag = "3")] - pub gecefcigbhl: ::core::option::Option, - /// offset: 56 - #[prost(message, optional, tag = "6")] - pub pjbepncfgdj: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "4")] - pub iadiegjknha: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub ockcodileop: ::core::option::Option, + #[prost(bool, tag = "4")] + pub kjhljabgodk: bool, } -/// Obf: FCFFAHFHBAI -#[derive(proto_derive::CmdID)] -#[cmdid(8465)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightSeasonHandBookNotify { - #[prost( - oneof = "grid_fight_season_hand_book_notify::Info", - tags = "207, 1165, 1376, 1204, 766" - )] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `GridFightSeasonHandBookNotify`. -pub mod grid_fight_season_hand_book_notify { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 16 - #[prost(message, tag = "207")] - Poelejjmheg(super::Cieoiigpfcp), - /// offset: 16 - #[prost(message, tag = "1165")] - Nnkocjgjjac(super::Nlndaliadif), - /// offset: 16 - #[prost(message, tag = "1376")] - Lgkailbbgjh(super::Kjlphcgknfb), - /// offset: 16 - #[prost(message, tag = "1204")] - Efgpenaidpf(super::Ilgbfipcgjp), - /// offset: 16 - #[prost(message, tag = "766")] - Fhbonofklgh(super::Heofaknhlai), - } -} -/// Obf: JDPILCPJLIK -#[derive(proto_derive::CmdID)] -#[cmdid(8598)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightWeeklyExtraSeasonExpNotify { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub ngkanfkipab: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Abdeocbklaj { - /// offset: 48 - #[prost(uint32, tag = "7")] - pub nolohnhokop: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub dmgglibhpif: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(int64, tag = "11")] - pub coifhfpegph: i64, - /// offset: 40 - #[prost(int64, tag = "1")] - pub end_time: i64, -} -/// Obf: EPKAPJHANJP -#[derive(proto_derive::CmdID)] -#[cmdid(8485)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightTakeWeeklyRewardCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub lpoabmbmlkp: ::prost::alloc::vec::Vec, -} -/// Obf: ODEBFLCKIOL -#[derive(proto_derive::CmdID)] -#[cmdid(8549)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightTakeWeeklyRewardScRsp { - /// offset: 40 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub reward: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub kedhklhgjfb: ::core::option::Option, -} -/// Obf: BMOKPDADAOH -#[derive(proto_derive::CmdID)] -#[cmdid(8586)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdateWeeklyRewardInfoScNotify { - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub kedhklhgjfb: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nnljkfnnfbm { - /// offset: 40 - #[prost(uint32, tag = "7")] - pub fcdplceenoi: u32, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub njnjebodmnl: ::core::option::Option, - /// offset: 32 - #[prost(int64, tag = "13")] - pub eaokchgklfp: i64, -} -/// Obf: HJDNECOGDHO -#[derive(proto_derive::CmdID)] -#[cmdid(8492)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightGetArchiveCsReq {} -/// Obf: HIDEADCNGAH +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8516)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightGetArchiveScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub edjpodpnmed: ::prost::alloc::vec::Vec, +pub struct Kmkofikgljd { + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub fdlhjajbiij: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(enumeration = "Plngddngcnc", tag = "11")] + pub source: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8485)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mifgnjimlko { + /// offset: 24 + #[prost(uint32, tag = "14")] pub retcode: u32, } -/// Obf: AFJGLONFDKN #[derive(proto_derive::CmdID)] -#[cmdid(8453)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightBackToPrepareCsReq {} -/// Obf: OIKAIFGFAAJ +pub struct Kcebjdifhcp { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub gmaoccgmbid: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub pkobmkblhhn: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8461)] +#[cmdid(8416)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Khnmpoadpfm { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub jhhnggimkmi: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8519)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightBackToPrepareScRsp { +pub struct Hjfbjfnpdkb { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8586)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bankfkmlpkp { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub oekpgghfnck: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8456)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ncgohbcbfmh { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pfjmhkcpfig { + /// offset: 48 + #[prost(uint32, tag = "6")] + pub unique_id: u32, + /// offset: 52 + #[prost(uint32, tag = "9")] + pub pos: u32, + /// offset: 44 + #[prost(bool, tag = "14")] + pub lbhdldjpbki: bool, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub ojhffmmafgg: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "2")] + pub cmdjknkahfn: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "15")] + pub bklmihhlfog: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub bacchlmlbap: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Niglcjlkkjm { + /// offset: 40 + #[prost(uint32, tag = "8")] + pub pos: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub cmdjknkahfn: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub npc_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub bacchlmlbap: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "13")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ihokdlpeaml { + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub bkihcaalbnb: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(double, tag = "7")] + pub total_damage: f64, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub bklmihhlfog: u32, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub ojhffmmafgg: u32, + /// offset: 36 + #[prost(bool, tag = "2")] + pub lmghdhdceff: bool, + /// offset: 37 + #[prost(bool, tag = "13")] + pub ihnghohmenj: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iddpghkoboj { + /// offset: 32 + #[prost(double, tag = "11")] + pub damage: f64, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub bnifgplolon: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub lodfbklaaag: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hpkggcikknd { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub fkgbojhnhij: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub section_id: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub oodoneolfng: u32, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub cmlelldmboe: u32, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub bpciapmbddm: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub lahbhhemmhg: u32, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub oadnlfcnieg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jbfngoiheif { + /// offset: 80 + #[prost(uint32, repeated, tag = "1381")] + pub bcjljoaegak: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, optional, tag = "5")] + pub fpnopcddajk: ::core::option::Option, + /// offset: 104 + #[prost(message, repeated, tag = "1860")] + pub bedjaofbokb: ::prost::alloc::vec::Vec, + /// offset: 116 + #[prost(enumeration = "Jkoaglnmgcc", tag = "1509")] + pub reason: i32, + /// offset: 120 + #[prost(uint32, tag = "669")] + pub mfijbhakald: u32, + /// offset: 64 + #[prost(message, repeated, tag = "11")] + pub mbadiiapnjm: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "3")] + pub jbhdbelfefn: ::prost::alloc::vec::Vec, + /// offset: 125 + #[prost(bool, tag = "1775")] + pub dhoifncmimi: bool, + /// offset: 112 + #[prost(uint32, tag = "4")] + pub jnongfgaflj: u32, + /// offset: 88 + #[prost(message, repeated, tag = "1899")] + pub cjjkhnmifdn: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "1727")] + pub lcnmhgkefie: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub khhopfjphec: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub jcebhbdbdle: ::prost::alloc::vec::Vec, + /// offset: 124 + #[prost(bool, tag = "367")] + pub ojdobchgkmj: bool, + /// offset: 72 + #[prost(message, repeated, tag = "116")] + pub bkihcaalbnb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "16")] + pub pdemmpcifen: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8597)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eboahjgekmp { + /// offset: 56 + #[prost(uint32, tag = "6")] + pub aanhjndjdih: u32, + /// offset: 32 + #[prost(uint32, tag = "509")] + pub kbakhgflecf: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub oocaidibbhc: u32, + /// offset: 60 + #[prost(uint32, tag = "9")] + pub ojmnmdecknj: u32, + /// offset: 52 + #[prost(uint32, tag = "12")] + pub pbckollnjmf: u32, + /// offset: 48 + #[prost(uint32, tag = "611")] + pub nfmpmdeokck: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub kckbbfepffi: u32, + /// offset: 24 + #[prost(message, optional, tag = "671")] + pub tourn_finish_info: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub ckkjpnpldfn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Afhgpmcopbn { + /// offset: 16 + #[prost(uint32, repeated, tag = "3")] + pub dljchjijllb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Piehihpkkpi { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub eagcnbjldpp: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub oocaidibbhc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Icacgfcfikc { + /// offset: 52 + #[prost(uint32, tag = "7")] + pub aanhjndjdih: u32, + /// offset: 32 + #[prost(message, optional, tag = "4")] + pub mdhjkcklehb: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "2")] + pub bbkmdehglng: u32, + /// offset: 48 + #[prost(uint32, tag = "13")] + pub cedakglkcih: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub exp: ::core::option::Option, + /// offset: 60 + #[prost(uint32, tag = "10")] + pub oocaobicbab: u32, + /// offset: 40 + #[prost(message, optional, tag = "12")] + pub gapnehkbjlp: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Afbakkmbkjf { + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub gapnehkbjlp: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "8")] + pub ifbflmeieal: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Okcboemeoin { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub pdnfpddbadm: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub pdpfmffkjoj: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8533)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fenmmjbpkki { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub gjjkacomphd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8557)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nbkmjnmlbbo { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub gjjkacomphd: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8413)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Epmnhlaejod { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub gjjkacomphd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8505)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mmjbhompnnh { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub gjjkacomphd: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8523)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jdjfnmfehng {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8406)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Femlpcafcfe { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8472)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cnoingllhmb {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8566)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gmaajcpdfbf { /// offset: 24 #[prost(uint32, tag = "15")] pub retcode: u32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ckmehnaaigh { - /// offset: 36 - #[prost(uint32, tag = "4")] - pub pos: u32, - /// offset: 32 - #[prost(bool, tag = "2")] - pub jddcgechgde: bool, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub mhkhaclnbpm: u32, +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ahmadphlpfp { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub item_count: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub ffcogpomcpg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub llpbffmeacn: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8536)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fagafkidikb { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub item_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Djkcklgagen { + /// offset: 32 + #[prost(uint32, repeated, tag = "3")] + pub illnjbafocd: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub ibhnpaaohbl: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ckbdjgpaneo { + /// offset: 32 + #[prost(uint32, repeated, tag = "13")] + pub pjioagkbkbj: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub cmdjknkahfn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pagahhnoebn { + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub icinpoageja: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub jfagojpldgf: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fcjcgflbihn { + /// offset: 24 + #[prost(uint32, repeated, tag = "14")] + pub ljadelaepln: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub iablaillgij: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Plgnljcdbce { + /// offset: 32 + #[prost(uint32, repeated, tag = "7")] + pub nnnjeiidgpc: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub anngfejaanl: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kphlcleiedd { + /// offset: 40 + #[prost(message, optional, tag = "3")] + pub fmjgdohgjgi: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub mapnonigocp: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "13")] + pub lolpjljfiab: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "1")] + pub oekepiaoiah: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub gcmamolbifn: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8515)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kfhnbiknlbh { + #[prost(oneof = "kfhnbiknlbh::Mlneddhojgc", tags = "547, 1255, 75, 558, 1382")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `KFHNBIKNLBH`. +pub mod kfhnbiknlbh { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 24 + #[prost(message, tag = "547")] + Kebimboilii(super::Djkcklgagen), + /// offset: 24 + #[prost(message, tag = "1255")] + Bjabmailbdl(super::Ckbdjgpaneo), + /// offset: 24 + #[prost(message, tag = "75")] + Ookghphaajj(super::Pagahhnoebn), + /// offset: 24 + #[prost(message, tag = "558")] + Nmhbhmlkbkg(super::Fcjcgflbihn), + /// offset: 24 + #[prost(message, tag = "1382")] + Omnbibnpkec(super::Plgnljcdbce), + } +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8506)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ndlgfkkelln { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub ikhgkgamcoa: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mlefbimljbg { + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub gpdcnhmcdio: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(int64, tag = "3")] + pub end_time: i64, + /// offset: 40 + #[prost(int64, tag = "13")] + pub dkhoeiijhip: i64, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub kckbbfepffi: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8441)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kpmlkcdifbe { + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub bpkcpbcbkad: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8496)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cbpgkbbbeep { + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub ifbflmeieal: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8531)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nenocoghfon { + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub ifbflmeieal: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gkeemepaemp { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub glkpohjfbkb: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub tourn_finish_info: ::core::option::Option, + /// offset: 40 + #[prost(int64, tag = "15")] + pub blkcpcmceoe: i64, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8507)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kngccckigdf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8480)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hehobipohcp { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub mdagigoekoc: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8567)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bnaneknnmgd {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8518)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Okjbbhpffan { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nlcbcmlbbae { + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub cmdjknkahfn: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(bool, tag = "13")] + pub genndaainig: bool, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub ojhffmmafgg: u32, /// offset: 44 #[prost(uint32, tag = "3")] - pub libkldalhjp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bnmcokhhaam { - /// offset: 40 - #[prost(string, tag = "14")] - pub fhkbjncmekf: ::prost::alloc::string::String, + pub pos: u32, /// offset: 32 - #[prost(message, repeated, tag = "13")] - pub fcanhlmbjei: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(string, tag = "1")] - pub name: ::prost::alloc::string::String, - /// offset: 48 - #[prost(uint32, tag = "3")] - pub slot_id: u32, + #[prost(uint32, tag = "7")] + pub bklmihhlfog: u32, } -/// Obf: KIGCNIPFDOK #[derive(proto_derive::CmdID)] -#[cmdid(8416)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightGetFormationCsReq {} -/// Obf: KNNKADOLCMH -#[derive(proto_derive::CmdID)] -#[cmdid(8447)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightGetFormationScRsp { +pub struct Klhpkiomaik { /// offset: 32 - #[prost(uint32, tag = "5")] - pub ipbbendmnpp: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub lcpoaodbfgh: ::prost::alloc::vec::Vec, -} -/// Obf: MIHCPAHCDIE -#[derive(proto_derive::CmdID)] -#[cmdid(8534)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightAddFormationCsReq { - /// offset: 24 #[prost(string, tag = "3")] - pub fhkbjncmekf: ::prost::alloc::string::String, + pub plieilcloli: ::prost::alloc::string::String, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub dice_slot_id: u32, + /// offset: 40 + #[prost(string, tag = "13")] + pub name: ::prost::alloc::string::String, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub emkpnnamcnj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dkejemkmiap {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8443)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dlkhmmljhca { + /// offset: 36 + #[prost(uint32, tag = "12")] + pub mgfceaeofmb: u32, /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub nkaffnaepjo: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Npnhmifolbi { + /// offset: 16 #[prost(message, repeated, tag = "7")] - pub fcanhlmbjei: ::prost::alloc::vec::Vec, + pub emkpnnamcnj: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(string, tag = "14")] + pub name: ::prost::alloc::string::String, + /// offset: 32 + #[prost(string, tag = "6")] + pub plieilcloli: ::prost::alloc::string::String, /// offset: 48 #[prost(uint32, tag = "5")] - pub slot_id: u32, - /// offset: 40 - #[prost(string, tag = "10")] - pub name: ::prost::alloc::string::String, + pub dice_slot_id: u32, } -/// Obf: KAKFPCAIODI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8592)] +#[cmdid(8446)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightAddFormationScRsp { +pub struct Ekooanidbpp { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub alhnhdaneod: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ganfgjifpfb { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub amjnjppanpi: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8487)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ahbffeplbmd { /// offset: 32 #[prost(uint32, tag = "3")] pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub nlneegnkghc: ::core::option::Option, -} -/// Obf: BPJAHFPCFCD -#[derive(proto_derive::CmdID)] -#[cmdid(8581)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdateFormationCsReq { /// offset: 16 - #[prost(message, optional, tag = "10")] - pub hohhollgign: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub doodojhdpni: ::core::option::Option, } -/// Obf: EIGPBPLEKDD #[derive(proto_derive::CmdID)] -#[cmdid(8434)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdateFormationScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub cammdaaonli: ::core::option::Option, -} -/// Obf: KFKFPFDOCDF -#[derive(proto_derive::CmdID)] -#[cmdid(8486)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightDeleteFormationCsReq { +pub struct Jjepjlogmca { /// offset: 24 - #[prost(uint32, tag = "7")] - pub slot_id: u32, + #[prost(uint32, tag = "11")] + pub dice_slot_id: u32, } -/// Obf: CIDBIHLBJNK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8463)] +#[cmdid(8448)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightDeleteFormationScRsp { +pub struct Pghhjgllokp { /// offset: 32 #[prost(uint32, tag = "7")] - pub bndofaoaipb: u32, + pub mgfceaeofmb: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub olbpcnnielf: u32, /// offset: 28 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub ipbbendmnpp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pdofecediac { - /// offset: 24 #[prost(uint32, tag = "13")] - pub adfdcokeldg: u32, + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ndgahdgfpob { /// offset: 28 - #[prost(enumeration = "pdofecediac::jnddakbdkib::Cnmjfgelnil", tag = "12")] + #[prost(uint32, tag = "3")] + pub filehpmbidm: u32, + /// offset: 24 + #[prost(enumeration = "ndgahdgfpob::fngdhebcdbl::Mogbjeacelm", tag = "11")] pub r#type: i32, } -/// Nested message and enum types in `PDOFECEDIAC`. -pub mod pdofecediac { +/// Nested message and enum types in `NDGAHDGFPOB`. +pub mod ndgahdgfpob { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] - pub struct Jnddakbdkib {} - /// Nested message and enum types in `JNDDAKBDKIB`. - pub mod jnddakbdkib { + pub struct Fngdhebcdbl {} + /// Nested message and enum types in `FNGDHEBCDBL`. + pub mod fngdhebcdbl { #[derive(proto_derive::CmdID)] #[derive( Clone, @@ -22937,10799 +23835,10892 @@ pub mod pdofecediac { ::prost::Enumeration )] #[repr(i32)] - pub enum Cnmjfgelnil { - KGridFightFormationOpNone = 0, - KGridFightFormationOpApply = 1, - KGridFightFormationOpCancel = 2, + pub enum Mogbjeacelm { + Pmhgcncpdbc = 0, + Bdgkdmpbemo = 1, + Nioahkmpped = 2, } - impl Cnmjfgelnil { + impl Mogbjeacelm { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightFormationOpNone => "kGridFightFormationOpNone", - Self::KGridFightFormationOpApply => "kGridFightFormationOpApply", - Self::KGridFightFormationOpCancel => "kGridFightFormationOpCancel", + Self::Pmhgcncpdbc => "MOGBJEACELM_PMHGCNCPDBC", + Self::Bdgkdmpbemo => "MOGBJEACELM_BDGKDMPBEMO", + Self::Nioahkmpped => "MOGBJEACELM_NIOAHKMPPED", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightFormationOpNone" => Some(Self::KGridFightFormationOpNone), - "kGridFightFormationOpApply" => { - Some(Self::KGridFightFormationOpApply) - } - "kGridFightFormationOpCancel" => { - Some(Self::KGridFightFormationOpCancel) - } + "MOGBJEACELM_PMHGCNCPDBC" => Some(Self::Pmhgcncpdbc), + "MOGBJEACELM_BDGKDMPBEMO" => Some(Self::Bdgkdmpbemo), + "MOGBJEACELM_NIOAHKMPPED" => Some(Self::Nioahkmpped), _ => None, } } } } } -/// Obf: PDMMDBIAFDH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8571)] +#[cmdid(8442)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GridFightApplyFormationScRsp { +pub struct Jocpdpnobna { /// offset: 28 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] + pub mgfceaeofmb: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub ipbbendmnpp: u32, } -/// Obf: IICOGHAJDNE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8451)] +#[cmdid(8424)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdateGameRefCsReq { - /// offset: 24 - #[prost(string, tag = "3")] - pub nheocgijekn: ::prost::alloc::string::String, +pub struct Dbnegfomojg { + /// offset: 16 + #[prost(string, tag = "11")] + pub ogpbpbafipb: ::prost::alloc::string::String, } -/// Obf: COCBPBJAOEA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8577)] +#[cmdid(8410)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GridFightUpdateGameRefScRsp { +pub struct Kpbgjhihkha { /// offset: 24 - #[prost(string, tag = "12")] - pub nheocgijekn: ::prost::alloc::string::String, + #[prost(string, tag = "8")] + pub ogpbpbafipb: ::prost::alloc::string::String, /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "6")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oicenkljicg { +pub struct HeartDialDialogueInfo { /// offset: 24 - #[prost(bool, tag = "14")] - pub fbkekcgelbe: bool, + #[prost(bool, tag = "10")] + pub dfbkfamiokj: bool, /// offset: 28 - #[prost(uint32, tag = "8")] - pub dgaklnofdpp: u32, + #[prost(uint32, tag = "3")] + pub dialogue_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Maiaboommnn { - /// offset: 25 - #[prost(bool, tag = "3")] - pub jmpejfickjo: bool, +pub struct HeartDialScriptInfo { /// offset: 32 - #[prost(enumeration = "Afefbpablhm", tag = "13")] + #[prost(enumeration = "HeartDialStepType", tag = "8")] pub step: i32, /// offset: 28 - #[prost(enumeration = "Bfdflhekfgk", tag = "15")] - pub jiimeljaone: i32, + #[prost(bool, tag = "1")] + pub kndgnkpnopa: bool, /// offset: 24 + #[prost(enumeration = "HeartDialEmotionType", tag = "7")] + pub cur_emotion_type: i32, + /// offset: 29 #[prost(bool, tag = "4")] - pub kkgfigchkib: bool, + pub mdplgfblmop: bool, /// offset: 36 - #[prost(uint32, tag = "10")] - pub clkeoehplng: u32, + #[prost(uint32, tag = "14")] + pub script_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mmeinfmdjfg { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub kbmmmmckjni: u32, +pub struct Obhecaolbnn { /// offset: 24 - #[prost(uint32, tag = "11")] - pub clkeoehplng: u32, + #[prost(uint32, tag = "12")] + pub goadpmilpih: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub script_id: u32, } -/// Obf: POKEHOEGBEE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6399)] +#[cmdid(6347)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetHeartDialInfoCsReq {} -/// Obf: GHJINMKJLDG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6323)] +#[cmdid(6309)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetHeartDialInfoScRsp { + /// offset: 48 + #[prost(enumeration = "HeartDialUnlockStatus", tag = "6")] + pub unlock_status: i32, + /// offset: 32 + #[prost(message, repeated, tag = "7")] + pub jonofhiohck: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub dialogue_info_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "15")] + pub script_info_list: ::prost::alloc::vec::Vec, /// offset: 52 #[prost(uint32, tag = "13")] pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "2")] - pub emdmhabinkg: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub ocmoejidlam: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(enumeration = "Ooehgmemkoi", tag = "10")] - pub nfeojaajmke: i32, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub aboigbjnoho: ::prost::alloc::vec::Vec, } -/// Obf: FIBDHFCJAMH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6398)] +#[cmdid(6338)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangeScriptEmotionCsReq { /// offset: 24 - #[prost(enumeration = "Bfdflhekfgk", tag = "11")] - pub ebnofhdngdh: i32, + #[prost(uint32, tag = "11")] + pub script_id: u32, /// offset: 28 - #[prost(uint32, tag = "4")] - pub fihncoabela: u32, + #[prost(uint32, tag = "14")] + pub ahggbpgllme: u32, /// offset: 32 - #[prost(uint32, tag = "12")] - pub clkeoehplng: u32, + #[prost(enumeration = "HeartDialEmotionType", tag = "9")] + pub target_emotion_type: i32, } -/// Obf: LNOOICPAKND +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6365)] +#[cmdid(6317)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangeScriptEmotionScRsp { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub clkeoehplng: u32, - /// offset: 28 - #[prost(enumeration = "Bfdflhekfgk", tag = "5")] - pub kefkogklefc: i32, /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "12")] + pub script_id: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] pub retcode: u32, + /// offset: 28 + #[prost(enumeration = "HeartDialEmotionType", tag = "1")] + pub emotion_type: i32, } -/// Obf: GMPJACIOCAI #[derive(proto_derive::CmdID)] -#[cmdid(6383)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SubmitEmotionItemCsReq { /// offset: 32 - #[prost(uint32, tag = "1")] - pub fihncoabela: u32, + #[prost(uint32, tag = "9")] + pub script_id: u32, /// offset: 36 - #[prost(uint32, tag = "10")] - pub clkeoehplng: u32, + #[prost(uint32, tag = "4")] + pub ahggbpgllme: u32, /// offset: 16 - #[prost(message, optional, tag = "9")] + #[prost(message, optional, tag = "7")] pub item_list: ::core::option::Option, } -/// Obf: MJOECNKJGIP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6386)] +#[cmdid(6311)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitEmotionItemScRsp { /// offset: 24 - #[prost(uint32, tag = "12")] - pub clkeoehplng: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "6")] pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub script_id: u32, } -/// Obf: AFDLHLDCFEL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6394)] +#[cmdid(6389)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishEmotionDialoguePerformanceCsReq { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub clkeoehplng: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub dgaklnofdpp: u32, /// offset: 24 - #[prost(uint32, tag = "9")] - pub fihncoabela: u32, + #[prost(uint32, tag = "5")] + pub script_id: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub dialogue_id: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub ahggbpgllme: u32, } -/// Obf: PJBHDGOFNCJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6352)] +#[cmdid(6320)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishEmotionDialoguePerformanceScRsp { /// offset: 16 - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "15")] pub reward_list: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub dgaklnofdpp: u32, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "11")] - pub clkeoehplng: u32, + #[prost(uint32, tag = "3")] + pub dialogue_id: u32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub script_id: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub retcode: u32, } -/// Obf: BKGEPFIPGEE +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6319)] +#[cmdid(6395)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeartDialScriptChangeScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub ocmoejidlam: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(enumeration = "Ooehgmemkoi", tag = "9")] - pub nfeojaajmke: i32, /// offset: 16 #[prost(message, repeated, tag = "7")] - pub nglhcmbghio: ::prost::alloc::vec::Vec, + pub jonofhiohck: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub changed_script_info_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(enumeration = "HeartDialUnlockStatus", tag = "11")] + pub unlock_status: i32, /// offset: 40 - #[prost(message, repeated, tag = "11")] - pub pkflgdfdmoi: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub changed_dialogue_info_list: ::prost::alloc::vec::Vec, } -/// Obf: ECKBENNIBJH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6344)] +#[cmdid(6391)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeartDialTraceScriptCsReq { /// offset: 24 - #[prost(message, optional, tag = "4")] - pub agoipfbddpo: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub cimpkacmhbb: ::core::option::Option, } -/// Obf: BKIOMJGMMNE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6381)] +#[cmdid(6361)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct HeartDialTraceScriptScRsp { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub agoipfbddpo: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "4")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub cimpkacmhbb: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dejakpoepkn { +pub struct Clepogpiimd { /// offset: 32 #[prost(uint32, tag = "7")] - pub cgfgfmgdpnj: u32, + pub epbnadboiil: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub lfpmaobgnen: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "5")] + pub ejpnnmdbffn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jmijjhkiblb { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub challenge_id: u32, +pub struct Hnkabdecghe { /// offset: 28 - #[prost(uint32, tag = "13")] - pub stars: u32, + #[prost(bool, tag = "14")] + pub joekpnckhge: bool, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub star: u32, /// offset: 32 - #[prost(bool, tag = "9")] - pub gjieahdbnni: bool, + #[prost(uint32, tag = "4")] + pub challenge_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct HeliobusChallengeLineup { - /// offset: 36 - #[prost(uint32, tag = "1")] - pub group_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "3")] pub skill_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub group_id: u32, } -/// Obf: BLOFCCOIGPI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5899)] +#[cmdid(5847)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusActivityDataCsReq {} -/// Obf: GJAHMIPODDJ +pub struct Olcilepilca {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5823)] +#[cmdid(5809)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusActivityDataScRsp { - /// offset: 48 - #[prost(message, repeated, tag = "7")] - pub nfdbmhppfip: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "14")] - pub iphkdelmoih: u32, - /// offset: 72 +pub struct Ffockccmhfn { + /// offset: 76 + #[prost(uint32, tag = "15")] + pub flemdligbkg: u32, + /// offset: 68 #[prost(uint32, tag = "13")] pub retcode: u32, /// offset: 64 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] + pub phase: u32, + /// offset: 60 + #[prost(uint32, tag = "9")] pub level: u32, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub imbflbgankn: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "1")] + pub nfhgojpjjhn: u32, + /// offset: 72 + #[prost(uint32, tag = "4")] + pub digdjpnaook: u32, + /// offset: 48 + #[prost(message, repeated, tag = "8")] + pub eeoboagmjgk: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub skill_info: ::core::option::Option, + /// offset: 40 + #[prost(message, repeated, tag = "3")] + pub challenge_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Igohaidkmdm { + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub piaoknkppfe: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub lmgagpcpopg: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub docemgkdgjh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hjeleoognli { + /// offset: 45 + #[prost(bool, tag = "10")] + pub omnppmpnphm: bool, + /// offset: 44 + #[prost(bool, tag = "1")] + pub mbfmngbmlpi: bool, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub icobeockmag: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub icdkpmnehkg: u32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub ldkdhhpjigb: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub fmahffahgpb: u32, /// offset: 24 #[prost(message, repeated, tag = "6")] - pub challenge_list: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(uint32, tag = "2")] - pub eenjbpmndol: u32, - /// offset: 40 - #[prost(message, repeated, tag = "8")] - pub gcljengjicm: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "11")] - pub phase: u32, - /// offset: 76 - #[prost(uint32, tag = "9")] - pub ibhaaejeehc: u32, - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub skill_info: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Goammagcijj { - /// offset: 36 - #[prost(uint32, tag = "9")] - pub eliadkdaeco: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub kmaempmoccc: u32, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub jndkooejcfc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gbjkkfhpffn { - /// offset: 44 - #[prost(uint32, tag = "13")] - pub cmhgbbhknci: u32, + pub jbjhlecbini: ::prost::alloc::vec::Vec, /// offset: 52 - #[prost(uint32, tag = "14")] - pub fclnoogehmc: u32, - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub ndjfnhfpcgd: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(bool, tag = "10")] - pub dekhdibcfab: bool, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub jfmofiidcnp: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub ihkejebceib: u32, - /// offset: 49 - #[prost(bool, tag = "2")] - pub ajciodkllml: bool, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub aknkpkpljhf: u32, -} -/// Obf: FOJPCHFHEAE -#[derive(proto_derive::CmdID)] -#[cmdid(5898)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusSnsReadCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub ihkejebceib: u32, -} -/// Obf: IBNCJDMOMLA -#[derive(proto_derive::CmdID)] -#[cmdid(5865)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusSnsReadScRsp { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub ihkejebceib: u32, -} -/// Obf: NIKFHCNKBCH -#[derive(proto_derive::CmdID)] -#[cmdid(5883)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusSnsPostCsReq { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub jfmofiidcnp: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub ihkejebceib: u32, - /// offset: 24 #[prost(uint32, tag = "4")] - pub fclnoogehmc: u32, + pub apeebljlcoo: u32, } -/// Obf: FCLCBAIENFB -#[derive(proto_derive::CmdID)] -#[cmdid(5886)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusSnsPostScRsp { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub eimcnifmlbl: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: EOPPOAPMACG -#[derive(proto_derive::CmdID)] -#[cmdid(5894)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusSnsLikeCsReq { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub ihkejebceib: u32, -} -/// Obf: GBPLDAMFEGL -#[derive(proto_derive::CmdID)] -#[cmdid(5852)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusSnsLikeScRsp { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub ihkejebceib: u32, - /// offset: 24 - #[prost(bool, tag = "10")] - pub dekhdibcfab: bool, -} -/// Obf: JDDIOABLHIF -#[derive(proto_derive::CmdID)] -#[cmdid(5819)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusSnsCommentCsReq { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub kaljkfkjffa: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub ihkejebceib: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub kmaempmoccc: u32, -} -/// Obf: JILGIBDIDMH -#[derive(proto_derive::CmdID)] -#[cmdid(5844)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusSnsCommentScRsp { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub eimcnifmlbl: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: HOAMKNEFEIL -#[derive(proto_derive::CmdID)] -#[cmdid(5881)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusSnsUpdateScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub gkfhmgmbika: ::prost::alloc::vec::Vec, -} -/// Obf: BDOBCCMPPAA -#[derive(proto_derive::CmdID)] -#[cmdid(5869)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusInfoChangedScNotify { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub iphkdelmoih: u32, - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub gkfhmgmbika: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub eenjbpmndol: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub phase: u32, -} -/// Obf: ABBAHIAPMCD -#[derive(proto_derive::CmdID)] -#[cmdid(5857)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusUpgradeLevelCsReq {} -/// Obf: KNLJNMOPHFE -#[derive(proto_derive::CmdID)] -#[cmdid(5815)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusUpgradeLevelScRsp { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: BPFFNJBECNE -#[derive(proto_derive::CmdID)] -#[cmdid(5892)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusUnlockSkillScNotify { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub cgfgfmgdpnj: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub skill_id: u32, -} -/// Obf: IJAKPFAHLJJ -#[derive(proto_derive::CmdID)] -#[cmdid(5877)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusEnterBattleCsReq { - /// offset: 32 - #[prost(uint32, tag = "7")] - pub event_id: u32, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub skill_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub avatar_id_list: ::prost::alloc::vec::Vec, -} -/// Obf: INMBBBCGIGE -#[derive(proto_derive::CmdID)] -#[cmdid(5805)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusEnterBattleScRsp { - /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub battle_info: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub event_id: u32, -} -/// Obf: PFNLNOCJBLA -#[derive(proto_derive::CmdID)] -#[cmdid(5837)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusSelectSkillCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub skill_id: u32, -} -/// Obf: OKMBJEHOIOG -#[derive(proto_derive::CmdID)] -#[cmdid(5868)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusSelectSkillScRsp { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub skill_id: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -/// Obf: GNJICHMOCML +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5838)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeliobusChallengeUpdateScNotify { +pub struct Fhdcafmeflj { /// offset: 24 - #[prost(message, optional, tag = "12")] - pub dddikpnnble: ::core::option::Option, + #[prost(uint32, tag = "15")] + pub icdkpmnehkg: u32, } -/// Obf: CIJPAMOOMIG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5803)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusLineupUpdateScNotify { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub lineup: ::core::option::Option, +#[cmdid(5817)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Llmjhihlbad { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub icdkpmnehkg: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub retcode: u32, } -/// Obf: JJCKLKANLBK +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5851)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kmhcomiceim { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub apeebljlcoo: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub fmahffahgpb: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub icdkpmnehkg: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5811)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusStartRaidCsReq { +pub struct Nglfffncjln { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub pgmmnmfcnel: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5889)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dgmalfemgcj { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub icdkpmnehkg: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5820)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lfdihdcpjcp { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub icdkpmnehkg: u32, + /// offset: 24 + #[prost(bool, tag = "7")] + pub mbfmngbmlpi: bool, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5895)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ljfmphjckbg { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub icdkpmnehkg: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub mbelgangfpc: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub docemgkdgjh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5891)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eifabalinba { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub pgmmnmfcnel: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5861)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cnfnjcechgo { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub ejciigogjag: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5845)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mnilindcmgj { /// offset: 36 + #[prost(uint32, tag = "5")] + pub phase: u32, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub ejciigogjag: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(uint32, tag = "8")] - pub enlknpiblio: u32, + pub flemdligbkg: u32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub digdjpnaook: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5876)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Idaepkpfbea {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5852)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lcfnjlbhfba { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub level: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5850)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lgbfjciboik { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub epbnadboiil: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub skill_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5867)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Heonenlglfb { + /// offset: 36 + #[prost(uint32, tag = "12")] + pub skill_id: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub event_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "10")] + pub avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5862)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lcmimfdldih { + /// offset: 36 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub event_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aenlpphmpbk { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub skill_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5893)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lhenfpkmhmk { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub skill_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5846)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ijckoifehgo { + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub fammakbffnl: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5892)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ommhmmgbome { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub lineup: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5835)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Odelndkfbkd { + /// offset: 40 + #[prost(bool, tag = "10")] + pub is_save: bool, + /// offset: 48 + #[prost(uint32, tag = "8")] + pub skill_id: u32, /// offset: 24 #[prost(uint32, repeated, tag = "13")] pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "15")] - pub jgeaegmhdoc: bool, - /// offset: 40 + /// offset: 36 #[prost(uint32, tag = "14")] pub prop_entity_id: u32, /// offset: 44 - #[prost(uint32, tag = "7")] - pub cenifnknfnp: u32, + #[prost(uint32, tag = "5")] + pub cjemcpcjbmg: u32, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub raid_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5898)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cdlfdjhknla { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub scene: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Clhhhdjeioj { + /// offset: 28 + #[prost(uint32, tag = "4")] + pub value: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub r#type: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ficpghoohkf { + /// offset: 28 + #[prost(int32, tag = "13")] + pub value: i32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub r#type: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pnndnjclihe { + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub hdpfgmeclak: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bhalkbmkngo { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub id: u32, + /// offset: 32 + #[prost(enumeration = "Mckifmnocld", tag = "11")] + pub r#type: i32, + /// offset: 24 + #[prost(bool, tag = "5")] + pub kjofamjnjom: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Canagjhhecl { + /// offset: 56 + #[prost(uint32, tag = "2")] + pub cajhmimnjdk: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "10")] + pub gfpapdglgma: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub agnidnpmhck: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub cbhholocjkl: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub enobmfonkon: u32, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub ofepjoiangf: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pngphkapkfh { + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub khhopfjphec: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Labebnghcnb { /// offset: 48 #[prost(uint32, tag = "11")] - pub skill_id: u32, -} -/// Obf: MFFCENPKBGH -#[derive(proto_derive::CmdID)] -#[cmdid(5829)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HeliobusStartRaidScRsp { + pub kmlbkjheghk: u32, /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub scene: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Abeekplhcnm { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub value: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub r#type: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hkdinopkpbf { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub r#type: u32, - /// offset: 28 - #[prost(int32, tag = "9")] - pub value: i32, + #[prost(message, optional, tag = "12")] + pub boooflneeof: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "7")] + pub depmbibgeip: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub lmldbihmepg: u32, + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub pidonkedoeo: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub ieeofdanpdf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pledcepgjee { - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub hldnmibklkj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oahlkcdjmac { - /// offset: 24 - #[prost(enumeration = "Jjiboilecdm", tag = "12")] - pub r#type: i32, +pub struct Hhlgfmekiei { + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub jglcoflidcp: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "7")] - pub id: u32, + #[prost(uint32, repeated, tag = "9")] + pub golglcgmkmh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ikcmbgdnhmb { + /// offset: 24 + #[prost(bool, tag = "11")] + pub is_taken_reward: bool, /// offset: 28 - #[prost(bool, tag = "3")] - pub fiigicgenki: bool, + #[prost(uint32, tag = "5")] + pub mcndakpgodl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bhlgbcdpajp { - /// offset: 40 - #[prost(message, optional, tag = "13")] - pub noflpfaennc: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "14")] - pub gdllhgengjj: u32, - /// offset: 48 - #[prost(uint32, tag = "12")] - pub dgdjjbglooh: u32, - /// offset: 56 - #[prost(uint32, tag = "2")] - pub npjcogadapi: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub poinnlikjkj: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub kngpofhnfaj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lgheonjfoph { - /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cgdkjidmgoc { - /// offset: 52 - #[prost(uint32, tag = "4")] - pub labaigdgjhl: u32, - /// offset: 40 - #[prost(message, optional, tag = "9")] - pub mhkonbijadc: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub ckoneelcped: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub ffedejcblgi: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub ajjpfbmaece: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "15")] - pub ljjkecikpjj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kpeilpnepfh { +pub struct Mkelebaebed { /// offset: 16 #[prost(uint32, repeated, tag = "4")] - pub djjhlojacki: ::prost::alloc::vec::Vec, + pub khhopfjphec: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub gggcjefeknh: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fclfnbjleid { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub pdpcdohliho: u32, - /// offset: 28 - #[prost(bool, tag = "10")] - pub is_taken_reward: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nakhnglabdg { - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, - /// offset: 16 #[prost(message, repeated, tag = "14")] - pub flcpppknkjh: ::prost::alloc::vec::Vec, + pub epldjihodkj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iepmcenjnge { +pub struct Fjdeaeafmlk { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub phpjnbbaigg: u32, /// offset: 28 - #[prost(uint32, tag = "3")] - pub nclomnehpmj: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub jelmcjbicjn: u32, -} -/// Obf: BCKCBABCCJN -#[derive(proto_derive::CmdID)] -#[cmdid(9026)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetHipplenDataCsReq {} -/// Obf: HBCCFNFHJML -#[derive(proto_derive::CmdID)] -#[cmdid(9028)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetHipplenDataScRsp { - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub ifplljjhbii: ::core::option::Option, - /// offset: 48 - #[prost(bool, tag = "9")] - pub okejjiohjgh: bool, - /// offset: 52 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub ojahgmcpmak: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "14")] - pub meicpgdiooe: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "2")] - pub epedggihmmf: u32, -} -/// Obf: PIGNGHNHMLP -#[derive(proto_derive::CmdID)] -#[cmdid(9021)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetHipplenInheritCsReq {} -/// Obf: ELJABIAFBNM -#[derive(proto_derive::CmdID)] -#[cmdid(9038)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetHipplenInheritScRsp { - /// offset: 32 #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, + pub ihlpjjmjlng: u32, } -/// Obf: KKDEDMPPAKJ +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9019)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pfcghodonek {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9002)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mlgecidinhm { + /// offset: 40 + #[prost(message, optional, tag = "1")] + pub jfdnechladp: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub fcakciafjbo: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub lklmeadhmmo: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "12")] + pub imfbhikolhf: u32, + /// offset: 52 + #[prost(bool, tag = "5")] + pub ahjommnbogf: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9048)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jihbnkncjkh {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(9005)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetHipplenAgendaCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub kngpofhnfaj: ::prost::alloc::vec::Vec, +pub struct Lkjmmajjcbk { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub khhopfjphec: ::prost::alloc::vec::Vec, } -/// Obf: PLOGFMOOACO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9027)] +#[cmdid(9035)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetHipplenAgendaScRsp { +pub struct Gmjihgdonde { + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub ofepjoiangf: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9033)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ajdbhhlklbb { + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub ofepjoiangf: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "12")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub kngpofhnfaj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ojagplfldpn { +pub struct Hkaibhinjkn { /// offset: 24 - #[prost(uint32, tag = "9")] - pub oeihdcdppld: u32, + #[prost(uint32, tag = "14")] + pub jnahhpmdpgf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ccgmbddinad { +pub struct Gmjijkjapeh { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Miabdmjebef { +pub struct Poacaopmkgb { + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub bdjbhdfchig: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(message, repeated, tag = "8")] - pub gepfpbohpjg: ::prost::alloc::vec::Vec, - /// offset: 24 #[prost(uint32, repeated, tag = "11")] - pub ocnmcfggfla: ::prost::alloc::vec::Vec, + pub flhgeengkkf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ijielcelfdb {} -/// Obf: BODFFMHPBKA +pub struct Dngnmchjanm {} +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(9020)] +#[cmdid(9031)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SettleHipplenWorkCsReq { - #[prost(oneof = "settle_hipplen_work_cs_req::Emokphngbfa", tags = "8, 3, 6, 1")] - pub emokphngbfa: ::core::option::Option, +pub struct Gigamcjgjkp { + #[prost(oneof = "gigamcjgjkp::Idooakegpgd", tags = "13, 7, 9, 3")] + pub idooakegpgd: ::core::option::Option, } -/// Nested message and enum types in `SettleHipplenWorkCsReq`. -pub mod settle_hipplen_work_cs_req { +/// Nested message and enum types in `GIGAMCJGJKP`. +pub mod gigamcjgjkp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Emokphngbfa { + pub enum Idooakegpgd { /// offset: 16 - #[prost(message, tag = "8")] - Pijgeagemim(super::Ojagplfldpn), + #[prost(message, tag = "13")] + Lnimjjbdiig(super::Hkaibhinjkn), /// offset: 16 - #[prost(message, tag = "3")] - Diigfnkfjlh(super::Ccgmbddinad), - /// offset: 16 - #[prost(message, tag = "6")] - Gkejnokiogb(super::Miabdmjebef), - /// offset: 16 - #[prost(message, tag = "1")] - Elceaohngck(super::Ijielcelfdb), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nhmndmbkhcm { - /// offset: 36 - #[prost(uint32, tag = "12")] - pub ckoneelcped: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub oeihdcdppld: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub ondhnjpbbno: u32, - /// offset: 32 - #[prost(int32, tag = "9")] - pub bgdpfefcfaj: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mjpghfnjckk { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub oeihdcdppld: u32, - /// offset: 32 - #[prost(int32, tag = "13")] - pub bgdpfefcfaj: i32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub ondhnjpbbno: u32, -} -/// Obf: EDPGKANELFE -#[derive(proto_derive::CmdID)] -#[cmdid(9044)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SettleHipplenWorkScRsp { - /// offset: 48 - #[prost(message, repeated, tag = "11")] - pub obefekkpgme: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub ffedejcblgi: ::core::option::Option, - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub kngpofhnfaj: ::prost::alloc::vec::Vec, - #[prost(oneof = "settle_hipplen_work_sc_rsp::Akkjgoacnpn", tags = "6, 10")] - pub akkjgoacnpn: ::core::option::Option, -} -/// Nested message and enum types in `SettleHipplenWorkScRsp`. -pub mod settle_hipplen_work_sc_rsp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Akkjgoacnpn { - /// offset: 16 - #[prost(message, tag = "6")] - Pijgeagemim(super::Nhmndmbkhcm), - /// offset: 16 - #[prost(message, tag = "10")] - Gopijhedhff(super::Mjpghfnjckk), - } -} -/// Obf: DCLPEKNIABL -#[derive(proto_derive::CmdID)] -#[cmdid(9001)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HipplenAgendaResultScNotify { - /// offset: 56 - #[prost(message, optional, tag = "11")] - pub eiijhhnolha: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "9")] - pub endhplfoeob: ::core::option::Option, - /// offset: 72 - #[prost(bool, tag = "3")] - pub lkfncnlehhj: bool, - /// offset: 48 - #[prost(uint32, repeated, tag = "13")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub ghcnechdenl: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "12")] - pub kngpofhnfaj: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub meicpgdiooe: ::core::option::Option, -} -/// Obf: JGIPDMAHPLN -#[derive(proto_derive::CmdID)] -#[cmdid(9045)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HipplenCycleResultScNotify { - /// offset: 68 - #[prost(uint32, tag = "14")] - pub epedggihmmf: u32, - /// offset: 64 - #[prost(uint32, tag = "6")] - pub pdpcdohliho: u32, - /// offset: 48 - #[prost(message, repeated, tag = "3")] - pub fghebiaphmc: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "10")] - pub djjhlojacki: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub status_info: ::core::option::Option, - /// offset: 40 - #[prost(message, repeated, tag = "7")] - pub nmeeofkcncj: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, -} -/// Obf: PBJPIHKBLEP -#[derive(proto_derive::CmdID)] -#[cmdid(9043)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct OpenHipplenCycleCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub jhnkmohlbpj: u32, -} -/// Obf: KBGLDINBPBL -#[derive(proto_derive::CmdID)] -#[cmdid(9003)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct OpenHipplenCycleScRsp { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub meicpgdiooe: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub epedggihmmf: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: FPKLEKJMFOE -#[derive(proto_derive::CmdID)] -#[cmdid(9023)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetHipplenOutfitCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub lofmhjhjgeh: u32, -} -/// Obf: JKLHCLCIFCO -#[derive(proto_derive::CmdID)] -#[cmdid(9019)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetHipplenOutfitScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub gggcjefeknh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: EMEKMPMHMCM -#[derive(proto_derive::CmdID)] -#[cmdid(9030)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HipplenTraitUnlockScNotify { - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub fjhiofaklib: ::prost::alloc::vec::Vec, -} -/// Obf: FEEIGBKNOEM -#[derive(proto_derive::CmdID)] -#[cmdid(9011)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeHipplenEndingRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub pdpcdohliho: u32, -} -/// Obf: NOHPNLBEKLC -#[derive(proto_derive::CmdID)] -#[cmdid(9029)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeHipplenEndingRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub pdpcdohliho: u32, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub reward_list: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mkmdmgadlme { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub lofmhjhjgeh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dhppfnclind { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub pdpcdohliho: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fnncijfhejk { - #[prost(oneof = "fnncijfhejk::Info", tags = "9, 1")] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `FNNCIJFHEJK`. -pub mod fnncijfhejk { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Info { + #[prost(message, tag = "7")] + Pigonpefjfd(super::Gmjijkjapeh), /// offset: 16 #[prost(message, tag = "9")] - Gdpjdlbpbni(super::Mkmdmgadlme), + Bdojopdonfm(super::Poacaopmkgb), /// offset: 16 - #[prost(message, tag = "1")] - Negfdjcjkea(super::Dhppfnclind), + #[prost(message, tag = "3")] + Gbmjnkdljna(super::Dngnmchjanm), } } -/// Obf: BOIMEADNAPG #[derive(proto_derive::CmdID)] -#[cmdid(9035)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HipplenChangeScNotify { +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ldfealmclgn { + /// offset: 36 + #[prost(uint32, tag = "13")] + pub lmldbihmepg: u32, + /// offset: 28 + #[prost(int32, tag = "9")] + pub kflogjkffof: i32, /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub leadmneimdp: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub jnahhpmdpgf: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub cfalcimdddh: u32, } -/// Obf: PACKIMPJBPL #[derive(proto_derive::CmdID)] -#[cmdid(599)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ilfgdjhpkgn { + /// offset: 28 + #[prost(int32, tag = "1")] + pub kflogjkffof: i32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub cfalcimdddh: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub jnahhpmdpgf: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9025)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fbphnlfdfae { + /// offset: 56 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub pplhnkebnad: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "5")] + pub ofepjoiangf: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub depmbibgeip: ::core::option::Option, + #[prost(oneof = "fbphnlfdfae::Kdfbgipbchn", tags = "3, 15")] + pub kdfbgipbchn: ::core::option::Option, +} +/// Nested message and enum types in `FBPHNLFDFAE`. +pub mod fbphnlfdfae { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Kdfbgipbchn { + /// offset: 48 + #[prost(message, tag = "3")] + Lnimjjbdiig(super::Ldfealmclgn), + /// offset: 48 + #[prost(message, tag = "15")] + Lgnlnhdbdmk(super::Ilfgdjhpkgn), + } +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(9046)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jbgbomddoen { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub pfjlgpfgmef: ::core::option::Option, + /// offset: 32 + #[prost(uint32, repeated, tag = "10")] + pub oofkfdhaldb: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(bool, tag = "8")] + pub papojegocnn: bool, + /// offset: 56 + #[prost(message, optional, tag = "14")] + pub lklmeadhmmo: ::core::option::Option, + /// offset: 48 + #[prost(uint32, repeated, tag = "9")] + pub khhopfjphec: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, optional, tag = "4")] + pub ipmimcanmpc: ::core::option::Option, + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub ofepjoiangf: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(9017)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ohfabpdbide { + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub golglcgmkmh: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "5")] + pub imfbhikolhf: u32, + /// offset: 40 + #[prost(message, optional, tag = "14")] + pub bffhfobnbfe: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub khhopfjphec: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "11")] + pub mcndakpgodl: u32, + /// offset: 48 + #[prost(message, repeated, tag = "12")] + pub jlkibdmahfd: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub bdjenkokiak: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9012)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jbfcbgjadoa { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub lodfbklaaag: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9009)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mchdfohhblf { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub lklmeadhmmo: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub imfbhikolhf: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9013)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ijjlbekhico { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub pfnkiobgfac: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9043)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mhoajajnbgh { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "14")] + pub jglcoflidcp: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(9007)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Imkpbfnlmbj { + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub khhopfjphec: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(9027)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjjafgibndi { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub mcndakpgodl: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(9010)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pklffnmiian { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub mcndakpgodl: u32, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub reward_list: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fhilpaoganl { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub pfnkiobgfac: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Afaklhlljnm { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub mcndakpgodl: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ohjljmgkpnf { + #[prost(oneof = "ohjljmgkpnf::Mlneddhojgc", tags = "10, 15")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `OHJLJMGKPNF`. +pub mod ohjljmgkpnf { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 24 + #[prost(message, tag = "10")] + Jkeagpbnldi(super::Fhilpaoganl), + /// offset: 24 + #[prost(message, tag = "15")] + Fceomoffpmo(super::Afaklhlljnm), + } +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(9050)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Anpnfcfddla { + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub eamakkonfje: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(547)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBagCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Equipment { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub equip_avatar_id: u32, /// offset: 36 #[prost(uint32, tag = "2")] - pub level: u32, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub tid: u32, - /// offset: 28 + pub rank: u32, + /// offset: 24 #[prost(uint32, tag = "1")] - pub promotion: u32, + pub dress_avatar_id: u32, + /// offset: 28 + #[prost(bool, tag = "14")] + pub is_protected: bool, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub level: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub tid: u32, /// offset: 48 - #[prost(uint32, tag = "11")] - pub exp: u32, + #[prost(uint32, tag = "8")] + pub unique_id: u32, /// offset: 52 #[prost(uint32, tag = "4")] - pub unique_id: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub rank: u32, - /// offset: 40 - #[prost(bool, tag = "15")] - pub is_protected: bool, + pub promotion: u32, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub exp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Relic { - /// offset: 44 - #[prost(uint32, tag = "11")] - pub unique_id: u32, - /// offset: 64 - #[prost(bool, tag = "2")] + /// offset: 69 + #[prost(bool, tag = "11")] pub is_discarded: bool, - /// offset: 52 - #[prost(uint32, tag = "10")] + /// offset: 48 + #[prost(uint32, tag = "13")] + pub dress_avatar_id: u32, + /// offset: 60 + #[prost(uint32, tag = "2")] pub main_affix_id: u32, - /// offset: 65 - #[prost(bool, tag = "5")] + /// offset: 32 + #[prost(message, repeated, tag = "9")] + pub reforge_sub_affix_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "15")] + pub tid: u32, + /// offset: 68 + #[prost(bool, tag = "7")] pub is_protected: bool, /// offset: 56 - #[prost(uint32, tag = "4")] - pub tid: u32, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub reroll_affix_list: ::prost::alloc::vec::Vec, - /// offset: 48 #[prost(uint32, tag = "6")] - pub level: u32, - /// offset: 68 - #[prost(uint32, tag = "15")] - pub equip_avatar_id: u32, - /// offset: 32 - #[prost(message, repeated, tag = "13")] - pub sub_affix_list: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "8")] - pub ekfheifljae: u32, - /// offset: 40 + pub reforge_block_sub_affix_id: u32, + /// offset: 52 + #[prost(uint32, tag = "14")] + pub unique_id: u32, + /// offset: 44 #[prost(uint32, tag = "3")] pub exp: u32, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub level: u32, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub sub_affix_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Material { + /// offset: 24 + #[prost(uint64, tag = "1")] + pub expire_time: u64, /// offset: 36 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "10")] pub num: u32, /// offset: 32 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub tid: u32, - /// offset: 24 - #[prost(uint64, tag = "10")] - pub expire_time: u64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WaitDelResource { /// offset: 24 - #[prost(uint32, tag = "4")] - pub num: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub tid: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Material0 { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub tid: u32, - /// offset: 24 - #[prost(uint64, tag = "2")] - pub expire_time: u64, /// offset: 36 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub num: u32, + /// offset: 24 + #[prost(uint64, tag = "6")] + pub expire_time: u64, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub tid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nkdohhodnnh { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub icflihhbpmg: ::core::option::Option, +pub struct Elkcligppmb { /// offset: 32 + #[prost(message, optional, tag = "11")] + pub bnclkmpoean: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub ppcnehfkfdn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Emggiclpmam { + /// offset: 16 #[prost(message, repeated, tag = "13")] - pub fiphhbdeidf: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jlehfbohnie { + pub dgjnnkhmkjm: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint64, tag = "3")] + #[prost(uint64, tag = "5")] pub time: u64, - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub mcbcnkcnoib: ::prost::alloc::vec::Vec, } -/// Obf: KDKAFPDEBAH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(523)] +#[cmdid(509)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBagScRsp { + /// offset: 112 + #[prost(message, repeated, tag = "11")] + pub inecfgkmong: ::prost::alloc::vec::Vec, + /// offset: 88 + #[prost(uint32, repeated, tag = "12")] + pub mnaccdmmgag: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, repeated, tag = "4")] + pub equipment_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub mmkgdifohbo: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(enumeration = "TurnFoodSwitch", repeated, tag = "10")] + pub cikaijpoblh: ::prost::alloc::vec::Vec, + /// offset: 128 + #[prost(uint32, tag = "5")] + pub bamogbaibpg: u32, + /// offset: 120 + #[prost(message, repeated, tag = "1")] + pub lkjocgopakh: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(message, repeated, tag = "14")] - pub equipment_list: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(message, repeated, tag = "15")] - pub gnalanjpego: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, repeated, tag = "9")] - pub phngmeljkbe: ::prost::alloc::vec::Vec, - /// offset: 128 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 56 - #[prost(message, repeated, tag = "1")] - pub hlinmkbdknc: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub material_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "5")] - pub ifenmdpbnkg: ::prost::alloc::vec::Vec, + pub acpdhkgkmoo: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "9")] + pub egpdeldcjig: ::prost::alloc::vec::Vec, /// offset: 132 - #[prost(uint32, tag = "7")] - pub aepnidponkc: u32, - /// offset: 80 - #[prost(uint32, repeated, tag = "13")] - pub aoiihcfmfph: ::prost::alloc::vec::Vec, - /// offset: 120 - #[prost(enumeration = "TurnFoodSwitch", repeated, tag = "11")] - pub turn_food_switch: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(uint32, repeated, tag = "8")] - pub gemcacjlpij: ::prost::alloc::vec::Vec, - /// offset: 104 - #[prost(message, repeated, tag = "12")] - pub bafebhdobfj: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub fdbjlgdhcdo: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(message, repeated, tag = "3")] - pub relic_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "6")] - pub fcokffeapmi: ::prost::alloc::vec::Vec, -} -/// Obf: ENDNEFAPMMA -#[derive(proto_derive::CmdID)] -#[cmdid(598)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PromoteEquipmentCsReq { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub equipment_unique_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub item_cost_list: ::core::option::Option, -} -/// Obf: KNHLDEDJDLI -#[derive(proto_derive::CmdID)] -#[cmdid(565)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PromoteEquipmentScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: OGNBDGAGKNJ -#[derive(proto_derive::CmdID)] -#[cmdid(583)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LockEquipmentCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub equipment_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "11")] - pub is_protected: bool, -} -/// Obf: BBJEJPJONFJ -#[derive(proto_derive::CmdID)] -#[cmdid(586)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LockEquipmentScRsp { - /// offset: 24 #[prost(uint32, tag = "15")] pub retcode: u32, -} -/// Obf: ENBJJBIMIND -#[derive(proto_derive::CmdID)] -#[cmdid(594)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UseItemCsReq { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub use_item_count: u32, - /// offset: 28 - #[prost(uint32, tag = "8")] - pub optional_reward_id: u32, - /// offset: 36 - #[prost(bool, tag = "11")] - pub felciemkcgf: bool, - /// offset: 44 - #[prost(uint32, tag = "12")] - pub base_avatar_id: u32, - /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "2")] - pub mgnnkfnacni: i32, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub use_item_id: u32, -} -/// Obf: LOGJKANIBDJ -#[derive(proto_derive::CmdID)] -#[cmdid(552)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct UseItemScRsp { - /// offset: 40 - #[prost(uint32, tag = "3")] - pub gcjobeokmcp: u32, /// offset: 48 - #[prost(uint32, tag = "1")] - pub use_item_count: u32, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub use_item_id: u32, - /// offset: 52 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub return_data: ::core::option::Option, - /// offset: 32 - #[prost(uint64, tag = "8")] - pub month_card_out_date_time: u64, -} -/// Obf: CEIGIHOKMFE -#[derive(proto_derive::CmdID)] -#[cmdid(519)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RankUpEquipmentCsReq { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub item_cost_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub equipment_unique_id: u32, -} -/// Obf: DNEFPJHHCBI -#[derive(proto_derive::CmdID)] -#[cmdid(544)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RankUpEquipmentScRsp { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bepahbkljnn { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub item_cost_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub equipment_unique_id: u32, -} -/// Obf: LNKLNJJDGKF -#[derive(proto_derive::CmdID)] -#[cmdid(530)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct BatchRankUpEquipmentCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub param_list: ::prost::alloc::vec::Vec, -} -/// Obf: CIIKBJJNOEJ -#[derive(proto_derive::CmdID)] -#[cmdid(518)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct BatchRankUpEquipmentScRsp { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -/// Obf: LLAGDKKOPIG -#[derive(proto_derive::CmdID)] -#[cmdid(581)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ExpUpEquipmentCsReq { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub item_cost_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub equipment_unique_id: u32, -} -/// Obf: GHMKEHACJIN -#[derive(proto_derive::CmdID)] -#[cmdid(569)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ExpUpEquipmentScRsp { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub imeoabclnbc: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(message, repeated, tag = "8")] + pub fepdjffcaip: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(message, repeated, tag = "3")] + pub wait_del_resource_list: ::prost::alloc::vec::Vec, + /// offset: 64 #[prost(message, repeated, tag = "7")] - pub return_item_list: ::prost::alloc::vec::Vec, + pub relic_list: ::prost::alloc::vec::Vec, + /// offset: 104 + #[prost(message, repeated, tag = "13")] + pub material_list: ::prost::alloc::vec::Vec, } -/// Obf: EIDFBOMONBI -#[derive(proto_derive::CmdID)] -#[cmdid(557)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ComposeItemCsReq { - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub pjchnokedbe: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub compose_item_list: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub count: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub compose_id: u32, -} -/// Obf: LMAAEHHLMFC -#[derive(proto_derive::CmdID)] -#[cmdid(515)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ComposeItemScRsp { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub return_item_list: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub count: u32, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub compose_id: u32, -} -/// Obf: PPCMJPFIBJK +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(538)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ComposeSelectedRelicCsReq { - /// offset: 52 - #[prost(uint32, tag = "11")] - pub compose_id: u32, - /// offset: 60 - #[prost(uint32, tag = "4")] - pub main_affix_id: u32, - /// offset: 56 - #[prost(uint32, tag = "6")] - pub count: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub ggnpaifhpbb: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "5")] - pub compose_relic_id: u32, - /// offset: 40 - #[prost(message, optional, tag = "7")] - pub fbgodfjicll: ::core::option::Option, +pub struct PromoteEquipmentCsReq { /// offset: 24 - #[prost(message, optional, tag = "3")] - pub gjfmnmokaic: ::core::option::Option, -} -/// Obf: MGNNPKGBAGD -#[derive(proto_derive::CmdID)] -#[cmdid(503)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ComposeSelectedRelicScRsp { - /// offset: 16 #[prost(message, optional, tag = "8")] - pub return_item_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub compose_id: u32, -} -/// Obf: HKHKBGGJLKJ -#[derive(proto_derive::CmdID)] -#[cmdid(592)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ExpUpRelicCsReq { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub item_cost_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub relic_unique_id: u32, -} -/// Obf: LCAOAHBJJNC -#[derive(proto_derive::CmdID)] -#[cmdid(537)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ExpUpRelicScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub return_item_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: KACIJMGGGLE -#[derive(proto_derive::CmdID)] -#[cmdid(568)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LockRelicCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub locked_relic_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "10")] - pub is_protected: bool, - /// offset: 33 - #[prost(bool, tag = "1")] - pub is_batch_op: bool, -} -/// Obf: EHGHOCBCEKM -#[derive(proto_derive::CmdID)] -#[cmdid(549)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LockRelicScRsp { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: LEMBHJMIKOE -#[derive(proto_derive::CmdID)] -#[cmdid(542)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DiscardRelicCsReq { - /// offset: 36 - #[prost(bool, tag = "11")] - pub is_discard: bool, - /// offset: 40 - #[prost(uint64, tag = "2")] - pub hnhfdmdibio: u64, - /// offset: 32 - #[prost(enumeration = "Icpineholml", tag = "13")] - pub nlpconnjonf: i32, - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub locked_relic_id_list: ::prost::alloc::vec::Vec, -} -/// Obf: GAADEDDBANA -#[derive(proto_derive::CmdID)] -#[cmdid(570)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DiscardRelicScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub locked_relic_id_list: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(bool, tag = "3")] - pub is_discard: bool, - /// offset: 32 - #[prost(enumeration = "Icpineholml", tag = "8")] - pub nlpconnjonf: i32, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: OCCFBPIBDCH -#[derive(proto_derive::CmdID)] -#[cmdid(580)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SellItemCsReq { - /// offset: 32 - #[prost(bool, tag = "9")] - pub to_material: bool, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub item_cost_list: ::core::option::Option, -} -/// Obf: EMHKBFNEEPE -#[derive(proto_derive::CmdID)] -#[cmdid(577)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SellItemScRsp { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub return_item_list: ::core::option::Option, + pub cost_data: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "9")] + pub equipment_unique_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(517)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct PromoteEquipmentScRsp { + /// offset: 24 + #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: PMOIAAHCLFB -#[derive(proto_derive::CmdID)] -#[cmdid(505)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RechargeSuccNotify { - /// offset: 32 - #[prost(string, tag = "9")] - pub mpamhbfikfb: ::prost::alloc::string::String, - /// offset: 48 - #[prost(uint64, tag = "11")] - pub month_card_out_date_time: u64, - /// offset: 16 - #[prost(string, tag = "14")] - pub ppjdkmhiggj: ::prost::alloc::string::String, - /// offset: 40 - #[prost(message, optional, tag = "1")] - pub item_list: ::core::option::Option, -} -/// Obf: CAIBFMLNFFA +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(551)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ExchangeHcoinCsReq { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub num: u32, -} -/// Obf: FGDBIDPINOF -#[derive(proto_derive::CmdID)] -#[cmdid(529)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ExchangeHcoinScRsp { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub num: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: EHKBPBIAIJM -#[derive(proto_derive::CmdID)] -#[cmdid(509)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AddEquipmentScNotify { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub mdmgkhlhiin: u32, -} -/// Obf: HMAPNACBNCK -#[derive(proto_derive::CmdID)] -#[cmdid(562)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRecyleTimeCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub cjlndnilgmf: ::prost::alloc::vec::Vec, -} -/// Obf: ALDEDCHJMBK -#[derive(proto_derive::CmdID)] -#[cmdid(559)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRecyleTimeScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub fcokffeapmi: ::prost::alloc::vec::Vec, +pub struct LockEquipmentCsReq { /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fnhmmmkjgpb { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub ojemelhcmpj: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub formula_id: u32, -} -/// Obf: MNKEGHBHBAB -#[derive(proto_derive::CmdID)] -#[cmdid(522)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ComposeLimitNumCompleteNotify { - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub dchnaedinmm: ::prost::alloc::vec::Vec, -} -/// Obf: KAOKFBBHBJP -#[derive(proto_derive::CmdID)] -#[cmdid(597)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ComposeLimitNumUpdateNotify { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub fglfgjdpjpd: ::core::option::Option, -} -/// Obf: JGJOGHCLMCB -#[derive(proto_derive::CmdID)] -#[cmdid(555)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DestroyItemCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub mbejblfhcbh: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub cfcokeldogj: u32, -} -/// Obf: EDELPFFFHGC -#[derive(proto_derive::CmdID)] -#[cmdid(550)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DestroyItemScRsp { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub cfcokeldogj: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: JCOMBMFGMBP -#[derive(proto_derive::CmdID)] -#[cmdid(560)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMarkItemListCsReq {} -/// Obf: JGDMLEJHCFD -#[derive(proto_derive::CmdID)] -#[cmdid(571)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMarkItemListScRsp { + #[prost(bool, tag = "1")] + pub is_locked: bool, /// offset: 16 #[prost(uint32, repeated, tag = "9")] - pub pdbihonolfj: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, + pub ghamgbinghn: ::prost::alloc::vec::Vec, } -/// Obf: PDGPDLFCJOB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(535)] +#[cmdid(511)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarkItemCsReq { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub item_id: u32, - /// offset: 24 - #[prost(bool, tag = "1")] - pub naehphhdgek: bool, -} -/// Obf: BHLICDCPAEG -#[derive(proto_derive::CmdID)] -#[cmdid(574)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarkItemScRsp { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub item_id: u32, - /// offset: 32 - #[prost(bool, tag = "3")] - pub naehphhdgek: bool, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: AFMNPBMEHKA -#[derive(proto_derive::CmdID)] -#[cmdid(516)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CancelMarkItemNotify { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub item_id: u32, -} -/// Obf: DAMDJPLDNFE -#[derive(proto_derive::CmdID)] -#[cmdid(556)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncTurnFoodNotify { - /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub fdbjlgdhcdo: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "TurnFoodSwitch", repeated, tag = "2")] - pub turn_food_switch: ::prost::alloc::vec::Vec, -} -/// Obf: MPNKMKGDBDK -#[derive(proto_derive::CmdID)] -#[cmdid(521)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetTurnFoodSwitchCsReq { - /// offset: 28 - #[prost(bool, tag = "4")] - pub bndlhjhalmb: bool, - /// offset: 24 - #[prost(enumeration = "TurnFoodSwitch", tag = "5")] - pub jcakhhkfdfn: i32, -} -/// Obf: MFGLGONLDPH -#[derive(proto_derive::CmdID)] -#[cmdid(510)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetTurnFoodSwitchScRsp { +pub struct LockEquipmentScRsp { /// offset: 24 #[prost(uint32, tag = "2")] pub retcode: u32, - /// offset: 32 - #[prost(bool, tag = "13")] - pub bndlhjhalmb: bool, - /// offset: 28 - #[prost(enumeration = "TurnFoodSwitch", tag = "14")] - pub jcakhhkfdfn: i32, -} -/// Obf: APKMOHMIIBL -#[derive(proto_derive::CmdID)] -#[cmdid(553)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GeneralVirtualItemDataNotify { - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub fdjkccgdnka: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "5")] - pub pkbahpfjgdb: bool, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(589)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pacfhnejadb { - /// offset: 28 - #[prost(bool, tag = "8")] - pub hnmgpiiilon: bool, +pub struct UseItemCsReq { + /// offset: 36 + #[prost(uint32, tag = "3")] + pub optional_reward_id: u32, /// offset: 24 #[prost(uint32, tag = "10")] - pub pbkolnfgjdl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kfpjggifien { - /// offset: 56 - #[prost(int64, tag = "6")] - pub cabigiplihb: i64, + pub base_avatar_id: u32, /// offset: 32 - #[prost(string, tag = "2")] - pub name: ::prost::alloc::string::String, + #[prost(uint32, tag = "14")] + pub use_item_count: u32, + /// offset: 28 + #[prost(bool, tag = "6")] + pub gcoboaglecc: bool, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub use_item_id: u32, + /// offset: 44 + #[prost(enumeration = "AvatarType", tag = "13")] + pub use_avatar_type: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(520)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UseItemScRsp { + /// offset: 48 + #[prost(uint32, tag = "11")] + pub use_item_count: u32, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 52 + #[prost(uint32, tag = "8")] + pub formula_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub return_data: ::core::option::Option, + /// offset: 32 + #[prost(uint64, tag = "7")] + pub month_card_out_date_time: u64, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub use_item_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(595)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RankUpEquipmentCsReq { /// offset: 16 #[prost(message, optional, tag = "4")] - pub gfidnaanafh: ::core::option::Option, + pub cost_data: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub equipment_unique_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(591)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RankUpEquipmentScRsp { /// offset: 24 - #[prost(message, optional, tag = "9")] - pub ibpdgnohfpm: ::core::option::Option, - /// offset: 64 #[prost(uint32, tag = "7")] - pub ehkjhcoakbk: u32, + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mhkfkgjgfik { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub cost_data: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub equipment_unique_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(580)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct BatchRankUpEquipmentCsReq { + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub switch_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(583)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct BatchRankUpEquipmentScRsp { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(561)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ExpUpEquipmentCsReq { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub equipment_unique_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub cost_data: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(545)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ExpUpEquipmentScRsp { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub return_item_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(576)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ComposeItemCsReq { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub convert_item_list: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub count: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub compose_item_list: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "1")] + pub compose_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(552)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ComposeItemScRsp { + /// offset: 36 + #[prost(uint32, tag = "13")] + pub count: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub compose_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub return_item_list: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(546)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ComposeSelectedRelicCsReq { + /// offset: 60 + #[prost(uint32, tag = "2")] + pub count: u32, + /// offset: 52 + #[prost(uint32, tag = "8")] + pub compose_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub compose_item_list: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub main_affix_id: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "15")] + pub sub_affix_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub wr_item_list: ::core::option::Option, /// offset: 48 #[prost(uint32, tag = "10")] - pub khncedgfpgl: u32, - /// offset: 52 - #[prost(bool, tag = "13")] - pub is_marked: bool, + pub compose_relic_id: u32, } -/// Obf: CBCIJAOBJKM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(504)] +#[cmdid(592)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ComposeSelectedRelicScRsp { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub compose_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub return_item_list: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(550)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ExpUpRelicCsReq { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub relic_unique_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub cost_data: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(581)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ExpUpRelicScRsp { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub return_item_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(593)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct LockRelicCsReq { + /// offset: 33 + #[prost(bool, tag = "10")] + pub hiibgflbkci: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub relic_ids: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(bool, tag = "15")] + pub is_locked: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(537)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct LockRelicScRsp { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(530)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct DiscardRelicCsReq { + /// offset: 36 + #[prost(enumeration = "Idcinkkccpe", tag = "13")] + pub ieochclkhgj: i32, + /// offset: 32 + #[prost(bool, tag = "4")] + pub lmclfmgaljb: bool, + /// offset: 40 + #[prost(uint64, tag = "7")] + pub iabaaefpgdj: u64, + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub relic_ids: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(533)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct DiscardRelicScRsp { + /// offset: 36 + #[prost(bool, tag = "13")] + pub lmclfmgaljb: bool, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "10")] + pub relic_ids: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(enumeration = "Idcinkkccpe", tag = "15")] + pub ieochclkhgj: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(510)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SellItemCsReq { + /// offset: 32 + #[prost(bool, tag = "13")] + pub pgkkfafpakd: bool, + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub cost_data: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(567)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SellItemScRsp { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub return_item_list: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(562)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RechargeSuccNotify { + /// offset: 32 + #[prost(string, tag = "14")] + pub product_id: ::prost::alloc::string::String, + /// offset: 48 + #[prost(uint64, tag = "1")] + pub month_card_out_date_time: u64, + /// offset: 16 + #[prost(string, tag = "5")] + pub channel_order_no: ::prost::alloc::string::String, + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub item_list: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(535)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ExchangeHcoinCsReq { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub num: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(598)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ExchangeHcoinScRsp { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub num: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(514)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct AddEquipmentScNotify { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub pdjhilhiimo: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(526)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetRecyleTimeCsReq { + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub jepihcapggp: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(557)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetRecyleTimeScRsp { + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub inecfgkmong: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mmdpanjmolh { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub pegokadoijg: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub cndilnhdjkh: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(515)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ComposeLimitNumCompleteNotify { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub bhpfeggdepn: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(573)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ComposeLimitNumUpdateNotify { + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub mgcmkihkmjf: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(570)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct DestroyItemCsReq { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub cur_item_count: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub item_id: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub item_count: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(513)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct DestroyItemScRsp { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub cur_item_count: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(501)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetMarkItemListCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(549)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetMarkItemListScRsp { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub kgkejdcpapb: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(577)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MarkItemCsReq { + /// offset: 28 + #[prost(bool, tag = "2")] + pub jbnedfjjdom: bool, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub item_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(519)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct MarkItemScRsp { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub item_id: u32, + /// offset: 24 + #[prost(bool, tag = "14")] + pub jbnedfjjdom: bool, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(569)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct CancelMarkItemNotify { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub item_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(506)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SyncTurnFoodNotify { + /// offset: 32 + #[prost(uint32, repeated, tag = "10")] + pub mmkgdifohbo: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(enumeration = "TurnFoodSwitch", repeated, tag = "1")] + pub cikaijpoblh: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(588)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetTurnFoodSwitchCsReq { + /// offset: 24 + #[prost(bool, tag = "11")] + pub fhlognhnjbg: bool, + /// offset: 28 + #[prost(enumeration = "TurnFoodSwitch", tag = "10")] + pub hkaehbfblem: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(503)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetTurnFoodSwitchScRsp { + /// offset: 24 + #[prost(bool, tag = "12")] + pub fhlognhnjbg: bool, + /// offset: 28 + #[prost(enumeration = "TurnFoodSwitch", tag = "5")] + pub hkaehbfblem: i32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(555)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GeneralVirtualItemDataNotify { + /// offset: 32 + #[prost(bool, tag = "15")] + pub lcohcjfnenk: bool, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub bjjnlkmnehn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Afhgdiinknb { + /// offset: 28 + #[prost(bool, tag = "9")] + pub lnhmbgdpekm: bool, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub bnojobpfhoe: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Klkpdobjbom { + /// offset: 64 + #[prost(int64, tag = "15")] + pub oiccdgdohpb: i64, + /// offset: 52 + #[prost(bool, tag = "2")] + pub is_marked: bool, + /// offset: 40 + #[prost(string, tag = "6")] + pub name: ::prost::alloc::string::String, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub fnkonpifkof: u32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub dlenfjkldpl: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub jaophilfcip: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "8")] + pub max_times: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(507)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRelicFilterPlanCsReq {} -/// Obf: DFFLCLOODME +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(511)] +#[cmdid(597)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRelicFilterPlanScRsp { /// offset: 16 #[prost(message, repeated, tag = "14")] - pub ecnafdibckf: ::prost::alloc::vec::Vec, + pub kmmofkpfglo: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(532)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct AddRelicFilterPlanCsReq { + /// offset: 40 + #[prost(message, optional, tag = "7")] + pub dlenfjkldpl: ::core::option::Option, + /// offset: 32 + #[prost(string, tag = "11")] + pub name: ::prost::alloc::string::String, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub jaophilfcip: ::core::option::Option, + /// offset: 52 + #[prost(bool, tag = "9")] + pub is_marked: bool, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub fnkonpifkof: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(600)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct AddRelicFilterPlanScRsp { + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub relic_plan: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: LLJJFHOJCCL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(501)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AddRelicFilterPlanCsReq { - /// offset: 48 - #[prost(bool, tag = "14")] - pub is_marked: bool, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub gfidnaanafh: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "8")] - pub ehkjhcoakbk: u32, - /// offset: 32 - #[prost(message, optional, tag = "15")] - pub ibpdgnohfpm: ::core::option::Option, - /// offset: 40 - #[prost(string, tag = "10")] - pub name: ::prost::alloc::string::String, -} -/// Obf: BGOGBMFLLGB -#[derive(proto_derive::CmdID)] -#[cmdid(596)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct AddRelicFilterPlanScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub eilidmcocho: ::core::option::Option, -} -/// Obf: DCJBMLAGPKJ -#[derive(proto_derive::CmdID)] -#[cmdid(525)] +#[cmdid(534)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ModifyRelicFilterPlanCsReq { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub khncedgfpgl: u32, - #[prost(oneof = "modify_relic_filter_plan_cs_req::Info", tags = "11, 2, 6")] - pub info: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub max_times: u32, + #[prost(oneof = "modify_relic_filter_plan_cs_req::Mlneddhojgc", tags = "3, 7, 4")] + pub mlneddhojgc: ::core::option::Option< + modify_relic_filter_plan_cs_req::Mlneddhojgc, + >, } /// Nested message and enum types in `ModifyRelicFilterPlanCsReq`. pub mod modify_relic_filter_plan_cs_req { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 16 - #[prost(string, tag = "11")] - Name(::prost::alloc::string::String), - /// offset: 16 - #[prost(message, tag = "2")] - Gfidnaanafh(super::Pacfhnejadb), - /// offset: 16 - #[prost(message, tag = "6")] - Ibpdgnohfpm(super::Iipkannmlfn), - } -} -/// Obf: JDDGKCGNFDA -#[derive(proto_derive::CmdID)] -#[cmdid(585)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ModifyRelicFilterPlanScRsp { - /// offset: 44 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub khncedgfpgl: u32, - /// offset: 32 - #[prost(int64, tag = "8")] - pub cabigiplihb: i64, - #[prost(oneof = "modify_relic_filter_plan_sc_rsp::Info", tags = "3, 7, 13")] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `ModifyRelicFilterPlanScRsp`. -pub mod modify_relic_filter_plan_sc_rsp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Mlneddhojgc { /// offset: 24 #[prost(string, tag = "3")] Name(::prost::alloc::string::String), /// offset: 24 #[prost(message, tag = "7")] - Gfidnaanafh(super::Pacfhnejadb), + Dlenfjkldpl(super::Afhgdiinknb), /// offset: 24 - #[prost(message, tag = "13")] - Ibpdgnohfpm(super::Iipkannmlfn), + #[prost(message, tag = "4")] + Jaophilfcip(super::Bdkoopinmgl), } } -/// Obf: NEDENIBEHKA +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(568)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ModifyRelicFilterPlanScRsp { + /// offset: 40 + #[prost(uint32, tag = "2")] + pub max_times: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 48 + #[prost(int64, tag = "6")] + pub oiccdgdohpb: i64, + #[prost(oneof = "modify_relic_filter_plan_sc_rsp::Mlneddhojgc", tags = "13, 9, 7")] + pub mlneddhojgc: ::core::option::Option< + modify_relic_filter_plan_sc_rsp::Mlneddhojgc, + >, +} +/// Nested message and enum types in `ModifyRelicFilterPlanScRsp`. +pub mod modify_relic_filter_plan_sc_rsp { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(string, tag = "13")] + Name(::prost::alloc::string::String), + /// offset: 16 + #[prost(message, tag = "9")] + Dlenfjkldpl(super::Afhgdiinknb), + /// offset: 16 + #[prost(message, tag = "7")] + Jaophilfcip(super::Bdkoopinmgl), + } +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(572)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteRelicFilterPlanCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub ndobmajmlnk: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(bool, tag = "10")] - pub is_batch_op: bool, + #[prost(bool, tag = "14")] + pub hiibgflbkci: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub abacampelej: ::prost::alloc::vec::Vec, } -/// Obf: IBLMECOBEKK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(540)] +#[cmdid(565)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteRelicFilterPlanScRsp { /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "2")] pub retcode: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub ndobmajmlnk: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "9")] + pub abacampelej: ::prost::alloc::vec::Vec, /// offset: 36 - #[prost(bool, tag = "7")] - pub is_batch_op: bool, + #[prost(bool, tag = "6")] + pub hiibgflbkci: bool, } -/// Obf: NOGNOIEFBLL -#[derive(proto_derive::CmdID)] -#[cmdid(566)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarkRelicFilterPlanCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub ndobmajmlnk: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "15")] - pub is_batch_op: bool, - /// offset: 33 - #[prost(bool, tag = "2")] - pub is_set_mark: bool, -} -/// Obf: KCNNOJHNGKB +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(539)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarkRelicFilterPlanScRsp { - /// offset: 37 - #[prost(bool, tag = "8")] - pub is_set_mark: bool, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 36 - #[prost(bool, tag = "2")] - pub is_batch_op: bool, +pub struct MarkRelicFilterPlanCsReq { /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub ndobmajmlnk: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "15")] + pub abacampelej: ::prost::alloc::vec::Vec, + /// offset: 33 + #[prost(bool, tag = "6")] + pub hiibgflbkci: bool, + /// offset: 32 + #[prost(bool, tag = "12")] + pub iinlappnagb: bool, } -/// Obf: JILPDHENIDL -#[derive(proto_derive::CmdID)] -#[cmdid(545)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RelicFilterPlanClearNameScNotify { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub khncedgfpgl: u32, -} -/// Obf: JFJBAEJBBLB -#[derive(proto_derive::CmdID)] -#[cmdid(595)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RelicReforgeCsReq { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub relic_unique_id: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub ekfheifljae: u32, -} -/// Obf: OMKAJLMDBDP +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(579)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RelicReforgeScRsp { - /// offset: 24 +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MarkRelicFilterPlanScRsp { + /// offset: 36 + #[prost(bool, tag = "12")] + pub iinlappnagb: bool, + /// offset: 37 + #[prost(bool, tag = "15")] + pub hiibgflbkci: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub abacampelej: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(uint32, tag = "8")] pub retcode: u32, } -/// Obf: LLLDCIBJIDC +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(527)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RelicFilterPlanClearNameScNotify { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub max_times: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(531)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RelicReforgeCsReq { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub reforge_block_sub_affix_id: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub relic_unique_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(541)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RelicReforgeScRsp { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(502)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicReforgeConfirmCsReq { - /// offset: 24 - #[prost(bool, tag = "11")] - pub cjoeaeijlgc: bool, /// offset: 28 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub relic_unique_id: u32, + /// offset: 24 + #[prost(bool, tag = "7")] + pub is_cancel: bool, } -/// Obf: LFBPGLGJBFI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(588)] +#[cmdid(518)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicReforgeConfirmScRsp { /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "4")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UnlockedMusic { +pub struct MusicData { /// offset: 24 - #[prost(bool, tag = "15")] - pub icfbdppjoad: bool, - /// offset: 32 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "4")] pub group_id: u32, /// offset: 28 - #[prost(uint32, tag = "9")] + #[prost(bool, tag = "6")] + pub is_played: bool, + /// offset: 32 + #[prost(uint32, tag = "14")] pub id: u32, } -/// Obf: NIACMNBBNCI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3199)] +#[cmdid(3147)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetJukeboxDataCsReq {} -/// Obf: MGDPBJGEELJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3123)] +#[cmdid(3109)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetJukeboxDataScRsp { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub playing_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub unlocked_music_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] + pub current_music_id: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub music_list: ::prost::alloc::vec::Vec, } -/// Obf: OLCMOAJACGC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3198)] +#[cmdid(3138)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayBackGroundMusicCsReq { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "10")] pub play_music_id: u32, } -/// Obf: NACNJKNEKBK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3165)] +#[cmdid(3117)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayBackGroundMusicScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub playing_id: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub play_music_id: u32, /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] + pub current_music_id: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub play_music_id: u32, } -/// Obf: INAKLEIILKN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3183)] +#[cmdid(3151)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockBackGroundMusicCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] pub unlock_ids: ::prost::alloc::vec::Vec, } -/// Obf: AOGCKKJNKBN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3186)] +#[cmdid(3111)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockBackGroundMusicScRsp { /// offset: 40 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub retcode: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub unlocked_ids: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub music_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] + pub unlocked_music_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub lkhjcdoohmm: ::prost::alloc::vec::Vec, } -/// Obf: DPFDHDJCAPI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3194)] +#[cmdid(3189)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrialBackGroundMusicCsReq { /// offset: 24 - #[prost(uint32, tag = "11")] - pub pigbbgclamj: u32, + #[prost(uint32, tag = "2")] + pub aflnjlkbemo: u32, } -/// Obf: HJKOFKLPCBB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3152)] +#[cmdid(3120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrialBackGroundMusicScRsp { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "15")] - pub pigbbgclamj: u32, + #[prost(uint32, tag = "11")] + pub aflnjlkbemo: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub retcode: u32, } -/// Obf: NDDKNEPFJNL #[derive(proto_derive::CmdID)] -#[cmdid(799)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetStageLineupCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jlchbkkfanl { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub stage_type: u32, +pub struct Afacfjmdbdj { /// offset: 28 - #[prost(uint32, tag = "8")] - pub dogdacflboe: u32, + #[prost(uint32, tag = "9")] + pub stage_type: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub ebkagolfmbm: u32, } -/// Obf: KCGCKMIMFFJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(723)] +#[cmdid(709)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetStageLineupScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub nmkpekmmnbp: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub igcleaapfpc: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "4")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LineupAvatar { - /// offset: 44 - #[prost(uint32, tag = "3")] - pub satiety: u32, /// offset: 16 - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "9")] pub sp_bar: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "8")] - pub id: u32, - /// offset: 40 - #[prost(enumeration = "AvatarType", tag = "14")] - pub avatar_type: i32, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub slot: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "6")] pub hp: u32, + /// offset: 40 + #[prost(enumeration = "AvatarType", tag = "3")] + pub avatar_type: i32, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub satiety: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub slot: u32, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LineupInfo { - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub kompcjpapkm: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(enumeration = "ExtraLineupType", tag = "4")] - pub extra_lineup_type: i32, - /// offset: 56 - #[prost(uint32, repeated, tag = "8")] - pub mkdfjccbiop: ::prost::alloc::vec::Vec, - /// offset: 76 - #[prost(uint32, tag = "7")] - pub game_story_line_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub mankkfpbfcb: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(uint32, tag = "9")] - pub mp: u32, - /// offset: 81 - #[prost(bool, tag = "12")] - pub bfnbklmamkb: bool, - /// offset: 68 - #[prost(uint32, tag = "15")] - pub max_mp: u32, - /// offset: 64 - #[prost(uint32, tag = "6")] - pub index: u32, - /// offset: 40 - #[prost(string, tag = "13")] - pub name: ::prost::alloc::string::String, - /// offset: 92 - #[prost(uint32, tag = "11")] - pub plane_id: u32, /// offset: 32 + #[prost(uint32, repeated, tag = "12")] + pub fpmmkaokmmo: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "7")] + pub leader_slot: u32, + /// offset: 40 #[prost(message, repeated, tag = "3")] pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 84 - #[prost(uint32, tag = "14")] - pub leader_slot: u32, /// offset: 80 - #[prost(bool, tag = "1")] - pub is_virtual: bool, -} -/// Obf: KFLMLMPIADH -#[derive(proto_derive::CmdID)] -#[cmdid(798)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetCurLineupDataCsReq {} -/// Obf: JPAFCFGBILK -#[derive(proto_derive::CmdID)] -#[cmdid(765)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetCurLineupDataScRsp { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub lineup: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: EFPDILJKPDC -#[derive(proto_derive::CmdID)] -#[cmdid(783)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct JoinLineupCsReq { - /// offset: 32 + #[prost(enumeration = "ExtraLineupType", tag = "14")] + pub extra_lineup_type: i32, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub story_line_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "15")] + pub max_mp: u32, + /// offset: 68 + #[prost(bool, tag = "2")] + pub djbnlhhdolo: bool, + /// offset: 56 + #[prost(string, tag = "5")] + pub name: ::prost::alloc::string::String, + /// offset: 88 #[prost(uint32, tag = "8")] pub index: u32, - /// offset: 48 - #[prost(uint32, tag = "10")] + /// offset: 72 + #[prost(uint32, tag = "9")] pub plane_id: u32, - /// offset: 44 + /// offset: 69 #[prost(bool, tag = "11")] pub is_virtual: bool, /// offset: 24 - #[prost(enumeration = "ExtraLineupType", tag = "9")] - pub extra_lineup_type: i32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub slot: u32, - /// offset: 40 + #[prost(uint32, repeated, tag = "4")] + pub gcfjbgiafgh: ::prost::alloc::vec::Vec, + /// offset: 92 + #[prost(uint32, tag = "13")] + pub mp: u32, + /// offset: 76 + #[prost(uint32, tag = "1")] + pub game_story_line_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(738)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetCurLineupDataCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(717)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetCurLineupDataScRsp { + /// offset: 32 #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub lineup: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(751)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct JoinLineupCsReq { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub slot: u32, + /// offset: 24 + #[prost(enumeration = "ExtraLineupType", tag = "3")] + pub extra_lineup_type: i32, + /// offset: 48 + #[prost(uint32, tag = "7")] pub base_avatar_id: u32, + /// offset: 28 + #[prost(bool, tag = "4")] + pub is_virtual: bool, /// offset: 36 #[prost(enumeration = "AvatarType", tag = "13")] pub avatar_type: i32, -} -/// Obf: HJNPHDFHEEF -#[derive(proto_derive::CmdID)] -#[cmdid(786)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct JoinLineupScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: BKNJPMJDDKC -#[derive(proto_derive::CmdID)] -#[cmdid(794)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct QuitLineupCsReq { - /// offset: 40 - #[prost(bool, tag = "1")] - pub is_virtual: bool, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub index: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub plane_id: u32, /// offset: 32 - #[prost(uint32, tag = "11")] - pub base_avatar_id: u32, - /// offset: 44 - #[prost(enumeration = "AvatarType", tag = "3")] - pub avatar_type: i32, - /// offset: 36 - #[prost(enumeration = "ExtraLineupType", tag = "5")] - pub extra_lineup_type: i32, -} -/// Obf: INLPMPKLCJM -#[derive(proto_derive::CmdID)] -#[cmdid(752)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct QuitLineupScRsp { - /// offset: 28 - #[prost(bool, tag = "13")] - pub is_virtual: bool, - /// offset: 24 #[prost(uint32, tag = "10")] pub plane_id: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub base_avatar_id: u32, - /// offset: 29 - #[prost(bool, tag = "1")] - pub hiofpdkdofd: bool, -} -/// Obf: DAKKNMKOLCG -#[derive(proto_derive::CmdID)] -#[cmdid(719)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwapLineupCsReq { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub src_slot: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub index: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub plane_id: u32, /// offset: 44 - #[prost(bool, tag = "8")] - pub is_virtual: bool, - /// offset: 40 - #[prost(enumeration = "ExtraLineupType", tag = "7")] - pub extra_lineup_type: i32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub dst_slot: u32, + #[prost(uint32, tag = "2")] + pub index: u32, } -/// Obf: JHKAIEIAOBK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(744)] +#[cmdid(711)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwapLineupScRsp { +pub struct JoinLineupScRsp { /// offset: 24 #[prost(uint32, tag = "8")] pub retcode: u32, } -/// Obf: OEGLKBPODOM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(781)] +#[cmdid(789)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct QuitLineupCsReq { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub plane_id: u32, + /// offset: 44 + #[prost(enumeration = "ExtraLineupType", tag = "6")] + pub extra_lineup_type: i32, + /// offset: 40 + #[prost(bool, tag = "12")] + pub is_virtual: bool, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub base_avatar_id: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub index: u32, + /// offset: 36 + #[prost(enumeration = "AvatarType", tag = "3")] + pub avatar_type: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(720)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct QuitLineupScRsp { + /// offset: 36 + #[prost(uint32, tag = "3")] + pub plane_id: u32, + /// offset: 32 + #[prost(bool, tag = "2")] + pub is_virtual: bool, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub base_avatar_id: u32, + /// offset: 33 + #[prost(bool, tag = "8")] + pub bbipfibldfl: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(795)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwapLineupCsReq { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub aklncnocdnh: u32, + /// offset: 40 + #[prost(bool, tag = "4")] + pub is_virtual: bool, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub index: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub plane_id: u32, + /// offset: 44 + #[prost(enumeration = "ExtraLineupType", tag = "12")] + pub extra_lineup_type: i32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub phkmbobgbef: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(791)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwapLineupScRsp { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(761)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncLineupNotify { - /// offset: 32 - #[prost(message, optional, tag = "2")] - pub lineup: ::core::option::Option, - /// offset: 16 - #[prost(enumeration = "SyncReason", repeated, tag = "14")] + /// offset: 24 + #[prost(enumeration = "SyncLineupReason", repeated, tag = "14")] pub reason_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub lineup: ::core::option::Option, } -/// Obf: KICAGNDCBIN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(769)] +#[cmdid(745)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLineupAvatarDataCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Acmnhkhplod { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub hp: u32, +pub struct LineupAvatarData { /// offset: 32 - #[prost(uint32, tag = "8")] - pub id: u32, + #[prost(uint32, tag = "1")] + pub hp: u32, /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "10")] + #[prost(uint32, tag = "9")] + pub id: u32, + /// offset: 24 + #[prost(enumeration = "AvatarType", tag = "7")] pub avatar_type: i32, } -/// Obf: HJMJMLJKLNB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(757)] +#[cmdid(776)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLineupAvatarDataScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub lijinikjnad: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: CCGDEOKBJCD -#[derive(proto_derive::CmdID)] -#[cmdid(715)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChangeLineupLeaderCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub slot: u32, -} -/// Obf: FIBFDBPAKOH -#[derive(proto_derive::CmdID)] -#[cmdid(792)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChangeLineupLeaderScRsp { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub slot: u32, -} -/// Obf: HLFLPKJOOJN -#[derive(proto_derive::CmdID)] -#[cmdid(737)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchLineupIndexCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub index: u32, -} -/// Obf: IHLDJHJKJKF -#[derive(proto_derive::CmdID)] -#[cmdid(768)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchLineupIndexScRsp { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub index: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub retcode: u32, -} -/// Obf: IGPECPNPCDL -#[derive(proto_derive::CmdID)] -#[cmdid(749)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetLineupNameCsReq { - /// offset: 16 - #[prost(string, tag = "4")] - pub name: ::prost::alloc::string::String, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub index: u32, -} -/// Obf: AJMCNJIGMHN -#[derive(proto_derive::CmdID)] -#[cmdid(780)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetLineupNameScRsp { /// offset: 32 #[prost(uint32, tag = "10")] pub retcode: u32, /// offset: 16 - #[prost(string, tag = "4")] + #[prost(message, repeated, tag = "8")] + pub avatar_data_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(752)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ChangeLineupLeaderCsReq { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub slot: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(750)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ChangeLineupLeaderScRsp { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub slot: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(781)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwitchLineupIndexCsReq { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub index: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(793)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SwitchLineupIndexScRsp { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub index: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(737)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetLineupNameCsReq { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub index: u32, + /// offset: 16 + #[prost(string, tag = "5")] + pub name: ::prost::alloc::string::String, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(710)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetLineupNameScRsp { + /// offset: 16 + #[prost(string, tag = "1")] pub name: ::prost::alloc::string::String, /// offset: 36 #[prost(uint32, tag = "9")] pub index: u32, -} -/// Obf: KIIIGJJJCGG -#[derive(proto_derive::CmdID)] -#[cmdid(777)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAllLineupDataCsReq {} -/// Obf: NLEGPOOLDDM -#[derive(proto_derive::CmdID)] -#[cmdid(705)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetAllLineupDataScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub lineup_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "5")] - pub cur_index: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub retcode: u32, } -/// Obf: ALAJHGKJAIB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(751)] +#[cmdid(767)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetAllLineupDataCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(762)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetAllLineupDataScRsp { + /// offset: 36 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub lineup_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub cur_index: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(735)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct VirtualLineupDestroyNotify { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "13")] pub plane_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LineupSlotData { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub id: u32, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub slot: u32, /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "14")] + #[prost(uint32, tag = "7")] + pub slot: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub id: u32, + /// offset: 24 + #[prost(enumeration = "AvatarType", tag = "4")] pub avatar_type: i32, } -/// Obf: FEENFGFKLCC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(729)] +#[cmdid(798)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReplaceLineupCsReq { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub index: u32, - /// offset: 44 + /// offset: 40 #[prost(uint32, tag = "5")] - pub leader_slot: u32, - /// offset: 48 - #[prost(uint32, tag = "1")] + pub index: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] pub plane_id: u32, - /// offset: 52 - #[prost(enumeration = "ExtraLineupType", tag = "11")] + /// offset: 44 + #[prost(bool, tag = "1")] + pub is_virtual: bool, + /// offset: 48 + #[prost(enumeration = "ExtraLineupType", tag = "10")] pub extra_lineup_type: i32, /// offset: 36 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] + pub leader_slot: u32, + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub lineup_slot_list: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "8")] pub game_story_line_id: u32, - /// offset: 40 - #[prost(bool, tag = "2")] - pub is_virtual: bool, - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub slots: ::prost::alloc::vec::Vec, } -/// Obf: KPIFEBMCIJM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(738)] +#[cmdid(746)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReplaceLineupScRsp { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub retcode: u32, } -/// Obf: JEKDEEFNHOB +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(703)] +#[cmdid(792)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExtraLineupDestroyNotify { /// offset: 24 - #[prost(enumeration = "ExtraLineupType", tag = "5")] + #[prost(enumeration = "ExtraLineupType", tag = "12")] pub extra_lineup_type: i32, } -/// Obf: AFJJIAFIDFI +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(709)] +#[cmdid(714)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct VirtualLineupTrialAvatarChangeScNotify { - /// offset: 32 - #[prost(uint32, repeated, tag = "1")] - pub iblbnianphd: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "4")] + /// offset: 44 + #[prost(uint32, tag = "13")] pub plane_id: u32, - /// offset: 44 - #[prost(bool, tag = "11")] - pub cliigmnmhna: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub kfmffggjmne: ::prost::alloc::vec::Vec, -} -/// Obf: PIJPJCJMIEM -#[derive(proto_derive::CmdID)] -#[cmdid(7376)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbyCreateCsReq { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub hfpohcffmgp: ::core::option::Option, /// offset: 40 - #[prost(enumeration = "Noogdpkefkl", tag = "8")] - pub fight_game_mode: i32, + #[prost(bool, tag = "12")] + pub mdalnnmnmjj: bool, /// offset: 32 - #[prost(message, optional, tag = "13")] - pub ejofcnaedhk: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub nepoddojjfe: u32, -} -/// Obf: LHONGADOAIA -#[derive(proto_derive::CmdID)] -#[cmdid(7378)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbyCreateScRsp { + #[prost(uint32, repeated, tag = "6")] + pub nnlfnpmfdjh: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "15")] - pub nepoddojjfe: u32, - /// offset: 48 - #[prost(uint64, tag = "11")] - pub room_id: u64, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub hfpohcffmgp: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 40 - #[prost(enumeration = "Noogdpkefkl", tag = "8")] - pub fight_game_mode: i32, + #[prost(uint32, repeated, tag = "10")] + pub agmcnbihkhf: ::prost::alloc::vec::Vec, } -/// Obf: GBHFGGKAIBE -#[derive(proto_derive::CmdID)] -#[cmdid(7353)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbyInviteCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub search_uid_list: ::prost::alloc::vec::Vec, -} -/// Obf: DGNHNKCLLLG -#[derive(proto_derive::CmdID)] -#[cmdid(7373)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbyInviteScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub search_uid_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: IBEGHCAALBN -#[derive(proto_derive::CmdID)] -#[cmdid(7371)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbyJoinCsReq { - /// offset: 24 - #[prost(string, tag = "12")] - pub djohdjclhip: ::prost::alloc::string::String, - /// offset: 40 - #[prost(uint64, tag = "2")] - pub room_id: u64, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub ejofcnaedhk: ::core::option::Option, -} -/// Obf: CFEGEAAFLCC -#[derive(proto_derive::CmdID)] -#[cmdid(7388)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbyJoinScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(enumeration = "Noogdpkefkl", tag = "15")] - pub fight_game_mode: i32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub hfpohcffmgp: ::core::option::Option, - /// offset: 60 - #[prost(uint32, tag = "9")] - pub nepoddojjfe: u32, - /// offset: 48 - #[prost(uint64, tag = "1")] - pub room_id: u64, - /// offset: 56 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: LJHPEEBAKJN +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7369)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyQuitCsReq {} -/// Obf: HCDCFKILGJF -#[derive(proto_derive::CmdID)] -#[cmdid(7397)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyQuitScRsp { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Elocpginhjc { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub icdjijjipak: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub habhalepfhi: u32, + /// offset: 40 + #[prost(enumeration = "FightGameMode", tag = "8")] + pub gclccogidoa: i32, /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(message, optional, tag = "14")] + pub ehgogiibaon: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7352)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Emiojolocpm { + /// offset: 48 + #[prost(uint64, tag = "3")] + pub room_id: u64, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub habhalepfhi: u32, + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub icdjijjipak: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 40 + #[prost(enumeration = "FightGameMode", tag = "15")] + pub gclccogidoa: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7359)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pihiecemccb { + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub uid_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7363)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hdkfbpgaoam { + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub uid_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: CLBJAADLIPM +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7398)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nmiocheckle { + /// offset: 40 + #[prost(uint64, tag = "5")] + pub room_id: u64, + /// offset: 24 + #[prost(string, tag = "4")] + pub jehpdemnaci: ::prost::alloc::string::String, + /// offset: 32 + #[prost(message, optional, tag = "2")] + pub ehgogiibaon: ::core::option::Option, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7355)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyStartFightCsReq {} -/// Obf: KBCODEJNDJF -#[derive(proto_derive::CmdID)] -#[cmdid(7377)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyStartFightScRsp { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: HFEEHJGOKDP -#[derive(proto_derive::CmdID)] -#[cmdid(7370)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbyModifyPlayerInfoCsReq { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub ejofcnaedhk: ::core::option::Option, - /// offset: 36 - #[prost(enumeration = "Aokdmakgdgj", tag = "8")] - pub r#type: i32, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub hfdjaelbnga: u32, -} -/// Obf: CGEGEGAOGGP -#[derive(proto_derive::CmdID)] -#[cmdid(7394)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyModifyPlayerInfoScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: GEBOIFMBHCM -#[derive(proto_derive::CmdID)] -#[cmdid(7393)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbySyncInfoScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "Aokdmakgdgj", tag = "5")] - pub r#type: i32, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub uid: u32, -} -/// Obf: MLNDBAMAFBP -#[derive(proto_derive::CmdID)] -#[cmdid(7351)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyKickOutCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub uid: u32, -} -/// Obf: ADMNOLCLGNA -#[derive(proto_derive::CmdID)] -#[cmdid(7395)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyKickOutScRsp { - /// offset: 24 +pub struct Igklaopjfog { + /// offset: 56 + #[prost(uint64, tag = "3")] + pub room_id: u64, + /// offset: 44 #[prost(uint32, tag = "10")] pub retcode: u32, -} -/// Obf: GDIPNFLLJGP -#[derive(proto_derive::CmdID)] -#[cmdid(7383)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyInviteScNotify { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub room_id: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub sender_uid: u32, /// offset: 24 - #[prost(enumeration = "Noogdpkefkl", tag = "2")] - pub fight_game_mode: i32, -} -/// Obf: IDHKGFNBGKD -#[derive(proto_derive::CmdID)] -#[cmdid(7380)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyGetInfoCsReq {} -/// Obf: FBOGFJHOKFJ -#[derive(proto_derive::CmdID)] -#[cmdid(7361)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LobbyGetInfoScRsp { + #[prost(message, repeated, tag = "1")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub icdjijjipak: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint64, tag = "1")] - pub room_id: u64, + #[prost(uint32, tag = "9")] + pub habhalepfhi: u32, /// offset: 48 - #[prost(enumeration = "Noogdpkefkl", tag = "4")] - pub fight_game_mode: i32, - /// offset: 44 - #[prost(uint32, tag = "3")] - pub nepoddojjfe: u32, - /// offset: 56 - #[prost(uint64, tag = "10")] - pub nogfeemnhpc: u64, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub hfpohcffmgp: ::core::option::Option, + #[prost(enumeration = "FightGameMode", tag = "14")] + pub gclccogidoa: i32, } -/// Obf: ADODLHLIPMF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7379)] +#[cmdid(7393)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyInteractCsReq { - /// offset: 28 - #[prost(enumeration = "Imaonmhilne", tag = "8")] - pub ihcilnhklmc: i32, +pub struct Kdhmnkgiadl {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7384)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gogomfcohja { /// offset: 24 - #[prost(uint32, tag = "11")] - pub cbegnbkmhcd: u32, + #[prost(uint32, tag = "13")] + pub retcode: u32, } -/// Obf: NDKKNNCBIAO +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7385)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyInteractScRsp { +pub struct Hinljepmaeo {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7383)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nniebhkiiip { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7381)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eogbkaikcke { + /// offset: 36 + #[prost(enumeration = "LobbyModifyType", tag = "8")] + pub r#type: i32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub ehgogiibaon: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub pelnknbnhog: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7375)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ifapojidinh { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7362)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hiienohbgpg { + /// offset: 36 + #[prost(uint32, tag = "7")] + pub uid: u32, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(enumeration = "LobbyModifyType", tag = "1")] + pub r#type: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7396)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aencoebkfma { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub uid: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7367)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ochfadebkha { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7370)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fbialgfbakh { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub sender_id: u32, + /// offset: 24 + #[prost(enumeration = "FightGameMode", tag = "5")] + pub gclccogidoa: i32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub room_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7357)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Geppceoclog {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7377)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dblhndbnjhf { + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub icdjijjipak: ::core::option::Option, + /// offset: 52 + #[prost(enumeration = "FightGameMode", tag = "7")] + pub gclccogidoa: i32, + /// offset: 64 + #[prost(uint32, tag = "1")] + pub habhalepfhi: u32, + /// offset: 40 + #[prost(uint64, tag = "14")] + pub room_id: u64, + /// offset: 56 + #[prost(uint64, tag = "10")] + pub afdffaihafl: u64, + /// offset: 32 + #[prost(message, repeated, tag = "13")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7360)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dmhlehmcmja { + /// offset: 24 + #[prost(enumeration = "Llbdjpdnimo", tag = "1")] + pub ogjcjiaboak: i32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub nbgndibkajl: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7400)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Daadkjadmpp { /// offset: 24 #[prost(uint32, tag = "15")] pub retcode: u32, /// offset: 28 - #[prost(uint32, tag = "13")] - pub cbegnbkmhcd: u32, + #[prost(uint32, tag = "6")] + pub nbgndibkajl: u32, } -/// Obf: JGPIFOIJFBK +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7362)] +#[cmdid(7390)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LobbyInteractScNotify { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub sender_uid: u32, +pub struct Ekhnldeellh { /// offset: 28 - #[prost(enumeration = "Imaonmhilne", tag = "15")] - pub ihcilnhklmc: i32, + #[prost(enumeration = "Llbdjpdnimo", tag = "13")] + pub ogjcjiaboak: i32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub sender_id: u32, } -/// Obf: DMMEIAACHJE #[derive(proto_derive::CmdID)] -#[cmdid(899)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ehenlaemnho { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub dnpoppiklml: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub hcficdmenhe: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub group_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6592)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ocpjhdofimc {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6582)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kgipbnhojlg { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub music_level: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Klgepffeimh { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub avatar_id: u32, + /// offset: 24 + #[prost(enumeration = "AvatarType", tag = "5")] + pub avatar_type: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6599)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Chjannpmleo { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub dnpoppiklml: u32, + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub group_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6584)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ccbcmaocedg { + /// offset: 40 + #[prost(uint32, tag = "4")] + pub dnpoppiklml: u32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub group_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub battle_info: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6595)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pffdlkilhfm { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub level_data: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(847)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMailCsReq { /// offset: 24 - #[prost(uint32, tag = "11")] - pub cijefnoojjk: u32, + #[prost(uint32, tag = "5")] + pub gopebcpgdik: u32, /// offset: 28 - #[prost(uint32, tag = "10")] - pub dapcdnelcma: u32, + #[prost(uint32, tag = "6")] + pub jlojlhfjakf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientMail { - /// offset: 88 - #[prost(uint32, tag = "1")] - pub template_id: u32, - /// offset: 40 - #[prost(string, tag = "9")] - pub content: ::prost::alloc::string::String, - /// offset: 92 - #[prost(enumeration = "MailType", tag = "3")] - pub mail_type: i32, /// offset: 64 - #[prost(int64, tag = "5")] - pub expire_time: i64, - /// offset: 32 - #[prost(string, tag = "11")] - pub sender: ::prost::alloc::string::String, - /// offset: 72 - #[prost(int64, tag = "15")] - pub time: i64, - /// offset: 24 - #[prost(string, tag = "10")] - pub title: ::prost::alloc::string::String, - /// offset: 80 - #[prost(bool, tag = "2")] + #[prost(bool, tag = "7")] pub is_read: bool, - /// offset: 84 - #[prost(uint32, tag = "7")] + /// offset: 88 + #[prost(uint32, tag = "5")] + pub template_id: u32, + /// offset: 80 + #[prost(int64, tag = "10")] + pub time: i64, + /// offset: 32 + #[prost(string, tag = "12")] + pub content: ::prost::alloc::string::String, + /// offset: 72 + #[prost(int64, tag = "14")] + pub expire_time: i64, + /// offset: 24 + #[prost(string, tag = "15")] + pub title: ::prost::alloc::string::String, + /// offset: 92 + #[prost(uint32, tag = "3")] pub id: u32, - /// offset: 16 - #[prost(string, repeated, tag = "12")] - pub para_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + /// offset: 68 + #[prost(enumeration = "MailType", tag = "9")] + pub mail_type: i32, /// offset: 56 - #[prost(message, optional, tag = "6")] + #[prost(string, repeated, tag = "1")] + pub para_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + /// offset: 16 + #[prost(string, tag = "4")] + pub sender: ::prost::alloc::string::String, + /// offset: 48 + #[prost(message, optional, tag = "8")] pub attachment: ::core::option::Option, } -/// Obf: GetMailScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(823)] +#[cmdid(809)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMailScRsp { - /// offset: 44 - #[prost(bool, tag = "2")] + /// offset: 40 + #[prost(bool, tag = "3")] pub is_end: bool, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub notice_mail_list: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "12")] pub mail_list: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub start: u32, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub retcode: u32, /// offset: 52 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 44 + #[prost(uint32, tag = "1")] pub total_num: u32, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub notice_mail_list: ::prost::alloc::vec::Vec, } -/// Obf: HIJLOFHDMPP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(898)] +#[cmdid(838)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkReadMailCsReq { /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub id: u32, } -/// Obf: ICHOMJJHEGI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(865)] +#[cmdid(817)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MarkReadMailScRsp { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub id: u32, /// offset: 28 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub retcode: u32, } -/// Obf: NGIBFKBABOH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(883)] +#[cmdid(851)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DelMailCsReq { /// offset: 16 - #[prost(uint32, repeated, tag = "9")] + #[prost(uint32, repeated, tag = "5")] pub id_list: ::prost::alloc::vec::Vec, } -/// Obf: DelMailScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(886)] +#[cmdid(811)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DelMailScRsp { /// offset: 16 - #[prost(uint32, repeated, tag = "3")] + #[prost(uint32, repeated, tag = "13")] pub id_list: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "6")] pub retcode: u32, } -/// Obf: NHMFCFKCFIL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(894)] +#[cmdid(889)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMailAttachmentCsReq { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub optional_reward_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] pub mail_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub optional_reward_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ClientMailAttachmentItem { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub item_id: u32, /// offset: 28 #[prost(uint32, tag = "13")] - pub item_id: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] pub mail_id: u32, } -/// Obf: TakeMailAttachmentScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(852)] +#[cmdid(820)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeMailAttachmentScRsp { + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub fail_mail_list: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub retcode: u32, /// offset: 40 - #[prost(message, repeated, tag = "15")] - pub fail_mail_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "1")] - pub succ_mail_id_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "4")] pub attachment: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub succ_mail_id_list: ::prost::alloc::vec::Vec, } -/// Obf: NewMailScNotify +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(819)] +#[cmdid(895)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct NewMailScNotify { - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] pub mail_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MapRotationData { +pub struct RogueMapRotateInfo { + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub charger_info: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, optional, tag = "3")] + pub energy_info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub rogue_map: ::core::option::Option, /// offset: 60 #[prost(int32, tag = "7")] - pub acnpbbnlmie: i32, - /// offset: 48 - #[prost(message, optional, tag = "3")] - pub energy_info: ::core::option::Option, - /// offset: 56 - #[prost(bool, tag = "15")] - pub ighlhohcckc: bool, - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub rotater_data_list: ::prost::alloc::vec::Vec, + pub era_flipper_region_id: i32, /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub charger_info_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] + pub rotater_data_list: ::prost::alloc::vec::Vec, /// offset: 64 - #[prost(uint32, tag = "10")] - pub nflbondjaie: u32, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub map_info: ::core::option::Option, + #[prost(bool, tag = "10")] + pub is_rotate: bool, + /// offset: 56 + #[prost(uint32, tag = "5")] + pub ldekdlhbhho: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RotatorEnergyInfo { +pub struct RotaterEnergyInfo { /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub cur_num: u32, /// offset: 24 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub max_num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotateMapInfo { - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub vector: ::core::option::Option, /// offset: 16 - #[prost(message, optional, tag = "10")] - pub rotate_vector: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub rotate_vector: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub vector: ::core::option::Option, } -/// Obf: BCIPJENMJCE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6899)] +#[cmdid(6847)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterMapRotationRegionCsReq { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub acnpbbnlmie: u32, /// offset: 36 - #[prost(uint32, tag = "5")] - pub nflbondjaie: u32, + #[prost(uint32, tag = "15")] + pub era_flipper_region_id: u32, /// offset: 24 - #[prost(message, optional, tag = "4")] + #[prost(message, optional, tag = "6")] pub motion: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub ldekdlhbhho: u32, } -/// Obf: GANIBGECNNI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6823)] +#[cmdid(6809)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterMapRotationRegionScRsp { /// offset: 44 - #[prost(uint32, tag = "2")] - pub acnpbbnlmie: u32, - /// offset: 16 - #[prost(message, optional, tag = "7")] + #[prost(uint32, tag = "10")] + pub ldekdlhbhho: u32, + /// offset: 32 + #[prost(message, optional, tag = "9")] pub motion: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub energy_info: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "1")] + /// offset: 40 + #[prost(uint32, tag = "7")] pub retcode: u32, /// offset: 52 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] + pub era_flipper_region_id: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] pub client_pos_version: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub nflbondjaie: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub energy_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChargerInfo { /// offset: 28 - #[prost(uint32, tag = "1")] - pub group_id: u32, + #[prost(uint32, tag = "12")] + pub kcekmjlhfge: u32, /// offset: 24 - #[prost(uint32, tag = "3")] - pub glhagjgaehe: u32, + #[prost(uint32, tag = "15")] + pub group_id: u32, } -/// Obf: JIIHJIMEMPJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6898)] +#[cmdid(6838)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractChargerCsReq { - /// offset: 16 - #[prost(message, optional, tag = "3")] + /// offset: 24 + #[prost(message, optional, tag = "10")] pub charger_info: ::core::option::Option, } -/// Obf: ICLACJJDKBC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6865)] +#[cmdid(6817)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractChargerScRsp { /// offset: 40 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "8")] + pub charger_info: ::core::option::Option, /// offset: 24 #[prost(message, optional, tag = "11")] - pub energy_info: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub charger_info: ::core::option::Option, + pub energy_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotaterData { /// offset: 28 - #[prost(float, tag = "12")] - pub lkefolcgfgd: f32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub group_id: u32, + #[prost(float, tag = "15")] + pub kmhcbofgfjf: f32, /// offset: 24 - #[prost(uint32, tag = "14")] - pub glhagjgaehe: u32, + #[prost(uint32, tag = "4")] + pub kcekmjlhfge: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub group_id: u32, } -/// Obf: MHECGOKNFLM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6883)] +#[cmdid(6851)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeployRotaterCsReq { - /// offset: 16 - #[prost(message, optional, tag = "3")] + /// offset: 24 + #[prost(message, optional, tag = "4")] pub rotater_data: ::core::option::Option, } -/// Obf: IMKHHNDLJAK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6886)] +#[cmdid(6811)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeployRotaterScRsp { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub energy_info: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub rotater_data: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "5")] pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub energy_info: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub rotater_data: ::core::option::Option, } -/// Obf: JACPADNMLAF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6894)] +#[cmdid(6889)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotateMapCsReq { /// offset: 40 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "14")] pub group_id: u32, /// offset: 24 - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "10")] pub motion: ::core::option::Option, /// offset: 44 - #[prost(uint32, tag = "3")] - pub glhagjgaehe: u32, + #[prost(uint32, tag = "4")] + pub kcekmjlhfge: u32, /// offset: 16 - #[prost(message, optional, tag = "8")] - pub map_info: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub rogue_map: ::core::option::Option, } -/// Obf: NLFMALJPEDM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6852)] +#[cmdid(6820)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RotateMapScRsp { + /// offset: 36 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub motion: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub client_pos_version: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6895)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct LeaveMapRotationRegionCsReq { + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub motion: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6891)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct LeaveMapRotationRegionScRsp { /// offset: 36 #[prost(uint32, tag = "11")] pub client_pos_version: u32, /// offset: 16 - #[prost(message, optional, tag = "7")] - pub motion: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: FCNKMDHNMNL -#[derive(proto_derive::CmdID)] -#[cmdid(6819)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveMapRotationRegionCsReq { - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub motion: ::core::option::Option, -} -/// Obf: CDKKKKKFGDN -#[derive(proto_derive::CmdID)] -#[cmdid(6844)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveMapRotationRegionScRsp { - /// offset: 24 - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "3")] pub motion: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "15")] - pub client_pos_version: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] pub retcode: u32, } -/// Obf: MNAKOONBLEC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6881)] +#[cmdid(6861)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMapRotationDataCsReq {} -/// Obf: BMCKKKBCPBN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6869)] +#[cmdid(6845)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMapRotationDataScRsp { /// offset: 60 - #[prost(uint32, tag = "1")] - pub nflbondjaie: u32, + #[prost(int32, tag = "15")] + pub era_flipper_region_id: i32, + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub energy_info: ::core::option::Option, /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub charger_info_list: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(int32, tag = "9")] - pub acnpbbnlmie: i32, - /// offset: 64 - #[prost(bool, tag = "7")] - pub omejllmnpcn: bool, - /// offset: 40 - #[prost(message, optional, tag = "14")] - pub map_info: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "11")] + #[prost(message, repeated, tag = "5")] pub rotater_data_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, optional, tag = "8")] - pub energy_info: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "4")] + pub rogue_map: ::core::option::Option, + /// offset: 68 + #[prost(uint32, tag = "14")] + pub ldekdlhbhho: u32, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub charger_info: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(bool, tag = "11")] + pub cfkommfdngp: bool, /// offset: 56 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: OGIKFNAJMKD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6857)] +#[cmdid(6876)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ResetMapRotationRegionCsReq { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub map_info: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "10")] + /// offset: 24 + #[prost(message, optional, tag = "15")] pub motion: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub rogue_map: ::core::option::Option, } -/// Obf: FJDJOHKOALD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6815)] +#[cmdid(6852)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ResetMapRotationRegionScRsp { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub client_pos_version: u32, /// offset: 24 - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "14")] pub motion: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "6")] + pub client_pos_version: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: AGKAIGOINHH +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6892)] +#[cmdid(6850)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveMapRotationRegionScNotify {} -/// Obf: FBFGHEMDPLC +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6881)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct UpdateEnergyScNotify { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub energy_info: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6893)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UpdateMapRotationDataScNotify { + /// offset: 48 + #[prost(message, repeated, tag = "4")] + pub charger_info: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(int32, tag = "3")] + pub era_flipper_region_id: i32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub rogue_map: ::core::option::Option, + /// offset: 60 + #[prost(bool, tag = "9")] + pub cfkommfdngp: bool, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub rotater_data_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "15")] + pub ldekdlhbhho: u32, + /// offset: 40 + #[prost(message, optional, tag = "14")] + pub energy_info: ::core::option::Option, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6837)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpdateEnergyScNotify { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub energy_info: ::core::option::Option, -} -/// Obf: MLDGPOOKPBM -#[derive(proto_derive::CmdID)] -#[cmdid(6868)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct UpdateMapRotationDataScNotify { - /// offset: 60 - #[prost(uint32, tag = "10")] - pub nflbondjaie: u32, - /// offset: 48 - #[prost(message, repeated, tag = "6")] - pub rotater_data_list: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(int32, tag = "1")] - pub acnpbbnlmie: i32, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub energy_info: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub map_info: ::core::option::Option, - /// offset: 56 - #[prost(bool, tag = "7")] - pub omejllmnpcn: bool, - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub charger_info_list: ::prost::alloc::vec::Vec, -} -/// Obf: EFLGMAFLDGK -#[derive(proto_derive::CmdID)] -#[cmdid(6849)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RemoveRotaterCsReq { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub rotater_data: ::core::option::Option, -} -/// Obf: APBBFPABNII -#[derive(proto_derive::CmdID)] -#[cmdid(6880)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RemoveRotaterScRsp { /// offset: 16 #[prost(message, optional, tag = "8")] pub rotater_data: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "6")] - pub energy_info: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6810)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RemoveRotaterScRsp { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub rotater_data: ::core::option::Option, /// offset: 40 #[prost(uint32, tag = "15")] pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub energy_info: ::core::option::Option, } -/// Obf: IGPELCGOPMD +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6877)] +#[cmdid(6867)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateRotaterScNotify { /// offset: 24 - #[prost(message, repeated, tag = "1")] + #[prost(message, repeated, tag = "8")] pub rotater_data_list: ::prost::alloc::vec::Vec, } -/// Obf: GCFNLGIEEFA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8277)] +#[cmdid(8283)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarbleGetDataCsReq {} -/// Obf: OFNGFMDFDCH +pub struct Kgeijdnmeko {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8271)] +#[cmdid(8276)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarbleGetDataScRsp { +pub struct Eghobcimpnh { /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub iogdkgfdfpc: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub mklbdpeaebd: ::prost::alloc::vec::Vec, /// offset: 52 - #[prost(int32, tag = "9")] - pub score: i32, + #[prost(int32, tag = "13")] + pub score_id: i32, + /// offset: 40 + #[prost(uint32, repeated, tag = "8")] + pub imgbokeiffn: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub loinlpbhpgb: ::prost::alloc::vec::Vec, /// offset: 48 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8279)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mfanaadhhpg { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub ndbpolnhhcn: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub pgdaamgjigf: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8275)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bpnjpcnekbd { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub ndbpolnhhcn: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8284)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kcgjfhileoi { + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub pgdaamgjigf: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8274)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Llbmdljhjlo { + /// offset: 32 #[prost(uint32, tag = "6")] pub retcode: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub mpbmpffgibo: ::prost::alloc::vec::Vec, - /// offset: 16 #[prost(uint32, repeated, tag = "11")] - pub ojnpgiljien: ::prost::alloc::vec::Vec, + pub pgdaamgjigf: ::prost::alloc::vec::Vec, } -/// Obf: GDCEEEKKMHC -#[derive(proto_derive::CmdID)] -#[cmdid(8283)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarbleLevelFinishCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub marble_seal_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub marble_level_id: u32, -} -/// Obf: FPOHCPKLLDB -#[derive(proto_derive::CmdID)] -#[cmdid(8289)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarbleLevelFinishScRsp { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub marble_level_id: u32, -} -/// Obf: ELMECJPPBJC +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(8273)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarbleShopBuyCsReq { +pub struct Gbhlodaeahh { /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub marble_seal_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub pgdaamgjigf: ::prost::alloc::vec::Vec, } -/// Obf: BIIBJHACDLB +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8285)] +#[cmdid(8287)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Okekjdfoikd { + /// offset: 24 + #[prost(int32, tag = "1")] + pub score_id: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8282)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarbleShopBuyScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, +pub struct Pniehblnhob { /// offset: 24 #[prost(uint32, repeated, tag = "14")] - pub marble_seal_id_list: ::prost::alloc::vec::Vec, + pub dfdbmflakml: ::prost::alloc::vec::Vec, } -/// Obf: DCPFKNACOFP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8278)] +#[cmdid(8271)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarbleUnlockSealScNotify { +pub struct Oljeaphmgie { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub marble_seal_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "9")] + pub dfdbmflakml: ::prost::alloc::vec::Vec, } -/// Obf: KLCGCHENFBG #[derive(proto_derive::CmdID)] -#[cmdid(8281)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MarblePvpDataUpdateScNotify { +pub struct MarkChestInfo { + /// offset: 36 + #[prost(uint32, tag = "9")] + pub plane_id: u32, /// offset: 24 - #[prost(int32, tag = "3")] - pub score: i32, + #[prost(uint32, tag = "4")] + pub config_id: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub group_id: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub floor_id: u32, } -/// Obf: COAMELCLLIA #[derive(proto_derive::CmdID)] -#[cmdid(8280)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarbleUpdateShownSealCsReq { +pub struct MarkChestFuncInfo { + /// offset: 40 + #[prost(uint32, tag = "5")] + pub func_id: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub shown_seal_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub mark_chest_info_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(int64, tag = "13")] + pub mark_time: i64, } -/// Obf: CBLDNNGEMFC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8286)] +#[cmdid(8193)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetMarkChestCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8186)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MarbleUpdateShownSealScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub shown_seal_list: ::prost::alloc::vec::Vec, +pub struct GetMarkChestScRsp { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub mark_chest_func_info: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "15")] pub retcode: u32, } +/// Type: Req #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mjfcembpich { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub group_id: u32, - /// offset: 28 - #[prost(uint32, tag = "8")] - pub plane_id: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub floor_id: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub config_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ibcgaglolna { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub bcemakcmadn: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub hobjminnbop: u32, - /// offset: 40 - #[prost(int64, tag = "7")] - pub jjcipimcbbj: i64, -} -/// Obf: GGINONMHBKH -#[derive(proto_derive::CmdID)] -#[cmdid(8187)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMarkChestCsReq {} -/// Obf: GOMJNODBOCJ -#[derive(proto_derive::CmdID)] -#[cmdid(8181)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMarkChestScRsp { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub hiccaiapgmm: ::prost::alloc::vec::Vec, -} -/// Obf: IJDKOLEICOJ -#[derive(proto_derive::CmdID)] -#[cmdid(8193)] +#[cmdid(8189)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMarkChestCsReq { /// offset: 32 - #[prost(uint32, tag = "9")] - pub dbfpaafodkg: u32, + #[prost(uint32, tag = "11")] + pub func_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub mark_chest_info_list: ::prost::alloc::vec::Vec, /// offset: 36 #[prost(uint32, tag = "12")] - pub hobjminnbop: u32, - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub bcemakcmadn: ::prost::alloc::vec::Vec, + pub trigger_param_id: u32, } -/// Obf: MNJGDBOAHJB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8199)] +#[cmdid(8185)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMarkChestScRsp { /// offset: 40 #[prost(uint32, tag = "10")] - pub hobjminnbop: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, + pub trigger_param_id: u32, /// offset: 36 - #[prost(uint32, tag = "11")] - pub dbfpaafodkg: u32, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub hiccaiapgmm: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub func_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub mark_chest_func_info: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, } -/// Obf: CHOEBMGIKBN +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8183)] +#[cmdid(8194)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MarkChestChangedScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub hiccaiapgmm: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub mark_chest_func_info: ::prost::alloc::vec::Vec, } -/// Obf: DIPCGPPPIFM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7326)] +#[cmdid(7348)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartMatchCsReq { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub ejofcnaedhk: ::core::option::Option, /// offset: 32 - #[prost(enumeration = "Noogdpkefkl", tag = "8")] - pub fight_game_mode: i32, + #[prost(enumeration = "FightGameMode", tag = "12")] + pub gclccogidoa: i32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub ehgogiibaon: ::core::option::Option, } -/// Obf: LHIBLDGHJPO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7328)] +#[cmdid(7302)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartMatchScRsp { /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub ejofcnaedhk: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub ehgogiibaon: ::core::option::Option, } -/// Obf: NIKJIKNJOJP #[derive(proto_derive::CmdID)] -#[cmdid(7321)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelMatchCsReq {} -/// Obf: LFAHPLFNMBF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7338)] +#[cmdid(7305)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CancelMatchScRsp { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub retcode: u32, } -/// Obf: BGAEOIBBAHO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7305)] +#[cmdid(7335)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchResultScNotify { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, } -/// Obf: KELFFABDNPC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7327)] +#[cmdid(7333)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCrossInfoCsReq {} -/// Obf: AIIPLMKCGDA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7320)] +#[cmdid(7331)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCrossInfoScRsp { - /// offset: 36 - #[prost(enumeration = "Noogdpkefkl", tag = "14")] - pub fight_game_mode: i32, - /// offset: 40 - #[prost(uint64, tag = "12")] - pub nogfeemnhpc: u64, /// offset: 24 - #[prost(uint64, tag = "7")] + #[prost(uint64, tag = "4")] pub room_id: u64, /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: OFMCCFJNGEF -#[derive(proto_derive::CmdID)] -#[cmdid(7426)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeGetDataCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lmpiecfmfoi { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub acjcphifmln: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub ebgmbdmpegm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dhonnihmaci { + #[prost(enumeration = "FightGameMode", tag = "5")] + pub gclccogidoa: i32, + /// offset: 40 + #[prost(uint64, tag = "11")] + pub afdffaihafl: u64, /// offset: 36 - #[prost(uint32, tag = "6")] - pub count: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub fmkkabmdinj: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub pos: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub bkmpfeocfib: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Abgejnbcdjk { - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "6")] - pub ilbhdlmlmck: ::std::collections::HashMap, - /// offset: 48 - #[prost(message, repeated, tag = "9")] - pub jmbciclchkd: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "1")] - pub bgafcobnlpm: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "11")] - pub begmfiaphlm: ::std::collections::HashMap, -} -/// Obf: CLNGGBNIFJL -#[derive(proto_derive::CmdID)] -#[cmdid(7428)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchThreeGetDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub mfkjdoeblim: ::core::option::Option, -} -/// Obf: BBDEFCGCKDC -#[derive(proto_derive::CmdID)] -#[cmdid(7421)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchThreeLevelEndCsReq { - /// offset: 56 #[prost(uint32, tag = "13")] - pub bkmpfeocfib: u32, - /// offset: 40 - #[prost(string, tag = "1")] - pub miilnlhddjm: ::prost::alloc::string::String, - /// offset: 52 - #[prost(uint32, tag = "12")] - pub fmkkabmdinj: u32, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub acjcphifmln: u32, - /// offset: 60 - #[prost(uint32, tag = "9")] - pub ebgmbdmpegm: u32, - /// offset: 32 - #[prost(map = "uint32, uint32", tag = "6")] - pub ilbhdlmlmck: ::std::collections::HashMap, - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub jeppfdinbnb: ::prost::alloc::vec::Vec, -} -/// Obf: NNJADKELKCK -#[derive(proto_derive::CmdID)] -#[cmdid(7438)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeLevelEndScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub acjcphifmln: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub ebgmbdmpegm: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] pub retcode: u32, } -/// Obf: ALIAOBCDFDG -#[derive(proto_derive::CmdID)] -#[cmdid(7405)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchThreeSyncDataScNotify { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub mfkjdoeblim: ::core::option::Option, -} -/// Obf: JFHHMNCCCDB -#[derive(proto_derive::CmdID)] -#[cmdid(7427)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeSetBirdPosCsReq { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub pos: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub bkmpfeocfib: u32, -} -/// Obf: OAFAJMBNNNG -#[derive(proto_derive::CmdID)] -#[cmdid(7420)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeSetBirdPosScRsp { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub pos: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub bkmpfeocfib: u32, -} -/// Obf: EOEIBIBHNIG -#[derive(proto_derive::CmdID)] -#[cmdid(7444)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeV2GetDataCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gnebbaeikgj { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub acjcphifmln: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub akloeigkgan: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lnoikgkjhlk { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub bkmpfeocfib: u32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub count: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub pos: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub fmkkabmdinj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kfnjakgefla { - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub ehbghcgkfbh: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "13")] - pub edgjddiepag: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(uint32, tag = "3")] - pub dpbmlffpokh: u32, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub hlpodgbclka: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub bgafcobnlpm: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "9")] - pub omkfkgigfpp: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "11")] - pub cdmpogjjmjm: u32, -} -/// Obf: EOLNHMGCMCJ -#[derive(proto_derive::CmdID)] -#[cmdid(7401)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchThreeV2GetDataScRsp { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub eahmjfllggk: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: BCLHKPGIIMG -#[derive(proto_derive::CmdID)] -#[cmdid(7445)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeV2BattleItemLevelUpCsReq { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub ldnjeacfbje: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub dmkfffpdldi: u32, -} -/// Obf: NLKKKHHJLLA -#[derive(proto_derive::CmdID)] -#[cmdid(7443)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeV2BattleItemLevelUpScRsp { - /// offset: 32 - #[prost(uint32, tag = "12")] - pub dmkfffpdldi: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub ldnjeacfbje: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: FHBNBAMHGID -#[derive(proto_derive::CmdID)] -#[cmdid(7403)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchThreeV2LevelEndCsReq { - /// offset: 64 - #[prost(uint32, tag = "12")] - pub acjcphifmln: u32, - /// offset: 52 - #[prost(uint32, tag = "9")] - pub ehmpemeonge: u32, - /// offset: 40 - #[prost(message, repeated, tag = "4")] - pub hldnmibklkj: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "7")] - pub bbgkakhgoio: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "6")] - pub jkfpengnjpi: u32, - /// offset: 16 - #[prost(string, tag = "3")] - pub miilnlhddjm: ::prost::alloc::string::String, - /// offset: 60 - #[prost(uint32, tag = "15")] - pub bkmpfeocfib: u32, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub dkbjhpijcae: u32, -} -/// Obf: CIHEEENMOLK -#[derive(proto_derive::CmdID)] -#[cmdid(7423)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchThreeV2LevelEndScRsp { - /// offset: 68 - #[prost(uint32, tag = "3")] - pub acjcphifmln: u32, - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub mnbejdhhojn: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "4")] - pub cdmpogjjmjm: u32, - /// offset: 48 - #[prost(message, optional, tag = "12")] - pub aekcppidnmd: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub pecfjcdbcbn: ::core::option::Option, - /// offset: 60 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 64 - #[prost(uint32, tag = "15")] - pub ebhajenikaf: u32, - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub lmgkmaoicgc: ::core::option::Option, -} -/// Obf: IOGOGCEDBDG +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7419)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeV2SetBirdPosCsReq { +pub struct Ipbnimplebd {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fknjaebdond { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub level_id: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub chdmhjdlnhi: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bljdhnjajdp { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub count: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub loljfgjknbk: u32, /// offset: 24 #[prost(uint32, tag = "3")] - pub pos: u32, - /// offset: 28 - #[prost(uint32, tag = "9")] - pub bkmpfeocfib: u32, -} -/// Obf: NDJPJFKOOBO -#[derive(proto_derive::CmdID)] -#[cmdid(7447)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeV2SetBirdPosScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub bkmpfeocfib: u32, + pub mefeplccgle: u32, /// offset: 36 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "13")] pub pos: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub jmhpfpmajfg: u32, } -/// Obf: HCEFLPBBGHC +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dinkmkhigmc { + /// offset: 32 + #[prost(message, repeated, tag = "9")] + pub cdcieahihib: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "6")] + pub piahgdjepgj: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "15")] + pub pklkdkpknnm: ::std::collections::HashMap, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "8")] + pub hpdmdamggde: ::std::collections::HashMap, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7402)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ndnodngcifp { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub bggcghgnofl: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7448)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lcnhijfmbai { + /// offset: 48 + #[prost(uint32, tag = "10")] + pub mefeplccgle: u32, + /// offset: 60 + #[prost(uint32, tag = "11")] + pub loljfgjknbk: u32, + /// offset: 40 + #[prost(string, tag = "14")] + pub uuid: ::prost::alloc::string::String, + /// offset: 32 + #[prost(map = "uint32, uint32", tag = "2")] + pub hpdmdamggde: ::std::collections::HashMap, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub level_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub hcgcdflhlip: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "9")] + pub chdmhjdlnhi: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7405)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Anfgnjfoffi { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub level_id: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub chdmhjdlnhi: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7435)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bodcpljdpgf { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub bggcghgnofl: ::core::option::Option, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7433)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchThreeV2ScNotify { - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub eahmjfllggk: ::core::option::Option, -} -/// Obf: DGCJHJHADGG -#[derive(proto_derive::CmdID)] -#[cmdid(7430)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MatchThreeV2PvpFinishScNotify { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub eahmjfllggk: ::core::option::Option, - /// offset: 52 - #[prost(enumeration = "Noogdpkefkl", tag = "11")] - pub beipbpkkdmi: i32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub fdgdokafbdh: u32, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub niaeghjlnmb: ::core::option::Option, - /// offset: 48 - #[prost(enumeration = "Keekddahfoe", tag = "15")] - pub reason: i32, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub kojihjihkia: u32, -} -/// Obf: BBLPAEBJLGL -#[derive(proto_derive::CmdID)] -#[cmdid(7411)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MatchThreeRoyaleFinishScNotify { - /// offset: 36 - #[prost(int32, tag = "8")] - pub kojihjihkia: i32, - /// offset: 40 - #[prost(enumeration = "Keekddahfoe", tag = "1")] - pub reason: i32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub fdgdokafbdh: u32, - /// offset: 44 - #[prost(enumeration = "Noogdpkefkl", tag = "14")] - pub beipbpkkdmi: i32, +pub struct Eemdhjfinbd { /// offset: 24 - #[prost(message, optional, tag = "6")] - pub niaeghjlnmb: ::core::option::Option, + #[prost(uint32, tag = "8")] + pub pos: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub mefeplccgle: u32, } -/// Obf: JBGJPJGLNGF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2799)] +#[cmdid(7431)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Emkjjgaddld { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub mefeplccgle: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub pos: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7425)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Agllfhmlcff {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ifiikifding { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub level_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub ikkkcnabdjk: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eppghgcffgf { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub loljfgjknbk: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub mefeplccgle: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub pos: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub count: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ijdjaoglhci { + /// offset: 48 + #[prost(message, repeated, tag = "6")] + pub bnanbpohbgm: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "2")] + pub pkalgpkaioi: u32, + /// offset: 56 + #[prost(message, repeated, tag = "8")] + pub pkbplacjicg: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub piahgdjepgj: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "7")] + pub dhfijlednjk: u32, + /// offset: 32 + #[prost(message, repeated, tag = "9")] + pub gednfeefngk: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "10")] + pub pkjfighedal: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7446)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bbghlimpobh { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub jdfahegkdef: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7417)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Olipbinkphl { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub ipednalijjm: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub fdbojjijfgn: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7412)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Heooekcdmba { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub ipednalijjm: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub fdbojjijfgn: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7409)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Behgljapojf { + /// offset: 40 + #[prost(string, tag = "8")] + pub uuid: ::prost::alloc::string::String, + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub hdpfgmeclak: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub mefeplccgle: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub bfkgahhcnod: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub dmjnpfejclo: u32, + /// offset: 56 + #[prost(uint32, tag = "14")] + pub level_id: u32, + /// offset: 64 + #[prost(uint32, tag = "6")] + pub hbbgbncpoik: u32, + /// offset: 52 + #[prost(uint32, tag = "7")] + pub agjgbnflcpm: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7413)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kfpnnlagcon { + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub plmmibaoppl: ::core::option::Option, + /// offset: 68 + #[prost(uint32, tag = "14")] + pub boeahgjomkd: u32, + /// offset: 64 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub phmbjpfkkak: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "4")] + pub pkalgpkaioi: u32, + /// offset: 48 + #[prost(message, repeated, tag = "3")] + pub fmocfkidofd: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub level_id: u32, + /// offset: 40 + #[prost(message, optional, tag = "13")] + pub acnlmcdllia: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7443)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pencgfncoei { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub mefeplccgle: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub pos: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7434)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lnbeniecpoi { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub fbddemjdgan: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub pos: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub mefeplccgle: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7420)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gofpclnnhlg { + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub jdfahegkdef: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7407)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jfhbmcmggpg { + /// offset: 48 + #[prost(uint32, tag = "2")] + pub nbbkmjbgmef: u32, + /// offset: 32 + #[prost(message, optional, tag = "4")] + pub cmiimjbobmj: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "1")] + pub dlodejbfnpi: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub jdfahegkdef: ::core::option::Option, + /// offset: 40 + #[prost(enumeration = "Match3FinishReason", tag = "11")] + pub reason: i32, + /// offset: 52 + #[prost(enumeration = "FightGameMode", tag = "8")] + pub iejblkjjaij: i32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7427)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bnpjmliijhe { + /// offset: 32 + #[prost(enumeration = "FightGameMode", tag = "14")] + pub iejblkjjaij: i32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub cmiimjbobmj: ::core::option::Option, + /// offset: 44 + #[prost(int32, tag = "6")] + pub nbbkmjbgmef: i32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub dlodejbfnpi: u32, + /// offset: 40 + #[prost(enumeration = "Match3FinishReason", tag = "7")] + pub reason: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2747)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetNpcMessageGroupCsReq { /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub beeldjgiomn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "5")] + pub contact_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nnmlcfaibde { +pub struct MessageItem { /// offset: 28 - #[prost(uint32, tag = "8")] - pub item_id: u32, + #[prost(uint32, tag = "14")] + pub text_id: u32, /// offset: 24 #[prost(uint32, tag = "1")] - pub cmmbbhhpmko: u32, + pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eiokjolkjpb { - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(enumeration = "Liejljnbjnp", tag = "12")] - pub status: i32, +pub struct MessageSection { + /// offset: 32 + #[prost(uint32, repeated, tag = "14")] + pub message_item_list: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "2")] - pub dchlcmgkipk: u32, - /// offset: 48 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub onleimhgfco: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub item_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub frozen_item_id: u32, + /// offset: 48 + #[prost(enumeration = "MessageSectionStatus", tag = "2")] + pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ddbljmpngai { +pub struct MessageGroup { /// offset: 40 - #[prost(enumeration = "Llhaabppapd", tag = "5")] + #[prost(int64, tag = "13")] + pub refresh_time: i64, + /// offset: 48 + #[prost(enumeration = "MessageGroupStatus", tag = "12")] pub status: i32, + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub message_section_list: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub message_section_id: u32, /// offset: 32 #[prost(uint32, tag = "2")] pub id: u32, - /// offset: 48 - #[prost(int64, tag = "12")] - pub hjegilagjoj: i64, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub dkpnkgnmceh: u32, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub gghlafiiama: ::prost::alloc::vec::Vec, } -/// Obf: NOLLFLMILFJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2723)] +#[cmdid(2709)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetNpcMessageGroupScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub hoblfdjkojo: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "15")] pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub message_group_list: ::prost::alloc::vec::Vec, } -/// Obf: IGJKJNDOGEF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2798)] +#[cmdid(2738)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetNpcStatusCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dmoiobfajge { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub npc_id: u32, +pub struct NpcStatus { /// offset: 28 - #[prost(bool, tag = "11")] - pub hlnfbgacnpo: bool, + #[prost(uint32, tag = "12")] + pub npc_id: u32, + /// offset: 24 + #[prost(bool, tag = "13")] + pub is_finish: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gemjdhnlklc { +pub struct GroupStatus { /// offset: 32 - #[prost(int64, tag = "2")] - pub hjegilagjoj: i64, - /// offset: 28 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub group_id: u32, /// offset: 24 - #[prost(enumeration = "Llhaabppapd", tag = "1")] - pub ebfajeangea: i32, + #[prost(int64, tag = "12")] + pub refresh_time: i64, + /// offset: 36 + #[prost(enumeration = "MessageGroupStatus", tag = "6")] + pub group_status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lopcjeojhcb { - /// offset: 24 - #[prost(enumeration = "Liejljnbjnp", tag = "9")] - pub oppampfbfjf: i32, +pub struct SectionStatus { /// offset: 28 #[prost(uint32, tag = "1")] - pub lbmncagokif: u32, + pub section_id: u32, + /// offset: 24 + #[prost(enumeration = "MessageSectionStatus", tag = "3")] + pub section_status: i32, } -/// Obf: NENLHKPIHFE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2765)] +#[cmdid(2717)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetNpcStatusScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub eipninjnkkp: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "7")] pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub npc_status_list: ::prost::alloc::vec::Vec, } -/// Obf: LCJGNPPLJPL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2783)] +#[cmdid(2751)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishItemIdCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub item_id: u32, /// offset: 28 - #[prost(uint32, tag = "13")] - pub cmmbbhhpmko: u32, + #[prost(uint32, tag = "7")] + pub item_id: u32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub text_id: u32, } -/// Obf: NLMHMBOPNGG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2786)] +#[cmdid(2711)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishItemIdScRsp { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, /// offset: 32 + #[prost(uint32, tag = "7")] + pub text_id: u32, + /// offset: 28 #[prost(uint32, tag = "1")] pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub cmmbbhhpmko: u32, } -/// Obf: KAMANMBICPB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2794)] +#[cmdid(2789)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishSectionIdCsReq { /// offset: 24 - #[prost(uint32, tag = "6")] - pub lbmncagokif: u32, + #[prost(uint32, tag = "15")] + pub section_id: u32, } -/// Obf: PDEHHHADMAM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2752)] +#[cmdid(2720)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishSectionIdScRsp { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub reward: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "3")] - pub lbmncagokif: u32, + #[prost(uint32, tag = "2")] + pub section_id: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub reward: ::core::option::Option, } -/// Obf: BNNJHIIGFOO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2719)] +#[cmdid(2795)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishPerformSectionIdCsReq { + /// offset: 16 + #[prost(message, repeated, tag = "4")] + pub item_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "1")] - pub lbmncagokif: u32, - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub item_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "10")] + pub section_id: u32, } -/// Obf: CHAHPHPAIFE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2744)] +#[cmdid(2791)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishPerformSectionIdScRsp { /// offset: 40 - #[prost(uint32, tag = "15")] - pub lbmncagokif: u32, + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub section_id: u32, /// offset: 16 - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "12")] pub reward: ::core::option::Option, /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub retcode: u32, + #[prost(message, repeated, tag = "4")] + pub item_list: ::prost::alloc::vec::Vec, } -/// Obf: BEGJOHLPFPL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2781)] +#[cmdid(2761)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMissionMessageInfoCsReq {} -/// Obf: OPKGGFELILM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2769)] +#[cmdid(2745)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMissionMessageInfoScRsp { - /// offset: 24 + /// offset: 16 #[prost(map = "uint32, uint32", tag = "3")] - pub apoldlgpkop: ::std::collections::HashMap, + pub lcfnjjhjhko: ::std::collections::HashMap, /// offset: 32 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: IDPMNKKPAFM -#[derive(proto_derive::CmdID)] -#[cmdid(4199)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ShareCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub enfkggnomeo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Adgnkecpoma { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub enfkggnomeo: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub cccdkgamdlb: u32, -} -/// Obf: CANCNJEHNCC -#[derive(proto_derive::CmdID)] -#[cmdid(4123)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ShareScRsp { - /// offset: 40 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub reward: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub fgplilebkgl: ::core::option::Option, -} -/// Obf: KAFCOKKCLHF -#[derive(proto_derive::CmdID)] -#[cmdid(4198)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetShareDataCsReq {} -/// Obf: IIHMBEGFHFB -#[derive(proto_derive::CmdID)] -#[cmdid(4165)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetShareDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub mfkjjbpndam: ::prost::alloc::vec::Vec, -} -/// Obf: JNDOHKAFNKL -#[derive(proto_derive::CmdID)] -#[cmdid(4183)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakePictureCsReq {} -/// Obf: BDHFNKFCPGB -#[derive(proto_derive::CmdID)] -#[cmdid(4186)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakePictureScRsp { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nlbmcgcaeio { - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub pildefkpkle: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub r#type: u32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub afleajihneb: u32, -} -/// Obf: PJKLMNPPMPK -#[derive(proto_derive::CmdID)] -#[cmdid(4157)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TriggerVoiceCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub mnelhnhckpj: ::prost::alloc::vec::Vec, -} -/// Obf: KJIAPDMALBJ -#[derive(proto_derive::CmdID)] -#[cmdid(4115)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TriggerVoiceScRsp { - /// offset: 24 #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: GMLBOMACOAM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4119)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CancelCacheNotifyCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub colbgejelgi: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(string, repeated, tag = "2")] - pub kcljmcakojf: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - /// offset: 40 - #[prost(enumeration = "Mgaefjjdmom", tag = "11")] - pub r#type: i32, -} -/// Obf: CMJOBLOFCJB -#[derive(proto_derive::CmdID)] -#[cmdid(4144)] +#[cmdid(4147)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CancelCacheNotifyScRsp { +pub struct Pbgpjpladmm { /// offset: 24 #[prost(uint32, tag = "8")] - pub retcode: u32, -} -/// Obf: CMHENGJMEEG -#[derive(proto_derive::CmdID)] -#[cmdid(4181)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SecurityReportCsReq { - /// offset: 24 - #[prost(string, tag = "11")] - pub dgdlniefcpf: ::prost::alloc::string::String, -} -/// Obf: EEOFCCFOAMF -#[derive(proto_derive::CmdID)] -#[cmdid(4169)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SecurityReportScRsp { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub retcode: u32, + pub pdllkbacfdd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gmaajhdfacd { - /// offset: 36 - #[prost(uint32, tag = "14")] - pub ifaikoioidd: u32, - /// offset: 28 - #[prost(enumeration = "Dcadlnjbkbk", tag = "7")] - pub r#type: i32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub pdomacfemgg: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub level: u32, -} -/// Obf: EEBOKEEIENE -#[derive(proto_derive::CmdID)] -#[cmdid(4105)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMovieRacingDataCsReq {} -/// Obf: EGBAGIAKJML -#[derive(proto_derive::CmdID)] -#[cmdid(4151)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMovieRacingDataScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub odjigebehgc: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: BNEDNBDDBMA -#[derive(proto_derive::CmdID)] -#[cmdid(4129)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpdateMovieRacingDataCsReq { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub kihchdffpol: ::core::option::Option, -} -/// Obf: BHDCNOPFBEI -#[derive(proto_derive::CmdID)] -#[cmdid(4138)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpdateMovieRacingDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub kihchdffpol: ::core::option::Option, -} -/// Obf: IHGBJICLPHC -#[derive(proto_derive::CmdID)] -#[cmdid(4192)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SubmitOrigamiItemCsReq { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub lcbofmopgke: u32, -} -/// Obf: PGPLGIMENLO -#[derive(proto_derive::CmdID)] -#[cmdid(4137)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SubmitOrigamiItemScRsp { +pub struct Ombdcihgfda { /// offset: 28 #[prost(uint32, tag = "5")] - pub retcode: u32, + pub jeoohkdcjpl: u32, /// offset: 24 - #[prost(uint32, tag = "1")] - pub lcbofmopgke: u32, + #[prost(uint32, tag = "7")] + pub pdllkbacfdd: u32, } -/// Obf: LCDKBMMEBFF -#[derive(proto_derive::CmdID)] -#[cmdid(4168)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetOrigamiPropInfoCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub floor_id_list: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub cur_map_entry_id: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub content_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lammchabagh { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub group_id: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub state: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub config_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fcholndipkc { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub floor_id: u32, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub cljjafgfkel: ::prost::alloc::vec::Vec, -} -/// Obf: GJLDMCNJOMC -#[derive(proto_derive::CmdID)] -#[cmdid(4149)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetOrigamiPropInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub cur_map_entry_id: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub content_id: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub lmebhnldkdj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Klbhfhjdbfi { - /// offset: 32 - #[prost(bool, tag = "12")] - pub ncnaonifpfm: bool, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub bmcjhonbhjh: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub level: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub ifaikoioidd: u32, -} -/// Obf: ONNPOIPDACH -#[derive(proto_derive::CmdID)] -#[cmdid(4103)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetGunPlayDataCsReq {} -/// Obf: FOOCHMJKEBD +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(4109)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetGunPlayDataScRsp { +pub struct Lknafhdgbkg { /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub lnbfdjmnacn: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "14")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub objdjbjcjbi: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4138)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mlngpipghbf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4117)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gagckacbjif { + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub jkeibpdhfbc: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4151)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gahlhbpmnjf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4111)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eljojmljnkg { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hjbhndiiklo { + /// offset: 24 + #[prost(uint32, repeated, tag = "14")] + pub ccmejbanmhd: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub r#type: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub edhmkpkibah: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4176)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gfhfbkkohdb { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub bgedgbebhho: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4152)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ejpgiokiacg { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4195)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lkcoilpbfhg { + /// offset: 40 + #[prost(enumeration = "Mfldhildjdo", tag = "5")] + pub r#type: i32, + /// offset: 24 + #[prost(string, repeated, tag = "6")] + pub odbfnmkeeln: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub daily_index: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4191)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bpkmgaemnoi { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hfnpknkilda { + /// offset: 24 + #[prost(string, tag = "14")] + pub mdhmonnfeoc: ::prost::alloc::string::String, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4145)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Celfbjplhld { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kkfnkkdhlpb { + /// offset: 28 + #[prost(uint32, tag = "1")] + pub kheljlbhedp: u32, + /// offset: 24 + #[prost(enumeration = "Flnjaebepgb", tag = "5")] + pub r#type: i32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub level: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub hdpeoncjbhp: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4162)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Acffhcjggng {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4135)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Obmlehnaobo { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub hfanolhmdeo: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: LMJPCMOHLLP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4162)] +#[cmdid(4198)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpdateGunPlayDataCsReq { - /// offset: 36 - #[prost(uint32, tag = "7")] - pub pneifbegmdh: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub group_id: u32, - /// offset: 40 - #[prost(uint64, tag = "15")] - pub miilnlhddjm: u64, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub odfhnchiejn: ::core::option::Option, -} -/// Obf: BCILDFGGLNN -#[derive(proto_derive::CmdID)] -#[cmdid(4159)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpdateGunPlayDataScRsp { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub odfhnchiejn: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jcdnmbckplf { - /// offset: 32 - #[prost(enumeration = "Fjhikfikamo", tag = "6")] - pub kcmjkgadpip: i32, +pub struct Oegofaoblfg { /// offset: 24 - #[prost(uint32, tag = "7")] - pub id: u32, - /// offset: 28 - #[prost(enumeration = "Giilenmkcah", tag = "11")] - pub hhmabjdimgm: i32, + #[prost(message, optional, tag = "7")] + pub inhlgfafaaj: ::core::option::Option, } -/// Obf: AJMBFNKFGEM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4122)] +#[cmdid(4146)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DifficultyAdjustmentGetDataCsReq {} -/// Obf: LFHFFKDBNHG -#[derive(proto_derive::CmdID)] -#[cmdid(4197)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DifficultyAdjustmentGetDataScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub info_list: ::prost::alloc::vec::Vec, +pub struct Idbkcjhhkeh { /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "10")] pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub inhlgfafaaj: ::core::option::Option, } -/// Obf: JDMHNPOBCBH -#[derive(proto_derive::CmdID)] -#[cmdid(4155)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DifficultyAdjustmentUpdateDataCsReq { - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub data: ::core::option::Option, -} -/// Obf: HBOKFMPEJPN +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(4150)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DifficultyAdjustmentUpdateDataScRsp { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub data: ::core::option::Option, +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Foogebileaf { /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub info_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub retcode: u32, + #[prost(uint32, tag = "12")] + pub phkkjfkfmkn: u32, } -/// Obf: HBGAILHKELO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4160)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MazeKillDirectCsReq { +#[cmdid(4181)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lknokgfjimk { /// offset: 24 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub phkkjfkfmkn: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4193)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ocoeemojdhd { + /// offset: 16 #[prost(uint32, repeated, tag = "10")] - pub entity_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "Mnijhmepgnn", tag = "1")] - pub hhmabjdimgm: i32, + pub floor_id_list: ::prost::alloc::vec::Vec, /// offset: 36 #[prost(uint32, tag = "14")] - pub mmkogoknpkl: u32, + pub content_id: u32, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub entry_story_line_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lnechaplbkp { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub group_id: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub config_id: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub state: u32, } -/// Obf: CCCBKFAAKBD #[derive(proto_derive::CmdID)] -#[cmdid(4171)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MazeKillDirectScRsp { +pub struct Iinllhpgjdh { + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub hbffikbihng: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub floor_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4137)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ebigagodbpm { + /// offset: 40 + #[prost(uint32, tag = "13")] + pub content_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub idkndnihajh: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub entry_story_line_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pookkfpjjad { + /// offset: 32 + #[prost(bool, tag = "11")] + pub is_perfect: bool, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub hdpeoncjbhp: u32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub meppngpabcd: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub level: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4192)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ckiahipfhfa {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4114)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cddkfbpglpj { + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub knjkmmcebae: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4126)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lmdanceplne { + /// offset: 40 + #[prost(uint64, tag = "15")] + pub uuid: u64, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub kjgjhpjbdmc: u32, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub jaagjcgpddi: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub group_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4157)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cdlpedihphc { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub jaagjcgpddi: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pldfdlmcgcf { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub id: u32, + /// offset: 32 + #[prost(enumeration = "Jloblpfkkip", tag = "13")] + pub aoambdmaobj: i32, + /// offset: 28 + #[prost(enumeration = "Jaedbnpjmlh", tag = "11")] + pub phkopcbnocc: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4115)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Chgipfnliaf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4173)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Adinknminad { + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub content_package_list: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "1")] pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub entity_list: ::prost::alloc::vec::Vec, } -/// Obf: ILODDEOGDDO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4135)] +#[cmdid(4170)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fnaodjkigji { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub data: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4113)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct DirectDeliveryScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub lblidldbobm: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub mddjnckmjhg: u32, -} -/// Obf: PHAHEOAHEAI -#[derive(proto_derive::CmdID)] -#[cmdid(4174)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CancelDirectDeliveryNoticeCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub mddjnckmjhg: u32, -} -/// Obf: EIPDHFJOILL -#[derive(proto_derive::CmdID)] -#[cmdid(4116)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CancelDirectDeliveryNoticeScRsp { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub mddjnckmjhg: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] +pub struct Iihfknneofj { + /// offset: 40 + #[prost(uint32, tag = "1")] pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub data: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub content_package_list: ::prost::alloc::vec::Vec, } +/// Type: Req #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Koalfjinblh { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub jcbbhbjdmcp: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub hhjocgomeco: u32, -} -/// Obf: IDNIIANHFIG -#[derive(proto_derive::CmdID)] -#[cmdid(4156)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetSwitchMascotDataCsReq { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub jcbbhbjdmcp: u32, -} -/// Obf: HMGMBKKCINF -#[derive(proto_derive::CmdID)] -#[cmdid(4121)] +#[cmdid(4101)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSwitchMascotDataScRsp { +pub struct Abpnglijjbp { /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, + #[prost(enumeration = "Japnonnghia", tag = "11")] + pub phkopcbnocc: i32, /// offset: 36 #[prost(uint32, tag = "5")] - pub jcbbhbjdmcp: u32, + pub pknbnhficdi: u32, /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub kgkcekgkbkd: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "2")] + pub entity_list: ::prost::alloc::vec::Vec, } -/// Obf: FGKPAAMLOIM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4110)] +#[cmdid(4149)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwitchMascotUpdateScNotify { - /// offset: 32 - #[prost(bool, tag = "11")] - pub pkbahpfjgdb: bool, +pub struct Bblcojglchc { /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub kgkcekgkbkd: ::prost::alloc::vec::Vec, -} -/// Obf: HJLBOJDBFJH -#[derive(proto_derive::CmdID)] -#[cmdid(4153)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetUnreleasedBlockInfoCsReq {} -/// Obf: HEJDHLGFIIE -#[derive(proto_derive::CmdID)] -#[cmdid(4142)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetUnreleasedBlockInfoScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub pmfnjajlfki: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 40 - #[prost(int64, tag = "13")] - pub idpelhipcmb: i64, + #[prost(uint32, repeated, tag = "11")] + pub entity_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, repeated, tag = "10")] - pub fkjlnbjlcfg: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub retcode: u32, } -/// Obf: PPGFCPFDIMD +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1299)] +#[cmdid(4177)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gjhllanlngd { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub pkbfbjfoafa: u32, + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub reward_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4119)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Occkfbcngdo { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub pkbfbjfoafa: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4169)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iljllncmlol { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub pkbfbjfoafa: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fjpjpniaaak { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub hlpaikpclcc: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub fnelbbmapee: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4106)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Baiigcmkcbm { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub hlpaikpclcc: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4188)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jeofibofibl { + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub odeldcgmald: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub hlpaikpclcc: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4103)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fmijpnjlggc { + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub odeldcgmald: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(bool, tag = "6")] + pub lcohcjfnenk: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4155)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cfnpomfjmik {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4130)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fienhookflh { + /// offset: 32 + #[prost(uint32, repeated, tag = "5")] + pub helcchjdbop: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub mbaokionpbi: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(int64, tag = "3")] + pub cceoichhico: i64, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1247)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetMissionDataCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ikammklboco { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub display_value: u32, +pub struct Mifpnaijhom { /// offset: 24 - #[prost(enumeration = "Iebnpbjdfgp", tag = "2")] + #[prost(enumeration = "MissionSyncRecord", tag = "1")] pub r#type: i32, /// offset: 28 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "13")] + pub display_value: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Mission { + /// offset: 28 + #[prost(enumeration = "MissionStatus", tag = "2")] + pub status: i32, /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "4")] pub progress: u32, /// offset: 24 - #[prost(enumeration = "MissionStatus", tag = "10")] - pub status: i32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hpniicaaajk { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub kmhdfladepi: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub index: u32, - /// offset: 16 - #[prost(string, tag = "9")] - pub dfdekanjblg: ::prost::alloc::string::String, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gniejgnkkgg { - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MissionData { - /// offset: 36 - #[prost(enumeration = "MissionStatus", tag = "3")] - pub status: i32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub id: u32, - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fhabeikafbo { - /// offset: 32 #[prost(uint32, tag = "15")] pub id: u32, - #[prost(oneof = "fhabeikafbo::Ijclepcjboa", tags = "1500")] - pub ijclepcjboa: ::core::option::Option, } -/// Nested message and enum types in `FHABEIKAFBO`. -pub mod fhabeikafbo { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MissionCustomValue { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub custom_value: u32, + /// offset: 16 + #[prost(string, tag = "15")] + pub njceohlhjdp: ::prost::alloc::string::String, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub index: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MissionCustomValueList { + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub custom_value_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MainMission { + /// offset: 36 + #[prost(uint32, tag = "7")] + pub id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub custom_value_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(enumeration = "MissionStatus", tag = "14")] + pub status: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Immbipnmnob { + /// offset: 36 + #[prost(uint32, tag = "7")] + pub id: u32, + #[prost(oneof = "immbipnmnob::Ldcafmkfpic", tags = "73")] + pub ldcafmkfpic: ::core::option::Option, +} +/// Nested message and enum types in `IMMBIPNMNOB`. +pub mod immbipnmnob { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Ijclepcjboa { - /// offset: 16 - #[prost(message, tag = "1500")] - Kfbpcfdhlhl(super::Gniejgnkkgg), + pub enum Ldcafmkfpic { + /// offset: 24 + #[prost(message, tag = "73")] + CustomValueList(super::MissionCustomValueList), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Feahpjpkgoa { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub kfbpcfdhlhl: ::core::option::Option, +pub struct MainMissionCustomValue { /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "4")] pub main_mission_id: u32, -} -/// Obf: GBANHIEMJCI -#[derive(proto_derive::CmdID)] -#[cmdid(1223)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMissionDataScRsp { - /// offset: 56 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 48 - #[prost(uint32, tag = "12")] - pub edgegnbcekp: u32, - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub mission_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "4")] - pub ojomocgiaic: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "13")] - pub lflbiopjfge: u32, /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub mission_data_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "6")] + pub custom_value_list: ::core::option::Option, } -/// Obf: DENCGOJOIFI -#[derive(proto_derive::CmdID)] -#[cmdid(1255)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AcceptMainMissionCsReq { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub main_mission_id: u32, -} -/// Obf: KNIMBAFEBNE -#[derive(proto_derive::CmdID)] -#[cmdid(1250)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct AcceptMainMissionScRsp { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub main_mission_id: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: EFFIGFGBAAD -#[derive(proto_derive::CmdID)] -#[cmdid(1298)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FinishTalkMissionCsReq { - /// offset: 40 - #[prost(uint32, tag = "2")] - pub lplhiabdbbg: u32, - /// offset: 16 - #[prost(string, tag = "15")] - pub hnfbhiolpja: ::prost::alloc::string::String, - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, -} -/// Obf: LHDGPAHCAIP -#[derive(proto_derive::CmdID)] -#[cmdid(1265)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FinishTalkMissionScRsp { - /// offset: 40 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 44 - #[prost(uint32, tag = "3")] - pub lplhiabdbbg: u32, - /// offset: 24 - #[prost(string, tag = "6")] - pub hnfbhiolpja: ::prost::alloc::string::String, - /// offset: 32 - #[prost(message, repeated, tag = "1")] - pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, -} -/// Obf: LCGNONDHHEO -#[derive(proto_derive::CmdID)] -#[cmdid(1283)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MissionRewardScNotify { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub main_mission_id: u32, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub lplhiabdbbg: u32, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, -} -/// Obf: ONFLCINAFBH +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(1209)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SubMissionRewardScNotify { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub lplhiabdbbg: u32, +pub struct GetMissionDataScRsp { + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub mission_list: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, + #[prost(message, repeated, tag = "6")] + pub main_mission_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "7")] + pub cfomoipjfdj: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 52 + #[prost(uint32, tag = "4")] + pub flajdfdlifb: u32, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub track_mission_id: u32, } -/// Obf: GENFFKNOCFE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1286)] +#[cmdid(1270)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct AcceptMainMissionCsReq { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub main_mission_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1213)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct AcceptMainMissionScRsp { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub main_mission_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1238)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FinishTalkMissionCsReq { + /// offset: 40 + #[prost(uint32, tag = "13")] + pub sub_mission_id: u32, + /// offset: 16 + #[prost(string, tag = "5")] + pub talk_str: ::prost::alloc::string::String, + /// offset: 32 + #[prost(message, repeated, tag = "7")] + pub custom_value_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1217)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FinishTalkMissionScRsp { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 24 + #[prost(string, tag = "3")] + pub talk_str: ::prost::alloc::string::String, + /// offset: 16 + #[prost(message, repeated, tag = "4")] + pub custom_value_list: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "14")] + pub sub_mission_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1251)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MissionRewardScNotify { + /// offset: 36 + #[prost(uint32, tag = "7")] + pub main_mission_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub sub_mission_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1214)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SubMissionRewardScNotify { + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub sub_mission_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1211)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncTaskCsReq { /// offset: 16 - #[prost(string, tag = "13")] + #[prost(string, tag = "5")] pub key: ::prost::alloc::string::String, } -/// Obf: DPKABFBAICO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1294)] +#[cmdid(1289)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncTaskScRsp { - /// offset: 24 - #[prost(string, tag = "7")] - pub key: ::prost::alloc::string::String, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "15")] pub retcode: u32, + /// offset: 16 + #[prost(string, tag = "1")] + pub key: ::prost::alloc::string::String, } -/// Obf: NCINOGGCALL +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1269)] +#[cmdid(1245)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionGroupWarnScNotify { /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub njocoopicln: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "11")] + pub group_id_list: ::prost::alloc::vec::Vec, } -/// Obf: DKADCMIJPOB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1257)] +#[cmdid(1276)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishCosumeItemMissionCsReq { - /// offset: 16 - #[prost(message, optional, tag = "5")] + /// offset: 24 + #[prost(message, optional, tag = "13")] pub item_list: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "14")] - pub lplhiabdbbg: u32, + #[prost(uint32, tag = "9")] + pub sub_mission_id: u32, } -/// Obf: AFPICDCPKCI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1215)] +#[cmdid(1252)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishCosumeItemMissionScRsp { /// offset: 24 - #[prost(uint32, tag = "2")] - pub lplhiabdbbg: u32, - /// offset: 28 #[prost(uint32, tag = "12")] + pub sub_mission_id: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] pub retcode: u32, } -/// Obf: JMNGAEKFEEP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1277)] +#[cmdid(1267)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMissionStatusCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub main_mission_id_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] + /// offset: 32 + #[prost(uint32, repeated, tag = "7")] pub sub_mission_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub main_mission_id_list: ::prost::alloc::vec::Vec, } -/// Obf: GetMissionStatusScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1205)] +#[cmdid(1262)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMissionStatusScRsp { /// offset: 72 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub retcode: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "9")] + /// offset: 56 + #[prost(uint32, repeated, tag = "5")] pub unfinished_main_mission_id_list: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub disabled_main_mission_id_list: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "12")] + #[prost(uint32, repeated, tag = "2")] pub finished_main_mission_id_list: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, repeated, tag = "2")] + /// offset: 48 + #[prost(message, repeated, tag = "1")] pub sub_mission_status_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub curversion_finished_main_mission_id_list: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(message, repeated, tag = "8")] - pub main_mission_mcv_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "9")] + pub disabled_main_mission_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub curversion_finished_main_mission_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "10")] + pub main_mission_mcv_list: ::prost::alloc::vec::Vec, } -/// Obf: AODEMNAMJEH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1262)] +#[cmdid(1226)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TeleportToMissionResetPointCsReq {} -/// Obf: BBIEFPLCHGJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1259)] +#[cmdid(1257)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TeleportToMissionResetPointScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub client_pos_version: u32, /// offset: 16 - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "10")] pub motion: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "10")] + /// offset: 32 + #[prost(uint32, tag = "11")] pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub client_pos_version: u32, } -/// Obf: OGAPJNMOCMF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1222)] +#[cmdid(1215)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartFinishSubMissionScNotify { /// offset: 24 - #[prost(uint32, tag = "8")] - pub lplhiabdbbg: u32, + #[prost(uint32, tag = "1")] + pub sub_mission_id: u32, } -/// Obf: AAIMCEAJPPB +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1297)] +#[cmdid(1273)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StartFinishMainMissionScNotify { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "1")] pub main_mission_id: u32, } -/// Obf: MCFBCKODIMM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1260)] +#[cmdid(1201)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMainMissionCustomValueCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] + /// offset: 24 + #[prost(uint32, repeated, tag = "14")] pub main_mission_id_list: ::prost::alloc::vec::Vec, } -/// Obf: MODECCBGEBJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1271)] +#[cmdid(1249)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetMainMissionCustomValueScRsp { /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub mission_data_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "10")] + pub main_mission_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub retcode: u32, } -/// Obf: JPFCPAMGPPL +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1235)] +#[cmdid(1277)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionAcceptScNotify { /// offset: 24 - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "12")] pub sub_mission_id_list: ::prost::alloc::vec::Vec, } -/// Obf: HHJLCADBEMF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1216)] +#[cmdid(1269)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateTrackMainMissionIdCsReq { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub lmbceopcigc: u32, /// offset: 24 - #[prost(enumeration = "Nnfdmniijgo", tag = "6")] - pub ijdjmnjbobi: i32, + #[prost(uint32, tag = "15")] + pub track_mission_id: u32, /// offset: 28 - #[prost(uint32, tag = "12")] - pub lflbiopjfge: u32, + #[prost(enumeration = "TrackMainMissionUpdateReasonId", tag = "3")] + pub ekknpkgfpgh: i32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub biaghaiijfc: u32, } -/// Obf: JBEIJKCOPFI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1256)] +#[cmdid(1206)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateTrackMainMissionIdScRsp { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub dkmbbnlmnne: u32, /// offset: 28 - #[prost(uint32, tag = "12")] - pub lflbiopjfge: u32, + #[prost(uint32, tag = "11")] + pub track_mission_id: u32, /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "7")] pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub prev_track_mission_id: u32, } -/// Obf: HJGFDKKGOOH +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1221)] +#[cmdid(1288)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishedMissionScNotify { /// offset: 16 #[prost(uint32, repeated, tag = "6")] - pub finished_mission_id_list: ::prost::alloc::vec::Vec, + pub finished_main_mission_id_list: ::prost::alloc::vec::Vec, } -/// Obf: PILPBOGGLKO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1210)] +#[cmdid(1203)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMainMissionCustomValueCsReq { + /// offset: 16 + #[prost(string, tag = "12")] + pub njceohlhjdp: ::prost::alloc::string::String, /// offset: 32 - #[prost(uint32, tag = "1")] - pub main_mission_id: u32, - /// offset: 24 - #[prost(string, tag = "15")] - pub dfdekanjblg: ::prost::alloc::string::String, - /// offset: 36 #[prost(uint32, tag = "4")] + pub main_mission_id: u32, + /// offset: 36 + #[prost(uint32, tag = "13")] pub value: u32, } -/// Obf: AMNJJPCIGLJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1253)] +#[cmdid(1255)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateMainMissionCustomValueScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "8")] - pub lpjfbmjbepp: ::core::option::Option, -} -/// Obf: FCHDEOGGIEN -#[derive(proto_derive::CmdID)] -#[cmdid(7099)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMonopolyInfoCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Odaijigeajl { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub engjfichdml: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub fljbjpahjif: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub item_value: u32, - /// offset: 40 - #[prost(bool, tag = "2")] - pub ljfgifbdanc: bool, + #[prost(message, optional, tag = "1")] + pub kpogdjfelaf: ::core::option::Option, /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1230)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Decpbapaege { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub performance_id: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub ljjdekkjcan: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1233)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aaeaiifgmee { + /// offset: 24 #[prost(uint32, tag = "8")] - pub ejhdcneegmi: u32, + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7047)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kgnhccpmblh {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mhegeknhoik { /// offset: 41 - #[prost(bool, tag = "15")] - pub hgmmchhbkpb: bool, + #[prost(bool, tag = "3")] + pub ailenfnbfef: bool, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub fklflbfhnch: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub eogkpkkngbm: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub geibknhcgjf: u32, + /// offset: 40 + #[prost(bool, tag = "4")] + pub bdlnkjkepfg: bool, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub fmbfkegeaag: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Llgniknmcke { +pub struct Kbphmidgenp { + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub pjjcjckngnm: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(enumeration = "Gojoindbkik", tag = "8")] - pub nmamonllall: i32, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub ofiodjnlbea: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Gabofmfnmhh", tag = "3")] + pub ienkjkfiklc: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ooemibfnlld { +pub struct Kceoeloaahg { /// offset: 24 - #[prost(uint32, tag = "14")] - pub ekpnclpoenk: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub progress: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub molmnjmooeg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lailnigfpoo { - /// offset: 33 - #[prost(bool, tag = "3")] - pub aelpfebgnok: bool, +pub struct Iilmdliobje { /// offset: 32 - #[prost(bool, tag = "15")] + #[prost(uint64, tag = "13")] + pub djfbjdboagc: u64, + /// offset: 25 + #[prost(bool, tag = "5")] pub is_taken_reward: bool, /// offset: 24 + #[prost(bool, tag = "10")] + pub dppibeheegg: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fpogpjnblmd { + /// offset: 120 + #[prost(bool, tag = "10")] + pub oniihbekalp: bool, + /// offset: 56 + #[prost(string, tag = "72")] + pub kchloalgiod: ::prost::alloc::string::String, + /// offset: 72 + #[prost(message, repeated, tag = "9")] + pub beaepjbilli: ::prost::alloc::vec::Vec, + /// offset: 104 #[prost(uint64, tag = "4")] - pub khgpfhboele: u64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bcmokfhjmpm { + pub bcongobamop: u64, /// offset: 88 - #[prost(uint32, tag = "9")] - pub hhjpblekapn: u32, - /// offset: 92 - #[prost(uint32, tag = "4")] - pub bnoldnbmjhf: u32, - /// offset: 100 - #[prost(bool, tag = "5")] - pub fholfdonoii: bool, - /// offset: 104 - #[prost(uint32, tag = "12")] - pub dgalcmfidfp: u32, - /// offset: 48 - #[prost(string, tag = "626")] - pub pjdfbpbmbba: ::prost::alloc::string::String, - /// offset: 112 - #[prost(uint64, tag = "13")] - pub omgkjljihlh: u64, - /// offset: 136 - #[prost(uint64, tag = "10")] - pub jojndgbejek: u64, - /// offset: 40 - #[prost(string, tag = "232")] - pub jlegpnihmjd: ::prost::alloc::string::String, - /// offset: 64 - #[prost(message, repeated, tag = "7")] - pub ebabbejipjn: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, repeated, tag = "2")] - pub kgbejknclfk: ::prost::alloc::vec::Vec, - /// offset: 128 - #[prost(uint32, tag = "1")] - pub jgnihljfjpp: u32, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub ifkfepkhlgn: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(string, tag = "65")] - pub ddibefmilmp: ::prost::alloc::string::String, - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub cjfmaiakenl: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(message, repeated, tag = "15")] - pub jckngfjeegi: ::prost::alloc::vec::Vec, - /// offset: 120 - #[prost(uint64, tag = "3")] - pub eboolgnacjj: u64, - /// offset: 96 #[prost(uint32, tag = "14")] - pub dgepmkffoab: u32, - /// offset: 108 - #[prost(uint32, tag = "8")] - pub ljjmleioife: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Edkgomnehoh { - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub fjoafflleok: ::prost::alloc::vec::Vec, -} -/// Obf: NJDEBDJLCLD -#[derive(proto_derive::CmdID)] -#[cmdid(7023)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMonopolyInfoScRsp { - /// offset: 40 - #[prost(message, optional, tag = "15")] - pub fghciadcmnj: ::core::option::Option, - /// offset: 64 - #[prost(uint32, repeated, tag = "7")] - pub cokcgfmeiba: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(message, optional, tag = "3")] - pub map_info: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub stt: ::core::option::Option, - /// offset: 56 - #[prost(message, optional, tag = "5")] - pub oelhkeipidj: ::core::option::Option, - /// offset: 120 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 104 - #[prost(message, optional, tag = "8")] - pub lgopnbhhhbg: ::core::option::Option, - /// offset: 96 - #[prost(message, optional, tag = "1")] - pub hehjkfilinn: ::core::option::Option, - /// offset: 80 - #[prost(message, optional, tag = "11")] - pub hljmhnabfmc: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub gpfgdokngel: ::core::option::Option, - /// offset: 72 - #[prost(message, optional, tag = "2")] - pub jnhjeeljfhf: ::core::option::Option, + pub ghmaggnlgfc: u32, /// offset: 32 - #[prost(message, optional, tag = "6")] - pub iedgkhdjjdc: ::core::option::Option, + #[prost(message, repeated, tag = "7")] + pub njaidbgfhgj: ::prost::alloc::vec::Vec, + /// offset: 136 + #[prost(uint32, tag = "3")] + pub hnjcklndegh: u32, + /// offset: 112 + #[prost(uint32, tag = "5")] + pub aljdncdapjg: u32, + /// offset: 116 + #[prost(uint32, tag = "1")] + pub nhejgoljkcm: u32, + /// offset: 128 + #[prost(uint64, tag = "6")] + pub hjohmlljlpa: u64, + /// offset: 64 + #[prost(message, repeated, tag = "13")] + pub fflagpoebgi: ::prost::alloc::vec::Vec, + /// offset: 140 + #[prost(uint32, tag = "11")] + pub lppckeehded: u32, + /// offset: 80 + #[prost(string, tag = "1806")] + pub heoekghapkh: ::prost::alloc::string::String, /// offset: 48 + #[prost(message, repeated, tag = "15")] + pub mkjkhabcibf: ::prost::alloc::vec::Vec, + /// offset: 96 + #[prost(uint64, tag = "12")] + pub ignlfaaagpd: u64, + /// offset: 40 + #[prost(message, repeated, tag = "2")] + pub pkdgklblodj: ::prost::alloc::vec::Vec, + /// offset: 92 + #[prost(uint32, tag = "8")] + pub dfanhajpkah: u32, + /// offset: 24 + #[prost(string, tag = "493")] + pub hihnkdcddck: ::prost::alloc::string::String, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kkkdbmndegp { + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub ogkdadnegne: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7009)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gmicfoldopa { + /// offset: 56 + #[prost(uint32, repeated, tag = "14")] + pub pfdcongabmc: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub jmlnbijgpnl: ::core::option::Option, + /// offset: 24 #[prost(message, optional, tag = "12")] - pub ljaogapdfha: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nfdgijlolgd { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub hfmdlhifmpi: ::prost::alloc::vec::Vec, -} -/// Obf: FJGBNBKCPEA -#[derive(proto_derive::CmdID)] -#[cmdid(7087)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyConditionUpdateScNotify { - /// offset: 24 + pub docalfglobe: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "11")] + pub fmfhggbjima: ::core::option::Option, + /// offset: 72 + #[prost(message, optional, tag = "3")] + pub boncaalanbg: ::core::option::Option, + /// offset: 104 + #[prost(message, optional, tag = "9")] + pub eailmeeofmb: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "4")] + pub ljkpmienpao: ::core::option::Option, + /// offset: 88 + #[prost(message, optional, tag = "15")] + pub neblimjgphj: ::core::option::Option, + /// offset: 64 + #[prost(message, optional, tag = "10")] + pub stt: ::core::option::Option, + /// offset: 112 + #[prost(message, optional, tag = "13")] + pub ghofgnbldkc: ::core::option::Option, + /// offset: 120 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 96 #[prost(message, optional, tag = "7")] - pub hehjkfilinn: ::core::option::Option, + pub odenikgcoof: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "8")] + pub rogue_map: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kjbmlbgibjf { +pub struct Dbkmfnjpjja { /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub jihchilfjpi: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub occmnidebbj: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub kgicadhgeif: ::prost::alloc::vec::Vec, } -/// Obf: NOACPJFDBNC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7093)] +#[cmdid(7075)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolySttUpdateScNotify { +pub struct Ofmkjhfpbnk { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub fmfhggbjima: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Magbkemochc { /// offset: 24 - #[prost(message, optional, tag = "1")] - pub stt: ::core::option::Option, + #[prost(uint32, repeated, tag = "11")] + pub ahifkonfkdd: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub jkjjkibmgnc: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7004)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Njpccbnpmep { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub stt: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iaaccafgepi { +pub struct Jkipkobiecp { /// offset: 36 - #[prost(bool, tag = "11")] - pub jmdeflafice: bool, + #[prost(uint32, tag = "8")] + pub llnngangkha: u32, /// offset: 32 - #[prost(uint32, tag = "2")] - pub hhcbjghkcpc: u32, - /// offset: 24 - #[prost(enumeration = "Ihgjllngdkl", tag = "3")] - pub mafkcbodmmc: i32, - /// offset: 28 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "6")] pub map_id: u32, + /// offset: 28 + #[prost(enumeration = "Cgngjgpejoc", tag = "2")] + pub cogpnpeepeg: i32, + /// offset: 24 + #[prost(bool, tag = "4")] + pub boninfiogjk: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jajgkkdpalc { - /// offset: 40 - #[prost(message, repeated, tag = "6")] - pub nbmpbgpjonh: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub hgbigbfgbom: ::core::option::Option, +pub struct Oeaandenbhl { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub idlomfeipee: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "11")] + pub jddeoaapfjk: u32, /// offset: 32 - #[prost(message, repeated, tag = "11")] - pub imopiejbhod: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub dkheggdgfpc: ::prost::alloc::vec::Vec, /// offset: 48 #[prost(uint32, tag = "15")] - pub pgalbdiiefg: u32, - /// offset: 52 - #[prost(uint32, tag = "10")] - pub lbbonkacgej: u32, + pub cfgpfejenpo: u32, + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub ionbpgkjoof: ::prost::alloc::vec::Vec, } -/// Obf: NKJHIGBOJGE +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7067)] +#[cmdid(7044)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyEventLoadUpdateScNotify { +pub struct Fgoifcabmmg { /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub nbmpbgpjonh: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub imopiejbhod: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Comeolglnko { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub event_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pblcejhpopo { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub event_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lihocehepdb { - /// offset: 36 - #[prost(uint32, tag = "4")] - pub lfcmbgoaibb: u32, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub kdmlllghjon: u32, + #[prost(message, repeated, tag = "10")] + pub ionbpgkjoof: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(message, repeated, tag = "13")] + pub dkheggdgfpc: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ipdjfelckhm { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub event_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bllpkdeffjp { + /// offset: 24 + #[prost(uint32, tag = "7")] pub event_id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub hfejhlniggh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ohnbchloebl { - /// offset: 40 - #[prost(uint32, tag = "9")] - pub lfcmbgoaibb: u32, - /// offset: 16 +pub struct Ibdddfbmpgl { + /// offset: 24 #[prost(uint32, repeated, tag = "13")] - pub hfejhlniggh: ::prost::alloc::vec::Vec, + pub bmpcoaaoiba: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "12")] - pub eccjbglbigm: u32, + pub event_id: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub eecaookojjg: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub llhfnkjofma: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aojlhkbofoo { + /// offset: 16 + #[prost(uint32, repeated, tag = "10")] + pub bmpcoaaoiba: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub event_id: u32, /// offset: 36 #[prost(uint32, tag = "5")] - pub olfnjjklgmk: u32, + pub jinobpcokpk: u32, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub eecaookojjg: u32, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub jbiejefgcgg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Blmjnffpmcn { +pub struct Nnakhimpopa { /// offset: 32 - #[prost(uint32, tag = "2")] - pub pifpgkffbpn: u32, + #[prost(uint32, tag = "10")] + pub opakbhognek: u32, /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub kmkfojahelj: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub kgekehhbikn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aaibakechce { +pub struct Lgjahihhfnb { /// offset: 24 - #[prost(uint32, tag = "7")] - pub pagcamagflb: u32, + #[prost(uint32, tag = "12")] + pub ciaoahhghld: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fgonfnidohj { +pub struct Mjcmofbchbd { /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "1")] pub shop_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iponfkajenj { +pub struct Okkaegmkhdd { /// offset: 24 - #[prost(uint32, tag = "8")] - pub apaobdgjmeg: u32, + #[prost(uint32, tag = "4")] + pub mbbicijnglk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nalpjmljpnp { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub oefhmbjblgc: u32, +pub struct Clghbhjklfe { /// offset: 28 #[prost(uint32, tag = "14")] - pub ieejchfepha: u32, + pub ogmcjambkea: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub gbokomhebap: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lbenaahcpeo { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub okdlmejpche: u32, - #[prost(oneof = "lbenaahcpeo::Bmpfoikmgbk", tags = "8, 11, 6, 1, 14, 9, 4, 7, 12")] - pub bmpfoikmgbk: ::core::option::Option, +pub struct Ibaofciclil { + /// offset: 36 + #[prost(uint32, tag = "5")] + pub febioficpec: u32, + #[prost(oneof = "ibaofciclil::Fepdjmlcagd", tags = "8, 12, 4, 2, 10, 7, 14, 3, 13")] + pub fepdjmlcagd: ::core::option::Option, } -/// Nested message and enum types in `LBENAAHCPEO`. -pub mod lbenaahcpeo { +/// Nested message and enum types in `IBAOFCICLIL`. +pub mod ibaofciclil { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Bmpfoikmgbk { - /// offset: 24 + pub enum Fepdjmlcagd { + /// offset: 16 #[prost(message, tag = "8")] - Pecbimkooah(super::Comeolglnko), - /// offset: 24 - #[prost(message, tag = "11")] - Emlnnmlgnkh(super::Pblcejhpopo), - /// offset: 24 - #[prost(message, tag = "6")] - Jbjldppdbbc(super::Lihocehepdb), - /// offset: 24 - #[prost(message, tag = "1")] - Ecoifnnjdap(super::Aaibakechce), - /// offset: 24 - #[prost(message, tag = "14")] - Nbjicdajdgf(super::Fgonfnidohj), - /// offset: 24 - #[prost(message, tag = "9")] - Gajbfpcpigm(super::Iponfkajenj), - /// offset: 24 - #[prost(message, tag = "4")] - Joppaemppfh(super::Nalpjmljpnp), - /// offset: 24 - #[prost(message, tag = "7")] - Joadhbldimf(super::Ohnbchloebl), - /// offset: 24 + Ppjiikfjomi(super::Ipdjfelckhm), + /// offset: 16 #[prost(message, tag = "12")] - Iefoghngcmc(super::Blmjnffpmcn), + Nddeflfkapk(super::Bllpkdeffjp), + /// offset: 16 + #[prost(message, tag = "4")] + Edhkfjkjjgp(super::Ibdddfbmpgl), + /// offset: 16 + #[prost(message, tag = "2")] + Ihppciadcff(super::Lgjahihhfnb), + /// offset: 16 + #[prost(message, tag = "10")] + Elhkkabfjgf(super::Mjcmofbchbd), + /// offset: 16 + #[prost(message, tag = "7")] + Leaebnaopal(super::Okkaegmkhdd), + /// offset: 16 + #[prost(message, tag = "14")] + Degkmdegpfj(super::Clghbhjklfe), + /// offset: 16 + #[prost(message, tag = "3")] + Mkdacijfffp(super::Aojlhkbofoo), + /// offset: 16 + #[prost(message, tag = "13")] + Fedipkiemka(super::Nnakhimpopa), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Icihabolhpn { +pub struct Ogidhoilefe { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub epfbbnnlfij: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7015)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cilgfnegehd { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub epfbbnnlfij: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7017)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ljidiffpakl { /// offset: 16 #[prost(message, optional, tag = "3")] - pub fhnpagihinf: ::core::option::Option, + pub idlomfeipee: ::core::option::Option, } -/// Obf: BAOJKHHNIPI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7022)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyContentUpdateScNotify { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub fhnpagihinf: ::core::option::Option, -} -/// Obf: KIJLBDPPDLN -#[derive(proto_derive::CmdID)] -#[cmdid(7065)] +#[cmdid(7011)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyCellUpdateNotify { - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub hgbigbfgbom: ::core::option::Option, -} -/// Obf: BLAHEBDCJFP +pub struct Fhldklfkepg {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7086)] +#[cmdid(7089)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyRollDiceCsReq {} -/// Obf: GAMAKOOBJPJ -#[derive(proto_derive::CmdID)] -#[cmdid(7094)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyRollDiceScRsp { +pub struct Gcpjpejmdap { /// offset: 28 + #[prost(uint32, tag = "4")] + pub jefdeocdhfn: u32, + /// offset: 24 #[prost(uint32, tag = "3")] pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub blhiabbkgpb: u32, } -/// Obf: KFCDDEOCHHA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7062)] +#[cmdid(7026)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyCheatDiceCsReq { +pub struct Okgdejigade { /// offset: 24 - #[prost(uint32, tag = "8")] - pub ocfhhdcbfbh: u32, + #[prost(uint32, tag = "13")] + pub migkbelbepb: u32, } -/// Obf: DFNEFIHIBGP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7059)] +#[cmdid(7057)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyCheatDiceScRsp { +pub struct Djdollmenfg { + /// offset: 28 + #[prost(uint32, tag = "4")] + pub retcode: u32, /// offset: 24 #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub ocfhhdcbfbh: u32, + pub migkbelbepb: u32, } -/// Obf: BDONOPOFPNF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7052)] +#[cmdid(7020)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyMoveCsReq { +pub struct Hilfaihngkd { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub amlmgckjfmc: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub fobchibdbgk: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7095)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Afpaebgolhg { + /// offset: 40 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 32 + #[prost(message, repeated, tag = "14")] + pub coknlaoklfi: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub rogue_map: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7091)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Edidbdgjiaf { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub llhfnkjofma: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub event_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pfimofglioo { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub jpbelmffogc: u32, /// offset: 24 #[prost(uint32, tag = "5")] - pub cnifhnbiofj: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub dgbmdpbialg: u32, -} -/// Obf: EEJEKFGIOKO -#[derive(proto_derive::CmdID)] -#[cmdid(7019)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyMoveScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub hecjnjniakk: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub map_info: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: KGKAJKPJLFC -#[derive(proto_derive::CmdID)] -#[cmdid(7044)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolySelectOptionCsReq { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub kdmlllghjon: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub event_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ddcelcojgnp { - /// offset: 28 - #[prost(uint32, tag = "1")] pub event_id: u32, /// offset: 32 - #[prost(uint32, tag = "3")] - pub lgiiahidlmg: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub kdmlllghjon: u32, + #[prost(uint32, tag = "8")] + pub llhfnkjofma: u32, } -/// Obf: OICAPHLMKFG +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7061)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dpcpmolhgme { + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub ligadlaglpo: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub llhfnkjofma: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub docalfglobe: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub event_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7050)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oafhjfcngkj { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub event_id: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7081)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolySelectOptionScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub abnoinlokln: ::prost::alloc::vec::Vec, +pub struct Obeigomkpfb { + /// offset: 36 + #[prost(uint32, tag = "10")] + pub event_id: u32, /// offset: 32 - #[prost(message, optional, tag = "12")] - pub gpfgdokngel: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub kdmlllghjon: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub event_id: u32, -} -/// Obf: CHOHHHJCANJ -#[derive(proto_derive::CmdID)] -#[cmdid(7092)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyRollRandomCsReq { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(message, optional, tag = "11")] + pub docalfglobe: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7093)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ficmemecajk { + /// offset: 24 + #[prost(uint32, tag = "1")] pub event_id: u32, } -/// Obf: KCAHEEPIEPD +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7037)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyRollRandomScRsp { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub gpfgdokngel: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub event_id: u32, +pub struct Nohghmmfblc { /// offset: 36 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "9")] pub retcode: u32, -} -/// Obf: JNIOMAMDMLP -#[derive(proto_derive::CmdID)] -#[cmdid(7068)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyReRollRandomCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] + /// offset: 32 + #[prost(uint32, tag = "4")] pub event_id: u32, -} -/// Obf: GEAAFLHKNMI -#[derive(proto_derive::CmdID)] -#[cmdid(7049)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyReRollRandomScRsp { /// offset: 24 #[prost(message, optional, tag = "7")] - pub gpfgdokngel: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub event_id: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, + pub docalfglobe: ::core::option::Option, } -/// Obf: FAGIFHGCFJN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7080)] +#[cmdid(7010)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyConfirmRandomCsReq { +pub struct Hjdfohnjpph { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "2")] pub event_id: u32, } -/// Obf: ILDHPDFMMBM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7077)] +#[cmdid(7067)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyConfirmRandomScRsp { +pub struct Anhcfipglde { /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub gpfgdokngel: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub event_id: u32, -} -/// Obf: GONIBBGGNAN -#[derive(proto_derive::CmdID)] -#[cmdid(7005)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyBuyGoodsCsReq { - /// offset: 24 + /// offset: 32 #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub docalfglobe: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7062)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Koiekodnagi { + /// offset: 24 + #[prost(uint32, tag = "9")] pub shop_id: u32, /// offset: 28 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "14")] pub goods_id: u32, } -/// Obf: BMMNBPLHDLA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7051)] +#[cmdid(7035)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyBuyGoodsScRsp { +pub struct Ekiomgciink { /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub shop_id: u32, - /// offset: 28 #[prost(uint32, tag = "12")] pub goods_id: u32, -} -/// Obf: IJOFOKMGGCC -#[derive(proto_derive::CmdID)] -#[cmdid(7029)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyUpgradeAssetCsReq { /// offset: 24 - #[prost(uint32, tag = "15")] - pub pagcamagflb: u32, -} -/// Obf: NJBGCNPGLPM -#[derive(proto_derive::CmdID)] -#[cmdid(7038)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyUpgradeAssetScRsp { + #[prost(uint32, tag = "8")] + pub shop_id: u32, /// offset: 28 - #[prost(uint32, tag = "13")] - pub pagcamagflb: u32, - /// offset: 24 #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: CHDLDBAAOAF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7003)] +#[cmdid(7098)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGiveUpCurContentCsReq { +pub struct Hhfjjdmgiip { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub ciaoahhghld: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7046)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gfjgfkcglkm { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub ciaoahhghld: u32, /// offset: 24 #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7092)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dckfgkkdkeb { + /// offset: 24 + #[prost(uint32, tag = "5")] pub content_id: u32, } -/// Obf: DEGAJKFEMJO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7009)] +#[cmdid(7014)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGiveUpCurContentScRsp { +pub struct Jfonbmaafek { /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub content_id: u32, /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MonopolyActionResult { + /// offset: 48 + #[prost(uint32, tag = "5")] + pub effect_type: u32, + /// offset: 32 + #[prost(enumeration = "Nfjjfbmmcdj", tag = "6")] + pub source_type: i32, /// offset: 52 #[prost(uint32, tag = "12")] - pub trigger_cell_id: u32, - /// offset: 32 - #[prost(uint32, tag = "2")] pub click_map_id: u32, /// offset: 44 - #[prost(enumeration = "Gkejfkakenm", tag = "9")] - pub source_type: i32, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub click_cell_id: u32, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub trigger_map_id: u32, + #[prost(uint32, tag = "1")] + pub trigger_cell_id: u32, /// offset: 40 - #[prost(uint32, tag = "14")] - pub effect_type: u32, + #[prost(uint32, tag = "9")] + pub trigger_map_id: u32, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub click_cell_id: u32, /// offset: 16 - #[prost(message, optional, tag = "13")] - pub detail: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub detail: ::core::option::Option, } -/// Obf: FOEBKCBKMGI +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7098)] +#[cmdid(7038)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyActionResultScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub pfnokncdpge: ::prost::alloc::vec::Vec, +pub struct Mklfmdbbaon { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub gdjeiahdejd: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lmmebmbgldn { +pub struct Ckgkpchigfo { /// offset: 24 - #[prost(bool, tag = "9")] - pub blhdohmacbm: bool, + #[prost(bool, tag = "15")] + pub cjblpoelihd: bool, /// offset: 28 - #[prost(uint32, tag = "2")] - pub hkmihejcaem: u32, + #[prost(uint32, tag = "1")] + pub kogmlalakfa: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nibjamfmefd { +pub struct Hkefnoodcma { #[prost( - oneof = "nibjamfmefd::Fbkhklgjmfh", - tags = "12, 4, 2, 10, 8, 14, 3, 5, 7, 9, 15, 6, 1" + oneof = "hkefnoodcma::Cpliojmhbpk", + tags = "1, 12, 6, 8, 13, 7, 4, 15, 3, 2, 11, 14, 5" )] - pub fbkhklgjmfh: ::core::option::Option, + pub cpliojmhbpk: ::core::option::Option, } -/// Nested message and enum types in `NIBJAMFMEFD`. -pub mod nibjamfmefd { +/// Nested message and enum types in `HKEFNOODCMA`. +pub mod hkefnoodcma { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Fbkhklgjmfh { + pub enum Cpliojmhbpk { + /// offset: 16 + #[prost(message, tag = "1")] + Hlbbeffijfj(super::Ojlofhlgogb), /// offset: 16 #[prost(message, tag = "12")] - Mecllcdabno(super::Lmkaaefpffo), - /// offset: 16 - #[prost(message, tag = "4")] - Ffipkmhckhj(super::Lmkaaefpffo), - /// offset: 16 - #[prost(message, tag = "2")] - Nfbcgknopda(super::Aidfbbiapep), - /// offset: 16 - #[prost(message, tag = "10")] - Dachanhppbg(super::Aidfbbiapep), - /// offset: 16 - #[prost(message, tag = "8")] - Noenhhilnah(super::Bmplfjkeolf), - /// offset: 16 - #[prost(message, tag = "14")] - Kpbjipgejpl(super::Bmplfjkeolf), - /// offset: 16 - #[prost(message, tag = "3")] - Dmdpcooafjk(super::Lnkmknbpijh), - /// offset: 16 - #[prost(message, tag = "5")] - Hhibfnagkff(super::Lnkmknbpijh), - /// offset: 16 - #[prost(message, tag = "7")] - Nkcmgbcpjgg(super::Lmmebmbgldn), - /// offset: 16 - #[prost(message, tag = "9")] - Hanogacjpkb(super::Lpbamokkjcm), - /// offset: 16 - #[prost(message, tag = "15")] - Omfecimladc(super::Bmplfjkeolf), + Jaambmlgifb(super::Ojlofhlgogb), /// offset: 16 #[prost(message, tag = "6")] - Ngonccblaol(super::Lnkmknbpijh), + Laiaoacidoo(super::Dagfhbdpapn), /// offset: 16 - #[prost(message, tag = "1")] - Fjghnlnjlph(super::Nmghfolkfaj), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nmghfolkfaj { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub gjlkoggiifo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lmkaaefpffo { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub bmalpkekbel: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub ogjofmcmfpg: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub item_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lnkmknbpijh { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub igdbofcdjol: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub ognkmdnjgog: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lpbamokkjcm { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub hnlfmjoknbn: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub njdggjbefcn: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub mdflfllmgna: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub knggppiogae: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Haknofdpbod { - /// offset: 44 - #[prost(uint32, tag = "4")] - pub config_id: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub fpogialmcip: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub acdopcbmpnl: u32, - #[prost(oneof = "haknofdpbod::Ngikdjmngbg", tags = "1, 14, 12")] - pub ngikdjmngbg: ::core::option::Option, -} -/// Nested message and enum types in `HAKNOFDPBOD`. -pub mod haknofdpbod { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Ngikdjmngbg { + #[prost(message, tag = "8")] + Dlffnmfbnje(super::Dagfhbdpapn), /// offset: 16 - #[prost(message, tag = "1")] - Ejcolgnjgdc(super::Gjkiapipgan), + #[prost(message, tag = "13")] + Lcdncppeeef(super::Miinakicplp), + /// offset: 16 + #[prost(message, tag = "7")] + Hgfpgeaknmk(super::Miinakicplp), + /// offset: 16 + #[prost(message, tag = "4")] + Ppehkabblmb(super::Necbhgcbpah), + /// offset: 16 + #[prost(message, tag = "15")] + Kdmemhjcndf(super::Necbhgcbpah), + /// offset: 16 + #[prost(message, tag = "3")] + Inhbkcjbicb(super::Ckgkpchigfo), + /// offset: 16 + #[prost(message, tag = "2")] + Jbgnjegokec(super::Pjflnbdhcen), + /// offset: 16 + #[prost(message, tag = "11")] + Bgpbmoocbll(super::Miinakicplp), /// offset: 16 #[prost(message, tag = "14")] - Lkaniplnkgc(super::Eimobgllefo), + Bljhdnffijn(super::Necbhgcbpah), /// offset: 16 - #[prost(message, tag = "12")] - Bdempakhgmj(super::Eopfmpaooje), + #[prost(message, tag = "5")] + Pkneiifofkp(super::Kekgcajghmf), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kekgcajghmf { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub ecljjneaeni: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ojlofhlgogb { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub npookjkkedj: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub item_id: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub ohaneeacecm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Necbhgcbpah { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub epndjoejoad: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub kaccobphalo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pjflnbdhcen { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub khjngoapeid: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub lnfgjkonhnd: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub fnknjhhpeeg: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub nfciihbaefc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cfhmdognfib { + /// offset: 44 + #[prost(uint32, tag = "13")] + pub eogimijogld: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub config_id: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub fhfochpogne: u32, + #[prost(oneof = "cfhmdognfib::Iejahnmgman", tags = "14, 2, 10")] + pub iejahnmgman: ::core::option::Option, +} +/// Nested message and enum types in `CFHMDOGNFIB`. +pub mod cfhmdognfib { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Iejahnmgman { + /// offset: 24 + #[prost(message, tag = "14")] + Jeblmicalpl(super::Imhadkjklfh), + /// offset: 24 + #[prost(message, tag = "2")] + Gfncegnkebp(super::Pebgbnmnpni), + /// offset: 24 + #[prost(message, tag = "10")] + Gdjonalfjbb(super::Omleabineno), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hfdgmjjfohm { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub ajcinkhbdjb: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub npoigjpcgfb: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub pefmdfkecod: ::prost::alloc::vec::Vec, -} -/// Obf: PNKJEDCNKGB -#[derive(proto_derive::CmdID)] -#[cmdid(7050)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyGameSettleScNotify { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub item_list: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub pemijimjmio: ::core::option::Option, +pub struct Bkcmaecodnp { /// offset: 40 - #[prost(message, optional, tag = "11")] - pub gajbfpcpigm: ::core::option::Option, -} -/// Obf: DGCAJCANMDL -#[derive(proto_derive::CmdID)] -#[cmdid(7021)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyGameCreateScNotify { - /// offset: 32 - #[prost(message, optional, tag = "5")] - pub gajbfpcpigm: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub npoigjpcgfb: ::core::option::Option, -} -/// Obf: BFGMDKIECKC -#[derive(proto_derive::CmdID)] -#[cmdid(7097)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGameRaiseRatioCsReq { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub acdopcbmpnl: u32, -} -/// Obf: JCFJADEHNML -#[derive(proto_derive::CmdID)] -#[cmdid(7055)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGameRaiseRatioScRsp { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub acdopcbmpnl: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: AIMLCLGENNA -#[derive(proto_derive::CmdID)] -#[cmdid(7057)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DailyFirstEnterMonopolyActivityCsReq {} -/// Obf: FHDEONMIKGP -#[derive(proto_derive::CmdID)] -#[cmdid(7015)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DailyFirstEnterMonopolyActivityScRsp { - /// offset: 44 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 32 - #[prost(int64, tag = "6")] - pub iihkiklioji: i64, - /// offset: 48 - #[prost(bool, tag = "15")] - pub oicaghgmmfp: bool, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub ljaogapdfha: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub kekjcdmiddl: u32, -} -/// Obf: PGBJBGAIODA -#[derive(proto_derive::CmdID)] -#[cmdid(7090)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGetDailyInitItemCsReq { - /// offset: 24 - #[prost(bool, tag = "11")] - pub ifhpjjblndl: bool, -} -/// Obf: ACCPMEMJOPK -#[derive(proto_derive::CmdID)] -#[cmdid(7013)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGetDailyInitItemScRsp { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub ioabhfpabbe: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub heoofpgkdcd: u32, - /// offset: 52 - #[prost(uint32, tag = "12")] - pub ofgnignohaf: u32, - /// offset: 48 - #[prost(uint32, tag = "5")] - pub hbfffgpjkic: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 40 - #[prost(int64, tag = "3")] - pub iihkiklioji: i64, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub hcdbbflpcfl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gjkiapipgan { - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub fhbopepjaen: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub leghknnkomg: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(bool, tag = "2")] - pub nfeadmfnflk: bool, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub oefjmefpipl: u32, - /// offset: 40 - #[prost(uint32, repeated, tag = "4")] - pub pogemmicila: ::prost::alloc::vec::Vec, -} -/// Obf: ICMGJFBMAAI -#[derive(proto_derive::CmdID)] -#[cmdid(7035)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGameBingoFlipCardCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub hcfpofmdgkn: u32, -} -/// Obf: OEFGMALBJKO -#[derive(proto_derive::CmdID)] -#[cmdid(7074)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyGameBingoFlipCardScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub leghknnkomg: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "14")] - pub nfeadmfnflk: bool, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub npjeecedpok: u32, -} -/// Obf: MJAKJJGNEAL -#[derive(proto_derive::CmdID)] -#[cmdid(7060)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGameGachaCsReq {} -/// Obf: GDHMMHOMJMG -#[derive(proto_derive::CmdID)] -#[cmdid(7071)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyGameGachaScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub action_result_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nkacimeoapd { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub ibadobadhjh: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub pogjhkfbmch: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eimobgllefo { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub ndggacpicbf: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub ohlepkekmnh: u32, - /// offset: 52 - #[prost(uint32, tag = "2")] - pub chjngdioome: u32, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub bhpfpejbkec: u32, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub eaejlofgafo: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub hpnhhcmkjcb: ::prost::alloc::vec::Vec, -} -/// Obf: AOMIOINGDPN -#[derive(proto_derive::CmdID)] -#[cmdid(7016)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyAcceptQuizCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub ndggacpicbf: ::prost::alloc::vec::Vec, -} -/// Obf: EPHJEICDHFJ -#[derive(proto_derive::CmdID)] -#[cmdid(7056)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyAcceptQuizScRsp { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub lkaniplnkgc: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oockalnfhnp { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub chjngdioome: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub hmcjobjbpkj: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub bgbihidhcon: u32, -} -/// Obf: HLPGDGFIGIJ -#[derive(proto_derive::CmdID)] -#[cmdid(7012)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyQuizDurationChangeScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub leadmneimdp: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eopfmpaooje { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub ppclbdbjlmo: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub hmhjdbifgdi: u32, - /// offset: 32 - #[prost(bool, tag = "5")] - pub lopdbaegfkp: bool, -} -/// Obf: NKIPFEOEBDL -#[derive(proto_derive::CmdID)] -#[cmdid(7010)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGuessChooseCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub hmhjdbifgdi: u32, -} -/// Obf: KGLDAEPCPPC -#[derive(proto_derive::CmdID)] -#[cmdid(7053)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGuessChooseScRsp { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub hmhjdbifgdi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ackncaaamjm { - /// offset: 36 - #[prost(uint32, tag = "10")] - pub ppclbdbjlmo: u32, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub giacfcddjnm: u32, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub item_list: ::core::option::Option, -} -/// Obf: PCFNKGHKKIP -#[derive(proto_derive::CmdID)] -#[cmdid(7041)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyGuessDrawScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub jhiikpejeie: ::prost::alloc::vec::Vec, -} -/// Obf: MAOFCHPDPAM -#[derive(proto_derive::CmdID)] -#[cmdid(7042)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGuessBuyInformationCsReq {} -/// Obf: IBGPAPKJDNP -#[derive(proto_derive::CmdID)] -#[cmdid(7070)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGuessBuyInformationScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aidfbbiapep { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub milkeacflpo: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub pagcamagflb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cannibgclcl { - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub magefljgjnd: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aedkpbfckgo { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub fnigpgbgehn: u32, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub pilaagokaof: u32, - /// offset: 52 - #[prost(uint32, tag = "6")] - pub pkdlkcbkkpf: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub kmgiemofogb: u32, - /// offset: 56 - #[prost(uint32, tag = "10")] - pub ifkdgebcdeg: u32, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub gimdhbnjooo: u32, - /// offset: 36 - #[prost(bool, tag = "5")] - pub imoblgoajcb: bool, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub efinfpkkjle: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub pddngkncpeb: u32, -} -/// Obf: GNPCMAINBOH -#[derive(proto_derive::CmdID)] -#[cmdid(7001)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyDailySettleScNotify { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub kekjcdmiddl: u32, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub ljaogapdfha: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bmplfjkeolf { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub coffebnibhk: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub buff_id: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub okdlmejpche: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Afdalbganpc { - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub buff_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Indglkcecdc { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub hdilbdipgho: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub dpjkojgcjlp: u32, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub uid: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub pilaagokaof: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub fnigpgbgehn: u32, -} -/// Obf: FKDHPCNODPP -#[derive(proto_derive::CmdID)] -#[cmdid(7096)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMonopolyFriendRankingListCsReq {} -/// Obf: DIJGFBLHPGL -#[derive(proto_derive::CmdID)] -#[cmdid(7025)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMonopolyFriendRankingListScRsp { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub icmgegefdle: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "8")] - pub dcfhgaajlnn: ::prost::alloc::vec::Vec, -} -/// Obf: MHKOGIOKNAP -#[derive(proto_derive::CmdID)] -#[cmdid(7085)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyLikeCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub cbegnbkmhcd: u32, -} -/// Obf: HCDMGGFKIKK -#[derive(proto_derive::CmdID)] -#[cmdid(7072)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyLikeScRsp { - /// offset: 36 - #[prost(uint32, tag = "15")] - pub cbegnbkmhcd: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, + #[prost(message, optional, tag = "15")] + pub elppnnndakl: ::core::option::Option, /// offset: 24 #[prost(message, optional, tag = "6")] - pub reward_list: ::core::option::Option, -} -/// Obf: AKAHKDACKEF -#[derive(proto_derive::CmdID)] -#[cmdid(7040)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyLikeScNotify { + pub hjjmoioknbb: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "2")] - pub hdilbdipgho: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub ofiodjnlbea: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub moaipnchpbj: ::prost::alloc::vec::Vec, } -/// Obf: IEKJNICCCHH +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7066)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMbtiReportCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mfdkinpdmke { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub fioepgpebfd: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub cnt: u32, -} -/// Obf: ABFNDLALHHE -#[derive(proto_derive::CmdID)] -#[cmdid(7039)] +#[cmdid(7013)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMbtiReportScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub gmdhhogbacn: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(int32, tag = "7")] - pub ljhaifciabh: i32, +pub struct Agjijjbbdkg { /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub abnoinlokln: ::prost::alloc::vec::Vec, - /// offset: 57 - #[prost(bool, tag = "13")] - pub pcadcgcelin: bool, - /// offset: 44 - #[prost(int32, tag = "3")] - pub phnkkellanm: i32, - /// offset: 56 - #[prost(bool, tag = "1")] - pub is_taken_reward: bool, - /// offset: 52 - #[prost(uint32, tag = "11")] - pub progress: u32, - /// offset: 48 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: LFAOJFBGGCA -#[derive(proto_derive::CmdID)] -#[cmdid(7045)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyEventSelectFriendCsReq { + #[prost(message, optional, tag = "2")] + pub item_list: ::core::option::Option, /// offset: 24 - #[prost(uint32, tag = "3")] - pub ipgeclelhgj: u32, - /// offset: 28 - #[prost(bool, tag = "9")] - pub bagmaoipmje: bool, -} -/// Obf: NOEKNNOFPIJ -#[derive(proto_derive::CmdID)] -#[cmdid(7095)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyEventSelectFriendScRsp { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub ieejchfepha: u32, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub oefhmbjblgc: u32, + #[prost(message, optional, tag = "10")] + pub leaebnaopal: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub hgbigbfgbom: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub ieechhgbgll: ::core::option::Option, } -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gdaepccgdhg { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub sender_uid: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub oefhmbjblgc: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub ieejchfepha: u32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub id: u32, -} -/// Obf: BFLFJLLPECM -#[derive(proto_derive::CmdID)] -#[cmdid(7079)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolySocialEventEffectScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub miaeaffdgmh: ::prost::alloc::vec::Vec, -} -/// Obf: IJLONAMLBOP -#[derive(proto_derive::CmdID)] -#[cmdid(7002)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetSocialEventServerCacheCsReq {} -/// Obf: OEPOLBLMDCC +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(7088)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSocialEventServerCacheScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub miaeaffdgmh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: NHNLBGAFNKC -#[derive(proto_derive::CmdID)] -#[cmdid(7030)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DeleteSocialEventServerCacheCsReq { +pub struct Pjgmmjndhmj { /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub jiddlnhjnpb: ::prost::alloc::vec::Vec, -} -/// Obf: OKNHFAIDLEG -#[derive(proto_derive::CmdID)] -#[cmdid(7018)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DeleteSocialEventServerCacheScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub bfgjmmpcpnj: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: PBOBNKMDDJJ -#[derive(proto_derive::CmdID)] -#[cmdid(7061)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGetRaffleTicketCsReq { + #[prost(message, optional, tag = "13")] + pub hjjmoioknbb: ::core::option::Option, /// offset: 24 - #[prost(uint32, tag = "15")] - pub hhjpblekapn: u32, + #[prost(message, optional, tag = "5")] + pub leaebnaopal: ::core::option::Option, } -/// Obf: PKCHELEEKNG -#[derive(proto_derive::CmdID)] -#[cmdid(7033)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyGetRaffleTicketScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub blmedlnokei: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub hhjpblekapn: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: FEKKJNLIPFA -#[derive(proto_derive::CmdID)] -#[cmdid(7076)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyTakeRaffleTicketRewardCsReq { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub hhjpblekapn: u32, - /// offset: 24 - #[prost(uint64, tag = "8")] - pub pmelcdfhgkc: u64, -} -/// Obf: DJDDCAONCNB -#[derive(proto_derive::CmdID)] -#[cmdid(7082)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyTakeRaffleTicketRewardScRsp { - /// offset: 36 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub reward_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub hhjpblekapn: u32, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub pmelcdfhgkc: u32, -} -/// Obf: EPFBHNCHCKC -#[derive(proto_derive::CmdID)] -#[cmdid(7075)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyScrachRaffleTicketCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub hhjpblekapn: u32, - /// offset: 32 - #[prost(uint64, tag = "5")] - pub pmelcdfhgkc: u64, -} -/// Obf: DDGPLANABJG -#[derive(proto_derive::CmdID)] -#[cmdid(7064)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyScrachRaffleTicketScRsp { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub hhjpblekapn: u32, - /// offset: 32 - #[prost(uint64, tag = "8")] - pub pmelcdfhgkc: u64, -} -/// Obf: KKCKKABGKHJ -#[derive(proto_derive::CmdID)] -#[cmdid(7046)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGetRegionProgressCsReq {} -/// Obf: KPEJBKLMIHN -#[derive(proto_derive::CmdID)] -#[cmdid(7058)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGetRegionProgressScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub dpjkojgcjlp: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub eimgbknlgnf: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: HCIOCHHDGNK -#[derive(proto_derive::CmdID)] -#[cmdid(7027)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyGetRafflePoolInfoCsReq {} -/// Obf: HNFEFIGIMAK -#[derive(proto_derive::CmdID)] -#[cmdid(7031)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyGetRafflePoolInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub iedgkhdjjdc: ::core::option::Option, -} -/// Obf: HOBMIAMCMII -#[derive(proto_derive::CmdID)] -#[cmdid(7008)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyTakePhaseRewardCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub ljbgjhpkkjj: ::prost::alloc::vec::Vec, -} -/// Obf: IAFNBEMJPCG -#[derive(proto_derive::CmdID)] -#[cmdid(7024)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MonopolyTakePhaseRewardScRsp { - /// offset: 32 - #[prost(uint32, repeated, tag = "6")] - pub ljbgjhpkkjj: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub reward_list: ::core::option::Option, -} -/// Obf: FENPKDMBFPM -#[derive(proto_derive::CmdID)] -#[cmdid(7084)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMonopolyMbtiReportRewardCsReq {} -/// Obf: BGJHENBJOOI -#[derive(proto_derive::CmdID)] -#[cmdid(7017)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMonopolyMbtiReportRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub reward_list: ::core::option::Option, -} -/// Obf: PPHLPCEDDPK -#[derive(proto_derive::CmdID)] -#[cmdid(7043)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMonopolyDailyReportCsReq {} -/// Obf: OBOPOLGHGJB -#[derive(proto_derive::CmdID)] -#[cmdid(7032)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMonopolyDailyReportScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub ljaogapdfha: ::core::option::Option, -} -/// Obf: DENONDBCBPH -#[derive(proto_derive::CmdID)] -#[cmdid(7091)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyClickCellCsReq { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub map_id: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub hhcbjghkcpc: u32, -} -/// Obf: EEGODLEDHLG +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7073)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyClickCellScRsp { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub hhcbjghkcpc: u32, +pub struct Baockgbclid { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "15")] + pub fhfochpogne: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7070)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bgfoecmpagb { + /// offset: 28 + #[prost(uint32, tag = "4")] pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub fhfochpogne: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7076)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kkdnfldmglm {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7052)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mejlobjpijn { + /// offset: 40 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub ipkejgdbkce: u32, + /// offset: 48 + #[prost(bool, tag = "13")] + pub lbfnpfikhco: bool, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub ljkpmienpao: ::core::option::Option, + /// offset: 32 + #[prost(int64, tag = "1")] + pub ggedffchmjf: i64, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7060)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jkgphjnfdia { + /// offset: 24 + #[prost(bool, tag = "15")] + pub hbonmbmchac: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7008)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mekbaooifok { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub ilafgoeklaj: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub lodihgkbbfa: u32, + /// offset: 52 + #[prost(uint32, tag = "8")] + pub hpfkpbkknbd: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub nacmdkgmehk: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub egobiifoakf: u32, + /// offset: 40 + #[prost(int64, tag = "15")] + pub ggedffchmjf: i64, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Imhadkjklfh { + /// offset: 52 + #[prost(bool, tag = "6")] + pub nnfcpemkamc: bool, + /// offset: 32 + #[prost(uint32, repeated, tag = "3")] + pub eekdpiddmfd: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub bncmgabpocb: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub bpakipicnjg: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "4")] + pub illkecgfbcg: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7077)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lfkloapmfkp { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub conpadofddb: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7019)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jmfggmfhehj { + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub dfemjmlccbn: u32, + /// offset: 32 + #[prost(bool, tag = "8")] + pub nnfcpemkamc: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub bpakipicnjg: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7001)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jfgjmccopjf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7049)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jajokjhmgbj { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub imkeiipjhgl: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nlhnnfdagji { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub hkelikpadnk: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub ehcebkblbif: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pebgbnmnpni { + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub cpimnhpmbdb: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub clkjfpcjicl: u32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub laboomenfgp: u32, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub alfondimeda: u32, + /// offset: 48 + #[prost(uint32, tag = "9")] + pub hikhbafbiae: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "11")] + pub gelglbjcaka: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7069)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jcajlacnkdm { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub cpimnhpmbdb: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7006)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dleopiflmao { /// offset: 32 #[prost(uint32, tag = "3")] - pub map_id: u32, + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub gfncegnkebp: ::core::option::Option, } -/// Obf: GLDPPDPGFEN +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lbcdocgalll { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub pcajafnokdl: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub alfondimeda: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub kghbgcjnjkk: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7036)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gdbcmfabpbj { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub eamakkonfje: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Omleabineno { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub dimbjafombd: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub nobbndamlfi: u32, + /// offset: 24 + #[prost(bool, tag = "13")] + pub ccpeigpeeeh: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7003)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ckcipgpkahb { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub dimbjafombd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7055)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cffjcaecfmd { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub dimbjafombd: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lcidbalnncl { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub nobbndamlfi: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub feiolcjbbkg: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub item_list: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7066)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aecjkldghjk { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub fdkpbbolbmd: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7030)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gccmljndnfh {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7033)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ljpjgdegomh { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dagfhbdpapn { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub dlgacoalick: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub level: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub ciaoahhghld: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ikenbjpmnjl { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub idmlghhljcb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fimhfmggokh { + /// offset: 36 + #[prost(uint32, tag = "10")] + pub jolbdoicogg: u32, + /// offset: 44 + #[prost(uint32, tag = "11")] + pub gcioficbibe: u32, + /// offset: 56 + #[prost(uint32, tag = "2")] + pub mjddgaalkcc: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub elbeigllhci: u32, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub eokhcaapdkf: u32, + /// offset: 48 + #[prost(uint32, tag = "6")] + pub eeeegfapddn: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub dfkegcnadef: u32, + /// offset: 24 + #[prost(bool, tag = "7")] + pub elmjghjbhel: bool, + /// offset: 52 + #[prost(uint32, tag = "4")] + pub jjnmielifoh: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7032)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gdkgeajpeck { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub ipkejgdbkce: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub ljkpmienpao: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Miinakicplp { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub febioficpec: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub buff_id: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub kapomnogkhc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kdikehnmhlj { + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub buff_list: ::prost::alloc::vec::Vec, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7100)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyClickMbtiReportCsReq {} -/// Obf: JDCBEKMDNJJ -#[derive(proto_derive::CmdID)] -#[cmdid(7036)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MonopolyClickMbtiReportScRsp { +pub struct Ddbdpdmflme { /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: MEICPFNIMHE -#[derive(proto_derive::CmdID)] -#[cmdid(1099)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MultiplayerFightGameStateCsReq {} -/// Obf: GJIKIHKIPNE -#[derive(proto_derive::CmdID)] -#[cmdid(1023)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiplayerFightGameStateScRsp { - /// offset: 32 - #[prost(message, optional, tag = "4")] - pub hfpohcffmgp: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "13")] - pub pfffjngnpom: ::core::option::Option, -} -/// Obf: MHGHLJGBPOA -#[derive(proto_derive::CmdID)] -#[cmdid(1098)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MultiplayerGetFightGateCsReq { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub player_data: u32, -} -/// Obf: GGIMNLGIGIO -#[derive(proto_derive::CmdID)] -#[cmdid(1065)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiplayerGetFightGateScRsp { - /// offset: 32 - #[prost(string, tag = "3")] - pub aokcmmpfgbc: ::prost::alloc::string::String, - /// offset: 40 - #[prost(uint64, tag = "8")] - pub nogfeemnhpc: u64, - /// offset: 16 - #[prost(string, tag = "7")] - pub ip: ::prost::alloc::string::String, - /// offset: 52 - #[prost(uint32, tag = "4")] - pub port: u32, - /// offset: 48 #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: BPGNJJGIECJ -#[derive(proto_derive::CmdID)] -#[cmdid(1083)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MultiplayerFightGiveUpCsReq { - /// offset: 24 - #[prost(uint64, tag = "4")] - pub nogfeemnhpc: u64, -} -/// Obf: HBEPKKHKBMB -#[derive(proto_derive::CmdID)] -#[cmdid(1086)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MultiplayerFightGiveUpScRsp { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: IHBKNEBEHFA -#[derive(proto_derive::CmdID)] -#[cmdid(1094)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiplayerFightGameStartScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub lipjdjpmokb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub pfffjngnpom: ::core::option::Option, -} -/// Obf: CHENLDLOLJH -#[derive(proto_derive::CmdID)] -#[cmdid(1052)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MultiplayerFightGameFinishScNotify { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub pfffjngnpom: ::core::option::Option, -} -/// Obf: BHGJKCGLBMG -#[derive(proto_derive::CmdID)] -#[cmdid(1019)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MultiplayerMatch3FinishScNotify { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub fdgdokafbdh: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub niaeghjlnmb: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub kojihjihkia: u32, - /// offset: 36 - #[prost(enumeration = "Keekddahfoe", tag = "15")] - pub reason: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Clgclcgmhnb { + pub gcioficbibe: u32, /// offset: 28 + #[prost(uint32, tag = "10")] + pub mjddgaalkcc: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub moefalegglo: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub lbchnpokaop: u32, + /// offset: 40 #[prost(uint32, tag = "11")] - pub count: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub bkmpfeocfib: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub fmkkabmdinj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fabglgiined { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub dpbmlffpokh: u32, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub bgafcobnlpm: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Agjhpkckgna { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub dpbmlffpokh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kmkmebiahkl { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub igackkjiaie: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub dpbmlffpokh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Emepmobioal { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub dpbmlffpokh: u32, -} -/// Obf: MPDHPGGKAPG -#[derive(proto_derive::CmdID)] -#[cmdid(1044)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiplayerGetMatchPlayDataCsReq { - /// offset: 16 - #[prost(enumeration = "Noogdpkefkl", repeated, tag = "12")] - pub eopekibjafn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gjckhoknlip { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub module_id: u32, - /// offset: 36 - #[prost(enumeration = "Noogdpkefkl", tag = "6")] - pub fight_game_mode: i32, - #[prost(oneof = "gjckhoknlip::Emkjaappbgf", tags = "1, 13")] - pub emkjaappbgf: ::core::option::Option, -} -/// Nested message and enum types in `GJCKHOKNLIP`. -pub mod gjckhoknlip { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Emkjaappbgf { - /// offset: 16 - #[prost(message, tag = "1")] - Iefdkbbcajj(super::Fabglgiined), - /// offset: 16 - #[prost(message, tag = "13")] - Kkibgmekcck(super::Kmkmebiahkl), - } -} -/// Obf: DIOAJMKJAJK -#[derive(proto_derive::CmdID)] -#[cmdid(1081)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiplayerGetMatchPlayDataScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub lniknfkddhe: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: IJBLHFMCMDE -#[derive(proto_derive::CmdID)] -#[cmdid(1069)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiplayerMatchPlayDataChangeScNotify { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub dgdcegdjche: ::core::option::Option, -} -/// Obf: JDLFFMIEMAB -#[derive(proto_derive::CmdID)] -#[cmdid(1057)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MultiplayerGetMatchPlayFriendRankingInfoCsReq { - /// offset: 24 - #[prost(enumeration = "Noogdpkefkl", tag = "3")] - pub fight_game_mode: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ndfhfpbhhgg { - /// offset: 40 - #[prost(uint32, tag = "6")] pub uid: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub hdcbejdenla: u32, - #[prost(oneof = "ndfhfpbhhgg::Info", tags = "4, 11")] - pub info: ::core::option::Option, } -/// Nested message and enum types in `NDFHFPBHHGG`. -pub mod ndfhfpbhhgg { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 24 - #[prost(message, tag = "4")] - Eaeinblaljk(super::Agjhpkckgna), - /// offset: 24 - #[prost(message, tag = "11")] - Kljmdlodbaf(super::Emepmobioal), - } -} -/// Obf: PMELFEGBHCN -#[derive(proto_derive::CmdID)] -#[cmdid(1015)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiplayerGetMatchPlayFriendRankingInfoScRsp { - /// offset: 32 - #[prost(enumeration = "Noogdpkefkl", tag = "1")] - pub fight_game_mode: i32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub cnheklkbmhh: ::prost::alloc::vec::Vec, -} -/// Obf: ECFPHMFDNJE -#[derive(proto_derive::CmdID)] -#[cmdid(1092)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultiplayerMatchPlayFriendRankingInfoChangeScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub cnheklkbmhh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "Noogdpkefkl", tag = "15")] - pub fight_game_mode: i32, -} -/// Obf: BLIEMPKGMNA -#[derive(proto_derive::CmdID)] -#[cmdid(4699)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMultipleDropInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eccnnonkfca { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub id: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub olalhikmjop: u32, -} -/// Obf: DLCIFEFLJCC +pub struct Ibnnohjkocd {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4623)] +#[cmdid(7034)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMultipleDropInfoScRsp { - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub fchnnkekfcl: ::prost::alloc::vec::Vec, +pub struct Cmdmgbpbaid { /// offset: 40 #[prost(uint32, tag = "1")] pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub ljcpdmnkjif: ::prost::alloc::vec::Vec, -} -/// Obf: AHLLFEKHALO -#[derive(proto_derive::CmdID)] -#[cmdid(4698)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultipleDropInfoScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub ljcpdmnkjif: ::prost::alloc::vec::Vec, -} -/// Obf: DIDAECIMCFO -#[derive(proto_derive::CmdID)] -#[cmdid(4665)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPlayerReturnMultiDropInfoCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jbfipijjidl { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub module_id: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub pjhdjkmjpkh: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub dkjgcbjkeen: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub ljkffdmhojh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ohdnchfgfma { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub module_id: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub blfaanhjpad: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub lclmhegdggb: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub bjfbglbjbnn: u32, -} -/// Obf: MGJNGCPOAIM -#[derive(proto_derive::CmdID)] -#[cmdid(4683)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPlayerReturnMultiDropInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub fchnnkekfcl: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub ikgfoejpjcf: ::core::option::Option, -} -/// Obf: DOJHANCDKJJ -#[derive(proto_derive::CmdID)] -#[cmdid(4686)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MultipleDropInfoNotify { - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub fchnnkekfcl: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "8")] - pub ponjjnddkbh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "10")] - pub ljcpdmnkjif: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Opgjgdoggnj { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub bdjcgcdjoeo: u32, - /// offset: 24 - #[prost(enumeration = "Kamlglmnjgj", tag = "4")] - pub pos: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jmeaocpfeol { - /// offset: 40 - #[prost(uint32, tag = "13")] - pub hihlgaghlni: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub cdnngagbaak: u32, - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub bojmnafdjkh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub area_id: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub level: u32, - /// offset: 48 - #[prost(uint32, tag = "15")] - pub hjjfmdheapb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Panaijbjmen { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub beleodaiinb: u32, - /// offset: 28 - #[prost(bool, tag = "13")] - pub hlnfbgacnpo: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dolgfnlheae { - /// offset: 44 - #[prost(uint32, tag = "2")] - pub fnpphmblkoa: u32, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub fmbfbgnaboc: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub fileddcmdoc: u32, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub ggfddejhlif: u32, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub dcehogagkom: u32, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub pngddnajcgg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Olkmlfeefcj { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub lgkiielghdj: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub bdjcgcdjoeo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Blnehdifmoo { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub event_id: u32, - /// offset: 48 - #[prost(uint32, tag = "5")] - pub cogbcplmnfd: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub hcaglclejnd: u32, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub dgjbacbiico: u32, - /// offset: 52 - #[prost(enumeration = "Aihadkbhpbm", tag = "14")] - pub state: i32, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub haabefkhami: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub bmbgklkecaj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jnbcpncnoho { - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub pnjeepoemca: ::prost::alloc::vec::Vec, /// offset: 16 #[prost(message, repeated, tag = "6")] - pub bjcmphlpknf: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub lhnjmbgndkc: u32, + pub folmgjaombb: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub cgopaicdapp: ::core::option::Option, } -/// Obf: PMCANDKDEGB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4399)] +#[cmdid(7068)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetMuseumInfoCsReq {} -/// Obf: JAPGKGGLDFO +pub struct Ohghibhdkld { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub nbgndibkajl: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4323)] +#[cmdid(7072)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetMuseumInfoScRsp { - /// offset: 88 - #[prost(uint32, tag = "5")] - pub dbjhemippim: u32, - /// offset: 92 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 72 - #[prost(uint32, tag = "12")] - pub jbjldppdbbc: u32, - /// offset: 40 - #[prost(uint32, repeated, tag = "14")] - pub kndmdpefadc: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, repeated, tag = "1")] - pub llephoelgda: ::prost::alloc::vec::Vec, +pub struct Pcnkhelglhj { /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub kndjapnpapk: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, optional, tag = "3")] - pub jpibmbbkgnd: ::core::option::Option, - /// offset: 76 - #[prost(uint32, tag = "15")] - pub hpnmpdocjma: u32, - /// offset: 96 + #[prost(message, optional, tag = "5")] + pub reward_list: ::core::option::Option, + /// offset: 32 #[prost(uint32, tag = "11")] - pub ejkghbemoob: u32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub ekkolcccnnk: ::core::option::Option, - /// offset: 32 - #[prost(message, repeated, tag = "7")] - pub bojmnafdjkh: ::prost::alloc::vec::Vec, - /// offset: 100 - #[prost(uint32, tag = "10")] - pub level: u32, - /// offset: 80 - #[prost(uint32, tag = "4")] - pub ejnkmkffccl: u32, - /// offset: 84 - #[prost(uint32, tag = "8")] - pub exp: u32, -} -/// Obf: IELFKENKBGM -#[derive(proto_derive::CmdID)] -#[cmdid(4398)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct BuyNpcStuffCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub bdjcgcdjoeo: u32, -} -/// Obf: KGAFOHOAFAC -#[derive(proto_derive::CmdID)] -#[cmdid(4365)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct BuyNpcStuffScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub bdjcgcdjoeo: u32, -} -/// Obf: BJCNDPEODHI -#[derive(proto_derive::CmdID)] -#[cmdid(4383)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetStuffToAreaCsReq { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub bdjcgcdjoeo: u32, - /// offset: 32 - #[prost(enumeration = "Kamlglmnjgj", tag = "9")] - pub pos: i32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub lgkiielghdj: u32, -} -/// Obf: JDIPLKMKLEI -#[derive(proto_derive::CmdID)] -#[cmdid(4386)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetStuffToAreaScRsp { /// offset: 36 - #[prost(uint32, tag = "14")] - pub bdjcgcdjoeo: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub lgkiielghdj: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 32 - #[prost(enumeration = "Kamlglmnjgj", tag = "10")] - pub pos: i32, -} -/// Obf: LCDDFEECNGG -#[derive(proto_derive::CmdID)] -#[cmdid(4394)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RemoveStuffFromAreaCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub bdjcgcdjoeo: u32, -} -/// Obf: BPKBEMJPPBF -#[derive(proto_derive::CmdID)] -#[cmdid(4352)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RemoveStuffFromAreaScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 28 #[prost(uint32, tag = "6")] - pub bdjcgcdjoeo: u32, + pub nbgndibkajl: u32, } -/// Obf: ODBFDDMDNAK +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4319)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetStuffScNotify { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub bdjcgcdjoeo: u32, - /// offset: 28 - #[prost(enumeration = "Kgjjjkpdcfg", tag = "3")] - pub aocelkonhob: i32, -} -/// Obf: MIACMEBIFCH -#[derive(proto_derive::CmdID)] -#[cmdid(4344)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetExhibitScNotify { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub bccgcfmabgm: u32, -} -/// Obf: LFPEOCEMGMF -#[derive(proto_derive::CmdID)] -#[cmdid(4381)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishCurTurnCsReq { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub cciecpfpfjg: u32, -} -/// Obf: IPOHMPKNALK -#[derive(proto_derive::CmdID)] -#[cmdid(4369)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishCurTurnScRsp { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub gpoieccpamn: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: FFIKBMOHGCH -#[derive(proto_derive::CmdID)] -#[cmdid(4357)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpgradeAreaCsReq { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub level: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub area_id: u32, -} -/// Obf: POBHKLNOAPI -#[derive(proto_derive::CmdID)] -#[cmdid(4315)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpgradeAreaScRsp { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub area_id: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub level: u32, -} -/// Obf: DKFJFHDOGFA -#[derive(proto_derive::CmdID)] -#[cmdid(4392)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpgradeAreaStatCsReq { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub level: u32, - /// offset: 32 - #[prost(enumeration = "Ibbgdgghejl", tag = "5")] - pub status_info: i32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub area_id: u32, -} -/// Obf: GIMHGGFPHJK -#[derive(proto_derive::CmdID)] -#[cmdid(4337)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpgradeAreaStatScRsp { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 32 - #[prost(enumeration = "Ibbgdgghejl", tag = "13")] - pub status_info: i32, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub area_id: u32, -} -/// Obf: JHCFEAAHFKC -#[derive(proto_derive::CmdID)] -#[cmdid(4368)] +#[cmdid(7065)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MuseumInfoChangedScNotify { - /// offset: 88 - #[prost(uint32, tag = "13")] - pub dbjhemippim: u32, - /// offset: 84 - #[prost(uint32, tag = "5")] - pub ejnkmkffccl: u32, - /// offset: 64 - #[prost(message, repeated, tag = "1")] - pub bojmnafdjkh: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "11")] - pub level: u32, - /// offset: 32 +pub struct Pcfgodkodhm { + /// offset: 24 #[prost(uint32, repeated, tag = "12")] - pub kndmdpefadc: ::prost::alloc::vec::Vec, - /// offset: 92 - #[prost(uint32, tag = "6")] - pub hpnmpdocjma: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "9")] - pub kndjapnpapk: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub jpibmbbkgnd: ::core::option::Option, - /// offset: 76 - #[prost(uint32, tag = "10")] - pub jbjldppdbbc: u32, - /// offset: 40 - #[prost(message, optional, tag = "2")] - pub ekkolcccnnk: ::core::option::Option, - /// offset: 80 - #[prost(uint32, tag = "4")] - pub exp: u32, - /// offset: 96 - #[prost(uint32, tag = "15")] - pub ejkghbemoob: u32, - /// offset: 56 - #[prost(message, repeated, tag = "8")] - pub llephoelgda: ::prost::alloc::vec::Vec, + pub pjjcjckngnm: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub lbchnpokaop: u32, } -/// Obf: NJKGECLEIEJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4380)] +#[cmdid(7039)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mmjehailnge {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ngoaooehdnj { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub cnt: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub dlkjfbbadff: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7079)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MuseumRandomEventStartScNotify { +pub struct Mncbhmnlifg { + /// offset: 40 + #[prost(bool, tag = "15")] + pub gjanpghikec: bool, + /// offset: 52 + #[prost(uint32, tag = "8")] + pub progress: u32, + /// offset: 56 + #[prost(int32, tag = "5")] + pub obddomljcfj: i32, + /// offset: 44 + #[prost(int32, tag = "7")] + pub cpalahpnooc: i32, + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub ooplhopfjgp: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "13")] + pub ligadlaglpo: ::prost::alloc::vec::Vec, + /// offset: 41 + #[prost(bool, tag = "10")] + pub is_taken_reward: bool, + /// offset: 48 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7027)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ejpbceibnji { + /// offset: 24 + #[prost(bool, tag = "2")] + pub oognhlpfeok: bool, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub aliofdghmlm: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7031)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fjobkkkdmnk { + /// offset: 40 + #[prost(uint32, tag = "3")] + pub gbokomhebap: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub idlomfeipee: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub ogmcjambkea: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mkegmiodalh { + /// offset: 28 + #[prost(uint32, tag = "9")] + pub sender_id: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub gbokomhebap: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub id: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub ogmcjambkea: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7041)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ifebfonchco { + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub llmggcieage: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7002)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kghhklnjana {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7018)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jfeefpcmbpk { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub llmggcieage: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7080)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dabemhcdiec { + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub fepbhjilfia: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7083)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mjpjndckopf { + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub hkgdfcflhcl: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7096)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gldpejdgfen { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub dfanhajpkah: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7048)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kmbipnpcadd { + /// offset: 36 + #[prost(uint32, tag = "1")] + pub dfanhajpkah: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub cdgojndlega: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7086)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Anlchklhcie { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub dfanhajpkah: u32, + /// offset: 24 + #[prost(uint64, tag = "14")] + pub lhhpofmldlf: u64, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7028)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jfjghafdfje { /// offset: 24 #[prost(message, optional, tag = "1")] - pub hndlhicdnpc: ::core::option::Option, + pub reward_list: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub lhhpofmldlf: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub dfanhajpkah: u32, } -/// Obf: BOOMIEGPOPL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4377)] +#[cmdid(7054)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MuseumRandomEventQueryCsReq { +pub struct Ijmcpcmpjme { /// offset: 24 - #[prost(int32, tag = "13")] - pub cehfiilmjkm: i32, + #[prost(uint64, tag = "12")] + pub lhhpofmldlf: u64, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub dfanhajpkah: u32, } -/// Obf: FOCGEBJIEBB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4305)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MuseumRandomEventQueryScRsp { +#[cmdid(7040)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Maofjeeapjo { + /// offset: 32 + #[prost(uint64, tag = "11")] + pub lhhpofmldlf: u64, /// offset: 24 - #[prost(message, optional, tag = "2")] - pub hndlhicdnpc: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub dfanhajpkah: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7059)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kagabfdoiao {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7078)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bbpbbbddkfi { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub moefalegglo: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub infdcoahcjn: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7022)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hnpcljokjii {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7099)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eplpnapfbhm { + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub eailmeeofmb: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7023)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eneamlfnhpe { + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub khemoffcodg: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7090)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pkbagklffgk { + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub reward_list: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub khemoffcodg: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7024)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ccanodedlhb {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7071)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Loekmdfoiof { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub reward_list: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7021)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dgedopcnlme {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7058)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kggeigmplnl { /// offset: 32 #[prost(uint32, tag = "9")] pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub ljkpmienpao: ::core::option::Option, } -/// Obf: IIGHGCLDOLA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4351)] +#[cmdid(7094)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MuseumRandomEventSelectCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub event_id: u32, +pub struct Gpkachppgki { /// offset: 28 - #[prost(uint32, tag = "1")] - pub dgjbacbiico: u32, + #[prost(uint32, tag = "12")] + pub llnngangkha: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub map_id: u32, } -/// Obf: JAMLDHMGDFA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4329)] +#[cmdid(7087)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MuseumRandomEventSelectScRsp { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub dgjbacbiico: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub event_id: u32, +pub struct Lfmgjlcbafb { /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub llnngangkha: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub map_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7064)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Koebompepjk {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7056)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bjoljjallll { + /// offset: 24 + #[prost(uint32, tag = "15")] pub retcode: u32, } -/// Obf: NGJDOPNPPGE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4349)] +#[cmdid(1047)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MuseumFundsChangedScNotify { +pub struct Okbdgicagaa {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1009)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pclpimjpadf { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub mbapapjpcni: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "15")] + pub icdjijjipak: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "3")] + pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "10")] - pub dbjhemippim: u32, + #[prost(message, repeated, tag = "9")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, } -/// Obf: IGCMGNCHJHL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4338)] +#[cmdid(1038)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MuseumDispatchFinishedScNotify { +pub struct Djnjlmodhfb { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub player_data: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1017)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nmfbemkibed { + /// offset: 40 + #[prost(uint64, tag = "8")] + pub afdffaihafl: u64, /// offset: 32 - #[prost(uint32, tag = "12")] - pub imblgcaadfl: u32, + #[prost(string, tag = "6")] + pub dlajoopjdno: ::prost::alloc::string::String, + /// offset: 16 + #[prost(string, tag = "9")] + pub idnogliomah: ::prost::alloc::string::String, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub jiimljhlgke: u32, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1051)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nedmnnmkcfd { + /// offset: 24 + #[prost(uint64, tag = "7")] + pub afdffaihafl: u64, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1011)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Echfciciago { /// offset: 24 - #[prost(uint32, tag = "8")] - pub bdjcgcdjoeo: u32, - /// offset: 28 #[prost(uint32, tag = "1")] - pub dbjhemippim: u32, + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1089)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dncijboacfo { + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub ojngpjpbbpb: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub mbapapjpcni: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1020)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kjebhaeapcg { + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub mbapapjpcni: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1095)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ailpjkhcggb { + /// offset: 32 + #[prost(enumeration = "Match3FinishReason", tag = "11")] + pub reason: i32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub nbbkmjbgmef: u32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub dlodejbfnpi: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub cmiimjbobmj: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Obnjebglhkf { + /// offset: 28 + #[prost(uint32, tag = "9")] + pub count: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub loljfgjknbk: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub mefeplccgle: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Encailhjled { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub dhfijlednjk: u32, + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub piahgdjepgj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bpliiclgndi { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub dhfijlednjk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nmiblgndmag { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub dhfijlednjk: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub hnoobbalijm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pcnphfgkbhb { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub dhfijlednjk: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1091)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hhmdejfgfkg { + /// offset: 16 + #[prost(enumeration = "FightGameMode", repeated, tag = "9")] + pub miappmpiicc: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jjpibmheeif { + /// offset: 36 + #[prost(enumeration = "FightGameMode", tag = "14")] + pub gclccogidoa: i32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub panel_id: u32, + #[prost(oneof = "jjpibmheeif::Dgobphkcneb", tags = "10, 15")] + pub dgobphkcneb: ::core::option::Option, +} +/// Nested message and enum types in `JJPIBMHEEIF`. +pub mod jjpibmheeif { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Dgobphkcneb { + /// offset: 24 + #[prost(message, tag = "10")] + Bkambeggdmp(super::Encailhjled), + /// offset: 24 + #[prost(message, tag = "15")] + Komgjgdhmid(super::Nmiblgndmag), + } +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1061)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gpafhgjocgh { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub hgneldgflgl: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1045)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gcjndoagdif { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub ignbpecfepn: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1076)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Biapihnjhin { + /// offset: 24 + #[prost(enumeration = "FightGameMode", tag = "1")] + pub gclccogidoa: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ikgjgbjikfo { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub uid: u32, + /// offset: 36 + #[prost(uint32, tag = "4")] + pub gcnlkdbkiel: u32, + #[prost(oneof = "ikgjgbjikfo::Mlneddhojgc", tags = "14, 5")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `IKGJGBJIKFO`. +pub mod ikgjgbjikfo { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 24 + #[prost(message, tag = "14")] + Hahnmceblne(super::Bpliiclgndi), + /// offset: 24 + #[prost(message, tag = "5")] + Fnllmhdlich(super::Pcnphfgkbhb), + } +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1052)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Focopoalnfp { + /// offset: 32 + #[prost(enumeration = "FightGameMode", tag = "15")] + pub gclccogidoa: i32, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub kaifocikjba: ::prost::alloc::vec::Vec, /// offset: 36 #[prost(uint32, tag = "14")] - pub modfabddnkl: u32, + pub retcode: u32, } -/// Obf: OPGANLFJPIA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4303)] +#[cmdid(1050)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mfcmnnjghdj { + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub kaifocikjba: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(enumeration = "FightGameMode", tag = "8")] + pub gclccogidoa: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4647)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MuseumTargetStartNotify { +pub struct Pdphclpcnbp {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gcpjepgmioc { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub iginclmkhag: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4609)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gaiehaknmmf { + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub lniimlomkoe: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "9")] + pub chddikcdejm: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4638)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mamdabmcimp { + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub lniimlomkoe: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4617)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cnooefbflcl {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aljlieanfea { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub bfanepongpi: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub panel_id: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub icgjpkppkff: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub epcnncnglpj: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ckdjglbbfdp { + /// offset: 28 + #[prost(uint32, tag = "8")] + pub aekliklbnan: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub panel_id: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub mpklhhlonio: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub lephhjpmjdj: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4651)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hpidgcjdpee { + /// offset: 40 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub ilkflokicgd: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "10")] + pub chddikcdejm: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4611)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ckgjhjgaepp { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub chddikcdejm: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "3")] + pub lniimlomkoe: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "7")] + pub hjhkbgldpmk: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Efeahpindcl { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub ickcfdhnllk: u32, + /// offset: 24 + #[prost(enumeration = "Kkgcjaodioj", tag = "2")] + pub pos: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ihgkgjeiifc { + /// offset: 40 + #[prost(uint32, tag = "10")] + pub ohhnfpkppgm: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub ldpmfaahdbp: u32, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub imkhepomlai: u32, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub gimoibgaihn: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub level: u32, + /// offset: 48 + #[prost(uint32, tag = "11")] + pub area_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oehfpkdeabl { + /// offset: 28 + #[prost(bool, tag = "7")] + pub is_finish: bool, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub nfakbodpngd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gckljclmoda { + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub maogidjpmpc: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub lpeajgjmeam: u32, + /// offset: 48 + #[prost(uint32, tag = "13")] + pub opalnekemfm: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub iaeklhnommp: u32, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub deopaffplmg: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub bilbacofbia: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Agffomebkoc { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub ickcfdhnllk: u32, /// offset: 24 #[prost(uint32, tag = "14")] - pub pngddnajcgg: u32, + pub dgnflhhekdp: u32, } -/// Obf: ABHEGCGEGFD +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fldijennjgf { + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub ngladfleiln: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub imdplofmcic: u32, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub acoejblceil: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub nkmkmcmnlla: u32, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub bcaneadbaho: u32, + /// offset: 52 + #[prost(enumeration = "Fcdomojalja", tag = "14")] + pub state: i32, + /// offset: 48 + #[prost(uint32, tag = "13")] + pub event_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Phjglgaldja { + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub lhnaamcgige: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub fkakoonhfne: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub gdbmhdcfnmk: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4347)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lpmbcegllen {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(4309)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MuseumTargetMissionFinishNotify { - /// offset: 32 - #[prost(bool, tag = "13")] - pub fpbgadbmead: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub beleodaiinb: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub pngddnajcgg: u32, -} -/// Obf: OANCDPOFCMJ -#[derive(proto_derive::CmdID)] -#[cmdid(4362)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MuseumTargetRewardNotify { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub pngddnajcgg: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub mbejblfhcbh: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub item_id: u32, -} -/// Obf: ACPBHBHLNNP -#[derive(proto_derive::CmdID)] -#[cmdid(4359)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MuseumTakeCollectRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub item_id: u32, -} -/// Obf: PEBFOFMPHLD -#[derive(proto_derive::CmdID)] -#[cmdid(4322)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct MuseumTakeCollectRewardScRsp { - /// offset: 36 +pub struct Loelhdfpjkd { + /// offset: 64 + #[prost(uint32, repeated, tag = "7")] + pub oopgdgkceca: ::prost::alloc::vec::Vec, + /// offset: 100 + #[prost(uint32, tag = "1")] + pub edhkfjkjjgp: u32, + /// offset: 92 #[prost(uint32, tag = "4")] - pub item_id: u32, + pub mkaojhgpkgd: u32, + /// offset: 96 + #[prost(uint32, tag = "2")] + pub exp: u32, + /// offset: 76 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 88 + #[prost(uint32, tag = "14")] + pub level: u32, + /// offset: 84 + #[prost(uint32, tag = "13")] + pub fbenkholhda: u32, + /// offset: 40 + #[prost(message, optional, tag = "6")] + pub bejjdadhhpi: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "11")] + pub hccpbennfkm: ::core::option::Option, + /// offset: 16 + #[prost(uint32, repeated, tag = "10")] + pub khbkeokbgdg: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "9")] + pub fgbhbbhamng: u32, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub gimoibgaihn: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(uint32, tag = "8")] + pub cur_fund: u32, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub area_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4338)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Obabkhghkfb { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub ickcfdhnllk: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4317)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Odijhinadin { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub ickcfdhnllk: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4351)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Delnphojhii { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub dgnflhhekdp: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub ickcfdhnllk: u32, + /// offset: 24 + #[prost(enumeration = "Kkgcjaodioj", tag = "8")] + pub pos: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4311)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Abeeiihopkj { + /// offset: 36 + #[prost(uint32, tag = "12")] + pub ickcfdhnllk: u32, + /// offset: 24 + #[prost(enumeration = "Kkgcjaodioj", tag = "2")] + pub pos: i32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub dgnflhhekdp: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4389)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Akmjjopbnbl { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub ickcfdhnllk: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4320)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pbgpjkjidje { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub ickcfdhnllk: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4395)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jnbbfoiodia { + /// offset: 28 + #[prost(enumeration = "Jjdffmmbefi", tag = "10")] + pub gedgiihefol: i32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub ickcfdhnllk: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4391)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hohhdideemo { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub lmglkemhkbh: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4361)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lcleaogmnml { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub bhannoimlfp: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4345)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nmehfcjaack { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub kbeiihlejpi: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4376)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ndgodkmmmfj { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub level: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub area_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4352)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fkieednbpco { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub area_id: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub level: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4350)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hdpcknipilg { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub level: u32, + /// offset: 28 + #[prost(enumeration = "Jmgagmkhclh", tag = "4")] + pub bffhfobnbfe: i32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub area_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4381)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bmjhomaffkp { + /// offset: 36 + #[prost(enumeration = "Jmgagmkhclh", tag = "15")] + pub bffhfobnbfe: i32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub area_id: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub level: u32, /// offset: 32 #[prost(uint32, tag = "6")] pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4393)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Imlkdfclbil { + /// offset: 92 + #[prost(uint32, tag = "6")] + pub level: u32, + /// offset: 80 + #[prost(uint32, tag = "10")] + pub fgbhbbhamng: u32, + /// offset: 56 + #[prost(uint32, repeated, tag = "12")] + pub oopgdgkceca: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "14")] + pub cur_fund: u32, + /// offset: 40 + #[prost(message, repeated, tag = "15")] + pub gimoibgaihn: ::prost::alloc::vec::Vec, + /// offset: 76 + #[prost(uint32, tag = "11")] + pub exp: u32, + /// offset: 88 + #[prost(uint32, tag = "1")] + pub fbenkholhda: u32, + /// offset: 96 + #[prost(uint32, tag = "8")] + pub edhkfjkjjgp: u32, + /// offset: 48 + #[prost(message, repeated, tag = "5")] + pub area_list: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "7")] + pub mkaojhgpkgd: u32, + /// offset: 64 + #[prost(message, optional, tag = "13")] + pub hccpbennfkm: ::core::option::Option, + /// offset: 32 + #[prost(uint32, repeated, tag = "2")] + pub khbkeokbgdg: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "4")] + pub bejjdadhhpi: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4310)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dcdhmpbnlla { + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub doflagfnkbn: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4367)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ahjknpinkic { + /// offset: 24 + #[prost(int32, tag = "8")] + pub inpkcdgkopb: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4362)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bccmmojgdpm { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub doflagfnkbn: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4335)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ljmdjdfodkm { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub event_id: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub bcaneadbaho: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4398)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bfhhoioblmi { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub bcaneadbaho: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub event_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4337)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lkggbagpdno { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub cur_fund: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4346)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ejpnncnlonc { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub cur_fund: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub ckabjkoacjg: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub dnifdedjioo: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub ickcfdhnllk: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4392)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eodcbbdgfda { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub bilbacofbia: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4314)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eobdamhnocd { + /// offset: 16 + #[prost(uint32, repeated, tag = "3")] + pub nfakbodpngd: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub bilbacofbia: u32, + /// offset: 36 + #[prost(bool, tag = "12")] + pub mhdgkfjlmlm: bool, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4326)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Llgkdecgehj { + /// offset: 28 + #[prost(uint32, tag = "1")] + pub item_id: u32, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub bilbacofbia: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub item_count: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4357)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bcfiiljhalj { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub item_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4315)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jjbabpchhfn { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub item_id: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "13")] pub reward: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lleogoohjim { +pub struct MusicRhythmLevel { /// offset: 32 - #[prost(uint32, tag = "9")] - pub immaphmhijk: u32, - /// offset: 24 - #[prost(bool, tag = "10")] - pub gkjgcbpojcm: bool, + #[prost(uint32, tag = "4")] + pub unlock_level: u32, /// offset: 28 - #[prost(uint32, tag = "13")] - pub acjcphifmln: u32, + #[prost(bool, tag = "2")] + pub full_combo: bool, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub level_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pakpcciloln { +pub struct MusicRhythmGroup { + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub fkmkmpipbgn: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub nbboabglcjc: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] + pub hlalbhchjkd: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "2")] - pub ojamobmgfbd: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "9")] - pub dnkjdjjbcdk: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub music_group_phase: u32, /// offset: 40 - #[prost(uint32, tag = "11")] - pub blpbigkjpch: u32, + #[prost(uint32, tag = "4")] + pub music_group_id: u32, } -/// Obf: LLOEKNIFJGH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7578)] +#[cmdid(7593)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmDataCsReq { /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub player_data: u32, } -/// Obf: PNCLMCMOCDH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7571)] +#[cmdid(7580)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmDataScRsp { - /// offset: 76 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 68 - #[prost(uint32, tag = "3")] - pub ljekppnpbpp: u32, - /// offset: 64 - #[prost(uint32, tag = "5")] - pub cdigalbeima: u32, - /// offset: 32 - #[prost(message, repeated, tag = "1")] - pub lkmjinniadi: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(bool, tag = "8")] - pub ocephgbcmib: bool, - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub bnanpjbdghb: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "4")] - pub bmkmenhffok: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub fkliofdpjbe: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] + pub unlock_phase_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub music_group: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "2")] + pub cur_level_id: u32, + /// offset: 48 + #[prost(uint32, repeated, tag = "6")] + pub unlock_song_list: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "10")] + pub cur_song_id: u32, + /// offset: 76 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub unlock_track_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(bool, tag = "15")] + pub show_hint: bool, /// offset: 40 - #[prost(message, repeated, tag = "12")] - pub amdcjjjabcc: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub music_level: ::prost::alloc::vec::Vec, } -/// Obf: FEPACLABFKH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7585)] +#[cmdid(7575)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmStartLevelCsReq { /// offset: 24 #[prost(uint32, tag = "1")] - pub acjcphifmln: u32, + pub level_id: u32, } -/// Obf: CMECLLJDMJI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7593)] +#[cmdid(7583)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmStartLevelScRsp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub acjcphifmln: u32, /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "6")] + pub level_id: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] pub retcode: u32, - /// offset: 16 - #[prost(string, tag = "4")] - pub mdlndgijnml: ::prost::alloc::string::String, + /// offset: 24 + #[prost(string, tag = "14")] + pub oajepobkmdm: ::prost::alloc::string::String, } -/// Obf: DOEJALIHJCD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7595)] +#[cmdid(7577)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmFinishLevelCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub mhkhaclnbpm: u32, /// offset: 28 - #[prost(bool, tag = "5")] - pub gkjgcbpojcm: bool, + #[prost(uint32, tag = "6")] + pub score_id: u32, + /// offset: 24 + #[prost(bool, tag = "1")] + pub full_combo: bool, /// offset: 32 - #[prost(uint32, tag = "8")] - pub score: u32, + #[prost(uint32, tag = "4")] + pub ojhffmmafgg: u32, } -/// Obf: FLJGCBPELHO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7586)] +#[cmdid(7587)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmFinishLevelScRsp { /// offset: 28 - #[prost(uint32, tag = "6")] - pub acjcphifmln: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "8")] pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub level_id: u32, } -/// Obf: JEMOIIJGKAO +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7591)] +#[cmdid(7590)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmUnlockTrackScNotify { /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub jikjhneacjb: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] + pub lpoigaoleje: ::prost::alloc::vec::Vec, } -/// Obf: DHAKCHLIBNH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7600)] +#[cmdid(7597)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmSaveSongConfigDataCsReq { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub cgedaboaboh: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub bcdnlpoaflm: ::core::option::Option, } -/// Obf: KNFHFMIDCGE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7584)] +#[cmdid(7588)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmSaveSongConfigDataScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub mbldfhldcpi: u32, /// offset: 32 + #[prost(uint32, tag = "3")] + pub nghmabjminb: u32, + /// offset: 24 #[prost(uint32, tag = "7")] pub retcode: u32, /// offset: 28 - #[prost(uint32, tag = "4")] - pub cdigalbeima: u32, + #[prost(uint32, tag = "10")] + pub cur_song_id: u32, } -/// Obf: ICKBFLLLNLH +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7573)] +#[cmdid(7582)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmUnlockSongNotify { /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub oafhaopejpo: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "3")] + pub ajjnkdlmbbb: ::prost::alloc::vec::Vec, } -/// Obf: PJCMNLHELJG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7583)] +#[cmdid(7579)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct MusicRhythmMaxDifficultyLevelsUnlockNotify {} -/// Obf: MABNDMNEOBP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7587)] +#[cmdid(7594)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MusicRhythmUnlockSongSfxScNotify { /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub oafhaopejpo: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "4")] + pub ajjnkdlmbbb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hkmkchnpkdc { +pub struct OfferingInfo { /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub fcfdbnjenjf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub mkkfmndmhje: u32, - /// offset: 36 - #[prost(enumeration = "Fbomlibegoc", tag = "5")] - pub mjgdopckeif: i32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub kmnlbgoeehg: u32, + #[prost(uint32, repeated, tag = "8")] + pub has_taken_reward_id_list: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "15")] - pub hidbcpinlmh: u32, - /// offset: 48 #[prost(uint32, tag = "9")] - pub njhlopcjjda: u32, + pub offering_level: u32, + /// offset: 40 + #[prost(enumeration = "OfferingState", tag = "6")] + pub offering_state: i32, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub total_exp: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub offering_id: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub level_exp: u32, } -/// Obf: FBCNGILDCAL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6927)] +#[cmdid(6933)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetOfferingInfoCsReq { /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub gpjcdjglgof: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub offering_id_list: ::prost::alloc::vec::Vec, } -/// Obf: OOMAIBAJOAN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6921)] +#[cmdid(6926)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetOfferingInfoScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub gdamadmhhgf: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub offering_info_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "4")] pub retcode: u32, } -/// Obf: OPCMLGFFFKD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6933)] +#[cmdid(6929)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SubmitOfferingItemCsReq { /// offset: 24 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub interacted_prop_entity_id: u32, /// offset: 28 - #[prost(uint32, tag = "4")] - pub kmnlbgoeehg: u32, + #[prost(uint32, tag = "15")] + pub offering_id: u32, } -/// Obf: DLIFLGGHNCM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6939)] +#[cmdid(6925)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SubmitOfferingItemScRsp { /// offset: 16 - #[prost(message, optional, tag = "2")] - pub ppjdapbpoap: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub offering_info: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub retcode: u32, } -/// Obf: NCNENNJGCEJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6923)] +#[cmdid(6934)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeOfferingRewardCsReq { /// offset: 36 - #[prost(uint32, tag = "6")] - pub kmnlbgoeehg: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub fbkccpkieia: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "3")] pub interacted_prop_entity_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub take_reward_level_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub offering_id: u32, } -/// Obf: CBPGDFBGMLC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6935)] +#[cmdid(6924)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeOfferingRewardScRsp { - /// offset: 32 - #[prost(message, optional, tag = "10")] - pub ppjdapbpoap: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "11")] + /// offset: 24 + #[prost(message, optional, tag = "9")] pub reward: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub offering_info: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "3")] pub retcode: u32, } -/// Obf: AGDKFNEMODP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6928)] +#[cmdid(6923)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct OfferingInfoScNotify { /// offset: 24 - #[prost(message, optional, tag = "8")] - pub ppjdapbpoap: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub offering_info: ::core::option::Option, } -/// Obf: KNHNOIKKCAA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4099)] +#[cmdid(4047)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AcceptedPamMissionExpireCsReq { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "5")] pub main_mission_id: u32, } -/// Obf: HFCKILKEBMH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4023)] +#[cmdid(4009)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AcceptedPamMissionExpireScRsp { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub main_mission_id: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub retcode: u32, } -/// Obf: OKPOKDGMOEI +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4098)] +#[cmdid(4038)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncAcceptedPamMissionNotify { + /// offset: 24 + #[prost(uint64, tag = "1")] + pub mlbkjbiifnn: u64, /// offset: 32 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub main_mission_id: u32, - /// offset: 24 - #[prost(uint64, tag = "2")] - pub pambjbfngpo: u64, } -/// Obf: IANFOLLDCFN -#[derive(proto_derive::CmdID)] -#[cmdid(8127)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPamSkinDataCsReq {} -/// Obf: IMMHJOKNGPA -#[derive(proto_derive::CmdID)] -#[cmdid(8121)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPamSkinDataScRsp { - /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub current_pam_skin_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub unlocked_pam_skins: ::prost::alloc::vec::Vec, -} -/// Obf: GKGPODJKBIP +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8133)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetPamSkinDataCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8126)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetPamSkinDataScRsp { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub cur_skin: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub unlock_skin_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8129)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPamSkinCsReq { /// offset: 24 - #[prost(uint32, tag = "6")] - pub pam_skin_id: u32, + #[prost(uint32, tag = "7")] + pub pam_skin: u32, } -/// Obf: KEAHBIODCID +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8139)] +#[cmdid(8125)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPamSkinScRsp { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub current_pam_skin_id: u32, /// offset: 32 - #[prost(uint32, tag = "1")] - pub select_pam_skin_id: u32, + #[prost(uint32, tag = "9")] + pub cur_skin: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub set_skin: u32, } -/// Obf: IOLKOFECEKC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8123)] +#[cmdid(8134)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockPamSkinScNotify { /// offset: 24 - #[prost(uint32, tag = "7")] - pub pam_skin_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ggdemgbofgo { - /// offset: 24 - #[prost(bool, tag = "10")] - pub kkehmbpjooc: bool, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub time: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub acjcphifmln: u32, -} -/// Obf: CEHPIACKNMO -#[derive(proto_derive::CmdID)] -#[cmdid(8387)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ParkourGetDataCsReq {} -/// Obf: MEDMMLKPLNL -#[derive(proto_derive::CmdID)] -#[cmdid(8381)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ParkourGetDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub kcmcmpfonko: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dgefmlbpfmm { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub lpbhomfclon: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub time: u32, - /// offset: 28 #[prost(uint32, tag = "4")] - pub id: u32, + pub pam_skin: u32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oofkebpanlp { +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Chneoefnjjo { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub level_id: u32, /// offset: 32 - #[prost(uint32, tag = "14")] - pub acjcphifmln: u32, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub dcfhgaajlnn: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub time: u32, + /// offset: 24 + #[prost(bool, tag = "12")] + pub goajlakiibm: bool, } -/// Obf: LAAICGPFABC +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8393)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ParkourGetRankingInfoCsReq {} -/// Obf: FLIGGDLDOKH +pub struct Hdbillenkmg {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8399)] +#[cmdid(8386)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ParkourGetRankingInfoScRsp { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub njgpikcfjnl: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub retcode: u32, +pub struct Gnlljmimnpc { /// offset: 32 - #[prost(message, repeated, tag = "7")] - pub pfengldjcmg: ::prost::alloc::vec::Vec, -} -/// Obf: FCMADPMOMGD -#[derive(proto_derive::CmdID)] -#[cmdid(8383)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ParkourStartLevelCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub pofmcalhooc: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub acjcphifmln: u32, -} -/// Obf: GPFIOILCDDH -#[derive(proto_derive::CmdID)] -#[cmdid(8395)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ParkourStartLevelScRsp { - /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub acjcphifmln: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub pofmcalhooc: u32, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub fefebnlingo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bfpolegccpj { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub cnt: u32, +pub struct Lhdacnpneob { /// offset: 28 - #[prost(enumeration = "Hcfffeimcmf", tag = "14")] - pub r#type: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dckpbicnmkk { + #[prost(uint32, tag = "8")] + pub time: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub blikokloljk: u32, /// offset: 24 #[prost(uint32, tag = "1")] - pub cnt: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ooalaodncpe { - /// offset: 36 - #[prost(uint32, tag = "14")] - pub mmabimiejnj: u32, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub apnnbdbenlc: ::prost::alloc::vec::Vec, +pub struct Fajeoaaojcp { /// offset: 32 - #[prost(uint32, tag = "13")] - pub oggegaolpgn: u32, - /// offset: 56 - #[prost(uint32, tag = "15")] - pub jehjljdkbge: u32, - /// offset: 60 - #[prost(uint32, tag = "1")] - pub nbnekbdillk: u32, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub dhdlndfibkc: u32, - /// offset: 68 - #[prost(uint32, tag = "7")] - pub oigkboohnii: u32, - /// offset: 64 #[prost(uint32, tag = "8")] - pub neefgjbmcll: u32, - /// offset: 52 - #[prost(uint32, tag = "3")] - pub gfdipldifhg: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub fodekcobffa: u32, + pub level_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub folmgjaombb: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8389)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fpmfiippimo {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8385)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ppmgkfednol { /// offset: 40 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "4")] + pub dgfdbnlacnf: ::core::option::Option, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub pjiijholjdf: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8394)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kiffldhfmll { + /// offset: 28 + #[prost(uint32, tag = "8")] + pub ppalclhbife: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub level_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8384)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lpikogpomni { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 24 #[prost(uint32, tag = "2")] - pub nfphcjipijh: u32, + pub level_id: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub ppalclhbife: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fjjofekpddh { +pub struct Fcdffmemiom { + /// offset: 28 + #[prost(enumeration = "Jgbdoghcaok", tag = "6")] + pub r#type: i32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub cnt: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mnmlcfpclmi { /// offset: 28 #[prost(uint32, tag = "5")] - pub hlkdfincppm: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub cnjjhfpmiip: u32, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub chakndokncb: u32, + pub id: u32, /// offset: 24 - #[prost(uint32, tag = "15")] - pub adjopiaibmg: u32, -} -/// Obf: FCEFAKEBFFM -#[derive(proto_derive::CmdID)] -#[cmdid(8388)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ParkourEndLevelCsReq { - /// offset: 68 - #[prost(uint32, tag = "4")] - pub pofmcalhooc: u32, - /// offset: 60 - #[prost(uint32, tag = "15")] - pub baabddjehmc: u32, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub ifenfkggiem: ::core::option::Option, - /// offset: 72 - #[prost(uint32, tag = "7")] - pub eefcbbkkflc: u32, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub rank: u32, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub aedbpadegfi: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "1")] - pub time: u32, - /// offset: 64 #[prost(uint32, tag = "6")] - pub acjcphifmln: u32, - /// offset: 52 - #[prost(enumeration = "Poahabdkpkj", tag = "14")] - pub hbgclmcgnfm: i32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub hmbheigkdbk: ::prost::alloc::vec::Vec, + pub cnt: u32, } -/// Obf: PIOJEPCPKAC #[derive(proto_derive::CmdID)] -#[cmdid(8391)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ParkourEndLevelScRsp { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ggoknmbkmna { /// offset: 40 + #[prost(uint32, tag = "6")] + pub jgjpdnfnehf: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub jeocapaogag: u32, + /// offset: 56 #[prost(uint32, tag = "12")] + pub leamehlgicf: u32, + /// offset: 60 + #[prost(uint32, tag = "13")] + pub apognkohkdn: u32, + /// offset: 68 + #[prost(uint32, tag = "1")] + pub oepebhnnpno: u32, + /// offset: 64 + #[prost(uint32, tag = "11")] + pub jabpbplpomc: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub lalfiibcdem: u32, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub ekfgibijenb: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub bbjoonmjhdh: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub djobeiaiplf: u32, + /// offset: 52 + #[prost(uint32, tag = "7")] + pub ipjhjgogdnc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kbeljmfmpob { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub lgmogcmgbbb: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub ffaapnjeplm: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub mhlgancmngo: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub aanbllkanaa: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8383)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lliemgcghdg { + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub mhidkckdfhh: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "5")] + pub rank: u32, + /// offset: 32 + #[prost(message, repeated, tag = "4")] + pub khfojcnkifc: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(enumeration = "Pdccmhdagfc", tag = "12")] + pub end_reason: i32, + /// offset: 48 + #[prost(uint32, tag = "13")] + pub time: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub edppgolpkfa: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "14")] + pub gamddcckdbh: u32, + /// offset: 64 + #[prost(uint32, tag = "11")] + pub level_id: u32, + /// offset: 68 + #[prost(uint32, tag = "6")] + pub ppalclhbife: u32, + /// offset: 56 + #[prost(uint32, tag = "15")] + pub goaacbjohgh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8397)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bhhdigknggk { + /// offset: 44 + #[prost(enumeration = "Pdccmhdagfc", tag = "12")] + pub end_reason: i32, + /// offset: 33 + #[prost(bool, tag = "9")] + pub goajlakiibm: bool, + /// offset: 32 + #[prost(bool, tag = "8")] + pub dgmlcgbjnem: bool, + /// offset: 48 + #[prost(uint32, tag = "7")] pub time: u32, /// offset: 36 - #[prost(enumeration = "Poahabdkpkj", tag = "8")] - pub hbgclmcgnfm: i32, - /// offset: 48 - #[prost(uint32, tag = "1")] - pub acjcphifmln: u32, - /// offset: 45 - #[prost(bool, tag = "9")] - pub fdgmoeoajkp: bool, - /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "10")] + pub level_id: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub blmdkjkoioh: ::core::option::Option, - /// offset: 44 - #[prost(bool, tag = "2")] - pub kkehmbpjooc: bool, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub acfhjbilfme: ::core::option::Option, } -/// Obf: BKFCEFHDPCF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7608)] +#[cmdid(7617)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPetDataCsReq {} -/// Obf: DPLNLFKGHHO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7601)] +#[cmdid(7607)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPetDataScRsp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub pet_id: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub owned_pet_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] + pub unlocked_pet_id: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub cur_pet_id: u32, } -/// Obf: FMNKJCBDLEJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7613)] +#[cmdid(7624)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SummonPetCsReq { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "15")] pub summoned_pet_id: u32, } -/// Obf: FIFKOAJCKEJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7616)] +#[cmdid(7609)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SummonPetScRsp { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub select_pet_id: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub cur_pet_id: u32, /// offset: 28 #[prost(uint32, tag = "8")] - pub pet_item_id: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub pet_id: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] pub retcode: u32, } -/// Obf: EKNDMAJKKKB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7618)] +#[cmdid(7620)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RecallPetCsReq { /// offset: 24 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "10")] pub summoned_pet_id: u32, } -/// Obf: CILLCOPKKDL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7615)] +#[cmdid(7622)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RecallPetScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub pet_item_id: u32, /// offset: 28 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 24 #[prost(uint32, tag = "12")] - pub pet_id: u32, + pub cur_pet_id: u32, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub select_pet_id: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub retcode: u32, } -/// Obf: KIJFPBFKMKA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7603)] +#[cmdid(7605)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct CurPetChangedScNotify { /// offset: 24 - #[prost(uint32, tag = "1")] - pub pet_id: u32, + #[prost(uint32, tag = "3")] + pub cur_pet_id: u32, } -/// Obf: FKOOKNOIDAB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5199)] +#[cmdid(5147)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPhoneDataCsReq {} -/// Obf: PMPAJBKNDHC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5123)] +#[cmdid(5109)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPhoneDataScRsp { - /// offset: 32 - #[prost(uint32, repeated, tag = "6")] - pub owned_phone_themes: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "12")] - pub kkneegdkemd: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "4")] - pub cur_chat_bubble: u32, - /// offset: 56 - #[prost(uint32, tag = "11")] - pub lmocamklkpi: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "10")] + #[prost(uint32, repeated, tag = "5")] pub owned_chat_bubbles: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub cur_chat_bubble: u32, /// offset: 52 #[prost(uint32, tag = "3")] - pub cur_phone_theme: u32, - /// offset: 60 - #[prost(uint32, tag = "14")] pub retcode: u32, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub cur_phone_theme: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "13")] + pub owned_phone_themes: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "4")] + pub cur_phone_case: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "6")] + pub plomkgkinnk: ::prost::alloc::vec::Vec, } -/// Obf: CMGEDCCBJGH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5198)] +#[cmdid(5138)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectChatBubbleCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub bubble_id: u32, -} -/// Obf: MALLKFJAEAH -#[derive(proto_derive::CmdID)] -#[cmdid(5165)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SelectChatBubbleScRsp { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub pmdcbfopchb: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub cur_chat_bubble: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: GHAALGCBPCA -#[derive(proto_derive::CmdID)] -#[cmdid(5183)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UnlockChatBubbleScNotify { /// offset: 24 #[prost(uint32, tag = "4")] pub bubble_id: u32, } -/// Obf: EDHCHAJIMCA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5186)] +#[cmdid(5117)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SelectChatBubbleScRsp { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub ijolgiehkfn: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub cur_chat_bubble: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5151)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct UnlockChatBubbleScNotify { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub bubble_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5111)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPhoneThemeCsReq { /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub theme_id: u32, } -/// Obf: KODDPLOIHFK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5194)] +#[cmdid(5189)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPhoneThemeScRsp { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub cur_phone_theme: u32, /// offset: 32 - #[prost(uint32, tag = "6")] - pub achopojlcce: u32, + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub cur_phone_theme: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub mbcagcoknhe: u32, } -/// Obf: GOAAANNKAPL +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5152)] +#[cmdid(5120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockPhoneThemeScNotify { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "10")] pub theme_id: u32, } -/// Obf: PDNNFCNOHIK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5119)] +#[cmdid(5195)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPhoneCaseCsReq { /// offset: 24 - #[prost(uint32, tag = "6")] - pub gianhliikia: u32, + #[prost(uint32, tag = "13")] + pub phone_case_id: u32, } -/// Obf: BJKCHHNNHGO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5144)] +#[cmdid(5191)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectPhoneCaseScRsp { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub lmocamklkpi: u32, /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, + #[prost(uint32, tag = "8")] + pub cur_phone_case: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub gjkphgicgnd: u32, /// offset: 24 - #[prost(uint32, tag = "1")] - pub pdacjdieojg: u32, + #[prost(uint32, tag = "6")] + pub retcode: u32, } -/// Obf: GNAJBMACMDG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5181)] +#[cmdid(5161)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockPhoneCaseScNotify { /// offset: 24 - #[prost(uint32, tag = "3")] - pub gianhliikia: u32, + #[prost(uint32, tag = "13")] + pub phone_case_id: u32, } -/// Obf: PEJKMMNDPFJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8226)] +#[cmdid(8219)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPlanetFesDataCsReq {} -/// Obf: OCHEDCALAOF +pub struct Lgnmijkjkjc {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8228)] +#[cmdid(8202)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPlanetFesDataScRsp { - /// offset: 40 - #[prost(message, optional, tag = "13")] - pub heojnaimgkc: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "4")] - pub lapcheignmj: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub hbdliicpkob: ::core::option::Option, +pub struct Choippboanf { /// offset: 48 - #[prost(message, optional, tag = "14")] - pub ebgngdgbolh: ::core::option::Option, - /// offset: 112 - #[prost(message, optional, tag = "5")] - pub lmgkmaoicgc: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub fdhgikjdlgd: ::core::option::Option, - /// offset: 88 - #[prost(message, optional, tag = "8")] - pub skill_info: ::core::option::Option, - /// offset: 104 - #[prost(message, optional, tag = "6")] - pub hmffhbhalge: ::core::option::Option, - /// offset: 64 - #[prost(message, optional, tag = "7")] - pub admjkkoiagd: ::core::option::Option, - /// offset: 120 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 56 - #[prost(message, repeated, tag = "11")] - pub kfbpcfdhlhl: ::prost::alloc::vec::Vec, - /// offset: 72 #[prost(message, optional, tag = "9")] - pub hljmhnabfmc: ::core::option::Option, + pub kcjjgmianig: ::core::option::Option, + /// offset: 120 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 88 + #[prost(message, optional, tag = "15")] + pub phmbjpfkkak: ::core::option::Option, + /// offset: 64 + #[prost(message, optional, tag = "3")] + pub neblimjgphj: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub kicgdpjifma: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "11")] + pub dnfplhjjpcd: ::core::option::Option, /// offset: 80 - #[prost(message, optional, tag = "1")] - pub kjkbkegighk: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub fefelabdhoa: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub skill_info: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "2")] + pub mpibgjokjhg: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub ngjajjoibpl: ::core::option::Option, + /// offset: 104 + #[prost(message, repeated, tag = "10")] + pub custom_value_list: ::prost::alloc::vec::Vec, + /// offset: 96 + #[prost(message, optional, tag = "12")] + pub jgabgkiijpb: ::core::option::Option, + /// offset: 72 + #[prost(message, optional, tag = "4")] + pub boohmnjlcnb: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iikngnhdmfi { - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub mcnmhbjhmme: ::prost::alloc::vec::Vec, +pub struct Mcbokfmigcm { + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub kikbngldccb: ::prost::alloc::vec::Vec, } -/// Obf: GLLLJCAAFFE +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8221)] +#[cmdid(8248)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesSyncChangeScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub leadmneimdp: ::prost::alloc::vec::Vec, +pub struct Poklknjfjjp { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub eamakkonfje: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oidffleeall { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub imfcimkmjpl: u32, +pub struct Mcdijnlecaa { /// offset: 32 - #[prost(uint32, tag = "8")] - pub ihelajnmmbf: u32, + #[prost(uint32, tag = "12")] + pub akipnldgpcc: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub pfecplpmjkh: u32, /// offset: 28 - #[prost(uint32, tag = "11")] - pub kejnimghoig: u32, + #[prost(uint32, tag = "3")] + pub gikbcppcpid: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ccnanlcoddf { +pub struct Pincoihibbh { /// offset: 24 - #[prost(message, optional, tag = "14")] - pub pbhmgchkjgo: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub source: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ofgbmcknldj { - /// offset: 40 - #[prost(uint32, tag = "14")] - pub dgcflhcpjln: u32, - /// offset: 48 - #[prost(int64, tag = "6")] - pub mfknhhnfkgi: i64, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub bjodeepgopc: ::core::option::Option, + #[prost(message, optional, tag = "8")] + pub source: ::core::option::Option, /// offset: 32 #[prost(message, optional, tag = "15")] - pub jcfplghkjaa: ::core::option::Option, + pub jmbfiljlcef: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kofollacigo { +pub struct Fnjjbfiagck { + /// offset: 48 + #[prost(uint32, tag = "9")] + pub lmeblckagji: u32, + /// offset: 40 + #[prost(int64, tag = "2")] + pub peddgfjfaff: i64, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub fnhfidfdhjp: ::core::option::Option, /// offset: 16 + #[prost(message, optional, tag = "1")] + pub pcgpaldahln: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gpfjggkejjb { + /// offset: 24 #[prost(message, repeated, tag = "4")] - pub inllekamnpf: ::prost::alloc::vec::Vec, + pub jkgkebekhbo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eoaegaefpfh { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub paehamjhndd: u32, +pub struct Bacaecghdcg { /// offset: 28 + #[prost(uint32, tag = "9")] + pub gnaekmgjhnf: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub level: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub ojhffmmafgg: u32, + /// offset: 36 #[prost(uint32, tag = "3")] pub avatar_id: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub mhkhaclnbpm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dkejeoehagm { - /// offset: 16 +pub struct Mnflkdbpjfa { + /// offset: 24 #[prost(message, repeated, tag = "13")] - pub avatar_list: ::prost::alloc::vec::Vec, + pub avatar_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ceoddceiddl { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub mbejblfhcbh: u32, +pub struct Hagdpapickd { /// offset: 28 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] + pub item_count: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] pub item_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ajcjchljbgf { +pub struct Ogdhckcmipg { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub geibknhcgjf: ::core::option::Option, /// offset: 40 - #[prost(message, optional, tag = "7")] - pub item_value: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub pnnkegaamdm: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "1")] - pub pcajncbmimm: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub item_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub item_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oainkjlpcdk { - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub pocjcmkkjik: ::prost::alloc::vec::Vec, +pub struct Hjppfmlplhi { + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub daclknbcnnp: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ppfcjhekolg { +pub struct Ckdckmknage { /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub dfcfhhlbgdc: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint64, tag = "8")] - pub unique_id: u64, + #[prost(message, repeated, tag = "2")] + pub gemmnejjcjo: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, optional, tag = "5")] - pub source: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub source: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "9")] + #[prost(uint64, tag = "14")] + pub unique_id: u64, + /// offset: 48 + #[prost(uint32, tag = "15")] pub config_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fimacphlmno { - #[prost(oneof = "fimacphlmno::Info", tags = "11")] - pub info: ::core::option::Option, +pub struct Eofcokececb { + #[prost(oneof = "eofcokececb::Mlneddhojgc", tags = "6")] + pub mlneddhojgc: ::core::option::Option, } -/// Nested message and enum types in `FIMACPHLMNO`. -pub mod fimacphlmno { +/// Nested message and enum types in `EOFCOKECECB`. +pub mod eofcokececb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 24 - #[prost(int64, tag = "11")] - Kbefcmiiiin(i64), + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(int64, tag = "6")] + Mkkkmfmgpmf(i64), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Adafjfojdeg { - /// offset: 48 - #[prost(uint32, tag = "15")] - pub progress: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub mfanncagdmp: u32, +pub struct Obbfchhajef { /// offset: 40 - #[prost(enumeration = "Gmfejefibbi", tag = "10")] + #[prost(uint32, tag = "13")] + pub quest_id: u32, + /// offset: 44 + #[prost(uint32, tag = "7")] + pub jloibopnmlp: u32, + /// offset: 48 + #[prost(enumeration = "Lnjagpaanof", tag = "14")] pub status: i32, /// offset: 32 - #[prost(uint32, tag = "13")] - pub jlfabhhnhcm: u32, - #[prost(oneof = "adafjfojdeg::Ehacjjjdpah", tags = "4, 1")] - pub ehacjjjdpah: ::core::option::Option, -} -/// Nested message and enum types in `ADAFJFOJDEG`. -pub mod adafjfojdeg { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Ehacjjjdpah { - /// offset: 24 - #[prost(uint32, tag = "4")] - Bonaghbbicf(u32), - /// offset: 24 - #[prost(message, tag = "1")] - Nnhpcoiikff(super::Iikngnhdmfi), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pcodfcnkhjk { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub eofeldeapeo: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub dcnphbdddip: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Clknibojlgp { - /// offset: 32 - #[prost(message, optional, tag = "10")] - pub cmhnljjodjf: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub quest_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gcamegpepol { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub ehbjbpcnplg: ::core::option::Option, - /// offset: 32 #[prost(uint32, tag = "8")] - pub pjolemhlgnl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dhnfbgenlig { - /// offset: 24 - #[prost(uint32, tag = "1")] pub progress: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub bhpcnnfokee: u32, + #[prost(oneof = "obbfchhajef::Hjbmllljfeb", tags = "10, 11")] + pub hjbmllljfeb: ::core::option::Option, } -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Afbamplgheh { - /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub ihbjiihbibp: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "12")] - pub nckcmgcbehk: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hfocnhojlah { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub skill_id: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub level: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iacfpgolflm { - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub skill_info_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gjbfgabaamo { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub hignfpjlfka: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub eimgbknlgnf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mioaegbpoma { - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub fgimacchhdk: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub fgpacihlanb: u32, - /// offset: 40 - #[prost(int64, tag = "7")] - pub epcpdocdocb: i64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hmbanckgbii { - #[prost( - oneof = "hmbanckgbii::Info", - tags = "10, 15, 9, 2, 1, 7, 6, 12, 3, 11, 4, 13, 14, 8, 5, 1410, 933, 1039, 1062, 768, 150, 130, 599, 894, 1395, 841, 344, 1314" - )] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `HMBANCKGBII`. -pub mod hmbanckgbii { +/// Nested message and enum types in `OBBFCHHAJEF`. +pub mod obbfchhajef { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Hjbmllljfeb { /// offset: 24 - #[prost(message, tag = "10")] - Lkmlgoeeekh(super::Giedcjdlege), - /// offset: 24 - #[prost(message, tag = "15")] - Cohnlgmifbo(super::Giedcjdlege), - /// offset: 24 - #[prost(message, tag = "9")] - Pmlocbhiddl(super::Hpgagbgjlid), - /// offset: 24 - #[prost(message, tag = "2")] - Lebmnloakhc(super::Hpgagbgjlid), - /// offset: 24 - #[prost(message, tag = "1")] - Kbnligljenn(super::Ofgbmcknldj), - /// offset: 24 - #[prost(message, tag = "7")] - Mmfbenambne(super::Ofgbmcknldj), - /// offset: 24 - #[prost(message, tag = "6")] - Gnaidhhjebi(super::Eoaegaefpfh), - /// offset: 24 - #[prost(message, tag = "12")] - Jbdhlhhfdge(super::Eoaegaefpfh), - /// offset: 24 - #[prost(message, tag = "3")] - Jplplfcookd(super::Ppfcjhekolg), + #[prost(uint32, tag = "10")] + Lmfacenmfhh(u32), /// offset: 24 #[prost(message, tag = "11")] - Mkofoocokbk(super::Ppfcjhekolg), - /// offset: 24 - #[prost(message, tag = "4")] - Olmgneoahop(super::Phfbdnnlinf), - /// offset: 24 - #[prost(message, tag = "13")] - Gbffgphfmdp(super::Adafjfojdeg), - /// offset: 24 - #[prost(message, tag = "14")] - Dmnmifjhecl(super::Adafjfojdeg), - /// offset: 24 - #[prost(message, tag = "8")] - Imfcdmieopl(super::Pcodfcnkhjk), - /// offset: 24 - #[prost(message, tag = "5")] - Pcllcbmhcbd(super::Olbopgjffpm), - /// offset: 24 - #[prost(message, tag = "1410")] - Biedmjpaebd(super::Hfocnhojlah), - /// offset: 24 - #[prost(message, tag = "933")] - Foicfogcgia(super::Pgndibbgijn), - /// offset: 24 - #[prost(message, tag = "1039")] - Nceidlnkbbg(super::Djoeeghmcfj), - /// offset: 24 - #[prost(message, tag = "1062")] - Kmmdpejakec(super::Cbikmffdcgi), - /// offset: 24 - #[prost(message, tag = "768")] - Gpnlpneehdm(super::Hpcaimkjdij), - /// offset: 24 - #[prost(message, tag = "150")] - Cneklokhahl(super::Hohdmmndknj), - /// offset: 24 - #[prost(message, tag = "130")] - Dmfjdahpiid(super::Fhngonefbde), - /// offset: 24 - #[prost(message, tag = "599")] - Iloekhkejaj(super::Ppfcjhekolg), - /// offset: 24 - #[prost(message, tag = "894")] - Laegjpilnnd(super::Iljjbgifdpe), - /// offset: 24 - #[prost(message, tag = "1395")] - Lcdklahgkji(super::Deinadpehke), - /// offset: 24 - #[prost(message, tag = "841")] - Bcaddfdbfna(super::Bkbilpdkoil), - /// offset: 24 - #[prost(message, tag = "344")] - Liglefjmlhm(super::Eikaiidaepp), - /// offset: 24 - #[prost(message, tag = "1314")] - Gbncidjnlpl(super::Gjipjngnfej), + Ilhgaliamfj(super::Mcbokfmigcm), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Olbopgjffpm { - /// offset: 32 - #[prost(bool, tag = "10")] - pub biinncndpcg: bool, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub kjkbkegighk: ::core::option::Option, +pub struct Icijahkecoj { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub fiefjeemfgi: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub hfiklllcekp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Phfbdnnlinf { +pub struct Ocphjmkoglf { /// offset: 32 - #[prost(uint32, tag = "15")] - pub pjolemhlgnl: u32, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub ehbjbpcnplg: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Giedcjdlege { - /// offset: 32 - #[prost(uint32, repeated, tag = "7")] - pub blcabemfach: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "2")] + pub quest_list: ::prost::alloc::vec::Vec, /// offset: 16 #[prost(message, optional, tag = "13")] - pub mfnaglkdpni: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "8")] - pub ogjofmcmfpg: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "4")] - pub bmalpkekbel: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hpgagbgjlid { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub ogjofmcmfpg: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub item_id: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub bmalpkekbel: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pgndibbgijn { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub gfjaghljjdn: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub ecilicnolfn: u32, + pub jogackpjidn: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Npaiinekefb { - /// offset: 40 - #[prost(uint32, tag = "2")] - pub avatar_id: u32, +pub struct Hnpoombjmbi { + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub ipcplpkampa: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "12")] - pub jlceefbljdc: u32, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub pefdlajlcjb: u32, + #[prost(uint32, tag = "3")] + pub cmoncfgghmh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oloccdfbjoc { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub kmlbnndbjme: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub progress: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dbjedfbdned { + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub mcomaaeclla: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub plelombggkk: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lidmmmmohch { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub skill_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eliccehgjbo { + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub pkengahemod: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dpikoaknfcp { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub infdcoahcjn: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub igondjabohp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Finmaimabia { + /// offset: 40 + #[prost(uint32, tag = "14")] + pub elenejgjgdk: u32, + /// offset: 32 + #[prost(int64, tag = "6")] + pub bmmlggjjael: i64, + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub llhlfgbcnad: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ehhphpccani { + #[prost( + oneof = "ehhphpccani::Mlneddhojgc", + tags = "11, 9, 2, 8, 10, 15, 1, 7, 5, 4, 3, 14, 6, 13, 12, 1645, 1266, 1573, 508, 323, 535, 1882, 203, 1123, 1356, 456, 528, 154" + )] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `EHHPHPCCANI`. +pub mod ehhphpccani { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "11")] + Mkgfgbgbcen(super::Cfldbinclid), + /// offset: 16 + #[prost(message, tag = "9")] + Lmdofhpkhnd(super::Cfldbinclid), + /// offset: 16 + #[prost(message, tag = "2")] + Hcdnbdlgbld(super::Fblmppboebm), + /// offset: 16 + #[prost(message, tag = "8")] + Mnjdmiodeaf(super::Fblmppboebm), + /// offset: 16 + #[prost(message, tag = "10")] + Nmmeceocomp(super::Fnjjbfiagck), + /// offset: 16 + #[prost(message, tag = "15")] + Bjbebgfeihk(super::Fnjjbfiagck), + /// offset: 16 + #[prost(message, tag = "1")] + Cjeeclkknee(super::Bacaecghdcg), + /// offset: 16 + #[prost(message, tag = "7")] + Gidkdcjfmoh(super::Bacaecghdcg), + /// offset: 16 + #[prost(message, tag = "5")] + Nmbfngkmjcc(super::Ckdckmknage), + /// offset: 16 + #[prost(message, tag = "4")] + Mpiiahlfpbf(super::Ckdckmknage), + /// offset: 16 + #[prost(message, tag = "3")] + Lkgcealjihl(super::Joefkaidfij), + /// offset: 16 + #[prost(message, tag = "14")] + Oioognnochi(super::Obbfchhajef), + /// offset: 16 + #[prost(message, tag = "6")] + Ifbcfpppbbi(super::Obbfchhajef), + /// offset: 16 + #[prost(message, tag = "13")] + Pgllokhooef(super::Icijahkecoj), + /// offset: 16 + #[prost(message, tag = "12")] + Blbpedabmem(super::Ipddpdngdpd), + /// offset: 16 + #[prost(message, tag = "1645")] + Lnoodnphdba(super::Lidmmmmohch), + /// offset: 16 + #[prost(message, tag = "1266")] + Ncjkgpobiod(super::Lfmejkehddm), + /// offset: 16 + #[prost(message, tag = "1573")] + Klccdnbnddb(super::Necofbldbld), + /// offset: 16 + #[prost(message, tag = "508")] + Ghlkgchaecf(super::Hhbbahmahkg), + /// offset: 16 + #[prost(message, tag = "323")] + Hppikidcife(super::Alhbmlklhbj), + /// offset: 16 + #[prost(message, tag = "535")] + Jdbfmdddgbl(super::Miklhfmjfim), + /// offset: 16 + #[prost(message, tag = "1882")] + Mcbpcfjfmee(super::Njgbfbpkcel), + /// offset: 16 + #[prost(message, tag = "203")] + Johlolidefg(super::Ckdckmknage), + /// offset: 16 + #[prost(message, tag = "1123")] + Dfjbagpnfhm(super::Ohdmaaphgjd), + /// offset: 16 + #[prost(message, tag = "1356")] + Poheleddboh(super::Fdblhfjghle), + /// offset: 16 + #[prost(message, tag = "456")] + Fengnmdnegc(super::Camlfjhbdfn), + /// offset: 16 + #[prost(message, tag = "528")] + Igflkdamfnm(super::Pikjobjdbek), + /// offset: 16 + #[prost(message, tag = "154")] + Ogjkpaadggl(super::Ndialejoacl), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ipddpdngdpd { + /// offset: 32 + #[prost(bool, tag = "3")] + pub has_passed: bool, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub kcjjgmianig: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Joefkaidfij { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub cmoncfgghmh: u32, /// offset: 16 #[prost(message, optional, tag = "15")] - pub dmaimcppjgh: ::core::option::Option, + pub ipcplpkampa: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iljjbgifdpe { - /// offset: 68 - #[prost(uint32, tag = "10")] - pub ccigdjcgamd: u32, - /// offset: 72 - #[prost(uint32, tag = "12")] - pub nlaompdenkk: u32, - /// offset: 48 - #[prost(message, optional, tag = "7")] - pub eajpdpcdjpk: ::core::option::Option, - /// offset: 24 - #[prost(map = "uint32, uint32", tag = "3")] - pub bjelclbgalf: ::std::collections::HashMap, - /// offset: 64 - #[prost(uint32, tag = "2")] - pub nijmjbmcfjf: u32, +pub struct Cfldbinclid { /// offset: 40 - #[prost(message, optional, tag = "13")] - pub fofhieiicpb: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub oebafbigmbc: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "15")] - pub hdkafnkhala: u32, - /// offset: 32 - #[prost(message, optional, tag = "1")] - pub pehingjkgcb: ::core::option::Option, - /// offset: 76 - #[prost(uint32, tag = "11")] - pub membicnifli: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Djoeeghmcfj { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub aakdahhigif: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hpcaimkjdij { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub jilaggdmall: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cbikmffdcgi { + #[prost(message, optional, tag = "2")] + pub npookjkkedj: ::core::option::Option, /// offset: 24 #[prost(message, optional, tag = "14")] - pub hhjocipobcf: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hohdmmndknj { + pub gepnbgnckeh: ::core::option::Option, + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub ncklhamejmf: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(enumeration = "Dfhejcijbej", tag = "5")] - pub podgjpekeeg: i32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub nfjlfnbpppg: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fhngonefbde { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub eimgbknlgnf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ohdhpclijnh { - /// offset: 16 #[prost(message, optional, tag = "3")] - pub kjbkngcfbbp: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub cioaogdkfog: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub iacphgojhmb: u32, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub eafomflmojj: u32, - /// offset: 44 - #[prost(uint32, tag = "14")] - pub ginmoibglnm: u32, + pub ohaneeacecm: ::core::option::Option, } #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Djiaemangcg { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub transfer_item_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub item_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bfaaefcejpa { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub hocnlijhjjk: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub pkbbhjpaeki: ::core::option::Option, -} -/// Obf: BAILPFJGMLE -#[derive(proto_derive::CmdID)] -#[cmdid(8238)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesCollectIncomeCsReq { +pub struct Fblmppboebm { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub ohaneeacecm: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub npookjkkedj: u32, /// offset: 24 - #[prost(uint32, tag = "14")] - pub dgcflhcpjln: u32, + #[prost(uint32, tag = "1")] + pub item_id: u32, } -/// Obf: PNJJMKEHDPG +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lfmejkehddm { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub olfcfijdgce: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub enlfhiimjom: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aeffhlgmhli { + /// offset: 36 + #[prost(uint32, tag = "6")] + pub dedgpcceaae: u32, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub avatar_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub ihljooianfo: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub akhbbakmhpk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ohdmaaphgjd { + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "5")] + pub mekjalikipm: ::std::collections::HashMap, + /// offset: 76 + #[prost(uint32, tag = "10")] + pub nccenlglopi: u32, + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub nehmkpfinji: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "12")] + pub hpiikenhlap: u32, + /// offset: 40 + #[prost(message, optional, tag = "8")] + pub ndnnnlbfajj: ::core::option::Option, + /// offset: 80 + #[prost(uint32, tag = "11")] + pub heblkpiccge: u32, + /// offset: 56 + #[prost(message, optional, tag = "1")] + pub oadnlfcnieg: ::core::option::Option, + /// offset: 72 + #[prost(uint32, tag = "3")] + pub ojaohbcmael: u32, + /// offset: 64 + #[prost(uint32, tag = "4")] + pub gkkljdnceoc: u32, + /// offset: 48 + #[prost(message, optional, tag = "14")] + pub hgaljpbpdaf: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Necofbldbld { + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub idjlpgaoppp: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Alhbmlklhbj { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub lonneeajang: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hhbbahmahkg { + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub cmldgamndgb: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Miklhfmjfim { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub nfbmomncmgg: ::core::option::Option, + /// offset: 32 + #[prost(enumeration = "Gchoemhejbn", tag = "7")] + pub hofjepahlej: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Njgbfbpkcel { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub infdcoahcjn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jmodkihdjod { + /// offset: 40 + #[prost(uint32, tag = "9")] + pub mpdbjgbceln: u32, + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub hfogcfnceck: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub jkmfaenhbaa: u32, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub olkjcjacbhg: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub ibemdbhnggh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Knhpiieeije { + /// offset: 32 + #[prost(message, repeated, tag = "7")] + pub transfer_item_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub item_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kijjoglkgbh { + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub goikcbfoejc: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub mfcofmdjnlg: ::core::option::Option, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8205)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesCollectIncomeScRsp { +pub struct Dndejbmdcmj { /// offset: 24 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pfbfimjfegi { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub avatar_id: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub dgcflhcpjln: u32, -} -/// Obf: NHMBLKBLDOP -#[derive(proto_derive::CmdID)] -#[cmdid(8227)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesSetAvatarWorkCsReq { - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub kngpofhnfaj: ::prost::alloc::vec::Vec, -} -/// Obf: DNEJNDIJELO -#[derive(proto_derive::CmdID)] -#[cmdid(8220)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesSetAvatarWorkScRsp { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: JNNOGMCDKJK -#[derive(proto_derive::CmdID)] -#[cmdid(8244)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesBuyLandCsReq { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub dgcflhcpjln: u32, -} -/// Obf: EEFNFHKOIJP -#[derive(proto_derive::CmdID)] -#[cmdid(8201)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesBuyLandScRsp { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -/// Obf: CAHHKIIFJMG -#[derive(proto_derive::CmdID)] -#[cmdid(8245)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesClientStatusCsReq { - /// offset: 24 - #[prost(bool, tag = "10")] - pub fjinnlfcboj: bool, -} -/// Obf: OJNMBPDDGOK -#[derive(proto_derive::CmdID)] -#[cmdid(8243)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesClientStatusScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: HNJCKGGBCOB -#[derive(proto_derive::CmdID)] -#[cmdid(8203)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesCollectAllIncomeCsReq {} -/// Obf: NLHNGPHIGNA -#[derive(proto_derive::CmdID)] -#[cmdid(8223)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesCollectAllIncomeScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub gndcammiloi: ::core::option::Option, -} -/// Obf: JNIDOJLNOFD -#[derive(proto_derive::CmdID)] -#[cmdid(8219)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesDoGachaCsReq { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub gacha_id: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub simulate_magic: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub ifngnhhcngl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Neihldgebhe { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub avatar_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub lpdeopgelle: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub fljpkfjajfp: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub jkjncnclfld: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cgojkboeofo { - /// offset: 40 - #[prost(message, optional, tag = "5")] - pub cabcgkngaoc: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub dhhaphnmedf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "1")] - pub gmofklbfapl: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub jcdjcanehjd: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pjcakifoocp { - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub ecdambiifci: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub jfmahmofjpi: ::core::option::Option, -} -/// Obf: DMBEKDDJJKE -#[derive(proto_derive::CmdID)] -#[cmdid(8247)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesDoGachaScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub cikepdangfd: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub gacha_id: u32, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub retcode: u32, - #[prost(oneof = "planet_fes_do_gacha_sc_rsp::Micmckahmpl", tags = "1, 2")] - pub micmckahmpl: ::core::option::Option, -} -/// Nested message and enum types in `PlanetFesDoGachaScRsp`. -pub mod planet_fes_do_gacha_sc_rsp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Micmckahmpl { - /// offset: 32 - #[prost(message, tag = "1")] - Idgklmcepbo(super::Cgojkboeofo), - /// offset: 32 - #[prost(message, tag = "2")] - Jabdcpfpoke(super::Pjcakifoocp), - } -} -/// Obf: AOHIONCOMDE -#[derive(proto_derive::CmdID)] -#[cmdid(8233)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesAvatarLevelUpCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub ldnjeacfbje: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub avatar_id: u32, -} -/// Obf: PDPLMFMOLKN -#[derive(proto_derive::CmdID)] -#[cmdid(8230)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesAvatarLevelUpScRsp { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub bhpfpejbkec: u32, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub reward: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub avatar_id: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub ldnjeacfbje: u32, -} -/// Obf: ENBMABHKKOL -#[derive(proto_derive::CmdID)] -#[cmdid(8211)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesTakeQuestRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub jlfabhhnhcm: u32, -} -/// Obf: EPDMGGGFJFH -#[derive(proto_derive::CmdID)] -#[cmdid(8229)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesTakeQuestRewardScRsp { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub dnffkabfoef: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub jlfabhhnhcm: u32, -} -/// Obf: MDILHLHLHKI -#[derive(proto_derive::CmdID)] -#[cmdid(8225)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesUpgradeSkillLevelCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub ldnjeacfbje: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub skill_id: u32, -} -/// Obf: KMDOBGMMNDE -#[derive(proto_derive::CmdID)] -#[cmdid(8248)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesUpgradeSkillLevelScRsp { - /// offset: 40 - #[prost(uint32, tag = "15")] - pub skill_level: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 36 #[prost(uint32, tag = "3")] - pub skill_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub item_cost_list: ::core::option::Option, + pub lmeblckagji: u32, } -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Diahnmncpbd { - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "5")] - pub fggaefipaac: ::std::collections::HashMap, - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub item_value: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Knokilfkohi { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub joooeafokhk: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub avatar_id: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub aopikhkkglm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dlljmiaghdd { - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub fjhgckenopf: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Efhabdofkde { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub nngopakjicc: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub bpcfoeghonc: u32, - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "3")] - pub agmgppaomka: ::std::collections::HashMap, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub epmoohcjnho: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cgomnlbljgh { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub oohnkojhdho: u32, - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub omcbcgchlgn: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub afgkfifjfcl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pohniiflcge { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub dgddjnhlggj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bkodhaeecjh { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub hddijnadfdd: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub cgdgpgjlknm: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub dgddjnhlggj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cboemejiffe { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub dgddjnhlggj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jofgdaiadbo { - /// offset: 44 - #[prost(uint32, tag = "14")] - pub bkmamgapegh: u32, - /// offset: 57 - #[prost(bool, tag = "10")] - pub pklcnhicgia: bool, - /// offset: 48 - #[prost(int64, tag = "13")] - pub ljheochhcab: i64, - /// offset: 58 - #[prost(bool, tag = "5")] - pub chnliokglbp: bool, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub dajjjfchooj: u32, - /// offset: 56 - #[prost(bool, tag = "7")] - pub fomjlfjckdb: bool, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub hoiokbkgfdn: u32, - #[prost(oneof = "jofgdaiadbo::Item", tags = "9, 11, 4, 8, 1, 2")] - pub item: ::core::option::Option, -} -/// Nested message and enum types in `JOFGDAIADBO`. -pub mod jofgdaiadbo { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Item { - /// offset: 16 - #[prost(message, tag = "9")] - Pgmblloobma(super::Dlljmiaghdd), - /// offset: 16 - #[prost(message, tag = "11")] - Gildjpkdpnn(super::Efhabdofkde), - /// offset: 16 - #[prost(message, tag = "4")] - Bolaiplefpi(super::Cgomnlbljgh), - /// offset: 16 - #[prost(message, tag = "8")] - Genpkdaeihc(super::Pohniiflcge), - /// offset: 16 - #[prost(message, tag = "1")] - Jfnhpiegmmm(super::Bkodhaeecjh), - /// offset: 16 - #[prost(message, tag = "2")] - Jlefnhikfoc(super::Cboemejiffe), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ilmelfjccmd { - /// offset: 52 - #[prost(bool, tag = "1")] - pub dkhigcipekf: bool, - /// offset: 48 - #[prost(uint32, tag = "9")] - pub bkmamgapegh: u32, - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub pehingjkgcb: ::core::option::Option, - /// offset: 53 - #[prost(bool, tag = "2")] - pub biinncndpcg: bool, - /// offset: 24 - #[prost(map = "uint32, uint32", tag = "12")] - pub hijddfbedpo: ::std::collections::HashMap, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub kmndebcffad: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(int64, tag = "13")] - pub coifhfpegph: i64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Flnidkiggbk { - /// offset: 32 - #[prost(message, optional, tag = "15")] - pub pehingjkgcb: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "8")] - pub gjpanocngbm: u32, - /// offset: 48 - #[prost(bool, tag = "11")] - pub dkhigcipekf: bool, - /// offset: 52 - #[prost(uint32, tag = "2")] - pub bkmamgapegh: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub kneinmnlcdi: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub oebafbigmbc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Leaahdpaieg { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub hoiokbkgfdn: u32, - /// offset: 28 - #[prost(bool, tag = "14")] - pub agmambdehlk: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Egbkgemfodn { - /// offset: 40 - #[prost(message, repeated, tag = "13")] - pub dppimjndndf: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "7")] - pub hjnoiengedl: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub ccbbdgfffag: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "10")] - pub nfioacfhjnk: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, optional, tag = "12")] - pub ncikkfenhjf: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "15")] - pub blmnekfpagh: u32, -} -/// Obf: NPMMPIHFJAJ +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8235)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesGetBusinessDayInfoCsReq { +pub struct Aajfbjhmaon { /// offset: 24 - #[prost(bool, tag = "11")] - pub mkbpdpafapk: bool, -} -/// Obf: KDFDMOIACFK -#[derive(proto_derive::CmdID)] -#[cmdid(8212)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGetBusinessDayInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "13")] pub retcode: u32, - /// offset: 32 - #[prost(int64, tag = "7")] - pub bcfbfmmenjk: i64, - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub aakdahhigif: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jnipiaadoip { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub mlgfjgchonh: u32, - /// offset: 44 - #[prost(uint32, tag = "15")] - pub hjnoiengedl: u32, - /// offset: 32 - #[prost(int64, tag = "9")] - pub bcfbfmmenjk: i64, - /// offset: 28 - #[prost(bool, tag = "13")] - pub biinncndpcg: bool, +pub struct Iojohoeiafm { /// offset: 24 - #[prost(uint32, tag = "7")] - pub blmnekfpagh: u32, - /// offset: 29 - #[prost(bool, tag = "12")] - pub dkhigcipekf: bool, + #[prost(uint32, tag = "15")] + pub lmeblckagji: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub avatar_id: u32, } -/// Obf: HNCIHJEDCAM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8215)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesBusinessDayRefreshEventCsReq { - /// offset: 32 - #[prost(bool, tag = "10")] - pub kblpjcfnhle: bool, +#[cmdid(8233)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bcpcenakcjk { /// offset: 24 - #[prost(uint32, tag = "15")] - pub hoiokbkgfdn: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub bkmamgapegh: u32, + #[prost(message, repeated, tag = "12")] + pub ofepjoiangf: ::prost::alloc::vec::Vec, } -/// Obf: POEDGCNDAHM +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8231)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesBusinessDayRefreshEventScRsp { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub nfjlfnbpppg: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: KIHFHLJNJIG -#[derive(proto_derive::CmdID)] -#[cmdid(8208)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesDeliverPamCargoCsReq { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub avatar_id: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub aopikhkkglm: u32, -} -/// Obf: FAABKBGLAPB -#[derive(proto_derive::CmdID)] -#[cmdid(8202)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesDeliverPamCargoScRsp { - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub nfjlfnbpppg: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub gcbdedabgko: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 44 - #[prost(uint32, tag = "12")] - pub avatar_id: u32, -} -/// Obf: PPAJMNJLOBK -#[derive(proto_derive::CmdID)] -#[cmdid(8234)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesChooseAvatarEventOptionCsReq { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub nfcaambmmmb: u32, -} -/// Obf: LBHGOPHMBFD -#[derive(proto_derive::CmdID)] -#[cmdid(8206)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesChooseAvatarEventOptionScRsp { - /// offset: 48 - #[prost(uint32, tag = "11")] - pub epmoohcjnho: u32, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub nfjlfnbpppg: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub reward: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "14")] - pub hakkgodicfi: u32, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub ojkjpkhdepe: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: LCIKAFGBDLH -#[derive(proto_derive::CmdID)] -#[cmdid(8249)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesDealAvatarEventOptionItemCsReq { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub nngopakjicc: u32, - /// offset: 24 - #[prost(bool, tag = "11")] - pub lecdhddceia: bool, -} -/// Obf: POHFEIJMNHF -#[derive(proto_derive::CmdID)] -#[cmdid(8232)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesDealAvatarEventOptionItemScRsp { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub nfjlfnbpppg: ::core::option::Option, - /// offset: 52 - #[prost(bool, tag = "2")] - pub lecdhddceia: bool, - /// offset: 48 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub ojkjpkhdepe: u32, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub hakkgodicfi: u32, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, -} -/// Obf: HFAAHBMGHLK -#[derive(proto_derive::CmdID)] -#[cmdid(8236)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesTakeRegionPhaseRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub ndbojandnjn: u32, -} -/// Obf: FECEMMEEGAB -#[derive(proto_derive::CmdID)] -#[cmdid(8209)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesTakeRegionPhaseRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub ndbojandnjn: u32, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub reward_list: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cnlmdffefjm { - /// offset: 40 - #[prost(uint32, tag = "5")] - pub alhanjklboo: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub cdlbehlammm: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub gpaghiajicd: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "7")] - pub hfkggoepple: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hldhemlpjng { - /// offset: 40 - #[prost(uint32, tag = "8")] - pub oohnkojhdho: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub acdopcbmpnl: u32, - #[prost(oneof = "hldhemlpjng::Ngikdjmngbg", tags = "5")] - pub ngikdjmngbg: ::core::option::Option, -} -/// Nested message and enum types in `HLDHEMLPJNG`. -pub mod hldhemlpjng { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Ngikdjmngbg { - /// offset: 16 - #[prost(message, tag = "5")] - Ejcolgnjgdc(super::Cnlmdffefjm), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fmnhlknjnah { - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub pkhlgkkippa: ::prost::alloc::vec::Vec, -} -/// Obf: FEOHKDLJNDN -#[derive(proto_derive::CmdID)] -#[cmdid(8222)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesStartMiniGameCsReq { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub oohnkojhdho: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub acdopcbmpnl: u32, -} -/// Obf: PIHDBLHKMBP -#[derive(proto_derive::CmdID)] -#[cmdid(8216)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesStartMiniGameScRsp { - /// offset: 48 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 40 - #[prost(message, optional, tag = "13")] - pub omcbcgchlgn: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub reward: ::core::option::Option, - #[prost(oneof = "planet_fes_start_mini_game_sc_rsp::Empmlafdhfa", tags = "6")] - pub empmlafdhfa: ::core::option::Option< - planet_fes_start_mini_game_sc_rsp::Empmlafdhfa, - >, -} -/// Nested message and enum types in `PlanetFesStartMiniGameScRsp`. -pub mod planet_fes_start_mini_game_sc_rsp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Empmlafdhfa { - /// offset: 16 - #[prost(message, tag = "6")] - Jfmahmofjpi(super::Fmnhlknjnah), - } -} -/// Obf: NLBPMNKBMEH -#[derive(proto_derive::CmdID)] -#[cmdid(8242)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesUseItemCsReq { +pub struct Dancjeecpmn { /// offset: 24 #[prost(uint32, tag = "11")] - pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub diookfoccmo: u32, -} -/// Obf: ICJALLAKNNN -#[derive(proto_derive::CmdID)] -#[cmdid(8237)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesUseItemScRsp { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub reward: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: LHBDNBMDMLD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8241)] +#[cmdid(8225)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesGameBingoFlipCsReq { +pub struct Cifahbdlded { /// offset: 24 - #[prost(uint32, tag = "2")] - pub hcfpofmdgkn: u32, -} -/// Obf: AJKBNNEJAKF -#[derive(proto_derive::CmdID)] -#[cmdid(8240)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGameBingoFlipScRsp { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub hcfpofmdgkn: u32, - /// offset: 40 - #[prost(bool, tag = "10")] - pub nfeadmfnflk: bool, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub reward: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: GHHEPGMFLKN -#[derive(proto_derive::CmdID)] -#[cmdid(8250)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesBonusEventInteractCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub hoiokbkgfdn: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub apmodagohna: u32, -} -/// Obf: HNNHDFFJHEI -#[derive(proto_derive::CmdID)] -#[cmdid(8218)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesBonusEventInteractScRsp { - /// offset: 40 - #[prost(uint32, tag = "10")] - pub hoiokbkgfdn: u32, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub nfjlfnbpppg: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eikaiidaepp { - /// offset: 44 - #[prost(uint32, tag = "1")] - pub hdcbejdenla: u32, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub hhjocgomeco: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "5")] - pub uid: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub bkmamgapegh: u32, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub pjolemhlgnl: u32, - /// offset: 32 #[prost(uint32, tag = "9")] - pub dgjdmocbbii: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub lnjiihhpmed: u32, + pub lmeblckagji: u32, } -/// Obf: DNCDENAAEBC +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8246)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesGetFriendRankingInfoListCsReq {} -/// Obf: OJMAAPPBENG -#[derive(proto_derive::CmdID)] -#[cmdid(8214)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGetFriendRankingInfoListScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub icmgegefdle: ::core::option::Option, -} -/// Obf: JLOIFLNIBDH -#[derive(proto_derive::CmdID)] -#[cmdid(8213)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesFriendRankingInfoChangeScNotify { +pub struct Jagijpgibhf { /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub cnheklkbmhh: ::prost::alloc::vec::Vec, -} -/// Obf: GCBAMAELHIC -#[derive(proto_derive::CmdID)] -#[cmdid(8204)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesSetCustomKeyValueCsReq { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub key: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub value: u32, -} -/// Obf: LNKOOOBENDP -#[derive(proto_derive::CmdID)] -#[cmdid(8224)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesSetCustomKeyValueScRsp { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub value: u32, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub key: u32, -} -/// Obf: JFGJEHICCCD -#[derive(proto_derive::CmdID)] -#[cmdid(8210)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesUpgradeFesLevelCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub ldnjeacfbje: u32, -} -/// Obf: MJDFLDMOONF -#[derive(proto_derive::CmdID)] -#[cmdid(8239)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesUpgradeFesLevelScRsp { - /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub retcode: u32, } -/// Obf: JOIMPGHIEFC +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8217)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesGetAvatarStatCsReq {} -/// Obf: PEODBBNDECK -#[derive(proto_derive::CmdID)] -#[cmdid(8207)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGetAvatarStatScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub oebafbigmbc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Deinadpehke { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub pnakhnbdjae: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub ofgfhcldobg: u32, - /// offset: 40 - #[prost(int64, tag = "15")] - pub lffcmnahbdp: i64, +pub struct Jfjglmkbafd { /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub jpacobgbdbg: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "1")] + pub hmopokhjcmd: bool, } +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bkbilpdkoil { - /// offset: 44 - #[prost(bool, tag = "13")] - pub cabehkoflpg: bool, - /// offset: 32 - #[prost(uint64, tag = "12")] - pub hpjjdcjhhoa: u64, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub jpacobgbdbg: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(int64, tag = "9")] - pub time: i64, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub lhjpkmdmnmp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gjipjngnfej { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub pnakhnbdjae: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub source: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub jpacobgbdbg: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(int64, tag = "2")] - pub time: i64, - /// offset: 48 - #[prost(uint32, tag = "15")] - pub ofgfhcldobg: u32, -} -/// Obf: IEEHPECGECL -#[derive(proto_derive::CmdID)] -#[cmdid(8316)] +#[cmdid(8212)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesGetExtraCardPieceInfoCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ffapkcnapid { - /// offset: 72 - #[prost(uint32, tag = "2")] - pub uid: u32, - /// offset: 60 - #[prost(uint32, tag = "4")] - pub hlkpnecambl: u32, +pub struct Finkjpooikg { /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub gedglncpggn: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "10")] - pub iemnjhlfgkd: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "11")] - pub obboccnflol: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "3")] - pub aoaefeibbmf: u32, - /// offset: 64 - #[prost(int64, tag = "15")] - pub aiieklilmjc: i64, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub pbfhdnbgmbp: ::prost::alloc::vec::Vec, -} -/// Obf: MAOJNGJBIIG -#[derive(proto_derive::CmdID)] -#[cmdid(8318)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGetExtraCardPieceInfoScRsp { - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub baamhdnnkia: ::core::option::Option, - /// offset: 32 #[prost(uint32, tag = "13")] pub retcode: u32, } -/// Obf: JKAIFEBMLLL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8311)] +#[cmdid(8209)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesGetFriendCardPieceCsReq {} -/// Obf: PJNPHHIHHJL +pub struct Fmlcdnjjlmc {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8328)] +#[cmdid(8213)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGetFriendCardPieceScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub cgdandnibgj: ::prost::alloc::vec::Vec, -} -/// Obf: KJHEBGGHEOJ -#[derive(proto_derive::CmdID)] -#[cmdid(8295)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesChangeCardPieceApplyPermissionCsReq { +pub struct Mjoinjmahbi { /// offset: 24 - #[prost(uint32, tag = "11")] - pub hlkpnecambl: u32, + #[prost(message, optional, tag = "13")] + pub cockbmenoan: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, } -/// Obf: DMBJBMNGJBD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8317)] +#[cmdid(8243)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesChangeCardPieceApplyPermissionScRsp { +pub struct Kihdmhncaal { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub gacha_id: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub gacha_count: u32, /// offset: 28 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub hlkpnecambl: u32, + #[prost(uint32, tag = "2")] + pub simulate_magic: u32, } -/// Obf: GBIFOPHFAPB #[derive(proto_derive::CmdID)] -#[cmdid(8310)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesApplyCardPieceCsReq { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub cbegnbkmhcd: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub jpacobgbdbg: ::prost::alloc::vec::Vec, -} -/// Obf: LJDDBEDBMDI -#[derive(proto_derive::CmdID)] -#[cmdid(8334)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesApplyCardPieceScRsp { +pub struct Nmkoagchgdo { /// offset: 40 - #[prost(uint32, tag = "1")] - pub pnakhnbdjae: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub jpacobgbdbg: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(bool, tag = "7")] - pub mcffpieeknn: bool, - /// offset: 52 - #[prost(uint32, tag = "5")] - pub cbegnbkmhcd: u32, - /// offset: 48 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 32 - #[prost(int64, tag = "14")] - pub epcpdocdocb: i64, -} -/// Obf: MPDFLMMAPDE -#[derive(proto_derive::CmdID)] -#[cmdid(8291)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesHandleCardPieceApplyCsReq { + #[prost(uint32, tag = "2")] + pub pmfhaaflljf: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub kpoiodoiigo: ::core::option::Option, /// offset: 36 - #[prost(uint32, tag = "15")] - pub pnakhnbdjae: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub dlhbcokcidp: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "7")] - pub mdapcfheljl: bool, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub ofgfhcldobg: u32, -} -/// Obf: MHKABAJDBHP -#[derive(proto_derive::CmdID)] -#[cmdid(8335)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesHandleCardPieceApplyScRsp { - /// offset: 44 - #[prost(uint32, tag = "1")] - pub pnakhnbdjae: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 32 - #[prost(int64, tag = "9")] - pub ppiolclpmpl: i64, - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub dlhbcokcidp: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(bool, tag = "12")] - pub mdapcfheljl: bool, -} -/// Obf: JGHDMOIMEBO -#[derive(proto_derive::CmdID)] -#[cmdid(8333)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesGetOfferedCardPieceCsReq { - /// offset: 32 - #[prost(bool, tag = "3")] - pub cabehkoflpg: bool, - /// offset: 24 - #[prost(uint64, tag = "10")] - pub hpjjdcjhhoa: u64, -} -/// Obf: NHHKGBJLPEM -#[derive(proto_derive::CmdID)] -#[cmdid(8293)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGetOfferedCardPieceScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub onjgmghcpef: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint64, tag = "13")] - pub hpjjdcjhhoa: u64, - /// offset: 56 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 48 - #[prost(int64, tag = "1")] - pub dljckcmadhj: i64, - /// offset: 60 - #[prost(bool, tag = "15")] - pub cabehkoflpg: bool, - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub pbfhdnbgmbp: ::prost::alloc::vec::Vec, -} -/// Obf: EPDCLDLCFKG -#[derive(proto_derive::CmdID)] -#[cmdid(8313)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGiveCardPieceCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub dlhbcokcidp: ::prost::alloc::vec::Vec, - /// offset: 32 #[prost(uint32, tag = "14")] - pub cbegnbkmhcd: u32, -} -/// Obf: OPGHEBECJHH -#[derive(proto_derive::CmdID)] -#[cmdid(8309)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesGiveCardPieceScRsp { - /// offset: 40 - #[prost(int64, tag = "1")] - pub ppiolclpmpl: i64, + pub noecbeikgko: u32, /// offset: 32 - #[prost(uint64, tag = "9")] - pub hpjjdcjhhoa: u64, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 52 - #[prost(uint32, tag = "2")] - pub cbegnbkmhcd: u32, + #[prost(uint32, tag = "10")] + pub avatar_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Meljplbcekb { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub phpfkadalbm: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "4")] + pub nlbmoeibfhg: ::prost::alloc::vec::Vec, /// offset: 16 #[prost(uint32, repeated, tag = "13")] - pub dlhbcokcidp: ::prost::alloc::vec::Vec, + pub fncfbadcmid: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "3")] + pub ocohhgeikhi: ::prost::alloc::vec::Vec, } -/// Obf: PHGOGJANIDN #[derive(proto_derive::CmdID)] -#[cmdid(8337)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dilkomnpeai { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub ajnjdafbgnh: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub dpgmkhcjgie: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8234)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pfhhighedjk { + /// offset: 44 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub dlabacccgek: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub gacha_id: u32, + #[prost(oneof = "pfhhighedjk::Ekodoagecdm", tags = "10, 5")] + pub ekodoagecdm: ::core::option::Option, +} +/// Nested message and enum types in `PFHHIGHEDJK`. +pub mod pfhhighedjk { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Ekodoagecdm { + /// offset: 32 + #[prost(message, tag = "10")] + Niinhdkpmkc(super::Meljplbcekb), + /// offset: 32 + #[prost(message, tag = "5")] + Iojdeljbkap(super::Dilkomnpeai), + } +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8220)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesLargeBonusInteractCsReq { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub ihcilnhklmc: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub ooiookgmehp: u32, +pub struct Dkeoicabnfp { /// offset: 24 #[prost(uint32, tag = "7")] - pub mopffbmabcd: u32, + pub avatar_id: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub fdbojjijfgn: u32, } -/// Obf: IKPMCPHNOIA +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8207)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mpkeeimnghi { + /// offset: 40 + #[prost(uint32, tag = "5")] + pub fdbojjijfgn: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub avatar_id: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub reward: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub laboomenfgp: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8227)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aaianpmcibg { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub quest_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8210)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jbhlhnkjkof { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub iepbihgoack: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub quest_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8245)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Olboenjmcnl { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub fdbojjijfgn: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub skill_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8218)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ogkfhingnlc { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub item_cost: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub skill_id: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub skill_level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cfjdhjkdejj { + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "1")] + pub kclhmcecech: ::std::collections::HashMap, + /// offset: 40 + #[prost(message, optional, tag = "6")] + pub geibknhcgjf: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub item_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pfghafohphb { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub avatar_id: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub pgjicgficph: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub mkmkjficejn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dhhnjbhmhjh { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub bhjfkehlajd: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pmaojcbkafi { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub fejdfgiooho: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub aciahlgehmd: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub hbhcpgoiiki: u32, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "10")] + pub biojpdebbdk: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ibgldinjmhh { + /// offset: 36 + #[prost(uint32, tag = "15")] + pub enkefmjpenj: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub jggmelognpa: u32, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub mcnnaljcobc: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Heenjifnaeg { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub gaehldnehio: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cbjkkpiifil { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub gaehldnehio: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub npgponiefmm: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub dnmbcmihjmi: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjnpigmidle { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub gaehldnehio: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hhjechkchjo { + /// offset: 52 + #[prost(uint32, tag = "7")] + pub jokdfodleph: u32, + /// offset: 33 + #[prost(bool, tag = "1")] + pub ejhamflocpp: bool, + /// offset: 32 + #[prost(bool, tag = "15")] + pub clkejhhdomf: bool, + /// offset: 40 + #[prost(int64, tag = "3")] + pub dpjfgbkkohn: i64, + /// offset: 56 + #[prost(uint32, tag = "8")] + pub kbbejgfkbdm: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub mgelpobfgia: u32, + /// offset: 34 + #[prost(bool, tag = "4")] + pub fiedapcdjne: bool, + #[prost(oneof = "hhjechkchjo::Paiigoggofj", tags = "12, 5, 9, 11, 13, 14")] + pub paiigoggofj: ::core::option::Option, +} +/// Nested message and enum types in `HHJECHKCHJO`. +pub mod hhjechkchjo { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Paiigoggofj { + /// offset: 24 + #[prost(message, tag = "12")] + Ailaombkaco(super::Dhhnjbhmhjh), + /// offset: 24 + #[prost(message, tag = "5")] + Khmlfhmhbgk(super::Pmaojcbkafi), + /// offset: 24 + #[prost(message, tag = "9")] + Lhjalhaeakc(super::Ibgldinjmhh), + /// offset: 24 + #[prost(message, tag = "11")] + Iinanglibem(super::Heenjifnaeg), + /// offset: 24 + #[prost(message, tag = "13")] + Ofijojpdlom(super::Cbjkkpiifil), + /// offset: 24 + #[prost(message, tag = "14")] + Jgpkijdcpmi(super::Hjnpigmidle), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nfbjabplinp { + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub oadnlfcnieg: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub hmpfdhkpkno: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub mgelpobfgia: u32, + /// offset: 56 + #[prost(int64, tag = "15")] + pub dkhoeiijhip: i64, + /// offset: 53 + #[prost(bool, tag = "4")] + pub chejfkpaohf: bool, + /// offset: 40 + #[prost(map = "uint32, uint32", tag = "8")] + pub gkicglnbnnk: ::std::collections::HashMap, + /// offset: 52 + #[prost(bool, tag = "13")] + pub has_passed: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Koggnmiecmp { + /// offset: 52 + #[prost(bool, tag = "5")] + pub chejfkpaohf: bool, + /// offset: 56 + #[prost(uint32, tag = "2")] + pub ljlecncnhkn: u32, + /// offset: 40 + #[prost(message, repeated, tag = "1")] + pub nehmkpfinji: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "15")] + pub mgelpobfgia: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub oadnlfcnieg: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "10")] + pub jdkdmllecjg: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oneaeimhimf { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub jokdfodleph: u32, + /// offset: 24 + #[prost(bool, tag = "14")] + pub mbicgmmgodf: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lgbgfcfgehg { + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub pchbjeofpie: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "14")] + pub ibgmjnadmlg: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "1")] + pub aidicnkokjm: u32, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub jlelbjngbeb: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub ggakfblnkgd: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub igfbmamigoc: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8250)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Plbfhopecgi { + /// offset: 24 + #[prost(bool, tag = "2")] + pub mphgeklbapb: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8240)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Docfadpcgio { + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub idjlpgaoppp: ::core::option::Option, + /// offset: 40 + #[prost(int64, tag = "6")] + pub pbfnjgoiikj: i64, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nopeodlcepf { + /// offset: 37 + #[prost(bool, tag = "5")] + pub chejfkpaohf: bool, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub jlelbjngbeb: u32, + /// offset: 36 + #[prost(bool, tag = "9")] + pub has_passed: bool, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub ggpbldoajjh: u32, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub aidicnkokjm: u32, + /// offset: 24 + #[prost(int64, tag = "15")] + pub pbfnjgoiikj: i64, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8226)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kkmkkbdbmnb { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub mgelpobfgia: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub jokdfodleph: u32, + /// offset: 24 + #[prost(bool, tag = "12")] + pub cobcpegdklm: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8223)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bnoiljlcioe { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub nfbmomncmgg: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8216)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fcecphkchgk { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub avatar_id: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub pgjicgficph: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8224)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mifinmnpmbp { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub cfokkjjicog: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "7")] + pub avatar_id: u32, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub nfbmomncmgg: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8236)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lnolpaeglgi { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub gokkeogiioh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8214)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hfdhgmdbejf { + /// offset: 48 + #[prost(uint32, tag = "9")] + pub hbhcpgoiiki: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub nfbmomncmgg: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub reward: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "15")] + pub ieecfphccaf: u32, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub caekdcpoanc: u32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8239)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lklamdjopce { + /// offset: 28 + #[prost(uint32, tag = "9")] + pub fejdfgiooho: u32, + /// offset: 24 + #[prost(bool, tag = "5")] + pub ibbenihpcin: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8201)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ehldjkjgncn { + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "13")] + pub caekdcpoanc: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub nfbmomncmgg: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub ieecfphccaf: u32, + /// offset: 40 + #[prost(bool, tag = "14")] + pub ibbenihpcin: bool, + /// offset: 52 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8211)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kfdeifmmhic { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub ojplfjnhjoh: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8229)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dkijnklpbff { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub ojplfjnhjoh: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub reward_list: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cjfiaeicpab { + /// offset: 40 + #[prost(uint32, tag = "2")] + pub ojclejbfbmb: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub pcimhfcodol: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "11")] + pub lpfieijekfi: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub gbofdhhiina: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Okoebmbndib { + /// offset: 40 + #[prost(uint32, tag = "7")] + pub fhfochpogne: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub jggmelognpa: u32, + #[prost(oneof = "okoebmbndib::Iejahnmgman", tags = "6")] + pub iejahnmgman: ::core::option::Option, +} +/// Nested message and enum types in `OKOEBMBNDIB`. +pub mod okoebmbndib { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Iejahnmgman { + /// offset: 16 + #[prost(message, tag = "6")] + Jeblmicalpl(super::Cjfiaeicpab), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jnbgpbihlim { + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub jnghhfbmnnc: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8244)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dgkofijehlh { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub jggmelognpa: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub fhfochpogne: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8247)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Heedapeoihg { + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub mcnnaljcobc: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "11")] + pub retcode: u32, + #[prost(oneof = "heedapeoihg::Fbboifnkjnk", tags = "13")] + pub fbboifnkjnk: ::core::option::Option, +} +/// Nested message and enum types in `HEEDAPEOIHG`. +pub mod heedapeoihg { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Fbboifnkjnk { + /// offset: 16 + #[prost(message, tag = "13")] + Ajnjdafbgnh(super::Jnbgpbihlim), + } +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8230)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fooldoeifoc { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub cjdhjpjcnjk: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub item_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8204)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hojlkbmhnph { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8238)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hebmhdinmip { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub conpadofddb: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8249)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Olhnbgklkdl { + /// offset: 36 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub conpadofddb: u32, + /// offset: 40 + #[prost(bool, tag = "2")] + pub nnfcpemkamc: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8228)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hmknnajkage { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub jokdfodleph: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub hpgiodaedmc: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8208)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Djbmcjgolbc { + /// offset: 44 + #[prost(uint32, tag = "12")] + pub jokdfodleph: u32, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub nfbmomncmgg: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pikjobjdbek { + /// offset: 48 + #[prost(uint32, tag = "9")] + pub gcnlkdbkiel: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub cmoncfgghmh: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub fnelbbmapee: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub uid: u32, + /// offset: 36 + #[prost(uint32, tag = "4")] + pub mfjlmbbnbcl: u32, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub mgelpobfgia: u32, + /// offset: 52 + #[prost(uint32, tag = "3")] + pub gnhgbodolaj: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8206)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Djllaepebhe {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8203)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oghkdpjinak { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub cgopaicdapp: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8222)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ndcaphobakc { + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub kaifocikjba: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8242)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Klilcfenabp { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub value: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub key: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8241)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Okpijhjgafj { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub value: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub key: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8237)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hdmehmjlnab { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub fdbojjijfgn: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8221)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hfajldkameo { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8232)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lpamfamafep {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8215)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fdbdpjjpdho { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub nehmkpfinji: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fdblhfjghle { + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub cemhpiadped: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub cfgadalbekf: u32, + /// offset: 40 + #[prost(int64, tag = "11")] + pub apply_time: i64, + /// offset: 36 + #[prost(uint32, tag = "3")] + pub hcfpclfmlnk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Camlfjhbdfn { + /// offset: 40 + #[prost(uint32, tag = "14")] + pub dcdffojkokb: u32, + /// offset: 32 + #[prost(int64, tag = "7")] + pub time: i64, + /// offset: 48 + #[prost(uint64, tag = "8")] + pub kfjohckpeik: u64, + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub cemhpiadped: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(bool, tag = "11")] + pub gmdgkloehgj: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ndialejoacl { + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub cemhpiadped: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub cfgadalbekf: u32, + /// offset: 40 + #[prost(int64, tag = "5")] + pub time: i64, + /// offset: 48 + #[prost(uint32, tag = "11")] + pub source: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub hcfpclfmlnk: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8309)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eopbcngdodj {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jahbeeinpin { + /// offset: 72 + #[prost(uint32, tag = "7")] + pub uid: u32, + /// offset: 64 + #[prost(uint32, tag = "12")] + pub ncknfcccgac: u32, + /// offset: 68 + #[prost(uint32, tag = "3")] + pub aggdfkmllma: u32, + /// offset: 40 + #[prost(message, repeated, tag = "2")] + pub ckmdkakobaf: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "13")] + pub olpfniihpba: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub dcjpdnppkfj: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(int64, tag = "11")] + pub kbnjabedike: i64, + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub pjigmhmgghg: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8292)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iagejnpihjg { + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub infphbppejg: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8338)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jcbdekigmgc {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8295)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Caogkpdkpid { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub odpnheddaon: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8325)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jlhcaehnbej { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub ncknfcccgac: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8323)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Clipnnjbnfi { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub ncknfcccgac: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8321)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlanetFesLargeBonusInteractScRsp { +pub struct Ipjepogidfl { + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub cemhpiadped: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub nbgndibkajl: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8315)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hcbgbmkmaaa { + /// offset: 52 + #[prost(uint32, tag = "15")] + pub hcfpclfmlnk: u32, + /// offset: 40 + #[prost(int64, tag = "14")] + pub bmmlggjjael: i64, + /// offset: 36 + #[prost(bool, tag = "10")] + pub dbmlijldhlj: bool, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub nbgndibkajl: u32, + /// offset: 48 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub cemhpiadped: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8336)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kncijneplhn { + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub mhcajglbmbo: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(bool, tag = "8")] + pub mpgkllmhjnf: bool, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub cfgadalbekf: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub hcfpclfmlnk: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8307)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fiamcglojde { + /// offset: 48 + #[prost(uint32, tag = "15")] + pub hcfpclfmlnk: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub mhcajglbmbo: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(bool, tag = "13")] + pub mpgkllmhjnf: bool, + /// offset: 40 + #[prost(int64, tag = "12")] + pub objpgfclhfd: i64, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8302)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fjbfebjnbhk { + /// offset: 24 + #[prost(uint64, tag = "2")] + pub kfjohckpeik: u64, + /// offset: 32 + #[prost(bool, tag = "8")] + pub gmdgkloehgj: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8299)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gegjiocoobi { + /// offset: 56 + #[prost(bool, tag = "5")] + pub gmdgkloehgj: bool, + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub ciaeojeepfp: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub ckmdkakobaf: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(int64, tag = "2")] + pub nfmbgjoebmm: i64, + /// offset: 40 + #[prost(uint64, tag = "14")] + pub kfjohckpeik: u64, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8303)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ejobjpjiemf { + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub mhcajglbmbo: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub nbgndibkajl: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8333)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ebkejljcmop { + /// offset: 32 + #[prost(int64, tag = "14")] + pub objpgfclhfd: i64, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub mhcajglbmbo: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint64, tag = "10")] + pub kfjohckpeik: u64, + /// offset: 44 + #[prost(uint32, tag = "13")] + pub nbgndibkajl: u32, /// offset: 40 #[prost(uint32, tag = "6")] pub retcode: u32, - /// offset: 44 - #[prost(uint32, tag = "15")] - pub ihcilnhklmc: u32, - /// offset: 32 - #[prost(message, optional, tag = "2")] - pub gmidjmmmjkp: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub nfjlfnbpppg: ::core::option::Option, } -/// Obf: GPJACEJJMEB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8320)] +#[cmdid(8324)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesEnterNextBusinessDayCsReq {} -/// Obf: FFKKBBACICL -#[derive(proto_derive::CmdID)] -#[cmdid(8301)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlanetFesEnterNextBusinessDayScRsp { +pub struct Hmafhkaekfg { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] + pub djggohlcjbo: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub ogjcjiaboak: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub kelldcmghec: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8310)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fndnkaacbhd { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub nfbmomncmgg: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub ogjcjiaboak: u32, + /// offset: 32 + #[prost(message, optional, tag = "10")] + pub icgnnieffed: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8297)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bdfnnpapboj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8317)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bjocihicccm { + /// offset: 24 + #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: PGAPOOHJGMB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(99)] +#[cmdid(47)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerLoginCsReq { - /// offset: 56 - #[prost(string, tag = "12")] - pub device_uuid: ::prost::alloc::string::String, - /// offset: 24 - #[prost(string, tag = "13")] - pub device_info: ::prost::alloc::string::String, - /// offset: 176 - #[prost(uint32, tag = "3")] - pub client_res_version: u32, /// offset: 80 - #[prost(string, tag = "6")] - pub hjdmjpebppm: ::prost::alloc::string::String, - /// offset: 128 - #[prost(string, tag = "1659")] - pub gmalcpnohbf: ::prost::alloc::string::String, - /// offset: 120 - #[prost(string, tag = "7")] - pub cps: ::prost::alloc::string::String, - /// offset: 88 - #[prost(string, tag = "9")] - pub ocdacjnnjnj: ::prost::alloc::string::String, - /// offset: 96 - #[prost(string, tag = "5")] - pub system_language: ::prost::alloc::string::String, - /// offset: 180 - #[prost(uint32, tag = "1657")] - pub sub_channel_id: u32, - /// offset: 192 - #[prost(enumeration = "LanguageType", tag = "14")] - pub language_type: i32, - /// offset: 152 - #[prost(string, tag = "1522")] - pub akcejfcfban: ::prost::alloc::string::String, - /// offset: 32 - #[prost(string, tag = "2036")] - pub local_time_zone: ::prost::alloc::string::String, - /// offset: 168 - #[prost(uint32, tag = "1544")] - pub design_data_revision_id: u32, - /// offset: 184 - #[prost(bool, tag = "667")] - pub gehapnihcdo: bool, - /// offset: 40 - #[prost(string, tag = "824")] - pub device_fingerprint: ::prost::alloc::string::String, - /// offset: 64 - #[prost(string, tag = "58")] - pub login_method: ::prost::alloc::string::String, - /// offset: 200 - #[prost(uint64, tag = "4")] - pub login_random: u64, - /// offset: 196 - #[prost(enumeration = "PlatformType", tag = "15")] - pub platform_type: i32, - /// offset: 104 - #[prost(message, optional, tag = "85")] - pub mobile_device_info: ::core::option::Option, - /// offset: 112 - #[prost(message, optional, tag = "1805")] - pub age_info: ::core::option::Option, - /// offset: 160 - #[prost(string, tag = "1564")] - pub uapc: ::prost::alloc::string::String, - /// offset: 172 - #[prost(uint32, tag = "1080")] - pub channel_id: u32, - /// offset: 72 #[prost(string, tag = "11")] - pub signature: ::prost::alloc::string::String, - /// offset: 185 - #[prost(bool, tag = "814")] - pub is_new_register: bool, - /// offset: 188 - #[prost(uint32, tag = "2")] - pub jmkhdhaioim: u32, - /// offset: 16 - #[prost(string, tag = "1")] - pub pak_type_version: ::prost::alloc::string::String, - /// offset: 136 + pub rogue_get_info: ::prost::alloc::string::String, + /// offset: 160 + #[prost(string, tag = "14")] + pub fbmigaejnlp: ::prost::alloc::string::String, + /// offset: 128 #[prost(string, tag = "10")] - pub resolution: ::prost::alloc::string::String, + pub cadbajghnfa: ::prost::alloc::string::String, + /// offset: 177 + #[prost(bool, tag = "522")] + pub ojeebhfdigb: bool, + /// offset: 24 + #[prost(string, tag = "6")] + pub mbfgdabcjkh: ::prost::alloc::string::String, + /// offset: 96 + #[prost(message, optional, tag = "788")] + pub pnnfpkpobel: ::core::option::Option, + /// offset: 40 + #[prost(string, tag = "1904")] + pub ajbgaeolnbf: ::prost::alloc::string::String, + /// offset: 180 + #[prost(uint32, tag = "1941")] + pub bfajppkembm: u32, + /// offset: 196 + #[prost(uint32, tag = "1058")] + pub nljmlchgmpj: u32, + /// offset: 152 + #[prost(message, optional, tag = "752")] + pub kapheppjcea: ::core::option::Option, + /// offset: 48 + #[prost(string, tag = "434")] + pub eogmkahhaho: ::prost::alloc::string::String, + /// offset: 168 + #[prost(uint64, tag = "1")] + pub login_random: u64, + /// offset: 16 + #[prost(string, tag = "622")] + pub hojbikbjfcj: ::prost::alloc::string::String, + /// offset: 188 + #[prost(enumeration = "PlatformType", tag = "8")] + pub platform: i32, + /// offset: 136 + #[prost(string, tag = "1048")] + pub dolkndaiojk: ::prost::alloc::string::String, + /// offset: 88 + #[prost(string, tag = "2017")] + pub mjmfeepmipb: ::prost::alloc::string::String, + /// offset: 64 + #[prost(string, tag = "2")] + pub oohniecmbpl: ::prost::alloc::string::String, + /// offset: 184 + #[prost(uint32, tag = "13")] + pub client_res_version: u32, + /// offset: 176 + #[prost(bool, tag = "1257")] + pub dnnkcbpbeoj: bool, + /// offset: 200 + #[prost(uint32, tag = "3")] + pub mlbhgobehkm: u32, + /// offset: 104 + #[prost(string, tag = "1042")] + pub jndkknhlhnf: ::prost::alloc::string::String, + /// offset: 56 + #[prost(string, tag = "9")] + pub caelgdifdbj: ::prost::alloc::string::String, + /// offset: 204 + #[prost(uint32, tag = "612")] + pub mbkgcfahgmd: u32, + /// offset: 192 + #[prost(enumeration = "LanguageType", tag = "7")] + pub hdofaalckkj: i32, + /// offset: 112 + #[prost(string, tag = "12")] + pub client_version: ::prost::alloc::string::String, /// offset: 144 - #[prost(string, tag = "8")] - pub operating_system: ::prost::alloc::string::String, + #[prost(string, tag = "4")] + pub chmiephmkak: ::prost::alloc::string::String, + /// offset: 120 + #[prost(string, tag = "5")] + pub signature: ::prost::alloc::string::String, + /// offset: 32 + #[prost(string, tag = "15")] + pub ehjpmknafbp: ::prost::alloc::string::String, } -/// Obf: BKFCFKAKBAL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(23)] +#[cmdid(9)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerLoginScRsp { - /// offset: 60 - #[prost(bool, tag = "2")] - pub jlpkeobincp: bool, - /// offset: 56 - #[prost(int32, tag = "6")] - pub cur_timezone: i32, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub basic_info: ::core::option::Option, /// offset: 32 - #[prost(string, tag = "1")] - pub pdikpeifann: ::prost::alloc::string::String, - /// offset: 16 - #[prost(string, tag = "14")] - pub nhmhabjkhog: ::prost::alloc::string::String, - /// offset: 52 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 64 - #[prost(uint64, tag = "4")] - pub server_timestamp_ms: u64, - /// offset: 61 - #[prost(bool, tag = "8")] - pub igkbeamlnbj: bool, - /// offset: 72 - #[prost(uint64, tag = "12")] - pub login_random: u64, + #[prost(string, tag = "15")] + pub illfkhpdfdd: ::prost::alloc::string::String, /// offset: 48 - #[prost(uint32, tag = "10")] + #[prost(uint64, tag = "14")] + pub login_random: u64, + /// offset: 64 + #[prost(int32, tag = "1")] + pub cur_timezone: i32, + /// offset: 68 + #[prost(bool, tag = "2")] + pub nkdgcolocom: bool, + /// offset: 69 + #[prost(bool, tag = "11")] + pub mdhpbbjecgd: bool, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub basic_info: ::core::option::Option, + /// offset: 72 + #[prost(uint32, tag = "8")] pub stamina: u32, + /// offset: 40 + #[prost(string, tag = "7")] + pub nedekoaebap: ::prost::alloc::string::String, + /// offset: 56 + #[prost(uint64, tag = "6")] + pub server_timestamp_ms: u64, + /// offset: 76 + #[prost(uint32, tag = "12")] + pub retcode: u32, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(38)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lmipmhhpfhn {} -/// Obf: LHNADANEIOG +pub struct Kdjebhagjip {} +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(83)] +#[cmdid(51)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerGetTokenCsReq { /// offset: 68 - #[prost(uint32, tag = "9")] - pub goijemcccgl: u32, + #[prost(uint32, tag = "4")] + pub jkfeklkbgjg: u32, /// offset: 32 #[prost(string, tag = "12")] - pub mempbkcjjfj: ::prost::alloc::string::String, - /// offset: 60 - #[prost(uint32, tag = "1")] - pub fgojlpaejec: u32, - /// offset: 40 - #[prost(string, tag = "7")] - pub account_uid: ::prost::alloc::string::String, + pub token: ::prost::alloc::string::String, /// offset: 52 - #[prost(uint32, tag = "11")] - pub channel_id: u32, + #[prost(uint32, tag = "7")] + pub platform: u32, + /// offset: 16 + #[prost(string, tag = "6")] + pub chfglpojkci: ::prost::alloc::string::String, + /// offset: 40 + #[prost(string, tag = "11")] + pub account_uid: ::prost::alloc::string::String, /// offset: 48 - #[prost(uint32, tag = "14")] - pub icmfpnpijjf: u32, + #[prost(uint32, tag = "1")] + pub hjnafkhlapg: u32, + /// offset: 60 + #[prost(uint32, tag = "10")] + pub sign_type: u32, /// offset: 64 #[prost(uint32, tag = "15")] pub uid: u32, /// offset: 56 #[prost(uint32, tag = "5")] - pub platform_type: u32, - /// offset: 16 - #[prost(string, tag = "13")] - pub token: ::prost::alloc::string::String, + pub bfajppkembm: u32, } -/// Obf: HEDHHDPAOJE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(86)] +#[cmdid(11)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerGetTokenScRsp { /// offset: 32 - #[prost(string, tag = "13")] + #[prost(string, tag = "9")] pub msg: ::prost::alloc::string::String, - /// offset: 16 - #[prost(string, tag = "10")] - pub kbnipiiiccn: ::prost::alloc::string::String, - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub black_info: ::core::option::Option, - /// offset: 60 - #[prost(uint32, tag = "5")] - pub retcode: u32, /// offset: 48 - #[prost(uint64, tag = "1")] - pub secret_key_seed: u64, - /// offset: 56 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub uid: u32, + /// offset: 52 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 56 + #[prost(uint64, tag = "8")] + pub secret_key_seed: u64, + /// offset: 16 + #[prost(string, tag = "1")] + pub authkey: ::prost::alloc::string::String, + /// offset: 40 + #[prost(message, optional, tag = "12")] + pub black_info: ::core::option::Option, } -/// Obf: CCANMIHELML +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(52)] +#[cmdid(20)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GmTalkScNotify { /// offset: 24 - #[prost(string, tag = "13")] + #[prost(string, tag = "7")] pub msg: ::prost::alloc::string::String, } -/// Obf: PLPKJLGANCB +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(19)] +#[cmdid(95)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerKickOutScNotify { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub black_info: ::core::option::Option, /// offset: 32 #[prost( - enumeration = "player_kick_out_sc_notify::kakbfnggohb::Hilaijmdkej", - tag = "13" + enumeration = "player_kick_out_sc_notify::nogkmidlfhn::Nohnknggcdj", + tag = "15" )] - pub mglldoifgnd: i32, - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub black_info: ::core::option::Option, + pub kick_type: i32, } /// Nested message and enum types in `PlayerKickOutScNotify`. pub mod player_kick_out_sc_notify { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] - pub struct Kakbfnggohb {} - /// Nested message and enum types in `KAKBFNGGOHB`. - pub mod kakbfnggohb { + pub struct Nogkmidlfhn {} + /// Nested message and enum types in `NOGKMIDLFHN`. + pub mod nogkmidlfhn { #[derive(proto_derive::CmdID)] #[derive( Clone, @@ -33743,2682 +34734,2483 @@ pub mod player_kick_out_sc_notify { ::prost::Enumeration )] #[repr(i32)] - pub enum Hilaijmdkej { - KickSqueezed = 0, - KickBlack = 1, - KickChangePwd = 2, - KickLoginWhiteTimeout = 3, - KickAceAntiCheater = 4, - KickByGm = 5, + pub enum Nohnknggcdj { + Adfpfgehein = 0, + Domdacjlcac = 1, + Ajdbeiefaig = 2, + Akkgfgadkdn = 3, + Gnjbceifkla = 4, + Pbgbiihplpo = 5, } - impl Hilaijmdkej { + impl Nohnknggcdj { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KickSqueezed => "KICK_SQUEEZED", - Self::KickBlack => "KICK_BLACK", - Self::KickChangePwd => "KICK_CHANGE_PWD", - Self::KickLoginWhiteTimeout => "KICK_LOGIN_WHITE_TIMEOUT", - Self::KickAceAntiCheater => "KICK_ACE_ANTI_CHEATER", - Self::KickByGm => "KICK_BY_GM", + Self::Adfpfgehein => "NOHNKNGGCDJ_ADFPFGEHEIN", + Self::Domdacjlcac => "NOHNKNGGCDJ_DOMDACJLCAC", + Self::Ajdbeiefaig => "NOHNKNGGCDJ_AJDBEIEFAIG", + Self::Akkgfgadkdn => "NOHNKNGGCDJ_AKKGFGADKDN", + Self::Gnjbceifkla => "NOHNKNGGCDJ_GNJBCEIFKLA", + Self::Pbgbiihplpo => "NOHNKNGGCDJ_PBGBIIHPLPO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "KICK_SQUEEZED" => Some(Self::KickSqueezed), - "KICK_BLACK" => Some(Self::KickBlack), - "KICK_CHANGE_PWD" => Some(Self::KickChangePwd), - "KICK_LOGIN_WHITE_TIMEOUT" => Some(Self::KickLoginWhiteTimeout), - "KICK_ACE_ANTI_CHEATER" => Some(Self::KickAceAntiCheater), - "KICK_BY_GM" => Some(Self::KickByGm), + "NOHNKNGGCDJ_ADFPFGEHEIN" => Some(Self::Adfpfgehein), + "NOHNKNGGCDJ_DOMDACJLCAC" => Some(Self::Domdacjlcac), + "NOHNKNGGCDJ_AJDBEIEFAIG" => Some(Self::Ajdbeiefaig), + "NOHNKNGGCDJ_AKKGFGADKDN" => Some(Self::Akkgfgadkdn), + "NOHNKNGGCDJ_GNJBCEIFKLA" => Some(Self::Gnjbceifkla), + "NOHNKNGGCDJ_PBGBIIHPLPO" => Some(Self::Pbgbiihplpo), _ => None, } } } } } -/// Obf: FCLNPHHEBIK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(44)] +#[cmdid(91)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GmTalkCsReq { /// offset: 16 - #[prost(string, tag = "2")] + #[prost(string, tag = "9")] pub msg: ::prost::alloc::string::String, } -/// Obf: IDAFMHOMNFO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(81)] +#[cmdid(61)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GmTalkScRsp { - /// offset: 16 - #[prost(string, tag = "7")] - pub bjdojlkehna: ::prost::alloc::string::String, + /// offset: 24 + #[prost(string, tag = "1")] + pub dhmkejhhmla: ::prost::alloc::string::String, /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: NLDIOAKBAEF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(63)] +#[cmdid(25)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBasicInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ogfiodpilel { - /// offset: 28 - #[prost(bool, tag = "2")] - pub akheilmndhj: bool, - /// offset: 29 - #[prost(bool, tag = "3")] - pub dmklnjboabo: bool, +pub struct Joiloejckce { + /// offset: 25 + #[prost(bool, tag = "5")] + pub kmegkmhcphl: bool, /// offset: 24 - #[prost(uint32, tag = "15")] - pub cacekelnmin: u32, + #[prost(bool, tag = "15")] + pub kmjdildgdpc: bool, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub clmphkhlgip: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerSettingInfo { - /// offset: 32 - #[prost(bool, tag = "15")] - pub nkekibnjmpa: bool, - /// offset: 35 - #[prost(bool, tag = "5")] - pub gmjanojmkce: bool, - /// offset: 36 - #[prost(bool, tag = "4")] - pub aicnfaobcpi: bool, - /// offset: 38 - #[prost(bool, tag = "413")] - pub jnaglcdkkej: bool, - /// offset: 42 - #[prost(bool, tag = "103")] - pub oegifodeakk: bool, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub ghkcmdnkopn: ::core::option::Option, - /// offset: 33 - #[prost(bool, tag = "14")] - pub mccjlbemkcn: bool, /// offset: 39 - #[prost(bool, tag = "10")] - pub kapdimgjlnf: bool, - /// offset: 40 - #[prost(bool, tag = "8")] - pub njfmiljofok: bool, - /// offset: 43 - #[prost(bool, tag = "1")] - pub aponeidmphl: bool, - /// offset: 37 - #[prost(bool, tag = "675")] - pub gpipjlcliih: bool, - /// offset: 34 - #[prost(bool, tag = "11")] - pub mmmnjchemfn: bool, - /// offset: 44 #[prost(bool, tag = "12")] - pub pbkbglhhkpe: bool, - /// offset: 41 + pub display_diary: bool, + /// offset: 33 + #[prost(bool, tag = "4")] + pub dklkdhplpoa: bool, + /// offset: 36 + #[prost(bool, tag = "945")] + pub ambbicfkgdh: bool, + /// offset: 40 + #[prost(bool, tag = "1133")] + pub dfageaaaapa: bool, + /// offset: 35 + #[prost(bool, tag = "11")] + pub nnliadpgmam: bool, + /// offset: 32 + #[prost(bool, tag = "1")] + pub laopcfdchei: bool, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub djocmchfpbm: ::core::option::Option, + /// offset: 43 + #[prost(bool, tag = "8")] + pub oceddkmfkld: bool, + /// offset: 38 + #[prost(bool, tag = "7")] + pub ijljdmmchij: bool, + /// offset: 37 + #[prost(bool, tag = "15")] + pub dgnmjambilo: bool, + /// offset: 34 #[prost(bool, tag = "3")] - pub kjncckhjfhe: bool, + pub lkhffohiedb: bool, + /// offset: 44 + #[prost(bool, tag = "14")] + pub faakmjjfgoa: bool, + /// offset: 41 + #[prost(bool, tag = "1019")] + pub efbogadmkbp: bool, + /// offset: 42 + #[prost(bool, tag = "6")] + pub ifmcmacgpgk: bool, } -/// Obf: GetBasicInfoScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4)] +#[cmdid(7)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBasicInfoScRsp { - /// offset: 68 - #[prost(uint32, tag = "11")] - pub week_cocoon_finished_count: u32, - /// offset: 56 - #[prost(uint32, tag = "3")] - pub gender: u32, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub player_setting_info: ::core::option::Option, - /// offset: 52 - #[prost(bool, tag = "1")] - pub is_gender_set: bool, - /// offset: 48 - #[prost(uint32, tag = "6")] - pub cur_day: u32, - /// offset: 40 - #[prost(int64, tag = "7")] - pub next_recover_time: i64, /// offset: 32 - #[prost(int64, tag = "15")] - pub last_set_nickname_time: i64, + #[prost(uint32, tag = "12")] + pub cur_day: u32, /// offset: 72 + #[prost(uint32, tag = "5")] + pub gender: u32, + /// offset: 40 + #[prost(int64, tag = "8")] + pub next_recover_time: i64, + /// offset: 52 + #[prost(bool, tag = "10")] + pub is_gender_set: bool, + /// offset: 68 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 56 + #[prost(int64, tag = "11")] + pub last_set_nickname_time: i64, + /// offset: 76 + #[prost(uint32, tag = "9")] + pub gameplay_birthday: u32, + /// offset: 64 #[prost(uint32, tag = "13")] pub exchange_times: u32, - /// offset: 64 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 60 - #[prost(uint32, tag = "4")] - pub gameplay_birthday: u32, + /// offset: 48 + #[prost(uint32, tag = "15")] + pub week_cocoon_finished_count: u32, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub player_setting_info: ::core::option::Option, } -/// Obf: CBLCHDHMBGO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(15)] +#[cmdid(52)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ExchangeStaminaCsReq {} -/// Obf: ExchangeStaminaScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(92)] +#[cmdid(50)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExchangeStaminaScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub item_cost_list: ::prost::alloc::vec::Vec, - /// offset: 44 + /// offset: 40 #[prost(uint32, tag = "9")] pub exchange_times: u32, - /// offset: 48 - #[prost(uint32, tag = "7")] - pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub item_cost_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(int64, tag = "13")] - pub last_recover_time: i64, - /// offset: 40 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] pub stamina_add: u32, + /// offset: 48 + #[prost(int64, tag = "8")] + pub last_recover_time: i64, } -/// Obf: JOIIJKLDFCJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(37)] +#[cmdid(81)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAuthkeyCsReq { - /// offset: 36 - #[prost(uint32, tag = "7")] - pub mpgpgfkbmhg: u32, - /// offset: 24 - #[prost(string, tag = "6")] - pub acdjgnhjdai: ::prost::alloc::string::String, /// offset: 32 - #[prost(uint32, tag = "4")] - pub goijemcccgl: u32, + #[prost(uint32, tag = "1")] + pub sign_type: u32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub authkey_ver: u32, + /// offset: 16 + #[prost(string, tag = "3")] + pub auth_appid: ::prost::alloc::string::String, } -/// Obf: OOMOCDOFBPA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(68)] +#[cmdid(93)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAuthkeyScRsp { - /// offset: 40 - #[prost(uint32, tag = "10")] - pub goijemcccgl: u32, /// offset: 24 - #[prost(string, tag = "3")] - pub acdjgnhjdai: ::prost::alloc::string::String, + #[prost(string, tag = "5")] + pub auth_appid: ::prost::alloc::string::String, /// offset: 16 - #[prost(string, tag = "8")] - pub kbnipiiiccn: ::prost::alloc::string::String, + #[prost(string, tag = "4")] + pub authkey: ::prost::alloc::string::String, /// offset: 48 - #[prost(uint32, tag = "2")] - pub mpgpgfkbmhg: u32, - /// offset: 44 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub sign_type: u32, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub authkey_ver: u32, } -/// Obf: MBLGHOEJPFL +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(49)] +#[cmdid(37)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RegionStopScNotify { /// offset: 24 - #[prost(int64, tag = "3")] - pub stop_end_time: i64, - /// offset: 32 - #[prost(int64, tag = "5")] + #[prost(int64, tag = "8")] pub stop_begin_time: i64, + /// offset: 32 + #[prost(int64, tag = "7")] + pub stop_end_time: i64, } -/// Obf: AntiAddictScNotify +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(80)] +#[cmdid(10)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AntiAddictScNotify { /// offset: 24 - #[prost(string, tag = "11")] + #[prost(string, tag = "14")] pub msg: ::prost::alloc::string::String, /// offset: 16 - #[prost(string, tag = "4")] + #[prost(string, tag = "2")] pub level: ::prost::alloc::string::String, /// offset: 40 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "10")] pub msg_type: u32, } -/// Obf: LCNEGGBICON +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(77)] +#[cmdid(67)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetNicknameCsReq { - /// offset: 16 - #[prost(string, tag = "5")] - pub nickname: ::prost::alloc::string::String, /// offset: 32 - #[prost(bool, tag = "8")] + #[prost(bool, tag = "5")] pub is_modify: bool, + /// offset: 16 + #[prost(string, tag = "14")] + pub nickname: ::prost::alloc::string::String, } -/// Obf: KGKHBLPJCNP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5)] +#[cmdid(62)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetNicknameScRsp { + /// offset: 32 + #[prost(int64, tag = "9")] + pub chadhdhldfj: i64, + /// offset: 24 + #[prost(bool, tag = "14")] + pub is_modify: bool, /// offset: 28 #[prost(uint32, tag = "4")] pub retcode: u32, - /// offset: 24 - #[prost(bool, tag = "9")] - pub is_modify: bool, - /// offset: 32 - #[prost(int64, tag = "1")] - pub jendkbooaip: i64, } -/// Obf: PKJNDKNFFBP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(51)] +#[cmdid(35)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLevelRewardTakenListCsReq {} -/// Obf: NBJDCIIGJOH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(29)] +#[cmdid(98)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLevelRewardTakenListScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub amcakcpdnnl: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub level_reward_taken_list: ::prost::alloc::vec::Vec, } -/// Obf: PNNCDLMLBCA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(38)] +#[cmdid(46)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetLevelRewardCsReq { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub interacted_prop_entity_id: u32, /// offset: 24 + #[prost(uint32, tag = "10")] + pub interacted_prop_entity_id: u32, + /// offset: 28 #[prost(uint32, tag = "3")] pub level: u32, } -/// Obf: LAOFKBCENHO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3)] +#[cmdid(92)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetLevelRewardScRsp { + /// offset: 36 + #[prost(uint32, tag = "15")] + pub level: u32, /// offset: 32 #[prost(uint32, tag = "3")] - pub level: u32, + pub retcode: u32, /// offset: 24 #[prost(message, optional, tag = "12")] pub reward: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub retcode: u32, } -/// Obf: PCOPJMAALGD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(59)] +#[cmdid(57)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetLanguageCsReq { /// offset: 24 - #[prost(enumeration = "LanguageType", tag = "6")] - pub language_type: i32, + #[prost(enumeration = "LanguageType", tag = "15")] + pub hdofaalckkj: i32, } -/// Obf: HKFACMOAFCE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(22)] +#[cmdid(15)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetLanguageScRsp { /// offset: 28 - #[prost(enumeration = "LanguageType", tag = "4")] - pub language_type: i32, + #[prost(enumeration = "LanguageType", tag = "14")] + pub hdofaalckkj: i32, /// offset: 24 #[prost(uint32, tag = "13")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kiphkhhmfac { - /// offset: 48 - #[prost(int64, tag = "5")] - pub begin_time: i64, - /// offset: 16 - #[prost(string, tag = "7")] - pub dbckeiojldi: ::prost::alloc::string::String, - /// offset: 32 - #[prost(string, tag = "4")] - pub adjcaknjcgo: ::prost::alloc::string::String, +pub struct AnnounceData { /// offset: 56 - #[prost(uint32, tag = "15")] - pub config_id: u32, - /// offset: 60 - #[prost(uint32, tag = "2")] - pub pokidoenkek: u32, - /// offset: 68 - #[prost(bool, tag = "13")] - pub ghcaaonigca: bool, - /// offset: 69 - #[prost(bool, tag = "6")] - pub ogegkokgppj: bool, - /// offset: 24 - #[prost(string, tag = "3")] - pub bcafjhgdodi: ::prost::alloc::string::String, + #[prost(uint32, tag = "7")] + pub banner_frequency: u32, /// offset: 72 - #[prost(int64, tag = "11")] - pub end_time: i64, + #[prost(int64, tag = "4")] + pub begin_time: i64, + /// offset: 24 + #[prost(string, tag = "1")] + pub emergency_text: ::prost::alloc::string::String, /// offset: 64 + #[prost(uint32, tag = "11")] + pub config_id: u32, + /// offset: 48 + #[prost(int64, tag = "12")] + pub end_time: i64, + /// offset: 16 + #[prost(string, tag = "14")] + pub pcjllkoogmm: ::prost::alloc::string::String, + /// offset: 60 #[prost(uint32, tag = "9")] - pub kdcigpamgho: u32, + pub center_system_frequency: u32, + /// offset: 69 + #[prost(bool, tag = "5")] + pub has_recommand: bool, + /// offset: 32 + #[prost(string, tag = "13")] + pub banner_text: ::prost::alloc::string::String, + /// offset: 68 + #[prost(bool, tag = "6")] + pub ljngofickof: bool, } -/// Obf: IBAKKGHGKBH +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(97)] +#[cmdid(73)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ServerAnnounceNotify { /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub pbehmeaeikc: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub announce_data_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Gateserver { - /// offset: 288 - #[prost(string, tag = "1507")] - pub server_description: ::prost::alloc::string::String, - /// offset: 168 - #[prost(string, tag = "452")] - pub ckiofjnkemn: ::prost::alloc::string::String, - /// offset: 496 - #[prost(uint32, tag = "2030")] - pub enable_cdn_ipv6: u32, - /// offset: 144 - #[prost(string, tag = "395")] - pub pre_download_url: ::prost::alloc::string::String, - /// offset: 482 - #[prost(bool, tag = "1703")] - pub enable_save_replay_file: bool, - /// offset: 136 - #[prost(string, tag = "1311")] - pub pooolgfkkjl: ::prost::alloc::string::String, - /// offset: 328 - #[prost(string, tag = "263")] - pub ifix_url: ::prost::alloc::string::String, - /// offset: 468 - #[prost(uint32, tag = "1426")] - pub rogue_tourn_notice_id: u32, - /// offset: 176 - #[prost(string, tag = "1708")] - pub custom_service_url: ::prost::alloc::string::String, - /// offset: 272 - #[prost(string, tag = "1351")] - pub hot_point_url: ::prost::alloc::string::String, - /// offset: 492 - #[prost(uint32, tag = "14")] - pub port: u32, - /// offset: 432 - #[prost(string, tag = "933")] - pub denlmlcjlpg: ::prost::alloc::string::String, - /// offset: 64 - #[prost(string, tag = "1984")] - pub rogue_tourn_build_ref_h5_url: ::prost::alloc::string::String, - /// offset: 208 - #[prost(string, tag = "100")] - pub lhoofmaihpc: ::prost::alloc::string::String, - /// offset: 461 - #[prost(bool, tag = "296")] - pub use_new_networking: bool, - /// offset: 256 - #[prost(string, tag = "72")] - pub community_activity_url: ::prost::alloc::string::String, - /// offset: 304 - #[prost(string, tag = "1")] - pub lua_url: ::prost::alloc::string::String, - /// offset: 408 #[prost(string, tag = "5")] - pub ip: ::prost::alloc::string::String, - /// offset: 88 - #[prost(string, tag = "4")] - pub msg: ::prost::alloc::string::String, - /// offset: 463 - #[prost(bool, tag = "8")] - pub enable_design_data_version_update: bool, - /// offset: 232 - #[prost(string, tag = "1110")] - pub mpnjikpkohj: ::prost::alloc::string::String, - /// offset: 440 - #[prost(string, tag = "257")] - pub temporary_maintenance_url: ::prost::alloc::string::String, - /// offset: 200 - #[prost(string, tag = "356")] - pub operation_feedback_url: ::prost::alloc::string::String, - /// offset: 192 - #[prost(string, tag = "839")] - pub web_tool_url: ::prost::alloc::string::String, - /// offset: 462 - #[prost(bool, tag = "1749")] - pub modibfhpmcp: bool, - /// offset: 504 - #[prost(int64, tag = "3")] - pub stop_end_time: i64, - /// offset: 384 - #[prost(string, tag = "6")] - pub ex_resource_url: ::prost::alloc::string::String, - /// offset: 184 - #[prost(string, tag = "10")] pub region_name: ::prost::alloc::string::String, - /// offset: 512 - #[prost(uint32, tag = "13")] - pub design_data_relogin_type: u32, - /// offset: 96 - #[prost(string, tag = "212")] - pub player_return_invite_h5_url: ::prost::alloc::string::String, - /// offset: 489 - #[prost(bool, tag = "1260")] - pub network_diagnostic: bool, - /// offset: 460 - #[prost(bool, tag = "1665")] - pub close_redeem_code: bool, - /// offset: 424 - #[prost(string, repeated, tag = "882")] - pub oaohiecdgcc: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - /// offset: 48 - #[prost(string, tag = "334")] - pub personal_information_in_game_url: ::prost::alloc::string::String, - /// offset: 344 - #[prost(string, tag = "1836")] - pub redeem_code_url: ::prost::alloc::string::String, - /// offset: 392 - #[prost(string, tag = "553")] - pub ipv6_address: ::prost::alloc::string::String, - /// offset: 248 - #[prost(string, tag = "475")] - pub login_white_msg: ::prost::alloc::string::String, - /// offset: 490 - #[prost(bool, tag = "518")] - pub enable_upload_battle_log: bool, - /// offset: 16 - #[prost(string, tag = "379")] - pub rogue_tourn_build_ref_api_req_color_header_value: ::prost::alloc::string::String, - /// offset: 488 - #[prost(bool, tag = "1414")] - pub enable_android_middle_package: bool, - /// offset: 120 - #[prost(string, tag = "552")] - pub teenager_privacy_in_game_url: ::prost::alloc::string::String, - /// offset: 352 - #[prost(string, tag = "1090")] - pub client_secret_key: ::prost::alloc::string::String, - /// offset: 491 - #[prost(bool, tag = "1008")] - pub ios_exam: bool, - /// offset: 216 - #[prost(string, tag = "1804")] - pub lnhlkkcdffi: ::prost::alloc::string::String, - /// offset: 485 - #[prost(bool, tag = "835")] - pub forbid_recharge: bool, - /// offset: 416 - #[prost(string, tag = "1105")] - pub player_return_questionnaire_a_url: ::prost::alloc::string::String, - /// offset: 456 - #[prost(uint32, tag = "883")] - pub rogue_tourn_notice_pic_type: u32, - /// offset: 240 - #[prost(string, tag = "1407")] - pub online_replay_upload_url: ::prost::alloc::string::String, - /// offset: 360 - #[prost(string, tag = "11")] - pub asb_relogin_desc: ::prost::alloc::string::String, - /// offset: 280 - #[prost(string, tag = "228")] - pub user_agreement_url: ::prost::alloc::string::String, - /// offset: 152 - #[prost(string, tag = "1448")] - pub hdkecpiplfh: ::prost::alloc::string::String, - /// offset: 480 - #[prost(bool, tag = "138")] - pub mtp_switch: bool, - /// offset: 376 - #[prost(string, tag = "110")] - pub privacy_in_game_url: ::prost::alloc::string::String, - /// offset: 32 - #[prost(string, tag = "1280")] - pub ifix_version: ::prost::alloc::string::String, - /// offset: 224 - #[prost(string, tag = "7")] + #[prost(string, tag = "6")] + pub ip: ::prost::alloc::string::String, + #[prost(bool, tag = "8")] + pub unk1: bool, + #[prost(string, tag = "9")] + pub lua_url: ::prost::alloc::string::String, + #[prost(string, tag = "10")] + pub ex_resource_url: ::prost::alloc::string::String, + #[prost(bool, tag = "11")] + pub unk2: bool, + #[prost(string, tag = "12")] pub asset_bundle_url: ::prost::alloc::string::String, - /// offset: 72 - #[prost(string, tag = "1828")] - pub ngcimholjba: ::prost::alloc::string::String, - /// offset: 104 - #[prost(string, tag = "180")] - pub design_data_relogin_desc: ::prost::alloc::string::String, - /// offset: 320 - #[prost(string, tag = "2044")] - pub player_return_questionnaire_b_url: ::prost::alloc::string::String, - /// offset: 486 - #[prost(bool, tag = "531")] - pub ecbfehfpofj: bool, - /// offset: 264 - #[prost(string, tag = "1189")] - pub third_privacy_in_game_url: ::prost::alloc::string::String, - /// offset: 40 - #[prost(string, tag = "1831")] - pub mbpeennebac: ::prost::alloc::string::String, - /// offset: 368 - #[prost(string, tag = "1018")] - pub rogue_magic_h5_url: ::prost::alloc::string::String, - /// offset: 484 - #[prost(bool, tag = "821")] - pub use_tcp: bool, - /// offset: 516 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 56 - #[prost(string, tag = "1846")] - pub ehimaoflgil: ::prost::alloc::string::String, - /// offset: 448 - #[prost(string, tag = "171")] + #[prost(uint32, tag = "13")] + pub port: u32, + #[prost(bool, tag = "164")] + pub unk3: bool, + #[prost(bool, tag = "298")] + pub unk4: bool, + #[prost(bool, tag = "644")] + pub unk5: bool, + #[prost(bool, tag = "783")] + pub unk6: bool, + #[prost(string, tag = "936")] + pub client_secret_key: ::prost::alloc::string::String, + #[prost(string, tag = "988")] + pub msg: ::prost::alloc::string::String, + #[prost(bool, tag = "1000")] + pub unk7: bool, + #[prost(bool, tag = "1141")] + pub unk8: bool, + #[prost(string, tag = "1421")] + pub asset_bundle_url_android: ::prost::alloc::string::String, + #[prost(bool, tag = "1750")] + pub unk9: bool, + #[prost(string, tag = "1813")] + pub ifix_url: ::prost::alloc::string::String, + #[prost(bool, tag = "1983")] + pub unk10: bool, + #[prost(string, tag = "652")] + pub ifix_version: ::prost::alloc::string::String, + #[prost(string, tag = "1150")] pub mdk_res_version: ::prost::alloc::string::String, - /// offset: 312 - #[prost(string, tag = "489")] - pub official_community_url: ::prost::alloc::string::String, - /// offset: 128 - #[prost(string, tag = "1987")] - pub rogue_tourn_build_ref_api_req_color_header_key: ::prost::alloc::string::String, - /// offset: 487 - #[prost(bool, tag = "1500")] - pub enable_watermark: bool, - /// offset: 464 - #[prost(uint32, tag = "9")] - pub asb_relogin_type: u32, - /// offset: 160 - #[prost(string, tag = "120")] - pub oagajgpajnn: ::prost::alloc::string::String, - /// offset: 472 - #[prost(int64, tag = "2")] - pub stop_begin_time: i64, - /// offset: 80 - #[prost(string, tag = "149")] - pub hmmohmdkiba: ::prost::alloc::string::String, - /// offset: 336 - #[prost(string, tag = "607")] - pub online_replay_download_url: ::prost::alloc::string::String, - /// offset: 24 - #[prost(string, tag = "613")] - pub cloud_game_url: ::prost::alloc::string::String, - /// offset: 296 - #[prost(string, tag = "249")] - pub rogue_tourn_build_ref_static_data_url_prefix: ::prost::alloc::string::String, - /// offset: 481 - #[prost(bool, tag = "674")] - pub event_tracking_open: bool, - /// offset: 112 - #[prost(string, tag = "1605")] - pub game_start_customer_service_url: ::prost::alloc::string::String, - /// offset: 483 - #[prost(bool, tag = "15")] - pub enable_version_update: bool, + #[prost(uint32, tag = "14")] + pub retcode: u32, } -/// Obf: BNJGKOABGAM +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(45)] +#[cmdid(27)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GateServerScNotify { - /// offset: 24 - #[prost(string, tag = "2")] - pub connpkcchje: ::prost::alloc::string::String, + /// offset: 16 + #[prost(string, tag = "14")] + pub eagamlmnifi: ::prost::alloc::string::String, } -/// Obf: JLNBIJMEGHP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(56)] +#[cmdid(6)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetGenderCsReq { /// offset: 24 - #[prost(enumeration = "Gender", tag = "13")] + #[prost(enumeration = "Gender", tag = "12")] pub gender: i32, } -/// Obf: EJIHGKHEHCG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(21)] +#[cmdid(88)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGenderScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub multi_path_type_info: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(enumeration = "MultiPathAvatarType", tag = "7")] - pub multi_path_type: i32, + #[prost(enumeration = "MultiPathAvatarType", tag = "5")] + pub cur_avatar_path: i32, /// offset: 36 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub cur_avatar_path_info_list: ::prost::alloc::vec::Vec, } -/// Obf: CJEDOFNADBG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(10)] +#[cmdid(3)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetPlayerInfoCsReq { /// offset: 36 - #[prost(bool, tag = "15")] - pub is_modify: bool, - /// offset: 32 #[prost(enumeration = "Gender", tag = "8")] pub gender: i32, - /// offset: 16 + /// offset: 24 #[prost(string, tag = "10")] pub nickname: ::prost::alloc::string::String, -} -/// Obf: PHCBJNKLNHM -#[derive(proto_derive::CmdID)] -#[cmdid(53)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetPlayerInfoScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub multi_path_type_info: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(int64, tag = "15")] - pub jendkbooaip: i64, - /// offset: 48 - #[prost(enumeration = "MultiPathAvatarType", tag = "12")] - pub multi_path_type: i32, - /// offset: 44 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 40 - #[prost(bool, tag = "6")] + #[prost(bool, tag = "11")] pub is_modify: bool, } -/// Obf: COMGKLPKIEO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(70)] +#[cmdid(55)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetPlayerInfoScRsp { + /// offset: 48 + #[prost(int64, tag = "4")] + pub chadhdhldfj: i64, + /// offset: 32 + #[prost(bool, tag = "2")] + pub is_modify: bool, + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub cur_avatar_path_info_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(enumeration = "MultiPathAvatarType", tag = "15")] + pub cur_avatar_path: i32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(33)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QueryProductInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aapnhpamdck { - /// offset: 44 - #[prost(uint32, tag = "13")] - pub iecaeabacdm: u32, - /// offset: 32 - #[prost(string, tag = "6")] - pub mpamhbfikfb: ::prost::alloc::string::String, - /// offset: 64 +pub struct Product { + /// offset: 60 #[prost(bool, tag = "15")] - pub fkfokhabejn: bool, + pub double_reward: bool, /// offset: 48 - #[prost(uint32, tag = "2")] - pub ioglpebjmdb: u32, - /// offset: 16 - #[prost(string, tag = "1")] - pub dbellihmajg: ::prost::alloc::string::String, - /// offset: 56 - #[prost(int64, tag = "8")] - pub end_time: i64, - /// offset: 40 - #[prost(enumeration = "ProductGiftType", tag = "11")] - pub dnajfmpcmll: i32, - /// offset: 68 - #[prost(uint32, tag = "9")] - pub gcbobamcalk: u32, - /// offset: 72 #[prost(int64, tag = "14")] + pub end_time: i64, + /// offset: 16 + #[prost(string, tag = "10")] + pub price_tier: ::prost::alloc::string::String, + /// offset: 24 + #[prost(string, tag = "6")] + pub product_id: ::prost::alloc::string::String, + /// offset: 56 + #[prost(uint32, tag = "8")] + pub hmgligkjlfk: u32, + /// offset: 72 + #[prost(uint32, tag = "7")] + pub hfhmlalbnkn: u32, + /// offset: 68 + #[prost(uint32, tag = "13")] + pub laamdopehmp: u32, + /// offset: 40 + #[prost(int64, tag = "3")] pub begin_time: i64, + /// offset: 64 + #[prost(enumeration = "ProductGiftType", tag = "1")] + pub gift_type: i32, } -/// Obf: JCAKDMECGGG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(41)] +#[cmdid(66)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct QueryProductInfoScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub pidhegpbcji: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint64, tag = "15")] - pub month_card_out_date_time: u64, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub odnfiaahkci: u32, - /// offset: 40 - #[prost(uint32, tag = "11")] + /// offset: 36 + #[prost(uint32, tag = "2")] pub retcode: u32, /// offset: 48 - #[prost(uint32, tag = "14")] - pub cmghdmpeako: u32, + #[prost(uint32, tag = "13")] + pub eejondopjcj: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub femdbmojeeh: u32, + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub product_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint64, tag = "15")] + pub month_card_out_date_time: u64, } -/// Obf: OIIINKHFBGB +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(72)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonthCardRewardNotify { - /// offset: 24 - #[prost(message, optional, tag = "12")] + /// offset: 16 + #[prost(message, optional, tag = "3")] pub reward: ::core::option::Option, } -/// Obf: FDOLNEFNGDO +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(12)] +#[cmdid(36)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientDownloadDataScNotify { /// offset: 24 - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "4")] pub download_data: ::core::option::Option, } -/// Obf: EJLLKLCOLDA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8)] +#[cmdid(23)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientObjDownloadDataScNotify { - /// offset: 24 - #[prost(message, optional, tag = "14")] + /// offset: 16 + #[prost(message, optional, tag = "15")] pub data: ::core::option::Option, } -/// Obf: UpdateFeatureSwitchScNotify +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6)] +#[cmdid(85)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateFeatureSwitchScNotify { /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub switch_info_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] + pub switch_info_list: ::prost::alloc::vec::Vec, } -/// Obf: LGCFMDKHHHG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(11)] +#[cmdid(97)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DailyRefreshNotify { /// offset: 24 - #[prost(uint32, tag = "11")] - pub gmfebdafdpj: u32, + #[prost(uint32, tag = "6")] + pub jfbmhcidljp: u32, } -/// Obf: NNDDOMBMKCI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1)] +#[cmdid(32)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetGameplayBirthdayCsReq { /// offset: 24 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub birthday: u32, } -/// Obf: POEHBJFDKEN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(96)] +#[cmdid(100)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetGameplayBirthdayScRsp { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub birthday: u32, /// offset: 24 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "8")] + pub birthday: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] pub retcode: u32, } -/// Obf: PICOEIMKLBN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(25)] +#[cmdid(34)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AceAntiCheaterCsReq { /// offset: 24 - #[prost(string, tag = "12")] - pub dgdlniefcpf: ::prost::alloc::string::String, + #[prost(string, tag = "1")] + pub mdhmonnfeoc: ::prost::alloc::string::String, /// offset: 32 - #[prost(uint32, tag = "9")] - pub glnkkfaipob: u32, + #[prost(uint32, tag = "10")] + pub afcjhdnanih: u32, } -/// Obf: GOODKNBLONB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(85)] +#[cmdid(68)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AceAntiCheaterScRsp { /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "13")] pub retcode: u32, } -/// Obf: NNKIDOFODLM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(40)] +#[cmdid(65)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RetcodeNotify { /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub jojppodomah: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub lpfhhdajopd: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub retcode: u32, } -/// Obf: KKPKCBHDAIG -#[derive(proto_derive::CmdID)] -#[cmdid(66)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerHeartBeatCsReq { - /// offset: 32 - #[prost(uint64, tag = "3")] - pub client_time_ms: u64, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub jbpemofnedg: u32, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub lkjmjgdebee: ::core::option::Option, -} -/// Obf: EPFPPENOIGH +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(39)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerHeartBeatScRsp { - /// offset: 40 - #[prost(uint64, tag = "13")] - pub server_time_ms: u64, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub download_data: ::core::option::Option, - /// offset: 48 +pub struct PlayerHeartBeatCsReq { + /// offset: 32 #[prost(uint64, tag = "1")] pub client_time_ms: u64, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub nmbbccginjn: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub mgmbogmdnji: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(79)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PlayerHeartBeatScRsp { /// offset: 32 - #[prost(uint32, tag = "11")] + #[prost(uint64, tag = "2")] + pub client_time_ms: u64, + /// offset: 48 + #[prost(uint64, tag = "4")] + pub server_time_ms: u64, + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub download_data: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "7")] pub retcode: u32, } -/// Obf: ONJIGDEOICM +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(95)] +#[cmdid(31)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FeatureSwitchClosedScNotify { /// offset: 24 - #[prost(enumeration = "FeatureSwitchType", tag = "3")] - pub kimnkfpfbdg: i32, + #[prost(enumeration = "FeatureSwitchType", tag = "14")] + pub ejmhlflfdip: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kpcimegklll { +pub struct SecretKeyInfo { + /// offset: 16 + #[prost(string, tag = "15")] + pub secret_key: ::prost::alloc::string::String, /// offset: 32 - #[prost(enumeration = "SecretKeyType", tag = "6")] + #[prost(enumeration = "SecretKeyType", tag = "14")] pub r#type: i32, - /// offset: 16 - #[prost(string, tag = "1")] - pub iaogfcmadlc: ::prost::alloc::string::String, } -/// Obf: NPKKENGFCBP -#[derive(proto_derive::CmdID)] -#[cmdid(88)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSecretKeyInfoCsReq { - /// offset: 24 - #[prost(bytes = "vec", tag = "8")] - pub cfhgmeadiph: ::prost::alloc::vec::Vec, -} -/// Obf: IKCBJPLKFHC -#[derive(proto_derive::CmdID)] -#[cmdid(30)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSecretKeyInfoScRsp { - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub ebceboebgeh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bytes = "vec", tag = "12")] - pub baohefhiden: ::prost::alloc::vec::Vec, -} -/// Obf: IJEADEFDMOI +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(18)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetSecretKeyInfoCsReq { + /// offset: 16 + #[prost(bytes = "vec", tag = "2")] + pub secret_req: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(80)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetSecretKeyInfoScRsp { + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub secret_info: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(bytes = "vec", tag = "13")] + pub secret_rsp: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(83)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerLoginFinishCsReq {} -/// Obf: OFALHALMBDC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(54)] +#[cmdid(53)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerLoginFinishScRsp { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "7")] pub retcode: u32, } -/// Obf: CKHCMHNEIOB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(89)] +#[cmdid(43)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerForceSyncGameStateFinishCsReq {} -/// Obf: IJEJBKCEHEC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7)] +#[cmdid(84)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PlayerForceSyncGameStateFinishScRsp { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "14")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct VideoKeyInfo { /// offset: 32 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "8")] pub id: u32, /// offset: 24 - #[prost(uint64, tag = "9")] + #[prost(uint64, tag = "2")] pub video_key: u64, } -/// Obf: IEDMBNKGGGN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(61)] +#[cmdid(96)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetVideoVersionKeyCsReq {} -/// Obf: CEENOIAPFNM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(33)] +#[cmdid(48)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetVideoVersionKeyScRsp { - /// offset: 40 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "12")] + /// offset: 16 + #[prost(message, repeated, tag = "8")] pub video_key_info_list: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub apmbnedfbpa: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub activity_video_key_info_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nhjghokbdpk { +pub struct Eefhlaanhig { /// offset: 32 - #[prost(uint32, tag = "9")] - pub iipdefcedmc: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub nciadbakmae: u32, - /// offset: 28 #[prost(uint32, tag = "1")] - pub jdakkofdgep: u32, + pub mifghmmdkmd: u32, /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] + pub paehbejmgag: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] pub content_id: u32, -} -/// Obf: FICCMNIFEBG -#[derive(proto_derive::CmdID)] -#[cmdid(76)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetRedPointStatusScNotify { - /// offset: 44 - #[prost(uint32, tag = "9")] - pub jdakkofdgep: u32, /// offset: 36 #[prost(uint32, tag = "11")] - pub uid: u32, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub njehhffdghk: ::prost::alloc::vec::Vec, + pub efkgmhefobg: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(86)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetRedPointStatusScNotify { + /// offset: 36 + #[prost(uint32, tag = "3")] + pub mifghmmdkmd: u32, + /// offset: 44 + #[prost(uint32, tag = "11")] + pub paehbejmgag: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub mhffkfghaom: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "7")] - pub iipdefcedmc: u32, + #[prost(uint32, tag = "13")] + pub uid: u32, /// offset: 40 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "2")] pub content_id: u32, } -/// Obf: GCINFCFLOJD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(64)] +#[cmdid(40)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReserveStaminaExchangeCsReq { /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "9")] pub num: u32, } -/// Obf: JGFEFONMBKD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(46)] +#[cmdid(59)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReserveStaminaExchangeScRsp { /// offset: 28 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub num: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub retcode: u32, } -/// Obf: KIHFDKLMCEM +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(58)] +#[cmdid(78)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StaminaInfoScNotify { - /// offset: 24 - #[prost(int64, tag = "6")] - pub next_recover_time: i64, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub stamina: u32, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub reserve_stamina: u32, /// offset: 32 + #[prost(int64, tag = "4")] + pub next_recover_time: i64, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub reserve_stamina: u32, + /// offset: 40 #[prost(int64, tag = "12")] - pub dpimhemjkoe: i64, + pub keenpmobiah: i64, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub stamina: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Onmlpjkagcg { +pub struct UpdatePlayerSetting { #[prost( - oneof = "onmlpjkagcg::Gcmppoicpod", - tags = "9, 11, 12, 15, 7, 2, 10, 6, 5, 8, 1051, 1143, 355, 606" + oneof = "update_player_setting::Nbgnmdmglfg", + tags = "11, 15, 9, 7, 10, 4, 8, 2, 5, 13, 605, 558, 708, 2030" )] - pub gcmppoicpod: ::core::option::Option, + pub nbgnmdmglfg: ::core::option::Option, } -/// Nested message and enum types in `ONMLPJKAGCG`. -pub mod onmlpjkagcg { +/// Nested message and enum types in `UpdatePlayerSetting`. +pub mod update_player_setting { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Gcmppoicpod { - /// offset: 24 - #[prost(bool, tag = "9")] - Kapdimgjlnf(bool), - /// offset: 24 + pub enum Nbgnmdmglfg { + /// offset: 16 #[prost(bool, tag = "11")] - Mmmnjchemfn(bool), - /// offset: 24 - #[prost(bool, tag = "12")] - Nkekibnjmpa(bool), - /// offset: 24 + Dklkdhplpoa(bool), + /// offset: 16 #[prost(bool, tag = "15")] - Pbkbglhhkpe(bool), - /// offset: 24 + Nnliadpgmam(bool), + /// offset: 16 + #[prost(bool, tag = "9")] + Faakmjjfgoa(bool), + /// offset: 16 #[prost(bool, tag = "7")] - Njfmiljofok(bool), - /// offset: 24 - #[prost(bool, tag = "2")] - Aicnfaobcpi(bool), - /// offset: 24 + Lkhffohiedb(bool), + /// offset: 16 #[prost(bool, tag = "10")] - Kjncckhjfhe(bool), - /// offset: 24 - #[prost(bool, tag = "6")] - Aponeidmphl(bool), - /// offset: 24 + DisplayDiary(bool), + /// offset: 16 + #[prost(bool, tag = "4")] + Ifmcmacgpgk(bool), + /// offset: 16 + #[prost(bool, tag = "8")] + Laopcfdchei(bool), + /// offset: 16 + #[prost(bool, tag = "2")] + Dgnmjambilo(bool), + /// offset: 16 #[prost(bool, tag = "5")] - Gmjanojmkce(bool), - /// offset: 24 - #[prost(message, tag = "8")] - Ghkcmdnkopn(super::Ogfiodpilel), - /// offset: 24 - #[prost(bool, tag = "1051")] - Mccjlbemkcn(bool), - /// offset: 24 - #[prost(bool, tag = "1143")] - Oegifodeakk(bool), - /// offset: 24 - #[prost(bool, tag = "355")] - Gpipjlcliih(bool), - /// offset: 24 - #[prost(bool, tag = "606")] - Jnaglcdkkej(bool), + Ijljdmmchij(bool), + /// offset: 16 + #[prost(message, tag = "13")] + Djocmchfpbm(super::Joiloejckce), + /// offset: 16 + #[prost(bool, tag = "605")] + Oceddkmfkld(bool), + /// offset: 16 + #[prost(bool, tag = "558")] + Dfageaaaapa(bool), + /// offset: 16 + #[prost(bool, tag = "708")] + Ambbicfkgdh(bool), + /// offset: 16 + #[prost(bool, tag = "2030")] + Efbogadmkbp(bool), } } -/// Obf: IBEPKJBGGLD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(27)] +#[cmdid(22)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdatePlayerSettingCsReq { - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub klkpmljkmjp: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub player_setting: ::core::option::Option, } -/// Obf: IJBPIFMHMHN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(31)] +#[cmdid(99)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdatePlayerSettingScRsp { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub klkpmljkmjp: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub player_setting: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub retcode: u32, } -/// Obf: BIJPBJMIAHD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(24)] +#[cmdid(90)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientObjUploadCsReq { - /// offset: 16 - #[prost(bytes = "vec", tag = "5")] - pub lkjmjgdebee: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub jbpemofnedg: u32, /// offset: 36 - #[prost(enumeration = "Jidiecghkgk", tag = "4")] - pub lghokgabgck: i32, + #[prost(enumeration = "Ejlbonkelao", tag = "3")] + pub modifier_content_type: i32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub mgmbogmdnji: u32, + /// offset: 16 + #[prost(bytes = "vec", tag = "8")] + pub nmbbccginjn: ::prost::alloc::vec::Vec, } -/// Obf: KEAENHHGMEF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(67)] +#[cmdid(44)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClientObjUploadScRsp { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub data: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "14")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Menpbggogmc { +pub struct Jcocfigaoim { /// offset: 16 - #[prost(string, repeated, tag = "13")] - pub gkhfbfknhob: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(string, repeated, tag = "11")] + pub plgjghhkgnh: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ncbimlpodon { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub pelmgopehkn: ::core::option::Option, +pub struct Cgfimbnlohp { /// offset: 32 - #[prost(bool, tag = "3")] - pub iahopfnpfln: bool, + #[prost(bool, tag = "7")] + pub mgdpchpkifn: bool, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub black_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cjakibdimmj { - #[prost(oneof = "cjakibdimmj::Pmfbbcebacd", tags = "800, 1565, 1518")] - pub pmfbbcebacd: ::core::option::Option, +pub struct Gfcmplgmaof { + #[prost(oneof = "gfcmplgmaof::Efmkejmnfgj", tags = "1585, 44, 1576")] + pub efmkejmnfgj: ::core::option::Option, } -/// Nested message and enum types in `CJAKIBDIMMJ`. -pub mod cjakibdimmj { +/// Nested message and enum types in `GFCMPLGMAOF`. +pub mod gfcmplgmaof { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Pmfbbcebacd { - /// offset: 16 - #[prost(bool, tag = "800")] - Iahopfnpfln(bool), - /// offset: 16 - #[prost(message, tag = "1565")] - Amaljfokcba(super::Menpbggogmc), - /// offset: 16 - #[prost(message, tag = "1518")] - Oecbelgdlfp(super::Menpbggogmc), + pub enum Efmkejmnfgj { + /// offset: 24 + #[prost(bool, tag = "1585")] + Mgdpchpkifn(bool), + /// offset: 24 + #[prost(message, tag = "44")] + Eommmmldolo(super::Jcocfigaoim), + /// offset: 24 + #[prost(message, tag = "1576")] + Nhefpnmeiej(super::Jcocfigaoim), } } -/// Obf: FDFPMJAPMIB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(93)] +#[cmdid(4)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdatePsnSettingsInfoCsReq { - #[prost(oneof = "update_psn_settings_info_cs_req::Dfopiihejfm", tags = "1499, 2039")] - pub dfopiihejfm: ::core::option::Option< - update_psn_settings_info_cs_req::Dfopiihejfm, + #[prost(oneof = "update_psn_settings_info_cs_req::Kdmlfbajfpi", tags = "856, 1532")] + pub kdmlfbajfpi: ::core::option::Option< + update_psn_settings_info_cs_req::Kdmlfbajfpi, >, } /// Nested message and enum types in `UpdatePsnSettingsInfoCsReq`. pub mod update_psn_settings_info_cs_req { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Dfopiihejfm { - /// offset: 24 - #[prost(message, tag = "1499")] - Doocplcldpd(super::Ncbimlpodon), - /// offset: 24 - #[prost(message, tag = "2039")] - Inhldidjgha(super::Cjakibdimmj), + pub enum Kdmlfbajfpi { + /// offset: 16 + #[prost(message, tag = "856")] + Pidoeldkgid(super::Cgfimbnlohp), + /// offset: 16 + #[prost(message, tag = "1532")] + Ibmdjghehna(super::Gfcmplgmaof), } } -/// Obf: GCMDOHJGGJB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(84)] +#[cmdid(24)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdatePsnSettingsInfoScRsp { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub retcode: u32, } -/// Obf: FHNGPBNFBAE #[derive(proto_derive::CmdID)] -#[cmdid(28)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetGameStateServiceConfigCsReq {} -/// Obf: BAPHALPCPMJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(26)] +#[cmdid(5)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetGameStateServiceConfigScRsp { + /// offset: 16 + #[prost(string, repeated, tag = "10")] + pub fggleklmbio: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + /// offset: 40 + #[prost(string, repeated, tag = "3")] + pub ononbodllpk: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, /// offset: 48 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "9")] pub retcode: u32, /// offset: 24 - #[prost(string, repeated, tag = "7")] - pub ledkmdollbb: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - /// offset: 32 - #[prost(string, repeated, tag = "9")] - pub fibijgmkdpp: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - /// offset: 40 - #[prost(string, repeated, tag = "2")] - pub kaojcobeeon: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(string, repeated, tag = "13")] + pub efpagpgdili: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, } -/// Obf: FCHCAHKGIFJ #[derive(proto_derive::CmdID)] -#[cmdid(47)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UseReserveAndFuelExchangeStaminaCsReq { /// offset: 28 - #[prost(uint32, tag = "3")] - pub bkfoopbjdmg: u32, + #[prost(uint32, tag = "1")] + pub lookllplmgk: u32, /// offset: 24 - #[prost(uint32, tag = "11")] - pub gnpmjmiimcp: u32, + #[prost(uint32, tag = "14")] + pub mkjjfdcegfg: u32, } -/// Obf: JINCFGPJAOC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(20)] +#[cmdid(74)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UseReserveAndFuelExchangeStaminaScRsp { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "6")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HeadIcon { +pub struct HeadIconData { /// offset: 24 #[prost(uint32, tag = "11")] pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DisplayAvatar { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub pos: u32, +pub struct DisplayAvatarData { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] + pub pos: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DisplayAvatarVec { /// offset: 32 - #[prost(bool, tag = "13")] + #[prost(bool, tag = "10")] pub is_display: bool, /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub display_avatar_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub display_avatar_list: ::prost::alloc::vec::Vec, } -/// Obf: JMAOHPPGHLC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2899)] +#[cmdid(2847)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetPlayerBoardDataCsReq {} -/// Obf: PFBICOAEIGP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2823)] +#[cmdid(2809)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetPlayerBoardDataScRsp { - /// offset: 64 - #[prost(message, optional, tag = "3")] - pub lolnmadmpkl: ::core::option::Option, /// offset: 16 - #[prost(message, optional, tag = "10")] - pub display_avatar_vec: ::core::option::Option, - /// offset: 76 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub unlocked_head_icon_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(string, tag = "12")] + #[prost(string, tag = "4")] pub signature: ::prost::alloc::string::String, + /// offset: 32 + #[prost(uint32, repeated, tag = "12")] + pub unlocked_personal_card_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, optional, tag = "11")] + pub display_avatar_vec: ::core::option::Option, + /// offset: 48 + #[prost(uint32, repeated, tag = "15")] + pub assist_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 72 #[prost(uint32, tag = "13")] - pub current_head_icon_id: u32, + pub current_personal_card_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub head_frame_info: ::core::option::Option, /// offset: 80 - #[prost(uint32, tag = "5")] - pub oldmjonbjom: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "8")] - pub kknjhenmgpk: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "6")] - pub display_support_avatar_vec: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "2")] + pub current_head_icon_id: u32, + /// offset: 76 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 64 + #[prost(message, repeated, tag = "3")] + pub unlocked_head_icon_list: ::prost::alloc::vec::Vec, } -/// Obf: EONDNBHOKPE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2898)] +#[cmdid(2838)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetHeadIconCsReq { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "6")] pub id: u32, } -/// Obf: IFOFBJAKGEK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2865)] +#[cmdid(2817)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetHeadIconScRsp { + /// offset: 28 + #[prost(uint32, tag = "4")] + pub current_head_icon_id: u32, /// offset: 24 #[prost(uint32, tag = "3")] pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "9")] - pub current_head_icon_id: u32, } -/// Obf: EFKAOICFGCL -#[derive(proto_derive::CmdID)] -#[cmdid(2815)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetPersonalCardCsReq { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub id: u32, -} -/// Obf: CAFHOLFAOGK -#[derive(proto_derive::CmdID)] -#[cmdid(2892)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetPersonalCardScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub oldmjonbjom: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: FEDJLKBEPMM -#[derive(proto_derive::CmdID)] -#[cmdid(2883)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetDisplayAvatarCsReq { - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub display_avatar_list: ::prost::alloc::vec::Vec, -} -/// Obf: HDKMPCKFAAB -#[derive(proto_derive::CmdID)] -#[cmdid(2886)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetDisplayAvatarScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub display_avatar_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, -} -/// Obf: DHGMEEGJFOE -#[derive(proto_derive::CmdID)] -#[cmdid(2894)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetIsDisplayAvatarInfoCsReq { - /// offset: 24 - #[prost(bool, tag = "7")] - pub is_display: bool, -} -/// Obf: JEADFNNMIGN +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(2852)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetIsDisplayAvatarInfoScRsp { - /// offset: 28 +pub struct SetPersonalCardCsReq { + /// offset: 24 #[prost(uint32, tag = "14")] + pub id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2850)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetPersonalCardScRsp { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub current_personal_card_id: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2851)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetDisplayAvatarCsReq { + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub display_avatar_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(2811)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetDisplayAvatarScRsp { + /// offset: 32 + #[prost(uint32, tag = "5")] pub retcode: u32, /// offset: 24 - #[prost(bool, tag = "2")] + #[prost(message, repeated, tag = "3")] + pub display_avatar_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2889)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetIsDisplayAvatarInfoCsReq { + /// offset: 24 + #[prost(bool, tag = "5")] pub is_display: bool, } -/// Obf: AIKPANALJHL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2844)] +#[cmdid(2820)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetIsDisplayAvatarInfoScRsp { + /// offset: 28 + #[prost(bool, tag = "15")] + pub is_display: bool, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2891)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetSignatureCsReq { /// offset: 16 - #[prost(string, tag = "1")] - pub signature: ::prost::alloc::string::String, -} -/// Obf: JKMKJFGLBPA -#[derive(proto_derive::CmdID)] -#[cmdid(2881)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetSignatureScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 24 #[prost(string, tag = "10")] pub signature: ::prost::alloc::string::String, } -/// Obf: DHJGNGBKOAG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2869)] +#[cmdid(2861)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SetSignatureScRsp { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 24 + #[prost(string, tag = "7")] + pub signature: ::prost::alloc::string::String, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2845)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetAssistAvatarCsReq { - /// offset: 16 + /// offset: 24 #[prost(uint32, repeated, tag = "9")] pub avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub avatar_id: u32, } -/// Obf: GOCFJNOLIPB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2857)] +#[cmdid(2876)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetAssistAvatarScRsp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "13")] pub avatar_id: u32, /// offset: 24 #[prost(uint32, repeated, tag = "4")] pub avatar_id_list: ::prost::alloc::vec::Vec, } -/// Obf: GJGCNJMEMAP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4599)] +#[cmdid(4547)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlayerReturnStartScNotify { +pub struct Dfhmnekalkp { /// offset: 24 #[prost(uint32, tag = "14")] - pub nchiekedhce: u32, + pub jponeagfnkf: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bjjemphdnbl { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub iifomgofmdl: u32, +pub struct Dmcbafmofaj { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub bcamjpipcdo: u32, /// offset: 28 - #[prost(enumeration = "Fcekmeohllg", tag = "2")] - pub mpgpgfkbmhg: i32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub opeedjihjop: u32, -} -/// Obf: IKIEKHJENFO -#[derive(proto_derive::CmdID)] -#[cmdid(4523)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerReturnSignCsReq { - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub hfcfhbaoebd: ::prost::alloc::vec::Vec, -} -/// Obf: PAFOHBIMNJK -#[derive(proto_derive::CmdID)] -#[cmdid(4598)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerReturnSignScRsp { - /// offset: 32 - #[prost(message, repeated, tag = "2")] - pub hfcfhbaoebd: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub ipflhcjiebm: ::prost::alloc::vec::Vec, -} -/// Obf: GNCEIPBBGHG -#[derive(proto_derive::CmdID)] -#[cmdid(4565)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlayerReturnPointChangeScNotify { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub mamhojmfjof: u32, -} -/// Obf: LKDDLABFIBC -#[derive(proto_derive::CmdID)] -#[cmdid(4583)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlayerReturnTakePointRewardCsReq { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub cpnimljnmmf: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub iifomgofmdl: u32, -} -/// Obf: FJHNMBNNIBK -#[derive(proto_derive::CmdID)] -#[cmdid(4586)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerReturnTakePointRewardScRsp { - /// offset: 40 - #[prost(uint32, tag = "9")] - pub iifomgofmdl: u32, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub cfidbmmijhg: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub cpnimljnmmf: u32, -} -/// Obf: ODLPHAPJDMH -#[derive(proto_derive::CmdID)] -#[cmdid(4594)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlayerReturnTakeRewardCsReq {} -/// Obf: NEIOAACEMJA -#[derive(proto_derive::CmdID)] -#[cmdid(4552)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerReturnTakeRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub ipflhcjiebm: ::core::option::Option, -} -/// Obf: MNOOMKEHNOG -#[derive(proto_derive::CmdID)] -#[cmdid(4519)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlayerReturnInfoQueryCsReq { - /// offset: 24 #[prost(uint32, tag = "14")] - pub cehfiilmjkm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Afbneibijnd { - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub caimhcaacfg: ::prost::alloc::vec::Vec, - /// offset: 84 - #[prost(uint32, tag = "14")] - pub world_level: u32, + pub cojblmmmepi: u32, /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub jfcfkeggief: ::prost::alloc::vec::Vec, - /// offset: 100 - #[prost(bool, tag = "9")] - pub is_taken_reward: bool, - /// offset: 96 - #[prost(enumeration = "Nobpmmnfenj", tag = "12")] - pub status: i32, - /// offset: 102 - #[prost(bool, tag = "1468")] - pub acmkhchioea: bool, + #[prost(enumeration = "Midmankmolm", tag = "5")] + pub authkey_ver: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4509)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cdlhhednjpo { + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub hcedjgilmnd: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4538)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bjjlcbbdhof { /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub elbkpgbelcm: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "8")] - pub flbinbcienh: ::prost::alloc::vec::Vec, - /// offset: 92 + #[prost(message, repeated, tag = "14")] + pub hcedjgilmnd: ::prost::alloc::vec::Vec, + /// offset: 40 #[prost(uint32, tag = "4")] - pub bgafghipoje: u32, - /// offset: 56 + pub retcode: u32, + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub njfpiajminm: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(4517)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eoenaeachig { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub bmjiofkgfjp: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4551)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ifngoohfdnf { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub cojblmmmepi: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub nboelibdcco: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4511)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ngdgknlhdbb { + /// offset: 36 + #[prost(uint32, tag = "6")] + pub nboelibdcco: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub cojblmmmepi: u32, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub mibjoegiohh: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4589)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bciedhokljn {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4520)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ipalimdicel { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub njfpiajminm: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4595)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jllfeeobfib { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub inpkcdgkopb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fdemnknkope { + /// offset: 72 + #[prost(bool, tag = "8")] + pub is_taken_reward: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub mpjoknlodcn: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "1773")] + pub lcoiamaijgj: u32, + /// offset: 88 + #[prost(uint32, tag = "12")] + pub efmfkgnlmjk: u32, + /// offset: 74 + #[prost(bool, tag = "1176")] + pub imlhdgckmoo: bool, + /// offset: 60 + #[prost(uint32, tag = "1")] + pub bmjiofkgfjp: u32, + /// offset: 80 #[prost(int64, tag = "2")] pub finish_time: i64, - /// offset: 80 - #[prost(uint32, tag = "1")] - pub ilcfojcdnhi: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "15")] + pub mcdlobldefn: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "13")] + pub mnnepildcjm: u32, + /// offset: 92 + #[prost(enumeration = "Aljfgadejej", tag = "6")] + pub status: i32, + /// offset: 96 + #[prost(int64, tag = "9")] + pub dkhoeiijhip: i64, + /// offset: 64 + #[prost(uint32, tag = "14")] + pub world_level: u32, + /// offset: 73 + #[prost(bool, tag = "10")] + pub ajcmejeapbn: bool, + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub plkjmklkfie: ::prost::alloc::vec::Vec, /// offset: 76 #[prost(uint32, tag = "3")] - pub mamhojmfjof: u32, - /// offset: 101 - #[prost(bool, tag = "7")] - pub fjndpcfnflo: bool, - /// offset: 72 - #[prost(uint32, tag = "10")] - pub ahnfmdnejnl: u32, - /// offset: 64 - #[prost(int64, tag = "5")] - pub coifhfpegph: i64, - /// offset: 88 - #[prost(uint32, tag = "1633")] - pub kmilgeppeob: u32, + pub jabfmodooof: u32, + /// offset: 48 + #[prost(message, repeated, tag = "7")] + pub kemigneahpk: ::prost::alloc::vec::Vec, } -/// Obf: APNMNGNPFAC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4544)] +#[cmdid(4591)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerReturnInfoQueryScRsp { +pub struct Pegnhmlbkjk { /// offset: 36 #[prost(uint32, tag = "8")] - pub gmfidnohgco: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub hgcbieikclj: u32, /// offset: 16 - #[prost(message, optional, tag = "12")] - pub pfeidpolokm: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub ghdddjhllem: ::core::option::Option, } -/// Obf: JECKOPFFLAA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4581)] +#[cmdid(4561)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerReturnForceFinishScNotify { +pub struct Adlcnmfdmhh { /// offset: 24 - #[prost(message, optional, tag = "10")] - pub pfeidpolokm: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub ghdddjhllem: ::core::option::Option, } -/// Obf: AFLMIOMNECM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4569)] +#[cmdid(4545)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlayerReturnTakeRelicCsReq { +pub struct Pbomomdnpnc { /// offset: 24 #[prost(uint32, tag = "2")] pub avatar_id: u32, } -/// Obf: ECLOMGJFDIL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4557)] +#[cmdid(4576)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct PlayerReturnTakeRelicScRsp { +pub struct Fndiillenpf { /// offset: 36 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub avatar_id: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, /// offset: 24 - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "6")] pub item_list: ::core::option::Option, } -/// Obf: HHIIENJOKFF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4515)] +#[cmdid(4552)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PlayerReturnTakeExtraHcoinScNotify { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub ifgknhkpicf: u32, - /// offset: 28 - #[prost(bool, tag = "6")] - pub npmgpchilbo: bool, +pub struct Hmhoklipden { /// offset: 24 - #[prost(uint32, tag = "4")] - pub gkibamfdobc: u32, -} -/// Obf: CMGDJIOMCLG -#[derive(proto_derive::CmdID)] -#[cmdid(1199)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishPlotCsReq { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub cldajdjhoii: u32, -} -/// Obf: CHCNMFDIPFB -#[derive(proto_derive::CmdID)] -#[cmdid(1123)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishPlotScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub cldajdjhoii: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kaoahkaohfi { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub basic_info: ::core::option::Option, - /// offset: 40 - #[prost(enumeration = "PunkLordAttackerStatus", tag = "9")] - pub ekkjlaokiji: i32, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub cojkeifjnek: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub dhlpkmihdnm: ::core::option::Option, -} -/// Obf: FAMOHHOHPNL -#[derive(proto_derive::CmdID)] -#[cmdid(3299)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPunkLordMonsterDataCsReq {} -/// Obf: DPGJJNGCGPK -#[derive(proto_derive::CmdID)] -#[cmdid(3223)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPunkLordMonsterDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub fijnjgfabjd: ::prost::alloc::vec::Vec, -} -/// Obf: EAGDPCPJOEM -#[derive(proto_derive::CmdID)] -#[cmdid(3298)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartPunkLordRaidCsReq { - /// offset: 32 #[prost(bool, tag = "3")] - pub clommfkjpmm: bool, + pub mjpckiblddl: bool, /// offset: 28 - #[prost(uint32, tag = "6")] - pub uid: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub monster_id: u32, -} -/// Obf: CDKHFIPEEIA -#[derive(proto_derive::CmdID)] -#[cmdid(3265)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartPunkLordRaidScRsp { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub scene: ::core::option::Option, - /// offset: 40 - #[prost(uint32, repeated, tag = "7")] - pub dmilcfhlihp: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "5")] - pub dpmkammiolb: ::core::option::Option, - /// offset: 52 - #[prost(bool, tag = "15")] - pub clommfkjpmm: bool, - /// offset: 56 - #[prost(int64, tag = "8")] - pub agegdmgnpdk: i64, - /// offset: 48 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: IAGCOPHLMFB -#[derive(proto_derive::CmdID)] -#[cmdid(3283)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SharePunkLordMonsterCsReq { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub uid: u32, - /// offset: 28 - #[prost(enumeration = "PunkLordShareType", tag = "4")] - pub share_type: i32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub monster_id: u32, -} -/// Obf: ACFAMDBMAOI -#[derive(proto_derive::CmdID)] -#[cmdid(3286)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SharePunkLordMonsterScRsp { - /// offset: 32 - #[prost(enumeration = "PunkLordShareType", tag = "12")] - pub share_type: i32, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub monster_id: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub uid: u32, -} -/// Obf: GCCFGDENNNK -#[derive(proto_derive::CmdID)] -#[cmdid(3294)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SummonPunkLordMonsterCsReq {} -/// Obf: CFJJEOFIFEB -#[derive(proto_derive::CmdID)] -#[cmdid(3252)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SummonPunkLordMonsterScRsp { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub dpmkammiolb: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: GHMPPIJABNL -#[derive(proto_derive::CmdID)] -#[cmdid(3257)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakePunkLordPointRewardCsReq { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub level: u32, - /// offset: 24 - #[prost(bool, tag = "15")] - pub mdhjkkbnmcf: bool, -} -/// Obf: GDFCPPHAGDA -#[derive(proto_derive::CmdID)] -#[cmdid(3215)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakePunkLordPointRewardScRsp { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub level: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - /// offset: 40 - #[prost(bool, tag = "5")] - pub mdhjkkbnmcf: bool, -} -/// Obf: IKCKFGPOCIB -#[derive(proto_derive::CmdID)] -#[cmdid(3292)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PunkLordMonsterInfoScNotify { - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub dmilcfhlihp: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub dhlpkmihdnm: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "12")] - pub basic_info: ::core::option::Option, - /// offset: 48 - #[prost(enumeration = "PunkLordMonsterInfoNotifyReason", tag = "4")] - pub reason: i32, -} -/// Obf: HPOFEOILJCP -#[derive(proto_derive::CmdID)] -#[cmdid(3237)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPunkLordDataCsReq {} -/// Obf: FNCGHMIMJJK -#[derive(proto_derive::CmdID)] -#[cmdid(3268)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPunkLordDataScRsp { - /// offset: 56 - #[prost(uint32, tag = "15")] - pub iadcohodgjn: u32, - /// offset: 40 - #[prost(int64, tag = "7")] - pub bedjdeancoj: i64, - /// offset: 60 #[prost(uint32, tag = "5")] - pub bdpbdgbkdoo: u32, + pub khcfdahachm: u32, /// offset: 32 - #[prost(uint32, tag = "6")] - pub ppnkpnbiien: u32, - /// offset: 52 - #[prost(uint32, tag = "13")] - pub gnlmkkhaekm: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 48 #[prost(uint32, tag = "4")] - pub gbjodjcolga: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub eahbikfallf: ::prost::alloc::vec::Vec, + pub gaindeejjdi: u32, } -/// Obf: GEMELJPBKDL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3280)] +#[cmdid(1147)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PunkLordRaidTimeOutScNotify { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub dpmkammiolb: ::core::option::Option, -} -/// Obf: MIONOBMHAJA -#[derive(proto_derive::CmdID)] -#[cmdid(3229)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PunkLordBattleResultScNotify { - /// offset: 44 - #[prost(uint32, tag = "11")] - pub ncacoccjnld: u32, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub ahjfpngdbdo: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub dpmkammiolb: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub pgofpnlapoe: u32, +pub struct Hficgfpkiji { /// offset: 24 - #[prost(message, optional, tag = "15")] - pub dhlpkmihdnm: ::core::option::Option, + #[prost(uint32, tag = "1")] + pub hokmjnaihpd: u32, } +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(1109)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mdjgoockcmj { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub monster_id: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub world_level: u32, +pub struct Pjmobpliceo { /// offset: 24 #[prost(uint32, tag = "2")] - pub config_id: u32, - /// offset: 40 - #[prost(bool, tag = "11")] - pub ppboceckcah: bool, + pub hokmjnaihpd: u32, /// offset: 28 - #[prost(uint32, tag = "14")] - pub lkkjeilkpni: u32, - /// offset: 48 - #[prost(int64, tag = "1")] - pub sent_time: i64, + #[prost(uint32, tag = "15")] + pub retcode: u32, } -/// Obf: IJJHFBPKBME +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cfmajojidgo { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub mfpglgpipip: ::core::option::Option, + /// offset: 40 + #[prost(enumeration = "PunkLordAttackerStatus", tag = "7")] + pub jieeihmipfk: i32, + /// offset: 32 + #[prost(message, optional, tag = "13")] + pub basic_info: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub amibcpoclnl: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3247)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nknilcnpogj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3209)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gkejeijhobm { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub eppalcpbadf: ::prost::alloc::vec::Vec, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(3238)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetKilledPunkLordMonsterDataCsReq {} -/// Obf: PPFKEAJEFLA -#[derive(proto_derive::CmdID)] -#[cmdid(3203)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetKilledPunkLordMonsterDataScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub ddcemdgedio: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub oakkccgaekk: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: HMINDKKLBIG -#[derive(proto_derive::CmdID)] -#[cmdid(3259)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PunkLordMonsterKilledNotify { - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub aiecobkeigb: ::core::option::Option, -} -/// Obf: LLDDOHBGEHB -#[derive(proto_derive::CmdID)] -#[cmdid(3222)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeKilledPunkLordMonsterScoreCsReq { +pub struct Ngcknkilnkh { /// offset: 32 - #[prost(bool, tag = "1")] - pub kfejgfnonip: bool, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub pkcpjjnoaln: ::core::option::Option, -} -/// Obf: KOJNFJLOEDG -#[derive(proto_derive::CmdID)] -#[cmdid(3297)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeKilledPunkLordMonsterScoreScRsp { - /// offset: 40 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 36 - #[prost(bool, tag = "14")] - pub kfejgfnonip: bool, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub jeahdcgkbbb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub score: u32, -} -/// Obf: BAANOGIKBGK -#[derive(proto_derive::CmdID)] -#[cmdid(3255)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PunkLordDataChangeNotify { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub gbjodjcolga: u32, + #[prost(bool, tag = "13")] + pub mhcpganpmmb: bool, /// offset: 24 #[prost(uint32, tag = "4")] - pub iadcohodgjn: u32, + pub uid: u32, /// offset: 28 - #[prost(uint32, tag = "7")] - pub bdpbdgbkdoo: u32, + #[prost(uint32, tag = "2")] + pub monster_id: u32, } -/// Obf: ILHGMAICAFE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3250)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPunkLordBattleRecordCsReq { - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub pkcpjjnoaln: ::core::option::Option, -} -/// Obf: JMFGECMDHBB -#[derive(proto_derive::CmdID)] -#[cmdid(3260)] +#[cmdid(3217)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPunkLordBattleRecordScRsp { +pub struct Dakjpchpdne { + /// offset: 40 + #[prost(uint32, repeated, tag = "6")] + pub jabfgikbhoo: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub okobgjhjjoa: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "3")] + pub baeljfohjbc: ::core::option::Option, + /// offset: 60 + #[prost(bool, tag = "14")] + pub mhcpganpmmb: bool, /// offset: 48 - #[prost(uint32, tag = "7")] + #[prost(int64, tag = "12")] + pub mnlienaoafe: i64, + /// offset: 56 + #[prost(uint32, tag = "15")] pub retcode: u32, /// offset: 32 - #[prost(message, optional, tag = "2")] - pub pkcpjjnoaln: ::core::option::Option, - /// offset: 40 - #[prost(message, repeated, tag = "8")] - pub battle_record_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "11")] + pub scene: ::core::option::Option, } -/// Obf: ACPKEIAOGEG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(999)] +#[cmdid(3251)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fpllndgmcel { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub uid: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub monster_id: u32, + /// offset: 24 + #[prost(enumeration = "PunkLordShareType", tag = "4")] + pub share_type: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3211)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lkndaionpdk { + /// offset: 32 + #[prost(enumeration = "PunkLordShareType", tag = "15")] + pub share_type: i32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub monster_id: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub uid: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3289)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nmnbbakgbco {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3220)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nfhonpnfgfc { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub baeljfohjbc: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3276)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dplfmidinfm { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub level: u32, + /// offset: 24 + #[prost(bool, tag = "15")] + pub alephclnhfi: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3252)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dmbfmikofjp { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub level: u32, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 36 + #[prost(bool, tag = "6")] + pub alephclnhfi: bool, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3250)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hdfnbaecdli { + /// offset: 40 + #[prost(uint32, repeated, tag = "6")] + pub jabfgikbhoo: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub basic_info: ::core::option::Option, + /// offset: 48 + #[prost(enumeration = "PunkLordMonsterInfoNotifyReason", tag = "13")] + pub reason: i32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub mfpglgpipip: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3281)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dcpmedcnfni {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3293)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ncjnacmogdg { + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub lfnlbcflmek: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "6")] + pub emofglcajbf: u32, + /// offset: 52 + #[prost(uint32, tag = "3")] + pub cemmpakkmfe: u32, + /// offset: 56 + #[prost(uint32, tag = "10")] + pub mmnbcjefgig: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub eggnejdobak: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub pbogdjjngll: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 40 + #[prost(int64, tag = "14")] + pub iiielolkfgh: i64, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3210)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ofdjckncnjj { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub baeljfohjbc: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3298)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ghblgnmmckj { + /// offset: 48 + #[prost(uint32, tag = "11")] + pub ckamnjcdpgl: u32, + /// offset: 44 + #[prost(uint32, tag = "13")] + pub ambnoncfbcg: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub mfpglgpipip: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub pfkiappijnn: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub baeljfohjbc: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bdjohkepcke { + /// offset: 32 + #[prost(int64, tag = "5")] + pub create_time: i64, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub dkhinnidgcb: u32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub world_level: u32, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub monster_id: u32, + /// offset: 28 + #[prost(bool, tag = "8")] + pub njekdbpoalk: bool, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub config_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3246)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nfabohbkkpm {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3292)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mcalehfbcni { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub jjajbllkail: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 32 + #[prost(message, repeated, tag = "4")] + pub nlpfdiganfg: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3257)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dijoaokeogn { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub behlcahgboa: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3215)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pbinmhdelne { + /// offset: 32 + #[prost(bool, tag = "9")] + pub fabpaegjmlf: bool, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub mfpkkjfngjn: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3273)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bbalcndahag { + /// offset: 40 + #[prost(bool, tag = "3")] + pub fabpaegjmlf: bool, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub score_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub bcljgfpfpkm: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3270)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mhahkddgbmg { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub mmnbcjefgig: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub pbogdjjngll: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub eggnejdobak: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3213)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gobecklnbki { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub mfpkkjfngjn: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3201)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hhoefafidkf { + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub ncaegknnkah: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub battle_record_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 40 + #[prost(message, optional, tag = "2")] + pub mfpkkjfngjn: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(947)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetQuestDataCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Quest { - /// offset: 48 - #[prost(enumeration = "QuestStatus", tag = "8")] - pub status: i32, - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub pgjngnajhpp: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "3")] - pub id: u32, /// offset: 32 - #[prost(uint32, tag = "15")] - pub progress: u32, - /// offset: 40 - #[prost(int64, tag = "11")] + #[prost(int64, tag = "5")] pub finish_time: i64, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub opilkmpmeae: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(enumeration = "QuestStatus", tag = "13")] + pub status: i32, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub id: u32, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub progress: u32, } -/// Obf: HIACBFNPOEO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(923)] +#[cmdid(909)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetQuestDataScRsp { + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub quest_list: ::prost::alloc::vec::Vec, /// offset: 36 #[prost(uint32, tag = "1")] pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "15")] pub total_achievement_exp: u32, - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub quest_list: ::prost::alloc::vec::Vec, } -/// Obf: BBAADEDBDAB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(998)] +#[cmdid(938)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeQuestRewardCsReq { /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub dcgjaboniic: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "15")] + pub succ_quest_id_list: ::prost::alloc::vec::Vec, } -/// Obf: CEKCPHPBNDH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(965)] +#[cmdid(917)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeQuestRewardScRsp { - /// offset: 32 - #[prost(uint32, repeated, tag = "1")] - pub nodoemdnbcj: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub dcgjaboniic: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "11")] + pub loijhkmlhnm: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub succ_quest_id_list: ::prost::alloc::vec::Vec, } -/// Obf: DCBEOECBLAC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(969)] +#[cmdid(945)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeQuestOptionalRewardCsReq { /// offset: 24 - #[prost(uint32, tag = "4")] - pub jlfabhhnhcm: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "8")] pub optional_reward_id: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub quest_id: u32, } -/// Obf: MEFHINFDCEB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(957)] +#[cmdid(976)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeQuestOptionalRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "4")] + /// offset: 16 + #[prost(message, optional, tag = "15")] pub reward: ::core::option::Option, /// offset: 36 + #[prost(uint32, tag = "2")] + pub quest_id: u32, + /// offset: 32 #[prost(uint32, tag = "9")] - pub jlfabhhnhcm: u32, + pub retcode: u32, } -/// Obf: LAKABGFAIFM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(994)] +#[cmdid(989)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetQuestRecordCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Epjdfbaofdf { +pub struct Ohlmdidhmfc { /// offset: 28 #[prost(uint32, tag = "4")] - pub ijfihgcknhg: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] pub progress: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub cmlflcpkoog: u32, } -/// Obf: DIINMPDPANG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(952)] +#[cmdid(920)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetQuestRecordScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub obemgacmgnh: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "15")] pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub hpipcjcpcdl: ::prost::alloc::vec::Vec, } -/// Obf: NHIGGMGNIAF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(919)] +#[cmdid(995)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct QuestRecordScNotify { /// offset: 16 - #[prost(message, optional, tag = "9")] - pub feaocokkgbm: ::core::option::Option, + #[prost(message, optional, tag = "8")] + pub icfbmljkgeh: ::core::option::Option, } -/// Obf: IBGHBKOLKJH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(944)] +#[cmdid(991)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishQuestCsReq { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub prop_id: u32, /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub group_id: u32, /// offset: 32 - #[prost(uint32, tag = "8")] - pub jlfabhhnhcm: u32, + #[prost(uint32, tag = "13")] + pub prop_id: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub quest_id: u32, } -/// Obf: MENHBLJFCHH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(981)] +#[cmdid(961)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishQuestScRsp { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: BMMFBCCJIGF #[derive(proto_derive::CmdID)] -#[cmdid(992)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BatchGetQuestDataCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] pub quest_list: ::prost::alloc::vec::Vec, } -/// Obf: LDMCJEDOBIK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(937)] +#[cmdid(981)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BatchGetQuestDataScRsp { /// offset: 24 - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "8")] pub quest_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "12")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fnlgplncpcl { +pub struct Gbhihpknbca { /// offset: 32 - #[prost(message, optional, tag = "5")] - pub lineup: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub adejkmnenan: ::core::option::Option, /// offset: 40 #[prost(uint32, tag = "15")] - pub world_level: u32, + pub raid_id: u32, /// offset: 44 - #[prost(uint32, tag = "4")] - pub cenifnknfnp: u32, + #[prost(uint32, tag = "10")] + pub world_level: u32, /// offset: 24 - #[prost(message, optional, tag = "2")] - pub ghedlclnhij: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub lineup: ::core::option::Option, } -/// Obf: IPCKBDAGHHK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2299)] +#[cmdid(2247)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartRaidCsReq { /// offset: 40 - #[prost(uint32, tag = "10")] - pub cenifnknfnp: u32, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub jgeaegmhdoc: u32, - /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub world_level: u32, - /// offset: 44 - #[prost(uint32, tag = "12")] - pub prop_entity_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] + /// offset: 16 + #[prost(uint32, repeated, tag = "13")] pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub raid_id: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub prop_entity_id: u32, + /// offset: 44 + #[prost(uint32, tag = "7")] + pub is_save: u32, } -/// Obf: PPHBJDLLKIG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2223)] +#[cmdid(2209)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StartRaidScRsp { /// offset: 32 #[prost(uint32, tag = "2")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub scene: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub scene: ::core::option::Option, } -/// Obf: FHKCKEMNMFE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2298)] +#[cmdid(2238)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveRaidCsReq { - /// offset: 28 - #[prost(bool, tag = "3")] - pub jgeaegmhdoc: bool, /// offset: 24 - #[prost(uint32, tag = "8")] - pub cenifnknfnp: u32, + #[prost(bool, tag = "7")] + pub is_save: bool, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub raid_id: u32, } -/// Obf: IFIEMDNGKIE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2265)] +#[cmdid(2217)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct LeaveRaidScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub cenifnknfnp: u32, /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub world_level: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub raid_id: u32, /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hochoihkkdg { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub hfaljihkecn: u32, +pub struct RaidTargetInfo { /// offset: 24 - #[prost(enumeration = "Fochdfjanpc", tag = "15")] - pub mddofmcjjhh: i32, + #[prost(enumeration = "Aeikbajjblh", tag = "4")] + pub aiikcpfiohd: i32, /// offset: 28 - #[prost(uint32, tag = "2")] - pub dlppdpbjiim: u32, + #[prost(uint32, tag = "12")] + pub cnempadnnnp: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub gdjnlnpclnk: u32, } -/// Obf: GBDKFMGFPNL +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(2283)] +#[cmdid(2251)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RaidInfoNotify { - /// offset: 40 - #[prost(enumeration = "Jldfakdkmjj", tag = "11")] - pub status: i32, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub lheilnacnod: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "3")] - pub cenifnknfnp: u32, - /// offset: 56 - #[prost(uint32, tag = "1")] - pub world_level: u32, - /// offset: 48 - #[prost(uint64, tag = "8")] - pub copmfambkdn: u64, /// offset: 24 - #[prost(message, optional, tag = "6")] + #[prost(message, optional, tag = "1")] pub item_list: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "4")] + pub world_level: u32, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub raid_id: u32, + /// offset: 48 + #[prost(enumeration = "RaidStatus", tag = "9")] + pub status: i32, + /// offset: 32 + #[prost(message, repeated, tag = "10")] + pub raid_target_info: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint64, tag = "6")] + pub raid_finish_time: u64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Amdkbohcfia { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub cenifnknfnp: u32, +pub struct Cgihhbalgdc { /// offset: 24 - #[prost(uint32, tag = "6")] - pub stage_score: u32, + #[prost(uint32, tag = "11")] + pub max_score: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub raid_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Akdajafpdee { - /// offset: 36 - #[prost(uint32, tag = "7")] - pub world_level: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub cenifnknfnp: u32, +pub struct FinishedRaidInfo { /// offset: 16 #[prost(uint32, repeated, tag = "12")] - pub knibaniilde: ::prost::alloc::vec::Vec, + pub pjmndlgcdel: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub world_level: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub raid_id: u32, } -/// Obf: MKDMNMLEFFN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2281)] +#[cmdid(2261)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRaidInfoCsReq {} -/// Obf: GetRaidInfoScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2269)] +#[cmdid(2245)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRaidInfoScRsp { - /// offset: 40 - #[prost(uint32, repeated, tag = "10")] - pub challenge_taken_reward_id_list: ::prost::alloc::vec::Vec, - /// offset: 16 + /// offset: 24 #[prost(message, repeated, tag = "5")] - pub challenge_raid_list: ::prost::alloc::vec::Vec, + pub finished_raid_info_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub challenge_raid_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "1")] + pub challenge_taken_reward_id_list: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "11")] - pub finished_raid_info_list: ::prost::alloc::vec::Vec, } -/// Obf: AIAMPHNKFBB #[derive(proto_derive::CmdID)] -#[cmdid(2286)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChallengeRaidInfoCsReq {} -/// Obf: JHPHOLNEMDF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2294)] +#[cmdid(2289)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChallengeRaidInfoScRsp { /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub ioodmakjdif: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "11")] - pub mjgffcljgfn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "15")] + pub taken_reward_id_list: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub retcode: u32, + /// offset: 32 + #[prost(message, repeated, tag = "1")] + pub hhgkchnpgkn: ::prost::alloc::vec::Vec, } -/// Obf: COLGMGCKFEN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2252)] +#[cmdid(2220)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeChallengeRaidRewardCsReq { /// offset: 24 - #[prost(uint32, tag = "15")] - pub oehkjoafpba: u32, + #[prost(uint32, tag = "13")] + pub jnpdambcpkd: u32, } -/// Obf: EGBIALMIDFD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2219)] +#[cmdid(2295)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeChallengeRaidRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub oehkjoafpba: u32, /// offset: 24 - #[prost(message, optional, tag = "7")] + #[prost(message, optional, tag = "9")] pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub jnpdambcpkd: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub retcode: u32, } -/// Obf: NHDHPHKKJOG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(2244)] +#[cmdid(2291)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChallengeRaidNotify { /// offset: 16 - #[prost(message, optional, tag = "2")] - pub ehmiljfijkh: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub jcbdnnjacgj: ::core::option::Option, } -/// Obf: GELPFLAECFD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2257)] +#[cmdid(2276)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetClientRaidTargetCountCsReq { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub dmmppkmjpmm: u32, /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] + pub cjdinaomdlk: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] pub progress: u32, } -/// Obf: PFFLBELDCIP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2215)] +#[cmdid(2252)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetClientRaidTargetCountScRsp { /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub dmmppkmjpmm: u32, - /// offset: 28 #[prost(uint32, tag = "9")] + pub cjdinaomdlk: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] pub progress: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub retcode: u32, } -/// Obf: HIIACEHOBBC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2292)] +#[cmdid(2250)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetSaveRaidCsReq { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub world_level: u32, /// offset: 24 - #[prost(uint32, tag = "13")] - pub cenifnknfnp: u32, -} -/// Obf: EKHIKMNOKMD -#[derive(proto_derive::CmdID)] -#[cmdid(2237)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSaveRaidScRsp { - /// offset: 44 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 36 - #[prost(bool, tag = "2")] - pub jgeaegmhdoc: bool, - /// offset: 32 #[prost(uint32, tag = "9")] - pub world_level: u32, - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub lheilnacnod: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub cenifnknfnp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jkdinnedbao { - /// offset: 32 + pub raid_id: u32, + /// offset: 28 #[prost(uint32, tag = "2")] pub world_level: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub cenifnknfnp: u32, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub lheilnacnod: ::prost::alloc::vec::Vec, } -/// Obf: AHANBGMIBAD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2268)] +#[cmdid(2281)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetSaveRaidScRsp { + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub raid_target_info: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub raid_id: u32, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub world_level: u32, + /// offset: 36 + #[prost(bool, tag = "7")] + pub is_save: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RaidData { + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub raid_target_info: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub world_level: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub raid_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(2293)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAllSaveRaidCsReq {} -/// Obf: FEJLDILDBBM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2249)] +#[cmdid(2237)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAllSaveRaidScRsp { /// offset: 32 #[prost(uint32, tag = "9")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub npjhicinona: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub raid_data_list: ::prost::alloc::vec::Vec, } -/// Obf: FFNAPMOAPNK +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(2280)] +#[cmdid(2210)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DelSaveRaidScNotify { /// offset: 24 #[prost(uint32, tag = "12")] pub world_level: u32, /// offset: 28 - #[prost(uint32, tag = "14")] - pub cenifnknfnp: u32, + #[prost(uint32, tag = "11")] + pub raid_id: u32, } -/// Obf: FEODPIJLNCC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(2277)] +#[cmdid(2267)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RaidKickByServerScNotify { - /// offset: 40 - #[prost(enumeration = "Egkfndoopnn", tag = "13")] - pub reason: i32, /// offset: 32 - #[prost(message, optional, tag = "3")] - pub scene: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "12")] - pub world_level: u32, - /// offset: 24 #[prost(message, optional, tag = "7")] pub lineup: ::core::option::Option, /// offset: 44 - #[prost(uint32, tag = "14")] - pub cenifnknfnp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aconlfjejok { + #[prost(uint32, tag = "15")] + pub raid_id: u32, + /// offset: 48 + #[prost(enumeration = "Fdacnihfblh", tag = "5")] + pub reason: i32, /// offset: 24 - #[prost(uint32, tag = "12")] - pub jjdmkhbkplm: u32, + #[prost(message, optional, tag = "2")] + pub scene: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub world_level: u32, } -/// Obf: AGDLAANKDJM #[derive(proto_derive::CmdID)] -#[cmdid(6947)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RaidCollectionDataCsReq {} -/// Obf: CECBNFAMLAE -#[derive(proto_derive::CmdID)] -#[cmdid(6941)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RaidCollectionDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub challenge_list: ::prost::alloc::vec::Vec, +pub struct Ncdhpaeamgl { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub hkdcgfdghcl: u32, } -/// Obf: CEALIDHPNJE +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6953)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RaidCollectionDataScNotify { - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub collection_info: ::core::option::Option, -} -/// Obf: CEAEPKEGAOK +pub struct RaidCollectionDataCsReq {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6959)] +#[cmdid(6946)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RaidCollectionEnterNextRaidCsReq { - /// offset: 36 - #[prost(uint32, tag = "14")] - pub world_level: u32, +pub struct RaidCollectionDataScRsp { /// offset: 32 - #[prost(uint32, tag = "5")] - pub jgeaegmhdoc: u32, + #[prost(uint32, tag = "10")] + pub retcode: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "6")] + #[prost(message, repeated, tag = "3")] + pub challenge_list: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6949)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ooibelogdia { + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub collection_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6945)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fbnkkfnmlom { + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub cenifnknfnp: u32, -} -/// Obf: JKOIJMAOLJN -#[derive(proto_derive::CmdID)] -#[cmdid(6943)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RaidCollectionEnterNextRaidScRsp { - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub scene: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "3")] + pub is_save: u32, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub raid_id: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub world_level: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6954)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iikbhnkpjfo { + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub scene: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "12")] pub retcode: u32, } -/// Obf: ABHFJDNFCFL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8367)] +#[cmdid(8373)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetRechargeGiftInfoCsReq {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oiopbdbjhie { - /// offset: 28 - #[prost(enumeration = "oiopbdbjhie::liglfgkhlhg::Ipkpkdcebki", tag = "8")] - pub status: i32, +pub struct Ficjpmbmhlp { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(enumeration = "ficjpmbmhlp::ifjcodiemoi::Cobbfgiigpd", tag = "6")] + pub status: i32, + /// offset: 28 + #[prost(uint32, tag = "7")] pub index: u32, } -/// Nested message and enum types in `OIOPBDBJHIE`. -pub mod oiopbdbjhie { +/// Nested message and enum types in `FICJPMBMHLP`. +pub mod ficjpmbmhlp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] - pub struct Liglfgkhlhg {} - /// Nested message and enum types in `LIGLFGKHLHG`. - pub mod liglfgkhlhg { + pub struct Ifjcodiemoi {} + /// Nested message and enum types in `IFJCODIEMOI`. + pub mod ifjcodiemoi { #[derive(proto_derive::CmdID)] #[derive( Clone, @@ -36432,29 +37224,29 @@ pub mod oiopbdbjhie { ::prost::Enumeration )] #[repr(i32)] - pub enum Ipkpkdcebki { - NotReach = 0, - Received = 1, - CanReceive = 2, + pub enum Cobbfgiigpd { + Bmbieapdfni = 0, + Fkondknekmj = 1, + Aljkgnhlakn = 2, } - impl Ipkpkdcebki { + impl Cobbfgiigpd { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::NotReach => "NotReach", - Self::Received => "Received", - Self::CanReceive => "CanReceive", + Self::Bmbieapdfni => "COBBFGIIGPD_BMBIEAPDFNI", + Self::Fkondknekmj => "COBBFGIIGPD_FKONDKNEKMJ", + Self::Aljkgnhlakn => "COBBFGIIGPD_ALJKGNHLAKN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "NotReach" => Some(Self::NotReach), - "Received" => Some(Self::Received), - "CanReceive" => Some(Self::CanReceive), + "COBBFGIIGPD_BMBIEAPDFNI" => Some(Self::Bmbieapdfni), + "COBBFGIIGPD_FKONDKNEKMJ" => Some(Self::Fkondknekmj), + "COBBFGIIGPD_ALJKGNHLAKN" => Some(Self::Aljkgnhlakn), _ => None, } } @@ -36463,384 +37255,415 @@ pub mod oiopbdbjhie { } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fpnjlddamgh { +pub struct Pdnklpheomd { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub gift_type: u32, /// offset: 40 + #[prost(int64, tag = "3")] + pub dkhoeiijhip: i64, + /// offset: 48 #[prost(int64, tag = "2")] pub end_time: i64, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub dnajfmpcmll: u32, - /// offset: 32 - #[prost(int64, tag = "6")] - pub coifhfpegph: i64, /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub migfmpjbelg: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub bclnaihpacp: ::prost::alloc::vec::Vec, } -/// Obf: PILPFBJNIOG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8361)] +#[cmdid(8366)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetRechargeGiftInfoScRsp { /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub mmglcjmggih: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub dciiolhdekb: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub retcode: u32, } -/// Obf: HADFKEGGMCA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8373)] +#[cmdid(8369)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeRechargeGiftRewardCsReq { +pub struct Kgbnoiidcie { /// offset: 24 - #[prost(uint32, tag = "11")] - pub dnajfmpcmll: u32, + #[prost(uint32, tag = "2")] + pub gift_type: u32, } -/// Obf: HDAPAPFIGFP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8379)] +#[cmdid(8365)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRechargeGiftRewardScRsp { +pub struct Gcjkhialnhm { /// offset: 40 #[prost(uint32, tag = "14")] pub retcode: u32, /// offset: 24 - #[prost(message, optional, tag = "3")] + #[prost(message, optional, tag = "9")] pub reward: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "12")] - pub hnkgcndocak: ::core::option::Option, + #[prost(message, optional, tag = "1")] + pub chedjpkdlip: ::core::option::Option, } -/// Obf: NJOOEGFJKIH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8363)] +#[cmdid(8374)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRechargeBenefitInfoCsReq {} +pub struct Jfmggckepkb {} #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jmhojkkgnif { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub id: u32, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub module_id: u32, +pub struct Jgkodikkllc { /// offset: 36 - #[prost(uint32, tag = "7")] - pub progress: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub jclobiapkeg: ::prost::alloc::vec::Vec, -} -/// Obf: NIAKKHJBAIH -#[derive(proto_derive::CmdID)] -#[cmdid(8375)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRechargeBenefitInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub ehndmlffmhi: ::prost::alloc::vec::Vec, -} -/// Obf: CCEDDHEGMEG -#[derive(proto_derive::CmdID)] -#[cmdid(8368)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRechargeBenefitInfoScNotify { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub amefppfcfji: ::core::option::Option, -} -/// Obf: AADIKBDAIMM -#[derive(proto_derive::CmdID)] -#[cmdid(8371)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeRechargeBenefitRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub id: u32, -} -/// Obf: JKLJIEBJLMI -#[derive(proto_derive::CmdID)] -#[cmdid(8370)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRechargeBenefitRewardScRsp { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub amefppfcfji: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub reward: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RecomendedEquipmentInfo { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub mdmgkhlhiin: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub lgiiahidlmg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RecomendedEquipmentData { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub equipment_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RecomendedRelicInfo { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub ehceepmbddi: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub fikkgbibcjk: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub pdmgjkodfop: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RecomendedRelicData { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub cdhdmhlocpo: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cagflkclgch { - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub dbgnciomiep: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jachaeedpnd { - /// offset: 16 - #[prost(uint32, repeated, tag = "2")] - pub dbgnciomiep: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nkgpojpakdp { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub hfppegifflm: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Accgmjoifmj { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub buff_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub dbgnciomiep: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ihjiemmaomm { - /// offset: 40 - #[prost(uint32, tag = "5")] - pub dcholkbfbgi: u32, + #[prost(uint32, tag = "9")] + pub panel_id: u32, /// offset: 24 #[prost(uint32, repeated, tag = "10")] - pub first_lineup_ids: ::prost::alloc::vec::Vec, + pub enfoccghkad: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub progress: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8364)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cfkjalcbgbp { + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub dnlggooemia: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8363)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kommegmmdji { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub onjefkdkpdm: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8377)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bnpdepohhob { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8372)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kccfibnfflo { /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub second_lineup_ids: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "14")] - pub ceifdikpdam: u32, + #[prost(message, optional, tag = "12")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub onjefkdkpdm: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct EquipmentRecommendInfo { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub pdjhilhiimo: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub jpbelmffogc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lfegoifpdjj { - #[prost(oneof = "lfegoifpdjj::Philneaohko", tags = "10, 12, 4, 6")] - pub philneaohko: ::core::option::Option, +pub struct EquipmentRecommend { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub equipment_list: ::prost::alloc::vec::Vec, } -/// Nested message and enum types in `LFEGOIFPDJJ`. -pub mod lfegoifpdjj { +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RelicRecommendInfo { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub fnmhmejonha: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub hkninefbnob: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub mdidiiahchc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RelicRecommend { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub recommend_relic_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lokjjliliop { + /// offset: 16 + #[prost(uint32, repeated, tag = "1")] + pub pcjinpmcpdp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nokcbploeee { + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub pcjinpmcpdp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nkeeegchgnh { + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub ddgeddnhljp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Onmmkcgldki { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub buff_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "10")] + pub pcjinpmcpdp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jnofabnebdp { + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub second_lineup: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub bagciaanjbn: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub first_lineup: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub nbaanpbmpaj: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bkibhhahpmf { + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub dcckmpjgede: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub fbkfjkjmnoa: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ipcjdjafich { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub slot: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub ijlckeakega: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub avatar_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ebklglejicf { + #[prost(oneof = "ebklglejicf::Gfjdeekclkj", tags = "13, 12, 11, 15, 6")] + pub gfjdeekclkj: ::core::option::Option, +} +/// Nested message and enum types in `EBKLGLEJICF`. +pub mod ebklglejicf { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Philneaohko { + pub enum Gfjdeekclkj { /// offset: 16 - #[prost(message, tag = "10")] - Nibdjfabmac(super::Cagflkclgch), + #[prost(message, tag = "13")] + Amipdmaimip(super::Lokjjliliop), /// offset: 16 #[prost(message, tag = "12")] - Niahdpnhmfc(super::Nkgpojpakdp), + Ipcmlkafkoc(super::Nkeeegchgnh), /// offset: 16 - #[prost(message, tag = "4")] - Lfdnchkalik(super::Accgmjoifmj), + #[prost(message, tag = "11")] + Bppkhipdejc(super::Onmmkcgldki), + /// offset: 16 + #[prost(message, tag = "15")] + Oghpgphfljb(super::Jnofabnebdp), /// offset: 16 #[prost(message, tag = "6")] - Ciogioccgje(super::Ihjiemmaomm), + Kjbaiameaeb(super::Ipcjdjafich), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aagfijmmokl { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub lineup_list: ::prost::alloc::vec::Vec, +pub struct Kgjfkahlafg { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub lineup_list: ::prost::alloc::vec::Vec, } -/// Obf: LGPNOIDOJLE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2420)] +#[cmdid(2431)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBigDataRecommendCsReq { /// offset: 28 - #[prost(enumeration = "BigDataRecommendType", tag = "11")] - pub big_data_recommend_type: i32, + #[prost(uint32, tag = "5")] + pub equip_avatar: u32, /// offset: 24 - #[prost(uint32, tag = "8")] - pub recommended_avatar_id: u32, + #[prost(enumeration = "BigDataRecommendType", tag = "9")] + pub big_data_recommend_type: i32, } -/// Obf: BLANKJCLNPE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2444)] +#[cmdid(2425)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBigDataRecommendScRsp { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub recommended_avatar_id: u32, - /// offset: 44 - #[prost(enumeration = "BigDataRecommendType", tag = "15")] + /// offset: 32 + #[prost(enumeration = "BigDataRecommendType", tag = "12")] pub big_data_recommend_type: i32, /// offset: 48 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub retcode: u32, - /// offset: 36 - #[prost(bool, tag = "3")] - pub ogegkokgppj: bool, - #[prost(oneof = "get_big_data_recommend_sc_rsp::RecommendType", tags = "11, 8, 9")] - pub recommend_type: ::core::option::Option< - get_big_data_recommend_sc_rsp::RecommendType, - >, + /// offset: 44 + #[prost(bool, tag = "1")] + pub has_recommand: bool, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub equip_avatar: u32, + #[prost(oneof = "get_big_data_recommend_sc_rsp::Gdlkcpkflgc", tags = "13, 10, 8")] + pub gdlkcpkflgc: ::core::option::Option, } /// Nested message and enum types in `GetBigDataRecommendScRsp`. pub mod get_big_data_recommend_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum RecommendType { + pub enum Gdlkcpkflgc { /// offset: 16 - #[prost(message, tag = "11")] - RecomendedEquipmentData(super::RecomendedEquipmentData), + #[prost(message, tag = "13")] + EquipmentRecommend(super::EquipmentRecommend), + /// offset: 16 + #[prost(message, tag = "10")] + RelicRecommend(super::RelicRecommend), /// offset: 16 #[prost(message, tag = "8")] - RecomendedRelicData(super::RecomendedRelicData), - /// offset: 16 - #[prost(message, tag = "9")] - Foolkfafnbd(super::Aagfijmmokl), + Bkimjlbhefa(super::Kgjfkahlafg), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RecomendedAvatarInfo { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] pub avatar_id_list: ::prost::alloc::vec::Vec, + /// TODO + /// /// offset: 32 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub relic_set_id: u32, + /// TODO + /// /// offset: 36 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "11")] pub recommend_avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BigDataRecommendRelicAvatar { /// offset: 16 - #[prost(message, repeated, tag = "8")] + #[prost(message, repeated, tag = "6")] pub recommended_avatar_info_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nkghhafanhn { +pub struct Abhogoalfbn { /// offset: 24 - #[prost(uint32, tag = "8")] - pub iikgcjfjadf: u32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub kicobnpckae: u32, + #[prost(uint32, tag = "15")] + pub fmpfgpaeekj: u32, /// offset: 32 - #[prost(uint32, tag = "2")] - pub fleefjlnlch: u32, + #[prost(uint32, tag = "10")] + pub nijkcmehdnk: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub peejdjnifif: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ghledkfiijh { +pub struct Bickehfadob { /// offset: 24 - #[prost(uint32, tag = "9")] - pub kicobnpckae: u32, + #[prost(uint32, tag = "8")] + pub jjfclemcabk: u32, /// offset: 28 #[prost(uint32, tag = "4")] - pub jicdflimhhd: u32, + pub nijkcmehdnk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RecommendedRelicInfo { - /// offset: 48 - #[prost(message, repeated, tag = "7")] - pub mpmfahlkeob: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub nobonccpeng: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, repeated, tag = "1")] - pub lgejjajpedk: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub kkcmfgmhimo: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "3")] - pub avatar_id: u32, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub pdbhnhpcnnj: ::prost::alloc::vec::Vec, /// offset: 56 - #[prost(message, repeated, tag = "15")] - pub fbbajbinglb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub mllbkpjmjhi: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "2")] + pub djolodcmnnl: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "9")] + pub lmdabmnjeod: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub afegekdgckg: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub bcmkogcnhib: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "13")] + pub avatar_id: u32, + /// offset: 48 + #[prost(message, repeated, tag = "3")] + pub hpnnmlpcgeh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BigDataRecommendAvatarRelic { - /// offset: 16 - #[prost(message, repeated, tag = "11")] + /// offset: 24 + #[prost(message, repeated, tag = "12")] pub recomended_relic_info_list: ::prost::alloc::vec::Vec, } -/// Obf: DILCJFEHKGC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2401)] +#[cmdid(2446)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetBigDataAllRecommendCsReq { /// offset: 24 - #[prost(enumeration = "BigDataRecommendType", tag = "9")] + #[prost(enumeration = "BigDataRecommendType", tag = "10")] pub big_data_recommend_type: i32, } -/// Obf: BCBHNEHMIKN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2445)] +#[cmdid(2417)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetBigDataAllRecommendScRsp { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 36 - #[prost(enumeration = "BigDataRecommendType", tag = "13")] + /// offset: 40 + #[prost(enumeration = "BigDataRecommendType", tag = "5")] pub big_data_recommend_type: i32, - #[prost(oneof = "get_big_data_all_recommend_sc_rsp::RecommendType", tags = "15, 10")] + /// offset: 36 + #[prost(uint32, tag = "13")] + pub retcode: u32, + #[prost( + oneof = "get_big_data_all_recommend_sc_rsp::RecommendType", + tags = "9, 3, 15" + )] pub recommend_type: ::core::option::Option< get_big_data_all_recommend_sc_rsp::RecommendType, >, @@ -36850,2621 +37673,2582 @@ pub mod get_big_data_all_recommend_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum RecommendType { - /// offset: 16 - #[prost(message, tag = "15")] + /// offset: 24 + #[prost(message, tag = "9")] RelicAvatar(super::BigDataRecommendRelicAvatar), - /// offset: 16 - #[prost(message, tag = "10")] + /// offset: 24 + #[prost(message, tag = "3")] AvatarRelic(super::BigDataRecommendAvatarRelic), + /// offset: 24 + #[prost(message, tag = "15")] + Bkimjlbhefa(super::Kgjfkahlafg), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ejbiokmolaf { - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub ffbeebkogpn: ::prost::alloc::vec::Vec, +pub struct Fkbfenkdbdg { + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub hdnjpimbdni: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Knchlmgiljc { - /// offset: 36 - #[prost(uint32, tag = "7")] - pub nopdkldekkf: u32, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub module_id: u32, +pub struct Agighbgbiij { /// offset: 24 - #[prost(map = "uint32, message", tag = "6")] - pub mbgijnjfhge: ::std::collections::HashMap, -} -/// Obf: ONAPBICFOKG -#[derive(proto_derive::CmdID)] -#[cmdid(5926)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetAllRedDotDataCsReq {} -/// Obf: KJIPKOMMDII -#[derive(proto_derive::CmdID)] -#[cmdid(5928)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetAllRedDotDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub iagibdaichi: ::prost::alloc::vec::Vec, -} -/// Obf: HNPBFPOOJCO -#[derive(proto_derive::CmdID)] -#[cmdid(5921)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct UpdateRedDotDataCsReq { - /// offset: 36 - #[prost(enumeration = "Ojljhfnfdkp", tag = "14")] - pub honemgcfbgi: i32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub module_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub param_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub nopdkldekkf: u32, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub group_id: u32, -} -/// Obf: BGEJFELHFNL -#[derive(proto_derive::CmdID)] -#[cmdid(5938)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpdateRedDotDataScRsp { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub group_id: u32, + #[prost(map = "uint32, message", tag = "3")] + pub ejklookoopi: ::std::collections::HashMap, /// offset: 32 #[prost(uint32, tag = "9")] - pub nopdkldekkf: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub retcode: u32, + pub efgmakennpn: u32, /// offset: 36 - #[prost(uint32, tag = "15")] - pub module_id: u32, + #[prost(uint32, tag = "10")] + pub panel_id: u32, } -/// Obf: CMMBDGDNHGC +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5919)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jdfghddlnje {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5902)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Demgaooofgj { + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub eakbgkkmhfg: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Foplgpijkok { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub group_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub switch_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub panel_id: u32, + /// offset: 36 + #[prost(enumeration = "Pjeaihhopno", tag = "6")] + pub iohdnphbkom: i32, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub efgmakennpn: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(5905)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetSingleRedDotParamGroupCsReq { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub nopdkldekkf: u32, - /// offset: 32 +pub struct Idogdchcomj { + /// offset: 36 #[prost(uint32, tag = "10")] - pub group_id: u32, + pub panel_id: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub efgmakennpn: u32, /// offset: 28 - #[prost(uint32, tag = "13")] - pub module_id: u32, + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub group_id: u32, } -/// Obf: DHNIBENKEHJ #[derive(proto_derive::CmdID)] -#[cmdid(5927)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kkhpjdggcgj { + /// offset: 28 + #[prost(uint32, tag = "4")] + pub efgmakennpn: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub panel_id: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub group_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5933)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSingleRedDotParamGroupScRsp { +pub struct Npgompidmfj { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub dlekaoadpma: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub panel_id: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub group_id: u32, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub efgmakennpn: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kobobbddnbe { + /// offset: 48 + #[prost(uint32, tag = "9")] + pub exp: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub tid: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub r#type: u32, /// offset: 40 #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub nopdkldekkf: u32, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub chpjjklgokm: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub group_id: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub module_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eapmklphehb { - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub sub_affix_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub tid: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub exp: u32, - /// offset: 48 - #[prost(uint32, tag = "3")] - pub r#type: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub main_affix_id: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] pub level: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hhiaeekimea { /// offset: 24 - #[prost(uint32, tag = "2")] - pub hkefheoohif: u32, + #[prost(message, repeated, tag = "2")] + pub sub_affix_list: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "11")] + pub main_affix_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aleipmgdnbk { /// offset: 28 - #[prost(uint32, tag = "14")] - pub dbpfefkdaho: u32, + #[prost(uint32, tag = "4")] + pub comogdodfpl: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub oehcnpooppl: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pcagcbflfde { +pub struct Bgcajaemfmh { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub avatar_id: u32, /// offset: 36 - #[prost(uint32, tag = "8")] - pub avatar_id: u32, - /// offset: 32 - #[prost(enumeration = "Jhbpcmijgni", tag = "4")] - pub lmjchkaipnl: i32, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub kpfbjnacnhe: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cpnahmombgp { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub kpfbjnacnhe: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub avatar_id: u32, -} -/// Obf: ECJEOHHEFNO -#[derive(proto_derive::CmdID)] -#[cmdid(8957)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRelicBoxDataCsReq {} -/// Obf: KLCEILOCADE -#[derive(proto_derive::CmdID)] -#[cmdid(8951)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRelicBoxDataScRsp { + #[prost(enumeration = "Olmahnldmob", tag = "7")] + pub agbkbdplmpl: i32, /// offset: 16 #[prost(message, optional, tag = "8")] - pub pkollpfaoag: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub geolfdgpkfm: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "5")] - pub idpnjkiepll: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "7")] - pub mfiockgfcpk: u32, - /// offset: 68 - #[prost(uint32, tag = "12")] - pub retcode: u32, + pub iflgcecoiea: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dlcackombmi { /// offset: 32 - #[prost(uint32, repeated, tag = "13")] - pub fnmhpegeocn: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, optional, tag = "15")] - pub jpibmbbkgnd: ::core::option::Option, - /// offset: 64 - #[prost(enumeration = "Oodomplalee", tag = "2")] - pub state: i32, -} -/// Obf: NGAKGBIAPHN -#[derive(proto_derive::CmdID)] -#[cmdid(8963)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetRelicBoxCustomCsReq { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub geolfdgpkfm: ::core::option::Option, - /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub bbnikkfpdia: ::prost::alloc::vec::Vec, -} -/// Obf: NECNHKKMOJM -#[derive(proto_derive::CmdID)] -#[cmdid(8969)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetRelicBoxCustomScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: EMGCFCEPCCP -#[derive(proto_derive::CmdID)] -#[cmdid(8953)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetRelicBoxTargetCsReq { - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub jpibmbbkgnd: ::core::option::Option, -} -/// Obf: GLCEFNMBNFM -#[derive(proto_derive::CmdID)] -#[cmdid(8965)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetRelicBoxTargetScRsp { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub jpibmbbkgnd: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -/// Obf: ODGOEFGDNCN -#[derive(proto_derive::CmdID)] -#[cmdid(8958)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetRelicBoxShieldCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub ikljdplpcfd: ::prost::alloc::vec::Vec, -} -/// Obf: BGIPCIGPMNE -#[derive(proto_derive::CmdID)] -#[cmdid(8961)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetRelicBoxShieldScRsp { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub ikljdplpcfd: ::prost::alloc::vec::Vec, -} -/// Obf: NAPPAMICKJA -#[derive(proto_derive::CmdID)] -#[cmdid(8960)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct OpenRelicBoxCsReq { + #[prost(uint32, tag = "14")] + pub avatar_id: u32, /// offset: 24 #[prost(message, optional, tag = "11")] - pub jpibmbbkgnd: ::core::option::Option, + pub iflgcecoiea: ::core::option::Option, } -/// Obf: AKDHHCGEMIO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8966)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct OpenRelicBoxScRsp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub fhgafcjcaoa: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub plonijnmdao: u32, -} -/// Obf: JKADFJKFKMF -#[derive(proto_derive::CmdID)] -#[cmdid(8968)] +#[cmdid(8963)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ConfirmRelicBoxCsReq { - /// offset: 24 - #[prost(bool, tag = "13")] - pub fhpfecgjbbb: bool, -} -/// Obf: ALKGOAJPLBA +pub struct Eknclpmccne {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8956)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ConfirmRelicBoxScRsp { - /// offset: 36 - #[prost(bool, tag = "15")] - pub fhpfecgjbbb: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub idpnjkiepll: ::prost::alloc::vec::Vec, +pub struct Njhpbnbholl { /// offset: 32 - #[prost(uint32, tag = "10")] - pub kpmgelleano: u32, + #[prost(message, optional, tag = "9")] + pub hccpbennfkm: ::core::option::Option, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub okmflchepeb: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, optional, tag = "7")] + pub jldjppdledj: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "12")] + #[prost(message, repeated, tag = "3")] + pub obpnlopoofd: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(enumeration = "Bhohmbfaioo", tag = "8")] + pub state: i32, + /// offset: 56 + #[prost(uint32, tag = "10")] + pub nmjlhdfdcho: u32, + /// offset: 60 + #[prost(uint32, tag = "13")] pub retcode: u32, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(8959)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Caicljoilek { + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub ghcdkcacjfn: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub obpnlopoofd: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8955)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mknhfljmchk {} -/// Obf: IFKCFOKEKPP +pub struct Idikmhhoiic { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8964)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RelicBoxChangeScNotify { +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jnkiogaejdg { /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub leadmneimdp: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "4")] + pub hccpbennfkm: ::core::option::Option, } -/// Obf: IFLBMHGIGGC +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8954)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Npgonpedinb { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub hccpbennfkm: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8962)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ndineckdmdo { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub hccpbennfkm: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8951)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fkbjjimkfok { + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub hnpebnndaba: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "3")] + pub eoinhpbkcgj: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8960)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gjmdfcaliol { + /// offset: 24 + #[prost(bool, tag = "4")] + pub jocmgkepjde: bool, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8970)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ReportRelicBoxActionCsReq { - #[prost(oneof = "report_relic_box_action_cs_req::Lecnegjecdk", tags = "7")] - pub lecnegjecdk: ::core::option::Option, +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gohaimemefg { + /// offset: 36 + #[prost(uint32, tag = "8")] + pub apmadnddofh: u32, + /// offset: 40 + #[prost(bool, tag = "13")] + pub jocmgkepjde: bool, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub okmflchepeb: ::prost::alloc::vec::Vec, } -/// Nested message and enum types in `ReportRelicBoxActionCsReq`. -pub mod report_relic_box_action_cs_req { +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8965)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fplompfofpl { + #[prost(oneof = "fplompfofpl::Enpkckmegmg", tags = "15")] + pub enpkckmegmg: ::core::option::Option, +} +/// Nested message and enum types in `FPLOMPFOFPL`. +pub mod fplompfofpl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Lecnegjecdk { + pub enum Enpkckmegmg { /// offset: 24 - #[prost(uint32, tag = "7")] - Aejojjknjac(u32), + #[prost(uint32, tag = "15")] + Cjfldfcakdh(u32), } } -/// Obf: LDMKEPABIKF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8967)] +#[cmdid(8969)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ReportRelicBoxActionScRsp { +pub struct Jiamlemclhd { + /// offset: 28 + #[prost(enumeration = "Bhohmbfaioo", tag = "7")] + pub state: i32, /// offset: 24 #[prost(uint32, tag = "2")] pub retcode: u32, - /// offset: 28 - #[prost(enumeration = "Oodomplalee", tag = "3")] - pub state: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RelicSmartWearPlanData { - /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub egflalhojkf: ::prost::alloc::vec::Vec, +pub struct RelicSmartWearPlan { /// offset: 40 + #[prost(uint32, tag = "4")] + pub avatar_id: u32, + /// offset: 44 #[prost(uint32, tag = "2")] pub unique_id: u32, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub avatar_id: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "7")] + pub inside_relic_list: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub fahcacdfeih: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "14")] + pub outside_relic_list: ::prost::alloc::vec::Vec, } -/// Obf: EHJMBNKJNKO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8257)] +#[cmdid(8263)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearGetPlanCsReq { /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] pub avatar_id: u32, } -/// Obf: IIIOAPKPEEK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8251)] +#[cmdid(8256)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearGetPlanScRsp { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub avatar_id: u32, /// offset: 32 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] + pub avatar_id: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] pub retcode: u32, /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub plan_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub relic_plan_list: ::prost::alloc::vec::Vec, } -/// Obf: IBNONNCJIFK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8263)] +#[cmdid(8259)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearAddPlanCsReq { /// offset: 16 - #[prost(message, optional, tag = "15")] - pub eilidmcocho: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub relic_plan: ::core::option::Option, } -/// Obf: OGANNCNENBP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8269)] +#[cmdid(8255)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearAddPlanScRsp { /// offset: 16 - #[prost(message, optional, tag = "4")] - pub eilidmcocho: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: CLEFDPIDONA -#[derive(proto_derive::CmdID)] -#[cmdid(8253)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RelicSmartWearUpdatePlanCsReq { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub eilidmcocho: ::core::option::Option, -} -/// Obf: NLJLABKKHON -#[derive(proto_derive::CmdID)] -#[cmdid(8265)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RelicSmartWearUpdatePlanScRsp { + #[prost(message, optional, tag = "3")] + pub relic_plan: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "4")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub eilidmcocho: ::core::option::Option, } -/// Obf: MPLPIGALHGK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8258)] +#[cmdid(8264)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RelicSmartWearUpdatePlanCsReq { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub relic_plan: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8254)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RelicSmartWearUpdatePlanScRsp { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub relic_plan: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8253)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearDeletePlanCsReq { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "12")] pub unique_id: u32, } -/// Obf: EGONFNCEMOL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8261)] +#[cmdid(8267)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearDeletePlanScRsp { /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "10")] pub unique_id: u32, /// offset: 28 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "5")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pmdjbojkdnk { - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub fahcacdfeih: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "8")] - pub egflalhojkf: ::prost::alloc::vec::Vec, +pub struct Bahdlijgjee { /// offset: 40 - #[prost(enumeration = "Anccglmmdjj", tag = "1")] - pub jccfeachmbp: i32, + #[prost(enumeration = "Ooomngfbofk", tag = "13")] + pub niolapahapo: i32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub outside_relic_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub inside_relic_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hammfojbjhf { - /// offset: 40 - #[prost(uint32, tag = "5")] - pub avatar_id: u32, +pub struct Inonjfeoiao { /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub locked_relic_id_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub oodincnjphb: ::core::option::Option, + #[prost(uint32, repeated, tag = "9")] + pub relic_ids: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub avatar_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub fclapnchdif: ::core::option::Option, } -/// Obf: NMOGJDPNJEJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8268)] +#[cmdid(8260)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RelicSmartWearGetPinRelicCsReq { /// offset: 24 #[prost(uint32, tag = "7")] pub avatar_id: u32, } -/// Obf: PJLOLBEHOEB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8256)] +#[cmdid(8270)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearGetPinRelicScRsp { - /// offset: 36 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub avatar_id: u32, /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub fajbodiglef: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "4")] + pub fjlalkeeijl: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub avatar_id: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub retcode: u32, } -/// Obf: NFHPFCBBGIP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8264)] +#[cmdid(8257)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearUpdatePinRelicScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub nonckfaogje: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub relic_unique_id: u32, - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub eodjilefgfb: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub bdjpikodgni: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub faakpdncnok: ::prost::alloc::vec::Vec, } -/// Obf: FBEFPCLFPKH +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8252)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearUpdatePinRelicCsReq { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub ibfnkoacmcp: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub jddblfpjadk: ::core::option::Option, } -/// Obf: KLKKLHIOIAC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8262)] +#[cmdid(8268)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearUpdatePinRelicScRsp { /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "10")] - pub ibfnkoacmcp: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub jddblfpjadk: ::core::option::Option, } -/// Obf: HBKFLEKAHHE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8255)] +#[cmdid(8261)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearDeletePinRelicCsReq { - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub bdgjphfdcah: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub omoklobllbm: ::prost::alloc::vec::Vec, /// offset: 36 - #[prost(uint32, tag = "11")] - pub avatar_id: u32, + #[prost(bool, tag = "13")] + pub bnkoammfbeh: bool, /// offset: 32 - #[prost(bool, tag = "3")] - pub nfnojdchonj: bool, + #[prost(uint32, tag = "6")] + pub avatar_id: u32, } -/// Obf: HMBGGLELAGN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8259)] +#[cmdid(8266)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RelicSmartWearDeletePinRelicScRsp { /// offset: 36 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "11")] pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub bdgjphfdcah: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub omoklobllbm: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub avatar_id: u32, } -/// Obf: GCIMJNNOAAF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3599)] +#[cmdid(3547)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetReplayTokenCsReq { +pub struct Ialbbbdemen { /// offset: 52 - #[prost(uint32, tag = "8")] - pub afehlmfibmd: u32, - /// offset: 48 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub stage_id: u32, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub cmpbkbbkaoa: u32, - /// offset: 40 - #[prost(enumeration = "ReplayType", tag = "4")] - pub replay_type: i32, + /// offset: 32 + #[prost(string, tag = "5")] + pub jcddhngffoi: ::prost::alloc::string::String, /// offset: 16 - #[prost(string, tag = "1")] - pub kihbigpfkkn: ::prost::alloc::string::String, - /// offset: 32 - #[prost(string, tag = "15")] - pub bbemidhmnlm: ::prost::alloc::string::String, -} -/// Obf: LPEKBEHCBBL -#[derive(proto_derive::CmdID)] -#[cmdid(3523)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetReplayTokenScRsp { - /// offset: 32 - #[prost(string, tag = "1")] - pub kihbigpfkkn: ::prost::alloc::string::String, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 - #[prost(string, tag = "6")] - pub token: ::prost::alloc::string::String, + #[prost(string, tag = "13")] + pub knkldkjehhe: ::prost::alloc::string::String, /// offset: 48 - #[prost(uint32, tag = "14")] - pub stage_id: u32, - /// offset: 44 - #[prost(enumeration = "ReplayType", tag = "11")] + #[prost(enumeration = "ReplayType", tag = "2")] pub replay_type: i32, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub ikebdbccimb: u32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub bcclfaemjij: u32, } -/// Obf: JEAHCDLLLPG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3598)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetPlayerReplayInfoCsReq {} -/// Obf: AAOOMDCFCBN -#[derive(proto_derive::CmdID)] -#[cmdid(3565)] +#[cmdid(3509)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetPlayerReplayInfoScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub kgcfealanko: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: JEKBCEFEKKK -#[derive(proto_derive::CmdID)] -#[cmdid(3499)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRndOptionCsReq { +pub struct Cbncnbmahhg { /// offset: 24 + #[prost(string, tag = "14")] + pub knkldkjehhe: ::prost::alloc::string::String, + /// offset: 44 + #[prost(uint32, tag = "1")] + pub stage_id: u32, + /// offset: 40 #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 48 + #[prost(enumeration = "ReplayType", tag = "7")] + pub replay_type: i32, + /// offset: 32 + #[prost(string, tag = "13")] + pub token: ::prost::alloc::string::String, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Omjdgljijij {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3517)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Picnbmnmick { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub jpkgfdpchin: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3447)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nbamiehdfmp { + /// offset: 24 + #[prost(uint32, tag = "11")] pub id: u32, } -/// Obf: LJIINOPGEDI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3423)] +#[cmdid(3409)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRndOptionScRsp { +pub struct Healhmjoofl { /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub eegeggbdhdg: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub ogkjmlnccdh: ::prost::alloc::vec::Vec, } -/// Obf: BGIKBJMOKOF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3498)] +#[cmdid(3438)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DailyFirstMeetPamCsReq {} -/// Obf: HFFMNIJGANJ +pub struct Limnkhlnjcg {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3465)] +#[cmdid(3417)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DailyFirstMeetPamScRsp { +pub struct Glialigklih { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bcdjpelljdd { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub buff_id: u32, /// offset: 24 #[prost(uint32, tag = "4")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueBuff { - /// offset: 24 - #[prost(uint32, tag = "6")] pub level: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oobcejfehmk { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub buff_list: ::prost::alloc::vec::Vec, +pub struct Ajdbhpcokpj { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub buff_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueRoom { +pub struct Ikbdphpnjpo { + /// offset: 32 + #[prost(enumeration = "Fcbocleekga", tag = "13")] + pub aelppdnljjc: i32, /// offset: 40 #[prost(uint32, tag = "2")] - pub site_id: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub imimgfaaghm: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] pub room_id: u32, - /// offset: 32 - #[prost(enumeration = "Ilnpbecoepl", tag = "14")] - pub hnlfgdmcjdf: i32, + /// offset: 28 + #[prost(enumeration = "Fcbocleekga", tag = "15")] + pub ffhmpeepcen: i32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub site_id: u32, /// offset: 24 - #[prost(enumeration = "Ilnpbecoepl", tag = "8")] - pub beeeboiojif: i32, + #[prost(uint32, tag = "3")] + pub deepgjniofi: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ijmgmkchhef { - /// offset: 44 - #[prost(uint32, tag = "1")] - pub map_id: u32, +pub struct Jefpcmijpeh { + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub jcfaefdnfjg: ::prost::alloc::vec::Vec, /// offset: 36 - #[prost(uint32, tag = "3")] - pub cur_site_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub jdcliamkdhf: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub area_id: u32, + #[prost(uint32, tag = "10")] + pub map_id: u32, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub eplcjjonifi: u32, /// offset: 32 - #[prost(uint32, tag = "8")] - pub cikibkaabim: u32, + #[prost(uint32, tag = "14")] + pub gnnmlmjlaaf: u32, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub area_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bkaaebjkjkh { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub gmpiiaeggek: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub area_id: u32, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub map_id: u32, +pub struct Molkjemgkko { /// offset: 36 - #[prost(enumeration = "RogueStatus", tag = "9")] - pub mkegbhjljnh: i32, - /// offset: 32 - #[prost(bool, tag = "15")] - pub fjoilohphlc: bool, + #[prost(uint32, tag = "8")] + pub map_id: u32, /// offset: 28 - #[prost(enumeration = "Jdakamigkhf", tag = "8")] - pub nookgajmfji: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Omogaieofah { - /// offset: 60 - #[prost(uint32, tag = "13")] - pub pdapeheambm: u32, - /// offset: 40 - #[prost(message, repeated, tag = "8")] - pub lhmidpambpd: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "14")] - pub ekflpnlapdf: u32, - /// offset: 72 - #[prost(uint32, tag = "11")] - pub ipodnbljpol: u32, - /// offset: 76 - #[prost(uint32, tag = "10")] - pub igchbpakbcb: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub fpoelpfcnbi: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "12")] - pub djfckfemgoj: u32, - /// offset: 48 + #[prost(enumeration = "Nkelooeellp", tag = "14")] + pub pamennimgpj: i32, + /// offset: 32 #[prost(uint32, tag = "15")] - pub cmogblhafhn: u32, - /// offset: 68 - #[prost(uint32, tag = "6")] - pub ckkekmjmabc: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub pdihilclenm: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(enumeration = "Nniohhmjghg", tag = "4")] - pub hhmabjdimgm: i32, - /// offset: 80 - #[prost(uint32, tag = "1")] - pub bheidppfcka: u32, - /// offset: 84 - #[prost(bool, tag = "3")] - pub ehpmcgoelgb: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kfejfbbgiad { - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub kmpmdldhabn: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub noenhhilnah: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Igjenciklof { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub ihgmpjnnmki: ::prost::alloc::vec::Vec, + pub area_id: u32, /// offset: 40 - #[prost(uint32, tag = "3")] - pub bilbohbdbpn: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub clplefhhafb: ::prost::alloc::vec::Vec, + #[prost(enumeration = "Ffmgdehfoai", tag = "4")] + pub akhbdcjipgc: i32, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub gndamlcbgde: u32, + /// offset: 24 + #[prost(bool, tag = "3")] + pub njhbkgjoigb: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gdiilljbdcf { +pub struct Mhafbcnggfe { + /// offset: 48 + #[prost(enumeration = "Mddkplgkfgn", tag = "14")] + pub phkopcbnocc: i32, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub gmiijpidicm: u32, + /// offset: 64 + #[prost(uint32, tag = "15")] + pub maomlaihcnk: u32, + /// offset: 68 + #[prost(uint32, tag = "11")] + pub inplpeoillo: u32, + /// offset: 52 + #[prost(uint32, tag = "12")] + pub moofaoipdfc: u32, + /// offset: 56 + #[prost(bool, tag = "3")] + pub gmkjijmejip: bool, + /// offset: 72 + #[prost(uint32, tag = "4")] + pub dnneckdlhnh: u32, + /// offset: 76 + #[prost(uint32, tag = "5")] + pub dpojoglhpgf: u32, + /// offset: 84 + #[prost(uint32, tag = "10")] + pub hkdkjakcmgj: u32, + /// offset: 80 + #[prost(uint32, tag = "8")] + pub niiffjnjihm: u32, + /// offset: 40 + #[prost(message, repeated, tag = "13")] + pub flnmilnemhb: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(float, tag = "5")] - pub famcmagfkcl: f32, + #[prost(uint32, repeated, tag = "9")] + pub mkkpfcljble: ::prost::alloc::vec::Vec, /// offset: 16 #[prost(message, optional, tag = "7")] - pub item_cost_list: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub buff_id: u32, + pub pkailbjdkah: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueBuffEnhanceInfoList { +pub struct Idobbhjiipp { /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub dakmmpkbmko: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Paimogcigij { - /// offset: 40 - #[prost(uint32, tag = "11")] - pub cur_times: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub khncedgfpgl: u32, + #[prost(message, repeated, tag = "6")] + pub einmkieiade: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "4")] - pub blfaanhjpad: u32, - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "2")] - pub gmafejejbho: ::std::collections::HashMap, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub deidchamdba: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Olfpckagkak { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub ckgfonmaeko: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bfljdbhbmnp { - /// offset: 16 #[prost(message, optional, tag = "13")] - pub eeppkmpajoh: ::core::option::Option, + pub lcdncppeeef: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bgghbodpenh { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub ieglikmnaeo: u32, /// offset: 32 - #[prost(uint32, repeated, tag = "11")] - pub jacighhgcgb: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub pibmjeoapgm: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub apilookijac: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Keionffflco { - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub cmaggnfdkag: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Flecflldnfp { - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub imoiceebdco: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ngffceicacd { +pub struct Chfadjjlcdf { /// offset: 32 #[prost(uint32, tag = "15")] - pub ebnpocidpke: u32, - #[prost(oneof = "ngffceicacd::Micmckahmpl", tags = "7, 5")] - pub micmckahmpl: ::core::option::Option, + pub buff_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub cost_data: ::core::option::Option, + /// offset: 36 + #[prost(float, tag = "2")] + pub eafnlaceibj: f32, } -/// Nested message and enum types in `NGFFCEICACD`. -pub mod ngffceicacd { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jfgnohihamo { + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub agkpejnagcf: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iidkofokfeo { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub dogjcpgolob: u32, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub mpklhhlonio: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub max_times: u32, + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "1")] + pub fppemjhaaac: ::std::collections::HashMap, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub cur_times: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Odkjbpbgaaj { + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub lacafpihpgb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pnfpamfmnfm { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub iicdmmgjdno: ::core::option::Option, + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub pgbglhnkldd: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nnebggdjbjm { + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub hfggdnbmpbn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kcnjoijchfk { + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub pmjfaencpeh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lbaabpiefki { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub ncdmklmgnki: u32, + #[prost(oneof = "lbaabpiefki::Ekodoagecdm", tags = "14, 3")] + pub ekodoagecdm: ::core::option::Option, +} +/// Nested message and enum types in `LBAABPIEFKI`. +pub mod lbaabpiefki { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Micmckahmpl { + pub enum Ekodoagecdm { /// offset: 24 - #[prost(message, tag = "7")] - Jdijkegcibp(super::ItemList), + #[prost(message, tag = "14")] + Bhndfdbdkaf(super::ItemList), /// offset: 24 - #[prost(message, tag = "5")] - Cndgjjljdof(super::Oobcejfehmk), + #[prost(message, tag = "3")] + Jikmjloadbc(super::Ajdbhpcokpj), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ejjglgpedee { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub gficflciejj: ::core::option::Option, +pub struct Ahdeigambkg { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub baookdnbkbg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jheeloagmig { +pub struct Chdbjcojphh { /// offset: 24 - #[prost(uint32, tag = "3")] - pub nidflbkpoeb: u32, + #[prost(uint32, tag = "6")] + pub ddflddddajk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueVirtualItemInfo { +pub struct Dpoihnbofdf { /// offset: 24 - #[prost(uint32, tag = "10")] - pub jkjmcfagocf: u32, + #[prost(uint32, tag = "11")] + pub aiihidibeao: u32, /// offset: 32 - #[prost(uint32, tag = "2")] - pub hgblomelble: u32, + #[prost(uint32, tag = "8")] + pub ekcaccdbngl: u32, /// offset: 40 - #[prost(uint32, tag = "4")] - pub ipodnbljpol: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub gfdbgcolkcp: u32, + #[prost(uint32, tag = "1")] + pub cpmhheeakgb: u32, /// offset: 28 #[prost(uint32, tag = "13")] - pub mjcfjmhocid: u32, + pub niiffjnjihm: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub ipekfajlhfe: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueInfo { +pub struct Lcdjdkiaocc { /// offset: 32 - #[prost(message, optional, tag = "1227")] - pub operating_system: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "934")] - pub omcbcgchlgn: ::core::option::Option, + #[prost(message, optional, tag = "805")] + pub rogue_get_info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "606")] + pub mcnnaljcobc: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Liikcgncbbf { - /// offset: 48 - #[prost(message, optional, tag = "8")] - pub pfeaniahfpc: ::core::option::Option, +pub struct Ogicjankgoh { /// offset: 40 - #[prost(message, optional, tag = "10")] - pub iblembncgpm: ::core::option::Option, - /// offset: 56 - #[prost(message, optional, tag = "13")] - pub rogue_virtual_item_info: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub rogue_score_reward_info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub pehfgbfodma: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "15")] - pub fejgmnnfflg: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub chmhpcngfao: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dknmkfbobjf { - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub chmhpcngfao: ::core::option::Option, - /// offset: 88 - #[prost(enumeration = "RogueStatus", tag = "4")] - pub status: i32, - /// offset: 16 #[prost(message, optional, tag = "10")] - pub map_info: ::core::option::Option, + pub jjoghokiifp: ::core::option::Option, /// offset: 56 - #[prost(message, optional, tag = "14")] - pub lgopnbhhhbg: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "6")] - pub eeppkmpajoh: ::core::option::Option, - /// offset: 64 - #[prost(message, optional, tag = "12")] - pub cmbhklpppad: ::core::option::Option, - /// offset: 40 #[prost(message, optional, tag = "7")] - pub embagmmhipa: ::core::option::Option, + pub fhmeompbmfk: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "3")] + pub eojaklgbjek: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gkejafabhfd { + /// offset: 88 + #[prost(bool, tag = "1")] + pub mbcgaklfjkg: bool, /// offset: 92 - #[prost(bool, tag = "11")] - pub gjboljkmgge: bool, + #[prost(enumeration = "Ffmgdehfoai", tag = "2")] + pub status: i32, + /// offset: 40 + #[prost(message, optional, tag = "12")] + pub ldlakmodanm: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub iaidekeflee: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub rogue_map: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "2")] - pub kndmeilhkej: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub gclekilecbi: ::core::option::Option, + /// offset: 80 + #[prost(message, optional, tag = "9")] + pub iicdmmgjdno: ::core::option::Option, + /// offset: 64 + #[prost(message, optional, tag = "10")] + pub plnhmfpoohn: ::core::option::Option, /// offset: 72 #[prost(message, optional, tag = "13")] - pub aabchfbkpeg: ::core::option::Option, + pub pehfgbfodma: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "7")] + pub boncaalanbg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bfkmdfgcncd { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub ahanjlehcga: u32, - /// offset: 32 - #[prost(int64, tag = "9")] - pub end_time: i64, +pub struct Fdedmmimlbg { /// offset: 40 - #[prost(int64, tag = "5")] + #[prost(int64, tag = "3")] pub begin_time: i64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mmchophfmah { /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub jmmnaipoefo: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "8")] + pub season: u32, + /// offset: 32 + #[prost(int64, tag = "2")] + pub end_time: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Icildhnfjfg { - /// offset: 40 - #[prost(uint32, tag = "15")] - pub hlbfbfdlaca: u32, - /// offset: 36 - #[prost(bool, tag = "9")] - pub aoelkjeegkg: bool, +pub struct Hjhaaohbagb { /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub fpchnblonlc: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub ejnninflcpp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aempgnkimko { + /// offset: 40 + #[prost(bool, tag = "7")] + pub nfobkchfmea: bool, /// offset: 32 #[prost(uint32, tag = "10")] - pub alkilfnbfnm: u32, + pub mnaimcnojgc: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub ppkdpkgibjp: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "4")] + pub ilnoedogifc: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kicdahaplch { +pub struct Glbfkodglnc { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub aanhjndjdih: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub lohiompdppa: u32, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub bamgdllieob: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cgghdjghnpi { + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub flnmilnemhb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ldpkbankiik { + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub iicdmmgjdno: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Klcneajgdod { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub dgaggcpodkg: ::core::option::Option, + /// offset: 48 + #[prost(uint32, repeated, tag = "7")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "13")] + pub gcfjbgiafgh: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Omhmknlacmp { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub mogojoiaplp: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hbjnijabile { + /// offset: 24 + #[prost(bool, tag = "10")] + pub nfobkchfmea: bool, /// offset: 32 #[prost(uint32, tag = "9")] - pub dkabghhoodp: u32, - /// offset: 24 + pub ogbojfjagcb: u32, + /// offset: 28 #[prost(uint32, tag = "12")] - pub ifehbimemec: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub bileoophjef: u32, + pub mnaimcnojgc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cfmapimjdfc { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub lhmidpambpd: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Omochgkhnik { - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub eeppkmpajoh: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Efjdmhoakoo { - /// offset: 40 - #[prost(message, optional, tag = "2")] - pub fpjckpnlnfm: ::core::option::Option, - /// offset: 48 - #[prost(uint32, repeated, tag = "13")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub mankkfpbfcb: ::prost::alloc::vec::Vec, +pub struct Obkpgbfdkhf { /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "5")] + pub cnkmhcnefce: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hdjflbmlldp { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub gkflnmojncp: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gabcapjghfg { - /// offset: 28 - #[prost(uint32, tag = "6")] - pub hlbfbfdlaca: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub amnbmjofjoo: u32, - /// offset: 32 - #[prost(bool, tag = "2")] - pub aoelkjeegkg: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ojcealjifnd { - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub gjanfnhlogn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nikkccaknnp { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub fpchnblonlc: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub hlbfbfdlaca: u32, - /// offset: 32 - #[prost(bool, tag = "2")] - pub aoelkjeegkg: bool, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub alkilfnbfnm: u32, +pub struct Ghpcalaebfe { /// offset: 36 - #[prost(uint32, tag = "3")] - pub amnbmjofjoo: u32, + #[prost(uint32, tag = "9")] + pub mnaimcnojgc: u32, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub ppkdpkgibjp: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub ogbojfjagcb: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub ilnoedogifc: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(bool, tag = "8")] + pub nfobkchfmea: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mncdpepcfgc { +pub struct Cbeiphjkpfc { /// offset: 28 - #[prost(uint32, tag = "11")] - pub kobfcomhgce: u32, + #[prost(uint32, tag = "13")] + pub score_id: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub hdmekdiigmc: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub lbkmcgilhmo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hfcjpmcdhjj { + /// offset: 36 + #[prost(float, tag = "1")] + pub eglniiplpll: f32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub dfemjmlccbn: u32, + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub ipalhghjgdk: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mpahpenpphd { /// offset: 24 #[prost(uint32, tag = "15")] - pub score: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub fjjdfpkgopc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aojofbbnepa { - /// offset: 36 - #[prost(float, tag = "8")] - pub dpfbdjmnceo: f32, - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub dcmhgokcinf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub npjeecedpok: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fgkcambiahb { - /// offset: 24 - #[prost(uint32, tag = "13")] pub id: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] + /// offset: 28 + #[prost(uint32, tag = "1")] pub slot: u32, /// offset: 36 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "7")] pub level: u32, - /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "9")] + /// offset: 32 + #[prost(enumeration = "AvatarType", tag = "5")] pub avatar_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gkjfbbhhlac { +pub struct Mapiehngfgn { /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub buff_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(message, repeated, tag = "14")] - pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "10")] - pub ckgfonmaeko: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "6")] + pub lacafpihpgb: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueFinishInfo { - /// offset: 56 - #[prost(uint32, tag = "14")] - pub dedlgfjaeam: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub hlobjooebod: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "728")] - pub lmmeanjpend: u32, +pub struct Nkdmiflbopp { + /// offset: 68 + #[prost(uint32, tag = "31")] + pub ocokbhdmfig: u32, /// offset: 72 - #[prost(uint32, tag = "12")] - pub mnbiebolccn: u32, - /// offset: 76 - #[prost(uint32, tag = "7")] - pub bimdlghkaoi: u32, - /// offset: 52 #[prost(uint32, tag = "9")] - pub score: u32, - /// offset: 60 + pub dpjpoaapnkl: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub obbbojojljf: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub record_info: ::core::option::Option, + /// offset: 76 + #[prost(uint32, tag = "13")] + pub aanhjndjdih: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub jbaopphhahg: ::core::option::Option, + /// offset: 48 #[prost(bool, tag = "11")] pub is_win: bool, - /// offset: 64 - #[prost(uint32, tag = "1064")] - pub area_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub record_info: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "5")] - pub agppepmgfmf: ::core::option::Option, - /// offset: 68 - #[prost(uint32, tag = "1")] - pub ifehbimemec: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hghcogepidm { - /// offset: 56 - #[prost(bool, tag = "11")] - pub pjhlocdbaeh: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub cilnjididhl: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(int64, tag = "7")] - pub cigboghafof: i64, - /// offset: 48 - #[prost(uint32, tag = "8")] - pub hhjpblekapn: u32, - /// offset: 40 - #[prost(int64, tag = "6")] - pub hoepojnnfci: i64, /// offset: 52 - #[prost(uint32, tag = "10")] - pub hdladibhbhh: u32, - /// offset: 57 - #[prost(bool, tag = "9")] - pub jomnpadaggk: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eacofhbfmlb { - /// offset: 32 + #[prost(uint32, tag = "7")] + pub khkbhoahmjh: u32, + /// offset: 60 #[prost(uint32, tag = "5")] - pub jgmipmdppij: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub level: u32, - /// offset: 36 + pub score_id: u32, + /// offset: 56 + #[prost(uint32, tag = "787")] + pub area_id: u32, + /// offset: 64 + #[prost(uint32, tag = "3")] + pub ndjhncgdfmb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cbffaifldip { + /// offset: 40 #[prost(uint32, tag = "2")] - pub exp: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub aeon_id: u32, + pub dedefejfbnn: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub jclmeineblp: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "1")] + pub dfanhajpkah: u32, + /// offset: 56 + #[prost(bool, tag = "3")] + pub kbfpdjpfied: bool, + /// offset: 48 + #[prost(int64, tag = "4")] + pub pmeacfpnmhi: i64, + /// offset: 57 + #[prost(bool, tag = "10")] + pub jcjceoffhli: bool, + /// offset: 32 + #[prost(int64, tag = "12")] + pub blnomejpgpl: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Llocdppmjnn { - /// offset: 32 +pub struct Jiffhnifaoo { + /// offset: 24 #[prost(uint32, tag = "12")] - pub rogue_dialogue_event_id: u32, - /// offset: 28 - #[prost(uint32, tag = "11")] - pub arg_id: u32, - /// offset: 24 - #[prost(bool, tag = "10")] - pub gldjnhiggje: bool, - /// offset: 40 - #[prost(float, tag = "13")] - pub acdopcbmpnl: f32, - /// offset: 36 - #[prost(int32, tag = "3")] - pub ggplcpchadn: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lanlccobdne { + pub bijoeenhpmg: u32, /// offset: 32 - #[prost(uint32, repeated, tag = "1")] - pub eoheeigobkd: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub onlhfcoglal: u32, - /// offset: 52 #[prost(uint32, tag = "14")] - pub game_mode_type: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub event_unique_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub dialogue_event_param_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub cdjecokfiof: u32, + pub aeon_id: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub exp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hngednhehip { + /// offset: 24 + #[prost(float, tag = "9")] + pub fhfochpogne: f32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub rogue_dialogue_event_id: u32, + /// offset: 32 + #[prost(bool, tag = "5")] + pub is_valid: bool, + /// offset: 28 + #[prost(int32, tag = "14")] + pub ngkmionahmk: i32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub arg_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gghfijkpfln { - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub jjealoemmkk: ::prost::alloc::vec::Vec, +pub struct Jacnpjdjdkg { + /// offset: 52 + #[prost(uint32, tag = "7")] + pub game_mode_type: u32, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub agbnplccppg: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub aeon_talk_id: u32, /// offset: 40 - #[prost(enumeration = "Ffnedmegpjd", tag = "13")] - pub bplmpmefeam: i32, - #[prost(oneof = "gghfijkpfln::Micmckahmpl", tags = "8")] - pub micmckahmpl: ::core::option::Option, + #[prost(uint32, tag = "14")] + pub talk_dialogue_id: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub event_unique_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub opnbhkjgjnj: ::prost::alloc::vec::Vec, } -/// Nested message and enum types in `GGHFIJKPFLN`. -pub mod gghfijkpfln { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ldeiocpifpo { + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub cgefamhiipl: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(enumeration = "Idjghokmlbo", tag = "11")] + pub aamaolkegdj: i32, + #[prost(oneof = "ldeiocpifpo::Ekodoagecdm", tags = "7")] + pub ekodoagecdm: ::core::option::Option, +} +/// Nested message and enum types in `LDEIOCPIFPO`. +pub mod ldeiocpifpo { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Micmckahmpl { + pub enum Ekodoagecdm { /// offset: 32 - #[prost(message, tag = "8")] - Jdijkegcibp(super::ItemList), + #[prost(message, tag = "7")] + Bhndfdbdkaf(super::ItemList), } } -/// Obf: BDMJEAGHPLC -#[derive(proto_derive::CmdID)] -#[cmdid(1899)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueInfoCsReq {} -/// Obf: ADKCCCNPLGC -#[derive(proto_derive::CmdID)] -#[cmdid(1823)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueInfoScRsp { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub rogue_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: EIHOHLCMLPC -#[derive(proto_derive::CmdID)] -#[cmdid(1898)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartRogueCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "3")] - pub area_id: u32, - /// offset: 48 - #[prost(uint32, tag = "6")] - pub aeon_id: u32, - /// offset: 40 - #[prost(uint32, repeated, tag = "10")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "8")] - pub base_avatar_id_list: ::prost::alloc::vec::Vec, -} -/// Obf: PELKOKJHNKO -#[derive(proto_derive::CmdID)] -#[cmdid(1865)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartRogueScRsp { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub scene: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "6")] - pub lineup: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub map_rotation_data: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 40 - #[prost(message, optional, tag = "12")] - pub rogue_info: ::core::option::Option, -} -/// Obf: GFNHCKLFLAP -#[derive(proto_derive::CmdID)] -#[cmdid(1883)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterRogueCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub area_id: u32, -} -/// Obf: NPABJLFGBDI -#[derive(proto_derive::CmdID)] -#[cmdid(1886)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterRogueScRsp { - /// offset: 56 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub lineup: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub scene: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "4")] - pub map_rotation_data: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub rogue_info: ::core::option::Option, -} -/// Obf: JGGMNELNGDE -#[derive(proto_derive::CmdID)] -#[cmdid(1894)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LeaveRogueCsReq {} -/// Obf: IDEOGGBCBII -#[derive(proto_derive::CmdID)] -#[cmdid(1852)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct LeaveRogueScRsp { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub scene: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub rogue_info: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "15")] - pub map_rotation_data: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 48 - #[prost(message, optional, tag = "13")] - pub lineup: ::core::option::Option, -} -/// Obf: OBAFPKBHHIL -#[derive(proto_derive::CmdID)] -#[cmdid(1892)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueFinishScNotify { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub finish_info: ::core::option::Option, -} -/// Obf: FOCOFPDDLCM -#[derive(proto_derive::CmdID)] -#[cmdid(1837)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PickRogueAvatarCsReq { - /// offset: 32 - #[prost(uint32, repeated, tag = "13")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub prop_entity_id: u32, -} -/// Obf: CINPIJDILBP -#[derive(proto_derive::CmdID)] -#[cmdid(1868)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PickRogueAvatarScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, -} -/// Obf: ICDCLEIGDMH -#[derive(proto_derive::CmdID)] -#[cmdid(1880)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ReviveRogueAvatarCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "11")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub interacted_prop_entity_id: u32, -} -/// Obf: FBGPONNAEFC -#[derive(proto_derive::CmdID)] -#[cmdid(1877)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ReviveRogueAvatarScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "15")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub fpjckpnlnfm: ::core::option::Option, -} -/// Obf: DIIFKMDKICI -#[derive(proto_derive::CmdID)] -#[cmdid(1855)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueReviveInfoScNotify { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub fpjckpnlnfm: ::core::option::Option, -} -/// Obf: NENAHMOLCCC -#[derive(proto_derive::CmdID)] -#[cmdid(1829)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueBuffEnhanceInfoCsReq {} -/// Obf: MFIONHFHMIL -#[derive(proto_derive::CmdID)] -#[cmdid(1838)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueBuffEnhanceInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub buff_enhance_info: ::core::option::Option, -} -/// Obf: GJDMAJGBGMB -#[derive(proto_derive::CmdID)] -#[cmdid(1803)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnhanceRogueBuffCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub ojeblmkkmgo: u32, -} -/// Obf: FMAFCNOGFMM -#[derive(proto_derive::CmdID)] -#[cmdid(1809)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnhanceRogueBuffScRsp { - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub rogue_buff: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 36 - #[prost(bool, tag = "11")] - pub is_success: bool, -} -/// Obf: JNLEPNDPGHE -#[derive(proto_derive::CmdID)] -#[cmdid(1850)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct QuitRogueCsReq { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub area_id: u32, -} -/// Obf: APJILFGNOPD -#[derive(proto_derive::CmdID)] -#[cmdid(1860)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct QuitRogueScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub rogue_info: ::core::option::Option, -} -/// Obf: BNAAMDHOODE -#[derive(proto_derive::CmdID)] -#[cmdid(1835)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncRogueExploreWinScNotify { - /// offset: 24 - #[prost(bool, tag = "8")] - pub gjboljkmgge: bool, -} -/// Obf: EKDFDNOAOAM -#[derive(proto_derive::CmdID)] -#[cmdid(1874)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueSeasonFinishScNotify { - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub lineup: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "4")] - pub pfeaniahfpc: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "10")] - pub finish_info: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "5")] - pub scene: ::core::option::Option, - /// offset: 56 - #[prost(bool, tag = "12")] - pub nioldfffeln: bool, -} -/// Obf: OAMBADLBMCE -#[derive(proto_derive::CmdID)] -#[cmdid(1821)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterRogueMapRoomCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub room_id: u32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub site_id: u32, -} -/// Obf: HINEEGEKLPN -#[derive(proto_derive::CmdID)] -#[cmdid(1810)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterRogueMapRoomScRsp { - /// offset: 32 - #[prost(message, optional, tag = "15")] - pub map_rotation_data: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "4")] - pub cur_site_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub lineup: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 40 - #[prost(message, optional, tag = "10")] - pub scene: ::core::option::Option, -} -/// Obf: IIJCCDGPOEC -#[derive(proto_derive::CmdID)] -#[cmdid(1870)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncRogueMapRoomScNotify { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub map_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub cur_room: ::core::option::Option, -} -/// Obf: HMIOCDLGEDG -#[derive(proto_derive::CmdID)] -#[cmdid(1872)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct OpenRogueChestCsReq { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub interacted_prop_entity_id: u32, - /// offset: 24 - #[prost(bool, tag = "2")] - pub eiddmghlpbp: bool, -} -/// Obf: MOIJDCLIOBJ -#[derive(proto_derive::CmdID)] -#[cmdid(1840)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct OpenRogueChestScRsp { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub nhanakjfeab: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "3")] - pub kjchgehdlno: ::core::option::Option, -} -/// Obf: KKFJNFAAIBA -#[derive(proto_derive::CmdID)] -#[cmdid(1866)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ExchangeRogueRewardKeyCsReq { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub count: u32, -} -/// Obf: ECAPFHDHGKJ -#[derive(proto_derive::CmdID)] -#[cmdid(1839)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ExchangeRogueRewardKeyScRsp { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub count: u32, -} -/// Obf: HLFKLMCHOJE -#[derive(proto_derive::CmdID)] -#[cmdid(1876)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncRogueAreaUnlockScNotify { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub area_id: u32, -} -/// Obf: CECLOCJFNEC -#[derive(proto_derive::CmdID)] -#[cmdid(1882)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueGetItemScNotify { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub iodfgfomgod: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub acfcjiomjnf: ::core::option::Option, -} -/// Obf: GNHOEINKCKC -#[derive(proto_derive::CmdID)] -#[cmdid(1875)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeRogueAeonLevelRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub aeon_id: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub level: u32, -} -/// Obf: JOBKDLIPMND -#[derive(proto_derive::CmdID)] -#[cmdid(1864)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueAeonLevelRewardScRsp { - /// offset: 32 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub reward: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub aeon_id: u32, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub level: u32, -} -/// Obf: BPGHIGPFECL -#[derive(proto_derive::CmdID)] -#[cmdid(1831)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueAeonLevelUpRewardScNotify { - /// offset: 36 - #[prost(uint32, tag = "10")] - pub aeon_id: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub level: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub reward: ::core::option::Option, -} -/// Obf: MIOMGCJAFBL -#[derive(proto_derive::CmdID)] -#[cmdid(1808)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueScoreRewardInfoCsReq {} -/// Obf: FKLPGPGBAMG -#[derive(proto_derive::CmdID)] -#[cmdid(1824)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueScoreRewardInfoScRsp { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub hndlhicdnpc: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: IHKPGEEPLIM -#[derive(proto_derive::CmdID)] -#[cmdid(1805)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueScoreRewardCsReq { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub hhjpblekapn: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub lmmfpcokhee: ::prost::alloc::vec::Vec, -} -/// Obf: GEMBNLDPOBD -#[derive(proto_derive::CmdID)] -#[cmdid(1851)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueScoreRewardScRsp { - /// offset: 40 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub pfeaniahfpc: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "7")] - pub hhjpblekapn: u32, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub reward: ::core::option::Option, -} -/// Obf: HOMKFNNAECD -#[derive(proto_derive::CmdID)] -#[cmdid(1853)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueInitialScoreCsReq {} -/// Obf: CIPBDJILBBD -#[derive(proto_derive::CmdID)] -#[cmdid(1842)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueInitialScoreScRsp { - /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub pfeaniahfpc: ::core::option::Option, -} -/// Obf: LDOIDBGBFPH -#[derive(proto_derive::CmdID)] -#[cmdid(1891)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueAeonInfoCsReq {} -/// Obf: DCOEBNOMGBP -#[derive(proto_derive::CmdID)] -#[cmdid(1873)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueAeonInfoScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub belofmfhfdk: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: ADPHMDMMGLO -#[derive(proto_derive::CmdID)] -#[cmdid(1890)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishAeonDialogueGroupCsReq { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub aeon_id: u32, -} -/// Obf: IBGMBDCMFLF -#[derive(proto_derive::CmdID)] -#[cmdid(1813)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct FinishAeonDialogueGroupScRsp { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 32 - #[prost(message, optional, tag = "10")] - pub reward: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub chmhpcngfao: ::core::option::Option, -} -/// Obf: MHHJHCPCHFI -#[derive(proto_derive::CmdID)] -#[cmdid(1887)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueTalentInfoCsReq {} -/// Obf: ILCKHHGKEEA -#[derive(proto_derive::CmdID)] -#[cmdid(1900)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueTalentInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub talent_info: ::core::option::Option, -} -/// Obf: OODLMLFFKIK -#[derive(proto_derive::CmdID)] -#[cmdid(1836)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnableRogueTalentCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub talent_id: u32, -} -/// Obf: IFCINKBKLNB -#[derive(proto_derive::CmdID)] -#[cmdid(1848)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnableRogueTalentScRsp { - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub talent_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: KHEPKPAMLIC +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(1847)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncRogueVirtualItemInfoScNotify { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub rogue_virtual_item_info: ::core::option::Option, -} -/// Obf: DAMIJKDDMHG +pub struct Hgjjmekhjab {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1820)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SyncRogueStatusScNotify { - /// offset: 28 - #[prost(enumeration = "RogueStatus", tag = "7")] - pub status: i32, - /// offset: 24 - #[prost(bool, tag = "11")] - pub jienhhahfgi: bool, -} -/// Obf: IJLPCNPDIAC -#[derive(proto_derive::CmdID)] -#[cmdid(1878)] +#[cmdid(1809)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueRewardInfoScNotify { +pub struct Ejbimmpcpio { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, /// offset: 16 #[prost(message, optional, tag = "10")] - pub pfeaniahfpc: ::core::option::Option, + pub rogue_game_info: ::core::option::Option, } -/// Obf: OOPEEPENBLM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1834)] +#[cmdid(1838)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRoguePickAvatarInfoScNotify { - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub avatar_id_list: ::prost::alloc::vec::Vec, -} -/// Obf: DFILFJKBNCN -#[derive(proto_derive::CmdID)] -#[cmdid(1833)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueAeonScNotify { - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub gcjogflgbbh: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Llpnbnejkii { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub map_rotation_data: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub scene: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "7")] - pub lineup: ::core::option::Option, -} -/// Obf: HNBFGCCIHPL -#[derive(proto_derive::CmdID)] -#[cmdid(7676)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueArcadeStartCsReq { +pub struct Flmkdfpnlnn { + /// offset: 48 + #[prost(uint32, tag = "15")] + pub aeon_id: u32, /// offset: 16 #[prost(uint32, repeated, tag = "8")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub room_id: u32, -} -/// Obf: DFCGFNCOCDN -#[derive(proto_derive::CmdID)] -#[cmdid(7678)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueArcadeStartScRsp { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub room_id: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: OOBNALGAHBC -#[derive(proto_derive::CmdID)] -#[cmdid(7671)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueArcadeLeaveCsReq {} -/// Obf: PLFJLIKALKC -#[derive(proto_derive::CmdID)] -#[cmdid(7688)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueArcadeLeaveScRsp { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, -} -/// Obf: FBJMBKBMKAC -#[derive(proto_derive::CmdID)] -#[cmdid(7655)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueArcadeRestartCsReq {} -/// Obf: NHLJKOMFHHO -#[derive(proto_derive::CmdID)] -#[cmdid(7677)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueArcadeRestartScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub lcoclenjjai: ::core::option::Option, -} -/// Obf: IBDABBKGKLM -#[derive(proto_derive::CmdID)] -#[cmdid(7670)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueArcadeGetInfoCsReq {} -/// Obf: DAGJBPCCNDJ -#[derive(proto_derive::CmdID)] -#[cmdid(7694)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueArcadeGetInfoScRsp { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub room_id: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ffamnkoaihf { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub buff_id: u32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub meipgemgacj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gckblhadlgn { - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub buff_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Elheaghnndm { - /// offset: 88 - #[prost(uint32, tag = "2")] - pub bheidppfcka: u32, - /// offset: 56 - #[prost(enumeration = "Nniohhmjghg", tag = "1")] - pub hhmabjdimgm: i32, - /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub cpiaahjfigl: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(bool, tag = "9")] - pub ehpmcgoelgb: bool, - /// offset: 60 - #[prost(uint32, tag = "3")] - pub cmogblhafhn: u32, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub fpoelpfcnbi: ::core::option::Option, - /// offset: 32 - #[prost(uint32, repeated, tag = "11")] - pub pdihilclenm: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "5")] - pub djfckfemgoj: u32, - /// offset: 76 - #[prost(uint32, tag = "4")] - pub ekflpnlapdf: u32, - /// offset: 72 - #[prost(uint32, tag = "12")] - pub igchbpakbcb: u32, - /// offset: 84 - #[prost(uint32, tag = "13")] - pub pdapeheambm: u32, - /// offset: 40 - #[prost(message, repeated, tag = "15")] - pub kkhdljfohkc: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "14")] - pub ckkekmjmabc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hkhfbelmdcg { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub dhmnnemgfbl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hcajjefeijd {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mmndajfijoj {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Djonnopdjhh { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub nlnbngijafi: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kglojonkmkp { - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub item_cost_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub buff_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ngpimhhelmm { - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub dakmmpkbmko: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Inempcaknnc { - /// offset: 40 - #[prost(uint32, tag = "10")] - pub bilbohbdbpn: u32, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub ihgmpjnnmki: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub clplefhhafb: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lefcomgmpcl { - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub ihgmpjnnmki: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub bilbohbdbpn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pbmaklnjeko { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub ljejkccbcha: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fkdbihnpche {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ipgkagffbhf { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub bilbohbdbpn: u32, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub dlfmgkpgmhl: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Okefiddnlkg { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub dhmnnemgfbl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dlhpdalgdeh {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kbpmfkknbjh { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub bilbohbdbpn: u32, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub kkhdljfohkc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bfbfmlbhgoh { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub dhmnnemgfbl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oopdmmnnkgi {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kcacnhcadec { - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub lchkkhngbgj: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gjoibmfanhl { - /// offset: 24 - #[prost(map = "uint32, uint32", tag = "8")] - pub gmafejejbho: ::std::collections::HashMap, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub blfaanhjpad: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub deidchamdba: u32, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub cur_times: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lajbhghnbac { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub bemceedabfd: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub jalamopldho: ::core::option::Option, - /// offset: 36 - #[prost(bool, tag = "3")] - pub ganhklnpapi: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jpajnjbebfb { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub jibdgcfcdio: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gliaipcabim { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub deidchamdba: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ibibpoopden { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub jibdgcfcdio: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub lgjfnaiagld: u32, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub fkpihaahhbi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Maaaagpjjfe { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub jibdgcfcdio: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pbaloejcgfn { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub bemceedabfd: u32, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub jalamopldho: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hblnhganbab { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub jibdgcfcdio: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ajpfphkklpg { - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub ckgfonmaeko: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ebhghgiigom { - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub jacighhgcgb: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "3")] - pub bmfcbcmclaf: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub komjmfikbam: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub bilbohbdbpn: u32, - /// offset: 40 - #[prost(bool, tag = "15")] - pub apikleggdhm: bool, + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 52 - #[prost(uint32, tag = "10")] - pub oooecpaacck: u32, + #[prost(uint32, tag = "9")] + pub area_id: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "6")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "4")] + pub fncabmlhcim: ::prost::alloc::vec::Vec, } +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mpphhnaeedk { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub cghlhfnladn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cffocchbamh {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jfpfdjppoag {} -#[derive(proto_derive::CmdID)] +#[cmdid(1817)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Honkbmjpjaa { +pub struct Lmbfknbbian { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub rogue_game_info: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub andajclclom: ::core::option::Option, /// offset: 16 + #[prost(message, optional, tag = "1")] + pub lineup: ::core::option::Option, + /// offset: 40 #[prost(message, optional, tag = "10")] - pub cjenjifeidi: ::core::option::Option, + pub scene: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "3")] + pub retcode: u32, } +/// Type: Req #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Anmcaimelca { - /// offset: 16 - #[prost(uint32, repeated, tag = "15")] - pub cmaggnfdkag: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gabbehoipjc { +#[cmdid(1851)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kgaecmdgbnh { /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub dcjeggjpcdf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "11")] + pub area_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1811)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aajkbeebdam { + /// offset: 48 + #[prost(message, optional, tag = "6")] + pub rogue_game_info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub andajclclom: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "10")] - pub bilbohbdbpn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nalelighdaa { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub abmamcfpcci: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Paocongeljk {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mlkiccaelke { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub bilbohbdbpn: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub anbpnihmkah: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pkodmmphibc { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub jibhljneicm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Blfjbkbhjil {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eakecfappkd { - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub fikenbeondj: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub bilbohbdbpn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nhckhplklio { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub ibemojgallk: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Omjfmbjmfmc {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eldafcnmfbf { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub bilbohbdbpn: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub mdpdadooobn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lhjpikekpgh { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub gakjolgdbbd: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Moiknhhcabh {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lcagiooiidn { - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub jlhfojodokg: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub bilbohbdbpn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Imcbiigokpm { - /// offset: 24 + #[prost(message, optional, tag = "2")] + pub lineup: ::core::option::Option, + /// offset: 56 #[prost(uint32, tag = "13")] - pub cghlhfnladn: u32, + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub scene: ::core::option::Option, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(1889)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fhikplaioei {} +pub struct Fddecgpjdkd {} +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(1820)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ofpeknmfmab { +pub struct Edefmjmjhdg { + /// offset: 56 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 48 + #[prost(message, optional, tag = "3")] + pub scene: ::core::option::Option, /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub jlhfojodokg: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "11")] + pub rogue_game_info: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "7")] - pub bilbohbdbpn: u32, + #[prost(message, optional, tag = "12")] + pub andajclclom: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub lineup: ::core::option::Option, } +/// Type: Notify #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lkmkhacmapc { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub cghlhfnladn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nococfhoajc {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Imlbibjkpdb { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub eidnigddohp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jcahmiooldb {} -#[derive(proto_derive::CmdID)] +#[cmdid(1850)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nkidddpflje { +pub struct Nijglmiefig { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub rogue_finish_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1881)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ijfgbbjndmp { + /// offset: 16 + #[prost(uint32, repeated, tag = "1")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub prop_entity_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1893)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dfeopehibpm { + /// offset: 40 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "9")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1810)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Njkdjfmnkhg { + /// offset: 32 + #[prost(uint32, repeated, tag = "13")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub interacted_prop_entity_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1867)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lokbanidppg { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub dgaggcpodkg: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "10")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1870)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kdhbfohebpd { + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub dgaggcpodkg: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1898)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kbhgegnhgpd {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1846)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nggmfnpnken { + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub dghcmekdcon: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1892)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cbeddknmndo { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub maze_buff_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1814)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ebmighofadn { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub aphcnkfmmil: ::core::option::Option, + /// offset: 36 + #[prost(bool, tag = "8")] + pub boghpmklged: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1813)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hgilbkeaann { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub area_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1801)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Noohanihdob { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub rogue_game_info: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1877)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mbcomibjkid { + /// offset: 24 + #[prost(bool, tag = "11")] + pub mbcgaklfjkg: bool, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1819)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dncmgmkkehp { + /// offset: 40 + #[prost(message, optional, tag = "6")] + pub rogue_score_reward_info: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "13")] + pub scene: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "1")] + pub lineup: ::core::option::Option, /// offset: 16 #[prost(message, optional, tag = "14")] - pub jlnilijomem: ::core::option::Option, + pub rogue_finish_info: ::core::option::Option, + /// offset: 56 + #[prost(bool, tag = "9")] + pub fjokopljnnp: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1888)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cfcmngnhgfb { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub site_id: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub room_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1803)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Milmmefnlnj { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub scene: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "11")] + pub lineup: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub andajclclom: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub gnnmlmjlaaf: u32, + /// offset: 52 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1833)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ghpmfebldam { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub map_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub idagjliclom: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1872)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ipfidhaanhm { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub interacted_prop_entity_id: u32, + /// offset: 28 + #[prost(bool, tag = "14")] + pub pgfmfkpjlmc: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1865)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Piiijlcpaml { + /// offset: 48 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub pkinokcincf: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub drop_data: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1839)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Djhjnjikkpi { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub count: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1879)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gmahmmhhmab { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub count: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1886)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pmjflccjgnb { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub area_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1828)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jkgandlbmdp { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub get_item_list: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub cfeiichbjob: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1854)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bkhjbhhfibe { + /// offset: 28 + #[prost(uint32, tag = "1")] + pub aeon_id: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub level: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1840)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kamdnpbkkel { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub aeon_id: u32, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub level: u32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub reward: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1899)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dfnehaihgkk { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub level: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub aeon_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1823)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ahifjegegbh {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1890)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jgmgpjbilhj { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub doflagfnkbn: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1862)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Laflmchdlme { + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub mjlldkbbhfe: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub dfanhajpkah: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1835)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aimeohgggph { + /// offset: 40 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "14")] + pub dfanhajpkah: u32, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub rogue_score_reward_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1855)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ddeocjjmgea {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1830)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iejdcckfgec { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub rogue_score_reward_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1894)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bodkpnefbbp {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1887)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jdigbedafak { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub ddokpjhgegi: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1860)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pfifbakbdjf { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub aeon_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1808)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bobpimeikni { + /// offset: 40 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "11")] + pub pehfgbfodma: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1875)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nnafacgkdob {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1864)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bfkhhonbnmb { + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub fhckbpigcjc: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1856)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Celpbbfekop { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub gjjkacomphd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1816)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ikiokkgfneg { + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub fhckbpigcjc: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1882)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mjmmoiainak { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub eojaklgbjek: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1874)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ekcdcnhjibc { + /// offset: 24 + #[prost(bool, tag = "13")] + pub ofcjmfpecjl: bool, + /// offset: 28 + #[prost(enumeration = "Ffmgdehfoai", tag = "8")] + pub status: i32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1842)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ihcjajgpjkk { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub rogue_score_reward_info: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1863)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lkhcffgaekf { + /// offset: 24 + #[prost(uint32, repeated, tag = "10")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1848)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Loebiphoohn { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub gckfakeiidg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dlcjmohobdh { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub imoiceebdco: ::prost::alloc::vec::Vec, +pub struct Ffkpeaiejnj { + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub lineup: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "9")] + pub scene: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub andajclclom: ::core::option::Option, } +/// Type: Req #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bcllbmeedkp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub amnkmbmhkdf: u32, +#[cmdid(7669)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pkklllanpfg { + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "11")] - pub bpjoapfafkk: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub mnkeniamhdd: u32, + pub room_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7652)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lcamcnofpmp { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "5")] - pub dafalaoaooi: u32, + #[prost(message, optional, tag = "11")] + pub fillifehlki: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub room_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7698)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kgchihceink {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7655)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lmaheglkojj { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub fillifehlki: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7685)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Baeodimmfge {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7683)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pbnfegelhpb { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub fillifehlki: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7681)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fkdebaicaao {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7675)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pgfgeeadljp { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub room_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kildamjjlmf { +pub struct Mncgnpkncad { /// offset: 28 - #[prost(uint32, tag = "12")] - pub num: u32, + #[prost(uint32, tag = "3")] + pub cmcjnaeojdl: u32, /// offset: 24 + #[prost(uint32, tag = "1")] + pub buff_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gagpkpoclin { + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub buff_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ojlenibghno { + /// offset: 80 + #[prost(uint32, tag = "15")] + pub inplpeoillo: u32, + /// offset: 64 + #[prost(uint32, tag = "10")] + pub maomlaihcnk: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "13")] + pub mkkpfcljble: ::prost::alloc::vec::Vec, + /// offset: 76 + #[prost(uint32, tag = "3")] + pub dnneckdlhnh: u32, + /// offset: 84 + #[prost(enumeration = "Mddkplgkfgn", tag = "12")] + pub phkopcbnocc: i32, + /// offset: 68 #[prost(uint32, tag = "14")] - pub display_type: u32, + pub gmiijpidicm: u32, + /// offset: 56 + #[prost(uint32, tag = "1")] + pub dpojoglhpgf: u32, + /// offset: 72 + #[prost(uint32, tag = "8")] + pub hkdkjakcmgj: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub ikpnmjemdkj: ::prost::alloc::vec::Vec, + /// offset: 88 + #[prost(bool, tag = "7")] + pub gmkjijmejip: bool, + /// offset: 32 + #[prost(message, repeated, tag = "9")] + pub bnhdmkmijpj: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "4")] + pub moofaoipdfc: u32, + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub pkailbjdkah: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mdgjikljdde { +pub struct Jmaijohcofc { /// offset: 24 #[prost(uint32, tag = "11")] + pub fbkafmchpfe: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bkkdbhaioia {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ioilnggdckn {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hnjflcgflag { + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub laklddnpeek: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cbaaepmlije { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub cost_data: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub buff_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Egpkfdfoahj { + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub agkpejnagcf: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kognmiajhdp { + /// offset: 40 + #[prost(uint32, tag = "7")] + pub ieglikmnaeo: u32, + /// offset: 32 + #[prost(message, repeated, tag = "8")] + pub apilookijac: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub pibmjeoapgm: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gjkdjfegnja { + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub pibmjeoapgm: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub ieglikmnaeo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cmakciimcnj { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub cncajcphgcn: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jeaalidkoki {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kfcldicghco { + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub dakdjakpbdi: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub ieglikmnaeo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dmdmfapglhi { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub fbkafmchpfe: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iippkppnnlg {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Konabechkhc { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub ieglikmnaeo: u32, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub bnhdmkmijpj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ohacbnimhgk { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub fbkafmchpfe: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hfpmfkeghgb {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aipgdmcnfgi { + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub akkfmdipcbh: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lejlbpnjnkd { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub cur_times: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub mpklhhlonio: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub dogjcpgolob: u32, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "1")] + pub fppemjhaaac: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cgpjcbcijeh { + /// offset: 32 + #[prost(bool, tag = "7")] + pub gldjlidkhdf: bool, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub kmlmnbganbm: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub deibfohehpe: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Clhnhjfalih { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub haejgohgfdk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gilepfbmkhh { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub dogjcpgolob: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Apflcmaihkk { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub haejgohgfdk: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub gfaneejejaf: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub amcdhpgkpeb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ffonempcbbl { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub haejgohgfdk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Afodilooija { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub deibfohehpe: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub kmlmnbganbm: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fdpbacnjfee { + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub haejgohgfdk: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kdclmekkmao { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub lacafpihpgb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nakjpblebdf { + /// offset: 48 + #[prost(bool, tag = "1")] + pub icefmdlbdhm: bool, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub nlcoapcigok: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "5")] + pub pgbglhnkldd: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "4")] + pub ieglikmnaeo: u32, + /// offset: 52 + #[prost(uint32, tag = "15")] + pub pldmidhcacp: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "13")] + pub jalleegolkl: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pmomajoifff { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub ghennnmodmk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cpklcfhmlgn {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lgdgkofcaea {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pjelfjmlhai { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub lkfmekhkbna: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dmcoochhpgg { + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub hfggdnbmpbn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dndnhifbhad { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub ieglikmnaeo: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "10")] + pub goillcchgmp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lhpghgkgcpc { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub inedifgfbmk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gblhkeoalkn {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kklhcopjblg { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub ieglikmnaeo: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "14")] + pub kijkemhaeng: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Liiebhpdela { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub ojhpnmmpjfd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jjgkcbcahcf {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jlhaijecgho { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub ieglikmnaeo: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub edajbncbfon: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Npfnlpeddlb { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub ejmdbiikgba: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Idphpjgibje {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mfppdhlfbbc { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub ieglikmnaeo: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub emipenkbhno: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ehmlldddobc { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub ojmfhdinnan: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cbbipobipho {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lfcnjnbcpge { + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub mjddkdnnpfc: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub ieglikmnaeo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ghonlcpddkp { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub ghennnmodmk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ckbopmechph {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cndkfldkako { + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub mjddkdnnpfc: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub ieglikmnaeo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kobncjfljnc { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub ghennnmodmk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bdpgbjefhef {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fffbgeplhhd { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub cnpjihngpmh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Inibcnbhgcm {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eojalglnhfe { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub anpphhgfcgc: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jdacnnnlcph { + /// offset: 24 + #[prost(uint32, repeated, tag = "10")] + pub pmjfaencpeh: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kccpmakbjba { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub edbkgdkjedd: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub rogue_money: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub ambkdppmejb: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub eocobdlcieg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ekjafokehof { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub display_type: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub num: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jjfgeilmloi { + /// offset: 24 + #[prost(uint32, tag = "12")] pub avatar_id: u32, /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "15")] + #[prost(enumeration = "AvatarType", tag = "8")] pub avatar_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ddjhdehmhcf { +pub struct Nalkkejkdjp { /// offset: 24 - #[prost(uint32, tag = "14")] - pub geefhdjkokg: u32, - /// offset: 28 #[prost(uint32, tag = "11")] - pub bnckfbfmgmi: u32, + pub nnnljfbpdcm: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub glcemiombci: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cfellcpmonh { - /// offset: 16 - #[prost(message, optional, tag = "7")] +pub struct Nfoiegjiapp { + /// offset: 24 + #[prost(message, optional, tag = "11")] pub item_list: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oiaolbgoaag { +pub struct Eknjdhiaomd { + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub ennmnnojmnk: ::core::option::Option, /// offset: 24 - #[prost(message, optional, tag = "11")] - pub noaednnibaf: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub hhphlegcldm: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub hkajednpfnh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ahccdbfmndi {} +pub struct Bedhhdmbhic {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aokijgcoapd { +pub struct Ijjoicgnjem { /// offset: 24 - #[prost(int32, tag = "4")] + #[prost(int32, tag = "13")] pub count: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cihfcleakij { +pub struct Ehphhgkflnl { /// offset: 24 - #[prost(uint32, tag = "5")] - pub deidchamdba: u32, + #[prost(uint32, tag = "2")] + pub dogjcpgolob: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ekelnnlplod {} +pub struct Ehmdadpnlfb {} #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct RogueAdventureRoomGameplayWolfGunTarget { #[prost( oneof = "rogue_adventure_room_gameplay_wolf_gun_target::TargetImpl", - tags = "15, 6, 7, 12" + tags = "15, 4, 6, 12" )] pub target_impl: ::core::option::Option< rogue_adventure_room_gameplay_wolf_gun_target::TargetImpl, @@ -39477,5878 +40261,5869 @@ pub mod rogue_adventure_room_gameplay_wolf_gun_target { pub enum TargetImpl { /// offset: 16 #[prost(message, tag = "15")] - TargetNone(super::Ahccdbfmndi), + TargetNone(super::Bedhhdmbhic), + /// offset: 16 + #[prost(message, tag = "4")] + TargetCoin(super::Ijjoicgnjem), /// offset: 16 #[prost(message, tag = "6")] - TargetCoin(super::Aokijgcoapd), - /// offset: 16 - #[prost(message, tag = "7")] - TargetMiracle(super::Cihfcleakij), + TargetMiracle(super::Ehphhgkflnl), /// offset: 16 #[prost(message, tag = "12")] - TargetRuanmei(super::Ekelnnlplod), + TargetRuanmei(super::Ehmdadpnlfb), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ckjcfdjkdfg { +pub struct Cmickllgjah { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub bdahodnlilh: u32, /// offset: 16 - #[prost(message, repeated, tag = "6")] + #[prost(message, repeated, tag = "10")] pub battle_target_list: ::prost::alloc::vec::Vec< RogueAdventureRoomGameplayWolfGunTarget, >, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub dhpabbnjoli: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fhepdkkhfcf { - #[prost(oneof = "fhepdkkhfcf::Info", tags = "15")] - pub info: ::core::option::Option, +pub struct Klefcenhhbc { + #[prost(oneof = "klefcenhhbc::Mlneddhojgc", tags = "7")] + pub mlneddhojgc: ::core::option::Option, } -/// Nested message and enum types in `FHEPDKKHFCF`. -pub mod fhepdkkhfcf { +/// Nested message and enum types in `KLEFCENHHBC`. +pub mod klefcenhhbc { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Mlneddhojgc { /// offset: 16 - #[prost(message, tag = "15")] - Lachncfkako(super::Ckjcfdjkdfg), + #[prost(message, tag = "7")] + Dmcnaccpodb(super::Cmickllgjah), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cncajkhccec { - /// offset: 48 - #[prost(uint32, tag = "11")] - pub score: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub blndmfgkpmj: ::core::option::Option, +pub struct Nheogkhgpnm { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub score_id: u32, /// offset: 36 - #[prost(uint32, tag = "1")] - pub dpmleipaoil: u32, - /// offset: 40 - #[prost(double, tag = "5")] - pub bdebmbgffka: f64, - /// offset: 52 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "12")] pub status: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub mcmclafdldc: u32, + /// offset: 48 + #[prost(uint32, tag = "13")] + pub hnpemmagngk: u32, + /// offset: 52 + #[prost(uint32, tag = "11")] + pub dlkbdijmipl: u32, + /// offset: 40 + #[prost(double, tag = "10")] + pub hmgkhohjfoo: f64, + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub mpilhnmbfoe: ::core::option::Option, } -/// Obf: FAILBACOKOC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5699)] +#[cmdid(5647)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueAdventureRoomInfoScNotify { +pub struct Emdbegpfmao { /// offset: 16 - #[prost(message, optional, tag = "12")] - pub cdlakdmejlg: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub agkkahneama: ::core::option::Option, } -/// Obf: LBPGOHNBLBH -#[derive(proto_derive::CmdID)] -#[cmdid(5623)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct PrepareRogueAdventureRoomCsReq {} -/// Obf: IFHLBMILDMA -#[derive(proto_derive::CmdID)] -#[cmdid(5698)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct PrepareRogueAdventureRoomScRsp { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub cdlakdmejlg: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: BDGBOBPJOGB -#[derive(proto_derive::CmdID)] -#[cmdid(5603)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StopRogueAdventureRoomCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub ipogaccfmol: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub mmhmdhihcab: u32, -} -/// Obf: DENAOGJPCGJ +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5609)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StopRogueAdventureRoomScRsp { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub cdlakdmejlg: ::core::option::Option, -} -/// Obf: LFDFIILGOAD -#[derive(proto_derive::CmdID)] -#[cmdid(5615)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueAdventureRoomInfoCsReq {} -/// Obf: HOOKBCONPPB +pub struct Odfbpoallpd {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5638)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ijniplkkibo { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub agkkahneama: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5692)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueAdventureRoomInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub cdlakdmejlg: ::core::option::Option, -} -/// Obf: NNKAPOCKHDF -#[derive(proto_derive::CmdID)] -#[cmdid(5606)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UpdateRogueAdventureRoomScoreCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub hmffhgbkogl: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub score: u32, -} -/// Obf: LDDPPCFOHGJ -#[derive(proto_derive::CmdID)] -#[cmdid(5663)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct UpdateRogueAdventureRoomScoreScRsp { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub cdlakdmejlg: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ahclnmjpmij { - /// offset: 44 - #[prost(bool, tag = "15")] - pub poapegkpfob: bool, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub deidchamdba: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub nblffdipbhi: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "6")] - pub item_cost_list: ::core::option::Option, - /// offset: 45 - #[prost(bool, tag = "2")] - pub bphcbohkhmd: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mgkfkecfhhm { - /// offset: 49 - #[prost(bool, tag = "7")] - pub bphcbohkhmd: bool, +pub struct Ekmbhacdncn { /// offset: 16 - #[prost(message, optional, tag = "3")] - pub nblffdipbhi: ::core::option::Option, - /// offset: 48 - #[prost(bool, tag = "12")] - pub poapegkpfob: bool, + #[prost(uint32, repeated, tag = "2")] + pub bokihefimac: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(message, optional, tag = "11")] - pub item_cost_list: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub leaaebafchp: u32, - /// offset: 44 - #[prost(uint32, tag = "14")] - pub buff_id: u32, + #[prost(uint32, tag = "10")] + pub fejjmohhnlj: u32, } +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(5614)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iilhoakjdnh { +pub struct Jkoflffjdbm { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub agkkahneama: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5652)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ngponcgihag {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5650)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mlpgiloaglh { + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub agkkahneama: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5685)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Emilpjehkkd { + /// offset: 28 + #[prost(uint32, tag = "1")] + pub hgcahiekmjb: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub score_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5625)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jbencneakpe { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, /// offset: 24 #[prost(message, optional, tag = "15")] - pub nblffdipbhi: ::core::option::Option, - /// offset: 44 - #[prost(bool, tag = "5")] - pub bphcbohkhmd: bool, + pub agkkahneama: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kibebiebeje { /// offset: 40 + #[prost(bool, tag = "6")] + pub mdokphmebpm: bool, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub dogjcpgolob: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub cost_data: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "4")] + pub klkocomocmc: ::core::option::Option, + /// offset: 41 + #[prost(bool, tag = "3")] + pub djfiodafcil: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cliidhknipa { + /// offset: 48 #[prost(uint32, tag = "14")] - pub formula_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub item_cost_list: ::core::option::Option, - /// offset: 45 - #[prost(bool, tag = "11")] - pub poapegkpfob: bool, + pub buff_id: u32, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub mehoapjkdld: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub cost_data: ::core::option::Option, + /// offset: 41 + #[prost(bool, tag = "6")] + pub djfiodafcil: bool, + /// offset: 40 + #[prost(bool, tag = "2")] + pub mdokphmebpm: bool, + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub klkocomocmc: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nnjolkjlpjg { +pub struct Ogdpjjfjccl { /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub ckgfonmaeko: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "5")] + pub cost_data: ::core::option::Option, + /// offset: 41 + #[prost(bool, tag = "14")] + pub djfiodafcil: bool, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub cndilnhdjkh: u32, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub klkocomocmc: ::core::option::Option, + /// offset: 40 + #[prost(bool, tag = "7")] + pub mdokphmebpm: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Anjdkfjoeei { +pub struct Gdikpheddgm { + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub lacafpihpgb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lhinhnlpmop { + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub buff_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ccgelggmjah { /// offset: 24 #[prost(message, repeated, tag = "1")] - pub buff_list: ::prost::alloc::vec::Vec, + pub bbdlgkepjnn: ::prost::alloc::vec::Vec, } +/// Type: Req #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Glppdleccli { - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub omfdhfgbgaa: ::prost::alloc::vec::Vec, -} -/// Obf: ELOAFLAJHBO -#[derive(proto_derive::CmdID)] -#[cmdid(5686)] +#[cmdid(5611)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueShopBuffInfoCsReq { - /// offset: 28 - #[prost(bool, tag = "14")] - pub hmilghcpede: bool, +pub struct Lndhkmmpbfj { /// offset: 24 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "3")] pub interacted_prop_entity_id: u32, + /// offset: 28 + #[prost(bool, tag = "10")] + pub cpfpimafbna: bool, } -/// Obf: OCDHGBDJNEO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5694)] +#[cmdid(5689)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueShopBuffInfoScRsp { +pub struct Aglbfjiidkj { /// offset: 48 - #[prost(int32, tag = "11")] - pub aefhkanbfnc: i32, - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub lgopnbhhhbg: ::core::option::Option, + #[prost(int32, tag = "13")] + pub hjbdopcocih: i32, + /// offset: 40 + #[prost(int32, tag = "10")] + pub dphpadiejbb: i32, /// offset: 44 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "1")] pub retcode: u32, /// offset: 24 - #[prost(message, optional, tag = "14")] - pub ihjhccfmifd: ::core::option::Option, - /// offset: 40 - #[prost(int32, tag = "5")] - pub efojocfgidj: i32, + #[prost(message, optional, tag = "7")] + pub omncfpdhccb: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub boncaalanbg: ::core::option::Option, } -/// Obf: ABDPCGBPFLH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5665)] +#[cmdid(5617)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueShopMiracleInfoCsReq { +pub struct Fjggnhodadk { /// offset: 28 - #[prost(bool, tag = "9")] - pub hmilghcpede: bool, - /// offset: 24 #[prost(uint32, tag = "7")] pub interacted_prop_entity_id: u32, + /// offset: 24 + #[prost(bool, tag = "12")] + pub cpfpimafbna: bool, } -/// Obf: LOJEMCFFBJD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5683)] +#[cmdid(5651)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueShopMiracleInfoScRsp { +pub struct Njddmapmnkl { + /// offset: 44 + #[prost(int32, tag = "6")] + pub hjbdopcocih: i32, /// offset: 40 - #[prost(int32, tag = "3")] - pub aefhkanbfnc: i32, - /// offset: 48 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 44 - #[prost(int32, tag = "11")] - pub efojocfgidj: i32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub ihjhccfmifd: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub eeppkmpajoh: ::core::option::Option, -} -/// Obf: PPLOEIKJAMO -#[derive(proto_derive::CmdID)] -#[cmdid(5636)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueShopFormulaInfoCsReq { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub interacted_prop_entity_id: u32, - /// offset: 24 - #[prost(bool, tag = "11")] - pub hmilghcpede: bool, -} -/// Obf: OKNJBLFCFBJ -#[derive(proto_derive::CmdID)] -#[cmdid(5648)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueShopFormulaInfoScRsp { - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub ihjhccfmifd: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub ckaanmddkcj: ::core::option::Option, - /// offset: 44 #[prost(int32, tag = "2")] - pub aefhkanbfnc: i32, - /// offset: 40 - #[prost(int32, tag = "3")] - pub efojocfgidj: i32, + pub dphpadiejbb: i32, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub omncfpdhccb: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub iicdmmgjdno: ::core::option::Option, /// offset: 48 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "11")] pub retcode: u32, } -/// Obf: AGPIFOFNCNA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5628)] +#[cmdid(5656)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct BuyRogueShopFormulaCsReq { +pub struct Hibpkpmlbbp { /// offset: 28 - #[prost(uint32, tag = "11")] - pub interacted_prop_entity_id: u32, + #[prost(bool, tag = "4")] + pub cpfpimafbna: bool, /// offset: 24 #[prost(uint32, tag = "1")] - pub deidchamdba: u32, + pub interacted_prop_entity_id: u32, } -/// Obf: MHDDHODMMIA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5644)] +#[cmdid(5616)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct BuyRogueShopBuffCsReq { +pub struct Nelflkmaaag { + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub omncfpdhccb: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 40 + #[prost(int32, tag = "2")] + pub dphpadiejbb: i32, /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub bought_miracle_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "7")] + pub aedlbnopmnb: ::core::option::Option, + /// offset: 48 + #[prost(int32, tag = "9")] + pub hjbdopcocih: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5620)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mpjcfeflgjk { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub dogjcpgolob: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub interacted_prop_entity_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5691)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dimmgdfhaed { + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub buff_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub interacted_prop_entity_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5612)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hceekioaekn { + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub mnaccdmmgag: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "10")] pub interacted_prop_entity_id: u32, } -/// Obf: HMOLHFMAJBG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5652)] +#[cmdid(5695)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct BuyRogueShopMiracleCsReq { +pub struct Bjajdpcgdae { /// offset: 32 - #[prost(uint32, tag = "1")] - pub interacted_prop_entity_id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub aoiihcfmfph: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub iicdmmgjdno: ::core::option::Option, } -/// Obf: PDHLODCDANK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5619)] +#[cmdid(5661)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct BuyRogueShopMiracleScRsp { - /// offset: 16 +pub struct Mpllhjcdkfn { + /// offset: 24 #[prost(message, optional, tag = "8")] - pub eeppkmpajoh: ::core::option::Option, + pub boncaalanbg: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: JOBBMGDPHDE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5681)] +#[cmdid(5605)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct BuyRogueShopBuffScRsp { +pub struct Cfiehabldoc { + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub aedlbnopmnb: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "3")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub lgopnbhhhbg: ::core::option::Option, } -/// Obf: GLPLAMBGPFJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5626)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct BuyRogueShopFormulaScRsp { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub ckaanmddkcj: ::core::option::Option, - /// offset: 32 +#[cmdid(5645)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mocfdohfpcf { + /// offset: 24 #[prost(uint32, tag = "4")] - pub retcode: u32, + pub jjfdenfnnli: u32, } -/// Obf: FHGMELFEJKN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5669)] +#[cmdid(5676)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueNpcDisappearCsReq { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub icinggkoemg: u32, -} -/// Obf: DEPHMGJOMCM -#[derive(proto_derive::CmdID)] -#[cmdid(5657)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueNpcDisappearScRsp { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: MAJNGEFBHDG -#[derive(proto_derive::CmdID)] -#[cmdid(5689)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueShopBeginBattleCsReq { +pub struct Damecijdloe { /// offset: 24 #[prost(uint32, tag = "12")] - pub interacted_prop_entity_id: u32, -} -/// Obf: GFLHCFLNPBB -#[derive(proto_derive::CmdID)] -#[cmdid(5607)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueShopBeginBattleScRsp { - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub nopheehjhek: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "5")] pub retcode: u32, } -/// Obf: BNCCMIIMGOL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5641)] +#[cmdid(5643)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bchglijbdha { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub interacted_prop_entity_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5684)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueCommonActionResultScNotify { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub rogue_sub_mode: u32, +pub struct Mbnabdojjjn { + /// offset: 24 + #[prost(message, optional, tag = "2")] + pub bbmdjjcomhf: ::core::option::Option, /// offset: 32 - #[prost(enumeration = "RogueCommonActionResultDisplayType", tag = "11")] + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5666)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ibdfbfggghm { + /// offset: 36 + #[prost(enumeration = "Jadbemoicgc", tag = "13")] pub display_type: i32, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub ekolmjjicdm: u32, /// offset: 16 - #[prost(message, repeated, tag = "4")] - pub action_result_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub imkeiipjhgl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueCommonActionResult { +pub struct Jbbffbhpgkf { /// offset: 32 - #[prost(enumeration = "Cfjgpifiool", tag = "15")] + #[prost(enumeration = "Jjmpgnedhhj", tag = "4")] pub source: i32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub pbhmgchkjgo: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub jmbfiljlcef: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aenockpnfci { +pub struct Negpgejalep { /// offset: 28 - #[prost(int32, tag = "15")] - pub jpcllfaieec: i32, + #[prost(int32, tag = "3")] + pub lgcabelgpca: i32, /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "11")] pub key: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mlpknllaoif { +pub struct Gnleeejchfi { /// offset: 28 - #[prost(int32, tag = "7")] - pub cfclogfjpbd: i32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub jpnfbfkhpgd: u32, + #[prost(uint32, tag = "9")] + pub nioefmnhloh: u32, /// offset: 32 - #[prost(int32, tag = "11")] - pub eegcbbhophg: i32, + #[prost(int32, tag = "14")] + pub pboomjfkjep: i32, + /// offset: 24 + #[prost(int32, tag = "12")] + pub fndhjiefbcb: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nhehpgonepk { +pub struct Kjbcbefefdm { /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub kokiifcmogl: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub lhpcdbnodgp: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "14")] - pub formula_id: u32, + #[prost(uint32, tag = "3")] + pub cndilnhdjkh: u32, /// offset: 36 #[prost(bool, tag = "10")] - pub eeeionccing: bool, + pub kblinbodmge: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fcknnieaohi { +pub struct Kfhfgmcbopg { + /// offset: 24 + #[prost(map = "uint32, int32", tag = "1")] + pub inicdlolcii: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Njlihnopgkl { /// offset: 16 - #[prost(map = "uint32, int32", tag = "2")] - pub nadoccephjo: ::std::collections::HashMap, + #[prost(message, optional, tag = "12")] + pub bijnbgfhldm: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dbndiagbmji { +pub struct Kglommhknon { + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub bijnbgfhldm: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ahnjggbopgh { /// offset: 16 #[prost(message, optional, tag = "5")] - pub gepenpidkij: ::core::option::Option, + pub bijnbgfhldm: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cdnejceknlf { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub gepenpidkij: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dcgjlcpclbl { +pub struct Ieagicfcmod { /// offset: 16 - #[prost(message, optional, tag = "5")] - pub gepenpidkij: ::core::option::Option, + #[prost(message, optional, tag = "8")] + pub bijnbgfhldm: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mjcopbfejji { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub gepenpidkij: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fipfphbphlh { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub ilbkmnajgmo: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lbkkdlhoegn { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub value: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kaajbaoakbo { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub dlmhaecabod: ::core::option::Option, - /// offset: 32 - #[prost(message, repeated, tag = "13")] - pub ilbkmnajgmo: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "8")] - pub omfdhfgbgaa: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Goeekpllcbj { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub bhapdmjcklb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dflkelghook { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub bhapdmjcklb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fbnjofcemil { - /// offset: 24 - #[prost(map = "uint32, bool", tag = "3")] - pub nfnmbgboccl: ::std::collections::HashMap, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pnieaceijkm { - #[prost( - oneof = "pnieaceijkm::Info", - tags = "13, 3, 308, 1303, 1824, 847, 380, 1465, 640, 467, 1205, 125, 837, 1141, 880, 1627, 1558, 1517, 1547, 794, 581, 1959, 1489, 470, 533, 1990, 1979, 221, 829" - )] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `PNIEACEIJKM`. -pub mod pnieaceijkm { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 16 - #[prost(message, tag = "13")] - Ieejchfepha(super::Kildamjjlmf), - /// offset: 16 - #[prost(message, tag = "3")] - Indnbedjnco(super::Kildamjjlmf), - /// offset: 16 - #[prost(message, tag = "308")] - Noenhhilnah(super::Ffamnkoaihf), - /// offset: 16 - #[prost(message, tag = "1303")] - Kpbjipgejpl(super::Ffamnkoaihf), - /// offset: 16 - #[prost(message, tag = "1824")] - Kbhpfadbdoh(super::Jpajnjbebfb), - /// offset: 16 - #[prost(message, tag = "847")] - Fbnfljkljgc(super::Gliaipcabim), - /// offset: 16 - #[prost(message, tag = "380")] - Apfmfbbdcjk(super::Ibibpoopden), - /// offset: 16 - #[prost(message, tag = "1465")] - Bmdjopghlca(super::Maaaagpjjfe), - /// offset: 16 - #[prost(message, tag = "640")] - Ompbjjohpoo(super::Pbaloejcgfn), - /// offset: 16 - #[prost(message, tag = "467")] - Iomjmeaomfi(super::Hblnhganbab), - /// offset: 16 - #[prost(message, tag = "1205")] - Bblgeemhiim(super::Mdgjikljdde), - /// offset: 16 - #[prost(message, tag = "125")] - Manfkmddpeg(super::Dbndiagbmji), - /// offset: 16 - #[prost(message, tag = "837")] - Apgccjfbdlh(super::Cdnejceknlf), - /// offset: 16 - #[prost(message, tag = "1141")] - Jfpmgojdkmd(super::Dcgjlcpclbl), - /// offset: 16 - #[prost(message, tag = "880")] - Pkngaijmdao(super::Mjcopbfejji), - /// offset: 16 - #[prost(message, tag = "1627")] - Dmkgebhpipj(super::Fipfphbphlh), - /// offset: 16 - #[prost(message, tag = "1558")] - Kpbmfkpcbma(super::Lbkkdlhoegn), - /// offset: 16 - #[prost(message, tag = "1517")] - Behlmokiafl(super::Goeekpllcbj), - /// offset: 16 - #[prost(message, tag = "1547")] - Kaifndmjjmk(super::Dflkelghook), - /// offset: 16 - #[prost(message, tag = "794")] - Aidojpolnon(super::Knjaeackjib), - /// offset: 16 - #[prost(message, tag = "581")] - Jblkicbnmhl(super::Lhpdolpkfeo), - /// offset: 16 - #[prost(message, tag = "1959")] - Kaailmgchok(super::Aeffjlgfamh), - /// offset: 16 - #[prost(message, tag = "1489")] - Jcdmgfpmiam(super::Jfgflgblcaj), - /// offset: 16 - #[prost(message, tag = "470")] - Piofbmmeghb(super::Jfgflgblcaj), - /// offset: 16 - #[prost(message, tag = "533")] - Jgdaebnefka(super::Jfgflgblcaj), - /// offset: 16 - #[prost(message, tag = "1990")] - Aoibhcmanfk(super::Jbihocioanh), - /// offset: 16 - #[prost(message, tag = "1979")] - Mibobjidcad(super::Hobkeoicbmi), - /// offset: 16 - #[prost(message, tag = "221")] - Edbpehabhbi(super::Lnamgomhgjb), - /// offset: 16 - #[prost(message, tag = "829")] - Cjohmipjhnm(super::Lnamgomhgjb), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lojdfdjgoda { - /// offset: 52 - #[prost(uint32, tag = "11")] - pub jcoggobkbpj: u32, - /// offset: 60 - #[prost(uint32, tag = "9")] - pub bilbohbdbpn: u32, - /// offset: 40 - #[prost(uint32, repeated, tag = "14")] - pub habohejfcke: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "10")] - pub kemeoojkoib: u32, - /// offset: 56 - #[prost(bool, tag = "12")] - pub ehpmcgoelgb: bool, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub kidaaobhlpd: ::core::option::Option, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub ahcgpccoofo: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub acbggdlenhp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nolcmkcneaf { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub oambghfhfmo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Plcgkieiegd {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fhmaianenpo { - /// offset: 32 - #[prost(uint32, tag = "12")] - pub bilbohbdbpn: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub laldacmchfi: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Onoofhdeidd { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub oambghfhfmo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hkjegongjnp {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Khgcdeimlhn {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ehefommbnaf { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub bjehoafbhbe: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bpddobahpna { - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub bjehoafbhbe: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ekmahafgngj { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub oambghfhfmo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hbiblkkeoac {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lgcmeepjmha { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub idignadndnf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Koegffomkip { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub elpinnnalbd: u32, - /// offset: 28 - #[prost(uint32, tag = "9")] - pub slot: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub r#type: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Inpinnpihob { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub scepter_id: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub level: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jbihocioanh { - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "11")] - pub trench_count: ::std::collections::HashMap, - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub scepter: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub plmkmopcdlm: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "10")] - pub fpgefhenccf: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Obipoolidal { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub unit_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jfgflgblcaj { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub unique_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub lcbecpoogcl: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Knjaeackjib { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub clmfnahfnll: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lhpdolpkfeo { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub clmfnahfnll: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aeffjlgfamh { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub clmfnahfnll: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Okecopgklee { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub pmgjicchhdl: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pgakdejbohf { - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub jfpjbbjlifk: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oedoaogakpp { - /// offset: 48 - #[prost(uint32, tag = "14")] - pub ckkekmjmabc: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub fgdjamhokif: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub igchbpakbcb: u32, - /// offset: 32 - #[prost(message, repeated, tag = "7")] - pub gigibipgpfc: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub bilbohbdbpn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kkagnmemkog { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub bilbohbdbpn: u32, +pub struct Edapplcndik { /// offset: 16 #[prost(message, repeated, tag = "12")] - pub gigibipgpfc: ::prost::alloc::vec::Vec, + pub mjoidjehenm: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hhhcpcofppo { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub pobkdoigdab: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iipeghdkhgd { - /// offset: 16 +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dmfnoadkofd { + /// offset: 24 #[prost(message, optional, tag = "14")] - pub pobkdoigdab: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mhijocjhong {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Abpncpoijci {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Imnnnjggpag {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Imdhpdbhebc {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hobkeoicbmi { - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub eocipkgjfop: ::core::option::Option, - /// offset: 32 - #[prost(uint32, repeated, tag = "10")] - pub hkklpldnpkd: ::prost::alloc::vec::Vec, + pub value: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Flnagdeoopg { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub chpkdjnhpfo: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub bilbohbdbpn: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ahkfiakmklo { - /// offset: 32 - #[prost(bool, tag = "9")] - pub abbmhpkgaik: bool, +pub struct Ikdeonncmce { /// offset: 16 - #[prost(message, optional, tag = "13")] - pub obfpaiamijl: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bledojdglaa {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ikcndljlapp {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jkhkebmobej { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub jbjggnbjkdj: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jcdljbphomd { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub ghelbobfpam: ::core::option::Option, - /// offset: 32 - #[prost(bool, tag = "1")] - pub blciljenelo: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lgpgcjdoibk {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lnamgomhgjb { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub iboekjbomog: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cgjnhnmamdh { - /// offset: 36 - #[prost(int32, tag = "14")] - pub jmcembehcoj: i32, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub kdaoimpppki: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub ldfgifdfpcf: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cggbpjichgf { - /// offset: 44 - #[prost(uint32, tag = "9")] - pub bilbohbdbpn: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub gbooalmikob: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "10")] - pub gmilngghedc: u32, - /// offset: 32 - #[prost(enumeration = "Ndkljjiimgm", tag = "12")] - pub obiedgmebdl: i32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub nclaehaijjb: u32, + #[prost(message, repeated, tag = "13")] + pub mjoidjehenm: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "5")] - pub ofbmpojpdoj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Haojlhgnfpm { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub jmehmhkbjah: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bljoggmjbmd {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oopinhfmece {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Onpnbiommgb { - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub nifjfldkikk: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pigfbkojnhg { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub event_unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ajnajinfjic { - /// offset: 28 - #[prost(bool, tag = "9")] - pub is_win: bool, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub battle_event_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mnmloapbhnf { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub event_unique_id: u32, -} -/// Obf: ODFDKILDHBE -#[derive(proto_derive::CmdID)] -#[cmdid(5612)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueCommonPendingActionScNotify { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub rogue_sub_mode: u32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub action: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueCommonPendingAction { - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub pbhmgchkjgo: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub hbapccegnme: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eiohagheloa { - #[prost( - oneof = "eiohagheloa::Info", - tags = "1253, 512, 1136, 893, 108, 556, 1602, 1689, 1919, 944, 1115, 881, 1231, 1856, 1985, 1825, 38, 316, 1660, 189, 1999, 404, 224, 1202, 329, 1616, 1460" - )] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `EIOHAGHELOA`. -pub mod eiohagheloa { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 24 - #[prost(message, tag = "1253")] - Nlnbngijafi(super::Elheaghnndm), - /// offset: 24 - #[prost(message, tag = "512")] - Fphhhiobfai(super::Lefcomgmpcl), - /// offset: 24 - #[prost(message, tag = "1136")] - Ajddfancejn(super::Ipgkagffbhf), - /// offset: 24 - #[prost(message, tag = "893")] - Imikpgfhlhk(super::Kbpmfkknbjh), - /// offset: 24 - #[prost(message, tag = "108")] - Cjenjifeidi(super::Ebhghgiigom), - /// offset: 24 - #[prost(message, tag = "556")] - Bicjempplam(super::Anmcaimelca), - /// offset: 24 - #[prost(message, tag = "1602")] - Aelpppiefab(super::Gabbehoipjc), - /// offset: 24 - #[prost(message, tag = "1689")] - Bediachlcii(super::Mlkiccaelke), - /// offset: 24 - #[prost(message, tag = "1919")] - Ladgcoomnka(super::Eakecfappkd), - /// offset: 24 - #[prost(message, tag = "944")] - Cgkfomncnak(super::Eldafcnmfbf), - /// offset: 24 - #[prost(message, tag = "1115")] - Eiefmpfllcm(super::Lcagiooiidn), - /// offset: 24 - #[prost(message, tag = "881")] - Nkkbodgfclm(super::Ofpeknmfmab), - /// offset: 24 - #[prost(message, tag = "1231")] - Gkflnmojncp(super::Dlcjmohobdh), - /// offset: 24 - #[prost(message, tag = "1856")] - Bjehoafbhbe(super::Lojdfdjgoda), - /// offset: 24 - #[prost(message, tag = "1985")] - Jbkpikajpeb(super::Fhmaianenpo), - /// offset: 24 - #[prost(message, tag = "1825")] - Hcchfjefanj(super::Bpddobahpna), - /// offset: 24 - #[prost(message, tag = "38")] - Oiomhopnimf(super::Oedoaogakpp), - /// offset: 24 - #[prost(message, tag = "316")] - Ifclaafpkhc(super::Flnagdeoopg), - /// offset: 24 - #[prost(message, tag = "1660")] - Hfjechfannf(super::Jkhkebmobej), - /// offset: 24 - #[prost(message, tag = "189")] - Ldjomiojepf(super::Oedoaogakpp), - /// offset: 24 - #[prost(message, tag = "1999")] - Lmnoncmbioo(super::Oedoaogakpp), - /// offset: 24 - #[prost(message, tag = "404")] - Cnlmcobncai(super::Oedoaogakpp), - /// offset: 24 - #[prost(message, tag = "224")] - Fhokdllicjl(super::Kkagnmemkog), - /// offset: 24 - #[prost(message, tag = "1202")] - Phdemdbgoib(super::Kkagnmemkog), - /// offset: 24 - #[prost(message, tag = "329")] - Kljjibpjgff(super::Kkagnmemkog), - /// offset: 24 - #[prost(message, tag = "1616")] - Dlfalfgfdhe(super::Pigfbkojnhg), - /// offset: 24 - #[prost(message, tag = "1460")] - Npcdbpndgop(super::Cggbpjichgf), - } -} -/// Obf: EHGOIEIOLEF -#[derive(proto_derive::CmdID)] -#[cmdid(5625)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct HandleRogueCommonPendingActionCsReq { - /// offset: 36 - #[prost(uint32, tag = "3")] - pub ifdkllhfpjb: u32, - #[prost( - oneof = "handle_rogue_common_pending_action_cs_req::Info", - tags = "919, 1487, 826, 1479, 1018, 1737, 40, 1531, 1236, 1309, 1904, 220, 1711, 2022, 1242, 1570, 378, 1199, 212, 48, 1488, 1859, 433, 1454, 2020, 1470, 427, 1326, 451, 1385, 338, 111506, 93022" - )] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `HandleRogueCommonPendingActionCsReq`. -pub mod handle_rogue_common_pending_action_cs_req { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 24 - #[prost(message, tag = "919")] - Jkhbbdlchid(super::Hkhfbelmdcg), - /// offset: 24 - #[prost(message, tag = "1487")] - Kbnegolplfc(super::Pbmaklnjeko), - /// offset: 24 - #[prost(message, tag = "826")] - Gdkgibekgpf(super::Okefiddnlkg), - /// offset: 24 - #[prost(message, tag = "1479")] - Oncngiilenf(super::Mmndajfijoj), - /// offset: 24 - #[prost(message, tag = "1018")] - Glejcdpdjne(super::Bfbfmlbhgoh), - /// offset: 24 - #[prost(message, tag = "1737")] - Ooagpgdpjoa(super::Mpphhnaeedk), - /// offset: 24 - #[prost(message, tag = "40")] - Idbaljbnbke(super::Jfpfdjppoag), - /// offset: 24 - #[prost(message, tag = "1531")] - Gnebjeppkej(super::Nalelighdaa), - /// offset: 24 - #[prost(message, tag = "1236")] - Kjlafilapjf(super::Pkodmmphibc), - /// offset: 24 - #[prost(message, tag = "1309")] - Flfpcphlago(super::Nhckhplklio), - /// offset: 24 - #[prost(message, tag = "1904")] - Epoakmfmflm(super::Lhjpikekpgh), - /// offset: 24 - #[prost(message, tag = "220")] - Fkpfokhbpkk(super::Imcbiigokpm), - /// offset: 24 - #[prost(message, tag = "1711")] - Eodclaipcae(super::Lkmkhacmapc), - /// offset: 24 - #[prost(message, tag = "2022")] - Aocodaobkhm(super::Imlbibjkpdb), - /// offset: 24 - #[prost(message, tag = "1242")] - Egggggglfho(super::Nolcmkcneaf), - /// offset: 24 - #[prost(message, tag = "1570")] - Lnploeofccj(super::Khgcdeimlhn), - /// offset: 24 - #[prost(message, tag = "378")] - Ieabohkeapa(super::Onoofhdeidd), - /// offset: 24 - #[prost(message, tag = "1199")] - Nediibjhgfo(super::Ekmahafgngj), - /// offset: 24 - #[prost(message, tag = "212")] - Jgpcbcjkonh(super::Hhhcpcofppo), - /// offset: 24 - #[prost(message, tag = "48")] - Hknjipjhocg(super::Ahkfiakmklo), - /// offset: 24 - #[prost(message, tag = "1488")] - Ldaglimnman(super::Jcdljbphomd), - /// offset: 24 - #[prost(message, tag = "1859")] - Aflheikjnbn(super::Hhhcpcofppo), - /// offset: 24 - #[prost(message, tag = "433")] - Phkbflnpefi(super::Hhhcpcofppo), - /// offset: 24 - #[prost(message, tag = "1454")] - Gocmndkfoab(super::Hhhcpcofppo), - /// offset: 24 - #[prost(message, tag = "2020")] - Chonecoliha(super::Iipeghdkhgd), - /// offset: 24 - #[prost(message, tag = "1470")] - Moaogacboij(super::Iipeghdkhgd), - /// offset: 24 - #[prost(message, tag = "427")] - Kilhfppbbfm(super::Iipeghdkhgd), - /// offset: 24 - #[prost(message, tag = "1326")] - Blhdfajhcja(super::Haojlhgnfpm), - /// offset: 24 - #[prost(message, tag = "451")] - Lpjbaimjaik(super::Haojlhgnfpm), - /// offset: 24 - #[prost(message, tag = "1385")] - Hdhdpggmepb(super::Oopinhfmece), - /// offset: 24 - #[prost(message, tag = "338")] - Ecegpejcpbl(super::Lgcmeepjmha), - /// offset: 24 - #[prost(message, tag = "111506")] - Fkpdkfemkec(super::Ajnajinfjic), - /// offset: 24 - #[prost(message, tag = "93022")] - Llnmcjcfbmj(super::Mnmloapbhnf), - } -} -/// Obf: DFNKMPOMIEH -#[derive(proto_derive::CmdID)] -#[cmdid(5685)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct HandleRogueCommonPendingActionScRsp { - /// offset: 36 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub ifdkllhfpjb: u32, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub hbapccegnme: u32, - #[prost( - oneof = "handle_rogue_common_pending_action_sc_rsp::Info", - tags = "102, 490, 1151, 1098, 658, 2013, 515, 1267, 1568, 544, 1422, 1904, 1289, 1518, 206, 871, 1754, 1699, 1756, 86, 1899, 912, 507, 244, 210, 1622, 1590, 1319" - )] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `HandleRogueCommonPendingActionScRsp`. -pub mod handle_rogue_common_pending_action_sc_rsp { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 16 - #[prost(message, tag = "102")] - Pnadbjejbof(super::Hcajjefeijd), - /// offset: 16 - #[prost(message, tag = "490")] - Kkiangabfnj(super::Fkdbihnpche), - /// offset: 16 - #[prost(message, tag = "1151")] - Cldbplniaen(super::Dlhpdalgdeh), - /// offset: 16 - #[prost(message, tag = "1098")] - Goomopmalol(super::Djonnopdjhh), - /// offset: 16 - #[prost(message, tag = "658")] - Kbflnjpmoah(super::Oopdmmnnkgi), - /// offset: 16 - #[prost(message, tag = "2013")] - Jkjofmhjgib(super::Cffocchbamh), - /// offset: 16 - #[prost(message, tag = "515")] - Dddenapjbka(super::Honkbmjpjaa), - /// offset: 16 - #[prost(message, tag = "1267")] - Dmcepjkoogc(super::Paocongeljk), - /// offset: 16 - #[prost(message, tag = "1568")] - Fdppgkddpgc(super::Blfjbkbhjil), - /// offset: 16 - #[prost(message, tag = "544")] - Mapbdbmfimd(super::Omjfmbjmfmc), - /// offset: 16 - #[prost(message, tag = "1422")] - Oihjekimppd(super::Moiknhhcabh), - /// offset: 16 - #[prost(message, tag = "1904")] - Okpcjlpmbad(super::Fhikplaioei), - /// offset: 16 - #[prost(message, tag = "1289")] - Dpgbcafkdpm(super::Nococfhoajc), - /// offset: 16 - #[prost(message, tag = "1518")] - Hmobefjkdpd(super::Jcahmiooldb), - /// offset: 16 - #[prost(message, tag = "206")] - Japiiijmpge(super::Plcgkieiegd), - /// offset: 16 - #[prost(message, tag = "871")] - Cpopchnddfm(super::Ehefommbnaf), - /// offset: 16 - #[prost(message, tag = "1754")] - Ndjbgfheici(super::Hkjegongjnp), - /// offset: 16 - #[prost(message, tag = "1699")] - Cobeibnlgjf(super::Hbiblkkeoac), - /// offset: 16 - #[prost(message, tag = "1756")] - Blefmehonoo(super::Mhijocjhong), - /// offset: 16 - #[prost(message, tag = "86")] - Ihbodkmfpnf(super::Bledojdglaa), - /// offset: 16 - #[prost(message, tag = "1899")] - Lbojliiabap(super::Lgpgcjdoibk), - /// offset: 16 - #[prost(message, tag = "912")] - Ilhbhphdedl(super::Abpncpoijci), - /// offset: 16 - #[prost(message, tag = "507")] - Dicgeadecpk(super::Imnnnjggpag), - /// offset: 16 - #[prost(message, tag = "244")] - Gabicmfakpd(super::Imdhpdbhebc), - /// offset: 16 - #[prost(message, tag = "210")] - Dkmmoimojdm(super::Ikcndljlapp), - /// offset: 16 - #[prost(message, tag = "1622")] - Hcfopgmleno(super::Bljoggmjbmd), - /// offset: 16 - #[prost(message, tag = "1590")] - Gdmgoelomfk(super::Bljoggmjbmd), - /// offset: 16 - #[prost(message, tag = "1319")] - Cddnkgjaefi(super::Onpnbiommgb), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fcpmbjhfbnj { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub ojeblmkkmgo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Giadlheephd { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub fhhgdpcecee: u32, - /// offset: 24 - #[prost(bool, tag = "12")] - pub fjoilohphlc: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lognkekhbai { - /// offset: 24 - #[prost(bool, tag = "10")] - pub fjoilohphlc: bool, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub ajbepahcgik: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Knijhgnjijm { - /// offset: 40 - #[prost(uint32, tag = "5")] - pub exp: u32, - /// offset: 52 - #[prost(uint32, tag = "9")] - pub level: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub aeon_id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub dpmibdhkdae: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "10")] - pub ddgcfjdbooh: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "15")] - pub jgmipmdppij: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ooceoilkcfi { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub jlfddmekljk: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eoejhkjllpk { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub ppmiogcfooc: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub unit_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aeknflomljh { - /// offset: 40 - #[prost(message, repeated, tag = "9")] - pub bjcmphlpknf: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 32 #[prost(message, repeated, tag = "2")] - pub ckgfonmaeko: ::prost::alloc::vec::Vec, + pub bbdlgkepjnn: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub belofmfhfdk: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "12")] + pub pcppibcmoaf: ::core::option::Option, } -/// Obf: GILIPEKOEAF #[derive(proto_derive::CmdID)] -#[cmdid(5616)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueHandbookDataCsReq {} -/// Obf: AEPPILBHJJN -#[derive(proto_derive::CmdID)] -#[cmdid(5656)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueHandbookDataScRsp { +pub struct Mjijamhgpkg { /// offset: 24 - #[prost(message, optional, tag = "5")] - pub iakcmplpoee: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: NNLIMACBCJJ -#[derive(proto_derive::CmdID)] -#[cmdid(5621)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueHandbookDataUpdateScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub bjkpkfbfdff: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "15")] - pub abibobfdkld: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, repeated, tag = "6")] - pub haebaambnbb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub mmhchhcofpb: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub idddcjonpfn: ::prost::alloc::vec::Vec, -} -/// Obf: FNOHCPGCENO -#[derive(proto_derive::CmdID)] -#[cmdid(5610)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueMiracleHandbookRewardCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub afhddnggnbf: ::prost::alloc::vec::Vec, -} -/// Obf: KMLGJIMHJJC -#[derive(proto_derive::CmdID)] -#[cmdid(5653)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueMiracleHandbookRewardScRsp { - /// offset: 40 #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub feifjadcdfl: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, + pub oimihbcibal: u32, } -/// Obf: CMDEHEACAHM #[derive(proto_derive::CmdID)] -#[cmdid(5642)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueEventHandbookRewardCsReq { +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fcjeoalgafb { /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub idoecnpkgce: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "9")] + pub oimihbcibal: u32, } -/// Obf: BIDOHEPEMKO #[derive(proto_derive::CmdID)] -#[cmdid(5670)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueEventHandbookRewardScRsp { +pub struct Lanpfhgifjp { /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub dpjhilhgoke: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub reward: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub retcode: u32, + #[prost(map = "uint32, bool", tag = "11")] + pub ocjfifhfbcm: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Findafkpoof { - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "10")] - pub glaphhabohp: ::std::collections::HashMap, +pub struct Ieimgjobcpa { + #[prost( + oneof = "ieimgjobcpa::Mlneddhojgc", + tags = "12, 14, 1707, 58, 1685, 684, 1482, 1164, 1824, 341, 1694, 886, 557, 1493, 786, 1959, 1643, 1176, 260, 1929, 499, 105, 1364, 1678, 1853, 125, 1063, 1008, 1732" + )] + pub mlneddhojgc: ::core::option::Option, } -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ladhikpajcj { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub bohdminejno: ::core::option::Option, - /// offset: 32 - #[prost(int32, tag = "15")] - pub icjabpgmacj: i32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub amnbmjofjoo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ohlcjedcofn { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub dimhpbcpnlc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Omdefbabnnb { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub gficflciejj: ::core::option::Option, - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub avatar_id_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lgkgehhajje { - #[prost(oneof = "lgkgehhajje::Jpbheojakge", tags = "10, 8, 4, 12, 7, 13, 2, 3")] - pub jpbheojakge: ::core::option::Option, -} -/// Nested message and enum types in `LGKGEHHAJJE`. -pub mod lgkgehhajje { +/// Nested message and enum types in `IEIMGJOBCPA`. +pub mod ieimgjobcpa { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Jpbheojakge { - /// offset: 24 - #[prost(message, tag = "10")] - Lgopnbhhhbg(super::Kcacnhcadec), - /// offset: 24 - #[prost(message, tag = "8")] - Eeppkmpajoh(super::Nkidddpflje), - /// offset: 24 - #[prost(message, tag = "4")] - Fffccejifdk(super::Findafkpoof), + pub enum Mlneddhojgc { /// offset: 24 #[prost(message, tag = "12")] - Chmhpcngfao(super::Ladhikpajcj), + Gbokomhebap(super::Ekjafokehof), /// offset: 24 - #[prost(message, tag = "7")] - Fiocabcbnkb(super::Ohlcjedcofn), - /// offset: 24 - #[prost(message, tag = "13")] - Ckaanmddkcj(super::Kaajbaoakbo), - /// offset: 24 - #[prost(message, tag = "2")] - Nbdacdnbjik(super::Fbnjofcemil), - /// offset: 24 - #[prost(message, tag = "3")] - Embagmmhipa(super::Omdefbabnnb), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pmjgkhpkhcm { - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub biphngcadde: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "11")] - pub egmebanhhnf: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub agebambkkbc: u32, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub illodgaefae: u32, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub rogue_sub_mode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Klaahjhnlcj { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub progress: u32, - /// offset: 32 - #[prost(bool, tag = "11")] - pub cdiajkejdha: bool, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub bhpcnnfokee: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ibcknkpjfoj { - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub pgimncfhjea: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "Kpabffanjbk", tag = "12")] - pub status: i32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub talent_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTalentInfoList { - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub lgnnmajmeil: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pojeeialjfi { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub baphhckihmo: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub mgkkgnldgcl: u32, -} -/// Obf: BHJCKFBHJAA -#[derive(proto_derive::CmdID)] -#[cmdid(5604)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueCommonVirtualItemInfoScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub idjjpafpmdm: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mapomoilgeh { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub bdcffobgkoa: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub gedjniaefho: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub mbkfininnek: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Plgdcfipeaa { - /// offset: 24 - #[prost(enumeration = "Odopdkelaeb", repeated, tag = "11")] - pub jpgcdjdgdbi: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ilaekjcnemf { - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub afedjkmfodp: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lgjmdnnmppe { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub kjkbkegighk: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "2")] - pub nolhgnhaema: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub ongpjogkkjn: ::core::option::Option, -} -/// Obf: EDEGKIBNHPD -#[derive(proto_derive::CmdID)] -#[cmdid(5672)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CommonRogueQueryCsReq {} -/// Obf: IIJKNHFGBBM -#[derive(proto_derive::CmdID)] -#[cmdid(5640)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CommonRogueQueryScRsp { - /// offset: 36 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub fhhbjlhajfj: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub operating_system: ::core::option::Option, -} -/// Obf: AJAJIDCBOHC -#[derive(proto_derive::CmdID)] -#[cmdid(5666)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct CommonRogueUpdateScNotify { - #[prost(oneof = "common_rogue_update_sc_notify::Dgikifjodbm", tags = "7, 10, 15")] - pub dgikifjodbm: ::core::option::Option, -} -/// Nested message and enum types in `CommonRogueUpdateScNotify`. -pub mod common_rogue_update_sc_notify { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Dgikifjodbm { - /// offset: 16 - #[prost(message, tag = "7")] - Ongpjogkkjn(super::Mapomoilgeh), - /// offset: 16 - #[prost(message, tag = "10")] - Kjkbkegighk(super::Plgdcfipeaa), - /// offset: 16 - #[prost(message, tag = "15")] - Nolhgnhaema(super::Ilaekjcnemf), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ikamknhggok { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub onlhfcoglal: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub cdjecokfiof: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gnjapomllhe { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub bglehmkmapg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cnhhpdhbmdc { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub bglehmkmapg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jieaafjenlk { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub formula_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hpjlafhhgjg { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub bglehmkmapg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Afccaoacnak { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub dgaklnofdpp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jbmeclkggdk { - #[prost(oneof = "jbmeclkggdk::Acdobbpldbg", tags = "10, 8, 9, 11, 5, 14")] - pub acdobbpldbg: ::core::option::Option, -} -/// Nested message and enum types in `JBMECLKGGDK`. -pub mod jbmeclkggdk { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Acdobbpldbg { - /// offset: 16 - #[prost(message, tag = "10")] - Hpnoggfdpkm(super::Ikamknhggok), - /// offset: 16 - #[prost(message, tag = "8")] - Admahlaalnh(super::Gnjapomllhe), - /// offset: 16 - #[prost(message, tag = "9")] - Oddgcbpoplf(super::Cnhhpdhbmdc), - /// offset: 16 - #[prost(message, tag = "11")] - Gmakhonaeph(super::Jieaafjenlk), - /// offset: 16 - #[prost(message, tag = "5")] - Cacgekaankl(super::Hpjlafhhgjg), - /// offset: 16 #[prost(message, tag = "14")] - Aggblhgkpfj(super::Afccaoacnak), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Abenfanelfl { - /// offset: 24 - #[prost(int32, tag = "3")] - pub ggplcpchadn: i32, - /// offset: 28 - #[prost(float, tag = "7")] - pub lmbiodpohge: f32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gokkmeomofc { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub battle_event_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nebpghddepc { - /// offset: 24 - #[prost(int32, tag = "5")] - pub jefioihhclg: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hjpgncngilg { - #[prost(oneof = "hjpgncngilg::Dcoeclcedob", tags = "5, 2")] - pub dcoeclcedob: ::core::option::Option, -} -/// Nested message and enum types in `HJPGNCNGILG`. -pub mod hjpgncngilg { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Dcoeclcedob { - /// offset: 16 - #[prost(message, tag = "5")] - Capijnmcdam(super::Gokkmeomofc), - /// offset: 16 - #[prost(message, tag = "2")] - Hmlcehikffk(super::Nebpghddepc), + Hbmdmicpdlc(super::Ekjafokehof), + /// offset: 24 + #[prost(message, tag = "1707")] + Lcdncppeeef(super::Mncgnpkncad), + /// offset: 24 + #[prost(message, tag = "58")] + Hgfpgeaknmk(super::Mncgnpkncad), + /// offset: 24 + #[prost(message, tag = "1685")] + Edlokbflclm(super::Clhnhjfalih), + /// offset: 24 + #[prost(message, tag = "684")] + Aljmnocjcbl(super::Gilepfbmkhh), + /// offset: 24 + #[prost(message, tag = "1482")] + Egbpejcbhpo(super::Apflcmaihkk), + /// offset: 24 + #[prost(message, tag = "1164")] + Cfbmdpamfkk(super::Ffonempcbbl), + /// offset: 24 + #[prost(message, tag = "1824")] + Kfnceialdlk(super::Afodilooija), + /// offset: 24 + #[prost(message, tag = "341")] + Indjaimkjbc(super::Fdpbacnjfee), + /// offset: 24 + #[prost(message, tag = "1694")] + Ddaeijahing(super::Jjfgeilmloi), + /// offset: 24 + #[prost(message, tag = "886")] + Nijegbgifej(super::Njlihnopgkl), + /// offset: 24 + #[prost(message, tag = "557")] + Fdjjeaanjad(super::Kglommhknon), + /// offset: 24 + #[prost(message, tag = "1493")] + Jfdnomhibfl(super::Ahnjggbopgh), + /// offset: 24 + #[prost(message, tag = "786")] + Peabcagekon(super::Ieagicfcmod), + /// offset: 24 + #[prost(message, tag = "1959")] + Bghnknlieim(super::Edapplcndik), + /// offset: 24 + #[prost(message, tag = "1643")] + Nbobcanippo(super::Dmfnoadkofd), + /// offset: 24 + #[prost(message, tag = "1176")] + Jffmeddempe(super::Mjijamhgpkg), + /// offset: 24 + #[prost(message, tag = "260")] + Gfbcdiechdc(super::Fcjeoalgafb), + /// offset: 24 + #[prost(message, tag = "1929")] + Mheofgipcho(super::Jkiicianpdi), + /// offset: 24 + #[prost(message, tag = "499")] + Hgihfcncpkp(super::Bnmajiffgjh), + /// offset: 24 + #[prost(message, tag = "105")] + Chmpbbmndef(super::Djndbebgekp), + /// offset: 24 + #[prost(message, tag = "1364")] + Chdcadgnjfm(super::Hlpcbekbail), + /// offset: 24 + #[prost(message, tag = "1678")] + Jekanimoelj(super::Hlpcbekbail), + /// offset: 24 + #[prost(message, tag = "1853")] + Afminoekeji(super::Hlpcbekbail), + /// offset: 24 + #[prost(message, tag = "125")] + Opjdmfinnjl(super::Kllllfkccei), + /// offset: 24 + #[prost(message, tag = "1063")] + Egbdoonifpe(super::Nnipndgfalj), + /// offset: 24 + #[prost(message, tag = "1008")] + Pmoipjdmgna(super::Cpcmpnkckjg), + /// offset: 24 + #[prost(message, tag = "1732")] + Joocpkmigff(super::Cpcmpnkckjg), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gbabekpblhn { - /// offset: 48 - #[prost(bool, tag = "12")] - pub gldjnhiggje: bool, - /// offset: 32 - #[prost(message, optional, tag = "4")] - pub display_value: ::core::option::Option, - /// offset: 49 - #[prost(bool, tag = "7")] - pub pipmgacmjnn: bool, - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub pocjcmkkjik: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub arg_id: u32, - /// offset: 40 +pub struct Enljlefcdbf { + /// offset: 52 #[prost(uint32, tag = "15")] - pub kdmlllghjon: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hgeknliffed { - /// offset: 40 - #[prost(uint32, tag = "5")] - pub event_unique_id: u32, - /// offset: 32 - #[prost(message, repeated, tag = "13")] - pub lekpkocnjal: ::prost::alloc::vec::Vec, + pub ieglikmnaeo: u32, + /// offset: 60 + #[prost(uint32, tag = "13")] + pub kfkkefbneke: u32, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub egmkilikaic: u32, /// offset: 24 - #[prost(message, optional, tag = "8")] - pub bdoemgmhalj: ::core::option::Option, + #[prost(uint32, repeated, tag = "3")] + pub jkkmnfkbpcl: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(bool, tag = "5")] + pub gmkjijmejip: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub gmfbbbjikje: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub bcpoecedbci: ::core::option::Option, + /// offset: 64 + #[prost(uint32, tag = "8")] + pub pamlinnenjg: u32, } -/// Obf: JENIAHELNPF #[derive(proto_derive::CmdID)] -#[cmdid(5639)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueCommonDialogueDataCsReq {} -/// Obf: MHGANOEPLIP +pub struct Apbokcaojkf { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub hifhbfjnpal: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Milocclbpoo {} #[derive(proto_derive::CmdID)] -#[cmdid(5645)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueCommonDialogueDataScRsp { +pub struct Lpiemoigkab { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub ieglikmnaeo: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub coglgghemfc: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pmgoabaihho { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub hifhbfjnpal: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Flbfmdajgkn {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ghbgaeehjcc {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ggbccmoafbf { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub ofmdfncoohf: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bhdeojgipll { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub ofmdfncoohf: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fmpflmefdmm { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub hifhbfjnpal: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dnlnaikhmlh {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Laldeibcolf { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub cpfbokomelm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nmlbpkaccoc { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub ieopdpagjki: u32, /// offset: 32 #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub dckilldonhg: ::prost::alloc::vec::Vec, + pub r#type: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub slot: u32, } -/// Obf: LLBPCHBONCK #[derive(proto_derive::CmdID)] -#[cmdid(5695)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SelectRogueCommonDialogueOptionCsReq { +pub struct Klpeoeanapm { /// offset: 28 - #[prost(uint32, tag = "4")] - pub event_unique_id: u32, + #[prost(uint32, tag = "15")] + pub scepter_id: u32, /// offset: 24 #[prost(uint32, tag = "11")] - pub kdmlllghjon: u32, + pub level: u32, } -/// Obf: PGBOPNMMJBB #[derive(proto_derive::CmdID)] -#[cmdid(5679)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SelectRogueCommonDialogueOptionScRsp { +pub struct Kllllfkccei { /// offset: 32 - #[prost(message, optional, tag = "12")] - pub oidiaddnacm: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub kdmlllghjon: u32, + #[prost(message, optional, tag = "6")] + pub modifier_content: ::core::option::Option, /// offset: 48 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 52 - #[prost(bool, tag = "5")] - pub adjgdbbnplc: bool, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub event_unique_id: u32, + #[prost(map = "uint32, uint32", tag = "12")] + pub lfmcocghfam: ::std::collections::HashMap, /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub jidlbfoebid: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub ebhcekmcofb: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "8")] + pub cgflbbgjojb: ::prost::alloc::vec::Vec, } -/// Obf: CJLNCCDAHOA #[derive(proto_derive::CmdID)] -#[cmdid(5602)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishRogueCommonDialogueCsReq { - /// offset: 24 +pub struct Bcbbcfppphm { + /// offset: 28 #[prost(uint32, tag = "3")] + pub magic_unit_id: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hlpcbekbail { + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub iocgdljchke: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub unique_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jkiicianpdi { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub cklblonibpm: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bnmajiffgjh { + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub cklblonibpm: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Djndbebgekp { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub cklblonibpm: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hibnpphkebm { + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub glbjjfcgccn: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cmikkfanpdk { + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub hfoablakhgp: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bhdhifddgkp { + /// offset: 40 + #[prost(uint32, tag = "12")] + pub ieglikmnaeo: u32, + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub hohamdfagoe: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub gmiijpidicm: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub dbjddkglnli: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub dpojoglhpgf: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lmacceghaig { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub ieglikmnaeo: u32, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub hohamdfagoe: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ijpcknboice { + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub khdhmkcfocb: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ndgacjnlmfd { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub khdhmkcfocb: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ckpcgolceha {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fgjckeccolf {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjpcdnogbhe {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mkbjggdbpih {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nnipndgfalj { + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub dhibijbiajb: ::core::option::Option, + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub cbcjpjhjnec: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cefiaabmkmd { + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub kpbejmdkaam: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub ieglikmnaeo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gdgjobpldep { + /// offset: 32 + #[prost(bool, tag = "8")] + pub jeldemlpdeo: bool, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub oceifdaojdo: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Akcajmgnmbk {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mjhbfnaoclj {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pfjbnojpaig { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub pbkhajegaia: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Olbdkgdkdaa { + /// offset: 32 + #[prost(bool, tag = "4")] + pub dgkmnenjjde: bool, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub mjbeimcepno: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bbbpgmbcapk {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cpcmpnkckjg { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub fjbkkpienom: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fobnahnlhnj { + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub ihcnbidbhfd: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub phnmhngcfmf: u32, + /// offset: 32 + #[prost(int32, tag = "5")] + pub cihoppeoemb: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Maonbjelgid { + /// offset: 48 + #[prost(uint32, tag = "8")] + pub fkmdkhclmnp: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub pocmfgepcbo: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub ahomjoamdgc: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub ieglikmnaeo: u32, + /// offset: 32 + #[prost(enumeration = "Kfnelpppknc", tag = "12")] + pub amagdkdoheo: i32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub fonjomnjhkd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Khpndbhokfg { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub gimojbfhfml: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kdhgngnkfkm {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bgfdlhheejh {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Edhnfjccgpi { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub ljpjpomkkik: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pmmdcjbbnac { + /// offset: 24 + #[prost(uint32, tag = "15")] pub event_unique_id: u32, } -/// Obf: IFNNGEFFFGP #[derive(proto_derive::CmdID)] -#[cmdid(5688)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct FinishRogueCommonDialogueScRsp { +pub struct Ffkehkmbnfc { /// offset: 28 - #[prost(uint32, tag = "13")] - pub retcode: u32, + #[prost(uint32, tag = "12")] + pub battle_event_id: u32, + /// offset: 24 + #[prost(bool, tag = "9")] + pub is_win: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nfihhiafpbk { /// offset: 24 #[prost(uint32, tag = "8")] pub event_unique_id: u32, } -/// Obf: ODONIMBGLJN +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5636)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hnefkbodkkn { + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub action: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub ekolmjjicdm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ngnknedpcpk { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub jmbfiljlcef: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub queue_position: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fdbjapkoncn { + #[prost( + oneof = "fdbjapkoncn::Mlneddhojgc", + tags = "350, 1686, 1327, 1093, 2038, 1302, 620, 1001, 1146, 1601, 564, 997, 1648, 980, 1900, 1548, 119, 128, 1234, 1376, 1986, 957, 1484, 1508, 236, 451, 1903" + )] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `FDBJAPKONCN`. +pub mod fdbjapkoncn { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "350")] + Laklddnpeek(super::Ojlenibghno), + /// offset: 16 + #[prost(message, tag = "1686")] + Jabfebjbecm(super::Gjkdjfegnja), + /// offset: 16 + #[prost(message, tag = "1327")] + Edhoelhldfc(super::Kfcldicghco), + /// offset: 16 + #[prost(message, tag = "1093")] + Oafielfpioi(super::Konabechkhc), + /// offset: 16 + #[prost(message, tag = "2038")] + Lkfmekhkbna(super::Nakjpblebdf), + /// offset: 16 + #[prost(message, tag = "1302")] + Hddjopooppj(super::Dmcoochhpgg), + /// offset: 16 + #[prost(message, tag = "620")] + Jdbdkkonbil(super::Dndnhifbhad), + /// offset: 16 + #[prost(message, tag = "1001")] + Ildlabeajnh(super::Kklhcopjblg), + /// offset: 16 + #[prost(message, tag = "1146")] + Bnhbknaijii(super::Jlhaijecgho), + /// offset: 16 + #[prost(message, tag = "1601")] + Ilfiecafdil(super::Mfppdhlfbbc), + /// offset: 16 + #[prost(message, tag = "564")] + Kgnbghdmimn(super::Lfcnjnbcpge), + /// offset: 16 + #[prost(message, tag = "997")] + Ammegojljnh(super::Cndkfldkako), + /// offset: 16 + #[prost(message, tag = "1648")] + Mogojoiaplp(super::Jdacnnnlcph), + /// offset: 16 + #[prost(message, tag = "980")] + Ofmdfncoohf(super::Enljlefcdbf), + /// offset: 16 + #[prost(message, tag = "1900")] + Elbndjkeobh(super::Lpiemoigkab), + /// offset: 16 + #[prost(message, tag = "1548")] + Pfnepackall(super::Bhdeojgipll), + /// offset: 16 + #[prost(message, tag = "119")] + Bgfopegocag(super::Bhdhifddgkp), + /// offset: 16 + #[prost(message, tag = "128")] + Nfmcmjpehdg(super::Cefiaabmkmd), + /// offset: 16 + #[prost(message, tag = "1234")] + Pigbphkpmna(super::Pfjbnojpaig), + /// offset: 16 + #[prost(message, tag = "1376")] + Lhcgmmlainl(super::Bhdhifddgkp), + /// offset: 16 + #[prost(message, tag = "1986")] + Khggchbdmob(super::Bhdhifddgkp), + /// offset: 16 + #[prost(message, tag = "957")] + Bdalgdkoamk(super::Bhdhifddgkp), + /// offset: 16 + #[prost(message, tag = "1484")] + Ncdfincedpo(super::Lmacceghaig), + /// offset: 16 + #[prost(message, tag = "1508")] + Ldcnjpldcib(super::Lmacceghaig), + /// offset: 16 + #[prost(message, tag = "236")] + Mjlpdbbfikh(super::Lmacceghaig), + /// offset: 16 + #[prost(message, tag = "451")] + Giokkknlndd(super::Pmmdcjbbnac), + /// offset: 16 + #[prost(message, tag = "1903")] + Noejooegofj(super::Maonbjelgid), + } +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5634)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cadkidngmcb { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub iadhkcmnjjc: u32, + #[prost( + oneof = "cadkidngmcb::Mlneddhojgc", + tags = "2005, 536, 1887, 1293, 209, 1017, 748, 2017, 448, 1722, 1982, 1702, 1668, 1493, 1267, 202, 427, 1490, 1545, 1638, 399, 1544, 979, 706, 1524, 1104, 1648, 1057, 1435, 1466, 1458, 205094, 205176" + )] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `CADKIDNGMCB`. +pub mod cadkidngmcb { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "2005")] + Ninbbiioemm(super::Jmaijohcofc), + /// offset: 16 + #[prost(message, tag = "536")] + Hgiclhljdah(super::Cmakciimcnj), + /// offset: 16 + #[prost(message, tag = "1887")] + Fhmonikfhik(super::Dmdmfapglhi), + /// offset: 16 + #[prost(message, tag = "1293")] + Inegnfhonfl(super::Ioilnggdckn), + /// offset: 16 + #[prost(message, tag = "209")] + Fgdiiojbjnl(super::Ohacbnimhgk), + /// offset: 16 + #[prost(message, tag = "1017")] + Jigdbbpcdid(super::Pmomajoifff), + /// offset: 16 + #[prost(message, tag = "748")] + Eckmajbdpfg(super::Lgdgkofcaea), + /// offset: 16 + #[prost(message, tag = "2017")] + Logdchhopci(super::Lhpghgkgcpc), + /// offset: 16 + #[prost(message, tag = "448")] + Lbnbjmjjein(super::Liiebhpdela), + /// offset: 16 + #[prost(message, tag = "1722")] + Bamiepaefjc(super::Npfnlpeddlb), + /// offset: 16 + #[prost(message, tag = "1982")] + Obgnmpngbfl(super::Ehmlldddobc), + /// offset: 16 + #[prost(message, tag = "1702")] + Jhnkkdpmgad(super::Ghonlcpddkp), + /// offset: 16 + #[prost(message, tag = "1668")] + Ffhljilnndf(super::Kobncjfljnc), + /// offset: 16 + #[prost(message, tag = "1493")] + Oldabdgdblc(super::Fffbgeplhhd), + /// offset: 16 + #[prost(message, tag = "1267")] + Moenmdiebcc(super::Apbokcaojkf), + /// offset: 16 + #[prost(message, tag = "202")] + Pmbgkpknoda(super::Ghbgaeehjcc), + /// offset: 16 + #[prost(message, tag = "427")] + Codeefmijcb(super::Pmgoabaihho), + /// offset: 16 + #[prost(message, tag = "1490")] + Okdkkdmcgma(super::Fmpflmefdmm), + /// offset: 16 + #[prost(message, tag = "1545")] + Dnkclghhjoa(super::Ijpcknboice), + /// offset: 16 + #[prost(message, tag = "1638")] + Dinogikipdl(super::Gdgjobpldep), + /// offset: 16 + #[prost(message, tag = "399")] + Gnalmgahbeg(super::Olbdkgdkdaa), + /// offset: 16 + #[prost(message, tag = "1544")] + Jfhkddliche(super::Ijpcknboice), + /// offset: 16 + #[prost(message, tag = "979")] + Fdnlipnlmnc(super::Ijpcknboice), + /// offset: 16 + #[prost(message, tag = "706")] + Cifoepdfmpn(super::Ijpcknboice), + /// offset: 16 + #[prost(message, tag = "1524")] + Jlfdikhaaca(super::Ndgacjnlmfd), + /// offset: 16 + #[prost(message, tag = "1104")] + Mecpaeelgim(super::Ndgacjnlmfd), + /// offset: 16 + #[prost(message, tag = "1648")] + Nipakmhgjde(super::Ndgacjnlmfd), + /// offset: 16 + #[prost(message, tag = "1057")] + Dcehaaijahp(super::Khpndbhokfg), + /// offset: 16 + #[prost(message, tag = "1435")] + Fpnnblekeaf(super::Khpndbhokfg), + /// offset: 16 + #[prost(message, tag = "1466")] + Olpkloncfaf(super::Bgfdlhheejh), + /// offset: 16 + #[prost(message, tag = "1458")] + Edjnnclbndg(super::Laldeibcolf), + /// offset: 16 + #[prost(message, tag = "205094")] + Ngnleafajfo(super::Ffkehkmbnfc), + /// offset: 16 + #[prost(message, tag = "205176")] + Ecefffgpmch(super::Nfihhiafpbk), + } +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5668)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Glfanalpnbg { + /// offset: 36 + #[prost(uint32, tag = "11")] + pub queue_position: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub iadhkcmnjjc: u32, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub retcode: u32, + #[prost( + oneof = "glfanalpnbg::Mlneddhojgc", + tags = "1241, 1426, 494, 1167, 1278, 522, 645, 1779, 1852, 2016, 1107, 775, 2039, 1344, 226, 66, 915, 274, 1624, 1427, 830, 681, 1621, 267, 225, 433, 396, 1542" + )] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `GLFANALPNBG`. +pub mod glfanalpnbg { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 24 + #[prost(message, tag = "1241")] + Cgojepeblac(super::Bkkdbhaioia), + /// offset: 24 + #[prost(message, tag = "1426")] + Lfcmppighbj(super::Jeaalidkoki), + /// offset: 24 + #[prost(message, tag = "494")] + Jjogpacicfg(super::Iippkppnnlg), + /// offset: 24 + #[prost(message, tag = "1167")] + Knkbcmmkeda(super::Hnjflcgflag), + /// offset: 24 + #[prost(message, tag = "1278")] + Fbgajfhlplf(super::Hfpmfkeghgb), + /// offset: 24 + #[prost(message, tag = "522")] + Lapbcheebpj(super::Cpklcfhmlgn), + /// offset: 24 + #[prost(message, tag = "645")] + Kmmmhdhkgjl(super::Pjelfjmlhai), + /// offset: 24 + #[prost(message, tag = "1779")] + Keccbindopa(super::Gblhkeoalkn), + /// offset: 24 + #[prost(message, tag = "1852")] + Hboaambhiei(super::Jjgkcbcahcf), + /// offset: 24 + #[prost(message, tag = "2016")] + Iogbbokpcgg(super::Idphpjgibje), + /// offset: 24 + #[prost(message, tag = "1107")] + Pioafigdbdf(super::Cbbipobipho), + /// offset: 24 + #[prost(message, tag = "775")] + Fhfdpofgpfm(super::Ckbopmechph), + /// offset: 24 + #[prost(message, tag = "2039")] + Kipndeidjie(super::Bdpgbjefhef), + /// offset: 24 + #[prost(message, tag = "1344")] + Gcblibnidip(super::Inibcnbhgcm), + /// offset: 24 + #[prost(message, tag = "226")] + Aejgdmfhelb(super::Milocclbpoo), + /// offset: 24 + #[prost(message, tag = "66")] + Knoegjapopb(super::Ggbccmoafbf), + /// offset: 24 + #[prost(message, tag = "915")] + Holjofolomk(super::Flbfmdajgkn), + /// offset: 24 + #[prost(message, tag = "274")] + Kpkcckiglhe(super::Dnlnaikhmlh), + /// offset: 24 + #[prost(message, tag = "1624")] + Elgkngdkefh(super::Ckpcgolceha), + /// offset: 24 + #[prost(message, tag = "1427")] + Cdhgphjcgmn(super::Akcajmgnmbk), + /// offset: 24 + #[prost(message, tag = "830")] + Ofpibhdoiij(super::Bbbpgmbcapk), + /// offset: 24 + #[prost(message, tag = "681")] + Jdcfhpofipi(super::Fgjckeccolf), + /// offset: 24 + #[prost(message, tag = "1621")] + Kblfpndbbgk(super::Hjpcdnogbhe), + /// offset: 24 + #[prost(message, tag = "267")] + Mkjmnlnbbbn(super::Mkbjggdbpih), + /// offset: 24 + #[prost(message, tag = "225")] + Jblmihdhfaj(super::Mjhbfnaoclj), + /// offset: 24 + #[prost(message, tag = "433")] + Ineepmdfkfg(super::Kdhgngnkfkm), + /// offset: 24 + #[prost(message, tag = "396")] + Mkiojndhhfb(super::Kdhgngnkfkm), + /// offset: 24 + #[prost(message, tag = "1542")] + Enjihioobde(super::Edhnfjccgpi), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nbaodehkeej { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub maze_buff_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dmcfphkhcno { + /// offset: 28 + #[prost(bool, tag = "5")] + pub njhbkgjoigb: bool, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub jihniklmmph: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aocdkfaobcp { + /// offset: 28 + #[prost(bool, tag = "11")] + pub njhbkgjoigb: bool, + /// offset: 24 + #[prost(uint32, tag = "1")] + pub hmmpojmklgg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Chegfbiefnc { + /// offset: 48 + #[prost(uint32, tag = "14")] + pub exp: u32, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub aeon_id: u32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub bijoeenhpmg: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "10")] + pub amkfegdneoe: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "8")] + pub nbjpfbejmae: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Phgfjlplmhh { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub lmlgppmdeig: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nklknhfopkb { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub clndidnieej: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub magic_unit_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hlekbabcdcl { + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub lacafpihpgb: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "9")] + pub ddokpjhgegi: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub lhnaamcgige: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "10")] + pub buff_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5669)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fhkeedolobo {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5606)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aehciihambj { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub ikgopplnnbp: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5688)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jioffgnhllm { + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub accchbfafid: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub bcdlibgnnhf: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "1")] + pub pnefdefogdj: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, repeated, tag = "3")] + pub bfiojfilljo: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "12")] + pub nidlmllpgli: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5603)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jmmjgoojbeh { + /// offset: 16 + #[prost(uint32, repeated, tag = "3")] + pub joiiaokihge: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5655)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jcignggpcbn { + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, repeated, tag = "14")] + pub gfhfmmlaehk: ::prost::alloc::vec::Vec, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(5630)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueCommonDialogueDataScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub dckilldonhg: ::prost::alloc::vec::Vec, -} -/// Obf: KAMCLHLJJPM -#[derive(proto_derive::CmdID)] -#[cmdid(5618)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SyncRogueCommonDialogueOptionFinishScNotify { - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub dgncfmdppbf: ::core::option::Option, +pub struct Mkkjihppcnf { /// offset: 16 - #[prost(message, optional, tag = "1")] - pub oidiaddnacm: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub kdmlllghjon: u32, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub event_unique_id: u32, + #[prost(uint32, repeated, tag = "4")] + pub khpibialaib: ::prost::alloc::vec::Vec, } -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mikfnbbopip { - /// offset: 16 - #[prost(string, tag = "4")] - pub mdlndgijnml: ::prost::alloc::string::String, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub agebambkkbc: u32, - /// offset: 52 - #[prost(uint32, tag = "8")] - pub illodgaefae: u32, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub rogue_sub_mode: u32, - /// offset: 32 - #[prost(message, optional, tag = "11")] - pub kndmeilhkej: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "1")] - pub egmebanhhnf: u32, -} -/// Obf: DBOKNOPCNGG -#[derive(proto_derive::CmdID)] -#[cmdid(5661)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueWorkbenchGetInfoCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub prop_entity_id: u32, -} -/// Obf: GINOHIHIKHN +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(5633)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueWorkbenchGetInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "2")] +pub struct Kcomnodhcod { + /// offset: 40 + #[prost(uint32, tag = "8")] pub retcode: u32, - /// offset: 24 - #[prost(map = "uint32, message", tag = "5")] - pub gajpnngmhnk: ::std::collections::HashMap, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, repeated, tag = "9")] + pub einbpdpnfag: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mhccpddkkda { - #[prost( - oneof = "mhccpddkkda::Pneccabblhb", - tags = "2, 8, 6, 5, 4, 7, 9, 15, 11, 12" - )] - pub pneccabblhb: ::core::option::Option, +pub struct Kiejhnakikm { + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "1")] + pub hdlehcnnoid: ::std::collections::HashMap, } -/// Nested message and enum types in `MHCCPDDKKDA`. -pub mod mhccpddkkda { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cokjplchamb { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub nlcnoekofld: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "14")] + pub ogbojfjagcb: u32, + /// offset: 32 + #[prost(int32, tag = "8")] + pub mbgmloellnf: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Phhnfefbhnn { + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub bmijmioikjp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aiojifmdlfh { + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub baookdnbkbg: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub avatar_id_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bgdlhamndgh { + #[prost(oneof = "bgdlhamndgh::Gfnmajmmdef", tags = "4, 1, 7, 10, 14, 11, 13, 6")] + pub gfnmajmmdef: ::core::option::Option, +} +/// Nested message and enum types in `BGDLHAMNDGH`. +pub mod bgdlhamndgh { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Pneccabblhb { - /// offset: 16 - #[prost(message, tag = "2")] - Cggnfjcbbkm(super::Glpeeijalgf), - /// offset: 16 - #[prost(message, tag = "8")] - Piclegggncf(super::Jcijcafjjkn), - /// offset: 16 - #[prost(message, tag = "6")] - Eapmicbgoio(super::Ajmibfecflj), - /// offset: 16 - #[prost(message, tag = "5")] - Nnchmgdgdfi(super::Lpilgjepagj), + pub enum Gfnmajmmdef { /// offset: 16 #[prost(message, tag = "4")] - Ndkhogemkja(super::Igilogohejp), + Boncaalanbg(super::Aipgdmcnfgi), + /// offset: 16 + #[prost(message, tag = "1")] + Iicdmmgjdno(super::Eojalglnhfe), /// offset: 16 #[prost(message, tag = "7")] - Jlfddmekljk(super::Khcbgnlnpel), + Kmlhbgfaela(super::Kiejhnakikm), /// offset: 16 - #[prost(message, tag = "9")] - Lcbecpoogcl(super::Kmhibngafeo), + #[prost(message, tag = "10")] + Pehfgbfodma(super::Cokjplchamb), /// offset: 16 - #[prost(message, tag = "15")] - Ceajnliofhf(super::Dmkpfgebilh), + #[prost(message, tag = "14")] + Nllcochlenf(super::Phhnfefbhnn), /// offset: 16 #[prost(message, tag = "11")] - Pgpaapopdoc(super::Lfggpngkbch), + Aedlbnopmnb(super::Ikdeonncmce), /// offset: 16 - #[prost(message, tag = "12")] - Pmkehgbpcng(super::Dhmfcidjbfd), + #[prost(message, tag = "13")] + Gmeoigdmhab(super::Lanpfhgifjp), + /// offset: 16 + #[prost(message, tag = "6")] + Plnhmfpoohn(super::Aiojifmdlfh), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Glpeeijalgf { - /// offset: 36 - #[prost(uint32, tag = "10")] - pub anlincfgfan: u32, +pub struct Maipmgojpeh { /// offset: 44 - #[prost(bool, tag = "3")] - pub fobaoeafnam: bool, + #[prost(uint32, tag = "13")] + pub dmblmooaema: u32, /// offset: 32 - #[prost(int32, tag = "5")] - pub dmmamjgngnn: i32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub jifkhckpnfm: u32, + #[prost(uint32, tag = "7")] + pub rogue_magic_battle_const: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub jhmngakdcba: u32, /// offset: 24 - #[prost(message, optional, tag = "14")] - pub item_cost_list: ::core::option::Option, + #[prost(message, repeated, tag = "12")] + pub jdkbogfifdd: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub ekolmjjicdm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iolmalkechc { + /// offset: 28 + #[prost(uint32, tag = "2")] + pub kmlbnndbjme: u32, + /// offset: 24 + #[prost(bool, tag = "7")] + pub eddpgfacjae: bool, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub progress: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jcijcafjjkn { +pub struct Fegbhcfijda { + /// offset: 36 + #[prost(enumeration = "Ikgnljigkpb", tag = "12")] + pub status: i32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub gjjkacomphd: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub dlfijbdnhnc: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ceeplgkcljo { + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub iakjijhmpnn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Djlgogekpbh { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub ljfmghncefp: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub llpbffmeacn: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5607)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Badnpcnjgom { + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub pglmabhmdne: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nhnkncpbbhf { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub mblkddiipmg: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub cafaaonnljn: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub koknmcmeflf: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oooklikkkhk { + /// offset: 24 + #[prost(enumeration = "Pehiobhjgce", repeated, tag = "5")] + pub mhgjmedegic: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Knklihakiah { + /// offset: 24 + #[prost(uint32, repeated, tag = "10")] + pub faiocblehmb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nafpgbkafnk { + /// offset: 40 + #[prost(message, repeated, tag = "1")] + pub bfhghlbboma: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "8")] + pub nnlpnnhobce: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "4")] + pub cmgcaaceggm: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub peobgoanclp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bjeglfajkha { + #[prost(oneof = "bjeglfajkha::Mlneddhojgc", tags = "1, 2, 8, 3")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `BJEGLFAJKHA`. +pub mod bjeglfajkha { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "1")] + Emcagjcegci(super::Nhnkncpbbhf), + /// offset: 16 + #[prost(message, tag = "2")] + Kcjjgmianig(super::Oooklikkkhk), + /// offset: 16 + #[prost(message, tag = "8")] + Ldpedibhlfm(super::Knklihakiah), + /// offset: 16 + #[prost(message, tag = "3")] + Jbegjiklkkd(super::Nafpgbkafnk), + } +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5672)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bjdhaphdehh { + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub popnpahigfn: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5665)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cbafjjelcoi { + /// offset: 36 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub adhdallkgpg: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub rogue_get_info: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5639)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lbofipjncap { + #[prost(oneof = "lbofipjncap::Noopcpnijin", tags = "3, 14, 13")] + pub noopcpnijin: ::core::option::Option, +} +/// Nested message and enum types in `LBOFIPJNCAP`. +pub mod lbofipjncap { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Noopcpnijin { + /// offset: 16 + #[prost(message, tag = "3")] + Emcagjcegci(super::Nhnkncpbbhf), + /// offset: 16 + #[prost(message, tag = "14")] + Kcjjgmianig(super::Oooklikkkhk), + /// offset: 16 + #[prost(message, tag = "13")] + Ldpedibhlfm(super::Knklihakiah), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ahhcilaabfk { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub talk_dialogue_id: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub aeon_talk_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Edpeegnocpe { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub haaljlgenhg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bfbomaoiapm { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub haaljlgenhg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hphdpipgnff { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub cndilnhdjkh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kofkbfgbhaj { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub haaljlgenhg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bnmeladfklb { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub dialogue_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dalbchlbfea { + #[prost(oneof = "dalbchlbfea::Akdgepafdci", tags = "5, 13, 2, 4, 11, 15")] + pub akdgepafdci: ::core::option::Option, +} +/// Nested message and enum types in `DALBCHLBFEA`. +pub mod dalbchlbfea { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Akdgepafdci { + /// offset: 24 + #[prost(message, tag = "5")] + Mlikbljdcdf(super::Ahhcilaabfk), + /// offset: 24 + #[prost(message, tag = "13")] + Mhkdhhkpkaf(super::Edpeegnocpe), + /// offset: 24 + #[prost(message, tag = "2")] + Jefeifadfpi(super::Bfbomaoiapm), + /// offset: 24 + #[prost(message, tag = "4")] + Legjadckkkc(super::Hphdpipgnff), + /// offset: 24 + #[prost(message, tag = "11")] + Lagiehoofgj(super::Kofkbfgbhaj), + /// offset: 24 + #[prost(message, tag = "15")] + Ionnbphmbfo(super::Bnmeladfklb), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Efojjpamblo { + /// offset: 24 + #[prost(float, tag = "15")] + pub hamiiacpbdl: f32, + /// offset: 28 + #[prost(int32, tag = "6")] + pub ngkmionahmk: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mkjofhjealp { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub battle_event_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Libdeijepfl { + /// offset: 24 + #[prost(int32, tag = "2")] + pub dgghajkfgnd: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bjknffgbajd { + #[prost(oneof = "bjknffgbajd::Hdhciklejkc", tags = "9, 14")] + pub hdhciklejkc: ::core::option::Option, +} +/// Nested message and enum types in `BJKNFFGBAJD`. +pub mod bjknffgbajd { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Hdhciklejkc { + /// offset: 24 + #[prost(message, tag = "9")] + Baghjlchbnm(super::Mkjofhjealp), + /// offset: 24 + #[prost(message, tag = "14")] + Fpkmhikboam(super::Libdeijepfl), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dilmfegkknm { /// offset: 44 - #[prost(uint32, tag = "11")] - pub anlincfgfan: u32, + #[prost(bool, tag = "14")] + pub koamfafdead: bool, + /// offset: 45 + #[prost(bool, tag = "15")] + pub is_valid: bool, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub llhfnkjofma: u32, + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub daclknbcnnp: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub display_value: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub arg_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mhefpcmjdoh { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub event_unique_id: u32, + /// offset: 32 + #[prost(message, repeated, tag = "11")] + pub paegjjemdfe: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub nkpejafollg: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5679)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Icpjofdglpc {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5627)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Empibljgioc { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 16 + #[prost(message, repeated, tag = "12")] + pub mmkdfcnfjkf: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5631)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ccbknldoljh { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub event_unique_id: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub llhfnkjofma: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5641)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eamngabakgb { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub dogfelplomc: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub llhfnkjofma: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "2")] + pub melgbmkcacn: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "3")] + pub event_unique_id: u32, /// offset: 40 #[prost(uint32, tag = "15")] - pub jifkhckpnfm: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub item_cost_list: ::core::option::Option, + pub retcode: u32, + /// offset: 52 + #[prost(bool, tag = "4")] + pub bdcmkaeggif: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5602)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ndmbkkgadno { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub event_unique_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5618)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ffebchciacf { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub event_unique_id: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5680)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Afkbbndlpbe { + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub mmkdfcnfjkf: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(5683)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aebnkgpchpc { + /// offset: 44 + #[prost(uint32, tag = "14")] + pub event_unique_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub dogfelplomc: ::core::option::Option, /// offset: 32 - #[prost(int32, tag = "12")] - pub dmmamjgngnn: i32, - /// offset: 36 - #[prost(bool, tag = "1")] - pub fobaoeafnam: bool, + #[prost(message, optional, tag = "1")] + pub nekpkabcgco: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub llhfnkjofma: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ajmibfecflj { +pub struct Ipdpbnoljpo { + /// offset: 40 + #[prost(uint32, tag = "5")] + pub rogue_magic_battle_const: u32, + /// offset: 44 + #[prost(uint32, tag = "7")] + pub dmblmooaema: u32, + /// offset: 32 + #[prost(message, optional, tag = "4")] + pub gclekilecbi: ::core::option::Option, + /// offset: 24 + #[prost(string, tag = "3")] + pub oajepobkmdm: ::prost::alloc::string::String, + /// offset: 52 + #[prost(uint32, tag = "8")] + pub jhmngakdcba: u32, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub ekolmjjicdm: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5696)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ggpbcfdahgk { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub prop_entity_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5648)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pmonfiomjoc { + /// offset: 24 + #[prost(map = "uint32, message", tag = "14")] + pub nibfgbonngk: ::std::collections::HashMap, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bcnmdhmkoed { + #[prost( + oneof = "bcnmdhmkoed::Lmjlgbagccg", + tags = "5, 9, 15, 6, 12, 1, 4, 13, 3, 10" + )] + pub lmjlgbagccg: ::core::option::Option, +} +/// Nested message and enum types in `BCNMDHMKOED`. +pub mod bcnmdhmkoed { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Lmjlgbagccg { + /// offset: 24 + #[prost(message, tag = "5")] + Baolcgeghpi(super::Lhchjcbkkhb), + /// offset: 24 + #[prost(message, tag = "9")] + Fpgclihimon(super::Gholjecoiik), + /// offset: 24 + #[prost(message, tag = "15")] + Polegbfceli(super::Ocoamjpglgj), + /// offset: 24 + #[prost(message, tag = "6")] + Ocmimopeojh(super::Ifgffgeagkn), + /// offset: 24 + #[prost(message, tag = "12")] + Jgkbiijglhm(super::Ldofbihpiek), + /// offset: 24 + #[prost(message, tag = "1")] + Lmlgppmdeig(super::Hnbgemfnagf), + /// offset: 24 + #[prost(message, tag = "4")] + Iocgdljchke(super::Aljamlekjck), + /// offset: 24 + #[prost(message, tag = "13")] + Jllfpkcioan(super::Dgkknfggjjk), + /// offset: 24 + #[prost(message, tag = "3")] + Emedffcpfjo(super::Goldbachmab), + /// offset: 24 + #[prost(message, tag = "10")] + Kcjponmhdnb(super::Ibeicoacgco), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lhchjcbkkhb { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub cost_data: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub jgehhoagfep: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub aapankjaffl: u32, + /// offset: 32 + #[prost(bool, tag = "3")] + pub jkgnfhlbolc: bool, + /// offset: 44 + #[prost(int32, tag = "4")] + pub eckgifnnmcl: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gholjecoiik { + /// offset: 40 + #[prost(uint32, tag = "15")] + pub jgehhoagfep: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub cost_data: ::core::option::Option, + /// offset: 44 + #[prost(int32, tag = "9")] + pub eckgifnnmcl: i32, + /// offset: 36 + #[prost(bool, tag = "2")] + pub jkgnfhlbolc: bool, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub aapankjaffl: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ocoamjpglgj { /// offset: 32 #[prost(uint32, tag = "14")] pub max_num: u32, + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "15")] + pub hahfmdpjdlg: ::std::collections::HashMap, /// offset: 36 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "12")] pub cur_num: u32, - /// offset: 24 - #[prost(map = "uint32, uint32", tag = "2")] - pub hcpacbhcmhn: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lpilgjepagj { +pub struct Ifgffgeagkn { /// offset: 32 - #[prost(message, optional, tag = "13")] - pub item_cost_list: ::core::option::Option, - /// offset: 16 - #[prost(map = "uint32, bool", tag = "4")] - pub nfnicipmjii: ::std::collections::HashMap, + #[prost(message, optional, tag = "12")] + pub cost_data: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "6")] - pub jifkhckpnfm: u32, + #[prost(uint32, tag = "3")] + pub aapankjaffl: u32, + /// offset: 16 + #[prost(map = "uint32, bool", tag = "2")] + pub imeicehockm: ::std::collections::HashMap, /// offset: 44 - #[prost(int32, tag = "10")] - pub dmmamjgngnn: i32, + #[prost(int32, tag = "8")] + pub eckgifnnmcl: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Igilogohejp { - /// offset: 36 +pub struct Ldofbihpiek { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub cost_data: ::core::option::Option, + /// offset: 32 #[prost(uint32, tag = "9")] - pub jifkhckpnfm: u32, - /// offset: 32 - #[prost(int32, tag = "6")] - pub dmmamjgngnn: i32, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub item_cost_list: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Coahgflonan { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub hbpblgllien: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "2")] - pub jlfddmekljk: ::core::option::Option, - /// offset: 48 - #[prost(bool, tag = "4")] - pub ngkjpcehmba: bool, - /// offset: 40 - #[prost(message, optional, tag = "14")] - pub item_cost_list: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Khcbgnlnpel { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub picfhpkdnel: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aogiimkcjdj { - /// offset: 48 - #[prost(bool, tag = "4")] - pub ngkjpcehmba: bool, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub unit_id: u32, - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub item_cost_list: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub ppmiogcfooc: u32, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub hbpblgllien: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kmhibngafeo { - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub magic_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dmkpfgebilh { + pub aapankjaffl: u32, /// offset: 36 - #[prost(int32, tag = "3")] - pub dmmamjgngnn: i32, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub item_cost_list: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub jifkhckpnfm: u32, + #[prost(int32, tag = "12")] + pub eckgifnnmcl: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lfggpngkbch { +pub struct Fnddlnfhmim { + /// offset: 48 + #[prost(bool, tag = "14")] + pub fckoiibaici: bool, + /// offset: 40 + #[prost(message, optional, tag = "13")] + pub lmlgppmdeig: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub cost_data: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub kolehedodfe: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hnbgemfnagf { + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub ndgmiomjhhd: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jcfcgogpeke { + /// offset: 40 + #[prost(uint32, tag = "13")] + pub clndidnieej: u32, + /// offset: 48 + #[prost(bool, tag = "15")] + pub fckoiibaici: bool, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub kolehedodfe: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "10")] + pub cost_data: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "14")] + pub magic_unit_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aljamlekjck { + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub rogue_magic_unit_info_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dgkknfggjjk { + /// offset: 36 + #[prost(int32, tag = "1")] + pub eckgifnnmcl: i32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub aapankjaffl: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub cost_data: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Goldbachmab { /// offset: 40 #[prost(uint32, tag = "12")] - pub jifkhckpnfm: u32, + pub aapankjaffl: u32, /// offset: 24 - #[prost(map = "uint32, message", tag = "4")] - pub iakhmmelmfd: ::std::collections::HashMap, + #[prost(message, optional, tag = "15")] + pub emgnobgleib: ::core::option::Option, /// offset: 44 - #[prost(int32, tag = "6")] - pub dmmamjgngnn: i32, + #[prost(int32, tag = "2")] + pub eckgifnnmcl: i32, /// offset: 32 - #[prost(message, optional, tag = "5")] - pub faidibodmch: ::core::option::Option, + #[prost(map = "uint32, message", tag = "10")] + pub lhjifcfejcf: ::std::collections::HashMap, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kifilcjolch { +pub struct Fcjdpiihfhf { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub cost_data: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "6")] pub scepter_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ibeicoacgco { /// offset: 16 - #[prost(message, optional, tag = "4")] - pub item_cost_list: ::core::option::Option, + #[prost(message, repeated, tag = "4")] + pub ecbagljheio: ::prost::alloc::vec::Vec, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(5686)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dhmfcidjbfd { - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub eldolkcakae: ::prost::alloc::vec::Vec, -} -/// Obf: BCMDOEOIAGB -#[derive(proto_derive::CmdID)] -#[cmdid(5676)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueWorkbenchHandleFuncCsReq { +pub struct Nahghnmdpkb { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub jejdbcojddj: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] + pub func_id: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] pub prop_entity_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub lbobpbhelgj: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub hobjminnbop: u32, } -/// Obf: LMPBJLIBHCA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(5682)] +#[cmdid(5628)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueWorkbenchHandleFuncScRsp { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub mlkioodnllf: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub retcode: u32, +pub struct Lilkjligcel { /// offset: 32 - #[prost(uint32, tag = "12")] - pub hobjminnbop: u32, + #[prost(uint32, tag = "13")] + pub func_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub hjkackbhmdj: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Akmbehgcbhe { - #[prost(oneof = "akmbehgcbhe::Item", tags = "12, 4, 2, 15, 13, 10, 6, 11, 8, 14")] - pub item: ::core::option::Option, +pub struct Hopbgdlhmpe { + #[prost( + oneof = "hopbgdlhmpe::Paiigoggofj", + tags = "11, 3, 10, 1, 5, 12, 13, 7, 2, 9" + )] + pub paiigoggofj: ::core::option::Option, } -/// Nested message and enum types in `AKMBEHGCBHE`. -pub mod akmbehgcbhe { +/// Nested message and enum types in `HOPBGDLHMPE`. +pub mod hopbgdlhmpe { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Item { - /// offset: 16 - #[prost(message, tag = "12")] - Cggnfjcbbkm(super::Akkcdlmlkdf), - /// offset: 16 - #[prost(message, tag = "4")] - Piclegggncf(super::Alnigmcjfdm), - /// offset: 16 - #[prost(message, tag = "2")] - Eapmicbgoio(super::Neoccicfned), - /// offset: 16 - #[prost(message, tag = "15")] - Nnchmgdgdfi(super::Kojkplcegen), - /// offset: 16 - #[prost(message, tag = "13")] - Ndkhogemkja(super::Bhjhapdlpno), - /// offset: 16 - #[prost(message, tag = "10")] - Jlfddmekljk(super::Jdooidbkcim), - /// offset: 16 - #[prost(message, tag = "6")] - Lcbecpoogcl(super::Gjbblcipbhd), + pub enum Paiigoggofj { /// offset: 16 #[prost(message, tag = "11")] - Ceajnliofhf(super::Lehglceljmf), + Baolcgeghpi(super::Kioegceeffc), /// offset: 16 - #[prost(message, tag = "8")] - Pgpaapopdoc(super::Fhjglopmfnc), + #[prost(message, tag = "3")] + Fpgclihimon(super::Ekikckhhjaa), /// offset: 16 - #[prost(message, tag = "14")] - Pmkehgbpcng(super::Jbncdffpdop), + #[prost(message, tag = "10")] + Polegbfceli(super::Iejbllaibmb), + /// offset: 16 + #[prost(message, tag = "1")] + Ocmimopeojh(super::Eionfklfljk), + /// offset: 16 + #[prost(message, tag = "5")] + Jgkbiijglhm(super::Imilpobkmmc), + /// offset: 16 + #[prost(message, tag = "12")] + Lmlgppmdeig(super::Ohhoopndpnc), + /// offset: 16 + #[prost(message, tag = "13")] + Iocgdljchke(super::Aapifcjihcj), + /// offset: 16 + #[prost(message, tag = "7")] + Jllfpkcioan(super::Kejlkgbjmcn), + /// offset: 16 + #[prost(message, tag = "2")] + Emedffcpfjo(super::Nmmffckjjeb), + /// offset: 16 + #[prost(message, tag = "9")] + Kcjponmhdnb(super::Lgjjklncjlg), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Akkcdlmlkdf { +pub struct Kioegceeffc { /// offset: 24 - #[prost(uint32, tag = "10")] - pub hifgeekagla: u32, + #[prost(uint32, tag = "11")] + pub njgdbdaconp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Alnigmcjfdm { +pub struct Ekikckhhjaa { /// offset: 24 - #[prost(uint32, tag = "10")] - pub pfmgabppdfl: u32, + #[prost(uint32, tag = "15")] + pub fpajokejgmc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Neoccicfned { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub amohedgmlee: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kojkplcegen { - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub nlklhflbjfm: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bhjhapdlpno { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub icaeccokajp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jdooidbkcim { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub fpljoaacdgd: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gjbblcipbhd { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub clopkobkhma: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lehglceljmf { - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub dnkccibpfgk: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fhjglopmfnc { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub unit_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jbncdffpdop { +pub struct Iejbllaibmb { /// offset: 24 #[prost(uint32, tag = "8")] + pub ndgonglhdoi: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eionfklfljk { + /// offset: 16 + #[prost(uint32, repeated, tag = "10")] + pub dlbgdpajphn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Imilpobkmmc { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub bnojboiokmf: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ohhoopndpnc { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub knimpobdbeh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aapifcjihcj { + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub homojeplgic: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kejlkgbjmcn { + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub cjdiclmdlfi: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nmmffckjjeb { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub magic_unit_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lgjjklncjlg { + /// offset: 24 + #[prost(uint32, tag = "7")] pub scepter_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fkbfooefpae { - /// offset: 24 - #[prost(enumeration = "Hgpokmdgknn", tag = "2")] - pub status: i32, +pub struct Mbddpcfmfek { /// offset: 28 - #[prost(uint32, tag = "10")] - pub infbhpgdlnd: u32, + #[prost(uint32, tag = "15")] + pub ihkcjecpnmk: u32, + /// offset: 24 + #[prost(enumeration = "Amanahodmcf", tag = "2")] + pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ajakdcddamo { +pub struct Bmamkpadhhb { /// offset: 32 - #[prost(uint32, tag = "9")] - pub infbhpgdlnd: u32, + #[prost(uint32, tag = "3")] + pub opmloflogej: u32, /// offset: 28 - #[prost(enumeration = "Hhiclpljnco", tag = "3")] + #[prost(enumeration = "Kckffkdfbed", tag = "5")] pub status: i32, /// offset: 24 - #[prost(uint32, tag = "10")] - pub eonlmdcbnme: u32, + #[prost(uint32, tag = "1")] + pub ihkcjecpnmk: u32, } -/// Obf: CKLNGGBJMHD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5675)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueCollectionCsReq {} -/// Obf: CHLEKGNDAKJ -#[derive(proto_derive::CmdID)] -#[cmdid(5664)] +#[cmdid(5654)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueCollectionScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub pcpedflnbga: ::prost::alloc::vec::Vec, +pub struct Oehgllpfdfa { /// offset: 40 - #[prost(uint32, tag = "2")] + #[prost(enumeration = "Bbojhkheipd", repeated, tag = "8")] + pub kdnkgbmoknn: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub dfeajaackbf: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] + pub apdcmdenpab: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5640)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Delponbaiff { + /// offset: 40 + #[prost(uint32, tag = "14")] pub retcode: u32, /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub pahpdbiacha: ::prost::alloc::vec::Vec, -} -/// Obf: GFIACEHAOFI -#[derive(proto_derive::CmdID)] -#[cmdid(5646)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetRogueCollectionCsReq { - /// offset: 32 - #[prost(uint32, repeated, tag = "9")] - pub opkmciffcch: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(enumeration = "Mhkmpgabbpl", repeated, tag = "15")] - pub lghphfppjen: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1")] + pub nnlpnnhobce: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub fpipmkcagpd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub cmgcaaceggm: ::prost::alloc::vec::Vec, } -/// Obf: MGEPEKLCAPM +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Icogfnhnfap { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub fmaolhflhka: u32, + /// offset: 24 + #[prost(enumeration = "Pabpdenlbjl", tag = "12")] + pub status: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Afcjobgcajf { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub fmaolhflhka: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub opmloflogej: u32, + /// offset: 24 + #[prost(enumeration = "Kckffkdfbed", tag = "1")] + pub status: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5659)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kenlcmjbhmc { + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub ocfkjjohdcd: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(enumeration = "Bbojhkheipd", repeated, tag = "13")] + pub eadpfkfnglc: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "11")] + pub lnbojpdnblo: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5678)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cfngeeofona { + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub peobgoanclp: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "6")] + pub bfhghlbboma: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fdgamclnjnd { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub dogjcpgolob: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lmmpahkgeoc { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub aompjbnhiml: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ncljnlppbcd { + /// offset: 40 + #[prost(bool, tag = "8")] + pub bkjaogbdhoi: bool, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub aompjbnhiml: u32, + #[prost(oneof = "ncljnlppbcd::Pcefomcghdj", tags = "5, 1")] + pub pcefomcghdj: ::core::option::Option, +} +/// Nested message and enum types in `NCLJNLPPBCD`. +pub mod ncljnlppbcd { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Pcefomcghdj { + /// offset: 24 + #[prost(message, tag = "5")] + Amlhjnhbgda(super::Fdgamclnjnd), + /// offset: 24 + #[prost(message, tag = "1")] + Hedlhfdlnop(super::Lmmpahkgeoc), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Khadgcmlked { + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub aneepaggajm: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(bool, tag = "11")] + pub bimcjjmnbgm: bool, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub group_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Golllfkpgco { + /// offset: 32 + #[prost(message, repeated, tag = "6")] + pub maze_group_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "2")] + pub hddmoecmbgo: u32, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub ifdbnmpdmin: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub dagkjoekfca: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub cur_times: u32, + /// offset: 52 + #[prost(uint32, tag = "9")] + pub chmndikjklj: u32, + /// offset: 40 + #[prost(bool, tag = "3")] + pub mmmnfnejcaa: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(5621)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hpejdaodmln { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub prop_entity_id: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(5658)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetRogueCollectionScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub pahpdbiacha: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub pcpedflnbga: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gbpflagfaij { - /// offset: 28 - #[prost(uint32, tag = "15")] - pub kbdfbginnbj: u32, - /// offset: 24 - #[prost(enumeration = "Ehcobodeeje", tag = "1")] - pub status: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dmodinlgccb { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub kbdfbginnbj: u32, +pub struct Ojbdhnmjplh { /// offset: 32 - #[prost(enumeration = "Hhiclpljnco", tag = "10")] - pub status: i32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub eonlmdcbnme: u32, -} -/// Obf: GAFKHGLMDKJ -#[derive(proto_derive::CmdID)] -#[cmdid(5627)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueExhibitionCsReq {} -/// Obf: AKKEABKJKMK -#[derive(proto_derive::CmdID)] -#[cmdid(5631)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueExhibitionScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub pjpjokkfnim: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub mkcefancaig: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub pkfalginemj: ::core::option::Option, } -/// Obf: FGHCIEOMINE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5608)] +#[cmdid(5694)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Anlnajlmeoe { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub prop_entity_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5687)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetRogueExhibitionCsReq { +pub struct Aomjbjfeeaa { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub pcdopcbogfl: u32, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub ondhdenklok: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub pkfalginemj: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fbnppimpicb { + /// offset: 56 + #[prost(uint32, tag = "9")] + pub map_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub anpphhgfcgc: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, optional, tag = "4")] + pub akkfmdipcbh: ::core::option::Option, + /// offset: 68 + #[prost(uint32, tag = "3")] + pub gndamlcbgde: u32, + /// offset: 72 + #[prost(uint32, tag = "2")] + pub nhgjahphfjg: u32, + /// offset: 60 + #[prost(uint32, tag = "6")] + pub jjmefgecdij: u32, /// offset: 32 #[prost(uint32, repeated, tag = "14")] - pub heepoeolilo: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub ldifbjdgffe: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(enumeration = "Mhkmpgabbpl", repeated, tag = "15")] - pub anekpinlkfj: ::prost::alloc::vec::Vec, -} -/// Obf: MBDACGMFDBA -#[derive(proto_derive::CmdID)] -#[cmdid(5624)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SetRogueExhibitionScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub mkcefancaig: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "10")] - pub pjpjokkfnim: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ehkegmcgcmh { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub deidchamdba: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pndnjbbdhdp { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub level: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub bimbfjgnpfb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dopjlbmmphb { - /// offset: 40 - #[prost(uint32, tag = "12")] - pub bimbfjgnpfb: u32, - /// offset: 32 - #[prost(bool, tag = "9")] - pub kdgbjgopehi: bool, - #[prost(oneof = "dopjlbmmphb::Fhdabdhijjb", tags = "4, 7")] - pub fhdabdhijjb: ::core::option::Option, -} -/// Nested message and enum types in `DOPJLBMMPHB`. -pub mod dopjlbmmphb { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Fhdabdhijjb { - /// offset: 16 - #[prost(message, tag = "4")] - Djnabioeenf(super::Ehkegmcgcmh), - /// offset: 16 - #[prost(message, tag = "7")] - Imcajaogclg(super::Pndnjbbdhdp), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lopjejmofbg { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub group_id: u32, - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub bbpapddenhb: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(bool, tag = "8")] - pub enbijbfbnec: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eomodelgnhe { - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub maze_group_list: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "14")] - pub akkonobbjnk: u32, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub hfbkbhjiegd: u32, - /// offset: 56 - #[prost(uint32, tag = "4")] - pub ddjddbknpff: u32, - /// offset: 48 - #[prost(bool, tag = "3")] - pub loffeohfpfl: bool, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub cur_times: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub kedcohkknak: ::core::option::Option, -} -/// Obf: JLEMAPHNDDK -#[derive(proto_derive::CmdID)] -#[cmdid(5643)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueGetGambleInfoCsReq { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub prop_entity_id: u32, -} -/// Obf: KGMFOEAIEJA -#[derive(proto_derive::CmdID)] -#[cmdid(5632)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueGetGambleInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "1")] - pub ffmifpfibdd: ::core::option::Option, -} -/// Obf: PLNFKHDHDBP -#[derive(proto_derive::CmdID)] -#[cmdid(5691)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueDoGambleCsReq { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub prop_entity_id: u32, -} -/// Obf: CGDANCPMJAE -#[derive(proto_derive::CmdID)] -#[cmdid(5673)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueDoGambleScRsp { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub jpklmppogdh: u32, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub ffmifpfibdd: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "3")] - pub cfbglfojoda: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jnfelckiocm { + pub base_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 64 - #[prost(enumeration = "RogueStatus", tag = "13")] + #[prost(enumeration = "Ffmgdehfoai", tag = "15")] pub status: i32, - /// offset: 32 - #[prost(uint32, repeated, tag = "1")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(uint32, tag = "15")] - pub map_id: u32, - /// offset: 60 - #[prost(uint32, tag = "10")] - pub gmpiiaeggek: u32, - /// offset: 40 - #[prost(uint32, repeated, tag = "4")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, optional, tag = "9")] - pub lchkkhngbgj: ::core::option::Option, - /// offset: 72 - #[prost(uint32, tag = "14")] - pub ffkpegnbhod: u32, - /// offset: 56 - #[prost(uint32, tag = "2")] - pub kjgimhfkgbn: u32, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub jlnilijomem: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oendafiaecg { +pub struct Amejggfoelm { /// offset: 36 - #[prost(uint32, tag = "10")] - pub kkpkaljmamf: u32, - /// offset: 44 - #[prost(uint32, tag = "2")] - pub hdjcjbbknaf: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub aeieojgcmmo: u32, + #[prost(uint32, tag = "14")] + pub bmbihpdmkdd: u32, /// offset: 24 - #[prost(uint32, tag = "6")] - pub hdllmdnlokp: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub bpekcejpofe: u32, - /// offset: 52 - #[prost(uint32, tag = "3")] - pub battle_id: u32, + #[prost(uint32, tag = "7")] + pub kcnmnfenkii: u32, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub ofkkmhemfip: u32, /// offset: 32 - #[prost(uint32, tag = "9")] - pub jpkjkimnigg: u32, + #[prost(bool, tag = "3")] + pub is_rotate: bool, + /// offset: 52 + #[prost(uint32, tag = "6")] + pub pjnepjdemlj: u32, /// offset: 48 - #[prost(bool, tag = "1")] - pub ighlhohcckc: bool, + #[prost(uint32, tag = "1")] + pub afflidclkch: u32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub battle_id: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub nocnlfpbanj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Peodocnclnp { - /// offset: 40 - #[prost(uint32, tag = "5")] - pub area_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub aeloipgfodb: ::core::option::Option, +pub struct Pgbgnogcjic { /// offset: 44 - #[prost(uint32, tag = "6")] - pub module_id: u32, + #[prost(uint32, tag = "11")] + pub area_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub mjhhfdoighk: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "3")] - pub bopaangkogh: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub cknpbbifjil: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub panel_id: u32, } -/// Obf: JGHNPPCKJOE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6006)] +#[cmdid(6002)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRogueEndlessActivityDataCsReq {} -/// Obf: ELKMJMAANCM +pub struct Ccfkephjeci {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6007)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRogueEndlessActivityDataScRsp { +pub struct Jnafhocceoa { /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub eahbikfallf: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub anameobfkgn: u32, - /// offset: 48 - #[prost(uint32, tag = "14")] - pub jchchlmdpen: u32, + #[prost(uint32, repeated, tag = "14")] + pub lfnlbcflmek: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(message, repeated, tag = "2")] - pub data: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "13")] + pub data: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "11")] + pub dilcdnjcijm: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub bjgmkmoppdg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bbnhemckdin { +pub struct Klldcbgofhb { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub avatar_id: u32, /// offset: 28 #[prost(enumeration = "AvatarType", tag = "10")] pub avatar_type: i32, } -/// Obf: MKCPGOPOHNH -#[derive(proto_derive::CmdID)] -#[cmdid(6004)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterRogueEndlessActivityStageCsReq { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub mgigdcmleog: u32, - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub avatar_list: ::prost::alloc::vec::Vec, -} -/// Obf: BNBIAMBDALL -#[derive(proto_derive::CmdID)] -#[cmdid(6009)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterRogueEndlessActivityStageScRsp { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub bopaangkogh: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub battle_info: ::core::option::Option, -} -/// Obf: CKKLIEMDEOF +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6010)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueEndlessActivityBattleEndScNotify { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jaacipebefb { /// offset: 24 - #[prost(message, optional, tag = "5")] - pub bopaangkogh: ::core::option::Option, + #[prost(message, repeated, tag = "9")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub agacjgbdnam: u32, } -/// Obf: BCNDKNLJOEP +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6001)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeRogueEndlessActivityPointRewardCsReq { - /// offset: 28 - #[prost(bool, tag = "10")] - pub mdhjkkbnmcf: bool, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub level: u32, -} -/// Obf: FMCEDJKIHNP -#[derive(proto_derive::CmdID)] -#[cmdid(6008)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueEndlessActivityPointRewardScRsp { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub reward: ::core::option::Option, +pub struct Ndbcpoekmap { /// offset: 32 - #[prost(uint32, repeated, tag = "8")] - pub eahbikfallf: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "14")] + pub battle_info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub mjhhfdoighk: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "7")] - pub level: u32, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub jchchlmdpen: u32, - /// offset: 48 - #[prost(bool, tag = "5")] - pub mdhjkkbnmcf: bool, - /// offset: 52 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: HLEKECOCGJI +/// Type: Notify #[derive(proto_derive::CmdID)] #[cmdid(6003)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeRogueEndlessActivityAllBonusRewardCsReq {} -/// Obf: JJPPDHEHFIM +pub struct Aacagdmndia { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub mjhhfdoighk: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6009)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ddjjoeoeafe { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub level: u32, + /// offset: 28 + #[prost(bool, tag = "5")] + pub alephclnhfi: bool, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6005)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRogueEndlessActivityAllBonusRewardScRsp { - /// offset: 32 - #[prost(uint32, repeated, tag = "13")] - pub eahbikfallf: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub jchchlmdpen: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] +pub struct Cknfindgjon { + /// offset: 52 + #[prost(uint32, tag = "14")] pub retcode: u32, /// offset: 24 - #[prost(message, optional, tag = "1")] + #[prost(message, optional, tag = "7")] pub reward: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "1")] + pub dilcdnjcijm: u32, + /// offset: 40 + #[prost(bool, tag = "9")] + pub alephclnhfi: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub lfnlbcflmek: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub level: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6006)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pgpkfjmbnbg {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6008)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mkibjdigcoj { + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "14")] + pub lfnlbcflmek: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub dilcdnjcijm: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hfippdggjol { +pub struct Lfllimdjilb { /// offset: 32 - #[prost(message, optional, tag = "11")] - pub map_rotation_data: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "8")] + #[prost(message, optional, tag = "12")] + pub scene: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "6")] pub lineup: ::core::option::Option, /// offset: 16 - #[prost(message, optional, tag = "7")] - pub scene: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub andajclclom: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bpaifngedgh { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub ogldnefkndo: u32, - /// offset: 24 - #[prost(message, repeated, tag = "11")] - pub mnfjeiininl: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub bhpgjcicmjm: u32, +pub struct Jmkipnmcafp { /// offset: 40 - #[prost(uint32, tag = "15")] - pub ppjbgnbmkpm: u32, + #[prost(uint32, tag = "10")] + pub pljagkdhnhj: u32, /// offset: 44 - #[prost(enumeration = "Jlcbbkkgoej", tag = "9")] + #[prost(uint32, tag = "13")] + pub ambmeconiin: u32, + /// offset: 36 + #[prost(enumeration = "Lidhppdfmni", tag = "1")] pub status: i32, + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub ekjhmjoegkp: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub dnfnacepbll: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oiikgfipmfg { - /// offset: 32 - #[prost(enumeration = "Jiokhlhgeod", tag = "11")] - pub status: i32, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub eipnnejnnkj: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub akdleblpbmd: u32, +pub struct Apkppdpecno { /// offset: 28 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] + pub cfhbffaljfi: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub bpcpfpbhmjm: u32, + /// offset: 36 + #[prost(enumeration = "Ejpbbfefkmf", tag = "5")] + pub status: i32, + /// offset: 32 + #[prost(uint32, tag = "7")] pub room_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mjkkoneiobo { - /// offset: 44 - #[prost(enumeration = "Behfnmkdomk", tag = "6")] +pub struct Mbnknkffhka { + /// offset: 48 + #[prost(enumeration = "Adicbhfaipb", tag = "8")] pub status: i32, /// offset: 36 - #[prost(enumeration = "Jmpphgigffi", tag = "2")] - pub reason: i32, - /// offset: 48 - #[prost(uint32, tag = "12")] - pub acgbelaigbo: u32, - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub ahooafgdehf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub lfcdodfmhhn: u32, + #[prost(uint32, tag = "10")] + pub fiihaellbpi: u32, /// offset: 40 - #[prost(uint32, tag = "9")] - pub bgokheibnkl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jchcgfmgbak { - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub magic_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub nmjaibbldoc: u32, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub eldolkcakae: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(bool, tag = "8")] - pub jfcnajmihci: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Llnhfmgmcmn { - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub dimhpbcpnlc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Klohnfgbnph { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub laeejiikmpi: u32, -} -/// Obf: ODFPBAAGAPO -#[derive(proto_derive::CmdID)] -#[cmdid(7799)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicStartCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub ahiibhkdfjb: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub area_id: u32, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub jeafpigjdol: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub avatar_id_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aapkbpeggbh { - /// offset: 40 - #[prost(message, optional, tag = "10")] - pub jlfddmekljk: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub basic_info: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub cacgekaankl: ::core::option::Option, - /// offset: 80 - #[prost(message, optional, tag = "8")] - pub item_value: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub lineup: ::core::option::Option, - /// offset: 64 - #[prost(message, optional, tag = "3")] - pub kkobbenpfph: ::core::option::Option, - /// offset: 56 - #[prost(message, optional, tag = "5")] - pub level: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "1")] - pub jibdgcfcdio: ::core::option::Option, -} -/// Obf: BEACKFEHJIJ -#[derive(proto_derive::CmdID)] -#[cmdid(7723)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicStartScRsp { - /// offset: 32 - #[prost(message, optional, tag = "6")] - pub bhmhlpchklg: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub lcoclenjjai: ::core::option::Option, -} -/// Obf: NMAEBMBEGOL -#[derive(proto_derive::CmdID)] -#[cmdid(7798)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicEnterCsReq {} -/// Obf: FOJGIIBDBPJ -#[derive(proto_derive::CmdID)] -#[cmdid(7765)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicEnterScRsp { - /// offset: 40 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub bhmhlpchklg: ::core::option::Option, -} -/// Obf: JPNGLDLLJCP -#[derive(proto_derive::CmdID)] -#[cmdid(7783)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicLeaveCsReq {} -/// Obf: JOEGNNIECCN -#[derive(proto_derive::CmdID)] -#[cmdid(7786)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicLeaveScRsp { - /// offset: 24 - #[prost(message, optional, tag = "2")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: BKFDIABHNDA -#[derive(proto_derive::CmdID)] -#[cmdid(7719)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicEnterRoomCsReq { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub fllablfbeik: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub bhpgjcicmjm: u32, -} -/// Obf: ELMOIGEFFGB -#[derive(proto_derive::CmdID)] -#[cmdid(7744)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicEnterRoomScRsp { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub lcoclenjjai: ::core::option::Option, -} -/// Obf: OIOHPPMCMHE -#[derive(proto_derive::CmdID)] -#[cmdid(7781)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicEnterLayerCsReq { - /// offset: 28 #[prost(uint32, tag = "6")] - pub fllablfbeik: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub lfcdodfmhhn: u32, -} -/// Obf: LDALHBMJLPD -#[derive(proto_derive::CmdID)] -#[cmdid(7769)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicEnterLayerScRsp { - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -/// Obf: NMAAKGGGDDE -#[derive(proto_derive::CmdID)] -#[cmdid(7757)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicLevelInfoUpdateScNotify { - /// offset: 48 - #[prost(uint32, tag = "14")] - pub bgokheibnkl: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub acgbelaigbo: u32, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub lfcdodfmhhn: u32, + pub ipnpkhfkjkf: u32, + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub nafalhfdbfe: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(enumeration = "Jmpphgigffi", tag = "4")] + #[prost(enumeration = "Lcdcpmbbipb", tag = "12")] pub reason: i32, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub ahooafgdehf: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(enumeration = "Behfnmkdomk", tag = "5")] - pub status: i32, -} -/// Obf: BJMDBIIDBPH -#[derive(proto_derive::CmdID)] -#[cmdid(7715)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicAreaUpdateScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub jidjeamdkde: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Caclanloolk { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub efkegdoajbh: u32, - /// offset: 28 - #[prost(bool, tag = "6")] - pub fbjhgpdkbgm: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fjjdkdndfdj { - /// offset: 28 - #[prost(bool, tag = "15")] - pub fbjhgpdkbgm: bool, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub kknghgbhcgg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ognbigkhhbm { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub gcglnkfdkkn: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub bjlemfmcodd: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "1")] - pub embagmmhipa: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "2")] - pub bhmhlpchklg: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hcjgpmdgbjo { - /// offset: 32 - #[prost(uint32, repeated, tag = "5")] - pub blbfdcgceda: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "4")] - pub klmgaebeagk: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "8")] - pub epckcookclj: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub mnkcjfelcng: ::prost::alloc::vec::Vec, -} -/// Obf: LPHOAKOKCGL -#[derive(proto_derive::CmdID)] -#[cmdid(7749)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicBattleFailSettleInfoScNotify { - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "8")] - pub njnjebodmnl: ::core::option::Option, -} -/// Obf: PICMLKBCPGJ -#[derive(proto_derive::CmdID)] -#[cmdid(7794)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicSettleCsReq {} -/// Obf: MMFBKKPAIAK -#[derive(proto_derive::CmdID)] -#[cmdid(7752)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicSettleScRsp { - /// offset: 48 - #[prost(message, optional, tag = "2")] - pub mgcfoglkmch: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 40 - #[prost(message, optional, tag = "14")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub gfonfdbfbna: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub njnjebodmnl: ::core::option::Option, -} -/// Obf: MHPBBOBPBDK -#[derive(proto_derive::CmdID)] -#[cmdid(7780)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicReviveCostUpdateScNotify { - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub gficflciejj: ::core::option::Option, -} -/// Obf: PHCBEONFBHA -#[derive(proto_derive::CmdID)] -#[cmdid(7777)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicReviveAvatarCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "9")] - pub interacted_prop_entity_id: u32, + pub icdldmdeejh: u32, } -/// Obf: CPMJBEHCKNB #[derive(proto_derive::CmdID)] -#[cmdid(7705)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicReviveAvatarScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, +pub struct Fpdlollnokk { + /// offset: 44 + #[prost(uint32, tag = "11")] + pub dfiaaidlcpg: u32, + /// offset: 40 + #[prost(bool, tag = "4")] + pub jbkmcjjakkk: bool, /// offset: 24 - #[prost(message, optional, tag = "6")] - pub gficflciejj: ::core::option::Option, + #[prost(message, repeated, tag = "1")] + pub rogue_magic_unit_info_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub ecbagljheio: ::prost::alloc::vec::Vec, } -/// Obf: JCNFFMKKAKM +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iogcdbemnmo { + /// offset: 16 + #[prost(uint32, repeated, tag = "13")] + pub bmijmioikjp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hcnnoipmdok { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub gapdajenmhj: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7747)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bafecpjffjj { + /// offset: 40 + #[prost(uint32, tag = "8")] + pub ojgjmbmjlkp: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub oppdalfjpmh: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "14")] + pub area_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kgokjgbojei { + /// offset: 56 + #[prost(message, optional, tag = "9")] + pub level: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "13")] + pub lagiehoofgj: ::core::option::Option, + /// offset: 64 + #[prost(message, optional, tag = "7")] + pub lineup: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub geibknhcgjf: ::core::option::Option, + /// offset: 72 + #[prost(message, optional, tag = "3")] + pub haejgohgfdk: ::core::option::Option, + /// offset: 80 + #[prost(message, optional, tag = "15")] + pub lmlgppmdeig: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "6")] + pub basic_info: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub neogefmhjpp: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7709)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Plpobhliklc { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub fillifehlki: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub demkcniddjf: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7738)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Goileimindk {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7717)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dmpainjegcd { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub fillifehlki: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub demkcniddjf: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7751)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicQueryCsReq {} +pub struct Glopkobpoib {} +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(7711)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Olfgbamefji { - /// offset: 72 - #[prost(uint32, tag = "1")] - pub hmkgbmidgop: u32, - /// offset: 88 - #[prost(uint32, tag = "13")] - pub blfdfmcffim: u32, - /// offset: 76 - #[prost(uint32, tag = "8")] - pub ipodnbljpol: u32, - /// offset: 32 - #[prost(message, repeated, tag = "1929")] - pub magic_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "62")] - pub jlhfojodokg: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(uint32, tag = "5")] - pub nmjaibbldoc: u32, - /// offset: 56 - #[prost(uint32, tag = "12")] - pub nnnkjkclblo: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "1345")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "6")] - pub ofbiahgopcm: u32, - /// offset: 40 - #[prost(message, repeated, tag = "1497")] - pub eldolkcakae: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "10")] - pub njiempgeeog: u32, - /// offset: 84 - #[prost(uint32, tag = "9")] - pub fonnghlgjfa: u32, - /// offset: 64 - #[prost(uint32, tag = "11")] - pub bgokheibnkl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Koiicmieaef { +pub struct Pbcfogeglmb { /// offset: 16 - #[prost(uint32, repeated, tag = "1240")] - pub dpplcddhbge: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pjebcbnpdic { - /// offset: 49 - #[prost(bool, tag = "4")] - pub knbdpfeidnm: bool, - /// offset: 52 - #[prost(uint32, tag = "9")] - pub ifpoilopfag: u32, - /// offset: 50 - #[prost(bool, tag = "12")] - pub is_taken_reward: bool, - /// offset: 40 - #[prost(uint32, repeated, tag = "8")] - pub npbnmmkhkop: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub record_info: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub fillifehlki: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "14")] - pub cgaijcclkbh: ::core::option::Option, - /// offset: 48 - #[prost(bool, tag = "6")] - pub biifelfegnk: bool, - /// offset: 56 - #[prost(uint32, tag = "1")] - pub area_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cchiedibofm { - /// offset: 28 - #[prost(bool, tag = "3")] - pub knbdpfeidnm: bool, - /// offset: 24 - #[prost(uint32, tag = "15")] - pub handcdpibld: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bgapfbpijhp { - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub eacemapdndh: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pbbedpiipek { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub kglbndeaphf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub dimgdinccji: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(message, repeated, tag = "4")] - pub jidjeamdkde: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "9")] - pub magic_list: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, repeated, tag = "13")] - pub picfhpkdnel: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub story_info: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "11")] - pub okakamonpfl: ::core::option::Option, -} -/// Obf: JAFOJENLDJP -#[derive(proto_derive::CmdID)] -#[cmdid(7729)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicQueryScRsp { - /// offset: 40 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7795)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fogjmokndcl { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub edecaabfcif: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub dnfnacepbll: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7791)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ffbnnemnaig { /// offset: 24 #[prost(message, optional, tag = "7")] - pub bhmhlpchklg: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub operating_system: ::core::option::Option, -} -/// Obf: MDLNPIMICMD -#[derive(proto_derive::CmdID)] -#[cmdid(7703)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicScepterDressInUnitCsReq { + pub fillifehlki: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "7")] - pub slot_id: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub scepter_id: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub elpinnnalbd: u32, -} -/// Obf: AAGDKJFNAKG -#[derive(proto_derive::CmdID)] -#[cmdid(7709)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicScepterDressInUnitScRsp { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: CHJNEKCPADA -#[derive(proto_derive::CmdID)] -#[cmdid(7753)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicAutoDressInUnitCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub bhkankfpdcp: ::prost::alloc::vec::Vec, -} -/// Obf: DMKCMBHADOL -#[derive(proto_derive::CmdID)] -#[cmdid(7742)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicAutoDressInUnitScRsp { - /// offset: 24 #[prost(uint32, tag = "1")] pub retcode: u32, } -/// Obf: LIAJHMCJDLO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7716)] +#[cmdid(7761)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicSetAutoDressInMagicUnitCsReq { +pub struct Okhkbmnllil { /// offset: 24 - #[prost(bool, tag = "10")] - pub khdhahnnalm: bool, -} -/// Obf: NNJADFLFHEB -#[derive(proto_derive::CmdID)] -#[cmdid(7756)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicSetAutoDressInMagicUnitScRsp { + #[prost(uint32, tag = "11")] + pub fiihaellbpi: u32, /// offset: 28 - #[prost(bool, tag = "6")] - pub khdhahnnalm: bool, - /// offset: 24 + #[prost(uint32, tag = "14")] + pub edecaabfcif: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7745)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nkpddcnpjpe { + /// offset: 32 #[prost(uint32, tag = "14")] pub retcode: u32, -} -/// Obf: AMBAEBKGJIB -#[derive(proto_derive::CmdID)] -#[cmdid(7741)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicAutoDressInMagicUnitChangeScNotify { /// offset: 24 - #[prost(bool, tag = "15")] - pub khdhahnnalm: bool, + #[prost(message, optional, tag = "12")] + pub fillifehlki: ::core::option::Option, } -/// Obf: LLCCLFEGKHD +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7776)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fkeocmndhan { + /// offset: 44 + #[prost(enumeration = "Adicbhfaipb", tag = "15")] + pub status: i32, + /// offset: 32 + #[prost(enumeration = "Lcdcpmbbipb", tag = "6")] + pub reason: i32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub icdldmdeejh: u32, + /// offset: 48 + #[prost(uint32, tag = "3")] + pub ipnpkhfkjkf: u32, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub nafalhfdbfe: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub fiihaellbpi: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7752)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lamfnnncnnl { + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub hnnhmlfjnee: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Afjchnjihic { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub aabaoipheeg: u32, + /// offset: 28 + #[prost(bool, tag = "5")] + pub cjpockcnfpi: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cijpojoeggd { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub kjbkpojmohf: u32, + /// offset: 24 + #[prost(bool, tag = "9")] + pub cjpockcnfpi: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nmbfiaamjdn { + /// offset: 40 + #[prost(message, optional, tag = "15")] + pub demkcniddjf: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub flcldhfldkf: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub bffichhodam: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub plnhmfpoohn: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nkjkiopecph { + /// offset: 32 + #[prost(uint32, repeated, tag = "14")] + pub oclmnbblghj: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "7")] + pub bmfgjpcaioc: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub amcihppodaa: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub pgonjmkbpgp: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7737)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fbkgccfalgg { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub fillifehlki: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub tourn_finish_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7789)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pnjnighfnda {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7720)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dmkhejinbhi { + /// offset: 48 + #[prost(message, optional, tag = "12")] + pub beneeblnnpl: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub fillifehlki: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "10")] + pub mnobblpgjlc: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub tourn_finish_info: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7710)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Llaagpngdai { + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub baookdnbkbg: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7767)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Amnpfhhpmgb { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub interacted_prop_entity_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7762)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicScepterTakeOffUnitCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub bhkankfpdcp: ::prost::alloc::vec::Vec, +pub struct Fbaijoopecg { /// offset: 32 - #[prost(uint32, tag = "2")] - pub scepter_id: u32, -} -/// Obf: FJKAPMKLJAE -#[derive(proto_derive::CmdID)] -#[cmdid(7759)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicScepterTakeOffUnitScRsp { - /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "11")] pub retcode: u32, -} -/// Obf: IHBDBADPBEH -#[derive(proto_derive::CmdID)] -#[cmdid(7722)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicUnitComposeCsReq { /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub bhkankfpdcp: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "3")] + pub baookdnbkbg: ::core::option::Option, } -/// Obf: GPLNECHOOCF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7797)] +#[cmdid(7735)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicUnitComposeScRsp { +pub struct Lhgoakjkpdf {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iommgadhhdp { + /// offset: 84 + #[prost(uint32, tag = "13")] + pub lmpedhmknio: u32, + /// offset: 16 + #[prost(message, repeated, tag = "1669")] + pub ecbagljheio: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "5")] + pub gdffemmocnp: u32, + /// offset: 40 + #[prost(message, repeated, tag = "25")] + pub rogue_magic_unit_info_list: ::prost::alloc::vec::Vec, + /// offset: 76 + #[prost(uint32, tag = "12")] + pub ipnpkhfkjkf: u32, /// offset: 24 + #[prost(uint32, repeated, tag = "1274")] + pub avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 88 + #[prost(uint32, tag = "15")] + pub niiffjnjihm: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "2023")] + pub mjddkdnnpfc: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "3")] + pub dfiaaidlcpg: u32, + /// offset: 68 + #[prost(uint32, tag = "9")] + pub jhhkaoglaop: u32, + /// offset: 60 + #[prost(uint32, tag = "6")] + pub dhbgadhngpl: u32, + /// offset: 64 + #[prost(uint32, tag = "14")] + pub gaehcchpofj: u32, + /// offset: 80 + #[prost(uint32, tag = "11")] + pub gecafnhdedg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cghaalinnbj { + /// offset: 24 + #[prost(uint32, repeated, tag = "1131")] + pub gdffjghpied: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cnongmhdccc { + /// offset: 56 + #[prost(uint32, tag = "8")] + pub area_id: u32, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub fgaehnggame: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "13")] + pub oeieehiajmk: ::prost::alloc::vec::Vec, + /// offset: 50 + #[prost(bool, tag = "15")] + pub bcdnofglond: bool, + /// offset: 40 + #[prost(message, optional, tag = "1")] + pub record_info: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "3")] + pub cbgcnnikfnf: ::core::option::Option, + /// offset: 48 + #[prost(bool, tag = "11")] + pub magpfbddfgj: bool, + /// offset: 49 + #[prost(bool, tag = "4")] + pub is_taken_reward: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bcmmfbfakgb { + /// offset: 24 + #[prost(bool, tag = "8")] + pub magpfbddfgj: bool, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub hjakkpmncmf: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jaglofmpfjg { + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub cnfnipaeank: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pbgfmhmkfmn { + /// offset: 40 + #[prost(message, repeated, tag = "8")] + pub ndgmiomjhhd: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, repeated, tag = "4")] + pub oabocihnebg: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "13")] + pub story_info: ::core::option::Option, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub hemgpablmcn: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(message, optional, tag = "11")] + pub lahgpfhfinn: ::core::option::Option, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub hnnhmlfjnee: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(message, repeated, tag = "12")] + pub rogue_magic_unit_info_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7798)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cnnonaoenkl { + /// offset: 40 #[prost(uint32, tag = "12")] pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub demkcniddjf: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub rogue_get_info: ::core::option::Option, } -/// Obf: DDIECBDNCIJ +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7792)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gifknbfopdp { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub scepter_id: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub dice_slot_id: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub ieopdpagjki: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7714)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mnebhgmaggd { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7755)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicUnitReforgeCsReq { +pub struct Amejihnhfid { + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub cgnilijhepm: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7730)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Almeajgadbp { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7769)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dpoeejjblec { + /// offset: 24 + #[prost(bool, tag = "3")] + pub kcboieneaod: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7706)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ighonomdlhl { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 24 + #[prost(bool, tag = "3")] + pub kcboieneaod: bool, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7766)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Okfnccgbhhi { + /// offset: 24 + #[prost(bool, tag = "6")] + pub kcboieneaod: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7726)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Paofaehlgej { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub scepter_id: u32, /// offset: 16 #[prost(uint32, repeated, tag = "7")] - pub bhkankfpdcp: ::prost::alloc::vec::Vec, + pub cgnilijhepm: ::prost::alloc::vec::Vec, } -/// Obf: AJMPFOIJAML +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7750)] +#[cmdid(7757)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicUnitReforgeScRsp { +pub struct Ekgpblkocfh { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7715)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Apegfhbbgdd { + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub cgnilijhepm: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7773)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pofmbilcpmk { /// offset: 24 #[prost(uint32, tag = "6")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Iejppfjfjlj { +pub struct Gogeleboija { /// offset: 16 - #[prost(message, optional, tag = "1")] - pub talent_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub cmadmlialjl: u32, + #[prost(uint32, repeated, tag = "6")] + pub cgnilijhepm: ::prost::alloc::vec::Vec, } -/// Obf: MKFONFJNKDB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7760)] +#[cmdid(7713)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicGetTalentInfoCsReq {} -/// Obf: CMFPLABIBCD -#[derive(proto_derive::CmdID)] -#[cmdid(7771)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicGetTalentInfoScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] +pub struct Bbnojffapcp { + /// offset: 24 + #[prost(uint32, tag = "5")] pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub okakamonpfl: ::core::option::Option, } -/// Obf: HHMFEHGPHIL #[derive(proto_derive::CmdID)] -#[cmdid(7735)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicEnableTalentCsReq { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub talent_id: u32, -} -/// Obf: BLCHCIIGNDB -#[derive(proto_derive::CmdID)] -#[cmdid(7774)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueMagicEnableTalentScRsp { +pub struct Dkkobemmgcn { /// offset: 32 #[prost(uint32, tag = "14")] - pub retcode: u32, + pub eniekcbooki: u32, /// offset: 24 #[prost(message, optional, tag = "8")] - pub okakamonpfl: ::core::option::Option, + pub fhckbpigcjc: ::core::option::Option, } -/// Obf: ECEGEHKCEBB #[derive(proto_derive::CmdID)] -#[cmdid(7721)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicGetMiscRealTimeDataCsReq {} -/// Obf: FANODLFGDEG +pub struct Mahkghicnfg {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7710)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicGetMiscRealTimeDataScRsp { - /// offset: 40 - #[prost(uint32, tag = "1")] +#[cmdid(7749)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ofmjlfkgbea { + /// offset: 32 + #[prost(uint32, tag = "7")] pub retcode: u32, - /// offset: 16 + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub lahgpfhfinn: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7777)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cfghhomofjf { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub gjjkacomphd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7719)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dfaklhgpbcj { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 24 #[prost(message, optional, tag = "13")] - pub bjlemfmcodd: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub gcglnkfdkkn: ::core::option::Option, + pub lahgpfhfinn: ::core::option::Option, } -/// Obf: GCIONHDOOCC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7770)] +#[cmdid(7788)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueMagicStoryInfoUpdateScNotify { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub mnbccbabcha: u32, -} +pub struct Gedkmficaba {} +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(7703)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eddhmigfdji { +pub struct Cloaafapkpg { /// offset: 24 - #[prost(uint32, tag = "9")] - pub inbjppapcag: u32, - /// offset: 28 - #[prost(bool, tag = "1")] - pub pipmgacmjnn: bool, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub mbgkckldhib: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Foiacpfkdhk { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub onnjgdjnflg: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub mbgkckldhib: u32, - /// offset: 36 - #[prost(bool, tag = "12")] - pub pipmgacmjnn: bool, + #[prost(message, optional, tag = "13")] + pub flcldhfldkf: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "13")] - pub inbjppapcag: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pogcnjmngpi { + #[prost(uint32, tag = "2")] + pub retcode: u32, /// offset: 32 - #[prost(bool, tag = "11")] - pub pipmgacmjnn: bool, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub inbjppapcag: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "2")] - pub onnjgdjnflg: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ainblbbfdbj { - /// offset: 40 - #[prost(uint32, tag = "8")] - pub nijagoajpem: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub inbjppapcag: u32, - /// offset: 36 - #[prost(bool, tag = "15")] - pub pipmgacmjnn: bool, - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub nhgojdodgma: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "14")] + pub bffichhodam: ::core::option::Option, } +/// Type: Notify #[derive(proto_derive::CmdID)] +#[cmdid(7733)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ajeeiakemip { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub cehfiilmjkm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Khmjbjlobpg { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub cpocngekiib: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gfgdodhmbpk { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub kokpceamabc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Npdipkhdcnf { - /// offset: 36 - #[prost(bool, tag = "11")] - pub pipmgacmjnn: bool, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub inbjppapcag: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub nhgojdodgma: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub iigoemfhgll: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Egalagnaefb { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub gpdeiiioipn: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub gclebgddiip: u32, - /// offset: 28 - #[prost(uint32, tag = "7")] - pub olgljhecdof: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ndgljknkefk { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub ojeblmkkmgo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Egfdajdihnj { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub item_id: u32, +pub struct Jdofcfelemh { /// offset: 24 #[prost(uint32, tag = "8")] - pub mbejblfhcbh: u32, + pub dchkhkpplgd: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pnikofbimjl { +pub struct Bclidbjnfmm { /// offset: 28 - #[prost(uint32, tag = "12")] - pub num: u32, + #[prost(bool, tag = "5")] + pub koamfafdead: bool, /// offset: 32 - #[prost(uint32, tag = "2")] - pub nejdmegnfgk: u32, + #[prost(uint32, tag = "8")] + pub pfoflojheeo: u32, /// offset: 24 - #[prost(uint32, tag = "3")] - pub eoaefbknffe: u32, + #[prost(uint32, tag = "6")] + pub dkdlpchdpkj: u32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jjdkoeehbjo { - /// offset: 28 +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Meajddehdlh { + /// offset: 40 #[prost(uint32, tag = "14")] - pub num: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub ooofgdbldce: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Okgmdmjhcmk { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub cehfiilmjkm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cfkbhpnbcnb { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub mbgkckldhib: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bbbeoeoifjk { + pub dkdlpchdpkj: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub onnjgdjnflg: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] + pub hpmbmfkfdee: ::prost::alloc::vec::Vec, /// offset: 36 - #[prost(uint32, tag = "12")] - pub inbjppapcag: u32, - /// offset: 32 - #[prost(bool, tag = "7")] - pub pipmgacmjnn: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ahpnapgpjeg { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub amojfmfeoge: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub ojeblmkkmgo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fpchmkkcgfa { - /// offset: 24 - #[prost(enumeration = "Njchljfiodm", tag = "8")] - pub lghokgabgck: i32, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub affjhmjdibn: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub bnckfbfmgmi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ndfookghhop { - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub cegckbndalf: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "13")] + pub pfoflojheeo: u32, /// offset: 32 #[prost(bool, tag = "4")] - pub pipmgacmjnn: bool, + pub koamfafdead: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oomcckakgki { + /// offset: 32 + #[prost(bool, tag = "8")] + pub koamfafdead: bool, /// offset: 36 - #[prost(uint32, tag = "15")] - pub inbjppapcag: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mdbjbiekkee { + #[prost(uint32, tag = "12")] + pub pfoflojheeo: u32, /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub hpmbmfkfdee: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jlfakbknecj { + /// offset: 32 + #[prost(bool, tag = "9")] + pub koamfafdead: bool, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub fmaigbbdoml: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub ckebkoocjbn: ::prost::alloc::vec::Vec, + /// offset: 36 #[prost(uint32, tag = "8")] - pub lipapomhmce: u32, + pub pfoflojheeo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Blcpnbikclp { +pub struct Mdjnglnompa { /// offset: 24 #[prost(uint32, tag = "4")] + pub inpkcdgkopb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oodhmidifel { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub aabbnlnipki: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bigofikkndo { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub fplpkejbkbe: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hoolajgljnk { + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub ckebkoocjbn: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub epadnenmggm: u32, + /// offset: 36 + #[prost(bool, tag = "14")] + pub koamfafdead: bool, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub pfoflojheeo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bhpkgghliee { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub gcdgelmlcdp: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub nafgoegnlap: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub kgelmiiijef: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Elddddajmpb { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub maze_buff_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjplepfmfmc { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub item_id: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub item_count: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gjdgfbpgimo { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub olicjadlibc: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub eimabbmaodm: u32, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub num: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Npkgidmcjac { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub bbmefegconp: u32, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub num: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bmbcccpmgme { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub inpkcdgkopb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mpcaepeoank { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub dkdlpchdpkj: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Idbckehcohj { + /// offset: 32 + #[prost(bool, tag = "14")] + pub koamfafdead: bool, + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub hpmbmfkfdee: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub pfoflojheeo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ohibjnlebfd { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub bpamnbcplmb: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub maze_buff_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Neiccpjepal { + /// offset: 28 + #[prost(uint32, tag = "8")] + pub nfldiamehod: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub nnnljfbpdcm: u32, + /// offset: 24 + #[prost(enumeration = "Ckdmdlpddbb", tag = "1")] + pub modifier_content_type: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cjmdljaoehd { + /// offset: 36 + #[prost(uint32, tag = "5")] + pub pfoflojheeo: u32, + /// offset: 32 + #[prost(bool, tag = "13")] + pub koamfafdead: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub icieancnjah: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gdeehmobmlp { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub djanijolojp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lkdeghcjgdj { + /// offset: 24 + #[prost(uint32, tag = "9")] pub count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Aekpjeldapd { +pub struct Hdhkjbanpob { /// offset: 40 - #[prost(enumeration = "Lgmdbcffjof", tag = "9")] - pub hhmabjdimgm: i32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub scepter: ::core::option::Option, + #[prost(uint64, tag = "4")] + pub bneneglelpe: u64, /// offset: 48 - #[prost(uint64, tag = "8")] - pub pkfcldincal: u64, - #[prost(oneof = "aekpjeldapd::Info", tags = "694")] - pub info: ::core::option::Option, + #[prost(enumeration = "Dgpmdefdmke", tag = "14")] + pub phkopcbnocc: i32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub modifier_content: ::core::option::Option, + #[prost(oneof = "hdhkjbanpob::Mlneddhojgc", tags = "1942")] + pub mlneddhojgc: ::core::option::Option, } -/// Nested message and enum types in `AEKPJELDAPD`. -pub mod aekpjeldapd { +/// Nested message and enum types in `HDHKJBANPOB`. +pub mod hdhkjbanpob { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Mlneddhojgc { /// offset: 32 - #[prost(message, tag = "694")] - Kbobeemcndd(super::Ndfookghhop), + #[prost(message, tag = "1942")] + Jphkppmpdpe(super::Cjmdljaoehd), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eendhpkpflp { +pub struct Mfmjhpcckdh { /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub mebjclenpio: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "14")] + pub pmkilnpebfi: ::prost::alloc::vec::Vec, } -/// Obf: BMPIBDIIFBE +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5398)] +#[cmdid(5338)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueModifierAddNotify { +pub struct Ffoofohoobd { /// offset: 16 - #[prost(message, optional, tag = "6")] - pub pdaampcelaa: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub mnilaagpncp: ::core::option::Option, } -/// Obf: ICHALPIPMMJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(5365)] +#[cmdid(5317)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueModifierSelectCellCsReq { +pub struct Cckkhnghajm { /// offset: 24 + #[prost(uint32, tag = "6")] + pub llnngangkha: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(5351)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jnakjhbcegk { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub bhndfdbdkaf: ::core::option::Option, + /// offset: 32 #[prost(uint32, tag = "3")] - pub hhcbjghkcpc: u32, -} -/// Obf: DEMFLHNIOGF -#[derive(proto_derive::CmdID)] -#[cmdid(5383)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueModifierSelectCellScRsp { + pub llnngangkha: u32, /// offset: 36 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub jdijkegcibp: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub hhcbjghkcpc: u32, } -/// Obf: JGDGHGEKGPG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5352)] +#[cmdid(5320)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueModifierUpdateNotify { +pub struct Kncfbdfldfe { /// offset: 24 - #[prost(message, optional, tag = "5")] - pub pdaampcelaa: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub mnilaagpncp: ::core::option::Option, } -/// Obf: HOCIFOBCEOM +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5319)] +#[cmdid(5395)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueModifierDelNotify { +pub struct Oljnkmloaai { /// offset: 24 - #[prost(uint64, tag = "10")] - pub pkfcldincal: u64, + #[prost(uint64, tag = "15")] + pub bneneglelpe: u64, } -/// Obf: HCGBFLPOCPI +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(5344)] +#[cmdid(5391)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueModifierStageStartNotify { +pub struct Pflkckjcdnp { /// offset: 24 - #[prost(enumeration = "Lgmdbcffjof", tag = "9")] - pub hhmabjdimgm: i32, + #[prost(enumeration = "Dgpmdefdmke", tag = "3")] + pub phkopcbnocc: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fjemjbnajfj { - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub scene: ::core::option::Option, +pub struct Ldoajhjdadg { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub andajclclom: ::core::option::Option, /// offset: 40 + #[prost(message, optional, tag = "6")] + pub scene: ::core::option::Option, + /// offset: 16 #[prost(message, optional, tag = "3")] pub lineup: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub map_rotation_data: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cfcdhlpoogc { +pub struct Gmnjjmdclhh { /// offset: 24 - #[prost(message, optional, tag = "15")] - pub ikobkinkhcf: ::core::option::Option, - #[prost(oneof = "cfcdhlpoogc::Info", tags = "396")] - pub info: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub fpnopcddajk: ::core::option::Option, + #[prost(oneof = "gmnjjmdclhh::Mlneddhojgc", tags = "204")] + pub mlneddhojgc: ::core::option::Option, } -/// Nested message and enum types in `CFCDHLPOOGC`. -pub mod cfcdhlpoogc { +/// Nested message and enum types in `GMNJJMDCLHH`. +pub mod gmnjjmdclhh { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 32 - #[prost(message, tag = "396")] - Icffjlicimb(super::Lhadmkcgcko), + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "204")] + Jmlhdhlhnci(super::Leepbdmdlgj), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nkpkiaamodg { - /// offset: 28 +pub struct Jigflopjfhl { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub aookfogiegl: u32, + /// offset: 36 #[prost(bool, tag = "12")] - pub fbjhgpdkbgm: bool, - /// offset: 32 + pub cjpockcnfpi: bool, + /// offset: 28 + #[prost(uint32, tag = "6")] + pub bldmihlehdn: u32, + /// offset: 24 #[prost(uint32, tag = "14")] - pub mnnkjpliilj: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub ldfehkdcnel: u32, + pub ghmmkinbghi: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dmipnbpkhpc { /// offset: 36 #[prost(uint32, tag = "11")] - pub jdbahpebfjc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nnijcdkhpkl { + pub hleaaaljgbb: u32, /// offset: 32 - #[prost(bool, tag = "2")] - pub fbjhgpdkbgm: bool, + #[prost(bool, tag = "13")] + pub cjpockcnfpi: bool, /// offset: 28 - #[prost(uint32, tag = "6")] - pub aiplflibpkj: u32, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub cdinhfhbmog: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub jedjbedkcji: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gpnjmehndmn { - /// offset: 24 - #[prost(bool, tag = "14")] - pub fbjhgpdkbgm: bool, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub japdcmjpiej: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub hipjhpjolbe: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fbhnfjcnhml { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub japdcmjpiej: u32, - /// offset: 24 - #[prost(bool, tag = "6")] - pub fbjhgpdkbgm: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bmnmbpnbbhm { - /// offset: 24 - #[prost(bool, tag = "2")] - pub pgcbeoleioo: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lhadmkcgcko { - /// offset: 48 - #[prost(message, optional, tag = "12")] - pub hpdbjalemmo: ::core::option::Option, - /// offset: 72 - #[prost(message, optional, tag = "15")] - pub jmidlldkjbi: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub lineup: ::core::option::Option, - /// offset: 104 - #[prost(message, optional, tag = "5")] - pub jibdgcfcdio: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub lkkfhfdpfke: ::core::option::Option, - /// offset: 88 - #[prost(message, optional, tag = "14")] - pub lmpgbonbhgn: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub bdjebpnjelp: ::core::option::Option, - /// offset: 56 - #[prost(message, optional, tag = "11")] - pub kkobbenpfph: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "1")] - pub ijbphigkmhf: ::core::option::Option, - /// offset: 96 - #[prost(message, optional, tag = "6")] - pub level: ::core::option::Option, - /// offset: 80 - #[prost(message, optional, tag = "13")] - pub item_value: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gekleellcbf { - /// offset: 44 - #[prost(bool, tag = "5")] - pub ejoijgclcjo: bool, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub lfcdodfmhhn: u32, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub ahooafgdehf: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "Ogadimmljhn", tag = "13")] - pub status: i32, - /// offset: 40 - #[prost(enumeration = "Akkhkmecafl", tag = "2")] - pub reason: i32, - /// offset: 45 - #[prost(bool, tag = "15")] - pub lgbohdicfpk: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aggmhdjgfdi { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub ognhpkojhjp: u32, - /// offset: 24 - #[prost(uint32, tag = "4")] - pub klgmnchbicp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fnijjhaenbl { - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub dimhpbcpnlc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Babhbomomdf { - /// offset: 44 - #[prost(uint32, tag = "2")] - pub ogldnefkndo: u32, - /// offset: 40 #[prost(uint32, tag = "5")] - pub ppjbgnbmkpm: u32, - /// offset: 32 - #[prost(enumeration = "Odbnigdlncf", tag = "14")] - pub status: i32, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub bhpgjcicmjm: u32, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub mnfjeiininl: ::prost::alloc::vec::Vec, + pub ikpcnnfhahn: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub likhcbgajdh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lhomiedaoid { +pub struct Cgenfogppen { /// offset: 32 - #[prost(enumeration = "Lmiknfdlffo", tag = "11")] - pub status: i32, + #[prost(bool, tag = "15")] + pub cjpockcnfpi: bool, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub oafejdljjla: u32, /// offset: 28 - #[prost(uint32, tag = "4")] - pub eipnnejnnkj: u32, + #[prost(uint32, tag = "7")] + pub eomlbimfdlb: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mpfjnmcjgna { /// offset: 24 #[prost(uint32, tag = "3")] - pub room_id: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub akdleblpbmd: u32, -} -/// Obf: BENEIABJKJJ -#[derive(proto_derive::CmdID)] -#[cmdid(6043)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournStartCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub avatar_id_list: ::prost::alloc::vec::Vec, - /// offset: 33 - #[prost(bool, tag = "5")] - pub lgbohdicfpk: bool, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub area_id: u32, - /// offset: 32 + pub oafejdljjla: u32, + /// offset: 28 #[prost(bool, tag = "2")] - pub ejoijgclcjo: bool, + pub cjpockcnfpi: bool, } -/// Obf: JHDPEKDNLJA #[derive(proto_derive::CmdID)] -#[cmdid(6062)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournStartScRsp { - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub bhmhlpchklg: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub khjcgnllfoh: u32, - /// offset: 32 - #[prost(message, optional, tag = "6")] - pub lcoclenjjai: ::core::option::Option, -} -/// Obf: BGHMEOBMOLD -#[derive(proto_derive::CmdID)] -#[cmdid(6033)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournEnterCsReq {} -/// Obf: LIHHHJPDFJP +pub struct Ikehmijglnc { + /// offset: 24 + #[prost(bool, tag = "1")] + pub hajmmgficdh: bool, +} #[derive(proto_derive::CmdID)] -#[cmdid(6093)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournEnterScRsp { - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub bhmhlpchklg: ::core::option::Option, - /// offset: 32 +pub struct Leepbdmdlgj { + /// offset: 104 #[prost(message, optional, tag = "13")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: EAKFLBEGFOC -#[derive(proto_derive::CmdID)] -#[cmdid(6052)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournLeaveCsReq {} -/// Obf: KLBFIAEDCKA -#[derive(proto_derive::CmdID)] -#[cmdid(6098)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournLeaveScRsp { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -/// Obf: PGAJDCGCLDK -#[derive(proto_derive::CmdID)] -#[cmdid(6070)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournSettleCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jhllljajkep { - /// offset: 32 - #[prost(message, optional, tag = "4")] - pub cjcojamleel: ::core::option::Option, - /// offset: 72 - #[prost(message, optional, tag = "2")] - pub kgciaiafibe: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub pfoepfphfnj: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "14")] - pub bhmhlpchklg: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "1")] - pub embagmmhipa: ::core::option::Option, + pub neogefmhjpp: ::core::option::Option, /// offset: 56 - #[prost(message, optional, tag = "12")] - pub clkhpondddo: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub olmdaghookd: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub level: ::core::option::Option, /// offset: 64 #[prost(message, optional, tag = "15")] - pub gcglnkfdkkn: ::core::option::Option, -} -/// Obf: FOKBKLIAFOL -#[derive(proto_derive::CmdID)] -#[cmdid(6039)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournSettleScRsp { + pub geibknhcgjf: ::core::option::Option, /// offset: 32 - #[prost(message, optional, tag = "3")] - pub njnjebodmnl: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub anoonihidml: ::core::option::Option, + /// offset: 72 + #[prost(message, optional, tag = "11")] + pub hacipcnnkbj: ::core::option::Option, /// offset: 24 - #[prost(message, optional, tag = "6")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: HCBPGMHLBPN -#[derive(proto_derive::CmdID)] -#[cmdid(6025)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournEnterRoomCsReq { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub bhpgjcicmjm: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub fllablfbeik: u32, -} -/// Obf: CDGLINBMGNK -#[derive(proto_derive::CmdID)] -#[cmdid(6079)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournEnterRoomScRsp { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 16 + #[prost(message, optional, tag = "4")] + pub lineup: ::core::option::Option, + /// offset: 96 #[prost(message, optional, tag = "9")] - pub lcoclenjjai: ::core::option::Option, + pub lmjalhjpjpj: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "12")] + pub dgekcobldhm: ::core::option::Option, + /// offset: 80 + #[prost(message, optional, tag = "14")] + pub haejgohgfdk: ::core::option::Option, + /// offset: 88 + #[prost(message, optional, tag = "7")] + pub gdenpemhibf: ::core::option::Option, } -/// Obf: EHOIEFKOAGF #[derive(proto_derive::CmdID)] -#[cmdid(6013)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournEnterLayerCsReq { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub fllablfbeik: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub lfcdodfmhhn: u32, -} -/// Obf: JPAGIJLIDLH -#[derive(proto_derive::CmdID)] -#[cmdid(6029)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournEnterLayerScRsp { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub lcoclenjjai: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: EDLKHKLMEFN -#[derive(proto_derive::CmdID)] -#[cmdid(6015)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournLevelInfoUpdateScNotify { - /// offset: 40 - #[prost(uint32, tag = "15")] - pub lfcdodfmhhn: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub ahooafgdehf: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(enumeration = "Akkhkmecafl", tag = "2")] - pub reason: i32, - /// offset: 32 - #[prost(enumeration = "Ogadimmljhn", tag = "12")] - pub status: i32, -} -/// Obf: DHMMALPJOEO -#[derive(proto_derive::CmdID)] -#[cmdid(6071)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournTakeExpRewardCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub lopmhjfbhim: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub acgkfedndfh: u32, -} -/// Obf: CMJJOJDPFCE -#[derive(proto_derive::CmdID)] -#[cmdid(6097)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournTakeExpRewardScRsp { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] - pub ckbmgabeego: ::prost::alloc::vec::Vec, +pub struct Halfjbgnlgf { + /// offset: 33 + #[prost(bool, tag = "2")] + pub gonddhfppib: bool, /// offset: 44 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub exp: u32, - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub reward: ::core::option::Option, -} -/// Obf: PNDLKBFADJJ -#[derive(proto_derive::CmdID)] -#[cmdid(6055)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournExpNotify { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub exp: u32, -} -/// Obf: AHAAMLBKFHF -#[derive(proto_derive::CmdID)] -#[cmdid(6051)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournQueryCsReq {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Olkfphpbpdl { - /// offset: 28 - #[prost(bool, tag = "3")] - pub is_taken_reward: bool, - /// offset: 30 - #[prost(bool, tag = "10")] - pub biifelfegnk: bool, - /// offset: 29 - #[prost(bool, tag = "9")] - pub gmopljjgbpo: bool, - /// offset: 31 - #[prost(bool, tag = "5")] - pub knbdpfeidnm: bool, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub area_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lhaeabojgop { - /// offset: 40 - #[prost(bool, tag = "5")] - pub gpodhhaohnp: bool, + #[prost(enumeration = "Pnkleigcdme", tag = "11")] + pub status: i32, /// offset: 36 - #[prost(uint32, tag = "8")] - pub khjcgnllfoh: u32, + #[prost(enumeration = "Acoioppidho", tag = "8")] + pub reason: i32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub fiihaellbpi: u32, /// offset: 24 - #[prost(int64, tag = "1")] - pub end_time: i64, + #[prost(message, repeated, tag = "13")] + pub nafalhfdbfe: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "11")] - pub lfpccpoljpc: u32, + #[prost(bool, tag = "5")] + pub nhkoadflcdo: bool, } #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ndnkbaggdhd { - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub ckbmgabeego: ::prost::alloc::vec::Vec, - /// offset: 32 +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ikachacebia { + /// offset: 28 #[prost(uint32, tag = "13")] - pub exp: u32, + pub heffencjcdp: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub aailgnnimoc: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Boicekfmcic { +pub struct Cmbellaodfh { + /// offset: 24 + #[prost(uint32, repeated, tag = "3")] + pub bmijmioikjp: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ddeookedmfc { /// offset: 32 #[prost(uint32, tag = "6")] - pub bjceklknlcd: u32, + pub ambmeconiin: u32, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub dnfnacepbll: u32, /// offset: 16 - #[prost(message, optional, tag = "11")] - pub talent_info: ::core::option::Option, + #[prost(message, repeated, tag = "4")] + pub ekjhmjoegkp: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(enumeration = "Dponalildcj", tag = "9")] + pub status: i32, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub pljagkdhnhj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jigdnfdnojd { +pub struct Ageigljpidm { + /// offset: 32 + #[prost(enumeration = "Glokafollok", tag = "15")] + pub status: i32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub bpcpfpbhmjm: u32, /// offset: 28 #[prost(uint32, tag = "14")] - pub handcdpibld: u32, + pub cfhbffaljfi: u32, /// offset: 24 - #[prost(bool, tag = "7")] - pub knbdpfeidnm: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pmbnjoonhpa { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub kaeojcobihc: u32, - /// offset: 28 - #[prost(uint32, tag = "9")] - pub acgkfedndfh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kgdofadndaj { - /// offset: 72 - #[prost(uint32, tag = "2")] - pub boflhofkacn: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub ppconkkpipm: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "12")] - pub bkgjpcclidn: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "13")] - pub idoecnpkgce: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub nffbjbbcdmg: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub kcdlmnincge: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "1")] - pub fajcnmekknn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kclchjmnpgl { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub ngiambeihpi: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub ofgbjcccike: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Chgggegamdi { - /// offset: 56 - #[prost(message, optional, tag = "1")] - pub lkcefcljcbm: ::core::option::Option, - /// offset: 72 - #[prost(message, repeated, tag = "5")] - pub jidjeamdkde: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub hndbkklomlc: ::core::option::Option, - /// offset: 88 - #[prost(message, optional, tag = "2")] - pub iakcmplpoee: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "7")] - pub jdbmbikpbjb: ::core::option::Option, - /// offset: 48 - #[prost(message, repeated, tag = "11")] - pub gmopekcolbe: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, optional, tag = "4")] - pub llaoogchhdk: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub fejgmnnfflg: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub ehobbjmedee: ::core::option::Option, - /// offset: 96 - #[prost(message, repeated, tag = "8")] - pub dimgdinccji: ::prost::alloc::vec::Vec, -} -/// Obf: EKMABILMFGP -#[derive(proto_derive::CmdID)] -#[cmdid(6067)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournQueryScRsp { - /// offset: 32 - #[prost(message, optional, tag = "9")] - pub operating_system: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub bhmhlpchklg: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: IGGANJCLBGC -#[derive(proto_derive::CmdID)] -#[cmdid(6064)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournAreaUpdateScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub jidjeamdkde: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cjpkpjfjkdg { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub bhmhlpchklg: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "9")] - pub data: ::core::option::Option, - /// offset: 64 - #[prost(int64, tag = "6")] - pub time: i64, - /// offset: 72 - #[prost(int64, tag = "5")] - pub end_time: i64, - /// offset: 48 - #[prost(string, tag = "2")] - pub name: ::prost::alloc::string::String, - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub fejgmnnfflg: ::core::option::Option, - /// offset: 56 #[prost(uint32, tag = "1")] - pub khncedgfpgl: u32, + pub room_id: u32, } -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bkffnnaiodc { - /// offset: 40 - #[prost(uint32, tag = "11")] - pub item_value: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub ckgfonmaeko: ::prost::alloc::vec::Vec, -} -/// Obf: JAIKOKAHCLG -#[derive(proto_derive::CmdID)] -#[cmdid(6090)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetAllArchiveCsReq {} -/// Obf: ILMJEOBPDLK -#[derive(proto_derive::CmdID)] -#[cmdid(6078)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournGetAllArchiveScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub edjpodpnmed: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: JHENEDOMODK -#[derive(proto_derive::CmdID)] -#[cmdid(6099)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournDeleteArchiveCsReq { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub khncedgfpgl: u32, -} -/// Obf: EABBDEIEDCB -#[derive(proto_derive::CmdID)] -#[cmdid(6031)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournDeleteArchiveScRsp { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub khncedgfpgl: u32, -} -/// Obf: ODHIICJDKOL -#[derive(proto_derive::CmdID)] -#[cmdid(6059)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournRenameArchiveCsReq { - /// offset: 16 - #[prost(string, tag = "15")] - pub name: ::prost::alloc::string::String, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub khncedgfpgl: u32, -} -/// Obf: KLCPHCOMDPF -#[derive(proto_derive::CmdID)] -#[cmdid(6072)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournRenameArchiveScRsp { - /// offset: 24 - #[prost(string, tag = "6")] - pub name: ::prost::alloc::string::String, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub khncedgfpgl: u32, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -/// Obf: IOMGAOKICLC -#[derive(proto_derive::CmdID)] -#[cmdid(6049)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournClearArchiveNameScNotify { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub khncedgfpgl: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oomghibbcbn { - /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub mkaifjibjik: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub hgcgilabndl: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "15")] - pub amldailbmbo: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "6")] - pub hmjfcdlcifd: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "14")] - pub jncbpdhcahi: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "2")] - pub kaeojcobihc: u32, - /// offset: 68 - #[prost(uint32, tag = "9")] - pub acgkfedndfh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bmpcjdeaiih { - /// offset: 36 - #[prost(uint32, tag = "11")] - pub fclolobfpal: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub bijgjecjmhm: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub khncedgfpgl: u32, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub avatar_id: u32, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub ofikkogklgo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Abdabiikojc { - /// offset: 48 - #[prost(int64, tag = "9")] - pub time: i64, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub khncedgfpgl: u32, - /// offset: 32 - #[prost(message, optional, tag = "13")] - pub gndiodgogpi: ::core::option::Option, - /// offset: 16 - #[prost(string, tag = "3")] - pub name: ::prost::alloc::string::String, -} -/// Obf: NEMPMKMLMPA -#[derive(proto_derive::CmdID)] -#[cmdid(6085)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetAllBuildRefCsReq {} -/// Obf: PIFEBIKOBKK -#[derive(proto_derive::CmdID)] -#[cmdid(6060)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournGetAllBuildRefScRsp { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub iiccngokklf: ::prost::alloc::vec::Vec, -} -/// Obf: NAFDLMKOPKI -#[derive(proto_derive::CmdID)] -#[cmdid(6068)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournDeleteBuildRefCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub ndobmajmlnk: ::prost::alloc::vec::Vec, -} -/// Obf: IMJLMLGPDKN -#[derive(proto_derive::CmdID)] -#[cmdid(6037)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournDeleteBuildRefScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub ndobmajmlnk: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: HCKHBFLLEPL -#[derive(proto_derive::CmdID)] -#[cmdid(6069)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournSaveBuildRefCsReq { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub gndiodgogpi: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub khncedgfpgl: u32, - /// offset: 16 - #[prost(string, tag = "14")] - pub name: ::prost::alloc::string::String, -} -/// Obf: BKHCDHKLADH +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6056)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournSaveBuildRefScRsp { - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "8")] - pub khncedgfpgl: u32, - /// offset: 24 - #[prost(string, tag = "13")] - pub name: ::prost::alloc::string::String, -} -/// Obf: EGHMOPNDPPB -#[derive(proto_derive::CmdID)] -#[cmdid(6041)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournRenameBuildRefCsReq { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub khncedgfpgl: u32, - /// offset: 24 - #[prost(string, tag = "7")] - pub name: ::prost::alloc::string::String, -} -/// Obf: DJICLHILEPO -#[derive(proto_derive::CmdID)] -#[cmdid(6018)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournRenameBuildRefScRsp { - /// offset: 24 - #[prost(string, tag = "4")] - pub name: ::prost::alloc::string::String, +pub struct Cfhddaajfio { + /// offset: 33 + #[prost(bool, tag = "7")] + pub gonddhfppib: bool, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 36 #[prost(uint32, tag = "14")] - pub retcode: u32, + pub area_id: u32, /// offset: 32 - #[prost(uint32, tag = "11")] - pub khncedgfpgl: u32, + #[prost(bool, tag = "13")] + pub nhkoadflcdo: bool, } -/// Obf: OCKCOECJEJG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6084)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetPermanentTalentInfoCsReq {} -/// Obf: NPEGPLAKNPO -#[derive(proto_derive::CmdID)] -#[cmdid(6020)] +#[cmdid(6050)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournGetPermanentTalentInfoScRsp { +pub struct Fchbliekdio { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub fillifehlki: ::core::option::Option, /// offset: 24 + #[prost(message, optional, tag = "14")] + pub demkcniddjf: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub mblemnjedcp: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6076)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mlmdeciboeb {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6071)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lkcmnaaimmm { + /// offset: 32 #[prost(message, optional, tag = "2")] - pub ehobbjmedee: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: OPDIFHCIMBE -#[derive(proto_derive::CmdID)] -#[cmdid(6054)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournEnablePermanentTalentCsReq { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub talent_id: u32, -} -/// Obf: IHGOFIKKCCE -#[derive(proto_derive::CmdID)] -#[cmdid(6074)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournEnablePermanentTalentScRsp { - /// offset: 24 + pub fillifehlki: ::core::option::Option, + /// offset: 16 #[prost(message, optional, tag = "7")] - pub ehobbjmedee: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "3")] + pub demkcniddjf: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "5")] pub retcode: u32, } -/// Obf: PHGKPBPDDAD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6082)] +#[cmdid(6093)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournResetPermanentTalentCsReq {} -/// Obf: GCEPBOAKGCI +pub struct Hplhfaiideo {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6028)] +#[cmdid(6086)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournResetPermanentTalentScRsp { +pub struct Bfdadnaehbg { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub fillifehlki: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6036)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kpfialiihlk {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RogueTournFinishInfo { /// offset: 24 #[prost(message, optional, tag = "8")] - pub ehobbjmedee: ::core::option::Option, + pub aacmnlmmdgg: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub inkgiplmogi: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(message, optional, tag = "14")] + pub kpichlobkch: ::core::option::Option, + /// offset: 72 + #[prost(message, optional, tag = "10")] + pub bffichhodam: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "9")] + pub plnhmfpoohn: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "6")] + pub demkcniddjf: ::core::option::Option, + /// offset: 64 + #[prost(message, optional, tag = "1")] + pub mgajgcapkid: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6048)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kblgbokeije { + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub tourn_finish_info: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub fillifehlki: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6019)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ikaiofpbhjm { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub dnfnacepbll: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub edecaabfcif: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6047)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Llohgkbapoe { + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub fillifehlki: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: GFHOMFLLKND +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6022)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournEnterRogueCocoonSceneCsReq { - /// offset: 48 - #[prost(uint32, tag = "7")] - pub kmffahenckb: u32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub ibgnlboebcg: u32, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "13")] - pub pbalfienefo: u32, - /// offset: 36 - #[prost(bool, tag = "4")] - pub eiddmghlpbp: bool, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub pilmkhckmed: u32, +#[cmdid(6091)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cccjdjcbjlo { + /// offset: 28 + #[prost(uint32, tag = "6")] + pub edecaabfcif: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub fiihaellbpi: u32, } -/// Obf: NDMMGDAGIAI +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6016)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournEnterRogueCocoonSceneScRsp { +pub struct Jbjblddkcff { /// offset: 32 #[prost(uint32, tag = "5")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub fillifehlki: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6059)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Klpkpgepopl { + /// offset: 32 + #[prost(enumeration = "Pnkleigcdme", tag = "8")] + pub status: i32, + /// offset: 36 + #[prost(enumeration = "Acoioppidho", tag = "1")] + pub reason: i32, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub fiihaellbpi: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub nafalhfdbfe: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6058)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Paobpiidbdb { + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub jkpejigdeaj: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub gmlkamfipgg: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6045)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cmmafjgoebo { + /// offset: 32 + #[prost(uint32, repeated, tag = "15")] + pub domkcplbgmj: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub exp: u32, + /// offset: 44 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6055)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pibakijceol { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub exp: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6023)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cemephafben {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pahmchopgkc { + /// offset: 24 + #[prost(bool, tag = "8")] + pub ebeobmcompc: bool, + /// offset: 26 + #[prost(bool, tag = "7")] + pub is_taken_reward: bool, + /// offset: 25 + #[prost(bool, tag = "14")] + pub magpfbddfgj: bool, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub area_id: u32, + /// offset: 27 + #[prost(bool, tag = "9")] + pub bcdnofglond: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gcnfiiibhaf { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub mmecjnjdhed: u32, + /// offset: 32 + #[prost(int64, tag = "2")] + pub end_time: i64, + /// offset: 40 + #[prost(bool, tag = "13")] + pub pmeimjangki: bool, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub mblemnjedcp: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Idheimmemab { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub exp: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub domkcplbgmj: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eahjplfnimi { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub fhckbpigcjc: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub djdekgkjlke: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Epegmeejmnp { + /// offset: 24 + #[prost(bool, tag = "14")] + pub magpfbddfgj: bool, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub hjakkpmncmf: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lcldihfljkh { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub knbppkkkfgn: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub gmlkamfipgg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jddeceeoagk { + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub gdngekmacma: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, repeated, tag = "6")] + pub khpibialaib: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "10")] + pub cceiljieffh: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "4")] + pub poggebjfjgh: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "7")] + pub pjpegcjjehc: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub lmbddhhgmnk: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, repeated, tag = "8")] + pub dkepjiiejfb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Okejdbpnpin { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub iklpglpanca: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub mhfdlefhibd: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nfeclngmnna { + /// offset: 80 + #[prost(message, optional, tag = "1")] + pub aeialiaaefb: ::core::option::Option, + /// offset: 96 + #[prost(message, optional, tag = "11")] + pub dpkgbekgifa: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "4")] + pub hnnhmlfjnee: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(message, optional, tag = "6")] + pub jkcbdfpihcd: ::core::option::Option, /// offset: 16 #[prost(message, optional, tag = "8")] - pub lcoclenjjai: ::core::option::Option, + pub ikgopplnnbp: ::core::option::Option, + /// offset: 56 + #[prost(message, repeated, tag = "14")] + pub dcidchkcjip: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "13")] + pub jgjpplilcac: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "12")] + pub kjmfebiialc: ::core::option::Option, + /// offset: 64 + #[prost(message, repeated, tag = "2")] + pub oabocihnebg: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, optional, tag = "9")] + pub fhmeompbmfk: ::core::option::Option, } -/// Obf: DCPEPJDFJGM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6075)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournLeaveRogueCocoonSceneCsReq {} -/// Obf: MCCGKGLHEJE -#[derive(proto_derive::CmdID)] -#[cmdid(6065)] +#[cmdid(6097)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournLeaveRogueCocoonSceneScRsp { +pub struct Ddpefjcmljl { + /// offset: 32 + #[prost(message, optional, tag = "12")] + pub demkcniddjf: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub rogue_get_info: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6025)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ogbgkdnmjjn { + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub hnnhmlfjnee: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Akbabffaida { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub fhmeompbmfk: ::core::option::Option, + /// offset: 64 + #[prost(int64, tag = "15")] + pub end_time: i64, + /// offset: 56 + #[prost(int64, tag = "10")] + pub time: i64, + /// offset: 72 + #[prost(uint32, tag = "5")] + pub max_times: u32, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub demkcniddjf: ::core::option::Option, + /// offset: 40 + #[prost(string, tag = "7")] + pub name: ::prost::alloc::string::String, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub data: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fpfchfanngh { + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub lacafpihpgb: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub geibknhcgjf: u32, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub buff_list: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6020)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Longmllnjhj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6083)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kapjnakmkob { + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub mdagigoekoc: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "13")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub lcoclenjjai: ::core::option::Option, } -/// Obf: GOHLBLIADDP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6021)] +#[cmdid(6057)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournReEnterRogueCocoonStageCsReq { +pub struct Ojlehapcalo { /// offset: 24 - #[prost(bool, tag = "5")] - pub eiddmghlpbp: bool, + #[prost(uint32, tag = "12")] + pub max_times: u32, } -/// Obf: MAGDGKDOGGF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6011)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournReEnterRogueCocoonStageScRsp { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub battle_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "11")] +#[cmdid(6038)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kcejgcbbppe { + /// offset: 24 + #[prost(uint32, tag = "13")] pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub max_times: u32, } -/// Obf: BFIHHAAKHKA +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6063)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetCurRogueCocoonInfoCsReq {} -/// Obf: GJKFFJJHCKF -#[derive(proto_derive::CmdID)] -#[cmdid(6095)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetCurRogueCocoonInfoScRsp { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub pbalfienefo: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub pilmkhckmed: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub kmffahenckb: u32, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub ibgnlboebcg: u32, -} -/// Obf: KDIMMBPEHIP -#[derive(proto_derive::CmdID)] -#[cmdid(6035)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournDifficultyCompNotify { - /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub gggfigcpklf: ::prost::alloc::vec::Vec, +pub struct Mdnbeppchcj { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub max_times: u32, + /// offset: 16 + #[prost(string, tag = "4")] + pub name: ::prost::alloc::string::String, } +/// Type: Rsp #[derive(proto_derive::CmdID)] +#[cmdid(6067)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bngdjiddhnf { + /// offset: 32 + #[prost(uint32, tag = "1")] + pub max_times: u32, + /// offset: 24 + #[prost(string, tag = "9")] + pub name: ::prost::alloc::string::String, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6043)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jniaogiiogb { +pub struct Hiecgaojihm { /// offset: 24 #[prost(uint32, tag = "4")] - pub deidchamdba: u32, + pub max_times: u32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jcccacnfdjg { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Amaahldmjjn { + /// offset: 68 + #[prost(uint32, tag = "11")] + pub knbppkkkfgn: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "15")] + pub lodicmlglmh: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "4")] + pub ccafekadpnh: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, repeated, tag = "14")] + pub bhhmbndikcc: ::prost::alloc::vec::Vec, /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub lfnnahjdcnb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "9")] + pub bojlnkkamgj: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "7")] + pub gmlkamfipgg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Apndphkjmbo { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub avatar_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub jimkcdcnogh: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "13")] + pub max_times: u32, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub jkfggcfhmai: u32, + /// offset: 36 #[prost(uint32, tag = "6")] - pub deidchamdba: u32, + pub inghfmajlfh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jnokcmkbdlk { + /// offset: 40 + #[prost(int64, tag = "11")] + pub time: i64, + /// offset: 32 + #[prost(message, optional, tag = "4")] + pub ebmbepjnlpj: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "2")] + pub max_times: u32, + /// offset: 16 + #[prost(string, tag = "1")] + pub name: ::prost::alloc::string::String, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6098)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Idjkknkjgfp {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6040)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Omlibkjmkkc { + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub fmnkdmapdfk: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6099)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Boaolfbjagj { + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub abacampelej: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6033)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bebcpibjnoi { + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub abacampelej: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6089)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pdbeebmjjdb { + /// offset: 32 + #[prost(message, optional, tag = "5")] + pub ebmbepjnlpj: ::core::option::Option, + /// offset: 24 + #[prost(string, tag = "3")] + pub name: ::prost::alloc::string::String, + /// offset: 40 + #[prost(uint32, tag = "6")] + pub max_times: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6032)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bnlfghmpgll { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "4")] + pub max_times: u32, + /// offset: 16 + #[prost(string, tag = "8")] + pub name: ::prost::alloc::string::String, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6090)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dpffeelfabm { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub max_times: u32, + /// offset: 24 + #[prost(string, tag = "4")] + pub name: ::prost::alloc::string::String, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6054)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Akbjcjbihlc { + /// offset: 24 + #[prost(string, tag = "9")] + pub name: ::prost::alloc::string::String, + /// offset: 36 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub max_times: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6046)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dgjojaefenj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6029)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nleojeleadf { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub dpkgbekgifa: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6011)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ggbhohnphbo { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub gjjkacomphd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6027)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gopcelblmek { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub dpkgbekgifa: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6065)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ooilnieoehe {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6078)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kpbbmanacic { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub dpkgbekgifa: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6082)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kaadnhdenpi { + /// offset: 40 + #[prost(uint32, tag = "6")] + pub difficulty_level: u32, + /// offset: 48 + #[prost(uint32, tag = "15")] + pub kidieobnbdm: u32, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "10")] + pub bdllacfhici: u32, + /// offset: 32 + #[prost(bool, tag = "8")] + pub pgfmfkpjlmc: bool, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub ghlljinfcip: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6088)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Eabgbgmmpkn { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub fillifehlki: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6035)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kfapghfpoam {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6017)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hlbdhklbfkl { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub fillifehlki: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6075)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jifgeagmfgg { + /// offset: 24 + #[prost(bool, tag = "7")] + pub pgfmfkpjlmc: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6042)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Oakpnpekjff { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6049)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kmmnpgmbiah {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6079)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pfpfobgpfbk { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub bdllacfhici: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "3")] + pub difficulty_level: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub kidieobnbdm: u32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub ghlljinfcip: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6060)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Efkcppclini { + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub gjofpknfhdl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jfihgdpoiid { +pub struct Mikggfkjcmi { /// offset: 24 #[prost(uint32, tag = "3")] + pub dogjcpgolob: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kcajdndalid { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub dogjcpgolob: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mmbllbdfnfp { + /// offset: 24 + #[prost(uint32, tag = "8")] pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ecgochpmcpd { +pub struct Eigcpgafkop { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "13")] pub event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Apfjlofinfj { +pub struct Enoejkpocdg { /// offset: 24 - #[prost(uint32, tag = "3")] - pub formula_id: u32, + #[prost(uint32, tag = "10")] + pub cndilnhdjkh: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fidfnncjaje { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub dchpogobdko: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub level: u32, +pub struct Ccilgnedabo { /// offset: 28 #[prost(uint32, tag = "4")] - pub iboekjbomog: u32, - /// offset: 36 + pub fpjelgnmgbp: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub fjbkkpienom: u32, + /// offset: 24 #[prost(uint32, tag = "7")] - pub ijppknknlnl: u32, + pub aafenpjfhme: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub level: u32, } -/// Obf: IDJEPIBJFDF +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6064)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gbkeefddelm { + #[prost(oneof = "gbkeefddelm::Mlneddhojgc", tags = "5, 2, 3, 6, 15, 8")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `GBKEEFDDELM`. +pub mod gbkeefddelm { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "5")] + Ideeflfihmi(super::Mikggfkjcmi), + /// offset: 16 + #[prost(message, tag = "2")] + Jnikhlonalh(super::Kcajdndalid), + /// offset: 16 + #[prost(message, tag = "3")] + Lmjalhjpjpj(super::Mmbllbdfnfp), + /// offset: 16 + #[prost(message, tag = "6")] + Fnndckcdhja(super::Eigcpgafkop), + /// offset: 16 + #[prost(message, tag = "15")] + Olmdaghookd(super::Enoejkpocdg), + /// offset: 16 + #[prost(message, tag = "8")] + Gdenpemhibf(super::Ccilgnedabo), + } +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6061)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournHandBookNotify { - #[prost(oneof = "rogue_tourn_hand_book_notify::Info", tags = "8, 12, 14, 3, 15, 4")] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `RogueTournHandBookNotify`. -pub mod rogue_tourn_hand_book_notify { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 16 - #[prost(message, tag = "8")] - Iihopmeeaja(super::Jniaogiiogb), - /// offset: 16 - #[prost(message, tag = "12")] - Gpolbdgoood(super::Jcccacnfdjg), - /// offset: 16 - #[prost(message, tag = "14")] - Lkkfhfdpfke(super::Jfihgdpoiid), - /// offset: 16 - #[prost(message, tag = "3")] - Nfldodiabcl(super::Ecgochpmcpd), - /// offset: 16 - #[prost(message, tag = "15")] - Hpdbjalemmo(super::Apfjlofinfj), - /// offset: 16 - #[prost(message, tag = "4")] - Jmidlldkjbi(super::Fidfnncjaje), - } -} -/// Obf: HBBPLJNFJOE -#[derive(proto_derive::CmdID)] -#[cmdid(6081)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetSettleInfoCsReq { +pub struct Ooacpalgdlj { /// offset: 24 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "1")] pub area_id: u32, } -/// Obf: MBKBNHIHPHH +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6041)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fpbfpjjheaa { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub tourn_finish_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6051)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mmbhmgmadnp { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub max_times: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub area_id: u32, + /// offset: 24 + #[prost(string, tag = "13")] + pub name: ::prost::alloc::string::String, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6012)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournGetSettleInfoScRsp { - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub njnjebodmnl: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, -} -/// Obf: LFEGHEBNLID -#[derive(proto_derive::CmdID)] -#[cmdid(6089)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournConfirmSettleCsReq { - /// offset: 16 - #[prost(string, tag = "13")] - pub name: ::prost::alloc::string::String, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub area_id: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub khncedgfpgl: u32, -} -/// Obf: KNFNPCHJNEA -#[derive(proto_derive::CmdID)] -#[cmdid(6040)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournConfirmSettleScRsp { - /// offset: 56 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub gfonfdbfbna: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub ohhjkgfofhb: ::core::option::Option, +pub struct Pcffaipodfi { /// offset: 48 - #[prost(message, optional, tag = "5")] - pub jplaapjccbh: ::core::option::Option, - /// offset: 32 #[prost(message, optional, tag = "8")] - pub lcoclenjjai: ::core::option::Option, + pub mnobblpgjlc: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub moofjmaijhg: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub nfjgpklacpo: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "14")] + pub fillifehlki: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub retcode: u32, } -/// Obf: AAHKKCDIDDL +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6019)] +#[cmdid(6028)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournWeekChallengeUpdateScNotify { +pub struct Ommpognonll { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub aeialiaaefb: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6077)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hjpiibcmggc {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6100)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ofhdplmjpca { + /// offset: 32 + #[prost(message, optional, tag = "14")] + pub kpichlobkch: ::core::option::Option, + /// offset: 64 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 48 + #[prost(message, optional, tag = "6")] + pub bffichhodam: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "9")] + pub inkgiplmogi: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "7")] + pub aacmnlmmdgg: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub mgajgcapkid: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6069)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lnldmfoffnm {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6044)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dnjfhohbeih { + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub pahokhkcdfe: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub ccccckagnaf: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6062)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dlifnclekhl { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub baookdnbkbg: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6013)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jbagbppihfc { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub interacted_prop_entity_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "1")] + pub base_avatar_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6096)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iegimehhlkh { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub baookdnbkbg: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6021)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aoocnhidgnn { + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub fillifehlki: ::core::option::Option, /// offset: 16 #[prost(message, optional, tag = "8")] - pub jdbmbikpbjb: ::core::option::Option, + pub tourn_finish_info: ::core::option::Option, } -/// Obf: MKGHIJOGPEJ #[derive(proto_derive::CmdID)] -#[cmdid(6076)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetMiscRealTimeDataCsReq {} -/// Obf: FGPHEAEKDFK +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lbfddpcmjbl { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub fhckbpigcjc: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub mcaakimlecn: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6080)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetMiscRealTimeDataScRsp { - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub pfoepfphfnj: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 56 - #[prost(message, optional, tag = "13")] - pub gcglnkfdkkn: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "14")] - pub clkhpondddo: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub kgciaiafibe: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "4")] - pub cjcojamleel: ::core::option::Option, -} -/// Obf: DANDBOKPCOD +pub struct Mbajjfbegmi {} +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6050)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetArchiveRepositoryCsReq {} -/// Obf: KHCPHANCILB -#[derive(proto_derive::CmdID)] -#[cmdid(6087)] +#[cmdid(6072)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournGetArchiveRepositoryScRsp { - /// offset: 40 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "9")] - pub hkdoclopkoh: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub lnejmjbfllh: ::prost::alloc::vec::Vec, -} -/// Obf: NOGKPEIBCGP -#[derive(proto_derive::CmdID)] -#[cmdid(6045)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournReviveCostUpdateScNotify { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub gficflciejj: ::core::option::Option, -} -/// Obf: KGNIIBGNPNC -#[derive(proto_derive::CmdID)] -#[cmdid(6073)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournReviveAvatarCsReq { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub interacted_prop_entity_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub avatar_id_list: ::prost::alloc::vec::Vec, -} -/// Obf: LHPBCLDIOCF -#[derive(proto_derive::CmdID)] -#[cmdid(6047)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournReviveAvatarScRsp { +pub struct Bokjmagofga { /// offset: 32 #[prost(uint32, tag = "8")] pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "15")] - pub gficflciejj: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub jkcbdfpihcd: ::core::option::Option, } -/// Obf: FHOCCHFLAFE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6014)] +#[cmdid(6024)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pchhlgnhfjl { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub gjjkacomphd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6037)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournBattleFailSettleInfoScNotify { - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub njnjebodmnl: ::core::option::Option, +pub struct Giemcfehcii { /// offset: 24 #[prost(message, optional, tag = "3")] - pub lcoclenjjai: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gigpoffbieo { - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub talent_info: ::core::option::Option, + pub jkcbdfpihcd: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "4")] - pub cmoghiandfl: u32, -} -/// Obf: NKNJFCGHEIF -#[derive(proto_derive::CmdID)] -#[cmdid(6096)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournGetSeasonTalentInfoCsReq {} -/// Obf: ACNOIBHNLCD -#[derive(proto_derive::CmdID)] -#[cmdid(6032)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournGetSeasonTalentInfoScRsp { - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub llaoogchhdk: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: LBCCBGPPNND +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6066)] +#[cmdid(6030)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournEnableSeasonTalentCsReq { +pub struct Ohcimebnooa { /// offset: 24 - #[prost(uint32, tag = "12")] - pub talent_id: u32, + #[prost(uint32, tag = "7")] + pub phnmhngcfmf: u32, } -/// Obf: CAAKGIBCGJF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6048)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournEnableSeasonTalentScRsp { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub llaoogchhdk: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: PALMBOJAJCE -#[derive(proto_derive::CmdID)] -#[cmdid(6026)] +#[cmdid(6014)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournTitanUpdateTitanBlessProgressScNotify { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub ldfgifdfpcf: u32, -} -/// Obf: KGKJIHCHHCJ -#[derive(proto_derive::CmdID)] -#[cmdid(6034)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RogueTournUseSuperRewardKeyCsReq { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub pbalfienefo: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub count: u32, +pub struct Ihakooagohf { /// offset: 32 #[prost(uint32, tag = "4")] pub cocoon_id: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub count: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub difficulty_level: u32, } -/// Obf: KHIIEEFJOAE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6077)] +#[cmdid(6034)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct RogueTournUseSuperRewardKeyScRsp { +pub struct Hpbokbbjohd { + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "1")] + pub drop_data: ::core::option::Option, /// offset: 40 #[prost(message, optional, tag = "11")] - pub reward: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub nhanakjfeab: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub kjchgehdlno: ::core::option::Option, + pub pkinokcincf: ::core::option::Option, /// offset: 48 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "14")] pub retcode: u32, } -/// Obf: AOMFJFLCDON -#[derive(proto_derive::CmdID)] -#[cmdid(6907)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetRollShopInfoCsReq { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub roll_shop_id: u32, -} -/// Obf: PGAFADIAONA -#[derive(proto_derive::CmdID)] -#[cmdid(6901)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetRollShopInfoScRsp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub bchaohddila: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub gacha_random: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub roll_shop_id: u32, -} -/// Obf: DFAGJNNKKDM +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6913)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct DoGachaInRollShopCsReq { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub ifngnhhcngl: u32, +pub struct GetRollShopInfoCsReq { /// offset: 24 - #[prost(uint32, tag = "12")] - pub gacha_random: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub roll_shop_id: u32, -} -/// Obf: AHBFBJKMOCO -#[derive(proto_derive::CmdID)] -#[cmdid(6919)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct DoGachaInRollShopScRsp { - /// offset: 44 - #[prost(uint32, tag = "8")] - pub penilhglhhm: u32, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub roll_shop_id: u32, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub ordering_index: u32, - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub reward: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: KJOEHGLJEPA -#[derive(proto_derive::CmdID)] -#[cmdid(6903)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeRollShopRewardCsReq { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub roll_shop_id: u32, -} -/// Obf: TakeRollShopRewardScRsp -#[derive(proto_derive::CmdID)] -#[cmdid(6915)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeRollShopRewardScRsp { - /// offset: 40 #[prost(uint32, tag = "14")] pub roll_shop_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6906)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetRollShopInfoScRsp { /// offset: 32 #[prost(uint32, tag = "11")] pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub gacha_random: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] + pub shop_group_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub roll_shop_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6909)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct DoGachaInRollShopCsReq { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub gacha_random: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub roll_shop_id: u32, /// offset: 24 - #[prost(message, optional, tag = "6")] + #[prost(uint32, tag = "11")] + pub gacha_count: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6905)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct DoGachaInRollShopScRsp { + /// offset: 36 + #[prost(uint32, tag = "6")] + pub roll_shop_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub bdanbfdobgi: u32, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub reward_display_type: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6914)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct TakeRollShopRewardCsReq { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub roll_shop_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6904)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TakeRollShopRewardScRsp { + /// offset: 40 + #[prost(uint32, tag = "9")] + pub roll_shop_id: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "1")] pub reward: ::core::option::Option, /// offset: 36 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "5")] pub group_type: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneActorInfo { /// offset: 36 - #[prost(uint32, tag = "3")] - pub base_avatar_id: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "6")] pub uid: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub map_layer: u32, /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "7")] + #[prost(uint32, tag = "14")] + pub map_layer: u32, + /// offset: 28 + #[prost(enumeration = "AvatarType", tag = "1")] pub avatar_type: i32, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub base_avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Eehijpmfiin { +pub struct NpcMonsterRogueInfo { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub fhekhieinaa: u32, /// offset: 24 #[prost(uint32, tag = "6")] - pub level: u32, - /// offset: 28 - #[prost(uint32, tag = "9")] - pub elite_group: u32, + pub rogue_monster_id: u32, /// offset: 36 - #[prost(uint32, tag = "10")] - pub hard_level_group: u32, + #[prost(uint32, tag = "2")] + pub elite_group: u32, /// offset: 32 - #[prost(uint32, tag = "12")] - pub dneampllfme: u32, + #[prost(uint32, tag = "7")] + pub hard_level_group: u32, /// offset: 40 - #[prost(uint32, tag = "5")] - pub ehieoodecmi: u32, + #[prost(uint32, tag = "9")] + pub level: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Edbjjknjpfm { - #[prost(oneof = "edbjjknjpfm::Info", tags = "5")] - pub info: ::core::option::Option, +pub struct NpcMonsterExtraInfo { + #[prost(oneof = "npc_monster_extra_info::Mlneddhojgc", tags = "8")] + pub mlneddhojgc: ::core::option::Option, } -/// Nested message and enum types in `EDBJJKNJPFM`. -pub mod edbjjknjpfm { +/// Nested message and enum types in `NpcMonsterExtraInfo`. +pub mod npc_monster_extra_info { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Mlneddhojgc { /// offset: 16 - #[prost(message, tag = "5")] - RogueInfo(super::Eehijpmfiin), + #[prost(message, tag = "8")] + RogueGameInfo(super::NpcMonsterRogueInfo), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oepandokejd { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub ifoedpljkoa: ::prost::alloc::vec::Vec, +pub struct Mkphkpojban { + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub cmgjfngamjk: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "7")] pub stage_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneNpcMonsterInfo { - /// offset: 44 - #[prost(uint32, tag = "14")] - pub world_level: u32, - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub geifpdhbkbf: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub monster_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub aogjaahihob: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] pub event_id: u32, /// offset: 53 - #[prost(bool, tag = "12")] - pub mpfedfbkkdf: bool, - /// offset: 48 - #[prost(uint32, tag = "11")] - pub monster_id: u32, + #[prost(bool, tag = "13")] + pub phlljlekalj: bool, /// offset: 52 - #[prost(bool, tag = "10")] - pub idpjidnlehh: bool, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub extra_info: ::core::option::Option, + #[prost(bool, tag = "6")] + pub doccpaeahdj: bool, + /// offset: 44 + #[prost(uint32, tag = "2")] + pub world_level: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub extra_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct NpcDialogueEventParam { /// offset: 24 - #[prost(uint32, tag = "7")] - pub rogue_dialogue_event_id: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "14")] pub arg_id: u32, + /// offset: 28 + #[prost(uint32, tag = "3")] + pub rogue_dialogue_event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct NpcRogueGameInfo { - /// offset: 36 - #[prost(uint32, tag = "6")] - pub cdjecokfiof: u32, - /// offset: 42 - #[prost(bool, tag = "4")] - pub lomilomcaom: bool, - /// offset: 40 - #[prost(bool, tag = "14")] - pub eccdglbkeje: bool, - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "8")] - pub kjcbneindhl: ::std::collections::HashMap, - /// offset: 44 - #[prost(uint32, tag = "3")] - pub event_unique_id: u32, - /// offset: 41 - #[prost(bool, tag = "5")] - pub jenfhombkke: bool, + /// offset: 45 + #[prost(bool, tag = "8")] + pub jimohmkpkph: bool, /// offset: 32 - #[prost(uint32, tag = "1")] - pub onlhfcoglal: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kkfkkppldai { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub amlkpohdeln: u32, - /// offset: 28 #[prost(uint32, tag = "14")] - pub visitor_id: u32, - /// offset: 32 - #[prost(bool, tag = "15")] - pub iagodfdjaik: bool, + pub aeon_talk_id: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub event_unique_id: u32, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "11")] + pub kgebnecnfok: ::std::collections::HashMap, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub talk_dialogue_id: u32, + /// offset: 46 + #[prost(bool, tag = "1")] + pub ghdlagddamj: bool, + /// offset: 44 + #[prost(bool, tag = "6")] + pub finish_dialogue: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Clfacbcgifl { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub incagnldjmn: u32, - /// offset: 24 +pub struct Iopdpgficib { + /// offset: 32 #[prost(uint32, tag = "9")] - pub klfcnoaggpc: u32, + pub dkjmgbfhamk: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub visitor_id: u32, + /// offset: 24 + #[prost(bool, tag = "7")] + pub is_meet: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fneiaggcdbl { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub lkkklebigka: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub lpcdibciboo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct NpcExtraInfo { - #[prost(oneof = "npc_extra_info::Info", tags = "6, 10, 8")] - pub info: ::core::option::Option, + #[prost(oneof = "npc_extra_info::Mlneddhojgc", tags = "10, 12, 11")] + pub mlneddhojgc: ::core::option::Option, } /// Nested message and enum types in `NpcExtraInfo`. pub mod npc_extra_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 24 - #[prost(message, tag = "6")] - RogueInfo(super::NpcRogueGameInfo), - /// offset: 24 + pub enum Mlneddhojgc { + /// offset: 16 #[prost(message, tag = "10")] - Jkjopmefcbo(super::Kkfkkppldai), - /// offset: 24 - #[prost(message, tag = "8")] - Pnbjjbjnmgl(super::Clfacbcgifl), + RogueGameInfo(super::NpcRogueGameInfo), + /// offset: 16 + #[prost(message, tag = "12")] + Khmgifgpejh(super::Iopdpgficib), + /// offset: 16 + #[prost(message, tag = "11")] + Kjfnifhinca(super::Fneiaggcdbl), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneNpcInfo { - /// offset: 16 - #[prost(message, optional, tag = "14")] + /// offset: 24 + #[prost(message, optional, tag = "1")] pub extra_info: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "14")] pub npc_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct PropRogueInfo { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub room_id: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub bbnfiifmgak: u32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub ccdepapjnko: u32, /// offset: 28 + #[prost(uint32, tag = "14")] + pub ccpnecikhnh: u32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub ihhfmkmjpge: u32, + /// offset: 24 #[prost(uint32, tag = "15")] pub site_id: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub room_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pplbhacnego { +pub struct Kmngaglbgle { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub aeon_id: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub gmafejoenpl: u32, /// offset: 28 - #[prost(uint32, tag = "9")] - pub poijkblcjla: u32, + #[prost(uint32, tag = "6")] + pub nbgkjpibnke: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct PropChessRogueInfo { + /// offset: 24 + #[prost(bool, tag = "5")] + pub ilefhnpckgb: bool, + /// offset: 25 + #[prost(bool, tag = "9")] + pub enter_next_cell: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RogueTournDoorInfo { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub bpcpfpbhmjm: u32, + /// offset: 32 + #[prost(bool, tag = "11")] + pub enter_next_layer: bool, + /// offset: 28 + #[prost(uint32, tag = "10")] + pub rogue_door_next_room_type: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RogueMagicDoorInfo { /// offset: 32 #[prost(uint32, tag = "15")] - pub aeon_id: u32, - /// offset: 24 - #[prost(uint32, tag = "2")] - pub kapmkjghiei: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aoiheklndid { - /// offset: 24 - #[prost(bool, tag = "9")] - pub algafomniia: bool, - /// offset: 25 - #[prost(bool, tag = "3")] - pub akcghbfgbcc: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hdocjdhlapd { - /// offset: 28 - #[prost(bool, tag = "2")] - pub pjdnhbhddha: bool, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub eipnnejnnkj: u32, + pub bpcpfpbhmjm: u32, /// offset: 24 #[prost(uint32, tag = "6")] - pub nbocipljmhi: u32, + pub rogue_door_next_room_type: u32, + /// offset: 28 + #[prost(bool, tag = "3")] + pub enter_next_layer: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jeghkicdaoo { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub nbocipljmhi: u32, +pub struct WorkbenchFuncIdInfo { /// offset: 28 - #[prost(uint32, tag = "8")] - pub eipnnejnnkj: u32, - /// offset: 32 #[prost(bool, tag = "6")] - pub pjdnhbhddha: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Akmciglbjad { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub hobjminnbop: u32, + pub is_valid: bool, /// offset: 24 - #[prost(bool, tag = "11")] - pub gldjnhiggje: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eekihhefaic { - /// offset: 32 #[prost(uint32, tag = "8")] - pub pmjaippjfkc: u32, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub gnoncmjmcbf: ::prost::alloc::vec::Vec, + pub func_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eigoiecdmna { +pub struct RogueTournWorkbenchInfo { /// offset: 32 - #[prost(uint32, tag = "4")] - pub mgdmhlgjhoc: u32, + #[prost(uint32, tag = "9")] + pub workbench_id: u32, /// offset: 24 - #[prost(message, optional, tag = "13")] - pub ffmifpfibdd: ::core::option::Option, + #[prost(message, repeated, tag = "14")] + pub workbench_func_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dojlbncabeb { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub emeebodpmem: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub pkfalginemj: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ojckhbbbfef { +pub struct Oialcofpbdc { /// offset: 24 #[prost(uint32, tag = "14")] - pub kigaehdgklm: u32, + pub chest_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lnojkicccme { +pub struct PropTimelineInfo { + /// offset: 16 + #[prost(bytes = "vec", tag = "2")] + pub timeline_byte_value: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(bool, tag = "15")] - pub mbankgmdfmj: bool, - /// offset: 24 - #[prost(bytes = "vec", tag = "14")] - pub ddcjbfloame: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "5")] + pub timeline_bool_value: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PropExtraInfo { - /// offset: 32 - #[prost(message, optional, tag = "2")] - pub djnfcmfddoa: ::core::option::Option, - #[prost(oneof = "prop_extra_info::Info", tags = "13, 1, 15, 9, 8, 5, 10, 11")] - pub info: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub timeline_info: ::core::option::Option, + #[prost(oneof = "prop_extra_info::Mlneddhojgc", tags = "15, 12, 2, 6, 9, 5, 7, 8")] + pub mlneddhojgc: ::core::option::Option, } /// Nested message and enum types in `PropExtraInfo`. pub mod prop_extra_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 16 - #[prost(message, tag = "13")] - RogueInfo(super::PropRogueInfo), - /// offset: 16 - #[prost(message, tag = "1")] - Chmhpcngfao(super::Pplbhacnego), - /// offset: 16 + pub enum Mlneddhojgc { + /// offset: 32 #[prost(message, tag = "15")] - Jjfkkdkpcpo(super::Aoiheklndid), - /// offset: 16 + RogueGameInfo(super::PropRogueInfo), + /// offset: 32 + #[prost(message, tag = "12")] + Pehfgbfodma(super::Kmngaglbgle), + /// offset: 32 + #[prost(message, tag = "2")] + Emofifopkoa(super::PropChessRogueInfo), + /// offset: 32 + #[prost(message, tag = "6")] + Abpibpfadmj(super::RogueTournDoorInfo), + /// offset: 32 #[prost(message, tag = "9")] - Hakiplkcokd(super::Hdocjdhlapd), - /// offset: 16 - #[prost(message, tag = "8")] - Mabcfpoclol(super::Eekihhefaic), - /// offset: 16 + Iebmpljiice(super::RogueTournWorkbenchInfo), + /// offset: 32 #[prost(message, tag = "5")] - Oidcbkggndg(super::Eigoiecdmna), - /// offset: 16 - #[prost(message, tag = "10")] - Ddckmelbcdj(super::Ojckhbbbfef), - /// offset: 16 - #[prost(message, tag = "11")] - Omekfjepfle(super::Jeghkicdaoo), + Nacnolbamcj(super::Dojlbncabeb), + /// offset: 32 + #[prost(message, tag = "7")] + Nackkajfble(super::Oialcofpbdc), + /// offset: 32 + #[prost(message, tag = "8")] + Hljnbccdkaa(super::RogueMagicDoorInfo), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ScenePropInfo { - /// offset: 44 - #[prost(uint32, tag = "11")] - pub prop_state: u32, /// offset: 56 - #[prost(uint64, tag = "2")] + #[prost(uint64, tag = "13")] pub create_time_ms: u64, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub extra_info: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] + pub prop_state: u32, + /// offset: 44 + #[prost(uint32, tag = "7")] + pub prop_id: u32, + /// offset: 48 + #[prost(uint32, tag = "4")] pub life_time_ms: u32, /// offset: 32 - #[prost(message, optional, tag = "12")] - pub extra_info: ::core::option::Option, - /// offset: 24 #[prost(string, repeated, tag = "5")] pub trigger_name_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, - /// offset: 48 - #[prost(uint32, tag = "8")] - pub prop_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneSummonUnitInfo { - /// offset: 48 - #[prost(uint32, tag = "15")] - pub caster_entity_id: u32, - /// offset: 52 + /// offset: 36 + #[prost(uint32, tag = "7")] + pub attach_entity_id: u32, + /// offset: 24 + #[prost(string, repeated, tag = "2")] + pub trigger_name_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + /// offset: 32 #[prost(int32, tag = "9")] pub life_time_ms: i32, - /// offset: 16 - #[prost(string, repeated, tag = "10")] - pub trigger_name_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, /// offset: 44 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub summon_unit_id: u32, - /// offset: 32 - #[prost(uint64, tag = "13")] + /// offset: 48 + #[prost(uint64, tag = "12")] pub create_time_ms: u64, /// offset: 40 - #[prost(uint32, tag = "1")] - pub attach_entity_id: u32, + #[prost(uint32, tag = "11")] + pub caster_entity_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEntityInfo { /// offset: 52 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "15")] pub inst_id: u32, /// offset: 40 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "3")] pub entity_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub motion: ::core::option::Option, - /// offset: 48 - #[prost(uint32, tag = "15")] + /// offset: 44 + #[prost(uint32, tag = "12")] pub group_id: u32, - #[prost(oneof = "scene_entity_info::Entity", tags = "8, 3, 14, 10, 11")] + /// offset: 32 + #[prost(message, optional, tag = "2")] + pub motion: ::core::option::Option, + #[prost(oneof = "scene_entity_info::Entity", tags = "11, 1, 10, 7, 6")] pub entity: ::core::option::Option, } /// Nested message and enum types in `SceneEntityInfo`. @@ -45356,56 +46131,56 @@ pub mod scene_entity_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Entity { - /// offset: 32 - #[prost(message, tag = "8")] - Actor(super::SceneActorInfo), - /// offset: 32 - #[prost(message, tag = "3")] - NpcMonster(super::SceneNpcMonsterInfo), - /// offset: 32 - #[prost(message, tag = "14")] - Npc(super::SceneNpcInfo), - /// offset: 32 - #[prost(message, tag = "10")] - Prop(super::ScenePropInfo), - /// offset: 32 + /// offset: 24 #[prost(message, tag = "11")] + Actor(super::SceneActorInfo), + /// offset: 24 + #[prost(message, tag = "1")] + NpcMonster(super::SceneNpcMonsterInfo), + /// offset: 24 + #[prost(message, tag = "10")] + Npc(super::SceneNpcInfo), + /// offset: 24 + #[prost(message, tag = "7")] + Prop(super::ScenePropInfo), + /// offset: 24 + #[prost(message, tag = "6")] SummonUnit(super::SceneSummonUnitInfo), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuffInfo { - /// offset: 48 - #[prost(uint64, tag = "9")] - pub add_time_ms: u64, /// offset: 32 - #[prost(uint32, tag = "8")] - pub base_avatar_id: u32, + #[prost(uint32, tag = "7")] + pub count: u32, /// offset: 60 - #[prost(uint32, tag = "3")] - pub buff_id: u32, - /// offset: 56 - #[prost(uint32, tag = "6")] - pub level: u32, - /// offset: 16 - #[prost(map = "string, float", tag = "1")] - pub dynamic_values: ::std::collections::HashMap<::prost::alloc::string::String, f32>, - /// offset: 44 - #[prost(float, tag = "2")] + #[prost(float, tag = "1")] pub life_time: f32, /// offset: 40 + #[prost(uint64, tag = "12")] + pub add_time_ms: u64, + /// offset: 48 #[prost(uint32, tag = "5")] - pub count: u32, - /// offset: 36 + pub level: u32, + /// offset: 56 + #[prost(uint32, tag = "9")] + pub base_avatar_id: u32, + /// offset: 52 #[prost(uint32, tag = "15")] - pub target_entity_id: u32, + pub buff_id: u32, + /// offset: 24 + #[prost(map = "string, float", tag = "2")] + pub dynamic_values: ::std::collections::HashMap<::prost::alloc::string::String, f32>, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub buff_summon_entity_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EntityBuffInfo { /// offset: 24 - #[prost(message, repeated, tag = "13")] + #[prost(message, repeated, tag = "14")] pub buff_list: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "12")] @@ -45413,1233 +46188,1225 @@ pub struct EntityBuffInfo { } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nomfjhmoeah { +pub struct MechanismBarInfo { /// offset: 28 - #[prost(uint32, tag = "7")] - pub ohdeoighiem: u32, - /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "6")] pub value: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub dbgbmknhhpp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct CustomSaveData { - /// offset: 24 - #[prost(string, tag = "10")] - pub save_data: ::prost::alloc::string::String, /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "5")] pub group_id: u32, + /// offset: 16 + #[prost(string, tag = "3")] + pub save_data: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kegmihdfpmm { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub cppdjfkiihk: u32, +pub struct Ihiijlbdmon { /// offset: 28 - #[prost(uint32, tag = "1")] - pub blogjdckahm: u32, + #[prost(uint32, tag = "12")] + pub dfpldabbmjn: u32, + /// offset: 24 + #[prost(uint32, tag = "13")] + pub mccjhaafblg: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEntityGroupInfo { - /// offset: 32 - #[prost(message, repeated, tag = "13")] - pub entity_list: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "13")] + pub state: u32, /// offset: 40 #[prost(uint32, tag = "15")] pub group_id: u32, /// offset: 16 - #[prost(map = "string, int32", tag = "3")] - pub hejamoojbcj: ::std::collections::HashMap<::prost::alloc::string::String, i32>, - /// offset: 44 - #[prost(uint32, tag = "7")] - pub state: u32, + #[prost(message, repeated, tag = "6")] + pub entity_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(map = "string, int32", tag = "7")] + pub jnajakchjdf: ::std::collections::HashMap<::prost::alloc::string::String, i32>, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneGroupState { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub group_id: u32, - /// offset: 24 - #[prost(bool, tag = "15")] - pub is_default: bool, /// offset: 28 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub state: u32, + /// offset: 24 + #[prost(bool, tag = "12")] + pub is_default: bool, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub group_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionStatusBySceneInfo { - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub icbikgmghik: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "14")] - pub ndnonhfimfi: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub sub_mission_status_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub disabled_main_mission_id_list: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(message, repeated, tag = "3")] - pub bigehkdpgpn: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "15")] + pub finished_main_mission_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub sub_mission_status_list: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, repeated, tag = "10")] + pub unfinished_main_mission_id_list: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, repeated, tag = "13")] - pub finished_mission_id_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub ilogafdocgo: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneInfo { - /// offset: 148 - #[prost(uint32, tag = "15")] - pub world_id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] + /// offset: 104 + #[prost(message, repeated, tag = "12")] + pub entity_list: ::prost::alloc::vec::Vec, + /// offset: 112 + #[prost(uint32, tag = "1324")] + pub dimension_id: u32, + /// offset: 124 + #[prost(uint32, tag = "6")] + pub floor_id: u32, + /// offset: 72 + #[prost(map = "uint32, message", tag = "3")] + pub hjlmiglddng: ::std::collections::HashMap, + /// offset: 32 + #[prost(uint32, repeated, tag = "7")] pub lighten_section_list: ::prost::alloc::vec::Vec, + /// offset: 136 + #[prost(uint32, tag = "4")] + pub world_id: u32, + /// offset: 132 + #[prost(uint32, tag = "2")] + pub plane_id: u32, + /// offset: 80 + #[prost(uint32, repeated, tag = "861")] + pub lddigmlcgdb: ::prost::alloc::vec::Vec, + /// offset: 128 + #[prost(uint32, tag = "8")] + pub entry_id: u32, + /// offset: 40 + #[prost(message, repeated, tag = "1297")] + pub clecmgljocl: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(message, repeated, tag = "10")] + pub scene_buff_info_list: ::prost::alloc::vec::Vec, /// offset: 96 - #[prost(map = "string, int32", tag = "997")] + #[prost(message, optional, tag = "2015")] + pub scene_mission_info: ::core::option::Option, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub entity_buff_info_list: ::prost::alloc::vec::Vec, + /// offset: 144 + #[prost(uint32, tag = "9")] + pub leader_entity_id: u32, + /// offset: 56 + #[prost(message, repeated, tag = "1000")] + pub entity_group_list: ::prost::alloc::vec::Vec, + /// offset: 148 + #[prost(uint32, tag = "63")] + pub game_story_line_id: u32, + /// offset: 116 + #[prost(uint32, tag = "14")] + pub client_pos_version: u32, + /// offset: 48 + #[prost(message, repeated, tag = "11")] + pub custom_data_list: ::prost::alloc::vec::Vec, + /// offset: 140 + #[prost(uint32, tag = "440")] + pub content_id: u32, + /// offset: 120 + #[prost(uint32, tag = "1")] + pub game_mode_type: u32, + /// offset: 16 + #[prost(map = "string, int32", tag = "1859")] pub floor_saved_data: ::std::collections::HashMap< ::prost::alloc::string::String, i32, >, - /// offset: 140 - #[prost(uint32, tag = "12")] - pub game_mode_type: u32, - /// offset: 136 - #[prost(uint32, tag = "11")] - pub plane_id: u32, - /// offset: 128 - #[prost(uint32, tag = "14")] - pub entry_id: u32, - /// offset: 40 - #[prost(message, repeated, tag = "4")] - pub custom_data_list: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(map = "uint32, message", tag = "13")] - pub mpehibkeobe: ::std::collections::HashMap, - /// offset: 80 - #[prost(message, repeated, tag = "1")] - pub entity_buff_info_list: ::prost::alloc::vec::Vec, - /// offset: 116 - #[prost(uint32, tag = "3")] - pub floor_id: u32, - /// offset: 144 - #[prost(uint32, tag = "1510")] - pub content_id: u32, - /// offset: 72 - #[prost(message, optional, tag = "1067")] - pub scene_mission_info: ::core::option::Option, - /// offset: 120 - #[prost(uint32, tag = "6")] - pub client_pos_version: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "2007")] - pub chest_id_list: ::prost::alloc::vec::Vec, - /// offset: 132 - #[prost(uint32, tag = "7")] - pub leader_entity_id: u32, - /// offset: 112 - #[prost(uint32, tag = "221")] - pub game_story_line_id: u32, - /// offset: 48 - #[prost(message, repeated, tag = "1405")] - pub entity_group_list: ::prost::alloc::vec::Vec, - /// offset: 124 - #[prost(uint32, tag = "1583")] - pub gfhglffhfbd: u32, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub scene_buff_info_list: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, repeated, tag = "2")] - pub entity_list: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, repeated, tag = "1526")] - pub group_state_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EntityMotion { - /// offset: 40 - #[prost(bool, tag = "15")] - pub nfopikdkpgg: bool, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub entity_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub motion: ::core::option::Option, /// offset: 36 - #[prost(uint32, tag = "10")] + #[prost(bool, tag = "1")] + pub gdlfhdlhpde: bool, + /// offset: 40 + #[prost(uint32, tag = "14")] pub map_layer: u32, -} -/// Obf: CIPDBAAAPCE -#[derive(proto_derive::CmdID)] -#[cmdid(1499)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SceneEntityMoveCsReq { /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub entity_motion_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub entry_id: u32, - /// offset: 40 - #[prost(uint64, tag = "12")] - pub pemlejjbaje: u64, -} -/// Obf: LNIOMOHNMCA -#[derive(proto_derive::CmdID)] -#[cmdid(1423)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SceneEntityMoveScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub entity_motion_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub download_data: ::core::option::Option, -} -/// Obf: CGGEMOEPGHF -#[derive(proto_derive::CmdID)] -#[cmdid(1481)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SceneEntityMoveScNotify { + #[prost(message, optional, tag = "9")] + pub motion: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "4")] pub entity_id: u32, - /// offset: 36 - #[prost(uint32, tag = "8")] +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1447)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SceneEntityMoveCsReq { + /// offset: 40 + #[prost(uint32, tag = "13")] pub entry_id: u32, /// offset: 16 - #[prost(message, optional, tag = "11")] + #[prost(message, repeated, tag = "11")] + pub entity_motion_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint64, tag = "4")] + pub lnimmjljkll: u64, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1409)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SceneEntityMoveScRsp { + /// offset: 40 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub download_data: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub entity_motion_list: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1461)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SceneEntityMoveScNotify { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub entity_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "2")] pub motion: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] pub client_pos_version: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub entry_id: u32, } -/// Obf: BGJHILOCEOG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1469)] +#[cmdid(1445)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneUpdatePositionVersionNotify { /// offset: 24 #[prost(uint32, tag = "12")] - pub djjbkeiaobd: u32, + pub pos_version: u32, } -/// Obf: HLEFIDCMBJA +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1498)] +#[cmdid(1438)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractPropCsReq { - /// offset: 24 + /// offset: 28 #[prost(uint32, tag = "6")] pub interact_id: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] + /// offset: 24 + #[prost(uint32, tag = "7")] pub prop_entity_id: u32, } -/// Obf: GEPAMEPINIH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1465)] +#[cmdid(1417)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InteractPropScRsp { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub retcode: u32, /// offset: 28 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub prop_state: u32, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub prop_entity_id: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub retcode: u32, } -/// Obf: DAEHNKJJIDI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1419)] +#[cmdid(1495)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChangePropTimelineInfoCsReq { - /// offset: 36 - #[prost(uint32, tag = "3")] - pub prop_entity_id: u32, /// offset: 16 - #[prost(message, optional, tag = "2")] - pub djnfcmfddoa: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub timeline_info: ::core::option::Option, /// offset: 40 - #[prost(uint64, tag = "15")] - pub miilnlhddjm: u64, + #[prost(uint32, tag = "8")] + pub prop_entity_id: u32, /// offset: 32 - #[prost(bool, tag = "10")] - pub dlbedaonnkh: bool, + #[prost(uint64, tag = "11")] + pub uuid: u64, + /// offset: 44 + #[prost(bool, tag = "5")] + pub is_close_map: bool, } -/// Obf: LAHIOIBKPGO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1444)] +#[cmdid(1491)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangePropTimelineInfoScRsp { /// offset: 28 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "14")] pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "7")] pub prop_entity_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dkijloakkbo { +pub struct HitMonsterBattleInfo { /// offset: 28 - #[prost(uint32, tag = "2")] - pub gbllcemjjfi: u32, + #[prost(enumeration = "MonsterBattleType", tag = "5")] + pub monster_battle_type: i32, /// offset: 24 - #[prost(enumeration = "MonsterBattleType", tag = "15")] - pub endjgmlkpbp: i32, + #[prost(uint32, tag = "8")] + pub target_monster_entity_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jnhlelnabbd { - /// offset: 16 - #[prost(string, tag = "7")] - pub key: ::prost::alloc::string::String, +pub struct DynamicValues { /// offset: 32 - #[prost(float, tag = "2")] + #[prost(float, tag = "4")] pub value: f32, + /// offset: 16 + #[prost(string, tag = "11")] + pub key: ::prost::alloc::string::String, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct AssistMonsterWave { +pub struct AssistMonsterEntityInfo { /// offset: 24 - #[prost(uint32, repeated, tag = "6")] + #[prost(uint32, repeated, tag = "3")] pub entity_id_list: ::prost::alloc::vec::Vec, } -/// Obf: MJHLIMKLNOD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1483)] +#[cmdid(1451)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneCastSkillCsReq { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub target_motion: ::core::option::Option, - /// offset: 92 - #[prost(uint32, tag = "10")] - pub hchdhljcije: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub dynamic_values: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "2")] - pub caster_id: u32, - /// offset: 56 - #[prost(message, repeated, tag = "11")] - pub assist_monster_wave_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "1")] - pub hit_target_entity_id_list: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(string, tag = "7")] - pub kegdfimpnkh: ::prost::alloc::string::String, - /// offset: 64 - #[prost(enumeration = "SceneCastSkillType", repeated, tag = "9")] - pub casted_skill_type_list: ::prost::alloc::vec::Vec, - /// offset: 84 - #[prost(uint32, tag = "14")] - pub skill_index: u32, /// offset: 88 - #[prost(uint32, tag = "15")] - pub attacked_group_id: u32, + #[prost(uint32, tag = "4")] + pub attacked_by_entity_id: u32, + /// offset: 24 + #[prost(enumeration = "SkillExtraTag", repeated, tag = "1")] + pub skill_extra_tags: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, repeated, tag = "2")] + pub assist_monster_entity_info: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, optional, tag = "5")] + pub target_motion: ::core::option::Option, + /// offset: 48 + #[prost(message, repeated, tag = "6")] + pub dynamic_values: ::prost::alloc::vec::Vec, + /// offset: 92 + #[prost(uint32, tag = "7")] + pub skill_index: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(string, tag = "9")] + pub maze_ability_str: ::prost::alloc::string::String, + /// offset: 80 + #[prost(uint32, tag = "10")] + pub cast_entity_id: u32, + /// offset: 72 + #[prost(uint32, repeated, tag = "12")] + pub hit_target_entity_id_list: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "11")] + pub emcchdminol: u32, } -/// Obf: KPNOOJMCCCI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1486)] +#[cmdid(1411)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneCastSkillScRsp { /// offset: 44 - #[prost(uint32, tag = "15")] - pub attacked_group_id: u32, - /// offset: 40 #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub battle_info: ::core::option::Option, + pub cast_entity_id: u32, /// offset: 32 - #[prost(message, repeated, tag = "5")] - pub kgnglgmiebg: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub monster_battle_info: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub battle_info: ::core::option::Option, } -/// Obf: HIKCPJGJEHH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1415)] +#[cmdid(1452)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneCastSkillCostMpCsReq { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub attacked_by_entity_id: u32, /// offset: 28 #[prost(uint32, tag = "6")] - pub skill_index: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] - pub attacked_group_id: u32, + pub cast_entity_id: u32, /// offset: 24 - #[prost(uint32, tag = "2")] - pub caster_id: u32, + #[prost(uint32, tag = "14")] + pub skill_index: u32, } -/// Obf: FBBHCGOLMLF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1492)] +#[cmdid(1450)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneCastSkillCostMpScRsp { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub attacked_group_id: u32, /// offset: 28 #[prost(uint32, tag = "6")] pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub cast_entity_id: u32, } -/// Obf: CFBDAOAGFII +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1437)] +#[cmdid(1481)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneCastSkillMpUpdateScNotify { /// offset: 28 - #[prost(uint32, tag = "1")] - pub attacked_group_id: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "10")] pub mp: u32, + /// offset: 24 + #[prost(uint32, tag = "3")] + pub cast_entity_id: u32, } -/// Obf: BJCADMHJOFB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1429)] +#[cmdid(1498)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneEnterStageCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub event_id: u32, - /// offset: 28 - #[prost(bool, tag = "14")] - pub pmjahilblfl: bool, /// offset: 32 - #[prost(enumeration = "Lipekjfjmnm", tag = "8")] - pub nikhbkchhjg: i32, + #[prost(bool, tag = "11")] + pub pkhecogkach: bool, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub event_id: u32, + /// offset: 24 + #[prost(enumeration = "RebattleType", tag = "12")] + pub rebattle_type: i32, } -/// Obf: OHOOIMFNPIO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1438)] +#[cmdid(1446)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEnterStageScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "12")] + /// offset: 16 + #[prost(message, optional, tag = "2")] pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, } -/// Obf: ABPCFHDBFGO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1403)] +#[cmdid(1492)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneReviveAfterRebattleCsReq { /// offset: 24 - #[prost(enumeration = "Lipekjfjmnm", tag = "5")] - pub nikhbkchhjg: i32, + #[prost(enumeration = "RebattleType", tag = "6")] + pub rebattle_type: i32, } -/// Obf: JEBJCABFJNA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1409)] +#[cmdid(1414)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneReviveAfterRebattleScRsp { /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "5")] pub retcode: u32, } -/// Obf: GBAONLFLKMJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1494)] +#[cmdid(1489)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetCurSceneInfoCsReq {} -/// Obf: DDNODHNOKHH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1452)] +#[cmdid(1420)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetCurSceneInfoScRsp { - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub scene: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "3")] pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub scene: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EntityBuffChangeInfo { + /// offset: 32 + #[prost(enumeration = "SceneEntityBuffChangeType", tag = "10")] + pub reason: i32, /// offset: 44 #[prost(uint32, tag = "4")] - pub attacked_group_id: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] pub entity_id: u32, /// offset: 40 - #[prost(enumeration = "EntityBuffChangeType", tag = "3")] - pub reason: i32, - #[prost(oneof = "entity_buff_change_info::Info", tags = "11, 1")] - pub info: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub cast_entity_id: u32, + #[prost(oneof = "entity_buff_change_info::Mlneddhojgc", tags = "8, 6")] + pub mlneddhojgc: ::core::option::Option, } /// Nested message and enum types in `EntityBuffChangeInfo`. pub mod entity_buff_change_info { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { + pub enum Mlneddhojgc { /// offset: 24 - #[prost(message, tag = "11")] - AddBuffInfo(super::BuffInfo), + #[prost(message, tag = "8")] + BuffChangeInfo(super::BuffInfo), /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "6")] RemoveBuffId(u32), } } -/// Obf: IMNJNKPICAF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1457)] +#[cmdid(1476)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SyncEntityBuffChangeListScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub entity_buff_info_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub entity_buff_change_list: ::prost::alloc::vec::Vec, } -/// Obf: BIPGPKHCJNG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1449)] +#[cmdid(1437)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SpringRefreshCsReq { /// offset: 24 #[prost(uint32, tag = "6")] - pub prop_entity_id: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] pub floor_id: u32, /// offset: 28 - #[prost(uint32, tag = "13")] - pub plane_id: u32, -} -/// Obf: KBEOJIAJBHO -#[derive(proto_derive::CmdID)] -#[cmdid(1480)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SpringRefreshScRsp { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: GPOPGOFKHFJ -#[derive(proto_derive::CmdID)] -#[cmdid(1477)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct LastSpringRefreshTimeNotify { - /// offset: 24 - #[prost(int64, tag = "14")] - pub jbicindpigm: i64, -} -/// Obf: NKFBPFNHCDL -#[derive(proto_derive::CmdID)] -#[cmdid(1405)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ReturnLastTownCsReq {} -/// Obf: EBKDCIDEFEG -#[derive(proto_derive::CmdID)] -#[cmdid(1451)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ReturnLastTownScRsp { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub scene: ::core::option::Option, -} -/// Obf: FHFLJPFCOOJ -#[derive(proto_derive::CmdID)] -#[cmdid(1462)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterSectionCsReq { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub lbmncagokif: u32, -} -/// Obf: LEJKNHNDIBO -#[derive(proto_derive::CmdID)] -#[cmdid(1459)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterSectionScRsp { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub retcode: u32, -} -/// Obf: BBNOINDEFKD -#[derive(proto_derive::CmdID)] -#[cmdid(1455)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetCurInteractEntityCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub entity_id: u32, -} -/// Obf: BGMHIBGBJMJ -#[derive(proto_derive::CmdID)] -#[cmdid(1450)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SetCurInteractEntityScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: HCHMJOHLMDA -#[derive(proto_derive::CmdID)] -#[cmdid(1460)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RecoverAllLineupCsReq {} -/// Obf: CMLNFHPNDEG -#[derive(proto_derive::CmdID)] -#[cmdid(1471)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RecoverAllLineupScRsp { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub retcode: u32, -} -/// Obf: SavePointsInfoNotify -#[derive(proto_derive::CmdID)] -#[cmdid(1435)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SavePointsInfoNotify { - /// offset: 32 - #[prost(int64, tag = "4")] - pub refresh_time: i64, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub valid_times: u32, -} -/// Obf: JKIMJCCFMPI -#[derive(proto_derive::CmdID)] -#[cmdid(1474)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartCocoonStageCsReq { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub cocoon_id: u32, - /// offset: 40 #[prost(uint32, tag = "8")] - pub wave: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub kmffahenckb: u32, + pub plane_id: u32, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "2")] pub prop_entity_id: u32, - /// offset: 24 - #[prost(uint32, tag = "14")] - pub world_level: u32, } -/// Obf: StartCocoonStageScRsp -#[derive(proto_derive::CmdID)] -#[cmdid(1416)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartCocoonStageScRsp { - /// offset: 48 - #[prost(uint32, tag = "6")] - pub prop_entity_id: u32, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub cocoon_id: u32, - /// offset: 44 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub wave: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub challenge_cnt: u32, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub battle_info: ::core::option::Option, -} -/// Obf: FFIHDGGAEKN -#[derive(proto_derive::CmdID)] -#[cmdid(1456)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EntityBindPropCsReq { - /// offset: 32 - #[prost(bool, tag = "1")] - pub mjjmpiflmkf: bool, - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub motion: ::core::option::Option, -} -/// Obf: MNILDBFIHNM -#[derive(proto_derive::CmdID)] -#[cmdid(1421)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EntityBindPropScRsp { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub retcode: u32, -} -/// Obf: FINBEHEFKPL +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(1410)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SpringRefreshScRsp { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1467)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct LastSpringRefreshTimeNotify { + /// offset: 24 + #[prost(int64, tag = "7")] + pub pcomgohpgaj: i64, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ReturnLastTownCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1435)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ReturnLastTownScRsp { + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub scene: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1426)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct EnterSectionCsReq { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub section_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1457)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct EnterSectionScRsp { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetCurInteractEntityCsReq { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub entity_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1413)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SetCurInteractEntityScRsp { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1401)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RecoverAllLineupCsReq {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1449)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct RecoverAllLineupScRsp { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(1477)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct SavePointsInfoNotify { + /// offset: 24 + #[prost(int64, tag = "10")] + pub refresh_time: i64, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub valid_times: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1419)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct StartCocoonStageCsReq { + /// offset: 28 + #[prost(uint32, tag = "1")] + pub wave: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub cocoon_id: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub kidieobnbdm: u32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub prop_entity_id: u32, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub world_level: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1469)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct StartCocoonStageScRsp { + /// offset: 36 + #[prost(uint32, tag = "1")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub prop_entity_id: u32, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub cocoon_id: u32, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub challenge_cnt: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub battle_info: ::core::option::Option, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub wave: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct EntityBindPropCsReq { + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub motion: ::core::option::Option, + /// offset: 32 + #[prost(bool, tag = "14")] + pub mkejccmmajh: bool, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1488)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct EntityBindPropScRsp { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(1403)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetClientPausedCsReq { /// offset: 24 - #[prost(bool, tag = "9")] + #[prost(bool, tag = "14")] pub paused: bool, } -/// Obf: MLDMMOMNJPF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1453)] +#[cmdid(1455)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetClientPausedScRsp { /// offset: 28 - #[prost(bool, tag = "8")] - pub paused: bool, - /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub retcode: u32, + /// offset: 24 + #[prost(bool, tag = "7")] + pub paused: bool, } -/// Obf: PLFDILGNLLH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1470)] +#[cmdid(1433)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeactivateFarmElementCsReq { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "9")] pub entity_id: u32, } -/// Obf: JBEDHCJJDGC +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1441)] +#[cmdid(1466)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct DeactivateFarmElementScRsp { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub retcode: u32, /// offset: 28 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 24 #[prost(uint32, tag = "3")] pub entity_id: u32, } -/// Obf: JPFHHINHOHI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1412)] +#[cmdid(1436)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ActivateFarmElementCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub kmffahenckb: u32, /// offset: 28 - #[prost(uint32, tag = "3")] - pub world_level: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub entity_id: u32, -} -/// Obf: LNPHFEBJKAA -#[derive(proto_derive::CmdID)] -#[cmdid(1406)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ActivateFarmElementScRsp { + #[prost(uint32, tag = "15")] + pub kidieobnbdm: u32, /// offset: 24 #[prost(uint32, tag = "14")] pub entity_id: u32, /// offset: 32 + #[prost(uint32, tag = "4")] + pub world_level: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(1485)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct ActivateFarmElementScRsp { + /// offset: 28 + #[prost(uint32, tag = "6")] + pub world_level: u32, + /// offset: 24 #[prost(uint32, tag = "11")] pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub world_level: u32, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub entity_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Heejkkagimo { +pub struct AvatarPresetHp { /// offset: 24 - #[prost(uint32, tag = "2")] - pub jlafldchdgj: u32, + #[prost(uint32, tag = "4")] + pub hbbkdaiilkp: u32, /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub avatar_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fpdakbkbjkf { +pub struct SpringRecoverConfig { /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub bcglmlabogf: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "3")] + pub ppjbpmagmoe: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(bool, tag = "13")] - pub ghdepancgpf: bool, + pub oicdeamknmf: bool, /// offset: 36 - #[prost(uint32, tag = "15")] - pub eidnigifnaa: u32, + #[prost(uint32, tag = "7")] + pub ofapndbojcb: u32, } -/// Obf: NIIKLJIBJEP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1466)] +#[cmdid(1439)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateMechanismBarScNotify { /// offset: 36 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "5")] pub plane_id: u32, /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "15")] pub floor_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub gigkdapgnme: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub adbppofggbc: ::core::option::Option, } -/// Obf: OKLENHLIIGG #[derive(proto_derive::CmdID)] -#[cmdid(1439)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SetGroupCustomSaveDataCsReq { - /// offset: 16 - #[prost(string, tag = "9")] + /// offset: 24 + #[prost(string, tag = "11")] pub save_data: ::prost::alloc::string::String, - /// offset: 32 + /// offset: 36 #[prost(uint32, tag = "3")] pub entry_id: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] + /// offset: 32 + #[prost(uint32, tag = "4")] pub group_id: u32, } -/// Obf: AIAFOJMJHKK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1445)] +#[cmdid(1427)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetGroupCustomSaveDataScRsp { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "1")] - pub group_id: u32, + #[prost(uint32, tag = "5")] + pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub entry_id: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub group_id: u32, } -/// Obf: IGPOPOJDLOH +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(1402)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ReEnterLastElementStageCsReq { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] pub stage_id: u32, } -/// Obf: HAKNDGDAEOF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1488)] +#[cmdid(1418)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReEnterLastElementStageScRsp { /// offset: 36 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "15")] pub stage_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub battle_info: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "6")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub battle_info: ::core::option::Option, } -/// Obf: MFKPBBGBIAO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1430)] +#[cmdid(1480)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneEntityTeleportCsReq { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub entity_motion: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "10")] pub entry_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub entity_motion: ::core::option::Option, } -/// Obf: MBJFPBAHEGB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1418)] +#[cmdid(1483)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SceneEntityTeleportScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] + /// offset: 36 + #[prost(uint32, tag = "8")] pub client_pos_version: u32, /// offset: 24 - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "13")] pub entity_motion: ::core::option::Option, - /// offset: 36 - #[prost(uint32, tag = "1")] + /// offset: 32 + #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: KFJJHAIMMHG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1454)] +#[cmdid(1453)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterSceneCsReq { - /// offset: 54 - #[prost(bool, tag = "3")] - pub ebfmnbpognd: bool, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub rot: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "7")] - pub game_story_line_id: u32, /// offset: 52 - #[prost(bool, tag = "12")] - pub oglhhkbkeda: bool, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub entry_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "9")] - pub anajeiklgml: ::core::option::Option, - /// offset: 53 - #[prost(bool, tag = "8")] - pub dlbedaonnkh: bool, - /// offset: 48 - #[prost(uint32, tag = "13")] - pub content_id: u32, + #[prost(uint32, tag = "12")] + pub game_story_line_id: u32, + /// offset: 32 + #[prost(message, optional, tag = "7")] + pub rot: ::core::option::Option, /// offset: 56 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "4")] + pub entry_id: u32, + /// offset: 44 + #[prost(bool, tag = "15")] + pub is_close_map: bool, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub bcppmongjgf: ::core::option::Option, + /// offset: 46 + #[prost(bool, tag = "14")] + pub ooleibolgoh: bool, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub content_id: u32, + /// offset: 40 + #[prost(uint32, tag = "13")] pub teleport_id: u32, + /// offset: 45 + #[prost(bool, tag = "6")] + pub magabcdmnoh: bool, } -/// Obf: OPBPKAAGIBE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1461)] +#[cmdid(1496)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnterSceneScRsp { - /// offset: 28 - #[prost(bool, tag = "13")] - pub iiaafopfcbn: bool, /// offset: 24 - #[prost(uint32, tag = "1")] - pub game_story_line_id: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "8")] + pub content_id: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "11")] - pub content_id: u32, - /// offset: 29 - #[prost(bool, tag = "4")] - pub dlbedaonnkh: bool, + #[prost(bool, tag = "12")] + pub is_over_map: bool, + /// offset: 33 + #[prost(bool, tag = "6")] + pub is_close_map: bool, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub game_story_line_id: u32, } -/// Obf: OLLMMKGBDGO +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1433)] +#[cmdid(1448)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnterSceneByServerScNotify { /// offset: 40 - #[prost(enumeration = "EnterSceneReason", tag = "5")] + #[prost(enumeration = "EnterSceneReason", tag = "12")] pub reason: i32, /// offset: 24 - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "5")] pub lineup: ::core::option::Option, /// offset: 16 - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "6")] pub scene: ::core::option::Option, } -/// Obf: KIFHBHNPCOC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1476)] +#[cmdid(1486)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ScenePlaneEventScNotify { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub fgoefbhkjed: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "10")] + pub bgnapljadbp: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "1")] + pub get_item_list: ::core::option::Option, /// offset: 24 #[prost(message, optional, tag = "15")] - pub meekfpcobai: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub get_item_list: ::core::option::Option, - /// offset: 40 - #[prost(message, optional, tag = "4")] - pub acfcjiomjnf: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "11")] - pub mhdjadhndkd: ::core::option::Option, + pub bkijnhdldpg: ::core::option::Option, } -/// Obf: MBLCANFKHCP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1482)] +#[cmdid(1428)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSceneMapInfoCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "13")] - pub entry_id_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "6")] - pub cur_map_entry_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub floor_id_list: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(bool, tag = "12")] - pub igfikghllno: bool, - /// offset: 40 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "15")] pub content_id: u32, + /// offset: 40 + #[prost(uint32, tag = "9")] + pub entry_story_line_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "4")] + pub entry_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, repeated, tag = "13")] + pub floor_id_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(bool, tag = "11")] + pub unk1: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MazeProp { - /// offset: 24 - #[prost(uint32, tag = "7")] - pub state: u32, +pub struct MazePropState { /// offset: 28 - #[prost(uint32, tag = "6")] - pub config_id: u32, - /// offset: 32 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "13")] + pub state: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] pub group_id: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub config_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MazePropExtra { - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub extra_info: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub config_id: u32, +pub struct MazePropExtraState { /// offset: 36 + #[prost(uint32, tag = "5")] + pub config_id: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub group_id: u32, + /// offset: 40 #[prost(uint32, tag = "4")] pub state: u32, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub group_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub extra_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MazeGroup { - /// offset: 36 - #[prost(bool, tag = "2")] - pub ilbeaaoojjp: bool, /// offset: 40 - #[prost(int64, tag = "11")] - pub modify_time: i64, + #[prost(int64, tag = "12")] + pub dhjhadfkhjk: i64, + /// offset: 36 + #[prost(bool, tag = "6")] + pub eeacfckaeec: bool, /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "5")] pub group_id: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "6")] - pub nobkeonakle: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub ddnoegpcacf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct MazeChest { - /// offset: 28 - #[prost(enumeration = "MapInfoChestType", tag = "5")] - pub map_info_chest_type: i32, +pub struct ChestInfo { /// offset: 24 - #[prost(uint32, tag = "14")] - pub total_amount_list: u32, + #[prost(enumeration = "ChestType", tag = "1")] + pub chest_type: i32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub exist_num: u32, /// offset: 32 - #[prost(uint32, tag = "4")] - pub unlocked_amount_list: u32, + #[prost(uint32, tag = "6")] + pub opened_num: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ChestUnlockProgress { +pub struct Kehgnhfffeo { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub ehpglnhhkfg: u32, /// offset: 28 - #[prost(uint32, tag = "3")] - pub total_chest_count: u32, + #[prost(uint32, tag = "13")] + pub r#type: u32, /// offset: 24 #[prost(uint32, tag = "10")] - pub unlocked_chest_count: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub r#type: u32, + pub koocfamjobo: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct MazeMapData { - /// offset: 24 - #[prost(map = "string, int32", tag = "8")] +pub struct SceneMapInfo { + /// offset: 104 + #[prost(uint32, tag = "7")] + pub floor_id: u32, + /// offset: 72 + #[prost(message, repeated, tag = "3")] + pub maze_group_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub maze_prop_list: ::prost::alloc::vec::Vec, + /// offset: 100 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "6")] + pub unlock_teleport_list: ::prost::alloc::vec::Vec, + /// offset: 92 + #[prost(uint32, tag = "15")] + pub entry_id: u32, + /// offset: 56 + #[prost(message, repeated, tag = "4")] + pub chest_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(map = "string, int32", tag = "11")] pub floor_saved_data: ::std::collections::HashMap< ::prost::alloc::string::String, i32, >, - /// offset: 32 - #[prost(message, repeated, tag = "12")] - pub maze_prop_list: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(message, repeated, tag = "6")] - pub chest_unlock_progress_list: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(message, repeated, tag = "11")] - pub maze_prop_extra_list: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(uint32, tag = "4")] - pub entry_id: u32, - /// offset: 100 - #[prost(uint32, tag = "5")] - pub floor_id: u32, - /// offset: 56 - #[prost(message, repeated, tag = "2")] - pub unlocked_chest_list: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(message, repeated, tag = "9")] - pub maze_group_list: ::prost::alloc::vec::Vec, - /// offset: 104 - #[prost(uint32, tag = "1")] - pub gfhglffhfbd: u32, - /// offset: 92 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 64 - #[prost(uint32, repeated, tag = "13")] + /// offset: 24 + #[prost(uint32, repeated, tag = "9")] pub lighten_section_list: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(message, repeated, tag = "5")] + pub pjjnmanpnke: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "14")] + pub maze_prop_extra_state_list: ::prost::alloc::vec::Vec, /// offset: 96 - #[prost(uint32, tag = "14")] - pub lmeefkjbpec: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub unlocked_teleport_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "12")] + pub cur_map_entry_id: u32, + /// offset: 88 + #[prost(uint32, tag = "2")] + pub dimension_id: u32, } -/// Obf: PGMDNIBOJIK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1475)] +#[cmdid(1454)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetSceneMapInfoScRsp { /// offset: 36 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "11")] pub content_id: u32, + /// offset: 44 + #[prost(bool, tag = "15")] + pub unk1: bool, /// offset: 32 - #[prost(bool, tag = "12")] - pub igfikghllno: bool, + #[prost(uint32, tag = "4")] + pub entry_story_line_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub scene_map_info: ::prost::alloc::vec::Vec, /// offset: 40 #[prost(uint32, tag = "10")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub map_list: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub cur_map_entry_id: u32, } -/// Obf: FGDBIJGOBEA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1464)] +#[cmdid(1440)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SyncServerSceneChangeNotify {} -/// Obf: HKIJFKJGMCM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1408)] +#[cmdid(1423)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterCountDownCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub nmglnhpanah: u32, /// offset: 28 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "3")] pub cur_times: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub gkbgfkolicb: u32, } -/// Obf: JDHNNOHMMEF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1424)] +#[cmdid(1490)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterCountDownScRsp { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "9")] pub retcode: u32, } -/// Obf: MDBDLPEODKD +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1467)] +#[cmdid(1444)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterUpdateScNotify { /// offset: 28 - #[prost(uint32, tag = "15")] - pub nmglnhpanah: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub blogjdckahm: u32, - /// offset: 24 - #[prost(enumeration = "Cnppaammffd", tag = "10")] + #[prost(enumeration = "GameplayCounterUpdateReason", tag = "10")] pub reason: i32, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub dfpldabbmjn: u32, + /// offset: 24 + #[prost(uint32, tag = "2")] + pub gkbgfkolicb: u32, } -/// Obf: MFKPBCIAKCM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1484)] +#[cmdid(1424)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterRecoverCsReq { /// offset: 24 - #[prost(uint32, tag = "10")] - pub nmglnhpanah: u32, + #[prost(uint32, tag = "11")] + pub icgnmkkfdnd: u32, /// offset: 28 - #[prost(uint32, tag = "1")] - pub labooddaloe: u32, + #[prost(uint32, tag = "5")] + pub gkbgfkolicb: u32, } -/// Obf: LLBMDKIPMHM +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1417)] +#[cmdid(1471)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GameplayCounterRecoverScRsp { /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: FBJOCFCINKO +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1431)] +#[cmdid(1499)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateFloorSavedValueNotify { /// offset: 32 #[prost(uint32, tag = "1")] + pub dimension_id: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] pub plane_id: u32, /// offset: 36 - #[prost(uint32, tag = "2")] - pub gfhglffhfbd: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] pub floor_id: u32, - /// offset: 24 - #[prost(map = "string, int32", tag = "11")] - pub oaifmglieep: ::std::collections::HashMap<::prost::alloc::string::String, i32>, + /// offset: 16 + #[prost(map = "string, int32", tag = "8")] + pub saved_value: ::std::collections::HashMap<::prost::alloc::string::String, i32>, } -/// Obf: PCFOFDPKLHJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1446)] +#[cmdid(1459)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetUnlockTeleportCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "14")] + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] pub entry_id_list: ::prost::alloc::vec::Vec, } -/// Obf: CGOLBMHDACA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1458)] +#[cmdid(1478)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetUnlockTeleportScRsp { /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "5")] pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub unlocked_teleport_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub unlock_teleport_list: ::prost::alloc::vec::Vec, } -/// Obf: MKMAMJECDAH +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1427)] +#[cmdid(1422)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct OpenChestScNotify { /// offset: 24 - #[prost(uint32, tag = "4")] - pub kigaehdgklm: u32, + #[prost(uint32, tag = "2")] + pub chest_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneEntityRefreshInfo { - #[prost(oneof = "scene_entity_refresh_info::RefreshType", tags = "1, 15, 6")] + #[prost(oneof = "scene_entity_refresh_info::RefreshType", tags = "8, 15, 14")] pub refresh_type: ::core::option::Option, } /// Nested message and enum types in `SceneEntityRefreshInfo`. @@ -46648,103 +47415,106 @@ pub mod scene_entity_refresh_info { #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum RefreshType { /// offset: 24 - #[prost(message, tag = "1")] + #[prost(message, tag = "8")] AddEntity(super::SceneEntityInfo), /// offset: 24 #[prost(uint32, tag = "15")] - DelEntity(u32), + Imkifmiepmm(u32), /// offset: 24 - #[prost(uint32, tag = "6")] - Mhhoaahdgao(u32), + #[prost(uint32, tag = "14")] + DeleteEntity(u32), } } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cmgfhbhaffb { - /// offset: 36 - #[prost(int32, tag = "11")] - pub agfijniebkf: i32, - /// offset: 32 - #[prost(int32, tag = "9")] - pub dlmamkinnco: i32, +pub struct Cmibfjlljhj { /// offset: 16 - #[prost(string, tag = "2")] - pub jaibieekheg: ::prost::alloc::string::String, + #[prost(string, tag = "11")] + pub delekfmggcm: ::prost::alloc::string::String, + /// offset: 36 + #[prost(int32, tag = "9")] + pub dkdbccacmcg: i32, + /// offset: 32 + #[prost(int32, tag = "1")] + pub jofpdcalaga: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SceneGroupRefreshInfo { +pub struct GroupRefreshInfo { + /// offset: 48 + #[prost(enumeration = "SceneGroupRefreshType", tag = "15")] + pub refresh_type: i32, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub group_id: u32, /// offset: 16 - #[prost(message, repeated, tag = "4")] + #[prost(message, repeated, tag = "5")] pub refresh_entity: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "1")] + /// offset: 32 + #[prost(message, optional, tag = "2")] + pub gnfgdlgmnbm: ::core::option::Option, + /// offset: 52 + #[prost(uint32, tag = "10")] pub state: u32, /// offset: 40 - #[prost(uint32, tag = "3")] - pub group_id: u32, - /// offset: 32 - #[prost(message, repeated, tag = "6")] - pub bccgjihncdn: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(enumeration = "SceneGroupRefreshType", tag = "5")] - pub group_refresh_type: i32, + #[prost(message, repeated, tag = "4")] + pub akifmcjmocg: ::prost::alloc::vec::Vec, } -/// Obf: DNIDLPMBJGI +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1493)] +#[cmdid(1404)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SceneGroupRefreshScNotify { /// offset: 32 - #[prost(uint32, tag = "11")] - pub gfhglffhfbd: u32, - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub group_refresh_info: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "12")] pub floor_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub group_refresh_list: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub dimension_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GroupStateInfo { - /// offset: 28 - #[prost(uint32, tag = "13")] - pub player_uid: u32, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub group_state: u32, /// offset: 32 - #[prost(uint32, tag = "2")] - pub group_id: u32, + #[prost(uint32, tag = "7")] + pub gapeefcbghk: u32, /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "11")] + pub group_id: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub group_state: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] pub entry_id: u32, } -/// Obf: EPALKAAFOPL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1443)] +#[cmdid(1421)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GroupStateChangeCsReq { - /// offset: 24 - #[prost(message, optional, tag = "10")] + /// offset: 16 + #[prost(message, optional, tag = "7")] pub group_state_info: ::core::option::Option, } -/// Obf: HDJPNIADMMH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1432)] +#[cmdid(1458)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GroupStateChangeScRsp { /// offset: 24 - #[prost(message, optional, tag = "13")] + #[prost(message, optional, tag = "15")] pub group_state_info: ::core::option::Option, /// offset: 32 #[prost(uint32, tag = "11")] pub retcode: u32, } -/// Obf: NEEPAILHCAD +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1491)] +#[cmdid(1494)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GroupStateChangeScNotify { /// offset: 24 @@ -46755,5695 +47525,5634 @@ pub struct GroupStateChangeScNotify { #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct EnteredSceneInfo { /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "5")] pub floor_id: u32, /// offset: 24 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "11")] pub plane_id: u32, } -/// Obf: IKCIBNFGIGD +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1473)] +#[cmdid(1487)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetEnteredSceneCsReq {} -/// Obf: FFKICDPOBHE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1490)] +#[cmdid(1460)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetEnteredSceneScRsp { /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] pub retcode: u32, /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub entered_scene_info: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "12")] + pub entered_scene_info_list: ::prost::alloc::vec::Vec, } -/// Obf: KCMGLHOAMMA +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1413)] +#[cmdid(1408)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EnteredSceneChangeScNotify { /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub entered_scene_info: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub entered_scene_info_list: ::prost::alloc::vec::Vec, } -/// Obf: KIOMIEGGBEN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1487)] +#[cmdid(1475)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RefreshTriggerByClientCsReq { - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub trigger_motion: ::core::option::Option, /// offset: 32 - #[prost(string, tag = "4")] + #[prost(string, tag = "15")] pub trigger_name: ::prost::alloc::string::String, - /// offset: 48 - #[prost(uint32, tag = "9")] - pub trigger_entity_id: u32, - /// offset: 40 - #[prost(uint32, repeated, tag = "3")] + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] pub trigger_target_id_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, optional, tag = "4")] + pub trigger_motion: ::core::option::Option, + /// offset: 48 + #[prost(uint32, tag = "14")] + pub trigger_entity_id: u32, } -/// Obf: JGDKAEIDJND +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1500)] +#[cmdid(1464)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RefreshTriggerByClientScRsp { - /// offset: 16 - #[prost(string, tag = "7")] + /// offset: 24 + #[prost(string, tag = "12")] pub trigger_name: ::prost::alloc::string::String, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "1")] - pub trigger_entity_id: u32, /// offset: 32 - #[prost(bool, tag = "10")] + #[prost(bool, tag = "1")] pub refresh_trigger: bool, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub trigger_entity_id: u32, } -/// Obf: AHMJLGKLLKF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1436)] +#[cmdid(1456)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct RefreshTriggerByClientScNotify { + /// offset: 40 + #[prost(uint32, tag = "14")] + pub trigger_entity_id: u32, /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub trigger_target_id_list: ::prost::alloc::vec::Vec, - /// offset: 32 #[prost(string, tag = "7")] pub trigger_name: ::prost::alloc::string::String, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub trigger_entity_id: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "2")] + pub trigger_target_id_list: ::prost::alloc::vec::Vec, } -/// Obf: PPKGLDLFMHB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1448)] +#[cmdid(1416)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteSummonUnitCsReq { /// offset: 24 - #[prost(uint32, repeated, tag = "11")] + #[prost(uint32, repeated, tag = "13")] pub entity_id_list: ::prost::alloc::vec::Vec, } -/// Obf: AMHALMPHADG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1428)] +#[cmdid(1412)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeleteSummonUnitScRsp { /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "15")] pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] pub entity_id_list: ::prost::alloc::vec::Vec, } -/// Obf: NDJAIEFKJDC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1426)] +#[cmdid(1405)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UnlockedAreaMapScNotify { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] pub entry_id_list: ::prost::alloc::vec::Vec, } -/// Obf: MECGPLPPPLF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1478)] +#[cmdid(1442)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTeleportNotify { /// offset: 24 - #[prost(uint32, tag = "2")] - pub entry_id: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub teleport_id: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub entry_id: u32, } -/// Obf: PFGIGAKAMGI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1434)] +#[cmdid(1463)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateGroupPropertyCsReq { - /// offset: 40 - #[prost(int32, tag = "1")] - pub mojohjebcnj: i32, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub group_id: u32, - /// offset: 24 - #[prost(string, tag = "14")] - pub jaibieekheg: ::prost::alloc::string::String, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub floor_id: u32, /// offset: 44 - #[prost(uint32, tag = "6")] - pub gfhglffhfbd: u32, + #[prost(uint32, tag = "15")] + pub dimension_id: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub group_id: u32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub floor_id: u32, + /// offset: 16 + #[prost(string, tag = "5")] + pub delekfmggcm: ::prost::alloc::string::String, + /// offset: 32 + #[prost(int32, tag = "14")] + pub hgjdnjeacbe: i32, } -/// Obf: FKPHAPJNAED +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1414)] +#[cmdid(1429)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateGroupPropertyScRsp { - /// offset: 24 - #[prost(string, tag = "5")] - pub jaibieekheg: ::prost::alloc::string::String, - /// offset: 36 - #[prost(int32, tag = "8")] - pub agfijniebkf: i32, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 16 + #[prost(string, tag = "1")] + pub delekfmggcm: ::prost::alloc::string::String, /// offset: 32 - #[prost(uint32, tag = "11")] - pub gfhglffhfbd: u32, + #[prost(int32, tag = "11")] + pub jofpdcalaga: i32, /// offset: 44 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "3")] pub group_id: u32, /// offset: 52 #[prost(uint32, tag = "7")] - pub floor_id: u32, - /// offset: 40 - #[prost(int32, tag = "1")] - pub dlmamkinnco: i32, + pub dimension_id: u32, /// offset: 48 - #[prost(uint32, tag = "10")] - pub retcode: u32, + #[prost(int32, tag = "6")] + pub dkdbccacmcg: i32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub floor_id: u32, } -/// Obf: IBGAGNCFDEN +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(1489)] +#[cmdid(1443)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainWorldIdChangeScNotify { /// offset: 24 - #[prost(uint32, tag = "6")] - pub npebnekdlen: u32, + #[prost(uint32, tag = "9")] + pub jhjpdninclj: u32, } -/// Obf: KLAHNDOECJN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1407)] +#[cmdid(1484)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetTrainWorldIdCsReq { /// offset: 24 - #[prost(uint32, tag = "10")] - pub npebnekdlen: u32, + #[prost(uint32, tag = "5")] + pub jhjpdninclj: u32, } -/// Obf: EPNFPGBPNCI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1447)] +#[cmdid(1482)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetTrainWorldIdScRsp { /// offset: 28 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "6")] pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "14")] - pub npebnekdlen: u32, + #[prost(uint32, tag = "4")] + pub jhjpdninclj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct ServerPrefs { /// offset: 32 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "3")] pub server_prefs_id: u32, /// offset: 16 - #[prost(bytes = "vec", tag = "7")] + #[prost(bytes = "vec", tag = "10")] pub data: ::prost::alloc::vec::Vec, } -/// Obf: ODFDCOFIFNE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6199)] +#[cmdid(6147)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetAllServerPrefsDataCsReq {} -/// Obf: ANIEMJCBMEH +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6123)] +#[cmdid(6109)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetAllServerPrefsDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub lfbeohkkdoi: ::prost::alloc::vec::Vec, -} -/// Obf: FLGFMAOEILG -#[derive(proto_derive::CmdID)] -#[cmdid(6198)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetServerPrefsDataCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub server_prefs_id: u32, -} -/// Obf: DMLKMBPBNDF -#[derive(proto_derive::CmdID)] -#[cmdid(6165)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetServerPrefsDataScRsp { /// offset: 32 #[prost(uint32, tag = "5")] pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "13")] + #[prost(message, repeated, tag = "10")] + pub server_prefs_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct GetServerPrefsDataCsReq { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub server_prefs_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6117)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GetServerPrefsDataScRsp { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "12")] pub server_prefs: ::core::option::Option, } -/// Obf: HEPBIHIMJAC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6183)] +#[cmdid(6151)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct UpdateServerPrefsDataCsReq { /// offset: 16 - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "8")] pub server_prefs: ::core::option::Option, } -/// Obf: LOIEDLCJAED +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6186)] +#[cmdid(6111)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UpdateServerPrefsDataScRsp { /// offset: 24 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "14")] pub server_prefs_id: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Shop { - /// offset: 56 - #[prost(int64, tag = "1")] - pub begin_time: i64, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub goods_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub city_exp: u32, - /// offset: 32 - #[prost(int64, tag = "15")] - pub end_time: i64, - /// offset: 48 - #[prost(uint32, tag = "9")] - pub shop_id: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub city_level: u32, /// offset: 64 - #[prost(uint64, tag = "14")] + #[prost(uint32, tag = "5")] + pub shop_id: u32, + /// offset: 40 + #[prost(uint64, tag = "3")] pub city_taken_level_reward: u64, + /// offset: 32 + #[prost(int64, tag = "8")] + pub begin_time: i64, + /// offset: 52 + #[prost(uint32, tag = "12")] + pub city_exp: u32, + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub goods_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "7")] + pub city_level: u32, + /// offset: 56 + #[prost(int64, tag = "11")] + pub end_time: i64, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Goods { + /// offset: 36 + #[prost(uint32, tag = "2")] + pub goods_id: u32, /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "7")] pub buy_times: u32, - /// offset: 40 - #[prost(uint32, tag = "9")] - pub item_id: u32, /// offset: 48 - #[prost(int64, tag = "12")] + #[prost(uint32, tag = "8")] + pub item_id: u32, + /// offset: 40 + #[prost(int64, tag = "4")] pub end_time: i64, /// offset: 24 - #[prost(int64, tag = "14")] + #[prost(int64, tag = "1")] pub begin_time: i64, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub goods_id: u32, } -/// Obf: FCKAFIDILMG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1599)] +#[cmdid(1547)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetShopListCsReq { /// offset: 24 - #[prost(uint32, tag = "11")] + #[prost(uint32, tag = "4")] pub shop_type: u32, } -/// Obf: GetShopListScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1523)] +#[cmdid(1509)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetShopListScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub shop_type: u32, - /// offset: 16 - #[prost(message, repeated, tag = "8")] + /// offset: 24 + #[prost(message, repeated, tag = "10")] pub shop_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub shop_type: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub retcode: u32, } -/// Obf: CMOBCAPIPLL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1598)] +#[cmdid(1538)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuyGoodsCsReq { + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub nllkncingfm: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "5")] - pub interacted_prop_entity_id: u32, - /// offset: 48 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "4")] pub goods_num: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub fmpnheaimdn: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub item_id: u32, /// offset: 36 #[prost(uint32, tag = "2")] - pub goods_id: u32, + pub item_id: u32, /// offset: 44 + #[prost(uint32, tag = "7")] + pub goods_id: u32, + /// offset: 48 #[prost(uint32, tag = "13")] + pub interacted_prop_entity_id: u32, + /// offset: 40 + #[prost(uint32, tag = "8")] pub shop_id: u32, } -/// Obf: BuyGoodsScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1565)] +#[cmdid(1517)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct BuyGoodsScRsp { - /// offset: 36 - #[prost(uint32, tag = "4")] - pub goods_buy_times: u32, /// offset: 40 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "5")] pub shop_id: u32, - /// offset: 24 - #[prost(message, optional, tag = "8")] - pub return_item_list: ::core::option::Option, /// offset: 44 - #[prost(uint32, tag = "6")] - pub goods_id: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "14")] pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub goods_id: u32, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub goods_buy_times: u32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub return_item_list: ::core::option::Option, } -/// Obf: GLKECELEPCE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1583)] +#[cmdid(1551)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeCityShopRewardCsReq { /// offset: 28 - #[prost(uint32, tag = "11")] - pub level: u32, - /// offset: 24 #[prost(uint32, tag = "5")] pub shop_id: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub level: u32, } -/// Obf: LKKOMNEHAMB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1586)] +#[cmdid(1511)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeCityShopRewardScRsp { - /// offset: 40 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub level: u32, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub shop_id: u32, -} -/// Obf: CityShopInfoScNotify -#[derive(proto_derive::CmdID)] -#[cmdid(1594)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct CityShopInfoScNotify { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub level: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub shop_id: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub exp: u32, - /// offset: 40 - #[prost(uint64, tag = "15")] - pub taken_level_reward: u64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fafgmlpadmi { - /// offset: 48 - #[prost(bool, tag = "6")] - pub halbhknpikh: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub igjcppkaibi: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub unique_id: u32, - /// offset: 52 - #[prost(uint32, tag = "12")] - pub bejeedaebbe: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "2")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "5")] - pub fclnoogehmc: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ipjaiinegel { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub bejeedaebbe: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub ecbalmaebjc: u32, -} -/// Obf: HINEAHNNJOL -#[derive(proto_derive::CmdID)] -#[cmdid(6799)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SpaceZooDataCsReq {} -/// Obf: AMIJINMJHPI -#[derive(proto_derive::CmdID)] -#[cmdid(6723)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooDataScRsp { - /// offset: 84 - #[prost(uint32, tag = "5")] - pub pblcahnmfjg: u32, - /// offset: 56 - #[prost(uint32, repeated, tag = "12")] - pub bnhndbnabfn: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub kjfhkicggde: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, repeated, tag = "11")] - pub pmcmecdlemc: ::prost::alloc::vec::Vec, - /// offset: 80 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub dplkbeehplb: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, repeated, tag = "3")] - pub aagihkbfmfi: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, repeated, tag = "9")] - pub kmoadeogapa: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, repeated, tag = "10")] - pub inihlancnfi: ::prost::alloc::vec::Vec, -} -/// Obf: ACOPFJAGDAN -#[derive(proto_derive::CmdID)] -#[cmdid(6798)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooBornCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub hdcbacooind: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub lheonphgbnb: u32, -} -/// Obf: GMDMLBNDCAD -#[derive(proto_derive::CmdID)] -#[cmdid(6765)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooBornScRsp { - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub goeaofnfjod: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(bool, tag = "10")] - pub iklpncgbppc: bool, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub kpkdhghdgnb: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub retcode: u32, -} -/// Obf: CLGEJEGDOHO -#[derive(proto_derive::CmdID)] -#[cmdid(6783)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SpaceZooMutateCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub unique_id: u32, - /// offset: 28 - #[prost(uint32, tag = "15")] - pub item_id: u32, -} -/// Obf: CCFOFENAHCA -#[derive(proto_derive::CmdID)] -#[cmdid(6786)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooMutateScRsp { - /// offset: 40 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "6")] - pub goeaofnfjod: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(bool, tag = "9")] - pub iklpncgbppc: bool, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub eflcmhmajal: ::core::option::Option, -} -/// Obf: KFIBELFOHCF -#[derive(proto_derive::CmdID)] -#[cmdid(6794)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SpaceZooOpCatteryCsReq { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub algeienioan: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub nileedjlgin: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub op_type: u32, -} -/// Obf: HHPGBIFODOJ -#[derive(proto_derive::CmdID)] -#[cmdid(6752)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooOpCatteryScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub kjfhkicggde: ::prost::alloc::vec::Vec, -} -/// Obf: KHBDFDGDLLK -#[derive(proto_derive::CmdID)] -#[cmdid(6719)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooDeleteCatCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub dejaooebbha: ::prost::alloc::vec::Vec, -} -/// Obf: CAINCJCDALE -#[derive(proto_derive::CmdID)] -#[cmdid(6744)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooDeleteCatScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "8")] - pub nfheagelici: ::prost::alloc::vec::Vec, -} -/// Obf: JPAKGAEBCFG -#[derive(proto_derive::CmdID)] -#[cmdid(6781)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooCatUpdateNotify { - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub aikmbppnokd: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(bool, tag = "4")] - pub fpmncagjebg: bool, - /// offset: 33 - #[prost(bool, tag = "7")] - pub iklpncgbppc: bool, -} -/// Obf: LCLIHAJNNDF -#[derive(proto_derive::CmdID)] -#[cmdid(6769)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SpaceZooExchangeItemCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub item_id: u32, -} -/// Obf: EHMCHGFLGGO -#[derive(proto_derive::CmdID)] -#[cmdid(6757)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SpaceZooExchangeItemScRsp { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: HBFKBBBEHGJ -#[derive(proto_derive::CmdID)] -#[cmdid(6715)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SpaceZooTakeCsReq { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub hlnmajidifd: u32, -} -/// Obf: JJNKPICGLPG -#[derive(proto_derive::CmdID)] -#[cmdid(6792)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SpaceZooTakeScRsp { - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub reward: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "13")] - pub hlnmajidifd: u32, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StarFightData { - /// offset: 24 - #[prost(bool, tag = "4")] - pub acelagjphma: bool, - /// offset: 40 - #[prost(uint32, tag = "5")] - pub mpaecapoheo: u32, /// offset: 32 #[prost(uint32, tag = "3")] - pub ifangmhnkbb: u32, + pub level: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub shop_id: u32, /// offset: 36 - #[prost(uint32, tag = "1")] - pub group_id: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub cbindiaamjg: u32, + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub reward: ::core::option::Option, } -/// Obf: HECAEIHOCCE +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(7166)] +#[cmdid(1589)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetStarFightDataCsReq {} -/// Obf: HOLCFKIOBGN +pub struct CityShopInfoScNotify { + /// offset: 36 + #[prost(uint32, tag = "9")] + pub shop_id: u32, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub exp: u32, + /// offset: 24 + #[prost(uint64, tag = "10")] + pub taken_level_reward: u64, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Njhgjicokjd { + /// offset: 52 + #[prost(uint32, tag = "12")] + pub fmahffahgpb: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub item_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub eedepibbkpe: u32, + /// offset: 44 + #[prost(bool, tag = "8")] + pub hgdefhibgbf: bool, + /// offset: 48 + #[prost(uint32, tag = "10")] + pub unique_id: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub plnkdmahglc: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cjlffcehoao { + /// offset: 28 + #[prost(uint32, tag = "10")] + pub joeanebolgi: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub eedepibbkpe: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6747)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kjieokefpaf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6709)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mfpfdokciph { + /// offset: 56 + #[prost(uint32, repeated, tag = "8")] + pub eckpokgokpl: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 40 + #[prost(message, repeated, tag = "3")] + pub hnbfmchamnp: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "10")] + pub lkakinchapo: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub oceefnfdjnd: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(uint32, tag = "7")] + pub koijhpccppc: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "14")] + pub ckhdiggbiil: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, repeated, tag = "1")] + pub nhkonofnejg: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "9")] + pub gdglhpppeda: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6738)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nfelmocjcmm { + /// offset: 16 + #[prost(uint32, repeated, tag = "13")] + pub njokpjclijb: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub gnplgbkcggj: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6717)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ohhpboejllc { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub aemdcenambm: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "10")] + pub dekhekcjcjl: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 40 + #[prost(bool, tag = "12")] + pub nmmbfdclceg: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6751)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Piamjehgghh { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub item_id: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] + pub unique_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6711)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kfndbfaemjn { + /// offset: 40 + #[prost(uint32, tag = "7")] + pub retcode: u32, + /// offset: 44 + #[prost(bool, tag = "11")] + pub nmmbfdclceg: bool, + /// offset: 32 + #[prost(message, repeated, tag = "10")] + pub dekhekcjcjl: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub eohdljcaglc: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6789)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oghnacamiec { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub lijfodkonaa: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub kjfiihobcdd: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub op_type: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6720)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dagiojobgee { + /// offset: 24 + #[prost(uint32, repeated, tag = "2")] + pub gdglhpppeda: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6795)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pfliednigpa { + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub acgfnomdpda: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6791)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gbbmkcnjbom { + /// offset: 24 + #[prost(uint32, repeated, tag = "15")] + pub ehnehcfbgpm: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6761)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ljaekbdjjfm { + /// offset: 32 + #[prost(bool, tag = "11")] + pub llidnnjjcpn: bool, + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub kojmagkklpi: ::prost::alloc::vec::Vec, + /// offset: 33 + #[prost(bool, tag = "2")] + pub nmmbfdclceg: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6745)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mibimkepcme { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub item_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6776)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dnbhcgkjkah { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub item_id: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6752)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Egocfonobkf { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub iieplklmbeg: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6750)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lophalhndhf { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub iieplklmbeg: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub reward: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cbfmbnllanm { + /// offset: 40 + #[prost(uint32, tag = "2")] + pub ecigkijonlm: u32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub group_id: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub molgjfikcka: u32, + /// offset: 28 + #[prost(bool, tag = "6")] + pub oboccdfimmb: bool, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub mdiifgfjioh: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7162)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gphfmakampg {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7167)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetStarFightDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 +pub struct Kcnpmhjghnm { + /// offset: 16 #[prost(message, repeated, tag = "14")] - pub star_fight_data_list: ::prost::alloc::vec::Vec, + pub pgjpadlghan: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StarFightAvatar { +pub struct Noiojedakma { /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "1")] - pub avatar_type: i32, - /// offset: 24 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "2")] pub avatar_id: u32, + /// offset: 24 + #[prost(enumeration = "AvatarType", tag = "4")] + pub avatar_type: i32, } -/// Obf: JDOLCCABFOH -#[derive(proto_derive::CmdID)] -#[cmdid(7164)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartStarFightLevelCsReq { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub difficulty: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub group_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub avatar_list: ::prost::alloc::vec::Vec, -} -/// Obf: BCOKPHCMNOH -#[derive(proto_derive::CmdID)] -#[cmdid(7169)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartStarFightLevelScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub group_id: u32, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 36 - #[prost(uint32, tag = "5")] - pub difficulty: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub battle_info: ::core::option::Option, -} -/// Obf: AHCKMCCDIIJ +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7170)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StarFightDataChangeNotify { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub star_fight_data: ::core::option::Option, +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fjmdlcbmmfj { + /// offset: 36 + #[prost(uint32, tag = "2")] + pub group_id: u32, /// offset: 32 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "9")] + pub dnpoppiklml: u32, + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub avatar_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7161)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dolbdknmmel { + /// offset: 40 + #[prost(uint32, tag = "1")] + pub dnpoppiklml: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub battle_info: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "13")] pub group_id: u32, } -/// Obf: NPHIJIJDPHC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6299)] +#[cmdid(7163)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gpbiagaokkb { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub group_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub gkcgnclbiom: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6247)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetStoryLineInfoCsReq {} -/// Obf: KCBPBDJNPEG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6223)] +#[cmdid(6209)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetStoryLineInfoScRsp { /// offset: 40 - #[prost(uint32, tag = "3")] - pub glhflieimjk: u32, - /// offset: 32 - #[prost(uint32, repeated, tag = "10")] - pub fmihhbhfhoa: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "5")] + pub cur_story_line_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub unfinished_story_line_id_list: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(uint32, repeated, tag = "2")] + #[prost(uint32, repeated, tag = "9")] pub trial_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "8")] pub retcode: u32, } -/// Obf: CPDNCFCHAJG +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6298)] +#[cmdid(6238)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StoryLineInfoScNotify { - /// offset: 40 - #[prost(uint32, tag = "8")] - pub fimcejgdagf: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "1")] - pub fmihhbhfhoa: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, repeated, tag = "4")] - pub trial_avatar_id_list: ::prost::alloc::vec::Vec, /// offset: 44 - #[prost(uint32, tag = "2")] - pub glhflieimjk: u32, + #[prost(uint32, tag = "8")] + pub cur_story_line_id: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub ejfebimbmbk: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "5")] + pub trial_avatar_id_list: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "6")] + pub unfinished_story_line_id_list: ::prost::alloc::vec::Vec, } -/// Obf: MDOGEPCPFJO +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6286)] +#[cmdid(6211)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct ChangeStoryLineFinishScNotify { - /// offset: 36 - #[prost(enumeration = "Amjocdiaphf", tag = "7")] + /// offset: 32 + #[prost(bool, tag = "2")] + pub dmkdeemdeho: bool, + /// offset: 24 + #[prost(enumeration = "ChangeStoryLineAction", tag = "11")] pub action: i32, /// offset: 28 - #[prost(bool, tag = "12")] - pub koocceighma: bool, - /// offset: 24 + #[prost(uint32, tag = "15")] + pub pemnjcnmlnf: u32, + /// offset: 36 #[prost(uint32, tag = "13")] - pub kidkhjecjlf: u32, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub glhflieimjk: u32, + pub cur_story_line_id: u32, } -/// Obf: POOIBGCAMCD +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6294)] +#[cmdid(6289)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct StoryLineTrialAvatarChangeScNotify { - /// offset: 40 - #[prost(bool, tag = "12")] - pub cliigmnmhna: bool, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub iblbnianphd: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(uint32, repeated, tag = "13")] - pub kfmffggjmne: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "1")] + pub agmcnbihkhf: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(bool, tag = "3")] + pub mdalnnmnmjj: bool, + /// offset: 32 + #[prost(uint32, repeated, tag = "11")] + pub nnlfnpmfdjh: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct StrongChallengeAvatar { /// offset: 28 - #[prost(enumeration = "AvatarType", tag = "14")] - pub avatar_type: i32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub avatar_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jpfjgfopkhb { - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub avatar_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Caaakpfoeji { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub stage_id: u32, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub stage_score: u32, - /// offset: 40 #[prost(uint32, tag = "2")] - pub jgbainfdban: u32, + pub avatar_id: u32, /// offset: 24 - #[prost(message, optional, tag = "7")] - pub ahinpckgkjg: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "10")] - pub module_id: u32, + #[prost(enumeration = "AvatarType", tag = "4")] + pub avatar_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hlkgcnfccia { - /// offset: 16 - #[prost(map = "uint32, message", tag = "6")] - pub alcedmlhflm: ::std::collections::HashMap, -} -/// Obf: DCIGBDPOOCP -#[derive(proto_derive::CmdID)] -#[cmdid(6699)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetStrongChallengeActivityDataCsReq {} -/// Obf: OPFOLDIBJPE -#[derive(proto_derive::CmdID)] -#[cmdid(6623)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetStrongChallengeActivityDataScRsp { +pub struct Fnedgiiphcd { + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, repeated, tag = "9")] + pub buff_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Chjjpdagbio { + /// offset: 40 + #[prost(uint32, tag = "9")] + pub max_score: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub lallhgjgfdm: u32, + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub ohilebggjpp: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub stage_id: u32, + /// offset: 44 + #[prost(uint32, tag = "15")] + pub panel_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hhaibojdkhl { + /// offset: 24 + #[prost(map = "uint32, message", tag = "5")] + pub nahcjadbafe: ::std::collections::HashMap, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6647)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jeehlbcgfjk {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6609)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lhbcegefiac { + /// offset: 32 + #[prost(uint32, tag = "15")] pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "1")] - pub giilgffkhda: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub mjogpmflmip: ::core::option::Option, } -/// Obf: AMMBLGICEAI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6698)] +#[cmdid(6638)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterStrongChallengeActivityStageCsReq { +pub struct Maffbcdoiem { /// offset: 24 - #[prost(message, repeated, tag = "3")] + #[prost(message, repeated, tag = "11")] pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "14")] - pub stage_id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "8")] - pub buff_list: ::prost::alloc::vec::Vec, -} -/// Obf: PAPOJHEABLF -#[derive(proto_derive::CmdID)] -#[cmdid(6665)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterStrongChallengeActivityStageScRsp { /// offset: 32 - #[prost(uint32, tag = "11")] + #[prost(uint32, repeated, tag = "6")] + pub buff_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "15")] pub stage_id: u32, - /// offset: 36 +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6617)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lfdjeiekicl { + /// offset: 32 #[prost(uint32, tag = "13")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "1")] + /// offset: 36 + #[prost(uint32, tag = "2")] + pub stage_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "9")] pub battle_info: ::core::option::Option, } -/// Obf: BHOPHDIKNHE +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(6683)] +#[cmdid(6651)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StrongChallengeActivityBattleEndScNotify { - /// offset: 44 - #[prost(uint32, tag = "14")] - pub stage_score: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub jamlokncakc: u32, +pub struct Cdiedodahdo { /// offset: 52 - #[prost(uint32, tag = "4")] - pub ggbecchphcd: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub stage_id: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub score: u32, - /// offset: 48 - #[prost(uint32, tag = "2")] - pub ahjfpngdbdo: u32, /// offset: 40 - #[prost(enumeration = "BattleEndStatus", tag = "11")] + #[prost(uint32, tag = "3")] + pub total_damage: u32, + /// offset: 36 + #[prost(uint32, tag = "10")] + pub ckamnjcdpgl: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub max_score: u32, + /// offset: 44 + #[prost(enumeration = "BattleEndStatus", tag = "6")] pub end_status: i32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub djcknoeoeek: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub kbdccnjplhp: u32, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub score_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lfhdakemlfg { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub group_id: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub dnpoppiklml: u32, /// offset: 28 #[prost(uint32, tag = "12")] - pub total_damage: u32, + pub star: u32, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(7562)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pgbhmolfbmm { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub difficulty: u32, - /// offset: 24 - #[prost(uint32, tag = "11")] - pub stars: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub group_id: u32, -} -/// Obf: POPIFPMLMAN -#[derive(proto_derive::CmdID)] -#[cmdid(7566)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetSummonActivityDataCsReq {} -/// Obf: LCDFPJKEPCN +pub struct Geklgploboe {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7567)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSummonActivityDataScRsp { - /// offset: 24 - #[prost(message, repeated, tag = "15")] - pub jhomkemcdmg: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "1")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Onoeplfnell { - /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "5")] - pub avatar_type: i32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub avatar_id: u32, -} -/// Obf: FCLMMIMNEKI -#[derive(proto_derive::CmdID)] -#[cmdid(7564)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterSummonActivityStageCsReq { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub mnoedeclhbj: ::core::option::Option, - /// offset: 44 - #[prost(uint32, tag = "14")] - pub group_id: u32, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub difficulty: u32, - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub avatar_list: ::prost::alloc::vec::Vec, -} -/// Obf: HBHJHHOBNDN -#[derive(proto_derive::CmdID)] -#[cmdid(7569)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterSummonActivityStageScRsp { - /// offset: 36 - #[prost(uint32, tag = "8")] - pub group_id: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub battle_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub difficulty: u32, -} -/// Obf: FNGLNJJJJGI -#[derive(proto_derive::CmdID)] -#[cmdid(7570)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SummonActivityBattleEndScNotify { - /// offset: 36 - #[prost(uint32, tag = "9")] - pub difficulty: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub group_id: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub hmffhgbkogl: u32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub stars: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fpppjcpijjf { - /// offset: 44 - #[prost(uint32, tag = "8")] - pub mcbiohmimgn: u32, - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub ofolpkmalgi: ::core::option::Option, - /// offset: 16 - #[prost(bytes = "vec", tag = "3")] - pub mjnnblcdcbj: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(uint32, tag = "1")] - pub gfjiiabanlm: u32, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub config_id: u32, -} -/// Obf: KOENHFBKMIH -#[derive(proto_derive::CmdID)] -#[cmdid(8107)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchHandDataCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub config_id: u32, -} -/// Obf: EGGGCFAPAHG -#[derive(proto_derive::CmdID)] -#[cmdid(8101)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwitchHandDataScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub abojjandfno: u32, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub dlnghhdmjjm: u32, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub retcode: u32, +pub struct Nfkannmmpeh { /// offset: 24 #[prost(message, repeated, tag = "12")] - pub lbomdfhffcf: ::prost::alloc::vec::Vec, + pub maokkopfemn: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, } -/// Obf: FFCCFLLHHMC +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Idbmmlpphgp { + /// offset: 28 + #[prost(enumeration = "AvatarType", tag = "4")] + pub avatar_type: i32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub avatar_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7570)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Icibmijkhak { + /// offset: 44 + #[prost(uint32, tag = "10")] + pub dnpoppiklml: u32, + /// offset: 32 + #[prost(message, optional, tag = "6")] + pub iehmecgcncn: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub group_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub avatar_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7561)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ghejnpkmhcp { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub battle_info: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub dnpoppiklml: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "11")] + pub group_id: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7563)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bpippbjbfbe { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub hgcahiekmjb: u32, + /// offset: 36 + #[prost(uint32, tag = "9")] + pub group_id: u32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub dnpoppiklml: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub star: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ohilhlopgln { + /// offset: 48 + #[prost(uint32, tag = "7")] + pub config_id: u32, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub gjongbjclil: u32, + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub oabjknadmla: ::core::option::Option, + /// offset: 16 + #[prost(bytes = "vec", tag = "9")] + pub dafakiliica: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "2")] + pub hnoeholmkpn: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8113)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchHandStartCsReq { +pub struct Adkenkpekpl { /// offset: 24 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "4")] pub config_id: u32, } -/// Obf: POGCIOCHLCF -#[derive(proto_derive::CmdID)] -#[cmdid(8119)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchHandStartScRsp { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub config_id: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: JAMMDOJMEPN -#[derive(proto_derive::CmdID)] -#[cmdid(8103)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchHandFinishCsReq {} -/// Obf: HOHCGKAGLIP -#[derive(proto_derive::CmdID)] -#[cmdid(8115)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwitchHandFinishScRsp { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub cmfmacmipee: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pmgecpbkjcj { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub iefmadjgadb: u32, - /// offset: 28 - #[prost(uint32, tag = "9")] - pub group_id: u32, - /// offset: 36 - #[prost(uint32, tag = "15")] - pub kdlpeighjak: u32, - /// offset: 32 - #[prost(enumeration = "Leglgdjopkc", tag = "4")] - pub op_type: i32, -} -/// Obf: MAHJCOPDGDM -#[derive(proto_derive::CmdID)] -#[cmdid(8108)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwitchHandUpdateCsReq { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub clbmgbfanlc: ::core::option::Option, - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub opbhjagoagg: ::core::option::Option, -} -/// Obf: CGAJJADDPCI -#[derive(proto_derive::CmdID)] -#[cmdid(8111)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwitchHandUpdateScRsp { - /// offset: 32 - #[prost(message, optional, tag = "3")] - pub cmfmacmipee: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub clbmgbfanlc: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -/// Obf: MMANBFNCBDO -#[derive(proto_derive::CmdID)] -#[cmdid(8110)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchHandCoinUpdateCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub mcbiohmimgn: u32, -} -/// Obf: BBKEFFCLBML -#[derive(proto_derive::CmdID)] -#[cmdid(8116)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchHandCoinUpdateScRsp { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub mcbiohmimgn: u32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub retcode: u32, -} -/// Obf: DKPOABHCEAK -#[derive(proto_derive::CmdID)] -#[cmdid(8118)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwitchHandResetHandPosCsReq { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub ofolpkmalgi: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub config_id: u32, -} -/// Obf: CNFOMDLCLMB +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8106)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwitchHandResetHandPosScRsp { +pub struct Hdgjgjgcapb { /// offset: 24 - #[prost(message, optional, tag = "4")] - pub lbomdfhffcf: ::core::option::Option, + #[prost(message, repeated, tag = "3")] + pub elkbjcgabpp: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub nncfheaodjo: u32, /// offset: 32 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub kdbafehikeg: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8109)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gdlidfpkefn { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub config_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8105)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Najnnijnaho { + /// offset: 28 #[prost(uint32, tag = "5")] + pub config_id: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] pub retcode: u32, } -/// Obf: DBLBNBLLGLN +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8114)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gcpcnflcljj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8104)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwitchHandResetGameCsReq { +pub struct Ejpmlfbnijl { + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, /// offset: 24 - #[prost(message, optional, tag = "13")] - pub dpjncbbohke: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub kpfbnhiimkk: ::core::option::Option, } -/// Obf: DLHEAHANALL +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fnhlofiicoe { + /// offset: 36 + #[prost(uint32, tag = "15")] + pub ncmagmleehd: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub group_id: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub jbblkgdfngh: u32, + /// offset: 28 + #[prost(enumeration = "Kkkjgmbcbgp", tag = "13")] + pub op_type: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8103)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hecmlpgbpep { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub flkfhlfgpac: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub enkfgglckfo: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8117)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mdbhikbgfae { + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub flkfhlfgpac: ::core::option::Option, + /// offset: 32 + #[prost(message, optional, tag = "9")] + pub kpfbnhiimkk: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8112)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Agkhkdaebll { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub hnoeholmkpn: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8101)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Egnajnknggg { + /// offset: 28 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub hnoeholmkpn: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8110)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Apcoifhmlgj { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub oabjknadmla: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub config_id: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8120)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwitchHandResetGameScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "7")] - pub lbomdfhffcf: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Alefdnllklb { - /// offset: 80 - #[prost(uint32, tag = "1")] - pub eenjbpmndol: u32, - /// offset: 40 - #[prost(message, optional, tag = "9")] - pub skill_info: ::core::option::Option, - /// offset: 64 +pub struct Dakjibfcikd { + /// offset: 16 #[prost(message, optional, tag = "6")] - pub kndmeilhkej: ::core::option::Option, + pub elkbjcgabpp: ::core::option::Option, /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub fdeigepccbp: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(message, optional, tag = "12")] - pub nncjoeckcka: ::core::option::Option, - /// offset: 56 - #[prost(message, optional, tag = "2")] - pub gbeabimobic: ::core::option::Option, - /// offset: 48 - #[prost(message, optional, tag = "14")] - pub afpdjdkneni: ::core::option::Option, + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8107)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jdnlhlgkaba { + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub cpibiclgebl: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8115)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dekbekidnkl { /// offset: 24 #[prost(message, optional, tag = "3")] - pub ljgcpnogifo: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gjbniiinkfb { + pub elkbjcgabpp: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "10")] - pub mcegaibnmgb: u32, - /// offset: 36 - #[prost(uint32, tag = "12")] - pub bilegelkmcb: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub cckhkbnmapn: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pgggcfbkdpk { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub game_story_line_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub cnbckefnfge: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mmoibacbpka { - /// offset: 28 - #[prost(uint32, tag = "3")] - pub value: u32, - /// offset: 24 - #[prost(enumeration = "Hdijjmdpile", tag = "4")] - pub pjgbfknjpno: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bppmeigahgi { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub pdmdkapcojm: u32, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub migfmpjbelg: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub iomgdikelia: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Leehjgnbgnk { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub hbapccegnme: u32, - /// offset: 24 - #[prost(uint32, tag = "6")] - pub level: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ocbolhfoigi { - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub fmdkhadmcoc: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dmjlkifemmn { - /// offset: 32 - #[prost(uint32, tag = "265")] - pub ighlabggije: u32, - #[prost(oneof = "dmjlkifemmn::Info", tags = "9, 1")] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `DMJLKIFEMMN`. -pub mod dmjlkifemmn { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 24 - #[prost(message, tag = "9")] - Gaibhjhdohb(super::Klinpbnkiia), - /// offset: 24 - #[prost(message, tag = "1")] - Kpjafbcpegi(super::Pbmkkicmlda), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Piibojcejjn { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub gimlndloffa: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] - pub colbgejelgi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Klinpbnkiia { - /// offset: 40 - #[prost(enumeration = "Bjncdefeeji", tag = "2")] - pub ccljmnckecp: i32, - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub dncbpcenkif: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub eijdeopofnb: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pbmkkicmlda { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub fhbomfblgpd: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jkmfmmpmnam { - #[prost(oneof = "jkmfmmpmnam::Info", tags = "10, 8, 6, 3, 5, 4, 7, 13")] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `JKMFMMPMNAM`. -pub mod jkmfmmpmnam { - #[derive(proto_derive::CmdID)] - #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 24 - #[prost(message, tag = "10")] - Kangpcokfne(super::Dpdiegoagbp), - /// offset: 24 - #[prost(message, tag = "8")] - Hhcifnfmkla(super::Fpegpjceoei), - /// offset: 24 - #[prost(message, tag = "6")] - Ocgplmnkmlk(super::Fkhfonpkdip), - /// offset: 24 - #[prost(message, tag = "3")] - Akmnkladolm(super::Aejccmeplgo), - /// offset: 24 - #[prost(message, tag = "5")] - Kkddandlfbd(super::Nigcopghamj), - /// offset: 24 - #[prost(message, tag = "4")] - Affnconkekp(super::Khphaifnjei), - /// offset: 24 - #[prost(message, tag = "7")] - Cnibngjdnjp(super::Plodidcjoka), - /// offset: 24 - #[prost(message, tag = "13")] - Oapmklfjkkg(super::Khcakpomgnk), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Dpdiegoagbp {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fpegpjceoei {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fkhfonpkdip { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub dgaklnofdpp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Aejccmeplgo {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nigcopghamj { - /// offset: 28 - #[prost(uint32, tag = "9")] - pub bglehmkmapg: u32, - /// offset: 24 - #[prost(bool, tag = "11")] - pub hhgapdfindi: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Khphaifnjei {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Plodidcjoka {} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Khcakpomgnk { - /// offset: 28 - #[prost(bool, tag = "14")] - pub mmkijaemnbl: bool, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub bglehmkmapg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Omojdeifdam { - /// offset: 32 - #[prost(enumeration = "Pkhjbpmibba", tag = "13")] - pub source: i32, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub pbhmgchkjgo: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cghkidbjhfh { - #[prost( - oneof = "cghkidbjhfh::Info", - tags = "4, 13, 6, 8, 5, 11, 10, 14, 1706, 1525, 1576, 210" - )] - pub info: ::core::option::Option, -} -/// Nested message and enum types in `CGHKIDBJHFH`. -pub mod cghkidbjhfh { - #[derive(proto_derive::CmdID)] - #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Info { - /// offset: 16 - #[prost(message, tag = "4")] - Pjabkifdnnd(super::Nlcalklpgog), - /// offset: 16 - #[prost(message, tag = "13")] - Nihifemokam(super::Ojlehppjbbc), - /// offset: 16 - #[prost(message, tag = "6")] - Mlcgalihaip(super::Ojlehppjbbc), - /// offset: 16 - #[prost(message, tag = "8")] - Bidddnipble(super::Ocjgnpifobm), - /// offset: 16 - #[prost(message, tag = "5")] - Dijhpehonok(super::Nmenkignbca), - /// offset: 16 - #[prost(message, tag = "11")] - Edhbkecgoli(super::Nigcopghamj), - /// offset: 16 - #[prost(message, tag = "10")] - Mfhbhkimdca(super::Hjkdngihmaa), - /// offset: 16 - #[prost(uint32, tag = "14")] - Npfpajlclnn(u32), - /// offset: 16 - #[prost(uint32, tag = "1706")] - Iomgdikelia(u32), - /// offset: 16 - #[prost(message, tag = "1525")] - Gkahdhelild(super::Khcakpomgnk), - /// offset: 16 - #[prost(message, tag = "1576")] - Gnpeameljdj(super::Khphaifnjei), - /// offset: 16 - #[prost(uint32, tag = "210")] - Cbakihcdenp(u32), - } -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hjkdngihmaa { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub dgaklnofdpp: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nlcalklpgog { - /// offset: 24 - #[prost(enumeration = "Hdijjmdpile", tag = "14")] - pub pjgbfknjpno: i32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub ogjofmcmfpg: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub bmalpkekbel: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ojlehppjbbc { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub bmalpkekbel: u32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub ogjofmcmfpg: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ocjgnpifobm { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub level: u32, - /// offset: 24 #[prost(uint32, tag = "14")] - pub gffbdandhmk: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] - pub hbapccegnme: u32, + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nmenkignbca { +pub struct Eabjohdglem { + /// offset: 64 + #[prost(message, optional, tag = "9")] + pub ggmkcbllnhn: ::core::option::Option, + /// offset: 32 + #[prost(uint32, repeated, tag = "7")] + pub jpcjjedolkl: ::prost::alloc::vec::Vec, /// offset: 16 - #[prost(message, optional, tag = "13")] - pub ifnmbngifph: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub fnjakbfmcgf: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "14")] + pub skill_info: ::core::option::Option, + /// offset: 72 + #[prost(message, optional, tag = "8")] + pub pjecglkokce: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub acddccngfbg: ::core::option::Option, + /// offset: 48 + #[prost(message, optional, tag = "11")] + pub gclekilecbi: ::core::option::Option, + /// offset: 80 + #[prost(uint32, tag = "1")] + pub flemdligbkg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pcmppnjimnf { + /// offset: 36 + #[prost(uint32, tag = "4")] + pub nicenfjnong: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "1")] + pub mjgopbamhip: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub fmlkeccmmdh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dndklenphhf { + /// offset: 24 + #[prost(uint32, repeated, tag = "8")] + pub jllijappfib: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "3")] + pub game_story_line_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aabpelknkcd { + /// offset: 24 + #[prost(enumeration = "Pfgnkjdlfna", tag = "5")] + pub bcdchnedgli: i32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub value: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Emidnohojad { /// offset: 32 #[prost(uint32, tag = "7")] - pub eenjbpmndol: u32, + pub mahafbhaplm: u32, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub bclnaihpacp: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub klpaljiefel: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fgpbibijcoh { +pub struct Obpgnnmahbp { /// offset: 24 - #[prost(bool, tag = "2")] - pub hhgapdfindi: bool, + #[prost(uint32, tag = "8")] + pub queue_position: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ajkigejdopo { + /// offset: 24 + #[prost(message, repeated, tag = "6")] + pub cnlipfjgcec: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kkppbcocdee { + /// offset: 32 + #[prost(uint32, tag = "446")] + pub ecjhiddjfpj: u32, + #[prost(oneof = "kkppbcocdee::Mlneddhojgc", tags = "12, 3")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `KKPPBCOCDEE`. +pub mod kkppbcocdee { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 24 + #[prost(message, tag = "12")] + Kofpfdfdilc(super::Fkflljgddbo), + /// offset: 24 + #[prost(message, tag = "3")] + Klkegifddnf(super::Plgkdelajgm), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kdcdjcjbnki { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub daily_index: u32, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub idpihbafelk: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fkflljgddbo { + /// offset: 40 + #[prost(enumeration = "Bjmbjngaefi", tag = "15")] + pub lmbpnmkfgjf: i32, + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub ohbpjjidann: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub agilnmacahl: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Plgkdelajgm { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub kjlhbkokmli: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fpjhheclemf { + #[prost(oneof = "fpjhheclemf::Mlneddhojgc", tags = "12, 4, 15, 1, 11, 7, 2, 5")] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `FPJHHECLEMF`. +pub mod fpjhheclemf { + #[derive(proto_derive::CmdID)] + #[derive(Clone, Copy, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "12")] + Lihgipljhbl(super::Icgijppnjmc), + /// offset: 16 + #[prost(message, tag = "4")] + Aoafennajjf(super::Boekdodomam), + /// offset: 16 + #[prost(message, tag = "15")] + Bchklgifekh(super::Lginepbjpim), + /// offset: 16 + #[prost(message, tag = "1")] + Mcfbggdahmp(super::Gfgdfbdilao), + /// offset: 16 + #[prost(message, tag = "11")] + Kidioaddnpl(super::Bgkkcopjeln), + /// offset: 16 + #[prost(message, tag = "7")] + Pkimpfhiedl(super::Kbgkoldlcdn), + /// offset: 16 + #[prost(message, tag = "2")] + Cocckbjknnh(super::Gamjigobpif), + /// offset: 16 + #[prost(message, tag = "5")] + Hnpdfiigmnj(super::Nhicipbacol), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Icgijppnjmc {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Boekdodomam {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lginepbjpim { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub dialogue_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gfgdfbdilao {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bgkkcopjeln { /// offset: 28 #[prost(uint32, tag = "9")] - pub bglehmkmapg: u32, -} -/// Obf: ELFHACGFJLA -#[derive(proto_derive::CmdID)] -#[cmdid(7476)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingGameSyncChangeScNotify { + pub haaljlgenhg: u32, /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub leadmneimdp: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "8")] + pub eghodlhjifm: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hdfkpeebgen { +pub struct Kbgkoldlcdn {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gamjigobpif {} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nhicipbacol { + /// offset: 24 + #[prost(bool, tag = "7")] + pub ohcnokbbghj: bool, /// offset: 28 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "12")] + pub haaljlgenhg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kpcmepmmjbp { + /// offset: 32 + #[prost(enumeration = "Bagpjfogcge", tag = "8")] + pub source: i32, + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub jmbfiljlcef: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hniedbiffpe { + #[prost( + oneof = "hniedbiffpe::Mlneddhojgc", + tags = "3, 14, 4, 5, 15, 9, 6, 2, 1537, 1106, 1883, 726" + )] + pub mlneddhojgc: ::core::option::Option, +} +/// Nested message and enum types in `HNIEDBIFFPE`. +pub mod hniedbiffpe { + #[derive(proto_derive::CmdID)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Mlneddhojgc { + /// offset: 16 + #[prost(message, tag = "3")] + Ohlehhncncb(super::Jlajhiooenj), + /// offset: 16 + #[prost(message, tag = "14")] + Dakdaafglle(super::Fldhimabfcl), + /// offset: 16 + #[prost(message, tag = "4")] + Hdoledbbleh(super::Fldhimabfcl), + /// offset: 16 + #[prost(message, tag = "5")] + Daagljpljae(super::Cnkdkaldhfd), + /// offset: 16 + #[prost(message, tag = "15")] + Blamkoekjhe(super::Ligajfmgecc), + /// offset: 16 + #[prost(message, tag = "9")] + Ddcacpgopmm(super::Bgkkcopjeln), + /// offset: 16 + #[prost(message, tag = "6")] + Jgjemljegic(super::Hkekenfgdll), + /// offset: 16 + #[prost(uint32, tag = "2")] + Ndbampjghmh(u32), + /// offset: 16 + #[prost(uint32, tag = "1537")] + Klpaljiefel(u32), + /// offset: 16 + #[prost(message, tag = "1106")] + Jhbbhfhpicf(super::Nhicipbacol), + /// offset: 16 + #[prost(message, tag = "1883")] + Pioomgackkf(super::Kbgkoldlcdn), + /// offset: 16 + #[prost(uint32, tag = "726")] + Ihklfbadopp(u32), + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hkekenfgdll { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub dialogue_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jlajhiooenj { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub ohaneeacecm: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub npookjkkedj: u32, + /// offset: 28 + #[prost(enumeration = "Pfgnkjdlfna", tag = "13")] + pub bcdchnedgli: i32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Fldhimabfcl { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub npookjkkedj: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub ohaneeacecm: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cnkdkaldhfd { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub ajkecoaheei: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub queue_position: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ligajfmgecc { + /// offset: 24 + #[prost(message, optional, tag = "3")] + pub gkogedgkibf: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub flemdligbkg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ahdcahdopki { + /// offset: 28 + #[prost(uint32, tag = "3")] + pub haaljlgenhg: u32, + /// offset: 24 + #[prost(bool, tag = "8")] + pub eghodlhjifm: bool, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7469)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Emalgpdkfad { + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub eamakkonfje: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Apnjhhpnojn { + /// offset: 28 + #[prost(uint32, tag = "12")] pub progress: u32, /// offset: 24 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "1")] pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nokodmnohmn { +pub struct Gflbonpiood { /// offset: 32 - #[prost(message, repeated, tag = "10")] - pub nckcmgcbehk: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "9")] + pub plelombggkk: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub onilffenamo: ::prost::alloc::vec::Vec, -} -/// Obf: LHJKEPDFKNE -#[derive(proto_derive::CmdID)] -#[cmdid(7478)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetSwordTrainingDataCsReq {} -/// Obf: KKBLLPIMOFE -#[derive(proto_derive::CmdID)] -#[cmdid(7471)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetSwordTrainingDataScRsp { - /// offset: 40 - #[prost(uint32, repeated, tag = "9")] - pub joefnhggago: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 48 #[prost(uint32, repeated, tag = "15")] - pub fabkphmjghl: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "6")] - pub dchgiodeddk: u32, - /// offset: 56 - #[prost(uint32, repeated, tag = "2")] - pub cnbckefnfge: ::prost::alloc::vec::Vec, - /// offset: 68 - #[prost(bool, tag = "3")] - pub klbpecanfig: bool, - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub kjkbkegighk: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub gajbfpcpigm: ::core::option::Option, + pub poilgkggcne: ::prost::alloc::vec::Vec, } -/// Obf: JJLBIMDBBFO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7488)] +#[cmdid(7452)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Chfoohmjnpo {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7498)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingTurnActionCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub phajehibkfi: ::prost::alloc::vec::Vec, +pub struct Kpikjknmfke { + /// offset: 64 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 72 + #[prost(bool, tag = "15")] + pub ifahfdokfgl: bool, + /// offset: 68 + #[prost(uint32, tag = "13")] + pub ogbaiojnlfh: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "6")] + pub cegbmamioip: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "1")] + pub jllijappfib: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(message, optional, tag = "9")] + pub leaebnaopal: ::core::option::Option, + /// offset: 16 + #[prost(uint32, repeated, tag = "2")] + pub kpeennmligi: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, repeated, tag = "4")] - pub bhnfgpehomo: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "3")] + pub kcjjgmianig: ::core::option::Option, } -/// Obf: KCEGAODICJI +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7455)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingTurnActionScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub bhnfgpehomo: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: FGKECAODGEJ -#[derive(proto_derive::CmdID)] -#[cmdid(7477)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingDailyPhaseConfirmCsReq { - /// offset: 24 - #[prost(enumeration = "Bjncdefeeji", tag = "5")] - pub ifenlnhlbab: i32, -} -/// Obf: PEGEPJMHJIB -#[derive(proto_derive::CmdID)] -#[cmdid(7470)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingDailyPhaseConfirmScRsp { - /// offset: 28 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 24 - #[prost(bool, tag = "11")] - pub mllaefjemcf: bool, -} -/// Obf: LPNMKOBGOGP -#[derive(proto_derive::CmdID)] -#[cmdid(7494)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingDialogueSelectOptionCsReq { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub kdmlllghjon: u32, -} -/// Obf: AOGGAIFEDNB -#[derive(proto_derive::CmdID)] -#[cmdid(7451)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingDialogueSelectOptionScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: CPECMGMHIDJ -#[derive(proto_derive::CmdID)] -#[cmdid(7492)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingExamResultConfirmCsReq {} -/// Obf: BBOJCPFOMIK -#[derive(proto_derive::CmdID)] -#[cmdid(7487)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingExamResultConfirmScRsp { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: PCMEEBKMAHE -#[derive(proto_derive::CmdID)] -#[cmdid(7469)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct EnterSwordTrainingExamCsReq {} -/// Obf: DLMIPAJAPDF -#[derive(proto_derive::CmdID)] -#[cmdid(7497)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterSwordTrainingExamScRsp { +pub struct Jnphkpdloig { /// offset: 16 - #[prost(message, optional, tag = "4")] - pub battle_info: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, + #[prost(uint32, repeated, tag = "7")] + pub lhmbgeomppn: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(uint32, repeated, tag = "12")] + pub hdknkicijog: ::prost::alloc::vec::Vec, } -/// Obf: EAPONEPJPJP +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7485)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cklnhpppahm { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub lhmbgeomppn: ::prost::alloc::vec::Vec, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7483)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingLearnSkillCsReq { +pub struct Jomhcpmbfbb { /// offset: 24 - #[prost(uint32, tag = "6")] - pub skill_id: u32, + #[prost(enumeration = "Bjmbjngaefi", tag = "6")] + pub ajgeliigahp: i32, } -/// Obf: JEADDDHEHND -#[derive(proto_derive::CmdID)] -#[cmdid(7480)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingLearnSkillScRsp { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "13")] - pub skill_id: u32, -} -/// Obf: JIKIHMKJIEO -#[derive(proto_derive::CmdID)] -#[cmdid(7461)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingStartGameCsReq { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub game_story_line_id: u32, -} -/// Obf: MFCGPEOMKJE -#[derive(proto_derive::CmdID)] -#[cmdid(7479)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingStartGameScRsp { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub gajbfpcpigm: ::core::option::Option, -} -/// Obf: LOAPBEMIDAM -#[derive(proto_derive::CmdID)] -#[cmdid(7485)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingStoryConfirmCsReq { - /// offset: 24 - #[prost(uint32, tag = "12")] - pub bglehmkmapg: u32, -} -/// Obf: JENLLNIJOBE -#[derive(proto_derive::CmdID)] -#[cmdid(7462)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingStoryConfirmScRsp { - /// offset: 24 - #[prost(uint32, tag = "3")] - pub retcode: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub bglehmkmapg: u32, -} -/// Obf: JJKIJLKPOKL -#[derive(proto_derive::CmdID)] -#[cmdid(7465)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingGiveUpGameCsReq {} -/// Obf: OEIGKGMBLBG +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7481)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingGiveUpGameScRsp { - /// offset: 24 - #[prost(uint32, tag = "3")] +pub struct Imfeioiejmp { + /// offset: 28 + #[prost(uint32, tag = "12")] pub retcode: u32, -} -/// Obf: DGNDIFJABGO -#[derive(proto_derive::CmdID)] -#[cmdid(7452)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingGameSettleScNotify { /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub ccdchkkmgjf: ::prost::alloc::vec::Vec, - /// offset: 60 - #[prost(uint32, tag = "13")] - pub fpbnipmhanh: u32, - /// offset: 64 - #[prost(uint32, tag = "9")] - pub game_story_line_id: u32, - /// offset: 40 - #[prost(message, optional, tag = "2")] - pub reward: ::core::option::Option, - /// offset: 52 - #[prost(uint32, tag = "7")] - pub ifnmbngifph: u32, - /// offset: 48 - #[prost(uint32, tag = "15")] - pub pigeebckcoo: u32, - /// offset: 56 - #[prost(enumeration = "Hdmkphalalg", tag = "8")] - pub reason: i32, - /// offset: 32 - #[prost(uint32, repeated, tag = "3")] - pub ppimfpoookb: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "3")] + pub jdgibicpank: bool, } -/// Obf: ENFADGFGDBJ -#[derive(proto_derive::CmdID)] -#[cmdid(7484)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingUnlockSyncScNotify { - /// offset: 32 - #[prost(message, repeated, tag = "14")] - pub nckcmgcbehk: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub onilffenamo: ::prost::alloc::vec::Vec, -} -/// Obf: MKHLGDKELHO -#[derive(proto_derive::CmdID)] -#[cmdid(7482)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingSelectEndingCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub decjmbhnnhd: u32, -} -/// Obf: KFLBGENLBFF +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7475)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingSelectEndingScRsp { - /// offset: 28 - #[prost(uint32, tag = "2")] - pub decjmbhnnhd: u32, +pub struct Anmlgadencm { /// offset: 24 #[prost(uint32, tag = "14")] - pub retcode: u32, + pub llhfnkjofma: u32, } -/// Obf: CJHKGENFDCH -#[derive(proto_derive::CmdID)] -#[cmdid(7459)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingRestoreGameCsReq {} -/// Obf: FHBBIAGBEJI -#[derive(proto_derive::CmdID)] -#[cmdid(7472)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingRestoreGameScRsp { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub gajbfpcpigm: ::core::option::Option, -} -/// Obf: CCMJFLHNGGI -#[derive(proto_derive::CmdID)] -#[cmdid(7500)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingStoryBattleCsReq {} -/// Obf: HIOHBJOANDD -#[derive(proto_derive::CmdID)] -#[cmdid(7468)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingStoryBattleScRsp { - /// offset: 32 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub battle_info: ::core::option::Option, -} -/// Obf: OAPHHNLJCHK -#[derive(proto_derive::CmdID)] -#[cmdid(7466)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingActionTurnSettleScNotify { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub mcccnliiibc: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "8")] - pub cgfcmknccdc: u32, -} -/// Obf: NNDFDPAEKJJ +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7496)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingResumeGameCsReq { +pub struct Megedcobmkc { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7480)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cmpcdmfeebh {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7454)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ckiaklcjjlh { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7493)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jladnfeaaei {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7484)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Iponieacfbd { + /// offset: 32 + #[prost(uint32, tag = "2")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub battle_info: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7470)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jalnclccnjg { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub skill_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7457)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nnedjehpiie { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "11")] + pub skill_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7477)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jkmpiabfgio { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub game_story_line_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7460)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Egcmacjokme { + /// offset: 16 + #[prost(message, optional, tag = "11")] + pub leaebnaopal: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7500)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pgginnbanbd { + /// offset: 24 + #[prost(uint32, tag = "3")] + pub haaljlgenhg: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7490)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Egpnagdimbk { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub haaljlgenhg: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7476)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mhjdedopllj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7473)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jifbpghcaff { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7474)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kplbpaoocji { + /// offset: 52 + #[prost(enumeration = "Lmbfmoifefi", tag = "5")] + pub reason: i32, + /// offset: 32 + #[prost(uint32, repeated, tag = "3")] + pub imlkpepenea: ::prost::alloc::vec::Vec, + /// offset: 60 + #[prost(uint32, tag = "15")] + pub gkogedgkibf: u32, + /// offset: 64 + #[prost(uint32, tag = "13")] + pub game_story_line_id: u32, + /// offset: 40 + #[prost(uint32, repeated, tag = "4")] + pub ffmlhbpnfac: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub hffmbjbdnbi: u32, + /// offset: 56 + #[prost(uint32, tag = "1")] + pub fgajfgjcjgd: u32, + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub reward: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7486)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cpjdlakbgaf { + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub plelombggkk: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub poilgkggcne: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7451)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Njkmolikbak { + /// offset: 24 + #[prost(uint32, tag = "4")] + pub cmoaapenemd: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7495)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mbmaokakepa { + /// offset: 28 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub cmoaapenemd: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7479)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Emfhgilaamn {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7494)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pabcomdnkog { + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub leaebnaopal: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7478)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bfgjopmmelh {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7458)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ajbanmkilcg { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(7497)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bcafeplnpgg { + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub apjiioihble: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub nlmpfiikncl: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7456)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gglahphldco { /// offset: 24 #[prost(uint32, tag = "10")] pub game_story_line_id: u32, } -/// Obf: EAFLOMBBLJK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7464)] +#[cmdid(7453)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SwordTrainingResumeGameScRsp { +pub struct Hnmpddelbmp { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, /// offset: 16 #[prost(message, optional, tag = "15")] - pub gajbfpcpigm: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub retcode: u32, + pub leaebnaopal: ::core::option::Option, } -/// Obf: OODJIEAHFBF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7474)] +#[cmdid(7491)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingSetSkillTraceCsReq { +pub struct Elacojoebmc { /// offset: 24 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "11")] pub skill_id: u32, } -/// Obf: EFPCOKHFFLP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(7460)] +#[cmdid(7487)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingSetSkillTraceScRsp { - /// offset: 28 - #[prost(uint32, tag = "5")] - pub skill_id: u32, +pub struct Dfchacfiocp { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "11")] + pub retcode: u32, + /// offset: 28 + #[prost(uint32, tag = "14")] + pub skill_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7471)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lokdbdkfnjf {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7482)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pcgebnillme { + /// offset: 24 + #[prost(uint32, tag = "13")] pub retcode: u32, } -/// Obf: KPMHLMPAFHH #[derive(proto_derive::CmdID)] -#[cmdid(7489)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingMarkEndingViewedCsReq {} -/// Obf: FDMEPFLFBKM -#[derive(proto_derive::CmdID)] -#[cmdid(7467)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct SwordTrainingMarkEndingViewedScRsp { +pub struct BasicModuleSync { + /// offset: 28 + #[prost(uint32, tag = "14")] + pub week_cocoon_finished_count: u32, /// offset: 24 #[prost(uint32, tag = "8")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Blpmhfgioac { - /// offset: 24 - #[prost(uint32, tag = "6")] - pub keneknbjgmg: u32, - /// offset: 28 - #[prost(uint32, tag = "4")] pub stamina: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct BoardDataSync { - /// offset: 40 - #[prost(message, repeated, tag = "1")] - pub unlocked_head_icon_list: ::prost::alloc::vec::Vec, +pub struct PlayerBoardModuleSync { + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub unlocked_head_icon_list: ::prost::alloc::vec::Vec, /// offset: 48 - #[prost(message, optional, tag = "10")] - pub lolnmadmpkl: ::core::option::Option, + #[prost(uint32, repeated, tag = "1")] + pub mhjedlcdhaa: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(bool, tag = "8")] + pub jmakdnipmah: bool, /// offset: 32 - #[prost(uint32, repeated, tag = "5")] - pub almmhkfkhlk: ::prost::alloc::vec::Vec, - /// offset: 24 #[prost(string, tag = "2")] pub signature: ::prost::alloc::string::String, - /// offset: 56 - #[prost(bool, tag = "12")] - pub pagjkdjigpi: bool, + /// offset: 40 + #[prost(message, optional, tag = "5")] + pub head_frame_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct AvatarSync { /// offset: 16 - #[prost(message, repeated, tag = "12")] + #[prost(message, repeated, tag = "6")] pub avatar_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct MissionSync { - /// offset: 48 - #[prost(message, repeated, tag = "2")] - pub ejbggjonbol: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub mcfonopkokd: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, repeated, tag = "1")] - pub anihpckngbm: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "3")] - pub hnepoedcidk: ::prost::alloc::vec::Vec, - /// offset: 64 - #[prost(message, repeated, tag = "11")] - pub mission_list: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, repeated, tag = "15")] - pub gaegmbiogoh: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub finished_mission_id_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Dmbmpahkhla { - /// offset: 32 - #[prost(uint32, repeated, tag = "5")] - pub lkkidnjcfja: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(uint32, repeated, tag = "6")] - pub dingkfdbcjj: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lpfmhajhdmm { /// offset: 40 - #[prost(uint32, repeated, tag = "5")] - pub cngldjnpopi: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub omaalpkjiih: ::prost::alloc::vec::Vec, - /// offset: 48 #[prost(message, repeated, tag = "8")] - pub kmmbeandijh: ::prost::alloc::vec::Vec, + pub ggokgcifpbk: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, repeated, tag = "7")] + pub jhgbfaklleb: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, repeated, tag = "4")] + pub finished_main_mission_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "11")] + pub kmppjhjhdpm: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, repeated, tag = "15")] + pub idaphoicmmm: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, repeated, tag = "12")] - pub lnejlgefple: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "5")] + pub mission_list: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, repeated, tag = "1")] + pub kjiofkaojdk: ::prost::alloc::vec::Vec, } -/// Obf: DBGAEOOJOJA #[derive(proto_derive::CmdID)] -#[cmdid(699)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mdnffondbok { + /// offset: 32 + #[prost(uint32, repeated, tag = "9")] + pub dkpgdkladej: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "1")] + pub afgebhjlkhb: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SyncStatus { + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub fkihmndampo: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(message, repeated, tag = "15")] + pub section_status: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub jkjfpcdolcm: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(message, repeated, tag = "12")] + pub message_group_status: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(647)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlayerSyncScNotify { - /// offset: 144 - #[prost(message, repeated, tag = "693")] - pub cglekfodmag: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "8")] - pub material_list: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(message, optional, tag = "1388")] - pub mjoklhfpgad: ::core::option::Option, - /// offset: 192 - #[prost(uint32, tag = "850")] - pub total_achievement_exp: u32, - /// offset: 168 - #[prost(uint32, repeated, tag = "14")] - pub del_relic_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "13")] - pub gejlekbbfnc: ::core::option::Option, - /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub quest_list: ::prost::alloc::vec::Vec, - /// offset: 184 - #[prost(message, optional, tag = "2")] - pub avatar_sync: ::core::option::Option, - /// offset: 48 - #[prost(message, repeated, tag = "15")] - pub hlinmkbdknc: ::prost::alloc::vec::Vec, /// offset: 128 - #[prost(message, repeated, tag = "1798")] - pub igipeimgeaa: ::prost::alloc::vec::Vec, - /// offset: 160 - #[prost(message, optional, tag = "1588")] - pub enfkeibdllf: ::core::option::Option, - /// offset: 136 - #[prost(uint32, repeated, tag = "1")] - pub del_equipment_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "1657")] - pub omjopkgjplg: ::core::option::Option, - /// offset: 72 - #[prost(message, optional, tag = "312")] - pub board_data_sync: ::core::option::Option, - /// offset: 112 - #[prost(uint32, repeated, tag = "250")] - pub olflkcbbjoh: ::prost::alloc::vec::Vec, - /// offset: 176 - #[prost(message, repeated, tag = "5")] - pub relic_list: ::prost::alloc::vec::Vec, - /// offset: 88 - #[prost(message, repeated, tag = "11")] - pub equipment_list: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "14")] + pub mission_sync: ::core::option::Option, /// offset: 80 - #[prost(message, optional, tag = "289")] - pub bkebjfipjeh: ::core::option::Option, - /// offset: 120 - #[prost(message, optional, tag = "7")] - pub iggogfjfpdj: ::core::option::Option, - /// offset: 64 - #[prost(message, repeated, tag = "265")] - pub fcokffeapmi: ::prost::alloc::vec::Vec, - /// offset: 104 - #[prost(message, optional, tag = "6")] + #[prost(uint32, repeated, tag = "647")] + pub del_equipment_list: ::prost::alloc::vec::Vec, + /// offset: 136 + #[prost(message, optional, tag = "2")] pub basic_info: ::core::option::Option, + /// offset: 176 + #[prost(message, repeated, tag = "1040")] + pub lbafdldfkmm: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub relic_list: ::prost::alloc::vec::Vec, /// offset: 152 - #[prost(message, repeated, tag = "877")] - pub multi_path_avatar_type_info_list: ::prost::alloc::vec::Vec< - MultiPathAvatarTypeInfo, - >, + #[prost(uint32, repeated, tag = "1")] + pub new_item_hint_list: ::prost::alloc::vec::Vec, + /// offset: 120 + #[prost(message, repeated, tag = "1756")] + pub multi_path_avatar_info_list: ::prost::alloc::vec::Vec, + /// offset: 168 + #[prost(uint32, repeated, tag = "15")] + pub del_relic_list: ::prost::alloc::vec::Vec, + /// offset: 112 + #[prost(message, repeated, tag = "11")] + pub wait_del_resource_list: ::prost::alloc::vec::Vec, + /// offset: 104 + #[prost(message, optional, tag = "1553")] + pub sync_status: ::core::option::Option, + /// offset: 192 + #[prost(uint32, tag = "1264")] + pub total_achievement_exp: u32, + /// offset: 48 + #[prost(message, repeated, tag = "3")] + pub material_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(message, optional, tag = "6")] + pub avatar_sync: ::core::option::Option, + /// offset: 56 + #[prost(message, optional, tag = "583")] + pub playerboard_module_sync: ::core::option::Option, + /// offset: 160 + #[prost(message, repeated, tag = "12")] + pub equipment_list: ::prost::alloc::vec::Vec, + /// offset: 88 + #[prost(message, optional, tag = "10")] + pub basic_module_sync: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "281")] + pub inecfgkmong: ::prost::alloc::vec::Vec, + /// offset: 96 + #[prost(message, repeated, tag = "4")] + pub quest_list: ::prost::alloc::vec::Vec, + /// offset: 144 + #[prost(message, optional, tag = "591")] + pub jlmnicahjde: ::core::option::Option, + /// offset: 40 + #[prost(message, optional, tag = "1925")] + pub kbndcicnbpl: ::core::option::Option, + /// offset: 72 + #[prost(message, optional, tag = "206")] + pub bflaejhdobl: ::core::option::Option, + /// offset: 184 + #[prost(message, repeated, tag = "450")] + pub neogolfgnjm: ::prost::alloc::vec::Vec, } -/// Obf: NCIPMMDBMFO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2199)] +#[cmdid(2147)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetNpcTakenRewardCsReq { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "1")] pub npc_id: u32, } -/// Obf: CGLKMNBLCJE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2123)] +#[cmdid(2109)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetNpcTakenRewardScRsp { + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub talk_event_list: ::prost::alloc::vec::Vec, /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 36 #[prost(uint32, tag = "2")] pub npc_id: u32, - /// offset: 36 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "12")] - pub iifaoneejck: ::prost::alloc::vec::Vec, } -/// Obf: KBCCBPPBMAJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2198)] +#[cmdid(2138)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TakeTalkRewardCsReq { /// offset: 32 - #[prost(uint32, tag = "4")] - pub iemoeoimhma: u32, + #[prost(uint32, tag = "2")] + pub nhdbbmecink: u32, /// offset: 16 - #[prost(message, optional, tag = "13")] - pub olconcnjmmp: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub lhclamgnkge: ::core::option::Option, } -/// Obf: KDPLIJBIDGG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2165)] +#[cmdid(2117)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TakeTalkRewardScRsp { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub nhdbbmecink: u32, + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub reward: ::core::option::Option, /// offset: 36 #[prost(uint32, tag = "10")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub reward: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub iemoeoimhma: u32, } -/// Obf: ICIAIKMGAHC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2183)] +#[cmdid(2151)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFirstTalkNpcCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "13")] + /// offset: 16 + #[prost(uint32, repeated, tag = "12")] pub npc_id_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FirstNpcTalkInfo { /// offset: 28 - #[prost(bool, tag = "4")] - pub iagodfdjaik: bool, - /// offset: 24 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub npc_id: u32, + /// offset: 24 + #[prost(bool, tag = "6")] + pub is_meet: bool, } -/// Obf: ALHBIKAJFLD +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2186)] +#[cmdid(2111)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFirstTalkNpcScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub npc_talk_info_list: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "10")] pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "4")] + pub npc_meet_status_list: ::prost::alloc::vec::Vec, } -/// Obf: ILNJIODJHKG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2194)] +#[cmdid(2189)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishFirstTalkNpcCsReq { /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "12")] pub npc_id: u32, } -/// Obf: PPEGBECCDPK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2152)] +#[cmdid(2120)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishFirstTalkNpcScRsp { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub npc_id: u32, /// offset: 28 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "8")] + pub npc_id: u32, + /// offset: 24 + #[prost(uint32, tag = "5")] pub retcode: u32, } -/// Obf: OJJHHHGOMNH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2119)] +#[cmdid(2195)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectInclinationTextCsReq { /// offset: 24 #[prost(uint32, tag = "13")] - pub pkdcpmnagbc: u32, + pub talk_sentence_id: u32, } -/// Obf: KIHHNLOOGAG +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2144)] +#[cmdid(2191)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SelectInclinationTextScRsp { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub retcode: u32, /// offset: 24 + #[prost(uint32, tag = "11")] + pub talk_sentence_id: u32, + /// offset: 28 #[prost(uint32, tag = "8")] - pub pkdcpmnagbc: u32, + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct NpcTalkInfo { +pub struct NpcMeetByPerformanceStatus { /// offset: 24 - #[prost(uint32, tag = "10")] - pub npc_talk_id: u32, + #[prost(uint32, tag = "3")] + pub performance_id: u32, /// offset: 28 - #[prost(bool, tag = "7")] - pub iagodfdjaik: bool, + #[prost(bool, tag = "11")] + pub is_meet: bool, } -/// Obf: JBMHEKHJDPP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2181)] +#[cmdid(2161)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFirstTalkByPerformanceNpcCsReq { /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub npc_talk_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] + pub performance_id_list: ::prost::alloc::vec::Vec, } -/// Obf: LHKKJHDMOEK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2169)] +#[cmdid(2145)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetFirstTalkByPerformanceNpcScRsp { /// offset: 32 #[prost(uint32, tag = "13")] pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub npc_talk_info_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "7")] + pub npc_meet_status_list: ::prost::alloc::vec::Vec, } -/// Obf: BCOFMAKPDMJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(2157)] +#[cmdid(2176)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishFirstTalkByPerformanceNpcCsReq { /// offset: 24 - #[prost(uint32, tag = "3")] - pub npc_talk_id: u32, + #[prost(uint32, tag = "12")] + pub performance_id: u32, } -/// Obf: PCBEHBGJJHO +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(2115)] +#[cmdid(2152)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishFirstTalkByPerformanceNpcScRsp { - /// offset: 32 - #[prost(uint32, tag = "2")] - pub npc_talk_id: u32, /// offset: 16 - #[prost(message, optional, tag = "5")] + #[prost(message, optional, tag = "13")] pub reward: ::core::option::Option, /// offset: 36 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "15")] + pub performance_id: u32, + /// offset: 32 + #[prost(uint32, tag = "4")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ejdgknkhkhh { +pub struct Hiofemeheke { /// offset: 24 - #[prost(uint32, tag = "8")] - pub id: u32, - /// offset: 28 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "7")] pub level: u32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bkmgdphacke { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub id: u32, +pub struct Gfnfdblfeml { /// offset: 24 - #[prost(bool, tag = "5")] - pub biinncndpcg: bool, + #[prost(bool, tag = "8")] + pub has_passed: bool, + /// offset: 28 + #[prost(uint32, tag = "7")] + pub id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Floickmnmll { +pub struct Acdceeddmck { /// offset: 32 - #[prost(message, repeated, tag = "3")] - pub cnijnmdgedd: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "6")] + pub hahkpfchmpj: ::prost::alloc::vec::Vec, /// offset: 16 #[prost(message, repeated, tag = "13")] - pub dgpejfljnoj: ::prost::alloc::vec::Vec, + pub nlbojnbhbab: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ofdgogdbhac { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub omicajeoljf: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub libllkbldch: ::prost::alloc::vec::Vec, -} -/// Obf: AGOOPHCEBGA -#[derive(proto_derive::CmdID)] -#[cmdid(8147)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TarotBookGetDataCsReq {} -/// Obf: FEAOPDEBLKH -#[derive(proto_derive::CmdID)] -#[cmdid(8141)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookGetDataScRsp { - /// offset: 56 - #[prost(uint32, tag = "1")] - pub lenpidmpecp: u32, +pub struct Kakcdnnhncn { /// offset: 32 - #[prost(map = "uint32, uint32", tag = "6")] - pub ndcjjpgnfln: ::std::collections::HashMap, - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "10")] - pub jkemdjiamhi: ::std::collections::HashMap, - /// offset: 68 - #[prost(uint32, tag = "5")] - pub retcode: u32, + #[prost(uint32, repeated, tag = "10")] + pub lklpbfhhpcc: ::prost::alloc::vec::Vec, /// offset: 24 - #[prost(message, optional, tag = "2")] - pub hefjejhojea: ::core::option::Option, - /// offset: 60 - #[prost(uint32, tag = "7")] - pub fdckfkfkhlo: u32, - /// offset: 64 - #[prost(uint32, tag = "15")] - pub energy_info: u32, - /// offset: 48 - #[prost(message, optional, tag = "12")] - pub ipninopekbp: ::core::option::Option, + #[prost(uint32, repeated, tag = "14")] + pub mdfahglplck: ::prost::alloc::vec::Vec, } -/// Obf: JKKNJEBJOAE +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8153)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TarotBookOpenPackCsReq {} -/// Obf: CEJEJDMNDMC -#[derive(proto_derive::CmdID)] -#[cmdid(8159)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookOpenPackScRsp { - /// offset: 32 - #[prost(map = "uint32, uint32", tag = "7")] - pub cjencdiflcf: ::std::collections::HashMap, - /// offset: 48 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 52 - #[prost(uint32, tag = "11")] - pub lenpidmpecp: u32, - /// offset: 44 - #[prost(uint32, tag = "8")] - pub energy_info: u32, - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "10")] - pub iikbcnbjkki: ::std::collections::HashMap, - /// offset: 40 - #[prost(uint32, tag = "12")] - pub fdckfkfkhlo: u32, -} -/// Obf: IANILBPCLKD -#[derive(proto_derive::CmdID)] -#[cmdid(8143)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookUnlockStoryCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub ppimfpoookb: ::prost::alloc::vec::Vec, -} -/// Obf: OPPAPMHJMPI -#[derive(proto_derive::CmdID)] -#[cmdid(8155)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookUnlockStoryScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "10")] - pub ppimfpoookb: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, optional, tag = "1")] - pub ppdggociede: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "8")] - pub retcode: u32, - /// offset: 32 - #[prost(map = "uint32, uint32", tag = "9")] - pub ndcjjpgnfln: ::std::collections::HashMap, - /// offset: 16 - #[prost(map = "uint32, uint32", tag = "12")] - pub jkemdjiamhi: ::std::collections::HashMap, -} -/// Obf: KPDNPGFDOBI -#[derive(proto_derive::CmdID)] -#[cmdid(8148)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TarotBookFinishStoryCsReq { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub bglehmkmapg: u32, -} -/// Obf: PMGLNLDDNJE -#[derive(proto_derive::CmdID)] -#[cmdid(8151)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookFinishStoryScRsp { - /// offset: 36 - #[prost(uint32, tag = "13")] - pub retcode: u32, - /// offset: 32 - #[prost(uint32, tag = "12")] - pub bglehmkmapg: u32, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub hefjejhojea: ::core::option::Option, -} -/// Obf: HDMJLGMDIFG -#[derive(proto_derive::CmdID)] -#[cmdid(8150)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TarotBookModifyEnergyScNotify { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub lplhiabdbbg: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub energy_info: u32, -} -/// Obf: LDDNFMIHEEH -#[derive(proto_derive::CmdID)] -#[cmdid(8156)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TarotBookFinishInteractionCsReq { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub nblhjjjegno: u32, -} -/// Obf: EKPJDGCKGMN -#[derive(proto_derive::CmdID)] -#[cmdid(8158)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TarotBookFinishInteractionScRsp { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub nblhjjjegno: u32, - /// offset: 28 - #[prost(uint32, tag = "14")] - pub retcode: u32, -} -/// Obf: HDMNIODNJOL +pub struct Lmhfdbjpcap {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8146)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookUnlockInteractionCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "7")] - pub ohkhpolfibp: ::prost::alloc::vec::Vec, -} -/// Obf: IIHIHBAIIAF -#[derive(proto_derive::CmdID)] -#[cmdid(8154)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookUnlockInteractionScRsp { +pub struct Jmkebfcmipo { /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "9")] - pub ohkhpolfibp: ::prost::alloc::vec::Vec, -} -/// Obf: EFNDOPHMABP -#[derive(proto_derive::CmdID)] -#[cmdid(8160)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookSyncDataScNotify { - /// offset: 32 - #[prost(map = "uint32, uint32", tag = "8")] - pub ndcjjpgnfln: ::std::collections::HashMap, - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub hefjejhojea: ::core::option::Option, - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "14")] - pub jkemdjiamhi: ::std::collections::HashMap, - /// offset: 52 - #[prost(uint32, tag = "10")] - pub fdckfkfkhlo: u32, + #[prost(map = "uint32, uint32", tag = "12")] + pub oikdgfpjafn: ::std::collections::HashMap, /// offset: 56 - #[prost(uint32, tag = "2")] - pub energy_info: u32, - /// offset: 48 - #[prost(uint32, tag = "5")] - pub lenpidmpecp: u32, -} -/// Obf: LPCNKBEBJOF -#[derive(proto_derive::CmdID)] -#[cmdid(8157)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TarotBookMultiOpenPackAndUnlockStoryCsReq {} -/// Obf: MBIFGNHBIBH -#[derive(proto_derive::CmdID)] -#[cmdid(8142)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TarotBookMultiOpenPackAndUnlockStoryScRsp { - /// offset: 56 - #[prost(uint32, tag = "15")] - pub fdckfkfkhlo: u32, + #[prost(uint32, tag = "3")] + pub kljpjoobpbh: u32, + /// offset: 64 + #[prost(uint32, tag = "7")] + pub cbonfdkgdeh: u32, + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "5")] + pub pifdidifekf: ::std::collections::HashMap, + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub efigpbcgald: ::core::option::Option, /// offset: 68 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "1")] pub retcode: u32, + /// offset: 48 + #[prost(message, optional, tag = "6")] + pub gjbkpogplno: ::core::option::Option, /// offset: 60 #[prost(uint32, tag = "13")] pub energy_info: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8149)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kmenedchaam {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8145)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gjocpamniih { /// offset: 48 - #[prost(map = "uint32, uint32", tag = "8")] - pub ndcjjpgnfln: ::std::collections::HashMap, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub hefjejhojea: ::core::option::Option, - /// offset: 64 - #[prost(uint32, tag = "5")] - pub lenpidmpecp: u32, - /// offset: 40 - #[prost(map = "uint32, uint32", tag = "3")] - pub jkemdjiamhi: ::std::collections::HashMap, - /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub ngblpgnjomd: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ogjdnlijkfb { - /// offset: 24 - #[prost(uint32, tag = "14")] - pub kegcjppokbk: u32, - /// offset: 32 #[prost(uint32, tag = "3")] - pub ninlfbglbll: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub stage_score: u32, -} -/// Obf: KPKGBOGHIJN -#[derive(proto_derive::CmdID)] -#[cmdid(6967)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetTelevisionActivityDataCsReq {} -/// Obf: PHNAEIKGJHB -#[derive(proto_derive::CmdID)] -#[cmdid(6961)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetTelevisionActivityDataScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub kadgmhhgkmp: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "14")] pub retcode: u32, -} -/// Obf: LFJAAEAPBJE -#[derive(proto_derive::CmdID)] -#[cmdid(6973)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TelevisionActivityDataChangeScNotify { - /// offset: 24 - #[prost(message, repeated, tag = "12")] - pub kadgmhhgkmp: ::prost::alloc::vec::Vec, -} -/// Obf: JPADDPIGGCK -#[derive(proto_derive::CmdID)] -#[cmdid(6975)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TelevisionActivityBattleEndScNotify { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub hoehiobiiej: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub fcepipccomn: u32, /// offset: 44 + #[prost(uint32, tag = "12")] + pub kljpjoobpbh: u32, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub energy_info: u32, + /// offset: 24 + #[prost(map = "uint32, uint32", tag = "10")] + pub dmnaloijhla: ::std::collections::HashMap, + /// offset: 52 #[prost(uint32, tag = "13")] - pub npjeecedpok: u32, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub dfccbdpnlea: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub fidioihllga: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Depeahjnkgj { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub avatar_id: u32, - /// offset: 24 - #[prost(enumeration = "AvatarType", tag = "12")] - pub avatar_type: i32, -} -/// Obf: NDNCAPJMPEG -#[derive(proto_derive::CmdID)] -#[cmdid(6979)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterTelevisionActivityStageCsReq { - /// offset: 40 - #[prost(uint32, tag = "4")] - pub ninlfbglbll: u32, + pub cbonfdkgdeh: u32, /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub buff_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, uint32", tag = "4")] + pub jnehnpmlihg: ::std::collections::HashMap, } -/// Obf: AHGENONAOFK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6963)] +#[cmdid(8154)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterTelevisionActivityStageScRsp { +pub struct Bmkblihikig { + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub ffmlhbpnfac: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8144)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nmnnagfipep { /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(map = "uint32, uint32", tag = "2")] + pub pifdidifekf: ::std::collections::HashMap, + /// offset: 24 + #[prost(message, optional, tag = "12")] + pub mhnechnkkng: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "5")] pub retcode: u32, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "3")] + pub oikdgfpjafn: ::std::collections::HashMap, + /// offset: 48 + #[prost(uint32, repeated, tag = "1")] + pub ffmlhbpnfac: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8143)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Abkddbidcje { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub haaljlgenhg: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8157)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dfelmhmhdop { /// offset: 24 #[prost(message, optional, tag = "6")] - pub battle_info: ::core::option::Option, - /// offset: 36 + pub efigpbcgald: ::core::option::Option, + /// offset: 32 #[prost(uint32, tag = "2")] - pub ninlfbglbll: u32, + pub retcode: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub haaljlgenhg: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8152)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Eaaphcnflek { + /// offset: 28 + #[prost(uint32, tag = "9")] + pub sub_mission_id: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub energy_info: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8141)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ikalgcpbndp { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub ggnloolpmnn: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8150)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hhkcfngdhkl { + /// offset: 24 + #[prost(uint32, tag = "13")] + pub ggnloolpmnn: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8160)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fpmpfcjiocp { + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub ibamohkmmop: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8147)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kinpgifgged { + /// offset: 24 + #[prost(uint32, repeated, tag = "11")] + pub ibamohkmmop: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(8155)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hkmimdpjajn { + /// offset: 48 + #[prost(uint32, tag = "13")] + pub kljpjoobpbh: u32, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub efigpbcgald: ::core::option::Option, + /// offset: 40 + #[prost(map = "uint32, uint32", tag = "4")] + pub oikdgfpjafn: ::std::collections::HashMap, + /// offset: 52 + #[prost(uint32, tag = "9")] + pub energy_info: u32, + /// offset: 56 + #[prost(uint32, tag = "2")] + pub cbonfdkgdeh: u32, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "15")] + pub pifdidifekf: ::std::collections::HashMap, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8159)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nklppgboojn {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8142)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lodhdfdjiob { + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub efigpbcgald: ::core::option::Option, + /// offset: 68 + #[prost(uint32, tag = "9")] + pub energy_info: u32, + /// offset: 64 + #[prost(uint32, tag = "13")] + pub cbonfdkgdeh: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "2")] + pub bgpmieobogl: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "4")] + pub oikdgfpjafn: ::std::collections::HashMap, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub retcode: u32, + /// offset: 60 + #[prost(uint32, tag = "15")] + pub kljpjoobpbh: u32, + /// offset: 40 + #[prost(map = "uint32, uint32", tag = "8")] + pub pifdidifekf: ::std::collections::HashMap, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bbhonakbeci { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub amofmddnmkg: u32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub max_score: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub nmpconbobeb: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6973)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ljdgjlplhih {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6966)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Galfjgogdhl { + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub ichajbiilbk: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6969)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ieejnpgcega { + /// offset: 16 + #[prost(message, repeated, tag = "9")] + pub ichajbiilbk: ::prost::alloc::vec::Vec, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6964)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Blhijcednne { + /// offset: 24 + #[prost(message, optional, tag = "11")] + pub bdmnaifnifh: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "8")] + pub dfemjmlccbn: u32, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub fbibndnkdak: u32, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub pbmedopkjaj: u32, + /// offset: 44 + #[prost(uint32, tag = "12")] + pub turn_left: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lelomdoogho { + /// offset: 24 + #[prost(enumeration = "AvatarType", tag = "4")] + pub avatar_type: i32, + /// offset: 28 + #[prost(uint32, tag = "15")] + pub avatar_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6965)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jepaghnapcc { + /// offset: 16 + #[prost(message, repeated, tag = "2")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub amofmddnmkg: u32, + /// offset: 32 + #[prost(uint32, repeated, tag = "1")] + pub buff_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6974)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jpikkkdadnd { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub amofmddnmkg: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TextJoinInfo { +pub struct Jmeccmfnhjj { + /// offset: 40 + #[prost(uint32, tag = "12")] + pub hllgdgicdid: u32, + /// offset: 16 + #[prost(string, tag = "7")] + pub oogbbhiiolh: ::prost::alloc::string::String, + /// offset: 48 + #[prost(uint32, tag = "4")] + pub njojfejiiec: u32, + /// offset: 44 + #[prost(uint32, tag = "3")] + pub hoapmfgpcdn: u32, + /// offset: 24 + #[prost(string, tag = "8")] + pub fanofejdhpg: ::prost::alloc::string::String, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jknmocakpkb { + /// offset: 36 + #[prost(uint32, tag = "11")] + pub hoapmfgpcdn: u32, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub njojfejiiec: u32, + /// offset: 24 + #[prost(string, tag = "3")] + pub fanofejdhpg: ::prost::alloc::string::String, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3809)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Palcbggaime { + /// offset: 40 + #[prost(uint32, tag = "8")] + pub njojfejiiec: u32, /// offset: 24 #[prost(string, tag = "13")] - pub hbjkeebdjml: ::prost::alloc::string::String, - /// offset: 40 - #[prost(uint32, tag = "15")] - pub nlfnjpmacpm: u32, - /// offset: 44 - #[prost(uint32, tag = "1")] - pub adinnbpinak: u32, - /// offset: 32 - #[prost(string, tag = "12")] - pub nkioiioiaog: ::prost::alloc::string::String, - /// offset: 48 - #[prost(uint32, tag = "9")] - pub fanokembmpb: u32, -} -/// Obf: AKOIBDEGONH -#[derive(proto_derive::CmdID)] -#[cmdid(3899)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TextJoinSaveCsReq { - /// offset: 36 - #[prost(uint32, tag = "3")] - pub adinnbpinak: u32, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub fanokembmpb: u32, - /// offset: 24 - #[prost(string, tag = "10")] - pub hbjkeebdjml: ::prost::alloc::string::String, -} -/// Obf: ILLGPCDIGCM -#[derive(proto_derive::CmdID)] -#[cmdid(3823)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TextJoinSaveScRsp { + pub fanofejdhpg: ::prost::alloc::string::String, /// offset: 32 #[prost(uint32, tag = "12")] - pub adinnbpinak: u32, - /// offset: 40 - #[prost(uint32, tag = "1")] pub retcode: u32, - /// offset: 24 - #[prost(string, tag = "15")] - pub hbjkeebdjml: ::prost::alloc::string::String, /// offset: 36 - #[prost(uint32, tag = "13")] - pub fanokembmpb: u32, + #[prost(uint32, tag = "9")] + pub hoapmfgpcdn: u32, } -/// Obf: CIMBHJDHAFO +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3898)] +#[cmdid(3838)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TextJoinQueryCsReq { +pub struct Opnejicjdjh { /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub text_join_id_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "12")] + pub ogjjnjfihdh: ::prost::alloc::vec::Vec, } -/// Obf: EEELMIPKGIJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3865)] +#[cmdid(3817)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TextJoinQueryScRsp { +pub struct Apanibfaoed { /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub text_join_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "6")] + pub ifepfphkoof: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "2")] pub retcode: u32, } -/// Obf: EIGPGMEMLAJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3883)] +#[cmdid(3851)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TextJoinBatchSaveCsReq { +pub struct Edkhiikkodj { /// offset: 16 - #[prost(message, repeated, tag = "15")] - pub text_join_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub ifepfphkoof: ::prost::alloc::vec::Vec, } -/// Obf: MCCFKFOMIBA +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3886)] +#[cmdid(3811)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TextJoinBatchSaveScRsp { - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, +pub struct Dchbpipbgog { /// offset: 24 - #[prost(message, repeated, tag = "10")] - pub text_join_list: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "1")] + pub ifepfphkoof: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cgligecgakn { - /// offset: 28 - #[prost(uint32, tag = "6")] - pub stage_score: u32, +pub struct Opfbnicidhd { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] pub stage_id: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub max_score: u32, } -/// Obf: EMFNMIFOFMH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7556)] +#[cmdid(7552)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetTrackPhotoActivityDataCsReq {} -/// Obf: OINMKCHEDBO +pub struct Fdniebaoinp {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7557)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetTrackPhotoActivityDataScRsp { +pub struct Fpdoegniaak { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub gnfnlhpdiph: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "7")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "2")] - pub emgfldopkgl: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Geoaeofjogc { - /// offset: 28 - #[prost(bool, tag = "15")] - pub kfboaonldem: bool, +pub struct Kffnmjchhpp { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(bool, tag = "15")] + pub gkejiamecge: bool, + /// offset: 28 + #[prost(uint32, tag = "12")] pub entity_id: u32, } -/// Obf: GBHMOCOJBGB +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(7554)] +#[cmdid(7560)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct SettleTrackPhotoStageCsReq { - /// offset: 36 - #[prost(uint32, tag = "9")] +pub struct Okhpabfglog { + /// offset: 32 + #[prost(uint32, tag = "2")] pub stage_id: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] - pub bclnmidffoh: u32, - /// offset: 24 - #[prost(message, repeated, tag = "13")] - pub lpihaniojfi: ::prost::alloc::vec::Vec, -} -/// Obf: FPHPGHHMODG -#[derive(proto_derive::CmdID)] -#[cmdid(7559)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct SettleTrackPhotoStageScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "10")] - pub lpihaniojfi: ::prost::alloc::vec::Vec, - /// offset: 32 + /// offset: 36 #[prost(uint32, tag = "3")] - pub score: u32, + pub cost_time: u32, + /// offset: 24 + #[prost(message, repeated, tag = "8")] + pub gedijgjoiho: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7551)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mihhadfcmlc { /// offset: 36 #[prost(uint32, tag = "15")] pub stage_id: u32, /// offset: 40 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "9")] + pub score_id: u32, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub gedijgjoiho: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "6")] pub retcode: u32, } -/// Obf: DLGOPBGKGGL -#[derive(proto_derive::CmdID)] -#[cmdid(7560)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartTrackPhotoStageCsReq { - /// offset: 28 - #[prost(bool, tag = "12")] - pub djfcmlipdab: bool, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub stage_id: u32, -} -/// Obf: LDKCMMDKEGJ -#[derive(proto_derive::CmdID)] -#[cmdid(7551)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartTrackPhotoStageScRsp { - /// offset: 28 - #[prost(uint32, tag = "12")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "10")] - pub mdlndgijnml: u32, -} -/// Obf: LGKCKIKGNEN -#[derive(proto_derive::CmdID)] -#[cmdid(7558)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct QuitTrackPhotoStageCsReq { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub stage_id: u32, -} -/// Obf: IHLJCHKAJPG +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7553)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct QuitTrackPhotoStageScRsp { +pub struct Dfddnhamhhc { /// offset: 24 - #[prost(uint32, tag = "1")] + #[prost(bool, tag = "11")] + pub ihofefjgabp: bool, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub stage_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7559)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Afbblgehobe { + /// offset: 28 + #[prost(uint32, tag = "12")] + pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub oajepobkmdm: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(7555)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Idiefcgckbd { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub stage_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(7556)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ahamdhhlpen { + /// offset: 24 + #[prost(uint32, tag = "8")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyCardData { - /// offset: 40 - #[prost(uint32, tag = "1")] - pub upgrade_level: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "11")] - pub hcpgealodme: ::prost::alloc::vec::Vec, +pub struct Mkgkindokgj { /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "5")] + pub unique_id: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub dkgamlmhfmk: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(uint32, tag = "2")] pub card_id: u32, - /// offset: 36 - #[prost(uint32, tag = "13")] - pub unique_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyCards { - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub card_data_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyCard { - /// offset: 36 - #[prost(uint32, tag = "13")] - pub extra_ratio: u32, - /// offset: 32 - #[prost(bool, tag = "15")] - pub has_modify_all_passenger_stat_effect: bool, - /// offset: 24 - #[prost(message, optional, tag = "11")] - pub card_data_list: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyGridData { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub display_value: u32, - /// offset: 24 - #[prost(uint32, tag = "1")] - pub hfnhlcfnhkd: u32, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub unique_id: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub ghfaihlceln: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyMeetingCountInfo { - /// offset: 48 - #[prost(uint32, tag = "13")] - pub hcfocpkfobg: u32, - /// offset: 40 - #[prost(uint32, tag = "8")] - pub papkgjojpii: u32, - /// offset: 36 - #[prost(uint32, tag = "9")] - pub jodnmdoamkc: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub kddppgocomb: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub blhpiciofai: u32, - /// offset: 44 - #[prost(uint32, tag = "7")] - pub ncdcgfkoloe: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyGrids { - /// offset: 44 - #[prost(uint32, tag = "6")] - pub bihmelmjhpo: u32, - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub gdghcbghlnd: ::core::option::Option, /// offset: 40 #[prost(uint32, tag = "10")] - pub lljefmpdjkh: u32, - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub mkoambmkdid: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyPassengerStatusInfo { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub kpakapnhnnd: u32, - /// offset: 28 - #[prost(uint32, tag = "3")] - pub khhlnggecpb: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyPassengerSkillInfo { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub jgmipmdppij: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub skill_id: u32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub skill_level: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyPassengerData { - /// offset: 36 - #[prost(uint32, tag = "7")] - pub mihlfgcgkno: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub passenger_id: u32, - /// offset: 16 - #[prost(message, optional, tag = "9")] - pub status_info: ::core::option::Option, + pub cur_index: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyPassengerPersistentData { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub attempts: u32, +pub struct Jdfpeejfclm { /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub diary_data_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(bool, tag = "5")] - pub cinmlckbhim: bool, + #[prost(message, repeated, tag = "5")] + pub dgjogacbmfa: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mllocobchfl { + /// offset: 16 + #[prost(message, optional, tag = "8")] + pub dgjogacbmfa: ::core::option::Option, /// offset: 36 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "13")] + pub kcfmkajblei: u32, + /// offset: 32 + #[prost(bool, tag = "3")] + pub ejaoahffkam: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Plipegepejb { + /// offset: 28 + #[prost(uint32, tag = "11")] + pub display_value: u32, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub fheigffedho: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub unique_id: u32, + /// offset: 36 + #[prost(uint32, tag = "5")] + pub eadaaeapmnc: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jgbgnbbnefc { + /// offset: 32 + #[prost(uint32, tag = "12")] + pub fajlkinfgbg: u32, + /// offset: 44 + #[prost(uint32, tag = "6")] + pub bdefcppmdel: u32, + /// offset: 40 + #[prost(uint32, tag = "14")] + pub hiomklmmeoj: u32, + /// offset: 36 + #[prost(uint32, tag = "7")] + pub bcpbdofpdeg: u32, + /// offset: 48 + #[prost(uint32, tag = "1")] + pub gihfccialpo: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "5")] + pub knjgilhkeie: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jejdanjdkgg { + /// offset: 44 + #[prost(uint32, tag = "4")] + pub kkaiblindkp: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub onmhpelopnl: u32, + /// offset: 32 + #[prost(message, repeated, tag = "8")] + pub cfioelbmdld: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub fiaiebfaleb: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cidlomaopkf { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub nahiiddohen: u32, + /// offset: 24 + #[prost(uint32, tag = "8")] + pub dcmgjieihib: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ihmcafcohjn { + /// offset: 28 + #[prost(uint32, tag = "5")] + pub skill_id: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub skill_level: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub bijoeenhpmg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kgelbghhpdj { + /// offset: 32 + #[prost(uint32, tag = "15")] + pub hggdnieimjk: u32, + /// offset: 36 + #[prost(uint32, tag = "14")] pub passenger_id: u32, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub bffhfobnbfe: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyPassenger { - /// offset: 48 - #[prost(uint32, tag = "7")] - pub pkidbdgpilo: u32, - /// offset: 52 - #[prost(uint32, tag = "13")] - pub upgrade_level: u32, - /// offset: 56 - #[prost(uint32, tag = "5")] - pub oafaaeemnfb: u32, /// offset: 32 - #[prost(uint32, repeated, tag = "15")] - pub cfkpaicdjpj: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "2")] - pub kbgdcehiffj: ::prost::alloc::vec::Vec, + #[prost(bool, tag = "3")] + pub dffjmodfcep: bool, /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub skill_info_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "5")] + pub pjkngbfbiph: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub passenger_id: u32, + /// offset: 36 + #[prost(uint32, tag = "2")] + pub record_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oibmnpclnjj { +pub struct Odhjjmejcmo { + /// offset: 48 + #[prost(uint32, tag = "5")] + pub anjghpkkope: u32, + /// offset: 40 + #[prost(message, repeated, tag = "12")] + pub fkffhbbpigj: ::prost::alloc::vec::Vec, + /// offset: 52 + #[prost(uint32, tag = "9")] + pub jjnngmcooeh: u32, + /// offset: 32 + #[prost(message, repeated, tag = "8")] + pub pkengahemod: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub djfobfkmokd: ::prost::alloc::vec::Vec, + /// offset: 56 + #[prost(uint32, tag = "11")] + pub cur_index: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TrainPartyPassengerInfo { + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub passenger_info_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "1")] + pub pjkngbfbiph: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TrainPartyArea { + /// offset: 40 + #[prost(message, optional, tag = "11")] + pub area_step_info: ::core::option::Option, + /// offset: 48 + #[prost(uint32, repeated, tag = "7")] + pub static_prop_id_list: ::prost::alloc::vec::Vec, + /// offset: 68 + #[prost(uint32, tag = "15")] + pub area_id: u32, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub dynamic_info: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, repeated, tag = "9")] - pub diary_data_list: ::prost::alloc::vec::Vec, - /// offset: 24 - #[prost(message, repeated, tag = "6")] - pub mebofhokepi: ::prost::alloc::vec::Vec, + pub verify_step_id_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(uint32, repeated, tag = "6")] + pub step_id_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "4")] + pub progress: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyAreaInfo { - /// offset: 64 - #[prost(uint32, tag = "5")] - pub progress: u32, - /// offset: 32 - #[prost(message, repeated, tag = "9")] - pub opdipfbcfdp: ::prost::alloc::vec::Vec, +pub struct Elafnmipkch { /// offset: 24 - #[prost(uint32, repeated, tag = "4")] - pub knojnbjiokb: ::prost::alloc::vec::Vec, - /// offset: 68 + #[prost(uint32, repeated, tag = "7")] + pub step_id_list: ::prost::alloc::vec::Vec, + /// offset: 32 #[prost(uint32, tag = "1")] pub area_id: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "12")] - pub hbccbgbfplo: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, repeated, tag = "10")] - pub elfphfpkbfi: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub mlhdkjmfdai: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Indffnnhohc { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub area_id: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub elfphfpkbfi: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ppkdpajpagf { +pub struct Inodabpnlde { /// offset: 24 - #[prost(uint32, tag = "12")] - pub gjfhpcieboj: u32, + #[prost(uint32, tag = "10")] + pub mcngkcnlcoa: u32, /// offset: 32 - #[prost(enumeration = "TrainPartyBuildStatus", tag = "9")] - pub status: i32, - /// offset: 28 #[prost(uint32, tag = "2")] - pub jlhdkolmeda: u32, + pub mdlokdnphij: u32, + /// offset: 28 + #[prost(enumeration = "Ecmaeaadifa", tag = "4")] + pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Daipphmlpcb { +pub struct AreaStepInfo { /// offset: 32 #[prost(uint32, tag = "3")] - pub heidcikedpd: u32, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub imekhgciedn: ::prost::alloc::vec::Vec, + pub idbpoihfneo: u32, + /// offset: 24 + #[prost(message, repeated, tag = "15")] + pub nedjimgebpg: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Mcnckbnoejg { +pub struct AreaDynamicInfo { /// offset: 24 - #[prost(uint32, tag = "12")] - pub cigajenpmkh: u32, + #[prost(uint32, tag = "6")] + pub diy_dynamic_id: u32, /// offset: 28 - #[prost(uint32, tag = "3")] - pub slot_id: u32, + #[prost(uint32, tag = "5")] + pub dice_slot_id: u32, } -/// Obf: NNMNKCGDKCC +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8016)] +#[cmdid(8069)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyBuildRoomScNotify { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub mlcmjkmmnfm: ::core::option::Option, + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub jccggfiahmn: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hhallekojia { - /// offset: 72 - #[prost(uint32, tag = "6")] - pub cnajoignmlj: u32, - /// offset: 40 - #[prost(message, repeated, tag = "7")] - pub eohbbeakodf: ::prost::alloc::vec::Vec, - /// offset: 56 - #[prost(uint32, tag = "13")] - pub obokglcmkke: u32, - /// offset: 48 - #[prost(uint32, repeated, tag = "12")] - pub cigacghpdgk: ::prost::alloc::vec::Vec, +pub struct TrainPartyInfo { + /// offset: 16 + #[prost(uint32, repeated, tag = "3")] + pub njgpanmniae: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(message, repeated, tag = "8")] - pub llephoelgda: ::prost::alloc::vec::Vec, - /// offset: 76 - #[prost(uint32, tag = "4")] - pub dbjhemippim: u32, - /// offset: 64 - #[prost(uint32, tag = "3")] - pub ppffkfgollj: u32, + #[prost(message, repeated, tag = "15")] + pub area_list: ::prost::alloc::vec::Vec, /// offset: 68 - #[prost(uint32, tag = "1")] - pub flbnekgidbo: u32, + #[prost(uint32, tag = "12")] + pub jpehnpdipkc: u32, + /// offset: 76 + #[prost(uint32, tag = "14")] + pub belapkomngk: u32, + /// offset: 56 + #[prost(uint32, tag = "6")] + pub lababmedhgi: u32, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub bpiedlnemhi: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "9")] + pub hldnkjfacbp: u32, /// offset: 60 - #[prost(uint32, tag = "2")] - pub eebnaapbkcn: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "5")] - pub mcfmaepokbk: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "7")] + pub opkjjoflpna: u32, + /// offset: 48 + #[prost(uint32, repeated, tag = "2")] + pub dynamic_id_list: ::prost::alloc::vec::Vec, + /// offset: 64 + #[prost(uint32, tag = "4")] + pub cur_fund: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lpkdpmlbejo { - /// offset: 24 - #[prost(message, optional, tag = "12")] - pub cefmbafcnpk: ::core::option::Option, +pub struct TrainPartyData { /// offset: 40 - #[prost(message, optional, tag = "3")] - pub ijmekpadhjj: ::core::option::Option, - /// offset: 48 + #[prost(message, optional, tag = "4")] + pub hpfkplmgaog: ::core::option::Option, + /// offset: 56 #[prost(uint32, tag = "13")] - pub aianofknlhg: u32, + pub record_id: u32, + /// offset: 32 + #[prost(message, optional, tag = "11")] + pub passenger_info: ::core::option::Option, + /// offset: 48 + #[prost(bool, tag = "2")] + pub mibkbmoepog: bool, /// offset: 60 - #[prost(bool, tag = "14")] - pub bhcpdbbfnef: bool, + #[prost(uint32, tag = "1")] + pub deneajnnjef: u32, /// offset: 52 - #[prost(uint32, tag = "5")] - pub attempts: u32, + #[prost(uint32, tag = "15")] + pub unlock_area_num: u32, /// offset: 16 - #[prost(message, optional, tag = "2")] - pub nhjjbkokldb: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "7")] - pub klgbflnjkbl: u32, + #[prost(message, optional, tag = "5")] + pub train_party_info: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Cdngndnlnaj { - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub gbfclmlimhc: ::core::option::Option, +pub struct Biccibihbab { /// offset: 24 - #[prost(message, optional, tag = "3")] - pub eeihdcpolef: ::core::option::Option, - /// offset: 56 - #[prost(uint32, tag = "7")] - pub goneakbdgek: u32, + #[prost(message, optional, tag = "2")] + pub afobfmdmmnm: ::core::option::Option, /// offset: 40 - #[prost(message, optional, tag = "8")] - pub hbheajijegf: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub hifmhhdahcc: ::core::option::Option, + /// offset: 56 + #[prost(uint32, tag = "14")] + pub gbohfhmofhb: u32, /// offset: 48 + #[prost(message, optional, tag = "9")] + pub icpbmedcbmg: ::core::option::Option, + /// offset: 32 #[prost(message, optional, tag = "11")] - pub aakhcnedbcd: ::core::option::Option, + pub ffekgjcejdj: ::core::option::Option, } -/// Obf: DBOEHMHGICC +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8099)] +#[cmdid(8047)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyGetDataCsReq {} -/// Obf: CFNECNJGENN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8023)] +#[cmdid(8009)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyGetDataScRsp { - /// offset: 16 - #[prost(message, optional, tag = "7")] - pub behnkmghghd: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub train_party_data: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "12")] pub retcode: u32, } -/// Obf: IAGDGOEBLAL +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8098)] +#[cmdid(8038)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyUseCardCsReq { /// offset: 24 - #[prost(uint32, tag = "6")] - pub eeghhhkcghb: u32, + #[prost(uint32, tag = "10")] + pub kedflgjebjj: u32, } -/// Obf: KNBKOEDFCBE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8065)] +#[cmdid(8017)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyUseCardScRsp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub eeghhhkcghb: u32, /// offset: 28 - #[prost(uint32, tag = "4")] + #[prost(uint32, tag = "2")] pub retcode: u32, + /// offset: 24 + #[prost(uint32, tag = "14")] + pub kedflgjebjj: u32, } -/// Obf: OOGNJJIPCNK +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8083)] +#[cmdid(8051)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyMoveScNotify { - /// offset: 32 - #[prost(uint32, tag = "12")] - pub gheeoeohmfi: u32, /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub peadiocnimf: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "7")] + pub blepadapkli: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub nckdpldiacb: u32, } -/// Obf: JGPGPFCLEAI +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8094)] +#[cmdid(8089)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartySettleNotify { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub eeghhhkcghb: u32, /// offset: 16 - #[prost(message, optional, tag = "9")] - pub hilomekafbp: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub fpjmgefcjlo: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "14")] + pub kedflgjebjj: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fkmbflmegeb { - /// offset: 32 - #[prost(message, repeated, tag = "4")] - pub kbgdcehiffj: ::prost::alloc::vec::Vec, +pub struct Bndchinbfjg { + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub igpnpjncafj: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub fkffhbbpigj: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "8")] - pub heijcnlnhhi: u32, - /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub foaplialhdi: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "6")] + pub fnfeaaemfji: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Baepnhdciem { +pub struct Hhigfhnkelk { /// offset: 32 - #[prost(uint32, tag = "4")] - pub ijfihgcknhg: u32, + #[prost(uint32, tag = "14")] + pub cmlflcpkoog: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "7")] - pub param_list: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "5")] + pub switch_list: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Nclcbopcejg { - /// offset: 16 - #[prost(message, optional, tag = "10")] - pub hmffhbhalge: ::core::option::Option, +pub struct Eoommakkodn { + /// offset: 24 + #[prost(message, optional, tag = "4")] + pub mpibgjokjhg: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Idbeommckik { - /// offset: 16 +pub struct Pbenghclajp { + /// offset: 24 #[prost(message, optional, tag = "10")] - pub status_info: ::core::option::Option, + pub bffhfobnbfe: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "8")] pub passenger_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ibomhkhbaao { +pub struct Nndajkkeioe { + /// offset: 16 + #[prost(message, repeated, tag = "5")] + pub knnenhphhem: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cogeihcibka { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub gclekilecbi: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Dajdgjikbni { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub cur_index: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ngoifgdhnph { + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub dnoccphjgmn: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Naifjfhiioa { /// offset: 16 #[prost(message, repeated, tag = "13")] - pub nfeolnaogdk: ::prost::alloc::vec::Vec, + pub pkengahemod: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Enjhdlhkino { +pub struct Fdmjdfbdhmb { /// offset: 24 - #[prost(message, optional, tag = "5")] - pub kndmeilhkej: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub ihigfggipob: ::core::option::Option, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fnoghghpjpd { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Afncgdjacdj { /// offset: 24 - #[prost(uint32, tag = "13")] - pub upgrade_level: u32, + #[prost(uint32, repeated, tag = "5")] + pub pjkngbfbiph: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jldhcfggeao { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Fkglchmbmgb { /// offset: 24 - #[prost(message, optional, tag = "8")] - pub mhmeddehbhi: ::core::option::Option, + #[prost(message, repeated, tag = "2")] + pub cfioelbmdld: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pfgiahaidlm { - /// offset: 16 - #[prost(message, repeated, tag = "11")] - pub skill_info_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jhmnlcobjcj { +pub struct Aihnngnelji { /// offset: 24 - #[prost(message, optional, tag = "4")] - pub abbnhmggpil: ::core::option::Option, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fkjlbfniggm { - /// offset: 16 - #[prost(uint32, repeated, tag = "4")] - pub diary_data_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hakmebiajcf { - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub mkoambmkdid: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hmopiblfcln { - /// offset: 40 - #[prost(uint32, tag = "5")] - pub extra_ratio: u32, + #[prost(message, optional, tag = "6")] + pub ldidodnljdg: ::core::option::Option, /// offset: 44 - #[prost(bool, tag = "3")] - pub has_modify_all_passenger_stat_effect: bool, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub gdghcbghlnd: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "14")] - pub lnmmkfmeajm: ::core::option::Option, + #[prost(bool, tag = "14")] + pub ejaoahffkam: bool, + /// offset: 16 + #[prost(message, optional, tag = "12")] + pub fiaiebfaleb: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub kcfmkajblei: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Plkcmgdedck { - /// offset: 32 - #[prost(enumeration = "TrainPartyUpdateSrc", tag = "9")] +pub struct Ehmcgmidpap { + /// offset: 36 + #[prost(enumeration = "Kbggpblhkho", tag = "11")] pub src: i32, #[prost( - oneof = "plkcmgdedck::Pphbgcabelf", - tags = "785, 937, 341, 77, 178, 369, 1598, 1865, 818, 354" + oneof = "ehmcgmidpap::Ginfiafkmdn", + tags = "117, 1513, 1219, 654, 1537, 1681, 161, 1628, 808, 1011" )] - pub pphbgcabelf: ::core::option::Option, + pub ginfiafkmdn: ::core::option::Option, } -/// Nested message and enum types in `PLKCMGDEDCK`. -pub mod plkcmgdedck { +/// Nested message and enum types in `EHMCGMIDPAP`. +pub mod ehmcgmidpap { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Pphbgcabelf { + pub enum Ginfiafkmdn { /// offset: 24 - #[prost(message, tag = "785")] - Lnmmkfmeajm(super::TrainPartyCards), + #[prost(message, tag = "117")] + Ldidodnljdg(super::Jdfpeejfclm), /// offset: 24 - #[prost(message, tag = "937")] - Fpfdjndnpim(super::Ibomhkhbaao), + #[prost(message, tag = "1513")] + Gemcoddpijj(super::Nndajkkeioe), /// offset: 24 - #[prost(message, tag = "341")] - Njkjnbdboca(super::Enjhdlhkino), + #[prost(message, tag = "1219")] + Pllkgihchic(super::Cogeihcibka), /// offset: 24 - #[prost(message, tag = "77")] - Lgjgbighonp(super::Fnoghghpjpd), + #[prost(message, tag = "654")] + Dbhjbegafob(super::Dajdgjikbni), /// offset: 24 - #[prost(message, tag = "178")] - Dgnkbngipki(super::Hakmebiajcf), + #[prost(message, tag = "1537")] + Cbbhonhmojb(super::Fkglchmbmgb), /// offset: 24 - #[prost(message, tag = "369")] - Mkkpchhnhcj(super::Jldhcfggeao), + #[prost(message, tag = "1681")] + Dmmbmcpiioe(super::Ngoifgdhnph), /// offset: 24 - #[prost(message, tag = "1598")] - Pkpjefggboo(super::Hmopiblfcln), + #[prost(message, tag = "161")] + Jgbhpbonimd(super::Aihnngnelji), /// offset: 24 - #[prost(message, tag = "1865")] - Nhacnnjpalp(super::Pfgiahaidlm), + #[prost(message, tag = "1628")] + Kggaebbnapi(super::Naifjfhiioa), /// offset: 24 - #[prost(message, tag = "818")] - Ahpdpooljle(super::Jhmnlcobjcj), + #[prost(message, tag = "808")] + Bcmjneaolkf(super::Fdmjdfbdhmb), /// offset: 24 - #[prost(message, tag = "354")] - Afmieicdnea(super::Fkjlbfniggm), + #[prost(message, tag = "1011")] + Gomagalhckg(super::Afncgdjacdj), } } -/// Obf: JFJKLHGFDKP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8019)] +#[cmdid(8095)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartySyncUpdateScNotify { /// offset: 16 #[prost(message, repeated, tag = "10")] - pub fflpklldhlm: ::prost::alloc::vec::Vec, + pub laehobnnlmj: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Gcfehmenonm { - /// offset: 36 - #[prost(uint32, tag = "2")] - pub hbapccegnme: u32, - #[prost(oneof = "gcfehmenonm::Dmjfkdoofmp", tags = "1725, 1187, 814, 725")] - pub dmjfkdoofmp: ::core::option::Option, +pub struct Cndpnbdbnne { + /// offset: 32 + #[prost(uint32, tag = "5")] + pub queue_position: u32, + #[prost(oneof = "cndpnbdbnne::Oajnjfnliec", tags = "973, 899, 1996, 1649")] + pub oajnjfnliec: ::core::option::Option, } -/// Nested message and enum types in `GCFEHMENONM`. -pub mod gcfehmenonm { +/// Nested message and enum types in `CNDPNBDBNNE`. +pub mod cndpnbdbnne { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Dmjfkdoofmp { + pub enum Oajnjfnliec { /// offset: 16 - #[prost(message, tag = "1725")] - Iamkdjcfmib(super::Njkenncjlcf), + #[prost(message, tag = "973")] + Cjfdphkbogi(super::Pgklpppnmke), /// offset: 16 - #[prost(message, tag = "1187")] - Leehaeobeba(super::Miiaiodleoa), + #[prost(message, tag = "899")] + Klcbedjnkpo(super::Gkimabiehao), /// offset: 16 - #[prost(message, tag = "814")] - Oaoofnjgidh(super::Emmdenjbfpf), + #[prost(message, tag = "1996")] + Mcccoekdcmp(super::Jbmaiihiomj), /// offset: 16 - #[prost(message, tag = "725")] - Pmmgocjfeej(super::Epbgfbedanm), + #[prost(message, tag = "1649")] + Aclgaadenhe(super::Gdeopmfckbj), } } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hhpiafbhjcf { - /// offset: 28 - #[prost(bool, tag = "9")] - pub pipmgacmjnn: bool, +pub struct Fdaihlhoioe { /// offset: 24 - #[prost(uint32, tag = "3")] - pub kdmlllghjon: u32, + #[prost(bool, tag = "4")] + pub koamfafdead: bool, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub llhfnkjofma: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Njkenncjlcf { - /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub lekpkocnjal: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "Ijdnojemian", tag = "6")] - pub hoiokbkgfdn: i32, +pub struct Pgklpppnmke { /// offset: 36 - #[prost(uint32, tag = "8")] - pub event_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Hpfkgddifhg { - /// offset: 28 - #[prost(uint32, tag = "8")] - pub kdmlllghjon: u32, - /// offset: 24 + #[prost(enumeration = "Aoedkmhhlak", tag = "11")] + pub jokdfodleph: i32, + /// offset: 32 #[prost(uint32, tag = "15")] pub event_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Bfifanaocpc { - /// offset: 16 - #[prost(message, optional, tag = "6")] - pub hilomekafbp: ::core::option::Option, + /// offset: 24 + #[prost(message, repeated, tag = "9")] + pub paegjjemdfe: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Ocmhofemnhi { - /// offset: 32 - #[prost(uint32, tag = "9")] - pub jgmipmdppij: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub level: u32, +pub struct Cbfmiplkjff { /// offset: 24 - #[prost(uint32, tag = "1")] - pub skill_id: u32, + #[prost(uint32, tag = "8")] + pub llhfnkjofma: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub event_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Miiaiodleoa { +pub struct Jdbhnlcbobe { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub fpjmgefcjlo: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bipkihhlomm { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub skill_id: u32, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub bijoeenhpmg: u32, + /// offset: 24 + #[prost(uint32, tag = "9")] + pub level: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gkimabiehao { + /// offset: 16 + #[prost(message, repeated, tag = "13")] + pub fnpjfiihdjj: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub passenger_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gdeopmfckbj { /// offset: 32 #[prost(uint32, tag = "9")] - pub passenger_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "1")] - pub ganakfaibfc: ::prost::alloc::vec::Vec, + pub djjmojiejno: u32, + /// offset: 24 + #[prost(message, repeated, tag = "7")] + pub kjhcobpdmpm: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hpbomabmmok { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub mmijphagoma: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Epbgfbedanm { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub idaihkmmdek: u32, +pub struct Jeoaeaboakp { /// offset: 24 #[prost(message, repeated, tag = "14")] - pub llijagdkjco: ::prost::alloc::vec::Vec, + pub pkengahemod: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Glbfbnhfcno { - /// offset: 24 - #[prost(uint32, tag = "4")] - pub iehhdalhgpi: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mbinmaonbcd { - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub skill_info_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pjjdmmbkkcn { +pub struct Mpbckbemele { /// offset: 32 - #[prost(uint32, tag = "4")] - pub khhlnggecpb: u32, + #[prost(uint32, tag = "7")] + pub nahiiddohen: u32, /// offset: 24 - #[prost(uint32, tag = "12")] - pub passenger_id: u32, + #[prost(uint32, tag = "9")] + pub unique_id: u32, /// offset: 28 #[prost(uint32, tag = "11")] - pub unique_id: u32, + pub passenger_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Heojldbkkge { +pub struct Mfcbebkankc { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "13")] pub num: u32, /// offset: 28 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "9")] pub passenger_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Emmdenjbfpf { +pub struct Jbmaiihiomj { /// offset: 64 - #[prost(uint32, tag = "9")] - pub cfokigihcfp: u32, - /// offset: 56 - #[prost(uint32, tag = "2")] - pub npjeecedpok: u32, - /// offset: 60 - #[prost(uint32, tag = "1")] - pub mliijgoaeck: u32, - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub kjmliamgdle: ::prost::alloc::vec::Vec, - /// offset: 52 #[prost(uint32, tag = "11")] - pub mlipplkiifd: u32, + pub hlpkgfmecaj: u32, + /// offset: 60 + #[prost(uint32, tag = "2")] + pub gcgcnfmdeoe: u32, + /// offset: 40 + #[prost(message, repeated, tag = "13")] + pub hohaaelipcl: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "14")] + pub ijagmhofcjj: ::prost::alloc::vec::Vec, /// offset: 48 #[prost(uint32, tag = "7")] - pub kmlppmnmpke: u32, - /// offset: 32 - #[prost(message, repeated, tag = "6")] - pub ccgbhhfbafj: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "5")] - pub mmeiphbnked: ::prost::alloc::vec::Vec, + pub nlojpciojob: u32, + /// offset: 52 + #[prost(uint32, tag = "4")] + pub dfemjmlccbn: u32, + /// offset: 56 + #[prost(uint32, tag = "12")] + pub pmaifpmdlbk: u32, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub lpjnaolieen: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lpcnjmfipnp { - /// offset: 28 - #[prost(enumeration = "Lcdemgacekd", tag = "10")] - pub skill_type: i32, +pub struct Edfijmffnph { /// offset: 24 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "10")] pub skill_id: u32, + /// offset: 28 + #[prost(uint32, tag = "1")] + pub bjjceclilpj: u32, /// offset: 32 - #[prost(uint32, tag = "12")] - pub flejagfjdkm: u32, + #[prost(enumeration = "Gjfefelpaad", tag = "11")] + pub skill_type: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Oajopdgkjdo { - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub fajccghlcac: ::prost::alloc::vec::Vec, +pub struct Pdjlbgibefm { /// offset: 36 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "11")] pub unique_id: u32, /// offset: 32 - #[prost(uint32, tag = "14")] - pub eglmghlekef: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Phoefkfbikd { + #[prost(uint32, tag = "15")] + pub mokpodjpcah: u32, /// offset: 24 - #[prost(uint32, repeated, tag = "14")] - pub npojmhhibki: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub ojcjnbgnicf: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub mkegodinhnc: u32, + #[prost(message, repeated, tag = "2")] + pub omoghlpjjjf: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Pecglkcicgo { +pub struct Koidgbbajam { + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub jaibbdpnhjf: ::core::option::Option, + /// offset: 32 + #[prost(uint32, repeated, tag = "11")] + pub ccfkjilhcid: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub ohbgcbgccjg: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dcigcpaahjj { /// offset: 24 - #[prost(uint32, repeated, tag = "9")] - pub canngfdafoe: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "10")] + pub ckjjbecaeld: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jbocjhndamc { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub mfakjhfmaib: ::core::option::Option, +pub struct Kneilegmkod { /// offset: 40 - #[prost(message, repeated, tag = "11")] - pub omggnaeahif: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "8")] + pub lomfmnhahhj: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub cnkdlilifhe: ::core::option::Option, /// offset: 56 - #[prost(message, repeated, tag = "12")] - pub bihfecjhpgh: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(message, optional, tag = "6")] - pub gdghcbghlnd: ::core::option::Option, - /// offset: 24 - #[prost(message, repeated, tag = "4")] - pub mmeiphbnked: ::prost::alloc::vec::Vec, - /// offset: 72 - #[prost(uint32, tag = "1")] - pub score: u32, - /// offset: 80 - #[prost(uint32, tag = "9")] - pub npjeecedpok: u32, - /// offset: 48 - #[prost(message, repeated, tag = "14")] - pub ccgbhhfbafj: ::prost::alloc::vec::Vec, - /// offset: 84 - #[prost(uint32, tag = "10")] - pub cfokigihcfp: u32, - /// offset: 76 - #[prost(enumeration = "TrainPartyMtSkillType", tag = "5")] - pub ijppknknlnl: i32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Encjkpgoial { - /// offset: 24 - #[prost(uint32, repeated, tag = "1")] - pub canngfdafoe: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Fbglldnlgpe { - /// offset: 48 - #[prost(uint32, tag = "11")] - pub kmlppmnmpke: u32, + #[prost(message, optional, tag = "12")] + pub fiaiebfaleb: ::core::option::Option, /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub nicgnemched: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "11")] + pub bmlaobfacjf: ::prost::alloc::vec::Vec, /// offset: 32 + #[prost(message, repeated, tag = "1")] + pub hohaaelipcl: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(uint32, tag = "7")] + pub score_id: u32, + /// offset: 48 #[prost(message, repeated, tag = "9")] - pub mmeiphbnked: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "3")] - pub ccgbhhfbafj: ::prost::alloc::vec::Vec, + pub ijagmhofcjj: ::prost::alloc::vec::Vec, + /// offset: 80 + #[prost(uint32, tag = "4")] + pub gcgcnfmdeoe: u32, + /// offset: 76 + #[prost(uint32, tag = "3")] + pub dfemjmlccbn: u32, + /// offset: 84 + #[prost(enumeration = "Ipcdfmaamdo", tag = "15")] + pub aafenpjfhme: i32, } -/// Obf: BHEIBFHJFID #[derive(proto_derive::CmdID)] -#[cmdid(8081)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nfcidcgacfa { + /// offset: 16 + #[prost(uint32, repeated, tag = "8")] + pub ckjjbecaeld: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dgbdeiiimcj { + /// offset: 24 + #[prost(message, repeated, tag = "5")] + pub mkbdfnglkad: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, repeated, tag = "13")] + pub hohaaelipcl: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "15")] + pub ijagmhofcjj: ::prost::alloc::vec::Vec, + /// offset: 48 + #[prost(uint32, tag = "12")] + pub hlpkgfmecaj: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8061)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyHandlePendingActionCsReq { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub hbapccegnme: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub queue_position: u32, #[prost( - oneof = "train_party_handle_pending_action_cs_req::Gnglhjgmaok", - tags = "1715, 1221, 1756, 1142" + oneof = "train_party_handle_pending_action_cs_req::Nbkjopeknjk", + tags = "1268, 1800, 1360, 37" )] - pub gnglhjgmaok: ::core::option::Option< - train_party_handle_pending_action_cs_req::Gnglhjgmaok, + pub nbkjopeknjk: ::core::option::Option< + train_party_handle_pending_action_cs_req::Nbkjopeknjk, >, } /// Nested message and enum types in `TrainPartyHandlePendingActionCsReq`. pub mod train_party_handle_pending_action_cs_req { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Gnglhjgmaok { - /// offset: 16 - #[prost(message, tag = "1715")] - Iamkdjcfmib(super::Hpfkgddifhg), - /// offset: 16 - #[prost(message, tag = "1221")] - Pmmgocjfeej(super::Glbfbnhfcno), - /// offset: 16 - #[prost(message, tag = "1756")] - Lgbjaeldpnb(super::Pecglkcicgo), - /// offset: 16 - #[prost(message, tag = "1142")] - Bgjmfbhcmkl(super::Encjkpgoial), + pub enum Nbkjopeknjk { + /// offset: 24 + #[prost(message, tag = "1268")] + Cjfdphkbogi(super::Cbfmiplkjff), + /// offset: 24 + #[prost(message, tag = "1800")] + Aclgaadenhe(super::Hpbomabmmok), + /// offset: 24 + #[prost(message, tag = "1360")] + Dgiabfeghfl(super::Dcigcpaahjj), + /// offset: 24 + #[prost(message, tag = "37")] + Ecmigmnngdo(super::Nfcidcgacfa), } } -/// Obf: FKNAGADELDE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8069)] +#[cmdid(8045)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyHandlePendingActionScRsp { /// offset: 52 - #[prost(uint32, tag = "15")] - pub retcode: u32, + #[prost(bool, tag = "13")] + pub nphladnocdp: bool, /// offset: 44 - #[prost(uint32, tag = "14")] - pub hbapccegnme: u32, - /// offset: 40 - #[prost(bool, tag = "2")] - pub dlncbjfgkaa: bool, - /// offset: 32 - #[prost(message, optional, tag = "7")] - pub hilomekafbp: ::core::option::Option, + #[prost(uint32, tag = "6")] + pub queue_position: u32, + /// offset: 48 + #[prost(uint32, tag = "5")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub fpjmgefcjlo: ::core::option::Option, #[prost( - oneof = "train_party_handle_pending_action_sc_rsp::Gnglhjgmaok", - tags = "1299, 1781, 194, 422" + oneof = "train_party_handle_pending_action_sc_rsp::Nbkjopeknjk", + tags = "1572, 729, 791, 2024" )] - pub gnglhjgmaok: ::core::option::Option< - train_party_handle_pending_action_sc_rsp::Gnglhjgmaok, + pub nbkjopeknjk: ::core::option::Option< + train_party_handle_pending_action_sc_rsp::Nbkjopeknjk, >, } /// Nested message and enum types in `TrainPartyHandlePendingActionScRsp`. pub mod train_party_handle_pending_action_sc_rsp { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Gnglhjgmaok { - /// offset: 16 - #[prost(message, tag = "1299")] - Laelpnhhjik(super::Bfifanaocpc), - /// offset: 16 - #[prost(message, tag = "1781")] - Pmojbjmkfan(super::Mbinmaonbcd), - /// offset: 16 - #[prost(message, tag = "194")] - Afdndbaddkp(super::Jbocjhndamc), - /// offset: 16 - #[prost(message, tag = "422")] - Ledfncdfamk(super::Fbglldnlgpe), + pub enum Nbkjopeknjk { + /// offset: 24 + #[prost(message, tag = "1572")] + Jiagbldmkog(super::Jdbhnlcbobe), + /// offset: 24 + #[prost(message, tag = "729")] + Fghcpiogpbd(super::Jeoaeaboakp), + /// offset: 24 + #[prost(message, tag = "791")] + Ooahipehgaf(super::Kneilegmkod), + /// offset: 24 + #[prost(message, tag = "2024")] + Fjlhhkekgkn(super::Dgbdeiiimcj), } } -/// Obf: LHHGJPGIAFE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8057)] +#[cmdid(8076)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyBuildStartStepCsReq { - /// offset: 32 - #[prost(uint32, tag = "13")] - pub heidcikedpd: u32, - /// offset: 40 - #[prost(uint32, tag = "11")] - pub gjfhpcieboj: u32, /// offset: 24 - #[prost(message, optional, tag = "4")] - pub alaoddbghpl: ::core::option::Option, - /// offset: 36 + #[prost(message, optional, tag = "5")] + pub ighlbecdfkn: ::core::option::Option, + /// offset: 32 #[prost(uint32, tag = "10")] + pub mdlokdnphij: u32, + /// offset: 36 + #[prost(uint32, tag = "13")] + pub idbpoihfneo: u32, + /// offset: 40 + #[prost(uint32, tag = "2")] pub area_id: u32, } -/// Obf: FLPDEABALAB +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8015)] +#[cmdid(8052)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyBuildStartStepScRsp { /// offset: 24 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "13")] pub retcode: u32, /// offset: 28 - #[prost(uint32, tag = "4")] - pub dbjhemippim: u32, + #[prost(uint32, tag = "11")] + pub cur_fund: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Cikohjnagon { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub area_id: u32, +pub struct Lblolanedab { /// offset: 16 - #[prost(message, optional, tag = "12")] - pub kcjbmkjlfba: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub oklbbcjbdce: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub area_id: u32, } -/// Obf: IGIOFLAJOLK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8092)] +#[cmdid(8050)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyBuildDiyCsReq { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub area_id: u32, /// offset: 28 - #[prost(bool, tag = "2")] - pub ganhklnpapi: bool, + #[prost(uint32, tag = "14")] + pub dice_slot_id: u32, /// offset: 32 - #[prost(uint32, tag = "8")] - pub cigajenpmkh: u32, + #[prost(bool, tag = "13")] + pub gldjlidkhdf: bool, /// offset: 36 + #[prost(uint32, tag = "8")] + pub diy_dynamic_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8081)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TrainPartyBuildDiyScRsp { + /// offset: 16 + #[prost(message, repeated, tag = "4")] + pub laehobnnlmj: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(bool, tag = "11")] + pub gldjlidkhdf: bool, + /// offset: 48 #[prost(uint32, tag = "6")] pub area_id: u32, /// offset: 24 - #[prost(uint32, tag = "12")] - pub slot_id: u32, -} -/// Obf: IGOGLPAJAND -#[derive(proto_derive::CmdID)] -#[cmdid(8037)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyBuildDiyScRsp { + #[prost(message, repeated, tag = "10")] + pub dynamic_info: ::prost::alloc::vec::Vec, /// offset: 40 - #[prost(uint32, tag = "9")] - pub retcode: u32, - /// offset: 32 - #[prost(message, repeated, tag = "11")] - pub fflpklldhlm: ::prost::alloc::vec::Vec, - /// offset: 48 - #[prost(bool, tag = "12")] - pub ganhklnpapi: bool, - /// offset: 44 #[prost(uint32, tag = "13")] - pub area_id: u32, - /// offset: 16 - #[prost(message, repeated, tag = "5")] - pub opdipfbcfdp: ::prost::alloc::vec::Vec, + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kmbdkdlnhmc { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub okhcjkljghf: u32, - /// offset: 24 - #[prost(message, repeated, tag = "2")] - pub cgfihjccgcd: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Jnahojlcnja { +pub struct Kddhjpfomhc { /// offset: 32 #[prost(uint32, tag = "1")] - pub area_id: u32, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub progress: u32, - /// offset: 16 - #[prost(message, repeated, tag = "8")] - pub cgfihjccgcd: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "4")] - pub heidcikedpd: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Iefkfkfmepl { + pub ialnlkehnob: u32, /// offset: 24 - #[prost(uint32, tag = "4")] - pub obokglcmkke: u32, - /// offset: 28 + #[prost(message, repeated, tag = "5")] + pub ghflhdmklcn: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Coghbblmnea { + /// offset: 40 #[prost(uint32, tag = "13")] - pub ppffkfgollj: u32, + pub progress: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub area_id: u32, + /// offset: 32 + #[prost(uint32, tag = "2")] + pub idbpoihfneo: u32, + /// offset: 24 + #[prost(message, repeated, tag = "12")] + pub ghflhdmklcn: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Fnpmcdnkdfj { +pub struct Fbdcoaegmap { /// offset: 24 #[prost(uint32, tag = "14")] - pub bdccopiehin: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gegjhbmloem { - /// offset: 24 - #[prost(uint32, tag = "9")] - pub flbnekgidbo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bfddpplmkpg { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub mnleikiehhp: u32, + pub lababmedhgi: u32, /// offset: 28 - #[prost(uint32, tag = "7")] - pub area_id: u32, + #[prost(uint32, tag = "13")] + pub belapkomngk: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kmlehllogjg { +pub struct Ckecdknfkil { + /// offset: 24 + #[prost(uint32, tag = "12")] + pub mefmipmahag: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bldbnamfcci { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub opkjjoflpna: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lghehgaagmm { /// offset: 24 #[prost(uint32, tag = "1")] - pub cigajenpmkh: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Okfgjeihljm { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub fbfihjiiabo: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kakjcjomfgh { - /// offset: 24 - #[prost(uint32, tag = "13")] - pub cnajoignmlj: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Mclncbcpaff { - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub cgfihjccgcd: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "3")] + pub dibidicfjkn: u32, + /// offset: 28 + #[prost(uint32, tag = "10")] pub area_id: u32, } #[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lndgcgobdjl { +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ojilahgkfnd { /// offset: 24 - #[prost(message, repeated, tag = "1")] - pub llephoelgda: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "3")] + pub diy_dynamic_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pkcmjhdimjd { + /// offset: 24 + #[prost(uint32, tag = "2")] + pub jampkjbehmo: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cbjanjljmpm { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub hldnkjfacbp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ppkgjkifelk { - #[prost( - oneof = "ppkgjkifelk::Pphbgcabelf", - tags = "1012, 1380, 160, 888, 1518, 1020, 1247, 1789, 1646, 1533" - )] - pub pphbgcabelf: ::core::option::Option, +pub struct Hpgmcinmndh { + /// offset: 32 + #[prost(uint32, tag = "6")] + pub area_id: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "7")] + pub ghflhdmklcn: ::prost::alloc::vec::Vec, } -/// Nested message and enum types in `PPKGJKIFELK`. -pub mod ppkgjkifelk { +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Khcjbjddmop { + /// offset: 16 + #[prost(message, repeated, tag = "3")] + pub area_list: ::prost::alloc::vec::Vec, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bjpgbgcafej { + #[prost( + oneof = "bjpgbgcafej::Ginfiafkmdn", + tags = "441, 866, 1500, 1434, 1373, 479, 1666, 642, 83, 610" + )] + pub ginfiafkmdn: ::core::option::Option, +} +/// Nested message and enum types in `BJPGBGCAFEJ`. +pub mod bjpgbgcafej { #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Pphbgcabelf { - /// offset: 16 - #[prost(message, tag = "1012")] - Maplogdnbgb(super::Okfgjeihljm), - /// offset: 16 - #[prost(message, tag = "1380")] - Ekflejankme(super::Kmbdkdlnhmc), - /// offset: 16 - #[prost(message, tag = "160")] - Jobejafkecd(super::Jnahojlcnja), - /// offset: 16 - #[prost(message, tag = "888")] - Dblbhnphhkb(super::Iefkfkfmepl), - /// offset: 16 - #[prost(message, tag = "1518")] - Ckbnojapnnb(super::Fnpmcdnkdfj), - /// offset: 16 - #[prost(message, tag = "1020")] - Nepconhofkj(super::Bfddpplmkpg), - /// offset: 16 - #[prost(message, tag = "1247")] - Egdgpikbnlk(super::Kmlehllogjg), - /// offset: 16 - #[prost(message, tag = "1789")] - Bhofhhemlog(super::Gegjhbmloem), - /// offset: 16 - #[prost(message, tag = "1646")] - Haeadfoolnd(super::Kakjcjomfgh), - /// offset: 16 - #[prost(message, tag = "1533")] - Gaibcbghhgl(super::Lndgcgobdjl), + pub enum Ginfiafkmdn { + /// offset: 24 + #[prost(message, tag = "441")] + Hoafmbhnino(super::Pkcmjhdimjd), + /// offset: 24 + #[prost(message, tag = "866")] + Bkohknpjmhi(super::Kddhjpfomhc), + /// offset: 24 + #[prost(message, tag = "1500")] + Jkccbnpegnj(super::Coghbblmnea), + /// offset: 24 + #[prost(message, tag = "1434")] + Cacdcpeokbb(super::Fbdcoaegmap), + /// offset: 24 + #[prost(message, tag = "1373")] + Bgkhmenobnn(super::Ckecdknfkil), + /// offset: 24 + #[prost(message, tag = "479")] + Ogljakllbmk(super::Lghehgaagmm), + /// offset: 24 + #[prost(message, tag = "1666")] + Iheipbncdab(super::Ojilahgkfnd), + /// offset: 24 + #[prost(message, tag = "642")] + Effkpmmllbl(super::Bldbnamfcci), + /// offset: 24 + #[prost(message, tag = "83")] + Jhbphpdiimf(super::Cbjanjljmpm), + /// offset: 24 + #[prost(message, tag = "610")] + Pnfnhbnlach(super::Khcjbjddmop), } } -/// Obf: BMOPHHIBHCP +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8068)] +#[cmdid(8093)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrainPartyBuildingUpdateNotify { - /// offset: 16 - #[prost(message, repeated, tag = "13")] - pub bjdfkemkaol: ::prost::alloc::vec::Vec, + /// offset: 24 + #[prost(message, repeated, tag = "10")] + pub edhcgagmimk: ::prost::alloc::vec::Vec, } -/// Obf: DGHAJAOFFAE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(8080)] +#[cmdid(8010)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyEnterCsReq {} -/// Obf: LCOFPKJDPJI +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(8077)] +#[cmdid(8067)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TrainPartyEnterScRsp { /// offset: 24 - #[prost(uint32, tag = "7")] + #[prost(uint32, tag = "1")] pub retcode: u32, } -/// Obf: NPBHFJLHLNL -#[derive(proto_derive::CmdID)] -#[cmdid(8005)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyLeaveCsReq {} -/// Obf: JJLKBFPGBIG -#[derive(proto_derive::CmdID)] -#[cmdid(8051)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyLeaveScRsp { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Bjgldljkidh { - /// offset: 24 - #[prost(enumeration = "TrainPartyMtSkillType", tag = "14")] - pub jllnmgbenaf: i32, - /// offset: 28 - #[prost(uint32, tag = "2")] - pub level: u32, -} -/// Obf: FPKBMIHOLMG -#[derive(proto_derive::CmdID)] -#[cmdid(8022)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyGamePlaySettleNotify { - /// offset: 24 - #[prost(message, optional, tag = "14")] - pub hanfphgemgf: ::core::option::Option, - /// offset: 32 - #[prost(uint32, repeated, tag = "3")] - pub olbagkmfdaj: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(uint32, tag = "7")] - pub attempts: u32, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub aianofknlhg: u32, -} -/// Obf: DKGFBNFIOBL +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(8062)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyGamePlayStartCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub kbgdcehiffj: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub goneakbdgek: u32, -} -/// Obf: IPCPHCIPFBG -#[derive(proto_derive::CmdID)] -#[cmdid(8059)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyGamePlayStartScRsp { - /// offset: 16 - #[prost(message, optional, tag = "13")] - pub kmdphcmbjgb: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub retcode: u32, -} -/// Obf: CCGLODLDCCG +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct TrainPartyLeaveCsReq {} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(8035)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyAddBuildDynamicBuffCsReq {} -/// Obf: PAKLHDBGCLE -#[derive(proto_derive::CmdID)] -#[cmdid(8074)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyAddBuildDynamicBuffScRsp { - /// offset: 28 +pub struct TrainPartyLeaveScRsp { + /// offset: 24 #[prost(uint32, tag = "13")] pub retcode: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub buff_id: u32, } -/// Obf: FLACIGJGGCJ #[derive(proto_derive::CmdID)] -#[cmdid(8060)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartyTakeBuildLevelAwardCsReq { +pub struct Egbnahkfgaf { + /// offset: 28 + #[prost(enumeration = "Ipcdfmaamdo", tag = "7")] + pub ffekdefimai: i32, /// offset: 24 - #[prost(uint32, tag = "4")] - pub ecclpifmmpp: u32, + #[prost(uint32, tag = "3")] + pub level: u32, } -/// Obf: EMLBHKHIBGI +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(8071)] +#[cmdid(8015)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartyTakeBuildLevelAwardScRsp { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub ecclpifmmpp: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub item_list: ::core::option::Option, -} -/// Obf: PPIILHPJJDG -#[derive(proto_derive::CmdID)] -#[cmdid(8053)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainPartySkipUnlockSelfRoomCsReq {} -/// Obf: EEEMGPFCHCD -#[derive(proto_derive::CmdID)] -#[cmdid(8042)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainPartySkipUnlockSelfRoomScRsp { - /// offset: 32 +pub struct TrainPartyGamePlaySettleNotify { + /// offset: 44 + #[prost(uint32, tag = "1")] + pub record_id: u32, + /// offset: 16 + #[prost(message, optional, tag = "15")] + pub gcbohabkhcp: ::core::option::Option, + /// offset: 40 #[prost(uint32, tag = "2")] + pub deneajnnjef: u32, + /// offset: 24 + #[prost(uint32, repeated, tag = "13")] + pub kphagdemofj: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8026)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hanhhjnhlem { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub gbohfhmofhb: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "11")] + pub fkffhbbpigj: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8057)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lkogdoiabbe { + /// offset: 32 + #[prost(uint32, tag = "9")] pub retcode: u32, /// offset: 16 - #[prost(message, optional, tag = "12")] - pub mlcmjkmmnfm: ::core::option::Option, + #[prost(message, optional, tag = "8")] + pub nnacagodbga: ::core::option::Option, } +/// Type: Req #[derive(proto_derive::CmdID)] +#[cmdid(8077)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gbcdkgekcpp { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub visitor_id: u32, +pub struct Mjnlnbfaoga {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8019)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Mffcohokbhd { /// offset: 28 - #[prost(bool, tag = "11")] - pub iagodfdjaik: bool, + #[prost(uint32, tag = "9")] + pub buff_id: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub retcode: u32, } -/// Obf: OACBEIPOBJI +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3799)] +#[cmdid(8001)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainVisitorBehaviorFinishCsReq { +pub struct Aknpofcgaea { + /// offset: 24 + #[prost(uint32, tag = "15")] + pub nagnngigmgj: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8049)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ifpjkddmgep { + /// offset: 16 + #[prost(message, optional, tag = "2")] + pub item_list: ::core::option::Option, + /// offset: 36 + #[prost(uint32, tag = "15")] + pub retcode: u32, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub nagnngigmgj: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(8055)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Moccjfohaab {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(8030)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bpahalhphjb { + /// offset: 32 + #[prost(uint32, tag = "8")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "14")] + pub jccggfiahmn: ::core::option::Option, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ajbdjodmgdm { + /// offset: 24 + #[prost(bool, tag = "7")] + pub is_meet: bool, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub visitor_id: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3747)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jdlhpknaeph { /// offset: 24 #[prost(uint32, tag = "6")] pub visitor_id: u32, } -/// Obf: FKIFBIGHAAP +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3723)] +#[cmdid(3709)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainVisitorBehaviorFinishScRsp { - /// offset: 16 - #[prost(message, optional, tag = "6")] +pub struct Nmckjknblkd { + /// offset: 24 + #[prost(message, optional, tag = "10")] pub reward: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "15")] + #[prost(uint32, tag = "7")] pub retcode: u32, /// offset: 36 + #[prost(uint32, tag = "6")] + pub visitor_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Lfeknioohji { + /// offset: 24 + #[prost(uint32, repeated, tag = "7")] + pub affbflcniin: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3717)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Hoddgpadlpg { + /// offset: 24 + #[prost(message, repeated, tag = "3")] + pub igfdedbfede: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3751)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cjelmcnkcgn { + /// offset: 24 + #[prost(uint64, tag = "6")] + pub mnoljbjnlii: u64, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(3711)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cpkijgokeei { + /// offset: 36 + #[prost(enumeration = "Lnijgligfje", tag = "11")] + pub r#type: i32, + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub reward: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "13")] + pub visitor_id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Gabclpmbcam { + /// offset: 44 + #[prost(uint32, tag = "8")] + pub visitor_id: u32, + /// offset: 36 + #[prost(uint32, tag = "1")] + pub bfplofklham: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "5")] + pub ieeaeiipmpd: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(enumeration = "Gfiinmhfgia", tag = "3")] + pub status: i32, + /// offset: 32 + #[prost(bool, tag = "4")] + pub mgaheegagfc: bool, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3789)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Elmlhimccfl { + /// offset: 24 + #[prost(enumeration = "Ockdidopgck", tag = "3")] + pub r#type: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3720)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cafbjebfaic { + /// offset: 32 + #[prost(message, repeated, tag = "3")] + pub hhikmobhjch: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub nnimcjeoojg: ::prost::alloc::vec::Vec, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(3795)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aopfagdefan { + /// offset: 24 + #[prost(uint32, tag = "8")] + pub visitor_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(3791)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Epcjclfdmpk { + /// offset: 16 + #[prost(uint32, repeated, tag = "15")] + pub ieeaeiipmpd: ::prost::alloc::vec::Vec, + /// offset: 36 #[prost(uint32, tag = "9")] pub visitor_id: u32, -} -/// Obf: LMINIONBHAM -#[derive(proto_derive::CmdID)] -#[cmdid(3798)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetTrainVisitorBehaviorCsReq { - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub oifnlnbkdma: ::prost::alloc::vec::Vec, -} -/// Obf: ALNDKEMKEBB -#[derive(proto_derive::CmdID)] -#[cmdid(3765)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetTrainVisitorBehaviorScRsp { /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "6")] - pub ecfopdhgkfb: ::prost::alloc::vec::Vec, -} -/// Obf: BELCDBIGMEO -#[derive(proto_derive::CmdID)] -#[cmdid(3783)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TrainRefreshTimeNotify { - /// offset: 24 - #[prost(uint64, tag = "12")] - pub train_refresh_time: u64, -} -/// Obf: OCGDCMPOEDA -#[derive(proto_derive::CmdID)] -#[cmdid(3786)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TrainVisitorRewardSendNotify { - /// offset: 24 - #[prost(message, optional, tag = "6")] - pub reward: ::core::option::Option, - /// offset: 36 - #[prost(enumeration = "Iippjkhmpch", tag = "12")] - pub r#type: i32, - /// offset: 32 - #[prost(uint32, tag = "15")] - pub visitor_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hglkmjfehmb { - /// offset: 24 - #[prost(uint32, repeated, tag = "12")] - pub edhhgcpdkik: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(bool, tag = "2")] - pub ijabkdepgma: bool, - /// offset: 40 - #[prost(uint32, tag = "6")] - pub visitor_id: u32, - /// offset: 32 - #[prost(enumeration = "Llmibdpfjnd", tag = "13")] - pub status: i32, - /// offset: 44 - #[prost(uint32, tag = "4")] - pub opaokgjbooe: u32, -} -/// Obf: JDJCNCPPAMF -#[derive(proto_derive::CmdID)] -#[cmdid(3794)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetTrainVisitorRegisterCsReq { - /// offset: 24 - #[prost(enumeration = "Jfjjfgaeoab", tag = "4")] - pub r#type: i32, -} -/// Obf: HNGKFNOAJFH -#[derive(proto_derive::CmdID)] -#[cmdid(3752)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetTrainVisitorRegisterScRsp { - /// offset: 16 - #[prost(message, repeated, tag = "12")] - pub fdmfkaljbaj: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub retcode: u32, - /// offset: 24 - #[prost(uint32, repeated, tag = "15")] - pub famhpmfoijh: ::prost::alloc::vec::Vec, -} -/// Obf: FNLKMOEFPDA -#[derive(proto_derive::CmdID)] -#[cmdid(3719)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeTrainVisitorUntakenBehaviorRewardCsReq { - /// offset: 24 #[prost(uint32, tag = "8")] - pub visitor_id: u32, -} -/// Obf: ODJGBFIMGCK -#[derive(proto_derive::CmdID)] -#[cmdid(3744)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TakeTrainVisitorUntakenBehaviorRewardScRsp { - /// offset: 24 - #[prost(uint32, repeated, tag = "3")] - pub edhhgcpdkik: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(uint32, tag = "14")] - pub visitor_id: u32, - /// offset: 32 - #[prost(uint32, tag = "10")] pub retcode: u32, } -/// Obf: ONLDPCLJMLP +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(3781)] +#[cmdid(3761)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct ShowNewSupplementVisitorCsReq { +pub struct Cmljlfnkmbd { /// offset: 24 - #[prost(uint32, repeated, tag = "5")] - pub famhpmfoijh: ::prost::alloc::vec::Vec, + #[prost(uint32, repeated, tag = "7")] + pub nnimcjeoojg: ::prost::alloc::vec::Vec, } -/// Obf: GMJIFOALLOJ +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(3769)] +#[cmdid(3745)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ShowNewSupplementVisitorScRsp { +pub struct Ooigfjfmmhn { /// offset: 24 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "9")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Nhbddinfkoh { +pub struct Nonamcgjkbc { /// offset: 40 - #[prost(uint32, tag = "10")] - pub kbcdecdnefm: u32, + #[prost(int32, tag = "11")] + pub jjfmjjhplia: i32, /// offset: 32 - #[prost(int32, tag = "5")] - pub ieagbpemflg: i32, - /// offset: 36 - #[prost(uint32, tag = "1")] - pub item_id: u32, - /// offset: 48 - #[prost(int32, tag = "2")] - pub lljaegobhmp: i32, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub iimoplcfhah: u32, - /// offset: 24 - #[prost(uint64, tag = "13")] - pub unique_id: u64, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Kchjhcljock { - /// offset: 44 - #[prost(uint32, tag = "5")] - pub cpodejofpdd: u32, - /// offset: 36 - #[prost(uint32, tag = "10")] - pub diphgghfmcp: u32, - /// offset: 24 - #[prost(message, repeated, tag = "3")] - pub hjbpkcfkhli: ::prost::alloc::vec::Vec, - /// offset: 32 - #[prost(enumeration = "Dcjaopdinoi", tag = "6")] - pub embkicmefco: i32, - /// offset: 40 - #[prost(enumeration = "Hgkkppljboi", tag = "14")] - pub clfgfaboiop: i32, -} -/// Obf: NKPEMNOPMNO -#[derive(proto_derive::CmdID)] -#[cmdid(6499)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureGetDataCsReq {} -/// Obf: OEPEPLALCOB -#[derive(proto_derive::CmdID)] -#[cmdid(6423)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TravelBrochureGetDataScRsp { - /// offset: 44 - #[prost(uint32, tag = "2")] - pub retcode: u32, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub kmhdfladepi: u32, - /// offset: 32 - #[prost(map = "uint32, uint32", tag = "11")] - pub fkbbomhekpe: ::std::collections::HashMap, - /// offset: 24 - #[prost(map = "uint32, message", tag = "10")] - pub mibclbgmdla: ::std::collections::HashMap, -} -/// Obf: ICIFONJONFA -#[derive(proto_derive::CmdID)] -#[cmdid(6498)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochurePageUnlockScNotify { - /// offset: 24 - #[prost(uint32, tag = "1")] - pub cpodejofpdd: u32, -} -/// Obf: ELLAHNNAPLN -#[derive(proto_derive::CmdID)] -#[cmdid(6483)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureSelectMessageCsReq { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub cpodejofpdd: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub diphgghfmcp: u32, -} -/// Obf: IOHEBKBCGNE -#[derive(proto_derive::CmdID)] -#[cmdid(6486)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TravelBrochureSelectMessageScRsp { - /// offset: 40 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub cagglkliimf: ::core::option::Option, - /// offset: 32 - #[prost(message, optional, tag = "15")] - pub reward: ::core::option::Option, -} -/// Obf: FBLEAEPJAMC -#[derive(proto_derive::CmdID)] -#[cmdid(6494)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureApplyPasterCsReq { - /// offset: 28 #[prost(int32, tag = "3")] - pub lljaegobhmp: i32, - /// offset: 24 - #[prost(uint32, tag = "8")] - pub kbcdecdnefm: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub item_id: u32, - /// offset: 44 - #[prost(uint32, tag = "12")] - pub cpodejofpdd: u32, - /// offset: 40 - #[prost(int32, tag = "10")] - pub ieagbpemflg: i32, - /// offset: 32 - #[prost(uint32, tag = "14")] - pub iimoplcfhah: u32, -} -/// Obf: CHEPGAMCBIH -#[derive(proto_derive::CmdID)] -#[cmdid(6452)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TravelBrochureApplyPasterScRsp { - /// offset: 32 - #[prost(uint32, tag = "14")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub cagglkliimf: ::core::option::Option, -} -/// Obf: CHGGONIIOHA -#[derive(proto_derive::CmdID)] -#[cmdid(6419)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureRemovePasterCsReq { - /// offset: 24 - #[prost(uint64, tag = "14")] + pub chlccobhklj: i32, + /// offset: 48 + #[prost(uint64, tag = "1")] pub unique_id: u64, /// offset: 36 + #[prost(uint32, tag = "7")] + pub elojflffgdd: u32, + /// offset: 24 #[prost(uint32, tag = "4")] - pub cpodejofpdd: u32, - /// offset: 32 - #[prost(uint32, tag = "5")] + pub acfeinkgkkh: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] pub item_id: u32, } -/// Obf: ECBKPCALDFD #[derive(proto_derive::CmdID)] -#[cmdid(6444)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TravelBrochureRemovePasterScRsp { +pub struct Kjenhpfpjog { + /// offset: 24 + #[prost(message, repeated, tag = "14")] + pub cjfoomiieeh: ::prost::alloc::vec::Vec, + /// offset: 44 + #[prost(uint32, tag = "13")] + pub ojebfhlbjon: u32, + /// offset: 36 + #[prost(enumeration = "Bgenplbpied", tag = "15")] + pub jbijcjlhglg: i32, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub lmoopiikdkk: u32, /// offset: 32 + #[prost(enumeration = "Ekibcbilkoc", tag = "2")] + pub bcpjfdkpejh: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6447)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Loejldbmelc {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6409)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Odnhkddnlpb { + /// offset: 44 + #[prost(uint32, tag = "9")] + pub retcode: u32, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub custom_value: u32, + /// offset: 16 + #[prost(map = "uint32, uint32", tag = "8")] + pub boehadjmgap: ::std::collections::HashMap, + /// offset: 24 + #[prost(map = "uint32, message", tag = "4")] + pub lhkbkmdekep: ::std::collections::HashMap, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6438)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Akoojpggiid { + /// offset: 24 + #[prost(uint32, tag = "10")] + pub ojebfhlbjon: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6451)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Knlcknhneio { + /// offset: 28 #[prost(uint32, tag = "5")] + pub lmoopiikdkk: u32, + /// offset: 24 + #[prost(uint32, tag = "6")] + pub ojebfhlbjon: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6411)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Helmghhllmb { + /// offset: 16 + #[prost(message, optional, tag = "13")] + pub hhcleicgfmh: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "11")] pub retcode: u32, /// offset: 24 #[prost(message, optional, tag = "1")] - pub cagglkliimf: ::core::option::Option, + pub reward: ::core::option::Option, } -/// Obf: BNIFAHOFPCL +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Oaapkanjgnb { + /// offset: 36 + #[prost(int32, tag = "9")] + pub chlccobhklj: i32, + /// offset: 28 + #[prost(uint32, tag = "13")] + pub elojflffgdd: u32, + /// offset: 44 + #[prost(uint32, tag = "8")] + pub ojebfhlbjon: u32, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub item_id: u32, + /// offset: 24 + #[prost(uint32, tag = "12")] + pub acfeinkgkkh: u32, + /// offset: 32 + #[prost(int32, tag = "1")] + pub jjfmjjhplia: i32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6420)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mbconmahpgc { + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub hhcleicgfmh: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6495)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Bfpilcmlfdn { + /// offset: 24 + #[prost(uint32, tag = "14")] + pub ojebfhlbjon: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] + pub item_id: u32, + /// offset: 32 + #[prost(uint64, tag = "13")] + pub unique_id: u64, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6491)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Cpbmoiipkmp { + /// offset: 16 + #[prost(message, optional, tag = "6")] + pub hhcleicgfmh: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "4")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6461)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Ljaekjbgajh { + /// offset: 44 + #[prost(uint32, tag = "1")] + pub item_id: u32, + /// offset: 24 + #[prost(uint32, tag = "15")] + pub ojebfhlbjon: u32, + /// offset: 36 + #[prost(uint32, tag = "12")] + pub elojflffgdd: u32, + /// offset: 40 + #[prost(int32, tag = "14")] + pub jjfmjjhplia: i32, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub acfeinkgkkh: u32, + /// offset: 28 + #[prost(int32, tag = "5")] + pub chlccobhklj: i32, + /// offset: 48 + #[prost(uint64, tag = "2")] + pub unique_id: u64, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6445)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Piihefopbgl { + /// offset: 16 + #[prost(message, optional, tag = "5")] + pub hhcleicgfmh: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub retcode: u32, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6476)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Aaddjicopgg { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub ibnknepgbdj: u32, + /// offset: 28 + #[prost(uint32, tag = "11")] + pub num: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Imljehiimlf { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub ibnknepgbdj: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub num: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6450)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gmojklolcmi { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub value: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6481)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureUpdatePasterPosCsReq { - /// offset: 36 - #[prost(uint32, tag = "15")] - pub iimoplcfhah: u32, - /// offset: 52 - #[prost(int32, tag = "6")] - pub ieagbpemflg: i32, - /// offset: 48 - #[prost(uint32, tag = "4")] - pub kbcdecdnefm: u32, - /// offset: 32 - #[prost(uint32, tag = "3")] - pub cpodejofpdd: u32, - /// offset: 24 - #[prost(uint64, tag = "2")] - pub unique_id: u64, - /// offset: 40 - #[prost(uint32, tag = "13")] - pub item_id: u32, - /// offset: 44 - #[prost(int32, tag = "7")] - pub lljaegobhmp: i32, -} -/// Obf: BLKKMEBCFNC -#[derive(proto_derive::CmdID)] -#[cmdid(6469)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TravelBrochureUpdatePasterPosScRsp { - /// offset: 32 - #[prost(uint32, tag = "6")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "15")] - pub cagglkliimf: ::core::option::Option, -} -/// Obf: CCCDIFAFKDA -#[derive(proto_derive::CmdID)] -#[cmdid(6457)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureGetPasterScNotify { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub num: u32, - /// offset: 24 - #[prost(uint32, tag = "5")] - pub fkkobdmfhil: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gkdihiffhfd { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub fkkobdmfhil: u32, +pub struct Hpnfjegcfdm { /// offset: 24 #[prost(uint32, tag = "8")] - pub num: u32, + pub retcode: u32, } -/// Obf: EFDCMPEMNDE +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6492)] +#[cmdid(6493)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureSetCustomValueCsReq { +pub struct Gngfhkpcgjo { /// offset: 24 - #[prost(uint32, tag = "3")] - pub value: u32, + #[prost(enumeration = "Ekibcbilkoc", tag = "7")] + pub ekcglflcnkl: i32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub ojebfhlbjon: u32, } -/// Obf: NHHPGHKFOKA +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6437)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureSetCustomValueScRsp { +pub struct Ieohibmaldb { /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "4")] pub retcode: u32, } -/// Obf: FPNIALGEAGM +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(6468)] +#[cmdid(6410)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureSetPageDescStatusCsReq { +pub struct Kalfpkolcmc { /// offset: 24 - #[prost(enumeration = "Dcjaopdinoi", tag = "7")] - pub geibgfdenja: i32, - /// offset: 28 - #[prost(uint32, tag = "5")] - pub cpodejofpdd: u32, + #[prost(uint32, tag = "1")] + pub ojebfhlbjon: u32, } -/// Obf: BIDKIKBGMPF +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(6449)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochureSetPageDescStatusScRsp { - /// offset: 24 - #[prost(uint32, tag = "10")] - pub retcode: u32, -} -/// Obf: HBDADEIJEMO -#[derive(proto_derive::CmdID)] -#[cmdid(6480)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TravelBrochurePageResetCsReq { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub cpodejofpdd: u32, -} -/// Obf: DFLIIEMHJBI -#[derive(proto_derive::CmdID)] -#[cmdid(6477)] +#[cmdid(6467)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TravelBrochurePageResetScRsp { +pub struct Pdfnjcmjffe { /// offset: 32 - #[prost(uint32, tag = "3")] + #[prost(uint32, tag = "8")] pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "15")] - pub cagglkliimf: ::core::option::Option, + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub hhcleicgfmh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Kbjphlnapgi { - /// offset: 40 - #[prost(int32, tag = "4")] - pub ieagbpemflg: i32, - /// offset: 32 - #[prost(uint32, tag = "6")] - pub iimoplcfhah: u32, - /// offset: 28 - #[prost(int32, tag = "13")] - pub lljaegobhmp: i32, - /// offset: 24 - #[prost(uint32, tag = "12")] - pub kbcdecdnefm: u32, +pub struct Cahglcjakhk { /// offset: 36 - #[prost(uint32, tag = "2")] + #[prost(int32, tag = "3")] + pub chlccobhklj: i32, + /// offset: 40 + #[prost(uint32, tag = "11")] + pub acfeinkgkkh: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] + pub elojflffgdd: u32, + /// offset: 28 + #[prost(uint32, tag = "8")] pub item_id: u32, -} -/// Obf: NLJPMPBFPAF -#[derive(proto_derive::CmdID)] -#[cmdid(6405)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TravelBrochureApplyPasterListCsReq { /// offset: 32 - #[prost(uint32, tag = "13")] - pub cpodejofpdd: u32, + #[prost(int32, tag = "5")] + pub jjfmjjhplia: i32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6462)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ljghhmafmjc { /// offset: 16 #[prost(message, repeated, tag = "4")] - pub gedglncpggn: ::prost::alloc::vec::Vec, -} -/// Obf: HOOFPBMCIBH -#[derive(proto_derive::CmdID)] -#[cmdid(6451)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct TravelBrochureApplyPasterListScRsp { - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub cagglkliimf: ::core::option::Option, + pub dcjpdnppkfj: ::prost::alloc::vec::Vec, /// offset: 32 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "3")] + pub ojebfhlbjon: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6435)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Pdngjbanleh { + /// offset: 32 + #[prost(uint32, tag = "10")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "5")] + pub hhcleicgfmh: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Injfohnjgmg { - /// offset: 40 - #[prost(enumeration = "Imknbjcoiop", tag = "10")] - pub r#type: i32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub ilhgneplodm: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub jelmcjbicjn: u32, +pub struct Hkbckoepdbb { /// offset: 36 - #[prost(uint32, tag = "9")] - pub nclomnehpmj: u32, + #[prost(uint32, tag = "4")] + pub mbkaaojacca: u32, /// offset: 32 - #[prost(uint32, tag = "5")] - pub egkdinmmena: u32, + #[prost(uint32, tag = "14")] + pub ihlpjjmjlng: u32, + /// offset: 28 + #[prost(uint32, tag = "2")] + pub ncooadgnbce: u32, + /// offset: 40 + #[prost(uint32, tag = "12")] + pub phpjnbbaigg: u32, + /// offset: 24 + #[prost(enumeration = "Nllakaobhdf", tag = "5")] + pub r#type: i32, } -/// Obf: OEKOJKFLFMM +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4499)] +#[cmdid(4447)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TreasureDungeonDataScNotify { +pub struct Mjhodkbcooe { /// offset: 16 #[prost(message, optional, tag = "9")] - pub dlejpjjcelj: ::core::option::Option, + pub abjifkgcalm: ::core::option::Option, } -/// Obf: KIIHPDMPPAK +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(4423)] +#[cmdid(4409)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct TreasureDungeonFinishScNotify { - /// offset: 52 - #[prost(uint32, tag = "6")] - pub aecncdpjpdg: u32, - /// offset: 48 - #[prost(uint32, tag = "4")] - pub nlmdemohboo: u32, - /// offset: 44 - #[prost(bool, tag = "2")] - pub is_win: bool, - /// offset: 24 - #[prost(map = "uint32, uint32", tag = "15")] - pub jbcgkldmhnl: ::std::collections::HashMap, - /// offset: 56 - #[prost(uint32, tag = "5")] - pub hohhbihfjeh: u32, +pub struct Jkneokckmmf { /// offset: 40 - #[prost(uint32, tag = "7")] - pub pikapdjhgnd: u32, - /// offset: 32 - #[prost(map = "uint32, uint32", tag = "10")] - pub kgmmpgfgodj: ::std::collections::HashMap, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Klcknklponm { - /// offset: 48 - #[prost(message, repeated, tag = "13")] - pub mkoambmkdid: ::prost::alloc::vec::Vec, - /// offset: 104 #[prost(uint32, tag = "2")] - pub pikapdjhgnd: u32, - /// offset: 24 - #[prost(message, repeated, tag = "2020")] - pub kjjomephjee: ::prost::alloc::vec::Vec, + pub nddcmpbknaf: u32, + /// offset: 56 + #[prost(bool, tag = "10")] + pub is_win: bool, + /// offset: 52 + #[prost(uint32, tag = "3")] + pub jeahaopffae: u32, /// offset: 16 - #[prost(message, repeated, tag = "9")] - pub bbckfjihidm: ::prost::alloc::vec::Vec, + #[prost(map = "uint32, uint32", tag = "11")] + pub igjenhjoing: ::std::collections::HashMap, + /// offset: 48 + #[prost(uint32, tag = "9")] + pub kbbihmfmheg: u32, /// offset: 32 - #[prost(message, repeated, tag = "74")] - pub gffojccklfm: ::prost::alloc::vec::Vec, - /// offset: 112 - #[prost(uint32, tag = "8")] - pub ncbhadloaga: u32, - /// offset: 84 + #[prost(map = "uint32, uint32", tag = "7")] + pub fpfijjkkkeo: ::std::collections::HashMap, + /// offset: 44 #[prost(uint32, tag = "14")] - pub fcjeckcickb: u32, - /// offset: 64 - #[prost(message, repeated, tag = "1842")] - pub avatar_list: ::prost::alloc::vec::Vec, - /// offset: 96 - #[prost(uint32, tag = "11")] - pub jafnpnmohcm: u32, - /// offset: 88 - #[prost(uint32, tag = "12")] - pub phhkbaenbmm: u32, - /// offset: 100 - #[prost(uint32, tag = "138")] - pub iialglddnad: u32, - /// offset: 108 - #[prost(uint32, tag = "10")] - pub nlmdemohboo: u32, - /// offset: 94 - #[prost(bool, tag = "1201")] - pub cfdpdenppdh: bool, - /// offset: 92 - #[prost(bool, tag = "1532")] - pub nmfapgolodj: bool, - /// offset: 72 - #[prost(message, repeated, tag = "791")] - pub item_list: ::prost::alloc::vec::Vec, - /// offset: 40 - #[prost(message, repeated, tag = "689")] - pub buff_list: ::prost::alloc::vec::Vec, + pub kjhplgbkogh: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ghdocjameif { /// offset: 93 - #[prost(bool, tag = "351")] - pub nodbpkhojec: bool, + #[prost(bool, tag = "1525")] + pub iokfbkiinch: bool, + /// offset: 64 + #[prost(message, repeated, tag = "8")] + pub blbfkekiohe: ::prost::alloc::vec::Vec, + /// offset: 94 + #[prost(bool, tag = "818")] + pub laemfcbemlj: bool, + /// offset: 40 + #[prost(message, repeated, tag = "1570")] + pub bgoiddjpdbi: ::prost::alloc::vec::Vec, /// offset: 80 + #[prost(uint32, tag = "1")] + pub ojccfnefpog: u32, + /// offset: 96 #[prost(uint32, tag = "4")] + pub gabmfcfhpim: u32, + /// offset: 108 + #[prost(uint32, tag = "3")] + pub kbbihmfmheg: u32, + /// offset: 100 + #[prost(uint32, tag = "14")] + pub jeahaopffae: u32, + /// offset: 88 + #[prost(uint32, tag = "10")] + pub cfagmmkagno: u32, + /// offset: 92 + #[prost(bool, tag = "82")] + pub jeiigekdkhp: bool, + /// offset: 56 + #[prost(message, repeated, tag = "657")] + pub item_list: ::prost::alloc::vec::Vec, + /// offset: 112 + #[prost(uint32, tag = "7")] + pub mfngmjffeil: u32, + /// offset: 24 + #[prost(message, repeated, tag = "359")] + pub buff_list: ::prost::alloc::vec::Vec, + /// offset: 84 + #[prost(uint32, tag = "1414")] + pub kgaekgcnikb: u32, + /// offset: 104 + #[prost(uint32, tag = "5")] pub map_id: u32, + /// offset: 32 + #[prost(message, repeated, tag = "1767")] + pub cednhgeklhg: ::prost::alloc::vec::Vec, + /// offset: 72 + #[prost(message, repeated, tag = "1307")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 16 + #[prost(message, repeated, tag = "6")] + pub cfioelbmdld: ::prost::alloc::vec::Vec, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lhanbgnjcif { +pub struct Fmhhkpndmga { /// offset: 24 #[prost(uint32, tag = "7")] pub item_id: u32, /// offset: 28 - #[prost(uint32, tag = "5")] - pub mbejblfhcbh: u32, + #[prost(uint32, tag = "14")] + pub item_count: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Pcaignjkafa { - /// offset: 44 - #[prost(uint32, tag = "13")] - pub avatar_id: u32, +pub struct Beloahdelkd { /// offset: 36 - #[prost(uint32, tag = "10")] - pub eajljnbnpnp: u32, - /// offset: 40 - #[prost(uint32, tag = "4")] - pub avatar_type: u32, + #[prost(uint32, tag = "6")] + pub jkeaoggdplb: u32, /// offset: 16 - #[prost(message, optional, tag = "15")] + #[prost(message, optional, tag = "5")] pub sp_bar: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "15")] + pub avatar_id: u32, + /// offset: 44 + #[prost(uint32, tag = "9")] + pub avatar_type: u32, /// offset: 32 - #[prost(uint32, tag = "8")] + #[prost(uint32, tag = "7")] pub hp: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lkhhgjppmpp { - /// offset: 28 - #[prost(uint32, tag = "1")] - pub avatar_type: u32, +pub struct Pdpcifiohnp { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "2")] pub avatar_id: u32, + /// offset: 28 + #[prost(uint32, tag = "12")] + pub avatar_type: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Enbnfolcdie { - /// offset: 24 - #[prost(uint32, tag = "2")] - pub akahnmlnefn: u32, +pub struct Abecknhhklj { /// offset: 28 - #[prost(uint32, tag = "1")] + #[prost(uint32, tag = "8")] + pub onmnmmdikek: u32, + /// offset: 24 + #[prost(uint32, tag = "10")] pub buff_id: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Lkcmfeaahhm { - /// offset: 40 - #[prost(uint32, tag = "8")] - pub monhibbpkee: u32, - /// offset: 34 - #[prost(bool, tag = "1")] - pub demncglljcp: bool, +pub struct Fblebofibek { + /// offset: 32 + #[prost(uint32, tag = "3")] + pub dohjfnmkpeb: u32, + /// offset: 24 + #[prost(message, repeated, tag = "1446")] + pub buff_list: ::prost::alloc::vec::Vec, + /// offset: 42 + #[prost(bool, tag = "13")] + pub lbdbpfejjom: bool, /// offset: 44 - #[prost(uint32, tag = "9")] - pub ollhobhdden: u32, - /// offset: 33 + #[prost(uint32, tag = "10")] + pub bdlgejfiheb: u32, + /// offset: 41 #[prost(bool, tag = "2")] - pub knlfeldecal: bool, - /// offset: 35 - #[prost(bool, tag = "5")] - pub locked: bool, - /// offset: 36 - #[prost(uint32, tag = "11")] - pub hfnhlcfnhkd: u32, - /// offset: 32 - #[prost(bool, tag = "13")] - pub limmileapjm: bool, - /// offset: 24 - #[prost(message, repeated, tag = "1994")] - pub buff_list: ::prost::alloc::vec::Vec, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Gggcocpgbbh { - /// offset: 24 - #[prost(uint32, tag = "8")] - pub leaaebafchp: u32, - /// offset: 28 - #[prost(uint32, tag = "6")] - pub hfnhlcfnhkd: u32, - /// offset: 36 - #[prost(uint32, tag = "2")] - pub egkdinmmena: u32, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub ecghnfccbjj: u32, - /// offset: 32 - #[prost(uint32, tag = "7")] - pub buff_id: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Abhfabfgpof { - /// offset: 36 + pub idbfkgffdmj: bool, + /// offset: 43 #[prost(bool, tag = "12")] - pub biinncndpcg: bool, - /// offset: 37 - #[prost(bool, tag = "13")] - pub cloonoifefo: bool, + pub eboafiaodfm: bool, /// offset: 40 - #[prost(uint32, tag = "14")] - pub pikapdjhgnd: u32, - /// offset: 32 - #[prost(uint32, tag = "2")] - pub nlmdemohboo: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub nkhkdjkegdh: u32, - /// offset: 24 + #[prost(bool, tag = "9")] + pub fdoaekekibn: bool, + /// offset: 36 #[prost(uint32, tag = "8")] - pub jafnpnmohcm: u32, - /// offset: 44 - #[prost(uint32, tag = "6")] - pub fcjeckcickb: u32, + pub fheigffedho: u32, } -/// Obf: NKFCKCACHEC #[derive(proto_derive::CmdID)] -#[cmdid(4481)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetTreasureDungeonActivityDataCsReq {} -/// Obf: HPFFPDGLGKL -#[derive(proto_derive::CmdID)] -#[cmdid(4469)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetTreasureDungeonActivityDataScRsp { +pub struct Agabidajijc { + /// offset: 28 + #[prost(uint32, tag = "7")] + pub fheigffedho: u32, + /// offset: 36 + #[prost(uint32, tag = "6")] + pub mehoapjkdld: u32, /// offset: 24 - #[prost(message, repeated, tag = "14")] - pub hiookmoandn: ::prost::alloc::vec::Vec, - /// offset: 32 #[prost(uint32, tag = "9")] - pub retcode: u32, -} -/// Obf: AKOOMBKLAMP -#[derive(proto_derive::CmdID)] -#[cmdid(4457)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterTreasureDungeonCsReq { + pub dbfgmciigfk: u32, + /// offset: 40 + #[prost(uint32, tag = "3")] + pub buff_id: u32, /// offset: 32 #[prost(uint32, tag = "2")] - pub nlmdemohboo: u32, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub avatar_list: ::prost::alloc::vec::Vec, + pub ncooadgnbce: u32, } -/// Obf: GMLFLPNFDOH #[derive(proto_derive::CmdID)] -#[cmdid(4415)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct EnterTreasureDungeonScRsp { - /// offset: 32 - #[prost(uint32, tag = "4")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub dlejpjjcelj: ::core::option::Option, -} -/// Obf: GFDIOLJOMAJ -#[derive(proto_derive::CmdID)] -#[cmdid(4492)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct OpenTreasureDungeonGridCsReq { +pub struct Gbiignmckdk { + /// offset: 25 + #[prost(bool, tag = "4")] + pub mdchnanfgim: bool, + /// offset: 44 + #[prost(uint32, tag = "5")] + pub kbbihmfmheg: u32, + /// offset: 40 + #[prost(uint32, tag = "10")] + pub addichojhee: u32, + /// offset: 32 + #[prost(uint32, tag = "12")] + pub jeahaopffae: u32, /// offset: 24 - #[prost(uint32, tag = "6")] - pub hfnhlcfnhkd: u32, + #[prost(bool, tag = "14")] + pub has_passed: bool, /// offset: 28 - #[prost(uint32, tag = "4")] - pub nlmdemohboo: u32, + #[prost(uint32, tag = "11")] + pub cfagmmkagno: u32, + /// offset: 36 + #[prost(uint32, tag = "8")] + pub gabmfcfhpim: u32, } -/// Obf: IAABENEAADF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4437)] +#[cmdid(4461)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Epkbemehogj {} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4445)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct OpenTreasureDungeonGridScRsp { +pub struct Fbiddlbnamd { + /// offset: 24 + #[prost(message, repeated, tag = "2")] + pub jcbdhojeabc: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "15")] pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4476)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Acfdebhkkpp { + /// offset: 24 + #[prost(message, repeated, tag = "1")] + pub avatar_list: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(uint32, tag = "15")] + pub jeahaopffae: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4452)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Knmjmicmfio { + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub abjifkgcalm: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4450)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pomhdinlfim { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub jeahaopffae: u32, + /// offset: 24 + #[prost(uint32, tag = "4")] + pub fheigffedho: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4481)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ognbndfgadh { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "8")] + pub abjifkgcalm: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(4410)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Pbkifmaggcg { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub fheigffedho: u32, + /// offset: 28 + #[prost(uint32, tag = "9")] + pub display_value: u32, + /// offset: 32 + #[prost(uint32, tag = "8")] + pub jeahaopffae: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4467)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mmhafmbdkfh { /// offset: 16 #[prost(message, optional, tag = "11")] - pub dlejpjjcelj: ::core::option::Option, -} -/// Obf: JFMCKKGFKFI -#[derive(proto_derive::CmdID)] -#[cmdid(4480)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct InteractTreasureDungeonGridCsReq { + pub abjifkgcalm: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "11")] - pub hfnhlcfnhkd: u32, - /// offset: 28 - #[prost(uint32, tag = "1")] - pub display_value: u32, - /// offset: 24 - #[prost(uint32, tag = "9")] - pub nlmdemohboo: u32, -} -/// Obf: MMEEDEJFBAC -#[derive(proto_derive::CmdID)] -#[cmdid(4477)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct InteractTreasureDungeonGridScRsp { - /// offset: 24 - #[prost(message, optional, tag = "13")] - pub dlejpjjcelj: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "6")] + #[prost(uint32, tag = "8")] pub retcode: u32, } -/// Obf: GEHCEAFOCHN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4405)] +#[cmdid(4462)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct UseTreasureDungeonItemCsReq { +pub struct Cmconfdmkcb { /// offset: 24 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "3")] + pub jeahaopffae: u32, + /// offset: 32 + #[prost(uint32, tag = "5")] + pub fheigffedho: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] pub item_id: u32, - /// offset: 28 - #[prost(uint32, tag = "10")] - pub hfnhlcfnhkd: u32, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub nlmdemohboo: u32, } -/// Obf: OLHDFPOJCNN +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4451)] +#[cmdid(4435)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct UseTreasureDungeonItemScRsp { - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, +pub struct Oelgflbmmpo { /// offset: 16 - #[prost(message, optional, tag = "7")] - pub dlejpjjcelj: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub abjifkgcalm: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "9")] + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Jackejlkjna { +pub struct Gfkbeddkkij { /// offset: 28 + #[prost(uint32, tag = "11")] + pub avatar_id: u32, + /// offset: 24 #[prost(enumeration = "AvatarType", tag = "12")] pub avatar_type: i32, - /// offset: 24 - #[prost(uint32, tag = "3")] - pub avatar_id: u32, } -/// Obf: LBMFNALBLOK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4468)] +#[cmdid(4493)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightTreasureDungeonMonsterCsReq { +pub struct Jpdaocmcnen { /// offset: 32 - #[prost(uint32, tag = "6")] - pub nlmdemohboo: u32, - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub avatar_list: ::prost::alloc::vec::Vec, + #[prost(uint32, tag = "14")] + pub fheigffedho: u32, + /// offset: 16 + #[prost(message, repeated, tag = "8")] + pub avatar_list: ::prost::alloc::vec::Vec, /// offset: 36 #[prost(uint32, tag = "2")] - pub hfnhlcfnhkd: u32, + pub jeahaopffae: u32, } -/// Obf: KAFEBFDKNIE +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(4449)] +#[cmdid(4437)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct FightTreasureDungeonMonsterScRsp { - /// offset: 32 - #[prost(uint32, tag = "3")] - pub retcode: u32, +pub struct Aopcnpneppn { /// offset: 24 - #[prost(message, optional, tag = "12")] + #[prost(message, optional, tag = "11")] pub battle_info: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "10")] + pub retcode: u32, } -/// Obf: FPKJPABNAPF +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(4429)] +#[cmdid(4498)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct QuitTreasureDungeonCsReq { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub nlmdemohboo: u32, +pub struct Aampneiojdh { /// offset: 28 - #[prost(bool, tag = "8")] - pub pcpdfjhdjcc: bool, -} -/// Obf: IAMOBNBMCIF -#[derive(proto_derive::CmdID)] -#[cmdid(4438)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct QuitTreasureDungeonScRsp { + #[prost(bool, tag = "6")] + pub lmeeapiecch: bool, /// offset: 24 #[prost(uint32, tag = "14")] + pub jeahaopffae: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(4446)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kgninkpkepd { + /// offset: 24 + #[prost(uint32, tag = "1")] pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Tutorial { - /// offset: 28 - #[prost(uint32, tag = "4")] - pub id: u32, /// offset: 24 - #[prost(enumeration = "TutorialStatus", tag = "1")] + #[prost(uint32, tag = "15")] + pub id: u32, + /// offset: 28 + #[prost(enumeration = "TutorialStatus", tag = "8")] pub status: i32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct TutorialGuide { - /// offset: 28 - #[prost(enumeration = "TutorialStatus", tag = "11")] - pub status: i32, /// offset: 24 - #[prost(uint32, tag = "4")] + #[prost(enumeration = "TutorialStatus", tag = "2")] + pub status: i32, + /// offset: 28 + #[prost(uint32, tag = "13")] pub id: u32, } -/// Obf: FKJBDHDHNNH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1699)] +#[cmdid(1647)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTutorialCsReq {} -/// Obf: GetTutorialScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1623)] +#[cmdid(1609)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTutorialScRsp { + /// offset: 24 + #[prost(message, repeated, tag = "11")] + pub tutorial_list: ::prost::alloc::vec::Vec, /// offset: 32 #[prost(uint32, tag = "9")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "14")] - pub tutorial_list: ::prost::alloc::vec::Vec, } -/// Obf: LCNDJLKGLNN +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1698)] +#[cmdid(1638)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetTutorialGuideCsReq {} -/// Obf: GetTutorialGuideScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1665)] +#[cmdid(1617)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetTutorialGuideScRsp { /// offset: 32 - #[prost(uint32, tag = "10")] + #[prost(uint32, tag = "11")] pub retcode: u32, - /// offset: 24 - #[prost(message, repeated, tag = "5")] + /// offset: 16 + #[prost(message, repeated, tag = "6")] pub tutorial_guide_list: ::prost::alloc::vec::Vec, } -/// Obf: HBLPNJNGONJ +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1683)] +#[cmdid(1651)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTutorialCsReq { /// offset: 24 #[prost(uint32, tag = "3")] pub tutorial_id: u32, } -/// Obf: UnlockTutorialScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1686)] +#[cmdid(1611)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTutorialScRsp { /// offset: 24 - #[prost(message, optional, tag = "10")] + #[prost(message, optional, tag = "6")] pub tutorial: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "12")] + #[prost(uint32, tag = "15")] pub retcode: u32, } -/// Obf: ACGNLIALGGG +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1694)] +#[cmdid(1689)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTutorialGuideCsReq { /// offset: 24 - #[prost(uint32, tag = "14")] + #[prost(uint32, tag = "7")] pub group_id: u32, } -/// Obf: UnlockTutorialGuideScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1652)] +#[cmdid(1620)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct UnlockTutorialGuideScRsp { - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub tutorial_guide: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "2")] + #[prost(uint32, tag = "8")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub tutorial_guide: ::core::option::Option, } -/// Obf: AJEMPHNPADK +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1619)] +#[cmdid(1695)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishTutorialCsReq { - /// offset: 28 - #[prost(enumeration = "Mpjppghfheh", tag = "4")] - pub bmlemobcncm: i32, /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(enumeration = "Kniklalgadk", tag = "5")] + pub kanhafonjlm: i32, + /// offset: 28 + #[prost(uint32, tag = "12")] pub tutorial_id: u32, } -/// Obf: FinishTutorialScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1644)] +#[cmdid(1691)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishTutorialScRsp { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub tutorial: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "11")] pub retcode: u32, + /// offset: 24 + #[prost(message, optional, tag = "6")] + pub tutorial: ::core::option::Option, } -/// Obf: FLHGCMBLLFH +/// Type: Req #[derive(proto_derive::CmdID)] -#[cmdid(1681)] +#[cmdid(1661)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct FinishTutorialGuideCsReq { /// offset: 24 - #[prost(uint32, tag = "5")] + #[prost(uint32, tag = "14")] pub group_id: u32, } -/// Obf: FinishTutorialGuideScRsp +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(1669)] +#[cmdid(1645)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FinishTutorialGuideScRsp { + /// offset: 16 + #[prost(message, optional, tag = "1")] + pub reward: ::core::option::Option, /// offset: 40 - #[prost(uint32, tag = "9")] + #[prost(uint32, tag = "12")] pub retcode: u32, /// offset: 32 - #[prost(message, optional, tag = "14")] + #[prost(message, optional, tag = "10")] pub tutorial_guide: ::core::option::Option, - /// offset: 16 - #[prost(message, optional, tag = "2")] - pub reward: ::core::option::Option, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Oiphnjefjlp { +pub struct Waypoint { + /// offset: 32 + #[prost(uint32, tag = "9")] + pub bgdckghpecb: u32, /// offset: 28 - #[prost(uint32, tag = "15")] - pub id: u32, - /// offset: 32 + #[prost(bool, tag = "3")] + pub is_new: bool, + /// offset: 24 #[prost(uint32, tag = "6")] - pub khfgdkngfdp: u32, - /// offset: 24 - #[prost(bool, tag = "8")] - pub is_new: bool, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Eikmjejlmgc { - /// offset: 32 - #[prost(uint32, tag = "7")] - pub nckelkegbgl: u32, - /// offset: 40 - #[prost(uint32, tag = "8")] pub id: u32, - /// offset: 16 - #[prost(uint32, repeated, tag = "10")] - pub ioodmakjdif: ::prost::alloc::vec::Vec, - /// offset: 36 - #[prost(bool, tag = "13")] - pub is_new: bool, } #[derive(proto_derive::CmdID)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct Ljjokghfidf { - /// offset: 24 - #[prost(message, repeated, tag = "9")] - pub konbfjpinhn: ::prost::alloc::vec::Vec, +pub struct ChapterBrief { /// offset: 16 - #[prost(message, optional, tag = "11")] - pub gokhjlmpnff: ::core::option::Option, + #[prost(uint32, repeated, tag = "9")] + pub taken_reward_id_list: ::prost::alloc::vec::Vec, + /// offset: 36 + #[prost(bool, tag = "15")] + pub is_new: bool, + /// offset: 40 + #[prost(uint32, tag = "5")] + pub clcpblinbcd: u32, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub id: u32, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Chapter { + /// offset: 24 + #[prost(message, repeated, tag = "13")] + pub bgpbggehdlg: ::prost::alloc::vec::Vec, + /// offset: 32 + #[prost(message, optional, tag = "15")] + pub oefapejbigf: ::core::option::Option, } -/// Obf: PLHMKHOFDHI #[derive(proto_derive::CmdID)] -#[cmdid(499)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetWaypointCsReq { /// offset: 24 - #[prost(uint32, tag = "5")] - pub kiekjeffphk: u32, + #[prost(uint32, tag = "4")] + pub cmlelldmboe: u32, } -/// Obf: BEBAEGDMBEL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(423)] +#[cmdid(409)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetWaypointScRsp { + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub fmhggmihlap: ::core::option::Option, /// offset: 36 - #[prost(uint32, tag = "13")] + #[prost(uint32, tag = "2")] pub retcode: u32, /// offset: 32 - #[prost(uint32, tag = "6")] - pub hoeahbifkci: u32, - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub fjjflkcmidj: ::core::option::Option, + #[prost(uint32, tag = "3")] + pub dcmnebaimdk: u32, } -/// Obf: FPGAEHAKKAF #[derive(proto_derive::CmdID)] -#[cmdid(498)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetCurWaypointCsReq { /// offset: 24 - #[prost(uint32, tag = "2")] - pub nkcmnafaioi: u32, + #[prost(uint32, tag = "12")] + pub khgfpccadai: u32, } -/// Obf: HMBALMGNPCK +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(465)] +#[cmdid(417)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct SetCurWaypointScRsp { - /// offset: 28 - #[prost(uint32, tag = "10")] - pub retcode: u32, /// offset: 24 - #[prost(uint32, tag = "15")] - pub hoeahbifkci: u32, + #[prost(uint32, tag = "8")] + pub dcmnebaimdk: u32, + /// offset: 28 + #[prost(uint32, tag = "5")] + pub retcode: u32, } -/// Obf: IHIHLPFGCGN #[derive(proto_derive::CmdID)] -#[cmdid(483)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct GetChapterCsReq {} -/// Obf: LEGFMFINLNL +/// Type: Rsp #[derive(proto_derive::CmdID)] -#[cmdid(486)] +#[cmdid(411)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct GetChapterScRsp { - /// offset: 32 - #[prost(uint32, tag = "12")] - pub hoeahbifkci: u32, /// offset: 36 + #[prost(uint32, tag = "10")] + pub dcmnebaimdk: u32, + /// offset: 32 #[prost(uint32, tag = "5")] pub retcode: u32, - /// offset: 16 - #[prost(message, repeated, tag = "7")] - pub ielpiclbbji: ::prost::alloc::vec::Vec, -} -/// Obf: MIBOLEPDJAB -#[derive(proto_derive::CmdID)] -#[cmdid(494)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct WaypointShowNewCsNotify { - /// offset: 28 - #[prost(uint32, tag = "11")] - pub kiekjeffphk: u32, /// offset: 24 - #[prost(uint32, tag = "1")] - pub nkcmnafaioi: u32, + #[prost(message, repeated, tag = "15")] + pub lkapjnheklk: ::prost::alloc::vec::Vec, } -/// Obf: INMIPNINICF +/// Type: Notify #[derive(proto_derive::CmdID)] -#[cmdid(452)] +#[cmdid(489)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeChapterRewardCsReq { +pub struct Bnjckfmedcc { /// offset: 28 - #[prost(uint32, tag = "1")] - pub kiekjeffphk: u32, + #[prost(uint32, tag = "13")] + pub khgfpccadai: u32, /// offset: 24 - #[prost(uint32, tag = "2")] - pub akdghhnklej: u32, + #[prost(uint32, tag = "6")] + pub cmlelldmboe: u32, } -/// Obf: FMEOOOHLMEJ #[derive(proto_derive::CmdID)] -#[cmdid(419)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct TakeChapterRewardScRsp { +pub struct Mldaddiolid { + /// offset: 24 + #[prost(uint32, tag = "5")] + pub cmlelldmboe: u32, + /// offset: 28 + #[prost(uint32, tag = "4")] + pub dfofdmdcgne: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(495)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Nfomijjigfa { /// offset: 24 #[prost(uint32, tag = "12")] - pub retcode: u32, + pub dfofdmdcgne: u32, /// offset: 32 - #[prost(uint32, tag = "14")] - pub kiekjeffphk: u32, + #[prost(uint32, tag = "13")] + pub cmlelldmboe: u32, /// offset: 28 - #[prost(uint32, tag = "9")] - pub akdghhnklej: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hfpffjimckm { - /// offset: 24 - #[prost(message, repeated, tag = "5")] - pub opcldnllnfh: ::prost::alloc::vec::Vec, - /// offset: 44 - #[prost(bool, tag = "2")] - pub bdnflicnfhn: bool, - /// offset: 32 - #[prost(message, optional, tag = "12")] - pub motion: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "10")] - pub lkjmlidaodm: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct Hehpioggieg { - /// offset: 40 - #[prost(string, tag = "14")] - pub miilnlhddjm: ::prost::alloc::string::String, - /// offset: 56 - #[prost(bool, tag = "2")] - pub bdnflicnfhn: bool, - /// offset: 48 - #[prost(uint32, tag = "5")] - pub lkjmlidaodm: u32, - /// offset: 24 - #[prost(message, repeated, tag = "7")] - pub opcldnllnfh: ::prost::alloc::vec::Vec, - /// offset: 52 - #[prost(uint32, tag = "9")] - pub id: u32, - /// offset: 16 - #[prost(message, optional, tag = "4")] - pub hefjejhojea: ::core::option::Option, -} -/// Obf: PPNCELOONKK -#[derive(proto_derive::CmdID)] -#[cmdid(6526)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct StartWolfBroGameCsReq { - /// offset: 16 - #[prost(message, optional, tag = "12")] - pub group_state_info: ::core::option::Option, - /// offset: 40 - #[prost(uint32, tag = "2")] - pub id: u32, - /// offset: 44 - #[prost(bool, tag = "6")] - pub djfcmlipdab: bool, - /// offset: 24 - #[prost(message, optional, tag = "3")] - pub motion: ::core::option::Option, -} -/// Obf: CLLNMGKEFAM -#[derive(proto_derive::CmdID)] -#[cmdid(6528)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct StartWolfBroGameScRsp { - /// offset: 16 - #[prost(message, optional, tag = "8")] - pub dnplihjgjih: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: GMMCJKMEGNO -#[derive(proto_derive::CmdID)] -#[cmdid(6521)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct ArchiveWolfBroGameCsReq { - /// offset: 24 - #[prost(message, optional, tag = "5")] - pub motion: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "4")] - pub id: u32, -} -/// Obf: LBHKNCBDGCO -#[derive(proto_derive::CmdID)] -#[cmdid(6538)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct ArchiveWolfBroGameScRsp { - /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, - /// offset: 16 - #[prost(message, optional, tag = "14")] - pub dnplihjgjih: ::core::option::Option, -} -/// Obf: GIGAEOCILFF -#[derive(proto_derive::CmdID)] -#[cmdid(6505)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct RestoreWolfBroGameArchiveCsReq { - /// offset: 24 - #[prost(uint32, tag = "11")] - pub id: u32, -} -/// Obf: GAGANNMHEPA -#[derive(proto_derive::CmdID)] -#[cmdid(6527)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct RestoreWolfBroGameArchiveScRsp { - /// offset: 32 - #[prost(uint32, tag = "5")] - pub retcode: u32, - /// offset: 24 - #[prost(message, optional, tag = "4")] - pub dnplihjgjih: ::core::option::Option, -} -/// Obf: FEFMJKKEMKP -#[derive(proto_derive::CmdID)] -#[cmdid(6520)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct QuitWolfBroGameCsReq { - /// offset: 24 - #[prost(uint32, tag = "15")] - pub id: u32, -} -/// Obf: CKLCOEHEMKE -#[derive(proto_derive::CmdID)] -#[cmdid(6544)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct QuitWolfBroGameScRsp { - /// offset: 16 - #[prost(message, optional, tag = "11")] - pub dnplihjgjih: ::core::option::Option, - /// offset: 32 #[prost(uint32, tag = "3")] pub retcode: u32, } -/// Obf: KNPEDHPKKHC #[derive(proto_derive::CmdID)] -#[cmdid(6501)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct GetWolfBroGameDataCsReq { +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nceefcdkncl { /// offset: 24 - #[prost(uint32, tag = "10")] + #[prost(message, optional, tag = "13")] + pub motion: ::core::option::Option, + /// offset: 32 + #[prost(message, repeated, tag = "5")] + pub ffodcecfohp: ::prost::alloc::vec::Vec, + /// offset: 40 + #[prost(uint32, tag = "1")] + pub fcndgbjkgdp: u32, + /// offset: 44 + #[prost(bool, tag = "6")] + pub fdbajfglnnk: bool, +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Nepjbfpmffn { + /// offset: 56 + #[prost(uint32, tag = "2")] pub id: u32, -} -/// Obf: LJEMHMMIAGF -#[derive(proto_derive::CmdID)] -#[cmdid(6545)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct GetWolfBroGameDataScRsp { - /// offset: 24 - #[prost(message, optional, tag = "10")] - pub dnplihjgjih: ::core::option::Option, /// offset: 32 - #[prost(uint32, tag = "7")] - pub retcode: u32, -} -/// Obf: LPFGHGCJBIL -#[derive(proto_derive::CmdID)] -#[cmdid(6543)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct WolfBroGameDataChangeScNotify { + #[prost(string, tag = "3")] + pub uuid: ::prost::alloc::string::String, + /// offset: 52 + #[prost(uint32, tag = "5")] + pub fcndgbjkgdp: u32, /// offset: 16 - #[prost(message, optional, tag = "4")] - pub dnplihjgjih: ::core::option::Option, + #[prost(message, optional, tag = "13")] + pub efigpbcgald: ::core::option::Option, + /// offset: 48 + #[prost(bool, tag = "4")] + pub fdbajfglnnk: bool, + /// offset: 40 + #[prost(message, repeated, tag = "7")] + pub ffodcecfohp: ::prost::alloc::vec::Vec, } -/// Obf: DPAPCGKGEKC -#[derive(proto_derive::CmdID)] -#[cmdid(6503)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct WolfBroGameUseBulletCsReq { - /// offset: 32 - #[prost(uint32, repeated, tag = "11")] - pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, - /// offset: 16 - #[prost(message, optional, tag = "3")] - pub mibcfimmikg: ::core::option::Option, -} -/// Obf: JNDKCCLFKIF -#[derive(proto_derive::CmdID)] -#[cmdid(6523)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct WolfBroGameUseBulletScRsp { - /// offset: 16 - #[prost(message, optional, tag = "1")] - pub dnplihjgjih: ::core::option::Option, - /// offset: 32 - #[prost(uint32, tag = "11")] - pub retcode: u32, -} -/// Obf: FDKODKFMHLK +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(6519)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct WolfBroGamePickupBulletCsReq { - /// offset: 16 - #[prost(message, optional, tag = "5")] - pub mibcfimmikg: ::core::option::Option, -} -/// Obf: JABEPKAINFO -#[derive(proto_derive::CmdID)] -#[cmdid(6547)] -#[derive(Clone, PartialEq, ::prost::Message)] -pub struct WolfBroGamePickupBulletScRsp { - /// offset: 32 - #[prost(uint32, tag = "10")] - pub retcode: u32, +pub struct Dhfhjjkpppd { /// offset: 24 - #[prost(message, optional, tag = "11")] - pub dnplihjgjih: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub motion: ::core::option::Option, + /// offset: 40 + #[prost(uint32, tag = "7")] + pub id: u32, + /// offset: 44 + #[prost(bool, tag = "12")] + pub ihofefjgabp: bool, + /// offset: 16 + #[prost(message, optional, tag = "14")] + pub group_state_info: ::core::option::Option, } -/// Obf: FKOLLCMEFIJ +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6502)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Kdaaebdkejg { + /// offset: 16 + #[prost(message, optional, tag = "9")] + pub pfhcjohgknn: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6548)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Joabmhcdhdl { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub id: u32, + /// offset: 24 + #[prost(message, optional, tag = "15")] + pub motion: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6505)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Jhcoigilila { + /// offset: 32 + #[prost(uint32, tag = "14")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "4")] + pub pfhcjohgknn: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6535)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Kdomnbddobe { + /// offset: 24 + #[prost(uint32, tag = "1")] + pub id: u32, +} +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(6533)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct WolfBroGameActivateBulletCsReq { - /// offset: 28 - #[prost(uint32, tag = "14")] - pub config_id: u32, - /// offset: 24 - #[prost(uint32, tag = "7")] - pub group_id: u32, -} -/// Obf: FKHKJGFHAHE -#[derive(proto_derive::CmdID)] -#[cmdid(6530)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct WolfBroGameActivateBulletScRsp { - /// offset: 24 - #[prost(uint32, tag = "5")] - pub retcode: u32, -} -/// Obf: PHHDAGNAABO -#[derive(proto_derive::CmdID)] -#[cmdid(6511)] #[derive(Clone, PartialEq, ::prost::Message)] -pub struct WolfBroGameExplodeMonsterCsReq { - /// offset: 16 - #[prost(uint32, repeated, tag = "3")] - pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, -} -/// Obf: IHPNAMPDBGJ -#[derive(proto_derive::CmdID)] -#[cmdid(6529)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct WolfBroGameExplodeMonsterScRsp { - /// offset: 24 +pub struct Aocpklpblef { + /// offset: 32 #[prost(uint32, tag = "13")] pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub pfhcjohgknn: ::core::option::Option, } -/// Obf: CCIFHOLFGNG +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6531)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Cbikdgjiljf { + /// offset: 24 + #[prost(uint32, tag = "6")] + pub id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6525)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Mchkehcfkko { + /// offset: 24 + #[prost(message, optional, tag = "9")] + pub pfhcjohgknn: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "6")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6546)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Lbolcaabccg { + /// offset: 24 + #[prost(uint32, tag = "9")] + pub id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6517)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Bhhhpjoijph { + /// offset: 32 + #[prost(uint32, tag = "13")] + pub retcode: u32, + /// offset: 16 + #[prost(message, optional, tag = "7")] + pub pfhcjohgknn: ::core::option::Option, +} +/// Type: Notify +#[derive(proto_derive::CmdID)] +#[cmdid(6512)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Aboadjaagbl { + /// offset: 16 + #[prost(message, optional, tag = "10")] + pub pfhcjohgknn: ::core::option::Option, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6509)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Chpchipeonm { + /// offset: 24 + #[prost(message, optional, tag = "1")] + pub epmgdhlhpop: ::core::option::Option, + /// offset: 16 + #[prost(uint32, repeated, tag = "14")] + pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6513)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dpogemapokl { + /// offset: 16 + #[prost(message, optional, tag = "3")] + pub pfhcjohgknn: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6543)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Hbdngknakbl { + /// offset: 24 + #[prost(message, optional, tag = "10")] + pub epmgdhlhpop: ::core::option::Option, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6534)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Ckgeniohbpl { + /// offset: 24 + #[prost(message, optional, tag = "7")] + pub pfhcjohgknn: ::core::option::Option, + /// offset: 32 + #[prost(uint32, tag = "1")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6520)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Iciejebbkje { + /// offset: 28 + #[prost(uint32, tag = "15")] + pub group_id: u32, + /// offset: 24 + #[prost(uint32, tag = "7")] + pub config_id: u32, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6507)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Gcaogceiafp { + /// offset: 24 + #[prost(uint32, tag = "11")] + pub retcode: u32, +} +/// Type: Req +#[derive(proto_derive::CmdID)] +#[cmdid(6527)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Dfbefjmcogg { + /// offset: 16 + #[prost(uint32, repeated, tag = "9")] + pub assist_monster_entity_id_list: ::prost::alloc::vec::Vec, +} +/// Type: Rsp +#[derive(proto_derive::CmdID)] +#[cmdid(6510)] +#[derive(Clone, Copy, PartialEq, ::prost::Message)] +pub struct Jjibhdbehje { + /// offset: 24 + #[prost(uint32, tag = "7")] + pub retcode: u32, +} +/// Type: Req #[derive(proto_derive::CmdID)] #[cmdid(7627)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WorldUnlockCsReq { /// offset: 24 - #[prost(uint32, tag = "4")] - pub npebnekdlen: u32, + #[prost(uint32, tag = "8")] + pub jhjpdninclj: u32, } -/// Obf: LEMIOKMIODL +/// Type: Rsp #[derive(proto_derive::CmdID)] #[cmdid(7626)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct WorldUnlockScRsp { /// offset: 28 - #[prost(uint32, tag = "10")] - pub npebnekdlen: u32, - /// offset: 24 #[prost(uint32, tag = "5")] - pub retcode: u32, -} -#[derive(proto_derive::CmdID)] -#[derive(Clone, Copy, PartialEq, ::prost::Message)] -pub struct Lnkfbaedodi { - /// offset: 72 - #[prost(uint32, tag = "1")] - pub dghngblhail: u32, - /// offset: 68 - #[prost(uint32, tag = "2")] - pub mpgpgfkbmhg: u32, - /// offset: 40 - #[prost(uint32, tag = "3")] - pub gkjkkdaopam: u32, + pub jhjpdninclj: u32, /// offset: 24 - #[prost(uint32, tag = "4")] - pub olccimlmmad: u32, - /// offset: 56 - #[prost(uint32, tag = "5")] - pub elhepmnlapg: u32, - /// offset: 60 - #[prost(uint32, tag = "6")] - pub piamlfbihpi: u32, - /// offset: 36 - #[prost(uint32, tag = "7")] - pub cfcajemdfkj: u32, - /// offset: 64 - #[prost(uint32, tag = "8")] - pub fephhkigoop: u32, - /// offset: 32 - #[prost(uint32, tag = "9")] - pub mopdhnencpc: u32, - /// offset: 48 - #[prost(uint32, tag = "10")] - pub edfpconikdc: u32, - /// offset: 52 - #[prost(uint32, tag = "11")] - pub id: u32, - /// offset: 28 - #[prost(uint32, tag = "12")] - pub hoghlbeedga: u32, - /// offset: 44 #[prost(uint32, tag = "13")] - pub bipfifcjcbn: u32, + pub retcode: u32, } #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] @@ -52472,6 +53181,7 @@ pub enum PlayerActionType { PlayerActionRechargeGiftTakeReward = 111, PlayerActionRechargeGiftReach = 112, PlayerActionRechargeBenefitReach = 113, + PlayerActionMonthCardEndMail = 114, PlayerActionMissionAccept = 201, PlayerActionMissionFinish = 202, PlayerActionMissionFail = 203, @@ -52577,7 +53287,7 @@ pub enum PlayerActionType { PlayerActionSubmissionReward = 1610, PlayerActionAchievementLevelReward = 1611, PlayerActionQuestDelete = 1612, - PlayerActionSubMissionReward = 1613, + PlayerActionSubMissionReward2 = 1613, PlayerActionMissionCompensate = 1614, PlayerActionMissionRecycle = 1615, PlayerActionQuestReset = 1616, @@ -52700,6 +53410,7 @@ pub enum PlayerActionType { PlayerActionChangeCurrentAvatar = 2302, PlayerActionCreateVirtualTeam = 2303, PlayerActionTeamNameEdit = 2304, + PlayerActionReplaceLineupAvatar = 2305, PlayerActionAvatarBuffChange = 2401, PlayerActionEnvBuffChange = 2402, PlayerActionGameCore = 2403, @@ -52821,14 +53532,14 @@ pub enum PlayerActionType { PlayerActionFriendMark = 3310, PlayerActionFriendAssistList = 3311, PlayerActionBattlePassLevelReward = 3202, - PlayerActionBattlePass128tierReward = 3203, + PlayerActionBattlePass128TierReward = 3203, PlayerActionBattlePassLevelRewardAutoMail = 3204, PlayerActionBuyBattlePass = 3205, PlayerActionAddBattlePassExp = 3206, PlayerActionBattlePassLevelUp = 3207, PlayerActionBuyBattlePassLevel = 3208, PlayerActionBattlePassEndMail = 3209, - PlayerActionBattlePass68tierReward = 3210, + PlayerActionBattlePass68TierReward = 3210, PlayerActionModifySign = 3401, PlayerActionDisplayAvatarSet = 3402, PlayerActionAssistAvatarSet = 3403, @@ -53455,6 +54166,20 @@ pub enum PlayerActionType { PlayerActionElationBattleBegin = 7161, PlayerActionElationBattleEnd = 7162, PlayerActionActivityHotDataChange = 7170, + PlayerActionChimeraDuelGameSettle = 7181, + PlayerActionChimeraDuelMasterUnlock = 7182, + PlayerActionChimeraDuelGameStart = 7183, + PlayerActionChimeraDuelBattleStart = 7184, + PlayerActionChimeraDuelBattleEnd = 7185, + PlayerActionChimeraDuelChimeraBuy = 7186, + PlayerActionChimeraDuelItemBuy = 7187, + PlayerActionChimeraDuelShopRefresh = 7188, + PlayerActionChimeraDuelChimeraEnhance = 7189, + PlayerActionChimeraDuelChimeraSell = 7190, + PlayerActionChimeraDuelShopStart = 7191, + PlayerActionChimeraDuelShopEnd = 7192, + PlayerActionChimeraDuelFriendPvpLineupSave = 7193, + PlayerActionChimeraDuelDefendLineupSet = 7194, PlayerActionGridFightGameStart = 7251, PlayerActionGridFightGameEnd = 7252, PlayerActionGridFightRoundStart = 7253, @@ -53489,6 +54214,9 @@ pub enum PlayerActionType { PlayerActionGridFightTalentReset = 7282, PlayerActionGridFightTutorialTaskFinish = 7283, PlayerActionGridFightEliteBranchRefresh = 7284, + PlayerActionGridFightTutorialResume = 7285, + PlayerActionLocalLegendBattleBegin = 7361, + PlayerActionLocalLegendBattleEnd = 7362, } impl PlayerActionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -53497,4819 +54225,6003 @@ impl PlayerActionType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlayerActionNone => "PLAYER_ACTION_NONE", - Self::PlayerActionRegister => "PLAYER_ACTION_REGISTER", - Self::PlayerActionLogin => "PLAYER_ACTION_LOGIN", - Self::PlayerActionLogout => "PLAYER_ACTION_LOGOUT", - Self::PlayerActionAddExp => "PLAYER_ACTION_ADD_EXP", - Self::PlayerActionLevelUp => "PLAYER_ACTION_LEVEL_UP", - Self::PlayerActionAddMaterial => "PLAYER_ACTION_ADD_MATERIAL", - Self::PlayerActionSaveStat => "PLAYER_ACTION_SAVE_STAT", + Self::PlayerActionNone => "PlayerActionType_PlayerActionNone", + Self::PlayerActionRegister => "PlayerActionType_PlayerActionRegister", + Self::PlayerActionLogin => "PlayerActionType_PlayerActionLogin", + Self::PlayerActionLogout => "PlayerActionType_PlayerActionLogout", + Self::PlayerActionAddExp => "PlayerActionType_PlayerActionAddExp", + Self::PlayerActionLevelUp => "PlayerActionType_PlayerActionLevelUp", + Self::PlayerActionAddMaterial => "PlayerActionType_PlayerActionAddMaterial", + Self::PlayerActionSaveStat => "PlayerActionType_PlayerActionSaveStat", Self::PlayerActionTravelBrochureInteract => { - "PLAYER_ACTION_TRAVEL_BROCHURE_INTERACT" + "PlayerActionType_PlayerActionTravelBrochureInteract" } - Self::PlayerActionRelay => "PLAYER_ACTION_RELAY", - Self::PlayerActionRecharge => "PLAYER_ACTION_RECHARGE", - Self::PlayerActionBuyGoods => "PLAYER_ACTION_BUY_GOODS", - Self::PlayerActionAddCoin => "PLAYER_ACTION_ADD_COIN", + Self::PlayerActionRelay => "PlayerActionType_PlayerActionRelay", + Self::PlayerActionRecharge => "PlayerActionType_PlayerActionRecharge", + Self::PlayerActionBuyGoods => "PlayerActionType_PlayerActionBuyGoods", + Self::PlayerActionAddCoin => "PlayerActionType_PlayerActionAddCoin", Self::PlayerActionMonthCardDailyHcoin => { - "PLAYER_ACTION_MONTH_CARD_DAILY_HCOIN" + "PlayerActionType_PlayerActionMonthCardDailyHcoin" + } + Self::PlayerActionMonthCardBuyMcoin => { + "PlayerActionType_PlayerActionMonthCardBuyMcoin" + } + Self::PlayerActionRechargeFreeCoin => { + "PlayerActionType_PlayerActionRechargeFreeCoin" + } + Self::PlayerActionAddMonthCard => "PlayerActionType_PlayerActionAddMonthCard", + Self::PlayerActionRechargeGiftPay => { + "PlayerActionType_PlayerActionRechargeGiftPay" + } + Self::PlayerActionRechargeGiftFree => { + "PlayerActionType_PlayerActionRechargeGiftFree" + } + Self::PlayerActionRechargeBenefit => { + "PlayerActionType_PlayerActionRechargeBenefit" } - Self::PlayerActionMonthCardBuyMcoin => "PLAYER_ACTION_MONTH_CARD_BUY_MCOIN", - Self::PlayerActionRechargeFreeCoin => "PLAYER_ACTION_RECHARGE_FREE_COIN", - Self::PlayerActionAddMonthCard => "PLAYER_ACTION_ADD_MONTH_CARD", - Self::PlayerActionRechargeGiftPay => "PLAYER_ACTION_RECHARGE_GIFT_PAY", - Self::PlayerActionRechargeGiftFree => "PLAYER_ACTION_RECHARGE_GIFT_FREE", - Self::PlayerActionRechargeBenefit => "PLAYER_ACTION_RECHARGE_BENEFIT", Self::PlayerActionRechargeGiftTakeReward => { - "PLAYER_ACTION_RECHARGE_GIFT_TAKE_REWARD" + "PlayerActionType_PlayerActionRechargeGiftTakeReward" + } + Self::PlayerActionRechargeGiftReach => { + "PlayerActionType_PlayerActionRechargeGiftReach" } - Self::PlayerActionRechargeGiftReach => "PLAYER_ACTION_RECHARGE_GIFT_REACH", Self::PlayerActionRechargeBenefitReach => { - "PLAYER_ACTION_RECHARGE_BENEFIT_REACH" + "PlayerActionType_PlayerActionRechargeBenefitReach" + } + Self::PlayerActionMonthCardEndMail => { + "PlayerActionType_PlayerActionMonthCardEndMail" + } + Self::PlayerActionMissionAccept => { + "PlayerActionType_PlayerActionMissionAccept" + } + Self::PlayerActionMissionFinish => { + "PlayerActionType_PlayerActionMissionFinish" + } + Self::PlayerActionMissionFail => "PlayerActionType_PlayerActionMissionFail", + Self::PlayerActionMainMissionAccept => { + "PlayerActionType_PlayerActionMainMissionAccept" + } + Self::PlayerActionSubMissionAccept => { + "PlayerActionType_PlayerActionSubMissionAccept" + } + Self::PlayerActionMainMissionFinish => { + "PlayerActionType_PlayerActionMainMissionFinish" + } + Self::PlayerActionSubMissionFinish => { + "PlayerActionType_PlayerActionSubMissionFinish" + } + Self::PlayerActionDailyTaskFinish => { + "PlayerActionType_PlayerActionDailyTaskFinish" } - Self::PlayerActionMissionAccept => "PLAYER_ACTION_MISSION_ACCEPT", - Self::PlayerActionMissionFinish => "PLAYER_ACTION_MISSION_FINISH", - Self::PlayerActionMissionFail => "PLAYER_ACTION_MISSION_FAIL", - Self::PlayerActionMainMissionAccept => "PLAYER_ACTION_MAIN_MISSION_ACCEPT", - Self::PlayerActionSubMissionAccept => "PLAYER_ACTION_SUB_MISSION_ACCEPT", - Self::PlayerActionMainMissionFinish => "PLAYER_ACTION_MAIN_MISSION_FINISH", - Self::PlayerActionSubMissionFinish => "PLAYER_ACTION_SUB_MISSION_FINISH", - Self::PlayerActionDailyTaskFinish => "PLAYER_ACTION_DAILY_TASK_FINISH", Self::PlayerActionDailyTaskTakeReward => { - "PLAYER_ACTION_DAILY_TASK_TAKE_REWARD" + "PlayerActionType_PlayerActionDailyTaskTakeReward" + } + Self::PlayerActionNpcTalkReward => { + "PlayerActionType_PlayerActionNpcTalkReward" + } + Self::PlayerActionMainMissionRecover => { + "PlayerActionType_PlayerActionMainMissionRecover" + } + Self::PlayerActionMainMissionDisable => { + "PlayerActionType_PlayerActionMainMissionDisable" } - Self::PlayerActionNpcTalkReward => "PLAYER_ACTION_NPC_TALK_REWARD", - Self::PlayerActionMainMissionRecover => "PLAYER_ACTION_MAIN_MISSION_RECOVER", - Self::PlayerActionMainMissionDisable => "PLAYER_ACTION_MAIN_MISSION_DISABLE", Self::PlayerActionConsumeItemSubMissionFinish => { - "PLAYER_ACTION_CONSUME_ITEM_SUB_MISSION_FINISH" + "PlayerActionType_PlayerActionConsumeItemSubMissionFinish" } Self::PlayerActionItemMonitorAllSources => { - "PLAYER_ACTION_ITEM_MONITOR_ALL_SOURCES" + "PlayerActionType_PlayerActionItemMonitorAllSources" + } + Self::PlayerActionGm => "PlayerActionType_PlayerActionGm", + Self::PlayerActionCustomOp => "PlayerActionType_PlayerActionCustomOp", + Self::PlayerActionCheckSum => "PlayerActionType_PlayerActionCheckSum", + Self::PlayerActionPlayerLocation => { + "PlayerActionType_PlayerActionPlayerLocation" + } + Self::PlayerActionChangeLanguage => { + "PlayerActionType_PlayerActionChangeLanguage" + } + Self::PlayerActionClientReport => "PlayerActionType_PlayerActionClientReport", + Self::PlayerActionAceReport => "PlayerActionType_PlayerActionAceReport", + Self::PlayerActionPlayerPowerInfo => { + "PlayerActionType_PlayerActionPlayerPowerInfo" + } + Self::PlayerActionDailyRefresh => "PlayerActionType_PlayerActionDailyRefresh", + Self::PlayerActionAvatarValueInfo => { + "PlayerActionType_PlayerActionAvatarValueInfo" } - Self::PlayerActionGm => "PLAYER_ACTION_GM", - Self::PlayerActionCustomOp => "PLAYER_ACTION_CUSTOM_OP", - Self::PlayerActionCheckSum => "PLAYER_ACTION_CHECK_SUM", - Self::PlayerActionPlayerLocation => "PLAYER_ACTION_PLAYER_LOCATION", - Self::PlayerActionChangeLanguage => "PLAYER_ACTION_CHANGE_LANGUAGE", - Self::PlayerActionClientReport => "PLAYER_ACTION_CLIENT_REPORT", - Self::PlayerActionAceReport => "PLAYER_ACTION_ACE_REPORT", - Self::PlayerActionPlayerPowerInfo => "PLAYER_ACTION_PLAYER_POWER_INFO", - Self::PlayerActionDailyRefresh => "PLAYER_ACTION_DAILY_REFRESH", - Self::PlayerActionAvatarValueInfo => "PLAYER_ACTION_AVATAR_VALUE_INFO", Self::PlayerActionMoveCheckFailedReport => { - "PLAYER_ACTION_MOVE_CHECK_FAILED_REPORT" + "PlayerActionType_PlayerActionMoveCheckFailedReport" } - Self::PlayerActionBattleFailedReport => "PLAYER_ACTION_BATTLE_FAILED_REPORT", - Self::PlayerActionSecurityReport => "PLAYER_ACTION_SECURITY_REPORT", - Self::PlayerActionAvatarPromotion => "PLAYER_ACTION_AVATAR_PROMOTION", - Self::PlayerActionAvatarAdd => "PLAYER_ACTION_AVATAR_ADD", - Self::PlayerActionAvatarUseExpItem => "PLAYER_ACTION_AVATAR_USE_EXP_ITEM", - Self::PlayerActionAvatarLevelUp => "PLAYER_ACTION_AVATAR_LEVEL_UP", - Self::PlayerActionSkillTreeUp => "PLAYER_ACTION_SKILL_TREE_UP", - Self::PlayerActionAvatarHpChange => "PLAYER_ACTION_AVATAR_HP_CHANGE", - Self::PlayerActionAvatarMpChange => "PLAYER_ACTION_AVATAR_MP_CHANGE", - Self::PlayerActionAvatarAddExp => "PLAYER_ACTION_AVATAR_ADD_EXP", - Self::PlayerActionAvatarRankUp => "PLAYER_ACTION_AVATAR_RANK_UP", - Self::PlayerActionAvatarRepeated => "PLAYER_ACTION_AVATAR_REPEATED", - Self::PlayerActionMpMaxChange => "PLAYER_ACTION_MP_MAX_CHANGE", + Self::PlayerActionBattleFailedReport => { + "PlayerActionType_PlayerActionBattleFailedReport" + } + Self::PlayerActionSecurityReport => { + "PlayerActionType_PlayerActionSecurityReport" + } + Self::PlayerActionAvatarPromotion => { + "PlayerActionType_PlayerActionAvatarPromotion" + } + Self::PlayerActionAvatarAdd => "PlayerActionType_PlayerActionAvatarAdd", + Self::PlayerActionAvatarUseExpItem => { + "PlayerActionType_PlayerActionAvatarUseExpItem" + } + Self::PlayerActionAvatarLevelUp => { + "PlayerActionType_PlayerActionAvatarLevelUp" + } + Self::PlayerActionSkillTreeUp => "PlayerActionType_PlayerActionSkillTreeUp", + Self::PlayerActionAvatarHpChange => { + "PlayerActionType_PlayerActionAvatarHpChange" + } + Self::PlayerActionAvatarMpChange => { + "PlayerActionType_PlayerActionAvatarMpChange" + } + Self::PlayerActionAvatarAddExp => "PlayerActionType_PlayerActionAvatarAddExp", + Self::PlayerActionAvatarRankUp => "PlayerActionType_PlayerActionAvatarRankUp", + Self::PlayerActionAvatarRepeated => { + "PlayerActionType_PlayerActionAvatarRepeated" + } + Self::PlayerActionMpMaxChange => "PlayerActionType_PlayerActionMpMaxChange", Self::PlayerActionAvatarTakePromotionReward => { - "PLAYER_ACTION_AVATAR_TAKE_PROMOTION_REWARD" + "PlayerActionType_PlayerActionAvatarTakePromotionReward" } Self::PlayerActionAvatarRelicAffixInfo => { - "PLAYER_ACTION_AVATAR_RELIC_AFFIX_INFO" + "PlayerActionType_PlayerActionAvatarRelicAffixInfo" } - Self::PlayerActionAvatarMark => "PLAYER_ACTION_AVATAR_MARK", + Self::PlayerActionAvatarMark => "PlayerActionType_PlayerActionAvatarMark", Self::PlayerActionAvatarSystemPowerReset => { - "PLAYER_ACTION_AVATAR_SYSTEM_POWER_RESET" + "PlayerActionType_PlayerActionAvatarSystemPowerReset" + } + Self::PlayerActionAvatarChangePath => { + "PlayerActionType_PlayerActionAvatarChangePath" } - Self::PlayerActionAvatarChangePath => "PLAYER_ACTION_AVATAR_CHANGE_PATH", Self::PlayerActionSetGrowthTargetAvatar => { - "PLAYER_ACTION_SET_GROWTH_TARGET_AVATAR" + "PlayerActionType_PlayerActionSetGrowthTargetAvatar" + } + Self::PlayerActionDelAvatar => "PlayerActionType_PlayerActionDelAvatar", + Self::PlayerActionAvatarSkinChange => { + "PlayerActionType_PlayerActionAvatarSkinChange" } - Self::PlayerActionDelAvatar => "PLAYER_ACTION_DEL_AVATAR", - Self::PlayerActionAvatarSkinChange => "PLAYER_ACTION_AVATAR_SKIN_CHANGE", Self::PlayerActionSetGrowthTargetFunctionConfig => { - "PLAYER_ACTION_SET_GROWTH_TARGET_FUNCTION_CONFIG" + "PlayerActionType_PlayerActionSetGrowthTargetFunctionConfig" } Self::PlayerActionAvatarSkinActivityReissue => { - "PLAYER_ACTION_AVATAR_SKIN_ACTIVITY_REISSUE" + "PlayerActionType_PlayerActionAvatarSkinActivityReissue" } Self::PlayerActionSetAvatarEnhancedId => { - "PLAYER_ACTION_SET_AVATAR_ENHANCED_ID" + "PlayerActionType_PlayerActionSetAvatarEnhancedId" } - Self::PlayerActionDressPlayerOutfit => "PLAYER_ACTION_DRESS_PLAYER_OUTFIT", - Self::PlayerActionStageBegin => "PLAYER_ACTION_STAGE_BEGIN", - Self::PlayerActionStageEnd => "PLAYER_ACTION_STAGE_END", - Self::PlayerActionCocoonStageBegin => "PLAYER_ACTION_COCOON_STAGE_BEGIN", - Self::PlayerActionCocoonStageEnd => "PLAYER_ACTION_COCOON_STAGE_END", - Self::PlayerActionFarmElementEnd => "PLAYER_ACTION_FARM_ELEMENT_END", - Self::PlayerActionElementStageEnd => "PLAYER_ACTION_ELEMENT_STAGE_END", - Self::PlayerActionCocoonSweep => "PLAYER_ACTION_COCOON_SWEEP", - Self::PlayerActionFarmElementSweep => "PLAYER_ACTION_FARM_ELEMENT_SWEEP", - Self::PlayerActionRecoverStamina => "PLAYER_ACTION_RECOVER_STAMINA", - Self::PlayerActionExchangeStamina => "PLAYER_ACTION_EXCHANGE_STAMINA", - Self::PlayerActionLoginReward => "PLAYER_ACTION_LOGIN_REWARD", - Self::PlayerActionModifyNickname => "PLAYER_ACTION_MODIFY_NICKNAME", - Self::PlayerActionGetLevelReward => "PLAYER_ACTION_GET_LEVEL_REWARD", - Self::PlayerActionWorldLevelUp => "PLAYER_ACTION_WORLD_LEVEL_UP", - Self::PlayerActionAddStamina => "PLAYER_ACTION_ADD_STAMINA", + Self::PlayerActionDressPlayerOutfit => { + "PlayerActionType_PlayerActionDressPlayerOutfit" + } + Self::PlayerActionStageBegin => "PlayerActionType_PlayerActionStageBegin", + Self::PlayerActionStageEnd => "PlayerActionType_PlayerActionStageEnd", + Self::PlayerActionCocoonStageBegin => { + "PlayerActionType_PlayerActionCocoonStageBegin" + } + Self::PlayerActionCocoonStageEnd => { + "PlayerActionType_PlayerActionCocoonStageEnd" + } + Self::PlayerActionFarmElementEnd => { + "PlayerActionType_PlayerActionFarmElementEnd" + } + Self::PlayerActionElementStageEnd => { + "PlayerActionType_PlayerActionElementStageEnd" + } + Self::PlayerActionCocoonSweep => "PlayerActionType_PlayerActionCocoonSweep", + Self::PlayerActionFarmElementSweep => { + "PlayerActionType_PlayerActionFarmElementSweep" + } + Self::PlayerActionRecoverStamina => { + "PlayerActionType_PlayerActionRecoverStamina" + } + Self::PlayerActionExchangeStamina => { + "PlayerActionType_PlayerActionExchangeStamina" + } + Self::PlayerActionLoginReward => "PlayerActionType_PlayerActionLoginReward", + Self::PlayerActionModifyNickname => { + "PlayerActionType_PlayerActionModifyNickname" + } + Self::PlayerActionGetLevelReward => { + "PlayerActionType_PlayerActionGetLevelReward" + } + Self::PlayerActionWorldLevelUp => "PlayerActionType_PlayerActionWorldLevelUp", + Self::PlayerActionAddStamina => "PlayerActionType_PlayerActionAddStamina", Self::PlayerActionGameplayBirthdayRewardMail => { - "PLAYER_ACTION_GAMEPLAY_BIRTHDAY_REWARD_MAIL" + "PlayerActionType_PlayerActionGameplayBirthdayRewardMail" } Self::PlayerActionRechargeRebateReward => { - "PLAYER_ACTION_RECHARGE_REBATE_REWARD" + "PlayerActionType_PlayerActionRechargeRebateReward" } Self::PlayerActionGameplayBirthdaySet => { - "PLAYER_ACTION_GAMEPLAY_BIRTHDAY_SET" + "PlayerActionType_PlayerActionGameplayBirthdaySet" } Self::PlayerActionReserveStaminaExchange => { - "PLAYER_ACTION_RESERVE_STAMINA_EXCHANGE" + "PlayerActionType_PlayerActionReserveStaminaExchange" + } + Self::PlayerActionReserveStaminaAdd => { + "PlayerActionType_PlayerActionReserveStaminaAdd" } - Self::PlayerActionReserveStaminaAdd => "PLAYER_ACTION_RESERVE_STAMINA_ADD", Self::PlayerActionReserveStaminaChange => { - "PLAYER_ACTION_RESERVE_STAMINA_CHANGE" + "PlayerActionType_PlayerActionReserveStaminaChange" + } + Self::PlayerActionNowStamina => "PlayerActionType_PlayerActionNowStamina", + Self::PlayerActionFtcResetNickname => { + "PlayerActionType_PlayerActionFtcResetNickname" } - Self::PlayerActionNowStamina => "PLAYER_ACTION_NOW_STAMINA", - Self::PlayerActionFtcResetNickname => "PLAYER_ACTION_FTC_RESET_NICKNAME", Self::PlayerActionReserveAndFuelExchangeStamina => { - "PLAYER_ACTION_RESERVE_AND_FUEL_EXCHANGE_STAMINA" + "PlayerActionType_PlayerActionReserveAndFuelExchangeStamina" + } + Self::PlayerActionMail => "PlayerActionType_PlayerActionMail", + Self::PlayerActionMailOpByUser => "PlayerActionType_PlayerActionMailOpByUser", + Self::PlayerActionMailOpByMuip => "PlayerActionType_PlayerActionMailOpByMuip", + Self::PlayerActionMailOpByGm => "PlayerActionType_PlayerActionMailOpByGm", + Self::PlayerActionMailOpByFull => "PlayerActionType_PlayerActionMailOpByFull", + Self::PlayerActionMailOpByExpire => { + "PlayerActionType_PlayerActionMailOpByExpire" + } + Self::PlayerActionMailOpByInternal => { + "PlayerActionType_PlayerActionMailOpByInternal" + } + Self::PlayerActionAddMail => "PlayerActionType_PlayerActionAddMail", + Self::PlayerActionDelMail => "PlayerActionType_PlayerActionDelMail", + Self::PlayerActionTakeAttachment => { + "PlayerActionType_PlayerActionTakeAttachment" + } + Self::PlayerActionReadMail => "PlayerActionType_PlayerActionReadMail", + Self::PlayerActionBattleAvatar => "PlayerActionType_PlayerActionBattleAvatar", + Self::PlayerActionBattleMonster => { + "PlayerActionType_PlayerActionBattleMonster" + } + Self::PlayerActionBattleEnd => "PlayerActionType_PlayerActionBattleEnd", + Self::PlayerActionBattleReplay => "PlayerActionType_PlayerActionBattleReplay", + Self::PlayerActionBattleAvatarDeath => { + "PlayerActionType_PlayerActionBattleAvatarDeath" + } + Self::PlayerActionBattleSwitchPhase => { + "PlayerActionType_PlayerActionBattleSwitchPhase" + } + Self::PlayerActionBattleMonsterSkill => { + "PlayerActionType_PlayerActionBattleMonsterSkill" + } + Self::PlayerActionBattleRebattle => { + "PlayerActionType_PlayerActionBattleRebattle" } - Self::PlayerActionMail => "PLAYER_ACTION_MAIL", - Self::PlayerActionMailOpByUser => "PLAYER_ACTION_MAIL_OP_BY_USER", - Self::PlayerActionMailOpByMuip => "PLAYER_ACTION_MAIL_OP_BY_MUIP", - Self::PlayerActionMailOpByGm => "PLAYER_ACTION_MAIL_OP_BY_GM", - Self::PlayerActionMailOpByFull => "PLAYER_ACTION_MAIL_OP_BY_FULL", - Self::PlayerActionMailOpByExpire => "PLAYER_ACTION_MAIL_OP_BY_EXPIRE", - Self::PlayerActionMailOpByInternal => "PLAYER_ACTION_MAIL_OP_BY_INTERNAL", - Self::PlayerActionAddMail => "PLAYER_ACTION_ADD_MAIL", - Self::PlayerActionDelMail => "PLAYER_ACTION_DEL_MAIL", - Self::PlayerActionTakeAttachment => "PLAYER_ACTION_TAKE_ATTACHMENT", - Self::PlayerActionReadMail => "PLAYER_ACTION_READ_MAIL", - Self::PlayerActionBattleAvatar => "PLAYER_ACTION_BATTLE_AVATAR", - Self::PlayerActionBattleMonster => "PLAYER_ACTION_BATTLE_MONSTER", - Self::PlayerActionBattleEnd => "PLAYER_ACTION_BATTLE_END", - Self::PlayerActionBattleReplay => "PLAYER_ACTION_BATTLE_REPLAY", - Self::PlayerActionBattleAvatarDeath => "PLAYER_ACTION_BATTLE_AVATAR_DEATH", - Self::PlayerActionBattleSwitchPhase => "PLAYER_ACTION_BATTLE_SWITCH_PHASE", - Self::PlayerActionBattleMonsterSkill => "PLAYER_ACTION_BATTLE_MONSTER_SKILL", - Self::PlayerActionBattleRebattle => "PLAYER_ACTION_BATTLE_REBATTLE", Self::PlayerActionBattleAvatarServant => { - "PLAYER_ACTION_BATTLE_AVATAR_SERVANT" + "PlayerActionType_PlayerActionBattleAvatarServant" + } + Self::PlayerActionMissionReward => { + "PlayerActionType_PlayerActionMissionReward" + } + Self::PlayerActionQuestAccept => "PlayerActionType_PlayerActionQuestAccept", + Self::PlayerActionQuestFinish => "PlayerActionType_PlayerActionQuestFinish", + Self::PlayerActionQuestRemove => "PlayerActionType_PlayerActionQuestRemove", + Self::PlayerActionQuestReward => "PlayerActionType_PlayerActionQuestReward", + Self::PlayerActionQuestAutoClose => { + "PlayerActionType_PlayerActionQuestAutoClose" + } + Self::PlayerActionQuestExpired => "PlayerActionType_PlayerActionQuestExpired", + Self::PlayerActionMissionRequired => { + "PlayerActionType_PlayerActionMissionRequired" + } + Self::PlayerActionSubmissionReward => { + "PlayerActionType_PlayerActionSubmissionReward" } - Self::PlayerActionMissionReward => "PLAYER_ACTION_MISSION_REWARD", - Self::PlayerActionQuestAccept => "PLAYER_ACTION_QUEST_ACCEPT", - Self::PlayerActionQuestFinish => "PLAYER_ACTION_QUEST_FINISH", - Self::PlayerActionQuestRemove => "PLAYER_ACTION_QUEST_REMOVE", - Self::PlayerActionQuestReward => "PLAYER_ACTION_QUEST_REWARD", - Self::PlayerActionQuestAutoClose => "PLAYER_ACTION_QUEST_AUTO_CLOSE", - Self::PlayerActionQuestExpired => "PLAYER_ACTION_QUEST_EXPIRED", - Self::PlayerActionMissionRequired => "PLAYER_ACTION_MISSION_REQUIRED", - Self::PlayerActionSubmissionReward => "PLAYER_ACTION_SUBMISSION_REWARD", Self::PlayerActionAchievementLevelReward => { - "PLAYER_ACTION_ACHIEVEMENT_LEVEL_REWARD" + "PlayerActionType_PlayerActionAchievementLevelReward" } - Self::PlayerActionQuestDelete => "PLAYER_ACTION_QUEST_DELETE", - Self::PlayerActionSubMissionReward => "PLAYER_ACTION_SUB_MISSION_REWARD", - Self::PlayerActionMissionCompensate => "PLAYER_ACTION_MISSION_COMPENSATE", - Self::PlayerActionMissionRecycle => "PLAYER_ACTION_MISSION_RECYCLE", - Self::PlayerActionQuestReset => "PLAYER_ACTION_QUEST_RESET", + Self::PlayerActionQuestDelete => "PlayerActionType_PlayerActionQuestDelete", + Self::PlayerActionSubMissionReward2 => { + "PlayerActionType_PlayerActionSubMissionReward2" + } + Self::PlayerActionMissionCompensate => { + "PlayerActionType_PlayerActionMissionCompensate" + } + Self::PlayerActionMissionRecycle => { + "PlayerActionType_PlayerActionMissionRecycle" + } + Self::PlayerActionQuestReset => "PlayerActionType_PlayerActionQuestReset", Self::PlayerActionQuestOptionalReward => { - "PLAYER_ACTION_QUEST_OPTIONAL_REWARD" + "PlayerActionType_PlayerActionQuestOptionalReward" + } + Self::PlayerActionMcvChange => "PlayerActionType_PlayerActionMcvChange", + Self::PlayerActionQuestReissue => "PlayerActionType_PlayerActionQuestReissue", + Self::PlayerActionPropInteract => "PlayerActionType_PlayerActionPropInteract", + Self::PlayerActionAvatarMazeSkill => { + "PlayerActionType_PlayerActionAvatarMazeSkill" + } + Self::PlayerActionEnterMaze => "PlayerActionType_PlayerActionEnterMaze", + Self::PlayerActionOrdinaryInteract => { + "PlayerActionType_PlayerActionOrdinaryInteract" + } + Self::PlayerActionChestInteract => { + "PlayerActionType_PlayerActionChestInteract" + } + Self::PlayerActionCheckPointUnlock => { + "PlayerActionType_PlayerActionCheckPointUnlock" + } + Self::PlayerActionCheckPointInteract => { + "PlayerActionType_PlayerActionCheckPointInteract" + } + Self::PlayerActionCheckPointRevive => { + "PlayerActionType_PlayerActionCheckPointRevive" + } + Self::PlayerActionCheckPointTransfer => { + "PlayerActionType_PlayerActionCheckPointTransfer" + } + Self::PlayerActionMonsterInteract => { + "PlayerActionType_PlayerActionMonsterInteract" + } + Self::PlayerActionNpcInteract => "PlayerActionType_PlayerActionNpcInteract", + Self::PlayerActionPropHit => "PlayerActionType_PlayerActionPropHit", + Self::PlayerActionPrelogueRevive => { + "PlayerActionType_PlayerActionPrelogueRevive" + } + Self::PlayerActionPropState => "PlayerActionType_PlayerActionPropState", + Self::PlayerActionCheckPointRecover => { + "PlayerActionType_PlayerActionCheckPointRecover" + } + Self::PlayerActionMechanismBar => "PlayerActionType_PlayerActionMechanismBar", + Self::PlayerActionSubmitOrigamiItem => { + "PlayerActionType_PlayerActionSubmitOrigamiItem" + } + Self::PlayerActionMazeBuffDropItem => { + "PlayerActionType_PlayerActionMazeBuffDropItem" + } + Self::PlayerActionFsvChange => "PlayerActionType_PlayerActionFsvChange", + Self::PlayerActionTimelinePropState => { + "PlayerActionType_PlayerActionTimelinePropState" } - Self::PlayerActionMcvChange => "PLAYER_ACTION_MCV_CHANGE", - Self::PlayerActionQuestReissue => "PLAYER_ACTION_QUEST_REISSUE", - Self::PlayerActionPropInteract => "PLAYER_ACTION_PROP_INTERACT", - Self::PlayerActionAvatarMazeSkill => "PLAYER_ACTION_AVATAR_MAZE_SKILL", - Self::PlayerActionEnterMaze => "PLAYER_ACTION_ENTER_MAZE", - Self::PlayerActionOrdinaryInteract => "PLAYER_ACTION_ORDINARY_INTERACT", - Self::PlayerActionChestInteract => "PLAYER_ACTION_CHEST_INTERACT", - Self::PlayerActionCheckPointUnlock => "PLAYER_ACTION_CHECK_POINT_UNLOCK", - Self::PlayerActionCheckPointInteract => "PLAYER_ACTION_CHECK_POINT_INTERACT", - Self::PlayerActionCheckPointRevive => "PLAYER_ACTION_CHECK_POINT_REVIVE", - Self::PlayerActionCheckPointTransfer => "PLAYER_ACTION_CHECK_POINT_TRANSFER", - Self::PlayerActionMonsterInteract => "PLAYER_ACTION_MONSTER_INTERACT", - Self::PlayerActionNpcInteract => "PLAYER_ACTION_NPC_INTERACT", - Self::PlayerActionPropHit => "PLAYER_ACTION_PROP_HIT", - Self::PlayerActionPrelogueRevive => "PLAYER_ACTION_PRELOGUE_REVIVE", - Self::PlayerActionPropState => "PLAYER_ACTION_PROP_STATE", - Self::PlayerActionCheckPointRecover => "PLAYER_ACTION_CHECK_POINT_RECOVER", - Self::PlayerActionMechanismBar => "PLAYER_ACTION_MECHANISM_BAR", - Self::PlayerActionSubmitOrigamiItem => "PLAYER_ACTION_SUBMIT_ORIGAMI_ITEM", - Self::PlayerActionMazeBuffDropItem => "PLAYER_ACTION_MAZE_BUFF_DROP_ITEM", - Self::PlayerActionFsvChange => "PLAYER_ACTION_FSV_CHANGE", - Self::PlayerActionTimelinePropState => "PLAYER_ACTION_TIMELINE_PROP_STATE", Self::PlayerActionGroupPropertyChange => { - "PLAYER_ACTION_GROUP_PROPERTY_CHANGE" + "PlayerActionType_PlayerActionGroupPropertyChange" + } + Self::PlayerActionEquipmentPromotion => { + "PlayerActionType_PlayerActionEquipmentPromotion" + } + Self::PlayerActionAddItem => "PlayerActionType_PlayerActionAddItem", + Self::PlayerActionUseItem => "PlayerActionType_PlayerActionUseItem", + Self::PlayerActionEquipmentRankUp => { + "PlayerActionType_PlayerActionEquipmentRankUp" + } + Self::PlayerActionEquipmentLevelUp => { + "PlayerActionType_PlayerActionEquipmentLevelUp" } - Self::PlayerActionEquipmentPromotion => "PLAYER_ACTION_EQUIPMENT_PROMOTION", - Self::PlayerActionAddItem => "PLAYER_ACTION_ADD_ITEM", - Self::PlayerActionUseItem => "PLAYER_ACTION_USE_ITEM", - Self::PlayerActionEquipmentRankUp => "PLAYER_ACTION_EQUIPMENT_RANK_UP", - Self::PlayerActionEquipmentLevelUp => "PLAYER_ACTION_EQUIPMENT_LEVEL_UP", Self::PlayerActionExpUpEquipmentReturn => { - "PLAYER_ACTION_EXP_UP_EQUIPMENT_RETURN" + "PlayerActionType_PlayerActionExpUpEquipmentReturn" } - Self::PlayerActionBagFullRewardMail => "PLAYER_ACTION_BAG_FULL_REWARD_MAIL", - Self::PlayerActionEquipmentAdd => "PLAYER_ACTION_EQUIPMENT_ADD", - Self::PlayerActionEquipmentWear => "PLAYER_ACTION_EQUIPMENT_WEAR", - Self::PlayerActionItemCompose => "PLAYER_ACTION_ITEM_COMPOSE", - Self::PlayerActionRelicLevelUp => "PLAYER_ACTION_RELIC_LEVEL_UP", - Self::PlayerActionExpUpRelicReturn => "PLAYER_ACTION_EXP_UP_RELIC_RETURN", - Self::PlayerActionRelicNumChanged => "PLAYER_ACTION_RELIC_NUM_CHANGED", - Self::PlayerActionRelicWear => "PLAYER_ACTION_RELIC_WEAR", - Self::PlayerActionRelicCompose => "PLAYER_ACTION_RELIC_COMPOSE", - Self::PlayerActionSellItem => "PLAYER_ACTION_SELL_ITEM", - Self::PlayerActionUnlockMusic => "PLAYER_ACTION_UNLOCK_MUSIC", + Self::PlayerActionBagFullRewardMail => { + "PlayerActionType_PlayerActionBagFullRewardMail" + } + Self::PlayerActionEquipmentAdd => "PlayerActionType_PlayerActionEquipmentAdd", + Self::PlayerActionEquipmentWear => { + "PlayerActionType_PlayerActionEquipmentWear" + } + Self::PlayerActionItemCompose => "PlayerActionType_PlayerActionItemCompose", + Self::PlayerActionRelicLevelUp => "PlayerActionType_PlayerActionRelicLevelUp", + Self::PlayerActionExpUpRelicReturn => { + "PlayerActionType_PlayerActionExpUpRelicReturn" + } + Self::PlayerActionRelicNumChanged => { + "PlayerActionType_PlayerActionRelicNumChanged" + } + Self::PlayerActionRelicWear => "PlayerActionType_PlayerActionRelicWear", + Self::PlayerActionRelicCompose => "PlayerActionType_PlayerActionRelicCompose", + Self::PlayerActionSellItem => "PlayerActionType_PlayerActionSellItem", + Self::PlayerActionUnlockMusic => "PlayerActionType_PlayerActionUnlockMusic", Self::PlayerActionExchangeHcoinWithPayMcoin => { - "PLAYER_ACTION_EXCHANGE_HCOIN_WITH_PAY_MCOIN" + "PlayerActionType_PlayerActionExchangeHcoinWithPayMcoin" } - Self::PlayerActionGetReward => "PLAYER_ACTION_GET_REWARD", + Self::PlayerActionGetReward => "PlayerActionType_PlayerActionGetReward", Self::PlayerActionExchangeHcoinWithFreeMcoin => { - "PLAYER_ACTION_EXCHANGE_HCOIN_WITH_FREE_MCOIN" + "PlayerActionType_PlayerActionExchangeHcoinWithFreeMcoin" } Self::PlayerActionItemComposeFormulaUnlock => { - "PLAYER_ACTION_ITEM_COMPOSE_FORMULA_UNLOCK" + "PlayerActionType_PlayerActionItemComposeFormulaUnlock" + } + Self::PlayerActionExchangeHcoin => { + "PlayerActionType_PlayerActionExchangeHcoin" } - Self::PlayerActionExchangeHcoin => "PLAYER_ACTION_EXCHANGE_HCOIN", Self::PlayerActionCityShopLevelReward => { - "PLAYER_ACTION_CITY_SHOP_LEVEL_REWARD" + "PlayerActionType_PlayerActionCityShopLevelReward" + } + Self::PlayerActionItemRecycle => "PlayerActionType_PlayerActionItemRecycle", + Self::PlayerActionMuseumFundsConsume => { + "PlayerActionType_PlayerActionMuseumFundsConsume" } - Self::PlayerActionItemRecycle => "PLAYER_ACTION_ITEM_RECYCLE", - Self::PlayerActionMuseumFundsConsume => "PLAYER_ACTION_MUSEUM_FUNDS_CONSUME", Self::PlayerActionMuseumEventBuyStuff => { - "PLAYER_ACTION_MUSEUM_EVENT_BUY_STUFF" + "PlayerActionType_PlayerActionMuseumEventBuyStuff" } Self::PlayerActionMuseumMarketBuyStuff => { - "PLAYER_ACTION_MUSEUM_MARKET_BUY_STUFF" + "PlayerActionType_PlayerActionMuseumMarketBuyStuff" } - Self::PlayerActionMuseumRandomEvent => "PLAYER_ACTION_MUSEUM_RANDOM_EVENT", - Self::PlayerActionMuseumInitialItem => "PLAYER_ACTION_MUSEUM_INITIAL_ITEM", - Self::PlayerActionOptionalBoxReward => "PLAYER_ACTION_OPTIONAL_BOX_REWARD", - Self::PlayerActionDestroyItem => "PLAYER_ACTION_DESTROY_ITEM", - Self::PlayerActionTransferExp => "PLAYER_ACTION_TRANSFER_EXP", - Self::PlayerActionOndutyUse => "PLAYER_ACTION_ONDUTY_USE", - Self::PlayerActionItemMark => "PLAYER_ACTION_ITEM_MARK", - Self::PlayerActionRelicDiscard => "PLAYER_ACTION_RELIC_DISCARD", + Self::PlayerActionMuseumRandomEvent => { + "PlayerActionType_PlayerActionMuseumRandomEvent" + } + Self::PlayerActionMuseumInitialItem => { + "PlayerActionType_PlayerActionMuseumInitialItem" + } + Self::PlayerActionOptionalBoxReward => { + "PlayerActionType_PlayerActionOptionalBoxReward" + } + Self::PlayerActionDestroyItem => "PlayerActionType_PlayerActionDestroyItem", + Self::PlayerActionTransferExp => "PlayerActionType_PlayerActionTransferExp", + Self::PlayerActionOndutyUse => "PlayerActionType_PlayerActionOndutyUse", + Self::PlayerActionItemMark => "PlayerActionType_PlayerActionItemMark", + Self::PlayerActionRelicDiscard => "PlayerActionType_PlayerActionRelicDiscard", Self::PlayerActionGeneralVirtualItemChange => { - "PLAYER_ACTION_GENERAL_VIRTUAL_ITEM_CHANGE" + "PlayerActionType_PlayerActionGeneralVirtualItemChange" } - Self::PlayerActionRelicLock => "PLAYER_ACTION_RELIC_LOCK", + Self::PlayerActionRelicLock => "PlayerActionType_PlayerActionRelicLock", Self::PlayerActionRelicFilterPlanSave => { - "PLAYER_ACTION_RELIC_FILTER_PLAN_SAVE" + "PlayerActionType_PlayerActionRelicFilterPlanSave" } Self::PlayerActionRelicFilterPlanDelete => { - "PLAYER_ACTION_RELIC_FILTER_PLAN_DELETE" + "PlayerActionType_PlayerActionRelicFilterPlanDelete" } Self::PlayerActionRelicFilterPlanMark => { - "PLAYER_ACTION_RELIC_FILTER_PLAN_MARK" + "PlayerActionType_PlayerActionRelicFilterPlanMark" } - Self::PlayerActionRelicSell => "PLAYER_ACTION_RELIC_SELL", - Self::PlayerActionRelicReforge => "PLAYER_ACTION_RELIC_REFORGE", + Self::PlayerActionRelicSell => "PlayerActionType_PlayerActionRelicSell", + Self::PlayerActionRelicReforge => "PlayerActionType_PlayerActionRelicReforge", Self::PlayerActionRelicSmartWearCustomPlan => { - "PLAYER_ACTION_RELIC_SMART_WEAR_CUSTOM_PLAN" + "PlayerActionType_PlayerActionRelicSmartWearCustomPlan" + } + Self::PlayerActionRecoverRelic => "PlayerActionType_PlayerActionRecoverRelic", + Self::PlayerActionRecoverEquipment => { + "PlayerActionType_PlayerActionRecoverEquipment" + } + Self::PlayerActionEquipmentSell => { + "PlayerActionType_PlayerActionEquipmentSell" } - Self::PlayerActionRecoverRelic => "PLAYER_ACTION_RECOVER_RELIC", - Self::PlayerActionRecoverEquipment => "PLAYER_ACTION_RECOVER_EQUIPMENT", - Self::PlayerActionEquipmentSell => "PLAYER_ACTION_EQUIPMENT_SELL", Self::PlayerActionRelicSmartWearPinRelic => { - "PLAYER_ACTION_RELIC_SMART_WEAR_PIN_RELIC" + "PlayerActionType_PlayerActionRelicSmartWearPinRelic" + } + Self::PlayerActionRelicCocoonSetting => { + "PlayerActionType_PlayerActionRelicCocoonSetting" + } + Self::PlayerActionPersonalCardChange => { + "PlayerActionType_PlayerActionPersonalCardChange" + } + Self::PlayerActionPhoneCaseChange => { + "PlayerActionType_PlayerActionPhoneCaseChange" + } + Self::PlayerActionDeliveryItemReward => { + "PlayerActionType_PlayerActionDeliveryItemReward" + } + Self::PlayerActionItemAutoTransfer => { + "PlayerActionType_PlayerActionItemAutoTransfer" } - Self::PlayerActionRelicCocoonSetting => "PLAYER_ACTION_RELIC_COCOON_SETTING", - Self::PlayerActionPersonalCardChange => "PLAYER_ACTION_PERSONAL_CARD_CHANGE", - Self::PlayerActionPhoneCaseChange => "PLAYER_ACTION_PHONE_CASE_CHANGE", - Self::PlayerActionDeliveryItemReward => "PLAYER_ACTION_DELIVERY_ITEM_REWARD", - Self::PlayerActionItemAutoTransfer => "PLAYER_ACTION_ITEM_AUTO_TRANSFER", Self::PlayerActionItemAutoTransferInBag => { - "PLAYER_ACTION_ITEM_AUTO_TRANSFER_IN_BAG" + "PlayerActionType_PlayerActionItemAutoTransferInBag" } Self::PlayerActionItemAutoTransferOnAdd => { - "PLAYER_ACTION_ITEM_AUTO_TRANSFER_ON_ADD" + "PlayerActionType_PlayerActionItemAutoTransferOnAdd" } - Self::PlayerActionAddExtraCoin => "PLAYER_ACTION_ADD_EXTRA_COIN", + Self::PlayerActionAddExtraCoin => "PlayerActionType_PlayerActionAddExtraCoin", Self::PlayerActionVariableDiceExchangePartnerCoin => { - "PLAYER_ACTION_VARIABLE_DICE_EXCHANGE_PARTNER_COIN" + "PlayerActionType_PlayerActionVariableDiceExchangePartnerCoin" } - Self::PlayerActionRelicBox => "PLAYER_ACTION_RELIC_BOX", - Self::PlayerActionRelicBoxSettle => "PLAYER_ACTION_RELIC_BOX_SETTLE", - Self::PlayerActionRelicBoxRegular => "PLAYER_ACTION_RELIC_BOX_REGULAR", - Self::PlayerActionRelicReplace => "PLAYER_ACTION_RELIC_REPLACE", + Self::PlayerActionRelicBox => "PlayerActionType_PlayerActionRelicBox", + Self::PlayerActionRelicBoxSettle => { + "PlayerActionType_PlayerActionRelicBoxSettle" + } + Self::PlayerActionRelicBoxRegular => { + "PlayerActionType_PlayerActionRelicBoxRegular" + } + Self::PlayerActionRelicReplace => "PlayerActionType_PlayerActionRelicReplace", Self::PlayerActionEquipmentUpCostPileSetting => { - "PLAYER_ACTION_EQUIPMENT_UP_COST_PILE_SETTING" + "PlayerActionType_PlayerActionEquipmentUpCostPileSetting" } - Self::PlayerActionRelicBoxShow => "PLAYER_ACTION_RELIC_BOX_SHOW", + Self::PlayerActionRelicBoxShow => "PlayerActionType_PlayerActionRelicBoxShow", Self::PlayerActionTutorialGuideFinish => { - "PLAYER_ACTION_TUTORIAL_GUIDE_FINISH" + "PlayerActionType_PlayerActionTutorialGuideFinish" + } + Self::PlayerActionTutorial => "PlayerActionType_PlayerActionTutorial", + Self::PlayerActionTutorialGuide => { + "PlayerActionType_PlayerActionTutorialGuide" + } + Self::PlayerActionMonsterDrop => "PlayerActionType_PlayerActionMonsterDrop", + Self::PlayerActionFinishChallenge => { + "PlayerActionType_PlayerActionFinishChallenge" + } + Self::PlayerActionChallengeStars => { + "PlayerActionType_PlayerActionChallengeStars" + } + Self::PlayerActionChallengeStart => { + "PlayerActionType_PlayerActionChallengeStart" + } + Self::PlayerActionChallengeEnd => "PlayerActionType_PlayerActionChallengeEnd", + Self::PlayerActionChallengeWin => "PlayerActionType_PlayerActionChallengeWin", + Self::PlayerActionChallengeFail => { + "PlayerActionType_PlayerActionChallengeFail" + } + Self::PlayerActionChallengeLeave => { + "PlayerActionType_PlayerActionChallengeLeave" + } + Self::PlayerActionChallengeSwitch => { + "PlayerActionType_PlayerActionChallengeSwitch" } - Self::PlayerActionTutorial => "PLAYER_ACTION_TUTORIAL", - Self::PlayerActionTutorialGuide => "PLAYER_ACTION_TUTORIAL_GUIDE", - Self::PlayerActionMonsterDrop => "PLAYER_ACTION_MONSTER_DROP", - Self::PlayerActionFinishChallenge => "PLAYER_ACTION_FINISH_CHALLENGE", - Self::PlayerActionChallengeStars => "PLAYER_ACTION_CHALLENGE_STARS", - Self::PlayerActionChallengeStart => "PLAYER_ACTION_CHALLENGE_START", - Self::PlayerActionChallengeEnd => "PLAYER_ACTION_CHALLENGE_END", - Self::PlayerActionChallengeWin => "PLAYER_ACTION_CHALLENGE_WIN", - Self::PlayerActionChallengeFail => "PLAYER_ACTION_CHALLENGE_FAIL", - Self::PlayerActionChallengeLeave => "PLAYER_ACTION_CHALLENGE_LEAVE", - Self::PlayerActionChallengeSwitch => "PLAYER_ACTION_CHALLENGE_SWITCH", Self::PlayerActionChallengeBonusReward => { - "PLAYER_ACTION_CHALLENGE_BONUS_REWARD" + "PlayerActionType_PlayerActionChallengeBonusReward" } Self::PlayerActionChallengeStarsReward => { - "PLAYER_ACTION_CHALLENGE_STARS_REWARD" + "PlayerActionType_PlayerActionChallengeStarsReward" + } + Self::PlayerActionChallengeRestart => { + "PlayerActionType_PlayerActionChallengeRestart" } - Self::PlayerActionChallengeRestart => "PLAYER_ACTION_CHALLENGE_RESTART", Self::PlayerActionChallengeStoryStart => { - "PLAYER_ACTION_CHALLENGE_STORY_START" + "PlayerActionType_PlayerActionChallengeStoryStart" + } + Self::PlayerActionChallengeStoryEnd => { + "PlayerActionType_PlayerActionChallengeStoryEnd" + } + Self::PlayerActionChallengeFastPass => { + "PlayerActionType_PlayerActionChallengeFastPass" } - Self::PlayerActionChallengeStoryEnd => "PLAYER_ACTION_CHALLENGE_STORY_END", - Self::PlayerActionChallengeFastPass => "PLAYER_ACTION_CHALLENGE_FAST_PASS", Self::PlayerActionChallengeStoryFastPass => { - "PLAYER_ACTION_CHALLENGE_STORY_FAST_PASS" + "PlayerActionType_PlayerActionChallengeStoryFastPass" } Self::PlayerActionChallengeMemoryFastPass => { - "PLAYER_ACTION_CHALLENGE_MEMORY_FAST_PASS" + "PlayerActionType_PlayerActionChallengeMemoryFastPass" } Self::PlayerActionChallengeBattleTarget => { - "PLAYER_ACTION_CHALLENGE_BATTLE_TARGET" + "PlayerActionType_PlayerActionChallengeBattleTarget" + } + Self::PlayerActionChallengeBossEnd => { + "PlayerActionType_PlayerActionChallengeBossEnd" } - Self::PlayerActionChallengeBossEnd => "PLAYER_ACTION_CHALLENGE_BOSS_END", Self::PlayerActionChallengeBossFastPass => { - "PLAYER_ACTION_CHALLENGE_BOSS_FAST_PASS" + "PlayerActionType_PlayerActionChallengeBossFastPass" } Self::PlayerActionChallengeStartPartial => { - "PLAYER_ACTION_CHALLENGE_START_PARTIAL" + "PlayerActionType_PlayerActionChallengeStartPartial" } Self::PlayerActionChallengeBossPhaseStart => { - "PLAYER_ACTION_CHALLENGE_BOSS_PHASE_START" + "PlayerActionType_PlayerActionChallengeBossPhaseStart" } Self::PlayerActionChallengeBossPhaseEnd => { - "PLAYER_ACTION_CHALLENGE_BOSS_PHASE_END" + "PlayerActionType_PlayerActionChallengeBossPhaseEnd" } Self::PlayerActionChallengeBossPhaseEndBeforeBattle => { - "PLAYER_ACTION_CHALLENGE_BOSS_PHASE_END_BEFORE_BATTLE" + "PlayerActionType_PlayerActionChallengeBossPhaseEndBeforeBattle" } Self::PlayerActionChallengeRecommendLineup => { - "PLAYER_ACTION_CHALLENGE_RECOMMEND_LINEUP" + "PlayerActionType_PlayerActionChallengeRecommendLineup" } Self::PlayerActionChallengeStoryFeverBattleEnd => { - "PLAYER_ACTION_CHALLENGE_STORY_FEVER_BATTLE_END" + "PlayerActionType_PlayerActionChallengeStoryFeverBattleEnd" + } + Self::PlayerActionTeamInfoChange => { + "PlayerActionType_PlayerActionTeamInfoChange" } - Self::PlayerActionTeamInfoChange => "PLAYER_ACTION_TEAM_INFO_CHANGE", Self::PlayerActionChangeCurrentAvatar => { - "PLAYER_ACTION_CHANGE_CURRENT_AVATAR" + "PlayerActionType_PlayerActionChangeCurrentAvatar" } - Self::PlayerActionCreateVirtualTeam => "PLAYER_ACTION_CREATE_VIRTUAL_TEAM", - Self::PlayerActionTeamNameEdit => "PLAYER_ACTION_TEAM_NAME_EDIT", - Self::PlayerActionAvatarBuffChange => "PLAYER_ACTION_AVATAR_BUFF_CHANGE", - Self::PlayerActionEnvBuffChange => "PLAYER_ACTION_ENV_BUFF_CHANGE", - Self::PlayerActionGameCore => "PLAYER_ACTION_GAME_CORE", - Self::PlayerActionAvatarGlobalBuff => "PLAYER_ACTION_AVATAR_GLOBAL_BUFF", - Self::PlayerActionRogueExploreStart => "PLAYER_ACTION_ROGUE_EXPLORE_START", - Self::PlayerActionRogueEnterRoom => "PLAYER_ACTION_ROGUE_ENTER_ROOM", - Self::PlayerActionRogueLeaveRoom => "PLAYER_ACTION_ROGUE_LEAVE_ROOM", - Self::PlayerActionRogueExploreFinish => "PLAYER_ACTION_ROGUE_EXPLORE_FINISH", - Self::PlayerActionRogueSelectBuff => "PLAYER_ACTION_ROGUE_SELECT_BUFF", - Self::PlayerActionRogueRollBuff => "PLAYER_ACTION_ROGUE_ROLL_BUFF", - Self::PlayerActionRogueRevive => "PLAYER_ACTION_ROGUE_REVIVE", + Self::PlayerActionCreateVirtualTeam => { + "PlayerActionType_PlayerActionCreateVirtualTeam" + } + Self::PlayerActionTeamNameEdit => "PlayerActionType_PlayerActionTeamNameEdit", + Self::PlayerActionReplaceLineupAvatar => { + "PlayerActionType_PlayerActionReplaceLineupAvatar" + } + Self::PlayerActionAvatarBuffChange => { + "PlayerActionType_PlayerActionAvatarBuffChange" + } + Self::PlayerActionEnvBuffChange => { + "PlayerActionType_PlayerActionEnvBuffChange" + } + Self::PlayerActionGameCore => "PlayerActionType_PlayerActionGameCore", + Self::PlayerActionAvatarGlobalBuff => { + "PlayerActionType_PlayerActionAvatarGlobalBuff" + } + Self::PlayerActionRogueExploreStart => { + "PlayerActionType_PlayerActionRogueExploreStart" + } + Self::PlayerActionRogueEnterRoom => { + "PlayerActionType_PlayerActionRogueEnterRoom" + } + Self::PlayerActionRogueLeaveRoom => { + "PlayerActionType_PlayerActionRogueLeaveRoom" + } + Self::PlayerActionRogueExploreFinish => { + "PlayerActionType_PlayerActionRogueExploreFinish" + } + Self::PlayerActionRogueSelectBuff => { + "PlayerActionType_PlayerActionRogueSelectBuff" + } + Self::PlayerActionRogueRollBuff => { + "PlayerActionType_PlayerActionRogueRollBuff" + } + Self::PlayerActionRogueRevive => "PlayerActionType_PlayerActionRogueRevive", Self::PlayerActionRogueChallengeStart => { - "PLAYER_ACTION_ROGUE_CHALLENGE_START" + "PlayerActionType_PlayerActionRogueChallengeStart" + } + Self::PlayerActionRogueMiracle => "PlayerActionType_PlayerActionRogueMiracle", + Self::PlayerActionRogueAddBuff => "PlayerActionType_PlayerActionRogueAddBuff", + Self::PlayerActionRoguePickAvatar => { + "PlayerActionType_PlayerActionRoguePickAvatar" + } + Self::PlayerActionRogueSeasonChanged => { + "PlayerActionType_PlayerActionRogueSeasonChanged" + } + Self::PlayerActionRogueAeonLevelUp => { + "PlayerActionType_PlayerActionRogueAeonLevelUp" + } + Self::PlayerActionRogueOpenDoor => { + "PlayerActionType_PlayerActionRogueOpenDoor" + } + Self::PlayerActionRogueScoreReward => { + "PlayerActionType_PlayerActionRogueScoreReward" + } + Self::PlayerActionRogueEnhanceBuff => { + "PlayerActionType_PlayerActionRogueEnhanceBuff" + } + Self::PlayerActionRogueSelectBonus => { + "PlayerActionType_PlayerActionRogueSelectBonus" } - Self::PlayerActionRogueMiracle => "PLAYER_ACTION_ROGUE_MIRACLE", - Self::PlayerActionRogueAddBuff => "PLAYER_ACTION_ROGUE_ADD_BUFF", - Self::PlayerActionRoguePickAvatar => "PLAYER_ACTION_ROGUE_PICK_AVATAR", - Self::PlayerActionRogueSeasonChanged => "PLAYER_ACTION_ROGUE_SEASON_CHANGED", - Self::PlayerActionRogueAeonLevelUp => "PLAYER_ACTION_ROGUE_AEON_LEVEL_UP", - Self::PlayerActionRogueOpenDoor => "PLAYER_ACTION_ROGUE_OPEN_DOOR", - Self::PlayerActionRogueScoreReward => "PLAYER_ACTION_ROGUE_SCORE_REWARD", - Self::PlayerActionRogueEnhanceBuff => "PLAYER_ACTION_ROGUE_ENHANCE_BUFF", - Self::PlayerActionRogueSelectBonus => "PLAYER_ACTION_ROGUE_SELECT_BONUS", Self::PlayerActionRogueAreaFirstReward => { - "PLAYER_ACTION_ROGUE_AREA_FIRST_REWARD" + "PlayerActionType_PlayerActionRogueAreaFirstReward" + } + Self::PlayerActionRogueEnableTalent => { + "PlayerActionType_PlayerActionRogueEnableTalent" + } + Self::PlayerActionRogueAeonUnlock => { + "PlayerActionType_PlayerActionRogueAeonUnlock" + } + Self::PlayerActionRogueAeonAddExp => { + "PlayerActionType_PlayerActionRogueAeonAddExp" } - Self::PlayerActionRogueEnableTalent => "PLAYER_ACTION_ROGUE_ENABLE_TALENT", - Self::PlayerActionRogueAeonUnlock => "PLAYER_ACTION_ROGUE_AEON_UNLOCK", - Self::PlayerActionRogueAeonAddExp => "PLAYER_ACTION_ROGUE_AEON_ADD_EXP", Self::PlayerActionRogueImmerseLevelUp => { - "PLAYER_ACTION_ROGUE_IMMERSE_LEVEL_UP" + "PlayerActionType_PlayerActionRogueImmerseLevelUp" + } + Self::PlayerActionRogueSelectMiracle => { + "PlayerActionType_PlayerActionRogueSelectMiracle" + } + Self::PlayerActionRogueUnlockArea => { + "PlayerActionType_PlayerActionRogueUnlockArea" } - Self::PlayerActionRogueSelectMiracle => "PLAYER_ACTION_ROGUE_SELECT_MIRACLE", - Self::PlayerActionRogueUnlockArea => "PLAYER_ACTION_ROGUE_UNLOCK_AREA", Self::PlayerActionRogueExploreScoreChange => { - "PLAYER_ACTION_ROGUE_EXPLORE_SCORE_CHANGE" + "PlayerActionType_PlayerActionRogueExploreScoreChange" } Self::PlayerActionRogueUpdateRewardPool => { - "PLAYER_ACTION_ROGUE_UPDATE_REWARD_POOL" + "PlayerActionType_PlayerActionRogueUpdateRewardPool" + } + Self::PlayerActionRogueSwapBuff => { + "PlayerActionType_PlayerActionRogueSwapBuff" + } + Self::PlayerActionRogueWeeklyRefresh => { + "PlayerActionType_PlayerActionRogueWeeklyRefresh" + } + Self::PlayerActionRogueExchangeKey => { + "PlayerActionType_PlayerActionRogueExchangeKey" } - Self::PlayerActionRogueSwapBuff => "PLAYER_ACTION_ROGUE_SWAP_BUFF", - Self::PlayerActionRogueWeeklyRefresh => "PLAYER_ACTION_ROGUE_WEEKLY_REFRESH", - Self::PlayerActionRogueExchangeKey => "PLAYER_ACTION_ROGUE_EXCHANGE_KEY", Self::PlayerActionRogueGetObjectReward => { - "PLAYER_ACTION_ROGUE_GET_OBJECT_REWARD" + "PlayerActionType_PlayerActionRogueGetObjectReward" } Self::PlayerActionRogueAreaMonsterDrop => { - "PLAYER_ACTION_ROGUE_AREA_MONSTER_DROP" + "PlayerActionType_PlayerActionRogueAreaMonsterDrop" + } + Self::PlayerActionRogueAddMiracle => { + "PlayerActionType_PlayerActionRogueAddMiracle" + } + Self::PlayerActionRogueSwapMiracle => { + "PlayerActionType_PlayerActionRogueSwapMiracle" } - Self::PlayerActionRogueAddMiracle => "PLAYER_ACTION_ROGUE_ADD_MIRACLE", - Self::PlayerActionRogueSwapMiracle => "PLAYER_ACTION_ROGUE_SWAP_MIRACLE", Self::PlayerActionRogueOpenObjectReward => { - "PLAYER_ACTION_ROGUE_OPEN_OBJECT_REWARD" + "PlayerActionType_PlayerActionRogueOpenObjectReward" + } + Self::PlayerActionRogueAeonEffect => { + "PlayerActionType_PlayerActionRogueAeonEffect" + } + Self::PlayerActionRogueReforgeBuff => { + "PlayerActionType_PlayerActionRogueReforgeBuff" + } + Self::PlayerActionRogueTradeMiracle => { + "PlayerActionType_PlayerActionRogueTradeMiracle" + } + Self::PlayerActionRogueRemoveAvatar => { + "PlayerActionType_PlayerActionRogueRemoveAvatar" } - Self::PlayerActionRogueAeonEffect => "PLAYER_ACTION_ROGUE_AEON_EFFECT", - Self::PlayerActionRogueReforgeBuff => "PLAYER_ACTION_ROGUE_REFORGE_BUFF", - Self::PlayerActionRogueTradeMiracle => "PLAYER_ACTION_ROGUE_TRADE_MIRACLE", - Self::PlayerActionRogueRemoveAvatar => "PLAYER_ACTION_ROGUE_REMOVE_AVATAR", Self::PlayerActionRogueDialogueSelect => { - "PLAYER_ACTION_ROGUE_DIALOGUE_SELECT" + "PlayerActionType_PlayerActionRogueDialogueSelect" + } + Self::PlayerActionRogueSelectAeon => { + "PlayerActionType_PlayerActionRogueSelectAeon" } - Self::PlayerActionRogueSelectAeon => "PLAYER_ACTION_ROGUE_SELECT_AEON", Self::PlayerActionRogueDialogueFinish => { - "PLAYER_ACTION_ROGUE_DIALOGUE_FINISH" + "PlayerActionType_PlayerActionRogueDialogueFinish" } Self::PlayerActionRogueHandbookReward => { - "PLAYER_ACTION_ROGUE_HANDBOOK_REWARD" + "PlayerActionType_PlayerActionRogueHandbookReward" } Self::PlayerActionRogueAdventureRoomReward => { - "PLAYER_ACTION_ROGUE_ADVENTURE_ROOM_REWARD" + "PlayerActionType_PlayerActionRogueAdventureRoomReward" + } + Self::PlayerActionRogueShopBuy => "PlayerActionType_PlayerActionRogueShopBuy", + Self::PlayerActionRogueRepairMiracle => { + "PlayerActionType_PlayerActionRogueRepairMiracle" } - Self::PlayerActionRogueShopBuy => "PLAYER_ACTION_ROGUE_SHOP_BUY", - Self::PlayerActionRogueRepairMiracle => "PLAYER_ACTION_ROGUE_REPAIR_MIRACLE", Self::PlayerActionRogueReplaceAllMiracle => { - "PLAYER_ACTION_ROGUE_REPLACE_ALL_MIRACLE" + "PlayerActionType_PlayerActionRogueReplaceAllMiracle" + } + Self::PlayerActionRogueMiracleBroken => { + "PlayerActionType_PlayerActionRogueMiracleBroken" + } + Self::PlayerActionRogueShopRefresh => { + "PlayerActionType_PlayerActionRogueShopRefresh" } - Self::PlayerActionRogueMiracleBroken => "PLAYER_ACTION_ROGUE_MIRACLE_BROKEN", - Self::PlayerActionRogueShopRefresh => "PLAYER_ACTION_ROGUE_SHOP_REFRESH", Self::PlayerActionRogueLevelMechanism => { - "PLAYER_ACTION_ROGUE_LEVEL_MECHANISM" + "PlayerActionType_PlayerActionRogueLevelMechanism" + } + Self::PlayerActionRogueRemoveMiracle => { + "PlayerActionType_PlayerActionRogueRemoveMiracle" + } + Self::PlayerActionRogueDropBuff => { + "PlayerActionType_PlayerActionRogueDropBuff" } - Self::PlayerActionRogueRemoveMiracle => "PLAYER_ACTION_ROGUE_REMOVE_MIRACLE", - Self::PlayerActionRogueDropBuff => "PLAYER_ACTION_ROGUE_DROP_BUFF", Self::PlayerActionRogueDestroyMiracle => { - "PLAYER_ACTION_ROGUE_DESTROY_MIRACLE" + "PlayerActionType_PlayerActionRogueDestroyMiracle" } Self::PlayerActionRogueActivateFormula => { - "PLAYER_ACTION_ROGUE_ACTIVATE_FORMULA" + "PlayerActionType_PlayerActionRogueActivateFormula" } Self::PlayerActionRogueDeactivateFormula => { - "PLAYER_ACTION_ROGUE_DEACTIVATE_FORMULA" + "PlayerActionType_PlayerActionRogueDeactivateFormula" + } + Self::PlayerActionRogueRemoveBuff => { + "PlayerActionType_PlayerActionRogueRemoveBuff" + } + Self::PlayerActionRogueSelectFormula => { + "PlayerActionType_PlayerActionRogueSelectFormula" + } + Self::PlayerActionRogueDropFormula => { + "PlayerActionType_PlayerActionRogueDropFormula" + } + Self::PlayerActionRogueRollFormula => { + "PlayerActionType_PlayerActionRogueRollFormula" } - Self::PlayerActionRogueRemoveBuff => "PLAYER_ACTION_ROGUE_REMOVE_BUFF", - Self::PlayerActionRogueSelectFormula => "PLAYER_ACTION_ROGUE_SELECT_FORMULA", - Self::PlayerActionRogueDropFormula => "PLAYER_ACTION_ROGUE_DROP_FORMULA", - Self::PlayerActionRogueRollFormula => "PLAYER_ACTION_ROGUE_ROLL_FORMULA", Self::PlayerActionRogueReforgeFormula => { - "PLAYER_ACTION_ROGUE_REFORGE_FORMULA" + "PlayerActionType_PlayerActionRogueReforgeFormula" } Self::PlayerActionRogueComposeMiracle => { - "PLAYER_ACTION_ROGUE_COMPOSE_MIRACLE" + "PlayerActionType_PlayerActionRogueComposeMiracle" } Self::PlayerActionRogueReforgeMiracle => { - "PLAYER_ACTION_ROGUE_REFORGE_MIRACLE" + "PlayerActionType_PlayerActionRogueReforgeMiracle" + } + Self::PlayerActionRogueDoGamble => { + "PlayerActionType_PlayerActionRogueDoGamble" } - Self::PlayerActionRogueDoGamble => "PLAYER_ACTION_ROGUE_DO_GAMBLE", Self::PlayerActionRogueKeywordActivate => { - "PLAYER_ACTION_ROGUE_KEYWORD_ACTIVATE" + "PlayerActionType_PlayerActionRogueKeywordActivate" } Self::PlayerActionRogueKeywordDeactivate => { - "PLAYER_ACTION_ROGUE_KEYWORD_DEACTIVATE" + "PlayerActionType_PlayerActionRogueKeywordDeactivate" + } + Self::PlayerActionRogueSourceDefault => { + "PlayerActionType_PlayerActionRogueSourceDefault" + } + Self::PlayerActionRoguePlayerSelect => { + "PlayerActionType_PlayerActionRoguePlayerSelect" } - Self::PlayerActionRogueSourceDefault => "PLAYER_ACTION_ROGUE_SOURCE_DEFAULT", - Self::PlayerActionRoguePlayerSelect => "PLAYER_ACTION_ROGUE_PLAYER_SELECT", Self::PlayerActionRogueLayerSettlement => { - "PLAYER_ACTION_ROGUE_LAYER_SETTLEMENT" + "PlayerActionType_PlayerActionRogueLayerSettlement" + } + Self::PlayerActionRogueFormula => "PlayerActionType_PlayerActionRogueFormula", + Self::PlayerActionRogueWorkbench => { + "PlayerActionType_PlayerActionRogueWorkbench" + } + Self::PlayerActionRogueModifier => { + "PlayerActionType_PlayerActionRogueModifier" + } + Self::PlayerActionRogueReforge => "PlayerActionType_PlayerActionRogueReforge", + Self::PlayerActionRogueTalent => "PlayerActionType_PlayerActionRogueTalent", + Self::PlayerActionRogueReroll => "PlayerActionType_PlayerActionRogueReroll", + Self::PlayerActionRogueCoinChange => { + "PlayerActionType_PlayerActionRogueCoinChange" } - Self::PlayerActionRogueFormula => "PLAYER_ACTION_ROGUE_FORMULA", - Self::PlayerActionRogueWorkbench => "PLAYER_ACTION_ROGUE_WORKBENCH", - Self::PlayerActionRogueModifier => "PLAYER_ACTION_ROGUE_MODIFIER", - Self::PlayerActionRogueReforge => "PLAYER_ACTION_ROGUE_REFORGE", - Self::PlayerActionRogueTalent => "PLAYER_ACTION_ROGUE_TALENT", - Self::PlayerActionRogueReroll => "PLAYER_ACTION_ROGUE_REROLL", - Self::PlayerActionRogueCoinChange => "PLAYER_ACTION_ROGUE_COIN_CHANGE", Self::PlayerActionRogueMagicScepterShop => { - "PLAYER_ACTION_ROGUE_MAGIC_SCEPTER_SHOP" + "PlayerActionType_PlayerActionRogueMagicScepterShop" + } + Self::PlayerActionRogueMagicUnitShop => { + "PlayerActionType_PlayerActionRogueMagicUnitShop" } - Self::PlayerActionRogueMagicUnitShop => "PLAYER_ACTION_ROGUE_MAGIC_UNIT_SHOP", Self::PlayerActionRogueMagicScepterLevelUp => { - "PLAYER_ACTION_ROGUE_MAGIC_SCEPTER_LEVEL_UP" + "PlayerActionType_PlayerActionRogueMagicScepterLevelUp" } - Self::PlayerActionGacha => "PLAYER_ACTION_GACHA", - Self::PlayerActionAddGachaTicket => "PLAYER_ACTION_ADD_GACHA_TICKET", - Self::PlayerActionGachaExchange => "PLAYER_ACTION_GACHA_EXCHANGE", - Self::PlayerActionSetGachaDecideItem => "PLAYER_ACTION_SET_GACHA_DECIDE_ITEM", - Self::PlayerActionEventMissionAccept => "PLAYER_ACTION_EVENT_MISSION_ACCEPT", - Self::PlayerActionEventMissionFinish => "PLAYER_ACTION_EVENT_MISSION_FINISH", - Self::PlayerActionEventMissionReward => "PLAYER_ACTION_EVENT_MISSION_REWARD", - Self::PlayerActionRaidFinish => "PLAYER_ACTION_RAID_FINISH", - Self::PlayerActionRaidBegin => "PLAYER_ACTION_RAID_BEGIN", + Self::PlayerActionGacha => "PlayerActionType_PlayerActionGacha", + Self::PlayerActionAddGachaTicket => { + "PlayerActionType_PlayerActionAddGachaTicket" + } + Self::PlayerActionGachaExchange => { + "PlayerActionType_PlayerActionGachaExchange" + } + Self::PlayerActionSetGachaDecideItem => { + "PlayerActionType_PlayerActionSetGachaDecideItem" + } + Self::PlayerActionEventMissionAccept => { + "PlayerActionType_PlayerActionEventMissionAccept" + } + Self::PlayerActionEventMissionFinish => { + "PlayerActionType_PlayerActionEventMissionFinish" + } + Self::PlayerActionEventMissionReward => { + "PlayerActionType_PlayerActionEventMissionReward" + } + Self::PlayerActionRaidFinish => "PlayerActionType_PlayerActionRaidFinish", + Self::PlayerActionRaidBegin => "PlayerActionType_PlayerActionRaidBegin", Self::PlayerActionChallengeRaidReward => { - "PLAYER_ACTION_CHALLENGE_RAID_REWARD" + "PlayerActionType_PlayerActionChallengeRaidReward" + } + Self::PlayerActionStartRaid => "PlayerActionType_PlayerActionStartRaid", + Self::PlayerActionEndRaid => "PlayerActionType_PlayerActionEndRaid", + Self::PlayerActionRaidTargetFinish => { + "PlayerActionType_PlayerActionRaidTargetFinish" + } + Self::PlayerActionArchiveRaid => "PlayerActionType_PlayerActionArchiveRaid", + Self::PlayerActionHeroBaseTypeChange => { + "PlayerActionType_PlayerActionHeroBaseTypeChange" } - Self::PlayerActionStartRaid => "PLAYER_ACTION_START_RAID", - Self::PlayerActionEndRaid => "PLAYER_ACTION_END_RAID", - Self::PlayerActionRaidTargetFinish => "PLAYER_ACTION_RAID_TARGET_FINISH", - Self::PlayerActionArchiveRaid => "PLAYER_ACTION_ARCHIVE_RAID", - Self::PlayerActionHeroBaseTypeChange => "PLAYER_ACTION_HERO_BASE_TYPE_CHANGE", Self::PlayerActionHeroBaseTypeAddByMission => { - "PLAYER_ACTION_HERO_BASE_TYPE_ADD_BY_MISSION" + "PlayerActionType_PlayerActionHeroBaseTypeAddByMission" } Self::PlayerActionHeroBaseTypeAddByReq => { - "PLAYER_ACTION_HERO_BASE_TYPE_ADD_BY_REQ" + "PlayerActionType_PlayerActionHeroBaseTypeAddByReq" + } + Self::PlayerActionHeroBaseTypeAdd => { + "PlayerActionType_PlayerActionHeroBaseTypeAdd" + } + Self::PlayerActionDialogueSelect => { + "PlayerActionType_PlayerActionDialogueSelect" + } + Self::PlayerActionExpeditionStart => { + "PlayerActionType_PlayerActionExpeditionStart" + } + Self::PlayerActionExpeditionFinish => { + "PlayerActionType_PlayerActionExpeditionFinish" + } + Self::PlayerActionExpeditionReward => { + "PlayerActionType_PlayerActionExpeditionReward" } - Self::PlayerActionHeroBaseTypeAdd => "PLAYER_ACTION_HERO_BASE_TYPE_ADD", - Self::PlayerActionDialogueSelect => "PLAYER_ACTION_DIALOGUE_SELECT", - Self::PlayerActionExpeditionStart => "PLAYER_ACTION_EXPEDITION_START", - Self::PlayerActionExpeditionFinish => "PLAYER_ACTION_EXPEDITION_FINISH", - Self::PlayerActionExpeditionReward => "PLAYER_ACTION_EXPEDITION_REWARD", Self::PlayerActionActivityExpeditionStart => { - "PLAYER_ACTION_ACTIVITY_EXPEDITION_START" + "PlayerActionType_PlayerActionActivityExpeditionStart" } Self::PlayerActionActivityExpeditionFinish => { - "PLAYER_ACTION_ACTIVITY_EXPEDITION_FINISH" + "PlayerActionType_PlayerActionActivityExpeditionFinish" } Self::PlayerActionActivityExpeditionReward => { - "PLAYER_ACTION_ACTIVITY_EXPEDITION_REWARD" + "PlayerActionType_PlayerActionActivityExpeditionReward" } Self::PlayerActionActivityExpeditionBegin => { - "PLAYER_ACTION_ACTIVITY_EXPEDITION_BEGIN" + "PlayerActionType_PlayerActionActivityExpeditionBegin" } Self::PlayerActionActivityExpeditionEnd => { - "PLAYER_ACTION_ACTIVITY_EXPEDITION_END" + "PlayerActionType_PlayerActionActivityExpeditionEnd" } Self::PlayerActionActivityLoginReward => { - "PLAYER_ACTION_ACTIVITY_LOGIN_REWARD" + "PlayerActionType_PlayerActionActivityLoginReward" } - Self::PlayerActionFriendReport => "PLAYER_ACTION_FRIEND_REPORT", - Self::PlayerActionAssistReward => "PLAYER_ACTION_ASSIST_REWARD", + Self::PlayerActionFriendReport => "PlayerActionType_PlayerActionFriendReport", + Self::PlayerActionAssistReward => "PlayerActionType_PlayerActionAssistReward", Self::PlayerActionAssistAvatarRefresh => { - "PLAYER_ACTION_ASSIST_AVATAR_REFRESH" + "PlayerActionType_PlayerActionAssistAvatarRefresh" } Self::PlayerActionAssistAvatarBattleStart => { - "PLAYER_ACTION_ASSIST_AVATAR_BATTLE_START" + "PlayerActionType_PlayerActionAssistAvatarBattleStart" } Self::PlayerActionAssistAvatarBattleEnd => { - "PLAYER_ACTION_ASSIST_AVATAR_BATTLE_END" + "PlayerActionType_PlayerActionAssistAvatarBattleEnd" + } + Self::PlayerActionFriendApply => "PlayerActionType_PlayerActionFriendApply", + Self::PlayerActionFriendManage => "PlayerActionType_PlayerActionFriendManage", + Self::PlayerActionFriendBlacklist => { + "PlayerActionType_PlayerActionFriendBlacklist" } - Self::PlayerActionFriendApply => "PLAYER_ACTION_FRIEND_APPLY", - Self::PlayerActionFriendManage => "PLAYER_ACTION_FRIEND_MANAGE", - Self::PlayerActionFriendBlacklist => "PLAYER_ACTION_FRIEND_BLACKLIST", Self::PlayerActionFriendModifyRemarkName => { - "PLAYER_ACTION_FRIEND_MODIFY_REMARK_NAME" + "PlayerActionType_PlayerActionFriendModifyRemarkName" + } + Self::PlayerActionFriendMark => "PlayerActionType_PlayerActionFriendMark", + Self::PlayerActionFriendAssistList => { + "PlayerActionType_PlayerActionFriendAssistList" } - Self::PlayerActionFriendMark => "PLAYER_ACTION_FRIEND_MARK", - Self::PlayerActionFriendAssistList => "PLAYER_ACTION_FRIEND_ASSIST_LIST", Self::PlayerActionBattlePassLevelReward => { - "PLAYER_ACTION_BATTLE_PASS_LEVEL_REWARD" + "PlayerActionType_PlayerActionBattlePassLevelReward" } - Self::PlayerActionBattlePass128tierReward => { - "PLAYER_ACTION_BATTLE_PASS_128TIER_REWARD" + Self::PlayerActionBattlePass128TierReward => { + "PlayerActionType_PlayerActionBattlePass128TierReward" } Self::PlayerActionBattlePassLevelRewardAutoMail => { - "PLAYER_ACTION_BATTLE_PASS_LEVEL_REWARD_AUTO_MAIL" + "PlayerActionType_PlayerActionBattlePassLevelRewardAutoMail" } - Self::PlayerActionBuyBattlePass => "PLAYER_ACTION_BUY_BATTLE_PASS", - Self::PlayerActionAddBattlePassExp => "PLAYER_ACTION_ADD_BATTLE_PASS_EXP", - Self::PlayerActionBattlePassLevelUp => "PLAYER_ACTION_BATTLE_PASS_LEVEL_UP", - Self::PlayerActionBuyBattlePassLevel => "PLAYER_ACTION_BUY_BATTLE_PASS_LEVEL", - Self::PlayerActionBattlePassEndMail => "PLAYER_ACTION_BATTLE_PASS_END_MAIL", - Self::PlayerActionBattlePass68tierReward => { - "PLAYER_ACTION_BATTLE_PASS_68TIER_REWARD" + Self::PlayerActionBuyBattlePass => { + "PlayerActionType_PlayerActionBuyBattlePass" + } + Self::PlayerActionAddBattlePassExp => { + "PlayerActionType_PlayerActionAddBattlePassExp" + } + Self::PlayerActionBattlePassLevelUp => { + "PlayerActionType_PlayerActionBattlePassLevelUp" + } + Self::PlayerActionBuyBattlePassLevel => { + "PlayerActionType_PlayerActionBuyBattlePassLevel" + } + Self::PlayerActionBattlePassEndMail => { + "PlayerActionType_PlayerActionBattlePassEndMail" + } + Self::PlayerActionBattlePass68TierReward => { + "PlayerActionType_PlayerActionBattlePass68TierReward" + } + Self::PlayerActionModifySign => "PlayerActionType_PlayerActionModifySign", + Self::PlayerActionDisplayAvatarSet => { + "PlayerActionType_PlayerActionDisplayAvatarSet" + } + Self::PlayerActionAssistAvatarSet => { + "PlayerActionType_PlayerActionAssistAvatarSet" + } + Self::PlayerActionAchievementFinish => { + "PlayerActionType_PlayerActionAchievementFinish" + } + Self::PlayerActionAchievementReward => { + "PlayerActionType_PlayerActionAchievementReward" + } + Self::PlayerActionAchievementAddExp => { + "PlayerActionType_PlayerActionAchievementAddExp" + } + Self::PlayerActionAchievementLevelUp => { + "PlayerActionType_PlayerActionAchievementLevelUp" + } + Self::PlayerActionPunkLordReward => { + "PlayerActionType_PlayerActionPunkLordReward" + } + Self::PlayerActionPunkLordBossSearch => { + "PlayerActionType_PlayerActionPunkLordBossSearch" + } + Self::PlayerActionPunkLordBossShare => { + "PlayerActionType_PlayerActionPunkLordBossShare" + } + Self::PlayerActionStartPunkLordRaid => { + "PlayerActionType_PlayerActionStartPunkLordRaid" } - Self::PlayerActionModifySign => "PLAYER_ACTION_MODIFY_SIGN", - Self::PlayerActionDisplayAvatarSet => "PLAYER_ACTION_DISPLAY_AVATAR_SET", - Self::PlayerActionAssistAvatarSet => "PLAYER_ACTION_ASSIST_AVATAR_SET", - Self::PlayerActionAchievementFinish => "PLAYER_ACTION_ACHIEVEMENT_FINISH", - Self::PlayerActionAchievementReward => "PLAYER_ACTION_ACHIEVEMENT_REWARD", - Self::PlayerActionAchievementAddExp => "PLAYER_ACTION_ACHIEVEMENT_ADD_EXP", - Self::PlayerActionAchievementLevelUp => "PLAYER_ACTION_ACHIEVEMENT_LEVEL_UP", - Self::PlayerActionPunkLordReward => "PLAYER_ACTION_PUNK_LORD_REWARD", - Self::PlayerActionPunkLordBossSearch => "PLAYER_ACTION_PUNK_LORD_BOSS_SEARCH", - Self::PlayerActionPunkLordBossShare => "PLAYER_ACTION_PUNK_LORD_BOSS_SHARE", - Self::PlayerActionStartPunkLordRaid => "PLAYER_ACTION_START_PUNK_LORD_RAID", Self::PlayerActionPunkLordSupportTimes => { - "PLAYER_ACTION_PUNK_LORD_SUPPORT_TIMES" + "PlayerActionType_PlayerActionPunkLordSupportTimes" } Self::PlayerActionPunkLordScoreReward => { - "PLAYER_ACTION_PUNK_LORD_SCORE_REWARD" + "PlayerActionType_PlayerActionPunkLordScoreReward" } Self::PlayerActionPunkLordListRefresh => { - "PLAYER_ACTION_PUNK_LORD_LIST_REFRESH" + "PlayerActionType_PlayerActionPunkLordListRefresh" } Self::PlayerActionPunkLordPowerAttack => { - "PLAYER_ACTION_PUNK_LORD_POWER_ATTACK" + "PlayerActionType_PlayerActionPunkLordPowerAttack" + } + Self::PlayerActionPunkLordBattleEnd => { + "PlayerActionType_PlayerActionPunkLordBattleEnd" + } + Self::PlayerActionPunkLordBossDeath => { + "PlayerActionType_PlayerActionPunkLordBossDeath" + } + Self::PlayerActionPunkLordBossScore => { + "PlayerActionType_PlayerActionPunkLordBossScore" } - Self::PlayerActionPunkLordBattleEnd => "PLAYER_ACTION_PUNK_LORD_BATTLE_END", - Self::PlayerActionPunkLordBossDeath => "PLAYER_ACTION_PUNK_LORD_BOSS_DEATH", - Self::PlayerActionPunkLordBossScore => "PLAYER_ACTION_PUNK_LORD_BOSS_SCORE", Self::PlayerActionDailyActiveLevelReward => { - "PLAYER_ACTION_DAILY_ACTIVE_LEVEL_REWARD" + "PlayerActionType_PlayerActionDailyActiveLevelReward" } Self::PlayerActionDailyActiveAddPoint => { - "PLAYER_ACTION_DAILY_ACTIVE_ADD_POINT" + "PlayerActionType_PlayerActionDailyActiveAddPoint" } Self::PlayerActionDailyActiveDeleteOldQuest => { - "PLAYER_ACTION_DAILY_ACTIVE_DELETE_OLD_QUEST" + "PlayerActionType_PlayerActionDailyActiveDeleteOldQuest" + } + Self::PlayerActionFightActivityBegin => { + "PlayerActionType_PlayerActionFightActivityBegin" + } + Self::PlayerActionFightActivityEnd => { + "PlayerActionType_PlayerActionFightActivityEnd" } - Self::PlayerActionFightActivityBegin => "PLAYER_ACTION_FIGHT_ACTIVITY_BEGIN", - Self::PlayerActionFightActivityEnd => "PLAYER_ACTION_FIGHT_ACTIVITY_END", Self::PlayerActionFightActivityReward => { - "PLAYER_ACTION_FIGHT_ACTIVITY_REWARD" + "PlayerActionType_PlayerActionFightActivityReward" } - Self::PlayerActionActivityEndMail => "PLAYER_ACTION_ACTIVITY_END_MAIL", - Self::PlayerActionAppointmentMail => "PLAYER_ACTION_APPOINTMENT_MAIL", - Self::PlayerActionShareReward => "PLAYER_ACTION_SHARE_REWARD", + Self::PlayerActionActivityEndMail => { + "PlayerActionType_PlayerActionActivityEndMail" + } + Self::PlayerActionAppointmentMail => { + "PlayerActionType_PlayerActionAppointmentMail" + } + Self::PlayerActionShareReward => "PlayerActionType_PlayerActionShareReward", Self::PlayerActionActivityTrialReward => { - "PLAYER_ACTION_ACTIVITY_TRIAL_REWARD" + "PlayerActionType_PlayerActionActivityTrialReward" } - Self::PlayerActionActivityTrialStart => "PLAYER_ACTION_ACTIVITY_TRIAL_START", - Self::PlayerActionPsPreOrderMail1 => "PLAYER_ACTION_PS_PRE_ORDER_MAIL1", - Self::PlayerActionPsPreOrderMail2 => "PLAYER_ACTION_PS_PRE_ORDER_MAIL2", - Self::PlayerActionPsLoginMail => "PLAYER_ACTION_PS_LOGIN_MAIL", - Self::PlayerActionLoginMail => "PLAYER_ACTION_LOGIN_MAIL", + Self::PlayerActionActivityTrialStart => { + "PlayerActionType_PlayerActionActivityTrialStart" + } + Self::PlayerActionPsPreOrderMail1 => { + "PlayerActionType_PlayerActionPsPreOrderMail1" + } + Self::PlayerActionPsPreOrderMail2 => { + "PlayerActionType_PlayerActionPsPreOrderMail2" + } + Self::PlayerActionPsLoginMail => "PlayerActionType_PlayerActionPsLoginMail", + Self::PlayerActionLoginMail => "PlayerActionType_PlayerActionLoginMail", Self::PlayerActionGooglePoints100Mail => { - "PLAYER_ACTION_GOOGLE_POINTS_100_MAIL" + "PlayerActionType_PlayerActionGooglePoints100Mail" } Self::PlayerActionGooglePoints150Mail => { - "PLAYER_ACTION_GOOGLE_POINTS_150_MAIL" + "PlayerActionType_PlayerActionGooglePoints150Mail" } Self::PlayerActionTrainVisitorBehaviorFinish => { - "PLAYER_ACTION_TRAIN_VISITOR_BEHAVIOR_FINISH" + "PlayerActionType_PlayerActionTrainVisitorBehaviorFinish" + } + Self::PlayerActionEnterViewTrain => { + "PlayerActionType_PlayerActionEnterViewTrain" } - Self::PlayerActionEnterViewTrain => "PLAYER_ACTION_ENTER_VIEW_TRAIN", Self::PlayerActionTrainVisitorBehaviorRewardForceSend => { - "PLAYER_ACTION_TRAIN_VISITOR_BEHAVIOR_REWARD_FORCE_SEND" + "PlayerActionType_PlayerActionTrainVisitorBehaviorRewardForceSend" } Self::PlayerActionTrainVisitorRegisterOpen => { - "PLAYER_ACTION_TRAIN_VISITOR_REGISTER_OPEN" + "PlayerActionType_PlayerActionTrainVisitorRegisterOpen" } Self::PlayerActionTrainVisitorBehaviorRewardForceSendByRegister => { - "PLAYER_ACTION_TRAIN_VISITOR_BEHAVIOR_REWARD_FORCE_SEND_BY_REGISTER" + "PlayerActionType_PlayerActionTrainVisitorBehaviorRewardForceSendByRegister" } Self::PlayerActionTrainVisitorClearLastTrainVisitor => { - "PLAYER_ACTION_TRAIN_VISITOR_CLEAR_LAST_TRAIN_VISITOR" + "PlayerActionType_PlayerActionTrainVisitorClearLastTrainVisitor" } Self::PlayerActionTrainVisitorRefreshTrainVisitor => { - "PLAYER_ACTION_TRAIN_VISITOR_REFRESH_TRAIN_VISITOR" + "PlayerActionType_PlayerActionTrainVisitorRefreshTrainVisitor" } Self::PlayerActionTrainVisitorRefreshNpc => { - "PLAYER_ACTION_TRAIN_VISITOR_REFRESH_NPC" + "PlayerActionType_PlayerActionTrainVisitorRefreshNpc" + } + Self::PlayerActionMessageGroupAccept => { + "PlayerActionType_PlayerActionMessageGroupAccept" } - Self::PlayerActionMessageGroupAccept => "PLAYER_ACTION_MESSAGE_GROUP_ACCEPT", Self::PlayerActionMessageSectionAccept => { - "PLAYER_ACTION_MESSAGE_SECTION_ACCEPT" + "PlayerActionType_PlayerActionMessageSectionAccept" } Self::PlayerActionMessageSectionFinish => { - "PLAYER_ACTION_MESSAGE_SECTION_FINISH" + "PlayerActionType_PlayerActionMessageSectionFinish" + } + Self::PlayerActionMessageItemFinish => { + "PlayerActionType_PlayerActionMessageItemFinish" } - Self::PlayerActionMessageItemFinish => "PLAYER_ACTION_MESSAGE_ITEM_FINISH", Self::PlayerActionFinishMessageGroupReward => { - "PLAYER_ACTION_FINISH_MESSAGE_GROUP_REWARD" + "PlayerActionType_PlayerActionFinishMessageGroupReward" } Self::PlayerActionSubstituteMessageGroupReward => { - "PLAYER_ACTION_SUBSTITUTE_MESSAGE_GROUP_REWARD" + "PlayerActionType_PlayerActionSubstituteMessageGroupReward" + } + Self::PlayerActionDeleteMessageGroup => { + "PlayerActionType_PlayerActionDeleteMessageGroup" } - Self::PlayerActionDeleteMessageGroup => "PLAYER_ACTION_DELETE_MESSAGE_GROUP", Self::PlayerActionDeleteMessageSection => { - "PLAYER_ACTION_DELETE_MESSAGE_SECTION" + "PlayerActionType_PlayerActionDeleteMessageSection" } Self::PlayerActionDeleteMessageGroupByConfig => { - "PLAYER_ACTION_DELETE_MESSAGE_GROUP_BY_CONFIG" + "PlayerActionType_PlayerActionDeleteMessageGroupByConfig" } Self::PlayerActionDeleteMessageGroupByActivity => { - "PLAYER_ACTION_DELETE_MESSAGE_GROUP_BY_ACTIVITY" + "PlayerActionType_PlayerActionDeleteMessageGroupByActivity" } Self::PlayerActionDeleteMessageGroupByMission => { - "PLAYER_ACTION_DELETE_MESSAGE_GROUP_BY_MISSION" + "PlayerActionType_PlayerActionDeleteMessageGroupByMission" + } + Self::PlayerActionTextJoinSave => "PlayerActionType_PlayerActionTextJoinSave", + Self::PlayerActionBoxingClubStart => { + "PlayerActionType_PlayerActionBoxingClubStart" + } + Self::PlayerActionBoxingClubFinish => { + "PlayerActionType_PlayerActionBoxingClubFinish" + } + Self::PlayerActionBoxingClubPause => { + "PlayerActionType_PlayerActionBoxingClubPause" } - Self::PlayerActionTextJoinSave => "PLAYER_ACTION_TEXT_JOIN_SAVE", - Self::PlayerActionBoxingClubStart => "PLAYER_ACTION_BOXING_CLUB_START", - Self::PlayerActionBoxingClubFinish => "PLAYER_ACTION_BOXING_CLUB_FINISH", - Self::PlayerActionBoxingClubPause => "PLAYER_ACTION_BOXING_CLUB_PAUSE", Self::PlayerActionBoxingClubStageStart => { - "PLAYER_ACTION_BOXING_CLUB_STAGE_START" + "PlayerActionType_PlayerActionBoxingClubStageStart" } - Self::PlayerActionTalkSend => "PLAYER_ACTION_TALK_SEND", + Self::PlayerActionTalkSend => "PlayerActionType_PlayerActionTalkSend", Self::PlayerActionSelectInclinationText => { - "PLAYER_ACTION_SELECT_INCLINATION_TEXT" + "PlayerActionType_PlayerActionSelectInclinationText" } Self::PlayerActionMuseumSettleTurnOpen => { - "PLAYER_ACTION_MUSEUM_SETTLE_TURN_OPEN" + "PlayerActionType_PlayerActionMuseumSettleTurnOpen" + } + Self::PlayerActionMuseumUpgradeArea => { + "PlayerActionType_PlayerActionMuseumUpgradeArea" } - Self::PlayerActionMuseumUpgradeArea => "PLAYER_ACTION_MUSEUM_UPGRADE_AREA", Self::PlayerActionMuseumUpgradeAreaStat => { - "PLAYER_ACTION_MUSEUM_UPGRADE_AREA_STAT" + "PlayerActionType_PlayerActionMuseumUpgradeAreaStat" } Self::PlayerActionMuseumDispatchRewardRegular => { - "PLAYER_ACTION_MUSEUM_DISPATCH_REWARD_REGULAR" + "PlayerActionType_PlayerActionMuseumDispatchRewardRegular" } Self::PlayerActionMuseumDispatchRewardDirectional => { - "PLAYER_ACTION_MUSEUM_DISPATCH_REWARD_DIRECTIONAL" + "PlayerActionType_PlayerActionMuseumDispatchRewardDirectional" } Self::PlayerActionMuseumPhaseTargetFinished => { - "PLAYER_ACTION_MUSEUM_PHASE_TARGET_FINISHED" + "PlayerActionType_PlayerActionMuseumPhaseTargetFinished" + } + Self::PlayerActionMuseumGetStuff => { + "PlayerActionType_PlayerActionMuseumGetStuff" + } + Self::PlayerActionMuseumGetExhibit => { + "PlayerActionType_PlayerActionMuseumGetExhibit" } - Self::PlayerActionMuseumGetStuff => "PLAYER_ACTION_MUSEUM_GET_STUFF", - Self::PlayerActionMuseumGetExhibit => "PLAYER_ACTION_MUSEUM_GET_EXHIBIT", Self::PlayerActionMuseumTakeCollectMission => { - "PLAYER_ACTION_MUSEUM_TAKE_COLLECT_MISSION" + "PlayerActionType_PlayerActionMuseumTakeCollectMission" + } + Self::PlayerActionMuseumAreaUnlock => { + "PlayerActionType_PlayerActionMuseumAreaUnlock" + } + Self::PlayerActionMuseumAreaUpgrade => { + "PlayerActionType_PlayerActionMuseumAreaUpgrade" } - Self::PlayerActionMuseumAreaUnlock => "PLAYER_ACTION_MUSEUM_AREA_UNLOCK", - Self::PlayerActionMuseumAreaUpgrade => "PLAYER_ACTION_MUSEUM_AREA_UPGRADE", Self::PlayerActionMuseumAreaStatUpgrade => { - "PLAYER_ACTION_MUSEUM_AREA_STAT_UPGRADE" + "PlayerActionType_PlayerActionMuseumAreaStatUpgrade" } Self::PlayerActionMuseumEnterNextRound => { - "PLAYER_ACTION_MUSEUM_ENTER_NEXT_ROUND" + "PlayerActionType_PlayerActionMuseumEnterNextRound" } Self::PlayerActionMuseumStartDispatch => { - "PLAYER_ACTION_MUSEUM_START_DISPATCH" + "PlayerActionType_PlayerActionMuseumStartDispatch" } Self::PlayerActionMuseumSettleDispatch => { - "PLAYER_ACTION_MUSEUM_SETTLE_DISPATCH" + "PlayerActionType_PlayerActionMuseumSettleDispatch" } Self::PlayerActionMuseumRenewPointChanged => { - "PLAYER_ACTION_MUSEUM_RENEW_POINT_CHANGED" + "PlayerActionType_PlayerActionMuseumRenewPointChanged" + } + Self::PlayerActionMuseumTargetReward => { + "PlayerActionType_PlayerActionMuseumTargetReward" + } + Self::PlayerActionMuseumPhaseUpgrade => { + "PlayerActionType_PlayerActionMuseumPhaseUpgrade" } - Self::PlayerActionMuseumTargetReward => "PLAYER_ACTION_MUSEUM_TARGET_REWARD", - Self::PlayerActionMuseumPhaseUpgrade => "PLAYER_ACTION_MUSEUM_PHASE_UPGRADE", Self::PlayerActionMuseumCollectReward => { - "PLAYER_ACTION_MUSEUM_COLLECT_REWARD" + "PlayerActionType_PlayerActionMuseumCollectReward" + } + Self::PlayerActionMuseumTargetStart => { + "PlayerActionType_PlayerActionMuseumTargetStart" + } + Self::PlayerActionMuseumTargetFinish => { + "PlayerActionType_PlayerActionMuseumTargetFinish" } - Self::PlayerActionMuseumTargetStart => "PLAYER_ACTION_MUSEUM_TARGET_START", - Self::PlayerActionMuseumTargetFinish => "PLAYER_ACTION_MUSEUM_TARGET_FINISH", Self::PlayerActionActivityMonsterResearchConsumeMaterial => { - "PLAYER_ACTION_ACTIVITY_MONSTER_RESEARCH_CONSUME_MATERIAL" + "PlayerActionType_PlayerActionActivityMonsterResearchConsumeMaterial" } Self::PlayerActionActivityMonsterResearchTakeReward => { - "PLAYER_ACTION_ACTIVITY_MONSTER_RESEARCH_TAKE_REWARD" + "PlayerActionType_PlayerActionActivityMonsterResearchTakeReward" + } + Self::PlayerActionPlayerReturnStart => { + "PlayerActionType_PlayerActionPlayerReturnStart" + } + Self::PlayerActionPlayerReturnSign => { + "PlayerActionType_PlayerActionPlayerReturnSign" + } + Self::PlayerActionPlayerReturnPoint => { + "PlayerActionType_PlayerActionPlayerReturnPoint" } - Self::PlayerActionPlayerReturnStart => "PLAYER_ACTION_PLAYER_RETURN_START", - Self::PlayerActionPlayerReturnSign => "PLAYER_ACTION_PLAYER_RETURN_SIGN", - Self::PlayerActionPlayerReturnPoint => "PLAYER_ACTION_PLAYER_RETURN_POINT", Self::PlayerActionPlayerReturnCountdown => { - "PLAYER_ACTION_PLAYER_RETURN_COUNTDOWN" + "PlayerActionType_PlayerActionPlayerReturnCountdown" + } + Self::PlayerActionPlayerReturnFinish => { + "PlayerActionType_PlayerActionPlayerReturnFinish" } - Self::PlayerActionPlayerReturnFinish => "PLAYER_ACTION_PLAYER_RETURN_FINISH", Self::PlayerActionPlayerReturnCompensate => { - "PLAYER_ACTION_PLAYER_RETURN_COMPENSATE" + "PlayerActionType_PlayerActionPlayerReturnCompensate" } Self::PlayerActionPlayerReturnGetRelic => { - "PLAYER_ACTION_PLAYER_RETURN_GET_RELIC" + "PlayerActionType_PlayerActionPlayerReturnGetRelic" } Self::PlayerActionPlayerReturnBpExpExtra => { - "PLAYER_ACTION_PLAYER_RETURN_BP_EXP_EXTRA" + "PlayerActionType_PlayerActionPlayerReturnBpExpExtra" } Self::PlayerActionPlayerReturnHcoinExtra => { - "PLAYER_ACTION_PLAYER_RETURN_HCOIN_EXTRA" + "PlayerActionType_PlayerActionPlayerReturnHcoinExtra" } Self::PlayerActionRogueChallengeActivityStart => { - "PLAYER_ACTION_ROGUE_CHALLENGE_ACTIVITY_START" + "PlayerActionType_PlayerActionRogueChallengeActivityStart" } Self::PlayerActionRogueChallengeActivityFinish => { - "PLAYER_ACTION_ROGUE_CHALLENGE_ACTIVITY_FINISH" + "PlayerActionType_PlayerActionRogueChallengeActivityFinish" } Self::PlayerActionRogueChallengeActivitySave => { - "PLAYER_ACTION_ROGUE_CHALLENGE_ACTIVITY_SAVE" + "PlayerActionType_PlayerActionRogueChallengeActivitySave" } Self::PlayerActionAetherDivideUsePassiveSkillItem => { - "PLAYER_ACTION_AETHER_DIVIDE_USE_PASSIVE_SKILL_ITEM" + "PlayerActionType_PlayerActionAetherDivideUsePassiveSkillItem" } Self::PlayerActionAetherDivideClearPassiveSkill => { - "PLAYER_ACTION_AETHER_DIVIDE_CLEAR_PASSIVE_SKILL" + "PlayerActionType_PlayerActionAetherDivideClearPassiveSkill" } Self::PlayerActionAetherDivideFinishChallenge => { - "PLAYER_ACTION_AETHER_DIVIDE_FINISH_CHALLENGE" + "PlayerActionType_PlayerActionAetherDivideFinishChallenge" } Self::PlayerActionAetherDivideOverflowChunkReward => { - "PLAYER_ACTION_AETHER_DIVIDE_OVERFLOW_CHUNK_REWARD" + "PlayerActionType_PlayerActionAetherDivideOverflowChunkReward" } Self::PlayerActionAetherDivideLevelUp => { - "PLAYER_ACTION_AETHER_DIVIDE_LEVEL_UP" + "PlayerActionType_PlayerActionAetherDivideLevelUp" } Self::PlayerActionAetherDivideNewReward => { - "PLAYER_ACTION_AETHER_DIVIDE_NEW_REWARD" + "PlayerActionType_PlayerActionAetherDivideNewReward" } Self::PlayerActionAetherDivideMonsterAdd => { - "PLAYER_ACTION_AETHER_DIVIDE_MONSTER_ADD" + "PlayerActionType_PlayerActionAetherDivideMonsterAdd" } Self::PlayerActionAetherDivideMonsterLevel => { - "PLAYER_ACTION_AETHER_DIVIDE_MONSTER_LEVEL" + "PlayerActionType_PlayerActionAetherDivideMonsterLevel" } Self::PlayerActionAetherDivideMonsterSkillWear => { - "PLAYER_ACTION_AETHER_DIVIDE_MONSTER_SKILL_WEAR" + "PlayerActionType_PlayerActionAetherDivideMonsterSkillWear" } Self::PlayerActionAetherDivideTeamChange => { - "PLAYER_ACTION_AETHER_DIVIDE_TEAM_CHANGE" + "PlayerActionType_PlayerActionAetherDivideTeamChange" } Self::PlayerActionAetherDivideStageBegin => { - "PLAYER_ACTION_AETHER_DIVIDE_STAGE_BEGIN" + "PlayerActionType_PlayerActionAetherDivideStageBegin" } Self::PlayerActionAetherDivideStageEnd => { - "PLAYER_ACTION_AETHER_DIVIDE_STAGE_END" + "PlayerActionType_PlayerActionAetherDivideStageEnd" } Self::PlayerActionAetherDivideStageRoll => { - "PLAYER_ACTION_AETHER_DIVIDE_STAGE_ROLL" + "PlayerActionType_PlayerActionAetherDivideStageRoll" + } + Self::PlayerActionAlleyEventFinish => { + "PlayerActionType_PlayerActionAlleyEventFinish" + } + Self::PlayerActionAlleyTakeReward => { + "PlayerActionType_PlayerActionAlleyTakeReward" } - Self::PlayerActionAlleyEventFinish => "PLAYER_ACTION_ALLEY_EVENT_FINISH", - Self::PlayerActionAlleyTakeReward => "PLAYER_ACTION_ALLEY_TAKE_REWARD", Self::PlayerActionAlleyPrestigeLevelUp => { - "PLAYER_ACTION_ALLEY_PRESTIGE_LEVEL_UP" + "PlayerActionType_PlayerActionAlleyPrestigeLevelUp" } Self::PlayerActionAlleyLogisticsFinish => { - "PLAYER_ACTION_ALLEY_LOGISTICS_FINISH" + "PlayerActionType_PlayerActionAlleyLogisticsFinish" } Self::PlayerActionAlleyPlacingGameFinish => { - "PLAYER_ACTION_ALLEY_PLACING_GAME_FINISH" + "PlayerActionType_PlayerActionAlleyPlacingGameFinish" } Self::PlayerActionAlleyGuaranteedFunds => { - "PLAYER_ACTION_ALLEY_GUARANTEED_FUNDS" + "PlayerActionType_PlayerActionAlleyGuaranteedFunds" } Self::PlayerActionAlleyTakeEventReward => { - "PLAYER_ACTION_ALLEY_TAKE_EVENT_REWARD" + "PlayerActionType_PlayerActionAlleyTakeEventReward" } Self::PlayerActionAlleySpecialOrderFinish => { - "PLAYER_ACTION_ALLEY_SPECIAL_ORDER_FINISH" + "PlayerActionType_PlayerActionAlleySpecialOrderFinish" } Self::PlayerActionSensitiveWordShield => { - "PLAYER_ACTION_SENSITIVE_WORD_SHIELD" + "PlayerActionType_PlayerActionSensitiveWordShield" } Self::PlayerActionSensitiveWordServerInternalError => { - "PLAYER_ACTION_SENSITIVE_WORD_SERVER_INTERNAL_ERROR" + "PlayerActionType_PlayerActionSensitiveWordServerInternalError" } Self::PlayerActionSensitiveWordPlatformError => { - "PLAYER_ACTION_SENSITIVE_WORD_PLATFORM_ERROR" + "PlayerActionType_PlayerActionSensitiveWordPlatformError" } Self::PlayerActionTreasureDungeonStart => { - "PLAYER_ACTION_TREASURE_DUNGEON_START" + "PlayerActionType_PlayerActionTreasureDungeonStart" } Self::PlayerActionTreasureDungeonFinish => { - "PLAYER_ACTION_TREASURE_DUNGEON_FINISH" + "PlayerActionType_PlayerActionTreasureDungeonFinish" } Self::PlayerActionTreasureDungeonEnterFloor => { - "PLAYER_ACTION_TREASURE_DUNGEON_ENTER_FLOOR" + "PlayerActionType_PlayerActionTreasureDungeonEnterFloor" } Self::PlayerActionTreasureDungeonLeaveFloor => { - "PLAYER_ACTION_TREASURE_DUNGEON_LEAVE_FLOOR" + "PlayerActionType_PlayerActionTreasureDungeonLeaveFloor" } Self::PlayerActionTreasureDungeonUseItem => { - "PLAYER_ACTION_TREASURE_DUNGEON_USE_ITEM" + "PlayerActionType_PlayerActionTreasureDungeonUseItem" } Self::PlayerActionTreasureDungeonAvatarChange => { - "PLAYER_ACTION_TREASURE_DUNGEON_AVATAR_CHANGE" + "PlayerActionType_PlayerActionTreasureDungeonAvatarChange" } Self::PlayerActionTreasureDungeonBattleStart => { - "PLAYER_ACTION_TREASURE_DUNGEON_BATTLE_START" + "PlayerActionType_PlayerActionTreasureDungeonBattleStart" } Self::PlayerActionTreasureDungeonBattleEnd => { - "PLAYER_ACTION_TREASURE_DUNGEON_BATTLE_END" + "PlayerActionType_PlayerActionTreasureDungeonBattleEnd" } Self::PlayerActionTreasureDungeonPickupBuff => { - "PLAYER_ACTION_TREASURE_DUNGEON_PICKUP_BUFF" + "PlayerActionType_PlayerActionTreasureDungeonPickupBuff" } Self::PlayerActionChessRogueFirstFinish => { - "PLAYER_ACTION_CHESS_ROGUE_FIRST_FINISH" + "PlayerActionType_PlayerActionChessRogueFirstFinish" } Self::PlayerActionChessRogueGiveupDice => { - "PLAYER_ACTION_CHESS_ROGUE_GIVEUP_DICE" + "PlayerActionType_PlayerActionChessRogueGiveupDice" } Self::PlayerActionChessRogueSubStorySelect => { - "PLAYER_ACTION_CHESS_ROGUE_SUB_STORY_SELECT" + "PlayerActionType_PlayerActionChessRogueSubStorySelect" } Self::PlayerActionChessRogueActionPoint => { - "PLAYER_ACTION_CHESS_ROGUE_ACTION_POINT" + "PlayerActionType_PlayerActionChessRogueActionPoint" } Self::PlayerActionChessRogueReviveByProp => { - "PLAYER_ACTION_CHESS_ROGUE_REVIVE_BY_PROP" + "PlayerActionType_PlayerActionChessRogueReviveByProp" } Self::PlayerActionChessRogueStartLevel => { - "PLAYER_ACTION_CHESS_ROGUE_START_LEVEL" + "PlayerActionType_PlayerActionChessRogueStartLevel" } Self::PlayerActionChessRogueDiceEffect => { - "PLAYER_ACTION_CHESS_ROGUE_DICE_EFFECT" + "PlayerActionType_PlayerActionChessRogueDiceEffect" } Self::PlayerActionChessRogueMainStoryFinish => { - "PLAYER_ACTION_CHESS_ROGUE_MAIN_STORY_FINISH" + "PlayerActionType_PlayerActionChessRogueMainStoryFinish" } Self::PlayerActionChessRogueAeonTalentEffect => { - "PLAYER_ACTION_CHESS_ROGUE_AEON_TALENT_EFFECT" + "PlayerActionType_PlayerActionChessRogueAeonTalentEffect" } Self::PlayerActionChessRogueModifierOthersEffect => { - "PLAYER_ACTION_CHESS_ROGUE_MODIFIER_OTHERS_EFFECT" + "PlayerActionType_PlayerActionChessRogueModifierOthersEffect" + } + Self::PlayerActionChessRogueAddBuff => { + "PlayerActionType_PlayerActionChessRogueAddBuff" } - Self::PlayerActionChessRogueAddBuff => "PLAYER_ACTION_CHESS_ROGUE_ADD_BUFF", Self::PlayerActionChessRogueReforgeBuff => { - "PLAYER_ACTION_CHESS_ROGUE_REFORGE_BUFF" + "PlayerActionType_PlayerActionChessRogueReforgeBuff" } Self::PlayerActionChessRogueBuffLevelUp => { - "PLAYER_ACTION_CHESS_ROGUE_BUFF_LEVEL_UP" + "PlayerActionType_PlayerActionChessRogueBuffLevelUp" } Self::PlayerActionChessRogueEnhanceBuff => { - "PLAYER_ACTION_CHESS_ROGUE_ENHANCE_BUFF" + "PlayerActionType_PlayerActionChessRogueEnhanceBuff" } Self::PlayerActionChessRogueAddMiracle => { - "PLAYER_ACTION_CHESS_ROGUE_ADD_MIRACLE" + "PlayerActionType_PlayerActionChessRogueAddMiracle" } Self::PlayerActionChessRogueSwapMiracle => { - "PLAYER_ACTION_CHESS_ROGUE_SWAP_MIRACLE" + "PlayerActionType_PlayerActionChessRogueSwapMiracle" } Self::PlayerActionChessRogueSelectBonus => { - "PLAYER_ACTION_CHESS_ROGUE_SELECT_BONUS" + "PlayerActionType_PlayerActionChessRogueSelectBonus" } Self::PlayerActionChessRogueDialogueFinish => { - "PLAYER_ACTION_CHESS_ROGUE_DIALOGUE_FINISH" + "PlayerActionType_PlayerActionChessRogueDialogueFinish" } Self::PlayerActionChessRogueSubStoryFinish => { - "PLAYER_ACTION_CHESS_ROGUE_SUB_STORY_FINISH" + "PlayerActionType_PlayerActionChessRogueSubStoryFinish" } Self::PlayerActionChessRogueAdventureRoomFinish => { - "PLAYER_ACTION_CHESS_ROGUE_ADVENTURE_ROOM_FINISH" + "PlayerActionType_PlayerActionChessRogueAdventureRoomFinish" } Self::PlayerActionChessRogueFinishLevel => { - "PLAYER_ACTION_CHESS_ROGUE_FINISH_LEVEL" + "PlayerActionType_PlayerActionChessRogueFinishLevel" } Self::PlayerActionChessRogueStartLayer => { - "PLAYER_ACTION_CHESS_ROGUE_START_LAYER" + "PlayerActionType_PlayerActionChessRogueStartLayer" } Self::PlayerActionChessRogueFinishLayer => { - "PLAYER_ACTION_CHESS_ROGUE_FINISH_LAYER" + "PlayerActionType_PlayerActionChessRogueFinishLayer" } Self::PlayerActionChessRogueEnterRoom => { - "PLAYER_ACTION_CHESS_ROGUE_ENTER_ROOM" + "PlayerActionType_PlayerActionChessRogueEnterRoom" } Self::PlayerActionChessRogueLeaveRoom => { - "PLAYER_ACTION_CHESS_ROGUE_LEAVE_ROOM" + "PlayerActionType_PlayerActionChessRogueLeaveRoom" + } + Self::PlayerActionChessRogueRollDice => { + "PlayerActionType_PlayerActionChessRogueRollDice" } - Self::PlayerActionChessRogueRollDice => "PLAYER_ACTION_CHESS_ROGUE_ROLL_DICE", Self::PlayerActionChessRogueSelectDice => { - "PLAYER_ACTION_CHESS_ROGUE_SELECT_DICE" + "PlayerActionType_PlayerActionChessRogueSelectDice" } Self::PlayerActionChessRogueUnlockDice => { - "PLAYER_ACTION_CHESS_ROGUE_UNLOCK_DICE" + "PlayerActionType_PlayerActionChessRogueUnlockDice" } Self::PlayerActionChessRogueBoardEvent => { - "PLAYER_ACTION_CHESS_ROGUE_BOARD_EVENT" + "PlayerActionType_PlayerActionChessRogueBoardEvent" } Self::PlayerActionChessRogueDimensionPoint => { - "PLAYER_ACTION_CHESS_ROGUE_DIMENSION_POINT" + "PlayerActionType_PlayerActionChessRogueDimensionPoint" } Self::PlayerActionChessRoguePickAvatar => { - "PLAYER_ACTION_CHESS_ROGUE_PICK_AVATAR" + "PlayerActionType_PlayerActionChessRoguePickAvatar" } Self::PlayerActionChessRogueReviveAvatar => { - "PLAYER_ACTION_CHESS_ROGUE_REVIVE_AVATAR" + "PlayerActionType_PlayerActionChessRogueReviveAvatar" } Self::PlayerActionChessRogueNousSubStorySelect => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_SUB_STORY_SELECT" + "PlayerActionType_PlayerActionChessRogueNousSubStorySelect" } Self::PlayerActionChessRogueLevelMechanism => { - "PLAYER_ACTION_CHESS_ROGUE_LEVEL_MECHANISM" + "PlayerActionType_PlayerActionChessRogueLevelMechanism" } Self::PlayerActionChessRogueNousStartLevel => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_START_LEVEL" + "PlayerActionType_PlayerActionChessRogueNousStartLevel" } Self::PlayerActionChessRogueNousFinishLevel => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_FINISH_LEVEL" + "PlayerActionType_PlayerActionChessRogueNousFinishLevel" } Self::PlayerActionChessRogueNousStartLayer => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_START_LAYER" + "PlayerActionType_PlayerActionChessRogueNousStartLayer" } Self::PlayerActionChessRogueNousFinishLayer => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_FINISH_LAYER" + "PlayerActionType_PlayerActionChessRogueNousFinishLayer" } Self::PlayerActionChessRogueNousEnterRoom => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_ENTER_ROOM" + "PlayerActionType_PlayerActionChessRogueNousEnterRoom" } Self::PlayerActionChessRogueNousLeaveRoom => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_LEAVE_ROOM" + "PlayerActionType_PlayerActionChessRogueNousLeaveRoom" } Self::PlayerActionChessRogueNousSelectDice => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_SELECT_DICE" + "PlayerActionType_PlayerActionChessRogueNousSelectDice" } Self::PlayerActionChessRogueNousUnlockDiceBranch => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_UNLOCK_DICE_BRANCH" + "PlayerActionType_PlayerActionChessRogueNousUnlockDiceBranch" } Self::PlayerActionChessRogueNousUnlockDiceSurface => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_UNLOCK_DICE_SURFACE" + "PlayerActionType_PlayerActionChessRogueNousUnlockDiceSurface" } Self::PlayerActionChessRogueNousEditDice => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_EDIT_DICE" + "PlayerActionType_PlayerActionChessRogueNousEditDice" } Self::PlayerActionChessRogueNousValueChange => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_VALUE_CHANGE" + "PlayerActionType_PlayerActionChessRogueNousValueChange" } Self::PlayerActionChessRogueNousMainStoryTrigger => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_MAIN_STORY_TRIGGER" + "PlayerActionType_PlayerActionChessRogueNousMainStoryTrigger" } Self::PlayerActionChessRogueNousMainStoryFinish => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_MAIN_STORY_FINISH" + "PlayerActionType_PlayerActionChessRogueNousMainStoryFinish" } Self::PlayerActionChessRogueNousSubStoryTrigger => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_SUB_STORY_TRIGGER" + "PlayerActionType_PlayerActionChessRogueNousSubStoryTrigger" } Self::PlayerActionChessRogueNousSubStoryFinish => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_SUB_STORY_FINISH" + "PlayerActionType_PlayerActionChessRogueNousSubStoryFinish" } Self::PlayerActionChessRogueNousEnableTalent => { - "PLAYER_ACTION_CHESS_ROGUE_NOUS_ENABLE_TALENT" + "PlayerActionType_PlayerActionChessRogueNousEnableTalent" } Self::PlayerActionChessRogueSelectBuff => { - "PLAYER_ACTION_CHESS_ROGUE_SELECT_BUFF" + "PlayerActionType_PlayerActionChessRogueSelectBuff" } Self::PlayerActionChessRogueSelectMiracle => { - "PLAYER_ACTION_CHESS_ROGUE_SELECT_MIRACLE" + "PlayerActionType_PlayerActionChessRogueSelectMiracle" } Self::PlayerActionChessRogueRemoveMiracle => { - "PLAYER_ACTION_CHESS_ROGUE_REMOVE_MIRACLE" + "PlayerActionType_PlayerActionChessRogueRemoveMiracle" } Self::PlayerActionChessRogueBoardCell => { - "PLAYER_ACTION_CHESS_ROGUE_BOARD_CELL" + "PlayerActionType_PlayerActionChessRogueBoardCell" } Self::PlayerActionFantasticStoryBattleBegin => { - "PLAYER_ACTION_FANTASTIC_STORY_BATTLE_BEGIN" + "PlayerActionType_PlayerActionFantasticStoryBattleBegin" } Self::PlayerActionFantasticStoryBattleEnd => { - "PLAYER_ACTION_FANTASTIC_STORY_BATTLE_END" + "PlayerActionType_PlayerActionFantasticStoryBattleEnd" + } + Self::PlayerActionRogueEndlessReward => { + "PlayerActionType_PlayerActionRogueEndlessReward" } - Self::PlayerActionRogueEndlessReward => "PLAYER_ACTION_ROGUE_ENDLESS_REWARD", Self::PlayerActionRogueEndlessLevelStart => { - "PLAYER_ACTION_ROGUE_ENDLESS_LEVEL_START" + "PlayerActionType_PlayerActionRogueEndlessLevelStart" } Self::PlayerActionRogueEndlessStageBegin => { - "PLAYER_ACTION_ROGUE_ENDLESS_STAGE_BEGIN" + "PlayerActionType_PlayerActionRogueEndlessStageBegin" } Self::PlayerActionRogueEndlessStageEnd => { - "PLAYER_ACTION_ROGUE_ENDLESS_STAGE_END" + "PlayerActionType_PlayerActionRogueEndlessStageEnd" } Self::PlayerActionBattleCollegeReward => { - "PLAYER_ACTION_BATTLE_COLLEGE_REWARD" + "PlayerActionType_PlayerActionBattleCollegeReward" } Self::PlayerActionCommonRogueMiracleForBuffShop => { - "PLAYER_ACTION_COMMON_ROGUE_MIRACLE_FOR_BUFF_SHOP" + "PlayerActionType_PlayerActionCommonRogueMiracleForBuffShop" } Self::PlayerActionCommonRogueAdventureRoomFinish => { - "PLAYER_ACTION_COMMON_ROGUE_ADVENTURE_ROOM_FINISH" + "PlayerActionType_PlayerActionCommonRogueAdventureRoomFinish" } Self::PlayerActionCommonRogueBuyBuffShop => { - "PLAYER_ACTION_COMMON_ROGUE_BUY_BUFF_SHOP" + "PlayerActionType_PlayerActionCommonRogueBuyBuffShop" } Self::PlayerActionCommonRogueBuyBuffShopRefresh => { - "PLAYER_ACTION_COMMON_ROGUE_BUY_BUFF_SHOP_REFRESH" + "PlayerActionType_PlayerActionCommonRogueBuyBuffShopRefresh" } Self::PlayerActionCommonRogueCollectionUnlock => { - "PLAYER_ACTION_COMMON_ROGUE_COLLECTION_UNLOCK" + "PlayerActionType_PlayerActionCommonRogueCollectionUnlock" } Self::PlayerActionCommonRogueCollectionSet => { - "PLAYER_ACTION_COMMON_ROGUE_COLLECTION_SET" + "PlayerActionType_PlayerActionCommonRogueCollectionSet" } Self::PlayerActionCommonRogueExhibitionUnlock => { - "PLAYER_ACTION_COMMON_ROGUE_EXHIBITION_UNLOCK" + "PlayerActionType_PlayerActionCommonRogueExhibitionUnlock" } Self::PlayerActionCommonRogueExhibitionSet => { - "PLAYER_ACTION_COMMON_ROGUE_EXHIBITION_SET" + "PlayerActionType_PlayerActionCommonRogueExhibitionSet" } Self::PlayerActionCommonRogueChestInteract => { - "PLAYER_ACTION_COMMON_ROGUE_CHEST_INTERACT" + "PlayerActionType_PlayerActionCommonRogueChestInteract" } Self::PlayerActionCommonRogueAdventureRoomWolfgunFinish => { - "PLAYER_ACTION_COMMON_ROGUE_ADVENTURE_ROOM_WOLFGUN_FINISH" + "PlayerActionType_PlayerActionCommonRogueAdventureRoomWolfgunFinish" } Self::PlayerActionHeliobusPostIncomeReward => { - "PLAYER_ACTION_HELIOBUS_POST_INCOME_REWARD" + "PlayerActionType_PlayerActionHeliobusPostIncomeReward" } Self::PlayerActionHeliobusPostFansReward => { - "PLAYER_ACTION_HELIOBUS_POST_FANS_REWARD" + "PlayerActionType_PlayerActionHeliobusPostFansReward" } Self::PlayerActionHeliobusLevelUpgrade => { - "PLAYER_ACTION_HELIOBUS_LEVEL_UPGRADE" + "PlayerActionType_PlayerActionHeliobusLevelUpgrade" } Self::PlayerActionHeliobusPostReplyReward => { - "PLAYER_ACTION_HELIOBUS_POST_REPLY_REWARD" + "PlayerActionType_PlayerActionHeliobusPostReplyReward" } Self::PlayerActionHeliobusCommentReplyReward => { - "PLAYER_ACTION_HELIOBUS_COMMENT_REPLY_REWARD" + "PlayerActionType_PlayerActionHeliobusCommentReplyReward" } Self::PlayerActionHeliobusChallengeFirstReward => { - "PLAYER_ACTION_HELIOBUS_CHALLENGE_FIRST_REWARD" + "PlayerActionType_PlayerActionHeliobusChallengeFirstReward" + } + Self::PlayerActionHeliobusFansAdd => { + "PlayerActionType_PlayerActionHeliobusFansAdd" } - Self::PlayerActionHeliobusFansAdd => "PLAYER_ACTION_HELIOBUS_FANS_ADD", Self::PlayerActionHeliobusActionDaySettle => { - "PLAYER_ACTION_HELIOBUS_ACTION_DAY_SETTLE" + "PlayerActionType_PlayerActionHeliobusActionDaySettle" } Self::PlayerActionHeliobusSkillUnlock => { - "PLAYER_ACTION_HELIOBUS_SKILL_UNLOCK" + "PlayerActionType_PlayerActionHeliobusSkillUnlock" + } + Self::PlayerActionHeliobusStageBegin => { + "PlayerActionType_PlayerActionHeliobusStageBegin" + } + Self::PlayerActionHeliobusStageEnd => { + "PlayerActionType_PlayerActionHeliobusStageEnd" + } + Self::PlayerActionHeliobusSnsRead => { + "PlayerActionType_PlayerActionHeliobusSnsRead" } - Self::PlayerActionHeliobusStageBegin => "PLAYER_ACTION_HELIOBUS_STAGE_BEGIN", - Self::PlayerActionHeliobusStageEnd => "PLAYER_ACTION_HELIOBUS_STAGE_END", - Self::PlayerActionHeliobusSnsRead => "PLAYER_ACTION_HELIOBUS_SNS_READ", Self::PlayerActionHeliobusSnsPostUnlock => { - "PLAYER_ACTION_HELIOBUS_SNS_POST_UNLOCK" + "PlayerActionType_PlayerActionHeliobusSnsPostUnlock" } Self::PlayerActionHeliobusSnsCommentUnlock => { - "PLAYER_ACTION_HELIOBUS_SNS_COMMENT_UNLOCK" + "PlayerActionType_PlayerActionHeliobusSnsCommentUnlock" + } + Self::PlayerActionHeliobusSnsComment => { + "PlayerActionType_PlayerActionHeliobusSnsComment" + } + Self::PlayerActionHeliobusSnsPost => { + "PlayerActionType_PlayerActionHeliobusSnsPost" + } + Self::PlayerActionHeliobusSnsLike => { + "PlayerActionType_PlayerActionHeliobusSnsLike" } - Self::PlayerActionHeliobusSnsComment => "PLAYER_ACTION_HELIOBUS_SNS_COMMENT", - Self::PlayerActionHeliobusSnsPost => "PLAYER_ACTION_HELIOBUS_SNS_POST", - Self::PlayerActionHeliobusSnsLike => "PLAYER_ACTION_HELIOBUS_SNS_LIKE", Self::PlayerActionHeliobusPhaseUpgrade => { - "PLAYER_ACTION_HELIOBUS_PHASE_UPGRADE" + "PlayerActionType_PlayerActionHeliobusPhaseUpgrade" } Self::PlayerActionPsPointCard30Reward => { - "PLAYER_ACTION_PS_POINT_CARD_30_REWARD" + "PlayerActionType_PlayerActionPsPointCard30Reward" } Self::PlayerActionPsPointCard50Reward => { - "PLAYER_ACTION_PS_POINT_CARD_50_REWARD" + "PlayerActionType_PlayerActionPsPointCard50Reward" } Self::PlayerActionPsPointCard100Reward => { - "PLAYER_ACTION_PS_POINT_CARD_100_REWARD" + "PlayerActionType_PlayerActionPsPointCard100Reward" + } + Self::PlayerActionPsnPlusGiftReward => { + "PlayerActionType_PlayerActionPsnPlusGiftReward" } - Self::PlayerActionPsnPlusGiftReward => "PLAYER_ACTION_PSN_PLUS_GIFT_REWARD", Self::PlayerActionAppleGiftCardReward => { - "PLAYER_ACTION_APPLE_GIFT_CARD_REWARD" + "PlayerActionType_PlayerActionAppleGiftCardReward" } Self::PlayerActionHeartDialSubmitItem => { - "PLAYER_ACTION_HEART_DIAL_SUBMIT_ITEM" + "PlayerActionType_PlayerActionHeartDialSubmitItem" } Self::PlayerActionHeartDialDialoguePerform => { - "PLAYER_ACTION_HEART_DIAL_DIALOGUE_PERFORM" + "PlayerActionType_PlayerActionHeartDialDialoguePerform" } Self::PlayerActionHeartDialTraceConsume => { - "PLAYER_ACTION_HEART_DIAL_TRACE_CONSUME" + "PlayerActionType_PlayerActionHeartDialTraceConsume" } Self::PlayerActionHeartDialChangeEmotion => { - "PLAYER_ACTION_HEART_DIAL_CHANGE_EMOTION" + "PlayerActionType_PlayerActionHeartDialChangeEmotion" } Self::PlayerActionTravelBrochureAddDefaultPaster => { - "PLAYER_ACTION_TRAVEL_BROCHURE_ADD_DEFAULT_PASTER" + "PlayerActionType_PlayerActionTravelBrochureAddDefaultPaster" + } + Self::PlayerActionSpaceZooBorn => "PlayerActionType_PlayerActionSpaceZooBorn", + Self::PlayerActionSpaceZooMutate => { + "PlayerActionType_PlayerActionSpaceZooMutate" + } + Self::PlayerActionSpaceZooDelete => { + "PlayerActionType_PlayerActionSpaceZooDelete" } - Self::PlayerActionSpaceZooBorn => "PLAYER_ACTION_SPACE_ZOO_BORN", - Self::PlayerActionSpaceZooMutate => "PLAYER_ACTION_SPACE_ZOO_MUTATE", - Self::PlayerActionSpaceZooDelete => "PLAYER_ACTION_SPACE_ZOO_DELETE", Self::PlayerActionSpaceZooExchangeItem => { - "PLAYER_ACTION_SPACE_ZOO_EXCHANGE_ITEM" + "PlayerActionType_PlayerActionSpaceZooExchangeItem" } - Self::PlayerActionSpaceZooExpPoint => "PLAYER_ACTION_SPACE_ZOO_EXP_POINT", - Self::PlayerActionSpaceZooTakeReward => "PLAYER_ACTION_SPACE_ZOO_TAKE_REWARD", - Self::PlayerActionSpaceZooCollection => "PLAYER_ACTION_SPACE_ZOO_COLLECTION", - Self::PlayerActionSpaceZooShow => "PLAYER_ACTION_SPACE_ZOO_SHOW", + Self::PlayerActionSpaceZooExpPoint => { + "PlayerActionType_PlayerActionSpaceZooExpPoint" + } + Self::PlayerActionSpaceZooTakeReward => { + "PlayerActionType_PlayerActionSpaceZooTakeReward" + } + Self::PlayerActionSpaceZooCollection => { + "PlayerActionType_PlayerActionSpaceZooCollection" + } + Self::PlayerActionSpaceZooShow => "PlayerActionType_PlayerActionSpaceZooShow", Self::PlayerActionSpaceZooSpecialData => { - "PLAYER_ACTION_SPACE_ZOO_SPECIAL_DATA" + "PlayerActionType_PlayerActionSpaceZooSpecialData" } Self::PlayerActionStrongChallengeBattleBegin => { - "PLAYER_ACTION_STRONG_CHALLENGE_BATTLE_BEGIN" + "PlayerActionType_PlayerActionStrongChallengeBattleBegin" } Self::PlayerActionStrongChallengeBattleEnd => { - "PLAYER_ACTION_STRONG_CHALLENGE_BATTLE_END" + "PlayerActionType_PlayerActionStrongChallengeBattleEnd" + } + Self::PlayerActionRollShopDoGacha => { + "PlayerActionType_PlayerActionRollShopDoGacha" + } + Self::PlayerActionRollShopTakeReward => { + "PlayerActionType_PlayerActionRollShopTakeReward" + } + Self::PlayerActionOfferingSubmitItem => { + "PlayerActionType_PlayerActionOfferingSubmitItem" + } + Self::PlayerActionOfferingTakeReward => { + "PlayerActionType_PlayerActionOfferingTakeReward" } - Self::PlayerActionRollShopDoGacha => "PLAYER_ACTION_ROLL_SHOP_DO_GACHA", - Self::PlayerActionRollShopTakeReward => "PLAYER_ACTION_ROLL_SHOP_TAKE_REWARD", - Self::PlayerActionOfferingSubmitItem => "PLAYER_ACTION_OFFERING_SUBMIT_ITEM", - Self::PlayerActionOfferingTakeReward => "PLAYER_ACTION_OFFERING_TAKE_REWARD", Self::PlayerActionTravelBrochurePageUnlock => { - "PLAYER_ACTION_TRAVEL_BROCHURE_PAGE_UNLOCK" + "PlayerActionType_PlayerActionTravelBrochurePageUnlock" } Self::PlayerActionTravelBrochurePageInteractAward => { - "PLAYER_ACTION_TRAVEL_BROCHURE_PAGE_INTERACT_AWARD" + "PlayerActionType_PlayerActionTravelBrochurePageInteractAward" } Self::PlayerActionTravelBrochureStickerUnlock => { - "PLAYER_ACTION_TRAVEL_BROCHURE_STICKER_UNLOCK" + "PlayerActionType_PlayerActionTravelBrochureStickerUnlock" } Self::PlayerActionTravelBrochureStickerApply => { - "PLAYER_ACTION_TRAVEL_BROCHURE_STICKER_APPLY" + "PlayerActionType_PlayerActionTravelBrochureStickerApply" } Self::PlayerActionTravelBrochureStickerRemove => { - "PLAYER_ACTION_TRAVEL_BROCHURE_STICKER_REMOVE" + "PlayerActionType_PlayerActionTravelBrochureStickerRemove" } Self::PlayerActionTravelBrochurePageReset => { - "PLAYER_ACTION_TRAVEL_BROCHURE_PAGE_RESET" + "PlayerActionType_PlayerActionTravelBrochurePageReset" } - Self::PlayerActionTrackMainMissionId => "PLAYER_ACTION_TRACK_MAIN_MISSION_ID", - Self::PlayerActionWolfBroBegin => "PLAYER_ACTION_WOLF_BRO_BEGIN", + Self::PlayerActionTrackMainMissionId => { + "PlayerActionType_PlayerActionTrackMainMissionId" + } + Self::PlayerActionWolfBroBegin => "PlayerActionType_PlayerActionWolfBroBegin", Self::PlayerActionWolfBroGroupStateChange => { - "PLAYER_ACTION_WOLF_BRO_GROUP_STATE_CHANGE" + "PlayerActionType_PlayerActionWolfBroGroupStateChange" + } + Self::PlayerActionWolfBroEnd => "PlayerActionType_PlayerActionWolfBroEnd", + Self::PlayerActionWolfBroBulletZero => { + "PlayerActionType_PlayerActionWolfBroBulletZero" } - Self::PlayerActionWolfBroEnd => "PLAYER_ACTION_WOLF_BRO_END", - Self::PlayerActionWolfBroBulletZero => "PLAYER_ACTION_WOLF_BRO_BULLET_ZERO", Self::PlayerActionWolfBroActivateBullet => { - "PLAYER_ACTION_WOLF_BRO_ACTIVATE_BULLET" + "PlayerActionType_PlayerActionWolfBroActivateBullet" } Self::PlayerActionWolfBroBulletNumChange => { - "PLAYER_ACTION_WOLF_BRO_BULLET_NUM_CHANGE" + "PlayerActionType_PlayerActionWolfBroBulletNumChange" } Self::PlayerActionWolfBroUseBulletNull => { - "PLAYER_ACTION_WOLF_BRO_USE_BULLET_NULL" + "PlayerActionType_PlayerActionWolfBroUseBulletNull" } Self::PlayerActionWolfBroUseBulletHitMonster => { - "PLAYER_ACTION_WOLF_BRO_USE_BULLET_HIT_MONSTER" + "PlayerActionType_PlayerActionWolfBroUseBulletHitMonster" } Self::PlayerActionWolfBroPickUpBullet => { - "PLAYER_ACTION_WOLF_BRO_PICK_UP_BULLET" + "PlayerActionType_PlayerActionWolfBroPickUpBullet" } Self::PlayerActionWolfBroRestoreArchive => { - "PLAYER_ACTION_WOLF_BRO_RESTORE_ARCHIVE" + "PlayerActionType_PlayerActionWolfBroRestoreArchive" } Self::PlayerActionTelevisionActivityBattleBegin => { - "PLAYER_ACTION_TELEVISION_ACTIVITY_BATTLE_BEGIN" + "PlayerActionType_PlayerActionTelevisionActivityBattleBegin" } Self::PlayerActionTelevisionActivityBattleEnd => { - "PLAYER_ACTION_TELEVISION_ACTIVITY_BATTLE_END" + "PlayerActionType_PlayerActionTelevisionActivityBattleEnd" } Self::PlayerActionFeverTimeActivityBattleBegin => { - "PLAYER_ACTION_FEVER_TIME_ACTIVITY_BATTLE_BEGIN" + "PlayerActionType_PlayerActionFeverTimeActivityBattleBegin" } Self::PlayerActionFeverTimeActivityBattleEnd => { - "PLAYER_ACTION_FEVER_TIME_ACTIVITY_BATTLE_END" + "PlayerActionType_PlayerActionFeverTimeActivityBattleEnd" } - Self::PlayerActionGunPlayEnd => "PLAYER_ACTION_GUN_PLAY_END", + Self::PlayerActionGunPlayEnd => "PlayerActionType_PlayerActionGunPlayEnd", Self::PlayerActionActivityStarFightBegin => { - "PLAYER_ACTION_ACTIVITY_STAR_FIGHT_BEGIN" + "PlayerActionType_PlayerActionActivityStarFightBegin" } Self::PlayerActionActivityStarFightEnd => { - "PLAYER_ACTION_ACTIVITY_STAR_FIGHT_END" + "PlayerActionType_PlayerActionActivityStarFightEnd" } Self::PlayerActionMapRotationEnterRegion => { - "PLAYER_ACTION_MAP_ROTATION_ENTER_REGION" + "PlayerActionType_PlayerActionMapRotationEnterRegion" } Self::PlayerActionMapRotationLeaveRegion => { - "PLAYER_ACTION_MAP_ROTATION_LEAVE_REGION" + "PlayerActionType_PlayerActionMapRotationLeaveRegion" } Self::PlayerActionMapRotationInteractCharger => { - "PLAYER_ACTION_MAP_ROTATION_INTERACT_CHARGER" + "PlayerActionType_PlayerActionMapRotationInteractCharger" } Self::PlayerActionMapRotationDeployRotater => { - "PLAYER_ACTION_MAP_ROTATION_DEPLOY_ROTATER" + "PlayerActionType_PlayerActionMapRotationDeployRotater" } Self::PlayerActionMapRotationRotateMap => { - "PLAYER_ACTION_MAP_ROTATION_ROTATE_MAP" + "PlayerActionType_PlayerActionMapRotationRotateMap" } Self::PlayerActionMapRotationAddEnergy => { - "PLAYER_ACTION_MAP_ROTATION_ADD_ENERGY" + "PlayerActionType_PlayerActionMapRotationAddEnergy" } Self::PlayerActionMapRotationSetMaxEnergy => { - "PLAYER_ACTION_MAP_ROTATION_SET_MAX_ENERGY" + "PlayerActionType_PlayerActionMapRotationSetMaxEnergy" } Self::PlayerActionMapRotationRemoveRotater => { - "PLAYER_ACTION_MAP_ROTATION_REMOVE_ROTATER" + "PlayerActionType_PlayerActionMapRotationRemoveRotater" } Self::PlayerActionMapRotationAutoDeployRotater => { - "PLAYER_ACTION_MAP_ROTATION_AUTO_DEPLOY_ROTATER" + "PlayerActionType_PlayerActionMapRotationAutoDeployRotater" } Self::PlayerActionMapRotationAutoRemoveRotater => { - "PLAYER_ACTION_MAP_ROTATION_AUTO_REMOVE_ROTATER" + "PlayerActionType_PlayerActionMapRotationAutoRemoveRotater" + } + Self::PlayerActionDrinkMakerAddTips => { + "PlayerActionType_PlayerActionDrinkMakerAddTips" } - Self::PlayerActionDrinkMakerAddTips => "PLAYER_ACTION_DRINK_MAKER_ADD_TIPS", Self::PlayerActionDrinkMakerFinishChallenge => { - "PLAYER_ACTION_DRINK_MAKER_FINISH_CHALLENGE" + "PlayerActionType_PlayerActionDrinkMakerFinishChallenge" } Self::PlayerActionDrinkMakerGuestMaxFaithReward => { - "PLAYER_ACTION_DRINK_MAKER_GUEST_MAX_FAITH_REWARD" + "PlayerActionType_PlayerActionDrinkMakerGuestMaxFaithReward" } Self::PlayerActionDrinkMakerMakeDrink => { - "PLAYER_ACTION_DRINK_MAKER_MAKE_DRINK" + "PlayerActionType_PlayerActionDrinkMakerMakeDrink" } Self::PlayerActionDrinkMakerSaveCustomDrink => { - "PLAYER_ACTION_DRINK_MAKER_SAVE_CUSTOM_DRINK" + "PlayerActionType_PlayerActionDrinkMakerSaveCustomDrink" } Self::PlayerActionDrinkMakerEndSequence => { - "PLAYER_ACTION_DRINK_MAKER_END_SEQUENCE" + "PlayerActionType_PlayerActionDrinkMakerEndSequence" } Self::PlayerActionDrinkMakerCheersMakeDrink => { - "PLAYER_ACTION_DRINK_MAKER_CHEERS_MAKE_DRINK" + "PlayerActionType_PlayerActionDrinkMakerCheersMakeDrink" } Self::PlayerActionDrinkMakerCheersNpcDrink => { - "PLAYER_ACTION_DRINK_MAKER_CHEERS_NPC_DRINK" + "PlayerActionType_PlayerActionDrinkMakerCheersNpcDrink" + } + Self::PlayerActionChangeStoryLine => { + "PlayerActionType_PlayerActionChangeStoryLine" } - Self::PlayerActionChangeStoryLine => "PLAYER_ACTION_CHANGE_STORY_LINE", Self::PlayerActionContentPackageStatusChange => { - "PLAYER_ACTION_CONTENT_PACKAGE_STATUS_CHANGE" + "PlayerActionType_PlayerActionContentPackageStatusChange" } Self::PlayerActionContentPackageTrackChange => { - "PLAYER_ACTION_CONTENT_PACKAGE_TRACK_CHANGE" + "PlayerActionType_PlayerActionContentPackageTrackChange" } Self::PlayerActionContentPackageAcceptMainMission => { - "PLAYER_ACTION_CONTENT_PACKAGE_ACCEPT_MAIN_MISSION" + "PlayerActionType_PlayerActionContentPackageAcceptMainMission" + } + Self::PlayerActionWorldDirectUnlock => { + "PlayerActionType_PlayerActionWorldDirectUnlock" + } + Self::PlayerActionMonopolyTurnFinish => { + "PlayerActionType_PlayerActionMonopolyTurnFinish" } - Self::PlayerActionWorldDirectUnlock => "PLAYER_ACTION_WORLD_DIRECT_UNLOCK", - Self::PlayerActionMonopolyTurnFinish => "PLAYER_ACTION_MONOPOLY_TURN_FINISH", Self::PlayerActionMonopolyAssetTurntax => { - "PLAYER_ACTION_MONOPOLY_ASSET_TURNTAX" + "PlayerActionType_PlayerActionMonopolyAssetTurntax" + } + Self::PlayerActionMonopolyAssetBonus => { + "PlayerActionType_PlayerActionMonopolyAssetBonus" } - Self::PlayerActionMonopolyAssetBonus => "PLAYER_ACTION_MONOPOLY_ASSET_BONUS", Self::PlayerActionMonopolyEventEffect => { - "PLAYER_ACTION_MONOPOLY_EVENT_EFFECT" + "PlayerActionType_PlayerActionMonopolyEventEffect" } Self::PlayerActionMonopolyMiniGameSettle => { - "PLAYER_ACTION_MONOPOLY_MINI_GAME_SETTLE" + "PlayerActionType_PlayerActionMonopolyMiniGameSettle" } Self::PlayerActionMonopolyGameRaiseRatio => { - "PLAYER_ACTION_MONOPOLY_GAME_RAISE_RATIO" + "PlayerActionType_PlayerActionMonopolyGameRaiseRatio" } Self::PlayerActionMonopolyMoveRollDice => { - "PLAYER_ACTION_MONOPOLY_MOVE_ROLL_DICE" + "PlayerActionType_PlayerActionMonopolyMoveRollDice" + } + Self::PlayerActionMonopolyMove => "PlayerActionType_PlayerActionMonopolyMove", + Self::PlayerActionMonopolyBuyGoods => { + "PlayerActionType_PlayerActionMonopolyBuyGoods" } - Self::PlayerActionMonopolyMove => "PLAYER_ACTION_MONOPOLY_MOVE", - Self::PlayerActionMonopolyBuyGoods => "PLAYER_ACTION_MONOPOLY_BUY_GOODS", Self::PlayerActionMonopolyUpgradeAsset => { - "PLAYER_ACTION_MONOPOLY_UPGRADE_ASSET" + "PlayerActionType_PlayerActionMonopolyUpgradeAsset" } Self::PlayerActionMonopolyEventRerollRandom => { - "PLAYER_ACTION_MONOPOLY_EVENT_REROLL_RANDOM" + "PlayerActionType_PlayerActionMonopolyEventRerollRandom" } Self::PlayerActionMonopolyDailyRefresh => { - "PLAYER_ACTION_MONOPOLY_DAILY_REFRESH" + "PlayerActionType_PlayerActionMonopolyDailyRefresh" } Self::PlayerActionMonopolyGameGuessBuyInformation => { - "PLAYER_ACTION_MONOPOLY_GAME_GUESS_BUY_INFORMATION" + "PlayerActionType_PlayerActionMonopolyGameGuessBuyInformation" } Self::PlayerActionMonopolyDailyFirstEnterActivity => { - "PLAYER_ACTION_MONOPOLY_DAILY_FIRST_ENTER_ACTIVITY" + "PlayerActionType_PlayerActionMonopolyDailyFirstEnterActivity" } Self::PlayerActionMonopolySocialEvent => { - "PLAYER_ACTION_MONOPOLY_SOCIAL_EVENT" + "PlayerActionType_PlayerActionMonopolySocialEvent" } Self::PlayerActionMonopolyRaffleTicketReward => { - "PLAYER_ACTION_MONOPOLY_RAFFLE_TICKET_REWARD" + "PlayerActionType_PlayerActionMonopolyRaffleTicketReward" } - Self::PlayerActionMonopolyLike => "PLAYER_ACTION_MONOPOLY_LIKE", + Self::PlayerActionMonopolyLike => "PlayerActionType_PlayerActionMonopolyLike", Self::PlayerActionMonopolyPhaseReward => { - "PLAYER_ACTION_MONOPOLY_PHASE_REWARD" + "PlayerActionType_PlayerActionMonopolyPhaseReward" } Self::PlayerActionMonopolyMbtiReportReward => { - "PLAYER_ACTION_MONOPOLY_MBTI_REPORT_REWARD" + "PlayerActionType_PlayerActionMonopolyMbtiReportReward" } Self::PlayerActionMonopolyDailySettle => { - "PLAYER_ACTION_MONOPOLY_DAILY_SETTLE" + "PlayerActionType_PlayerActionMonopolyDailySettle" + } + Self::PlayerActionMonopolyStart => { + "PlayerActionType_PlayerActionMonopolyStart" + } + Self::PlayerActionMonopolyGetBuff => { + "PlayerActionType_PlayerActionMonopolyGetBuff" } - Self::PlayerActionMonopolyStart => "PLAYER_ACTION_MONOPOLY_START", - Self::PlayerActionMonopolyGetBuff => "PLAYER_ACTION_MONOPOLY_GET_BUFF", Self::PlayerActionMonopolyAssetFundsChange => { - "PLAYER_ACTION_MONOPOLY_ASSET_FUNDS_CHANGE" + "PlayerActionType_PlayerActionMonopolyAssetFundsChange" } Self::PlayerActionMonopolyAssetUpgrade => { - "PLAYER_ACTION_MONOPOLY_ASSET_UPGRADE" + "PlayerActionType_PlayerActionMonopolyAssetUpgrade" } Self::PlayerActionMonopolyDirectCoinGameSettle => { - "PLAYER_ACTION_MONOPOLY_DIRECT_COIN_GAME_SETTLE" + "PlayerActionType_PlayerActionMonopolyDirectCoinGameSettle" } Self::PlayerActionMonopolyExtractRaffleTicket => { - "PLAYER_ACTION_MONOPOLY_EXTRACT_RAFFLE_TICKET" + "PlayerActionType_PlayerActionMonopolyExtractRaffleTicket" } Self::PlayerActionMonopolyMbtiProgressChange => { - "PLAYER_ACTION_MONOPOLY_MBTI_PROGRESS_CHANGE" + "PlayerActionType_PlayerActionMonopolyMbtiProgressChange" } Self::PlayerActionMonopolyQuizGameSettle => { - "PLAYER_ACTION_MONOPOLY_QUIZ_GAME_SETTLE" + "PlayerActionType_PlayerActionMonopolyQuizGameSettle" } Self::PlayerActionMonopolyEventSettle => { - "PLAYER_ACTION_MONOPOLY_EVENT_SETTLE" + "PlayerActionType_PlayerActionMonopolyEventSettle" + } + Self::PlayerActionMonopolyItemChange => { + "PlayerActionType_PlayerActionMonopolyItemChange" } - Self::PlayerActionMonopolyItemChange => "PLAYER_ACTION_MONOPOLY_ITEM_CHANGE", Self::PlayerActionMonopolyCellTrigger => { - "PLAYER_ACTION_MONOPOLY_CELL_TRIGGER" + "PlayerActionType_PlayerActionMonopolyCellTrigger" } Self::PlayerActionMonopolyEventTrigger => { - "PLAYER_ACTION_MONOPOLY_EVENT_TRIGGER" + "PlayerActionType_PlayerActionMonopolyEventTrigger" } Self::PlayerActionMonopolyClickEffect => { - "PLAYER_ACTION_MONOPOLY_CLICK_EFFECT" + "PlayerActionType_PlayerActionMonopolyClickEffect" } Self::PlayerActionEvolveBuildLevelFinish => { - "PLAYER_ACTION_EVOLVE_BUILD_LEVEL_FINISH" + "PlayerActionType_PlayerActionEvolveBuildLevelFinish" } Self::PlayerActionEvolveBuildShopAbilityUp => { - "PLAYER_ACTION_EVOLVE_BUILD_SHOP_ABILITY_UP" + "PlayerActionType_PlayerActionEvolveBuildShopAbilityUp" } Self::PlayerActionEvolveBuildShopAbilityDown => { - "PLAYER_ACTION_EVOLVE_BUILD_SHOP_ABILITY_DOWN" + "PlayerActionType_PlayerActionEvolveBuildShopAbilityDown" } Self::PlayerActionEvolveBuildTakeExpReward => { - "PLAYER_ACTION_EVOLVE_BUILD_TAKE_EXP_REWARD" + "PlayerActionType_PlayerActionEvolveBuildTakeExpReward" } Self::PlayerActionEvolveBuildBattleEndAddCoin => { - "PLAYER_ACTION_EVOLVE_BUILD_BATTLE_END_ADD_COIN" + "PlayerActionType_PlayerActionEvolveBuildBattleEndAddCoin" } Self::PlayerActionEvolveBuildShopAbilityReset => { - "PLAYER_ACTION_EVOLVE_BUILD_SHOP_ABILITY_RESET" + "PlayerActionType_PlayerActionEvolveBuildShopAbilityReset" } Self::PlayerActionEvolveBuildLevelStart => { - "PLAYER_ACTION_EVOLVE_BUILD_LEVEL_START" + "PlayerActionType_PlayerActionEvolveBuildLevelStart" } Self::PlayerActionEvolveBuildLevelEnd => { - "PLAYER_ACTION_EVOLVE_BUILD_LEVEL_END" + "PlayerActionType_PlayerActionEvolveBuildLevelEnd" } Self::PlayerActionEvolveBuildStageStart => { - "PLAYER_ACTION_EVOLVE_BUILD_STAGE_START" + "PlayerActionType_PlayerActionEvolveBuildStageStart" } Self::PlayerActionEvolveBuildStageEnd => { - "PLAYER_ACTION_EVOLVE_BUILD_STAGE_END" + "PlayerActionType_PlayerActionEvolveBuildStageEnd" } Self::PlayerActionEvolveBuildLevelLeave => { - "PLAYER_ACTION_EVOLVE_BUILD_LEVEL_LEAVE" + "PlayerActionType_PlayerActionEvolveBuildLevelLeave" } Self::PlayerActionClockParkUnlockScript => { - "PLAYER_ACTION_CLOCK_PARK_UNLOCK_SCRIPT" + "PlayerActionType_PlayerActionClockParkUnlockScript" } Self::PlayerActionClockParkUnlockTalent => { - "PLAYER_ACTION_CLOCK_PARK_UNLOCK_TALENT" + "PlayerActionType_PlayerActionClockParkUnlockTalent" } Self::PlayerActionClockParkFinishScript => { - "PLAYER_ACTION_CLOCK_PARK_FINISH_SCRIPT" + "PlayerActionType_PlayerActionClockParkFinishScript" } Self::PlayerActionClockParkRoundUpdate => { - "PLAYER_ACTION_CLOCK_PARK_ROUND_UPDATE" + "PlayerActionType_PlayerActionClockParkRoundUpdate" } Self::PlayerActionClockParkScriptBegin => { - "PLAYER_ACTION_CLOCK_PARK_SCRIPT_BEGIN" + "PlayerActionType_PlayerActionClockParkScriptBegin" } Self::PlayerActionRogueTournStartLevel => { - "PLAYER_ACTION_ROGUE_TOURN_START_LEVEL" + "PlayerActionType_PlayerActionRogueTournStartLevel" } Self::PlayerActionRogueTournFinishLevel => { - "PLAYER_ACTION_ROGUE_TOURN_FINISH_LEVEL" + "PlayerActionType_PlayerActionRogueTournFinishLevel" } Self::PlayerActionRogueTournExpReward => { - "PLAYER_ACTION_ROGUE_TOURN_EXP_REWARD" + "PlayerActionType_PlayerActionRogueTournExpReward" } Self::PlayerActionRogueTournFinishWeekChallenge => { - "PLAYER_ACTION_ROGUE_TOURN_FINISH_WEEK_CHALLENGE" + "PlayerActionType_PlayerActionRogueTournFinishWeekChallenge" } Self::PlayerActionRogueTournPermanentTalentEffect => { - "PLAYER_ACTION_ROGUE_TOURN_PERMANENT_TALENT_EFFECT" + "PlayerActionType_PlayerActionRogueTournPermanentTalentEffect" } Self::PlayerActionRogueTournFinishFormulaStory => { - "PLAYER_ACTION_ROGUE_TOURN_FINISH_FORMULA_STORY" + "PlayerActionType_PlayerActionRogueTournFinishFormulaStory" + } + Self::PlayerActionRogueTournRevive => { + "PlayerActionType_PlayerActionRogueTournRevive" } - Self::PlayerActionRogueTournRevive => "PLAYER_ACTION_ROGUE_TOURN_REVIVE", Self::PlayerActionRogueTournStageBegin => { - "PLAYER_ACTION_ROGUE_TOURN_STAGE_BEGIN" + "PlayerActionType_PlayerActionRogueTournStageBegin" + } + Self::PlayerActionRogueTournStageEnd => { + "PlayerActionType_PlayerActionRogueTournStageEnd" } - Self::PlayerActionRogueTournStageEnd => "PLAYER_ACTION_ROGUE_TOURN_STAGE_END", Self::PlayerActionRogueTournPermanentEnableTalent => { - "PLAYER_ACTION_ROGUE_TOURN_PERMANENT_ENABLE_TALENT" + "PlayerActionType_PlayerActionRogueTournPermanentEnableTalent" } Self::PlayerActionRogueTournPermanentResetTalent => { - "PLAYER_ACTION_ROGUE_TOURN_PERMANENT_RESET_TALENT" + "PlayerActionType_PlayerActionRogueTournPermanentResetTalent" } Self::PlayerActionRogueTournCocoonStageBegin => { - "PLAYER_ACTION_ROGUE_TOURN_COCOON_STAGE_BEGIN" + "PlayerActionType_PlayerActionRogueTournCocoonStageBegin" } Self::PlayerActionRogueTournCocoonStageEnd => { - "PLAYER_ACTION_ROGUE_TOURN_COCOON_STAGE_END" + "PlayerActionType_PlayerActionRogueTournCocoonStageEnd" } Self::PlayerActionRogueTournExpUpdate => { - "PLAYER_ACTION_ROGUE_TOURN_EXP_UPDATE" + "PlayerActionType_PlayerActionRogueTournExpUpdate" } Self::PlayerActionRogueTournEnterRoom => { - "PLAYER_ACTION_ROGUE_TOURN_ENTER_ROOM" + "PlayerActionType_PlayerActionRogueTournEnterRoom" } Self::PlayerActionRogueTournLeaveRoom => { - "PLAYER_ACTION_ROGUE_TOURN_LEAVE_ROOM" + "PlayerActionType_PlayerActionRogueTournLeaveRoom" } Self::PlayerActionRogueTournArchiveSave => { - "PLAYER_ACTION_ROGUE_TOURN_ARCHIVE_SAVE" + "PlayerActionType_PlayerActionRogueTournArchiveSave" } Self::PlayerActionRogueTournSelectBonus => { - "PLAYER_ACTION_ROGUE_TOURN_SELECT_BONUS" + "PlayerActionType_PlayerActionRogueTournSelectBonus" } Self::PlayerActionRogueTournDialogueFinish => { - "PLAYER_ACTION_ROGUE_TOURN_DIALOGUE_FINISH" + "PlayerActionType_PlayerActionRogueTournDialogueFinish" + } + Self::PlayerActionRogueTournDoGamble => { + "PlayerActionType_PlayerActionRogueTournDoGamble" } - Self::PlayerActionRogueTournDoGamble => "PLAYER_ACTION_ROGUE_TOURN_DO_GAMBLE", Self::PlayerActionRogueTournRoomContentGenerate => { - "PLAYER_ACTION_ROGUE_TOURN_ROOM_CONTENT_GENERATE" + "PlayerActionType_PlayerActionRogueTournRoomContentGenerate" } Self::PlayerActionRogueTournAddMiracle => { - "PLAYER_ACTION_ROGUE_TOURN_ADD_MIRACLE" + "PlayerActionType_PlayerActionRogueTournAddMiracle" } Self::PlayerActionRogueTournRemoveMiracle => { - "PLAYER_ACTION_ROGUE_TOURN_REMOVE_MIRACLE" + "PlayerActionType_PlayerActionRogueTournRemoveMiracle" } Self::PlayerActionRogueTournSelectMiracle => { - "PLAYER_ACTION_ROGUE_TOURN_SELECT_MIRACLE" + "PlayerActionType_PlayerActionRogueTournSelectMiracle" } Self::PlayerActionRogueTournDropMiracle => { - "PLAYER_ACTION_ROGUE_TOURN_DROP_MIRACLE" + "PlayerActionType_PlayerActionRogueTournDropMiracle" + } + Self::PlayerActionRogueTournAddBuff => { + "PlayerActionType_PlayerActionRogueTournAddBuff" } - Self::PlayerActionRogueTournAddBuff => "PLAYER_ACTION_ROGUE_TOURN_ADD_BUFF", Self::PlayerActionRogueTournSelectBuff => { - "PLAYER_ACTION_ROGUE_TOURN_SELECT_BUFF" + "PlayerActionType_PlayerActionRogueTournSelectBuff" } Self::PlayerActionRogueTournBuffLevelUp => { - "PLAYER_ACTION_ROGUE_TOURN_BUFF_LEVEL_UP" + "PlayerActionType_PlayerActionRogueTournBuffLevelUp" } Self::PlayerActionRogueTournRemoveBuff => { - "PLAYER_ACTION_ROGUE_TOURN_REMOVE_BUFF" + "PlayerActionType_PlayerActionRogueTournRemoveBuff" } Self::PlayerActionRogueTournAddFormula => { - "PLAYER_ACTION_ROGUE_TOURN_ADD_FORMULA" + "PlayerActionType_PlayerActionRogueTournAddFormula" } Self::PlayerActionRogueTournRemoveFormula => { - "PLAYER_ACTION_ROGUE_TOURN_REMOVE_FORMULA" + "PlayerActionType_PlayerActionRogueTournRemoveFormula" } Self::PlayerActionRogueTournSelectFormula => { - "PLAYER_ACTION_ROGUE_TOURN_SELECT_FORMULA" + "PlayerActionType_PlayerActionRogueTournSelectFormula" } Self::PlayerActionRogueTournActivateFormula => { - "PLAYER_ACTION_ROGUE_TOURN_ACTIVATE_FORMULA" + "PlayerActionType_PlayerActionRogueTournActivateFormula" } Self::PlayerActionRogueTournAdventureRoomFinish => { - "PLAYER_ACTION_ROGUE_TOURN_ADVENTURE_ROOM_FINISH" + "PlayerActionType_PlayerActionRogueTournAdventureRoomFinish" } Self::PlayerActionRogueTournAlterLineup => { - "PLAYER_ACTION_ROGUE_TOURN_ALTER_LINEUP" + "PlayerActionType_PlayerActionRogueTournAlterLineup" } Self::PlayerActionRogueTournSeasonEnableTalent => { - "PLAYER_ACTION_ROGUE_TOURN_SEASON_ENABLE_TALENT" + "PlayerActionType_PlayerActionRogueTournSeasonEnableTalent" } Self::PlayerActionRogueTournTitanStartLevel => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_START_LEVEL" + "PlayerActionType_PlayerActionRogueTournTitanStartLevel" } Self::PlayerActionRogueTournTitanFinishLevel => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_FINISH_LEVEL" + "PlayerActionType_PlayerActionRogueTournTitanFinishLevel" } Self::PlayerActionRogueTournTitanEnterRoom => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_ENTER_ROOM" + "PlayerActionType_PlayerActionRogueTournTitanEnterRoom" } Self::PlayerActionRogueTournTitanLeaveRoom => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_LEAVE_ROOM" + "PlayerActionType_PlayerActionRogueTournTitanLeaveRoom" } Self::PlayerActionRogueTournTitanStageBegin => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_STAGE_BEGIN" + "PlayerActionType_PlayerActionRogueTournTitanStageBegin" } Self::PlayerActionRogueTournTitanStageEnd => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_STAGE_END" + "PlayerActionType_PlayerActionRogueTournTitanStageEnd" } Self::PlayerActionRogueTournTitanArchiveSave => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_ARCHIVE_SAVE" + "PlayerActionType_PlayerActionRogueTournTitanArchiveSave" } Self::PlayerActionRogueTournTitanAddTitanBless => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_ADD_TITAN_BLESS" + "PlayerActionType_PlayerActionRogueTournTitanAddTitanBless" } Self::PlayerActionRogueTournTitanSelectTitanBless => { - "PLAYER_ACTION_ROGUE_TOURN_TITAN_SELECT_TITAN_BLESS" + "PlayerActionType_PlayerActionRogueTournTitanSelectTitanBless" } Self::PlayerActionRogueTournDivisionChange => { - "PLAYER_ACTION_ROGUE_TOURN_DIVISION_CHANGE" + "PlayerActionType_PlayerActionRogueTournDivisionChange" } Self::PlayerActionRogueTournSelectReRollMiracle => { - "PLAYER_ACTION_ROGUE_TOURN_SELECT_RE_ROLL_MIRACLE" + "PlayerActionType_PlayerActionRogueTournSelectReRollMiracle" } Self::PlayerActionRogueTournTriggerBattleByShop => { - "PLAYER_ACTION_ROGUE_TOURN_TRIGGER_BATTLE_BY_SHOP" + "PlayerActionType_PlayerActionRogueTournTriggerBattleByShop" } Self::PlayerActionRogueTournUseSuperRewardKey => { - "PLAYER_ACTION_ROGUE_TOURN_USE_SUPER_REWARD_KEY" + "PlayerActionType_PlayerActionRogueTournUseSuperRewardKey" } Self::PlayerActionRogueWorkbenchReforgeFormula => { - "PLAYER_ACTION_ROGUE_WORKBENCH_REFORGE_FORMULA" + "PlayerActionType_PlayerActionRogueWorkbenchReforgeFormula" } Self::PlayerActionRogueWorkbenchReforgeMiracle => { - "PLAYER_ACTION_ROGUE_WORKBENCH_REFORGE_MIRACLE" + "PlayerActionType_PlayerActionRogueWorkbenchReforgeMiracle" } Self::PlayerActionRogueWorkbenchComposeMiracle => { - "PLAYER_ACTION_ROGUE_WORKBENCH_COMPOSE_MIRACLE" + "PlayerActionType_PlayerActionRogueWorkbenchComposeMiracle" } Self::PlayerActionRogueWorkbenchReforgeBuff => { - "PLAYER_ACTION_ROGUE_WORKBENCH_REFORGE_BUFF" + "PlayerActionType_PlayerActionRogueWorkbenchReforgeBuff" } Self::PlayerActionRogueWorkbenchEnhanceBuff => { - "PLAYER_ACTION_ROGUE_WORKBENCH_ENHANCE_BUFF" + "PlayerActionType_PlayerActionRogueWorkbenchEnhanceBuff" } Self::PlayerActionMatchThreePveSettle => { - "PLAYER_ACTION_MATCH_THREE_PVE_SETTLE" + "PlayerActionType_PlayerActionMatchThreePveSettle" + } + Self::PlayerActionMatchThreeSettle => { + "PlayerActionType_PlayerActionMatchThreeSettle" } - Self::PlayerActionMatchThreeSettle => "PLAYER_ACTION_MATCH_THREE_SETTLE", Self::PlayerActionFightMatch3GameStart => { - "PLAYER_ACTION_FIGHT_MATCH3_GAME_START" + "PlayerActionType_PlayerActionFightMatch3GameStart" + } + Self::PlayerActionFightMatch3GameEnd => { + "PlayerActionType_PlayerActionFightMatch3GameEnd" + } + Self::PlayerActionFightMatch3TurnEnd => { + "PlayerActionType_PlayerActionFightMatch3TurnEnd" + } + Self::PlayerActionMatchThreeBirdPos => { + "PlayerActionType_PlayerActionMatchThreeBirdPos" + } + Self::PlayerActionMultiplePlayInvite => { + "PlayerActionType_PlayerActionMultiplePlayInvite" } - Self::PlayerActionFightMatch3GameEnd => "PLAYER_ACTION_FIGHT_MATCH3_GAME_END", - Self::PlayerActionFightMatch3TurnEnd => "PLAYER_ACTION_FIGHT_MATCH3_TURN_END", - Self::PlayerActionMatchThreeBirdPos => "PLAYER_ACTION_MATCH_THREE_BIRD_POS", - Self::PlayerActionMultiplePlayInvite => "PLAYER_ACTION_MULTIPLE_PLAY_INVITE", Self::PlayerActionMultiplePlayInviteRespond => { - "PLAYER_ACTION_MULTIPLE_PLAY_INVITE_RESPOND" + "PlayerActionType_PlayerActionMultiplePlayInviteRespond" } Self::PlayerActionMultiplePlayLobbyEnter => { - "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_ENTER" + "PlayerActionType_PlayerActionMultiplePlayLobbyEnter" } Self::PlayerActionMultiplePlayLobbyQuit => { - "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_QUIT" + "PlayerActionType_PlayerActionMultiplePlayLobbyQuit" } Self::PlayerActionMultiplePlayLobbyKick => { - "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_KICK" + "PlayerActionType_PlayerActionMultiplePlayLobbyKick" } Self::PlayerActionMultiplePlayLobbyMatch => { - "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_MATCH" + "PlayerActionType_PlayerActionMultiplePlayLobbyMatch" } - Self::PlayerActionMarbleSettle => "PLAYER_ACTION_MARBLE_SETTLE", + Self::PlayerActionMarbleSettle => "PlayerActionType_PlayerActionMarbleSettle", Self::PlayerActionMatchThreeSoloSettle => { - "PLAYER_ACTION_MATCH_THREE_SOLO_SETTLE" + "PlayerActionType_PlayerActionMatchThreeSoloSettle" } Self::PlayerActionMatchThreeV2BattleitemLevelup => { - "PLAYER_ACTION_MATCH_THREE_V2_BATTLEITEM_LEVELUP" + "PlayerActionType_PlayerActionMatchThreeV2BattleitemLevelup" } Self::PlayerActionMatchThreeV2PveSettle => { - "PLAYER_ACTION_MATCH_THREE_V2_PVE_SETTLE" + "PlayerActionType_PlayerActionMatchThreeV2PveSettle" } Self::PlayerActionMatchThreeV2PvpSettle => { - "PLAYER_ACTION_MATCH_THREE_V2_PVP_SETTLE" + "PlayerActionType_PlayerActionMatchThreeV2PvpSettle" } Self::PlayerActionMatch3SoloGameStart => { - "PLAYER_ACTION_MATCH3_SOLO_GAME_START" + "PlayerActionType_PlayerActionMatch3SoloGameStart" + } + Self::PlayerActionMatch3SoloGameEnd => { + "PlayerActionType_PlayerActionMatch3SoloGameEnd" + } + Self::PlayerActionMatch3SoloRoundEnd => { + "PlayerActionType_PlayerActionMatch3SoloRoundEnd" + } + Self::PlayerActionMatch3RoyaleSettle => { + "PlayerActionType_PlayerActionMatch3RoyaleSettle" } - Self::PlayerActionMatch3SoloGameEnd => "PLAYER_ACTION_MATCH3_SOLO_GAME_END", - Self::PlayerActionMatch3SoloRoundEnd => "PLAYER_ACTION_MATCH3_SOLO_ROUND_END", - Self::PlayerActionMatch3RoyaleSettle => "PLAYER_ACTION_MATCH3_ROYALE_SETTLE", Self::PlayerActionMatch3RoyaleGameStart => { - "PLAYER_ACTION_MATCH3_ROYALE_GAME_START" + "PlayerActionType_PlayerActionMatch3RoyaleGameStart" } Self::PlayerActionMatch3RoyaleGameEnd => { - "PLAYER_ACTION_MATCH3_ROYALE_GAME_END" + "PlayerActionType_PlayerActionMatch3RoyaleGameEnd" } Self::PlayerActionMatch3RoyaleRoundEnd => { - "PLAYER_ACTION_MATCH3_ROYALE_ROUND_END" + "PlayerActionType_PlayerActionMatch3RoyaleRoundEnd" } Self::PlayerActionSwordTrainingLearnSkill => { - "PLAYER_ACTION_SWORD_TRAINING_LEARN_SKILL" + "PlayerActionType_PlayerActionSwordTrainingLearnSkill" } Self::PlayerActionSwordTrainingNormalAction => { - "PLAYER_ACTION_SWORD_TRAINING_NORMAL_ACTION" + "PlayerActionType_PlayerActionSwordTrainingNormalAction" } Self::PlayerActionSwordTrainingStoryEffect => { - "PLAYER_ACTION_SWORD_TRAINING_STORY_EFFECT" + "PlayerActionType_PlayerActionSwordTrainingStoryEffect" } Self::PlayerActionSwordTrainingEndingHint => { - "PLAYER_ACTION_SWORD_TRAINING_ENDING_HINT" + "PlayerActionType_PlayerActionSwordTrainingEndingHint" } Self::PlayerActionSwordTrainingActionHint => { - "PLAYER_ACTION_SWORD_TRAINING_ACTION_HINT" + "PlayerActionType_PlayerActionSwordTrainingActionHint" } Self::PlayerActionSwordTrainingRestoreGameByExam => { - "PLAYER_ACTION_SWORD_TRAINING_RESTORE_GAME_BY_EXAM" + "PlayerActionType_PlayerActionSwordTrainingRestoreGameByExam" } Self::PlayerActionSwordTrainingStoryLineFirstClear => { - "PLAYER_ACTION_SWORD_TRAINING_STORY_LINE_FIRST_CLEAR" + "PlayerActionType_PlayerActionSwordTrainingStoryLineFirstClear" } Self::PlayerActionSwordTrainingTakeEndingReward => { - "PLAYER_ACTION_SWORD_TRAINING_TAKE_ENDING_REWARD" + "PlayerActionType_PlayerActionSwordTrainingTakeEndingReward" } Self::PlayerActionSwordTrainingStoryLineBegin => { - "PLAYER_ACTION_SWORD_TRAINING_STORY_LINE_BEGIN" + "PlayerActionType_PlayerActionSwordTrainingStoryLineBegin" } Self::PlayerActionSwordTrainingEnterTurn => { - "PLAYER_ACTION_SWORD_TRAINING_ENTER_TURN" + "PlayerActionType_PlayerActionSwordTrainingEnterTurn" } Self::PlayerActionSwordTrainingPlanAction => { - "PLAYER_ACTION_SWORD_TRAINING_PLAN_ACTION" + "PlayerActionType_PlayerActionSwordTrainingPlanAction" } Self::PlayerActionSwordTrainingActionPhaseEnd => { - "PLAYER_ACTION_SWORD_TRAINING_ACTION_PHASE_END" + "PlayerActionType_PlayerActionSwordTrainingActionPhaseEnd" + } + Self::PlayerActionSwordTrainingStory => { + "PlayerActionType_PlayerActionSwordTrainingStory" } - Self::PlayerActionSwordTrainingStory => "PLAYER_ACTION_SWORD_TRAINING_STORY", Self::PlayerActionSwordTrainingStatusChange => { - "PLAYER_ACTION_SWORD_TRAINING_STATUS_CHANGE" + "PlayerActionType_PlayerActionSwordTrainingStatusChange" } Self::PlayerActionSwordTrainingMoodChange => { - "PLAYER_ACTION_SWORD_TRAINING_MOOD_CHANGE" + "PlayerActionType_PlayerActionSwordTrainingMoodChange" } Self::PlayerActionSwordTrainingBattleBegin => { - "PLAYER_ACTION_SWORD_TRAINING_BATTLE_BEGIN" + "PlayerActionType_PlayerActionSwordTrainingBattleBegin" } Self::PlayerActionSwordTrainingBattleEnd => { - "PLAYER_ACTION_SWORD_TRAINING_BATTLE_END" + "PlayerActionType_PlayerActionSwordTrainingBattleEnd" } Self::PlayerActionSwordTrainingCombatRankChange => { - "PLAYER_ACTION_SWORD_TRAINING_COMBAT_RANK_CHANGE" + "PlayerActionType_PlayerActionSwordTrainingCombatRankChange" } Self::PlayerActionSwordTrainingStoryLineEnd => { - "PLAYER_ACTION_SWORD_TRAINING_STORY_LINE_END" + "PlayerActionType_PlayerActionSwordTrainingStoryLineEnd" } Self::PlayerActionSwordTrainingResumeStoryLine => { - "PLAYER_ACTION_SWORD_TRAINING_RESUME_STORY_LINE" + "PlayerActionType_PlayerActionSwordTrainingResumeStoryLine" } Self::PlayerActionSwordTrainingGameSuccess => { - "PLAYER_ACTION_SWORD_TRAINING_GAME_SUCCESS" + "PlayerActionType_PlayerActionSwordTrainingGameSuccess" } Self::PlayerActionSwordTrainingGameGiveUp => { - "PLAYER_ACTION_SWORD_TRAINING_GAME_GIVE_UP" + "PlayerActionType_PlayerActionSwordTrainingGameGiveUp" + } + Self::PlayerActionSwordTrainingExam => { + "PlayerActionType_PlayerActionSwordTrainingExam" } - Self::PlayerActionSwordTrainingExam => "PLAYER_ACTION_SWORD_TRAINING_EXAM", Self::PlayerActionSwordTrainingDialogue => { - "PLAYER_ACTION_SWORD_TRAINING_DIALOGUE" + "PlayerActionType_PlayerActionSwordTrainingDialogue" } Self::PlayerActionSwordTrainingSetSkillTrace => { - "PLAYER_ACTION_SWORD_TRAINING_SET_SKILL_TRACE" + "PlayerActionType_PlayerActionSwordTrainingSetSkillTrace" } Self::PlayerActionFightFestFinishScoreRaceMission => { - "PLAYER_ACTION_FIGHT_FEST_FINISH_SCORE_RACE_MISSION" + "PlayerActionType_PlayerActionFightFestFinishScoreRaceMission" } Self::PlayerActionFightFestFinishScoreRacePhase => { - "PLAYER_ACTION_FIGHT_FEST_FINISH_SCORE_RACE_PHASE" + "PlayerActionType_PlayerActionFightFestFinishScoreRacePhase" + } + Self::PlayerActionFightFestRaceStart => { + "PlayerActionType_PlayerActionFightFestRaceStart" + } + Self::PlayerActionFightFestRaceEnd => { + "PlayerActionType_PlayerActionFightFestRaceEnd" } - Self::PlayerActionFightFestRaceStart => "PLAYER_ACTION_FIGHT_FEST_RACE_START", - Self::PlayerActionFightFestRaceEnd => "PLAYER_ACTION_FIGHT_FEST_RACE_END", Self::PlayerActionFightFestChallengeStart => { - "PLAYER_ACTION_FIGHT_FEST_CHALLENGE_START" + "PlayerActionType_PlayerActionFightFestChallengeStart" } Self::PlayerActionFightFestChallengeEnd => { - "PLAYER_ACTION_FIGHT_FEST_CHALLENGE_END" + "PlayerActionType_PlayerActionFightFestChallengeEnd" } Self::PlayerActionFightFestGetCoachItem => { - "PLAYER_ACTION_FIGHT_FEST_GET_COACH_ITEM" + "PlayerActionType_PlayerActionFightFestGetCoachItem" } Self::PlayerActionFightFestAcceptScoreRaceMission => { - "PLAYER_ACTION_FIGHT_FEST_ACCEPT_SCORE_RACE_MISSION" + "PlayerActionType_PlayerActionFightFestAcceptScoreRaceMission" } - Self::PlayerActionPetUse => "PLAYER_ACTION_PET_USE", + Self::PlayerActionPetUse => "PlayerActionType_PlayerActionPetUse", Self::PlayerActionMusicRhythmPassLevelStar => { - "PLAYER_ACTION_MUSIC_RHYTHM_PASS_LEVEL_STAR" + "PlayerActionType_PlayerActionMusicRhythmPassLevelStar" } Self::PlayerActionMusicRhythmLevelBegin => { - "PLAYER_ACTION_MUSIC_RHYTHM_LEVEL_BEGIN" + "PlayerActionType_PlayerActionMusicRhythmLevelBegin" } Self::PlayerActionMusicRhythmLevelEnd => { - "PLAYER_ACTION_MUSIC_RHYTHM_LEVEL_END" + "PlayerActionType_PlayerActionMusicRhythmLevelEnd" } Self::PlayerActionTrackPhotoStageBegin => { - "PLAYER_ACTION_TRACK_PHOTO_STAGE_BEGIN" + "PlayerActionType_PlayerActionTrackPhotoStageBegin" + } + Self::PlayerActionTrackPhotoStageEnd => { + "PlayerActionType_PlayerActionTrackPhotoStageEnd" } - Self::PlayerActionTrackPhotoStageEnd => "PLAYER_ACTION_TRACK_PHOTO_STAGE_END", Self::PlayerActionSummonActivityBattleBegin => { - "PLAYER_ACTION_SUMMON_ACTIVITY_BATTLE_BEGIN" + "PlayerActionType_PlayerActionSummonActivityBattleBegin" } Self::PlayerActionSummonActivityBattleEnd => { - "PLAYER_ACTION_SUMMON_ACTIVITY_BATTLE_END" + "PlayerActionType_PlayerActionSummonActivityBattleEnd" } Self::PlayerActionRaidCollectionEnterNextRaid => { - "PLAYER_ACTION_RAID_COLLECTION_ENTER_NEXT_RAID" + "PlayerActionType_PlayerActionRaidCollectionEnterNextRaid" } Self::PlayerActionDifficultyAdjustmentSet => { - "PLAYER_ACTION_DIFFICULTY_ADJUSTMENT_SET" + "PlayerActionType_PlayerActionDifficultyAdjustmentSet" } Self::PlayerActionDifficultyAdjustmentUnset => { - "PLAYER_ACTION_DIFFICULTY_ADJUSTMENT_UNSET" + "PlayerActionType_PlayerActionDifficultyAdjustmentUnset" } Self::PlayerActionRogueArcadeAdventureRoomStart => { - "PLAYER_ACTION_ROGUE_ARCADE_ADVENTURE_ROOM_START" + "PlayerActionType_PlayerActionRogueArcadeAdventureRoomStart" } Self::PlayerActionRogueArcadeAdventureRoomFinish => { - "PLAYER_ACTION_ROGUE_ARCADE_ADVENTURE_ROOM_FINISH" + "PlayerActionType_PlayerActionRogueArcadeAdventureRoomFinish" } Self::PlayerActionRogueMagicStartLevel => { - "PLAYER_ACTION_ROGUE_MAGIC_START_LEVEL" + "PlayerActionType_PlayerActionRogueMagicStartLevel" } Self::PlayerActionRogueMagicFinishLevel => { - "PLAYER_ACTION_ROGUE_MAGIC_FINISH_LEVEL" + "PlayerActionType_PlayerActionRogueMagicFinishLevel" + } + Self::PlayerActionRogueMagicRevive => { + "PlayerActionType_PlayerActionRogueMagicRevive" } - Self::PlayerActionRogueMagicRevive => "PLAYER_ACTION_ROGUE_MAGIC_REVIVE", Self::PlayerActionRogueMagicEnterRoom => { - "PLAYER_ACTION_ROGUE_MAGIC_ENTER_ROOM" + "PlayerActionType_PlayerActionRogueMagicEnterRoom" } Self::PlayerActionRogueMagicLeaveRoom => { - "PLAYER_ACTION_ROGUE_MAGIC_LEAVE_ROOM" + "PlayerActionType_PlayerActionRogueMagicLeaveRoom" } Self::PlayerActionRogueMagicAddMiracle => { - "PLAYER_ACTION_ROGUE_MAGIC_ADD_MIRACLE" + "PlayerActionType_PlayerActionRogueMagicAddMiracle" } Self::PlayerActionRogueMagicRemoveMiracle => { - "PLAYER_ACTION_ROGUE_MAGIC_REMOVE_MIRACLE" + "PlayerActionType_PlayerActionRogueMagicRemoveMiracle" } Self::PlayerActionRogueMagicStageBegin => { - "PLAYER_ACTION_ROGUE_MAGIC_STAGE_BEGIN" + "PlayerActionType_PlayerActionRogueMagicStageBegin" + } + Self::PlayerActionRogueMagicStageEnd => { + "PlayerActionType_PlayerActionRogueMagicStageEnd" } - Self::PlayerActionRogueMagicStageEnd => "PLAYER_ACTION_ROGUE_MAGIC_STAGE_END", Self::PlayerActionRogueMagicEnableTalent => { - "PLAYER_ACTION_ROGUE_MAGIC_ENABLE_TALENT" + "PlayerActionType_PlayerActionRogueMagicEnableTalent" } Self::PlayerActionRogueMagicFinishStory => { - "PLAYER_ACTION_ROGUE_MAGIC_FINISH_STORY" + "PlayerActionType_PlayerActionRogueMagicFinishStory" } Self::PlayerActionRogueMagicAddScepter => { - "PLAYER_ACTION_ROGUE_MAGIC_ADD_SCEPTER" + "PlayerActionType_PlayerActionRogueMagicAddScepter" } Self::PlayerActionRogueMagicSelectScepter => { - "PLAYER_ACTION_ROGUE_MAGIC_SELECT_SCEPTER" + "PlayerActionType_PlayerActionRogueMagicSelectScepter" } Self::PlayerActionRogueMagicMountUnit => { - "PLAYER_ACTION_ROGUE_MAGIC_MOUNT_UNIT" + "PlayerActionType_PlayerActionRogueMagicMountUnit" } Self::PlayerActionRogueMagicAutoMountUnit => { - "PLAYER_ACTION_ROGUE_MAGIC_AUTO_MOUNT_UNIT" + "PlayerActionType_PlayerActionRogueMagicAutoMountUnit" } Self::PlayerActionRogueMagicAddMagicUnit => { - "PLAYER_ACTION_ROGUE_MAGIC_ADD_MAGIC_UNIT" + "PlayerActionType_PlayerActionRogueMagicAddMagicUnit" } Self::PlayerActionRogueMagicRemoveMagicUnit => { - "PLAYER_ACTION_ROGUE_MAGIC_REMOVE_MAGIC_UNIT" + "PlayerActionType_PlayerActionRogueMagicRemoveMagicUnit" } Self::PlayerActionRogueMagicWorkbenchComposeMagicUnit => { - "PLAYER_ACTION_ROGUE_MAGIC_WORKBENCH_COMPOSE_MAGIC_UNIT" + "PlayerActionType_PlayerActionRogueMagicWorkbenchComposeMagicUnit" } Self::PlayerActionRogueMagicWorkbenchReforgeMagicUnit => { - "PLAYER_ACTION_ROGUE_MAGIC_WORKBENCH_REFORGE_MAGIC_UNIT" + "PlayerActionType_PlayerActionRogueMagicWorkbenchReforgeMagicUnit" } Self::PlayerActionRogueMagicWorkbenchLevelUpScepter => { - "PLAYER_ACTION_ROGUE_MAGIC_WORKBENCH_LEVEL_UP_SCEPTER" + "PlayerActionType_PlayerActionRogueMagicWorkbenchLevelUpScepter" } Self::PlayerActionTrainPartyGamePlayStart => { - "PLAYER_ACTION_TRAIN_PARTY_GAME_PLAY_START" + "PlayerActionType_PlayerActionTrainPartyGamePlayStart" } Self::PlayerActionTrainPartyPhaseBegin => { - "PLAYER_ACTION_TRAIN_PARTY_PHASE_BEGIN" + "PlayerActionType_PlayerActionTrainPartyPhaseBegin" + } + Self::PlayerActionTrainPartyPhaseEnd => { + "PlayerActionType_PlayerActionTrainPartyPhaseEnd" + } + Self::PlayerActionTrainPartyRound => { + "PlayerActionType_PlayerActionTrainPartyRound" } - Self::PlayerActionTrainPartyPhaseEnd => "PLAYER_ACTION_TRAIN_PARTY_PHASE_END", - Self::PlayerActionTrainPartyRound => "PLAYER_ACTION_TRAIN_PARTY_ROUND", Self::PlayerActionTrainPartyMeetingBegin => { - "PLAYER_ACTION_TRAIN_PARTY_MEETING_BEGIN" + "PlayerActionType_PlayerActionTrainPartyMeetingBegin" } Self::PlayerActionTrainPartyMeetingEnd => { - "PLAYER_ACTION_TRAIN_PARTY_MEETING_END" + "PlayerActionType_PlayerActionTrainPartyMeetingEnd" } Self::PlayerActionTrainPartyMeetingPlayCard => { - "PLAYER_ACTION_TRAIN_PARTY_MEETING_PLAY_CARD" + "PlayerActionType_PlayerActionTrainPartyMeetingPlayCard" } Self::PlayerActionTrainPartyMeetingReRoll => { - "PLAYER_ACTION_TRAIN_PARTY_MEETING_RE_ROLL" + "PlayerActionType_PlayerActionTrainPartyMeetingReRoll" } Self::PlayerActionTrainPartyBuildAreaUnlock => { - "PLAYER_ACTION_TRAIN_PARTY_BUILD_AREA_UNLOCK" + "PlayerActionType_PlayerActionTrainPartyBuildAreaUnlock" } Self::PlayerActionTrainPartyBuildStep => { - "PLAYER_ACTION_TRAIN_PARTY_BUILD_STEP" + "PlayerActionType_PlayerActionTrainPartyBuildStep" } Self::PlayerActionTrainPartyBuildLevelAward => { - "PLAYER_ACTION_TRAIN_PARTY_BUILD_LEVEL_AWARD" + "PlayerActionType_PlayerActionTrainPartyBuildLevelAward" } Self::PlayerActionTrainPartyBuildingDynamicBuff => { - "PLAYER_ACTION_TRAIN_PARTY_BUILDING_DYNAMIC_BUFF" + "PlayerActionType_PlayerActionTrainPartyBuildingDynamicBuff" + } + Self::PlayerActionTrainPartyBuildDiy => { + "PlayerActionType_PlayerActionTrainPartyBuildDiy" + } + Self::PlayerActionSelfRoomBuildDiy => { + "PlayerActionType_PlayerActionSelfRoomBuildDiy" + } + Self::PlayerActionSkipUnlockSelfRoom => { + "PlayerActionType_PlayerActionSkipUnlockSelfRoom" } - Self::PlayerActionTrainPartyBuildDiy => "PLAYER_ACTION_TRAIN_PARTY_BUILD_DIY", - Self::PlayerActionSelfRoomBuildDiy => "PLAYER_ACTION_SELF_ROOM_BUILD_DIY", - Self::PlayerActionSkipUnlockSelfRoom => "PLAYER_ACTION_SKIP_UNLOCK_SELF_ROOM", Self::PlayerActionSelfRoomBuildDiyMerge => { - "PLAYER_ACTION_SELF_ROOM_BUILD_DIY_MERGE" + "PlayerActionType_PlayerActionSelfRoomBuildDiyMerge" } Self::PlayerActionSwitchHandOpPropState => { - "PLAYER_ACTION_SWITCH_HAND_OP_PROP_STATE" + "PlayerActionType_PlayerActionSwitchHandOpPropState" } Self::PlayerActionEraFlipperChangeRegionState => { - "PLAYER_ACTION_ERA_FLIPPER_CHANGE_REGION_STATE" + "PlayerActionType_PlayerActionEraFlipperChangeRegionState" } Self::PlayerActionEraFlipperChangePropState => { - "PLAYER_ACTION_ERA_FLIPPER_CHANGE_PROP_STATE" + "PlayerActionType_PlayerActionEraFlipperChangePropState" } Self::PlayerActionActivityBenefitReward => { - "PLAYER_ACTION_ACTIVITY_BENEFIT_REWARD" + "PlayerActionType_PlayerActionActivityBenefitReward" } Self::PlayerActionActivityBenefitJoin => { - "PLAYER_ACTION_ACTIVITY_BENEFIT_JOIN" + "PlayerActionType_PlayerActionActivityBenefitJoin" } Self::PlayerActionActivityBenefitInitialReward => { - "PLAYER_ACTION_ACTIVITY_BENEFIT_INITIAL_REWARD" + "PlayerActionType_PlayerActionActivityBenefitInitialReward" } - Self::PlayerActionPamSkinChangeSkin => "PLAYER_ACTION_PAM_SKIN_CHANGE_SKIN", - Self::PlayerActionChestFind => "PLAYER_ACTION_CHEST_FIND", + Self::PlayerActionPamSkinChangeSkin => { + "PlayerActionType_PlayerActionPamSkinChangeSkin" + } + Self::PlayerActionChestFind => "PlayerActionType_PlayerActionChestFind", Self::PlayerActionReissueMarkChestItemMail => { - "PLAYER_ACTION_REISSUE_MARK_CHEST_ITEM_MAIL" + "PlayerActionType_PlayerActionReissueMarkChestItemMail" + } + Self::PlayerActionMarblePassMatch => { + "PlayerActionType_PlayerActionMarblePassMatch" + } + Self::PlayerActionMarbleBuySeal => { + "PlayerActionType_PlayerActionMarbleBuySeal" } - Self::PlayerActionMarblePassMatch => "PLAYER_ACTION_MARBLE_PASS_MATCH", - Self::PlayerActionMarbleBuySeal => "PLAYER_ACTION_MARBLE_BUY_SEAL", Self::PlayerActionMarbleFightGameBegin => { - "PLAYER_ACTION_MARBLE_FIGHT_GAME_BEGIN" + "PlayerActionType_PlayerActionMarbleFightGameBegin" + } + Self::PlayerActionMarbleFightGameEnd => { + "PlayerActionType_PlayerActionMarbleFightGameEnd" } - Self::PlayerActionMarbleFightGameEnd => "PLAYER_ACTION_MARBLE_FIGHT_GAME_END", Self::PlayerActionMarbleFightGameRound => { - "PLAYER_ACTION_MARBLE_FIGHT_GAME_ROUND" + "PlayerActionType_PlayerActionMarbleFightGameRound" } Self::PlayerActionMarbleFightGameTurn => { - "PLAYER_ACTION_MARBLE_FIGHT_GAME_TURN" + "PlayerActionType_PlayerActionMarbleFightGameTurn" + } + Self::PlayerActionPlanetFesLevelUp => { + "PlayerActionType_PlayerActionPlanetFesLevelUp" } - Self::PlayerActionPlanetFesLevelUp => "PLAYER_ACTION_PLANET_FES_LEVEL_UP", Self::PlayerActionPlanetFesActivityInit => { - "PLAYER_ACTION_PLANET_FES_ACTIVITY_INIT" + "PlayerActionType_PlayerActionPlanetFesActivityInit" } Self::PlayerActionPlanetFesAvatarLevelUp => { - "PLAYER_ACTION_PLANET_FES_AVATAR_LEVEL_UP" + "PlayerActionType_PlayerActionPlanetFesAvatarLevelUp" } Self::PlayerActionPlanetFesTakeRegionPhaseReward => { - "PLAYER_ACTION_PLANET_FES_TAKE_REGION_PHASE_REWARD" + "PlayerActionType_PlayerActionPlanetFesTakeRegionPhaseReward" + } + Self::PlayerActionPlanetFesAddItem => { + "PlayerActionType_PlayerActionPlanetFesAddItem" + } + Self::PlayerActionPlanetFesQuest => { + "PlayerActionType_PlayerActionPlanetFesQuest" } - Self::PlayerActionPlanetFesAddItem => "PLAYER_ACTION_PLANET_FES_ADD_ITEM", - Self::PlayerActionPlanetFesQuest => "PLAYER_ACTION_PLANET_FES_QUEST", Self::PlayerActionPlanetFesBusinessDayFinish => { - "PLAYER_ACTION_PLANET_FES_BUSINESS_DAY_FINISH" + "PlayerActionType_PlayerActionPlanetFesBusinessDayFinish" } Self::PlayerActionPlanetFesAvatarStarUp => { - "PLAYER_ACTION_PLANET_FES_AVATAR_STAR_UP" + "PlayerActionType_PlayerActionPlanetFesAvatarStarUp" } Self::PlayerActionPlanetFesUnlockLand => { - "PLAYER_ACTION_PLANET_FES_UNLOCK_LAND" + "PlayerActionType_PlayerActionPlanetFesUnlockLand" } Self::PlayerActionPlanetFesBusinessEventFinish => { - "PLAYER_ACTION_PLANET_FES_BUSINESS_EVENT_FINISH" + "PlayerActionType_PlayerActionPlanetFesBusinessEventFinish" } Self::PlayerActionPlanetFesActivateCard => { - "PLAYER_ACTION_PLANET_FES_ACTIVATE_CARD" + "PlayerActionType_PlayerActionPlanetFesActivateCard" } Self::PlayerActionPlanetFesSkillLevelUp => { - "PLAYER_ACTION_PLANET_FES_SKILL_LEVEL_UP" + "PlayerActionType_PlayerActionPlanetFesSkillLevelUp" + } + Self::PlayerActionPlanetFesGacha => { + "PlayerActionType_PlayerActionPlanetFesGacha" } - Self::PlayerActionPlanetFesGacha => "PLAYER_ACTION_PLANET_FES_GACHA", Self::PlayerActionPlanetFesBusinessEventHandle => { - "PLAYER_ACTION_PLANET_FES_BUSINESS_EVENT_HANDLE" + "PlayerActionType_PlayerActionPlanetFesBusinessEventHandle" } Self::PlayerActionPlanetFesCardApplyPermission => { - "PLAYER_ACTION_PLANET_FES_CARD_APPLY_PERMISSION" + "PlayerActionType_PlayerActionPlanetFesCardApplyPermission" } Self::PlayerActionPlanetFesCardInteract => { - "PLAYER_ACTION_PLANET_FES_CARD_INTERACT" + "PlayerActionType_PlayerActionPlanetFesCardInteract" + } + Self::PlayerActionPlanetFesToSns => { + "PlayerActionType_PlayerActionPlanetFesToSns" } - Self::PlayerActionPlanetFesToSns => "PLAYER_ACTION_PLANET_FES_TO_SNS", Self::PlayerActionPlanetFesSetWorkAvatar => { - "PLAYER_ACTION_PLANET_FES_SET_WORK_AVATAR" + "PlayerActionType_PlayerActionPlanetFesSetWorkAvatar" + } + Self::PlayerActionPlanetFesSummary => { + "PlayerActionType_PlayerActionPlanetFesSummary" } - Self::PlayerActionPlanetFesSummary => "PLAYER_ACTION_PLANET_FES_SUMMARY", Self::PlayerActionTarotBookCharacterLevelUp => { - "PLAYER_ACTION_TAROT_BOOK_CHARACTER_LEVEL_UP" + "PlayerActionType_PlayerActionTarotBookCharacterLevelUp" + } + Self::PlayerActionTarotBookOpenPack => { + "PlayerActionType_PlayerActionTarotBookOpenPack" } - Self::PlayerActionTarotBookOpenPack => "PLAYER_ACTION_TAROT_BOOK_OPEN_PACK", Self::PlayerActionTarotBookUnlockStory => { - "PLAYER_ACTION_TAROT_BOOK_UNLOCK_STORY" + "PlayerActionType_PlayerActionTarotBookUnlockStory" } Self::PlayerActionTarotBookUnlockStorySingle => { - "PLAYER_ACTION_TAROT_BOOK_UNLOCK_STORY_SINGLE" + "PlayerActionType_PlayerActionTarotBookUnlockStorySingle" } Self::PlayerActionTarotBookFinishStory => { - "PLAYER_ACTION_TAROT_BOOK_FINISH_STORY" + "PlayerActionType_PlayerActionTarotBookFinishStory" } Self::PlayerActionTarotBookFinishInteraction => { - "PLAYER_ACTION_TAROT_BOOK_FINISH_INTERACTION" + "PlayerActionType_PlayerActionTarotBookFinishInteraction" } Self::PlayerActionTarotBookChangeEnergy => { - "PLAYER_ACTION_TAROT_BOOK_CHANGE_ENERGY" + "PlayerActionType_PlayerActionTarotBookChangeEnergy" } Self::PlayerActionTarotBookUnlockInteraction => { - "PLAYER_ACTION_TAROT_BOOK_UNLOCK_INTERACTION" + "PlayerActionType_PlayerActionTarotBookUnlockInteraction" + } + Self::PlayerActionChimeraRoundStart => { + "PlayerActionType_PlayerActionChimeraRoundStart" } - Self::PlayerActionChimeraRoundStart => "PLAYER_ACTION_CHIMERA_ROUND_START", Self::PlayerActionChimeraRoundWorkStart => { - "PLAYER_ACTION_CHIMERA_ROUND_WORK_START" + "PlayerActionType_PlayerActionChimeraRoundWorkStart" } Self::PlayerActionChimeraRoundWorkEnd => { - "PLAYER_ACTION_CHIMERA_ROUND_WORK_END" + "PlayerActionType_PlayerActionChimeraRoundWorkEnd" } Self::PlayerActionChimeraEndlessStart => { - "PLAYER_ACTION_CHIMERA_ENDLESS_START" + "PlayerActionType_PlayerActionChimeraEndlessStart" + } + Self::PlayerActionChimeraEndlessEnd => { + "PlayerActionType_PlayerActionChimeraEndlessEnd" } - Self::PlayerActionChimeraEndlessEnd => "PLAYER_ACTION_CHIMERA_ENDLESS_END", Self::PlayerActionChimeraEndlessWorkStart => { - "PLAYER_ACTION_CHIMERA_ENDLESS_WORK_START" + "PlayerActionType_PlayerActionChimeraEndlessWorkStart" } Self::PlayerActionChimeraEndlessWorkEnd => { - "PLAYER_ACTION_CHIMERA_ENDLESS_WORK_END" + "PlayerActionType_PlayerActionChimeraEndlessWorkEnd" } - Self::PlayerActionChimeraRankChange => "PLAYER_ACTION_CHIMERA_RANK_CHANGE", - Self::PlayerActionChimeraGet => "PLAYER_ACTION_CHIMERA_GET", + Self::PlayerActionChimeraRankChange => { + "PlayerActionType_PlayerActionChimeraRankChange" + } + Self::PlayerActionChimeraGet => "PlayerActionType_PlayerActionChimeraGet", Self::PlayerActionStoryTokenTakeActivityReward => { - "PLAYER_ACTION_STORY_TOKEN_TAKE_ACTIVITY_REWARD" + "PlayerActionType_PlayerActionStoryTokenTakeActivityReward" } Self::PlayerActionReissueAvatarTokenItem => { - "PLAYER_ACTION_REISSUE_AVATAR_TOKEN_ITEM" + "PlayerActionType_PlayerActionReissueAvatarTokenItem" } Self::PlayerActionAvatarDeliverRewardActivityTakeReward => { - "PLAYER_ACTION_AVATAR_DELIVER_REWARD_ACTIVITY_TAKE_REWARD" + "PlayerActionType_PlayerActionAvatarDeliverRewardActivityTakeReward" } Self::PlayerActionElfRestaurantBuyField => { - "PLAYER_ACTION_ELF_RESTAURANT_BUY_FIELD" + "PlayerActionType_PlayerActionElfRestaurantBuyField" } Self::PlayerActionElfRestaurantPlantSeed => { - "PLAYER_ACTION_ELF_RESTAURANT_PLANT_SEED" + "PlayerActionType_PlayerActionElfRestaurantPlantSeed" } Self::PlayerActionElfRestaurantRecycleSeed => { - "PLAYER_ACTION_ELF_RESTAURANT_RECYCLE_SEED" + "PlayerActionType_PlayerActionElfRestaurantRecycleSeed" } Self::PlayerActionElfRestaurantHarvestCrop => { - "PLAYER_ACTION_ELF_RESTAURANT_HARVEST_CROP" + "PlayerActionType_PlayerActionElfRestaurantHarvestCrop" } Self::PlayerActionElfRestaurantUpgradeEmployeeLevel => { - "PLAYER_ACTION_ELF_RESTAURANT_UPGRADE_EMPLOYEE_LEVEL" + "PlayerActionType_PlayerActionElfRestaurantUpgradeEmployeeLevel" } Self::PlayerActionElfRestaurantUpgradeFacilityLevel => { - "PLAYER_ACTION_ELF_RESTAURANT_UPGRADE_FACILITY_LEVEL" + "PlayerActionType_PlayerActionElfRestaurantUpgradeFacilityLevel" } Self::PlayerActionElfRestaurantUpgradeRecipeLevel => { - "PLAYER_ACTION_ELF_RESTAURANT_UPGRADE_RECIPE_LEVEL" + "PlayerActionType_PlayerActionElfRestaurantUpgradeRecipeLevel" } Self::PlayerActionElfRestaurantBuyShopItem => { - "PLAYER_ACTION_ELF_RESTAURANT_BUY_SHOP_ITEM" + "PlayerActionType_PlayerActionElfRestaurantBuyShopItem" } Self::PlayerActionElfRestaurantFinishTradeOrder => { - "PLAYER_ACTION_ELF_RESTAURANT_FINISH_TRADE_ORDER" + "PlayerActionType_PlayerActionElfRestaurantFinishTradeOrder" } Self::PlayerActionElfRestaurantTakeVillagerReward => { - "PLAYER_ACTION_ELF_RESTAURANT_TAKE_VILLAGER_REWARD" + "PlayerActionType_PlayerActionElfRestaurantTakeVillagerReward" } Self::PlayerActionElfRestaurantSettleRestaurantPlay => { - "PLAYER_ACTION_ELF_RESTAURANT_SETTLE_RESTAURANT_PLAY" + "PlayerActionType_PlayerActionElfRestaurantSettleRestaurantPlay" + } + Self::PlayerActionElfRestaurantInit => { + "PlayerActionType_PlayerActionElfRestaurantInit" } - Self::PlayerActionElfRestaurantInit => "PLAYER_ACTION_ELF_RESTAURANT_INIT", Self::PlayerActionElfRestaurantSettleProgress => { - "PLAYER_ACTION_ELF_RESTAURANT_SETTLE_PROGRESS" + "PlayerActionType_PlayerActionElfRestaurantSettleProgress" } Self::PlayerActionElfRestaurantSettleDay => { - "PLAYER_ACTION_ELF_RESTAURANT_SETTLE_DAY" + "PlayerActionType_PlayerActionElfRestaurantSettleDay" } Self::PlayerActionElfRestaurantAddItem => { - "PLAYER_ACTION_ELF_RESTAURANT_ADD_ITEM" + "PlayerActionType_PlayerActionElfRestaurantAddItem" + } + Self::PlayerActionLocalLegendReward => { + "PlayerActionType_PlayerActionLocalLegendReward" + } + Self::PlayerActionFateLevelStart => { + "PlayerActionType_PlayerActionFateLevelStart" + } + Self::PlayerActionFateLevelSettle => { + "PlayerActionType_PlayerActionFateLevelSettle" + } + Self::PlayerActionFateBattleStart => { + "PlayerActionType_PlayerActionFateBattleStart" + } + Self::PlayerActionFateBattleEnd => { + "PlayerActionType_PlayerActionFateBattleEnd" + } + Self::PlayerActionFateAddHougu => "PlayerActionType_PlayerActionFateAddHougu", + Self::PlayerActionFateSelectHougu => { + "PlayerActionType_PlayerActionFateSelectHougu" + } + Self::PlayerActionFateSelectReiju => { + "PlayerActionType_PlayerActionFateSelectReiju" + } + Self::PlayerActionFateRefreshReiju => { + "PlayerActionType_PlayerActionFateRefreshReiju" + } + Self::PlayerActionFateAddCoin => "PlayerActionType_PlayerActionFateAddCoin", + Self::PlayerActionFateBuyBuff => "PlayerActionType_PlayerActionFateBuyBuff", + Self::PlayerActionFateSellBuff => "PlayerActionType_PlayerActionFateSellBuff", + Self::PlayerActionFateRefreshShop => { + "PlayerActionType_PlayerActionFateRefreshShop" + } + Self::PlayerActionFateLockGoods => { + "PlayerActionType_PlayerActionFateLockGoods" + } + Self::PlayerActionFateUnlockGoods => { + "PlayerActionType_PlayerActionFateUnlockGoods" + } + Self::PlayerActionFateTakeExpReward => { + "PlayerActionType_PlayerActionFateTakeExpReward" + } + Self::PlayerActionFateAddExp => "PlayerActionType_PlayerActionFateAddExp", + Self::PlayerActionFateMasterHpChange => { + "PlayerActionType_PlayerActionFateMasterHpChange" + } + Self::PlayerActionParkourStartLevel => { + "PlayerActionType_PlayerActionParkourStartLevel" + } + Self::PlayerActionParkourEndLevel => { + "PlayerActionType_PlayerActionParkourEndLevel" } - Self::PlayerActionLocalLegendReward => "PLAYER_ACTION_LOCAL_LEGEND_REWARD", - Self::PlayerActionFateLevelStart => "PLAYER_ACTION_FATE_LEVEL_START", - Self::PlayerActionFateLevelSettle => "PLAYER_ACTION_FATE_LEVEL_SETTLE", - Self::PlayerActionFateBattleStart => "PLAYER_ACTION_FATE_BATTLE_START", - Self::PlayerActionFateBattleEnd => "PLAYER_ACTION_FATE_BATTLE_END", - Self::PlayerActionFateAddHougu => "PLAYER_ACTION_FATE_ADD_HOUGU", - Self::PlayerActionFateSelectHougu => "PLAYER_ACTION_FATE_SELECT_HOUGU", - Self::PlayerActionFateSelectReiju => "PLAYER_ACTION_FATE_SELECT_REIJU", - Self::PlayerActionFateRefreshReiju => "PLAYER_ACTION_FATE_REFRESH_REIJU", - Self::PlayerActionFateAddCoin => "PLAYER_ACTION_FATE_ADD_COIN", - Self::PlayerActionFateBuyBuff => "PLAYER_ACTION_FATE_BUY_BUFF", - Self::PlayerActionFateSellBuff => "PLAYER_ACTION_FATE_SELL_BUFF", - Self::PlayerActionFateRefreshShop => "PLAYER_ACTION_FATE_REFRESH_SHOP", - Self::PlayerActionFateLockGoods => "PLAYER_ACTION_FATE_LOCK_GOODS", - Self::PlayerActionFateUnlockGoods => "PLAYER_ACTION_FATE_UNLOCK_GOODS", - Self::PlayerActionFateTakeExpReward => "PLAYER_ACTION_FATE_TAKE_EXP_REWARD", - Self::PlayerActionFateAddExp => "PLAYER_ACTION_FATE_ADD_EXP", - Self::PlayerActionFateMasterHpChange => "PLAYER_ACTION_FATE_MASTER_HP_CHANGE", - Self::PlayerActionParkourStartLevel => "PLAYER_ACTION_PARKOUR_START_LEVEL", - Self::PlayerActionParkourEndLevel => "PLAYER_ACTION_PARKOUR_END_LEVEL", Self::PlayerActionBasinChestInteractResult => { - "PLAYER_ACTION_BASIN_CHEST_INTERACT_RESULT" + "PlayerActionType_PlayerActionBasinChestInteractResult" + } + Self::PlayerActionRogueMiracleSwap => { + "PlayerActionType_PlayerActionRogueMiracleSwap" } - Self::PlayerActionRogueMiracleSwap => "PLAYER_ACTION_ROGUE_MIRACLE_SWAP", Self::PlayerActionHipplenEndingTakeReward => { - "PLAYER_ACTION_HIPPLEN_ENDING_TAKE_REWARD" + "PlayerActionType_PlayerActionHipplenEndingTakeReward" } Self::PlayerActionHipplenGiftDeliverReward => { - "PLAYER_ACTION_HIPPLEN_GIFT_DELIVER_REWARD" + "PlayerActionType_PlayerActionHipplenGiftDeliverReward" + } + Self::PlayerActionHipplenCycleStart => { + "PlayerActionType_PlayerActionHipplenCycleStart" + } + Self::PlayerActionHipplenCycleFinish => { + "PlayerActionType_PlayerActionHipplenCycleFinish" + } + Self::PlayerActionHipplenAgendaPlan => { + "PlayerActionType_PlayerActionHipplenAgendaPlan" } - Self::PlayerActionHipplenCycleStart => "PLAYER_ACTION_HIPPLEN_CYCLE_START", - Self::PlayerActionHipplenCycleFinish => "PLAYER_ACTION_HIPPLEN_CYCLE_FINISH", - Self::PlayerActionHipplenAgendaPlan => "PLAYER_ACTION_HIPPLEN_AGENDA_PLAN", Self::PlayerActionHipplenAgendaSettle => { - "PLAYER_ACTION_HIPPLEN_AGENDA_SETTLE" + "PlayerActionType_PlayerActionHipplenAgendaSettle" + } + Self::PlayerActionHipplenTrialStart => { + "PlayerActionType_PlayerActionHipplenTrialStart" + } + Self::PlayerActionHipplenTrialFinish => { + "PlayerActionType_PlayerActionHipplenTrialFinish" } - Self::PlayerActionHipplenTrialStart => "PLAYER_ACTION_HIPPLEN_TRIAL_START", - Self::PlayerActionHipplenTrialFinish => "PLAYER_ACTION_HIPPLEN_TRIAL_FINISH", Self::PlayerActionHipplenStatusChange => { - "PLAYER_ACTION_HIPPLEN_STATUS_CHANGE" + "PlayerActionType_PlayerActionHipplenStatusChange" } Self::PlayerActionHipplenOutfitChange => { - "PLAYER_ACTION_HIPPLEN_OUTFIT_CHANGE" + "PlayerActionType_PlayerActionHipplenOutfitChange" + } + Self::PlayerActionHipplenTraitUnlock => { + "PlayerActionType_PlayerActionHipplenTraitUnlock" } - Self::PlayerActionHipplenTraitUnlock => "PLAYER_ACTION_HIPPLEN_TRAIT_UNLOCK", Self::PlayerActionHipplenEndingUnlock => { - "PLAYER_ACTION_HIPPLEN_ENDING_UNLOCK" + "PlayerActionType_PlayerActionHipplenEndingUnlock" } Self::PlayerActionHipplenOutfitUnlock => { - "PLAYER_ACTION_HIPPLEN_OUTFIT_UNLOCK" + "PlayerActionType_PlayerActionHipplenOutfitUnlock" + } + Self::PlayerActionHipplenGiftUnlock => { + "PlayerActionType_PlayerActionHipplenGiftUnlock" } - Self::PlayerActionHipplenGiftUnlock => "PLAYER_ACTION_HIPPLEN_GIFT_UNLOCK", Self::PlayerActionHipplenIncidentFinish => { - "PLAYER_ACTION_HIPPLEN_INCIDENT_FINISH" + "PlayerActionType_PlayerActionHipplenIncidentFinish" + } + Self::PlayerActionChallengePeakStart => { + "PlayerActionType_PlayerActionChallengePeakStart" } - Self::PlayerActionChallengePeakStart => "PLAYER_ACTION_CHALLENGE_PEAK_START", Self::PlayerActionChallengePeakReward => { - "PLAYER_ACTION_CHALLENGE_PEAK_REWARD" + "PlayerActionType_PlayerActionChallengePeakReward" } Self::PlayerActionChallengePeakMobStart => { - "PLAYER_ACTION_CHALLENGE_PEAK_MOB_START" + "PlayerActionType_PlayerActionChallengePeakMobStart" } Self::PlayerActionChallengePeakMobSettle => { - "PLAYER_ACTION_CHALLENGE_PEAK_MOB_SETTLE" + "PlayerActionType_PlayerActionChallengePeakMobSettle" } Self::PlayerActionChallengePeakBossStart => { - "PLAYER_ACTION_CHALLENGE_PEAK_BOSS_START" + "PlayerActionType_PlayerActionChallengePeakBossStart" } Self::PlayerActionChallengePeakBossSettle => { - "PLAYER_ACTION_CHALLENGE_PEAK_BOSS_SETTLE" + "PlayerActionType_PlayerActionChallengePeakBossSettle" } Self::PlayerActionChallengePeakFastPass => { - "PLAYER_ACTION_CHALLENGE_PEAK_FAST_PASS" + "PlayerActionType_PlayerActionChallengePeakFastPass" } Self::PlayerActionChallengePeakRecommendLineup => { - "PLAYER_ACTION_CHALLENGE_PEAK_RECOMMEND_LINEUP" + "PlayerActionType_PlayerActionChallengePeakRecommendLineup" } Self::PlayerActionChallengePeakMobBattleEnd => { - "PLAYER_ACTION_CHALLENGE_PEAK_MOB_BATTLE_END" + "PlayerActionType_PlayerActionChallengePeakMobBattleEnd" } Self::PlayerActionChallengePeakMobRecordClear => { - "PLAYER_ACTION_CHALLENGE_PEAK_MOB_RECORD_CLEAR" + "PlayerActionType_PlayerActionChallengePeakMobRecordClear" } - Self::PlayerActionCakeRaceLoan => "PLAYER_ACTION_CAKE_RACE_LOAN", + Self::PlayerActionCakeRaceLoan => "PlayerActionType_PlayerActionCakeRaceLoan", Self::PlayerActionCakeRaceSectionBegin => { - "PLAYER_ACTION_CAKE_RACE_SECTION_BEGIN" + "PlayerActionType_PlayerActionCakeRaceSectionBegin" + } + Self::PlayerActionCakeRaceSectionEnd => { + "PlayerActionType_PlayerActionCakeRaceSectionEnd" } - Self::PlayerActionCakeRaceSectionEnd => "PLAYER_ACTION_CAKE_RACE_SECTION_END", Self::PlayerActionCakeRaceRoomSectionSettle => { - "PLAYER_ACTION_CAKE_RACE_ROOM_SECTION_SETTLE" + "PlayerActionType_PlayerActionCakeRaceRoomSectionSettle" + } + Self::PlayerActionCakeRaceGameSettle => { + "PlayerActionType_PlayerActionCakeRaceGameSettle" } - Self::PlayerActionCakeRaceGameSettle => "PLAYER_ACTION_CAKE_RACE_GAME_SETTLE", Self::PlayerActionCakeRaceGameBetCat => { - "PLAYER_ACTION_CAKE_RACE_GAME_BET_CAT" + "PlayerActionType_PlayerActionCakeRaceGameBetCat" } Self::PlayerActionCakeRaceGameWinCoin => { - "PLAYER_ACTION_CAKE_RACE_GAME_WIN_COIN" + "PlayerActionType_PlayerActionCakeRaceGameWinCoin" } Self::PlayerActionCakeRaceLikeFriendRanking => { - "PLAYER_ACTION_CAKE_RACE_LIKE_FRIEND_RANKING" + "PlayerActionType_PlayerActionCakeRaceLikeFriendRanking" + } + Self::PlayerActionElationBattleBegin => { + "PlayerActionType_PlayerActionElationBattleBegin" + } + Self::PlayerActionElationBattleEnd => { + "PlayerActionType_PlayerActionElationBattleEnd" } - Self::PlayerActionElationBattleBegin => "PLAYER_ACTION_ELATION_BATTLE_BEGIN", - Self::PlayerActionElationBattleEnd => "PLAYER_ACTION_ELATION_BATTLE_END", Self::PlayerActionActivityHotDataChange => { - "PLAYER_ACTION_ACTIVITY_HOT_DATA_CHANGE" + "PlayerActionType_PlayerActionActivityHotDataChange" + } + Self::PlayerActionChimeraDuelGameSettle => { + "PlayerActionType_PlayerActionChimeraDuelGameSettle" + } + Self::PlayerActionChimeraDuelMasterUnlock => { + "PlayerActionType_PlayerActionChimeraDuelMasterUnlock" + } + Self::PlayerActionChimeraDuelGameStart => { + "PlayerActionType_PlayerActionChimeraDuelGameStart" + } + Self::PlayerActionChimeraDuelBattleStart => { + "PlayerActionType_PlayerActionChimeraDuelBattleStart" + } + Self::PlayerActionChimeraDuelBattleEnd => { + "PlayerActionType_PlayerActionChimeraDuelBattleEnd" + } + Self::PlayerActionChimeraDuelChimeraBuy => { + "PlayerActionType_PlayerActionChimeraDuelChimeraBuy" + } + Self::PlayerActionChimeraDuelItemBuy => { + "PlayerActionType_PlayerActionChimeraDuelItemBuy" + } + Self::PlayerActionChimeraDuelShopRefresh => { + "PlayerActionType_PlayerActionChimeraDuelShopRefresh" + } + Self::PlayerActionChimeraDuelChimeraEnhance => { + "PlayerActionType_PlayerActionChimeraDuelChimeraEnhance" + } + Self::PlayerActionChimeraDuelChimeraSell => { + "PlayerActionType_PlayerActionChimeraDuelChimeraSell" + } + Self::PlayerActionChimeraDuelShopStart => { + "PlayerActionType_PlayerActionChimeraDuelShopStart" + } + Self::PlayerActionChimeraDuelShopEnd => { + "PlayerActionType_PlayerActionChimeraDuelShopEnd" + } + Self::PlayerActionChimeraDuelFriendPvpLineupSave => { + "PlayerActionType_PlayerActionChimeraDuelFriendPvpLineupSave" + } + Self::PlayerActionChimeraDuelDefendLineupSet => { + "PlayerActionType_PlayerActionChimeraDuelDefendLineupSet" + } + Self::PlayerActionGridFightGameStart => { + "PlayerActionType_PlayerActionGridFightGameStart" + } + Self::PlayerActionGridFightGameEnd => { + "PlayerActionType_PlayerActionGridFightGameEnd" } - Self::PlayerActionGridFightGameStart => "PLAYER_ACTION_GRID_FIGHT_GAME_START", - Self::PlayerActionGridFightGameEnd => "PLAYER_ACTION_GRID_FIGHT_GAME_END", Self::PlayerActionGridFightRoundStart => { - "PLAYER_ACTION_GRID_FIGHT_ROUND_START" + "PlayerActionType_PlayerActionGridFightRoundStart" + } + Self::PlayerActionGridFightRoundEnd => { + "PlayerActionType_PlayerActionGridFightRoundEnd" } - Self::PlayerActionGridFightRoundEnd => "PLAYER_ACTION_GRID_FIGHT_ROUND_END", Self::PlayerActionGridFightBattleStart => { - "PLAYER_ACTION_GRID_FIGHT_BATTLE_START" + "PlayerActionType_PlayerActionGridFightBattleStart" + } + Self::PlayerActionGridFightBattleEnd => { + "PlayerActionType_PlayerActionGridFightBattleEnd" } - Self::PlayerActionGridFightBattleEnd => "PLAYER_ACTION_GRID_FIGHT_BATTLE_END", Self::PlayerActionGridFightBattleRole => { - "PLAYER_ACTION_GRID_FIGHT_BATTLE_ROLE" + "PlayerActionType_PlayerActionGridFightBattleRole" } Self::PlayerActionGridFightPortalRefresh => { - "PLAYER_ACTION_GRID_FIGHT_PORTAL_REFRESH" + "PlayerActionType_PlayerActionGridFightPortalRefresh" } Self::PlayerActionGridFightPortalSelect => { - "PLAYER_ACTION_GRID_FIGHT_PORTAL_SELECT" + "PlayerActionType_PlayerActionGridFightPortalSelect" } Self::PlayerActionGridFightAugmentRefresh => { - "PLAYER_ACTION_GRID_FIGHT_AUGMENT_REFRESH" + "PlayerActionType_PlayerActionGridFightAugmentRefresh" } Self::PlayerActionGridFightAugmentSelect => { - "PLAYER_ACTION_GRID_FIGHT_AUGMENT_SELECT" + "PlayerActionType_PlayerActionGridFightAugmentSelect" } Self::PlayerActionGridFightShopRefresh => { - "PLAYER_ACTION_GRID_FIGHT_SHOP_REFRESH" + "PlayerActionType_PlayerActionGridFightShopRefresh" + } + Self::PlayerActionGridFightShopBuy => { + "PlayerActionType_PlayerActionGridFightShopBuy" } - Self::PlayerActionGridFightShopBuy => "PLAYER_ACTION_GRID_FIGHT_SHOP_BUY", Self::PlayerActionGridFightSupplyRefresh => { - "PLAYER_ACTION_GRID_FIGHT_SUPPLY_REFRESH" + "PlayerActionType_PlayerActionGridFightSupplyRefresh" } Self::PlayerActionGridFightSupplySelect => { - "PLAYER_ACTION_GRID_FIGHT_SUPPLY_SELECT" + "PlayerActionType_PlayerActionGridFightSupplySelect" + } + Self::PlayerActionGridFightForgeOpen => { + "PlayerActionType_PlayerActionGridFightForgeOpen" } - Self::PlayerActionGridFightForgeOpen => "PLAYER_ACTION_GRID_FIGHT_FORGE_OPEN", Self::PlayerActionGridFightSpecialShopBuy => { - "PLAYER_ACTION_GRID_FIGHT_SPECIAL_SHOP_BUY" + "PlayerActionType_PlayerActionGridFightSpecialShopBuy" + } + Self::PlayerActionGridFightGetExp => { + "PlayerActionType_PlayerActionGridFightGetExp" + } + Self::PlayerActionGridFightGetOrb => { + "PlayerActionType_PlayerActionGridFightGetOrb" + } + Self::PlayerActionGridFightUseOrb => { + "PlayerActionType_PlayerActionGridFightUseOrb" + } + Self::PlayerActionGridFightGetRole => { + "PlayerActionType_PlayerActionGridFightGetRole" + } + Self::PlayerActionGridFightGetCoin => { + "PlayerActionType_PlayerActionGridFightGetCoin" } - Self::PlayerActionGridFightGetExp => "PLAYER_ACTION_GRID_FIGHT_GET_EXP", - Self::PlayerActionGridFightGetOrb => "PLAYER_ACTION_GRID_FIGHT_GET_ORB", - Self::PlayerActionGridFightUseOrb => "PLAYER_ACTION_GRID_FIGHT_USE_ORB", - Self::PlayerActionGridFightGetRole => "PLAYER_ACTION_GRID_FIGHT_GET_ROLE", - Self::PlayerActionGridFightGetCoin => "PLAYER_ACTION_GRID_FIGHT_GET_COIN", Self::PlayerActionGridFightGetFreeRefresh => { - "PLAYER_ACTION_GRID_FIGHT_GET_FREE_REFRESH" + "PlayerActionType_PlayerActionGridFightGetFreeRefresh" + } + Self::PlayerActionGridFightGetItem => { + "PlayerActionType_PlayerActionGridFightGetItem" + } + Self::PlayerActionGridFightGetEquip => { + "PlayerActionType_PlayerActionGridFightGetEquip" } - Self::PlayerActionGridFightGetItem => "PLAYER_ACTION_GRID_FIGHT_GET_ITEM", - Self::PlayerActionGridFightGetEquip => "PLAYER_ACTION_GRID_FIGHT_GET_EQUIP", Self::PlayerActionGridFightDressEquip => { - "PLAYER_ACTION_GRID_FIGHT_DRESS_EQUIP" + "PlayerActionType_PlayerActionGridFightDressEquip" + } + Self::PlayerActionGridFightGetHp => { + "PlayerActionType_PlayerActionGridFightGetHp" } - Self::PlayerActionGridFightGetHp => "PLAYER_ACTION_GRID_FIGHT_GET_HP", Self::PlayerActionGridFightWeeklyScoreChange => { - "PLAYER_ACTION_GRID_FIGHT_WEEKLY_SCORE_CHANGE" + "PlayerActionType_PlayerActionGridFightWeeklyScoreChange" } Self::PlayerActionGridFightGetWeeklyReward => { - "PLAYER_ACTION_GRID_FIGHT_GET_WEEKLY_REWARD" + "PlayerActionType_PlayerActionGridFightGetWeeklyReward" } Self::PlayerActionGridFightSeasonExpChange => { - "PLAYER_ACTION_GRID_FIGHT_SEASON_EXP_CHANGE" + "PlayerActionType_PlayerActionGridFightSeasonExpChange" } Self::PlayerActionGridFightTalentEnable => { - "PLAYER_ACTION_GRID_FIGHT_TALENT_ENABLE" + "PlayerActionType_PlayerActionGridFightTalentEnable" } Self::PlayerActionGridFightTalentReset => { - "PLAYER_ACTION_GRID_FIGHT_TALENT_RESET" + "PlayerActionType_PlayerActionGridFightTalentReset" } Self::PlayerActionGridFightTutorialTaskFinish => { - "PLAYER_ACTION_GRID_FIGHT_TUTORIAL_TASK_FINISH" + "PlayerActionType_PlayerActionGridFightTutorialTaskFinish" } Self::PlayerActionGridFightEliteBranchRefresh => { - "PLAYER_ACTION_GRID_FIGHT_ELITE_BRANCH_REFRESH" + "PlayerActionType_PlayerActionGridFightEliteBranchRefresh" + } + Self::PlayerActionGridFightTutorialResume => { + "PlayerActionType_PlayerActionGridFightTutorialResume" + } + Self::PlayerActionLocalLegendBattleBegin => { + "PlayerActionType_PlayerActionLocalLegendBattleBegin" + } + Self::PlayerActionLocalLegendBattleEnd => { + "PlayerActionType_PlayerActionLocalLegendBattleEnd" } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLAYER_ACTION_NONE" => Some(Self::PlayerActionNone), - "PLAYER_ACTION_REGISTER" => Some(Self::PlayerActionRegister), - "PLAYER_ACTION_LOGIN" => Some(Self::PlayerActionLogin), - "PLAYER_ACTION_LOGOUT" => Some(Self::PlayerActionLogout), - "PLAYER_ACTION_ADD_EXP" => Some(Self::PlayerActionAddExp), - "PLAYER_ACTION_LEVEL_UP" => Some(Self::PlayerActionLevelUp), - "PLAYER_ACTION_ADD_MATERIAL" => Some(Self::PlayerActionAddMaterial), - "PLAYER_ACTION_SAVE_STAT" => Some(Self::PlayerActionSaveStat), - "PLAYER_ACTION_TRAVEL_BROCHURE_INTERACT" => { + "PlayerActionType_PlayerActionNone" => Some(Self::PlayerActionNone), + "PlayerActionType_PlayerActionRegister" => Some(Self::PlayerActionRegister), + "PlayerActionType_PlayerActionLogin" => Some(Self::PlayerActionLogin), + "PlayerActionType_PlayerActionLogout" => Some(Self::PlayerActionLogout), + "PlayerActionType_PlayerActionAddExp" => Some(Self::PlayerActionAddExp), + "PlayerActionType_PlayerActionLevelUp" => Some(Self::PlayerActionLevelUp), + "PlayerActionType_PlayerActionAddMaterial" => { + Some(Self::PlayerActionAddMaterial) + } + "PlayerActionType_PlayerActionSaveStat" => Some(Self::PlayerActionSaveStat), + "PlayerActionType_PlayerActionTravelBrochureInteract" => { Some(Self::PlayerActionTravelBrochureInteract) } - "PLAYER_ACTION_RELAY" => Some(Self::PlayerActionRelay), - "PLAYER_ACTION_RECHARGE" => Some(Self::PlayerActionRecharge), - "PLAYER_ACTION_BUY_GOODS" => Some(Self::PlayerActionBuyGoods), - "PLAYER_ACTION_ADD_COIN" => Some(Self::PlayerActionAddCoin), - "PLAYER_ACTION_MONTH_CARD_DAILY_HCOIN" => { + "PlayerActionType_PlayerActionRelay" => Some(Self::PlayerActionRelay), + "PlayerActionType_PlayerActionRecharge" => Some(Self::PlayerActionRecharge), + "PlayerActionType_PlayerActionBuyGoods" => Some(Self::PlayerActionBuyGoods), + "PlayerActionType_PlayerActionAddCoin" => Some(Self::PlayerActionAddCoin), + "PlayerActionType_PlayerActionMonthCardDailyHcoin" => { Some(Self::PlayerActionMonthCardDailyHcoin) } - "PLAYER_ACTION_MONTH_CARD_BUY_MCOIN" => { + "PlayerActionType_PlayerActionMonthCardBuyMcoin" => { Some(Self::PlayerActionMonthCardBuyMcoin) } - "PLAYER_ACTION_RECHARGE_FREE_COIN" => { + "PlayerActionType_PlayerActionRechargeFreeCoin" => { Some(Self::PlayerActionRechargeFreeCoin) } - "PLAYER_ACTION_ADD_MONTH_CARD" => Some(Self::PlayerActionAddMonthCard), - "PLAYER_ACTION_RECHARGE_GIFT_PAY" => Some(Self::PlayerActionRechargeGiftPay), - "PLAYER_ACTION_RECHARGE_GIFT_FREE" => { + "PlayerActionType_PlayerActionAddMonthCard" => { + Some(Self::PlayerActionAddMonthCard) + } + "PlayerActionType_PlayerActionRechargeGiftPay" => { + Some(Self::PlayerActionRechargeGiftPay) + } + "PlayerActionType_PlayerActionRechargeGiftFree" => { Some(Self::PlayerActionRechargeGiftFree) } - "PLAYER_ACTION_RECHARGE_BENEFIT" => Some(Self::PlayerActionRechargeBenefit), - "PLAYER_ACTION_RECHARGE_GIFT_TAKE_REWARD" => { + "PlayerActionType_PlayerActionRechargeBenefit" => { + Some(Self::PlayerActionRechargeBenefit) + } + "PlayerActionType_PlayerActionRechargeGiftTakeReward" => { Some(Self::PlayerActionRechargeGiftTakeReward) } - "PLAYER_ACTION_RECHARGE_GIFT_REACH" => { + "PlayerActionType_PlayerActionRechargeGiftReach" => { Some(Self::PlayerActionRechargeGiftReach) } - "PLAYER_ACTION_RECHARGE_BENEFIT_REACH" => { + "PlayerActionType_PlayerActionRechargeBenefitReach" => { Some(Self::PlayerActionRechargeBenefitReach) } - "PLAYER_ACTION_MISSION_ACCEPT" => Some(Self::PlayerActionMissionAccept), - "PLAYER_ACTION_MISSION_FINISH" => Some(Self::PlayerActionMissionFinish), - "PLAYER_ACTION_MISSION_FAIL" => Some(Self::PlayerActionMissionFail), - "PLAYER_ACTION_MAIN_MISSION_ACCEPT" => { + "PlayerActionType_PlayerActionMonthCardEndMail" => { + Some(Self::PlayerActionMonthCardEndMail) + } + "PlayerActionType_PlayerActionMissionAccept" => { + Some(Self::PlayerActionMissionAccept) + } + "PlayerActionType_PlayerActionMissionFinish" => { + Some(Self::PlayerActionMissionFinish) + } + "PlayerActionType_PlayerActionMissionFail" => { + Some(Self::PlayerActionMissionFail) + } + "PlayerActionType_PlayerActionMainMissionAccept" => { Some(Self::PlayerActionMainMissionAccept) } - "PLAYER_ACTION_SUB_MISSION_ACCEPT" => { + "PlayerActionType_PlayerActionSubMissionAccept" => { Some(Self::PlayerActionSubMissionAccept) } - "PLAYER_ACTION_MAIN_MISSION_FINISH" => { + "PlayerActionType_PlayerActionMainMissionFinish" => { Some(Self::PlayerActionMainMissionFinish) } - "PLAYER_ACTION_SUB_MISSION_FINISH" => { + "PlayerActionType_PlayerActionSubMissionFinish" => { Some(Self::PlayerActionSubMissionFinish) } - "PLAYER_ACTION_DAILY_TASK_FINISH" => Some(Self::PlayerActionDailyTaskFinish), - "PLAYER_ACTION_DAILY_TASK_TAKE_REWARD" => { + "PlayerActionType_PlayerActionDailyTaskFinish" => { + Some(Self::PlayerActionDailyTaskFinish) + } + "PlayerActionType_PlayerActionDailyTaskTakeReward" => { Some(Self::PlayerActionDailyTaskTakeReward) } - "PLAYER_ACTION_NPC_TALK_REWARD" => Some(Self::PlayerActionNpcTalkReward), - "PLAYER_ACTION_MAIN_MISSION_RECOVER" => { + "PlayerActionType_PlayerActionNpcTalkReward" => { + Some(Self::PlayerActionNpcTalkReward) + } + "PlayerActionType_PlayerActionMainMissionRecover" => { Some(Self::PlayerActionMainMissionRecover) } - "PLAYER_ACTION_MAIN_MISSION_DISABLE" => { + "PlayerActionType_PlayerActionMainMissionDisable" => { Some(Self::PlayerActionMainMissionDisable) } - "PLAYER_ACTION_CONSUME_ITEM_SUB_MISSION_FINISH" => { + "PlayerActionType_PlayerActionConsumeItemSubMissionFinish" => { Some(Self::PlayerActionConsumeItemSubMissionFinish) } - "PLAYER_ACTION_ITEM_MONITOR_ALL_SOURCES" => { + "PlayerActionType_PlayerActionItemMonitorAllSources" => { Some(Self::PlayerActionItemMonitorAllSources) } - "PLAYER_ACTION_GM" => Some(Self::PlayerActionGm), - "PLAYER_ACTION_CUSTOM_OP" => Some(Self::PlayerActionCustomOp), - "PLAYER_ACTION_CHECK_SUM" => Some(Self::PlayerActionCheckSum), - "PLAYER_ACTION_PLAYER_LOCATION" => Some(Self::PlayerActionPlayerLocation), - "PLAYER_ACTION_CHANGE_LANGUAGE" => Some(Self::PlayerActionChangeLanguage), - "PLAYER_ACTION_CLIENT_REPORT" => Some(Self::PlayerActionClientReport), - "PLAYER_ACTION_ACE_REPORT" => Some(Self::PlayerActionAceReport), - "PLAYER_ACTION_PLAYER_POWER_INFO" => Some(Self::PlayerActionPlayerPowerInfo), - "PLAYER_ACTION_DAILY_REFRESH" => Some(Self::PlayerActionDailyRefresh), - "PLAYER_ACTION_AVATAR_VALUE_INFO" => Some(Self::PlayerActionAvatarValueInfo), - "PLAYER_ACTION_MOVE_CHECK_FAILED_REPORT" => { + "PlayerActionType_PlayerActionGm" => Some(Self::PlayerActionGm), + "PlayerActionType_PlayerActionCustomOp" => Some(Self::PlayerActionCustomOp), + "PlayerActionType_PlayerActionCheckSum" => Some(Self::PlayerActionCheckSum), + "PlayerActionType_PlayerActionPlayerLocation" => { + Some(Self::PlayerActionPlayerLocation) + } + "PlayerActionType_PlayerActionChangeLanguage" => { + Some(Self::PlayerActionChangeLanguage) + } + "PlayerActionType_PlayerActionClientReport" => { + Some(Self::PlayerActionClientReport) + } + "PlayerActionType_PlayerActionAceReport" => Some(Self::PlayerActionAceReport), + "PlayerActionType_PlayerActionPlayerPowerInfo" => { + Some(Self::PlayerActionPlayerPowerInfo) + } + "PlayerActionType_PlayerActionDailyRefresh" => { + Some(Self::PlayerActionDailyRefresh) + } + "PlayerActionType_PlayerActionAvatarValueInfo" => { + Some(Self::PlayerActionAvatarValueInfo) + } + "PlayerActionType_PlayerActionMoveCheckFailedReport" => { Some(Self::PlayerActionMoveCheckFailedReport) } - "PLAYER_ACTION_BATTLE_FAILED_REPORT" => { + "PlayerActionType_PlayerActionBattleFailedReport" => { Some(Self::PlayerActionBattleFailedReport) } - "PLAYER_ACTION_SECURITY_REPORT" => Some(Self::PlayerActionSecurityReport), - "PLAYER_ACTION_AVATAR_PROMOTION" => Some(Self::PlayerActionAvatarPromotion), - "PLAYER_ACTION_AVATAR_ADD" => Some(Self::PlayerActionAvatarAdd), - "PLAYER_ACTION_AVATAR_USE_EXP_ITEM" => { + "PlayerActionType_PlayerActionSecurityReport" => { + Some(Self::PlayerActionSecurityReport) + } + "PlayerActionType_PlayerActionAvatarPromotion" => { + Some(Self::PlayerActionAvatarPromotion) + } + "PlayerActionType_PlayerActionAvatarAdd" => Some(Self::PlayerActionAvatarAdd), + "PlayerActionType_PlayerActionAvatarUseExpItem" => { Some(Self::PlayerActionAvatarUseExpItem) } - "PLAYER_ACTION_AVATAR_LEVEL_UP" => Some(Self::PlayerActionAvatarLevelUp), - "PLAYER_ACTION_SKILL_TREE_UP" => Some(Self::PlayerActionSkillTreeUp), - "PLAYER_ACTION_AVATAR_HP_CHANGE" => Some(Self::PlayerActionAvatarHpChange), - "PLAYER_ACTION_AVATAR_MP_CHANGE" => Some(Self::PlayerActionAvatarMpChange), - "PLAYER_ACTION_AVATAR_ADD_EXP" => Some(Self::PlayerActionAvatarAddExp), - "PLAYER_ACTION_AVATAR_RANK_UP" => Some(Self::PlayerActionAvatarRankUp), - "PLAYER_ACTION_AVATAR_REPEATED" => Some(Self::PlayerActionAvatarRepeated), - "PLAYER_ACTION_MP_MAX_CHANGE" => Some(Self::PlayerActionMpMaxChange), - "PLAYER_ACTION_AVATAR_TAKE_PROMOTION_REWARD" => { + "PlayerActionType_PlayerActionAvatarLevelUp" => { + Some(Self::PlayerActionAvatarLevelUp) + } + "PlayerActionType_PlayerActionSkillTreeUp" => { + Some(Self::PlayerActionSkillTreeUp) + } + "PlayerActionType_PlayerActionAvatarHpChange" => { + Some(Self::PlayerActionAvatarHpChange) + } + "PlayerActionType_PlayerActionAvatarMpChange" => { + Some(Self::PlayerActionAvatarMpChange) + } + "PlayerActionType_PlayerActionAvatarAddExp" => { + Some(Self::PlayerActionAvatarAddExp) + } + "PlayerActionType_PlayerActionAvatarRankUp" => { + Some(Self::PlayerActionAvatarRankUp) + } + "PlayerActionType_PlayerActionAvatarRepeated" => { + Some(Self::PlayerActionAvatarRepeated) + } + "PlayerActionType_PlayerActionMpMaxChange" => { + Some(Self::PlayerActionMpMaxChange) + } + "PlayerActionType_PlayerActionAvatarTakePromotionReward" => { Some(Self::PlayerActionAvatarTakePromotionReward) } - "PLAYER_ACTION_AVATAR_RELIC_AFFIX_INFO" => { + "PlayerActionType_PlayerActionAvatarRelicAffixInfo" => { Some(Self::PlayerActionAvatarRelicAffixInfo) } - "PLAYER_ACTION_AVATAR_MARK" => Some(Self::PlayerActionAvatarMark), - "PLAYER_ACTION_AVATAR_SYSTEM_POWER_RESET" => { + "PlayerActionType_PlayerActionAvatarMark" => { + Some(Self::PlayerActionAvatarMark) + } + "PlayerActionType_PlayerActionAvatarSystemPowerReset" => { Some(Self::PlayerActionAvatarSystemPowerReset) } - "PLAYER_ACTION_AVATAR_CHANGE_PATH" => { + "PlayerActionType_PlayerActionAvatarChangePath" => { Some(Self::PlayerActionAvatarChangePath) } - "PLAYER_ACTION_SET_GROWTH_TARGET_AVATAR" => { + "PlayerActionType_PlayerActionSetGrowthTargetAvatar" => { Some(Self::PlayerActionSetGrowthTargetAvatar) } - "PLAYER_ACTION_DEL_AVATAR" => Some(Self::PlayerActionDelAvatar), - "PLAYER_ACTION_AVATAR_SKIN_CHANGE" => { + "PlayerActionType_PlayerActionDelAvatar" => Some(Self::PlayerActionDelAvatar), + "PlayerActionType_PlayerActionAvatarSkinChange" => { Some(Self::PlayerActionAvatarSkinChange) } - "PLAYER_ACTION_SET_GROWTH_TARGET_FUNCTION_CONFIG" => { + "PlayerActionType_PlayerActionSetGrowthTargetFunctionConfig" => { Some(Self::PlayerActionSetGrowthTargetFunctionConfig) } - "PLAYER_ACTION_AVATAR_SKIN_ACTIVITY_REISSUE" => { + "PlayerActionType_PlayerActionAvatarSkinActivityReissue" => { Some(Self::PlayerActionAvatarSkinActivityReissue) } - "PLAYER_ACTION_SET_AVATAR_ENHANCED_ID" => { + "PlayerActionType_PlayerActionSetAvatarEnhancedId" => { Some(Self::PlayerActionSetAvatarEnhancedId) } - "PLAYER_ACTION_DRESS_PLAYER_OUTFIT" => { + "PlayerActionType_PlayerActionDressPlayerOutfit" => { Some(Self::PlayerActionDressPlayerOutfit) } - "PLAYER_ACTION_STAGE_BEGIN" => Some(Self::PlayerActionStageBegin), - "PLAYER_ACTION_STAGE_END" => Some(Self::PlayerActionStageEnd), - "PLAYER_ACTION_COCOON_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionStageBegin" => { + Some(Self::PlayerActionStageBegin) + } + "PlayerActionType_PlayerActionStageEnd" => Some(Self::PlayerActionStageEnd), + "PlayerActionType_PlayerActionCocoonStageBegin" => { Some(Self::PlayerActionCocoonStageBegin) } - "PLAYER_ACTION_COCOON_STAGE_END" => Some(Self::PlayerActionCocoonStageEnd), - "PLAYER_ACTION_FARM_ELEMENT_END" => Some(Self::PlayerActionFarmElementEnd), - "PLAYER_ACTION_ELEMENT_STAGE_END" => Some(Self::PlayerActionElementStageEnd), - "PLAYER_ACTION_COCOON_SWEEP" => Some(Self::PlayerActionCocoonSweep), - "PLAYER_ACTION_FARM_ELEMENT_SWEEP" => { + "PlayerActionType_PlayerActionCocoonStageEnd" => { + Some(Self::PlayerActionCocoonStageEnd) + } + "PlayerActionType_PlayerActionFarmElementEnd" => { + Some(Self::PlayerActionFarmElementEnd) + } + "PlayerActionType_PlayerActionElementStageEnd" => { + Some(Self::PlayerActionElementStageEnd) + } + "PlayerActionType_PlayerActionCocoonSweep" => { + Some(Self::PlayerActionCocoonSweep) + } + "PlayerActionType_PlayerActionFarmElementSweep" => { Some(Self::PlayerActionFarmElementSweep) } - "PLAYER_ACTION_RECOVER_STAMINA" => Some(Self::PlayerActionRecoverStamina), - "PLAYER_ACTION_EXCHANGE_STAMINA" => Some(Self::PlayerActionExchangeStamina), - "PLAYER_ACTION_LOGIN_REWARD" => Some(Self::PlayerActionLoginReward), - "PLAYER_ACTION_MODIFY_NICKNAME" => Some(Self::PlayerActionModifyNickname), - "PLAYER_ACTION_GET_LEVEL_REWARD" => Some(Self::PlayerActionGetLevelReward), - "PLAYER_ACTION_WORLD_LEVEL_UP" => Some(Self::PlayerActionWorldLevelUp), - "PLAYER_ACTION_ADD_STAMINA" => Some(Self::PlayerActionAddStamina), - "PLAYER_ACTION_GAMEPLAY_BIRTHDAY_REWARD_MAIL" => { + "PlayerActionType_PlayerActionRecoverStamina" => { + Some(Self::PlayerActionRecoverStamina) + } + "PlayerActionType_PlayerActionExchangeStamina" => { + Some(Self::PlayerActionExchangeStamina) + } + "PlayerActionType_PlayerActionLoginReward" => { + Some(Self::PlayerActionLoginReward) + } + "PlayerActionType_PlayerActionModifyNickname" => { + Some(Self::PlayerActionModifyNickname) + } + "PlayerActionType_PlayerActionGetLevelReward" => { + Some(Self::PlayerActionGetLevelReward) + } + "PlayerActionType_PlayerActionWorldLevelUp" => { + Some(Self::PlayerActionWorldLevelUp) + } + "PlayerActionType_PlayerActionAddStamina" => { + Some(Self::PlayerActionAddStamina) + } + "PlayerActionType_PlayerActionGameplayBirthdayRewardMail" => { Some(Self::PlayerActionGameplayBirthdayRewardMail) } - "PLAYER_ACTION_RECHARGE_REBATE_REWARD" => { + "PlayerActionType_PlayerActionRechargeRebateReward" => { Some(Self::PlayerActionRechargeRebateReward) } - "PLAYER_ACTION_GAMEPLAY_BIRTHDAY_SET" => { + "PlayerActionType_PlayerActionGameplayBirthdaySet" => { Some(Self::PlayerActionGameplayBirthdaySet) } - "PLAYER_ACTION_RESERVE_STAMINA_EXCHANGE" => { + "PlayerActionType_PlayerActionReserveStaminaExchange" => { Some(Self::PlayerActionReserveStaminaExchange) } - "PLAYER_ACTION_RESERVE_STAMINA_ADD" => { + "PlayerActionType_PlayerActionReserveStaminaAdd" => { Some(Self::PlayerActionReserveStaminaAdd) } - "PLAYER_ACTION_RESERVE_STAMINA_CHANGE" => { + "PlayerActionType_PlayerActionReserveStaminaChange" => { Some(Self::PlayerActionReserveStaminaChange) } - "PLAYER_ACTION_NOW_STAMINA" => Some(Self::PlayerActionNowStamina), - "PLAYER_ACTION_FTC_RESET_NICKNAME" => { + "PlayerActionType_PlayerActionNowStamina" => { + Some(Self::PlayerActionNowStamina) + } + "PlayerActionType_PlayerActionFtcResetNickname" => { Some(Self::PlayerActionFtcResetNickname) } - "PLAYER_ACTION_RESERVE_AND_FUEL_EXCHANGE_STAMINA" => { + "PlayerActionType_PlayerActionReserveAndFuelExchangeStamina" => { Some(Self::PlayerActionReserveAndFuelExchangeStamina) } - "PLAYER_ACTION_MAIL" => Some(Self::PlayerActionMail), - "PLAYER_ACTION_MAIL_OP_BY_USER" => Some(Self::PlayerActionMailOpByUser), - "PLAYER_ACTION_MAIL_OP_BY_MUIP" => Some(Self::PlayerActionMailOpByMuip), - "PLAYER_ACTION_MAIL_OP_BY_GM" => Some(Self::PlayerActionMailOpByGm), - "PLAYER_ACTION_MAIL_OP_BY_FULL" => Some(Self::PlayerActionMailOpByFull), - "PLAYER_ACTION_MAIL_OP_BY_EXPIRE" => Some(Self::PlayerActionMailOpByExpire), - "PLAYER_ACTION_MAIL_OP_BY_INTERNAL" => { + "PlayerActionType_PlayerActionMail" => Some(Self::PlayerActionMail), + "PlayerActionType_PlayerActionMailOpByUser" => { + Some(Self::PlayerActionMailOpByUser) + } + "PlayerActionType_PlayerActionMailOpByMuip" => { + Some(Self::PlayerActionMailOpByMuip) + } + "PlayerActionType_PlayerActionMailOpByGm" => { + Some(Self::PlayerActionMailOpByGm) + } + "PlayerActionType_PlayerActionMailOpByFull" => { + Some(Self::PlayerActionMailOpByFull) + } + "PlayerActionType_PlayerActionMailOpByExpire" => { + Some(Self::PlayerActionMailOpByExpire) + } + "PlayerActionType_PlayerActionMailOpByInternal" => { Some(Self::PlayerActionMailOpByInternal) } - "PLAYER_ACTION_ADD_MAIL" => Some(Self::PlayerActionAddMail), - "PLAYER_ACTION_DEL_MAIL" => Some(Self::PlayerActionDelMail), - "PLAYER_ACTION_TAKE_ATTACHMENT" => Some(Self::PlayerActionTakeAttachment), - "PLAYER_ACTION_READ_MAIL" => Some(Self::PlayerActionReadMail), - "PLAYER_ACTION_BATTLE_AVATAR" => Some(Self::PlayerActionBattleAvatar), - "PLAYER_ACTION_BATTLE_MONSTER" => Some(Self::PlayerActionBattleMonster), - "PLAYER_ACTION_BATTLE_END" => Some(Self::PlayerActionBattleEnd), - "PLAYER_ACTION_BATTLE_REPLAY" => Some(Self::PlayerActionBattleReplay), - "PLAYER_ACTION_BATTLE_AVATAR_DEATH" => { + "PlayerActionType_PlayerActionAddMail" => Some(Self::PlayerActionAddMail), + "PlayerActionType_PlayerActionDelMail" => Some(Self::PlayerActionDelMail), + "PlayerActionType_PlayerActionTakeAttachment" => { + Some(Self::PlayerActionTakeAttachment) + } + "PlayerActionType_PlayerActionReadMail" => Some(Self::PlayerActionReadMail), + "PlayerActionType_PlayerActionBattleAvatar" => { + Some(Self::PlayerActionBattleAvatar) + } + "PlayerActionType_PlayerActionBattleMonster" => { + Some(Self::PlayerActionBattleMonster) + } + "PlayerActionType_PlayerActionBattleEnd" => Some(Self::PlayerActionBattleEnd), + "PlayerActionType_PlayerActionBattleReplay" => { + Some(Self::PlayerActionBattleReplay) + } + "PlayerActionType_PlayerActionBattleAvatarDeath" => { Some(Self::PlayerActionBattleAvatarDeath) } - "PLAYER_ACTION_BATTLE_SWITCH_PHASE" => { + "PlayerActionType_PlayerActionBattleSwitchPhase" => { Some(Self::PlayerActionBattleSwitchPhase) } - "PLAYER_ACTION_BATTLE_MONSTER_SKILL" => { + "PlayerActionType_PlayerActionBattleMonsterSkill" => { Some(Self::PlayerActionBattleMonsterSkill) } - "PLAYER_ACTION_BATTLE_REBATTLE" => Some(Self::PlayerActionBattleRebattle), - "PLAYER_ACTION_BATTLE_AVATAR_SERVANT" => { + "PlayerActionType_PlayerActionBattleRebattle" => { + Some(Self::PlayerActionBattleRebattle) + } + "PlayerActionType_PlayerActionBattleAvatarServant" => { Some(Self::PlayerActionBattleAvatarServant) } - "PLAYER_ACTION_MISSION_REWARD" => Some(Self::PlayerActionMissionReward), - "PLAYER_ACTION_QUEST_ACCEPT" => Some(Self::PlayerActionQuestAccept), - "PLAYER_ACTION_QUEST_FINISH" => Some(Self::PlayerActionQuestFinish), - "PLAYER_ACTION_QUEST_REMOVE" => Some(Self::PlayerActionQuestRemove), - "PLAYER_ACTION_QUEST_REWARD" => Some(Self::PlayerActionQuestReward), - "PLAYER_ACTION_QUEST_AUTO_CLOSE" => Some(Self::PlayerActionQuestAutoClose), - "PLAYER_ACTION_QUEST_EXPIRED" => Some(Self::PlayerActionQuestExpired), - "PLAYER_ACTION_MISSION_REQUIRED" => Some(Self::PlayerActionMissionRequired), - "PLAYER_ACTION_SUBMISSION_REWARD" => Some(Self::PlayerActionSubmissionReward), - "PLAYER_ACTION_ACHIEVEMENT_LEVEL_REWARD" => { + "PlayerActionType_PlayerActionMissionReward" => { + Some(Self::PlayerActionMissionReward) + } + "PlayerActionType_PlayerActionQuestAccept" => { + Some(Self::PlayerActionQuestAccept) + } + "PlayerActionType_PlayerActionQuestFinish" => { + Some(Self::PlayerActionQuestFinish) + } + "PlayerActionType_PlayerActionQuestRemove" => { + Some(Self::PlayerActionQuestRemove) + } + "PlayerActionType_PlayerActionQuestReward" => { + Some(Self::PlayerActionQuestReward) + } + "PlayerActionType_PlayerActionQuestAutoClose" => { + Some(Self::PlayerActionQuestAutoClose) + } + "PlayerActionType_PlayerActionQuestExpired" => { + Some(Self::PlayerActionQuestExpired) + } + "PlayerActionType_PlayerActionMissionRequired" => { + Some(Self::PlayerActionMissionRequired) + } + "PlayerActionType_PlayerActionSubmissionReward" => { + Some(Self::PlayerActionSubmissionReward) + } + "PlayerActionType_PlayerActionAchievementLevelReward" => { Some(Self::PlayerActionAchievementLevelReward) } - "PLAYER_ACTION_QUEST_DELETE" => Some(Self::PlayerActionQuestDelete), - "PLAYER_ACTION_SUB_MISSION_REWARD" => { - Some(Self::PlayerActionSubMissionReward) + "PlayerActionType_PlayerActionQuestDelete" => { + Some(Self::PlayerActionQuestDelete) } - "PLAYER_ACTION_MISSION_COMPENSATE" => { + "PlayerActionType_PlayerActionSubMissionReward2" => { + Some(Self::PlayerActionSubMissionReward2) + } + "PlayerActionType_PlayerActionMissionCompensate" => { Some(Self::PlayerActionMissionCompensate) } - "PLAYER_ACTION_MISSION_RECYCLE" => Some(Self::PlayerActionMissionRecycle), - "PLAYER_ACTION_QUEST_RESET" => Some(Self::PlayerActionQuestReset), - "PLAYER_ACTION_QUEST_OPTIONAL_REWARD" => { + "PlayerActionType_PlayerActionMissionRecycle" => { + Some(Self::PlayerActionMissionRecycle) + } + "PlayerActionType_PlayerActionQuestReset" => { + Some(Self::PlayerActionQuestReset) + } + "PlayerActionType_PlayerActionQuestOptionalReward" => { Some(Self::PlayerActionQuestOptionalReward) } - "PLAYER_ACTION_MCV_CHANGE" => Some(Self::PlayerActionMcvChange), - "PLAYER_ACTION_QUEST_REISSUE" => Some(Self::PlayerActionQuestReissue), - "PLAYER_ACTION_PROP_INTERACT" => Some(Self::PlayerActionPropInteract), - "PLAYER_ACTION_AVATAR_MAZE_SKILL" => Some(Self::PlayerActionAvatarMazeSkill), - "PLAYER_ACTION_ENTER_MAZE" => Some(Self::PlayerActionEnterMaze), - "PLAYER_ACTION_ORDINARY_INTERACT" => Some(Self::PlayerActionOrdinaryInteract), - "PLAYER_ACTION_CHEST_INTERACT" => Some(Self::PlayerActionChestInteract), - "PLAYER_ACTION_CHECK_POINT_UNLOCK" => { + "PlayerActionType_PlayerActionMcvChange" => Some(Self::PlayerActionMcvChange), + "PlayerActionType_PlayerActionQuestReissue" => { + Some(Self::PlayerActionQuestReissue) + } + "PlayerActionType_PlayerActionPropInteract" => { + Some(Self::PlayerActionPropInteract) + } + "PlayerActionType_PlayerActionAvatarMazeSkill" => { + Some(Self::PlayerActionAvatarMazeSkill) + } + "PlayerActionType_PlayerActionEnterMaze" => Some(Self::PlayerActionEnterMaze), + "PlayerActionType_PlayerActionOrdinaryInteract" => { + Some(Self::PlayerActionOrdinaryInteract) + } + "PlayerActionType_PlayerActionChestInteract" => { + Some(Self::PlayerActionChestInteract) + } + "PlayerActionType_PlayerActionCheckPointUnlock" => { Some(Self::PlayerActionCheckPointUnlock) } - "PLAYER_ACTION_CHECK_POINT_INTERACT" => { + "PlayerActionType_PlayerActionCheckPointInteract" => { Some(Self::PlayerActionCheckPointInteract) } - "PLAYER_ACTION_CHECK_POINT_REVIVE" => { + "PlayerActionType_PlayerActionCheckPointRevive" => { Some(Self::PlayerActionCheckPointRevive) } - "PLAYER_ACTION_CHECK_POINT_TRANSFER" => { + "PlayerActionType_PlayerActionCheckPointTransfer" => { Some(Self::PlayerActionCheckPointTransfer) } - "PLAYER_ACTION_MONSTER_INTERACT" => Some(Self::PlayerActionMonsterInteract), - "PLAYER_ACTION_NPC_INTERACT" => Some(Self::PlayerActionNpcInteract), - "PLAYER_ACTION_PROP_HIT" => Some(Self::PlayerActionPropHit), - "PLAYER_ACTION_PRELOGUE_REVIVE" => Some(Self::PlayerActionPrelogueRevive), - "PLAYER_ACTION_PROP_STATE" => Some(Self::PlayerActionPropState), - "PLAYER_ACTION_CHECK_POINT_RECOVER" => { + "PlayerActionType_PlayerActionMonsterInteract" => { + Some(Self::PlayerActionMonsterInteract) + } + "PlayerActionType_PlayerActionNpcInteract" => { + Some(Self::PlayerActionNpcInteract) + } + "PlayerActionType_PlayerActionPropHit" => Some(Self::PlayerActionPropHit), + "PlayerActionType_PlayerActionPrelogueRevive" => { + Some(Self::PlayerActionPrelogueRevive) + } + "PlayerActionType_PlayerActionPropState" => Some(Self::PlayerActionPropState), + "PlayerActionType_PlayerActionCheckPointRecover" => { Some(Self::PlayerActionCheckPointRecover) } - "PLAYER_ACTION_MECHANISM_BAR" => Some(Self::PlayerActionMechanismBar), - "PLAYER_ACTION_SUBMIT_ORIGAMI_ITEM" => { + "PlayerActionType_PlayerActionMechanismBar" => { + Some(Self::PlayerActionMechanismBar) + } + "PlayerActionType_PlayerActionSubmitOrigamiItem" => { Some(Self::PlayerActionSubmitOrigamiItem) } - "PLAYER_ACTION_MAZE_BUFF_DROP_ITEM" => { + "PlayerActionType_PlayerActionMazeBuffDropItem" => { Some(Self::PlayerActionMazeBuffDropItem) } - "PLAYER_ACTION_FSV_CHANGE" => Some(Self::PlayerActionFsvChange), - "PLAYER_ACTION_TIMELINE_PROP_STATE" => { + "PlayerActionType_PlayerActionFsvChange" => Some(Self::PlayerActionFsvChange), + "PlayerActionType_PlayerActionTimelinePropState" => { Some(Self::PlayerActionTimelinePropState) } - "PLAYER_ACTION_GROUP_PROPERTY_CHANGE" => { + "PlayerActionType_PlayerActionGroupPropertyChange" => { Some(Self::PlayerActionGroupPropertyChange) } - "PLAYER_ACTION_EQUIPMENT_PROMOTION" => { + "PlayerActionType_PlayerActionEquipmentPromotion" => { Some(Self::PlayerActionEquipmentPromotion) } - "PLAYER_ACTION_ADD_ITEM" => Some(Self::PlayerActionAddItem), - "PLAYER_ACTION_USE_ITEM" => Some(Self::PlayerActionUseItem), - "PLAYER_ACTION_EQUIPMENT_RANK_UP" => Some(Self::PlayerActionEquipmentRankUp), - "PLAYER_ACTION_EQUIPMENT_LEVEL_UP" => { + "PlayerActionType_PlayerActionAddItem" => Some(Self::PlayerActionAddItem), + "PlayerActionType_PlayerActionUseItem" => Some(Self::PlayerActionUseItem), + "PlayerActionType_PlayerActionEquipmentRankUp" => { + Some(Self::PlayerActionEquipmentRankUp) + } + "PlayerActionType_PlayerActionEquipmentLevelUp" => { Some(Self::PlayerActionEquipmentLevelUp) } - "PLAYER_ACTION_EXP_UP_EQUIPMENT_RETURN" => { + "PlayerActionType_PlayerActionExpUpEquipmentReturn" => { Some(Self::PlayerActionExpUpEquipmentReturn) } - "PLAYER_ACTION_BAG_FULL_REWARD_MAIL" => { + "PlayerActionType_PlayerActionBagFullRewardMail" => { Some(Self::PlayerActionBagFullRewardMail) } - "PLAYER_ACTION_EQUIPMENT_ADD" => Some(Self::PlayerActionEquipmentAdd), - "PLAYER_ACTION_EQUIPMENT_WEAR" => Some(Self::PlayerActionEquipmentWear), - "PLAYER_ACTION_ITEM_COMPOSE" => Some(Self::PlayerActionItemCompose), - "PLAYER_ACTION_RELIC_LEVEL_UP" => Some(Self::PlayerActionRelicLevelUp), - "PLAYER_ACTION_EXP_UP_RELIC_RETURN" => { + "PlayerActionType_PlayerActionEquipmentAdd" => { + Some(Self::PlayerActionEquipmentAdd) + } + "PlayerActionType_PlayerActionEquipmentWear" => { + Some(Self::PlayerActionEquipmentWear) + } + "PlayerActionType_PlayerActionItemCompose" => { + Some(Self::PlayerActionItemCompose) + } + "PlayerActionType_PlayerActionRelicLevelUp" => { + Some(Self::PlayerActionRelicLevelUp) + } + "PlayerActionType_PlayerActionExpUpRelicReturn" => { Some(Self::PlayerActionExpUpRelicReturn) } - "PLAYER_ACTION_RELIC_NUM_CHANGED" => Some(Self::PlayerActionRelicNumChanged), - "PLAYER_ACTION_RELIC_WEAR" => Some(Self::PlayerActionRelicWear), - "PLAYER_ACTION_RELIC_COMPOSE" => Some(Self::PlayerActionRelicCompose), - "PLAYER_ACTION_SELL_ITEM" => Some(Self::PlayerActionSellItem), - "PLAYER_ACTION_UNLOCK_MUSIC" => Some(Self::PlayerActionUnlockMusic), - "PLAYER_ACTION_EXCHANGE_HCOIN_WITH_PAY_MCOIN" => { + "PlayerActionType_PlayerActionRelicNumChanged" => { + Some(Self::PlayerActionRelicNumChanged) + } + "PlayerActionType_PlayerActionRelicWear" => Some(Self::PlayerActionRelicWear), + "PlayerActionType_PlayerActionRelicCompose" => { + Some(Self::PlayerActionRelicCompose) + } + "PlayerActionType_PlayerActionSellItem" => Some(Self::PlayerActionSellItem), + "PlayerActionType_PlayerActionUnlockMusic" => { + Some(Self::PlayerActionUnlockMusic) + } + "PlayerActionType_PlayerActionExchangeHcoinWithPayMcoin" => { Some(Self::PlayerActionExchangeHcoinWithPayMcoin) } - "PLAYER_ACTION_GET_REWARD" => Some(Self::PlayerActionGetReward), - "PLAYER_ACTION_EXCHANGE_HCOIN_WITH_FREE_MCOIN" => { + "PlayerActionType_PlayerActionGetReward" => Some(Self::PlayerActionGetReward), + "PlayerActionType_PlayerActionExchangeHcoinWithFreeMcoin" => { Some(Self::PlayerActionExchangeHcoinWithFreeMcoin) } - "PLAYER_ACTION_ITEM_COMPOSE_FORMULA_UNLOCK" => { + "PlayerActionType_PlayerActionItemComposeFormulaUnlock" => { Some(Self::PlayerActionItemComposeFormulaUnlock) } - "PLAYER_ACTION_EXCHANGE_HCOIN" => Some(Self::PlayerActionExchangeHcoin), - "PLAYER_ACTION_CITY_SHOP_LEVEL_REWARD" => { + "PlayerActionType_PlayerActionExchangeHcoin" => { + Some(Self::PlayerActionExchangeHcoin) + } + "PlayerActionType_PlayerActionCityShopLevelReward" => { Some(Self::PlayerActionCityShopLevelReward) } - "PLAYER_ACTION_ITEM_RECYCLE" => Some(Self::PlayerActionItemRecycle), - "PLAYER_ACTION_MUSEUM_FUNDS_CONSUME" => { + "PlayerActionType_PlayerActionItemRecycle" => { + Some(Self::PlayerActionItemRecycle) + } + "PlayerActionType_PlayerActionMuseumFundsConsume" => { Some(Self::PlayerActionMuseumFundsConsume) } - "PLAYER_ACTION_MUSEUM_EVENT_BUY_STUFF" => { + "PlayerActionType_PlayerActionMuseumEventBuyStuff" => { Some(Self::PlayerActionMuseumEventBuyStuff) } - "PLAYER_ACTION_MUSEUM_MARKET_BUY_STUFF" => { + "PlayerActionType_PlayerActionMuseumMarketBuyStuff" => { Some(Self::PlayerActionMuseumMarketBuyStuff) } - "PLAYER_ACTION_MUSEUM_RANDOM_EVENT" => { + "PlayerActionType_PlayerActionMuseumRandomEvent" => { Some(Self::PlayerActionMuseumRandomEvent) } - "PLAYER_ACTION_MUSEUM_INITIAL_ITEM" => { + "PlayerActionType_PlayerActionMuseumInitialItem" => { Some(Self::PlayerActionMuseumInitialItem) } - "PLAYER_ACTION_OPTIONAL_BOX_REWARD" => { + "PlayerActionType_PlayerActionOptionalBoxReward" => { Some(Self::PlayerActionOptionalBoxReward) } - "PLAYER_ACTION_DESTROY_ITEM" => Some(Self::PlayerActionDestroyItem), - "PLAYER_ACTION_TRANSFER_EXP" => Some(Self::PlayerActionTransferExp), - "PLAYER_ACTION_ONDUTY_USE" => Some(Self::PlayerActionOndutyUse), - "PLAYER_ACTION_ITEM_MARK" => Some(Self::PlayerActionItemMark), - "PLAYER_ACTION_RELIC_DISCARD" => Some(Self::PlayerActionRelicDiscard), - "PLAYER_ACTION_GENERAL_VIRTUAL_ITEM_CHANGE" => { + "PlayerActionType_PlayerActionDestroyItem" => { + Some(Self::PlayerActionDestroyItem) + } + "PlayerActionType_PlayerActionTransferExp" => { + Some(Self::PlayerActionTransferExp) + } + "PlayerActionType_PlayerActionOndutyUse" => Some(Self::PlayerActionOndutyUse), + "PlayerActionType_PlayerActionItemMark" => Some(Self::PlayerActionItemMark), + "PlayerActionType_PlayerActionRelicDiscard" => { + Some(Self::PlayerActionRelicDiscard) + } + "PlayerActionType_PlayerActionGeneralVirtualItemChange" => { Some(Self::PlayerActionGeneralVirtualItemChange) } - "PLAYER_ACTION_RELIC_LOCK" => Some(Self::PlayerActionRelicLock), - "PLAYER_ACTION_RELIC_FILTER_PLAN_SAVE" => { + "PlayerActionType_PlayerActionRelicLock" => Some(Self::PlayerActionRelicLock), + "PlayerActionType_PlayerActionRelicFilterPlanSave" => { Some(Self::PlayerActionRelicFilterPlanSave) } - "PLAYER_ACTION_RELIC_FILTER_PLAN_DELETE" => { + "PlayerActionType_PlayerActionRelicFilterPlanDelete" => { Some(Self::PlayerActionRelicFilterPlanDelete) } - "PLAYER_ACTION_RELIC_FILTER_PLAN_MARK" => { + "PlayerActionType_PlayerActionRelicFilterPlanMark" => { Some(Self::PlayerActionRelicFilterPlanMark) } - "PLAYER_ACTION_RELIC_SELL" => Some(Self::PlayerActionRelicSell), - "PLAYER_ACTION_RELIC_REFORGE" => Some(Self::PlayerActionRelicReforge), - "PLAYER_ACTION_RELIC_SMART_WEAR_CUSTOM_PLAN" => { + "PlayerActionType_PlayerActionRelicSell" => Some(Self::PlayerActionRelicSell), + "PlayerActionType_PlayerActionRelicReforge" => { + Some(Self::PlayerActionRelicReforge) + } + "PlayerActionType_PlayerActionRelicSmartWearCustomPlan" => { Some(Self::PlayerActionRelicSmartWearCustomPlan) } - "PLAYER_ACTION_RECOVER_RELIC" => Some(Self::PlayerActionRecoverRelic), - "PLAYER_ACTION_RECOVER_EQUIPMENT" => Some(Self::PlayerActionRecoverEquipment), - "PLAYER_ACTION_EQUIPMENT_SELL" => Some(Self::PlayerActionEquipmentSell), - "PLAYER_ACTION_RELIC_SMART_WEAR_PIN_RELIC" => { + "PlayerActionType_PlayerActionRecoverRelic" => { + Some(Self::PlayerActionRecoverRelic) + } + "PlayerActionType_PlayerActionRecoverEquipment" => { + Some(Self::PlayerActionRecoverEquipment) + } + "PlayerActionType_PlayerActionEquipmentSell" => { + Some(Self::PlayerActionEquipmentSell) + } + "PlayerActionType_PlayerActionRelicSmartWearPinRelic" => { Some(Self::PlayerActionRelicSmartWearPinRelic) } - "PLAYER_ACTION_RELIC_COCOON_SETTING" => { + "PlayerActionType_PlayerActionRelicCocoonSetting" => { Some(Self::PlayerActionRelicCocoonSetting) } - "PLAYER_ACTION_PERSONAL_CARD_CHANGE" => { + "PlayerActionType_PlayerActionPersonalCardChange" => { Some(Self::PlayerActionPersonalCardChange) } - "PLAYER_ACTION_PHONE_CASE_CHANGE" => Some(Self::PlayerActionPhoneCaseChange), - "PLAYER_ACTION_DELIVERY_ITEM_REWARD" => { + "PlayerActionType_PlayerActionPhoneCaseChange" => { + Some(Self::PlayerActionPhoneCaseChange) + } + "PlayerActionType_PlayerActionDeliveryItemReward" => { Some(Self::PlayerActionDeliveryItemReward) } - "PLAYER_ACTION_ITEM_AUTO_TRANSFER" => { + "PlayerActionType_PlayerActionItemAutoTransfer" => { Some(Self::PlayerActionItemAutoTransfer) } - "PLAYER_ACTION_ITEM_AUTO_TRANSFER_IN_BAG" => { + "PlayerActionType_PlayerActionItemAutoTransferInBag" => { Some(Self::PlayerActionItemAutoTransferInBag) } - "PLAYER_ACTION_ITEM_AUTO_TRANSFER_ON_ADD" => { + "PlayerActionType_PlayerActionItemAutoTransferOnAdd" => { Some(Self::PlayerActionItemAutoTransferOnAdd) } - "PLAYER_ACTION_ADD_EXTRA_COIN" => Some(Self::PlayerActionAddExtraCoin), - "PLAYER_ACTION_VARIABLE_DICE_EXCHANGE_PARTNER_COIN" => { + "PlayerActionType_PlayerActionAddExtraCoin" => { + Some(Self::PlayerActionAddExtraCoin) + } + "PlayerActionType_PlayerActionVariableDiceExchangePartnerCoin" => { Some(Self::PlayerActionVariableDiceExchangePartnerCoin) } - "PLAYER_ACTION_RELIC_BOX" => Some(Self::PlayerActionRelicBox), - "PLAYER_ACTION_RELIC_BOX_SETTLE" => Some(Self::PlayerActionRelicBoxSettle), - "PLAYER_ACTION_RELIC_BOX_REGULAR" => Some(Self::PlayerActionRelicBoxRegular), - "PLAYER_ACTION_RELIC_REPLACE" => Some(Self::PlayerActionRelicReplace), - "PLAYER_ACTION_EQUIPMENT_UP_COST_PILE_SETTING" => { + "PlayerActionType_PlayerActionRelicBox" => Some(Self::PlayerActionRelicBox), + "PlayerActionType_PlayerActionRelicBoxSettle" => { + Some(Self::PlayerActionRelicBoxSettle) + } + "PlayerActionType_PlayerActionRelicBoxRegular" => { + Some(Self::PlayerActionRelicBoxRegular) + } + "PlayerActionType_PlayerActionRelicReplace" => { + Some(Self::PlayerActionRelicReplace) + } + "PlayerActionType_PlayerActionEquipmentUpCostPileSetting" => { Some(Self::PlayerActionEquipmentUpCostPileSetting) } - "PLAYER_ACTION_RELIC_BOX_SHOW" => Some(Self::PlayerActionRelicBoxShow), - "PLAYER_ACTION_TUTORIAL_GUIDE_FINISH" => { + "PlayerActionType_PlayerActionRelicBoxShow" => { + Some(Self::PlayerActionRelicBoxShow) + } + "PlayerActionType_PlayerActionTutorialGuideFinish" => { Some(Self::PlayerActionTutorialGuideFinish) } - "PLAYER_ACTION_TUTORIAL" => Some(Self::PlayerActionTutorial), - "PLAYER_ACTION_TUTORIAL_GUIDE" => Some(Self::PlayerActionTutorialGuide), - "PLAYER_ACTION_MONSTER_DROP" => Some(Self::PlayerActionMonsterDrop), - "PLAYER_ACTION_FINISH_CHALLENGE" => Some(Self::PlayerActionFinishChallenge), - "PLAYER_ACTION_CHALLENGE_STARS" => Some(Self::PlayerActionChallengeStars), - "PLAYER_ACTION_CHALLENGE_START" => Some(Self::PlayerActionChallengeStart), - "PLAYER_ACTION_CHALLENGE_END" => Some(Self::PlayerActionChallengeEnd), - "PLAYER_ACTION_CHALLENGE_WIN" => Some(Self::PlayerActionChallengeWin), - "PLAYER_ACTION_CHALLENGE_FAIL" => Some(Self::PlayerActionChallengeFail), - "PLAYER_ACTION_CHALLENGE_LEAVE" => Some(Self::PlayerActionChallengeLeave), - "PLAYER_ACTION_CHALLENGE_SWITCH" => Some(Self::PlayerActionChallengeSwitch), - "PLAYER_ACTION_CHALLENGE_BONUS_REWARD" => { + "PlayerActionType_PlayerActionTutorial" => Some(Self::PlayerActionTutorial), + "PlayerActionType_PlayerActionTutorialGuide" => { + Some(Self::PlayerActionTutorialGuide) + } + "PlayerActionType_PlayerActionMonsterDrop" => { + Some(Self::PlayerActionMonsterDrop) + } + "PlayerActionType_PlayerActionFinishChallenge" => { + Some(Self::PlayerActionFinishChallenge) + } + "PlayerActionType_PlayerActionChallengeStars" => { + Some(Self::PlayerActionChallengeStars) + } + "PlayerActionType_PlayerActionChallengeStart" => { + Some(Self::PlayerActionChallengeStart) + } + "PlayerActionType_PlayerActionChallengeEnd" => { + Some(Self::PlayerActionChallengeEnd) + } + "PlayerActionType_PlayerActionChallengeWin" => { + Some(Self::PlayerActionChallengeWin) + } + "PlayerActionType_PlayerActionChallengeFail" => { + Some(Self::PlayerActionChallengeFail) + } + "PlayerActionType_PlayerActionChallengeLeave" => { + Some(Self::PlayerActionChallengeLeave) + } + "PlayerActionType_PlayerActionChallengeSwitch" => { + Some(Self::PlayerActionChallengeSwitch) + } + "PlayerActionType_PlayerActionChallengeBonusReward" => { Some(Self::PlayerActionChallengeBonusReward) } - "PLAYER_ACTION_CHALLENGE_STARS_REWARD" => { + "PlayerActionType_PlayerActionChallengeStarsReward" => { Some(Self::PlayerActionChallengeStarsReward) } - "PLAYER_ACTION_CHALLENGE_RESTART" => Some(Self::PlayerActionChallengeRestart), - "PLAYER_ACTION_CHALLENGE_STORY_START" => { + "PlayerActionType_PlayerActionChallengeRestart" => { + Some(Self::PlayerActionChallengeRestart) + } + "PlayerActionType_PlayerActionChallengeStoryStart" => { Some(Self::PlayerActionChallengeStoryStart) } - "PLAYER_ACTION_CHALLENGE_STORY_END" => { + "PlayerActionType_PlayerActionChallengeStoryEnd" => { Some(Self::PlayerActionChallengeStoryEnd) } - "PLAYER_ACTION_CHALLENGE_FAST_PASS" => { + "PlayerActionType_PlayerActionChallengeFastPass" => { Some(Self::PlayerActionChallengeFastPass) } - "PLAYER_ACTION_CHALLENGE_STORY_FAST_PASS" => { + "PlayerActionType_PlayerActionChallengeStoryFastPass" => { Some(Self::PlayerActionChallengeStoryFastPass) } - "PLAYER_ACTION_CHALLENGE_MEMORY_FAST_PASS" => { + "PlayerActionType_PlayerActionChallengeMemoryFastPass" => { Some(Self::PlayerActionChallengeMemoryFastPass) } - "PLAYER_ACTION_CHALLENGE_BATTLE_TARGET" => { + "PlayerActionType_PlayerActionChallengeBattleTarget" => { Some(Self::PlayerActionChallengeBattleTarget) } - "PLAYER_ACTION_CHALLENGE_BOSS_END" => { + "PlayerActionType_PlayerActionChallengeBossEnd" => { Some(Self::PlayerActionChallengeBossEnd) } - "PLAYER_ACTION_CHALLENGE_BOSS_FAST_PASS" => { + "PlayerActionType_PlayerActionChallengeBossFastPass" => { Some(Self::PlayerActionChallengeBossFastPass) } - "PLAYER_ACTION_CHALLENGE_START_PARTIAL" => { + "PlayerActionType_PlayerActionChallengeStartPartial" => { Some(Self::PlayerActionChallengeStartPartial) } - "PLAYER_ACTION_CHALLENGE_BOSS_PHASE_START" => { + "PlayerActionType_PlayerActionChallengeBossPhaseStart" => { Some(Self::PlayerActionChallengeBossPhaseStart) } - "PLAYER_ACTION_CHALLENGE_BOSS_PHASE_END" => { + "PlayerActionType_PlayerActionChallengeBossPhaseEnd" => { Some(Self::PlayerActionChallengeBossPhaseEnd) } - "PLAYER_ACTION_CHALLENGE_BOSS_PHASE_END_BEFORE_BATTLE" => { + "PlayerActionType_PlayerActionChallengeBossPhaseEndBeforeBattle" => { Some(Self::PlayerActionChallengeBossPhaseEndBeforeBattle) } - "PLAYER_ACTION_CHALLENGE_RECOMMEND_LINEUP" => { + "PlayerActionType_PlayerActionChallengeRecommendLineup" => { Some(Self::PlayerActionChallengeRecommendLineup) } - "PLAYER_ACTION_CHALLENGE_STORY_FEVER_BATTLE_END" => { + "PlayerActionType_PlayerActionChallengeStoryFeverBattleEnd" => { Some(Self::PlayerActionChallengeStoryFeverBattleEnd) } - "PLAYER_ACTION_TEAM_INFO_CHANGE" => Some(Self::PlayerActionTeamInfoChange), - "PLAYER_ACTION_CHANGE_CURRENT_AVATAR" => { + "PlayerActionType_PlayerActionTeamInfoChange" => { + Some(Self::PlayerActionTeamInfoChange) + } + "PlayerActionType_PlayerActionChangeCurrentAvatar" => { Some(Self::PlayerActionChangeCurrentAvatar) } - "PLAYER_ACTION_CREATE_VIRTUAL_TEAM" => { + "PlayerActionType_PlayerActionCreateVirtualTeam" => { Some(Self::PlayerActionCreateVirtualTeam) } - "PLAYER_ACTION_TEAM_NAME_EDIT" => Some(Self::PlayerActionTeamNameEdit), - "PLAYER_ACTION_AVATAR_BUFF_CHANGE" => { + "PlayerActionType_PlayerActionTeamNameEdit" => { + Some(Self::PlayerActionTeamNameEdit) + } + "PlayerActionType_PlayerActionReplaceLineupAvatar" => { + Some(Self::PlayerActionReplaceLineupAvatar) + } + "PlayerActionType_PlayerActionAvatarBuffChange" => { Some(Self::PlayerActionAvatarBuffChange) } - "PLAYER_ACTION_ENV_BUFF_CHANGE" => Some(Self::PlayerActionEnvBuffChange), - "PLAYER_ACTION_GAME_CORE" => Some(Self::PlayerActionGameCore), - "PLAYER_ACTION_AVATAR_GLOBAL_BUFF" => { + "PlayerActionType_PlayerActionEnvBuffChange" => { + Some(Self::PlayerActionEnvBuffChange) + } + "PlayerActionType_PlayerActionGameCore" => Some(Self::PlayerActionGameCore), + "PlayerActionType_PlayerActionAvatarGlobalBuff" => { Some(Self::PlayerActionAvatarGlobalBuff) } - "PLAYER_ACTION_ROGUE_EXPLORE_START" => { + "PlayerActionType_PlayerActionRogueExploreStart" => { Some(Self::PlayerActionRogueExploreStart) } - "PLAYER_ACTION_ROGUE_ENTER_ROOM" => Some(Self::PlayerActionRogueEnterRoom), - "PLAYER_ACTION_ROGUE_LEAVE_ROOM" => Some(Self::PlayerActionRogueLeaveRoom), - "PLAYER_ACTION_ROGUE_EXPLORE_FINISH" => { + "PlayerActionType_PlayerActionRogueEnterRoom" => { + Some(Self::PlayerActionRogueEnterRoom) + } + "PlayerActionType_PlayerActionRogueLeaveRoom" => { + Some(Self::PlayerActionRogueLeaveRoom) + } + "PlayerActionType_PlayerActionRogueExploreFinish" => { Some(Self::PlayerActionRogueExploreFinish) } - "PLAYER_ACTION_ROGUE_SELECT_BUFF" => Some(Self::PlayerActionRogueSelectBuff), - "PLAYER_ACTION_ROGUE_ROLL_BUFF" => Some(Self::PlayerActionRogueRollBuff), - "PLAYER_ACTION_ROGUE_REVIVE" => Some(Self::PlayerActionRogueRevive), - "PLAYER_ACTION_ROGUE_CHALLENGE_START" => { + "PlayerActionType_PlayerActionRogueSelectBuff" => { + Some(Self::PlayerActionRogueSelectBuff) + } + "PlayerActionType_PlayerActionRogueRollBuff" => { + Some(Self::PlayerActionRogueRollBuff) + } + "PlayerActionType_PlayerActionRogueRevive" => { + Some(Self::PlayerActionRogueRevive) + } + "PlayerActionType_PlayerActionRogueChallengeStart" => { Some(Self::PlayerActionRogueChallengeStart) } - "PLAYER_ACTION_ROGUE_MIRACLE" => Some(Self::PlayerActionRogueMiracle), - "PLAYER_ACTION_ROGUE_ADD_BUFF" => Some(Self::PlayerActionRogueAddBuff), - "PLAYER_ACTION_ROGUE_PICK_AVATAR" => Some(Self::PlayerActionRoguePickAvatar), - "PLAYER_ACTION_ROGUE_SEASON_CHANGED" => { + "PlayerActionType_PlayerActionRogueMiracle" => { + Some(Self::PlayerActionRogueMiracle) + } + "PlayerActionType_PlayerActionRogueAddBuff" => { + Some(Self::PlayerActionRogueAddBuff) + } + "PlayerActionType_PlayerActionRoguePickAvatar" => { + Some(Self::PlayerActionRoguePickAvatar) + } + "PlayerActionType_PlayerActionRogueSeasonChanged" => { Some(Self::PlayerActionRogueSeasonChanged) } - "PLAYER_ACTION_ROGUE_AEON_LEVEL_UP" => { + "PlayerActionType_PlayerActionRogueAeonLevelUp" => { Some(Self::PlayerActionRogueAeonLevelUp) } - "PLAYER_ACTION_ROGUE_OPEN_DOOR" => Some(Self::PlayerActionRogueOpenDoor), - "PLAYER_ACTION_ROGUE_SCORE_REWARD" => { + "PlayerActionType_PlayerActionRogueOpenDoor" => { + Some(Self::PlayerActionRogueOpenDoor) + } + "PlayerActionType_PlayerActionRogueScoreReward" => { Some(Self::PlayerActionRogueScoreReward) } - "PLAYER_ACTION_ROGUE_ENHANCE_BUFF" => { + "PlayerActionType_PlayerActionRogueEnhanceBuff" => { Some(Self::PlayerActionRogueEnhanceBuff) } - "PLAYER_ACTION_ROGUE_SELECT_BONUS" => { + "PlayerActionType_PlayerActionRogueSelectBonus" => { Some(Self::PlayerActionRogueSelectBonus) } - "PLAYER_ACTION_ROGUE_AREA_FIRST_REWARD" => { + "PlayerActionType_PlayerActionRogueAreaFirstReward" => { Some(Self::PlayerActionRogueAreaFirstReward) } - "PLAYER_ACTION_ROGUE_ENABLE_TALENT" => { + "PlayerActionType_PlayerActionRogueEnableTalent" => { Some(Self::PlayerActionRogueEnableTalent) } - "PLAYER_ACTION_ROGUE_AEON_UNLOCK" => Some(Self::PlayerActionRogueAeonUnlock), - "PLAYER_ACTION_ROGUE_AEON_ADD_EXP" => Some(Self::PlayerActionRogueAeonAddExp), - "PLAYER_ACTION_ROGUE_IMMERSE_LEVEL_UP" => { + "PlayerActionType_PlayerActionRogueAeonUnlock" => { + Some(Self::PlayerActionRogueAeonUnlock) + } + "PlayerActionType_PlayerActionRogueAeonAddExp" => { + Some(Self::PlayerActionRogueAeonAddExp) + } + "PlayerActionType_PlayerActionRogueImmerseLevelUp" => { Some(Self::PlayerActionRogueImmerseLevelUp) } - "PLAYER_ACTION_ROGUE_SELECT_MIRACLE" => { + "PlayerActionType_PlayerActionRogueSelectMiracle" => { Some(Self::PlayerActionRogueSelectMiracle) } - "PLAYER_ACTION_ROGUE_UNLOCK_AREA" => Some(Self::PlayerActionRogueUnlockArea), - "PLAYER_ACTION_ROGUE_EXPLORE_SCORE_CHANGE" => { + "PlayerActionType_PlayerActionRogueUnlockArea" => { + Some(Self::PlayerActionRogueUnlockArea) + } + "PlayerActionType_PlayerActionRogueExploreScoreChange" => { Some(Self::PlayerActionRogueExploreScoreChange) } - "PLAYER_ACTION_ROGUE_UPDATE_REWARD_POOL" => { + "PlayerActionType_PlayerActionRogueUpdateRewardPool" => { Some(Self::PlayerActionRogueUpdateRewardPool) } - "PLAYER_ACTION_ROGUE_SWAP_BUFF" => Some(Self::PlayerActionRogueSwapBuff), - "PLAYER_ACTION_ROGUE_WEEKLY_REFRESH" => { + "PlayerActionType_PlayerActionRogueSwapBuff" => { + Some(Self::PlayerActionRogueSwapBuff) + } + "PlayerActionType_PlayerActionRogueWeeklyRefresh" => { Some(Self::PlayerActionRogueWeeklyRefresh) } - "PLAYER_ACTION_ROGUE_EXCHANGE_KEY" => { + "PlayerActionType_PlayerActionRogueExchangeKey" => { Some(Self::PlayerActionRogueExchangeKey) } - "PLAYER_ACTION_ROGUE_GET_OBJECT_REWARD" => { + "PlayerActionType_PlayerActionRogueGetObjectReward" => { Some(Self::PlayerActionRogueGetObjectReward) } - "PLAYER_ACTION_ROGUE_AREA_MONSTER_DROP" => { + "PlayerActionType_PlayerActionRogueAreaMonsterDrop" => { Some(Self::PlayerActionRogueAreaMonsterDrop) } - "PLAYER_ACTION_ROGUE_ADD_MIRACLE" => Some(Self::PlayerActionRogueAddMiracle), - "PLAYER_ACTION_ROGUE_SWAP_MIRACLE" => { + "PlayerActionType_PlayerActionRogueAddMiracle" => { + Some(Self::PlayerActionRogueAddMiracle) + } + "PlayerActionType_PlayerActionRogueSwapMiracle" => { Some(Self::PlayerActionRogueSwapMiracle) } - "PLAYER_ACTION_ROGUE_OPEN_OBJECT_REWARD" => { + "PlayerActionType_PlayerActionRogueOpenObjectReward" => { Some(Self::PlayerActionRogueOpenObjectReward) } - "PLAYER_ACTION_ROGUE_AEON_EFFECT" => Some(Self::PlayerActionRogueAeonEffect), - "PLAYER_ACTION_ROGUE_REFORGE_BUFF" => { + "PlayerActionType_PlayerActionRogueAeonEffect" => { + Some(Self::PlayerActionRogueAeonEffect) + } + "PlayerActionType_PlayerActionRogueReforgeBuff" => { Some(Self::PlayerActionRogueReforgeBuff) } - "PLAYER_ACTION_ROGUE_TRADE_MIRACLE" => { + "PlayerActionType_PlayerActionRogueTradeMiracle" => { Some(Self::PlayerActionRogueTradeMiracle) } - "PLAYER_ACTION_ROGUE_REMOVE_AVATAR" => { + "PlayerActionType_PlayerActionRogueRemoveAvatar" => { Some(Self::PlayerActionRogueRemoveAvatar) } - "PLAYER_ACTION_ROGUE_DIALOGUE_SELECT" => { + "PlayerActionType_PlayerActionRogueDialogueSelect" => { Some(Self::PlayerActionRogueDialogueSelect) } - "PLAYER_ACTION_ROGUE_SELECT_AEON" => Some(Self::PlayerActionRogueSelectAeon), - "PLAYER_ACTION_ROGUE_DIALOGUE_FINISH" => { + "PlayerActionType_PlayerActionRogueSelectAeon" => { + Some(Self::PlayerActionRogueSelectAeon) + } + "PlayerActionType_PlayerActionRogueDialogueFinish" => { Some(Self::PlayerActionRogueDialogueFinish) } - "PLAYER_ACTION_ROGUE_HANDBOOK_REWARD" => { + "PlayerActionType_PlayerActionRogueHandbookReward" => { Some(Self::PlayerActionRogueHandbookReward) } - "PLAYER_ACTION_ROGUE_ADVENTURE_ROOM_REWARD" => { + "PlayerActionType_PlayerActionRogueAdventureRoomReward" => { Some(Self::PlayerActionRogueAdventureRoomReward) } - "PLAYER_ACTION_ROGUE_SHOP_BUY" => Some(Self::PlayerActionRogueShopBuy), - "PLAYER_ACTION_ROGUE_REPAIR_MIRACLE" => { + "PlayerActionType_PlayerActionRogueShopBuy" => { + Some(Self::PlayerActionRogueShopBuy) + } + "PlayerActionType_PlayerActionRogueRepairMiracle" => { Some(Self::PlayerActionRogueRepairMiracle) } - "PLAYER_ACTION_ROGUE_REPLACE_ALL_MIRACLE" => { + "PlayerActionType_PlayerActionRogueReplaceAllMiracle" => { Some(Self::PlayerActionRogueReplaceAllMiracle) } - "PLAYER_ACTION_ROGUE_MIRACLE_BROKEN" => { + "PlayerActionType_PlayerActionRogueMiracleBroken" => { Some(Self::PlayerActionRogueMiracleBroken) } - "PLAYER_ACTION_ROGUE_SHOP_REFRESH" => { + "PlayerActionType_PlayerActionRogueShopRefresh" => { Some(Self::PlayerActionRogueShopRefresh) } - "PLAYER_ACTION_ROGUE_LEVEL_MECHANISM" => { + "PlayerActionType_PlayerActionRogueLevelMechanism" => { Some(Self::PlayerActionRogueLevelMechanism) } - "PLAYER_ACTION_ROGUE_REMOVE_MIRACLE" => { + "PlayerActionType_PlayerActionRogueRemoveMiracle" => { Some(Self::PlayerActionRogueRemoveMiracle) } - "PLAYER_ACTION_ROGUE_DROP_BUFF" => Some(Self::PlayerActionRogueDropBuff), - "PLAYER_ACTION_ROGUE_DESTROY_MIRACLE" => { + "PlayerActionType_PlayerActionRogueDropBuff" => { + Some(Self::PlayerActionRogueDropBuff) + } + "PlayerActionType_PlayerActionRogueDestroyMiracle" => { Some(Self::PlayerActionRogueDestroyMiracle) } - "PLAYER_ACTION_ROGUE_ACTIVATE_FORMULA" => { + "PlayerActionType_PlayerActionRogueActivateFormula" => { Some(Self::PlayerActionRogueActivateFormula) } - "PLAYER_ACTION_ROGUE_DEACTIVATE_FORMULA" => { + "PlayerActionType_PlayerActionRogueDeactivateFormula" => { Some(Self::PlayerActionRogueDeactivateFormula) } - "PLAYER_ACTION_ROGUE_REMOVE_BUFF" => Some(Self::PlayerActionRogueRemoveBuff), - "PLAYER_ACTION_ROGUE_SELECT_FORMULA" => { + "PlayerActionType_PlayerActionRogueRemoveBuff" => { + Some(Self::PlayerActionRogueRemoveBuff) + } + "PlayerActionType_PlayerActionRogueSelectFormula" => { Some(Self::PlayerActionRogueSelectFormula) } - "PLAYER_ACTION_ROGUE_DROP_FORMULA" => { + "PlayerActionType_PlayerActionRogueDropFormula" => { Some(Self::PlayerActionRogueDropFormula) } - "PLAYER_ACTION_ROGUE_ROLL_FORMULA" => { + "PlayerActionType_PlayerActionRogueRollFormula" => { Some(Self::PlayerActionRogueRollFormula) } - "PLAYER_ACTION_ROGUE_REFORGE_FORMULA" => { + "PlayerActionType_PlayerActionRogueReforgeFormula" => { Some(Self::PlayerActionRogueReforgeFormula) } - "PLAYER_ACTION_ROGUE_COMPOSE_MIRACLE" => { + "PlayerActionType_PlayerActionRogueComposeMiracle" => { Some(Self::PlayerActionRogueComposeMiracle) } - "PLAYER_ACTION_ROGUE_REFORGE_MIRACLE" => { + "PlayerActionType_PlayerActionRogueReforgeMiracle" => { Some(Self::PlayerActionRogueReforgeMiracle) } - "PLAYER_ACTION_ROGUE_DO_GAMBLE" => Some(Self::PlayerActionRogueDoGamble), - "PLAYER_ACTION_ROGUE_KEYWORD_ACTIVATE" => { + "PlayerActionType_PlayerActionRogueDoGamble" => { + Some(Self::PlayerActionRogueDoGamble) + } + "PlayerActionType_PlayerActionRogueKeywordActivate" => { Some(Self::PlayerActionRogueKeywordActivate) } - "PLAYER_ACTION_ROGUE_KEYWORD_DEACTIVATE" => { + "PlayerActionType_PlayerActionRogueKeywordDeactivate" => { Some(Self::PlayerActionRogueKeywordDeactivate) } - "PLAYER_ACTION_ROGUE_SOURCE_DEFAULT" => { + "PlayerActionType_PlayerActionRogueSourceDefault" => { Some(Self::PlayerActionRogueSourceDefault) } - "PLAYER_ACTION_ROGUE_PLAYER_SELECT" => { + "PlayerActionType_PlayerActionRoguePlayerSelect" => { Some(Self::PlayerActionRoguePlayerSelect) } - "PLAYER_ACTION_ROGUE_LAYER_SETTLEMENT" => { + "PlayerActionType_PlayerActionRogueLayerSettlement" => { Some(Self::PlayerActionRogueLayerSettlement) } - "PLAYER_ACTION_ROGUE_FORMULA" => Some(Self::PlayerActionRogueFormula), - "PLAYER_ACTION_ROGUE_WORKBENCH" => Some(Self::PlayerActionRogueWorkbench), - "PLAYER_ACTION_ROGUE_MODIFIER" => Some(Self::PlayerActionRogueModifier), - "PLAYER_ACTION_ROGUE_REFORGE" => Some(Self::PlayerActionRogueReforge), - "PLAYER_ACTION_ROGUE_TALENT" => Some(Self::PlayerActionRogueTalent), - "PLAYER_ACTION_ROGUE_REROLL" => Some(Self::PlayerActionRogueReroll), - "PLAYER_ACTION_ROGUE_COIN_CHANGE" => Some(Self::PlayerActionRogueCoinChange), - "PLAYER_ACTION_ROGUE_MAGIC_SCEPTER_SHOP" => { + "PlayerActionType_PlayerActionRogueFormula" => { + Some(Self::PlayerActionRogueFormula) + } + "PlayerActionType_PlayerActionRogueWorkbench" => { + Some(Self::PlayerActionRogueWorkbench) + } + "PlayerActionType_PlayerActionRogueModifier" => { + Some(Self::PlayerActionRogueModifier) + } + "PlayerActionType_PlayerActionRogueReforge" => { + Some(Self::PlayerActionRogueReforge) + } + "PlayerActionType_PlayerActionRogueTalent" => { + Some(Self::PlayerActionRogueTalent) + } + "PlayerActionType_PlayerActionRogueReroll" => { + Some(Self::PlayerActionRogueReroll) + } + "PlayerActionType_PlayerActionRogueCoinChange" => { + Some(Self::PlayerActionRogueCoinChange) + } + "PlayerActionType_PlayerActionRogueMagicScepterShop" => { Some(Self::PlayerActionRogueMagicScepterShop) } - "PLAYER_ACTION_ROGUE_MAGIC_UNIT_SHOP" => { + "PlayerActionType_PlayerActionRogueMagicUnitShop" => { Some(Self::PlayerActionRogueMagicUnitShop) } - "PLAYER_ACTION_ROGUE_MAGIC_SCEPTER_LEVEL_UP" => { + "PlayerActionType_PlayerActionRogueMagicScepterLevelUp" => { Some(Self::PlayerActionRogueMagicScepterLevelUp) } - "PLAYER_ACTION_GACHA" => Some(Self::PlayerActionGacha), - "PLAYER_ACTION_ADD_GACHA_TICKET" => Some(Self::PlayerActionAddGachaTicket), - "PLAYER_ACTION_GACHA_EXCHANGE" => Some(Self::PlayerActionGachaExchange), - "PLAYER_ACTION_SET_GACHA_DECIDE_ITEM" => { + "PlayerActionType_PlayerActionGacha" => Some(Self::PlayerActionGacha), + "PlayerActionType_PlayerActionAddGachaTicket" => { + Some(Self::PlayerActionAddGachaTicket) + } + "PlayerActionType_PlayerActionGachaExchange" => { + Some(Self::PlayerActionGachaExchange) + } + "PlayerActionType_PlayerActionSetGachaDecideItem" => { Some(Self::PlayerActionSetGachaDecideItem) } - "PLAYER_ACTION_EVENT_MISSION_ACCEPT" => { + "PlayerActionType_PlayerActionEventMissionAccept" => { Some(Self::PlayerActionEventMissionAccept) } - "PLAYER_ACTION_EVENT_MISSION_FINISH" => { + "PlayerActionType_PlayerActionEventMissionFinish" => { Some(Self::PlayerActionEventMissionFinish) } - "PLAYER_ACTION_EVENT_MISSION_REWARD" => { + "PlayerActionType_PlayerActionEventMissionReward" => { Some(Self::PlayerActionEventMissionReward) } - "PLAYER_ACTION_RAID_FINISH" => Some(Self::PlayerActionRaidFinish), - "PLAYER_ACTION_RAID_BEGIN" => Some(Self::PlayerActionRaidBegin), - "PLAYER_ACTION_CHALLENGE_RAID_REWARD" => { + "PlayerActionType_PlayerActionRaidFinish" => { + Some(Self::PlayerActionRaidFinish) + } + "PlayerActionType_PlayerActionRaidBegin" => Some(Self::PlayerActionRaidBegin), + "PlayerActionType_PlayerActionChallengeRaidReward" => { Some(Self::PlayerActionChallengeRaidReward) } - "PLAYER_ACTION_START_RAID" => Some(Self::PlayerActionStartRaid), - "PLAYER_ACTION_END_RAID" => Some(Self::PlayerActionEndRaid), - "PLAYER_ACTION_RAID_TARGET_FINISH" => { + "PlayerActionType_PlayerActionStartRaid" => Some(Self::PlayerActionStartRaid), + "PlayerActionType_PlayerActionEndRaid" => Some(Self::PlayerActionEndRaid), + "PlayerActionType_PlayerActionRaidTargetFinish" => { Some(Self::PlayerActionRaidTargetFinish) } - "PLAYER_ACTION_ARCHIVE_RAID" => Some(Self::PlayerActionArchiveRaid), - "PLAYER_ACTION_HERO_BASE_TYPE_CHANGE" => { + "PlayerActionType_PlayerActionArchiveRaid" => { + Some(Self::PlayerActionArchiveRaid) + } + "PlayerActionType_PlayerActionHeroBaseTypeChange" => { Some(Self::PlayerActionHeroBaseTypeChange) } - "PLAYER_ACTION_HERO_BASE_TYPE_ADD_BY_MISSION" => { + "PlayerActionType_PlayerActionHeroBaseTypeAddByMission" => { Some(Self::PlayerActionHeroBaseTypeAddByMission) } - "PLAYER_ACTION_HERO_BASE_TYPE_ADD_BY_REQ" => { + "PlayerActionType_PlayerActionHeroBaseTypeAddByReq" => { Some(Self::PlayerActionHeroBaseTypeAddByReq) } - "PLAYER_ACTION_HERO_BASE_TYPE_ADD" => Some(Self::PlayerActionHeroBaseTypeAdd), - "PLAYER_ACTION_DIALOGUE_SELECT" => Some(Self::PlayerActionDialogueSelect), - "PLAYER_ACTION_EXPEDITION_START" => Some(Self::PlayerActionExpeditionStart), - "PLAYER_ACTION_EXPEDITION_FINISH" => Some(Self::PlayerActionExpeditionFinish), - "PLAYER_ACTION_EXPEDITION_REWARD" => Some(Self::PlayerActionExpeditionReward), - "PLAYER_ACTION_ACTIVITY_EXPEDITION_START" => { + "PlayerActionType_PlayerActionHeroBaseTypeAdd" => { + Some(Self::PlayerActionHeroBaseTypeAdd) + } + "PlayerActionType_PlayerActionDialogueSelect" => { + Some(Self::PlayerActionDialogueSelect) + } + "PlayerActionType_PlayerActionExpeditionStart" => { + Some(Self::PlayerActionExpeditionStart) + } + "PlayerActionType_PlayerActionExpeditionFinish" => { + Some(Self::PlayerActionExpeditionFinish) + } + "PlayerActionType_PlayerActionExpeditionReward" => { + Some(Self::PlayerActionExpeditionReward) + } + "PlayerActionType_PlayerActionActivityExpeditionStart" => { Some(Self::PlayerActionActivityExpeditionStart) } - "PLAYER_ACTION_ACTIVITY_EXPEDITION_FINISH" => { + "PlayerActionType_PlayerActionActivityExpeditionFinish" => { Some(Self::PlayerActionActivityExpeditionFinish) } - "PLAYER_ACTION_ACTIVITY_EXPEDITION_REWARD" => { + "PlayerActionType_PlayerActionActivityExpeditionReward" => { Some(Self::PlayerActionActivityExpeditionReward) } - "PLAYER_ACTION_ACTIVITY_EXPEDITION_BEGIN" => { + "PlayerActionType_PlayerActionActivityExpeditionBegin" => { Some(Self::PlayerActionActivityExpeditionBegin) } - "PLAYER_ACTION_ACTIVITY_EXPEDITION_END" => { + "PlayerActionType_PlayerActionActivityExpeditionEnd" => { Some(Self::PlayerActionActivityExpeditionEnd) } - "PLAYER_ACTION_ACTIVITY_LOGIN_REWARD" => { + "PlayerActionType_PlayerActionActivityLoginReward" => { Some(Self::PlayerActionActivityLoginReward) } - "PLAYER_ACTION_FRIEND_REPORT" => Some(Self::PlayerActionFriendReport), - "PLAYER_ACTION_ASSIST_REWARD" => Some(Self::PlayerActionAssistReward), - "PLAYER_ACTION_ASSIST_AVATAR_REFRESH" => { + "PlayerActionType_PlayerActionFriendReport" => { + Some(Self::PlayerActionFriendReport) + } + "PlayerActionType_PlayerActionAssistReward" => { + Some(Self::PlayerActionAssistReward) + } + "PlayerActionType_PlayerActionAssistAvatarRefresh" => { Some(Self::PlayerActionAssistAvatarRefresh) } - "PLAYER_ACTION_ASSIST_AVATAR_BATTLE_START" => { + "PlayerActionType_PlayerActionAssistAvatarBattleStart" => { Some(Self::PlayerActionAssistAvatarBattleStart) } - "PLAYER_ACTION_ASSIST_AVATAR_BATTLE_END" => { + "PlayerActionType_PlayerActionAssistAvatarBattleEnd" => { Some(Self::PlayerActionAssistAvatarBattleEnd) } - "PLAYER_ACTION_FRIEND_APPLY" => Some(Self::PlayerActionFriendApply), - "PLAYER_ACTION_FRIEND_MANAGE" => Some(Self::PlayerActionFriendManage), - "PLAYER_ACTION_FRIEND_BLACKLIST" => Some(Self::PlayerActionFriendBlacklist), - "PLAYER_ACTION_FRIEND_MODIFY_REMARK_NAME" => { + "PlayerActionType_PlayerActionFriendApply" => { + Some(Self::PlayerActionFriendApply) + } + "PlayerActionType_PlayerActionFriendManage" => { + Some(Self::PlayerActionFriendManage) + } + "PlayerActionType_PlayerActionFriendBlacklist" => { + Some(Self::PlayerActionFriendBlacklist) + } + "PlayerActionType_PlayerActionFriendModifyRemarkName" => { Some(Self::PlayerActionFriendModifyRemarkName) } - "PLAYER_ACTION_FRIEND_MARK" => Some(Self::PlayerActionFriendMark), - "PLAYER_ACTION_FRIEND_ASSIST_LIST" => { + "PlayerActionType_PlayerActionFriendMark" => { + Some(Self::PlayerActionFriendMark) + } + "PlayerActionType_PlayerActionFriendAssistList" => { Some(Self::PlayerActionFriendAssistList) } - "PLAYER_ACTION_BATTLE_PASS_LEVEL_REWARD" => { + "PlayerActionType_PlayerActionBattlePassLevelReward" => { Some(Self::PlayerActionBattlePassLevelReward) } - "PLAYER_ACTION_BATTLE_PASS_128TIER_REWARD" => { - Some(Self::PlayerActionBattlePass128tierReward) + "PlayerActionType_PlayerActionBattlePass128TierReward" => { + Some(Self::PlayerActionBattlePass128TierReward) } - "PLAYER_ACTION_BATTLE_PASS_LEVEL_REWARD_AUTO_MAIL" => { + "PlayerActionType_PlayerActionBattlePassLevelRewardAutoMail" => { Some(Self::PlayerActionBattlePassLevelRewardAutoMail) } - "PLAYER_ACTION_BUY_BATTLE_PASS" => Some(Self::PlayerActionBuyBattlePass), - "PLAYER_ACTION_ADD_BATTLE_PASS_EXP" => { + "PlayerActionType_PlayerActionBuyBattlePass" => { + Some(Self::PlayerActionBuyBattlePass) + } + "PlayerActionType_PlayerActionAddBattlePassExp" => { Some(Self::PlayerActionAddBattlePassExp) } - "PLAYER_ACTION_BATTLE_PASS_LEVEL_UP" => { + "PlayerActionType_PlayerActionBattlePassLevelUp" => { Some(Self::PlayerActionBattlePassLevelUp) } - "PLAYER_ACTION_BUY_BATTLE_PASS_LEVEL" => { + "PlayerActionType_PlayerActionBuyBattlePassLevel" => { Some(Self::PlayerActionBuyBattlePassLevel) } - "PLAYER_ACTION_BATTLE_PASS_END_MAIL" => { + "PlayerActionType_PlayerActionBattlePassEndMail" => { Some(Self::PlayerActionBattlePassEndMail) } - "PLAYER_ACTION_BATTLE_PASS_68TIER_REWARD" => { - Some(Self::PlayerActionBattlePass68tierReward) + "PlayerActionType_PlayerActionBattlePass68TierReward" => { + Some(Self::PlayerActionBattlePass68TierReward) } - "PLAYER_ACTION_MODIFY_SIGN" => Some(Self::PlayerActionModifySign), - "PLAYER_ACTION_DISPLAY_AVATAR_SET" => { + "PlayerActionType_PlayerActionModifySign" => { + Some(Self::PlayerActionModifySign) + } + "PlayerActionType_PlayerActionDisplayAvatarSet" => { Some(Self::PlayerActionDisplayAvatarSet) } - "PLAYER_ACTION_ASSIST_AVATAR_SET" => Some(Self::PlayerActionAssistAvatarSet), - "PLAYER_ACTION_ACHIEVEMENT_FINISH" => { + "PlayerActionType_PlayerActionAssistAvatarSet" => { + Some(Self::PlayerActionAssistAvatarSet) + } + "PlayerActionType_PlayerActionAchievementFinish" => { Some(Self::PlayerActionAchievementFinish) } - "PLAYER_ACTION_ACHIEVEMENT_REWARD" => { + "PlayerActionType_PlayerActionAchievementReward" => { Some(Self::PlayerActionAchievementReward) } - "PLAYER_ACTION_ACHIEVEMENT_ADD_EXP" => { + "PlayerActionType_PlayerActionAchievementAddExp" => { Some(Self::PlayerActionAchievementAddExp) } - "PLAYER_ACTION_ACHIEVEMENT_LEVEL_UP" => { + "PlayerActionType_PlayerActionAchievementLevelUp" => { Some(Self::PlayerActionAchievementLevelUp) } - "PLAYER_ACTION_PUNK_LORD_REWARD" => Some(Self::PlayerActionPunkLordReward), - "PLAYER_ACTION_PUNK_LORD_BOSS_SEARCH" => { + "PlayerActionType_PlayerActionPunkLordReward" => { + Some(Self::PlayerActionPunkLordReward) + } + "PlayerActionType_PlayerActionPunkLordBossSearch" => { Some(Self::PlayerActionPunkLordBossSearch) } - "PLAYER_ACTION_PUNK_LORD_BOSS_SHARE" => { + "PlayerActionType_PlayerActionPunkLordBossShare" => { Some(Self::PlayerActionPunkLordBossShare) } - "PLAYER_ACTION_START_PUNK_LORD_RAID" => { + "PlayerActionType_PlayerActionStartPunkLordRaid" => { Some(Self::PlayerActionStartPunkLordRaid) } - "PLAYER_ACTION_PUNK_LORD_SUPPORT_TIMES" => { + "PlayerActionType_PlayerActionPunkLordSupportTimes" => { Some(Self::PlayerActionPunkLordSupportTimes) } - "PLAYER_ACTION_PUNK_LORD_SCORE_REWARD" => { + "PlayerActionType_PlayerActionPunkLordScoreReward" => { Some(Self::PlayerActionPunkLordScoreReward) } - "PLAYER_ACTION_PUNK_LORD_LIST_REFRESH" => { + "PlayerActionType_PlayerActionPunkLordListRefresh" => { Some(Self::PlayerActionPunkLordListRefresh) } - "PLAYER_ACTION_PUNK_LORD_POWER_ATTACK" => { + "PlayerActionType_PlayerActionPunkLordPowerAttack" => { Some(Self::PlayerActionPunkLordPowerAttack) } - "PLAYER_ACTION_PUNK_LORD_BATTLE_END" => { + "PlayerActionType_PlayerActionPunkLordBattleEnd" => { Some(Self::PlayerActionPunkLordBattleEnd) } - "PLAYER_ACTION_PUNK_LORD_BOSS_DEATH" => { + "PlayerActionType_PlayerActionPunkLordBossDeath" => { Some(Self::PlayerActionPunkLordBossDeath) } - "PLAYER_ACTION_PUNK_LORD_BOSS_SCORE" => { + "PlayerActionType_PlayerActionPunkLordBossScore" => { Some(Self::PlayerActionPunkLordBossScore) } - "PLAYER_ACTION_DAILY_ACTIVE_LEVEL_REWARD" => { + "PlayerActionType_PlayerActionDailyActiveLevelReward" => { Some(Self::PlayerActionDailyActiveLevelReward) } - "PLAYER_ACTION_DAILY_ACTIVE_ADD_POINT" => { + "PlayerActionType_PlayerActionDailyActiveAddPoint" => { Some(Self::PlayerActionDailyActiveAddPoint) } - "PLAYER_ACTION_DAILY_ACTIVE_DELETE_OLD_QUEST" => { + "PlayerActionType_PlayerActionDailyActiveDeleteOldQuest" => { Some(Self::PlayerActionDailyActiveDeleteOldQuest) } - "PLAYER_ACTION_FIGHT_ACTIVITY_BEGIN" => { + "PlayerActionType_PlayerActionFightActivityBegin" => { Some(Self::PlayerActionFightActivityBegin) } - "PLAYER_ACTION_FIGHT_ACTIVITY_END" => { + "PlayerActionType_PlayerActionFightActivityEnd" => { Some(Self::PlayerActionFightActivityEnd) } - "PLAYER_ACTION_FIGHT_ACTIVITY_REWARD" => { + "PlayerActionType_PlayerActionFightActivityReward" => { Some(Self::PlayerActionFightActivityReward) } - "PLAYER_ACTION_ACTIVITY_END_MAIL" => Some(Self::PlayerActionActivityEndMail), - "PLAYER_ACTION_APPOINTMENT_MAIL" => Some(Self::PlayerActionAppointmentMail), - "PLAYER_ACTION_SHARE_REWARD" => Some(Self::PlayerActionShareReward), - "PLAYER_ACTION_ACTIVITY_TRIAL_REWARD" => { + "PlayerActionType_PlayerActionActivityEndMail" => { + Some(Self::PlayerActionActivityEndMail) + } + "PlayerActionType_PlayerActionAppointmentMail" => { + Some(Self::PlayerActionAppointmentMail) + } + "PlayerActionType_PlayerActionShareReward" => { + Some(Self::PlayerActionShareReward) + } + "PlayerActionType_PlayerActionActivityTrialReward" => { Some(Self::PlayerActionActivityTrialReward) } - "PLAYER_ACTION_ACTIVITY_TRIAL_START" => { + "PlayerActionType_PlayerActionActivityTrialStart" => { Some(Self::PlayerActionActivityTrialStart) } - "PLAYER_ACTION_PS_PRE_ORDER_MAIL1" => Some(Self::PlayerActionPsPreOrderMail1), - "PLAYER_ACTION_PS_PRE_ORDER_MAIL2" => Some(Self::PlayerActionPsPreOrderMail2), - "PLAYER_ACTION_PS_LOGIN_MAIL" => Some(Self::PlayerActionPsLoginMail), - "PLAYER_ACTION_LOGIN_MAIL" => Some(Self::PlayerActionLoginMail), - "PLAYER_ACTION_GOOGLE_POINTS_100_MAIL" => { + "PlayerActionType_PlayerActionPsPreOrderMail1" => { + Some(Self::PlayerActionPsPreOrderMail1) + } + "PlayerActionType_PlayerActionPsPreOrderMail2" => { + Some(Self::PlayerActionPsPreOrderMail2) + } + "PlayerActionType_PlayerActionPsLoginMail" => { + Some(Self::PlayerActionPsLoginMail) + } + "PlayerActionType_PlayerActionLoginMail" => Some(Self::PlayerActionLoginMail), + "PlayerActionType_PlayerActionGooglePoints100Mail" => { Some(Self::PlayerActionGooglePoints100Mail) } - "PLAYER_ACTION_GOOGLE_POINTS_150_MAIL" => { + "PlayerActionType_PlayerActionGooglePoints150Mail" => { Some(Self::PlayerActionGooglePoints150Mail) } - "PLAYER_ACTION_TRAIN_VISITOR_BEHAVIOR_FINISH" => { + "PlayerActionType_PlayerActionTrainVisitorBehaviorFinish" => { Some(Self::PlayerActionTrainVisitorBehaviorFinish) } - "PLAYER_ACTION_ENTER_VIEW_TRAIN" => Some(Self::PlayerActionEnterViewTrain), - "PLAYER_ACTION_TRAIN_VISITOR_BEHAVIOR_REWARD_FORCE_SEND" => { + "PlayerActionType_PlayerActionEnterViewTrain" => { + Some(Self::PlayerActionEnterViewTrain) + } + "PlayerActionType_PlayerActionTrainVisitorBehaviorRewardForceSend" => { Some(Self::PlayerActionTrainVisitorBehaviorRewardForceSend) } - "PLAYER_ACTION_TRAIN_VISITOR_REGISTER_OPEN" => { + "PlayerActionType_PlayerActionTrainVisitorRegisterOpen" => { Some(Self::PlayerActionTrainVisitorRegisterOpen) } - "PLAYER_ACTION_TRAIN_VISITOR_BEHAVIOR_REWARD_FORCE_SEND_BY_REGISTER" => { + "PlayerActionType_PlayerActionTrainVisitorBehaviorRewardForceSendByRegister" => { Some(Self::PlayerActionTrainVisitorBehaviorRewardForceSendByRegister) } - "PLAYER_ACTION_TRAIN_VISITOR_CLEAR_LAST_TRAIN_VISITOR" => { + "PlayerActionType_PlayerActionTrainVisitorClearLastTrainVisitor" => { Some(Self::PlayerActionTrainVisitorClearLastTrainVisitor) } - "PLAYER_ACTION_TRAIN_VISITOR_REFRESH_TRAIN_VISITOR" => { + "PlayerActionType_PlayerActionTrainVisitorRefreshTrainVisitor" => { Some(Self::PlayerActionTrainVisitorRefreshTrainVisitor) } - "PLAYER_ACTION_TRAIN_VISITOR_REFRESH_NPC" => { + "PlayerActionType_PlayerActionTrainVisitorRefreshNpc" => { Some(Self::PlayerActionTrainVisitorRefreshNpc) } - "PLAYER_ACTION_MESSAGE_GROUP_ACCEPT" => { + "PlayerActionType_PlayerActionMessageGroupAccept" => { Some(Self::PlayerActionMessageGroupAccept) } - "PLAYER_ACTION_MESSAGE_SECTION_ACCEPT" => { + "PlayerActionType_PlayerActionMessageSectionAccept" => { Some(Self::PlayerActionMessageSectionAccept) } - "PLAYER_ACTION_MESSAGE_SECTION_FINISH" => { + "PlayerActionType_PlayerActionMessageSectionFinish" => { Some(Self::PlayerActionMessageSectionFinish) } - "PLAYER_ACTION_MESSAGE_ITEM_FINISH" => { + "PlayerActionType_PlayerActionMessageItemFinish" => { Some(Self::PlayerActionMessageItemFinish) } - "PLAYER_ACTION_FINISH_MESSAGE_GROUP_REWARD" => { + "PlayerActionType_PlayerActionFinishMessageGroupReward" => { Some(Self::PlayerActionFinishMessageGroupReward) } - "PLAYER_ACTION_SUBSTITUTE_MESSAGE_GROUP_REWARD" => { + "PlayerActionType_PlayerActionSubstituteMessageGroupReward" => { Some(Self::PlayerActionSubstituteMessageGroupReward) } - "PLAYER_ACTION_DELETE_MESSAGE_GROUP" => { + "PlayerActionType_PlayerActionDeleteMessageGroup" => { Some(Self::PlayerActionDeleteMessageGroup) } - "PLAYER_ACTION_DELETE_MESSAGE_SECTION" => { + "PlayerActionType_PlayerActionDeleteMessageSection" => { Some(Self::PlayerActionDeleteMessageSection) } - "PLAYER_ACTION_DELETE_MESSAGE_GROUP_BY_CONFIG" => { + "PlayerActionType_PlayerActionDeleteMessageGroupByConfig" => { Some(Self::PlayerActionDeleteMessageGroupByConfig) } - "PLAYER_ACTION_DELETE_MESSAGE_GROUP_BY_ACTIVITY" => { + "PlayerActionType_PlayerActionDeleteMessageGroupByActivity" => { Some(Self::PlayerActionDeleteMessageGroupByActivity) } - "PLAYER_ACTION_DELETE_MESSAGE_GROUP_BY_MISSION" => { + "PlayerActionType_PlayerActionDeleteMessageGroupByMission" => { Some(Self::PlayerActionDeleteMessageGroupByMission) } - "PLAYER_ACTION_TEXT_JOIN_SAVE" => Some(Self::PlayerActionTextJoinSave), - "PLAYER_ACTION_BOXING_CLUB_START" => Some(Self::PlayerActionBoxingClubStart), - "PLAYER_ACTION_BOXING_CLUB_FINISH" => { + "PlayerActionType_PlayerActionTextJoinSave" => { + Some(Self::PlayerActionTextJoinSave) + } + "PlayerActionType_PlayerActionBoxingClubStart" => { + Some(Self::PlayerActionBoxingClubStart) + } + "PlayerActionType_PlayerActionBoxingClubFinish" => { Some(Self::PlayerActionBoxingClubFinish) } - "PLAYER_ACTION_BOXING_CLUB_PAUSE" => Some(Self::PlayerActionBoxingClubPause), - "PLAYER_ACTION_BOXING_CLUB_STAGE_START" => { + "PlayerActionType_PlayerActionBoxingClubPause" => { + Some(Self::PlayerActionBoxingClubPause) + } + "PlayerActionType_PlayerActionBoxingClubStageStart" => { Some(Self::PlayerActionBoxingClubStageStart) } - "PLAYER_ACTION_TALK_SEND" => Some(Self::PlayerActionTalkSend), - "PLAYER_ACTION_SELECT_INCLINATION_TEXT" => { + "PlayerActionType_PlayerActionTalkSend" => Some(Self::PlayerActionTalkSend), + "PlayerActionType_PlayerActionSelectInclinationText" => { Some(Self::PlayerActionSelectInclinationText) } - "PLAYER_ACTION_MUSEUM_SETTLE_TURN_OPEN" => { + "PlayerActionType_PlayerActionMuseumSettleTurnOpen" => { Some(Self::PlayerActionMuseumSettleTurnOpen) } - "PLAYER_ACTION_MUSEUM_UPGRADE_AREA" => { + "PlayerActionType_PlayerActionMuseumUpgradeArea" => { Some(Self::PlayerActionMuseumUpgradeArea) } - "PLAYER_ACTION_MUSEUM_UPGRADE_AREA_STAT" => { + "PlayerActionType_PlayerActionMuseumUpgradeAreaStat" => { Some(Self::PlayerActionMuseumUpgradeAreaStat) } - "PLAYER_ACTION_MUSEUM_DISPATCH_REWARD_REGULAR" => { + "PlayerActionType_PlayerActionMuseumDispatchRewardRegular" => { Some(Self::PlayerActionMuseumDispatchRewardRegular) } - "PLAYER_ACTION_MUSEUM_DISPATCH_REWARD_DIRECTIONAL" => { + "PlayerActionType_PlayerActionMuseumDispatchRewardDirectional" => { Some(Self::PlayerActionMuseumDispatchRewardDirectional) } - "PLAYER_ACTION_MUSEUM_PHASE_TARGET_FINISHED" => { + "PlayerActionType_PlayerActionMuseumPhaseTargetFinished" => { Some(Self::PlayerActionMuseumPhaseTargetFinished) } - "PLAYER_ACTION_MUSEUM_GET_STUFF" => Some(Self::PlayerActionMuseumGetStuff), - "PLAYER_ACTION_MUSEUM_GET_EXHIBIT" => { + "PlayerActionType_PlayerActionMuseumGetStuff" => { + Some(Self::PlayerActionMuseumGetStuff) + } + "PlayerActionType_PlayerActionMuseumGetExhibit" => { Some(Self::PlayerActionMuseumGetExhibit) } - "PLAYER_ACTION_MUSEUM_TAKE_COLLECT_MISSION" => { + "PlayerActionType_PlayerActionMuseumTakeCollectMission" => { Some(Self::PlayerActionMuseumTakeCollectMission) } - "PLAYER_ACTION_MUSEUM_AREA_UNLOCK" => { + "PlayerActionType_PlayerActionMuseumAreaUnlock" => { Some(Self::PlayerActionMuseumAreaUnlock) } - "PLAYER_ACTION_MUSEUM_AREA_UPGRADE" => { + "PlayerActionType_PlayerActionMuseumAreaUpgrade" => { Some(Self::PlayerActionMuseumAreaUpgrade) } - "PLAYER_ACTION_MUSEUM_AREA_STAT_UPGRADE" => { + "PlayerActionType_PlayerActionMuseumAreaStatUpgrade" => { Some(Self::PlayerActionMuseumAreaStatUpgrade) } - "PLAYER_ACTION_MUSEUM_ENTER_NEXT_ROUND" => { + "PlayerActionType_PlayerActionMuseumEnterNextRound" => { Some(Self::PlayerActionMuseumEnterNextRound) } - "PLAYER_ACTION_MUSEUM_START_DISPATCH" => { + "PlayerActionType_PlayerActionMuseumStartDispatch" => { Some(Self::PlayerActionMuseumStartDispatch) } - "PLAYER_ACTION_MUSEUM_SETTLE_DISPATCH" => { + "PlayerActionType_PlayerActionMuseumSettleDispatch" => { Some(Self::PlayerActionMuseumSettleDispatch) } - "PLAYER_ACTION_MUSEUM_RENEW_POINT_CHANGED" => { + "PlayerActionType_PlayerActionMuseumRenewPointChanged" => { Some(Self::PlayerActionMuseumRenewPointChanged) } - "PLAYER_ACTION_MUSEUM_TARGET_REWARD" => { + "PlayerActionType_PlayerActionMuseumTargetReward" => { Some(Self::PlayerActionMuseumTargetReward) } - "PLAYER_ACTION_MUSEUM_PHASE_UPGRADE" => { + "PlayerActionType_PlayerActionMuseumPhaseUpgrade" => { Some(Self::PlayerActionMuseumPhaseUpgrade) } - "PLAYER_ACTION_MUSEUM_COLLECT_REWARD" => { + "PlayerActionType_PlayerActionMuseumCollectReward" => { Some(Self::PlayerActionMuseumCollectReward) } - "PLAYER_ACTION_MUSEUM_TARGET_START" => { + "PlayerActionType_PlayerActionMuseumTargetStart" => { Some(Self::PlayerActionMuseumTargetStart) } - "PLAYER_ACTION_MUSEUM_TARGET_FINISH" => { + "PlayerActionType_PlayerActionMuseumTargetFinish" => { Some(Self::PlayerActionMuseumTargetFinish) } - "PLAYER_ACTION_ACTIVITY_MONSTER_RESEARCH_CONSUME_MATERIAL" => { + "PlayerActionType_PlayerActionActivityMonsterResearchConsumeMaterial" => { Some(Self::PlayerActionActivityMonsterResearchConsumeMaterial) } - "PLAYER_ACTION_ACTIVITY_MONSTER_RESEARCH_TAKE_REWARD" => { + "PlayerActionType_PlayerActionActivityMonsterResearchTakeReward" => { Some(Self::PlayerActionActivityMonsterResearchTakeReward) } - "PLAYER_ACTION_PLAYER_RETURN_START" => { + "PlayerActionType_PlayerActionPlayerReturnStart" => { Some(Self::PlayerActionPlayerReturnStart) } - "PLAYER_ACTION_PLAYER_RETURN_SIGN" => { + "PlayerActionType_PlayerActionPlayerReturnSign" => { Some(Self::PlayerActionPlayerReturnSign) } - "PLAYER_ACTION_PLAYER_RETURN_POINT" => { + "PlayerActionType_PlayerActionPlayerReturnPoint" => { Some(Self::PlayerActionPlayerReturnPoint) } - "PLAYER_ACTION_PLAYER_RETURN_COUNTDOWN" => { + "PlayerActionType_PlayerActionPlayerReturnCountdown" => { Some(Self::PlayerActionPlayerReturnCountdown) } - "PLAYER_ACTION_PLAYER_RETURN_FINISH" => { + "PlayerActionType_PlayerActionPlayerReturnFinish" => { Some(Self::PlayerActionPlayerReturnFinish) } - "PLAYER_ACTION_PLAYER_RETURN_COMPENSATE" => { + "PlayerActionType_PlayerActionPlayerReturnCompensate" => { Some(Self::PlayerActionPlayerReturnCompensate) } - "PLAYER_ACTION_PLAYER_RETURN_GET_RELIC" => { + "PlayerActionType_PlayerActionPlayerReturnGetRelic" => { Some(Self::PlayerActionPlayerReturnGetRelic) } - "PLAYER_ACTION_PLAYER_RETURN_BP_EXP_EXTRA" => { + "PlayerActionType_PlayerActionPlayerReturnBpExpExtra" => { Some(Self::PlayerActionPlayerReturnBpExpExtra) } - "PLAYER_ACTION_PLAYER_RETURN_HCOIN_EXTRA" => { + "PlayerActionType_PlayerActionPlayerReturnHcoinExtra" => { Some(Self::PlayerActionPlayerReturnHcoinExtra) } - "PLAYER_ACTION_ROGUE_CHALLENGE_ACTIVITY_START" => { + "PlayerActionType_PlayerActionRogueChallengeActivityStart" => { Some(Self::PlayerActionRogueChallengeActivityStart) } - "PLAYER_ACTION_ROGUE_CHALLENGE_ACTIVITY_FINISH" => { + "PlayerActionType_PlayerActionRogueChallengeActivityFinish" => { Some(Self::PlayerActionRogueChallengeActivityFinish) } - "PLAYER_ACTION_ROGUE_CHALLENGE_ACTIVITY_SAVE" => { + "PlayerActionType_PlayerActionRogueChallengeActivitySave" => { Some(Self::PlayerActionRogueChallengeActivitySave) } - "PLAYER_ACTION_AETHER_DIVIDE_USE_PASSIVE_SKILL_ITEM" => { + "PlayerActionType_PlayerActionAetherDivideUsePassiveSkillItem" => { Some(Self::PlayerActionAetherDivideUsePassiveSkillItem) } - "PLAYER_ACTION_AETHER_DIVIDE_CLEAR_PASSIVE_SKILL" => { + "PlayerActionType_PlayerActionAetherDivideClearPassiveSkill" => { Some(Self::PlayerActionAetherDivideClearPassiveSkill) } - "PLAYER_ACTION_AETHER_DIVIDE_FINISH_CHALLENGE" => { + "PlayerActionType_PlayerActionAetherDivideFinishChallenge" => { Some(Self::PlayerActionAetherDivideFinishChallenge) } - "PLAYER_ACTION_AETHER_DIVIDE_OVERFLOW_CHUNK_REWARD" => { + "PlayerActionType_PlayerActionAetherDivideOverflowChunkReward" => { Some(Self::PlayerActionAetherDivideOverflowChunkReward) } - "PLAYER_ACTION_AETHER_DIVIDE_LEVEL_UP" => { + "PlayerActionType_PlayerActionAetherDivideLevelUp" => { Some(Self::PlayerActionAetherDivideLevelUp) } - "PLAYER_ACTION_AETHER_DIVIDE_NEW_REWARD" => { + "PlayerActionType_PlayerActionAetherDivideNewReward" => { Some(Self::PlayerActionAetherDivideNewReward) } - "PLAYER_ACTION_AETHER_DIVIDE_MONSTER_ADD" => { + "PlayerActionType_PlayerActionAetherDivideMonsterAdd" => { Some(Self::PlayerActionAetherDivideMonsterAdd) } - "PLAYER_ACTION_AETHER_DIVIDE_MONSTER_LEVEL" => { + "PlayerActionType_PlayerActionAetherDivideMonsterLevel" => { Some(Self::PlayerActionAetherDivideMonsterLevel) } - "PLAYER_ACTION_AETHER_DIVIDE_MONSTER_SKILL_WEAR" => { + "PlayerActionType_PlayerActionAetherDivideMonsterSkillWear" => { Some(Self::PlayerActionAetherDivideMonsterSkillWear) } - "PLAYER_ACTION_AETHER_DIVIDE_TEAM_CHANGE" => { + "PlayerActionType_PlayerActionAetherDivideTeamChange" => { Some(Self::PlayerActionAetherDivideTeamChange) } - "PLAYER_ACTION_AETHER_DIVIDE_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionAetherDivideStageBegin" => { Some(Self::PlayerActionAetherDivideStageBegin) } - "PLAYER_ACTION_AETHER_DIVIDE_STAGE_END" => { + "PlayerActionType_PlayerActionAetherDivideStageEnd" => { Some(Self::PlayerActionAetherDivideStageEnd) } - "PLAYER_ACTION_AETHER_DIVIDE_STAGE_ROLL" => { + "PlayerActionType_PlayerActionAetherDivideStageRoll" => { Some(Self::PlayerActionAetherDivideStageRoll) } - "PLAYER_ACTION_ALLEY_EVENT_FINISH" => { + "PlayerActionType_PlayerActionAlleyEventFinish" => { Some(Self::PlayerActionAlleyEventFinish) } - "PLAYER_ACTION_ALLEY_TAKE_REWARD" => Some(Self::PlayerActionAlleyTakeReward), - "PLAYER_ACTION_ALLEY_PRESTIGE_LEVEL_UP" => { + "PlayerActionType_PlayerActionAlleyTakeReward" => { + Some(Self::PlayerActionAlleyTakeReward) + } + "PlayerActionType_PlayerActionAlleyPrestigeLevelUp" => { Some(Self::PlayerActionAlleyPrestigeLevelUp) } - "PLAYER_ACTION_ALLEY_LOGISTICS_FINISH" => { + "PlayerActionType_PlayerActionAlleyLogisticsFinish" => { Some(Self::PlayerActionAlleyLogisticsFinish) } - "PLAYER_ACTION_ALLEY_PLACING_GAME_FINISH" => { + "PlayerActionType_PlayerActionAlleyPlacingGameFinish" => { Some(Self::PlayerActionAlleyPlacingGameFinish) } - "PLAYER_ACTION_ALLEY_GUARANTEED_FUNDS" => { + "PlayerActionType_PlayerActionAlleyGuaranteedFunds" => { Some(Self::PlayerActionAlleyGuaranteedFunds) } - "PLAYER_ACTION_ALLEY_TAKE_EVENT_REWARD" => { + "PlayerActionType_PlayerActionAlleyTakeEventReward" => { Some(Self::PlayerActionAlleyTakeEventReward) } - "PLAYER_ACTION_ALLEY_SPECIAL_ORDER_FINISH" => { + "PlayerActionType_PlayerActionAlleySpecialOrderFinish" => { Some(Self::PlayerActionAlleySpecialOrderFinish) } - "PLAYER_ACTION_SENSITIVE_WORD_SHIELD" => { + "PlayerActionType_PlayerActionSensitiveWordShield" => { Some(Self::PlayerActionSensitiveWordShield) } - "PLAYER_ACTION_SENSITIVE_WORD_SERVER_INTERNAL_ERROR" => { + "PlayerActionType_PlayerActionSensitiveWordServerInternalError" => { Some(Self::PlayerActionSensitiveWordServerInternalError) } - "PLAYER_ACTION_SENSITIVE_WORD_PLATFORM_ERROR" => { + "PlayerActionType_PlayerActionSensitiveWordPlatformError" => { Some(Self::PlayerActionSensitiveWordPlatformError) } - "PLAYER_ACTION_TREASURE_DUNGEON_START" => { + "PlayerActionType_PlayerActionTreasureDungeonStart" => { Some(Self::PlayerActionTreasureDungeonStart) } - "PLAYER_ACTION_TREASURE_DUNGEON_FINISH" => { + "PlayerActionType_PlayerActionTreasureDungeonFinish" => { Some(Self::PlayerActionTreasureDungeonFinish) } - "PLAYER_ACTION_TREASURE_DUNGEON_ENTER_FLOOR" => { + "PlayerActionType_PlayerActionTreasureDungeonEnterFloor" => { Some(Self::PlayerActionTreasureDungeonEnterFloor) } - "PLAYER_ACTION_TREASURE_DUNGEON_LEAVE_FLOOR" => { + "PlayerActionType_PlayerActionTreasureDungeonLeaveFloor" => { Some(Self::PlayerActionTreasureDungeonLeaveFloor) } - "PLAYER_ACTION_TREASURE_DUNGEON_USE_ITEM" => { + "PlayerActionType_PlayerActionTreasureDungeonUseItem" => { Some(Self::PlayerActionTreasureDungeonUseItem) } - "PLAYER_ACTION_TREASURE_DUNGEON_AVATAR_CHANGE" => { + "PlayerActionType_PlayerActionTreasureDungeonAvatarChange" => { Some(Self::PlayerActionTreasureDungeonAvatarChange) } - "PLAYER_ACTION_TREASURE_DUNGEON_BATTLE_START" => { + "PlayerActionType_PlayerActionTreasureDungeonBattleStart" => { Some(Self::PlayerActionTreasureDungeonBattleStart) } - "PLAYER_ACTION_TREASURE_DUNGEON_BATTLE_END" => { + "PlayerActionType_PlayerActionTreasureDungeonBattleEnd" => { Some(Self::PlayerActionTreasureDungeonBattleEnd) } - "PLAYER_ACTION_TREASURE_DUNGEON_PICKUP_BUFF" => { + "PlayerActionType_PlayerActionTreasureDungeonPickupBuff" => { Some(Self::PlayerActionTreasureDungeonPickupBuff) } - "PLAYER_ACTION_CHESS_ROGUE_FIRST_FINISH" => { + "PlayerActionType_PlayerActionChessRogueFirstFinish" => { Some(Self::PlayerActionChessRogueFirstFinish) } - "PLAYER_ACTION_CHESS_ROGUE_GIVEUP_DICE" => { + "PlayerActionType_PlayerActionChessRogueGiveupDice" => { Some(Self::PlayerActionChessRogueGiveupDice) } - "PLAYER_ACTION_CHESS_ROGUE_SUB_STORY_SELECT" => { + "PlayerActionType_PlayerActionChessRogueSubStorySelect" => { Some(Self::PlayerActionChessRogueSubStorySelect) } - "PLAYER_ACTION_CHESS_ROGUE_ACTION_POINT" => { + "PlayerActionType_PlayerActionChessRogueActionPoint" => { Some(Self::PlayerActionChessRogueActionPoint) } - "PLAYER_ACTION_CHESS_ROGUE_REVIVE_BY_PROP" => { + "PlayerActionType_PlayerActionChessRogueReviveByProp" => { Some(Self::PlayerActionChessRogueReviveByProp) } - "PLAYER_ACTION_CHESS_ROGUE_START_LEVEL" => { + "PlayerActionType_PlayerActionChessRogueStartLevel" => { Some(Self::PlayerActionChessRogueStartLevel) } - "PLAYER_ACTION_CHESS_ROGUE_DICE_EFFECT" => { + "PlayerActionType_PlayerActionChessRogueDiceEffect" => { Some(Self::PlayerActionChessRogueDiceEffect) } - "PLAYER_ACTION_CHESS_ROGUE_MAIN_STORY_FINISH" => { + "PlayerActionType_PlayerActionChessRogueMainStoryFinish" => { Some(Self::PlayerActionChessRogueMainStoryFinish) } - "PLAYER_ACTION_CHESS_ROGUE_AEON_TALENT_EFFECT" => { + "PlayerActionType_PlayerActionChessRogueAeonTalentEffect" => { Some(Self::PlayerActionChessRogueAeonTalentEffect) } - "PLAYER_ACTION_CHESS_ROGUE_MODIFIER_OTHERS_EFFECT" => { + "PlayerActionType_PlayerActionChessRogueModifierOthersEffect" => { Some(Self::PlayerActionChessRogueModifierOthersEffect) } - "PLAYER_ACTION_CHESS_ROGUE_ADD_BUFF" => { + "PlayerActionType_PlayerActionChessRogueAddBuff" => { Some(Self::PlayerActionChessRogueAddBuff) } - "PLAYER_ACTION_CHESS_ROGUE_REFORGE_BUFF" => { + "PlayerActionType_PlayerActionChessRogueReforgeBuff" => { Some(Self::PlayerActionChessRogueReforgeBuff) } - "PLAYER_ACTION_CHESS_ROGUE_BUFF_LEVEL_UP" => { + "PlayerActionType_PlayerActionChessRogueBuffLevelUp" => { Some(Self::PlayerActionChessRogueBuffLevelUp) } - "PLAYER_ACTION_CHESS_ROGUE_ENHANCE_BUFF" => { + "PlayerActionType_PlayerActionChessRogueEnhanceBuff" => { Some(Self::PlayerActionChessRogueEnhanceBuff) } - "PLAYER_ACTION_CHESS_ROGUE_ADD_MIRACLE" => { + "PlayerActionType_PlayerActionChessRogueAddMiracle" => { Some(Self::PlayerActionChessRogueAddMiracle) } - "PLAYER_ACTION_CHESS_ROGUE_SWAP_MIRACLE" => { + "PlayerActionType_PlayerActionChessRogueSwapMiracle" => { Some(Self::PlayerActionChessRogueSwapMiracle) } - "PLAYER_ACTION_CHESS_ROGUE_SELECT_BONUS" => { + "PlayerActionType_PlayerActionChessRogueSelectBonus" => { Some(Self::PlayerActionChessRogueSelectBonus) } - "PLAYER_ACTION_CHESS_ROGUE_DIALOGUE_FINISH" => { + "PlayerActionType_PlayerActionChessRogueDialogueFinish" => { Some(Self::PlayerActionChessRogueDialogueFinish) } - "PLAYER_ACTION_CHESS_ROGUE_SUB_STORY_FINISH" => { + "PlayerActionType_PlayerActionChessRogueSubStoryFinish" => { Some(Self::PlayerActionChessRogueSubStoryFinish) } - "PLAYER_ACTION_CHESS_ROGUE_ADVENTURE_ROOM_FINISH" => { + "PlayerActionType_PlayerActionChessRogueAdventureRoomFinish" => { Some(Self::PlayerActionChessRogueAdventureRoomFinish) } - "PLAYER_ACTION_CHESS_ROGUE_FINISH_LEVEL" => { + "PlayerActionType_PlayerActionChessRogueFinishLevel" => { Some(Self::PlayerActionChessRogueFinishLevel) } - "PLAYER_ACTION_CHESS_ROGUE_START_LAYER" => { + "PlayerActionType_PlayerActionChessRogueStartLayer" => { Some(Self::PlayerActionChessRogueStartLayer) } - "PLAYER_ACTION_CHESS_ROGUE_FINISH_LAYER" => { + "PlayerActionType_PlayerActionChessRogueFinishLayer" => { Some(Self::PlayerActionChessRogueFinishLayer) } - "PLAYER_ACTION_CHESS_ROGUE_ENTER_ROOM" => { + "PlayerActionType_PlayerActionChessRogueEnterRoom" => { Some(Self::PlayerActionChessRogueEnterRoom) } - "PLAYER_ACTION_CHESS_ROGUE_LEAVE_ROOM" => { + "PlayerActionType_PlayerActionChessRogueLeaveRoom" => { Some(Self::PlayerActionChessRogueLeaveRoom) } - "PLAYER_ACTION_CHESS_ROGUE_ROLL_DICE" => { + "PlayerActionType_PlayerActionChessRogueRollDice" => { Some(Self::PlayerActionChessRogueRollDice) } - "PLAYER_ACTION_CHESS_ROGUE_SELECT_DICE" => { + "PlayerActionType_PlayerActionChessRogueSelectDice" => { Some(Self::PlayerActionChessRogueSelectDice) } - "PLAYER_ACTION_CHESS_ROGUE_UNLOCK_DICE" => { + "PlayerActionType_PlayerActionChessRogueUnlockDice" => { Some(Self::PlayerActionChessRogueUnlockDice) } - "PLAYER_ACTION_CHESS_ROGUE_BOARD_EVENT" => { + "PlayerActionType_PlayerActionChessRogueBoardEvent" => { Some(Self::PlayerActionChessRogueBoardEvent) } - "PLAYER_ACTION_CHESS_ROGUE_DIMENSION_POINT" => { + "PlayerActionType_PlayerActionChessRogueDimensionPoint" => { Some(Self::PlayerActionChessRogueDimensionPoint) } - "PLAYER_ACTION_CHESS_ROGUE_PICK_AVATAR" => { + "PlayerActionType_PlayerActionChessRoguePickAvatar" => { Some(Self::PlayerActionChessRoguePickAvatar) } - "PLAYER_ACTION_CHESS_ROGUE_REVIVE_AVATAR" => { + "PlayerActionType_PlayerActionChessRogueReviveAvatar" => { Some(Self::PlayerActionChessRogueReviveAvatar) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_SUB_STORY_SELECT" => { + "PlayerActionType_PlayerActionChessRogueNousSubStorySelect" => { Some(Self::PlayerActionChessRogueNousSubStorySelect) } - "PLAYER_ACTION_CHESS_ROGUE_LEVEL_MECHANISM" => { + "PlayerActionType_PlayerActionChessRogueLevelMechanism" => { Some(Self::PlayerActionChessRogueLevelMechanism) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_START_LEVEL" => { + "PlayerActionType_PlayerActionChessRogueNousStartLevel" => { Some(Self::PlayerActionChessRogueNousStartLevel) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_FINISH_LEVEL" => { + "PlayerActionType_PlayerActionChessRogueNousFinishLevel" => { Some(Self::PlayerActionChessRogueNousFinishLevel) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_START_LAYER" => { + "PlayerActionType_PlayerActionChessRogueNousStartLayer" => { Some(Self::PlayerActionChessRogueNousStartLayer) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_FINISH_LAYER" => { + "PlayerActionType_PlayerActionChessRogueNousFinishLayer" => { Some(Self::PlayerActionChessRogueNousFinishLayer) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_ENTER_ROOM" => { + "PlayerActionType_PlayerActionChessRogueNousEnterRoom" => { Some(Self::PlayerActionChessRogueNousEnterRoom) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_LEAVE_ROOM" => { + "PlayerActionType_PlayerActionChessRogueNousLeaveRoom" => { Some(Self::PlayerActionChessRogueNousLeaveRoom) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_SELECT_DICE" => { + "PlayerActionType_PlayerActionChessRogueNousSelectDice" => { Some(Self::PlayerActionChessRogueNousSelectDice) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_UNLOCK_DICE_BRANCH" => { + "PlayerActionType_PlayerActionChessRogueNousUnlockDiceBranch" => { Some(Self::PlayerActionChessRogueNousUnlockDiceBranch) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_UNLOCK_DICE_SURFACE" => { + "PlayerActionType_PlayerActionChessRogueNousUnlockDiceSurface" => { Some(Self::PlayerActionChessRogueNousUnlockDiceSurface) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_EDIT_DICE" => { + "PlayerActionType_PlayerActionChessRogueNousEditDice" => { Some(Self::PlayerActionChessRogueNousEditDice) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_VALUE_CHANGE" => { + "PlayerActionType_PlayerActionChessRogueNousValueChange" => { Some(Self::PlayerActionChessRogueNousValueChange) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_MAIN_STORY_TRIGGER" => { + "PlayerActionType_PlayerActionChessRogueNousMainStoryTrigger" => { Some(Self::PlayerActionChessRogueNousMainStoryTrigger) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_MAIN_STORY_FINISH" => { + "PlayerActionType_PlayerActionChessRogueNousMainStoryFinish" => { Some(Self::PlayerActionChessRogueNousMainStoryFinish) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_SUB_STORY_TRIGGER" => { + "PlayerActionType_PlayerActionChessRogueNousSubStoryTrigger" => { Some(Self::PlayerActionChessRogueNousSubStoryTrigger) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_SUB_STORY_FINISH" => { + "PlayerActionType_PlayerActionChessRogueNousSubStoryFinish" => { Some(Self::PlayerActionChessRogueNousSubStoryFinish) } - "PLAYER_ACTION_CHESS_ROGUE_NOUS_ENABLE_TALENT" => { + "PlayerActionType_PlayerActionChessRogueNousEnableTalent" => { Some(Self::PlayerActionChessRogueNousEnableTalent) } - "PLAYER_ACTION_CHESS_ROGUE_SELECT_BUFF" => { + "PlayerActionType_PlayerActionChessRogueSelectBuff" => { Some(Self::PlayerActionChessRogueSelectBuff) } - "PLAYER_ACTION_CHESS_ROGUE_SELECT_MIRACLE" => { + "PlayerActionType_PlayerActionChessRogueSelectMiracle" => { Some(Self::PlayerActionChessRogueSelectMiracle) } - "PLAYER_ACTION_CHESS_ROGUE_REMOVE_MIRACLE" => { + "PlayerActionType_PlayerActionChessRogueRemoveMiracle" => { Some(Self::PlayerActionChessRogueRemoveMiracle) } - "PLAYER_ACTION_CHESS_ROGUE_BOARD_CELL" => { + "PlayerActionType_PlayerActionChessRogueBoardCell" => { Some(Self::PlayerActionChessRogueBoardCell) } - "PLAYER_ACTION_FANTASTIC_STORY_BATTLE_BEGIN" => { + "PlayerActionType_PlayerActionFantasticStoryBattleBegin" => { Some(Self::PlayerActionFantasticStoryBattleBegin) } - "PLAYER_ACTION_FANTASTIC_STORY_BATTLE_END" => { + "PlayerActionType_PlayerActionFantasticStoryBattleEnd" => { Some(Self::PlayerActionFantasticStoryBattleEnd) } - "PLAYER_ACTION_ROGUE_ENDLESS_REWARD" => { + "PlayerActionType_PlayerActionRogueEndlessReward" => { Some(Self::PlayerActionRogueEndlessReward) } - "PLAYER_ACTION_ROGUE_ENDLESS_LEVEL_START" => { + "PlayerActionType_PlayerActionRogueEndlessLevelStart" => { Some(Self::PlayerActionRogueEndlessLevelStart) } - "PLAYER_ACTION_ROGUE_ENDLESS_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionRogueEndlessStageBegin" => { Some(Self::PlayerActionRogueEndlessStageBegin) } - "PLAYER_ACTION_ROGUE_ENDLESS_STAGE_END" => { + "PlayerActionType_PlayerActionRogueEndlessStageEnd" => { Some(Self::PlayerActionRogueEndlessStageEnd) } - "PLAYER_ACTION_BATTLE_COLLEGE_REWARD" => { + "PlayerActionType_PlayerActionBattleCollegeReward" => { Some(Self::PlayerActionBattleCollegeReward) } - "PLAYER_ACTION_COMMON_ROGUE_MIRACLE_FOR_BUFF_SHOP" => { + "PlayerActionType_PlayerActionCommonRogueMiracleForBuffShop" => { Some(Self::PlayerActionCommonRogueMiracleForBuffShop) } - "PLAYER_ACTION_COMMON_ROGUE_ADVENTURE_ROOM_FINISH" => { + "PlayerActionType_PlayerActionCommonRogueAdventureRoomFinish" => { Some(Self::PlayerActionCommonRogueAdventureRoomFinish) } - "PLAYER_ACTION_COMMON_ROGUE_BUY_BUFF_SHOP" => { + "PlayerActionType_PlayerActionCommonRogueBuyBuffShop" => { Some(Self::PlayerActionCommonRogueBuyBuffShop) } - "PLAYER_ACTION_COMMON_ROGUE_BUY_BUFF_SHOP_REFRESH" => { + "PlayerActionType_PlayerActionCommonRogueBuyBuffShopRefresh" => { Some(Self::PlayerActionCommonRogueBuyBuffShopRefresh) } - "PLAYER_ACTION_COMMON_ROGUE_COLLECTION_UNLOCK" => { + "PlayerActionType_PlayerActionCommonRogueCollectionUnlock" => { Some(Self::PlayerActionCommonRogueCollectionUnlock) } - "PLAYER_ACTION_COMMON_ROGUE_COLLECTION_SET" => { + "PlayerActionType_PlayerActionCommonRogueCollectionSet" => { Some(Self::PlayerActionCommonRogueCollectionSet) } - "PLAYER_ACTION_COMMON_ROGUE_EXHIBITION_UNLOCK" => { + "PlayerActionType_PlayerActionCommonRogueExhibitionUnlock" => { Some(Self::PlayerActionCommonRogueExhibitionUnlock) } - "PLAYER_ACTION_COMMON_ROGUE_EXHIBITION_SET" => { + "PlayerActionType_PlayerActionCommonRogueExhibitionSet" => { Some(Self::PlayerActionCommonRogueExhibitionSet) } - "PLAYER_ACTION_COMMON_ROGUE_CHEST_INTERACT" => { + "PlayerActionType_PlayerActionCommonRogueChestInteract" => { Some(Self::PlayerActionCommonRogueChestInteract) } - "PLAYER_ACTION_COMMON_ROGUE_ADVENTURE_ROOM_WOLFGUN_FINISH" => { + "PlayerActionType_PlayerActionCommonRogueAdventureRoomWolfgunFinish" => { Some(Self::PlayerActionCommonRogueAdventureRoomWolfgunFinish) } - "PLAYER_ACTION_HELIOBUS_POST_INCOME_REWARD" => { + "PlayerActionType_PlayerActionHeliobusPostIncomeReward" => { Some(Self::PlayerActionHeliobusPostIncomeReward) } - "PLAYER_ACTION_HELIOBUS_POST_FANS_REWARD" => { + "PlayerActionType_PlayerActionHeliobusPostFansReward" => { Some(Self::PlayerActionHeliobusPostFansReward) } - "PLAYER_ACTION_HELIOBUS_LEVEL_UPGRADE" => { + "PlayerActionType_PlayerActionHeliobusLevelUpgrade" => { Some(Self::PlayerActionHeliobusLevelUpgrade) } - "PLAYER_ACTION_HELIOBUS_POST_REPLY_REWARD" => { + "PlayerActionType_PlayerActionHeliobusPostReplyReward" => { Some(Self::PlayerActionHeliobusPostReplyReward) } - "PLAYER_ACTION_HELIOBUS_COMMENT_REPLY_REWARD" => { + "PlayerActionType_PlayerActionHeliobusCommentReplyReward" => { Some(Self::PlayerActionHeliobusCommentReplyReward) } - "PLAYER_ACTION_HELIOBUS_CHALLENGE_FIRST_REWARD" => { + "PlayerActionType_PlayerActionHeliobusChallengeFirstReward" => { Some(Self::PlayerActionHeliobusChallengeFirstReward) } - "PLAYER_ACTION_HELIOBUS_FANS_ADD" => Some(Self::PlayerActionHeliobusFansAdd), - "PLAYER_ACTION_HELIOBUS_ACTION_DAY_SETTLE" => { + "PlayerActionType_PlayerActionHeliobusFansAdd" => { + Some(Self::PlayerActionHeliobusFansAdd) + } + "PlayerActionType_PlayerActionHeliobusActionDaySettle" => { Some(Self::PlayerActionHeliobusActionDaySettle) } - "PLAYER_ACTION_HELIOBUS_SKILL_UNLOCK" => { + "PlayerActionType_PlayerActionHeliobusSkillUnlock" => { Some(Self::PlayerActionHeliobusSkillUnlock) } - "PLAYER_ACTION_HELIOBUS_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionHeliobusStageBegin" => { Some(Self::PlayerActionHeliobusStageBegin) } - "PLAYER_ACTION_HELIOBUS_STAGE_END" => { + "PlayerActionType_PlayerActionHeliobusStageEnd" => { Some(Self::PlayerActionHeliobusStageEnd) } - "PLAYER_ACTION_HELIOBUS_SNS_READ" => Some(Self::PlayerActionHeliobusSnsRead), - "PLAYER_ACTION_HELIOBUS_SNS_POST_UNLOCK" => { + "PlayerActionType_PlayerActionHeliobusSnsRead" => { + Some(Self::PlayerActionHeliobusSnsRead) + } + "PlayerActionType_PlayerActionHeliobusSnsPostUnlock" => { Some(Self::PlayerActionHeliobusSnsPostUnlock) } - "PLAYER_ACTION_HELIOBUS_SNS_COMMENT_UNLOCK" => { + "PlayerActionType_PlayerActionHeliobusSnsCommentUnlock" => { Some(Self::PlayerActionHeliobusSnsCommentUnlock) } - "PLAYER_ACTION_HELIOBUS_SNS_COMMENT" => { + "PlayerActionType_PlayerActionHeliobusSnsComment" => { Some(Self::PlayerActionHeliobusSnsComment) } - "PLAYER_ACTION_HELIOBUS_SNS_POST" => Some(Self::PlayerActionHeliobusSnsPost), - "PLAYER_ACTION_HELIOBUS_SNS_LIKE" => Some(Self::PlayerActionHeliobusSnsLike), - "PLAYER_ACTION_HELIOBUS_PHASE_UPGRADE" => { + "PlayerActionType_PlayerActionHeliobusSnsPost" => { + Some(Self::PlayerActionHeliobusSnsPost) + } + "PlayerActionType_PlayerActionHeliobusSnsLike" => { + Some(Self::PlayerActionHeliobusSnsLike) + } + "PlayerActionType_PlayerActionHeliobusPhaseUpgrade" => { Some(Self::PlayerActionHeliobusPhaseUpgrade) } - "PLAYER_ACTION_PS_POINT_CARD_30_REWARD" => { + "PlayerActionType_PlayerActionPsPointCard30Reward" => { Some(Self::PlayerActionPsPointCard30Reward) } - "PLAYER_ACTION_PS_POINT_CARD_50_REWARD" => { + "PlayerActionType_PlayerActionPsPointCard50Reward" => { Some(Self::PlayerActionPsPointCard50Reward) } - "PLAYER_ACTION_PS_POINT_CARD_100_REWARD" => { + "PlayerActionType_PlayerActionPsPointCard100Reward" => { Some(Self::PlayerActionPsPointCard100Reward) } - "PLAYER_ACTION_PSN_PLUS_GIFT_REWARD" => { + "PlayerActionType_PlayerActionPsnPlusGiftReward" => { Some(Self::PlayerActionPsnPlusGiftReward) } - "PLAYER_ACTION_APPLE_GIFT_CARD_REWARD" => { + "PlayerActionType_PlayerActionAppleGiftCardReward" => { Some(Self::PlayerActionAppleGiftCardReward) } - "PLAYER_ACTION_HEART_DIAL_SUBMIT_ITEM" => { + "PlayerActionType_PlayerActionHeartDialSubmitItem" => { Some(Self::PlayerActionHeartDialSubmitItem) } - "PLAYER_ACTION_HEART_DIAL_DIALOGUE_PERFORM" => { + "PlayerActionType_PlayerActionHeartDialDialoguePerform" => { Some(Self::PlayerActionHeartDialDialoguePerform) } - "PLAYER_ACTION_HEART_DIAL_TRACE_CONSUME" => { + "PlayerActionType_PlayerActionHeartDialTraceConsume" => { Some(Self::PlayerActionHeartDialTraceConsume) } - "PLAYER_ACTION_HEART_DIAL_CHANGE_EMOTION" => { + "PlayerActionType_PlayerActionHeartDialChangeEmotion" => { Some(Self::PlayerActionHeartDialChangeEmotion) } - "PLAYER_ACTION_TRAVEL_BROCHURE_ADD_DEFAULT_PASTER" => { + "PlayerActionType_PlayerActionTravelBrochureAddDefaultPaster" => { Some(Self::PlayerActionTravelBrochureAddDefaultPaster) } - "PLAYER_ACTION_SPACE_ZOO_BORN" => Some(Self::PlayerActionSpaceZooBorn), - "PLAYER_ACTION_SPACE_ZOO_MUTATE" => Some(Self::PlayerActionSpaceZooMutate), - "PLAYER_ACTION_SPACE_ZOO_DELETE" => Some(Self::PlayerActionSpaceZooDelete), - "PLAYER_ACTION_SPACE_ZOO_EXCHANGE_ITEM" => { + "PlayerActionType_PlayerActionSpaceZooBorn" => { + Some(Self::PlayerActionSpaceZooBorn) + } + "PlayerActionType_PlayerActionSpaceZooMutate" => { + Some(Self::PlayerActionSpaceZooMutate) + } + "PlayerActionType_PlayerActionSpaceZooDelete" => { + Some(Self::PlayerActionSpaceZooDelete) + } + "PlayerActionType_PlayerActionSpaceZooExchangeItem" => { Some(Self::PlayerActionSpaceZooExchangeItem) } - "PLAYER_ACTION_SPACE_ZOO_EXP_POINT" => { + "PlayerActionType_PlayerActionSpaceZooExpPoint" => { Some(Self::PlayerActionSpaceZooExpPoint) } - "PLAYER_ACTION_SPACE_ZOO_TAKE_REWARD" => { + "PlayerActionType_PlayerActionSpaceZooTakeReward" => { Some(Self::PlayerActionSpaceZooTakeReward) } - "PLAYER_ACTION_SPACE_ZOO_COLLECTION" => { + "PlayerActionType_PlayerActionSpaceZooCollection" => { Some(Self::PlayerActionSpaceZooCollection) } - "PLAYER_ACTION_SPACE_ZOO_SHOW" => Some(Self::PlayerActionSpaceZooShow), - "PLAYER_ACTION_SPACE_ZOO_SPECIAL_DATA" => { + "PlayerActionType_PlayerActionSpaceZooShow" => { + Some(Self::PlayerActionSpaceZooShow) + } + "PlayerActionType_PlayerActionSpaceZooSpecialData" => { Some(Self::PlayerActionSpaceZooSpecialData) } - "PLAYER_ACTION_STRONG_CHALLENGE_BATTLE_BEGIN" => { + "PlayerActionType_PlayerActionStrongChallengeBattleBegin" => { Some(Self::PlayerActionStrongChallengeBattleBegin) } - "PLAYER_ACTION_STRONG_CHALLENGE_BATTLE_END" => { + "PlayerActionType_PlayerActionStrongChallengeBattleEnd" => { Some(Self::PlayerActionStrongChallengeBattleEnd) } - "PLAYER_ACTION_ROLL_SHOP_DO_GACHA" => Some(Self::PlayerActionRollShopDoGacha), - "PLAYER_ACTION_ROLL_SHOP_TAKE_REWARD" => { + "PlayerActionType_PlayerActionRollShopDoGacha" => { + Some(Self::PlayerActionRollShopDoGacha) + } + "PlayerActionType_PlayerActionRollShopTakeReward" => { Some(Self::PlayerActionRollShopTakeReward) } - "PLAYER_ACTION_OFFERING_SUBMIT_ITEM" => { + "PlayerActionType_PlayerActionOfferingSubmitItem" => { Some(Self::PlayerActionOfferingSubmitItem) } - "PLAYER_ACTION_OFFERING_TAKE_REWARD" => { + "PlayerActionType_PlayerActionOfferingTakeReward" => { Some(Self::PlayerActionOfferingTakeReward) } - "PLAYER_ACTION_TRAVEL_BROCHURE_PAGE_UNLOCK" => { + "PlayerActionType_PlayerActionTravelBrochurePageUnlock" => { Some(Self::PlayerActionTravelBrochurePageUnlock) } - "PLAYER_ACTION_TRAVEL_BROCHURE_PAGE_INTERACT_AWARD" => { + "PlayerActionType_PlayerActionTravelBrochurePageInteractAward" => { Some(Self::PlayerActionTravelBrochurePageInteractAward) } - "PLAYER_ACTION_TRAVEL_BROCHURE_STICKER_UNLOCK" => { + "PlayerActionType_PlayerActionTravelBrochureStickerUnlock" => { Some(Self::PlayerActionTravelBrochureStickerUnlock) } - "PLAYER_ACTION_TRAVEL_BROCHURE_STICKER_APPLY" => { + "PlayerActionType_PlayerActionTravelBrochureStickerApply" => { Some(Self::PlayerActionTravelBrochureStickerApply) } - "PLAYER_ACTION_TRAVEL_BROCHURE_STICKER_REMOVE" => { + "PlayerActionType_PlayerActionTravelBrochureStickerRemove" => { Some(Self::PlayerActionTravelBrochureStickerRemove) } - "PLAYER_ACTION_TRAVEL_BROCHURE_PAGE_RESET" => { + "PlayerActionType_PlayerActionTravelBrochurePageReset" => { Some(Self::PlayerActionTravelBrochurePageReset) } - "PLAYER_ACTION_TRACK_MAIN_MISSION_ID" => { + "PlayerActionType_PlayerActionTrackMainMissionId" => { Some(Self::PlayerActionTrackMainMissionId) } - "PLAYER_ACTION_WOLF_BRO_BEGIN" => Some(Self::PlayerActionWolfBroBegin), - "PLAYER_ACTION_WOLF_BRO_GROUP_STATE_CHANGE" => { + "PlayerActionType_PlayerActionWolfBroBegin" => { + Some(Self::PlayerActionWolfBroBegin) + } + "PlayerActionType_PlayerActionWolfBroGroupStateChange" => { Some(Self::PlayerActionWolfBroGroupStateChange) } - "PLAYER_ACTION_WOLF_BRO_END" => Some(Self::PlayerActionWolfBroEnd), - "PLAYER_ACTION_WOLF_BRO_BULLET_ZERO" => { + "PlayerActionType_PlayerActionWolfBroEnd" => { + Some(Self::PlayerActionWolfBroEnd) + } + "PlayerActionType_PlayerActionWolfBroBulletZero" => { Some(Self::PlayerActionWolfBroBulletZero) } - "PLAYER_ACTION_WOLF_BRO_ACTIVATE_BULLET" => { + "PlayerActionType_PlayerActionWolfBroActivateBullet" => { Some(Self::PlayerActionWolfBroActivateBullet) } - "PLAYER_ACTION_WOLF_BRO_BULLET_NUM_CHANGE" => { + "PlayerActionType_PlayerActionWolfBroBulletNumChange" => { Some(Self::PlayerActionWolfBroBulletNumChange) } - "PLAYER_ACTION_WOLF_BRO_USE_BULLET_NULL" => { + "PlayerActionType_PlayerActionWolfBroUseBulletNull" => { Some(Self::PlayerActionWolfBroUseBulletNull) } - "PLAYER_ACTION_WOLF_BRO_USE_BULLET_HIT_MONSTER" => { + "PlayerActionType_PlayerActionWolfBroUseBulletHitMonster" => { Some(Self::PlayerActionWolfBroUseBulletHitMonster) } - "PLAYER_ACTION_WOLF_BRO_PICK_UP_BULLET" => { + "PlayerActionType_PlayerActionWolfBroPickUpBullet" => { Some(Self::PlayerActionWolfBroPickUpBullet) } - "PLAYER_ACTION_WOLF_BRO_RESTORE_ARCHIVE" => { + "PlayerActionType_PlayerActionWolfBroRestoreArchive" => { Some(Self::PlayerActionWolfBroRestoreArchive) } - "PLAYER_ACTION_TELEVISION_ACTIVITY_BATTLE_BEGIN" => { + "PlayerActionType_PlayerActionTelevisionActivityBattleBegin" => { Some(Self::PlayerActionTelevisionActivityBattleBegin) } - "PLAYER_ACTION_TELEVISION_ACTIVITY_BATTLE_END" => { + "PlayerActionType_PlayerActionTelevisionActivityBattleEnd" => { Some(Self::PlayerActionTelevisionActivityBattleEnd) } - "PLAYER_ACTION_FEVER_TIME_ACTIVITY_BATTLE_BEGIN" => { + "PlayerActionType_PlayerActionFeverTimeActivityBattleBegin" => { Some(Self::PlayerActionFeverTimeActivityBattleBegin) } - "PLAYER_ACTION_FEVER_TIME_ACTIVITY_BATTLE_END" => { + "PlayerActionType_PlayerActionFeverTimeActivityBattleEnd" => { Some(Self::PlayerActionFeverTimeActivityBattleEnd) } - "PLAYER_ACTION_GUN_PLAY_END" => Some(Self::PlayerActionGunPlayEnd), - "PLAYER_ACTION_ACTIVITY_STAR_FIGHT_BEGIN" => { + "PlayerActionType_PlayerActionGunPlayEnd" => { + Some(Self::PlayerActionGunPlayEnd) + } + "PlayerActionType_PlayerActionActivityStarFightBegin" => { Some(Self::PlayerActionActivityStarFightBegin) } - "PLAYER_ACTION_ACTIVITY_STAR_FIGHT_END" => { + "PlayerActionType_PlayerActionActivityStarFightEnd" => { Some(Self::PlayerActionActivityStarFightEnd) } - "PLAYER_ACTION_MAP_ROTATION_ENTER_REGION" => { + "PlayerActionType_PlayerActionMapRotationEnterRegion" => { Some(Self::PlayerActionMapRotationEnterRegion) } - "PLAYER_ACTION_MAP_ROTATION_LEAVE_REGION" => { + "PlayerActionType_PlayerActionMapRotationLeaveRegion" => { Some(Self::PlayerActionMapRotationLeaveRegion) } - "PLAYER_ACTION_MAP_ROTATION_INTERACT_CHARGER" => { + "PlayerActionType_PlayerActionMapRotationInteractCharger" => { Some(Self::PlayerActionMapRotationInteractCharger) } - "PLAYER_ACTION_MAP_ROTATION_DEPLOY_ROTATER" => { + "PlayerActionType_PlayerActionMapRotationDeployRotater" => { Some(Self::PlayerActionMapRotationDeployRotater) } - "PLAYER_ACTION_MAP_ROTATION_ROTATE_MAP" => { + "PlayerActionType_PlayerActionMapRotationRotateMap" => { Some(Self::PlayerActionMapRotationRotateMap) } - "PLAYER_ACTION_MAP_ROTATION_ADD_ENERGY" => { + "PlayerActionType_PlayerActionMapRotationAddEnergy" => { Some(Self::PlayerActionMapRotationAddEnergy) } - "PLAYER_ACTION_MAP_ROTATION_SET_MAX_ENERGY" => { + "PlayerActionType_PlayerActionMapRotationSetMaxEnergy" => { Some(Self::PlayerActionMapRotationSetMaxEnergy) } - "PLAYER_ACTION_MAP_ROTATION_REMOVE_ROTATER" => { + "PlayerActionType_PlayerActionMapRotationRemoveRotater" => { Some(Self::PlayerActionMapRotationRemoveRotater) } - "PLAYER_ACTION_MAP_ROTATION_AUTO_DEPLOY_ROTATER" => { + "PlayerActionType_PlayerActionMapRotationAutoDeployRotater" => { Some(Self::PlayerActionMapRotationAutoDeployRotater) } - "PLAYER_ACTION_MAP_ROTATION_AUTO_REMOVE_ROTATER" => { + "PlayerActionType_PlayerActionMapRotationAutoRemoveRotater" => { Some(Self::PlayerActionMapRotationAutoRemoveRotater) } - "PLAYER_ACTION_DRINK_MAKER_ADD_TIPS" => { + "PlayerActionType_PlayerActionDrinkMakerAddTips" => { Some(Self::PlayerActionDrinkMakerAddTips) } - "PLAYER_ACTION_DRINK_MAKER_FINISH_CHALLENGE" => { + "PlayerActionType_PlayerActionDrinkMakerFinishChallenge" => { Some(Self::PlayerActionDrinkMakerFinishChallenge) } - "PLAYER_ACTION_DRINK_MAKER_GUEST_MAX_FAITH_REWARD" => { + "PlayerActionType_PlayerActionDrinkMakerGuestMaxFaithReward" => { Some(Self::PlayerActionDrinkMakerGuestMaxFaithReward) } - "PLAYER_ACTION_DRINK_MAKER_MAKE_DRINK" => { + "PlayerActionType_PlayerActionDrinkMakerMakeDrink" => { Some(Self::PlayerActionDrinkMakerMakeDrink) } - "PLAYER_ACTION_DRINK_MAKER_SAVE_CUSTOM_DRINK" => { + "PlayerActionType_PlayerActionDrinkMakerSaveCustomDrink" => { Some(Self::PlayerActionDrinkMakerSaveCustomDrink) } - "PLAYER_ACTION_DRINK_MAKER_END_SEQUENCE" => { + "PlayerActionType_PlayerActionDrinkMakerEndSequence" => { Some(Self::PlayerActionDrinkMakerEndSequence) } - "PLAYER_ACTION_DRINK_MAKER_CHEERS_MAKE_DRINK" => { + "PlayerActionType_PlayerActionDrinkMakerCheersMakeDrink" => { Some(Self::PlayerActionDrinkMakerCheersMakeDrink) } - "PLAYER_ACTION_DRINK_MAKER_CHEERS_NPC_DRINK" => { + "PlayerActionType_PlayerActionDrinkMakerCheersNpcDrink" => { Some(Self::PlayerActionDrinkMakerCheersNpcDrink) } - "PLAYER_ACTION_CHANGE_STORY_LINE" => Some(Self::PlayerActionChangeStoryLine), - "PLAYER_ACTION_CONTENT_PACKAGE_STATUS_CHANGE" => { + "PlayerActionType_PlayerActionChangeStoryLine" => { + Some(Self::PlayerActionChangeStoryLine) + } + "PlayerActionType_PlayerActionContentPackageStatusChange" => { Some(Self::PlayerActionContentPackageStatusChange) } - "PLAYER_ACTION_CONTENT_PACKAGE_TRACK_CHANGE" => { + "PlayerActionType_PlayerActionContentPackageTrackChange" => { Some(Self::PlayerActionContentPackageTrackChange) } - "PLAYER_ACTION_CONTENT_PACKAGE_ACCEPT_MAIN_MISSION" => { + "PlayerActionType_PlayerActionContentPackageAcceptMainMission" => { Some(Self::PlayerActionContentPackageAcceptMainMission) } - "PLAYER_ACTION_WORLD_DIRECT_UNLOCK" => { + "PlayerActionType_PlayerActionWorldDirectUnlock" => { Some(Self::PlayerActionWorldDirectUnlock) } - "PLAYER_ACTION_MONOPOLY_TURN_FINISH" => { + "PlayerActionType_PlayerActionMonopolyTurnFinish" => { Some(Self::PlayerActionMonopolyTurnFinish) } - "PLAYER_ACTION_MONOPOLY_ASSET_TURNTAX" => { + "PlayerActionType_PlayerActionMonopolyAssetTurntax" => { Some(Self::PlayerActionMonopolyAssetTurntax) } - "PLAYER_ACTION_MONOPOLY_ASSET_BONUS" => { + "PlayerActionType_PlayerActionMonopolyAssetBonus" => { Some(Self::PlayerActionMonopolyAssetBonus) } - "PLAYER_ACTION_MONOPOLY_EVENT_EFFECT" => { + "PlayerActionType_PlayerActionMonopolyEventEffect" => { Some(Self::PlayerActionMonopolyEventEffect) } - "PLAYER_ACTION_MONOPOLY_MINI_GAME_SETTLE" => { + "PlayerActionType_PlayerActionMonopolyMiniGameSettle" => { Some(Self::PlayerActionMonopolyMiniGameSettle) } - "PLAYER_ACTION_MONOPOLY_GAME_RAISE_RATIO" => { + "PlayerActionType_PlayerActionMonopolyGameRaiseRatio" => { Some(Self::PlayerActionMonopolyGameRaiseRatio) } - "PLAYER_ACTION_MONOPOLY_MOVE_ROLL_DICE" => { + "PlayerActionType_PlayerActionMonopolyMoveRollDice" => { Some(Self::PlayerActionMonopolyMoveRollDice) } - "PLAYER_ACTION_MONOPOLY_MOVE" => Some(Self::PlayerActionMonopolyMove), - "PLAYER_ACTION_MONOPOLY_BUY_GOODS" => { + "PlayerActionType_PlayerActionMonopolyMove" => { + Some(Self::PlayerActionMonopolyMove) + } + "PlayerActionType_PlayerActionMonopolyBuyGoods" => { Some(Self::PlayerActionMonopolyBuyGoods) } - "PLAYER_ACTION_MONOPOLY_UPGRADE_ASSET" => { + "PlayerActionType_PlayerActionMonopolyUpgradeAsset" => { Some(Self::PlayerActionMonopolyUpgradeAsset) } - "PLAYER_ACTION_MONOPOLY_EVENT_REROLL_RANDOM" => { + "PlayerActionType_PlayerActionMonopolyEventRerollRandom" => { Some(Self::PlayerActionMonopolyEventRerollRandom) } - "PLAYER_ACTION_MONOPOLY_DAILY_REFRESH" => { + "PlayerActionType_PlayerActionMonopolyDailyRefresh" => { Some(Self::PlayerActionMonopolyDailyRefresh) } - "PLAYER_ACTION_MONOPOLY_GAME_GUESS_BUY_INFORMATION" => { + "PlayerActionType_PlayerActionMonopolyGameGuessBuyInformation" => { Some(Self::PlayerActionMonopolyGameGuessBuyInformation) } - "PLAYER_ACTION_MONOPOLY_DAILY_FIRST_ENTER_ACTIVITY" => { + "PlayerActionType_PlayerActionMonopolyDailyFirstEnterActivity" => { Some(Self::PlayerActionMonopolyDailyFirstEnterActivity) } - "PLAYER_ACTION_MONOPOLY_SOCIAL_EVENT" => { + "PlayerActionType_PlayerActionMonopolySocialEvent" => { Some(Self::PlayerActionMonopolySocialEvent) } - "PLAYER_ACTION_MONOPOLY_RAFFLE_TICKET_REWARD" => { + "PlayerActionType_PlayerActionMonopolyRaffleTicketReward" => { Some(Self::PlayerActionMonopolyRaffleTicketReward) } - "PLAYER_ACTION_MONOPOLY_LIKE" => Some(Self::PlayerActionMonopolyLike), - "PLAYER_ACTION_MONOPOLY_PHASE_REWARD" => { + "PlayerActionType_PlayerActionMonopolyLike" => { + Some(Self::PlayerActionMonopolyLike) + } + "PlayerActionType_PlayerActionMonopolyPhaseReward" => { Some(Self::PlayerActionMonopolyPhaseReward) } - "PLAYER_ACTION_MONOPOLY_MBTI_REPORT_REWARD" => { + "PlayerActionType_PlayerActionMonopolyMbtiReportReward" => { Some(Self::PlayerActionMonopolyMbtiReportReward) } - "PLAYER_ACTION_MONOPOLY_DAILY_SETTLE" => { + "PlayerActionType_PlayerActionMonopolyDailySettle" => { Some(Self::PlayerActionMonopolyDailySettle) } - "PLAYER_ACTION_MONOPOLY_START" => Some(Self::PlayerActionMonopolyStart), - "PLAYER_ACTION_MONOPOLY_GET_BUFF" => Some(Self::PlayerActionMonopolyGetBuff), - "PLAYER_ACTION_MONOPOLY_ASSET_FUNDS_CHANGE" => { + "PlayerActionType_PlayerActionMonopolyStart" => { + Some(Self::PlayerActionMonopolyStart) + } + "PlayerActionType_PlayerActionMonopolyGetBuff" => { + Some(Self::PlayerActionMonopolyGetBuff) + } + "PlayerActionType_PlayerActionMonopolyAssetFundsChange" => { Some(Self::PlayerActionMonopolyAssetFundsChange) } - "PLAYER_ACTION_MONOPOLY_ASSET_UPGRADE" => { + "PlayerActionType_PlayerActionMonopolyAssetUpgrade" => { Some(Self::PlayerActionMonopolyAssetUpgrade) } - "PLAYER_ACTION_MONOPOLY_DIRECT_COIN_GAME_SETTLE" => { + "PlayerActionType_PlayerActionMonopolyDirectCoinGameSettle" => { Some(Self::PlayerActionMonopolyDirectCoinGameSettle) } - "PLAYER_ACTION_MONOPOLY_EXTRACT_RAFFLE_TICKET" => { + "PlayerActionType_PlayerActionMonopolyExtractRaffleTicket" => { Some(Self::PlayerActionMonopolyExtractRaffleTicket) } - "PLAYER_ACTION_MONOPOLY_MBTI_PROGRESS_CHANGE" => { + "PlayerActionType_PlayerActionMonopolyMbtiProgressChange" => { Some(Self::PlayerActionMonopolyMbtiProgressChange) } - "PLAYER_ACTION_MONOPOLY_QUIZ_GAME_SETTLE" => { + "PlayerActionType_PlayerActionMonopolyQuizGameSettle" => { Some(Self::PlayerActionMonopolyQuizGameSettle) } - "PLAYER_ACTION_MONOPOLY_EVENT_SETTLE" => { + "PlayerActionType_PlayerActionMonopolyEventSettle" => { Some(Self::PlayerActionMonopolyEventSettle) } - "PLAYER_ACTION_MONOPOLY_ITEM_CHANGE" => { + "PlayerActionType_PlayerActionMonopolyItemChange" => { Some(Self::PlayerActionMonopolyItemChange) } - "PLAYER_ACTION_MONOPOLY_CELL_TRIGGER" => { + "PlayerActionType_PlayerActionMonopolyCellTrigger" => { Some(Self::PlayerActionMonopolyCellTrigger) } - "PLAYER_ACTION_MONOPOLY_EVENT_TRIGGER" => { + "PlayerActionType_PlayerActionMonopolyEventTrigger" => { Some(Self::PlayerActionMonopolyEventTrigger) } - "PLAYER_ACTION_MONOPOLY_CLICK_EFFECT" => { + "PlayerActionType_PlayerActionMonopolyClickEffect" => { Some(Self::PlayerActionMonopolyClickEffect) } - "PLAYER_ACTION_EVOLVE_BUILD_LEVEL_FINISH" => { + "PlayerActionType_PlayerActionEvolveBuildLevelFinish" => { Some(Self::PlayerActionEvolveBuildLevelFinish) } - "PLAYER_ACTION_EVOLVE_BUILD_SHOP_ABILITY_UP" => { + "PlayerActionType_PlayerActionEvolveBuildShopAbilityUp" => { Some(Self::PlayerActionEvolveBuildShopAbilityUp) } - "PLAYER_ACTION_EVOLVE_BUILD_SHOP_ABILITY_DOWN" => { + "PlayerActionType_PlayerActionEvolveBuildShopAbilityDown" => { Some(Self::PlayerActionEvolveBuildShopAbilityDown) } - "PLAYER_ACTION_EVOLVE_BUILD_TAKE_EXP_REWARD" => { + "PlayerActionType_PlayerActionEvolveBuildTakeExpReward" => { Some(Self::PlayerActionEvolveBuildTakeExpReward) } - "PLAYER_ACTION_EVOLVE_BUILD_BATTLE_END_ADD_COIN" => { + "PlayerActionType_PlayerActionEvolveBuildBattleEndAddCoin" => { Some(Self::PlayerActionEvolveBuildBattleEndAddCoin) } - "PLAYER_ACTION_EVOLVE_BUILD_SHOP_ABILITY_RESET" => { + "PlayerActionType_PlayerActionEvolveBuildShopAbilityReset" => { Some(Self::PlayerActionEvolveBuildShopAbilityReset) } - "PLAYER_ACTION_EVOLVE_BUILD_LEVEL_START" => { + "PlayerActionType_PlayerActionEvolveBuildLevelStart" => { Some(Self::PlayerActionEvolveBuildLevelStart) } - "PLAYER_ACTION_EVOLVE_BUILD_LEVEL_END" => { + "PlayerActionType_PlayerActionEvolveBuildLevelEnd" => { Some(Self::PlayerActionEvolveBuildLevelEnd) } - "PLAYER_ACTION_EVOLVE_BUILD_STAGE_START" => { + "PlayerActionType_PlayerActionEvolveBuildStageStart" => { Some(Self::PlayerActionEvolveBuildStageStart) } - "PLAYER_ACTION_EVOLVE_BUILD_STAGE_END" => { + "PlayerActionType_PlayerActionEvolveBuildStageEnd" => { Some(Self::PlayerActionEvolveBuildStageEnd) } - "PLAYER_ACTION_EVOLVE_BUILD_LEVEL_LEAVE" => { + "PlayerActionType_PlayerActionEvolveBuildLevelLeave" => { Some(Self::PlayerActionEvolveBuildLevelLeave) } - "PLAYER_ACTION_CLOCK_PARK_UNLOCK_SCRIPT" => { + "PlayerActionType_PlayerActionClockParkUnlockScript" => { Some(Self::PlayerActionClockParkUnlockScript) } - "PLAYER_ACTION_CLOCK_PARK_UNLOCK_TALENT" => { + "PlayerActionType_PlayerActionClockParkUnlockTalent" => { Some(Self::PlayerActionClockParkUnlockTalent) } - "PLAYER_ACTION_CLOCK_PARK_FINISH_SCRIPT" => { + "PlayerActionType_PlayerActionClockParkFinishScript" => { Some(Self::PlayerActionClockParkFinishScript) } - "PLAYER_ACTION_CLOCK_PARK_ROUND_UPDATE" => { + "PlayerActionType_PlayerActionClockParkRoundUpdate" => { Some(Self::PlayerActionClockParkRoundUpdate) } - "PLAYER_ACTION_CLOCK_PARK_SCRIPT_BEGIN" => { + "PlayerActionType_PlayerActionClockParkScriptBegin" => { Some(Self::PlayerActionClockParkScriptBegin) } - "PLAYER_ACTION_ROGUE_TOURN_START_LEVEL" => { + "PlayerActionType_PlayerActionRogueTournStartLevel" => { Some(Self::PlayerActionRogueTournStartLevel) } - "PLAYER_ACTION_ROGUE_TOURN_FINISH_LEVEL" => { + "PlayerActionType_PlayerActionRogueTournFinishLevel" => { Some(Self::PlayerActionRogueTournFinishLevel) } - "PLAYER_ACTION_ROGUE_TOURN_EXP_REWARD" => { + "PlayerActionType_PlayerActionRogueTournExpReward" => { Some(Self::PlayerActionRogueTournExpReward) } - "PLAYER_ACTION_ROGUE_TOURN_FINISH_WEEK_CHALLENGE" => { + "PlayerActionType_PlayerActionRogueTournFinishWeekChallenge" => { Some(Self::PlayerActionRogueTournFinishWeekChallenge) } - "PLAYER_ACTION_ROGUE_TOURN_PERMANENT_TALENT_EFFECT" => { + "PlayerActionType_PlayerActionRogueTournPermanentTalentEffect" => { Some(Self::PlayerActionRogueTournPermanentTalentEffect) } - "PLAYER_ACTION_ROGUE_TOURN_FINISH_FORMULA_STORY" => { + "PlayerActionType_PlayerActionRogueTournFinishFormulaStory" => { Some(Self::PlayerActionRogueTournFinishFormulaStory) } - "PLAYER_ACTION_ROGUE_TOURN_REVIVE" => { + "PlayerActionType_PlayerActionRogueTournRevive" => { Some(Self::PlayerActionRogueTournRevive) } - "PLAYER_ACTION_ROGUE_TOURN_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionRogueTournStageBegin" => { Some(Self::PlayerActionRogueTournStageBegin) } - "PLAYER_ACTION_ROGUE_TOURN_STAGE_END" => { + "PlayerActionType_PlayerActionRogueTournStageEnd" => { Some(Self::PlayerActionRogueTournStageEnd) } - "PLAYER_ACTION_ROGUE_TOURN_PERMANENT_ENABLE_TALENT" => { + "PlayerActionType_PlayerActionRogueTournPermanentEnableTalent" => { Some(Self::PlayerActionRogueTournPermanentEnableTalent) } - "PLAYER_ACTION_ROGUE_TOURN_PERMANENT_RESET_TALENT" => { + "PlayerActionType_PlayerActionRogueTournPermanentResetTalent" => { Some(Self::PlayerActionRogueTournPermanentResetTalent) } - "PLAYER_ACTION_ROGUE_TOURN_COCOON_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionRogueTournCocoonStageBegin" => { Some(Self::PlayerActionRogueTournCocoonStageBegin) } - "PLAYER_ACTION_ROGUE_TOURN_COCOON_STAGE_END" => { + "PlayerActionType_PlayerActionRogueTournCocoonStageEnd" => { Some(Self::PlayerActionRogueTournCocoonStageEnd) } - "PLAYER_ACTION_ROGUE_TOURN_EXP_UPDATE" => { + "PlayerActionType_PlayerActionRogueTournExpUpdate" => { Some(Self::PlayerActionRogueTournExpUpdate) } - "PLAYER_ACTION_ROGUE_TOURN_ENTER_ROOM" => { + "PlayerActionType_PlayerActionRogueTournEnterRoom" => { Some(Self::PlayerActionRogueTournEnterRoom) } - "PLAYER_ACTION_ROGUE_TOURN_LEAVE_ROOM" => { + "PlayerActionType_PlayerActionRogueTournLeaveRoom" => { Some(Self::PlayerActionRogueTournLeaveRoom) } - "PLAYER_ACTION_ROGUE_TOURN_ARCHIVE_SAVE" => { + "PlayerActionType_PlayerActionRogueTournArchiveSave" => { Some(Self::PlayerActionRogueTournArchiveSave) } - "PLAYER_ACTION_ROGUE_TOURN_SELECT_BONUS" => { + "PlayerActionType_PlayerActionRogueTournSelectBonus" => { Some(Self::PlayerActionRogueTournSelectBonus) } - "PLAYER_ACTION_ROGUE_TOURN_DIALOGUE_FINISH" => { + "PlayerActionType_PlayerActionRogueTournDialogueFinish" => { Some(Self::PlayerActionRogueTournDialogueFinish) } - "PLAYER_ACTION_ROGUE_TOURN_DO_GAMBLE" => { + "PlayerActionType_PlayerActionRogueTournDoGamble" => { Some(Self::PlayerActionRogueTournDoGamble) } - "PLAYER_ACTION_ROGUE_TOURN_ROOM_CONTENT_GENERATE" => { + "PlayerActionType_PlayerActionRogueTournRoomContentGenerate" => { Some(Self::PlayerActionRogueTournRoomContentGenerate) } - "PLAYER_ACTION_ROGUE_TOURN_ADD_MIRACLE" => { + "PlayerActionType_PlayerActionRogueTournAddMiracle" => { Some(Self::PlayerActionRogueTournAddMiracle) } - "PLAYER_ACTION_ROGUE_TOURN_REMOVE_MIRACLE" => { + "PlayerActionType_PlayerActionRogueTournRemoveMiracle" => { Some(Self::PlayerActionRogueTournRemoveMiracle) } - "PLAYER_ACTION_ROGUE_TOURN_SELECT_MIRACLE" => { + "PlayerActionType_PlayerActionRogueTournSelectMiracle" => { Some(Self::PlayerActionRogueTournSelectMiracle) } - "PLAYER_ACTION_ROGUE_TOURN_DROP_MIRACLE" => { + "PlayerActionType_PlayerActionRogueTournDropMiracle" => { Some(Self::PlayerActionRogueTournDropMiracle) } - "PLAYER_ACTION_ROGUE_TOURN_ADD_BUFF" => { + "PlayerActionType_PlayerActionRogueTournAddBuff" => { Some(Self::PlayerActionRogueTournAddBuff) } - "PLAYER_ACTION_ROGUE_TOURN_SELECT_BUFF" => { + "PlayerActionType_PlayerActionRogueTournSelectBuff" => { Some(Self::PlayerActionRogueTournSelectBuff) } - "PLAYER_ACTION_ROGUE_TOURN_BUFF_LEVEL_UP" => { + "PlayerActionType_PlayerActionRogueTournBuffLevelUp" => { Some(Self::PlayerActionRogueTournBuffLevelUp) } - "PLAYER_ACTION_ROGUE_TOURN_REMOVE_BUFF" => { + "PlayerActionType_PlayerActionRogueTournRemoveBuff" => { Some(Self::PlayerActionRogueTournRemoveBuff) } - "PLAYER_ACTION_ROGUE_TOURN_ADD_FORMULA" => { + "PlayerActionType_PlayerActionRogueTournAddFormula" => { Some(Self::PlayerActionRogueTournAddFormula) } - "PLAYER_ACTION_ROGUE_TOURN_REMOVE_FORMULA" => { + "PlayerActionType_PlayerActionRogueTournRemoveFormula" => { Some(Self::PlayerActionRogueTournRemoveFormula) } - "PLAYER_ACTION_ROGUE_TOURN_SELECT_FORMULA" => { + "PlayerActionType_PlayerActionRogueTournSelectFormula" => { Some(Self::PlayerActionRogueTournSelectFormula) } - "PLAYER_ACTION_ROGUE_TOURN_ACTIVATE_FORMULA" => { + "PlayerActionType_PlayerActionRogueTournActivateFormula" => { Some(Self::PlayerActionRogueTournActivateFormula) } - "PLAYER_ACTION_ROGUE_TOURN_ADVENTURE_ROOM_FINISH" => { + "PlayerActionType_PlayerActionRogueTournAdventureRoomFinish" => { Some(Self::PlayerActionRogueTournAdventureRoomFinish) } - "PLAYER_ACTION_ROGUE_TOURN_ALTER_LINEUP" => { + "PlayerActionType_PlayerActionRogueTournAlterLineup" => { Some(Self::PlayerActionRogueTournAlterLineup) } - "PLAYER_ACTION_ROGUE_TOURN_SEASON_ENABLE_TALENT" => { + "PlayerActionType_PlayerActionRogueTournSeasonEnableTalent" => { Some(Self::PlayerActionRogueTournSeasonEnableTalent) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_START_LEVEL" => { + "PlayerActionType_PlayerActionRogueTournTitanStartLevel" => { Some(Self::PlayerActionRogueTournTitanStartLevel) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_FINISH_LEVEL" => { + "PlayerActionType_PlayerActionRogueTournTitanFinishLevel" => { Some(Self::PlayerActionRogueTournTitanFinishLevel) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_ENTER_ROOM" => { + "PlayerActionType_PlayerActionRogueTournTitanEnterRoom" => { Some(Self::PlayerActionRogueTournTitanEnterRoom) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_LEAVE_ROOM" => { + "PlayerActionType_PlayerActionRogueTournTitanLeaveRoom" => { Some(Self::PlayerActionRogueTournTitanLeaveRoom) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionRogueTournTitanStageBegin" => { Some(Self::PlayerActionRogueTournTitanStageBegin) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_STAGE_END" => { + "PlayerActionType_PlayerActionRogueTournTitanStageEnd" => { Some(Self::PlayerActionRogueTournTitanStageEnd) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_ARCHIVE_SAVE" => { + "PlayerActionType_PlayerActionRogueTournTitanArchiveSave" => { Some(Self::PlayerActionRogueTournTitanArchiveSave) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_ADD_TITAN_BLESS" => { + "PlayerActionType_PlayerActionRogueTournTitanAddTitanBless" => { Some(Self::PlayerActionRogueTournTitanAddTitanBless) } - "PLAYER_ACTION_ROGUE_TOURN_TITAN_SELECT_TITAN_BLESS" => { + "PlayerActionType_PlayerActionRogueTournTitanSelectTitanBless" => { Some(Self::PlayerActionRogueTournTitanSelectTitanBless) } - "PLAYER_ACTION_ROGUE_TOURN_DIVISION_CHANGE" => { + "PlayerActionType_PlayerActionRogueTournDivisionChange" => { Some(Self::PlayerActionRogueTournDivisionChange) } - "PLAYER_ACTION_ROGUE_TOURN_SELECT_RE_ROLL_MIRACLE" => { + "PlayerActionType_PlayerActionRogueTournSelectReRollMiracle" => { Some(Self::PlayerActionRogueTournSelectReRollMiracle) } - "PLAYER_ACTION_ROGUE_TOURN_TRIGGER_BATTLE_BY_SHOP" => { + "PlayerActionType_PlayerActionRogueTournTriggerBattleByShop" => { Some(Self::PlayerActionRogueTournTriggerBattleByShop) } - "PLAYER_ACTION_ROGUE_TOURN_USE_SUPER_REWARD_KEY" => { + "PlayerActionType_PlayerActionRogueTournUseSuperRewardKey" => { Some(Self::PlayerActionRogueTournUseSuperRewardKey) } - "PLAYER_ACTION_ROGUE_WORKBENCH_REFORGE_FORMULA" => { + "PlayerActionType_PlayerActionRogueWorkbenchReforgeFormula" => { Some(Self::PlayerActionRogueWorkbenchReforgeFormula) } - "PLAYER_ACTION_ROGUE_WORKBENCH_REFORGE_MIRACLE" => { + "PlayerActionType_PlayerActionRogueWorkbenchReforgeMiracle" => { Some(Self::PlayerActionRogueWorkbenchReforgeMiracle) } - "PLAYER_ACTION_ROGUE_WORKBENCH_COMPOSE_MIRACLE" => { + "PlayerActionType_PlayerActionRogueWorkbenchComposeMiracle" => { Some(Self::PlayerActionRogueWorkbenchComposeMiracle) } - "PLAYER_ACTION_ROGUE_WORKBENCH_REFORGE_BUFF" => { + "PlayerActionType_PlayerActionRogueWorkbenchReforgeBuff" => { Some(Self::PlayerActionRogueWorkbenchReforgeBuff) } - "PLAYER_ACTION_ROGUE_WORKBENCH_ENHANCE_BUFF" => { + "PlayerActionType_PlayerActionRogueWorkbenchEnhanceBuff" => { Some(Self::PlayerActionRogueWorkbenchEnhanceBuff) } - "PLAYER_ACTION_MATCH_THREE_PVE_SETTLE" => { + "PlayerActionType_PlayerActionMatchThreePveSettle" => { Some(Self::PlayerActionMatchThreePveSettle) } - "PLAYER_ACTION_MATCH_THREE_SETTLE" => { + "PlayerActionType_PlayerActionMatchThreeSettle" => { Some(Self::PlayerActionMatchThreeSettle) } - "PLAYER_ACTION_FIGHT_MATCH3_GAME_START" => { + "PlayerActionType_PlayerActionFightMatch3GameStart" => { Some(Self::PlayerActionFightMatch3GameStart) } - "PLAYER_ACTION_FIGHT_MATCH3_GAME_END" => { + "PlayerActionType_PlayerActionFightMatch3GameEnd" => { Some(Self::PlayerActionFightMatch3GameEnd) } - "PLAYER_ACTION_FIGHT_MATCH3_TURN_END" => { + "PlayerActionType_PlayerActionFightMatch3TurnEnd" => { Some(Self::PlayerActionFightMatch3TurnEnd) } - "PLAYER_ACTION_MATCH_THREE_BIRD_POS" => { + "PlayerActionType_PlayerActionMatchThreeBirdPos" => { Some(Self::PlayerActionMatchThreeBirdPos) } - "PLAYER_ACTION_MULTIPLE_PLAY_INVITE" => { + "PlayerActionType_PlayerActionMultiplePlayInvite" => { Some(Self::PlayerActionMultiplePlayInvite) } - "PLAYER_ACTION_MULTIPLE_PLAY_INVITE_RESPOND" => { + "PlayerActionType_PlayerActionMultiplePlayInviteRespond" => { Some(Self::PlayerActionMultiplePlayInviteRespond) } - "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_ENTER" => { + "PlayerActionType_PlayerActionMultiplePlayLobbyEnter" => { Some(Self::PlayerActionMultiplePlayLobbyEnter) } - "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_QUIT" => { + "PlayerActionType_PlayerActionMultiplePlayLobbyQuit" => { Some(Self::PlayerActionMultiplePlayLobbyQuit) } - "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_KICK" => { + "PlayerActionType_PlayerActionMultiplePlayLobbyKick" => { Some(Self::PlayerActionMultiplePlayLobbyKick) } - "PLAYER_ACTION_MULTIPLE_PLAY_LOBBY_MATCH" => { + "PlayerActionType_PlayerActionMultiplePlayLobbyMatch" => { Some(Self::PlayerActionMultiplePlayLobbyMatch) } - "PLAYER_ACTION_MARBLE_SETTLE" => Some(Self::PlayerActionMarbleSettle), - "PLAYER_ACTION_MATCH_THREE_SOLO_SETTLE" => { + "PlayerActionType_PlayerActionMarbleSettle" => { + Some(Self::PlayerActionMarbleSettle) + } + "PlayerActionType_PlayerActionMatchThreeSoloSettle" => { Some(Self::PlayerActionMatchThreeSoloSettle) } - "PLAYER_ACTION_MATCH_THREE_V2_BATTLEITEM_LEVELUP" => { + "PlayerActionType_PlayerActionMatchThreeV2BattleitemLevelup" => { Some(Self::PlayerActionMatchThreeV2BattleitemLevelup) } - "PLAYER_ACTION_MATCH_THREE_V2_PVE_SETTLE" => { + "PlayerActionType_PlayerActionMatchThreeV2PveSettle" => { Some(Self::PlayerActionMatchThreeV2PveSettle) } - "PLAYER_ACTION_MATCH_THREE_V2_PVP_SETTLE" => { + "PlayerActionType_PlayerActionMatchThreeV2PvpSettle" => { Some(Self::PlayerActionMatchThreeV2PvpSettle) } - "PLAYER_ACTION_MATCH3_SOLO_GAME_START" => { + "PlayerActionType_PlayerActionMatch3SoloGameStart" => { Some(Self::PlayerActionMatch3SoloGameStart) } - "PLAYER_ACTION_MATCH3_SOLO_GAME_END" => { + "PlayerActionType_PlayerActionMatch3SoloGameEnd" => { Some(Self::PlayerActionMatch3SoloGameEnd) } - "PLAYER_ACTION_MATCH3_SOLO_ROUND_END" => { + "PlayerActionType_PlayerActionMatch3SoloRoundEnd" => { Some(Self::PlayerActionMatch3SoloRoundEnd) } - "PLAYER_ACTION_MATCH3_ROYALE_SETTLE" => { + "PlayerActionType_PlayerActionMatch3RoyaleSettle" => { Some(Self::PlayerActionMatch3RoyaleSettle) } - "PLAYER_ACTION_MATCH3_ROYALE_GAME_START" => { + "PlayerActionType_PlayerActionMatch3RoyaleGameStart" => { Some(Self::PlayerActionMatch3RoyaleGameStart) } - "PLAYER_ACTION_MATCH3_ROYALE_GAME_END" => { + "PlayerActionType_PlayerActionMatch3RoyaleGameEnd" => { Some(Self::PlayerActionMatch3RoyaleGameEnd) } - "PLAYER_ACTION_MATCH3_ROYALE_ROUND_END" => { + "PlayerActionType_PlayerActionMatch3RoyaleRoundEnd" => { Some(Self::PlayerActionMatch3RoyaleRoundEnd) } - "PLAYER_ACTION_SWORD_TRAINING_LEARN_SKILL" => { + "PlayerActionType_PlayerActionSwordTrainingLearnSkill" => { Some(Self::PlayerActionSwordTrainingLearnSkill) } - "PLAYER_ACTION_SWORD_TRAINING_NORMAL_ACTION" => { + "PlayerActionType_PlayerActionSwordTrainingNormalAction" => { Some(Self::PlayerActionSwordTrainingNormalAction) } - "PLAYER_ACTION_SWORD_TRAINING_STORY_EFFECT" => { + "PlayerActionType_PlayerActionSwordTrainingStoryEffect" => { Some(Self::PlayerActionSwordTrainingStoryEffect) } - "PLAYER_ACTION_SWORD_TRAINING_ENDING_HINT" => { + "PlayerActionType_PlayerActionSwordTrainingEndingHint" => { Some(Self::PlayerActionSwordTrainingEndingHint) } - "PLAYER_ACTION_SWORD_TRAINING_ACTION_HINT" => { + "PlayerActionType_PlayerActionSwordTrainingActionHint" => { Some(Self::PlayerActionSwordTrainingActionHint) } - "PLAYER_ACTION_SWORD_TRAINING_RESTORE_GAME_BY_EXAM" => { + "PlayerActionType_PlayerActionSwordTrainingRestoreGameByExam" => { Some(Self::PlayerActionSwordTrainingRestoreGameByExam) } - "PLAYER_ACTION_SWORD_TRAINING_STORY_LINE_FIRST_CLEAR" => { + "PlayerActionType_PlayerActionSwordTrainingStoryLineFirstClear" => { Some(Self::PlayerActionSwordTrainingStoryLineFirstClear) } - "PLAYER_ACTION_SWORD_TRAINING_TAKE_ENDING_REWARD" => { + "PlayerActionType_PlayerActionSwordTrainingTakeEndingReward" => { Some(Self::PlayerActionSwordTrainingTakeEndingReward) } - "PLAYER_ACTION_SWORD_TRAINING_STORY_LINE_BEGIN" => { + "PlayerActionType_PlayerActionSwordTrainingStoryLineBegin" => { Some(Self::PlayerActionSwordTrainingStoryLineBegin) } - "PLAYER_ACTION_SWORD_TRAINING_ENTER_TURN" => { + "PlayerActionType_PlayerActionSwordTrainingEnterTurn" => { Some(Self::PlayerActionSwordTrainingEnterTurn) } - "PLAYER_ACTION_SWORD_TRAINING_PLAN_ACTION" => { + "PlayerActionType_PlayerActionSwordTrainingPlanAction" => { Some(Self::PlayerActionSwordTrainingPlanAction) } - "PLAYER_ACTION_SWORD_TRAINING_ACTION_PHASE_END" => { + "PlayerActionType_PlayerActionSwordTrainingActionPhaseEnd" => { Some(Self::PlayerActionSwordTrainingActionPhaseEnd) } - "PLAYER_ACTION_SWORD_TRAINING_STORY" => { + "PlayerActionType_PlayerActionSwordTrainingStory" => { Some(Self::PlayerActionSwordTrainingStory) } - "PLAYER_ACTION_SWORD_TRAINING_STATUS_CHANGE" => { + "PlayerActionType_PlayerActionSwordTrainingStatusChange" => { Some(Self::PlayerActionSwordTrainingStatusChange) } - "PLAYER_ACTION_SWORD_TRAINING_MOOD_CHANGE" => { + "PlayerActionType_PlayerActionSwordTrainingMoodChange" => { Some(Self::PlayerActionSwordTrainingMoodChange) } - "PLAYER_ACTION_SWORD_TRAINING_BATTLE_BEGIN" => { + "PlayerActionType_PlayerActionSwordTrainingBattleBegin" => { Some(Self::PlayerActionSwordTrainingBattleBegin) } - "PLAYER_ACTION_SWORD_TRAINING_BATTLE_END" => { + "PlayerActionType_PlayerActionSwordTrainingBattleEnd" => { Some(Self::PlayerActionSwordTrainingBattleEnd) } - "PLAYER_ACTION_SWORD_TRAINING_COMBAT_RANK_CHANGE" => { + "PlayerActionType_PlayerActionSwordTrainingCombatRankChange" => { Some(Self::PlayerActionSwordTrainingCombatRankChange) } - "PLAYER_ACTION_SWORD_TRAINING_STORY_LINE_END" => { + "PlayerActionType_PlayerActionSwordTrainingStoryLineEnd" => { Some(Self::PlayerActionSwordTrainingStoryLineEnd) } - "PLAYER_ACTION_SWORD_TRAINING_RESUME_STORY_LINE" => { + "PlayerActionType_PlayerActionSwordTrainingResumeStoryLine" => { Some(Self::PlayerActionSwordTrainingResumeStoryLine) } - "PLAYER_ACTION_SWORD_TRAINING_GAME_SUCCESS" => { + "PlayerActionType_PlayerActionSwordTrainingGameSuccess" => { Some(Self::PlayerActionSwordTrainingGameSuccess) } - "PLAYER_ACTION_SWORD_TRAINING_GAME_GIVE_UP" => { + "PlayerActionType_PlayerActionSwordTrainingGameGiveUp" => { Some(Self::PlayerActionSwordTrainingGameGiveUp) } - "PLAYER_ACTION_SWORD_TRAINING_EXAM" => { + "PlayerActionType_PlayerActionSwordTrainingExam" => { Some(Self::PlayerActionSwordTrainingExam) } - "PLAYER_ACTION_SWORD_TRAINING_DIALOGUE" => { + "PlayerActionType_PlayerActionSwordTrainingDialogue" => { Some(Self::PlayerActionSwordTrainingDialogue) } - "PLAYER_ACTION_SWORD_TRAINING_SET_SKILL_TRACE" => { + "PlayerActionType_PlayerActionSwordTrainingSetSkillTrace" => { Some(Self::PlayerActionSwordTrainingSetSkillTrace) } - "PLAYER_ACTION_FIGHT_FEST_FINISH_SCORE_RACE_MISSION" => { + "PlayerActionType_PlayerActionFightFestFinishScoreRaceMission" => { Some(Self::PlayerActionFightFestFinishScoreRaceMission) } - "PLAYER_ACTION_FIGHT_FEST_FINISH_SCORE_RACE_PHASE" => { + "PlayerActionType_PlayerActionFightFestFinishScoreRacePhase" => { Some(Self::PlayerActionFightFestFinishScoreRacePhase) } - "PLAYER_ACTION_FIGHT_FEST_RACE_START" => { + "PlayerActionType_PlayerActionFightFestRaceStart" => { Some(Self::PlayerActionFightFestRaceStart) } - "PLAYER_ACTION_FIGHT_FEST_RACE_END" => { + "PlayerActionType_PlayerActionFightFestRaceEnd" => { Some(Self::PlayerActionFightFestRaceEnd) } - "PLAYER_ACTION_FIGHT_FEST_CHALLENGE_START" => { + "PlayerActionType_PlayerActionFightFestChallengeStart" => { Some(Self::PlayerActionFightFestChallengeStart) } - "PLAYER_ACTION_FIGHT_FEST_CHALLENGE_END" => { + "PlayerActionType_PlayerActionFightFestChallengeEnd" => { Some(Self::PlayerActionFightFestChallengeEnd) } - "PLAYER_ACTION_FIGHT_FEST_GET_COACH_ITEM" => { + "PlayerActionType_PlayerActionFightFestGetCoachItem" => { Some(Self::PlayerActionFightFestGetCoachItem) } - "PLAYER_ACTION_FIGHT_FEST_ACCEPT_SCORE_RACE_MISSION" => { + "PlayerActionType_PlayerActionFightFestAcceptScoreRaceMission" => { Some(Self::PlayerActionFightFestAcceptScoreRaceMission) } - "PLAYER_ACTION_PET_USE" => Some(Self::PlayerActionPetUse), - "PLAYER_ACTION_MUSIC_RHYTHM_PASS_LEVEL_STAR" => { + "PlayerActionType_PlayerActionPetUse" => Some(Self::PlayerActionPetUse), + "PlayerActionType_PlayerActionMusicRhythmPassLevelStar" => { Some(Self::PlayerActionMusicRhythmPassLevelStar) } - "PLAYER_ACTION_MUSIC_RHYTHM_LEVEL_BEGIN" => { + "PlayerActionType_PlayerActionMusicRhythmLevelBegin" => { Some(Self::PlayerActionMusicRhythmLevelBegin) } - "PLAYER_ACTION_MUSIC_RHYTHM_LEVEL_END" => { + "PlayerActionType_PlayerActionMusicRhythmLevelEnd" => { Some(Self::PlayerActionMusicRhythmLevelEnd) } - "PLAYER_ACTION_TRACK_PHOTO_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionTrackPhotoStageBegin" => { Some(Self::PlayerActionTrackPhotoStageBegin) } - "PLAYER_ACTION_TRACK_PHOTO_STAGE_END" => { + "PlayerActionType_PlayerActionTrackPhotoStageEnd" => { Some(Self::PlayerActionTrackPhotoStageEnd) } - "PLAYER_ACTION_SUMMON_ACTIVITY_BATTLE_BEGIN" => { + "PlayerActionType_PlayerActionSummonActivityBattleBegin" => { Some(Self::PlayerActionSummonActivityBattleBegin) } - "PLAYER_ACTION_SUMMON_ACTIVITY_BATTLE_END" => { + "PlayerActionType_PlayerActionSummonActivityBattleEnd" => { Some(Self::PlayerActionSummonActivityBattleEnd) } - "PLAYER_ACTION_RAID_COLLECTION_ENTER_NEXT_RAID" => { + "PlayerActionType_PlayerActionRaidCollectionEnterNextRaid" => { Some(Self::PlayerActionRaidCollectionEnterNextRaid) } - "PLAYER_ACTION_DIFFICULTY_ADJUSTMENT_SET" => { + "PlayerActionType_PlayerActionDifficultyAdjustmentSet" => { Some(Self::PlayerActionDifficultyAdjustmentSet) } - "PLAYER_ACTION_DIFFICULTY_ADJUSTMENT_UNSET" => { + "PlayerActionType_PlayerActionDifficultyAdjustmentUnset" => { Some(Self::PlayerActionDifficultyAdjustmentUnset) } - "PLAYER_ACTION_ROGUE_ARCADE_ADVENTURE_ROOM_START" => { + "PlayerActionType_PlayerActionRogueArcadeAdventureRoomStart" => { Some(Self::PlayerActionRogueArcadeAdventureRoomStart) } - "PLAYER_ACTION_ROGUE_ARCADE_ADVENTURE_ROOM_FINISH" => { + "PlayerActionType_PlayerActionRogueArcadeAdventureRoomFinish" => { Some(Self::PlayerActionRogueArcadeAdventureRoomFinish) } - "PLAYER_ACTION_ROGUE_MAGIC_START_LEVEL" => { + "PlayerActionType_PlayerActionRogueMagicStartLevel" => { Some(Self::PlayerActionRogueMagicStartLevel) } - "PLAYER_ACTION_ROGUE_MAGIC_FINISH_LEVEL" => { + "PlayerActionType_PlayerActionRogueMagicFinishLevel" => { Some(Self::PlayerActionRogueMagicFinishLevel) } - "PLAYER_ACTION_ROGUE_MAGIC_REVIVE" => { + "PlayerActionType_PlayerActionRogueMagicRevive" => { Some(Self::PlayerActionRogueMagicRevive) } - "PLAYER_ACTION_ROGUE_MAGIC_ENTER_ROOM" => { + "PlayerActionType_PlayerActionRogueMagicEnterRoom" => { Some(Self::PlayerActionRogueMagicEnterRoom) } - "PLAYER_ACTION_ROGUE_MAGIC_LEAVE_ROOM" => { + "PlayerActionType_PlayerActionRogueMagicLeaveRoom" => { Some(Self::PlayerActionRogueMagicLeaveRoom) } - "PLAYER_ACTION_ROGUE_MAGIC_ADD_MIRACLE" => { + "PlayerActionType_PlayerActionRogueMagicAddMiracle" => { Some(Self::PlayerActionRogueMagicAddMiracle) } - "PLAYER_ACTION_ROGUE_MAGIC_REMOVE_MIRACLE" => { + "PlayerActionType_PlayerActionRogueMagicRemoveMiracle" => { Some(Self::PlayerActionRogueMagicRemoveMiracle) } - "PLAYER_ACTION_ROGUE_MAGIC_STAGE_BEGIN" => { + "PlayerActionType_PlayerActionRogueMagicStageBegin" => { Some(Self::PlayerActionRogueMagicStageBegin) } - "PLAYER_ACTION_ROGUE_MAGIC_STAGE_END" => { + "PlayerActionType_PlayerActionRogueMagicStageEnd" => { Some(Self::PlayerActionRogueMagicStageEnd) } - "PLAYER_ACTION_ROGUE_MAGIC_ENABLE_TALENT" => { + "PlayerActionType_PlayerActionRogueMagicEnableTalent" => { Some(Self::PlayerActionRogueMagicEnableTalent) } - "PLAYER_ACTION_ROGUE_MAGIC_FINISH_STORY" => { + "PlayerActionType_PlayerActionRogueMagicFinishStory" => { Some(Self::PlayerActionRogueMagicFinishStory) } - "PLAYER_ACTION_ROGUE_MAGIC_ADD_SCEPTER" => { + "PlayerActionType_PlayerActionRogueMagicAddScepter" => { Some(Self::PlayerActionRogueMagicAddScepter) } - "PLAYER_ACTION_ROGUE_MAGIC_SELECT_SCEPTER" => { + "PlayerActionType_PlayerActionRogueMagicSelectScepter" => { Some(Self::PlayerActionRogueMagicSelectScepter) } - "PLAYER_ACTION_ROGUE_MAGIC_MOUNT_UNIT" => { + "PlayerActionType_PlayerActionRogueMagicMountUnit" => { Some(Self::PlayerActionRogueMagicMountUnit) } - "PLAYER_ACTION_ROGUE_MAGIC_AUTO_MOUNT_UNIT" => { + "PlayerActionType_PlayerActionRogueMagicAutoMountUnit" => { Some(Self::PlayerActionRogueMagicAutoMountUnit) } - "PLAYER_ACTION_ROGUE_MAGIC_ADD_MAGIC_UNIT" => { + "PlayerActionType_PlayerActionRogueMagicAddMagicUnit" => { Some(Self::PlayerActionRogueMagicAddMagicUnit) } - "PLAYER_ACTION_ROGUE_MAGIC_REMOVE_MAGIC_UNIT" => { + "PlayerActionType_PlayerActionRogueMagicRemoveMagicUnit" => { Some(Self::PlayerActionRogueMagicRemoveMagicUnit) } - "PLAYER_ACTION_ROGUE_MAGIC_WORKBENCH_COMPOSE_MAGIC_UNIT" => { + "PlayerActionType_PlayerActionRogueMagicWorkbenchComposeMagicUnit" => { Some(Self::PlayerActionRogueMagicWorkbenchComposeMagicUnit) } - "PLAYER_ACTION_ROGUE_MAGIC_WORKBENCH_REFORGE_MAGIC_UNIT" => { + "PlayerActionType_PlayerActionRogueMagicWorkbenchReforgeMagicUnit" => { Some(Self::PlayerActionRogueMagicWorkbenchReforgeMagicUnit) } - "PLAYER_ACTION_ROGUE_MAGIC_WORKBENCH_LEVEL_UP_SCEPTER" => { + "PlayerActionType_PlayerActionRogueMagicWorkbenchLevelUpScepter" => { Some(Self::PlayerActionRogueMagicWorkbenchLevelUpScepter) } - "PLAYER_ACTION_TRAIN_PARTY_GAME_PLAY_START" => { + "PlayerActionType_PlayerActionTrainPartyGamePlayStart" => { Some(Self::PlayerActionTrainPartyGamePlayStart) } - "PLAYER_ACTION_TRAIN_PARTY_PHASE_BEGIN" => { + "PlayerActionType_PlayerActionTrainPartyPhaseBegin" => { Some(Self::PlayerActionTrainPartyPhaseBegin) } - "PLAYER_ACTION_TRAIN_PARTY_PHASE_END" => { + "PlayerActionType_PlayerActionTrainPartyPhaseEnd" => { Some(Self::PlayerActionTrainPartyPhaseEnd) } - "PLAYER_ACTION_TRAIN_PARTY_ROUND" => Some(Self::PlayerActionTrainPartyRound), - "PLAYER_ACTION_TRAIN_PARTY_MEETING_BEGIN" => { + "PlayerActionType_PlayerActionTrainPartyRound" => { + Some(Self::PlayerActionTrainPartyRound) + } + "PlayerActionType_PlayerActionTrainPartyMeetingBegin" => { Some(Self::PlayerActionTrainPartyMeetingBegin) } - "PLAYER_ACTION_TRAIN_PARTY_MEETING_END" => { + "PlayerActionType_PlayerActionTrainPartyMeetingEnd" => { Some(Self::PlayerActionTrainPartyMeetingEnd) } - "PLAYER_ACTION_TRAIN_PARTY_MEETING_PLAY_CARD" => { + "PlayerActionType_PlayerActionTrainPartyMeetingPlayCard" => { Some(Self::PlayerActionTrainPartyMeetingPlayCard) } - "PLAYER_ACTION_TRAIN_PARTY_MEETING_RE_ROLL" => { + "PlayerActionType_PlayerActionTrainPartyMeetingReRoll" => { Some(Self::PlayerActionTrainPartyMeetingReRoll) } - "PLAYER_ACTION_TRAIN_PARTY_BUILD_AREA_UNLOCK" => { + "PlayerActionType_PlayerActionTrainPartyBuildAreaUnlock" => { Some(Self::PlayerActionTrainPartyBuildAreaUnlock) } - "PLAYER_ACTION_TRAIN_PARTY_BUILD_STEP" => { + "PlayerActionType_PlayerActionTrainPartyBuildStep" => { Some(Self::PlayerActionTrainPartyBuildStep) } - "PLAYER_ACTION_TRAIN_PARTY_BUILD_LEVEL_AWARD" => { + "PlayerActionType_PlayerActionTrainPartyBuildLevelAward" => { Some(Self::PlayerActionTrainPartyBuildLevelAward) } - "PLAYER_ACTION_TRAIN_PARTY_BUILDING_DYNAMIC_BUFF" => { + "PlayerActionType_PlayerActionTrainPartyBuildingDynamicBuff" => { Some(Self::PlayerActionTrainPartyBuildingDynamicBuff) } - "PLAYER_ACTION_TRAIN_PARTY_BUILD_DIY" => { + "PlayerActionType_PlayerActionTrainPartyBuildDiy" => { Some(Self::PlayerActionTrainPartyBuildDiy) } - "PLAYER_ACTION_SELF_ROOM_BUILD_DIY" => { + "PlayerActionType_PlayerActionSelfRoomBuildDiy" => { Some(Self::PlayerActionSelfRoomBuildDiy) } - "PLAYER_ACTION_SKIP_UNLOCK_SELF_ROOM" => { + "PlayerActionType_PlayerActionSkipUnlockSelfRoom" => { Some(Self::PlayerActionSkipUnlockSelfRoom) } - "PLAYER_ACTION_SELF_ROOM_BUILD_DIY_MERGE" => { + "PlayerActionType_PlayerActionSelfRoomBuildDiyMerge" => { Some(Self::PlayerActionSelfRoomBuildDiyMerge) } - "PLAYER_ACTION_SWITCH_HAND_OP_PROP_STATE" => { + "PlayerActionType_PlayerActionSwitchHandOpPropState" => { Some(Self::PlayerActionSwitchHandOpPropState) } - "PLAYER_ACTION_ERA_FLIPPER_CHANGE_REGION_STATE" => { + "PlayerActionType_PlayerActionEraFlipperChangeRegionState" => { Some(Self::PlayerActionEraFlipperChangeRegionState) } - "PLAYER_ACTION_ERA_FLIPPER_CHANGE_PROP_STATE" => { + "PlayerActionType_PlayerActionEraFlipperChangePropState" => { Some(Self::PlayerActionEraFlipperChangePropState) } - "PLAYER_ACTION_ACTIVITY_BENEFIT_REWARD" => { + "PlayerActionType_PlayerActionActivityBenefitReward" => { Some(Self::PlayerActionActivityBenefitReward) } - "PLAYER_ACTION_ACTIVITY_BENEFIT_JOIN" => { + "PlayerActionType_PlayerActionActivityBenefitJoin" => { Some(Self::PlayerActionActivityBenefitJoin) } - "PLAYER_ACTION_ACTIVITY_BENEFIT_INITIAL_REWARD" => { + "PlayerActionType_PlayerActionActivityBenefitInitialReward" => { Some(Self::PlayerActionActivityBenefitInitialReward) } - "PLAYER_ACTION_PAM_SKIN_CHANGE_SKIN" => { + "PlayerActionType_PlayerActionPamSkinChangeSkin" => { Some(Self::PlayerActionPamSkinChangeSkin) } - "PLAYER_ACTION_CHEST_FIND" => Some(Self::PlayerActionChestFind), - "PLAYER_ACTION_REISSUE_MARK_CHEST_ITEM_MAIL" => { + "PlayerActionType_PlayerActionChestFind" => Some(Self::PlayerActionChestFind), + "PlayerActionType_PlayerActionReissueMarkChestItemMail" => { Some(Self::PlayerActionReissueMarkChestItemMail) } - "PLAYER_ACTION_MARBLE_PASS_MATCH" => Some(Self::PlayerActionMarblePassMatch), - "PLAYER_ACTION_MARBLE_BUY_SEAL" => Some(Self::PlayerActionMarbleBuySeal), - "PLAYER_ACTION_MARBLE_FIGHT_GAME_BEGIN" => { + "PlayerActionType_PlayerActionMarblePassMatch" => { + Some(Self::PlayerActionMarblePassMatch) + } + "PlayerActionType_PlayerActionMarbleBuySeal" => { + Some(Self::PlayerActionMarbleBuySeal) + } + "PlayerActionType_PlayerActionMarbleFightGameBegin" => { Some(Self::PlayerActionMarbleFightGameBegin) } - "PLAYER_ACTION_MARBLE_FIGHT_GAME_END" => { + "PlayerActionType_PlayerActionMarbleFightGameEnd" => { Some(Self::PlayerActionMarbleFightGameEnd) } - "PLAYER_ACTION_MARBLE_FIGHT_GAME_ROUND" => { + "PlayerActionType_PlayerActionMarbleFightGameRound" => { Some(Self::PlayerActionMarbleFightGameRound) } - "PLAYER_ACTION_MARBLE_FIGHT_GAME_TURN" => { + "PlayerActionType_PlayerActionMarbleFightGameTurn" => { Some(Self::PlayerActionMarbleFightGameTurn) } - "PLAYER_ACTION_PLANET_FES_LEVEL_UP" => { + "PlayerActionType_PlayerActionPlanetFesLevelUp" => { Some(Self::PlayerActionPlanetFesLevelUp) } - "PLAYER_ACTION_PLANET_FES_ACTIVITY_INIT" => { + "PlayerActionType_PlayerActionPlanetFesActivityInit" => { Some(Self::PlayerActionPlanetFesActivityInit) } - "PLAYER_ACTION_PLANET_FES_AVATAR_LEVEL_UP" => { + "PlayerActionType_PlayerActionPlanetFesAvatarLevelUp" => { Some(Self::PlayerActionPlanetFesAvatarLevelUp) } - "PLAYER_ACTION_PLANET_FES_TAKE_REGION_PHASE_REWARD" => { + "PlayerActionType_PlayerActionPlanetFesTakeRegionPhaseReward" => { Some(Self::PlayerActionPlanetFesTakeRegionPhaseReward) } - "PLAYER_ACTION_PLANET_FES_ADD_ITEM" => { + "PlayerActionType_PlayerActionPlanetFesAddItem" => { Some(Self::PlayerActionPlanetFesAddItem) } - "PLAYER_ACTION_PLANET_FES_QUEST" => Some(Self::PlayerActionPlanetFesQuest), - "PLAYER_ACTION_PLANET_FES_BUSINESS_DAY_FINISH" => { + "PlayerActionType_PlayerActionPlanetFesQuest" => { + Some(Self::PlayerActionPlanetFesQuest) + } + "PlayerActionType_PlayerActionPlanetFesBusinessDayFinish" => { Some(Self::PlayerActionPlanetFesBusinessDayFinish) } - "PLAYER_ACTION_PLANET_FES_AVATAR_STAR_UP" => { + "PlayerActionType_PlayerActionPlanetFesAvatarStarUp" => { Some(Self::PlayerActionPlanetFesAvatarStarUp) } - "PLAYER_ACTION_PLANET_FES_UNLOCK_LAND" => { + "PlayerActionType_PlayerActionPlanetFesUnlockLand" => { Some(Self::PlayerActionPlanetFesUnlockLand) } - "PLAYER_ACTION_PLANET_FES_BUSINESS_EVENT_FINISH" => { + "PlayerActionType_PlayerActionPlanetFesBusinessEventFinish" => { Some(Self::PlayerActionPlanetFesBusinessEventFinish) } - "PLAYER_ACTION_PLANET_FES_ACTIVATE_CARD" => { + "PlayerActionType_PlayerActionPlanetFesActivateCard" => { Some(Self::PlayerActionPlanetFesActivateCard) } - "PLAYER_ACTION_PLANET_FES_SKILL_LEVEL_UP" => { + "PlayerActionType_PlayerActionPlanetFesSkillLevelUp" => { Some(Self::PlayerActionPlanetFesSkillLevelUp) } - "PLAYER_ACTION_PLANET_FES_GACHA" => Some(Self::PlayerActionPlanetFesGacha), - "PLAYER_ACTION_PLANET_FES_BUSINESS_EVENT_HANDLE" => { + "PlayerActionType_PlayerActionPlanetFesGacha" => { + Some(Self::PlayerActionPlanetFesGacha) + } + "PlayerActionType_PlayerActionPlanetFesBusinessEventHandle" => { Some(Self::PlayerActionPlanetFesBusinessEventHandle) } - "PLAYER_ACTION_PLANET_FES_CARD_APPLY_PERMISSION" => { + "PlayerActionType_PlayerActionPlanetFesCardApplyPermission" => { Some(Self::PlayerActionPlanetFesCardApplyPermission) } - "PLAYER_ACTION_PLANET_FES_CARD_INTERACT" => { + "PlayerActionType_PlayerActionPlanetFesCardInteract" => { Some(Self::PlayerActionPlanetFesCardInteract) } - "PLAYER_ACTION_PLANET_FES_TO_SNS" => Some(Self::PlayerActionPlanetFesToSns), - "PLAYER_ACTION_PLANET_FES_SET_WORK_AVATAR" => { + "PlayerActionType_PlayerActionPlanetFesToSns" => { + Some(Self::PlayerActionPlanetFesToSns) + } + "PlayerActionType_PlayerActionPlanetFesSetWorkAvatar" => { Some(Self::PlayerActionPlanetFesSetWorkAvatar) } - "PLAYER_ACTION_PLANET_FES_SUMMARY" => { + "PlayerActionType_PlayerActionPlanetFesSummary" => { Some(Self::PlayerActionPlanetFesSummary) } - "PLAYER_ACTION_TAROT_BOOK_CHARACTER_LEVEL_UP" => { + "PlayerActionType_PlayerActionTarotBookCharacterLevelUp" => { Some(Self::PlayerActionTarotBookCharacterLevelUp) } - "PLAYER_ACTION_TAROT_BOOK_OPEN_PACK" => { + "PlayerActionType_PlayerActionTarotBookOpenPack" => { Some(Self::PlayerActionTarotBookOpenPack) } - "PLAYER_ACTION_TAROT_BOOK_UNLOCK_STORY" => { + "PlayerActionType_PlayerActionTarotBookUnlockStory" => { Some(Self::PlayerActionTarotBookUnlockStory) } - "PLAYER_ACTION_TAROT_BOOK_UNLOCK_STORY_SINGLE" => { + "PlayerActionType_PlayerActionTarotBookUnlockStorySingle" => { Some(Self::PlayerActionTarotBookUnlockStorySingle) } - "PLAYER_ACTION_TAROT_BOOK_FINISH_STORY" => { + "PlayerActionType_PlayerActionTarotBookFinishStory" => { Some(Self::PlayerActionTarotBookFinishStory) } - "PLAYER_ACTION_TAROT_BOOK_FINISH_INTERACTION" => { + "PlayerActionType_PlayerActionTarotBookFinishInteraction" => { Some(Self::PlayerActionTarotBookFinishInteraction) } - "PLAYER_ACTION_TAROT_BOOK_CHANGE_ENERGY" => { + "PlayerActionType_PlayerActionTarotBookChangeEnergy" => { Some(Self::PlayerActionTarotBookChangeEnergy) } - "PLAYER_ACTION_TAROT_BOOK_UNLOCK_INTERACTION" => { + "PlayerActionType_PlayerActionTarotBookUnlockInteraction" => { Some(Self::PlayerActionTarotBookUnlockInteraction) } - "PLAYER_ACTION_CHIMERA_ROUND_START" => { + "PlayerActionType_PlayerActionChimeraRoundStart" => { Some(Self::PlayerActionChimeraRoundStart) } - "PLAYER_ACTION_CHIMERA_ROUND_WORK_START" => { + "PlayerActionType_PlayerActionChimeraRoundWorkStart" => { Some(Self::PlayerActionChimeraRoundWorkStart) } - "PLAYER_ACTION_CHIMERA_ROUND_WORK_END" => { + "PlayerActionType_PlayerActionChimeraRoundWorkEnd" => { Some(Self::PlayerActionChimeraRoundWorkEnd) } - "PLAYER_ACTION_CHIMERA_ENDLESS_START" => { + "PlayerActionType_PlayerActionChimeraEndlessStart" => { Some(Self::PlayerActionChimeraEndlessStart) } - "PLAYER_ACTION_CHIMERA_ENDLESS_END" => { + "PlayerActionType_PlayerActionChimeraEndlessEnd" => { Some(Self::PlayerActionChimeraEndlessEnd) } - "PLAYER_ACTION_CHIMERA_ENDLESS_WORK_START" => { + "PlayerActionType_PlayerActionChimeraEndlessWorkStart" => { Some(Self::PlayerActionChimeraEndlessWorkStart) } - "PLAYER_ACTION_CHIMERA_ENDLESS_WORK_END" => { + "PlayerActionType_PlayerActionChimeraEndlessWorkEnd" => { Some(Self::PlayerActionChimeraEndlessWorkEnd) } - "PLAYER_ACTION_CHIMERA_RANK_CHANGE" => { + "PlayerActionType_PlayerActionChimeraRankChange" => { Some(Self::PlayerActionChimeraRankChange) } - "PLAYER_ACTION_CHIMERA_GET" => Some(Self::PlayerActionChimeraGet), - "PLAYER_ACTION_STORY_TOKEN_TAKE_ACTIVITY_REWARD" => { + "PlayerActionType_PlayerActionChimeraGet" => { + Some(Self::PlayerActionChimeraGet) + } + "PlayerActionType_PlayerActionStoryTokenTakeActivityReward" => { Some(Self::PlayerActionStoryTokenTakeActivityReward) } - "PLAYER_ACTION_REISSUE_AVATAR_TOKEN_ITEM" => { + "PlayerActionType_PlayerActionReissueAvatarTokenItem" => { Some(Self::PlayerActionReissueAvatarTokenItem) } - "PLAYER_ACTION_AVATAR_DELIVER_REWARD_ACTIVITY_TAKE_REWARD" => { + "PlayerActionType_PlayerActionAvatarDeliverRewardActivityTakeReward" => { Some(Self::PlayerActionAvatarDeliverRewardActivityTakeReward) } - "PLAYER_ACTION_ELF_RESTAURANT_BUY_FIELD" => { + "PlayerActionType_PlayerActionElfRestaurantBuyField" => { Some(Self::PlayerActionElfRestaurantBuyField) } - "PLAYER_ACTION_ELF_RESTAURANT_PLANT_SEED" => { + "PlayerActionType_PlayerActionElfRestaurantPlantSeed" => { Some(Self::PlayerActionElfRestaurantPlantSeed) } - "PLAYER_ACTION_ELF_RESTAURANT_RECYCLE_SEED" => { + "PlayerActionType_PlayerActionElfRestaurantRecycleSeed" => { Some(Self::PlayerActionElfRestaurantRecycleSeed) } - "PLAYER_ACTION_ELF_RESTAURANT_HARVEST_CROP" => { + "PlayerActionType_PlayerActionElfRestaurantHarvestCrop" => { Some(Self::PlayerActionElfRestaurantHarvestCrop) } - "PLAYER_ACTION_ELF_RESTAURANT_UPGRADE_EMPLOYEE_LEVEL" => { + "PlayerActionType_PlayerActionElfRestaurantUpgradeEmployeeLevel" => { Some(Self::PlayerActionElfRestaurantUpgradeEmployeeLevel) } - "PLAYER_ACTION_ELF_RESTAURANT_UPGRADE_FACILITY_LEVEL" => { + "PlayerActionType_PlayerActionElfRestaurantUpgradeFacilityLevel" => { Some(Self::PlayerActionElfRestaurantUpgradeFacilityLevel) } - "PLAYER_ACTION_ELF_RESTAURANT_UPGRADE_RECIPE_LEVEL" => { + "PlayerActionType_PlayerActionElfRestaurantUpgradeRecipeLevel" => { Some(Self::PlayerActionElfRestaurantUpgradeRecipeLevel) } - "PLAYER_ACTION_ELF_RESTAURANT_BUY_SHOP_ITEM" => { + "PlayerActionType_PlayerActionElfRestaurantBuyShopItem" => { Some(Self::PlayerActionElfRestaurantBuyShopItem) } - "PLAYER_ACTION_ELF_RESTAURANT_FINISH_TRADE_ORDER" => { + "PlayerActionType_PlayerActionElfRestaurantFinishTradeOrder" => { Some(Self::PlayerActionElfRestaurantFinishTradeOrder) } - "PLAYER_ACTION_ELF_RESTAURANT_TAKE_VILLAGER_REWARD" => { + "PlayerActionType_PlayerActionElfRestaurantTakeVillagerReward" => { Some(Self::PlayerActionElfRestaurantTakeVillagerReward) } - "PLAYER_ACTION_ELF_RESTAURANT_SETTLE_RESTAURANT_PLAY" => { + "PlayerActionType_PlayerActionElfRestaurantSettleRestaurantPlay" => { Some(Self::PlayerActionElfRestaurantSettleRestaurantPlay) } - "PLAYER_ACTION_ELF_RESTAURANT_INIT" => { + "PlayerActionType_PlayerActionElfRestaurantInit" => { Some(Self::PlayerActionElfRestaurantInit) } - "PLAYER_ACTION_ELF_RESTAURANT_SETTLE_PROGRESS" => { + "PlayerActionType_PlayerActionElfRestaurantSettleProgress" => { Some(Self::PlayerActionElfRestaurantSettleProgress) } - "PLAYER_ACTION_ELF_RESTAURANT_SETTLE_DAY" => { + "PlayerActionType_PlayerActionElfRestaurantSettleDay" => { Some(Self::PlayerActionElfRestaurantSettleDay) } - "PLAYER_ACTION_ELF_RESTAURANT_ADD_ITEM" => { + "PlayerActionType_PlayerActionElfRestaurantAddItem" => { Some(Self::PlayerActionElfRestaurantAddItem) } - "PLAYER_ACTION_LOCAL_LEGEND_REWARD" => { + "PlayerActionType_PlayerActionLocalLegendReward" => { Some(Self::PlayerActionLocalLegendReward) } - "PLAYER_ACTION_FATE_LEVEL_START" => Some(Self::PlayerActionFateLevelStart), - "PLAYER_ACTION_FATE_LEVEL_SETTLE" => Some(Self::PlayerActionFateLevelSettle), - "PLAYER_ACTION_FATE_BATTLE_START" => Some(Self::PlayerActionFateBattleStart), - "PLAYER_ACTION_FATE_BATTLE_END" => Some(Self::PlayerActionFateBattleEnd), - "PLAYER_ACTION_FATE_ADD_HOUGU" => Some(Self::PlayerActionFateAddHougu), - "PLAYER_ACTION_FATE_SELECT_HOUGU" => Some(Self::PlayerActionFateSelectHougu), - "PLAYER_ACTION_FATE_SELECT_REIJU" => Some(Self::PlayerActionFateSelectReiju), - "PLAYER_ACTION_FATE_REFRESH_REIJU" => { + "PlayerActionType_PlayerActionFateLevelStart" => { + Some(Self::PlayerActionFateLevelStart) + } + "PlayerActionType_PlayerActionFateLevelSettle" => { + Some(Self::PlayerActionFateLevelSettle) + } + "PlayerActionType_PlayerActionFateBattleStart" => { + Some(Self::PlayerActionFateBattleStart) + } + "PlayerActionType_PlayerActionFateBattleEnd" => { + Some(Self::PlayerActionFateBattleEnd) + } + "PlayerActionType_PlayerActionFateAddHougu" => { + Some(Self::PlayerActionFateAddHougu) + } + "PlayerActionType_PlayerActionFateSelectHougu" => { + Some(Self::PlayerActionFateSelectHougu) + } + "PlayerActionType_PlayerActionFateSelectReiju" => { + Some(Self::PlayerActionFateSelectReiju) + } + "PlayerActionType_PlayerActionFateRefreshReiju" => { Some(Self::PlayerActionFateRefreshReiju) } - "PLAYER_ACTION_FATE_ADD_COIN" => Some(Self::PlayerActionFateAddCoin), - "PLAYER_ACTION_FATE_BUY_BUFF" => Some(Self::PlayerActionFateBuyBuff), - "PLAYER_ACTION_FATE_SELL_BUFF" => Some(Self::PlayerActionFateSellBuff), - "PLAYER_ACTION_FATE_REFRESH_SHOP" => Some(Self::PlayerActionFateRefreshShop), - "PLAYER_ACTION_FATE_LOCK_GOODS" => Some(Self::PlayerActionFateLockGoods), - "PLAYER_ACTION_FATE_UNLOCK_GOODS" => Some(Self::PlayerActionFateUnlockGoods), - "PLAYER_ACTION_FATE_TAKE_EXP_REWARD" => { + "PlayerActionType_PlayerActionFateAddCoin" => { + Some(Self::PlayerActionFateAddCoin) + } + "PlayerActionType_PlayerActionFateBuyBuff" => { + Some(Self::PlayerActionFateBuyBuff) + } + "PlayerActionType_PlayerActionFateSellBuff" => { + Some(Self::PlayerActionFateSellBuff) + } + "PlayerActionType_PlayerActionFateRefreshShop" => { + Some(Self::PlayerActionFateRefreshShop) + } + "PlayerActionType_PlayerActionFateLockGoods" => { + Some(Self::PlayerActionFateLockGoods) + } + "PlayerActionType_PlayerActionFateUnlockGoods" => { + Some(Self::PlayerActionFateUnlockGoods) + } + "PlayerActionType_PlayerActionFateTakeExpReward" => { Some(Self::PlayerActionFateTakeExpReward) } - "PLAYER_ACTION_FATE_ADD_EXP" => Some(Self::PlayerActionFateAddExp), - "PLAYER_ACTION_FATE_MASTER_HP_CHANGE" => { + "PlayerActionType_PlayerActionFateAddExp" => { + Some(Self::PlayerActionFateAddExp) + } + "PlayerActionType_PlayerActionFateMasterHpChange" => { Some(Self::PlayerActionFateMasterHpChange) } - "PLAYER_ACTION_PARKOUR_START_LEVEL" => { + "PlayerActionType_PlayerActionParkourStartLevel" => { Some(Self::PlayerActionParkourStartLevel) } - "PLAYER_ACTION_PARKOUR_END_LEVEL" => Some(Self::PlayerActionParkourEndLevel), - "PLAYER_ACTION_BASIN_CHEST_INTERACT_RESULT" => { + "PlayerActionType_PlayerActionParkourEndLevel" => { + Some(Self::PlayerActionParkourEndLevel) + } + "PlayerActionType_PlayerActionBasinChestInteractResult" => { Some(Self::PlayerActionBasinChestInteractResult) } - "PLAYER_ACTION_ROGUE_MIRACLE_SWAP" => { + "PlayerActionType_PlayerActionRogueMiracleSwap" => { Some(Self::PlayerActionRogueMiracleSwap) } - "PLAYER_ACTION_HIPPLEN_ENDING_TAKE_REWARD" => { + "PlayerActionType_PlayerActionHipplenEndingTakeReward" => { Some(Self::PlayerActionHipplenEndingTakeReward) } - "PLAYER_ACTION_HIPPLEN_GIFT_DELIVER_REWARD" => { + "PlayerActionType_PlayerActionHipplenGiftDeliverReward" => { Some(Self::PlayerActionHipplenGiftDeliverReward) } - "PLAYER_ACTION_HIPPLEN_CYCLE_START" => { + "PlayerActionType_PlayerActionHipplenCycleStart" => { Some(Self::PlayerActionHipplenCycleStart) } - "PLAYER_ACTION_HIPPLEN_CYCLE_FINISH" => { + "PlayerActionType_PlayerActionHipplenCycleFinish" => { Some(Self::PlayerActionHipplenCycleFinish) } - "PLAYER_ACTION_HIPPLEN_AGENDA_PLAN" => { + "PlayerActionType_PlayerActionHipplenAgendaPlan" => { Some(Self::PlayerActionHipplenAgendaPlan) } - "PLAYER_ACTION_HIPPLEN_AGENDA_SETTLE" => { + "PlayerActionType_PlayerActionHipplenAgendaSettle" => { Some(Self::PlayerActionHipplenAgendaSettle) } - "PLAYER_ACTION_HIPPLEN_TRIAL_START" => { + "PlayerActionType_PlayerActionHipplenTrialStart" => { Some(Self::PlayerActionHipplenTrialStart) } - "PLAYER_ACTION_HIPPLEN_TRIAL_FINISH" => { + "PlayerActionType_PlayerActionHipplenTrialFinish" => { Some(Self::PlayerActionHipplenTrialFinish) } - "PLAYER_ACTION_HIPPLEN_STATUS_CHANGE" => { + "PlayerActionType_PlayerActionHipplenStatusChange" => { Some(Self::PlayerActionHipplenStatusChange) } - "PLAYER_ACTION_HIPPLEN_OUTFIT_CHANGE" => { + "PlayerActionType_PlayerActionHipplenOutfitChange" => { Some(Self::PlayerActionHipplenOutfitChange) } - "PLAYER_ACTION_HIPPLEN_TRAIT_UNLOCK" => { + "PlayerActionType_PlayerActionHipplenTraitUnlock" => { Some(Self::PlayerActionHipplenTraitUnlock) } - "PLAYER_ACTION_HIPPLEN_ENDING_UNLOCK" => { + "PlayerActionType_PlayerActionHipplenEndingUnlock" => { Some(Self::PlayerActionHipplenEndingUnlock) } - "PLAYER_ACTION_HIPPLEN_OUTFIT_UNLOCK" => { + "PlayerActionType_PlayerActionHipplenOutfitUnlock" => { Some(Self::PlayerActionHipplenOutfitUnlock) } - "PLAYER_ACTION_HIPPLEN_GIFT_UNLOCK" => { + "PlayerActionType_PlayerActionHipplenGiftUnlock" => { Some(Self::PlayerActionHipplenGiftUnlock) } - "PLAYER_ACTION_HIPPLEN_INCIDENT_FINISH" => { + "PlayerActionType_PlayerActionHipplenIncidentFinish" => { Some(Self::PlayerActionHipplenIncidentFinish) } - "PLAYER_ACTION_CHALLENGE_PEAK_START" => { + "PlayerActionType_PlayerActionChallengePeakStart" => { Some(Self::PlayerActionChallengePeakStart) } - "PLAYER_ACTION_CHALLENGE_PEAK_REWARD" => { + "PlayerActionType_PlayerActionChallengePeakReward" => { Some(Self::PlayerActionChallengePeakReward) } - "PLAYER_ACTION_CHALLENGE_PEAK_MOB_START" => { + "PlayerActionType_PlayerActionChallengePeakMobStart" => { Some(Self::PlayerActionChallengePeakMobStart) } - "PLAYER_ACTION_CHALLENGE_PEAK_MOB_SETTLE" => { + "PlayerActionType_PlayerActionChallengePeakMobSettle" => { Some(Self::PlayerActionChallengePeakMobSettle) } - "PLAYER_ACTION_CHALLENGE_PEAK_BOSS_START" => { + "PlayerActionType_PlayerActionChallengePeakBossStart" => { Some(Self::PlayerActionChallengePeakBossStart) } - "PLAYER_ACTION_CHALLENGE_PEAK_BOSS_SETTLE" => { + "PlayerActionType_PlayerActionChallengePeakBossSettle" => { Some(Self::PlayerActionChallengePeakBossSettle) } - "PLAYER_ACTION_CHALLENGE_PEAK_FAST_PASS" => { + "PlayerActionType_PlayerActionChallengePeakFastPass" => { Some(Self::PlayerActionChallengePeakFastPass) } - "PLAYER_ACTION_CHALLENGE_PEAK_RECOMMEND_LINEUP" => { + "PlayerActionType_PlayerActionChallengePeakRecommendLineup" => { Some(Self::PlayerActionChallengePeakRecommendLineup) } - "PLAYER_ACTION_CHALLENGE_PEAK_MOB_BATTLE_END" => { + "PlayerActionType_PlayerActionChallengePeakMobBattleEnd" => { Some(Self::PlayerActionChallengePeakMobBattleEnd) } - "PLAYER_ACTION_CHALLENGE_PEAK_MOB_RECORD_CLEAR" => { + "PlayerActionType_PlayerActionChallengePeakMobRecordClear" => { Some(Self::PlayerActionChallengePeakMobRecordClear) } - "PLAYER_ACTION_CAKE_RACE_LOAN" => Some(Self::PlayerActionCakeRaceLoan), - "PLAYER_ACTION_CAKE_RACE_SECTION_BEGIN" => { + "PlayerActionType_PlayerActionCakeRaceLoan" => { + Some(Self::PlayerActionCakeRaceLoan) + } + "PlayerActionType_PlayerActionCakeRaceSectionBegin" => { Some(Self::PlayerActionCakeRaceSectionBegin) } - "PLAYER_ACTION_CAKE_RACE_SECTION_END" => { + "PlayerActionType_PlayerActionCakeRaceSectionEnd" => { Some(Self::PlayerActionCakeRaceSectionEnd) } - "PLAYER_ACTION_CAKE_RACE_ROOM_SECTION_SETTLE" => { + "PlayerActionType_PlayerActionCakeRaceRoomSectionSettle" => { Some(Self::PlayerActionCakeRaceRoomSectionSettle) } - "PLAYER_ACTION_CAKE_RACE_GAME_SETTLE" => { + "PlayerActionType_PlayerActionCakeRaceGameSettle" => { Some(Self::PlayerActionCakeRaceGameSettle) } - "PLAYER_ACTION_CAKE_RACE_GAME_BET_CAT" => { + "PlayerActionType_PlayerActionCakeRaceGameBetCat" => { Some(Self::PlayerActionCakeRaceGameBetCat) } - "PLAYER_ACTION_CAKE_RACE_GAME_WIN_COIN" => { + "PlayerActionType_PlayerActionCakeRaceGameWinCoin" => { Some(Self::PlayerActionCakeRaceGameWinCoin) } - "PLAYER_ACTION_CAKE_RACE_LIKE_FRIEND_RANKING" => { + "PlayerActionType_PlayerActionCakeRaceLikeFriendRanking" => { Some(Self::PlayerActionCakeRaceLikeFriendRanking) } - "PLAYER_ACTION_ELATION_BATTLE_BEGIN" => { + "PlayerActionType_PlayerActionElationBattleBegin" => { Some(Self::PlayerActionElationBattleBegin) } - "PLAYER_ACTION_ELATION_BATTLE_END" => { + "PlayerActionType_PlayerActionElationBattleEnd" => { Some(Self::PlayerActionElationBattleEnd) } - "PLAYER_ACTION_ACTIVITY_HOT_DATA_CHANGE" => { + "PlayerActionType_PlayerActionActivityHotDataChange" => { Some(Self::PlayerActionActivityHotDataChange) } - "PLAYER_ACTION_GRID_FIGHT_GAME_START" => { + "PlayerActionType_PlayerActionChimeraDuelGameSettle" => { + Some(Self::PlayerActionChimeraDuelGameSettle) + } + "PlayerActionType_PlayerActionChimeraDuelMasterUnlock" => { + Some(Self::PlayerActionChimeraDuelMasterUnlock) + } + "PlayerActionType_PlayerActionChimeraDuelGameStart" => { + Some(Self::PlayerActionChimeraDuelGameStart) + } + "PlayerActionType_PlayerActionChimeraDuelBattleStart" => { + Some(Self::PlayerActionChimeraDuelBattleStart) + } + "PlayerActionType_PlayerActionChimeraDuelBattleEnd" => { + Some(Self::PlayerActionChimeraDuelBattleEnd) + } + "PlayerActionType_PlayerActionChimeraDuelChimeraBuy" => { + Some(Self::PlayerActionChimeraDuelChimeraBuy) + } + "PlayerActionType_PlayerActionChimeraDuelItemBuy" => { + Some(Self::PlayerActionChimeraDuelItemBuy) + } + "PlayerActionType_PlayerActionChimeraDuelShopRefresh" => { + Some(Self::PlayerActionChimeraDuelShopRefresh) + } + "PlayerActionType_PlayerActionChimeraDuelChimeraEnhance" => { + Some(Self::PlayerActionChimeraDuelChimeraEnhance) + } + "PlayerActionType_PlayerActionChimeraDuelChimeraSell" => { + Some(Self::PlayerActionChimeraDuelChimeraSell) + } + "PlayerActionType_PlayerActionChimeraDuelShopStart" => { + Some(Self::PlayerActionChimeraDuelShopStart) + } + "PlayerActionType_PlayerActionChimeraDuelShopEnd" => { + Some(Self::PlayerActionChimeraDuelShopEnd) + } + "PlayerActionType_PlayerActionChimeraDuelFriendPvpLineupSave" => { + Some(Self::PlayerActionChimeraDuelFriendPvpLineupSave) + } + "PlayerActionType_PlayerActionChimeraDuelDefendLineupSet" => { + Some(Self::PlayerActionChimeraDuelDefendLineupSet) + } + "PlayerActionType_PlayerActionGridFightGameStart" => { Some(Self::PlayerActionGridFightGameStart) } - "PLAYER_ACTION_GRID_FIGHT_GAME_END" => { + "PlayerActionType_PlayerActionGridFightGameEnd" => { Some(Self::PlayerActionGridFightGameEnd) } - "PLAYER_ACTION_GRID_FIGHT_ROUND_START" => { + "PlayerActionType_PlayerActionGridFightRoundStart" => { Some(Self::PlayerActionGridFightRoundStart) } - "PLAYER_ACTION_GRID_FIGHT_ROUND_END" => { + "PlayerActionType_PlayerActionGridFightRoundEnd" => { Some(Self::PlayerActionGridFightRoundEnd) } - "PLAYER_ACTION_GRID_FIGHT_BATTLE_START" => { + "PlayerActionType_PlayerActionGridFightBattleStart" => { Some(Self::PlayerActionGridFightBattleStart) } - "PLAYER_ACTION_GRID_FIGHT_BATTLE_END" => { + "PlayerActionType_PlayerActionGridFightBattleEnd" => { Some(Self::PlayerActionGridFightBattleEnd) } - "PLAYER_ACTION_GRID_FIGHT_BATTLE_ROLE" => { + "PlayerActionType_PlayerActionGridFightBattleRole" => { Some(Self::PlayerActionGridFightBattleRole) } - "PLAYER_ACTION_GRID_FIGHT_PORTAL_REFRESH" => { + "PlayerActionType_PlayerActionGridFightPortalRefresh" => { Some(Self::PlayerActionGridFightPortalRefresh) } - "PLAYER_ACTION_GRID_FIGHT_PORTAL_SELECT" => { + "PlayerActionType_PlayerActionGridFightPortalSelect" => { Some(Self::PlayerActionGridFightPortalSelect) } - "PLAYER_ACTION_GRID_FIGHT_AUGMENT_REFRESH" => { + "PlayerActionType_PlayerActionGridFightAugmentRefresh" => { Some(Self::PlayerActionGridFightAugmentRefresh) } - "PLAYER_ACTION_GRID_FIGHT_AUGMENT_SELECT" => { + "PlayerActionType_PlayerActionGridFightAugmentSelect" => { Some(Self::PlayerActionGridFightAugmentSelect) } - "PLAYER_ACTION_GRID_FIGHT_SHOP_REFRESH" => { + "PlayerActionType_PlayerActionGridFightShopRefresh" => { Some(Self::PlayerActionGridFightShopRefresh) } - "PLAYER_ACTION_GRID_FIGHT_SHOP_BUY" => { + "PlayerActionType_PlayerActionGridFightShopBuy" => { Some(Self::PlayerActionGridFightShopBuy) } - "PLAYER_ACTION_GRID_FIGHT_SUPPLY_REFRESH" => { + "PlayerActionType_PlayerActionGridFightSupplyRefresh" => { Some(Self::PlayerActionGridFightSupplyRefresh) } - "PLAYER_ACTION_GRID_FIGHT_SUPPLY_SELECT" => { + "PlayerActionType_PlayerActionGridFightSupplySelect" => { Some(Self::PlayerActionGridFightSupplySelect) } - "PLAYER_ACTION_GRID_FIGHT_FORGE_OPEN" => { + "PlayerActionType_PlayerActionGridFightForgeOpen" => { Some(Self::PlayerActionGridFightForgeOpen) } - "PLAYER_ACTION_GRID_FIGHT_SPECIAL_SHOP_BUY" => { + "PlayerActionType_PlayerActionGridFightSpecialShopBuy" => { Some(Self::PlayerActionGridFightSpecialShopBuy) } - "PLAYER_ACTION_GRID_FIGHT_GET_EXP" => Some(Self::PlayerActionGridFightGetExp), - "PLAYER_ACTION_GRID_FIGHT_GET_ORB" => Some(Self::PlayerActionGridFightGetOrb), - "PLAYER_ACTION_GRID_FIGHT_USE_ORB" => Some(Self::PlayerActionGridFightUseOrb), - "PLAYER_ACTION_GRID_FIGHT_GET_ROLE" => { + "PlayerActionType_PlayerActionGridFightGetExp" => { + Some(Self::PlayerActionGridFightGetExp) + } + "PlayerActionType_PlayerActionGridFightGetOrb" => { + Some(Self::PlayerActionGridFightGetOrb) + } + "PlayerActionType_PlayerActionGridFightUseOrb" => { + Some(Self::PlayerActionGridFightUseOrb) + } + "PlayerActionType_PlayerActionGridFightGetRole" => { Some(Self::PlayerActionGridFightGetRole) } - "PLAYER_ACTION_GRID_FIGHT_GET_COIN" => { + "PlayerActionType_PlayerActionGridFightGetCoin" => { Some(Self::PlayerActionGridFightGetCoin) } - "PLAYER_ACTION_GRID_FIGHT_GET_FREE_REFRESH" => { + "PlayerActionType_PlayerActionGridFightGetFreeRefresh" => { Some(Self::PlayerActionGridFightGetFreeRefresh) } - "PLAYER_ACTION_GRID_FIGHT_GET_ITEM" => { + "PlayerActionType_PlayerActionGridFightGetItem" => { Some(Self::PlayerActionGridFightGetItem) } - "PLAYER_ACTION_GRID_FIGHT_GET_EQUIP" => { + "PlayerActionType_PlayerActionGridFightGetEquip" => { Some(Self::PlayerActionGridFightGetEquip) } - "PLAYER_ACTION_GRID_FIGHT_DRESS_EQUIP" => { + "PlayerActionType_PlayerActionGridFightDressEquip" => { Some(Self::PlayerActionGridFightDressEquip) } - "PLAYER_ACTION_GRID_FIGHT_GET_HP" => Some(Self::PlayerActionGridFightGetHp), - "PLAYER_ACTION_GRID_FIGHT_WEEKLY_SCORE_CHANGE" => { + "PlayerActionType_PlayerActionGridFightGetHp" => { + Some(Self::PlayerActionGridFightGetHp) + } + "PlayerActionType_PlayerActionGridFightWeeklyScoreChange" => { Some(Self::PlayerActionGridFightWeeklyScoreChange) } - "PLAYER_ACTION_GRID_FIGHT_GET_WEEKLY_REWARD" => { + "PlayerActionType_PlayerActionGridFightGetWeeklyReward" => { Some(Self::PlayerActionGridFightGetWeeklyReward) } - "PLAYER_ACTION_GRID_FIGHT_SEASON_EXP_CHANGE" => { + "PlayerActionType_PlayerActionGridFightSeasonExpChange" => { Some(Self::PlayerActionGridFightSeasonExpChange) } - "PLAYER_ACTION_GRID_FIGHT_TALENT_ENABLE" => { + "PlayerActionType_PlayerActionGridFightTalentEnable" => { Some(Self::PlayerActionGridFightTalentEnable) } - "PLAYER_ACTION_GRID_FIGHT_TALENT_RESET" => { + "PlayerActionType_PlayerActionGridFightTalentReset" => { Some(Self::PlayerActionGridFightTalentReset) } - "PLAYER_ACTION_GRID_FIGHT_TUTORIAL_TASK_FINISH" => { + "PlayerActionType_PlayerActionGridFightTutorialTaskFinish" => { Some(Self::PlayerActionGridFightTutorialTaskFinish) } - "PLAYER_ACTION_GRID_FIGHT_ELITE_BRANCH_REFRESH" => { + "PlayerActionType_PlayerActionGridFightEliteBranchRefresh" => { Some(Self::PlayerActionGridFightEliteBranchRefresh) } + "PlayerActionType_PlayerActionGridFightTutorialResume" => { + Some(Self::PlayerActionGridFightTutorialResume) + } + "PlayerActionType_PlayerActionLocalLegendBattleBegin" => { + Some(Self::PlayerActionLocalLegendBattleBegin) + } + "PlayerActionType_PlayerActionLocalLegendBattleEnd" => { + Some(Self::PlayerActionLocalLegendBattleEnd) + } _ => None, } } @@ -58317,29 +60229,29 @@ impl PlayerActionType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum AvatarSlot { - AvatarSlot1 = 0, - AvatarSlot2 = 1, - AvatarSlot3 = 2, +pub enum AvatarSlotType { + NdkmdpdfldoIidcfjablfn = 0, + NdkmdpdfldoHfoojaacibp = 1, + NdkmdpdfldoMbgbmdkaech = 2, } -impl AvatarSlot { +impl AvatarSlotType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::AvatarSlot1 => "AVATAR_SLOT_1", - Self::AvatarSlot2 => "AVATAR_SLOT_2", - Self::AvatarSlot3 => "AVATAR_SLOT_3", + Self::NdkmdpdfldoIidcfjablfn => "NDKMDPDFLDO_IIDCFJABLFN", + Self::NdkmdpdfldoHfoojaacibp => "NDKMDPDFLDO_HFOOJAACIBP", + Self::NdkmdpdfldoMbgbmdkaech => "NDKMDPDFLDO_MBGBMDKAECH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "AVATAR_SLOT_1" => Some(Self::AvatarSlot1), - "AVATAR_SLOT_2" => Some(Self::AvatarSlot2), - "AVATAR_SLOT_3" => Some(Self::AvatarSlot3), + "NDKMDPDFLDO_IIDCFJABLFN" => Some(Self::NdkmdpdfldoIidcfjablfn), + "NDKMDPDFLDO_HFOOJAACIBP" => Some(Self::NdkmdpdfldoHfoojaacibp), + "NDKMDPDFLDO_MBGBMDKAECH" => Some(Self::NdkmdpdfldoMbgbmdkaech), _ => None, } } @@ -58387,72 +60299,73 @@ impl ItemType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum VirtualItemType { - VirtualItemNone = 0, - VirtualItemHcoin = 1, - VirtualItemScoin = 2, - VirtualItemMcoin = 3, - VirtualItemStamina = 11, - VirtualItemReserveStamina = 12, - VirtualItemAvatarExp = 21, - VirtualItemExp = 22, - VirtualItemDailyActivePoint = 23, - VirtualItemMpMax = 24, - VirtualItemPlayerReturnPoint = 25, - VirtualItemBattleCollegePoint = 26, - VirtualItemRogueCoin = 31, - VirtualItemRogueTalentCoin = 32, - VirtualItemRogueRewardKey = 33, - VirtualItemRogueSuperRewardKey = 34, - VirtualItemAchievementExp = 41, - VirtualItemBpExp = 51, - VirtualItemBpRealExp = 52, - VirtualItemMuseumFunds = 53, - VirtualTrainpartyBuildingFunds = 54, - VirtualTrainpartyAreaUnlockCoin = 55, - VirtualTrainpartyMobility = 56, - VirtualItemWarriorExp = 190, - VirtualItemRogueExp = 191, - VirtualItemMageExp = 192, - VirtualItemShamanExp = 193, - VirtualItemWarlockExp = 194, - VirtualItemKnightExp = 195, - VirtualItemPriestExp = 196, - VirtualItemPunkLordPoint = 100000, - VirtualItemGameplayCounterMonsterSneakVision = 280001, - VirtualItemGameplayCounterWolfBroBullet = 280002, - VirtualItemAlleyFunds = 281001, - VirtualItemRoguePumanCoupon = 281012, - VirtualItemMonthCard = 300101, - VirtualItemBpNormal = 300102, - VirtualItemBpDeluxe = 300103, - VirtualItemBpUpgrade = 300104, - VirtualItemHeliobusFans = 281002, - VirtualItemSpaceZooHybridItem = 281003, - VirtualItemSpaceZooExpPoint = 281004, - VirtualItemRogueNousTalentCoin = 281013, - VirtualItemEvolveBuildCoin = 281019, - VirtualItemDrinkMakerTip = 281005, - VirtualItemMonopolyDice = 281014, - VirtualItemMonopolyCoin = 281015, - VirtualItemMonopolyCheatdice = 281016, - VirtualItemMonopolyReroll = 281017, - VirtualItemRogueTournPermanentTalentCoin = 281018, - VirtualItemRogueTournSeasonTalentCoin = 281020, - VirtualItemRogueTournExp = 281022, - VirtualItemMatchthreeCoin = 281024, - VirtualItemSwordTrainingSkillPoint = 281023, - VirtualItemFightFestCoin = 281025, - VirtualItemRogueMagicTalentCoin = 281026, - VirtualItemEvolveBuildScCoin = 281027, - VirtualItemEvolveBuildRewardExp = 281028, - VirtualItemMatchthreeV2Coin = 281029, - VirtualItemGridFightCoin = 281031, - VirtualItemGridFightTalentCoin = 281032, - VirtualItemGridFightSeasonExp = 281033, - VirtualItemGridFightGameplayExp = 281034, - VirtualItemGridFightFreeRefreshTimes = 281035, - VirtualItemCakeRaceCoin = 281038, - VirtualItemCakeRaceScore = 281039, + AhmjgehfjjlCclepcgfleb = 0, + AhmjgehfjjlEpfgooenjgc = 1, + AhmjgehfjjlDcohffghonj = 2, + AhmjgehfjjlJlgapjffonm = 3, + AhmjgehfjjlOgoccppngin = 11, + AhmjgehfjjlBipgdfeggho = 12, + AhmjgehfjjlEnhkkmphnll = 21, + AhmjgehfjjlGedjedpodkb = 22, + AhmjgehfjjlPldclfinfpd = 23, + AhmjgehfjjlGfmmbeneldg = 24, + AhmjgehfjjlJmpljofddcc = 25, + AhmjgehfjjlCjmcmidohhn = 26, + AhmjgehfjjlAkghfmhpnoc = 31, + AhmjgehfjjlKibaaocfgim = 32, + AhmjgehfjjlNckneomlnka = 33, + AhmjgehfjjlAljonfgfcfa = 34, + AhmjgehfjjlPongoamfgah = 41, + AhmjgehfjjlGdeflmciocp = 51, + AhmjgehfjjlFiinpglfihd = 52, + AhmjgehfjjlIhgfofmbfng = 53, + AhmjgehfjjlMcjbdepdfon = 54, + AhmjgehfjjlGhbhkehjljl = 55, + AhmjgehfjjlChcjkjhkjlc = 56, + AhmjgehfjjlLjlbegdhnnn = 190, + AhmjgehfjjlNbmghainlfn = 191, + AhmjgehfjjlEkaacbbiedp = 192, + AhmjgehfjjlKcgnbfemjpf = 193, + AhmjgehfjjlGfhamcmfdlb = 194, + AhmjgehfjjlBejhdkhicli = 195, + AhmjgehfjjlIkkagpccldh = 196, + AhmjgehfjjlKopcieiilni = 100000, + AhmjgehfjjlHamoeigppme = 280001, + AhmjgehfjjlLhhpnijbkod = 280002, + AhmjgehfjjlNnaafbfkjfi = 281001, + AhmjgehfjjlGdobjeonkef = 281012, + AhmjgehfjjlIaoddjelpjd = 300101, + AhmjgehfjjlPjnnldghodo = 300102, + AhmjgehfjjlPccmnmioiog = 300103, + AhmjgehfjjlOomjekeebjj = 300104, + AhmjgehfjjlMimkappimnl = 281002, + AhmjgehfjjlNaagamnnnhg = 281003, + AhmjgehfjjlFbfemgkbdcp = 281004, + AhmjgehfjjlHcoohgjjipk = 281013, + AhmjgehfjjlEapdelmfjib = 281019, + AhmjgehfjjlAenfmmiimdj = 281005, + AhmjgehfjjlIlnkjcokbgb = 281014, + AhmjgehfjjlNliceecnkio = 281015, + AhmjgehfjjlCoglkgajgcj = 281016, + AhmjgehfjjlGhmamdmieab = 281017, + AhmjgehfjjlPjhchgccked = 281018, + AhmjgehfjjlMnibfphfbif = 281020, + AhmjgehfjjlMlfnbmbleah = 281022, + AhmjgehfjjlKbiopmhhjfj = 281024, + AhmjgehfjjlLdhkaabpdbi = 281023, + AhmjgehfjjlNahclhalfcg = 281025, + AhmjgehfjjlOgbpggimmjd = 281026, + AhmjgehfjjlGkjkhkjakef = 281027, + AhmjgehfjjlPdojgiljmoh = 281028, + AhmjgehfjjlIdfinfodgii = 281029, + AhmjgehfjjlAgknccjbcjd = 281031, + AhmjgehfjjlOdnihepecdl = 281032, + AhmjgehfjjlKldkglimaaa = 281033, + AhmjgehfjjlIjgddillmdk = 281034, + AhmjgehfjjlEidjdmpakma = 281035, + AhmjgehfjjlAlokcamblpe = 281037, + AhmjgehfjjlDelkacdhdim = 281038, + AhmjgehfjjlJjllgoboigh = 281039, } impl VirtualItemType { /// String value of the enum field names used in the ProtoBuf definition. @@ -58461,201 +60374,145 @@ impl VirtualItemType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::VirtualItemNone => "VIRTUAL_ITEM_NONE", - Self::VirtualItemHcoin => "VIRTUAL_ITEM_HCOIN", - Self::VirtualItemScoin => "VIRTUAL_ITEM_SCOIN", - Self::VirtualItemMcoin => "VIRTUAL_ITEM_MCOIN", - Self::VirtualItemStamina => "VIRTUAL_ITEM_STAMINA", - Self::VirtualItemReserveStamina => "VIRTUAL_ITEM_RESERVE_STAMINA", - Self::VirtualItemAvatarExp => "VIRTUAL_ITEM_AVATAR_EXP", - Self::VirtualItemExp => "VIRTUAL_ITEM_EXP", - Self::VirtualItemDailyActivePoint => "VIRTUAL_ITEM_DAILY_ACTIVE_POINT", - Self::VirtualItemMpMax => "VIRTUAL_ITEM_MP_MAX", - Self::VirtualItemPlayerReturnPoint => "VIRTUAL_ITEM_PLAYER_RETURN_POINT", - Self::VirtualItemBattleCollegePoint => "VIRTUAL_ITEM_BATTLE_COLLEGE_POINT", - Self::VirtualItemRogueCoin => "VIRTUAL_ITEM_ROGUE_COIN", - Self::VirtualItemRogueTalentCoin => "VIRTUAL_ITEM_ROGUE_TALENT_COIN", - Self::VirtualItemRogueRewardKey => "VIRTUAL_ITEM_ROGUE_REWARD_KEY", - Self::VirtualItemRogueSuperRewardKey => "VIRTUAL_ITEM_ROGUE_SUPER_REWARD_KEY", - Self::VirtualItemAchievementExp => "VIRTUAL_ITEM_ACHIEVEMENT_EXP", - Self::VirtualItemBpExp => "VIRTUAL_ITEM_BP_EXP", - Self::VirtualItemBpRealExp => "VIRTUAL_ITEM_BP_REAL_EXP", - Self::VirtualItemMuseumFunds => "VIRTUAL_ITEM_MUSEUM_FUNDS", - Self::VirtualTrainpartyBuildingFunds => "VIRTUAL_TRAINPARTY_BUILDING_FUNDS", - Self::VirtualTrainpartyAreaUnlockCoin => { - "VIRTUAL_TRAINPARTY_AREA_UNLOCK_COIN" - } - Self::VirtualTrainpartyMobility => "VIRTUAL_TRAINPARTY_MOBILITY", - Self::VirtualItemWarriorExp => "VIRTUAL_ITEM_WARRIOR_EXP", - Self::VirtualItemRogueExp => "VIRTUAL_ITEM_ROGUE_EXP", - Self::VirtualItemMageExp => "VIRTUAL_ITEM_MAGE_EXP", - Self::VirtualItemShamanExp => "VIRTUAL_ITEM_SHAMAN_EXP", - Self::VirtualItemWarlockExp => "VIRTUAL_ITEM_WARLOCK_EXP", - Self::VirtualItemKnightExp => "VIRTUAL_ITEM_KNIGHT_EXP", - Self::VirtualItemPriestExp => "VIRTUAL_ITEM_PRIEST_EXP", - Self::VirtualItemPunkLordPoint => "VIRTUAL_ITEM_PUNK_LORD_POINT", - Self::VirtualItemGameplayCounterMonsterSneakVision => { - "VIRTUAL_ITEM_GAMEPLAY_COUNTER_MONSTER_SNEAK_VISION" - } - Self::VirtualItemGameplayCounterWolfBroBullet => { - "VIRTUAL_ITEM_GAMEPLAY_COUNTER_WOLF_BRO_BULLET" - } - Self::VirtualItemAlleyFunds => "VIRTUAL_ITEM_ALLEY_FUNDS", - Self::VirtualItemRoguePumanCoupon => "VIRTUAL_ITEM_ROGUE_PUMAN_COUPON", - Self::VirtualItemMonthCard => "VIRTUAL_ITEM_MONTH_CARD", - Self::VirtualItemBpNormal => "VIRTUAL_ITEM_BP_NORMAL", - Self::VirtualItemBpDeluxe => "VIRTUAL_ITEM_BP_DELUXE", - Self::VirtualItemBpUpgrade => "VIRTUAL_ITEM_BP_UPGRADE", - Self::VirtualItemHeliobusFans => "VIRTUAL_ITEM_HELIOBUS_FANS", - Self::VirtualItemSpaceZooHybridItem => "VIRTUAL_ITEM_SPACE_ZOO_HYBRID_ITEM", - Self::VirtualItemSpaceZooExpPoint => "VIRTUAL_ITEM_SPACE_ZOO_EXP_POINT", - Self::VirtualItemRogueNousTalentCoin => "VIRTUAL_ITEM_ROGUE_NOUS_TALENT_COIN", - Self::VirtualItemEvolveBuildCoin => "VIRTUAL_ITEM_EVOLVE_BUILD_COIN", - Self::VirtualItemDrinkMakerTip => "VIRTUAL_ITEM_DRINK_MAKER_TIP", - Self::VirtualItemMonopolyDice => "VIRTUAL_ITEM_MONOPOLY_DICE", - Self::VirtualItemMonopolyCoin => "VIRTUAL_ITEM_MONOPOLY_COIN", - Self::VirtualItemMonopolyCheatdice => "VIRTUAL_ITEM_MONOPOLY_CHEATDICE", - Self::VirtualItemMonopolyReroll => "VIRTUAL_ITEM_MONOPOLY_REROLL", - Self::VirtualItemRogueTournPermanentTalentCoin => { - "VIRTUAL_ITEM_ROGUE_TOURN_PERMANENT_TALENT_COIN" - } - Self::VirtualItemRogueTournSeasonTalentCoin => { - "VIRTUAL_ITEM_ROGUE_TOURN_SEASON_TALENT_COIN" - } - Self::VirtualItemRogueTournExp => "VIRTUAL_ITEM_ROGUE_TOURN_EXP", - Self::VirtualItemMatchthreeCoin => "VIRTUAL_ITEM_MATCHTHREE_COIN", - Self::VirtualItemSwordTrainingSkillPoint => { - "VIRTUAL_ITEM_SWORD_TRAINING_SKILL_POINT" - } - Self::VirtualItemFightFestCoin => "VIRTUAL_ITEM_FIGHT_FEST_COIN", - Self::VirtualItemRogueMagicTalentCoin => { - "VIRTUAL_ITEM_ROGUE_MAGIC_TALENT_COIN" - } - Self::VirtualItemEvolveBuildScCoin => "VIRTUAL_ITEM_EVOLVE_BUILD_SC_COIN", - Self::VirtualItemEvolveBuildRewardExp => { - "VIRTUAL_ITEM_EVOLVE_BUILD_REWARD_EXP" - } - Self::VirtualItemMatchthreeV2Coin => "VIRTUAL_ITEM_MATCHTHREE_V2_COIN", - Self::VirtualItemGridFightCoin => "VIRTUAL_ITEM_GRID_FIGHT_COIN", - Self::VirtualItemGridFightTalentCoin => "VIRTUAL_ITEM_GRID_FIGHT_TALENT_COIN", - Self::VirtualItemGridFightSeasonExp => "VIRTUAL_ITEM_GRID_FIGHT_SEASON_EXP", - Self::VirtualItemGridFightGameplayExp => { - "VIRTUAL_ITEM_GRID_FIGHT_GAMEPLAY_EXP" - } - Self::VirtualItemGridFightFreeRefreshTimes => { - "VIRTUAL_ITEM_GRID_FIGHT_FREE_REFRESH_TIMES" - } - Self::VirtualItemCakeRaceCoin => "VIRTUAL_ITEM_CAKE_RACE_COIN", - Self::VirtualItemCakeRaceScore => "VIRTUAL_ITEM_CAKE_RACE_SCORE", + Self::AhmjgehfjjlCclepcgfleb => "AHMJGEHFJJL_CCLEPCGFLEB", + Self::AhmjgehfjjlEpfgooenjgc => "AHMJGEHFJJL_EPFGOOENJGC", + Self::AhmjgehfjjlDcohffghonj => "AHMJGEHFJJL_DCOHFFGHONJ", + Self::AhmjgehfjjlJlgapjffonm => "AHMJGEHFJJL_JLGAPJFFONM", + Self::AhmjgehfjjlOgoccppngin => "AHMJGEHFJJL_OGOCCPPNGIN", + Self::AhmjgehfjjlBipgdfeggho => "AHMJGEHFJJL_BIPGDFEGGHO", + Self::AhmjgehfjjlEnhkkmphnll => "AHMJGEHFJJL_ENHKKMPHNLL", + Self::AhmjgehfjjlGedjedpodkb => "AHMJGEHFJJL_GEDJEDPODKB", + Self::AhmjgehfjjlPldclfinfpd => "AHMJGEHFJJL_PLDCLFINFPD", + Self::AhmjgehfjjlGfmmbeneldg => "AHMJGEHFJJL_GFMMBENELDG", + Self::AhmjgehfjjlJmpljofddcc => "AHMJGEHFJJL_JMPLJOFDDCC", + Self::AhmjgehfjjlCjmcmidohhn => "AHMJGEHFJJL_CJMCMIDOHHN", + Self::AhmjgehfjjlAkghfmhpnoc => "AHMJGEHFJJL_AKGHFMHPNOC", + Self::AhmjgehfjjlKibaaocfgim => "AHMJGEHFJJL_KIBAAOCFGIM", + Self::AhmjgehfjjlNckneomlnka => "AHMJGEHFJJL_NCKNEOMLNKA", + Self::AhmjgehfjjlAljonfgfcfa => "AHMJGEHFJJL_ALJONFGFCFA", + Self::AhmjgehfjjlPongoamfgah => "AHMJGEHFJJL_PONGOAMFGAH", + Self::AhmjgehfjjlGdeflmciocp => "AHMJGEHFJJL_GDEFLMCIOCP", + Self::AhmjgehfjjlFiinpglfihd => "AHMJGEHFJJL_FIINPGLFIHD", + Self::AhmjgehfjjlIhgfofmbfng => "AHMJGEHFJJL_IHGFOFMBFNG", + Self::AhmjgehfjjlMcjbdepdfon => "AHMJGEHFJJL_MCJBDEPDFON", + Self::AhmjgehfjjlGhbhkehjljl => "AHMJGEHFJJL_GHBHKEHJLJL", + Self::AhmjgehfjjlChcjkjhkjlc => "AHMJGEHFJJL_CHCJKJHKJLC", + Self::AhmjgehfjjlLjlbegdhnnn => "AHMJGEHFJJL_LJLBEGDHNNN", + Self::AhmjgehfjjlNbmghainlfn => "AHMJGEHFJJL_NBMGHAINLFN", + Self::AhmjgehfjjlEkaacbbiedp => "AHMJGEHFJJL_EKAACBBIEDP", + Self::AhmjgehfjjlKcgnbfemjpf => "AHMJGEHFJJL_KCGNBFEMJPF", + Self::AhmjgehfjjlGfhamcmfdlb => "AHMJGEHFJJL_GFHAMCMFDLB", + Self::AhmjgehfjjlBejhdkhicli => "AHMJGEHFJJL_BEJHDKHICLI", + Self::AhmjgehfjjlIkkagpccldh => "AHMJGEHFJJL_IKKAGPCCLDH", + Self::AhmjgehfjjlKopcieiilni => "AHMJGEHFJJL_KOPCIEIILNI", + Self::AhmjgehfjjlHamoeigppme => "AHMJGEHFJJL_HAMOEIGPPME", + Self::AhmjgehfjjlLhhpnijbkod => "AHMJGEHFJJL_LHHPNIJBKOD", + Self::AhmjgehfjjlNnaafbfkjfi => "AHMJGEHFJJL_NNAAFBFKJFI", + Self::AhmjgehfjjlGdobjeonkef => "AHMJGEHFJJL_GDOBJEONKEF", + Self::AhmjgehfjjlIaoddjelpjd => "AHMJGEHFJJL_IAODDJELPJD", + Self::AhmjgehfjjlPjnnldghodo => "AHMJGEHFJJL_PJNNLDGHODO", + Self::AhmjgehfjjlPccmnmioiog => "AHMJGEHFJJL_PCCMNMIOIOG", + Self::AhmjgehfjjlOomjekeebjj => "AHMJGEHFJJL_OOMJEKEEBJJ", + Self::AhmjgehfjjlMimkappimnl => "AHMJGEHFJJL_MIMKAPPIMNL", + Self::AhmjgehfjjlNaagamnnnhg => "AHMJGEHFJJL_NAAGAMNNNHG", + Self::AhmjgehfjjlFbfemgkbdcp => "AHMJGEHFJJL_FBFEMGKBDCP", + Self::AhmjgehfjjlHcoohgjjipk => "AHMJGEHFJJL_HCOOHGJJIPK", + Self::AhmjgehfjjlEapdelmfjib => "AHMJGEHFJJL_EAPDELMFJIB", + Self::AhmjgehfjjlAenfmmiimdj => "AHMJGEHFJJL_AENFMMIIMDJ", + Self::AhmjgehfjjlIlnkjcokbgb => "AHMJGEHFJJL_ILNKJCOKBGB", + Self::AhmjgehfjjlNliceecnkio => "AHMJGEHFJJL_NLICEECNKIO", + Self::AhmjgehfjjlCoglkgajgcj => "AHMJGEHFJJL_COGLKGAJGCJ", + Self::AhmjgehfjjlGhmamdmieab => "AHMJGEHFJJL_GHMAMDMIEAB", + Self::AhmjgehfjjlPjhchgccked => "AHMJGEHFJJL_PJHCHGCCKED", + Self::AhmjgehfjjlMnibfphfbif => "AHMJGEHFJJL_MNIBFPHFBIF", + Self::AhmjgehfjjlMlfnbmbleah => "AHMJGEHFJJL_MLFNBMBLEAH", + Self::AhmjgehfjjlKbiopmhhjfj => "AHMJGEHFJJL_KBIOPMHHJFJ", + Self::AhmjgehfjjlLdhkaabpdbi => "AHMJGEHFJJL_LDHKAABPDBI", + Self::AhmjgehfjjlNahclhalfcg => "AHMJGEHFJJL_NAHCLHALFCG", + Self::AhmjgehfjjlOgbpggimmjd => "AHMJGEHFJJL_OGBPGGIMMJD", + Self::AhmjgehfjjlGkjkhkjakef => "AHMJGEHFJJL_GKJKHKJAKEF", + Self::AhmjgehfjjlPdojgiljmoh => "AHMJGEHFJJL_PDOJGILJMOH", + Self::AhmjgehfjjlIdfinfodgii => "AHMJGEHFJJL_IDFINFODGII", + Self::AhmjgehfjjlAgknccjbcjd => "AHMJGEHFJJL_AGKNCCJBCJD", + Self::AhmjgehfjjlOdnihepecdl => "AHMJGEHFJJL_ODNIHEPECDL", + Self::AhmjgehfjjlKldkglimaaa => "AHMJGEHFJJL_KLDKGLIMAAA", + Self::AhmjgehfjjlIjgddillmdk => "AHMJGEHFJJL_IJGDDILLMDK", + Self::AhmjgehfjjlEidjdmpakma => "AHMJGEHFJJL_EIDJDMPAKMA", + Self::AhmjgehfjjlAlokcamblpe => "AHMJGEHFJJL_ALOKCAMBLPE", + Self::AhmjgehfjjlDelkacdhdim => "AHMJGEHFJJL_DELKACDHDIM", + Self::AhmjgehfjjlJjllgoboigh => "AHMJGEHFJJL_JJLLGOBOIGH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "VIRTUAL_ITEM_NONE" => Some(Self::VirtualItemNone), - "VIRTUAL_ITEM_HCOIN" => Some(Self::VirtualItemHcoin), - "VIRTUAL_ITEM_SCOIN" => Some(Self::VirtualItemScoin), - "VIRTUAL_ITEM_MCOIN" => Some(Self::VirtualItemMcoin), - "VIRTUAL_ITEM_STAMINA" => Some(Self::VirtualItemStamina), - "VIRTUAL_ITEM_RESERVE_STAMINA" => Some(Self::VirtualItemReserveStamina), - "VIRTUAL_ITEM_AVATAR_EXP" => Some(Self::VirtualItemAvatarExp), - "VIRTUAL_ITEM_EXP" => Some(Self::VirtualItemExp), - "VIRTUAL_ITEM_DAILY_ACTIVE_POINT" => Some(Self::VirtualItemDailyActivePoint), - "VIRTUAL_ITEM_MP_MAX" => Some(Self::VirtualItemMpMax), - "VIRTUAL_ITEM_PLAYER_RETURN_POINT" => { - Some(Self::VirtualItemPlayerReturnPoint) - } - "VIRTUAL_ITEM_BATTLE_COLLEGE_POINT" => { - Some(Self::VirtualItemBattleCollegePoint) - } - "VIRTUAL_ITEM_ROGUE_COIN" => Some(Self::VirtualItemRogueCoin), - "VIRTUAL_ITEM_ROGUE_TALENT_COIN" => Some(Self::VirtualItemRogueTalentCoin), - "VIRTUAL_ITEM_ROGUE_REWARD_KEY" => Some(Self::VirtualItemRogueRewardKey), - "VIRTUAL_ITEM_ROGUE_SUPER_REWARD_KEY" => { - Some(Self::VirtualItemRogueSuperRewardKey) - } - "VIRTUAL_ITEM_ACHIEVEMENT_EXP" => Some(Self::VirtualItemAchievementExp), - "VIRTUAL_ITEM_BP_EXP" => Some(Self::VirtualItemBpExp), - "VIRTUAL_ITEM_BP_REAL_EXP" => Some(Self::VirtualItemBpRealExp), - "VIRTUAL_ITEM_MUSEUM_FUNDS" => Some(Self::VirtualItemMuseumFunds), - "VIRTUAL_TRAINPARTY_BUILDING_FUNDS" => { - Some(Self::VirtualTrainpartyBuildingFunds) - } - "VIRTUAL_TRAINPARTY_AREA_UNLOCK_COIN" => { - Some(Self::VirtualTrainpartyAreaUnlockCoin) - } - "VIRTUAL_TRAINPARTY_MOBILITY" => Some(Self::VirtualTrainpartyMobility), - "VIRTUAL_ITEM_WARRIOR_EXP" => Some(Self::VirtualItemWarriorExp), - "VIRTUAL_ITEM_ROGUE_EXP" => Some(Self::VirtualItemRogueExp), - "VIRTUAL_ITEM_MAGE_EXP" => Some(Self::VirtualItemMageExp), - "VIRTUAL_ITEM_SHAMAN_EXP" => Some(Self::VirtualItemShamanExp), - "VIRTUAL_ITEM_WARLOCK_EXP" => Some(Self::VirtualItemWarlockExp), - "VIRTUAL_ITEM_KNIGHT_EXP" => Some(Self::VirtualItemKnightExp), - "VIRTUAL_ITEM_PRIEST_EXP" => Some(Self::VirtualItemPriestExp), - "VIRTUAL_ITEM_PUNK_LORD_POINT" => Some(Self::VirtualItemPunkLordPoint), - "VIRTUAL_ITEM_GAMEPLAY_COUNTER_MONSTER_SNEAK_VISION" => { - Some(Self::VirtualItemGameplayCounterMonsterSneakVision) - } - "VIRTUAL_ITEM_GAMEPLAY_COUNTER_WOLF_BRO_BULLET" => { - Some(Self::VirtualItemGameplayCounterWolfBroBullet) - } - "VIRTUAL_ITEM_ALLEY_FUNDS" => Some(Self::VirtualItemAlleyFunds), - "VIRTUAL_ITEM_ROGUE_PUMAN_COUPON" => Some(Self::VirtualItemRoguePumanCoupon), - "VIRTUAL_ITEM_MONTH_CARD" => Some(Self::VirtualItemMonthCard), - "VIRTUAL_ITEM_BP_NORMAL" => Some(Self::VirtualItemBpNormal), - "VIRTUAL_ITEM_BP_DELUXE" => Some(Self::VirtualItemBpDeluxe), - "VIRTUAL_ITEM_BP_UPGRADE" => Some(Self::VirtualItemBpUpgrade), - "VIRTUAL_ITEM_HELIOBUS_FANS" => Some(Self::VirtualItemHeliobusFans), - "VIRTUAL_ITEM_SPACE_ZOO_HYBRID_ITEM" => { - Some(Self::VirtualItemSpaceZooHybridItem) - } - "VIRTUAL_ITEM_SPACE_ZOO_EXP_POINT" => Some(Self::VirtualItemSpaceZooExpPoint), - "VIRTUAL_ITEM_ROGUE_NOUS_TALENT_COIN" => { - Some(Self::VirtualItemRogueNousTalentCoin) - } - "VIRTUAL_ITEM_EVOLVE_BUILD_COIN" => Some(Self::VirtualItemEvolveBuildCoin), - "VIRTUAL_ITEM_DRINK_MAKER_TIP" => Some(Self::VirtualItemDrinkMakerTip), - "VIRTUAL_ITEM_MONOPOLY_DICE" => Some(Self::VirtualItemMonopolyDice), - "VIRTUAL_ITEM_MONOPOLY_COIN" => Some(Self::VirtualItemMonopolyCoin), - "VIRTUAL_ITEM_MONOPOLY_CHEATDICE" => Some(Self::VirtualItemMonopolyCheatdice), - "VIRTUAL_ITEM_MONOPOLY_REROLL" => Some(Self::VirtualItemMonopolyReroll), - "VIRTUAL_ITEM_ROGUE_TOURN_PERMANENT_TALENT_COIN" => { - Some(Self::VirtualItemRogueTournPermanentTalentCoin) - } - "VIRTUAL_ITEM_ROGUE_TOURN_SEASON_TALENT_COIN" => { - Some(Self::VirtualItemRogueTournSeasonTalentCoin) - } - "VIRTUAL_ITEM_ROGUE_TOURN_EXP" => Some(Self::VirtualItemRogueTournExp), - "VIRTUAL_ITEM_MATCHTHREE_COIN" => Some(Self::VirtualItemMatchthreeCoin), - "VIRTUAL_ITEM_SWORD_TRAINING_SKILL_POINT" => { - Some(Self::VirtualItemSwordTrainingSkillPoint) - } - "VIRTUAL_ITEM_FIGHT_FEST_COIN" => Some(Self::VirtualItemFightFestCoin), - "VIRTUAL_ITEM_ROGUE_MAGIC_TALENT_COIN" => { - Some(Self::VirtualItemRogueMagicTalentCoin) - } - "VIRTUAL_ITEM_EVOLVE_BUILD_SC_COIN" => { - Some(Self::VirtualItemEvolveBuildScCoin) - } - "VIRTUAL_ITEM_EVOLVE_BUILD_REWARD_EXP" => { - Some(Self::VirtualItemEvolveBuildRewardExp) - } - "VIRTUAL_ITEM_MATCHTHREE_V2_COIN" => Some(Self::VirtualItemMatchthreeV2Coin), - "VIRTUAL_ITEM_GRID_FIGHT_COIN" => Some(Self::VirtualItemGridFightCoin), - "VIRTUAL_ITEM_GRID_FIGHT_TALENT_COIN" => { - Some(Self::VirtualItemGridFightTalentCoin) - } - "VIRTUAL_ITEM_GRID_FIGHT_SEASON_EXP" => { - Some(Self::VirtualItemGridFightSeasonExp) - } - "VIRTUAL_ITEM_GRID_FIGHT_GAMEPLAY_EXP" => { - Some(Self::VirtualItemGridFightGameplayExp) - } - "VIRTUAL_ITEM_GRID_FIGHT_FREE_REFRESH_TIMES" => { - Some(Self::VirtualItemGridFightFreeRefreshTimes) - } - "VIRTUAL_ITEM_CAKE_RACE_COIN" => Some(Self::VirtualItemCakeRaceCoin), - "VIRTUAL_ITEM_CAKE_RACE_SCORE" => Some(Self::VirtualItemCakeRaceScore), + "AHMJGEHFJJL_CCLEPCGFLEB" => Some(Self::AhmjgehfjjlCclepcgfleb), + "AHMJGEHFJJL_EPFGOOENJGC" => Some(Self::AhmjgehfjjlEpfgooenjgc), + "AHMJGEHFJJL_DCOHFFGHONJ" => Some(Self::AhmjgehfjjlDcohffghonj), + "AHMJGEHFJJL_JLGAPJFFONM" => Some(Self::AhmjgehfjjlJlgapjffonm), + "AHMJGEHFJJL_OGOCCPPNGIN" => Some(Self::AhmjgehfjjlOgoccppngin), + "AHMJGEHFJJL_BIPGDFEGGHO" => Some(Self::AhmjgehfjjlBipgdfeggho), + "AHMJGEHFJJL_ENHKKMPHNLL" => Some(Self::AhmjgehfjjlEnhkkmphnll), + "AHMJGEHFJJL_GEDJEDPODKB" => Some(Self::AhmjgehfjjlGedjedpodkb), + "AHMJGEHFJJL_PLDCLFINFPD" => Some(Self::AhmjgehfjjlPldclfinfpd), + "AHMJGEHFJJL_GFMMBENELDG" => Some(Self::AhmjgehfjjlGfmmbeneldg), + "AHMJGEHFJJL_JMPLJOFDDCC" => Some(Self::AhmjgehfjjlJmpljofddcc), + "AHMJGEHFJJL_CJMCMIDOHHN" => Some(Self::AhmjgehfjjlCjmcmidohhn), + "AHMJGEHFJJL_AKGHFMHPNOC" => Some(Self::AhmjgehfjjlAkghfmhpnoc), + "AHMJGEHFJJL_KIBAAOCFGIM" => Some(Self::AhmjgehfjjlKibaaocfgim), + "AHMJGEHFJJL_NCKNEOMLNKA" => Some(Self::AhmjgehfjjlNckneomlnka), + "AHMJGEHFJJL_ALJONFGFCFA" => Some(Self::AhmjgehfjjlAljonfgfcfa), + "AHMJGEHFJJL_PONGOAMFGAH" => Some(Self::AhmjgehfjjlPongoamfgah), + "AHMJGEHFJJL_GDEFLMCIOCP" => Some(Self::AhmjgehfjjlGdeflmciocp), + "AHMJGEHFJJL_FIINPGLFIHD" => Some(Self::AhmjgehfjjlFiinpglfihd), + "AHMJGEHFJJL_IHGFOFMBFNG" => Some(Self::AhmjgehfjjlIhgfofmbfng), + "AHMJGEHFJJL_MCJBDEPDFON" => Some(Self::AhmjgehfjjlMcjbdepdfon), + "AHMJGEHFJJL_GHBHKEHJLJL" => Some(Self::AhmjgehfjjlGhbhkehjljl), + "AHMJGEHFJJL_CHCJKJHKJLC" => Some(Self::AhmjgehfjjlChcjkjhkjlc), + "AHMJGEHFJJL_LJLBEGDHNNN" => Some(Self::AhmjgehfjjlLjlbegdhnnn), + "AHMJGEHFJJL_NBMGHAINLFN" => Some(Self::AhmjgehfjjlNbmghainlfn), + "AHMJGEHFJJL_EKAACBBIEDP" => Some(Self::AhmjgehfjjlEkaacbbiedp), + "AHMJGEHFJJL_KCGNBFEMJPF" => Some(Self::AhmjgehfjjlKcgnbfemjpf), + "AHMJGEHFJJL_GFHAMCMFDLB" => Some(Self::AhmjgehfjjlGfhamcmfdlb), + "AHMJGEHFJJL_BEJHDKHICLI" => Some(Self::AhmjgehfjjlBejhdkhicli), + "AHMJGEHFJJL_IKKAGPCCLDH" => Some(Self::AhmjgehfjjlIkkagpccldh), + "AHMJGEHFJJL_KOPCIEIILNI" => Some(Self::AhmjgehfjjlKopcieiilni), + "AHMJGEHFJJL_HAMOEIGPPME" => Some(Self::AhmjgehfjjlHamoeigppme), + "AHMJGEHFJJL_LHHPNIJBKOD" => Some(Self::AhmjgehfjjlLhhpnijbkod), + "AHMJGEHFJJL_NNAAFBFKJFI" => Some(Self::AhmjgehfjjlNnaafbfkjfi), + "AHMJGEHFJJL_GDOBJEONKEF" => Some(Self::AhmjgehfjjlGdobjeonkef), + "AHMJGEHFJJL_IAODDJELPJD" => Some(Self::AhmjgehfjjlIaoddjelpjd), + "AHMJGEHFJJL_PJNNLDGHODO" => Some(Self::AhmjgehfjjlPjnnldghodo), + "AHMJGEHFJJL_PCCMNMIOIOG" => Some(Self::AhmjgehfjjlPccmnmioiog), + "AHMJGEHFJJL_OOMJEKEEBJJ" => Some(Self::AhmjgehfjjlOomjekeebjj), + "AHMJGEHFJJL_MIMKAPPIMNL" => Some(Self::AhmjgehfjjlMimkappimnl), + "AHMJGEHFJJL_NAAGAMNNNHG" => Some(Self::AhmjgehfjjlNaagamnnnhg), + "AHMJGEHFJJL_FBFEMGKBDCP" => Some(Self::AhmjgehfjjlFbfemgkbdcp), + "AHMJGEHFJJL_HCOOHGJJIPK" => Some(Self::AhmjgehfjjlHcoohgjjipk), + "AHMJGEHFJJL_EAPDELMFJIB" => Some(Self::AhmjgehfjjlEapdelmfjib), + "AHMJGEHFJJL_AENFMMIIMDJ" => Some(Self::AhmjgehfjjlAenfmmiimdj), + "AHMJGEHFJJL_ILNKJCOKBGB" => Some(Self::AhmjgehfjjlIlnkjcokbgb), + "AHMJGEHFJJL_NLICEECNKIO" => Some(Self::AhmjgehfjjlNliceecnkio), + "AHMJGEHFJJL_COGLKGAJGCJ" => Some(Self::AhmjgehfjjlCoglkgajgcj), + "AHMJGEHFJJL_GHMAMDMIEAB" => Some(Self::AhmjgehfjjlGhmamdmieab), + "AHMJGEHFJJL_PJHCHGCCKED" => Some(Self::AhmjgehfjjlPjhchgccked), + "AHMJGEHFJJL_MNIBFPHFBIF" => Some(Self::AhmjgehfjjlMnibfphfbif), + "AHMJGEHFJJL_MLFNBMBLEAH" => Some(Self::AhmjgehfjjlMlfnbmbleah), + "AHMJGEHFJJL_KBIOPMHHJFJ" => Some(Self::AhmjgehfjjlKbiopmhhjfj), + "AHMJGEHFJJL_LDHKAABPDBI" => Some(Self::AhmjgehfjjlLdhkaabpdbi), + "AHMJGEHFJJL_NAHCLHALFCG" => Some(Self::AhmjgehfjjlNahclhalfcg), + "AHMJGEHFJJL_OGBPGGIMMJD" => Some(Self::AhmjgehfjjlOgbpggimmjd), + "AHMJGEHFJJL_GKJKHKJAKEF" => Some(Self::AhmjgehfjjlGkjkhkjakef), + "AHMJGEHFJJL_PDOJGILJMOH" => Some(Self::AhmjgehfjjlPdojgiljmoh), + "AHMJGEHFJJL_IDFINFODGII" => Some(Self::AhmjgehfjjlIdfinfodgii), + "AHMJGEHFJJL_AGKNCCJBCJD" => Some(Self::AhmjgehfjjlAgknccjbcjd), + "AHMJGEHFJJL_ODNIHEPECDL" => Some(Self::AhmjgehfjjlOdnihepecdl), + "AHMJGEHFJJL_KLDKGLIMAAA" => Some(Self::AhmjgehfjjlKldkglimaaa), + "AHMJGEHFJJL_IJGDDILLMDK" => Some(Self::AhmjgehfjjlIjgddillmdk), + "AHMJGEHFJJL_EIDJDMPAKMA" => Some(Self::AhmjgehfjjlEidjdmpakma), + "AHMJGEHFJJL_ALOKCAMBLPE" => Some(Self::AhmjgehfjjlAlokcamblpe), + "AHMJGEHFJJL_DELKACDHDIM" => Some(Self::AhmjgehfjjlDelkacdhdim), + "AHMJGEHFJJL_JJLLGOBOIGH" => Some(Self::AhmjgehfjjlJjllgoboigh), _ => None, } } @@ -58664,8 +60521,8 @@ impl VirtualItemType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum GameplayCounterType { - GameplayCounterNone = 0, - GameplayCounterMonsterSneakVision = 280001, + LgjeibjogklIficnnlhecj = 0, + LgjeibjogklEoagbgbnoij = 280001, } impl GameplayCounterType { /// String value of the enum field names used in the ProtoBuf definition. @@ -58674,19 +60531,15 @@ impl GameplayCounterType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::GameplayCounterNone => "GAMEPLAY_COUNTER_NONE", - Self::GameplayCounterMonsterSneakVision => { - "GAMEPLAY_COUNTER_MONSTER_SNEAK_VISION" - } + Self::LgjeibjogklIficnnlhecj => "LGJEIBJOGKL_IFICNNLHECJ", + Self::LgjeibjogklEoagbgbnoij => "LGJEIBJOGKL_EOAGBGBNOIJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "GAMEPLAY_COUNTER_NONE" => Some(Self::GameplayCounterNone), - "GAMEPLAY_COUNTER_MONSTER_SNEAK_VISION" => { - Some(Self::GameplayCounterMonsterSneakVision) - } + "LGJEIBJOGKL_IFICNNLHECJ" => Some(Self::LgjeibjogklIficnnlhecj), + "LGJEIBJOGKL_EOAGBGBNOIJ" => Some(Self::LgjeibjogklEoagbgbnoij), _ => None, } } @@ -58695,7 +60548,7 @@ impl GameplayCounterType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BlackLimitLevel { - All = 0, + LcihclccdlmJgelcoepibn = 0, } impl BlackLimitLevel { /// String value of the enum field names used in the ProtoBuf definition. @@ -58704,13 +60557,13 @@ impl BlackLimitLevel { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::All => "BLACK_LIMIT_LEVEL_ALL", + Self::LcihclccdlmJgelcoepibn => "LCIHCLCCDLM_JGELCOEPIBN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BLACK_LIMIT_LEVEL_ALL" => Some(Self::All), + "LCIHCLCCDLM_JGELCOEPIBN" => Some(Self::LcihclccdlmJgelcoepibn), _ => None, } } @@ -58719,13 +60572,13 @@ impl BlackLimitLevel { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AreaType { - AreaNone = 0, - AreaCn = 1, - AreaJp = 2, - AreaAsia = 3, - AreaWest = 4, - AreaKr = 5, - AreaOverseas = 6, + FmeahkgcpceIlhconnbdmi = 0, + FmeahkgcpceKgfacpialga = 1, + FmeahkgcpcePpblecbfbmg = 2, + FmeahkgcpceDamodnhmopd = 3, + FmeahkgcpceNdlbfnbhheb = 4, + FmeahkgcpceLfnconekeak = 5, + FmeahkgcpceHmlkboplbmf = 6, } impl AreaType { /// String value of the enum field names used in the ProtoBuf definition. @@ -58734,25 +60587,25 @@ impl AreaType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::AreaNone => "AREA_NONE", - Self::AreaCn => "AREA_CN", - Self::AreaJp => "AREA_JP", - Self::AreaAsia => "AREA_ASIA", - Self::AreaWest => "AREA_WEST", - Self::AreaKr => "AREA_KR", - Self::AreaOverseas => "AREA_OVERSEAS", + Self::FmeahkgcpceIlhconnbdmi => "FMEAHKGCPCE_ILHCONNBDMI", + Self::FmeahkgcpceKgfacpialga => "FMEAHKGCPCE_KGFACPIALGA", + Self::FmeahkgcpcePpblecbfbmg => "FMEAHKGCPCE_PPBLECBFBMG", + Self::FmeahkgcpceDamodnhmopd => "FMEAHKGCPCE_DAMODNHMOPD", + Self::FmeahkgcpceNdlbfnbhheb => "FMEAHKGCPCE_NDLBFNBHHEB", + Self::FmeahkgcpceLfnconekeak => "FMEAHKGCPCE_LFNCONEKEAK", + Self::FmeahkgcpceHmlkboplbmf => "FMEAHKGCPCE_HMLKBOPLBMF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "AREA_NONE" => Some(Self::AreaNone), - "AREA_CN" => Some(Self::AreaCn), - "AREA_JP" => Some(Self::AreaJp), - "AREA_ASIA" => Some(Self::AreaAsia), - "AREA_WEST" => Some(Self::AreaWest), - "AREA_KR" => Some(Self::AreaKr), - "AREA_OVERSEAS" => Some(Self::AreaOverseas), + "FMEAHKGCPCE_ILHCONNBDMI" => Some(Self::FmeahkgcpceIlhconnbdmi), + "FMEAHKGCPCE_KGFACPIALGA" => Some(Self::FmeahkgcpceKgfacpialga), + "FMEAHKGCPCE_PPBLECBFBMG" => Some(Self::FmeahkgcpcePpblecbfbmg), + "FMEAHKGCPCE_DAMODNHMOPD" => Some(Self::FmeahkgcpceDamodnhmopd), + "FMEAHKGCPCE_NDLBFNBHHEB" => Some(Self::FmeahkgcpceNdlbfnbhheb), + "FMEAHKGCPCE_LFNCONEKEAK" => Some(Self::FmeahkgcpceLfnconekeak), + "FMEAHKGCPCE_HMLKBOPLBMF" => Some(Self::FmeahkgcpceHmlkboplbmf), _ => None, } } @@ -58761,14 +60614,14 @@ impl AreaType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum EntityType { - EntityNone = 0, - EntityAvatar = 1, - EntityMonster = 2, - EntityNpc = 3, - EntityProp = 4, - EntityTrigger = 5, - EntityEnv = 6, - EntitySummonUnit = 7, + GaahneikiplFbligbnlfih = 0, + GaahneikiplKoanegchaom = 1, + GaahneikiplMlnaafgffbo = 2, + GaahneikiplNldefbcpbdd = 3, + GaahneikiplNnejbphliic = 4, + GaahneikiplJplbkfeocoo = 5, + GaahneikiplPphamjghfnd = 6, + GaahneikiplGokflmfedci = 7, } impl EntityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -58777,27 +60630,27 @@ impl EntityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::EntityNone => "ENTITY_NONE", - Self::EntityAvatar => "ENTITY_AVATAR", - Self::EntityMonster => "ENTITY_MONSTER", - Self::EntityNpc => "ENTITY_NPC", - Self::EntityProp => "ENTITY_PROP", - Self::EntityTrigger => "ENTITY_TRIGGER", - Self::EntityEnv => "ENTITY_ENV", - Self::EntitySummonUnit => "ENTITY_SUMMON_UNIT", + Self::GaahneikiplFbligbnlfih => "GAAHNEIKIPL_FBLIGBNLFIH", + Self::GaahneikiplKoanegchaom => "GAAHNEIKIPL_KOANEGCHAOM", + Self::GaahneikiplMlnaafgffbo => "GAAHNEIKIPL_MLNAAFGFFBO", + Self::GaahneikiplNldefbcpbdd => "GAAHNEIKIPL_NLDEFBCPBDD", + Self::GaahneikiplNnejbphliic => "GAAHNEIKIPL_NNEJBPHLIIC", + Self::GaahneikiplJplbkfeocoo => "GAAHNEIKIPL_JPLBKFEOCOO", + Self::GaahneikiplPphamjghfnd => "GAAHNEIKIPL_PPHAMJGHFND", + Self::GaahneikiplGokflmfedci => "GAAHNEIKIPL_GOKFLMFEDCI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ENTITY_NONE" => Some(Self::EntityNone), - "ENTITY_AVATAR" => Some(Self::EntityAvatar), - "ENTITY_MONSTER" => Some(Self::EntityMonster), - "ENTITY_NPC" => Some(Self::EntityNpc), - "ENTITY_PROP" => Some(Self::EntityProp), - "ENTITY_TRIGGER" => Some(Self::EntityTrigger), - "ENTITY_ENV" => Some(Self::EntityEnv), - "ENTITY_SUMMON_UNIT" => Some(Self::EntitySummonUnit), + "GAAHNEIKIPL_FBLIGBNLFIH" => Some(Self::GaahneikiplFbligbnlfih), + "GAAHNEIKIPL_KOANEGCHAOM" => Some(Self::GaahneikiplKoanegchaom), + "GAAHNEIKIPL_MLNAAFGFFBO" => Some(Self::GaahneikiplMlnaafgffbo), + "GAAHNEIKIPL_NLDEFBCPBDD" => Some(Self::GaahneikiplNldefbcpbdd), + "GAAHNEIKIPL_NNEJBPHLIIC" => Some(Self::GaahneikiplNnejbphliic), + "GAAHNEIKIPL_JPLBKFEOCOO" => Some(Self::GaahneikiplJplbkfeocoo), + "GAAHNEIKIPL_PPHAMJGHFND" => Some(Self::GaahneikiplPphamjghfnd), + "GAAHNEIKIPL_GOKFLMFEDCI" => Some(Self::GaahneikiplGokflmfedci), _ => None, } } @@ -58806,20 +60659,20 @@ impl EntityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LanguageType { - LanguageNone = 0, - LanguageSc = 1, - LanguageTc = 2, - LanguageEn = 3, - LanguageKr = 4, - LanguageJp = 5, - LanguageFr = 6, - LanguageDe = 7, - LanguageEs = 8, - LanguagePt = 9, - LanguageRu = 10, - LanguageTh = 11, - LanguageVi = 12, - LanguageId = 13, + FiheckjfilkGlelmhjacme = 0, + FiheckjfilkEgmhifclfjd = 1, + FiheckjfilkCiakkbhedmk = 2, + FiheckjfilkBpfogehcnbg = 3, + FiheckjfilkDbdmkcmlono = 4, + FiheckjfilkNefmcnlbeci = 5, + FiheckjfilkNffcjhgjlfl = 6, + FiheckjfilkMfgeopkakkg = 7, + FiheckjfilkIhjddjakhpl = 8, + FiheckjfilkKccmnfonkik = 9, + FiheckjfilkOffailifbjo = 10, + FiheckjfilkPloijkpbeni = 11, + FiheckjfilkJhjmbeckahf = 12, + FiheckjfilkNhkhnkkmaab = 13, } impl LanguageType { /// String value of the enum field names used in the ProtoBuf definition. @@ -58828,39 +60681,39 @@ impl LanguageType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::LanguageNone => "LANGUAGE_NONE", - Self::LanguageSc => "LANGUAGE_SC", - Self::LanguageTc => "LANGUAGE_TC", - Self::LanguageEn => "LANGUAGE_EN", - Self::LanguageKr => "LANGUAGE_KR", - Self::LanguageJp => "LANGUAGE_JP", - Self::LanguageFr => "LANGUAGE_FR", - Self::LanguageDe => "LANGUAGE_DE", - Self::LanguageEs => "LANGUAGE_ES", - Self::LanguagePt => "LANGUAGE_PT", - Self::LanguageRu => "LANGUAGE_RU", - Self::LanguageTh => "LANGUAGE_TH", - Self::LanguageVi => "LANGUAGE_VI", - Self::LanguageId => "LANGUAGE_ID", + Self::FiheckjfilkGlelmhjacme => "FIHECKJFILK_GLELMHJACME", + Self::FiheckjfilkEgmhifclfjd => "FIHECKJFILK_EGMHIFCLFJD", + Self::FiheckjfilkCiakkbhedmk => "FIHECKJFILK_CIAKKBHEDMK", + Self::FiheckjfilkBpfogehcnbg => "FIHECKJFILK_BPFOGEHCNBG", + Self::FiheckjfilkDbdmkcmlono => "FIHECKJFILK_DBDMKCMLONO", + Self::FiheckjfilkNefmcnlbeci => "FIHECKJFILK_NEFMCNLBECI", + Self::FiheckjfilkNffcjhgjlfl => "FIHECKJFILK_NFFCJHGJLFL", + Self::FiheckjfilkMfgeopkakkg => "FIHECKJFILK_MFGEOPKAKKG", + Self::FiheckjfilkIhjddjakhpl => "FIHECKJFILK_IHJDDJAKHPL", + Self::FiheckjfilkKccmnfonkik => "FIHECKJFILK_KCCMNFONKIK", + Self::FiheckjfilkOffailifbjo => "FIHECKJFILK_OFFAILIFBJO", + Self::FiheckjfilkPloijkpbeni => "FIHECKJFILK_PLOIJKPBENI", + Self::FiheckjfilkJhjmbeckahf => "FIHECKJFILK_JHJMBECKAHF", + Self::FiheckjfilkNhkhnkkmaab => "FIHECKJFILK_NHKHNKKMAAB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "LANGUAGE_NONE" => Some(Self::LanguageNone), - "LANGUAGE_SC" => Some(Self::LanguageSc), - "LANGUAGE_TC" => Some(Self::LanguageTc), - "LANGUAGE_EN" => Some(Self::LanguageEn), - "LANGUAGE_KR" => Some(Self::LanguageKr), - "LANGUAGE_JP" => Some(Self::LanguageJp), - "LANGUAGE_FR" => Some(Self::LanguageFr), - "LANGUAGE_DE" => Some(Self::LanguageDe), - "LANGUAGE_ES" => Some(Self::LanguageEs), - "LANGUAGE_PT" => Some(Self::LanguagePt), - "LANGUAGE_RU" => Some(Self::LanguageRu), - "LANGUAGE_TH" => Some(Self::LanguageTh), - "LANGUAGE_VI" => Some(Self::LanguageVi), - "LANGUAGE_ID" => Some(Self::LanguageId), + "FIHECKJFILK_GLELMHJACME" => Some(Self::FiheckjfilkGlelmhjacme), + "FIHECKJFILK_EGMHIFCLFJD" => Some(Self::FiheckjfilkEgmhifclfjd), + "FIHECKJFILK_CIAKKBHEDMK" => Some(Self::FiheckjfilkCiakkbhedmk), + "FIHECKJFILK_BPFOGEHCNBG" => Some(Self::FiheckjfilkBpfogehcnbg), + "FIHECKJFILK_DBDMKCMLONO" => Some(Self::FiheckjfilkDbdmkcmlono), + "FIHECKJFILK_NEFMCNLBECI" => Some(Self::FiheckjfilkNefmcnlbeci), + "FIHECKJFILK_NFFCJHGJLFL" => Some(Self::FiheckjfilkNffcjhgjlfl), + "FIHECKJFILK_MFGEOPKAKKG" => Some(Self::FiheckjfilkMfgeopkakkg), + "FIHECKJFILK_IHJDDJAKHPL" => Some(Self::FiheckjfilkIhjddjakhpl), + "FIHECKJFILK_KCCMNFONKIK" => Some(Self::FiheckjfilkKccmnfonkik), + "FIHECKJFILK_OFFAILIFBJO" => Some(Self::FiheckjfilkOffailifbjo), + "FIHECKJFILK_PLOIJKPBENI" => Some(Self::FiheckjfilkPloijkpbeni), + "FIHECKJFILK_JHJMBECKAHF" => Some(Self::FiheckjfilkJhjmbeckahf), + "FIHECKJFILK_NHKHNKKMAAB" => Some(Self::FiheckjfilkNhkhnkkmaab), _ => None, } } @@ -58955,32 +60808,32 @@ impl PlatformType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Omefdocpemd { - NoKick = 0, - ForceKick = 1, - IdleKick = 2, - Silence = 3, +pub enum ReloginType { + AkengpnhfcaOcaodfedepd = 0, + AkengpnhfcaKelipndongi = 1, + AkengpnhfcaJacimmfbonl = 2, + AkengpnhfcaAbhijacpcod = 3, } -impl Omefdocpemd { +impl ReloginType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::NoKick => "NO_KICK", - Self::ForceKick => "FORCE_KICK", - Self::IdleKick => "IDLE_KICK", - Self::Silence => "SILENCE", + Self::AkengpnhfcaOcaodfedepd => "AKENGPNHFCA_OCAODFEDEPD", + Self::AkengpnhfcaKelipndongi => "AKENGPNHFCA_KELIPNDONGI", + Self::AkengpnhfcaJacimmfbonl => "AKENGPNHFCA_JACIMMFBONL", + Self::AkengpnhfcaAbhijacpcod => "AKENGPNHFCA_ABHIJACPCOD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "NO_KICK" => Some(Self::NoKick), - "FORCE_KICK" => Some(Self::ForceKick), - "IDLE_KICK" => Some(Self::IdleKick), - "SILENCE" => Some(Self::Silence), + "AKENGPNHFCA_OCAODFEDEPD" => Some(Self::AkengpnhfcaOcaodfedepd), + "AKENGPNHFCA_KELIPNDONGI" => Some(Self::AkengpnhfcaKelipndongi), + "AKENGPNHFCA_JACIMMFBONL" => Some(Self::AkengpnhfcaJacimmfbonl), + "AKENGPNHFCA_ABHIJACPCOD" => Some(Self::AkengpnhfcaAbhijacpcod), _ => None, } } @@ -58997,6 +60850,7 @@ pub enum AvatarType { AvatarAetherDivideType = 5, AvatarUpgradeAvailableType = 6, AvatarGridFightType = 7, + MlmmnodkafmGljdndmigip = 8, } impl AvatarType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59013,6 +60867,7 @@ impl AvatarType { Self::AvatarAetherDivideType => "AVATAR_AETHER_DIVIDE_TYPE", Self::AvatarUpgradeAvailableType => "AVATAR_UPGRADE_AVAILABLE_TYPE", Self::AvatarGridFightType => "AVATAR_GRID_FIGHT_TYPE", + Self::MlmmnodkafmGljdndmigip => "MLMMNODKAFM_GLJDNDMIGIP", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -59026,6 +60881,7 @@ impl AvatarType { "AVATAR_AETHER_DIVIDE_TYPE" => Some(Self::AvatarAetherDivideType), "AVATAR_UPGRADE_AVAILABLE_TYPE" => Some(Self::AvatarUpgradeAvailableType), "AVATAR_GRID_FIGHT_TYPE" => Some(Self::AvatarGridFightType), + "MLMMNODKAFM_GLJDNDMIGIP" => Some(Self::MlmmnodkafmGljdndmigip), _ => None, } } @@ -59087,33 +60943,29 @@ impl MultiPathAvatarType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jnicoeppdfn { - AvatarTagNone = 0, - AvatarTagPlayerHasSetEnhancedId = 1, - AvatarTagMax = 32, +pub enum Anefjkfaldc { + Onaklkbmfad = 0, + Cohmcjjlcfh = 1, + Imaojkidibk = 32, } -impl Jnicoeppdfn { +impl Anefjkfaldc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::AvatarTagNone => "AVATAR_TAG_NONE", - Self::AvatarTagPlayerHasSetEnhancedId => { - "AVATAR_TAG_PLAYER_HAS_SET_ENHANCED_ID" - } - Self::AvatarTagMax => "AVATAR_TAG_MAX", + Self::Onaklkbmfad => "ANEFJKFALDC_ONAKLKBMFAD", + Self::Cohmcjjlcfh => "ANEFJKFALDC_COHMCJJLCFH", + Self::Imaojkidibk => "ANEFJKFALDC_IMAOJKIDIBK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "AVATAR_TAG_NONE" => Some(Self::AvatarTagNone), - "AVATAR_TAG_PLAYER_HAS_SET_ENHANCED_ID" => { - Some(Self::AvatarTagPlayerHasSetEnhancedId) - } - "AVATAR_TAG_MAX" => Some(Self::AvatarTagMax), + "ANEFJKFALDC_ONAKLKBMFAD" => Some(Self::Onaklkbmfad), + "ANEFJKFALDC_COHMCJJLCFH" => Some(Self::Cohmcjjlcfh), + "ANEFJKFALDC_IMAOJKIDIBK" => Some(Self::Imaojkidibk), _ => None, } } @@ -59151,35 +61003,35 @@ impl Gender { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Bnhjenkfgea { - ProductNone = 0, - ProductNormal = 1, - ProductLimit = 2, - ProductLimitNoPay = 3, - ProductNoProcessOrder = 4, +pub enum ProductType { + DodhapfpmkhMledhadpboh = 0, + DodhapfpmkhCiafbdjblhm = 1, + DodhapfpmkhEdohkicapbk = 2, + DodhapfpmkhDgidfpfneom = 3, + DodhapfpmkhBhnbejinjhc = 4, } -impl Bnhjenkfgea { +impl ProductType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ProductNone => "PRODUCT_NONE", - Self::ProductNormal => "PRODUCT_NORMAL", - Self::ProductLimit => "PRODUCT_LIMIT", - Self::ProductLimitNoPay => "PRODUCT_LIMIT_NO_PAY", - Self::ProductNoProcessOrder => "PRODUCT_NO_PROCESS_ORDER", + Self::DodhapfpmkhMledhadpboh => "DODHAPFPMKH_MLEDHADPBOH", + Self::DodhapfpmkhCiafbdjblhm => "DODHAPFPMKH_CIAFBDJBLHM", + Self::DodhapfpmkhEdohkicapbk => "DODHAPFPMKH_EDOHKICAPBK", + Self::DodhapfpmkhDgidfpfneom => "DODHAPFPMKH_DGIDFPFNEOM", + Self::DodhapfpmkhBhnbejinjhc => "DODHAPFPMKH_BHNBEJINJHC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PRODUCT_NONE" => Some(Self::ProductNone), - "PRODUCT_NORMAL" => Some(Self::ProductNormal), - "PRODUCT_LIMIT" => Some(Self::ProductLimit), - "PRODUCT_LIMIT_NO_PAY" => Some(Self::ProductLimitNoPay), - "PRODUCT_NO_PROCESS_ORDER" => Some(Self::ProductNoProcessOrder), + "DODHAPFPMKH_MLEDHADPBOH" => Some(Self::DodhapfpmkhMledhadpboh), + "DODHAPFPMKH_CIAFBDJBLHM" => Some(Self::DodhapfpmkhCiafbdjblhm), + "DODHAPFPMKH_EDOHKICAPBK" => Some(Self::DodhapfpmkhEdohkicapbk), + "DODHAPFPMKH_DGIDFPFNEOM" => Some(Self::DodhapfpmkhDgidfpfneom), + "DODHAPFPMKH_BHNBEJINJHC" => Some(Self::DodhapfpmkhBhnbejinjhc), _ => None, } } @@ -59188,29 +61040,29 @@ impl Bnhjenkfgea { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProductGiftType { - ProductGiftNone = 0, - ProductGiftCoin = 1, - ProductGiftMonthCard = 2, - ProductGiftBp68 = 3, - ProductGiftBp128 = 4, - ProductGiftBp68Upgrade128 = 5, - ProductGiftPointCard = 6, - ProductGiftPsPreOrder1 = 7, - ProductGiftPsPreOrder2 = 8, - ProductGiftGooglePoints100 = 9, - ProductGiftGooglePoints150 = 10, - ProductGiftPsPointCard030 = 11, - ProductGiftPsPointCard050 = 12, - ProductGiftPsPointCard100 = 13, - ProductGiftPsnPlus = 14, - ProductGiftSingle6 = 15, - ProductGiftDailyLogin30 = 16, - ProductGiftAppleGiftCard = 17, - ProductGiftFtcUpGachaTicket1 = 18, - ProductGiftFtcUpGachaTicket10 = 19, - ProductGiftFtcNormalGachaTicket1 = 20, - ProductGiftFtcNormalGachaTicket10 = 21, - ProductGiftTicket10 = 22, + KmkaojlfjnbKmkpjekoldd = 0, + KmkaojlfjnbFkmaiiaonoj = 1, + KmkaojlfjnbNgfnopfifcl = 2, + KmkaojlfjnbBbopmhbnhda = 3, + KmkaojlfjnbEflfbjnpjpg = 4, + KmkaojlfjnbHmjpfmjbfae = 5, + KmkaojlfjnbPmhaaflkcdg = 6, + KmkaojlfjnbIgjmobgljpl = 7, + KmkaojlfjnbGmiicocakfi = 8, + KmkaojlfjnbBpooipbpfea = 9, + KmkaojlfjnbFmdadjkibid = 10, + KmkaojlfjnbMbehhfdmcmm = 11, + KmkaojlfjnbMmafmmfmalo = 12, + KmkaojlfjnbBhfgfdamkmd = 13, + KmkaojlfjnbGejnlhjbmlm = 14, + KmkaojlfjnbDlioohanibb = 15, + KmkaojlfjnbPeaakodifdk = 16, + KmkaojlfjnbNnkjidppikp = 17, + KmkaojlfjnbLpecapjppie = 18, + KmkaojlfjnbAaiklcokngf = 19, + KmkaojlfjnbJppjleilphk = 20, + KmkaojlfjnbDipmklannfd = 21, + KmkaojlfjnbDoflamachha = 22, } impl ProductGiftType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59219,69 +61071,57 @@ impl ProductGiftType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ProductGiftNone => "PRODUCT_GIFT_NONE", - Self::ProductGiftCoin => "PRODUCT_GIFT_COIN", - Self::ProductGiftMonthCard => "PRODUCT_GIFT_MONTH_CARD", - Self::ProductGiftBp68 => "PRODUCT_GIFT_BP_68", - Self::ProductGiftBp128 => "PRODUCT_GIFT_BP_128", - Self::ProductGiftBp68Upgrade128 => "PRODUCT_GIFT_BP68_UPGRADE_128", - Self::ProductGiftPointCard => "PRODUCT_GIFT_POINT_CARD", - Self::ProductGiftPsPreOrder1 => "PRODUCT_GIFT_PS_PRE_ORDER_1", - Self::ProductGiftPsPreOrder2 => "PRODUCT_GIFT_PS_PRE_ORDER_2", - Self::ProductGiftGooglePoints100 => "PRODUCT_GIFT_GOOGLE_POINTS_100", - Self::ProductGiftGooglePoints150 => "PRODUCT_GIFT_GOOGLE_POINTS_150", - Self::ProductGiftPsPointCard030 => "PRODUCT_GIFT_PS_POINT_CARD_030", - Self::ProductGiftPsPointCard050 => "PRODUCT_GIFT_PS_POINT_CARD_050", - Self::ProductGiftPsPointCard100 => "PRODUCT_GIFT_PS_POINT_CARD_100", - Self::ProductGiftPsnPlus => "PRODUCT_GIFT_PSN_PLUS", - Self::ProductGiftSingle6 => "PRODUCT_GIFT_SINGLE_6", - Self::ProductGiftDailyLogin30 => "PRODUCT_GIFT_DAILY_LOGIN_30", - Self::ProductGiftAppleGiftCard => "PRODUCT_GIFT_APPLE_GIFT_CARD", - Self::ProductGiftFtcUpGachaTicket1 => "PRODUCT_GIFT_FTC_UP_GACHA_TICKET_1", - Self::ProductGiftFtcUpGachaTicket10 => "PRODUCT_GIFT_FTC_UP_GACHA_TICKET_10", - Self::ProductGiftFtcNormalGachaTicket1 => { - "PRODUCT_GIFT_FTC_NORMAL_GACHA_TICKET_1" - } - Self::ProductGiftFtcNormalGachaTicket10 => { - "PRODUCT_GIFT_FTC_NORMAL_GACHA_TICKET_10" - } - Self::ProductGiftTicket10 => "PRODUCT_GIFT_TICKET_10", + Self::KmkaojlfjnbKmkpjekoldd => "KMKAOJLFJNB_KMKPJEKOLDD", + Self::KmkaojlfjnbFkmaiiaonoj => "KMKAOJLFJNB_FKMAIIAONOJ", + Self::KmkaojlfjnbNgfnopfifcl => "KMKAOJLFJNB_NGFNOPFIFCL", + Self::KmkaojlfjnbBbopmhbnhda => "KMKAOJLFJNB_BBOPMHBNHDA", + Self::KmkaojlfjnbEflfbjnpjpg => "KMKAOJLFJNB_EFLFBJNPJPG", + Self::KmkaojlfjnbHmjpfmjbfae => "KMKAOJLFJNB_HMJPFMJBFAE", + Self::KmkaojlfjnbPmhaaflkcdg => "KMKAOJLFJNB_PMHAAFLKCDG", + Self::KmkaojlfjnbIgjmobgljpl => "KMKAOJLFJNB_IGJMOBGLJPL", + Self::KmkaojlfjnbGmiicocakfi => "KMKAOJLFJNB_GMIICOCAKFI", + Self::KmkaojlfjnbBpooipbpfea => "KMKAOJLFJNB_BPOOIPBPFEA", + Self::KmkaojlfjnbFmdadjkibid => "KMKAOJLFJNB_FMDADJKIBID", + Self::KmkaojlfjnbMbehhfdmcmm => "KMKAOJLFJNB_MBEHHFDMCMM", + Self::KmkaojlfjnbMmafmmfmalo => "KMKAOJLFJNB_MMAFMMFMALO", + Self::KmkaojlfjnbBhfgfdamkmd => "KMKAOJLFJNB_BHFGFDAMKMD", + Self::KmkaojlfjnbGejnlhjbmlm => "KMKAOJLFJNB_GEJNLHJBMLM", + Self::KmkaojlfjnbDlioohanibb => "KMKAOJLFJNB_DLIOOHANIBB", + Self::KmkaojlfjnbPeaakodifdk => "KMKAOJLFJNB_PEAAKODIFDK", + Self::KmkaojlfjnbNnkjidppikp => "KMKAOJLFJNB_NNKJIDPPIKP", + Self::KmkaojlfjnbLpecapjppie => "KMKAOJLFJNB_LPECAPJPPIE", + Self::KmkaojlfjnbAaiklcokngf => "KMKAOJLFJNB_AAIKLCOKNGF", + Self::KmkaojlfjnbJppjleilphk => "KMKAOJLFJNB_JPPJLEILPHK", + Self::KmkaojlfjnbDipmklannfd => "KMKAOJLFJNB_DIPMKLANNFD", + Self::KmkaojlfjnbDoflamachha => "KMKAOJLFJNB_DOFLAMACHHA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PRODUCT_GIFT_NONE" => Some(Self::ProductGiftNone), - "PRODUCT_GIFT_COIN" => Some(Self::ProductGiftCoin), - "PRODUCT_GIFT_MONTH_CARD" => Some(Self::ProductGiftMonthCard), - "PRODUCT_GIFT_BP_68" => Some(Self::ProductGiftBp68), - "PRODUCT_GIFT_BP_128" => Some(Self::ProductGiftBp128), - "PRODUCT_GIFT_BP68_UPGRADE_128" => Some(Self::ProductGiftBp68Upgrade128), - "PRODUCT_GIFT_POINT_CARD" => Some(Self::ProductGiftPointCard), - "PRODUCT_GIFT_PS_PRE_ORDER_1" => Some(Self::ProductGiftPsPreOrder1), - "PRODUCT_GIFT_PS_PRE_ORDER_2" => Some(Self::ProductGiftPsPreOrder2), - "PRODUCT_GIFT_GOOGLE_POINTS_100" => Some(Self::ProductGiftGooglePoints100), - "PRODUCT_GIFT_GOOGLE_POINTS_150" => Some(Self::ProductGiftGooglePoints150), - "PRODUCT_GIFT_PS_POINT_CARD_030" => Some(Self::ProductGiftPsPointCard030), - "PRODUCT_GIFT_PS_POINT_CARD_050" => Some(Self::ProductGiftPsPointCard050), - "PRODUCT_GIFT_PS_POINT_CARD_100" => Some(Self::ProductGiftPsPointCard100), - "PRODUCT_GIFT_PSN_PLUS" => Some(Self::ProductGiftPsnPlus), - "PRODUCT_GIFT_SINGLE_6" => Some(Self::ProductGiftSingle6), - "PRODUCT_GIFT_DAILY_LOGIN_30" => Some(Self::ProductGiftDailyLogin30), - "PRODUCT_GIFT_APPLE_GIFT_CARD" => Some(Self::ProductGiftAppleGiftCard), - "PRODUCT_GIFT_FTC_UP_GACHA_TICKET_1" => { - Some(Self::ProductGiftFtcUpGachaTicket1) - } - "PRODUCT_GIFT_FTC_UP_GACHA_TICKET_10" => { - Some(Self::ProductGiftFtcUpGachaTicket10) - } - "PRODUCT_GIFT_FTC_NORMAL_GACHA_TICKET_1" => { - Some(Self::ProductGiftFtcNormalGachaTicket1) - } - "PRODUCT_GIFT_FTC_NORMAL_GACHA_TICKET_10" => { - Some(Self::ProductGiftFtcNormalGachaTicket10) - } - "PRODUCT_GIFT_TICKET_10" => Some(Self::ProductGiftTicket10), + "KMKAOJLFJNB_KMKPJEKOLDD" => Some(Self::KmkaojlfjnbKmkpjekoldd), + "KMKAOJLFJNB_FKMAIIAONOJ" => Some(Self::KmkaojlfjnbFkmaiiaonoj), + "KMKAOJLFJNB_NGFNOPFIFCL" => Some(Self::KmkaojlfjnbNgfnopfifcl), + "KMKAOJLFJNB_BBOPMHBNHDA" => Some(Self::KmkaojlfjnbBbopmhbnhda), + "KMKAOJLFJNB_EFLFBJNPJPG" => Some(Self::KmkaojlfjnbEflfbjnpjpg), + "KMKAOJLFJNB_HMJPFMJBFAE" => Some(Self::KmkaojlfjnbHmjpfmjbfae), + "KMKAOJLFJNB_PMHAAFLKCDG" => Some(Self::KmkaojlfjnbPmhaaflkcdg), + "KMKAOJLFJNB_IGJMOBGLJPL" => Some(Self::KmkaojlfjnbIgjmobgljpl), + "KMKAOJLFJNB_GMIICOCAKFI" => Some(Self::KmkaojlfjnbGmiicocakfi), + "KMKAOJLFJNB_BPOOIPBPFEA" => Some(Self::KmkaojlfjnbBpooipbpfea), + "KMKAOJLFJNB_FMDADJKIBID" => Some(Self::KmkaojlfjnbFmdadjkibid), + "KMKAOJLFJNB_MBEHHFDMCMM" => Some(Self::KmkaojlfjnbMbehhfdmcmm), + "KMKAOJLFJNB_MMAFMMFMALO" => Some(Self::KmkaojlfjnbMmafmmfmalo), + "KMKAOJLFJNB_BHFGFDAMKMD" => Some(Self::KmkaojlfjnbBhfgfdamkmd), + "KMKAOJLFJNB_GEJNLHJBMLM" => Some(Self::KmkaojlfjnbGejnlhjbmlm), + "KMKAOJLFJNB_DLIOOHANIBB" => Some(Self::KmkaojlfjnbDlioohanibb), + "KMKAOJLFJNB_PEAAKODIFDK" => Some(Self::KmkaojlfjnbPeaakodifdk), + "KMKAOJLFJNB_NNKJIDPPIKP" => Some(Self::KmkaojlfjnbNnkjidppikp), + "KMKAOJLFJNB_LPECAPJPPIE" => Some(Self::KmkaojlfjnbLpecapjppie), + "KMKAOJLFJNB_AAIKLCOKNGF" => Some(Self::KmkaojlfjnbAaiklcokngf), + "KMKAOJLFJNB_JPPJLEILPHK" => Some(Self::KmkaojlfjnbJppjleilphk), + "KMKAOJLFJNB_DIPMKLANNFD" => Some(Self::KmkaojlfjnbDipmklannfd), + "KMKAOJLFJNB_DOFLAMACHHA" => Some(Self::KmkaojlfjnbDoflamachha), _ => None, } } @@ -59290,91 +61130,93 @@ impl ProductGiftType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeatureSwitchType { - FeatureSwitchNone = 0, - FeatureSwitchShop = 1, - FeatureSwitchLineupName = 2, - FeatureSwitchRechargeShop = 3, - FeatureSwitchNickname = 4, - FeatureSwitchSignature = 5, - FeatureSwitchBattlepass = 6, - FeatureSwitchPunkLord = 7, - FeatureSwitchMonthcardDaily = 8, - FeatureSwitchPictureShare = 9, - FeatureSwitchRogue = 10, - FeatureSwitchChallenge = 11, - FeatureSwitchCocoon = 12, - FeatureSwitchRaid = 13, - FeatureSwitchMazePlaneEvent = 14, - FeatureSwitchActivityPanel = 15, - FeatureSwitchMailbox = 16, - FeatureSwitchQuest = 17, - FeatureSwitchGacha = 18, - FeatureSwitchChat = 19, - FeatureSwitchModifyFriendAlias = 20, - FeatureSwitchUseItem = 21, - FeatureSwitchActivitySchedule = 22, - FeatureSwitchFarmElement = 23, - FeatureSwitchAchievementLevel = 24, - FeatureSwitchDailyActiveLevel = 25, - FeatureSwitchPlayerReturn = 26, - FeatureSwitchFirstSetNickname = 27, - FeatureSwitchMainMissionReward = 28, - FeatureSwitchSubMissionReward = 29, - FeatureSwitchPamMission = 30, - FeatureSwitchDestroyItem = 32, - FeatureSwitchConsumeItemTurn = 33, - FeatureSwitchRogueModifier = 34, - FeatureSwitchChessRogue = 35, - FeatureSwitchChessRogueBoard = 36, - FeatureSwitchRollShop = 37, - FeatureSwitchH5Return = 38, - FeatureSwitchOffering = 39, - FeatureSwitchServerRedPoint = 40, - FeatureSwitchMonopolyOptionRatio = 41, - FeatureSwitchMonopolyGetRaffleTicket = 42, - FeatureSwitchMonopolyTakeRaffleReward = 43, - FeatureSwitchChallengeRecommendLineup = 44, - FeatureSwitchPsnMemberShipCheck = 45, - FeatureSwitchPlayerBoardDevelopment = 46, - FeatureSwitchPvp = 47, - FeatureSwitchRogueMode = 48, - FeatureSwitchRogueTournUgc = 49, - FeatureSwitchRelicFilterPlanName = 50, - FeatureSwitchMazeItemUseBuffDrop = 51, - FeatureSwitchRedDot = 52, - FeatureSwitchGameStateService = 53, - FeatureSwitchBenefitIndex = 54, - FeatureSwitchRogueTournBuildRef = 55, - FeatureSwitchPreAvatarSetGrowthTarget = 56, - FeatureSwitchImportRelicFilterPlan = 58, - FeatureSwitchGachaDecideItem = 59, - FeatureSwitchItemSync = 60, - FeatureSwitchRechargeBenefit = 61, - FeatureSwitchRechargeGift = 62, - FeatureSwitchRogueTournBuildRefShareCode = 63, - FeatureSwitchGachaAvatarToast = 64, - FeatureSwitchRogueTournBuildRefShareCodeRename = 65, - FeatureSwitchRelicSmartDiscard = 66, - FeatureSwitchPlanetfesSocial = 67, - FeatureSwitchRelicReforge = 68, - FeatureSwitchRelicCompose = 69, - FeatureSwitchRelicDecompose = 70, - FeatureSwitchRogueTournCocoon = 71, - FeatureSwitchItemCompose = 72, - FeatureSwitchGrowMaterialAutoComplete = 73, - FeatureSwitchSkipPerformance = 74, - FeatureSwitchFate = 75, - FeatureSwitchFateAvatarHandbook = 76, - FeatureSwitchElfRestaurant = 77, - FeatureSwitchBattleTimeoutLegal = 78, - FeatureSwitchHipplen = 79, - FeatureSwitchHipplenEffect = 80, - FeatureSwitchReplayPerformance = 81, - FeatureSwitchGridFightRef = 82, - FeatureSwitchRelicBox = 83, - FeatureSwitchGridFightStartGamePlay = 84, - FeatureSwitchGridFightBanAugment = 85, - FeatureSwitchGridFightBanPortalBuff = 86, + JjaeepfjmcfKonnoonhcol = 0, + JjaeepfjmcfNmjnifojoha = 1, + JjaeepfjmcfNfmjagmfdgf = 2, + JjaeepfjmcfLcepjpgedon = 3, + JjaeepfjmcfHenmjodlefe = 4, + JjaeepfjmcfPpgjjcifppj = 5, + JjaeepfjmcfAeiaamdefha = 6, + JjaeepfjmcfLfpkclidbmb = 7, + JjaeepfjmcfLcmbcoplnna = 8, + JjaeepfjmcfAgjfameoicm = 9, + JjaeepfjmcfHchpjdkgjab = 10, + JjaeepfjmcfEfolkhnfcco = 11, + JjaeepfjmcfOlacnojadca = 12, + JjaeepfjmcfIcfnehideke = 13, + JjaeepfjmcfPpjbgcolmao = 14, + JjaeepfjmcfFpjpcjjpnai = 15, + JjaeepfjmcfAbpllimpkmj = 16, + JjaeepfjmcfAoahkbmaebf = 17, + JjaeepfjmcfGcohnnabkcf = 18, + JjaeepfjmcfEamllgnndbn = 19, + JjaeepfjmcfKdfghnlgfol = 20, + JjaeepfjmcfNkemajdmlfn = 21, + JjaeepfjmcfNbinkabkdbg = 22, + JjaeepfjmcfLihniphnemp = 23, + JjaeepfjmcfObapkkkbkhf = 24, + JjaeepfjmcfEbgdklodehk = 25, + JjaeepfjmcfFlpnpanjfkl = 26, + JjaeepfjmcfJebhddgeedo = 27, + JjaeepfjmcfMmklipoaocp = 28, + JjaeepfjmcfPhibacfpmci = 29, + JjaeepfjmcfOkocgjmbcji = 30, + JjaeepfjmcfJaimgbglaja = 32, + JjaeepfjmcfNgbfocibgal = 33, + JjaeepfjmcfBfgmlionadh = 34, + JjaeepfjmcfEahhkjkoipm = 35, + JjaeepfjmcfBljnagphbid = 36, + JjaeepfjmcfJfjphhibnlj = 37, + JjaeepfjmcfMkpejpacjld = 38, + JjaeepfjmcfHiokgpklggh = 39, + JjaeepfjmcfHmblecmepph = 40, + JjaeepfjmcfJpddapdllla = 41, + JjaeepfjmcfLlgbijgbpli = 42, + JjaeepfjmcfHicplkgnpli = 43, + JjaeepfjmcfOhgpbabnlhe = 44, + JjaeepfjmcfDabggldkjaf = 45, + JjaeepfjmcfGbmhhdckoan = 46, + JjaeepfjmcfBfciecopdnn = 47, + JjaeepfjmcfIolgpkifkbd = 48, + JjaeepfjmcfJbdcigepead = 49, + JjaeepfjmcfObgmfmlaand = 50, + JjaeepfjmcfIdlfiddnilb = 51, + JjaeepfjmcfPpfaejdfmjj = 52, + JjaeepfjmcfIlebihhhaka = 53, + JjaeepfjmcfAgidhliidpk = 54, + JjaeepfjmcfJidehmbklff = 55, + JjaeepfjmcfGippgmonpce = 56, + JjaeepfjmcfJhphppaphfm = 58, + JjaeepfjmcfMpkelddkmbi = 59, + JjaeepfjmcfBncodmhbpll = 60, + JjaeepfjmcfEmmkbhlniah = 61, + JjaeepfjmcfHggkjnkfcil = 62, + JjaeepfjmcfKlkhipoiacc = 63, + JjaeepfjmcfBbjiofjebgb = 64, + JjaeepfjmcfOekeikegcop = 65, + JjaeepfjmcfNpcndocmlgg = 66, + JjaeepfjmcfOhdnnibphic = 67, + JjaeepfjmcfLdgjpfcfgaj = 68, + JjaeepfjmcfLflabcdgdkm = 69, + JjaeepfjmcfIbenhjokmbg = 70, + JjaeepfjmcfHdimflepgkj = 71, + JjaeepfjmcfPflgelcadpo = 72, + JjaeepfjmcfJnlnecgbajh = 73, + JjaeepfjmcfChdafkeanjo = 74, + JjaeepfjmcfNhnemmcmcmd = 75, + JjaeepfjmcfAlfjbggfjlg = 76, + JjaeepfjmcfKfgmhcablik = 77, + JjaeepfjmcfHmbhodagbhc = 78, + JjaeepfjmcfKegbbiijlln = 79, + JjaeepfjmcfKbplilbgfok = 80, + JjaeepfjmcfEefmpgnlpna = 81, + JjaeepfjmcfFmkhgdboomb = 82, + JjaeepfjmcfLnohfmneknl = 83, + JjaeepfjmcfFfibnljmofc = 84, + JjaeepfjmcfGemdckkioni = 85, + JjaeepfjmcfHbokcfihahh = 86, + JjaeepfjmcfCkgcefbihnm = 87, + JjaeepfjmcfIbdjhlffiaj = 88, } impl FeatureSwitchType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59383,287 +61225,185 @@ impl FeatureSwitchType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FeatureSwitchNone => "FEATURE_SWITCH_NONE", - Self::FeatureSwitchShop => "FEATURE_SWITCH_SHOP", - Self::FeatureSwitchLineupName => "FEATURE_SWITCH_LINEUP_NAME", - Self::FeatureSwitchRechargeShop => "FEATURE_SWITCH_RECHARGE_SHOP", - Self::FeatureSwitchNickname => "FEATURE_SWITCH_NICKNAME", - Self::FeatureSwitchSignature => "FEATURE_SWITCH_SIGNATURE", - Self::FeatureSwitchBattlepass => "FEATURE_SWITCH_BATTLEPASS", - Self::FeatureSwitchPunkLord => "FEATURE_SWITCH_PUNK_LORD", - Self::FeatureSwitchMonthcardDaily => "FEATURE_SWITCH_MONTHCARD_DAILY", - Self::FeatureSwitchPictureShare => "FEATURE_SWITCH_PICTURE_SHARE", - Self::FeatureSwitchRogue => "FEATURE_SWITCH_ROGUE", - Self::FeatureSwitchChallenge => "FEATURE_SWITCH_CHALLENGE", - Self::FeatureSwitchCocoon => "FEATURE_SWITCH_COCOON", - Self::FeatureSwitchRaid => "FEATURE_SWITCH_RAID", - Self::FeatureSwitchMazePlaneEvent => "FEATURE_SWITCH_MAZE_PLANE_EVENT", - Self::FeatureSwitchActivityPanel => "FEATURE_SWITCH_ACTIVITY_PANEL", - Self::FeatureSwitchMailbox => "FEATURE_SWITCH_MAILBOX", - Self::FeatureSwitchQuest => "FEATURE_SWITCH_QUEST", - Self::FeatureSwitchGacha => "FEATURE_SWITCH_GACHA", - Self::FeatureSwitchChat => "FEATURE_SWITCH_CHAT", - Self::FeatureSwitchModifyFriendAlias => "FEATURE_SWITCH_MODIFY_FRIEND_ALIAS", - Self::FeatureSwitchUseItem => "FEATURE_SWITCH_USE_ITEM", - Self::FeatureSwitchActivitySchedule => "FEATURE_SWITCH_ACTIVITY_SCHEDULE", - Self::FeatureSwitchFarmElement => "FEATURE_SWITCH_FARM_ELEMENT", - Self::FeatureSwitchAchievementLevel => "FEATURE_SWITCH_ACHIEVEMENT_LEVEL", - Self::FeatureSwitchDailyActiveLevel => "FEATURE_SWITCH_DAILY_ACTIVE_LEVEL", - Self::FeatureSwitchPlayerReturn => "FEATURE_SWITCH_PLAYER_RETURN", - Self::FeatureSwitchFirstSetNickname => "FEATURE_SWITCH_FIRST_SET_NICKNAME", - Self::FeatureSwitchMainMissionReward => "FEATURE_SWITCH_MAIN_MISSION_REWARD", - Self::FeatureSwitchSubMissionReward => "FEATURE_SWITCH_SUB_MISSION_REWARD", - Self::FeatureSwitchPamMission => "FEATURE_SWITCH_PAM_MISSION", - Self::FeatureSwitchDestroyItem => "FEATURE_SWITCH_DESTROY_ITEM", - Self::FeatureSwitchConsumeItemTurn => "FEATURE_SWITCH_CONSUME_ITEM_TURN", - Self::FeatureSwitchRogueModifier => "FEATURE_SWITCH_ROGUE_MODIFIER", - Self::FeatureSwitchChessRogue => "FEATURE_SWITCH_CHESS_ROGUE", - Self::FeatureSwitchChessRogueBoard => "FEATURE_SWITCH_CHESS_ROGUE_BOARD", - Self::FeatureSwitchRollShop => "FEATURE_SWITCH_ROLL_SHOP", - Self::FeatureSwitchH5Return => "FEATURE_SWITCH_H5_RETURN", - Self::FeatureSwitchOffering => "FEATURE_SWITCH_OFFERING", - Self::FeatureSwitchServerRedPoint => "FEATURE_SWITCH_SERVER_RED_POINT", - Self::FeatureSwitchMonopolyOptionRatio => { - "FEATURE_SWITCH_MONOPOLY_OPTION_RATIO" - } - Self::FeatureSwitchMonopolyGetRaffleTicket => { - "FEATURE_SWITCH_MONOPOLY_GET_RAFFLE_TICKET" - } - Self::FeatureSwitchMonopolyTakeRaffleReward => { - "FEATURE_SWITCH_MONOPOLY_TAKE_RAFFLE_REWARD" - } - Self::FeatureSwitchChallengeRecommendLineup => { - "FEATURE_SWITCH_CHALLENGE_RECOMMEND_LINEUP" - } - Self::FeatureSwitchPsnMemberShipCheck => { - "FEATURE_SWITCH_PSN_MEMBER_SHIP_CHECK" - } - Self::FeatureSwitchPlayerBoardDevelopment => { - "FEATURE_SWITCH_PLAYER_BOARD_DEVELOPMENT" - } - Self::FeatureSwitchPvp => "FEATURE_SWITCH_PVP", - Self::FeatureSwitchRogueMode => "FEATURE_SWITCH_ROGUE_MODE", - Self::FeatureSwitchRogueTournUgc => "FEATURE_SWITCH_ROGUE_TOURN_UGC", - Self::FeatureSwitchRelicFilterPlanName => { - "FEATURE_SWITCH_RELIC_FILTER_PLAN_NAME" - } - Self::FeatureSwitchMazeItemUseBuffDrop => { - "FEATURE_SWITCH_MAZE_ITEM_USE_BUFF_DROP" - } - Self::FeatureSwitchRedDot => "FEATURE_SWITCH_RED_DOT", - Self::FeatureSwitchGameStateService => "FEATURE_SWITCH_GAME_STATE_SERVICE", - Self::FeatureSwitchBenefitIndex => "FEATURE_SWITCH_BENEFIT_INDEX", - Self::FeatureSwitchRogueTournBuildRef => { - "FEATURE_SWITCH_ROGUE_TOURN_BUILD_REF" - } - Self::FeatureSwitchPreAvatarSetGrowthTarget => { - "FEATURE_SWITCH_PRE_AVATAR_SET_GROWTH_TARGET" - } - Self::FeatureSwitchImportRelicFilterPlan => { - "FEATURE_SWITCH_IMPORT_RELIC_FILTER_PLAN" - } - Self::FeatureSwitchGachaDecideItem => "FEATURE_SWITCH_GACHA_DECIDE_ITEM", - Self::FeatureSwitchItemSync => "FEATURE_SWITCH_ITEM_SYNC", - Self::FeatureSwitchRechargeBenefit => "FEATURE_SWITCH_RECHARGE_BENEFIT", - Self::FeatureSwitchRechargeGift => "FEATURE_SWITCH_RECHARGE_GIFT", - Self::FeatureSwitchRogueTournBuildRefShareCode => { - "FEATURE_SWITCH_ROGUE_TOURN_BUILD_REF_SHARE_CODE" - } - Self::FeatureSwitchGachaAvatarToast => "FEATURE_SWITCH_GACHA_AVATAR_TOAST", - Self::FeatureSwitchRogueTournBuildRefShareCodeRename => { - "FEATURE_SWITCH_ROGUE_TOURN_BUILD_REF_SHARE_CODE_RENAME" - } - Self::FeatureSwitchRelicSmartDiscard => "FEATURE_SWITCH_RELIC_SMART_DISCARD", - Self::FeatureSwitchPlanetfesSocial => "FEATURE_SWITCH_PLANETFES_SOCIAL", - Self::FeatureSwitchRelicReforge => "FEATURE_SWITCH_RELIC_REFORGE", - Self::FeatureSwitchRelicCompose => "FEATURE_SWITCH_RELIC_COMPOSE", - Self::FeatureSwitchRelicDecompose => "FEATURE_SWITCH_RELIC_DECOMPOSE", - Self::FeatureSwitchRogueTournCocoon => "FEATURE_SWITCH_ROGUE_TOURN_COCOON", - Self::FeatureSwitchItemCompose => "FEATURE_SWITCH_ITEM_COMPOSE", - Self::FeatureSwitchGrowMaterialAutoComplete => { - "FEATURE_SWITCH_GROW_MATERIAL_AUTO_COMPLETE" - } - Self::FeatureSwitchSkipPerformance => "FEATURE_SWITCH_SKIP_PERFORMANCE", - Self::FeatureSwitchFate => "FEATURE_SWITCH_FATE", - Self::FeatureSwitchFateAvatarHandbook => { - "FEATURE_SWITCH_FATE_AVATAR_HANDBOOK" - } - Self::FeatureSwitchElfRestaurant => "FEATURE_SWITCH_ELF_RESTAURANT", - Self::FeatureSwitchBattleTimeoutLegal => { - "FEATURE_SWITCH_BATTLE_TIMEOUT_LEGAL" - } - Self::FeatureSwitchHipplen => "FEATURE_SWITCH_HIPPLEN", - Self::FeatureSwitchHipplenEffect => "FEATURE_SWITCH_HIPPLEN_EFFECT", - Self::FeatureSwitchReplayPerformance => "FEATURE_SWITCH_REPLAY_PERFORMANCE", - Self::FeatureSwitchGridFightRef => "FEATURE_SWITCH_GRID_FIGHT_REF", - Self::FeatureSwitchRelicBox => "FEATURE_SWITCH_RELIC_BOX", - Self::FeatureSwitchGridFightStartGamePlay => { - "FEATURE_SWITCH_GRID_FIGHT_START_GAME_PLAY" - } - Self::FeatureSwitchGridFightBanAugment => { - "FEATURE_SWITCH_GRID_FIGHT_BAN_AUGMENT" - } - Self::FeatureSwitchGridFightBanPortalBuff => { - "FEATURE_SWITCH_GRID_FIGHT_BAN_PORTAL_BUFF" - } + Self::JjaeepfjmcfKonnoonhcol => "JJAEEPFJMCF_KONNOONHCOL", + Self::JjaeepfjmcfNmjnifojoha => "JJAEEPFJMCF_NMJNIFOJOHA", + Self::JjaeepfjmcfNfmjagmfdgf => "JJAEEPFJMCF_NFMJAGMFDGF", + Self::JjaeepfjmcfLcepjpgedon => "JJAEEPFJMCF_LCEPJPGEDON", + Self::JjaeepfjmcfHenmjodlefe => "JJAEEPFJMCF_HENMJODLEFE", + Self::JjaeepfjmcfPpgjjcifppj => "JJAEEPFJMCF_PPGJJCIFPPJ", + Self::JjaeepfjmcfAeiaamdefha => "JJAEEPFJMCF_AEIAAMDEFHA", + Self::JjaeepfjmcfLfpkclidbmb => "JJAEEPFJMCF_LFPKCLIDBMB", + Self::JjaeepfjmcfLcmbcoplnna => "JJAEEPFJMCF_LCMBCOPLNNA", + Self::JjaeepfjmcfAgjfameoicm => "JJAEEPFJMCF_AGJFAMEOICM", + Self::JjaeepfjmcfHchpjdkgjab => "JJAEEPFJMCF_HCHPJDKGJAB", + Self::JjaeepfjmcfEfolkhnfcco => "JJAEEPFJMCF_EFOLKHNFCCO", + Self::JjaeepfjmcfOlacnojadca => "JJAEEPFJMCF_OLACNOJADCA", + Self::JjaeepfjmcfIcfnehideke => "JJAEEPFJMCF_ICFNEHIDEKE", + Self::JjaeepfjmcfPpjbgcolmao => "JJAEEPFJMCF_PPJBGCOLMAO", + Self::JjaeepfjmcfFpjpcjjpnai => "JJAEEPFJMCF_FPJPCJJPNAI", + Self::JjaeepfjmcfAbpllimpkmj => "JJAEEPFJMCF_ABPLLIMPKMJ", + Self::JjaeepfjmcfAoahkbmaebf => "JJAEEPFJMCF_AOAHKBMAEBF", + Self::JjaeepfjmcfGcohnnabkcf => "JJAEEPFJMCF_GCOHNNABKCF", + Self::JjaeepfjmcfEamllgnndbn => "JJAEEPFJMCF_EAMLLGNNDBN", + Self::JjaeepfjmcfKdfghnlgfol => "JJAEEPFJMCF_KDFGHNLGFOL", + Self::JjaeepfjmcfNkemajdmlfn => "JJAEEPFJMCF_NKEMAJDMLFN", + Self::JjaeepfjmcfNbinkabkdbg => "JJAEEPFJMCF_NBINKABKDBG", + Self::JjaeepfjmcfLihniphnemp => "JJAEEPFJMCF_LIHNIPHNEMP", + Self::JjaeepfjmcfObapkkkbkhf => "JJAEEPFJMCF_OBAPKKKBKHF", + Self::JjaeepfjmcfEbgdklodehk => "JJAEEPFJMCF_EBGDKLODEHK", + Self::JjaeepfjmcfFlpnpanjfkl => "JJAEEPFJMCF_FLPNPANJFKL", + Self::JjaeepfjmcfJebhddgeedo => "JJAEEPFJMCF_JEBHDDGEEDO", + Self::JjaeepfjmcfMmklipoaocp => "JJAEEPFJMCF_MMKLIPOAOCP", + Self::JjaeepfjmcfPhibacfpmci => "JJAEEPFJMCF_PHIBACFPMCI", + Self::JjaeepfjmcfOkocgjmbcji => "JJAEEPFJMCF_OKOCGJMBCJI", + Self::JjaeepfjmcfJaimgbglaja => "JJAEEPFJMCF_JAIMGBGLAJA", + Self::JjaeepfjmcfNgbfocibgal => "JJAEEPFJMCF_NGBFOCIBGAL", + Self::JjaeepfjmcfBfgmlionadh => "JJAEEPFJMCF_BFGMLIONADH", + Self::JjaeepfjmcfEahhkjkoipm => "JJAEEPFJMCF_EAHHKJKOIPM", + Self::JjaeepfjmcfBljnagphbid => "JJAEEPFJMCF_BLJNAGPHBID", + Self::JjaeepfjmcfJfjphhibnlj => "JJAEEPFJMCF_JFJPHHIBNLJ", + Self::JjaeepfjmcfMkpejpacjld => "JJAEEPFJMCF_MKPEJPACJLD", + Self::JjaeepfjmcfHiokgpklggh => "JJAEEPFJMCF_HIOKGPKLGGH", + Self::JjaeepfjmcfHmblecmepph => "JJAEEPFJMCF_HMBLECMEPPH", + Self::JjaeepfjmcfJpddapdllla => "JJAEEPFJMCF_JPDDAPDLLLA", + Self::JjaeepfjmcfLlgbijgbpli => "JJAEEPFJMCF_LLGBIJGBPLI", + Self::JjaeepfjmcfHicplkgnpli => "JJAEEPFJMCF_HICPLKGNPLI", + Self::JjaeepfjmcfOhgpbabnlhe => "JJAEEPFJMCF_OHGPBABNLHE", + Self::JjaeepfjmcfDabggldkjaf => "JJAEEPFJMCF_DABGGLDKJAF", + Self::JjaeepfjmcfGbmhhdckoan => "JJAEEPFJMCF_GBMHHDCKOAN", + Self::JjaeepfjmcfBfciecopdnn => "JJAEEPFJMCF_BFCIECOPDNN", + Self::JjaeepfjmcfIolgpkifkbd => "JJAEEPFJMCF_IOLGPKIFKBD", + Self::JjaeepfjmcfJbdcigepead => "JJAEEPFJMCF_JBDCIGEPEAD", + Self::JjaeepfjmcfObgmfmlaand => "JJAEEPFJMCF_OBGMFMLAAND", + Self::JjaeepfjmcfIdlfiddnilb => "JJAEEPFJMCF_IDLFIDDNILB", + Self::JjaeepfjmcfPpfaejdfmjj => "JJAEEPFJMCF_PPFAEJDFMJJ", + Self::JjaeepfjmcfIlebihhhaka => "JJAEEPFJMCF_ILEBIHHHAKA", + Self::JjaeepfjmcfAgidhliidpk => "JJAEEPFJMCF_AGIDHLIIDPK", + Self::JjaeepfjmcfJidehmbklff => "JJAEEPFJMCF_JIDEHMBKLFF", + Self::JjaeepfjmcfGippgmonpce => "JJAEEPFJMCF_GIPPGMONPCE", + Self::JjaeepfjmcfJhphppaphfm => "JJAEEPFJMCF_JHPHPPAPHFM", + Self::JjaeepfjmcfMpkelddkmbi => "JJAEEPFJMCF_MPKELDDKMBI", + Self::JjaeepfjmcfBncodmhbpll => "JJAEEPFJMCF_BNCODMHBPLL", + Self::JjaeepfjmcfEmmkbhlniah => "JJAEEPFJMCF_EMMKBHLNIAH", + Self::JjaeepfjmcfHggkjnkfcil => "JJAEEPFJMCF_HGGKJNKFCIL", + Self::JjaeepfjmcfKlkhipoiacc => "JJAEEPFJMCF_KLKHIPOIACC", + Self::JjaeepfjmcfBbjiofjebgb => "JJAEEPFJMCF_BBJIOFJEBGB", + Self::JjaeepfjmcfOekeikegcop => "JJAEEPFJMCF_OEKEIKEGCOP", + Self::JjaeepfjmcfNpcndocmlgg => "JJAEEPFJMCF_NPCNDOCMLGG", + Self::JjaeepfjmcfOhdnnibphic => "JJAEEPFJMCF_OHDNNIBPHIC", + Self::JjaeepfjmcfLdgjpfcfgaj => "JJAEEPFJMCF_LDGJPFCFGAJ", + Self::JjaeepfjmcfLflabcdgdkm => "JJAEEPFJMCF_LFLABCDGDKM", + Self::JjaeepfjmcfIbenhjokmbg => "JJAEEPFJMCF_IBENHJOKMBG", + Self::JjaeepfjmcfHdimflepgkj => "JJAEEPFJMCF_HDIMFLEPGKJ", + Self::JjaeepfjmcfPflgelcadpo => "JJAEEPFJMCF_PFLGELCADPO", + Self::JjaeepfjmcfJnlnecgbajh => "JJAEEPFJMCF_JNLNECGBAJH", + Self::JjaeepfjmcfChdafkeanjo => "JJAEEPFJMCF_CHDAFKEANJO", + Self::JjaeepfjmcfNhnemmcmcmd => "JJAEEPFJMCF_NHNEMMCMCMD", + Self::JjaeepfjmcfAlfjbggfjlg => "JJAEEPFJMCF_ALFJBGGFJLG", + Self::JjaeepfjmcfKfgmhcablik => "JJAEEPFJMCF_KFGMHCABLIK", + Self::JjaeepfjmcfHmbhodagbhc => "JJAEEPFJMCF_HMBHODAGBHC", + Self::JjaeepfjmcfKegbbiijlln => "JJAEEPFJMCF_KEGBBIIJLLN", + Self::JjaeepfjmcfKbplilbgfok => "JJAEEPFJMCF_KBPLILBGFOK", + Self::JjaeepfjmcfEefmpgnlpna => "JJAEEPFJMCF_EEFMPGNLPNA", + Self::JjaeepfjmcfFmkhgdboomb => "JJAEEPFJMCF_FMKHGDBOOMB", + Self::JjaeepfjmcfLnohfmneknl => "JJAEEPFJMCF_LNOHFMNEKNL", + Self::JjaeepfjmcfFfibnljmofc => "JJAEEPFJMCF_FFIBNLJMOFC", + Self::JjaeepfjmcfGemdckkioni => "JJAEEPFJMCF_GEMDCKKIONI", + Self::JjaeepfjmcfHbokcfihahh => "JJAEEPFJMCF_HBOKCFIHAHH", + Self::JjaeepfjmcfCkgcefbihnm => "JJAEEPFJMCF_CKGCEFBIHNM", + Self::JjaeepfjmcfIbdjhlffiaj => "JJAEEPFJMCF_IBDJHLFFIAJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FEATURE_SWITCH_NONE" => Some(Self::FeatureSwitchNone), - "FEATURE_SWITCH_SHOP" => Some(Self::FeatureSwitchShop), - "FEATURE_SWITCH_LINEUP_NAME" => Some(Self::FeatureSwitchLineupName), - "FEATURE_SWITCH_RECHARGE_SHOP" => Some(Self::FeatureSwitchRechargeShop), - "FEATURE_SWITCH_NICKNAME" => Some(Self::FeatureSwitchNickname), - "FEATURE_SWITCH_SIGNATURE" => Some(Self::FeatureSwitchSignature), - "FEATURE_SWITCH_BATTLEPASS" => Some(Self::FeatureSwitchBattlepass), - "FEATURE_SWITCH_PUNK_LORD" => Some(Self::FeatureSwitchPunkLord), - "FEATURE_SWITCH_MONTHCARD_DAILY" => Some(Self::FeatureSwitchMonthcardDaily), - "FEATURE_SWITCH_PICTURE_SHARE" => Some(Self::FeatureSwitchPictureShare), - "FEATURE_SWITCH_ROGUE" => Some(Self::FeatureSwitchRogue), - "FEATURE_SWITCH_CHALLENGE" => Some(Self::FeatureSwitchChallenge), - "FEATURE_SWITCH_COCOON" => Some(Self::FeatureSwitchCocoon), - "FEATURE_SWITCH_RAID" => Some(Self::FeatureSwitchRaid), - "FEATURE_SWITCH_MAZE_PLANE_EVENT" => Some(Self::FeatureSwitchMazePlaneEvent), - "FEATURE_SWITCH_ACTIVITY_PANEL" => Some(Self::FeatureSwitchActivityPanel), - "FEATURE_SWITCH_MAILBOX" => Some(Self::FeatureSwitchMailbox), - "FEATURE_SWITCH_QUEST" => Some(Self::FeatureSwitchQuest), - "FEATURE_SWITCH_GACHA" => Some(Self::FeatureSwitchGacha), - "FEATURE_SWITCH_CHAT" => Some(Self::FeatureSwitchChat), - "FEATURE_SWITCH_MODIFY_FRIEND_ALIAS" => { - Some(Self::FeatureSwitchModifyFriendAlias) - } - "FEATURE_SWITCH_USE_ITEM" => Some(Self::FeatureSwitchUseItem), - "FEATURE_SWITCH_ACTIVITY_SCHEDULE" => { - Some(Self::FeatureSwitchActivitySchedule) - } - "FEATURE_SWITCH_FARM_ELEMENT" => Some(Self::FeatureSwitchFarmElement), - "FEATURE_SWITCH_ACHIEVEMENT_LEVEL" => { - Some(Self::FeatureSwitchAchievementLevel) - } - "FEATURE_SWITCH_DAILY_ACTIVE_LEVEL" => { - Some(Self::FeatureSwitchDailyActiveLevel) - } - "FEATURE_SWITCH_PLAYER_RETURN" => Some(Self::FeatureSwitchPlayerReturn), - "FEATURE_SWITCH_FIRST_SET_NICKNAME" => { - Some(Self::FeatureSwitchFirstSetNickname) - } - "FEATURE_SWITCH_MAIN_MISSION_REWARD" => { - Some(Self::FeatureSwitchMainMissionReward) - } - "FEATURE_SWITCH_SUB_MISSION_REWARD" => { - Some(Self::FeatureSwitchSubMissionReward) - } - "FEATURE_SWITCH_PAM_MISSION" => Some(Self::FeatureSwitchPamMission), - "FEATURE_SWITCH_DESTROY_ITEM" => Some(Self::FeatureSwitchDestroyItem), - "FEATURE_SWITCH_CONSUME_ITEM_TURN" => { - Some(Self::FeatureSwitchConsumeItemTurn) - } - "FEATURE_SWITCH_ROGUE_MODIFIER" => Some(Self::FeatureSwitchRogueModifier), - "FEATURE_SWITCH_CHESS_ROGUE" => Some(Self::FeatureSwitchChessRogue), - "FEATURE_SWITCH_CHESS_ROGUE_BOARD" => { - Some(Self::FeatureSwitchChessRogueBoard) - } - "FEATURE_SWITCH_ROLL_SHOP" => Some(Self::FeatureSwitchRollShop), - "FEATURE_SWITCH_H5_RETURN" => Some(Self::FeatureSwitchH5Return), - "FEATURE_SWITCH_OFFERING" => Some(Self::FeatureSwitchOffering), - "FEATURE_SWITCH_SERVER_RED_POINT" => Some(Self::FeatureSwitchServerRedPoint), - "FEATURE_SWITCH_MONOPOLY_OPTION_RATIO" => { - Some(Self::FeatureSwitchMonopolyOptionRatio) - } - "FEATURE_SWITCH_MONOPOLY_GET_RAFFLE_TICKET" => { - Some(Self::FeatureSwitchMonopolyGetRaffleTicket) - } - "FEATURE_SWITCH_MONOPOLY_TAKE_RAFFLE_REWARD" => { - Some(Self::FeatureSwitchMonopolyTakeRaffleReward) - } - "FEATURE_SWITCH_CHALLENGE_RECOMMEND_LINEUP" => { - Some(Self::FeatureSwitchChallengeRecommendLineup) - } - "FEATURE_SWITCH_PSN_MEMBER_SHIP_CHECK" => { - Some(Self::FeatureSwitchPsnMemberShipCheck) - } - "FEATURE_SWITCH_PLAYER_BOARD_DEVELOPMENT" => { - Some(Self::FeatureSwitchPlayerBoardDevelopment) - } - "FEATURE_SWITCH_PVP" => Some(Self::FeatureSwitchPvp), - "FEATURE_SWITCH_ROGUE_MODE" => Some(Self::FeatureSwitchRogueMode), - "FEATURE_SWITCH_ROGUE_TOURN_UGC" => Some(Self::FeatureSwitchRogueTournUgc), - "FEATURE_SWITCH_RELIC_FILTER_PLAN_NAME" => { - Some(Self::FeatureSwitchRelicFilterPlanName) - } - "FEATURE_SWITCH_MAZE_ITEM_USE_BUFF_DROP" => { - Some(Self::FeatureSwitchMazeItemUseBuffDrop) - } - "FEATURE_SWITCH_RED_DOT" => Some(Self::FeatureSwitchRedDot), - "FEATURE_SWITCH_GAME_STATE_SERVICE" => { - Some(Self::FeatureSwitchGameStateService) - } - "FEATURE_SWITCH_BENEFIT_INDEX" => Some(Self::FeatureSwitchBenefitIndex), - "FEATURE_SWITCH_ROGUE_TOURN_BUILD_REF" => { - Some(Self::FeatureSwitchRogueTournBuildRef) - } - "FEATURE_SWITCH_PRE_AVATAR_SET_GROWTH_TARGET" => { - Some(Self::FeatureSwitchPreAvatarSetGrowthTarget) - } - "FEATURE_SWITCH_IMPORT_RELIC_FILTER_PLAN" => { - Some(Self::FeatureSwitchImportRelicFilterPlan) - } - "FEATURE_SWITCH_GACHA_DECIDE_ITEM" => { - Some(Self::FeatureSwitchGachaDecideItem) - } - "FEATURE_SWITCH_ITEM_SYNC" => Some(Self::FeatureSwitchItemSync), - "FEATURE_SWITCH_RECHARGE_BENEFIT" => Some(Self::FeatureSwitchRechargeBenefit), - "FEATURE_SWITCH_RECHARGE_GIFT" => Some(Self::FeatureSwitchRechargeGift), - "FEATURE_SWITCH_ROGUE_TOURN_BUILD_REF_SHARE_CODE" => { - Some(Self::FeatureSwitchRogueTournBuildRefShareCode) - } - "FEATURE_SWITCH_GACHA_AVATAR_TOAST" => { - Some(Self::FeatureSwitchGachaAvatarToast) - } - "FEATURE_SWITCH_ROGUE_TOURN_BUILD_REF_SHARE_CODE_RENAME" => { - Some(Self::FeatureSwitchRogueTournBuildRefShareCodeRename) - } - "FEATURE_SWITCH_RELIC_SMART_DISCARD" => { - Some(Self::FeatureSwitchRelicSmartDiscard) - } - "FEATURE_SWITCH_PLANETFES_SOCIAL" => Some(Self::FeatureSwitchPlanetfesSocial), - "FEATURE_SWITCH_RELIC_REFORGE" => Some(Self::FeatureSwitchRelicReforge), - "FEATURE_SWITCH_RELIC_COMPOSE" => Some(Self::FeatureSwitchRelicCompose), - "FEATURE_SWITCH_RELIC_DECOMPOSE" => Some(Self::FeatureSwitchRelicDecompose), - "FEATURE_SWITCH_ROGUE_TOURN_COCOON" => { - Some(Self::FeatureSwitchRogueTournCocoon) - } - "FEATURE_SWITCH_ITEM_COMPOSE" => Some(Self::FeatureSwitchItemCompose), - "FEATURE_SWITCH_GROW_MATERIAL_AUTO_COMPLETE" => { - Some(Self::FeatureSwitchGrowMaterialAutoComplete) - } - "FEATURE_SWITCH_SKIP_PERFORMANCE" => Some(Self::FeatureSwitchSkipPerformance), - "FEATURE_SWITCH_FATE" => Some(Self::FeatureSwitchFate), - "FEATURE_SWITCH_FATE_AVATAR_HANDBOOK" => { - Some(Self::FeatureSwitchFateAvatarHandbook) - } - "FEATURE_SWITCH_ELF_RESTAURANT" => Some(Self::FeatureSwitchElfRestaurant), - "FEATURE_SWITCH_BATTLE_TIMEOUT_LEGAL" => { - Some(Self::FeatureSwitchBattleTimeoutLegal) - } - "FEATURE_SWITCH_HIPPLEN" => Some(Self::FeatureSwitchHipplen), - "FEATURE_SWITCH_HIPPLEN_EFFECT" => Some(Self::FeatureSwitchHipplenEffect), - "FEATURE_SWITCH_REPLAY_PERFORMANCE" => { - Some(Self::FeatureSwitchReplayPerformance) - } - "FEATURE_SWITCH_GRID_FIGHT_REF" => Some(Self::FeatureSwitchGridFightRef), - "FEATURE_SWITCH_RELIC_BOX" => Some(Self::FeatureSwitchRelicBox), - "FEATURE_SWITCH_GRID_FIGHT_START_GAME_PLAY" => { - Some(Self::FeatureSwitchGridFightStartGamePlay) - } - "FEATURE_SWITCH_GRID_FIGHT_BAN_AUGMENT" => { - Some(Self::FeatureSwitchGridFightBanAugment) - } - "FEATURE_SWITCH_GRID_FIGHT_BAN_PORTAL_BUFF" => { - Some(Self::FeatureSwitchGridFightBanPortalBuff) - } + "JJAEEPFJMCF_KONNOONHCOL" => Some(Self::JjaeepfjmcfKonnoonhcol), + "JJAEEPFJMCF_NMJNIFOJOHA" => Some(Self::JjaeepfjmcfNmjnifojoha), + "JJAEEPFJMCF_NFMJAGMFDGF" => Some(Self::JjaeepfjmcfNfmjagmfdgf), + "JJAEEPFJMCF_LCEPJPGEDON" => Some(Self::JjaeepfjmcfLcepjpgedon), + "JJAEEPFJMCF_HENMJODLEFE" => Some(Self::JjaeepfjmcfHenmjodlefe), + "JJAEEPFJMCF_PPGJJCIFPPJ" => Some(Self::JjaeepfjmcfPpgjjcifppj), + "JJAEEPFJMCF_AEIAAMDEFHA" => Some(Self::JjaeepfjmcfAeiaamdefha), + "JJAEEPFJMCF_LFPKCLIDBMB" => Some(Self::JjaeepfjmcfLfpkclidbmb), + "JJAEEPFJMCF_LCMBCOPLNNA" => Some(Self::JjaeepfjmcfLcmbcoplnna), + "JJAEEPFJMCF_AGJFAMEOICM" => Some(Self::JjaeepfjmcfAgjfameoicm), + "JJAEEPFJMCF_HCHPJDKGJAB" => Some(Self::JjaeepfjmcfHchpjdkgjab), + "JJAEEPFJMCF_EFOLKHNFCCO" => Some(Self::JjaeepfjmcfEfolkhnfcco), + "JJAEEPFJMCF_OLACNOJADCA" => Some(Self::JjaeepfjmcfOlacnojadca), + "JJAEEPFJMCF_ICFNEHIDEKE" => Some(Self::JjaeepfjmcfIcfnehideke), + "JJAEEPFJMCF_PPJBGCOLMAO" => Some(Self::JjaeepfjmcfPpjbgcolmao), + "JJAEEPFJMCF_FPJPCJJPNAI" => Some(Self::JjaeepfjmcfFpjpcjjpnai), + "JJAEEPFJMCF_ABPLLIMPKMJ" => Some(Self::JjaeepfjmcfAbpllimpkmj), + "JJAEEPFJMCF_AOAHKBMAEBF" => Some(Self::JjaeepfjmcfAoahkbmaebf), + "JJAEEPFJMCF_GCOHNNABKCF" => Some(Self::JjaeepfjmcfGcohnnabkcf), + "JJAEEPFJMCF_EAMLLGNNDBN" => Some(Self::JjaeepfjmcfEamllgnndbn), + "JJAEEPFJMCF_KDFGHNLGFOL" => Some(Self::JjaeepfjmcfKdfghnlgfol), + "JJAEEPFJMCF_NKEMAJDMLFN" => Some(Self::JjaeepfjmcfNkemajdmlfn), + "JJAEEPFJMCF_NBINKABKDBG" => Some(Self::JjaeepfjmcfNbinkabkdbg), + "JJAEEPFJMCF_LIHNIPHNEMP" => Some(Self::JjaeepfjmcfLihniphnemp), + "JJAEEPFJMCF_OBAPKKKBKHF" => Some(Self::JjaeepfjmcfObapkkkbkhf), + "JJAEEPFJMCF_EBGDKLODEHK" => Some(Self::JjaeepfjmcfEbgdklodehk), + "JJAEEPFJMCF_FLPNPANJFKL" => Some(Self::JjaeepfjmcfFlpnpanjfkl), + "JJAEEPFJMCF_JEBHDDGEEDO" => Some(Self::JjaeepfjmcfJebhddgeedo), + "JJAEEPFJMCF_MMKLIPOAOCP" => Some(Self::JjaeepfjmcfMmklipoaocp), + "JJAEEPFJMCF_PHIBACFPMCI" => Some(Self::JjaeepfjmcfPhibacfpmci), + "JJAEEPFJMCF_OKOCGJMBCJI" => Some(Self::JjaeepfjmcfOkocgjmbcji), + "JJAEEPFJMCF_JAIMGBGLAJA" => Some(Self::JjaeepfjmcfJaimgbglaja), + "JJAEEPFJMCF_NGBFOCIBGAL" => Some(Self::JjaeepfjmcfNgbfocibgal), + "JJAEEPFJMCF_BFGMLIONADH" => Some(Self::JjaeepfjmcfBfgmlionadh), + "JJAEEPFJMCF_EAHHKJKOIPM" => Some(Self::JjaeepfjmcfEahhkjkoipm), + "JJAEEPFJMCF_BLJNAGPHBID" => Some(Self::JjaeepfjmcfBljnagphbid), + "JJAEEPFJMCF_JFJPHHIBNLJ" => Some(Self::JjaeepfjmcfJfjphhibnlj), + "JJAEEPFJMCF_MKPEJPACJLD" => Some(Self::JjaeepfjmcfMkpejpacjld), + "JJAEEPFJMCF_HIOKGPKLGGH" => Some(Self::JjaeepfjmcfHiokgpklggh), + "JJAEEPFJMCF_HMBLECMEPPH" => Some(Self::JjaeepfjmcfHmblecmepph), + "JJAEEPFJMCF_JPDDAPDLLLA" => Some(Self::JjaeepfjmcfJpddapdllla), + "JJAEEPFJMCF_LLGBIJGBPLI" => Some(Self::JjaeepfjmcfLlgbijgbpli), + "JJAEEPFJMCF_HICPLKGNPLI" => Some(Self::JjaeepfjmcfHicplkgnpli), + "JJAEEPFJMCF_OHGPBABNLHE" => Some(Self::JjaeepfjmcfOhgpbabnlhe), + "JJAEEPFJMCF_DABGGLDKJAF" => Some(Self::JjaeepfjmcfDabggldkjaf), + "JJAEEPFJMCF_GBMHHDCKOAN" => Some(Self::JjaeepfjmcfGbmhhdckoan), + "JJAEEPFJMCF_BFCIECOPDNN" => Some(Self::JjaeepfjmcfBfciecopdnn), + "JJAEEPFJMCF_IOLGPKIFKBD" => Some(Self::JjaeepfjmcfIolgpkifkbd), + "JJAEEPFJMCF_JBDCIGEPEAD" => Some(Self::JjaeepfjmcfJbdcigepead), + "JJAEEPFJMCF_OBGMFMLAAND" => Some(Self::JjaeepfjmcfObgmfmlaand), + "JJAEEPFJMCF_IDLFIDDNILB" => Some(Self::JjaeepfjmcfIdlfiddnilb), + "JJAEEPFJMCF_PPFAEJDFMJJ" => Some(Self::JjaeepfjmcfPpfaejdfmjj), + "JJAEEPFJMCF_ILEBIHHHAKA" => Some(Self::JjaeepfjmcfIlebihhhaka), + "JJAEEPFJMCF_AGIDHLIIDPK" => Some(Self::JjaeepfjmcfAgidhliidpk), + "JJAEEPFJMCF_JIDEHMBKLFF" => Some(Self::JjaeepfjmcfJidehmbklff), + "JJAEEPFJMCF_GIPPGMONPCE" => Some(Self::JjaeepfjmcfGippgmonpce), + "JJAEEPFJMCF_JHPHPPAPHFM" => Some(Self::JjaeepfjmcfJhphppaphfm), + "JJAEEPFJMCF_MPKELDDKMBI" => Some(Self::JjaeepfjmcfMpkelddkmbi), + "JJAEEPFJMCF_BNCODMHBPLL" => Some(Self::JjaeepfjmcfBncodmhbpll), + "JJAEEPFJMCF_EMMKBHLNIAH" => Some(Self::JjaeepfjmcfEmmkbhlniah), + "JJAEEPFJMCF_HGGKJNKFCIL" => Some(Self::JjaeepfjmcfHggkjnkfcil), + "JJAEEPFJMCF_KLKHIPOIACC" => Some(Self::JjaeepfjmcfKlkhipoiacc), + "JJAEEPFJMCF_BBJIOFJEBGB" => Some(Self::JjaeepfjmcfBbjiofjebgb), + "JJAEEPFJMCF_OEKEIKEGCOP" => Some(Self::JjaeepfjmcfOekeikegcop), + "JJAEEPFJMCF_NPCNDOCMLGG" => Some(Self::JjaeepfjmcfNpcndocmlgg), + "JJAEEPFJMCF_OHDNNIBPHIC" => Some(Self::JjaeepfjmcfOhdnnibphic), + "JJAEEPFJMCF_LDGJPFCFGAJ" => Some(Self::JjaeepfjmcfLdgjpfcfgaj), + "JJAEEPFJMCF_LFLABCDGDKM" => Some(Self::JjaeepfjmcfLflabcdgdkm), + "JJAEEPFJMCF_IBENHJOKMBG" => Some(Self::JjaeepfjmcfIbenhjokmbg), + "JJAEEPFJMCF_HDIMFLEPGKJ" => Some(Self::JjaeepfjmcfHdimflepgkj), + "JJAEEPFJMCF_PFLGELCADPO" => Some(Self::JjaeepfjmcfPflgelcadpo), + "JJAEEPFJMCF_JNLNECGBAJH" => Some(Self::JjaeepfjmcfJnlnecgbajh), + "JJAEEPFJMCF_CHDAFKEANJO" => Some(Self::JjaeepfjmcfChdafkeanjo), + "JJAEEPFJMCF_NHNEMMCMCMD" => Some(Self::JjaeepfjmcfNhnemmcmcmd), + "JJAEEPFJMCF_ALFJBGGFJLG" => Some(Self::JjaeepfjmcfAlfjbggfjlg), + "JJAEEPFJMCF_KFGMHCABLIK" => Some(Self::JjaeepfjmcfKfgmhcablik), + "JJAEEPFJMCF_HMBHODAGBHC" => Some(Self::JjaeepfjmcfHmbhodagbhc), + "JJAEEPFJMCF_KEGBBIIJLLN" => Some(Self::JjaeepfjmcfKegbbiijlln), + "JJAEEPFJMCF_KBPLILBGFOK" => Some(Self::JjaeepfjmcfKbplilbgfok), + "JJAEEPFJMCF_EEFMPGNLPNA" => Some(Self::JjaeepfjmcfEefmpgnlpna), + "JJAEEPFJMCF_FMKHGDBOOMB" => Some(Self::JjaeepfjmcfFmkhgdboomb), + "JJAEEPFJMCF_LNOHFMNEKNL" => Some(Self::JjaeepfjmcfLnohfmneknl), + "JJAEEPFJMCF_FFIBNLJMOFC" => Some(Self::JjaeepfjmcfFfibnljmofc), + "JJAEEPFJMCF_GEMDCKKIONI" => Some(Self::JjaeepfjmcfGemdckkioni), + "JJAEEPFJMCF_HBOKCFIHAHH" => Some(Self::JjaeepfjmcfHbokcfihahh), + "JJAEEPFJMCF_CKGCEFBIHNM" => Some(Self::JjaeepfjmcfCkgcefbihnm), + "JJAEEPFJMCF_IBDJHLFFIAJ" => Some(Self::JjaeepfjmcfIbdjhlffiaj), _ => None, } } @@ -59672,10 +61412,10 @@ impl FeatureSwitchType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SecretKeyType { - SecretKeyNone = 0, - SecretKeyServerCheck = 1, - SecretKeyVideo = 2, - SecretKeyBattleTime = 3, + JioklhmkgihImeaomkaopo = 0, + JioklhmkgihNclfkpglben = 1, + JioklhmkgihCcfdnjdggbe = 2, + JioklhmkgihHclmppojcli = 3, } impl SecretKeyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59684,19 +61424,19 @@ impl SecretKeyType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::SecretKeyNone => "SECRET_KEY_NONE", - Self::SecretKeyServerCheck => "SECRET_KEY_SERVER_CHECK", - Self::SecretKeyVideo => "SECRET_KEY_VIDEO", - Self::SecretKeyBattleTime => "SECRET_KEY_BATTLE_TIME", + Self::JioklhmkgihImeaomkaopo => "JIOKLHMKGIH_IMEAOMKAOPO", + Self::JioklhmkgihNclfkpglben => "JIOKLHMKGIH_NCLFKPGLBEN", + Self::JioklhmkgihCcfdnjdggbe => "JIOKLHMKGIH_CCFDNJDGGBE", + Self::JioklhmkgihHclmppojcli => "JIOKLHMKGIH_HCLMPPOJCLI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SECRET_KEY_NONE" => Some(Self::SecretKeyNone), - "SECRET_KEY_SERVER_CHECK" => Some(Self::SecretKeyServerCheck), - "SECRET_KEY_VIDEO" => Some(Self::SecretKeyVideo), - "SECRET_KEY_BATTLE_TIME" => Some(Self::SecretKeyBattleTime), + "JIOKLHMKGIH_IMEAOMKAOPO" => Some(Self::JioklhmkgihImeaomkaopo), + "JIOKLHMKGIH_NCLFKPGLBEN" => Some(Self::JioklhmkgihNclfkpglben), + "JIOKLHMKGIH_CCFDNJDGGBE" => Some(Self::JioklhmkgihCcfdnjdggbe), + "JIOKLHMKGIH_HCLMPPOJCLI" => Some(Self::JioklhmkgihHclmppojcli), _ => None, } } @@ -59705,8 +61445,8 @@ impl SecretKeyType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ReplayType { - None = 0, - PunkLord = 1, + GkklpipmiejAlocmfakbkp = 0, + GkklpipmiejFojooejncle = 1, } impl ReplayType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59715,15 +61455,15 @@ impl ReplayType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "REPLAY_TYPE_NONE", - Self::PunkLord => "REPLAY_TYPE_PUNK_LORD", + Self::GkklpipmiejAlocmfakbkp => "GKKLPIPMIEJ_ALOCMFAKBKP", + Self::GkklpipmiejFojooejncle => "GKKLPIPMIEJ_FOJOOEJNCLE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "REPLAY_TYPE_NONE" => Some(Self::None), - "REPLAY_TYPE_PUNK_LORD" => Some(Self::PunkLord), + "GKKLPIPMIEJ_ALOCMFAKBKP" => Some(Self::GkklpipmiejAlocmfakbkp), + "GKKLPIPMIEJ_FOJOOEJNCLE" => Some(Self::GkklpipmiejFojooejncle), _ => None, } } @@ -59732,9 +61472,9 @@ impl ReplayType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PunkLordShareType { - None = 0, - Friend = 1, - All = 2, + ApjpceiadejAlocmfakbkp = 0, + ApjpceiadejDegkmdegpfj = 1, + ApjpceiadejJgelcoepibn = 2, } impl PunkLordShareType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59743,17 +61483,17 @@ impl PunkLordShareType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "PUNK_LORD_SHARE_TYPE_NONE", - Self::Friend => "PUNK_LORD_SHARE_TYPE_FRIEND", - Self::All => "PUNK_LORD_SHARE_TYPE_ALL", + Self::ApjpceiadejAlocmfakbkp => "APJPCEIADEJ_ALOCMFAKBKP", + Self::ApjpceiadejDegkmdegpfj => "APJPCEIADEJ_DEGKMDEGPFJ", + Self::ApjpceiadejJgelcoepibn => "APJPCEIADEJ_JGELCOEPIBN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PUNK_LORD_SHARE_TYPE_NONE" => Some(Self::None), - "PUNK_LORD_SHARE_TYPE_FRIEND" => Some(Self::Friend), - "PUNK_LORD_SHARE_TYPE_ALL" => Some(Self::All), + "APJPCEIADEJ_ALOCMFAKBKP" => Some(Self::ApjpceiadejAlocmfakbkp), + "APJPCEIADEJ_DEGKMDEGPFJ" => Some(Self::ApjpceiadejDegkmdegpfj), + "APJPCEIADEJ_JGELCOEPIBN" => Some(Self::ApjpceiadejJgelcoepibn), _ => None, } } @@ -59762,10 +61502,10 @@ impl PunkLordShareType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PunkLordAttackerStatus { - None = 0, - Attacked = 1, - Attacking = 2, - AttackedAndAttacking = 3, + FfnkebnpcdmAlocmfakbkp = 0, + FfnkebnpcdmBmlampocogb = 1, + FfnkebnpcdmDgnklfmjacj = 2, + FfnkebnpcdmBmagfigflph = 3, } impl PunkLordAttackerStatus { /// String value of the enum field names used in the ProtoBuf definition. @@ -59774,23 +61514,19 @@ impl PunkLordAttackerStatus { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "PUNK_LORD_ATTACKER_STATUS_NONE", - Self::Attacked => "PUNK_LORD_ATTACKER_STATUS_ATTACKED", - Self::Attacking => "PUNK_LORD_ATTACKER_STATUS_ATTACKING", - Self::AttackedAndAttacking => { - "PUNK_LORD_ATTACKER_STATUS_ATTACKED_AND_ATTACKING" - } + Self::FfnkebnpcdmAlocmfakbkp => "FFNKEBNPCDM_ALOCMFAKBKP", + Self::FfnkebnpcdmBmlampocogb => "FFNKEBNPCDM_BMLAMPOCOGB", + Self::FfnkebnpcdmDgnklfmjacj => "FFNKEBNPCDM_DGNKLFMJACJ", + Self::FfnkebnpcdmBmagfigflph => "FFNKEBNPCDM_BMAGFIGFLPH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PUNK_LORD_ATTACKER_STATUS_NONE" => Some(Self::None), - "PUNK_LORD_ATTACKER_STATUS_ATTACKED" => Some(Self::Attacked), - "PUNK_LORD_ATTACKER_STATUS_ATTACKING" => Some(Self::Attacking), - "PUNK_LORD_ATTACKER_STATUS_ATTACKED_AND_ATTACKING" => { - Some(Self::AttackedAndAttacking) - } + "FFNKEBNPCDM_ALOCMFAKBKP" => Some(Self::FfnkebnpcdmAlocmfakbkp), + "FFNKEBNPCDM_BMLAMPOCOGB" => Some(Self::FfnkebnpcdmBmlampocogb), + "FFNKEBNPCDM_DGNKLFMJACJ" => Some(Self::FfnkebnpcdmDgnklfmjacj), + "FFNKEBNPCDM_BMAGFIGFLPH" => Some(Self::FfnkebnpcdmBmagfigflph), _ => None, } } @@ -59799,10 +61535,10 @@ impl PunkLordAttackerStatus { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PunkLordMonsterInfoNotifyReason { - None = 0, - EnterRaid = 1, - BattleEnd = 2, - LeaveRaid = 3, + IgemgmajebpAlocmfakbkp = 0, + IgemgmajebpCjpcknpghbk = 1, + IgemgmajebpInnnjfnjdbb = 2, + IgemgmajebpEdcfefpijna = 3, } impl PunkLordMonsterInfoNotifyReason { /// String value of the enum field names used in the ProtoBuf definition. @@ -59811,19 +61547,19 @@ impl PunkLordMonsterInfoNotifyReason { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "PUNK_LORD_MONSTER_INFO_NOTIFY_REASON_NONE", - Self::EnterRaid => "PUNK_LORD_MONSTER_INFO_NOTIFY_REASON_ENTER_RAID", - Self::BattleEnd => "PUNK_LORD_MONSTER_INFO_NOTIFY_REASON_BATTLE_END", - Self::LeaveRaid => "PUNK_LORD_MONSTER_INFO_NOTIFY_REASON_LEAVE_RAID", + Self::IgemgmajebpAlocmfakbkp => "IGEMGMAJEBP_ALOCMFAKBKP", + Self::IgemgmajebpCjpcknpghbk => "IGEMGMAJEBP_CJPCKNPGHBK", + Self::IgemgmajebpInnnjfnjdbb => "IGEMGMAJEBP_INNNJFNJDBB", + Self::IgemgmajebpEdcfefpijna => "IGEMGMAJEBP_EDCFEFPIJNA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PUNK_LORD_MONSTER_INFO_NOTIFY_REASON_NONE" => Some(Self::None), - "PUNK_LORD_MONSTER_INFO_NOTIFY_REASON_ENTER_RAID" => Some(Self::EnterRaid), - "PUNK_LORD_MONSTER_INFO_NOTIFY_REASON_BATTLE_END" => Some(Self::BattleEnd), - "PUNK_LORD_MONSTER_INFO_NOTIFY_REASON_LEAVE_RAID" => Some(Self::LeaveRaid), + "IGEMGMAJEBP_ALOCMFAKBKP" => Some(Self::IgemgmajebpAlocmfakbkp), + "IGEMGMAJEBP_CJPCKNPGHBK" => Some(Self::IgemgmajebpCjpcknpghbk), + "IGEMGMAJEBP_INNNJFNJDBB" => Some(Self::IgemgmajebpInnnjfnjdbb), + "IGEMGMAJEBP_EDCFEFPIJNA" => Some(Self::IgemgmajebpEdcfefpijna), _ => None, } } @@ -59832,9 +61568,9 @@ impl PunkLordMonsterInfoNotifyReason { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ChatType { - None = 0, - Private = 1, - Group = 2, + JljaompcgmeAlocmfakbkp = 0, + JljaompcgmeCgbebglpllc = 1, + JljaompcgmeDnheabmhoej = 2, } impl ChatType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59843,17 +61579,17 @@ impl ChatType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CHAT_TYPE_NONE", - Self::Private => "CHAT_TYPE_PRIVATE", - Self::Group => "CHAT_TYPE_GROUP", + Self::JljaompcgmeAlocmfakbkp => "JLJAOMPCGME_ALOCMFAKBKP", + Self::JljaompcgmeCgbebglpllc => "JLJAOMPCGME_CGBEBGLPLLC", + Self::JljaompcgmeDnheabmhoej => "JLJAOMPCGME_DNHEABMHOEJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHAT_TYPE_NONE" => Some(Self::None), - "CHAT_TYPE_PRIVATE" => Some(Self::Private), - "CHAT_TYPE_GROUP" => Some(Self::Group), + "JLJAOMPCGME_ALOCMFAKBKP" => Some(Self::JljaompcgmeAlocmfakbkp), + "JLJAOMPCGME_CGBEBGLPLLC" => Some(Self::JljaompcgmeCgbebglpllc), + "JLJAOMPCGME_DNHEABMHOEJ" => Some(Self::JljaompcgmeDnheabmhoej), _ => None, } } @@ -59897,33 +61633,29 @@ impl MsgType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Gejhdkjnclp { - PlanetFesMsgContentNone = 0, - PlanetFesMsgContentApplyReq = 1, - PlanetFesMsgContentPieceOffered = 2, +pub enum PlanetFesType { + PdkhcfofmmfBimpkfcpdac = 0, + PdkhcfofmmfNdodfndmcpk = 1, + PdkhcfofmmfCjogfcffajl = 2, } -impl Gejhdkjnclp { +impl PlanetFesType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlanetFesMsgContentNone => "PLANET_FES_MSG_CONTENT_NONE", - Self::PlanetFesMsgContentApplyReq => "PLANET_FES_MSG_CONTENT_APPLY_REQ", - Self::PlanetFesMsgContentPieceOffered => { - "PLANET_FES_MSG_CONTENT_PIECE_OFFERED" - } + Self::PdkhcfofmmfBimpkfcpdac => "PDKHCFOFMMF_BIMPKFCPDAC", + Self::PdkhcfofmmfNdodfndmcpk => "PDKHCFOFMMF_NDODFNDMCPK", + Self::PdkhcfofmmfCjogfcffajl => "PDKHCFOFMMF_CJOGFCFFAJL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLANET_FES_MSG_CONTENT_NONE" => Some(Self::PlanetFesMsgContentNone), - "PLANET_FES_MSG_CONTENT_APPLY_REQ" => Some(Self::PlanetFesMsgContentApplyReq), - "PLANET_FES_MSG_CONTENT_PIECE_OFFERED" => { - Some(Self::PlanetFesMsgContentPieceOffered) - } + "PDKHCFOFMMF_BIMPKFCPDAC" => Some(Self::PdkhcfofmmfBimpkfcpdac), + "PDKHCFOFMMF_NDODFNDMCPK" => Some(Self::PdkhcfofmmfNdodfndmcpk), + "PDKHCFOFMMF_CJOGFCFFAJL" => Some(Self::PdkhcfofmmfCjogfcffajl), _ => None, } } @@ -59932,9 +61664,9 @@ impl Gejhdkjnclp { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ShieldType { - None = 0, - Replace = 1, - Shied = 2, + LenojaggfdhAlocmfakbkp = 0, + LenojaggfdhHcglimkpdpb = 1, + LenojaggfdhBfkopaepaga = 2, } impl ShieldType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59943,17 +61675,17 @@ impl ShieldType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "SHIELD_TYPE_NONE", - Self::Replace => "SHIELD_TYPE_REPLACE", - Self::Shied => "SHIELD_TYPE_SHIED", + Self::LenojaggfdhAlocmfakbkp => "LENOJAGGFDH_ALOCMFAKBKP", + Self::LenojaggfdhHcglimkpdpb => "LENOJAGGFDH_HCGLIMKPDPB", + Self::LenojaggfdhBfkopaepaga => "LENOJAGGFDH_BFKOPAEPAGA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SHIELD_TYPE_NONE" => Some(Self::None), - "SHIELD_TYPE_REPLACE" => Some(Self::Replace), - "SHIELD_TYPE_SHIED" => Some(Self::Shied), + "LENOJAGGFDH_ALOCMFAKBKP" => Some(Self::LenojaggfdhAlocmfakbkp), + "LENOJAGGFDH_HCGLIMKPDPB" => Some(Self::LenojaggfdhHcglimkpdpb), + "LENOJAGGFDH_BFKOPAEPAGA" => Some(Self::LenojaggfdhBfkopaepaga), _ => None, } } @@ -59962,15 +61694,15 @@ impl ShieldType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FuncUnlockIdType { - FuncUnlockIdNone = 0, - FuncUnlockIdRelic = 403, - FuncUnlockIdRelicNum = 404, - FuncUnlockIdEquipment = 401, - FuncUnlockIdSkilltree = 402, - FuncUnlockIdGacha = 2300, - FuncUnlockIdExpedition = 3100, - FuncUnlockIdCompose = 4100, - FuncUnlockIdFightactivity = 3700, + IjelgppncbjAlocmfakbkp = 0, + IjelgppncbjHnpebnndaba = 403, + IjelgppncbjMamjpjkbkjf = 404, + IjelgppncbjFmjddlknnpb = 401, + IjelgppncbjIdbdgidkjao = 402, + IjelgppncbjEijcdihbhbc = 2300, + IjelgppncbjDhjjbihhkgo = 3100, + IjelgppncbjKhfjmklfobb = 4100, + IjelgppncbjNfollohoaph = 3700, } impl FuncUnlockIdType { /// String value of the enum field names used in the ProtoBuf definition. @@ -59979,29 +61711,29 @@ impl FuncUnlockIdType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FuncUnlockIdNone => "FUNC_UNLOCK_ID_NONE", - Self::FuncUnlockIdRelic => "FUNC_UNLOCK_ID_RELIC", - Self::FuncUnlockIdRelicNum => "FUNC_UNLOCK_ID_RELIC_NUM", - Self::FuncUnlockIdEquipment => "FUNC_UNLOCK_ID_EQUIPMENT", - Self::FuncUnlockIdSkilltree => "FUNC_UNLOCK_ID_SKILLTREE", - Self::FuncUnlockIdGacha => "FUNC_UNLOCK_ID_GACHA", - Self::FuncUnlockIdExpedition => "FUNC_UNLOCK_ID_EXPEDITION", - Self::FuncUnlockIdCompose => "FUNC_UNLOCK_ID_COMPOSE", - Self::FuncUnlockIdFightactivity => "FUNC_UNLOCK_ID_FIGHTACTIVITY", + Self::IjelgppncbjAlocmfakbkp => "IJELGPPNCBJ_ALOCMFAKBKP", + Self::IjelgppncbjHnpebnndaba => "IJELGPPNCBJ_HNPEBNNDABA", + Self::IjelgppncbjMamjpjkbkjf => "IJELGPPNCBJ_MAMJPJKBKJF", + Self::IjelgppncbjFmjddlknnpb => "IJELGPPNCBJ_FMJDDLKNNPB", + Self::IjelgppncbjIdbdgidkjao => "IJELGPPNCBJ_IDBDGIDKJAO", + Self::IjelgppncbjEijcdihbhbc => "IJELGPPNCBJ_EIJCDIHBHBC", + Self::IjelgppncbjDhjjbihhkgo => "IJELGPPNCBJ_DHJJBIHHKGO", + Self::IjelgppncbjKhfjmklfobb => "IJELGPPNCBJ_KHFJMKLFOBB", + Self::IjelgppncbjNfollohoaph => "IJELGPPNCBJ_NFOLLOHOAPH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FUNC_UNLOCK_ID_NONE" => Some(Self::FuncUnlockIdNone), - "FUNC_UNLOCK_ID_RELIC" => Some(Self::FuncUnlockIdRelic), - "FUNC_UNLOCK_ID_RELIC_NUM" => Some(Self::FuncUnlockIdRelicNum), - "FUNC_UNLOCK_ID_EQUIPMENT" => Some(Self::FuncUnlockIdEquipment), - "FUNC_UNLOCK_ID_SKILLTREE" => Some(Self::FuncUnlockIdSkilltree), - "FUNC_UNLOCK_ID_GACHA" => Some(Self::FuncUnlockIdGacha), - "FUNC_UNLOCK_ID_EXPEDITION" => Some(Self::FuncUnlockIdExpedition), - "FUNC_UNLOCK_ID_COMPOSE" => Some(Self::FuncUnlockIdCompose), - "FUNC_UNLOCK_ID_FIGHTACTIVITY" => Some(Self::FuncUnlockIdFightactivity), + "IJELGPPNCBJ_ALOCMFAKBKP" => Some(Self::IjelgppncbjAlocmfakbkp), + "IJELGPPNCBJ_HNPEBNNDABA" => Some(Self::IjelgppncbjHnpebnndaba), + "IJELGPPNCBJ_MAMJPJKBKJF" => Some(Self::IjelgppncbjMamjpjkbkjf), + "IJELGPPNCBJ_FMJDDLKNNPB" => Some(Self::IjelgppncbjFmjddlknnpb), + "IJELGPPNCBJ_IDBDGIDKJAO" => Some(Self::IjelgppncbjIdbdgidkjao), + "IJELGPPNCBJ_EIJCDIHBHBC" => Some(Self::IjelgppncbjEijcdihbhbc), + "IJELGPPNCBJ_DHJJBIHHKGO" => Some(Self::IjelgppncbjDhjjbihhkgo), + "IJELGPPNCBJ_KHFJMKLFOBB" => Some(Self::IjelgppncbjKhfjmklfobb), + "IJELGPPNCBJ_NFOLLOHOAPH" => Some(Self::IjelgppncbjNfollohoaph), _ => None, } } @@ -60010,9 +61742,9 @@ impl FuncUnlockIdType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AssistAvatarType { - AssistAvatarUnknow = 0, - AssistAvatarLevel = 1, - AssistAvatarRank = 2, + DkeojblfmkgPonhopboefp = 0, + DkeojblfmkgKigfkmjbndh = 1, + DkeojblfmkgDcjipgohadk = 2, } impl AssistAvatarType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60021,17 +61753,17 @@ impl AssistAvatarType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::AssistAvatarUnknow => "ASSIST_AVATAR_UNKNOW", - Self::AssistAvatarLevel => "ASSIST_AVATAR_LEVEL", - Self::AssistAvatarRank => "ASSIST_AVATAR_RANK", + Self::DkeojblfmkgPonhopboefp => "DKEOJBLFMKG_PONHOPBOEFP", + Self::DkeojblfmkgKigfkmjbndh => "DKEOJBLFMKG_KIGFKMJBNDH", + Self::DkeojblfmkgDcjipgohadk => "DKEOJBLFMKG_DCJIPGOHADK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ASSIST_AVATAR_UNKNOW" => Some(Self::AssistAvatarUnknow), - "ASSIST_AVATAR_LEVEL" => Some(Self::AssistAvatarLevel), - "ASSIST_AVATAR_RANK" => Some(Self::AssistAvatarRank), + "DKEOJBLFMKG_PONHOPBOEFP" => Some(Self::DkeojblfmkgPonhopboefp), + "DKEOJBLFMKG_KIGFKMJBNDH" => Some(Self::DkeojblfmkgKigfkmjbndh), + "DKEOJBLFMKG_DCJIPGOHADK" => Some(Self::DkeojblfmkgDcjipgohadk), _ => None, } } @@ -60040,25 +61772,25 @@ impl AssistAvatarType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum DevelopmentType { - DevelopmentNone = 0, - DevelopmentRogueCosmos = 1, - DevelopmentRogueChess = 2, - DevelopmentRogueChessNous = 3, - DevelopmentMemoryChallenge = 4, - DevelopmentStoryChallenge = 5, - DevelopmentUnlockAvatar = 6, - DevelopmentUnlockEquipment = 7, - DevelopmentActivityStart = 8, - DevelopmentActivityEnd = 9, - DevelopmentBossChallenge = 10, - DevelopmentRogueTourn = 11, - DevelopmentRogueTournWeek = 12, - DevelopmentRogueMagic = 13, - DevelopmentChallengePeak = 14, - DevelopmentRogueTournDivision = 15, - DevelopmentGridFightDivision = 16, - DevelopmentGridFightGameplay = 17, - DevelopmentGridFightGameplayOcMode = 18, + FambgkjhoabOfplbfgaage = 0, + FambgkjhoabEibfiohjbhj = 1, + FambgkjhoabKfadjkoeodb = 2, + FambgkjhoabAblipgooncd = 3, + FambgkjhoabOpebclhachh = 4, + FambgkjhoabAbfjmokoehf = 5, + FambgkjhoabJbaaipdjcja = 6, + FambgkjhoabJfodmajjddp = 7, + FambgkjhoabKfbiboifgea = 8, + FambgkjhoabKcahidbbmog = 9, + FambgkjhoabMljkdmhjfgm = 10, + FambgkjhoabFgkaagakhng = 11, + FambgkjhoabNkphhlogjdl = 12, + FambgkjhoabCgdlkfnfkjl = 13, + FambgkjhoabDgkpcmjldjl = 14, + FambgkjhoabNgpebghcjnh = 15, + FambgkjhoabKilpfejkljl = 16, + FambgkjhoabIeephpbjjlb = 17, + FambgkjhoabBccioohpmah = 18, } impl DevelopmentType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60067,55 +61799,49 @@ impl DevelopmentType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::DevelopmentNone => "DEVELOPMENT_NONE", - Self::DevelopmentRogueCosmos => "DEVELOPMENT_ROGUE_COSMOS", - Self::DevelopmentRogueChess => "DEVELOPMENT_ROGUE_CHESS", - Self::DevelopmentRogueChessNous => "DEVELOPMENT_ROGUE_CHESS_NOUS", - Self::DevelopmentMemoryChallenge => "DEVELOPMENT_MEMORY_CHALLENGE", - Self::DevelopmentStoryChallenge => "DEVELOPMENT_STORY_CHALLENGE", - Self::DevelopmentUnlockAvatar => "DEVELOPMENT_UNLOCK_AVATAR", - Self::DevelopmentUnlockEquipment => "DEVELOPMENT_UNLOCK_EQUIPMENT", - Self::DevelopmentActivityStart => "DEVELOPMENT_ACTIVITY_START", - Self::DevelopmentActivityEnd => "DEVELOPMENT_ACTIVITY_END", - Self::DevelopmentBossChallenge => "DEVELOPMENT_BOSS_CHALLENGE", - Self::DevelopmentRogueTourn => "DEVELOPMENT_ROGUE_TOURN", - Self::DevelopmentRogueTournWeek => "DEVELOPMENT_ROGUE_TOURN_WEEK", - Self::DevelopmentRogueMagic => "DEVELOPMENT_ROGUE_MAGIC", - Self::DevelopmentChallengePeak => "DEVELOPMENT_CHALLENGE_PEAK", - Self::DevelopmentRogueTournDivision => "DEVELOPMENT_ROGUE_TOURN_DIVISION", - Self::DevelopmentGridFightDivision => "DEVELOPMENT_GRID_FIGHT_DIVISION", - Self::DevelopmentGridFightGameplay => "DEVELOPMENT_GRID_FIGHT_GAMEPLAY", - Self::DevelopmentGridFightGameplayOcMode => { - "DEVELOPMENT_GRID_FIGHT_GAMEPLAY_OC_MODE" - } + Self::FambgkjhoabOfplbfgaage => "FAMBGKJHOAB_OFPLBFGAAGE", + Self::FambgkjhoabEibfiohjbhj => "FAMBGKJHOAB_EIBFIOHJBHJ", + Self::FambgkjhoabKfadjkoeodb => "FAMBGKJHOAB_KFADJKOEODB", + Self::FambgkjhoabAblipgooncd => "FAMBGKJHOAB_ABLIPGOONCD", + Self::FambgkjhoabOpebclhachh => "FAMBGKJHOAB_OPEBCLHACHH", + Self::FambgkjhoabAbfjmokoehf => "FAMBGKJHOAB_ABFJMOKOEHF", + Self::FambgkjhoabJbaaipdjcja => "FAMBGKJHOAB_JBAAIPDJCJA", + Self::FambgkjhoabJfodmajjddp => "FAMBGKJHOAB_JFODMAJJDDP", + Self::FambgkjhoabKfbiboifgea => "FAMBGKJHOAB_KFBIBOIFGEA", + Self::FambgkjhoabKcahidbbmog => "FAMBGKJHOAB_KCAHIDBBMOG", + Self::FambgkjhoabMljkdmhjfgm => "FAMBGKJHOAB_MLJKDMHJFGM", + Self::FambgkjhoabFgkaagakhng => "FAMBGKJHOAB_FGKAAGAKHNG", + Self::FambgkjhoabNkphhlogjdl => "FAMBGKJHOAB_NKPHHLOGJDL", + Self::FambgkjhoabCgdlkfnfkjl => "FAMBGKJHOAB_CGDLKFNFKJL", + Self::FambgkjhoabDgkpcmjldjl => "FAMBGKJHOAB_DGKPCMJLDJL", + Self::FambgkjhoabNgpebghcjnh => "FAMBGKJHOAB_NGPEBGHCJNH", + Self::FambgkjhoabKilpfejkljl => "FAMBGKJHOAB_KILPFEJKLJL", + Self::FambgkjhoabIeephpbjjlb => "FAMBGKJHOAB_IEEPHPBJJLB", + Self::FambgkjhoabBccioohpmah => "FAMBGKJHOAB_BCCIOOHPMAH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "DEVELOPMENT_NONE" => Some(Self::DevelopmentNone), - "DEVELOPMENT_ROGUE_COSMOS" => Some(Self::DevelopmentRogueCosmos), - "DEVELOPMENT_ROGUE_CHESS" => Some(Self::DevelopmentRogueChess), - "DEVELOPMENT_ROGUE_CHESS_NOUS" => Some(Self::DevelopmentRogueChessNous), - "DEVELOPMENT_MEMORY_CHALLENGE" => Some(Self::DevelopmentMemoryChallenge), - "DEVELOPMENT_STORY_CHALLENGE" => Some(Self::DevelopmentStoryChallenge), - "DEVELOPMENT_UNLOCK_AVATAR" => Some(Self::DevelopmentUnlockAvatar), - "DEVELOPMENT_UNLOCK_EQUIPMENT" => Some(Self::DevelopmentUnlockEquipment), - "DEVELOPMENT_ACTIVITY_START" => Some(Self::DevelopmentActivityStart), - "DEVELOPMENT_ACTIVITY_END" => Some(Self::DevelopmentActivityEnd), - "DEVELOPMENT_BOSS_CHALLENGE" => Some(Self::DevelopmentBossChallenge), - "DEVELOPMENT_ROGUE_TOURN" => Some(Self::DevelopmentRogueTourn), - "DEVELOPMENT_ROGUE_TOURN_WEEK" => Some(Self::DevelopmentRogueTournWeek), - "DEVELOPMENT_ROGUE_MAGIC" => Some(Self::DevelopmentRogueMagic), - "DEVELOPMENT_CHALLENGE_PEAK" => Some(Self::DevelopmentChallengePeak), - "DEVELOPMENT_ROGUE_TOURN_DIVISION" => { - Some(Self::DevelopmentRogueTournDivision) - } - "DEVELOPMENT_GRID_FIGHT_DIVISION" => Some(Self::DevelopmentGridFightDivision), - "DEVELOPMENT_GRID_FIGHT_GAMEPLAY" => Some(Self::DevelopmentGridFightGameplay), - "DEVELOPMENT_GRID_FIGHT_GAMEPLAY_OC_MODE" => { - Some(Self::DevelopmentGridFightGameplayOcMode) - } + "FAMBGKJHOAB_OFPLBFGAAGE" => Some(Self::FambgkjhoabOfplbfgaage), + "FAMBGKJHOAB_EIBFIOHJBHJ" => Some(Self::FambgkjhoabEibfiohjbhj), + "FAMBGKJHOAB_KFADJKOEODB" => Some(Self::FambgkjhoabKfadjkoeodb), + "FAMBGKJHOAB_ABLIPGOONCD" => Some(Self::FambgkjhoabAblipgooncd), + "FAMBGKJHOAB_OPEBCLHACHH" => Some(Self::FambgkjhoabOpebclhachh), + "FAMBGKJHOAB_ABFJMOKOEHF" => Some(Self::FambgkjhoabAbfjmokoehf), + "FAMBGKJHOAB_JBAAIPDJCJA" => Some(Self::FambgkjhoabJbaaipdjcja), + "FAMBGKJHOAB_JFODMAJJDDP" => Some(Self::FambgkjhoabJfodmajjddp), + "FAMBGKJHOAB_KFBIBOIFGEA" => Some(Self::FambgkjhoabKfbiboifgea), + "FAMBGKJHOAB_KCAHIDBBMOG" => Some(Self::FambgkjhoabKcahidbbmog), + "FAMBGKJHOAB_MLJKDMHJFGM" => Some(Self::FambgkjhoabMljkdmhjfgm), + "FAMBGKJHOAB_FGKAAGAKHNG" => Some(Self::FambgkjhoabFgkaagakhng), + "FAMBGKJHOAB_NKPHHLOGJDL" => Some(Self::FambgkjhoabNkphhlogjdl), + "FAMBGKJHOAB_CGDLKFNFKJL" => Some(Self::FambgkjhoabCgdlkfnfkjl), + "FAMBGKJHOAB_DGKPCMJLDJL" => Some(Self::FambgkjhoabDgkpcmjldjl), + "FAMBGKJHOAB_NGPEBGHCJNH" => Some(Self::FambgkjhoabNgpebghcjnh), + "FAMBGKJHOAB_KILPFEJKLJL" => Some(Self::FambgkjhoabKilpfejkljl), + "FAMBGKJHOAB_IEEPHPBJJLB" => Some(Self::FambgkjhoabIeephpbjjlb), + "FAMBGKJHOAB_BCCIOOHPMAH" => Some(Self::FambgkjhoabBccioohpmah), _ => None, } } @@ -60124,16 +61850,17 @@ impl DevelopmentType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PlayingState { - None = 0, - PlayingRogueCosmos = 1, - PlayingRogueChess = 2, - PlayingRogueChessNous = 3, - PlayingChallengeMemory = 4, - PlayingChallengeStory = 5, - PlayingChallengeBoss = 6, - PlayingRogueTourn = 7, - PlayingRogueMagic = 8, - PlayingChallengePeak = 9, + BognchjdnkaAlocmfakbkp = 0, + BognchjdnkaKkjpohgbglo = 1, + BognchjdnkaDgcddkfobni = 2, + BognchjdnkaDccckkbpebb = 3, + BognchjdnkaMnilkhcjjaj = 4, + BognchjdnkaIccdfcdficf = 5, + BognchjdnkaPdeggebpgon = 6, + BognchjdnkaDnfjfjojhmc = 7, + BognchjdnkaOpoallmkkbp = 8, + BognchjdnkaFapocemdjae = 9, + BognchjdnkaOemdnifkfii = 10, } impl PlayingState { /// String value of the enum field names used in the ProtoBuf definition. @@ -60142,31 +61869,33 @@ impl PlayingState { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "PLAYING_STATE_NONE", - Self::PlayingRogueCosmos => "PLAYING_ROGUE_COSMOS", - Self::PlayingRogueChess => "PLAYING_ROGUE_CHESS", - Self::PlayingRogueChessNous => "PLAYING_ROGUE_CHESS_NOUS", - Self::PlayingChallengeMemory => "PLAYING_CHALLENGE_MEMORY", - Self::PlayingChallengeStory => "PLAYING_CHALLENGE_STORY", - Self::PlayingChallengeBoss => "PLAYING_CHALLENGE_BOSS", - Self::PlayingRogueTourn => "PLAYING_ROGUE_TOURN", - Self::PlayingRogueMagic => "PLAYING_ROGUE_MAGIC", - Self::PlayingChallengePeak => "PLAYING_CHALLENGE_PEAK", + Self::BognchjdnkaAlocmfakbkp => "BOGNCHJDNKA_ALOCMFAKBKP", + Self::BognchjdnkaKkjpohgbglo => "BOGNCHJDNKA_KKJPOHGBGLO", + Self::BognchjdnkaDgcddkfobni => "BOGNCHJDNKA_DGCDDKFOBNI", + Self::BognchjdnkaDccckkbpebb => "BOGNCHJDNKA_DCCCKKBPEBB", + Self::BognchjdnkaMnilkhcjjaj => "BOGNCHJDNKA_MNILKHCJJAJ", + Self::BognchjdnkaIccdfcdficf => "BOGNCHJDNKA_ICCDFCDFICF", + Self::BognchjdnkaPdeggebpgon => "BOGNCHJDNKA_PDEGGEBPGON", + Self::BognchjdnkaDnfjfjojhmc => "BOGNCHJDNKA_DNFJFJOJHMC", + Self::BognchjdnkaOpoallmkkbp => "BOGNCHJDNKA_OPOALLMKKBP", + Self::BognchjdnkaFapocemdjae => "BOGNCHJDNKA_FAPOCEMDJAE", + Self::BognchjdnkaOemdnifkfii => "BOGNCHJDNKA_OEMDNIFKFII", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLAYING_STATE_NONE" => Some(Self::None), - "PLAYING_ROGUE_COSMOS" => Some(Self::PlayingRogueCosmos), - "PLAYING_ROGUE_CHESS" => Some(Self::PlayingRogueChess), - "PLAYING_ROGUE_CHESS_NOUS" => Some(Self::PlayingRogueChessNous), - "PLAYING_CHALLENGE_MEMORY" => Some(Self::PlayingChallengeMemory), - "PLAYING_CHALLENGE_STORY" => Some(Self::PlayingChallengeStory), - "PLAYING_CHALLENGE_BOSS" => Some(Self::PlayingChallengeBoss), - "PLAYING_ROGUE_TOURN" => Some(Self::PlayingRogueTourn), - "PLAYING_ROGUE_MAGIC" => Some(Self::PlayingRogueMagic), - "PLAYING_CHALLENGE_PEAK" => Some(Self::PlayingChallengePeak), + "BOGNCHJDNKA_ALOCMFAKBKP" => Some(Self::BognchjdnkaAlocmfakbkp), + "BOGNCHJDNKA_KKJPOHGBGLO" => Some(Self::BognchjdnkaKkjpohgbglo), + "BOGNCHJDNKA_DGCDDKFOBNI" => Some(Self::BognchjdnkaDgcddkfobni), + "BOGNCHJDNKA_DCCCKKBPEBB" => Some(Self::BognchjdnkaDccckkbpebb), + "BOGNCHJDNKA_MNILKHCJJAJ" => Some(Self::BognchjdnkaMnilkhcjjaj), + "BOGNCHJDNKA_ICCDFCDFICF" => Some(Self::BognchjdnkaIccdfcdficf), + "BOGNCHJDNKA_PDEGGEBPGON" => Some(Self::BognchjdnkaPdeggebpgon), + "BOGNCHJDNKA_DNFJFJOJHMC" => Some(Self::BognchjdnkaDnfjfjojhmc), + "BOGNCHJDNKA_OPOALLMKKBP" => Some(Self::BognchjdnkaOpoallmkkbp), + "BOGNCHJDNKA_FAPOCEMDJAE" => Some(Self::BognchjdnkaFapocemdjae), + "BOGNCHJDNKA_OEMDNIFKFII" => Some(Self::BognchjdnkaOemdnifkfii), _ => None, } } @@ -60175,10 +61904,10 @@ impl PlayingState { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MatchRoomCharacterType { - MatchRoomCharacterNone = 0, - MatchRoomCharacterLeader = 1, - MatchRoomCharacterMember = 2, - MatchRoomCharacterWatcher = 3, + GgfagbdkibaLbmeimaeial = 0, + GgfagbdkibaNfbkcoalfei = 1, + GgfagbdkibaDehedfjmihm = 2, + GgfagbdkibaIpcjcmclcoe = 3, } impl MatchRoomCharacterType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60187,19 +61916,19 @@ impl MatchRoomCharacterType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MatchRoomCharacterNone => "MatchRoomCharacter_None", - Self::MatchRoomCharacterLeader => "MatchRoomCharacter_Leader", - Self::MatchRoomCharacterMember => "MatchRoomCharacter_Member", - Self::MatchRoomCharacterWatcher => "MatchRoomCharacter_Watcher", + Self::GgfagbdkibaLbmeimaeial => "GGFAGBDKIBA_LBMEIMAEIAL", + Self::GgfagbdkibaNfbkcoalfei => "GGFAGBDKIBA_NFBKCOALFEI", + Self::GgfagbdkibaDehedfjmihm => "GGFAGBDKIBA_DEHEDFJMIHM", + Self::GgfagbdkibaIpcjcmclcoe => "GGFAGBDKIBA_IPCJCMCLCOE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MatchRoomCharacter_None" => Some(Self::MatchRoomCharacterNone), - "MatchRoomCharacter_Leader" => Some(Self::MatchRoomCharacterLeader), - "MatchRoomCharacter_Member" => Some(Self::MatchRoomCharacterMember), - "MatchRoomCharacter_Watcher" => Some(Self::MatchRoomCharacterWatcher), + "GGFAGBDKIBA_LBMEIMAEIAL" => Some(Self::GgfagbdkibaLbmeimaeial), + "GGFAGBDKIBA_NFBKCOALFEI" => Some(Self::GgfagbdkibaNfbkcoalfei), + "GGFAGBDKIBA_DEHEDFJMIHM" => Some(Self::GgfagbdkibaDehedfjmihm), + "GGFAGBDKIBA_IPCJCMCLCOE" => Some(Self::GgfagbdkibaIpcjcmclcoe), _ => None, } } @@ -60208,12 +61937,12 @@ impl MatchRoomCharacterType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MatchRoomCharacterStatus { - None = 0, - Idle = 1, - Operating = 2, - Ready = 3, - Fighting = 4, - Watching = 5, + DkbnganmaijAlocmfakbkp = 0, + DkbnganmaijMokkbomcmef = 1, + DkbnganmaijLlbcigobdjp = 2, + DkbnganmaijBonmjnfmmma = 3, + DkbnganmaijMepmchgodgb = 4, + DkbnganmaijNklbknhbkan = 5, } impl MatchRoomCharacterStatus { /// String value of the enum field names used in the ProtoBuf definition. @@ -60222,23 +61951,23 @@ impl MatchRoomCharacterStatus { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "MatchRoomCharacterStatus_None", - Self::Idle => "MatchRoomCharacterStatus_Idle", - Self::Operating => "MatchRoomCharacterStatus_Operating", - Self::Ready => "MatchRoomCharacterStatus_Ready", - Self::Fighting => "MatchRoomCharacterStatus_Fighting", - Self::Watching => "MatchRoomCharacterStatus_Watching", + Self::DkbnganmaijAlocmfakbkp => "DKBNGANMAIJ_ALOCMFAKBKP", + Self::DkbnganmaijMokkbomcmef => "DKBNGANMAIJ_MOKKBOMCMEF", + Self::DkbnganmaijLlbcigobdjp => "DKBNGANMAIJ_LLBCIGOBDJP", + Self::DkbnganmaijBonmjnfmmma => "DKBNGANMAIJ_BONMJNFMMMA", + Self::DkbnganmaijMepmchgodgb => "DKBNGANMAIJ_MEPMCHGODGB", + Self::DkbnganmaijNklbknhbkan => "DKBNGANMAIJ_NKLBKNHBKAN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MatchRoomCharacterStatus_None" => Some(Self::None), - "MatchRoomCharacterStatus_Idle" => Some(Self::Idle), - "MatchRoomCharacterStatus_Operating" => Some(Self::Operating), - "MatchRoomCharacterStatus_Ready" => Some(Self::Ready), - "MatchRoomCharacterStatus_Fighting" => Some(Self::Fighting), - "MatchRoomCharacterStatus_Watching" => Some(Self::Watching), + "DKBNGANMAIJ_ALOCMFAKBKP" => Some(Self::DkbnganmaijAlocmfakbkp), + "DKBNGANMAIJ_MOKKBOMCMEF" => Some(Self::DkbnganmaijMokkbomcmef), + "DKBNGANMAIJ_LLBCIGOBDJP" => Some(Self::DkbnganmaijLlbcigobdjp), + "DKBNGANMAIJ_BONMJNFMMMA" => Some(Self::DkbnganmaijBonmjnfmmma), + "DKBNGANMAIJ_MEPMCHGODGB" => Some(Self::DkbnganmaijMepmchgodgb), + "DKBNGANMAIJ_NKLBKNHBKAN" => Some(Self::DkbnganmaijNklbknhbkan), _ => None, } } @@ -60246,41 +61975,29 @@ impl MatchRoomCharacterStatus { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mgecfloeoeg { - PlanetFesCardPieceApplyPermissionReview = 0, - PlanetFesCardPieceApplyPermissionFree = 1, - PlanetFesCardPiecePermissionBan = 2, +pub enum Gbfcmcpfhah { + Ljlmokeaoob = 0, + Alhgjcngfkh = 1, + Olgjmoblblh = 2, } -impl Mgecfloeoeg { +impl Gbfcmcpfhah { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlanetFesCardPieceApplyPermissionReview => { - "PLANET_FES_CARD_PIECE_APPLY_PERMISSION_REVIEW" - } - Self::PlanetFesCardPieceApplyPermissionFree => { - "PLANET_FES_CARD_PIECE_APPLY_PERMISSION_FREE" - } - Self::PlanetFesCardPiecePermissionBan => { - "PLANET_FES_CARD_PIECE_PERMISSION_BAN" - } + Self::Ljlmokeaoob => "GBFCMCPFHAH_LJLMOKEAOOB", + Self::Alhgjcngfkh => "GBFCMCPFHAH_ALHGJCNGFKH", + Self::Olgjmoblblh => "GBFCMCPFHAH_OLGJMOBLBLH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLANET_FES_CARD_PIECE_APPLY_PERMISSION_REVIEW" => { - Some(Self::PlanetFesCardPieceApplyPermissionReview) - } - "PLANET_FES_CARD_PIECE_APPLY_PERMISSION_FREE" => { - Some(Self::PlanetFesCardPieceApplyPermissionFree) - } - "PLANET_FES_CARD_PIECE_PERMISSION_BAN" => { - Some(Self::PlanetFesCardPiecePermissionBan) - } + "GBFCMCPFHAH_LJLMOKEAOOB" => Some(Self::Ljlmokeaoob), + "GBFCMCPFHAH_ALHGJCNGFKH" => Some(Self::Alhgjcngfkh), + "GBFCMCPFHAH_OLGJMOBLBLH" => Some(Self::Olgjmoblblh), _ => None, } } @@ -60288,55 +62005,35 @@ impl Mgecfloeoeg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ghangcboemc { - PlanetFesCardPieceInteractApplying = 0, - PlanetFesCardPieceInteractOffered = 1, - PlanetFesCardPieceInteractOfferTaken = 2, - PlanetFesCardPieceInteractApplyCanceld = 3, - PlanetFesCardPieceInteractApplyCompensated = 4, +pub enum Kndahnnamfn { + Icgigenfdid = 0, + Ljpfojdoppn = 1, + Ciobobifkom = 2, + Aplojgmggaj = 3, + Ggljnggmnjl = 4, } -impl Ghangcboemc { +impl Kndahnnamfn { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlanetFesCardPieceInteractApplying => { - "PLANET_FES_CARD_PIECE_INTERACT_APPLYING" - } - Self::PlanetFesCardPieceInteractOffered => { - "PLANET_FES_CARD_PIECE_INTERACT_OFFERED" - } - Self::PlanetFesCardPieceInteractOfferTaken => { - "PLANET_FES_CARD_PIECE_INTERACT_OFFER_TAKEN" - } - Self::PlanetFesCardPieceInteractApplyCanceld => { - "PLANET_FES_CARD_PIECE_INTERACT_APPLY_CANCELD" - } - Self::PlanetFesCardPieceInteractApplyCompensated => { - "PLANET_FES_CARD_PIECE_INTERACT_APPLY_COMPENSATED" - } + Self::Icgigenfdid => "KNDAHNNAMFN_ICGIGENFDID", + Self::Ljpfojdoppn => "KNDAHNNAMFN_LJPFOJDOPPN", + Self::Ciobobifkom => "KNDAHNNAMFN_CIOBOBIFKOM", + Self::Aplojgmggaj => "KNDAHNNAMFN_APLOJGMGGAJ", + Self::Ggljnggmnjl => "KNDAHNNAMFN_GGLJNGGMNJL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLANET_FES_CARD_PIECE_INTERACT_APPLYING" => { - Some(Self::PlanetFesCardPieceInteractApplying) - } - "PLANET_FES_CARD_PIECE_INTERACT_OFFERED" => { - Some(Self::PlanetFesCardPieceInteractOffered) - } - "PLANET_FES_CARD_PIECE_INTERACT_OFFER_TAKEN" => { - Some(Self::PlanetFesCardPieceInteractOfferTaken) - } - "PLANET_FES_CARD_PIECE_INTERACT_APPLY_CANCELD" => { - Some(Self::PlanetFesCardPieceInteractApplyCanceld) - } - "PLANET_FES_CARD_PIECE_INTERACT_APPLY_COMPENSATED" => { - Some(Self::PlanetFesCardPieceInteractApplyCompensated) - } + "KNDAHNNAMFN_ICGIGENFDID" => Some(Self::Icgigenfdid), + "KNDAHNNAMFN_LJPFOJDOPPN" => Some(Self::Ljpfojdoppn), + "KNDAHNNAMFN_CIOBOBIFKOM" => Some(Self::Ciobobifkom), + "KNDAHNNAMFN_APLOJGMGGAJ" => Some(Self::Aplojgmggaj), + "KNDAHNNAMFN_GGLJNGGMNJL" => Some(Self::Ggljnggmnjl), _ => None, } } @@ -60344,41 +62041,29 @@ impl Ghangcboemc { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ijhbcbeopfe { - PlanetFesCardPieceOfferSourceReviewApply = 0, - PlanetFesCardPieceOfferSourceFreeApply = 1, - PlanetFesCardPieceOfferSourceGive = 2, +pub enum Gcfplgngjml { + Fmkndekbemh = 0, + Lbomiekagbn = 1, + Hfhjiblclcn = 2, } -impl Ijhbcbeopfe { +impl Gcfplgngjml { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlanetFesCardPieceOfferSourceReviewApply => { - "PLANET_FES_CARD_PIECE_OFFER_SOURCE_REVIEW_APPLY" - } - Self::PlanetFesCardPieceOfferSourceFreeApply => { - "PLANET_FES_CARD_PIECE_OFFER_SOURCE_FREE_APPLY" - } - Self::PlanetFesCardPieceOfferSourceGive => { - "PLANET_FES_CARD_PIECE_OFFER_SOURCE_GIVE" - } + Self::Fmkndekbemh => "GCFPLGNGJML_FMKNDEKBEMH", + Self::Lbomiekagbn => "GCFPLGNGJML_LBOMIEKAGBN", + Self::Hfhjiblclcn => "GCFPLGNGJML_HFHJIBLCLCN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLANET_FES_CARD_PIECE_OFFER_SOURCE_REVIEW_APPLY" => { - Some(Self::PlanetFesCardPieceOfferSourceReviewApply) - } - "PLANET_FES_CARD_PIECE_OFFER_SOURCE_FREE_APPLY" => { - Some(Self::PlanetFesCardPieceOfferSourceFreeApply) - } - "PLANET_FES_CARD_PIECE_OFFER_SOURCE_GIVE" => { - Some(Self::PlanetFesCardPieceOfferSourceGive) - } + "GCFPLGNGJML_FMKNDEKBEMH" => Some(Self::Fmkndekbemh), + "GCFPLGNGJML_LBOMIEKAGBN" => Some(Self::Lbomiekagbn), + "GCFPLGNGJML_HFHJIBLCLCN" => Some(Self::Hfhjiblclcn), _ => None, } } @@ -60386,50 +62071,50 @@ impl Ijhbcbeopfe { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dlbfahoagph { - FateSourceTypeNone = 0, - FateSourceTypeFateBuff = 1, - FateSourceTypeTraitBuff = 2, - FateSourceTypeReiju = 3, - FateSourceTypeHougu = 4, - FateSourceTypeAffix = 5, - FateSourceTypeReijuAffix = 6, - FateSourceTypeLevel = 7, - FateSourceTypeMaster = 8, - FateSourceTypeTrait = 9, +pub enum Oehbalahkeb { + Alocmfakbkp = 0, + Ahijcnhpign = 1, + Iilkamcmefk = 2, + Ceaeppmkbaj = 3, + Dalnkmapffi = 4, + Aaiiondjeef = 5, + Fpgcelciclp = 6, + Noeampapeej = 7, + Dhhmlhnnikc = 8, + Kpjlohhhoem = 9, } -impl Dlbfahoagph { +impl Oehbalahkeb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FateSourceTypeNone => "FATE_SOURCE_TYPE_NONE", - Self::FateSourceTypeFateBuff => "FATE_SOURCE_TYPE_FATE_BUFF", - Self::FateSourceTypeTraitBuff => "FATE_SOURCE_TYPE_TRAIT_BUFF", - Self::FateSourceTypeReiju => "FATE_SOURCE_TYPE_REIJU", - Self::FateSourceTypeHougu => "FATE_SOURCE_TYPE_HOUGU", - Self::FateSourceTypeAffix => "FATE_SOURCE_TYPE_AFFIX", - Self::FateSourceTypeReijuAffix => "FATE_SOURCE_TYPE_REIJU_AFFIX", - Self::FateSourceTypeLevel => "FATE_SOURCE_TYPE_LEVEL", - Self::FateSourceTypeMaster => "FATE_SOURCE_TYPE_MASTER", - Self::FateSourceTypeTrait => "FATE_SOURCE_TYPE_TRAIT", + Self::Alocmfakbkp => "OEHBALAHKEB_ALOCMFAKBKP", + Self::Ahijcnhpign => "OEHBALAHKEB_AHIJCNHPIGN", + Self::Iilkamcmefk => "OEHBALAHKEB_IILKAMCMEFK", + Self::Ceaeppmkbaj => "OEHBALAHKEB_CEAEPPMKBAJ", + Self::Dalnkmapffi => "OEHBALAHKEB_DALNKMAPFFI", + Self::Aaiiondjeef => "OEHBALAHKEB_AAIIONDJEEF", + Self::Fpgcelciclp => "OEHBALAHKEB_FPGCELCICLP", + Self::Noeampapeej => "OEHBALAHKEB_NOEAMPAPEEJ", + Self::Dhhmlhnnikc => "OEHBALAHKEB_DHHMLHNNIKC", + Self::Kpjlohhhoem => "OEHBALAHKEB_KPJLOHHHOEM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FATE_SOURCE_TYPE_NONE" => Some(Self::FateSourceTypeNone), - "FATE_SOURCE_TYPE_FATE_BUFF" => Some(Self::FateSourceTypeFateBuff), - "FATE_SOURCE_TYPE_TRAIT_BUFF" => Some(Self::FateSourceTypeTraitBuff), - "FATE_SOURCE_TYPE_REIJU" => Some(Self::FateSourceTypeReiju), - "FATE_SOURCE_TYPE_HOUGU" => Some(Self::FateSourceTypeHougu), - "FATE_SOURCE_TYPE_AFFIX" => Some(Self::FateSourceTypeAffix), - "FATE_SOURCE_TYPE_REIJU_AFFIX" => Some(Self::FateSourceTypeReijuAffix), - "FATE_SOURCE_TYPE_LEVEL" => Some(Self::FateSourceTypeLevel), - "FATE_SOURCE_TYPE_MASTER" => Some(Self::FateSourceTypeMaster), - "FATE_SOURCE_TYPE_TRAIT" => Some(Self::FateSourceTypeTrait), + "OEHBALAHKEB_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "OEHBALAHKEB_AHIJCNHPIGN" => Some(Self::Ahijcnhpign), + "OEHBALAHKEB_IILKAMCMEFK" => Some(Self::Iilkamcmefk), + "OEHBALAHKEB_CEAEPPMKBAJ" => Some(Self::Ceaeppmkbaj), + "OEHBALAHKEB_DALNKMAPFFI" => Some(Self::Dalnkmapffi), + "OEHBALAHKEB_AAIIONDJEEF" => Some(Self::Aaiiondjeef), + "OEHBALAHKEB_FPGCELCICLP" => Some(Self::Fpgcelciclp), + "OEHBALAHKEB_NOEAMPAPEEJ" => Some(Self::Noeampapeej), + "OEHBALAHKEB_DHHMLHNNIKC" => Some(Self::Dhhmlhnnikc), + "OEHBALAHKEB_KPJLOHHHOEM" => Some(Self::Kpjlohhhoem), _ => None, } } @@ -60437,32 +62122,32 @@ impl Dlbfahoagph { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Enhdplikfhm { - MatchThreeVersionNone = 0, - MatchThreeV1 = 1, - MatchThreeV2 = 2, - MatchThreeV3 = 3, +pub enum Ganednknepg { + Alocmfakbkp = 0, + Lhlpkpcahma = 1, + Nefibgdlobm = 2, + Pojhlgfmbeo = 3, } -impl Enhdplikfhm { +impl Ganednknepg { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MatchThreeVersionNone => "MATCH_THREE_VERSION_NONE", - Self::MatchThreeV1 => "MATCH_THREE_V1", - Self::MatchThreeV2 => "MATCH_THREE_V2", - Self::MatchThreeV3 => "MATCH_THREE_V3", + Self::Alocmfakbkp => "GANEDNKNEPG_ALOCMFAKBKP", + Self::Lhlpkpcahma => "GANEDNKNEPG_LHLPKPCAHMA", + Self::Nefibgdlobm => "GANEDNKNEPG_NEFIBGDLOBM", + Self::Pojhlgfmbeo => "GANEDNKNEPG_POJHLGFMBEO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH_THREE_VERSION_NONE" => Some(Self::MatchThreeVersionNone), - "MATCH_THREE_V1" => Some(Self::MatchThreeV1), - "MATCH_THREE_V2" => Some(Self::MatchThreeV2), - "MATCH_THREE_V3" => Some(Self::MatchThreeV3), + "GANEDNKNEPG_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "GANEDNKNEPG_LHLPKPCAHMA" => Some(Self::Lhlpkpcahma), + "GANEDNKNEPG_NEFIBGDLOBM" => Some(Self::Nefibgdlobm), + "GANEDNKNEPG_POJHLGFMBEO" => Some(Self::Pojhlgfmbeo), _ => None, } } @@ -60470,53 +62155,35 @@ impl Enhdplikfhm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dllleandaih { - FriendRecommendLineupTypeNone = 0, - FriendRecommendLineupTypeChallenge = 1, - FriendRecommendLineupTypeLocalLegend = 2, - FriendRecommendLineupTypeChallengePeakMob = 3, - FriendRecommendLineupTypeChallengePeakBoss = 4, +pub enum Ldpgcfighfd { + Alocmfakbkp = 0, + Fammakbffnl = 1, + Hhodlkahlec = 2, + Bemebonlkdb = 3, + Jjcmiahafda = 4, } -impl Dllleandaih { +impl Ldpgcfighfd { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FriendRecommendLineupTypeNone => "FRIEND_RECOMMEND_LINEUP_TYPE_NONE", - Self::FriendRecommendLineupTypeChallenge => { - "FRIEND_RECOMMEND_LINEUP_TYPE_CHALLENGE" - } - Self::FriendRecommendLineupTypeLocalLegend => { - "FRIEND_RECOMMEND_LINEUP_TYPE_LOCAL_LEGEND" - } - Self::FriendRecommendLineupTypeChallengePeakMob => { - "FRIEND_RECOMMEND_LINEUP_TYPE_CHALLENGE_PEAK_MOB" - } - Self::FriendRecommendLineupTypeChallengePeakBoss => { - "FRIEND_RECOMMEND_LINEUP_TYPE_CHALLENGE_PEAK_BOSS" - } + Self::Alocmfakbkp => "LDPGCFIGHFD_ALOCMFAKBKP", + Self::Fammakbffnl => "LDPGCFIGHFD_FAMMAKBFFNL", + Self::Hhodlkahlec => "LDPGCFIGHFD_HHODLKAHLEC", + Self::Bemebonlkdb => "LDPGCFIGHFD_BEMEBONLKDB", + Self::Jjcmiahafda => "LDPGCFIGHFD_JJCMIAHAFDA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FRIEND_RECOMMEND_LINEUP_TYPE_NONE" => { - Some(Self::FriendRecommendLineupTypeNone) - } - "FRIEND_RECOMMEND_LINEUP_TYPE_CHALLENGE" => { - Some(Self::FriendRecommendLineupTypeChallenge) - } - "FRIEND_RECOMMEND_LINEUP_TYPE_LOCAL_LEGEND" => { - Some(Self::FriendRecommendLineupTypeLocalLegend) - } - "FRIEND_RECOMMEND_LINEUP_TYPE_CHALLENGE_PEAK_MOB" => { - Some(Self::FriendRecommendLineupTypeChallengePeakMob) - } - "FRIEND_RECOMMEND_LINEUP_TYPE_CHALLENGE_PEAK_BOSS" => { - Some(Self::FriendRecommendLineupTypeChallengePeakBoss) - } + "LDPGCFIGHFD_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "LDPGCFIGHFD_FAMMAKBFFNL" => Some(Self::Fammakbffnl), + "LDPGCFIGHFD_HHODLKAHLEC" => Some(Self::Hhodlkahlec), + "LDPGCFIGHFD_BEMEBONLKDB" => Some(Self::Bemebonlkdb), + "LDPGCFIGHFD_JJCMIAHAFDA" => Some(Self::Jjcmiahafda), _ => None, } } @@ -60524,41 +62191,41 @@ impl Dllleandaih { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Idppelmiihe { - GridFightDropTypeNone = 0, - GridFightDropTypeCoin = 1, - GridFightDropTypeExp = 2, - GridFightDropTypeRefresh = 3, - GridFightDropTypeRole = 4, - GridFightDropTypeItem = 5, - GridFightDropTypeOrb = 6, +pub enum Dlmigaafpel { + Alocmfakbkp = 0, + Geibknhcgjf = 1, + Ekmghoecopk = 2, + Cpfpimafbna = 3, + Fhiollabfba = 4, + Mfcofmdjnlg = 5, + Kdagbdeejll = 6, } -impl Idppelmiihe { +impl Dlmigaafpel { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::GridFightDropTypeNone => "GRID_FIGHT_DROP_TYPE_NONE", - Self::GridFightDropTypeCoin => "GRID_FIGHT_DROP_TYPE_COIN", - Self::GridFightDropTypeExp => "GRID_FIGHT_DROP_TYPE_EXP", - Self::GridFightDropTypeRefresh => "GRID_FIGHT_DROP_TYPE_REFRESH", - Self::GridFightDropTypeRole => "GRID_FIGHT_DROP_TYPE_ROLE", - Self::GridFightDropTypeItem => "GRID_FIGHT_DROP_TYPE_ITEM", - Self::GridFightDropTypeOrb => "GRID_FIGHT_DROP_TYPE_ORB", + Self::Alocmfakbkp => "DLMIGAAFPEL_ALOCMFAKBKP", + Self::Geibknhcgjf => "DLMIGAAFPEL_GEIBKNHCGJF", + Self::Ekmghoecopk => "DLMIGAAFPEL_EKMGHOECOPK", + Self::Cpfpimafbna => "DLMIGAAFPEL_CPFPIMAFBNA", + Self::Fhiollabfba => "DLMIGAAFPEL_FHIOLLABFBA", + Self::Mfcofmdjnlg => "DLMIGAAFPEL_MFCOFMDJNLG", + Self::Kdagbdeejll => "DLMIGAAFPEL_KDAGBDEEJLL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "GRID_FIGHT_DROP_TYPE_NONE" => Some(Self::GridFightDropTypeNone), - "GRID_FIGHT_DROP_TYPE_COIN" => Some(Self::GridFightDropTypeCoin), - "GRID_FIGHT_DROP_TYPE_EXP" => Some(Self::GridFightDropTypeExp), - "GRID_FIGHT_DROP_TYPE_REFRESH" => Some(Self::GridFightDropTypeRefresh), - "GRID_FIGHT_DROP_TYPE_ROLE" => Some(Self::GridFightDropTypeRole), - "GRID_FIGHT_DROP_TYPE_ITEM" => Some(Self::GridFightDropTypeItem), - "GRID_FIGHT_DROP_TYPE_ORB" => Some(Self::GridFightDropTypeOrb), + "DLMIGAAFPEL_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "DLMIGAAFPEL_GEIBKNHCGJF" => Some(Self::Geibknhcgjf), + "DLMIGAAFPEL_EKMGHOECOPK" => Some(Self::Ekmghoecopk), + "DLMIGAAFPEL_CPFPIMAFBNA" => Some(Self::Cpfpimafbna), + "DLMIGAAFPEL_FHIOLLABFBA" => Some(Self::Fhiollabfba), + "DLMIGAAFPEL_MFCOFMDJNLG" => Some(Self::Mfcofmdjnlg), + "DLMIGAAFPEL_KDAGBDEEJLL" => Some(Self::Kdagbdeejll), _ => None, } } @@ -60567,10 +62234,10 @@ impl Idppelmiihe { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BattleCheckStrategyType { - BattleCheckStrategyIdentical = 0, - BattleCheckStrategyServer = 1, - BattleCheckStrategyClient = 2, - BattleCheckStrategyTimeoutLegal = 3, + FjbmjhphlfcLkpmpghboln = 0, + FjbmjhphlfcGbjkkgmjcii = 1, + FjbmjhphlfcLldclfcdmoj = 2, + FjbmjhphlfcGiffkjgdbca = 3, } impl BattleCheckStrategyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60579,23 +62246,19 @@ impl BattleCheckStrategyType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BattleCheckStrategyIdentical => "BATTLE_CHECK_STRATEGY_IDENTICAL", - Self::BattleCheckStrategyServer => "BATTLE_CHECK_STRATEGY_SERVER", - Self::BattleCheckStrategyClient => "BATTLE_CHECK_STRATEGY_CLIENT", - Self::BattleCheckStrategyTimeoutLegal => { - "BATTLE_CHECK_STRATEGY_TIMEOUT_LEGAL" - } + Self::FjbmjhphlfcLkpmpghboln => "FJBMJHPHLFC_LKPMPGHBOLN", + Self::FjbmjhphlfcGbjkkgmjcii => "FJBMJHPHLFC_GBJKKGMJCII", + Self::FjbmjhphlfcLldclfcdmoj => "FJBMJHPHLFC_LLDCLFCDMOJ", + Self::FjbmjhphlfcGiffkjgdbca => "FJBMJHPHLFC_GIFFKJGDBCA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BATTLE_CHECK_STRATEGY_IDENTICAL" => Some(Self::BattleCheckStrategyIdentical), - "BATTLE_CHECK_STRATEGY_SERVER" => Some(Self::BattleCheckStrategyServer), - "BATTLE_CHECK_STRATEGY_CLIENT" => Some(Self::BattleCheckStrategyClient), - "BATTLE_CHECK_STRATEGY_TIMEOUT_LEGAL" => { - Some(Self::BattleCheckStrategyTimeoutLegal) - } + "FJBMJHPHLFC_LKPMPGHBOLN" => Some(Self::FjbmjhphlfcLkpmpghboln), + "FJBMJHPHLFC_GBJKKGMJCII" => Some(Self::FjbmjhphlfcGbjkkgmjcii), + "FJBMJHPHLFC_LLDCLFCDMOJ" => Some(Self::FjbmjhphlfcLldclfcdmoj), + "FJBMJHPHLFC_GIFFKJGDBCA" => Some(Self::FjbmjhphlfcGiffkjgdbca), _ => None, } } @@ -60604,9 +62267,9 @@ impl BattleCheckStrategyType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BattleCheckResultType { - BattleCheckResultSucc = 0, - BattleCheckResultFail = 1, - BattleCheckResultPass = 2, + MjlgkdpkpaiMnbfbplhmcm = 0, + MjlgkdpkpaiGfoigchcdlh = 1, + MjlgkdpkpaiNibmfonfldm = 2, } impl BattleCheckResultType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60615,17 +62278,17 @@ impl BattleCheckResultType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BattleCheckResultSucc => "BATTLE_CHECK_RESULT_SUCC", - Self::BattleCheckResultFail => "BATTLE_CHECK_RESULT_FAIL", - Self::BattleCheckResultPass => "BATTLE_CHECK_RESULT_PASS", + Self::MjlgkdpkpaiMnbfbplhmcm => "MJLGKDPKPAI_MNBFBPLHMCM", + Self::MjlgkdpkpaiGfoigchcdlh => "MJLGKDPKPAI_GFOIGCHCDLH", + Self::MjlgkdpkpaiNibmfonfldm => "MJLGKDPKPAI_NIBMFONFLDM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BATTLE_CHECK_RESULT_SUCC" => Some(Self::BattleCheckResultSucc), - "BATTLE_CHECK_RESULT_FAIL" => Some(Self::BattleCheckResultFail), - "BATTLE_CHECK_RESULT_PASS" => Some(Self::BattleCheckResultPass), + "MJLGKDPKPAI_MNBFBPLHMCM" => Some(Self::MjlgkdpkpaiMnbfbplhmcm), + "MJLGKDPKPAI_GFOIGCHCDLH" => Some(Self::MjlgkdpkpaiGfoigchcdlh), + "MJLGKDPKPAI_NIBMFONFLDM" => Some(Self::MjlgkdpkpaiNibmfonfldm), _ => None, } } @@ -60634,13 +62297,13 @@ impl BattleCheckResultType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BattleModuleType { - BattleModuleMaze = 0, - BattleModuleChallenge = 1, - BattleModuleCocoon = 2, - BattleModuleRogue = 3, - BattleModuleChallengeActivity = 4, - BattleModuleTrialLevel = 5, - BattleModuleAetherDivide = 6, + JdggjcpiodkEkaaegnnkfh = 0, + JdggjcpiodkIhbdkbipfbc = 1, + JdggjcpiodkNpmddekbanc = 2, + JdggjcpiodkFmppcgkghhk = 3, + JdggjcpiodkMmleipmgnkk = 4, + JdggjcpiodkJbifjfbfpmp = 5, + JdggjcpiodkFdekmmhgflm = 6, } impl BattleModuleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60649,27 +62312,25 @@ impl BattleModuleType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BattleModuleMaze => "BATTLE_MODULE_MAZE", - Self::BattleModuleChallenge => "BATTLE_MODULE_CHALLENGE", - Self::BattleModuleCocoon => "BATTLE_MODULE_COCOON", - Self::BattleModuleRogue => "BATTLE_MODULE_ROGUE", - Self::BattleModuleChallengeActivity => "BATTLE_MODULE_CHALLENGE_ACTIVITY", - Self::BattleModuleTrialLevel => "BATTLE_MODULE_TRIAL_LEVEL", - Self::BattleModuleAetherDivide => "BATTLE_MODULE_AETHER_DIVIDE", + Self::JdggjcpiodkEkaaegnnkfh => "JDGGJCPIODK_EKAAEGNNKFH", + Self::JdggjcpiodkIhbdkbipfbc => "JDGGJCPIODK_IHBDKBIPFBC", + Self::JdggjcpiodkNpmddekbanc => "JDGGJCPIODK_NPMDDEKBANC", + Self::JdggjcpiodkFmppcgkghhk => "JDGGJCPIODK_FMPPCGKGHHK", + Self::JdggjcpiodkMmleipmgnkk => "JDGGJCPIODK_MMLEIPMGNKK", + Self::JdggjcpiodkJbifjfbfpmp => "JDGGJCPIODK_JBIFJFBFPMP", + Self::JdggjcpiodkFdekmmhgflm => "JDGGJCPIODK_FDEKMMHGFLM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BATTLE_MODULE_MAZE" => Some(Self::BattleModuleMaze), - "BATTLE_MODULE_CHALLENGE" => Some(Self::BattleModuleChallenge), - "BATTLE_MODULE_COCOON" => Some(Self::BattleModuleCocoon), - "BATTLE_MODULE_ROGUE" => Some(Self::BattleModuleRogue), - "BATTLE_MODULE_CHALLENGE_ACTIVITY" => { - Some(Self::BattleModuleChallengeActivity) - } - "BATTLE_MODULE_TRIAL_LEVEL" => Some(Self::BattleModuleTrialLevel), - "BATTLE_MODULE_AETHER_DIVIDE" => Some(Self::BattleModuleAetherDivide), + "JDGGJCPIODK_EKAAEGNNKFH" => Some(Self::JdggjcpiodkEkaaegnnkfh), + "JDGGJCPIODK_IHBDKBIPFBC" => Some(Self::JdggjcpiodkIhbdkbipfbc), + "JDGGJCPIODK_NPMDDEKBANC" => Some(Self::JdggjcpiodkNpmddekbanc), + "JDGGJCPIODK_FMPPCGKGHHK" => Some(Self::JdggjcpiodkFmppcgkghhk), + "JDGGJCPIODK_MMLEIPMGNKK" => Some(Self::JdggjcpiodkMmleipmgnkk), + "JDGGJCPIODK_JBIFJFBFPMP" => Some(Self::JdggjcpiodkJbifjfbfpmp), + "JDGGJCPIODK_FDEKMMHGFLM" => Some(Self::JdggjcpiodkFdekmmhgflm), _ => None, } } @@ -60678,9 +62339,9 @@ impl BattleModuleType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AetherdivideSpiritLineupType { - AetherdivideSpiritLineupNone = 0, - AetherdivideSpiritLineupNormal = 1, - AetherdivideSpiritLineupTrial = 2, + AjgeogaoaikCjbflaemlmc = 0, + AjgeogaoaikEinhiajchak = 1, + AjgeogaoaikNmeocjlcnhh = 2, } impl AetherdivideSpiritLineupType { /// String value of the enum field names used in the ProtoBuf definition. @@ -60689,21 +62350,17 @@ impl AetherdivideSpiritLineupType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::AetherdivideSpiritLineupNone => "AETHERDIVIDE_SPIRIT_LINEUP_NONE", - Self::AetherdivideSpiritLineupNormal => "AETHERDIVIDE_SPIRIT_LINEUP_NORMAL", - Self::AetherdivideSpiritLineupTrial => "AETHERDIVIDE_SPIRIT_LINEUP_TRIAL", + Self::AjgeogaoaikCjbflaemlmc => "AJGEOGAOAIK_CJBFLAEMLMC", + Self::AjgeogaoaikEinhiajchak => "AJGEOGAOAIK_EINHIAJCHAK", + Self::AjgeogaoaikNmeocjlcnhh => "AJGEOGAOAIK_NMEOCJLCNHH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "AETHERDIVIDE_SPIRIT_LINEUP_NONE" => Some(Self::AetherdivideSpiritLineupNone), - "AETHERDIVIDE_SPIRIT_LINEUP_NORMAL" => { - Some(Self::AetherdivideSpiritLineupNormal) - } - "AETHERDIVIDE_SPIRIT_LINEUP_TRIAL" => { - Some(Self::AetherdivideSpiritLineupTrial) - } + "AJGEOGAOAIK_CJBFLAEMLMC" => Some(Self::AjgeogaoaikCjbflaemlmc), + "AJGEOGAOAIK_EINHIAJCHAK" => Some(Self::AjgeogaoaikEinhiajchak), + "AJGEOGAOAIK_NMEOCJLCNHH" => Some(Self::AjgeogaoaikNmeocjlcnhh), _ => None, } } @@ -60711,47 +62368,41 @@ impl AetherdivideSpiritLineupType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pilniphdkhi { - BattleTargetTypeNone = 0, - BattleTargetTypeScore = 1, - BattleTargetTypeAchievement = 2, - BattleTargetTypeRaid = 3, - BattleTargetTypeChallengeScore = 4, - BattleTargetTypeCommon = 5, - BattleTargetTypeClientAchievement = 6, +pub enum BattleTargetType { + OkhmbjgmkboAlocmfakbkp = 0, + OkhmbjgmkboMaldmkjldlp = 1, + OkhmbjgmkboBdlgdkdjpel = 2, + OkhmbjgmkboEjlfgieobhn = 3, + OkhmbjgmkboHcjobmblfok = 4, + OkhmbjgmkboBfebncjbmnp = 5, + OkhmbjgmkboOikofhkiahf = 6, } -impl Pilniphdkhi { +impl BattleTargetType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BattleTargetTypeNone => "BATTLE_TARGET_TYPE_NONE", - Self::BattleTargetTypeScore => "BATTLE_TARGET_TYPE_SCORE", - Self::BattleTargetTypeAchievement => "BATTLE_TARGET_TYPE_ACHIEVEMENT", - Self::BattleTargetTypeRaid => "BATTLE_TARGET_TYPE_RAID", - Self::BattleTargetTypeChallengeScore => "BATTLE_TARGET_TYPE_CHALLENGE_SCORE", - Self::BattleTargetTypeCommon => "BATTLE_TARGET_TYPE_COMMON", - Self::BattleTargetTypeClientAchievement => { - "BATTLE_TARGET_TYPE_CLIENT_ACHIEVEMENT" - } + Self::OkhmbjgmkboAlocmfakbkp => "OKHMBJGMKBO_ALOCMFAKBKP", + Self::OkhmbjgmkboMaldmkjldlp => "OKHMBJGMKBO_MALDMKJLDLP", + Self::OkhmbjgmkboBdlgdkdjpel => "OKHMBJGMKBO_BDLGDKDJPEL", + Self::OkhmbjgmkboEjlfgieobhn => "OKHMBJGMKBO_EJLFGIEOBHN", + Self::OkhmbjgmkboHcjobmblfok => "OKHMBJGMKBO_HCJOBMBLFOK", + Self::OkhmbjgmkboBfebncjbmnp => "OKHMBJGMKBO_BFEBNCJBMNP", + Self::OkhmbjgmkboOikofhkiahf => "OKHMBJGMKBO_OIKOFHKIAHF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BATTLE_TARGET_TYPE_NONE" => Some(Self::BattleTargetTypeNone), - "BATTLE_TARGET_TYPE_SCORE" => Some(Self::BattleTargetTypeScore), - "BATTLE_TARGET_TYPE_ACHIEVEMENT" => Some(Self::BattleTargetTypeAchievement), - "BATTLE_TARGET_TYPE_RAID" => Some(Self::BattleTargetTypeRaid), - "BATTLE_TARGET_TYPE_CHALLENGE_SCORE" => { - Some(Self::BattleTargetTypeChallengeScore) - } - "BATTLE_TARGET_TYPE_COMMON" => Some(Self::BattleTargetTypeCommon), - "BATTLE_TARGET_TYPE_CLIENT_ACHIEVEMENT" => { - Some(Self::BattleTargetTypeClientAchievement) - } + "OKHMBJGMKBO_ALOCMFAKBKP" => Some(Self::OkhmbjgmkboAlocmfakbkp), + "OKHMBJGMKBO_MALDMKJLDLP" => Some(Self::OkhmbjgmkboMaldmkjldlp), + "OKHMBJGMKBO_BDLGDKDJPEL" => Some(Self::OkhmbjgmkboBdlgdkdjpel), + "OKHMBJGMKBO_EJLFGIEOBHN" => Some(Self::OkhmbjgmkboEjlfgieobhn), + "OKHMBJGMKBO_HCJOBMBLFOK" => Some(Self::OkhmbjgmkboHcjobmblfok), + "OKHMBJGMKBO_BFEBNCJBMNP" => Some(Self::OkhmbjgmkboBfebncjbmnp), + "OKHMBJGMKBO_OIKOFHKIAHF" => Some(Self::OkhmbjgmkboOikofhkiahf), _ => None, } } @@ -60760,10 +62411,10 @@ impl Pilniphdkhi { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum DeathSource { - Unknown = 0, - KilledByOthers = 1, - KilledBySelf = 2, - Escape = 3, + GoejlbhopmjAmhlkhblono = 0, + GoejlbhopmjFbafdliofhp = 1, + GoejlbhopmjChcjjmnkihd = 2, + GoejlbhopmjOmdnohdajak = 3, } impl DeathSource { /// String value of the enum field names used in the ProtoBuf definition. @@ -60772,19 +62423,19 @@ impl DeathSource { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Unknown => "UNKNOWN", - Self::KilledByOthers => "KILLED_BY_OTHERS", - Self::KilledBySelf => "KILLED_BY_SELF", - Self::Escape => "ESCAPE", + Self::GoejlbhopmjAmhlkhblono => "GOEJLBHOPMJ_AMHLKHBLONO", + Self::GoejlbhopmjFbafdliofhp => "GOEJLBHOPMJ_FBAFDLIOFHP", + Self::GoejlbhopmjChcjjmnkihd => "GOEJLBHOPMJ_CHCJJMNKIHD", + Self::GoejlbhopmjOmdnohdajak => "GOEJLBHOPMJ_OMDNOHDAJAK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "UNKNOWN" => Some(Self::Unknown), - "KILLED_BY_OTHERS" => Some(Self::KilledByOthers), - "KILLED_BY_SELF" => Some(Self::KilledBySelf), - "ESCAPE" => Some(Self::Escape), + "GOEJLBHOPMJ_AMHLKHBLONO" => Some(Self::GoejlbhopmjAmhlkhblono), + "GOEJLBHOPMJ_FBAFDLIOFHP" => Some(Self::GoejlbhopmjFbafdliofhp), + "GOEJLBHOPMJ_CHCJJMNKIHD" => Some(Self::GoejlbhopmjChcjjmnkihd), + "GOEJLBHOPMJ_OMDNOHDAJAK" => Some(Self::GoejlbhopmjOmdnohdajak), _ => None, } } @@ -60792,26 +62443,26 @@ impl DeathSource { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Agbpcblfnol { - TagNone = 0, - TagHideNpcMonster = 1, +pub enum BattleTag { + DjknogjbcgiOpkbfacieam = 0, + DjknogjbcgiIpkabihpjmb = 1, } -impl Agbpcblfnol { +impl BattleTag { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TagNone => "TAG_NONE", - Self::TagHideNpcMonster => "TAG_HIDE_NPC_MONSTER", + Self::DjknogjbcgiOpkbfacieam => "DJKNOGJBCGI_OPKBFACIEAM", + Self::DjknogjbcgiIpkabihpjmb => "DJKNOGJBCGI_IPKABIHPJMB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TAG_NONE" => Some(Self::TagNone), - "TAG_HIDE_NPC_MONSTER" => Some(Self::TagHideNpcMonster), + "DJKNOGJBCGI_OPKBFACIEAM" => Some(Self::DjknogjbcgiOpkbfacieam), + "DJKNOGJBCGI_IPKABIHPJMB" => Some(Self::DjknogjbcgiIpkabihpjmb), _ => None, } } @@ -60819,26 +62470,26 @@ impl Agbpcblfnol { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hembndjafda { - NormalCreate = 0, - FormChange = 1, +pub enum Bkmkgjhidjn { + Coifcigeenk = 0, + Ndbedeleiie = 1, } -impl Hembndjafda { +impl Bkmkgjhidjn { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::NormalCreate => "NORMAL_CREATE", - Self::FormChange => "FORM_CHANGE", + Self::Coifcigeenk => "BKMKGJHIDJN_COIFCIGEENK", + Self::Ndbedeleiie => "BKMKGJHIDJN_NDBEDELEIIE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "NORMAL_CREATE" => Some(Self::NormalCreate), - "FORM_CHANGE" => Some(Self::FormChange), + "BKMKGJHIDJN_COIFCIGEENK" => Some(Self::Coifcigeenk), + "BKMKGJHIDJN_NDBEDELEIIE" => Some(Self::Ndbedeleiie), _ => None, } } @@ -60847,9 +62498,9 @@ impl Hembndjafda { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BattleEndReason { - None = 0, - AllDie = 1, - TurnLimit = 2, + NfehgaonmncAlocmfakbkp = 0, + NfehgaonmncCgbocipihhn = 1, + NfehgaonmncGaiopgiafjm = 2, } impl BattleEndReason { /// String value of the enum field names used in the ProtoBuf definition. @@ -60858,17 +62509,17 @@ impl BattleEndReason { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "BATTLE_END_REASON_NONE", - Self::AllDie => "BATTLE_END_REASON_ALL_DIE", - Self::TurnLimit => "BATTLE_END_REASON_TURN_LIMIT", + Self::NfehgaonmncAlocmfakbkp => "NFEHGAONMNC_ALOCMFAKBKP", + Self::NfehgaonmncCgbocipihhn => "NFEHGAONMNC_CGBOCIPIHHN", + Self::NfehgaonmncGaiopgiafjm => "NFEHGAONMNC_GAIOPGIAFJM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BATTLE_END_REASON_NONE" => Some(Self::None), - "BATTLE_END_REASON_ALL_DIE" => Some(Self::AllDie), - "BATTLE_END_REASON_TURN_LIMIT" => Some(Self::TurnLimit), + "NFEHGAONMNC_ALOCMFAKBKP" => Some(Self::NfehgaonmncAlocmfakbkp), + "NFEHGAONMNC_CGBOCIPIHHN" => Some(Self::NfehgaonmncCgbocipihhn), + "NFEHGAONMNC_GAIOPGIAFJM" => Some(Self::NfehgaonmncGaiopgiafjm), _ => None, } } @@ -60876,72 +62527,44 @@ impl BattleEndReason { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Oedifangclh { - BattleStaticticEventNone = 0, - BattleStaticticEventTreasureDungeonAddExplore = 1, - BattleStaticticEventTreasureDungeonOpenGrid = 2, - BattleStaticticEventTreasureDungeonPickupItem = 3, - BattleStaticticEventTreasureDungeonUseBuff = 4, - BattleStaticticEventTelevisionActivityUpdateMazeBuffLayer = 5, - BattleStaticticEventRogueTournTitanExtraCoin = 6, - BattleStaticticEventRogueTournTitanExtraCoinTimes = 7, +pub enum BattleStaticticEventType { + GckgmnnbpmaOdpdnakighd = 0, + GckgmnnbpmaCdnhcokbjjd = 1, + GckgmnnbpmaOpjmljocmam = 2, + GckgmnnbpmaGmbhnocmdcg = 3, + GckgmnnbpmaKnhcaojcgbd = 4, + GckgmnnbpmaBpnjjfmgklk = 5, + GckgmnnbpmaFagelfgfefj = 6, + GckgmnnbpmaInhbppibdjg = 7, } -impl Oedifangclh { +impl BattleStaticticEventType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BattleStaticticEventNone => "BATTLE_STATICTIC_EVENT_NONE", - Self::BattleStaticticEventTreasureDungeonAddExplore => { - "BATTLE_STATICTIC_EVENT_TREASURE_DUNGEON_ADD_EXPLORE" - } - Self::BattleStaticticEventTreasureDungeonOpenGrid => { - "BATTLE_STATICTIC_EVENT_TREASURE_DUNGEON_OPEN_GRID" - } - Self::BattleStaticticEventTreasureDungeonPickupItem => { - "BATTLE_STATICTIC_EVENT_TREASURE_DUNGEON_PICKUP_ITEM" - } - Self::BattleStaticticEventTreasureDungeonUseBuff => { - "BATTLE_STATICTIC_EVENT_TREASURE_DUNGEON_USE_BUFF" - } - Self::BattleStaticticEventTelevisionActivityUpdateMazeBuffLayer => { - "BATTLE_STATICTIC_EVENT_TELEVISION_ACTIVITY_UPDATE_MAZE_BUFF_LAYER" - } - Self::BattleStaticticEventRogueTournTitanExtraCoin => { - "BATTLE_STATICTIC_EVENT_ROGUE_TOURN_TITAN_EXTRA_COIN" - } - Self::BattleStaticticEventRogueTournTitanExtraCoinTimes => { - "BATTLE_STATICTIC_EVENT_ROGUE_TOURN_TITAN_EXTRA_COIN_TIMES" - } + Self::GckgmnnbpmaOdpdnakighd => "GCKGMNNBPMA_ODPDNAKIGHD", + Self::GckgmnnbpmaCdnhcokbjjd => "GCKGMNNBPMA_CDNHCOKBJJD", + Self::GckgmnnbpmaOpjmljocmam => "GCKGMNNBPMA_OPJMLJOCMAM", + Self::GckgmnnbpmaGmbhnocmdcg => "GCKGMNNBPMA_GMBHNOCMDCG", + Self::GckgmnnbpmaKnhcaojcgbd => "GCKGMNNBPMA_KNHCAOJCGBD", + Self::GckgmnnbpmaBpnjjfmgklk => "GCKGMNNBPMA_BPNJJFMGKLK", + Self::GckgmnnbpmaFagelfgfefj => "GCKGMNNBPMA_FAGELFGFEFJ", + Self::GckgmnnbpmaInhbppibdjg => "GCKGMNNBPMA_INHBPPIBDJG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BATTLE_STATICTIC_EVENT_NONE" => Some(Self::BattleStaticticEventNone), - "BATTLE_STATICTIC_EVENT_TREASURE_DUNGEON_ADD_EXPLORE" => { - Some(Self::BattleStaticticEventTreasureDungeonAddExplore) - } - "BATTLE_STATICTIC_EVENT_TREASURE_DUNGEON_OPEN_GRID" => { - Some(Self::BattleStaticticEventTreasureDungeonOpenGrid) - } - "BATTLE_STATICTIC_EVENT_TREASURE_DUNGEON_PICKUP_ITEM" => { - Some(Self::BattleStaticticEventTreasureDungeonPickupItem) - } - "BATTLE_STATICTIC_EVENT_TREASURE_DUNGEON_USE_BUFF" => { - Some(Self::BattleStaticticEventTreasureDungeonUseBuff) - } - "BATTLE_STATICTIC_EVENT_TELEVISION_ACTIVITY_UPDATE_MAZE_BUFF_LAYER" => { - Some(Self::BattleStaticticEventTelevisionActivityUpdateMazeBuffLayer) - } - "BATTLE_STATICTIC_EVENT_ROGUE_TOURN_TITAN_EXTRA_COIN" => { - Some(Self::BattleStaticticEventRogueTournTitanExtraCoin) - } - "BATTLE_STATICTIC_EVENT_ROGUE_TOURN_TITAN_EXTRA_COIN_TIMES" => { - Some(Self::BattleStaticticEventRogueTournTitanExtraCoinTimes) - } + "GCKGMNNBPMA_ODPDNAKIGHD" => Some(Self::GckgmnnbpmaOdpdnakighd), + "GCKGMNNBPMA_CDNHCOKBJJD" => Some(Self::GckgmnnbpmaCdnhcokbjjd), + "GCKGMNNBPMA_OPJMLJOCMAM" => Some(Self::GckgmnnbpmaOpjmljocmam), + "GCKGMNNBPMA_GMBHNOCMDCG" => Some(Self::GckgmnnbpmaGmbhnocmdcg), + "GCKGMNNBPMA_KNHCAOJCGBD" => Some(Self::GckgmnnbpmaKnhcaojcgbd), + "GCKGMNNBPMA_BPNJJFMGKLK" => Some(Self::GckgmnnbpmaBpnjjfmgklk), + "GCKGMNNBPMA_FAGELFGFEFJ" => Some(Self::GckgmnnbpmaFagelfgfefj), + "GCKGMNNBPMA_INHBPPIBDJG" => Some(Self::GckgmnnbpmaInhbppibdjg), _ => None, } } @@ -60949,35 +62572,35 @@ impl Oedifangclh { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Bojgakmdpdl { - EvolveBuildFuncNone = 0, - EvolveBuildFuncGearReset = 1, - EvolveBuildFuncGearRemove = 2, - EvolveBuildFuncGearSkip = 3, - EvolveBuildFuncCardReset = 4, +pub enum Coeoggeplbo { + Felbkoemjhg = 0, + Jbikmcakfpm = 1, + Ddocciglhng = 2, + Moomblfmbel = 3, + Lgjadbbcbek = 4, } -impl Bojgakmdpdl { +impl Coeoggeplbo { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::EvolveBuildFuncNone => "EVOLVE_BUILD_FUNC_NONE", - Self::EvolveBuildFuncGearReset => "EVOLVE_BUILD_FUNC_GEAR_RESET", - Self::EvolveBuildFuncGearRemove => "EVOLVE_BUILD_FUNC_GEAR_REMOVE", - Self::EvolveBuildFuncGearSkip => "EVOLVE_BUILD_FUNC_GEAR_SKIP", - Self::EvolveBuildFuncCardReset => "EVOLVE_BUILD_FUNC_CARD_RESET", + Self::Felbkoemjhg => "COEOGGEPLBO_FELBKOEMJHG", + Self::Jbikmcakfpm => "COEOGGEPLBO_JBIKMCAKFPM", + Self::Ddocciglhng => "COEOGGEPLBO_DDOCCIGLHNG", + Self::Moomblfmbel => "COEOGGEPLBO_MOOMBLFMBEL", + Self::Lgjadbbcbek => "COEOGGEPLBO_LGJADBBCBEK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "EVOLVE_BUILD_FUNC_NONE" => Some(Self::EvolveBuildFuncNone), - "EVOLVE_BUILD_FUNC_GEAR_RESET" => Some(Self::EvolveBuildFuncGearReset), - "EVOLVE_BUILD_FUNC_GEAR_REMOVE" => Some(Self::EvolveBuildFuncGearRemove), - "EVOLVE_BUILD_FUNC_GEAR_SKIP" => Some(Self::EvolveBuildFuncGearSkip), - "EVOLVE_BUILD_FUNC_CARD_RESET" => Some(Self::EvolveBuildFuncCardReset), + "COEOGGEPLBO_FELBKOEMJHG" => Some(Self::Felbkoemjhg), + "COEOGGEPLBO_JBIKMCAKFPM" => Some(Self::Jbikmcakfpm), + "COEOGGEPLBO_DDOCCIGLHNG" => Some(Self::Ddocciglhng), + "COEOGGEPLBO_MOOMBLFMBEL" => Some(Self::Moomblfmbel), + "COEOGGEPLBO_LGJADBBCBEK" => Some(Self::Lgjadbbcbek), _ => None, } } @@ -60985,29 +62608,29 @@ impl Bojgakmdpdl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ddlhaknkjen { - KGridFightTraitMemberNone = 0, - KGridFightTraitMemberRole = 1, - KGridFightTraitMemberNpc = 2, +pub enum Dpkfpdoflgf { + Kjolpbljlkj = 0, + Jikpflcjllj = 1, + Mjjjpofffnf = 2, } -impl Ddlhaknkjen { +impl Dpkfpdoflgf { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightTraitMemberNone => "kGridFightTraitMemberNone", - Self::KGridFightTraitMemberRole => "kGridFightTraitMemberRole", - Self::KGridFightTraitMemberNpc => "kGridFightTraitMemberNPC", + Self::Kjolpbljlkj => "DPKFPDOFLGF_KJOLPBLJLKJ", + Self::Jikpflcjllj => "DPKFPDOFLGF_JIKPFLCJLLJ", + Self::Mjjjpofffnf => "DPKFPDOFLGF_MJJJPOFFFNF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightTraitMemberNone" => Some(Self::KGridFightTraitMemberNone), - "kGridFightTraitMemberRole" => Some(Self::KGridFightTraitMemberRole), - "kGridFightTraitMemberNPC" => Some(Self::KGridFightTraitMemberNpc), + "DPKFPDOFLGF_KJOLPBLJLKJ" => Some(Self::Kjolpbljlkj), + "DPKFPDOFLGF_JIKPFLCJLLJ" => Some(Self::Jikpflcjllj), + "DPKFPDOFLGF_MJJJPOFFFNF" => Some(Self::Mjjjpofffnf), _ => None, } } @@ -61015,32 +62638,32 @@ impl Ddlhaknkjen { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nhpokicfaja { - KGridFightTraitSrcNone = 0, - KGridFightTraitSrcRole = 1, - KGridFightTraitSrcEquip = 2, - KGridFightTraitSrcDummy = 3, +pub enum Dnhfhekjlkm { + Hdnidmffhhe = 0, + Mknbpaigpgc = 1, + Mfaaccehjee = 2, + Eebjioihpco = 3, } -impl Nhpokicfaja { +impl Dnhfhekjlkm { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightTraitSrcNone => "kGridFightTraitSrcNone", - Self::KGridFightTraitSrcRole => "kGridFightTraitSrcRole", - Self::KGridFightTraitSrcEquip => "kGridFightTraitSrcEquip", - Self::KGridFightTraitSrcDummy => "kGridFightTraitSrcDummy", + Self::Hdnidmffhhe => "DNHFHEKJLKM_HDNIDMFFHHE", + Self::Mknbpaigpgc => "DNHFHEKJLKM_MKNBPAIGPGC", + Self::Mfaaccehjee => "DNHFHEKJLKM_MFAACCEHJEE", + Self::Eebjioihpco => "DNHFHEKJLKM_EEBJIOIHPCO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightTraitSrcNone" => Some(Self::KGridFightTraitSrcNone), - "kGridFightTraitSrcRole" => Some(Self::KGridFightTraitSrcRole), - "kGridFightTraitSrcEquip" => Some(Self::KGridFightTraitSrcEquip), - "kGridFightTraitSrcDummy" => Some(Self::KGridFightTraitSrcDummy), + "DNHFHEKJLKM_HDNIDMFFHHE" => Some(Self::Hdnidmffhhe), + "DNHFHEKJLKM_MKNBPAIGPGC" => Some(Self::Mknbpaigpgc), + "DNHFHEKJLKM_MFAACCEHJEE" => Some(Self::Mfaaccehjee), + "DNHFHEKJLKM_EEBJIOIHPCO" => Some(Self::Eebjioihpco), _ => None, } } @@ -61048,29 +62671,29 @@ impl Nhpokicfaja { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jegleikmncl { - KNone = 0, - KkillEliteMonsterNum = 1, - KkillMonsterNum = 2, +pub enum Bofnbmdpdkd { + Hadibbnbogh = 0, + Mdfgnmincmh = 1, + Hijjpajecmg = 2, } -impl Jegleikmncl { +impl Bofnbmdpdkd { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KNone => "kNone", - Self::KkillEliteMonsterNum => "kkillEliteMonsterNum", - Self::KkillMonsterNum => "kkillMonsterNum", + Self::Hadibbnbogh => "BOFNBMDPDKD_HADIBBNBOGH", + Self::Mdfgnmincmh => "BOFNBMDPDKD_MDFGNMINCMH", + Self::Hijjpajecmg => "BOFNBMDPDKD_HIJJPAJECMG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kNone" => Some(Self::KNone), - "kkillEliteMonsterNum" => Some(Self::KkillEliteMonsterNum), - "kkillMonsterNum" => Some(Self::KkillMonsterNum), + "BOFNBMDPDKD_HADIBBNBOGH" => Some(Self::Hadibbnbogh), + "BOFNBMDPDKD_MDFGNMINCMH" => Some(Self::Mdfgnmincmh), + "BOFNBMDPDKD_HIJJPAJECMG" => Some(Self::Hijjpajecmg), _ => None, } } @@ -61079,10 +62702,10 @@ impl Jegleikmncl { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BattleEndStatus { - BattleEndNone = 0, - BattleEndWin = 1, - BattleEndLose = 2, - BattleEndQuit = 3, + KffokcponjfBfggfjldfjp = 0, + KffokcponjfKbnpckjgkof = 1, + KffokcponjfCaffpgpjglh = 2, + KffokcponjfOjacnkafdpb = 3, } impl BattleEndStatus { /// String value of the enum field names used in the ProtoBuf definition. @@ -61091,19 +62714,19 @@ impl BattleEndStatus { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BattleEndNone => "BATTLE_END_NONE", - Self::BattleEndWin => "BATTLE_END_WIN", - Self::BattleEndLose => "BATTLE_END_LOSE", - Self::BattleEndQuit => "BATTLE_END_QUIT", + Self::KffokcponjfBfggfjldfjp => "KFFOKCPONJF_BFGGFJLDFJP", + Self::KffokcponjfKbnpckjgkof => "KFFOKCPONJF_KBNPCKJGKOF", + Self::KffokcponjfCaffpgpjglh => "KFFOKCPONJF_CAFFPGPJGLH", + Self::KffokcponjfOjacnkafdpb => "KFFOKCPONJF_OJACNKAFDPB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BATTLE_END_NONE" => Some(Self::BattleEndNone), - "BATTLE_END_WIN" => Some(Self::BattleEndWin), - "BATTLE_END_LOSE" => Some(Self::BattleEndLose), - "BATTLE_END_QUIT" => Some(Self::BattleEndQuit), + "KFFOKCPONJF_BFGGFJLDFJP" => Some(Self::KffokcponjfBfggfjldfjp), + "KFFOKCPONJF_KBNPCKJGKOF" => Some(Self::KffokcponjfKbnpckjgkof), + "KFFOKCPONJF_CAFFPGPJGLH" => Some(Self::KffokcponjfCaffpgpjglh), + "KFFOKCPONJF_OJACNKAFDPB" => Some(Self::KffokcponjfOjacnkafdpb), _ => None, } } @@ -61111,31 +62734,29 @@ impl BattleEndStatus { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jeblpliahnm { - ManualAvatarUpgradeNone = 0, - ManualAvatarUpgradeFate = 1, - ManualAvatarUpgradeGridFight = 2, +pub enum Aoohejplhco { + Fakeikjdioa = 0, + Helbicepfda = 1, + Glbkchikeid = 2, } -impl Jeblpliahnm { +impl Aoohejplhco { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ManualAvatarUpgradeNone => "MANUAL_AVATAR_UPGRADE_NONE", - Self::ManualAvatarUpgradeFate => "MANUAL_AVATAR_UPGRADE_FATE", - Self::ManualAvatarUpgradeGridFight => "MANUAL_AVATAR_UPGRADE_GRID_FIGHT", + Self::Fakeikjdioa => "AOOHEJPLHCO_FAKEIKJDIOA", + Self::Helbicepfda => "AOOHEJPLHCO_HELBICEPFDA", + Self::Glbkchikeid => "AOOHEJPLHCO_GLBKCHIKEID", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MANUAL_AVATAR_UPGRADE_NONE" => Some(Self::ManualAvatarUpgradeNone), - "MANUAL_AVATAR_UPGRADE_FATE" => Some(Self::ManualAvatarUpgradeFate), - "MANUAL_AVATAR_UPGRADE_GRID_FIGHT" => { - Some(Self::ManualAvatarUpgradeGridFight) - } + "AOOHEJPLHCO_FAKEIKJDIOA" => Some(Self::Fakeikjdioa), + "AOOHEJPLHCO_HELBICEPFDA" => Some(Self::Helbicepfda), + "AOOHEJPLHCO_GLBKCHIKEID" => Some(Self::Glbkchikeid), _ => None, } } @@ -61143,41 +62764,41 @@ impl Jeblpliahnm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Noogdpkefkl { - FightGameModeNone = 0, - FightGameModeMatch3 = 1, - FightGameModeMarble = 2, - FightGameModeMatch3Solo = 3, - FightGameModeMatch3Royale = 4, - FightGameModeMarbleMainsub = 5, - FightGameModeCakeRace = 6, +pub enum FightGameMode { + CfomcepgjocAlocmfakbkp = 0, + CfomcepgjocBlgdpcgeafg = 1, + CfomcepgjocHlngfngngog = 2, + CfomcepgjocCpjfgafoffi = 3, + CfomcepgjocFddjjhhnjcd = 4, + CfomcepgjocHhafaedidpf = 5, + CfomcepgjocNfbihiipjdc = 6, } -impl Noogdpkefkl { +impl FightGameMode { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightGameModeNone => "FIGHT_GAME_MODE_NONE", - Self::FightGameModeMatch3 => "FIGHT_GAME_MODE_MATCH3", - Self::FightGameModeMarble => "FIGHT_GAME_MODE_MARBLE", - Self::FightGameModeMatch3Solo => "FIGHT_GAME_MODE_MATCH3_SOLO", - Self::FightGameModeMatch3Royale => "FIGHT_GAME_MODE_MATCH3_ROYALE", - Self::FightGameModeMarbleMainsub => "FIGHT_GAME_MODE_MARBLE_MAINSUB", - Self::FightGameModeCakeRace => "FIGHT_GAME_MODE_CAKE_RACE", + Self::CfomcepgjocAlocmfakbkp => "CFOMCEPGJOC_ALOCMFAKBKP", + Self::CfomcepgjocBlgdpcgeafg => "CFOMCEPGJOC_BLGDPCGEAFG", + Self::CfomcepgjocHlngfngngog => "CFOMCEPGJOC_HLNGFNGNGOG", + Self::CfomcepgjocCpjfgafoffi => "CFOMCEPGJOC_CPJFGAFOFFI", + Self::CfomcepgjocFddjjhhnjcd => "CFOMCEPGJOC_FDDJJHHNJCD", + Self::CfomcepgjocHhafaedidpf => "CFOMCEPGJOC_HHAFAEDIDPF", + Self::CfomcepgjocNfbihiipjdc => "CFOMCEPGJOC_NFBIHIIPJDC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FIGHT_GAME_MODE_NONE" => Some(Self::FightGameModeNone), - "FIGHT_GAME_MODE_MATCH3" => Some(Self::FightGameModeMatch3), - "FIGHT_GAME_MODE_MARBLE" => Some(Self::FightGameModeMarble), - "FIGHT_GAME_MODE_MATCH3_SOLO" => Some(Self::FightGameModeMatch3Solo), - "FIGHT_GAME_MODE_MATCH3_ROYALE" => Some(Self::FightGameModeMatch3Royale), - "FIGHT_GAME_MODE_MARBLE_MAINSUB" => Some(Self::FightGameModeMarbleMainsub), - "FIGHT_GAME_MODE_CAKE_RACE" => Some(Self::FightGameModeCakeRace), + "CFOMCEPGJOC_ALOCMFAKBKP" => Some(Self::CfomcepgjocAlocmfakbkp), + "CFOMCEPGJOC_BLGDPCGEAFG" => Some(Self::CfomcepgjocBlgdpcgeafg), + "CFOMCEPGJOC_HLNGFNGNGOG" => Some(Self::CfomcepgjocHlngfngngog), + "CFOMCEPGJOC_CPJFGAFOFFI" => Some(Self::CfomcepgjocCpjfgafoffi), + "CFOMCEPGJOC_FDDJJHHNJCD" => Some(Self::CfomcepgjocFddjjhhnjcd), + "CFOMCEPGJOC_HHAFAEDIDPF" => Some(Self::CfomcepgjocHhafaedidpf), + "CFOMCEPGJOC_NFBIHIIPJDC" => Some(Self::CfomcepgjocNfbihiipjdc), _ => None, } } @@ -61185,35 +62806,35 @@ impl Noogdpkefkl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dkiifbicieg { - FightKickoutUnknown = 0, - FightKickoutBlack = 1, - FightKickoutByGm = 2, - FightKickoutTimeout = 3, - FightKickoutSessionReset = 4, +pub enum FightKickoutType { + EodpbkmjkbcDgbgplbcfhb = 0, + EodpbkmjkbcGpbbpopjffp = 1, + EodpbkmjkbcAkkdmabihoj = 2, + EodpbkmjkbcNdmfeomnfpk = 3, + EodpbkmjkbcEpijaooeadi = 4, } -impl Dkiifbicieg { +impl FightKickoutType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightKickoutUnknown => "FIGHT_KICKOUT_UNKNOWN", - Self::FightKickoutBlack => "FIGHT_KICKOUT_BLACK", - Self::FightKickoutByGm => "FIGHT_KICKOUT_BY_GM", - Self::FightKickoutTimeout => "FIGHT_KICKOUT_TIMEOUT", - Self::FightKickoutSessionReset => "FIGHT_KICKOUT_SESSION_RESET", + Self::EodpbkmjkbcDgbgplbcfhb => "EODPBKMJKBC_DGBGPLBCFHB", + Self::EodpbkmjkbcGpbbpopjffp => "EODPBKMJKBC_GPBBPOPJFFP", + Self::EodpbkmjkbcAkkdmabihoj => "EODPBKMJKBC_AKKDMABIHOJ", + Self::EodpbkmjkbcNdmfeomnfpk => "EODPBKMJKBC_NDMFEOMNFPK", + Self::EodpbkmjkbcEpijaooeadi => "EODPBKMJKBC_EPIJAOOEADI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FIGHT_KICKOUT_UNKNOWN" => Some(Self::FightKickoutUnknown), - "FIGHT_KICKOUT_BLACK" => Some(Self::FightKickoutBlack), - "FIGHT_KICKOUT_BY_GM" => Some(Self::FightKickoutByGm), - "FIGHT_KICKOUT_TIMEOUT" => Some(Self::FightKickoutTimeout), - "FIGHT_KICKOUT_SESSION_RESET" => Some(Self::FightKickoutSessionReset), + "EODPBKMJKBC_DGBGPLBCFHB" => Some(Self::EodpbkmjkbcDgbgplbcfhb), + "EODPBKMJKBC_GPBBPOPJFFP" => Some(Self::EodpbkmjkbcGpbbpopjffp), + "EODPBKMJKBC_AKKDMABIHOJ" => Some(Self::EodpbkmjkbcAkkdmabihoj), + "EODPBKMJKBC_NDMFEOMNFPK" => Some(Self::EodpbkmjkbcNdmfeomnfpk), + "EODPBKMJKBC_EPIJAOOEADI" => Some(Self::EodpbkmjkbcEpijaooeadi), _ => None, } } @@ -61221,32 +62842,32 @@ impl Dkiifbicieg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hbpfdgnndef { - LobbyCharacterNone = 0, - LobbyCharacterLeader = 1, - LobbyCharacterMember = 2, - LobbyCharacterWatcher = 3, +pub enum LobbyCharacterType { + IjlhnjionmdFinpelffgkn = 0, + IjlhnjionmdPfmnmooicge = 1, + IjlhnjionmdFcldpikeibl = 2, + IjlhnjionmdBpmghjfkjkd = 3, } -impl Hbpfdgnndef { +impl LobbyCharacterType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::LobbyCharacterNone => "LobbyCharacter_None", - Self::LobbyCharacterLeader => "LobbyCharacter_Leader", - Self::LobbyCharacterMember => "LobbyCharacter_Member", - Self::LobbyCharacterWatcher => "LobbyCharacter_Watcher", + Self::IjlhnjionmdFinpelffgkn => "IJLHNJIONMD_FINPELFFGKN", + Self::IjlhnjionmdPfmnmooicge => "IJLHNJIONMD_PFMNMOOICGE", + Self::IjlhnjionmdFcldpikeibl => "IJLHNJIONMD_FCLDPIKEIBL", + Self::IjlhnjionmdBpmghjfkjkd => "IJLHNJIONMD_BPMGHJFKJKD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "LobbyCharacter_None" => Some(Self::LobbyCharacterNone), - "LobbyCharacter_Leader" => Some(Self::LobbyCharacterLeader), - "LobbyCharacter_Member" => Some(Self::LobbyCharacterMember), - "LobbyCharacter_Watcher" => Some(Self::LobbyCharacterWatcher), + "IJLHNJIONMD_FINPELFFGKN" => Some(Self::IjlhnjionmdFinpelffgkn), + "IJLHNJIONMD_PFMNMOOICGE" => Some(Self::IjlhnjionmdPfmnmooicge), + "IJLHNJIONMD_FCLDPIKEIBL" => Some(Self::IjlhnjionmdFcldpikeibl), + "IJLHNJIONMD_BPMGHJFKJKD" => Some(Self::IjlhnjionmdBpmghjfkjkd), _ => None, } } @@ -61254,48 +62875,44 @@ impl Hbpfdgnndef { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Edkfijacjgl { - LobbyCharacterStatusNone = 0, - LobbyCharacterStatusIdle = 1, - LobbyCharacterStatusOperating = 2, - LobbyCharacterStatusReady = 3, - LobbyCharacterStatusFighting = 4, - LobbyCharacterStatusWatching = 5, - LobbyCharacterStatusMatching = 6, - LobbyCharacterStatusLobbyStartFight = 7, +pub enum LobbyCharacterStatus { + MfponblemioAlocmfakbkp = 0, + MfponblemioMokkbomcmef = 1, + MfponblemioLlbcigobdjp = 2, + MfponblemioBonmjnfmmma = 3, + MfponblemioMepmchgodgb = 4, + MfponblemioNklbknhbkan = 5, + MfponblemioFioeknienhd = 6, + MfponblemioMpabbecifno = 7, } -impl Edkfijacjgl { +impl LobbyCharacterStatus { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::LobbyCharacterStatusNone => "LobbyCharacterStatus_None", - Self::LobbyCharacterStatusIdle => "LobbyCharacterStatus_Idle", - Self::LobbyCharacterStatusOperating => "LobbyCharacterStatus_Operating", - Self::LobbyCharacterStatusReady => "LobbyCharacterStatus_Ready", - Self::LobbyCharacterStatusFighting => "LobbyCharacterStatus_Fighting", - Self::LobbyCharacterStatusWatching => "LobbyCharacterStatus_Watching", - Self::LobbyCharacterStatusMatching => "LobbyCharacterStatus_Matching", - Self::LobbyCharacterStatusLobbyStartFight => { - "LobbyCharacterStatus_LobbyStartFight" - } + Self::MfponblemioAlocmfakbkp => "MFPONBLEMIO_ALOCMFAKBKP", + Self::MfponblemioMokkbomcmef => "MFPONBLEMIO_MOKKBOMCMEF", + Self::MfponblemioLlbcigobdjp => "MFPONBLEMIO_LLBCIGOBDJP", + Self::MfponblemioBonmjnfmmma => "MFPONBLEMIO_BONMJNFMMMA", + Self::MfponblemioMepmchgodgb => "MFPONBLEMIO_MEPMCHGODGB", + Self::MfponblemioNklbknhbkan => "MFPONBLEMIO_NKLBKNHBKAN", + Self::MfponblemioFioeknienhd => "MFPONBLEMIO_FIOEKNIENHD", + Self::MfponblemioMpabbecifno => "MFPONBLEMIO_MPABBECIFNO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "LobbyCharacterStatus_None" => Some(Self::LobbyCharacterStatusNone), - "LobbyCharacterStatus_Idle" => Some(Self::LobbyCharacterStatusIdle), - "LobbyCharacterStatus_Operating" => Some(Self::LobbyCharacterStatusOperating), - "LobbyCharacterStatus_Ready" => Some(Self::LobbyCharacterStatusReady), - "LobbyCharacterStatus_Fighting" => Some(Self::LobbyCharacterStatusFighting), - "LobbyCharacterStatus_Watching" => Some(Self::LobbyCharacterStatusWatching), - "LobbyCharacterStatus_Matching" => Some(Self::LobbyCharacterStatusMatching), - "LobbyCharacterStatus_LobbyStartFight" => { - Some(Self::LobbyCharacterStatusLobbyStartFight) - } + "MFPONBLEMIO_ALOCMFAKBKP" => Some(Self::MfponblemioAlocmfakbkp), + "MFPONBLEMIO_MOKKBOMCMEF" => Some(Self::MfponblemioMokkbomcmef), + "MFPONBLEMIO_LLBCIGOBDJP" => Some(Self::MfponblemioLlbcigobdjp), + "MFPONBLEMIO_BONMJNFMMMA" => Some(Self::MfponblemioBonmjnfmmma), + "MFPONBLEMIO_MEPMCHGODGB" => Some(Self::MfponblemioMepmchgodgb), + "MFPONBLEMIO_NKLBKNHBKAN" => Some(Self::MfponblemioNklbknhbkan), + "MFPONBLEMIO_FIOEKNIENHD" => Some(Self::MfponblemioFioeknienhd), + "MFPONBLEMIO_MPABBECIFNO" => Some(Self::MfponblemioMpabbecifno), _ => None, } } @@ -61303,84 +62920,74 @@ impl Edkfijacjgl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Aokdmakgdgj { - LobbyModifyTypeNone = 0, - LobbyModifyTypeIdle = 1, - LobbyModifyTypeReady = 2, - LobbyModifyTypeOperating = 3, - LobbyModifyTypeCancelMatch = 4, - LobbyModifyTypeMatch = 5, - LobbyModifyTypeQuitLobby = 6, - LobbyModifyTypeKickOut = 7, - LobbyModifyTypeTimeOut = 8, - LobbyModifyTypeJoinLobby = 9, - LobbyModifyTypeLobbyDismiss = 10, - LobbyModifyTypeMatchTimeOut = 11, - LobbyModifyTypeFightStart = 12, - LobbyModifyTypeLogout = 13, - LobbyModifyTypeFightEnd = 14, - LobbyModifyTypeFightRoomDestroyInInit = 15, - LobbyModifyTypeLobbyStartFight = 16, - LobbyModifyTypeLobbyStartFightTimeout = 17, +pub enum LobbyModifyType { + CegdjanghchAlocmfakbkp = 0, + CegdjanghchMokkbomcmef = 1, + CegdjanghchBonmjnfmmma = 2, + CegdjanghchLlbcigobdjp = 3, + CegdjanghchDhiddbiclhh = 4, + CegdjanghchClpkikddcgj = 5, + CegdjanghchOemenejjdba = 6, + CegdjanghchMkpojbfmima = 7, + CegdjanghchBmkldeojojk = 8, + CegdjanghchPieinfmkddc = 9, + CegdjanghchPlolmipgmpd = 10, + CegdjanghchBajkmbhdfld = 11, + CegdjanghchCeihdpbiafn = 12, + CegdjanghchNmecigefbke = 13, + CegdjanghchDeeagdhioad = 14, + CegdjanghchBifeamillkb = 15, + CegdjanghchMpabbecifno = 16, + CegdjanghchBeknabfklcp = 17, } -impl Aokdmakgdgj { +impl LobbyModifyType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::LobbyModifyTypeNone => "LobbyModifyType_None", - Self::LobbyModifyTypeIdle => "LobbyModifyType_Idle", - Self::LobbyModifyTypeReady => "LobbyModifyType_Ready", - Self::LobbyModifyTypeOperating => "LobbyModifyType_Operating", - Self::LobbyModifyTypeCancelMatch => "LobbyModifyType_CancelMatch", - Self::LobbyModifyTypeMatch => "LobbyModifyType_Match", - Self::LobbyModifyTypeQuitLobby => "LobbyModifyType_QuitLobby", - Self::LobbyModifyTypeKickOut => "LobbyModifyType_KickOut", - Self::LobbyModifyTypeTimeOut => "LobbyModifyType_TimeOut", - Self::LobbyModifyTypeJoinLobby => "LobbyModifyType_JoinLobby", - Self::LobbyModifyTypeLobbyDismiss => "LobbyModifyType_LobbyDismiss", - Self::LobbyModifyTypeMatchTimeOut => "LobbyModifyType_MatchTimeOut", - Self::LobbyModifyTypeFightStart => "LobbyModifyType_FightStart", - Self::LobbyModifyTypeLogout => "LobbyModifyType_Logout", - Self::LobbyModifyTypeFightEnd => "LobbyModifyType_FightEnd", - Self::LobbyModifyTypeFightRoomDestroyInInit => { - "LobbyModifyType_FightRoomDestroyInInit" - } - Self::LobbyModifyTypeLobbyStartFight => "LobbyModifyType_LobbyStartFight", - Self::LobbyModifyTypeLobbyStartFightTimeout => { - "LobbyModifyType_LobbyStartFightTimeout" - } + Self::CegdjanghchAlocmfakbkp => "CEGDJANGHCH_ALOCMFAKBKP", + Self::CegdjanghchMokkbomcmef => "CEGDJANGHCH_MOKKBOMCMEF", + Self::CegdjanghchBonmjnfmmma => "CEGDJANGHCH_BONMJNFMMMA", + Self::CegdjanghchLlbcigobdjp => "CEGDJANGHCH_LLBCIGOBDJP", + Self::CegdjanghchDhiddbiclhh => "CEGDJANGHCH_DHIDDBICLHH", + Self::CegdjanghchClpkikddcgj => "CEGDJANGHCH_CLPKIKDDCGJ", + Self::CegdjanghchOemenejjdba => "CEGDJANGHCH_OEMENEJJDBA", + Self::CegdjanghchMkpojbfmima => "CEGDJANGHCH_MKPOJBFMIMA", + Self::CegdjanghchBmkldeojojk => "CEGDJANGHCH_BMKLDEOJOJK", + Self::CegdjanghchPieinfmkddc => "CEGDJANGHCH_PIEINFMKDDC", + Self::CegdjanghchPlolmipgmpd => "CEGDJANGHCH_PLOLMIPGMPD", + Self::CegdjanghchBajkmbhdfld => "CEGDJANGHCH_BAJKMBHDFLD", + Self::CegdjanghchCeihdpbiafn => "CEGDJANGHCH_CEIHDPBIAFN", + Self::CegdjanghchNmecigefbke => "CEGDJANGHCH_NMECIGEFBKE", + Self::CegdjanghchDeeagdhioad => "CEGDJANGHCH_DEEAGDHIOAD", + Self::CegdjanghchBifeamillkb => "CEGDJANGHCH_BIFEAMILLKB", + Self::CegdjanghchMpabbecifno => "CEGDJANGHCH_MPABBECIFNO", + Self::CegdjanghchBeknabfklcp => "CEGDJANGHCH_BEKNABFKLCP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "LobbyModifyType_None" => Some(Self::LobbyModifyTypeNone), - "LobbyModifyType_Idle" => Some(Self::LobbyModifyTypeIdle), - "LobbyModifyType_Ready" => Some(Self::LobbyModifyTypeReady), - "LobbyModifyType_Operating" => Some(Self::LobbyModifyTypeOperating), - "LobbyModifyType_CancelMatch" => Some(Self::LobbyModifyTypeCancelMatch), - "LobbyModifyType_Match" => Some(Self::LobbyModifyTypeMatch), - "LobbyModifyType_QuitLobby" => Some(Self::LobbyModifyTypeQuitLobby), - "LobbyModifyType_KickOut" => Some(Self::LobbyModifyTypeKickOut), - "LobbyModifyType_TimeOut" => Some(Self::LobbyModifyTypeTimeOut), - "LobbyModifyType_JoinLobby" => Some(Self::LobbyModifyTypeJoinLobby), - "LobbyModifyType_LobbyDismiss" => Some(Self::LobbyModifyTypeLobbyDismiss), - "LobbyModifyType_MatchTimeOut" => Some(Self::LobbyModifyTypeMatchTimeOut), - "LobbyModifyType_FightStart" => Some(Self::LobbyModifyTypeFightStart), - "LobbyModifyType_Logout" => Some(Self::LobbyModifyTypeLogout), - "LobbyModifyType_FightEnd" => Some(Self::LobbyModifyTypeFightEnd), - "LobbyModifyType_FightRoomDestroyInInit" => { - Some(Self::LobbyModifyTypeFightRoomDestroyInInit) - } - "LobbyModifyType_LobbyStartFight" => { - Some(Self::LobbyModifyTypeLobbyStartFight) - } - "LobbyModifyType_LobbyStartFightTimeout" => { - Some(Self::LobbyModifyTypeLobbyStartFightTimeout) - } + "CEGDJANGHCH_ALOCMFAKBKP" => Some(Self::CegdjanghchAlocmfakbkp), + "CEGDJANGHCH_MOKKBOMCMEF" => Some(Self::CegdjanghchMokkbomcmef), + "CEGDJANGHCH_BONMJNFMMMA" => Some(Self::CegdjanghchBonmjnfmmma), + "CEGDJANGHCH_LLBCIGOBDJP" => Some(Self::CegdjanghchLlbcigobdjp), + "CEGDJANGHCH_DHIDDBICLHH" => Some(Self::CegdjanghchDhiddbiclhh), + "CEGDJANGHCH_CLPKIKDDCGJ" => Some(Self::CegdjanghchClpkikddcgj), + "CEGDJANGHCH_OEMENEJJDBA" => Some(Self::CegdjanghchOemenejjdba), + "CEGDJANGHCH_MKPOJBFMIMA" => Some(Self::CegdjanghchMkpojbfmima), + "CEGDJANGHCH_BMKLDEOJOJK" => Some(Self::CegdjanghchBmkldeojojk), + "CEGDJANGHCH_PIEINFMKDDC" => Some(Self::CegdjanghchPieinfmkddc), + "CEGDJANGHCH_PLOLMIPGMPD" => Some(Self::CegdjanghchPlolmipgmpd), + "CEGDJANGHCH_BAJKMBHDFLD" => Some(Self::CegdjanghchBajkmbhdfld), + "CEGDJANGHCH_CEIHDPBIAFN" => Some(Self::CegdjanghchCeihdpbiafn), + "CEGDJANGHCH_NMECIGEFBKE" => Some(Self::CegdjanghchNmecigefbke), + "CEGDJANGHCH_DEEAGDHIOAD" => Some(Self::CegdjanghchDeeagdhioad), + "CEGDJANGHCH_BIFEAMILLKB" => Some(Self::CegdjanghchBifeamillkb), + "CEGDJANGHCH_MPABBECIFNO" => Some(Self::CegdjanghchMpabbecifno), + "CEGDJANGHCH_BEKNABFKLCP" => Some(Self::CegdjanghchBeknabfklcp), _ => None, } } @@ -61388,33 +62995,29 @@ impl Aokdmakgdgj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Efdedkhgmpi { - FightRoomDestroyReasonNone = 0, - FightRoomDestroyReasonSvrStop = 1, - FightRoomDestroyReasonGameEnd = 2, +pub enum FightRoomDestroyReason { + NhobhilpjgpAmiiickggkj = 0, + NhobhilpjgpGidippjldad = 1, + NhobhilpjgpElnfboolign = 2, } -impl Efdedkhgmpi { +impl FightRoomDestroyReason { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightRoomDestroyReasonNone => "FIGHT_ROOM_DESTROY_REASON_NONE", - Self::FightRoomDestroyReasonSvrStop => "FIGHT_ROOM_DESTROY_REASON_SVR_STOP", - Self::FightRoomDestroyReasonGameEnd => "FIGHT_ROOM_DESTROY_REASON_GAME_END", + Self::NhobhilpjgpAmiiickggkj => "NHOBHILPJGP_AMIIICKGGKJ", + Self::NhobhilpjgpGidippjldad => "NHOBHILPJGP_GIDIPPJLDAD", + Self::NhobhilpjgpElnfboolign => "NHOBHILPJGP_ELNFBOOLIGN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FIGHT_ROOM_DESTROY_REASON_NONE" => Some(Self::FightRoomDestroyReasonNone), - "FIGHT_ROOM_DESTROY_REASON_SVR_STOP" => { - Some(Self::FightRoomDestroyReasonSvrStop) - } - "FIGHT_ROOM_DESTROY_REASON_GAME_END" => { - Some(Self::FightRoomDestroyReasonGameEnd) - } + "NHOBHILPJGP_AMIIICKGGKJ" => Some(Self::NhobhilpjgpAmiiickggkj), + "NHOBHILPJGP_GIDIPPJLDAD" => Some(Self::NhobhilpjgpGidippjldad), + "NHOBHILPJGP_ELNFBOOLIGN" => Some(Self::NhobhilpjgpElnfboolign), _ => None, } } @@ -61422,44 +63025,44 @@ impl Efdedkhgmpi { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Keekddahfoe { - Match3FinishReasonDefault = 0, - Match3FinishReasonLeave = 1, - Match3FinishReasonDie = 2, - Match3FinishReasonGameend = 3, - Match3FinishReasonKickout = 4, - Match3FinishReasonWin = 5, - Match3FinishReasonLose = 6, - Match3FinishReasonTie = 7, +pub enum Match3FinishReason { + MjkgbfianjdAclopoimglj = 0, + MjkgbfianjdMfhhdppleac = 1, + MjkgbfianjdBbmaefehbao = 2, + MjkgbfianjdKpojjndeieo = 3, + MjkgbfianjdCndgeljpkbd = 4, + MjkgbfianjdBbobmpgblao = 5, + MjkgbfianjdFjfeiknmlea = 6, + MjkgbfianjdLggjhonokan = 7, } -impl Keekddahfoe { +impl Match3FinishReason { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3FinishReasonDefault => "MATCH3_FINISH_REASON_DEFAULT", - Self::Match3FinishReasonLeave => "MATCH3_FINISH_REASON_LEAVE", - Self::Match3FinishReasonDie => "MATCH3_FINISH_REASON_DIE", - Self::Match3FinishReasonGameend => "MATCH3_FINISH_REASON_GAMEEND", - Self::Match3FinishReasonKickout => "MATCH3_FINISH_REASON_KICKOUT", - Self::Match3FinishReasonWin => "MATCH3_FINISH_REASON_WIN", - Self::Match3FinishReasonLose => "MATCH3_FINISH_REASON_LOSE", - Self::Match3FinishReasonTie => "MATCH3_FINISH_REASON_TIE", + Self::MjkgbfianjdAclopoimglj => "MJKGBFIANJD_ACLOPOIMGLJ", + Self::MjkgbfianjdMfhhdppleac => "MJKGBFIANJD_MFHHDPPLEAC", + Self::MjkgbfianjdBbmaefehbao => "MJKGBFIANJD_BBMAEFEHBAO", + Self::MjkgbfianjdKpojjndeieo => "MJKGBFIANJD_KPOJJNDEIEO", + Self::MjkgbfianjdCndgeljpkbd => "MJKGBFIANJD_CNDGELJPKBD", + Self::MjkgbfianjdBbobmpgblao => "MJKGBFIANJD_BBOBMPGBLAO", + Self::MjkgbfianjdFjfeiknmlea => "MJKGBFIANJD_FJFEIKNMLEA", + Self::MjkgbfianjdLggjhonokan => "MJKGBFIANJD_LGGJHONOKAN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_FINISH_REASON_DEFAULT" => Some(Self::Match3FinishReasonDefault), - "MATCH3_FINISH_REASON_LEAVE" => Some(Self::Match3FinishReasonLeave), - "MATCH3_FINISH_REASON_DIE" => Some(Self::Match3FinishReasonDie), - "MATCH3_FINISH_REASON_GAMEEND" => Some(Self::Match3FinishReasonGameend), - "MATCH3_FINISH_REASON_KICKOUT" => Some(Self::Match3FinishReasonKickout), - "MATCH3_FINISH_REASON_WIN" => Some(Self::Match3FinishReasonWin), - "MATCH3_FINISH_REASON_LOSE" => Some(Self::Match3FinishReasonLose), - "MATCH3_FINISH_REASON_TIE" => Some(Self::Match3FinishReasonTie), + "MJKGBFIANJD_ACLOPOIMGLJ" => Some(Self::MjkgbfianjdAclopoimglj), + "MJKGBFIANJD_MFHHDPPLEAC" => Some(Self::MjkgbfianjdMfhhdppleac), + "MJKGBFIANJD_BBMAEFEHBAO" => Some(Self::MjkgbfianjdBbmaefehbao), + "MJKGBFIANJD_KPOJJNDEIEO" => Some(Self::MjkgbfianjdKpojjndeieo), + "MJKGBFIANJD_CNDGELJPKBD" => Some(Self::MjkgbfianjdCndgeljpkbd), + "MJKGBFIANJD_BBOBMPGBLAO" => Some(Self::MjkgbfianjdBbobmpgblao), + "MJKGBFIANJD_FJFEIKNMLEA" => Some(Self::MjkgbfianjdFjfeiknmlea), + "MJKGBFIANJD_LGGJHONOKAN" => Some(Self::MjkgbfianjdLggjhonokan), _ => None, } } @@ -61467,32 +63070,32 @@ impl Keekddahfoe { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Khjpjangecp { - MatchUnitTypeNone = 0, - MatchUnitTypeNormal = 1, - MatchUnitTypeRobot = 2, - MatchUnitTypeGm = 3, +pub enum MatchUnitType { + BmkeldlldfkAlocmfakbkp = 0, + BmkeldlldfkGmbghbpibml = 1, + BmkeldlldfkEdfgombefef = 2, + BmkeldlldfkEhaajmbbpde = 3, } -impl Khjpjangecp { +impl MatchUnitType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MatchUnitTypeNone => "MATCH_UNIT_TYPE_NONE", - Self::MatchUnitTypeNormal => "MATCH_UNIT_TYPE_NORMAL", - Self::MatchUnitTypeRobot => "MATCH_UNIT_TYPE_ROBOT", - Self::MatchUnitTypeGm => "MATCH_UNIT_TYPE_GM", + Self::BmkeldlldfkAlocmfakbkp => "BMKELDLLDFK_ALOCMFAKBKP", + Self::BmkeldlldfkGmbghbpibml => "BMKELDLLDFK_GMBGHBPIBML", + Self::BmkeldlldfkEdfgombefef => "BMKELDLLDFK_EDFGOMBEFEF", + Self::BmkeldlldfkEhaajmbbpde => "BMKELDLLDFK_EHAAJMBBPDE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH_UNIT_TYPE_NONE" => Some(Self::MatchUnitTypeNone), - "MATCH_UNIT_TYPE_NORMAL" => Some(Self::MatchUnitTypeNormal), - "MATCH_UNIT_TYPE_ROBOT" => Some(Self::MatchUnitTypeRobot), - "MATCH_UNIT_TYPE_GM" => Some(Self::MatchUnitTypeGm), + "BMKELDLLDFK_ALOCMFAKBKP" => Some(Self::BmkeldlldfkAlocmfakbkp), + "BMKELDLLDFK_GMBGHBPIBML" => Some(Self::BmkeldlldfkGmbghbpibml), + "BMKELDLLDFK_EDFGOMBEFEF" => Some(Self::BmkeldlldfkEdfgombefef), + "BMKELDLLDFK_EHAAJMBBPDE" => Some(Self::BmkeldlldfkEhaajmbbpde), _ => None, } } @@ -61500,31 +63103,29 @@ impl Khjpjangecp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Aebboeppijl { - RobotMatchTypeNone = 0, - RobotMatchTypeTimeout = 1, - RobotMatchTypeLossCompensation = 2, +pub enum Egifkhkekdh { + Alocmfakbkp = 0, + Glmmeifdnjg = 1, + Eljpppnlihc = 2, } -impl Aebboeppijl { +impl Egifkhkekdh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RobotMatchTypeNone => "ROBOT_MATCH_TYPE_NONE", - Self::RobotMatchTypeTimeout => "ROBOT_MATCH_TYPE_TIMEOUT", - Self::RobotMatchTypeLossCompensation => "ROBOT_MATCH_TYPE_LOSS_COMPENSATION", + Self::Alocmfakbkp => "EGIFKHKEKDH_ALOCMFAKBKP", + Self::Glmmeifdnjg => "EGIFKHKEKDH_GLMMEIFDNJG", + Self::Eljpppnlihc => "EGIFKHKEKDH_ELJPPPNLIHC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROBOT_MATCH_TYPE_NONE" => Some(Self::RobotMatchTypeNone), - "ROBOT_MATCH_TYPE_TIMEOUT" => Some(Self::RobotMatchTypeTimeout), - "ROBOT_MATCH_TYPE_LOSS_COMPENSATION" => { - Some(Self::RobotMatchTypeLossCompensation) - } + "EGIFKHKEKDH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "EGIFKHKEKDH_GLMMEIFDNJG" => Some(Self::Glmmeifdnjg), + "EGIFKHKEKDH_ELJPPPNLIHC" => Some(Self::Eljpppnlihc), _ => None, } } @@ -61532,32 +63133,32 @@ impl Aebboeppijl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ffjppngglff { - FightPlayerResultNone = 0, - FightPlayerResultWin = 1, - FightPlayerResultFail = 2, - FightPlayerResultDraw = 3, +pub enum Mbcghhbanfk { + Jckoflgdboi = 0, + Lpgngcfemeh = 1, + Ahhlkljcelp = 2, + Pfbkbpicdic = 3, } -impl Ffjppngglff { +impl Mbcghhbanfk { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightPlayerResultNone => "FIGHT_PLAYER_RESULT_NONE", - Self::FightPlayerResultWin => "FIGHT_PLAYER_RESULT_WIN", - Self::FightPlayerResultFail => "FIGHT_PLAYER_RESULT_FAIL", - Self::FightPlayerResultDraw => "FIGHT_PLAYER_RESULT_DRAW", + Self::Jckoflgdboi => "MBCGHHBANFK_JCKOFLGDBOI", + Self::Lpgngcfemeh => "MBCGHHBANFK_LPGNGCFEMEH", + Self::Ahhlkljcelp => "MBCGHHBANFK_AHHLKLJCELP", + Self::Pfbkbpicdic => "MBCGHHBANFK_PFBKBPICDIC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FIGHT_PLAYER_RESULT_NONE" => Some(Self::FightPlayerResultNone), - "FIGHT_PLAYER_RESULT_WIN" => Some(Self::FightPlayerResultWin), - "FIGHT_PLAYER_RESULT_FAIL" => Some(Self::FightPlayerResultFail), - "FIGHT_PLAYER_RESULT_DRAW" => Some(Self::FightPlayerResultDraw), + "MBCGHHBANFK_JCKOFLGDBOI" => Some(Self::Jckoflgdboi), + "MBCGHHBANFK_LPGNGCFEMEH" => Some(Self::Lpgngcfemeh), + "MBCGHHBANFK_AHHLKLJCELP" => Some(Self::Ahhlkljcelp), + "MBCGHHBANFK_PFBKBPICDIC" => Some(Self::Pfbkbpicdic), _ => None, } } @@ -61565,28 +63166,26 @@ impl Ffjppngglff { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Imaonmhilne { - LobbyInteractTypeNone = 0, - LobbyInteractTypeRemindPrepare = 1, +pub enum Llbdjpdnimo { + Alocmfakbkp = 0, + Aegjmpohaba = 1, } -impl Imaonmhilne { +impl Llbdjpdnimo { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::LobbyInteractTypeNone => "LOBBY_INTERACT_TYPE_NONE", - Self::LobbyInteractTypeRemindPrepare => "LOBBY_INTERACT_TYPE_REMIND_PREPARE", + Self::Alocmfakbkp => "LLBDJPDNIMO_ALOCMFAKBKP", + Self::Aegjmpohaba => "LLBDJPDNIMO_AEGJMPOHABA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "LOBBY_INTERACT_TYPE_NONE" => Some(Self::LobbyInteractTypeNone), - "LOBBY_INTERACT_TYPE_REMIND_PREPARE" => { - Some(Self::LobbyInteractTypeRemindPrepare) - } + "LLBDJPDNIMO_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "LLBDJPDNIMO_AEGJMPOHABA" => Some(Self::Aegjmpohaba), _ => None, } } @@ -61594,29 +63193,29 @@ impl Imaonmhilne { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Eigngigplkl { - Boolean = 0, - Float = 1, - String = 2, +pub enum Mbdnnnbgbmb { + Cpadhbplfan = 0, + Cdidoebhdjp = 1, + Blhipghmbbb = 2, } -impl Eigngigplkl { +impl Mbdnnnbgbmb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Boolean => "Boolean", - Self::Float => "Float", - Self::String => "String", + Self::Cpadhbplfan => "MBDNNNBGBMB_CPADHBPLFAN", + Self::Cdidoebhdjp => "MBDNNNBGBMB_CDIDOEBHDJP", + Self::Blhipghmbbb => "MBDNNNBGBMB_BLHIPGHMBBB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "Boolean" => Some(Self::Boolean), - "Float" => Some(Self::Float), - "String" => Some(Self::String), + "MBDNNNBGBMB_CPADHBPLFAN" => Some(Self::Cpadhbplfan), + "MBDNNNBGBMB_CDIDOEBHDJP" => Some(Self::Cdidoebhdjp), + "MBDNNNBGBMB_BLHIPGHMBBB" => Some(Self::Blhipghmbbb), _ => None, } } @@ -61624,29 +63223,29 @@ impl Eigngigplkl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Goihbgiabge { - Prop = 0, - Npc = 1, - NpcMonster = 2, +pub enum Eckdoloppal { + Obkdmoabjii = 0, + Mlikbljdcdf = 1, + Nocfocbhihj = 2, } -impl Goihbgiabge { +impl Eckdoloppal { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Prop => "Prop", - Self::Npc => "Npc", - Self::NpcMonster => "NpcMonster", + Self::Obkdmoabjii => "ECKDOLOPPAL_OBKDMOABJII", + Self::Mlikbljdcdf => "ECKDOLOPPAL_MLIKBLJDCDF", + Self::Nocfocbhihj => "ECKDOLOPPAL_NOCFOCBHIHJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "Prop" => Some(Self::Prop), - "Npc" => Some(Self::Npc), - "NpcMonster" => Some(Self::NpcMonster), + "ECKDOLOPPAL_OBKDMOABJII" => Some(Self::Obkdmoabjii), + "ECKDOLOPPAL_MLIKBLJDCDF" => Some(Self::Mlikbljdcdf), + "ECKDOLOPPAL_NOCFOCBHIHJ" => Some(Self::Nocfocbhihj), _ => None, } } @@ -61655,1149 +63254,1170 @@ impl Goihbgiabge { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum Retcode { - RetSucc = 0, - RetFail = 1, - RetServerInternalError = 2, - RetTimeout = 3, - RetRepeatedReq = 4, - RetReqParaInvalid = 5, - RetPlayerDataError = 6, - RetPlayerClientPaused = 7, - RetFuncCheckFailed = 8, - RetFeatureSwitchClosed = 9, - RetFreqOverLimit = 10, - RetSystemBusy = 11, - RetPlayerNotOnline = 12, - RetOperationInCd = 13, - RetRepeateLogin = 1000, - RetRetryLogin = 1001, - RetWaitLogin = 1002, - RetNotInWhiteList = 1003, - RetInBlackList = 1004, - RetAccountVerifyError = 1005, - RetAccountParaError = 1006, - RetAntiAddictLogin = 1007, - RetCheckSumError = 1008, - RetReachMaxPlayerNum = 1009, - RetAlreadyRegistered = 1010, - RetGenderError = 1011, - SetNicknameRetCallbackProcessing = 1012, - RetInGmBindAccess = 1013, - RetQuestRewardAlreadyTaken = 1100, - RetQuestNotAccept = 1101, - RetQuestNotFinish = 1102, - RetQuestStatusError = 1103, - RetAchievementLevelNotReach = 1104, - RetAchievementLevelAlreadyTaken = 1105, - RetAvatarNotExist = 1200, - RetAvatarResExpNotEnough = 1201, - RetAvatarExpReachPromotionLimit = 1202, - RetAvatarReachMaxPromotion = 1203, - RetSkilltreeConfigNotExist = 1204, - RetSkilltreeAlreadyUnlock = 1205, - RetSkilltreePreLocked = 1206, - RetSkilltreeLevelNotMeet = 1207, - RetSkilltreeRankNotMeet = 1208, - RetAvatarDressNoEquipment = 1209, - RetAvatarExpItemNotExist = 1210, - RetSkilltreePointLocked = 1211, - RetSkilltreePointLevelUpgradeNotMatch = 1212, - RetSkilltreePointLevelReachMax = 1213, - RetWorldLevelNotMeet = 1214, - RetPlayerLevelNotMeet = 1215, - RetAvatarRankNotMatch = 1216, - RetAvatarRankReachMax = 1217, - RetHeroBasicTypeNotMatch = 1218, - RetAvatarPromotionNotMeet = 1219, - RetPromotionRewardConfigNotExist = 1220, - RetPromotionRewardAlreadyTaken = 1221, - RetAvatarSkinItemNotExist = 1222, - RetAvatarSkinAlreadyDressed = 1223, - RetAvatarNotDressSkin = 1224, - RetAvatarSkinNotMatchAvatar = 1225, - RetAvatarPathNotMatch = 1226, - RetAvatarEnhancedIdNotExist = 1227, - RetAvatarEnhancedIdAlreadySet = 1228, - RetAvatarNotCurEnhancedId = 1229, - RetPlayerOutfitConfigNotExist = 1230, - RetPlayerOutfitSlotConflict = 1231, - RetPlayerOutfitIsDefault = 1232, - RetPlayerOutfitNotOwned = 1233, - RetSkilltreeFastLevelUpClose = 1234, - RetItemNotExist = 1300, - RetItemCostNotEnough = 1301, - RetItemCostTooMuch = 1302, - RetItemNoCost = 1303, - RetItemNotEnough = 1304, - RetItemInvalid = 1305, - RetItemConfigNotExist = 1306, - RetScoinNotEnough = 1307, - RetItemRewardExceedLimit = 1308, - RetItemInvalidUse = 1309, - RetItemUseConfigNotExist = 1310, - RetRewardConfigNotExist = 1311, - RetItemExceedLimit = 1312, - RetItemCountInvalid = 1313, - RetItemUseTargetTypeInvalid = 1314, - RetItemUseSatietyFull = 1315, - RetItemComposeNotExist = 1316, - RetRelicComposeNotExist = 1317, - RetItemCanNotSell = 1318, - RetItemSellExceddLimit = 1319, - RetItemNotInCostList = 1320, - RetItemSpecialCostNotEnough = 1321, - RetItemSpecialCostTooMuch = 1322, - RetItemFormulaNotExist = 1323, - RetItemAutoGiftOptionalNotExist = 1324, - RetRelicComposeRelicInvalid = 1325, - RetRelicComposeMainAffixIdInvalid = 1326, - RetRelicComposeWrongFormulaType = 1327, - RetRelicComposeRelicNotExist = 1328, - RetRelicComposeBlackGoldCountInvalid = 1329, - RetRelicComposeBlackGoldNotNeed = 1330, - RetMonthCardCannotUse = 1331, - RetItemRewardExceedDisappear = 1332, - RetItemNeedRecycle = 1333, - RetItemComposeExceedLimit = 1334, - RetItemCanNotDestroy = 1335, - RetItemAlreadyMark = 1336, - RetItemMarkExceedLimit = 1337, - RetItemNotMark = 1338, - RetItenTurnFoodNotSet = 1339, - RetItemTurnFoodAlreadySet = 1340, - RetItemTurnFoodConsumeTypeError = 1341, - RetItemTurnFoodSwitchAlreadyOpen = 1342, - RetItemTurnFoodSwitchAlreadyClose = 1343, - RetHcoinExchangeTooMuch = 1344, - RetItemTurnFoodSceneTypeError = 1345, - RetEquipmentAlreadyDressed = 1350, - RetEquipmentNotExist = 1351, - RetEquipmentReachLevelLimit = 1352, - RetEquipmentConsumeSelf = 1353, - RetEquipmentAlreadyLocked = 1354, - RetEquipmentAlreadyUnlocked = 1355, - RetEquipmentLocked = 1356, - RetEquipmentSelectNumOverLimit = 1357, - RetEquipmentRankUpMustConsumeSameTid = 1358, - RetEquipmentPromotionReachMax = 1359, - RetEquipmentRankUpReachMax = 1360, - RetEquipmentLevelReachMax = 1361, - RetEquipmentExceedLimit = 1362, - RetRelicNotExist = 1363, - RetRelicReachLevelLimit = 1364, - RetRelicConsumeSelf = 1365, - RetRelicAlreadyDressed = 1366, - RetRelicLocked = 1367, - RetRelicAlreadyLocked = 1368, - RetRelicAlreadyUnlocked = 1369, - RetRelicLevelIsNotZero = 1370, - RetUniqueIdRepeated = 1371, - RetEquipmentLevelNotMeet = 1372, - RetEquipmentItemNotInCostList = 1373, - RetEquipmentLevelGreaterThanOne = 1374, - RetEquipmentAlreadyRanked = 1375, - RetRelicExceedLimit = 1376, - RetRelicAlreadyDiscarded = 1377, - RetRelicAlreadyUndiscarded = 1378, - RetEquipmentBatchLockTooFast = 1379, - RetRelicFilterPlanSlotEmpty = 1380, - RetRelicFilterPlanNumExceedLimit = 1381, - RetRelicFilterPlanNameUtf8Error = 1382, - RetRelicFilterPlanNameFormatError = 1383, - RetRelicFilterPlanNoChange = 1384, - RetRelicReforgeNotConfirmed = 1385, - RetEquipmentAlreadyLevelup = 1386, - RetEquipmentRarityError = 1387, - RetLineupInvalidIndex = 1400, - RetLineupInvalidMemberPos = 1401, - RetLineupSwapNotExist = 1402, - RetLineupAvatarAlreadyIn = 1403, - RetLineupCreateAvatarError = 1404, - RetLineupAvatarInitError = 1405, - RetLineupNotExist = 1406, - RetLineupOnlyOneMember = 1407, - RetLineupSameLeaderSlot = 1408, - RetLineupNoLeaderSelect = 1409, - RetLineupSwapSameSlot = 1410, - RetLineupAvatarNotExist = 1411, - RetLineupTrialAvatarCanNotQuit = 1412, - RetLineupVirtualLineupPlaneNotMatch = 1413, - RetLineupNotValidLeader = 1414, - RetLineupSameIndex = 1415, - RetLineupIsEmpty = 1416, - RetLineupNameFormatError = 1417, - RetLineupTypeNotMatch = 1418, - RetLineupReplaceAllFailed = 1419, - RetLineupNotAllowEdit = 1420, - RetLineupAvatarIsAlive = 1421, - RetLineupAssistHasOnlyMember = 1422, - RetLineupAssistCannotSwitch = 1423, - RetLineupAvatarTypeInvalid = 1424, - RetLineupNameUtf8Error = 1425, - RetLineupLeaderLock = 1426, - RetLineupStoryLineNotMatch = 1427, - RetLineupAvatarLock = 1428, - RetLineupAvatarInvalid = 1429, - RetLineupAvatarAlreadyInit = 1430, - RetLineupLimited = 1431, - RetMailNotExist = 1700, - RetMailRangeInvalid = 1701, - RetMailMailIdInvalid = 1702, - RetMailNoMailTakeAttachment = 1703, - RetMailNoMailToDel = 1704, - RetMailTypeInvalid = 1705, - RetMailParaInvalid = 1706, - RetMailAttachementInvalid = 1707, - RetMailTicketInvalid = 1708, - RetMailTicketRepeated = 1709, - RetStageSettleError = 1800, - RetStageConfigNotExist = 1801, - RetStageNotFound = 1802, - RetStageCocoonPropNotValid = 1804, - RetStageCocoonWaveNotValid = 1805, - RetStagePropIdNotEqual = 1806, - RetStageCocoonWaveOver = 1807, - RetStageWeekCocoonOverCnt = 1808, - RetStageCocoonNotOpen = 1809, - RetStageTrialNotOpen = 1810, - RetStageFarmNotOpen = 1811, - RetStageFarmTypeError = 1812, - RetStageFarmSweepCd = 1813, - RetStageFarmElementChallengeCntInvalid = 1814, - RetChapterLock = 1900, - RetChapterChallengeNumNotEnough = 1901, - RetChapterRewardIdNotExist = 1902, - RetChapterRewardAlreadyTaken = 1903, - RetBattleStageNotMatch = 2000, - RetInBattleNow = 2001, - RetBattleCheat = 2002, - RetBattleFail = 2003, - RetBattleNoLineup = 2004, - RetBattleLineupEmpty = 2005, - RetBattleVersionNotMatch = 2006, - RetBattleQuitByServer = 2007, - RetInBattleCheck = 2008, - RetBattleCheckNeedRetry = 2009, - RetBattleCostTimeCheckFail = 2010, - RetLackExchangeStaminaTimes = 2100, - RetLackStamina = 2101, - RetStaminaFull = 2102, - RetAuthkeySignTypeError = 2103, - RetAuthkeySignVerError = 2104, - RetNicknameFormatError = 2105, - RetSensitiveWords = 2106, - RetLevelRewardHasTaken = 2107, - RetLevelRewardLevelError = 2108, - RetLanguageInvalid = 2109, - RetNicknameInCd = 2110, - RetGameplayBirthdayInvalid = 2111, - RetGameplayBirthdayAlreadySet = 2112, - RetNicknameUtf8Error = 2113, - RetNicknameDigitLimitError = 2114, - RetSensitiveWordsPlatformError = 2115, - RetPlayerSettingTypeInvalid = 2116, - RetMazeLackTicket = 2201, - RetMazeNotUnlock = 2202, - RetMazeNoAbility = 2204, - RetMazeNoPlane = 2205, - RetMazeMapNotExist = 2207, - RetMazeMpNotEnough = 2213, - RetSpringNotEnable = 2214, - RetSpringTooFar = 2216, - RetNotInMaze = 2218, - RetMazeTimeOfDayTypeError = 2223, - RetSceneTransferLockedByTask = 2224, - RetPlotNotUnlock = 2300, - RetMissionNotExist = 2400, - RetMissionAlreadyDone = 2401, - RetDailyTaskNotFinish = 2402, - RetDailyTaskRewardHasTaken = 2403, - RetMissionNotFinish = 2404, - RetMissionNotDoing = 2405, - RetMissionFinishWayNotMatch = 2406, - RetMissionSceneNotMatch = 2407, - RetMissionCustomValueNotValid = 2408, - RetMissionSubMissionNotMatch = 2409, - RetAdventureMapNotExist = 2500, - RetSceneEntityNotExist = 2600, - RetNotInScene = 2601, - RetSceneMonsterNotExist = 2602, - RetInteractConfigNotExist = 2603, - RetUnsupportedPropState = 2604, - RetSceneEntryIdNotMatch = 2605, - RetSceneEntityMoveCheckFailed = 2606, - RetAssistMonsterCountLimit = 2607, - RetSceneUseSkillFail = 2608, - RetPropIsHidden = 2609, - RetLoadingSuccAlready = 2610, - RetSceneEntityTypeInvalid = 2611, - RetInteractTypeInvalid = 2612, - RetInteractNotInRegion = 2613, - RetInteractSubTypeInvalid = 2614, - RetNotLeaderEntity = 2615, - RetMonsterIsNotFarmElement = 2616, - RetMonsterConfigNotExist = 2617, - RetAvatarHpAlreadyFull = 2618, - RetCurInteractEntityNotMatch = 2619, - RetPlaneTypeNotAllow = 2620, - RetGroupNotExist = 2621, - RetGroupSaveDataInCd = 2622, - RetGroupSaveLenghReachMax = 2623, - RetRecentElementNotExist = 2624, - RetRecentElementStageNotMatch = 2625, - RetScenePositionVersionNotMatch = 2626, - RetGameplayCounterNotExist = 2627, - RetGameplayCounterNotEnough = 2628, - RetGroupStateNotMatch = 2629, - RetSceneEntityPosNotMatch = 2630, - RetGroupStateCustomSaveDataOff = 2631, - RetSceneNotMatch = 2632, - RetPropTypeInvalid = 2633, - RetNotInCorrectScene = 2634, - RetNotInCorrectDimension = 2635, - RetNotCorrectGroupPropertyName = 2636, - RetBuyTimesLimit = 2700, - RetBuyLimitType = 2701, - RetShopNotOpen = 2702, - RetGoodsNotOpen = 2703, - RetCityLevelRewardTaken = 2704, - RetCityLevelNotMeet = 2705, - RetSingleBuyLimit = 2706, - RetTutorialNotUnlock = 2751, - RetTutorialUnlockAlready = 2752, - RetTutorialFinishAlready = 2753, - RetTutorialPreNotUnlock = 2754, - RetTutorialPlayerLevelNotMatch = 2755, - RetTutorialTutorialNotFound = 2756, - RetChallengeNotExist = 2801, - RetChallengeNotUnlock = 2802, - RetChallengeAlready = 2803, - RetChallengeLineupEditForbidden = 2804, - RetChallengeLineupEmpty = 2805, - RetChallengeNotDoing = 2806, - RetChallengeNotFinish = 2807, - RetChallengeTargetNotFinish = 2808, - RetChallengeTargetRewardTaken = 2809, - RetChallengeTimeNotValid = 2810, - RetChallengeStarsCountNotMeet = 2811, - RetChallengeStarsRewardTaken = 2812, - RetChallengeStarsNotExist = 2813, - RetChallengeCurSceneNotEntryFloor = 2814, - RetChallengeNoTeamArchive = 2815, - RetChallengeLineupAvatarTypeInvalid = 2816, - RetChallengeLineupRecommendInCd = 2817, - RetBasicTypeAlready = 2850, - RetNoBasicType = 2851, - RetNotChooseBasicType = 2852, - RetNotFuncClose = 2853, - RetNotChooseGender = 2854, - RetNotReqUnlockBasicType = 2855, - RetAvatarPathLocked = 2856, - RetRogueStatusNotMatch = 2901, - RetRogueSelectBuffNotExist = 2902, - RetRogueCoinNotEnough = 2903, - RetRogueStaminaNotEnough = 2904, - RetRogueAppraisalCountNotEnough = 2905, - RetRoguePropAlreadyUsed = 2906, - RetRogueRecordAlreadySaved = 2907, - RetRogueRollBuffMaxCount = 2908, - RetRoguePickAvatarInvalid = 2909, - RetRogueQuestExpire = 2910, - RetRogueQuestRewardAlready = 2911, - RetRogueReviveCountNotEnough = 2912, - RetRogueAreaInvalid = 2913, - RetRogueScoreRewardPoolInvalid = 2914, - RetRogueScoreRewardRowInvalid = 2915, - RetRogueAeonLevelNotMeet = 2916, - RetRogueAeonLevelRewardAlreadyTaken = 2917, - RetRogueAeonConfigNotExist = 2918, - RetRogueTrialAvatarInvalid = 2919, - RetRogueHandbookRewardAlreadyTaken = 2920, - RetRogueRoomTypeNotMatch = 2921, - RetRogueShopGoodNotFound = 2922, - RetRogueShopGoodAlreadyBought = 2923, - RetRogueShopGoodAlreadyOwn = 2924, - RetRogueShopMiracleNotExist = 2925, - RetRogueShopNotExist = 2926, - RetRogueShopCannotRefresh = 2927, - RetRogueSelectBuffCertainMismatch = 2928, - RetRogueActionQueueNotEmptyBattle = 2929, - RetRogueActionQueueNotEmptyOthers = 2930, - RetMissionEventConfigNotExist = 2951, - RetMissionEventNotClient = 2952, - RetMissionEventFinished = 2953, - RetMissionEventDoing = 2954, - RetHasChallengeMissionEvent = 2955, - RetNotChallengeMissionEvent = 2956, - RetGachaIdNotExist = 3001, - RetGachaNumInvalid = 3002, - RetGachaFirstGachaMustOne = 3003, - RetGachaReqDuplicated = 3004, - RetGachaNotInSchedule = 3005, - RetGachaNewbieClose = 3006, - RetGachaTodayLimited = 3007, - RetGachaNotSupport = 3008, - RetGachaCeilingNotEnough = 3009, - RetGachaCeilingClose = 3010, - RetGachaLocked = 3011, - RetGachaDecideItemTypeInvalid = 3012, - RetGachaDecideItemIdInvalid = 3013, - RetNotInRaid = 3101, - RetRaidDoing = 3102, - RetNotProp = 3103, - RetRaidIdNotMatch = 3104, - RetRaidRestartNotMatch = 3105, - RetRaidLimit = 3106, - RetRaidAvatarListEmpty = 3107, - RetRaidAvatarNotExist = 3108, - RetChallengeRaidRewardAlready = 3109, - RetChallengeRaidScoreNotReach = 3110, - RetChallengeRaidNotOpen = 3111, - RetRaidFinished = 3112, - RetRaidWorldLevelNotLock = 3113, - RetRaidCannotUseAssist = 3114, - RetRaidAvatarNotMatch = 3115, - RetRaidCanNotSave = 3116, - RetRaidNoSave = 3117, - RetActivityRaidNotOpen = 3118, - RetRaidAvatarCaptainNotExist = 3119, - RetRaidStoryLineNotMatch = 3120, - RetTalkEventAlreadyTaken = 3151, - RetNpcAlreadyMeet = 3152, - RetNpcNotInConfig = 3153, - RetDialogueGroupDismatch = 3154, - RetDialogueEventInvalid = 3155, - RetTalkEventTakeProtoNotMatch = 3156, - RetTalkEventNotValid = 3157, - RetExpeditionConfigNotExist = 3201, - RetExpeditionRewardConfigNotExist = 3202, - RetExpeditionNotUnlocked = 3203, - RetExpeditionAlreadyAccepted = 3204, - RetExpeditionRepeatedAvatar = 3205, - RetAvatarAlreadyDispatched = 3206, - RetExpeditionNotAccepted = 3207, - RetExpeditionNotFinish = 3208, - RetExpeditionAlreadyFinish = 3209, - RetExpeditionTeamCountLimit = 3210, - RetExpeditionAvatarNumNotMatch = 3211, - RetExpeditionNotOpen = 3212, - RetExpeditionFriendAvatarNotValid = 3213, - RetExpeditionNotPublished = 3214, - RetLoginActivityHasTaken = 3301, - RetLoginActivityDaysLack = 3302, - RetTrialActivityRewardAlreadyTake = 3303, - RetTrialActivityStageNotFinish = 3304, - RetMaterialSubmitActivityHasTaken = 3305, - RetMaterialSubmitActivityMaterialNotSubmitted = 3306, - RetMaterialSubmitActivityMaterialAlreadySubmitted = 3307, - RetFantasticStoryActivityStoryError = 3308, - RetFantasticStoryActivityStoryNotOpen = 3309, - RetFantasticStoryActivityBattleError = 3310, - RetFantasticStoryActivityBattleNotOpen = 3311, - RetFantasticStoryActivityBattleAvatarError = 3312, - RetFantasticStoryActivityBattleBuffError = 3313, - RetFantasticStoryActivityPreBattleScoreNotEnough = 3314, - RetTrialActivityAlreadyInTrialActivity = 3315, - RetCommonActivityNotOpen = 3316, - RetBenefitNotReady = 3317, - RetCommonActivityBusy = 3318, - RetAvatarDeliverRewardPhaseError = 3319, - RetMessageConfigNotExist = 3501, - RetMessageSectionNotTake = 3502, - RetMessageGroupNotTake = 3503, - RetMessageSectionIdNotMatch = 3504, - RetMessageSectionCanNotFinish = 3505, - RetMessageItemCanNotFinish = 3506, - RetMessageItemRaidCanNotFinish = 3507, - RetFriendAlreadyIsFriend = 3601, - RetFriendIsNotFriend = 3602, - RetFriendApplyExpire = 3603, - RetFriendInBlacklist = 3604, - RetFriendNotInBlacklist = 3605, - RetFriendNumberLimit = 3606, - RetFriendBlacklistNumberLimit = 3607, - RetFriendDailyApplyLimit = 3608, - RetFriendInHandleLimit = 3609, - RetFriendApplyInCd = 3610, - RetFriendRemarkNameFormatError = 3611, - RetFriendPlayerNotFound = 3612, - RetFriendInTargetBlacklist = 3613, - RetFriendTargetNumberLimit = 3614, - RetAssistQueryTooFast = 3615, - RetAssistNotExist = 3616, - RetAssistUsedAlready = 3617, - RetFriendReportReasonFormatError = 3618, - RetFriendReportSensitiveWords = 3619, - RetAssistUsedTimesOver = 3620, - RetAssistQuitAlready = 3621, - RetAssistAvatarInLineup = 3622, - RetAssistNoReward = 3623, - RetFriendSearchNumLimit = 3624, - RetFriendSearchInCd = 3625, - RetFriendRemarkNameUtf8Error = 3626, - RetFriendReportReasonUtf8Error = 3627, - RetAssistSetAlready = 3628, - RetFriendTargetForbidOtherApply = 3629, - RetFriendMarkedCntMax = 3630, - RetFriendMarkedAlready = 3631, - RetFriendNotMarked = 3632, - RetFriendChallengeLineupRecommendInCd = 3633, - RetViewPlayerCardInCd = 3634, - RetViewPlayerBattleRecordInCd = 3635, - RetAssistListStrangerConfigError = 3636, - RetPlayerBoardHeadIconNotExist = 3701, - RetPlayerBoardHeadIconLocked = 3702, - RetPlayerBoardHeadIconAlreadyUnlocked = 3703, - RetPlayerBoardDisplayAvatarNotExist = 3704, - RetPlayerBoardDisplayAvatarExceedLimit = 3705, - RetPlayerBoardDisplayRepeatedAvatar = 3706, - RetPlayerBoardDisplayAvatarSamePos = 3707, - RetPlayerBoardDisplayAvatarLocked = 3708, - RetSignatureLengthExceedLimit = 3709, - RetSignatureSensitiveWords = 3710, - RetPlayerBoardAssistAvatarNotExist = 3712, - RetPlayerBoardAssistAvatarLocked = 3713, - RetSignatureUtf8Error = 3714, - RetPlayerBoardAssistAvatarCntError = 3715, - RetPlayerBoardPersonalCardNotExist = 3716, - RetPlayerBoardPersonalCardLocked = 3717, - RetPlayerBoardPersonalNoChange = 3718, - RetBattlePassTierNotValid = 3801, - RetBattlePassLevelNotMeet = 3802, - RetBattlePassRewardTakeAlready = 3803, - RetBattlePassNotPremium = 3804, - RetBattlePassNotDoing = 3805, - RetBattlePassLevelInvalid = 3806, - RetBattlePassNotUnlock = 3807, - RetBattlePassNoReward = 3808, - RetBattlePassQuestNotValid = 3809, - RetBattlePassNotChooseOptional = 3810, - RetBattlePassNotTakeReward = 3811, - RetBattlePassOptionalNotValid = 3812, - RetBattlePassBuyAlready = 3813, - RetBattlePassNearEnd = 3814, - RetMusicLocked = 3901, - RetMusicNotExist = 3902, - RetMusicUnlockFailed = 3903, - RetPunkLordLackSummonTimes = 4001, - RetPunkLordAttackingMonsterLimit = 4002, - RetPunkLordMonsterNotExist = 4003, - RetPunkLordMonsterAlreadyShared = 4004, - RetPunkLordMonsterExpired = 4005, - RetPunkLordSelfMonsterAttackLimit = 4006, - RetPunkLordLackSupportTimes = 4007, - RetPunkLordMonsterAlreadyKilled = 4008, - RetPunkLordMonsterAttackerLimit = 4009, - RetPunkLordWorldLevleNotValid = 4010, - RetPunkLordRewardLevleNotExist = 4011, - RetPunkLordPointNotMeet = 4012, - RetPunkLordInAttacking = 4013, - RetPunkLordOperationInCd = 4014, - RetPunkLordRewardAlreadyTaken = 4015, - RetPunkLordOverBonusRewardLimit = 4016, - RetPunkLordNotInSchedule = 4017, - RetPunkLordMonsterNotAttacked = 4018, - RetPunkLordMonsterNotKilled = 4019, - RetPunkLordMonsterKilledScoreAlreadyTake = 4020, - RetPunkLordRewardLevleAlreadyTake = 4021, - RetDailyActiveLevelInvalid = 4101, - RetDailyActiveLevelRewardAlreadyTaken = 4102, - RetDailyActiveLevelApNotEnough = 4103, - RetDailyMeetPam = 4201, - RetReplayIdNotMatch = 4251, - RetReplayReqNotValid = 4252, - RetFightActivityDifficultyLevelNotPassed = 4301, - RetFightActivityDifficultyLevelRewardAlreadyTake = 4302, - RetFightActivityStageNotOpen = 4303, - RetFightActivityLevelNotUnlock = 4304, - RetTrainVisitorVisitorNotExist = 4351, - RetTrainVisitorBehaviorNotExist = 4352, - RetTrainVisitorBehaviorFinished = 4353, - RetTrainVisitorAllBehaviorRewardTaken = 4354, - RetTrainVisitorGetOnMissionNotFinish = 4355, - RetTrainVisitorNotGetOffOrBeTrainMember = 4356, - RetTextJoinUnknowIsOverride = 4401, - RetTextJoinIdNotExist = 4402, - RetTextJoinCanNotOverride = 4403, - RetTextJoinItemIdError = 4404, - RetTextJoinSensitiveCheckError = 4405, - RetTextJoinMustOverride = 4406, - RetTextJoinTextEmpty = 4407, - RetTextJoinTextFormatError = 4408, - RetTextJoinTextUtf8Error = 4409, - RetTextJoinBatchReqIdRepeat = 4410, - RetTextJoinTypeNotSupportBatchReq = 4411, - RetTextJoinAvatarIdNotExist = 4412, - RetTextJoinUnknowType = 4413, - RetPamMissionMissionIdError = 4451, - RetPamMissionMissionExpire = 4452, - RetChatTypeNotExist = 4501, - RetMsgTypeNotExist = 4502, - RetChatNoTargetUid = 4503, - RetChatMsgEmpty = 4504, - RetChatMsgExceedLimit = 4505, - RetChatMsgSensitiveCheckError = 4506, - RetChatMsgUtf8Error = 4507, - RetChatForbidSwitchOpen = 4508, - RetChatForbid = 4509, - RetChatMsgIncludeSpecialStr = 4510, - RetChatMsgEmojiNotExist = 4511, - RetChatMsgEmojiGenderNotMatch = 4512, - RetChatMsgEmojiNotMarked = 4513, - RetChatMsgEmojiAlreadyMarked = 4514, - RetChatMsgEmojiMarkedMaxLimit = 4515, - RetBoxingClubChallengeNotOpen = 4601, - RetMuseumNotOpen = 4651, - RetMuseumTurnCntNotMatch = 4652, - RetMuseumPhaseNotReach = 4653, - RetMuseumUnknowStuff = 4654, - RetMuseumUnknowArea = 4655, - RetMuseumUnknowPos = 4656, - RetMuseumStuffAlreadyInArea = 4657, - RetMuseumStuffNotInArea = 4658, - RetMuseumGetNpcRepeat = 4659, - RetMuseumGetNpcUnlock = 4660, - RetMuseumGetNpcNotEnough = 4661, - RetMuseumChangeStuffAreaError = 4662, - RetMuseumNotInit = 4663, - RetMuseumEventError = 4664, - RetMuseumUnknowChooseEventId = 4665, - RetMuseumEventOrderNotMatch = 4666, - RetMuseumEventPhaseNotUnlock = 4667, - RetMuseumEventMissionNotFound = 4668, - RetMuseumAreaLevelUpAlready = 4669, - RetMuseumStuffAlreadyUsed = 4670, - RetMuseumEventRoundNotUnlock = 4671, - RetMuseumStuffInArea = 4672, - RetMuseumStuffDispatch = 4673, - RetMuseumIsEnd = 4674, - RetMuseumStuffLeaving = 4675, - RetMuseumEventMissionNotFinish = 4678, - RetMuseumCollectRewardNotExist = 4679, - RetMuseumCollectRewardAlreadyTaken = 4680, - RetMuseumAcceptMissionMaxLimit = 4681, - RetRogueChallengeNotOpen = 4701, - RetRogueChallengeAssisRefreshLimit = 4702, - RetAlleyNotInit = 4721, - RetAlleyNotOpen = 4722, - RetAlleyMapNotExist = 4724, - RetAlleyEmptyPosList = 4725, - RetAlleyLinePosInvalid = 4726, - RetAlleyShopNotUnlock = 4727, - RetAlleyDepotFull = 4728, - RetAlleyShopNotInclude = 4729, - RetAlleyEventNotUnlock = 4730, - RetAlleyEventNotRefresh = 4731, - RetAlleyEventStateDoing = 4732, - RetAlleyEventStateFinish = 4733, - RetAlleyEventError = 4734, - RetAlleyRewardLevelError = 4735, - RetAlleyRewardPrestigeNotEnough = 4736, - RetAlleyShipEmpty = 4737, - RetAlleyShipIdDismatch = 4738, - RetAlleyShipNotExist = 4739, - RetAlleyShipNotUnlock = 4740, - RetAlleyGoodsNotExist = 4741, - RetAlleyGoodsNotUnlock = 4742, - RetAlleyProfitNotPositive = 4743, - RetAlleySpecialOrderDismatch = 4744, - RetAlleyOrderGoodsOverLimit = 4745, - RetAlleySpecialOrderConditionNotMeet = 4746, - RetAlleyDepotSizeOverLimit = 4747, - RetAlleyGoodsNotEnough = 4748, - RetAlleyOrderIndexInvalid = 4749, - RetAlleyRewardAlreadyTake = 4750, - RetAlleyRewardNotExist = 4751, - RetAlleyMainMissionNotDoing = 4752, - RetAlleyCriticalEventNotFinish = 4753, - RetAlleyShopGoodsNotValid = 4754, - RetAlleySlashNotOpen = 4755, - RetAlleyPlacingAnchorInvalid = 4756, - RetAlleyPlacingGoodsIndexInvalid = 4757, - RetAlleySaveMapTooQuick = 4758, - RetAlleyMapNotLink = 4759, - RetAlleyFundsNotLowerBase = 4760, - RetAlleyEventNotFinish = 4761, - RetAlleyNormalOrderNotMeet = 4762, - RetPlayerReturnNotOpen = 4801, - RetPlayerReturnIsSigned = 4802, - RetPlayerReturnPointNotEnough = 4803, - RetPlayerReturnConditionInvalid = 4804, - RetPlayerReturnHasSigned = 4805, - RetPlayerReturnRewardTaken = 4806, - RetPlayerReturnRelicTaken = 4807, - RetPlayerReturnConfigError = 4808, - RetPlayerReturnOptionalGiftInvalid = 4809, - RetPlayerReturnOptionalGiftNotExist = 4810, - RetPlayerReturnSignTypeInvalid = 4811, - RetAetherDivideNoLineup = 4851, - RetAetherDivideLineupInvalid = 4852, - RetChatBubbleIdError = 4901, - RetChatBubbleIdNotUnlock = 4902, - RetPhoneThemeIdError = 4903, - RetPhoneThemeIdNotUnlock = 4904, - RetChatBubbleSelectIsCurrent = 4905, - RetPhoneThemeSelectIsCurrent = 4906, - RetPhoneCaseIdError = 4907, - RetPhoneCaseIdNotUnlock = 4908, - RetPhoneCaseSelectIsCurrent = 4909, - RetChessRogueConfigNotFound = 4951, - RetChessRogueConfigInvalid = 4952, - RetChessRogueNoValidRoom = 4963, - RetChessRogueNoCellInfo = 4964, - RetChessRogueCellNotFinish = 4965, - RetChessRogueCellIsLocked = 4966, - RetChessRogueScheduleNotMatch = 4967, - RetChessRogueStatusFail = 4968, - RetChessRogueAreaNotExist = 4969, - RetChessRogueLineupFail = 4970, - RetChessRogueAeonFail = 4980, - RetChessRogueEnterCellFail = 4981, - RetChessRogueRollDiceFail = 4982, - RetChessRogueDiceStatusFail = 4983, - RetChessRogueDiceCntNotFull = 4984, - RetChessRogueUnlock = 4985, - RetChessRoguePickAvatarFail = 4986, - RetChessRogueAvatarInvalid = 4987, - RetChessRogueCellCanNotSelect = 4988, - RetChessRogueDiceConfirmed = 4989, - RetChessRogueNousDiceNotMatch = 4990, - RetChessRogueNousDiceRarityFail = 4991, - RetChessRogueNousDiceSurfaceDuplicate = 4992, - RetChessRogueNotInRogue = 4993, - RetChessRogueNousDiceBranchLimit = 4994, - RetHeliobusNotOpen = 5101, - RetHeliobusSnsPostNotUnlock = 5102, - RetHeliobusSnsAlreadyRead = 5103, - RetHeliobusSnsAlreadyLiked = 5104, - RetHeliobusSnsAlreadyCommented = 5105, - RetHeliobusSnsInMission = 5106, - RetHeliobusSnsAlreadyPosted = 5107, - RetHeliobusSnsNotDoingMission = 5108, - RetHeliobusRewardLevelMax = 5109, - RetHeliobusIncomeNotEnough = 5110, - RetHeliobusSnsCommentNotUnlock = 5111, - RetHeliobusChallengeNotUnlock = 5112, - RetHeliobusChallengeIdError = 5113, - RetHeliobusSkillNotUnlock = 5114, - RetHeliobusAcceptPostMissionFail = 5115, - RetHeliobusSkillNotSelected = 5116, - RetHeliobusPlaneTypeInvalid = 5117, - RetReddotParamInvalid = 5151, - RetReddotActivityNotOpen = 5152, - RetRogueEndlessActivityConfigError = 5201, - RetRogueEndlessActivityNotOpen = 5202, - RetRogueEndlessActivityOverBonusRewardLimit = 5203, - RetRogueEndlessActivityScoreNotMeet = 5204, - RetRogueEndlessActivityRewardLevleAlreadyTake = 5205, - RetHeartDialScriptNotFound = 5251, - RetHeartDialScriptEmotionTheSame = 5252, - RetHeartDialScriptStepNotNormal = 5253, - RetHeartDialScriptConditionNotMatch = 5254, - RetHeartDialScriptSubmitItemNumNotMatch = 5255, - RetHeartDialScriptSubmitItemIdNotMatch = 5256, - RetHeartDialDialogueNotFound = 5257, - RetHeartDialDialogueAlreadyPerformed = 5258, - RetHeartDialNpcNotFound = 5259, - RetHeartDialTraceConfigNotFound = 5260, - RetHeartDialFloorTraceExist = 5261, - RetHeartDialTraceFloorNotMatch = 5262, - RetTravelBrochureConfigError = 5301, - RetTravelBrochureParamInvalid = 5302, - RetTravelBrochureLocked = 5303, - RetTravelBrochureCannotOperate = 5304, - RetTravelBrochureWorldIdNotMatch = 5305, - RetTravelBrochureHasNoWorldBook = 5306, - RetTravelBrochurePageFull = 5307, - RetMapRotationNotInRegion = 5351, - RetMapRotationRotaterAlreadyDeployed = 5352, - RetMapRotationEnergyNotEnough = 5353, - RetMapRotationEntityNotOnCurPose = 5354, - RetMapRotationRotaterNotDeployed = 5355, - RetMapRotationPoseRotaterMismatch = 5356, - RetMapRotationRotaterNotRemovable = 5357, - RetMapRotationRotaterDisposable = 5358, - RetSpaceZooActivityCatNotFound = 5401, - RetSpaceZooActivityCatParamInvalid = 5402, - RetSpaceZooActivityCatItemNotEnough = 5403, - RetSpaceZooActivityCatBagFull = 5404, - RetSpaceZooActivityCatNotToMutate = 5405, - RetSpaceZooActivityCatStateError = 5406, - RetSpaceZooActivityCatCatteryLocked = 5407, - RetSpaceZooActivityCatOutNow = 5408, - RetSpaceZooActivityCatConfigNotFound = 5409, - RetSpaceZooActivityCatFeatureNotFound = 5410, - RetSpaceZooActivityCatAddCatError = 5411, - RetSpaceZooActivityCatMoneyNotEnough = 5412, - RetSpaceZooActivityCatCondNotMatch = 5413, - RetStrongChallengeActivityStageCfgMiss = 5501, - RetStrongChallengeActivityStageNotOpen = 5502, - RetStrongChallengeActivityBuffError = 5503, - RetRollShopNotFound = 5551, - RetRollShopGroupEmpty = 5552, - RetRollShopEmpty = 5553, - RetRollShopGachaReqDuplicated = 5554, - RetRollShopRandomError = 5555, - RetRollShopGroupTypeNotFound = 5556, - RetRollShopHasStoredRewardAlready = 5557, - RetRollShopNoStoredReward = 5558, - RetRollShopNotInValidScene = 5559, - RetRollShopInvalidRollShopType = 5560, - RetActivityRaidCollectionPrevNotFinish = 5601, - RetActivityRaidCollectionGroupEnterNextUnavailable = 5602, - RetActivityRaidCollectionIsLast = 5603, - RetActivityRaidCollectionIsNotNext = 5604, - RetOfferingNotUnlock = 5651, - RetOfferingLevelNotUnlock = 5652, - RetOfferingReachMaxLevel = 5653, - RetOfferingItemNotEnough = 5654, - RetOfferingLongtailNotOpen = 5655, - RetOfferingRewardCondition = 5656, - RetDrinkMakerChatInvalid = 5701, - RetDrinkMakerParamInvalid = 5702, - RetDrinkMakerParamNotUnlock = 5703, - RetDrinkMakerConfigNotFound = 5704, - RetDrinkMakerNotLastChat = 5705, - RetDrinkMakerDayAndFreePhaseNotOpen = 5706, - RetDrinkMakerCheersNotAbleToNextGroup = 5707, - RetDrinkMakerCheersDrinkAlreadyMade = 5708, - RetDrinkMakerCheersActivityNotOpen = 5709, - RetDrinkMakerCheersMakeDrinkPreMissionNotFinished = 5710, - RetMonopolyNotOpen = 5751, - RetMonopolyConfigError = 5752, - RetMonopolyDiceNotEnough = 5753, - RetMonopolyCurCellNotFinish = 5754, - RetMonopolyCoinNotEnough = 5755, - RetMonopolyCellWaitPending = 5756, - RetMonopolyCellStateError = 5757, - RetMonopolyCellContentError = 5758, - RetMonopolyItemNotEnough = 5759, - RetMonopolyCellContentCannotGiveup = 5760, - RetMonopolyAssetLevelInvalid = 5761, - RetMonopolyTurnNotFinish = 5762, - RetMonopolyGuideNotFinish = 5763, - RetMonopolyRaffleRewardReissued = 5764, - RetMonopolyNoGameActive = 5771, - RetMonopolyGameRatioNotIncreasable = 5772, - RetMonopolyGameRatioMax = 5773, - RetMonopolyGameTargetRatioInvalid = 5774, - RetMonopolyGameBingoFlipPosInvalid = 5775, - RetMonopolyGameGuessAlreadyChoose = 5776, - RetMonopolyGameGuessChooseInvalid = 5777, - RetMonopolyGameGuessInformationAlreadyBought = 5778, - RetMonopolyGameRaiseRatioNotUnlock = 5779, - RetMonopolyFriendNotSynced = 5785, - RetMonopolyGetFriendRankingListInCd = 5786, - RetMonopolyLikeTargetNotFriend = 5787, - RetMonopolyDailyAlreadyLiked = 5788, - RetMonopolySocialEventStatusNotMatch = 5789, - RetMonopolySocialEventServerCacheNotExist = 5790, - RetMonopolyActivityIdNotMatch = 5791, - RetMonopolyRafflePoolNotExist = 5792, - RetMonopolyRafflePoolTimeNotMatch = 5793, - RetMonopolyRafflePoolPhaseNotMeet = 5794, - RetMonopolyRafflePoolShowTimeNotMeet = 5795, - RetMonopolyRaffleTicketNotFound = 5796, - RetMonopolyRaffleTicketTimeNotMeet = 5797, - RetMonopolyRaffleTicketRewardAlreadyTaken = 5798, - RetMonopolyRafflePoolNotInRaffleTime = 5799, - RetMonopolyMbtiReportRewardAlreadyTaken = 5800, - RetEvolveBuildLevelGaming = 5801, - RetEveolveBuildLevelBanRandom = 5802, - RetEvolveBuildFirstRewardAlreadyTaken = 5803, - RetEvolveBuildLevelUnfinish = 5804, - RetEvolveBuildShopAbilityMaxLevel = 5805, - RetEvolveBuildShopAbilityMinLevel = 5806, - RetEvolveBuildShopAbilityNotGet = 5807, - RetEvolveBuildLevelLock = 5808, - RetEvolveBuildExpNotEnough = 5809, - RetEvolveBuildShopAbilityLevelError = 5810, - RetEvolveBuildActivityNotOpen = 5811, - RetEvolveBuildShopAbilityEmpty = 5812, - RetEvolveBuildLevelNotStart = 5813, - RetEvolveBuildShopLock = 5814, - RetEvolveBuildRewardLock = 5815, - RetEvolveBuildRewardLevelMax = 5816, - RetEvolveBuildRewardAlreadyAllTaken = 5717, - RetEvolveBuildSeasonError = 5718, - RetEvolveBuildTeachSkipQuestNotFinish = 5719, - RetClockParkConfigError = 5851, - RetClockParkEffectError = 5852, - RetClockParkScriptAlreadyUnlock = 5853, - RetClockParkScriptUnlockConditionNotMeet = 5854, - RetClockParkTalentAlreadyUnlock = 5855, - RetClockParkScriptLocked = 5856, - RetClockParkHasOngoingScript = 5857, - RetClockParkNoOngoingScript = 5858, - RetClockParkDicePlacementError = 5859, - RetClockParkMismatchStatus = 5860, - RetClockParkNoBuff = 5861, - RetClockParkSlotMachineGachaReqDuplicated = 5862, - RetClockParkSlotMachineCostNotEnough = 5863, - RetClockParkSlotMachineGachaCntExceedLimit = 5864, - RetClockParkNotOpen = 5865, - RetTournRogueStatusMismatch = 5901, - RetMagicRogueStatusMismatch = 5902, - RetAutoMountMagicUnitNoMatchedMagicScepter = 5903, - RetMagicUnitWorkbenchReforgeGenFail = 5904, - RetMatchAlreadyInMatch = 6201, - RetMatchNotInMatch = 6202, - RetMatchPlayNotOpen = 6203, - RetCrossStateError = 6204, - RetMatchVersionNotEqual = 6205, - RetMatchPlayerNotInLobbyRoom = 6206, - RetLobbyStateNotMatch = 6207, - RetLobbyRoomNotExist = 6208, - RetLobbyRoomPalyerFull = 6209, - RetLobbyRoomPalyerNotReady = 6210, - RetLobbyRoomPalyerFighting = 6211, - RetFightRoomNotExist = 6250, - RetFightMatch3PlayerStateErr = 6251, - RetFightMatch3RoomStateErr = 6252, - RetCrossStateTimeOut = 6253, - RetLobbyStartFightDisable = 6254, - RetLobbyStartFightPlayerLack = 6255, - RetMatchClientDataVersionLow = 6256, - RetLobbyStartMatchDisable = 6257, - RetLobbyInteractInCd = 6258, - RetLobbyOwnerStateErr = 6259, - RetLobbyOpTooFast = 6260, - RetFightMatch3SoloPlayerTurnErr = 6261, - RetMatchPlayNotSupported = 6262, - RetMatchPlayDataNotExist = 6263, - RetMatchPlayNotSupportFriendRanking = 6264, - RetMatchPlayGetFriendRankingInfoInCd = 6265, - RetSwordTrainingNoActiveGame = 6301, - RetSwordTrainingNoPendingActionMatch = 6302, - RetSwordTrainingPartnerAbilityInvalid = 6303, - RetSwordTrainingSkillAlreadyLearned = 6304, - RetSwordTrainingConditionNotMeet = 6305, - RetSwordTrainingParentSkillNotLearned = 6306, - RetSwordTrainingSkillTypeNotUnlock = 6307, - RetSwordTrainingGameAlreadyExist = 6308, - RetSwordTrainingEndingHintNotMatch = 6309, - RetSwordTrainingStorylineConfigNotFound = 6310, - RetSwordTrainingStoryConfigNotFound = 6311, - RetSwordTrainingUnlockNotFinish = 6312, - RetSwordTrainingOptionMismatch = 6313, - RetSwordTrainingRestoreWithoutExamFailed = 6314, - RetSwordTrainingNoRestoreGameAvailable = 6315, - RetSwordTrainingEndingStoryNotMatch = 6316, - RetSwordTrainingEndingNotFinish = 6317, - RetSwordTrainingEndingRewardTaken = 6318, - RetSwordTrainingCombatRankNotChange = 6319, - RetSwordTrainingDirectBattleDisable = 6320, - RetFightFestPhaseNotMatch = 6351, - RetFightFestScoreRaceAlreadyFinish = 6352, - RetFightFestChallengeLocked = 6353, - RetFightFestCoachSkillLocked = 6354, - RetFightFestCoachSkillEquipTypeExisted = 6355, - RetFightFestScoreRaceMissionDoind = 6356, - RetFightFestCoachSkillNoEquip = 6357, - RetPetNotExist = 6401, - RetPetAlreadySummoned = 6402, - RetPetNotSummoned = 6403, - RetMusicRhythmLevelTimeTooShort = 6451, - RetMusicRhythmNotInLevel = 6452, - RetMusicRhythmPreDifficultyNotPass = 6453, - RetMusicRhythmSongLimited = 6454, - RetMusicRhythmSongLocked = 6455, - RetMusicRhythmTrackLocked = 6456, - RetMusicRhythmLevelNotUnlock = 6457, - RetMusicRhythmSongSfxLocked = 6458, - RetTrainPartyCoinNotEnough = 6501, - RetTrainPartyDiyTagNotMatch = 6502, - RetTrainPartyUseCardMobilityNotEnough = 6503, - RetTrainPartyAreaUnlockCoinNotEnough = 6504, - RetTarotBookEnergyNotEnough = 6601, - RetTarotBookPackNotAvailable = 6602, - RetTarotBookStoryAlreadyUnlock = 6603, - RetTarotBookCardNotEnough = 6604, - RetTarotBookClueNotEnough = 6605, - RetTarotBookUnlockStoryCardNotSame = 6606, - RetTarotBookStoryNotUnlock = 6607, - RetTarotBookStoryAlreadyFinish = 6608, - RetTarotBookInteractionAlreadyFinish = 6609, - RetChimeraChimeraNotUnlock = 6621, - RetChimeraChimeraDuplicated = 6622, - RetChimeraChimeraTypeError = 6623, - RetChimeraWorkMismatchRound = 6624, - RetChimeraWorkRoundOptionNotMeet = 6625, - RetChimeraEndlessNotUnlock = 6626, - RetChimeraInEndless = 6627, - RetChimeraNotInEndless = 6628, - RetChimeraChimeraFallInEndless = 6629, - RetPlanetFesAvatarNotExist = 6641, - RetPlanetFesLandNotExist = 6642, - RetPlanetFesItemNotEnough = 6643, - RetPlanetFesLandAlreadyUnlock = 6644, - RetPlanetFesWorkAvatarRepeat = 6645, - RetPlanetFesWorkAvatarTypeNotMatch = 6646, - RetPlanetFesActivityNotOpen = 6647, - RetPlanetFesSkilltreePhaseNotUnlock = 6648, - RetPlanetFesSkillNotUnlock = 6649, - RetPlanetFesConfigError = 6650, - RetPlanetFesNotInBusinessDay = 6651, - RetPlanetFesEventLocked = 6652, - RetPlanetFesEventFinished = 6653, - RetPlanetFesEventInCd = 6654, - RetPlanetFesEventAlreadyInState = 6655, - RetPlanetFesEventNoWorkAvatar = 6656, - RetPlanetFesEventProcessingCannotDisappear = 6657, - RetPlanetFesEventOptionPhaseWrong = 6658, - RetPlanetFesFunctionNotUnlock = 6659, - RetPlanetFesRewardAlreadyTaken = 6660, - RetPlanetFesEventGameNotActive = 6661, - RetPlanetFesRegionProgressNotEnough = 6662, - RetPlanetFesFriendItemNotEnough = 6663, - RetPlanetFesPiecePermissionBan = 6664, - RetPlanetFesPieceOfferNotExist = 6665, - RetPlanetFesPieceApplyInStackTooMuch = 6666, - RetPlanetFesPieceApplyNotExist = 6667, - RetPlanetFesGetFriendRankingListInCd = 6668, - RetPlanetFesGivePieceOwnedByTarget = 6669, - RetPlanetFesLevelMax = 6670, - RetPlanetFesExclusiveEvent = 6671, - RetMarbleSealAlreadyUnlocked = 6701, - RetMarbleSealShopItemNotEnough = 6702, - RetMarbleSealLocked = 6703, - RetCakeRaceFieldLocked = 6751, - RetCakeRaceFieldCostNotEnough = 6752, - RetCakeRaceFieldPvpOnly = 6753, - RetCakeRaceAlreadyInGame = 6754, - RetCakeRaceGetFriendRankingListInCd = 6755, - RetCakeRaceLikeFriendTargetNotFriend = 6756, - RetCakeRaceLikeFriendDailyAlreadyLiked = 6757, - RetCakeRaceLikeFriendInCd = 6758, - RetFateStatusNotMatch = 6771, - RetFateBuffSlotNotEnough = 6772, - RetFateCoinNotEnough = 6773, - RetFateReijuRerollCountNotEnough = 6774, - RetFateBuffLevelMax = 6775, - RetFateActionQueueNotEmpty = 6776, - RetParkourActivityNotOpen = 6801, - RetParkourLevelNotUnlock = 6802, - RetParkourRailBallNotAllowed = 6803, - RetParkourNotInLevel = 6804, - RetParkourLevelNotMatch = 6805, - RetParkourNotPlayedAllNonStoryLevel = 6806, - RetFtcLimitNameChange = 6830, - RetElfRestaurantConfigError = 6841, - RetElfRestaurantFieldAlreadyBought = 6842, - RetElfRestaurantFieldNotBought = 6843, - RetElfRestaurantFieldCellInvalid = 6844, - RetElfRestaurantFarmTypeInvalid = 6845, - RetElfRestaurantShopItemNotExist = 6846, - RetElfRestaurantShopItemCountLimit = 6847, - RetElfRestaurantTradeOrderNotExist = 6848, - RetElfRestaurantNoReward = 6849, - RetElfRestaurantNotInit = 6850, - RetGridFightConfMiss = 6900, - RetGridFightRoleNotExist = 6901, - RetGridFightRoleAlreadyExist = 6902, - RetGridFightPosExistRole = 6903, - RetGridFightPosNotValid = 6904, - RetGridFightCoinNotEnough = 6905, - RetGridFightEquipNotExist = 6906, - RetGridFightEquipCannotDress = 6907, - RetGridFightParamNotMatch = 6908, - RetGridFightEquipDressSame = 6909, - RetGridFightEquipDressed = 6910, - RetGridFightRandomErr = 6911, - RetGridFightGoodsSold = 6912, - RetGridFightItemNotEnough = 6913, - RetGridFightGameplayLevelMax = 6914, - RetGridFightAlreadyInGameplay = 6915, - RetGridFightEquipTraitLimit = 6916, - RetGridFightRegionFull = 6917, - RetGridFightTemporaryEquip = 6918, - RetGridFightNotInGameplay = 6919, - RetGridFightAddEquipFail = 6920, - RetGridFightAddConsumableFail = 6921, - RetGridFightCreateRoleFail = 6922, - RetGridFightCannotUpgrade = 6923, - RetGridFightNoEmptyPos = 6924, - RetGridFightForgeNotExist = 6925, - RetGridFightAddForgeFail = 6926, - RetGridFightOrbNotEnough = 6927, - RetGridFightOrbNotExist = 6928, - RetGridFightSupplyNoReroll = 6929, - RetGridFightHighRariyForCopy = 6930, - RetGridFightRoleFullForCopy = 6931, - RetGridFightUndressEquipFail = 6932, - RetGridFightDataLocked = 6933, - RetGridFightSameRoleInBattle = 6934, - RetGridFightSupplyAllSelected = 6935, - RetGridFightTraitTrackMax = 6936, - RetGridFightPosBan = 6937, - RetGridFightPosExistItem = 6938, - RetGridFightTalentEnabled = 6939, - RetGridFightTalentCostNotEnough = 6940, - RetGridFightTalentPreNotEnabled = 6941, - RetGridFightDivisionInvalid = 6942, - RetGridFightTalentPermanentLimit = 6943, - RetGridFightWeeklyRewardTaken = 6944, - RetGridFightWeeklyScoreNotEnough = 6945, - RetGridFightCraftCostEquipDressed = 6946, - RetGridFightCreateNpcFail = 6947, - RetGridFightNoPosCanPlace = 6948, - RetGridFightNpcPosLimit = 6949, - RetGridFightCraftEquipOnDiffRole = 6950, - RetGridFightGlobalHpNotEnough = 6951, - RetGridFightEquipTrackMax = 6952, - RetGridFightNpcNotExist = 6953, - RetGridFightRecycleRoleInTutorial = 6954, - RetGridFightTutorialTaskNotFinished = 6955, - RetGridFightTutorialUpdatePosIninvalid = 6956, - RetGridFightNoRerollCnt = 6957, - RetGridFightTutorialRefreshShopLimited = 6958, - RetGridFightTutorialBuyShopLimited = 6959, - RetGridFightOcUnlockQuestNotFinished = 6960, - RetGridFightForgeLimitSelectIdxInTutorial = 6961, - RetGridFightGameRefIdTooLong = 6962, - RetGridFightFeatureSwitchClosed = 6963, - RetGridFightEquipTraitExclusive = 6964, - RetGridFightShopLocked = 6965, - RetGridFightBuyExpLocked = 6966, - RetHipplenAgendaWorkUnavaible = 7001, - RetHipplenAgendaWorkConflict = 7002, - RetHipplenAgendaActionLack = 7003, - RetHipplenAgendaEnergyLack = 7004, - RetHipplenAgendaNoWorkForSettle = 7005, - RetHipplenAgendaSettleWorkMismatch = 7006, - RetHipplenPhaseConfigNoFound = 7007, - RetHipplenTrialMissionNotFinished = 7008, - RetHipplenAgendaSetWhenTrial = 7009, - RetHipplenAgendaOpenCycleFail = 7010, - RetHipplenAgendaSettleParaInvalid = 7011, - RetHipplenAgendaWorkSetTwice = 7012, - RetHipplenAgendaWorkSettleTwice = 7013, - RetHipplenOutfitNotWeared = 7014, - RetHipplenOutfitNotOwn = 7015, - RetHipplenOutfitInvalid = 7016, - RetHipplenOutfitTypeWeared = 7017, - RetHipplenAgendaWorkEmpty = 7018, - RetHipplenEndingLock = 7019, - RetHipplenEndingRewardAlreadyTaken = 7020, - RetHipplenTraitLock = 7021, - RetHipplenAgendaActionLeft = 7022, - RetHipplenBackwardTrialMissionNotFinished = 7023, - RetRelicboxHasPendingRelic = 7051, - RetRelicboxNoPendingRelic = 7052, - RetRelicboxTargetAvatarInvalid = 7053, - RetRelicboxTargetRelicSetInvalid = 7054, - RetRelicboxAllowPositionEmpty = 7055, - RetRelicboxRelicConfigNotFound = 7056, - RetRelicboxMainAffixIdInvalid = 7057, - RetRelicboxSubAffixInvalid = 7058, - RetRelicboxRelicCreateFail = 7059, - RetRelicboxLibConfigNotFound = 7060, - RetRelicboxShieldLock = 7061, - RetRelicboxCustomAvatarInvalid = 7062, - RetRelicboxCustomRelicSetInvalid = 7063, - RetRelicboxRelicInBox = 7064, - RetRelicboxOpenTargetConflict = 7065, - RetRelicboxRelicTypeInvalid = 7066, + IcdigiekflaMpfjlfaoceb = 0, + IcdigiekflaGjhiebgnoce = 1, + IcdigiekflaJbgmnipdanj = 2, + IcdigiekflaKgnbgobmoad = 3, + IcdigiekflaEbpngcilpoa = 4, + IcdigiekflaBngdnhiiael = 5, + IcdigiekflaOchfemhghin = 6, + IcdigiekflaKknbmefdbka = 7, + IcdigiekflaHhngmdggldo = 8, + IcdigiekflaFgoneibcfjb = 9, + IcdigiekflaPbagabikdho = 10, + IcdigiekflaFpfcfaaohmi = 11, + IcdigiekflaPjhcmaipgjm = 12, + IcdigiekflaDfmdojhdiji = 13, + IcdigiekflaHfalkhnlman = 1000, + IcdigiekflaKfookfohicb = 1001, + IcdigiekflaMoegakbeadk = 1002, + IcdigiekflaMpnoilaneic = 1003, + IcdigiekflaNpocnbkiihm = 1004, + IcdigiekflaHpbkfkkbcap = 1005, + IcdigiekflaJompkcmbgeg = 1006, + IcdigiekflaPddikblfojd = 1007, + IcdigiekflaOhaelpejajp = 1008, + IcdigiekflaKnlpkdkpgog = 1009, + IcdigiekflaPlodakciopp = 1010, + IcdigiekflaLmmnfkogffb = 1011, + IcdigiekflaLnmgcpdhfbp = 1012, + IcdigiekflaHmifeaaacfn = 1013, + IcdigiekflaLeliogddelb = 1100, + IcdigiekflaCnpnmhffhkb = 1101, + IcdigiekflaGgphmjpfmkk = 1102, + IcdigiekflaBpbahmeninm = 1103, + IcdigiekflaEjfkpncoleg = 1104, + IcdigiekflaLaebhnebdog = 1105, + IcdigiekflaJnakglnljom = 1200, + IcdigiekflaHkeipkiniaf = 1201, + IcdigiekflaEmlliicleng = 1202, + IcdigiekflaLealkhaejag = 1203, + IcdigiekflaJeeoomablpa = 1204, + IcdigiekflaCdacjcimnaj = 1205, + IcdigiekflaFopniajdfgj = 1206, + IcdigiekflaNfbmhenbnel = 1207, + IcdigiekflaPlladhkmghj = 1208, + IcdigiekflaAdbikendfof = 1209, + IcdigiekflaMclnlaljcob = 1210, + IcdigiekflaDckgjmkbkaj = 1211, + IcdigiekflaMihhcmphcnm = 1212, + IcdigiekflaIbglkmghiaf = 1213, + IcdigiekflaPldfjgklchi = 1214, + IcdigiekflaDhldaoicfhm = 1215, + IcdigiekflaEbdkmkonaog = 1216, + IcdigiekflaNbkndkiepkn = 1217, + IcdigiekflaEedbdnmcpeo = 1218, + IcdigiekflaLmeklnelojc = 1219, + IcdigiekflaKpmgbkigocn = 1220, + IcdigiekflaNfahiijjehk = 1221, + IcdigiekflaGcabfgajggb = 1222, + IcdigiekflaMbeobdaemad = 1223, + IcdigiekflaGeikghjcbml = 1224, + IcdigiekflaNdapdbjejll = 1225, + IcdigiekflaBhkaaafiaan = 1226, + IcdigiekflaMdfhlcejced = 1227, + IcdigiekflaEgdpbgffahh = 1228, + IcdigiekflaGbchonokdmi = 1229, + IcdigiekflaPbllhimlpio = 1230, + IcdigiekflaMnjjibgfefp = 1231, + IcdigiekflaPdpaappmahm = 1232, + IcdigiekflaOdjoljgmhfo = 1233, + IcdigiekflaEopnbhflodg = 1234, + IcdigiekflaJphocnlclne = 1300, + IcdigiekflaBnmdekclool = 1301, + IcdigiekflaEhdohcaedhf = 1302, + IcdigiekflaDoimljfaech = 1303, + IcdigiekflaCnkegnpiaeh = 1304, + IcdigiekflaPbkcoepjbhb = 1305, + IcdigiekflaLhljnejpfld = 1306, + IcdigiekflaBahenaanlmi = 1307, + IcdigiekflaAkddebeemee = 1308, + IcdigiekflaFnpcbjogjce = 1309, + IcdigiekflaBejdimnlfjn = 1310, + IcdigiekflaPemhnkpfign = 1311, + IcdigiekflaImiemamolfo = 1312, + IcdigiekflaDonaaolpjij = 1313, + IcdigiekflaDeplcgfjcee = 1314, + IcdigiekflaMgimiaaafnf = 1315, + IcdigiekflaBgkpkmneace = 1316, + IcdigiekflaLdbjebgbloc = 1317, + IcdigiekflaKiachamcpbn = 1318, + IcdigiekflaAgbbpgchnem = 1319, + IcdigiekflaIeljdegjepc = 1320, + IcdigiekflaLjjljjndlkp = 1321, + IcdigiekflaMeoaffiffac = 1322, + IcdigiekflaOnfabohiede = 1323, + IcdigiekflaHpjnbdpgfin = 1324, + IcdigiekflaBcjcgompome = 1325, + IcdigiekflaEmmeogkdbje = 1326, + IcdigiekflaGoidecpdlja = 1327, + IcdigiekflaJkbmmhdmich = 1328, + IcdigiekflaEaokpafjafh = 1329, + IcdigiekflaIbmbenikcka = 1330, + IcdigiekflaEkbigjdmjej = 1331, + IcdigiekflaIcmhgjkfpio = 1332, + IcdigiekflaCldpgcoinnf = 1333, + IcdigiekflaFpknaiolfie = 1334, + IcdigiekflaGjbbnjoljaj = 1335, + IcdigiekflaOjhgaipgfli = 1336, + IcdigiekflaOfnmocgbckj = 1337, + IcdigiekflaGkcjbkenelc = 1338, + IcdigiekflaCbnlilepgcp = 1339, + IcdigiekflaDohahancicp = 1340, + IcdigiekflaAfhaeblgcnm = 1341, + IcdigiekflaOkfdoeehllo = 1342, + IcdigiekflaHfdidnnlbla = 1343, + IcdigiekflaKlionningka = 1344, + IcdigiekflaDkmkpbioonj = 1345, + IcdigiekflaHpggcmnpmba = 1350, + IcdigiekflaCekbaeaidjh = 1351, + IcdigiekflaBkmilkafkkp = 1352, + IcdigiekflaPikpaklkbhg = 1353, + IcdigiekflaLojkjniaplb = 1354, + IcdigiekflaPbhlcjhplph = 1355, + IcdigiekflaIblfiblcppo = 1356, + IcdigiekflaAlkaddeeojh = 1357, + IcdigiekflaNidnpgonfbj = 1358, + IcdigiekflaKobgjbagfnp = 1359, + IcdigiekflaPohbbnnpede = 1360, + IcdigiekflaFocniheiaao = 1361, + IcdigiekflaBjjplanhpag = 1362, + IcdigiekflaAanidhckfml = 1363, + IcdigiekflaFiklgifcilk = 1364, + IcdigiekflaLjndcneomba = 1365, + IcdigiekflaMjahdofalnb = 1366, + IcdigiekflaGfglminkngj = 1367, + IcdigiekflaDemncpaimgh = 1368, + IcdigiekflaBbbfdgfjhij = 1369, + IcdigiekflaChmfdccmgpf = 1370, + IcdigiekflaFmooemdjbij = 1371, + IcdigiekflaFfkmncfmdfk = 1372, + IcdigiekflaMaonceanfnd = 1373, + IcdigiekflaGpjnifokobc = 1374, + IcdigiekflaFafnbnnpdli = 1375, + IcdigiekflaLibjiokmmfj = 1376, + IcdigiekflaDieoiihjenl = 1377, + IcdigiekflaGfhkeoajhpo = 1378, + IcdigiekflaFlmejkjcfhm = 1379, + IcdigiekflaDdccifccdhk = 1380, + IcdigiekflaKmaiekblpbk = 1381, + IcdigiekflaDnoeolhnkii = 1382, + IcdigiekflaAefinjkjahp = 1383, + IcdigiekflaIoldkflkbmc = 1384, + IcdigiekflaCioffjfencl = 1385, + IcdigiekflaPjjjllodobc = 1386, + IcdigiekflaHbmppcckgbb = 1387, + IcdigiekflaHoonoppmacl = 1400, + IcdigiekflaIegocccnhca = 1401, + IcdigiekflaBealmhfaenc = 1402, + IcdigiekflaCcngnfgehgp = 1403, + IcdigiekflaLkjegbgenia = 1404, + IcdigiekflaOcingdddebd = 1405, + IcdigiekflaIghmmcahmah = 1406, + IcdigiekflaCoojpjlmlbm = 1407, + IcdigiekflaHjimdjhmfhi = 1408, + IcdigiekflaMjacnfooeih = 1409, + IcdigiekflaMakbijclmdo = 1410, + IcdigiekflaOejpjmfbeff = 1411, + IcdigiekflaFneaodilhjc = 1412, + IcdigiekflaAeajcikhmhp = 1413, + IcdigiekflaHaicmifhakg = 1414, + IcdigiekflaDgiabglnccl = 1415, + IcdigiekflaLkcbojomede = 1416, + IcdigiekflaKnijmpaphnd = 1417, + IcdigiekflaBjfmfommblg = 1418, + IcdigiekflaMkhhijamdlc = 1419, + IcdigiekflaFkcgclmgnam = 1420, + IcdigiekflaEocjfhagmin = 1421, + IcdigiekflaIbfjalkcdkc = 1422, + IcdigiekflaBfgdfcaaopg = 1423, + IcdigiekflaJfemeafjmml = 1424, + IcdigiekflaOdlocojmnjo = 1425, + IcdigiekflaOocpgpleiik = 1426, + IcdigiekflaKolgnebkllk = 1427, + IcdigiekflaHllondgidao = 1428, + IcdigiekflaLnbgkohdmln = 1429, + IcdigiekflaDfkcfhcmdho = 1430, + IcdigiekflaCnlhnkkmmhk = 1431, + IcdigiekflaAamfmdjkbai = 1700, + IcdigiekflaElgejcgiohh = 1701, + IcdigiekflaPgmjppipalc = 1702, + IcdigiekflaPnmpiciepgm = 1703, + IcdigiekflaMimdgbfoidd = 1704, + IcdigiekflaPgcoeimdggg = 1705, + IcdigiekflaOmholfopafc = 1706, + IcdigiekflaFaiakhakagk = 1707, + IcdigiekflaCgpihiejdpa = 1708, + IcdigiekflaIhggdoofdmf = 1709, + IcdigiekflaCdpbmgdooma = 1800, + IcdigiekflaNjeffbgfmok = 1801, + IcdigiekflaEfmpifgimkf = 1802, + IcdigiekflaPiigkdaecbg = 1804, + IcdigiekflaBmnolkgmhib = 1805, + IcdigiekflaLfbnhenjlpj = 1806, + IcdigiekflaAjnknnojlhm = 1807, + IcdigiekflaOplgojlocch = 1808, + IcdigiekflaDopajcpibaj = 1809, + IcdigiekflaLnjdaaoehep = 1810, + IcdigiekflaKkfbccglnka = 1811, + IcdigiekflaNjppjdldhjk = 1812, + IcdigiekflaMhldhjaeend = 1813, + IcdigiekflaIckojphkpoh = 1814, + IcdigiekflaFmchjbcjikl = 1900, + IcdigiekflaIabgjcjmamh = 1901, + IcdigiekflaCijdliognpm = 1902, + IcdigiekflaJmknnogoooj = 1903, + IcdigiekflaBkgcpdfmelm = 2000, + IcdigiekflaHjcfikhkdlm = 2001, + IcdigiekflaEmdaealhjcd = 2002, + IcdigiekflaFbdadkmfdia = 2003, + IcdigiekflaMkjhlomjfpm = 2004, + IcdigiekflaAhlokjiekpp = 2005, + IcdigiekflaKabkgjkkejl = 2006, + IcdigiekflaLpjmnclfeee = 2007, + IcdigiekflaFjcnmjogiec = 2008, + IcdigiekflaPbenpemkcih = 2009, + IcdigiekflaHbkhkflhjao = 2010, + IcdigiekflaDinindodaik = 2100, + IcdigiekflaLfbdgcnjlhn = 2101, + IcdigiekflaMcmcaikpeal = 2102, + IcdigiekflaMnodheenjol = 2103, + IcdigiekflaPfgkhpdemin = 2104, + IcdigiekflaFcggenckacc = 2105, + IcdigiekflaGghkbljmjng = 2106, + IcdigiekflaCjlfhnlghel = 2107, + IcdigiekflaKjpofapimkm = 2108, + IcdigiekflaOjmdioageab = 2109, + IcdigiekflaDigaefojcia = 2110, + IcdigiekflaPghpofoglek = 2111, + IcdigiekflaAcechgnenaj = 2112, + IcdigiekflaMlafikdjoen = 2113, + IcdigiekflaJdnkpphbimm = 2114, + IcdigiekflaGlpmffpciel = 2115, + IcdigiekflaMghieiabkgi = 2116, + IcdigiekflaJndngehadfn = 2201, + IcdigiekflaKmcakkfdpon = 2202, + IcdigiekflaHbblgblollo = 2204, + IcdigiekflaBnaebgedaac = 2205, + IcdigiekflaNhhfacnagak = 2207, + IcdigiekflaMlolneecibl = 2213, + IcdigiekflaJmmhkibndjb = 2214, + IcdigiekflaGbnjkbdpckl = 2216, + IcdigiekflaKkpckgnkegb = 2218, + IcdigiekflaHnjecdnobgo = 2223, + IcdigiekflaOegoafhmedh = 2224, + IcdigiekflaLgllkilhmkc = 2300, + IcdigiekflaNbifbampfme = 2400, + IcdigiekflaNbiackcchif = 2401, + IcdigiekflaHophhgcfoie = 2402, + IcdigiekflaPnbgjbagahm = 2403, + IcdigiekflaEdicidoebko = 2404, + IcdigiekflaDjjlinbfdcj = 2405, + IcdigiekflaHamcjhibhka = 2406, + IcdigiekflaCeeafglhmmf = 2407, + IcdigiekflaInjaiamlnko = 2408, + IcdigiekflaMkfigkejppe = 2409, + IcdigiekflaPlcnleegcfe = 2500, + IcdigiekflaNhmgibkifnf = 2600, + IcdigiekflaEcnalogeklg = 2601, + IcdigiekflaCaokmhcmjab = 2602, + IcdigiekflaCnniddhlgcj = 2603, + IcdigiekflaJkmgbdajcbd = 2604, + IcdigiekflaDnocemhjbii = 2605, + IcdigiekflaPkiojbancni = 2606, + IcdigiekflaOdcbhggfnpn = 2607, + IcdigiekflaJaacgbngool = 2608, + IcdigiekflaJgianmpdddd = 2609, + IcdigiekflaMpbbkhhdoce = 2610, + IcdigiekflaApejhacmemn = 2611, + IcdigiekflaHmifnjjbhmg = 2612, + IcdigiekflaEldkalklpmh = 2613, + IcdigiekflaOlcfpbegplm = 2614, + IcdigiekflaOofdccebcfi = 2615, + IcdigiekflaNflddjmngpa = 2616, + IcdigiekflaDcoekgegmce = 2617, + IcdigiekflaBjiciniaolg = 2618, + IcdigiekflaLhpnppneolo = 2619, + IcdigiekflaHeolojfblfo = 2620, + IcdigiekflaPolaaciekhh = 2621, + IcdigiekflaPpomahpkbda = 2622, + IcdigiekflaEaidpohgfde = 2623, + IcdigiekflaDmpdnhgclff = 2624, + IcdigiekflaKnhbiodhbjc = 2625, + IcdigiekflaJafbckaiifp = 2626, + IcdigiekflaLlbbhjcilok = 2627, + IcdigiekflaMpkdggnfpjj = 2628, + IcdigiekflaHfohledebdg = 2629, + IcdigiekflaJlbbkdinpfe = 2630, + IcdigiekflaMkiokfbcaic = 2631, + IcdigiekflaFhmcdpphbnf = 2632, + IcdigiekflaLgckcobflob = 2633, + IcdigiekflaLljhjocnice = 2634, + IcdigiekflaPpmbkeobohb = 2635, + IcdigiekflaKhphhfkekck = 2636, + IcdigiekflaDbkddnodhoc = 2700, + IcdigiekflaGoomonmphfb = 2701, + IcdigiekflaAhlpokdaebl = 2702, + IcdigiekflaNakbkpiilbm = 2703, + IcdigiekflaEnecdiobemg = 2704, + IcdigiekflaJomancaoefi = 2705, + IcdigiekflaLlaloekbbic = 2706, + IcdigiekflaLbhddaknbcn = 2751, + IcdigiekflaEdghimaikem = 2752, + IcdigiekflaKibldhoiefl = 2753, + IcdigiekflaIelkfibddoa = 2754, + IcdigiekflaEffkmjnpbbf = 2755, + IcdigiekflaKhjmcheenae = 2756, + IcdigiekflaFiglpiegeia = 2801, + IcdigiekflaMcjngmaooje = 2802, + IcdigiekflaBamagoinnoo = 2803, + IcdigiekflaEdjihmbeelh = 2804, + IcdigiekflaAjdadnebipj = 2805, + IcdigiekflaHjooidfnhlb = 2806, + IcdigiekflaOafhckgimce = 2807, + IcdigiekflaEbgceaomona = 2808, + IcdigiekflaHlneofgoblf = 2809, + IcdigiekflaKchbelhgenp = 2810, + IcdigiekflaBamfnjnabdo = 2811, + IcdigiekflaPchdgpjhbag = 2812, + IcdigiekflaPdaiedmhfkd = 2813, + IcdigiekflaEkgopiidbdb = 2814, + IcdigiekflaMegbhanbeig = 2815, + IcdigiekflaNjbdjhcemlb = 2816, + IcdigiekflaCoclicjjahk = 2817, + IcdigiekflaKidblkbdhba = 2850, + IcdigiekflaEajfkpohplp = 2851, + IcdigiekflaBkpjhnbgabd = 2852, + IcdigiekflaOifccjlohnh = 2853, + IcdigiekflaBabghifcaka = 2854, + IcdigiekflaBnkibklmcjh = 2855, + IcdigiekflaLimonlalgci = 2856, + IcdigiekflaBjaicnilmhj = 2901, + IcdigiekflaJabmcliokcg = 2902, + IcdigiekflaPkpnefkcfab = 2903, + IcdigiekflaEbpeopabkjg = 2904, + IcdigiekflaKlfhlcejlgh = 2905, + IcdigiekflaCljpnfpccgc = 2906, + IcdigiekflaDcmenficjin = 2907, + IcdigiekflaDbcalkcembp = 2908, + IcdigiekflaNomcfancjdj = 2909, + IcdigiekflaIllafmmhcgk = 2910, + IcdigiekflaLamidgaeajh = 2911, + IcdigiekflaJhgphaflngc = 2912, + IcdigiekflaGbgeegajgcp = 2913, + IcdigiekflaHoljipnkige = 2914, + IcdigiekflaGmlplpplcof = 2915, + IcdigiekflaDimknkaflgd = 2916, + IcdigiekflaBnkmddflmnj = 2917, + IcdigiekflaLiildenlkcf = 2918, + IcdigiekflaElanilfddfh = 2919, + IcdigiekflaOlfeefcpknb = 2920, + IcdigiekflaFpdmmphlepg = 2921, + IcdigiekflaPhdnfbppkjp = 2922, + IcdigiekflaJbngeapfmpd = 2923, + IcdigiekflaLmglminmbia = 2924, + IcdigiekflaLfnjfjfoanj = 2925, + IcdigiekflaGjhkmclodfh = 2926, + IcdigiekflaBilimckogdc = 2927, + IcdigiekflaFgnbbocpcnb = 2928, + IcdigiekflaJblmdnaaknp = 2929, + IcdigiekflaHpadcimchgd = 2930, + IcdigiekflaKnojmpfcnoj = 2951, + IcdigiekflaOjnfdcgoeii = 2952, + IcdigiekflaPjnijbjhmlg = 2953, + IcdigiekflaGlnepmffebd = 2954, + IcdigiekflaMabhpkgooni = 2955, + IcdigiekflaEibbkcfehfg = 2956, + IcdigiekflaGijkjfpbolf = 3001, + IcdigiekflaCfgpjgoajfc = 3002, + IcdigiekflaDjakbniijcl = 3003, + IcdigiekflaEiojjmmdkka = 3004, + IcdigiekflaNgfdcakekdj = 3005, + IcdigiekflaLgpclncnmdd = 3006, + IcdigiekflaGnienfocoka = 3007, + IcdigiekflaPdfmeaajjeb = 3008, + IcdigiekflaHjdappidkih = 3009, + IcdigiekflaHokdiopmnhh = 3010, + IcdigiekflaLgelbmnhoin = 3011, + IcdigiekflaEanijmapaea = 3012, + IcdigiekflaJfdondhjmhk = 3013, + IcdigiekflaMandhmldnma = 3101, + IcdigiekflaBhnknkgaeii = 3102, + IcdigiekflaGjkplkjpdpj = 3103, + IcdigiekflaPflfipolbkd = 3104, + IcdigiekflaAfbdligicae = 3105, + IcdigiekflaIndheolnnla = 3106, + IcdigiekflaLlihlmiopeb = 3107, + IcdigiekflaFcindcnddfb = 3108, + IcdigiekflaPdookmcomnd = 3109, + IcdigiekflaAcfhiiddamo = 3110, + IcdigiekflaOlnldbdojil = 3111, + IcdigiekflaDeaohhedlff = 3112, + IcdigiekflaEoceanealod = 3113, + IcdigiekflaFhhnilhapdh = 3114, + IcdigiekflaGlhkkjhanci = 3115, + IcdigiekflaFljbimhgdoe = 3116, + IcdigiekflaEafpmbihllj = 3117, + IcdigiekflaPeapncibgib = 3118, + IcdigiekflaImcbejoaokp = 3119, + IcdigiekflaGjclhpjmfpi = 3120, + IcdigiekflaKjmcpdfiofi = 3151, + IcdigiekflaJmgmgcbchhf = 3152, + IcdigiekflaBldpkbanpoj = 3153, + IcdigiekflaHnnclmpimdi = 3154, + IcdigiekflaAloafgkkaki = 3155, + IcdigiekflaNikfhjecndh = 3156, + IcdigiekflaBijmhfmjldd = 3157, + IcdigiekflaCjgoiiggnke = 3201, + IcdigiekflaJpgkhneejfg = 3202, + IcdigiekflaBofgggfeoib = 3203, + IcdigiekflaAannohaabha = 3204, + IcdigiekflaFlibocnjjja = 3205, + IcdigiekflaNgjbmgakpea = 3206, + IcdigiekflaCkmgmgnkdfn = 3207, + IcdigiekflaJlfjjmdaani = 3208, + IcdigiekflaFenbccoadph = 3209, + IcdigiekflaCpbdaikoinl = 3210, + IcdigiekflaHhgfiflooij = 3211, + IcdigiekflaHhdbapcchki = 3212, + IcdigiekflaOmfdnhnkidb = 3213, + IcdigiekflaAkaaeghhbcd = 3214, + IcdigiekflaBelipimldbc = 3301, + IcdigiekflaNchnjdbmblf = 3302, + IcdigiekflaAbmlcjjeean = 3303, + IcdigiekflaNfocmbmglfj = 3304, + IcdigiekflaJophohbikjh = 3305, + IcdigiekflaJfobafiicjl = 3306, + IcdigiekflaEjkecpmkpll = 3307, + IcdigiekflaOebieondale = 3308, + IcdigiekflaHeoddnklklk = 3309, + IcdigiekflaCjlkfmbcjcg = 3310, + IcdigiekflaCiigiifngha = 3311, + IcdigiekflaDajahndkgbb = 3312, + IcdigiekflaIakcmcifgoi = 3313, + IcdigiekflaIkpgmnakbag = 3314, + IcdigiekflaCelodbeefdk = 3315, + IcdigiekflaEcfajhbplkg = 3316, + IcdigiekflaFagilpbhkjj = 3317, + IcdigiekflaHhllfpcogoc = 3318, + IcdigiekflaBmmecmhlnbc = 3319, + IcdigiekflaIkophanljni = 3501, + IcdigiekflaJllplackpjd = 3502, + IcdigiekflaGeggmcpnapo = 3503, + IcdigiekflaKejcjbgdecl = 3504, + IcdigiekflaEeibemcgakp = 3505, + IcdigiekflaHklfdnfpcfa = 3506, + IcdigiekflaAbakhphnhil = 3507, + IcdigiekflaDamajgpojlh = 3601, + IcdigiekflaIomfplmjkek = 3602, + IcdigiekflaAlpdpgnodac = 3603, + IcdigiekflaJmpbbohegmj = 3604, + IcdigiekflaBgdkngkpnpb = 3605, + IcdigiekflaJfkdlffghnl = 3606, + IcdigiekflaAhkhphlgoek = 3607, + IcdigiekflaGcodogbchlm = 3608, + IcdigiekflaKmlgnllfkfb = 3609, + IcdigiekflaNfkfbdcobkd = 3610, + IcdigiekflaGolbllflcfl = 3611, + IcdigiekflaMenamnfmoik = 3612, + IcdigiekflaDkogicilfkc = 3613, + IcdigiekflaCjbkbogmcmk = 3614, + IcdigiekflaAlijpbmkpan = 3615, + IcdigiekflaHefpmginakn = 3616, + IcdigiekflaHoflhpcnndo = 3617, + IcdigiekflaJdefkfooiab = 3618, + IcdigiekflaHgdkmaikfip = 3619, + IcdigiekflaGnjegcocbkj = 3620, + IcdigiekflaKnjfggnceda = 3621, + IcdigiekflaFbdlcfnlgkb = 3622, + IcdigiekflaNcdkllpjodi = 3623, + IcdigiekflaMkgjjngbkmg = 3624, + IcdigiekflaJendjcmbeei = 3625, + IcdigiekflaBldiaejjmne = 3626, + IcdigiekflaMcdkdeiihim = 3627, + IcdigiekflaPegapdfbeck = 3628, + IcdigiekflaJahlbllfnpo = 3629, + IcdigiekflaCpmngmljaan = 3630, + IcdigiekflaPdgplmepfba = 3631, + IcdigiekflaGfkkbdilppa = 3632, + IcdigiekflaNjbbigpaplg = 3633, + IcdigiekflaLiphkjcoacl = 3634, + IcdigiekflaAgdhdfabndl = 3635, + IcdigiekflaDamffdhflgb = 3636, + IcdigiekflaKpmdpbpkomc = 3701, + IcdigiekflaIpoihnjfbjf = 3702, + IcdigiekflaPcjbngjlfih = 3703, + IcdigiekflaLgndegjbape = 3704, + IcdigiekflaDpebaokiogj = 3705, + IcdigiekflaJkfmhlbhcin = 3706, + IcdigiekflaLegkckpldgo = 3707, + IcdigiekflaPkojoicmmej = 3708, + IcdigiekflaPngikekoblj = 3709, + IcdigiekflaOkdhaijoeam = 3710, + IcdigiekflaLcomifgjmnk = 3712, + IcdigiekflaLfeimhpllcl = 3713, + IcdigiekflaMpmpmgkjoik = 3714, + IcdigiekflaKcaaajhhjnj = 3715, + IcdigiekflaDgkbbblehkm = 3716, + IcdigiekflaNacgafokdmj = 3717, + IcdigiekflaHgfapcbefpl = 3718, + IcdigiekflaKeengknjnjk = 3801, + IcdigiekflaHjejnbnjjig = 3802, + IcdigiekflaGkjippihbdl = 3803, + IcdigiekflaNcpgoaaokkp = 3804, + IcdigiekflaKojhdikbagp = 3805, + IcdigiekflaNaeaionnaid = 3806, + IcdigiekflaOobngckjgdk = 3807, + IcdigiekflaIafnfhkehii = 3808, + IcdigiekflaOppmnkehplh = 3809, + IcdigiekflaAjoknoanbjg = 3810, + IcdigiekflaKhjofiicepk = 3811, + IcdigiekflaAmlpejcokml = 3812, + IcdigiekflaDafkedkebcb = 3813, + IcdigiekflaHegjfkmakea = 3814, + IcdigiekflaBgdghabbnnl = 3901, + IcdigiekflaEfdokaolohg = 3902, + IcdigiekflaLeahonnkjan = 3903, + IcdigiekflaMhipejdponj = 4001, + IcdigiekflaPceohkiknam = 4002, + IcdigiekflaLnchjjfchad = 4003, + IcdigiekflaAgcpaealapm = 4004, + IcdigiekflaCfdpjjopmda = 4005, + IcdigiekflaBadgfpaakfk = 4006, + IcdigiekflaApmjelnbofl = 4007, + IcdigiekflaEpjmdmangji = 4008, + IcdigiekflaFjfnpackcjf = 4009, + IcdigiekflaFpckmbnbgdm = 4010, + IcdigiekflaJmdnifbpdco = 4011, + IcdigiekflaJjbpaafckij = 4012, + IcdigiekflaNckaalmihff = 4013, + IcdigiekflaGgfagajnaje = 4014, + IcdigiekflaNefdohdcflb = 4015, + IcdigiekflaGabbjohkfed = 4016, + IcdigiekflaDjnjdlkkdbe = 4017, + IcdigiekflaDjabmemnpbk = 4018, + IcdigiekflaEnimeifegfa = 4019, + IcdigiekflaPkpjafcbkeh = 4020, + IcdigiekflaLkjepdkemfc = 4021, + IcdigiekflaEineckpidnk = 4101, + IcdigiekflaEmmfnbljiie = 4102, + IcdigiekflaEjhjbidlnph = 4103, + IcdigiekflaAehckamjped = 4201, + IcdigiekflaBecjcbeannb = 4251, + IcdigiekflaJchahhbkabm = 4252, + IcdigiekflaHpehjmmibmf = 4301, + IcdigiekflaPignoghncde = 4302, + IcdigiekflaHjeloflbooe = 4303, + IcdigiekflaHlngnjkpgeh = 4304, + IcdigiekflaNmmhcnfljop = 4351, + IcdigiekflaKjllnmbbkbo = 4352, + IcdigiekflaPbinlckhjbc = 4353, + IcdigiekflaOdalgcaodod = 4354, + IcdigiekflaDainibgkknm = 4355, + IcdigiekflaBokmacfeopk = 4356, + IcdigiekflaJojodepipgb = 4401, + IcdigiekflaJkaadbmdlno = 4402, + IcdigiekflaHhemhmbaien = 4403, + IcdigiekflaKaafklkkkdn = 4404, + IcdigiekflaPllolaplmcd = 4405, + IcdigiekflaMfpbnnjbijh = 4406, + IcdigiekflaAmgllghjhmk = 4407, + IcdigiekflaKkcnfljedch = 4408, + IcdigiekflaEmlfemnnepn = 4409, + IcdigiekflaNjljeopbmoc = 4410, + IcdigiekflaHpmoaolpail = 4411, + IcdigiekflaBijmnihceca = 4412, + IcdigiekflaChbnkpikhfo = 4413, + IcdigiekflaCkjkimlkekb = 4451, + IcdigiekflaAibpdmmbjhh = 4452, + IcdigiekflaNokaapjdenl = 4501, + IcdigiekflaBdebafkejbf = 4502, + IcdigiekflaGhodmofdadg = 4503, + IcdigiekflaIgdealjnghi = 4504, + IcdigiekflaKbaeodajojf = 4505, + IcdigiekflaIiookojlbja = 4506, + IcdigiekflaHdamkagnopa = 4507, + IcdigiekflaBlffedffnig = 4508, + IcdigiekflaNjkedgcnegl = 4509, + IcdigiekflaNbidhmgjfji = 4510, + IcdigiekflaEmekinhajai = 4511, + IcdigiekflaPmlephgdfng = 4512, + IcdigiekflaDhdfiejbjni = 4513, + IcdigiekflaFdibcpnhfjl = 4514, + IcdigiekflaLelofflheca = 4515, + IcdigiekflaObfmoomnina = 4601, + IcdigiekflaEjmdfnbbakb = 4651, + IcdigiekflaNjljpakldmn = 4652, + IcdigiekflaGehjjpbghpn = 4653, + IcdigiekflaJkjbeknenge = 4654, + IcdigiekflaLodbldlkiio = 4655, + IcdigiekflaMfhobdgfnll = 4656, + IcdigiekflaHpopiofighn = 4657, + IcdigiekflaGhljkihcpml = 4658, + IcdigiekflaEbbpemaaehg = 4659, + IcdigiekflaJmadchmkjbd = 4660, + IcdigiekflaMnelhkkknno = 4661, + IcdigiekflaPfmkllaennm = 4662, + IcdigiekflaMpejbplplng = 4663, + IcdigiekflaAlkdkchncmd = 4664, + IcdigiekflaFkdkfambffp = 4665, + IcdigiekflaBdicpcaajgg = 4666, + IcdigiekflaBbbaknfdopj = 4667, + IcdigiekflaHfdhiomjjlo = 4668, + IcdigiekflaHeblondgkgj = 4669, + IcdigiekflaFihcodflbkj = 4670, + IcdigiekflaLknpdlbnkpf = 4671, + IcdigiekflaGjjgnfmfgoh = 4672, + IcdigiekflaPlpnajpfkfn = 4673, + IcdigiekflaKeebgdfepmg = 4674, + IcdigiekflaHooaodoafnm = 4675, + IcdigiekflaAfbjhmchdio = 4678, + IcdigiekflaFneikdmdofo = 4679, + IcdigiekflaMpjonihcbcp = 4680, + IcdigiekflaDhhigehpdce = 4681, + IcdigiekflaAjlpeibaldh = 4701, + IcdigiekflaOokoepagnmc = 4702, + IcdigiekflaCbjblfjcjba = 4721, + IcdigiekflaHbphjapicof = 4722, + IcdigiekflaOkdanpelbao = 4724, + IcdigiekflaJkjhbniehak = 4725, + IcdigiekflaKmccoepeina = 4726, + IcdigiekflaGgllldbgljm = 4727, + IcdigiekflaJcbgbjkdhha = 4728, + IcdigiekflaKkaociphjdj = 4729, + IcdigiekflaPpfepfmndee = 4730, + IcdigiekflaBdnegcdadoc = 4731, + IcdigiekflaMgfnoahibnj = 4732, + IcdigiekflaJifognaegpo = 4733, + IcdigiekflaEdmonbpkmog = 4734, + IcdigiekflaKjcaogljpoo = 4735, + IcdigiekflaKeemknklkea = 4736, + IcdigiekflaFammkkfnfpc = 4737, + IcdigiekflaLkaaocekbce = 4738, + IcdigiekflaJngeikjlngk = 4739, + IcdigiekflaGajcapegjjh = 4740, + IcdigiekflaDeekjccccid = 4741, + IcdigiekflaKdjhkkdfoho = 4742, + IcdigiekflaBblljfkknpa = 4743, + IcdigiekflaLeehaccdfea = 4744, + IcdigiekflaBpamiamcdil = 4745, + IcdigiekflaIeknejidlgf = 4746, + IcdigiekflaPpfdbddglfh = 4747, + IcdigiekflaBnmcfcbkpdl = 4748, + IcdigiekflaImagknpddjh = 4749, + IcdigiekflaLablkdbcohl = 4750, + IcdigiekflaPmgkiigmkdh = 4751, + IcdigiekflaCbnfjkdhncc = 4752, + IcdigiekflaKpoikafjjjk = 4753, + IcdigiekflaCkcflfljnbm = 4754, + IcdigiekflaMiaiokailcf = 4755, + IcdigiekflaBgdcldjibdb = 4756, + IcdigiekflaBjljfahcbln = 4757, + IcdigiekflaMmbaikdglnh = 4758, + IcdigiekflaGgmbepldmlk = 4759, + IcdigiekflaNgkjdpmjdal = 4760, + IcdigiekflaHdhejckgjll = 4761, + IcdigiekflaAblbhdmpgni = 4762, + IcdigiekflaDoddfbhpcpk = 4801, + IcdigiekflaPnphnkfdbde = 4802, + IcdigiekflaLlofficdklg = 4803, + IcdigiekflaFedgflmilmb = 4804, + IcdigiekflaAenilkkafdg = 4805, + IcdigiekflaMilhlfbfimg = 4806, + IcdigiekflaJaacfjigobo = 4807, + IcdigiekflaPfdjicbmigi = 4808, + IcdigiekflaHkmggihaejd = 4809, + IcdigiekflaPolpbphpljl = 4810, + IcdigiekflaAodpleincne = 4811, + IcdigiekflaBifmianelae = 4851, + IcdigiekflaCabbdpfccfl = 4852, + IcdigiekflaGomnodbhfdc = 4901, + IcdigiekflaIpjbedbfljm = 4902, + IcdigiekflaCanoochegoj = 4903, + IcdigiekflaLfhmepbmeom = 4904, + IcdigiekflaEjlgokaiddb = 4905, + IcdigiekflaBpaobfpbddj = 4906, + IcdigiekflaAabknjenikk = 4907, + IcdigiekflaAjjjonebaae = 4908, + IcdigiekflaJpgiilbhfob = 4909, + IcdigiekflaEnlbiegfhgk = 4951, + IcdigiekflaOblambeaihe = 4952, + IcdigiekflaMfkfpmbkfco = 4963, + IcdigiekflaCfmonepaojp = 4964, + IcdigiekflaFkihgdalahl = 4965, + IcdigiekflaFgmddihgdhi = 4966, + IcdigiekflaJppnipaefbc = 4967, + IcdigiekflaMmoplmdmckd = 4968, + IcdigiekflaOohfnbfdjdk = 4969, + IcdigiekflaEccanalcmgi = 4970, + IcdigiekflaEoaciocoghd = 4980, + IcdigiekflaGdmnhhakgbh = 4981, + IcdigiekflaFmkbjafbdem = 4982, + IcdigiekflaPgpnolmgnak = 4983, + IcdigiekflaCgpkodiikgi = 4984, + IcdigiekflaBmfkcoeppck = 4985, + IcdigiekflaIkdmflbadgb = 4986, + IcdigiekflaBagjjfffbhl = 4987, + IcdigiekflaGlnkgfhfnfo = 4988, + IcdigiekflaCehghnpclpb = 4989, + IcdigiekflaOhgcmlmkdji = 4990, + IcdigiekflaFblojdalcfd = 4991, + IcdigiekflaFkaailhlhji = 4992, + IcdigiekflaLalnaapbipg = 4993, + IcdigiekflaJdnccjodmjc = 4994, + IcdigiekflaJfhjfeonnlf = 5101, + IcdigiekflaLobgdidchcg = 5102, + IcdigiekflaFoekhcciahk = 5103, + IcdigiekflaPlpimbdfbfo = 5104, + IcdigiekflaOolomeahflc = 5105, + IcdigiekflaFghiebbomki = 5106, + IcdigiekflaCljdlcamdgi = 5107, + IcdigiekflaDdldbjiodec = 5108, + IcdigiekflaBmcaljpigbc = 5109, + IcdigiekflaDafofkliogc = 5110, + IcdigiekflaCpoppinokeg = 5111, + IcdigiekflaJlbkdbmlmon = 5112, + IcdigiekflaNbojheebmkk = 5113, + IcdigiekflaEapfhpbknji = 5114, + IcdigiekflaEbknhjjpdcj = 5115, + IcdigiekflaCmffokkolme = 5116, + IcdigiekflaNipjbjkgkfc = 5117, + IcdigiekflaIhfglknmiia = 5151, + IcdigiekflaDhmjjfomade = 5152, + IcdigiekflaFlpdocjgfpe = 5201, + IcdigiekflaBggcmpipjel = 5202, + IcdigiekflaOegbghmbpfp = 5203, + IcdigiekflaDfpbgfpboki = 5204, + IcdigiekflaPcpfjbkpogd = 5205, + IcdigiekflaCkmmkklomio = 5251, + IcdigiekflaFoamcenlhkc = 5252, + IcdigiekflaFffbfmhdmkn = 5253, + IcdigiekflaDaheanekaae = 5254, + IcdigiekflaLjhgklegkll = 5255, + IcdigiekflaCbmkaeenlhm = 5256, + IcdigiekflaBpkcdbicbcp = 5257, + IcdigiekflaDgomkdjkkgf = 5258, + IcdigiekflaDeglhjhnfcg = 5259, + IcdigiekflaLdjceiagmfn = 5260, + IcdigiekflaNiicbhhglgo = 5261, + IcdigiekflaPdhkpmccnih = 5262, + IcdigiekflaLmppbfhnopp = 5301, + IcdigiekflaBnbdkmgnkpp = 5302, + IcdigiekflaKogbfbpfjld = 5303, + IcdigiekflaHdaeimjggkc = 5304, + IcdigiekflaEmgocgcjehk = 5305, + IcdigiekflaGlfhogepldj = 5306, + IcdigiekflaAaljpdnhann = 5307, + IcdigiekflaDpocgemkilo = 5351, + IcdigiekflaAdpjdcoeink = 5352, + IcdigiekflaOfjnldnfadc = 5353, + IcdigiekflaBokghecfnpn = 5354, + IcdigiekflaBcjhhbmobld = 5355, + IcdigiekflaOeinpacnagd = 5356, + IcdigiekflaGnnpaidlkaf = 5357, + IcdigiekflaGknpkkdfido = 5358, + IcdigiekflaCgcnfdljffp = 5401, + IcdigiekflaJaefgnepnci = 5402, + IcdigiekflaOaofkciopbh = 5403, + IcdigiekflaKhflldgflfe = 5404, + IcdigiekflaNnjcanlghlc = 5405, + IcdigiekflaBkekijaahfh = 5406, + IcdigiekflaAmodnoledje = 5407, + IcdigiekflaLcnfpcdoabj = 5408, + IcdigiekflaPmbmdmghgjf = 5409, + IcdigiekflaIjmblmeaflg = 5410, + IcdigiekflaCfalnmidcbe = 5411, + IcdigiekflaMbmbgandgfg = 5412, + IcdigiekflaJlffgpjgkoj = 5413, + IcdigiekflaGpndikpdkpc = 5501, + IcdigiekflaBiigimjecno = 5502, + IcdigiekflaNfpcogkbgmo = 5503, + IcdigiekflaDpplfcomedp = 5551, + IcdigiekflaMlnifkdnnel = 5552, + IcdigiekflaCpfffcihfaj = 5553, + IcdigiekflaNnjlgbgahll = 5554, + IcdigiekflaEaaconcggnj = 5555, + IcdigiekflaLoaopniadip = 5556, + IcdigiekflaJoobpebfled = 5557, + IcdigiekflaIdgbjeijain = 5558, + IcdigiekflaHedffjceckb = 5559, + IcdigiekflaAehffakfkeh = 5560, + IcdigiekflaAfbiipnendm = 5601, + IcdigiekflaFiebkmjobie = 5602, + IcdigiekflaNgbphajelgo = 5603, + IcdigiekflaCplimbmegnb = 5604, + IcdigiekflaIpmkjdbfpma = 5651, + IcdigiekflaJejapjnmkaa = 5652, + IcdigiekflaChmmaclcklo = 5653, + IcdigiekflaBfginiinlha = 5654, + IcdigiekflaKpadcmhcecn = 5655, + IcdigiekflaFknjhlfjagk = 5656, + IcdigiekflaGcnbfpbddnn = 5701, + IcdigiekflaIhldhbaijgj = 5702, + IcdigiekflaAjmobbgkene = 5703, + IcdigiekflaAghhajmcafb = 5704, + IcdigiekflaLdkgdmgpdln = 5705, + IcdigiekflaGdcopbblkil = 5706, + IcdigiekflaKihbbajlkpa = 5707, + IcdigiekflaDbipbdobnnj = 5708, + IcdigiekflaPoeminhnnnp = 5709, + IcdigiekflaBglkfghbane = 5710, + IcdigiekflaLihabmojhho = 5751, + IcdigiekflaLdklbiaomeo = 5752, + IcdigiekflaFldnakpaeon = 5753, + IcdigiekflaPnmabmlffce = 5754, + IcdigiekflaHjbcmimmbej = 5755, + IcdigiekflaPlomblmpgkn = 5756, + IcdigiekflaCeohbjoolhh = 5757, + IcdigiekflaHeegpllbeci = 5758, + IcdigiekflaAamjkmpaoao = 5759, + IcdigiekflaNjfogeebccd = 5760, + IcdigiekflaIpdaiibhfmo = 5761, + IcdigiekflaOomnhebcjdg = 5762, + IcdigiekflaAeofpicfemf = 5763, + IcdigiekflaImklakgmdpm = 5764, + IcdigiekflaOjckphponia = 5771, + IcdigiekflaCccdblnamac = 5772, + IcdigiekflaNdlgbpkadcf = 5773, + IcdigiekflaNklkpoogggj = 5774, + IcdigiekflaBopmijbaedo = 5775, + IcdigiekflaJodkkggokaf = 5776, + IcdigiekflaOjhffkhkfco = 5777, + IcdigiekflaPlkkopgpffm = 5778, + IcdigiekflaApoineoccln = 5779, + IcdigiekflaMoiccjklfne = 5785, + IcdigiekflaOigmffpiefm = 5786, + IcdigiekflaNhhaoicdini = 5787, + IcdigiekflaPbagldghlok = 5788, + IcdigiekflaMnanfpjbcck = 5789, + IcdigiekflaJpfdinijfig = 5790, + IcdigiekflaEdpodckkcfl = 5791, + IcdigiekflaLpbhfiajmok = 5792, + IcdigiekflaAdoocpinenk = 5793, + IcdigiekflaLhjcjbjjflf = 5794, + IcdigiekflaOmdilidgldn = 5795, + IcdigiekflaOncdfpgpnbp = 5796, + IcdigiekflaBdpenhcphgn = 5797, + IcdigiekflaEeamhcmhpij = 5798, + IcdigiekflaGgmamookifb = 5799, + IcdigiekflaGpjeemagkel = 5800, + IcdigiekflaEocbkjeilng = 5801, + IcdigiekflaDdcmapfpknd = 5802, + IcdigiekflaNkonflenlgn = 5803, + IcdigiekflaAcdhkpkfceo = 5804, + IcdigiekflaJfcjokmhief = 5805, + IcdigiekflaLddfilhadja = 5806, + IcdigiekflaEiodcmpkjlh = 5807, + IcdigiekflaFmbgggkdamh = 5808, + IcdigiekflaEkjmaiokaaa = 5809, + IcdigiekflaLaacldnapgf = 5810, + IcdigiekflaEpfpggfdgkh = 5811, + IcdigiekflaLkfjhjfngoc = 5812, + IcdigiekflaLcpccoglhkm = 5813, + IcdigiekflaIbmnknfgcdf = 5814, + IcdigiekflaGchbckbgchj = 5815, + IcdigiekflaEachnjlgmfp = 5816, + IcdigiekflaKecbemkljdg = 5717, + IcdigiekflaEnponnidnnd = 5718, + IcdigiekflaIdhcfpfhngg = 5719, + IcdigiekflaDjckanlmlnh = 5851, + IcdigiekflaFlkkpkpmgjh = 5852, + IcdigiekflaFdeiojaeamf = 5853, + IcdigiekflaGelnhnanldk = 5854, + IcdigiekflaEhjnghknicj = 5855, + IcdigiekflaJpkbikbpfic = 5856, + IcdigiekflaHccpaflcpcl = 5857, + IcdigiekflaFoifejmfncm = 5858, + IcdigiekflaBnpaddmlokl = 5859, + IcdigiekflaFfijdcmaemk = 5860, + IcdigiekflaMdlahahlaal = 5861, + IcdigiekflaIplkgdbjffn = 5862, + IcdigiekflaPfamlohbapl = 5863, + IcdigiekflaHkpneglkhbp = 5864, + IcdigiekflaIjfagdomkhi = 5865, + IcdigiekflaCpmnhcbfgcf = 5901, + IcdigiekflaBjanefpcbbo = 5902, + IcdigiekflaJhibcigahlc = 5903, + IcdigiekflaAohadpghhle = 5904, + IcdigiekflaMkmamdgcdoe = 6201, + IcdigiekflaEepmepjmkll = 6202, + IcdigiekflaFpgcdimhieb = 6203, + IcdigiekflaNjoagibhgkn = 6204, + IcdigiekflaEdecbnaebac = 6205, + IcdigiekflaBoiegeodneo = 6206, + IcdigiekflaEchldappoop = 6207, + IcdigiekflaJgbpdipkcol = 6208, + IcdigiekflaDhmgdepadcm = 6209, + IcdigiekflaEamfkibcpjl = 6210, + IcdigiekflaOlifjcifbck = 6211, + IcdigiekflaBnkldiefhji = 6250, + IcdigiekflaBpagjckcokk = 6251, + IcdigiekflaKlinfkdcdim = 6252, + IcdigiekflaHekglnlifob = 6253, + IcdigiekflaLlefbmhnnpm = 6254, + IcdigiekflaHncdekfdimc = 6255, + IcdigiekflaPgocclafjhf = 6256, + IcdigiekflaDphmeomdioj = 6257, + IcdigiekflaOoddhmnfdlf = 6258, + IcdigiekflaOnapajlhgjn = 6259, + IcdigiekflaLhdgelcdogm = 6260, + IcdigiekflaPfgbdobgnak = 6261, + IcdigiekflaBhdhempkood = 6262, + IcdigiekflaAkoidnjdakp = 6263, + IcdigiekflaOijjemohcml = 6264, + IcdigiekflaDaapnbmjben = 6265, + IcdigiekflaKjfdphpieck = 6301, + IcdigiekflaMdpjfohdfdp = 6302, + IcdigiekflaLgmikcjnfnp = 6303, + IcdigiekflaNjbmdoeddcm = 6304, + IcdigiekflaBajogoabehh = 6305, + IcdigiekflaLhcdendpcnl = 6306, + IcdigiekflaLdmokpeaian = 6307, + IcdigiekflaBaiknehmbmg = 6308, + IcdigiekflaFefhaphmeoe = 6309, + IcdigiekflaKpjgjodlbao = 6310, + IcdigiekflaFcgdcjnmhhj = 6311, + IcdigiekflaIbfigcfcjog = 6312, + IcdigiekflaNckncleciog = 6313, + IcdigiekflaPkjpeaabaoe = 6314, + IcdigiekflaHoidlgfchph = 6315, + IcdigiekflaIcocbiihmpj = 6316, + IcdigiekflaCeeapcbdcfa = 6317, + IcdigiekflaCclenckgnnf = 6318, + IcdigiekflaIjmdigklfdm = 6319, + IcdigiekflaFnjnndkhldf = 6320, + IcdigiekflaNldkjfnehph = 6351, + IcdigiekflaKmabcpjdjoe = 6352, + IcdigiekflaPjjlejlmeak = 6353, + IcdigiekflaAlpbmolllhe = 6354, + IcdigiekflaFjnohlobgoj = 6355, + IcdigiekflaBjbhkfjeibl = 6356, + IcdigiekflaFipaooelmgp = 6357, + IcdigiekflaFbdppagmhbo = 6401, + IcdigiekflaFmpnegaljjo = 6402, + IcdigiekflaOmjpoigibfk = 6403, + IcdigiekflaGdneondlffe = 6451, + IcdigiekflaInjgnlpjmoe = 6452, + IcdigiekflaDkjliaigloj = 6453, + IcdigiekflaOamejmameca = 6454, + IcdigiekflaFdcgnjjglmm = 6455, + IcdigiekflaLiahhmkdjlb = 6456, + IcdigiekflaOoigakkgehl = 6457, + IcdigiekflaAemhiammfnn = 6458, + IcdigiekflaGebpgfedbjf = 6501, + IcdigiekflaAopefjflgfj = 6502, + IcdigiekflaIcdlnlfbmgp = 6503, + IcdigiekflaOplgelcbcii = 6504, + IcdigiekflaDacngicbeif = 6505, + IcdigiekflaPgmeckeokle = 6601, + IcdigiekflaHkammoljiim = 6602, + IcdigiekflaOahcjdkaajc = 6603, + IcdigiekflaLgaamcpbpij = 6604, + IcdigiekflaLfcijaimadk = 6605, + IcdigiekflaDcoklmmocmf = 6606, + IcdigiekflaOmiofjaoiah = 6607, + IcdigiekflaMpeaamlkppf = 6608, + IcdigiekflaGdkkmfkgijf = 6609, + IcdigiekflaCnbeagccjgj = 6621, + IcdigiekflaJmgcbbjlell = 6622, + IcdigiekflaFekohkjjakh = 6623, + IcdigiekflaMmdnmnfejod = 6624, + IcdigiekflaEeeipfeeldl = 6625, + IcdigiekflaBinljkmmpln = 6626, + IcdigiekflaDgfnfphleep = 6627, + IcdigiekflaEfnefenlgdb = 6628, + IcdigiekflaDojjnionbog = 6629, + IcdigiekflaGehlbljlidn = 6641, + IcdigiekflaDpfpkfcchel = 6642, + IcdigiekflaPlgjfjghfic = 6643, + IcdigiekflaKbcllppdgfh = 6644, + IcdigiekflaGcoaghogejh = 6645, + IcdigiekflaEhlmmjoclfj = 6646, + IcdigiekflaJpeoljlpmkc = 6647, + IcdigiekflaPopbiedcjmm = 6648, + IcdigiekflaLemboohblga = 6649, + IcdigiekflaFegidhhingk = 6650, + IcdigiekflaKedfahhkdma = 6651, + IcdigiekflaCccjmibgbpo = 6652, + IcdigiekflaPopbebecall = 6653, + IcdigiekflaDieopimmamj = 6654, + IcdigiekflaEickighfmoh = 6655, + IcdigiekflaOigcnapcble = 6656, + IcdigiekflaLdojehpldej = 6657, + IcdigiekflaJacbllgndlh = 6658, + IcdigiekflaIohafbnjcfi = 6659, + IcdigiekflaNnlgmnbdhde = 6660, + IcdigiekflaModngbiknld = 6661, + IcdigiekflaPcefgjjcgnc = 6662, + IcdigiekflaPpilikhgfja = 6663, + IcdigiekflaOenpjmhdfoe = 6664, + IcdigiekflaNocdminaamh = 6665, + IcdigiekflaMhhnfnffmfo = 6666, + IcdigiekflaBljnjdbmegf = 6667, + IcdigiekflaKplpgklcfko = 6668, + IcdigiekflaOjcghomeacd = 6669, + IcdigiekflaAjhmhcgnekk = 6670, + IcdigiekflaEmlghkcbafi = 6671, + IcdigiekflaChpkjijmnlb = 6701, + IcdigiekflaGindchodecp = 6702, + IcdigiekflaAmlmneeidhl = 6703, + IcdigiekflaOpedcdhkcfc = 6751, + IcdigiekflaOcobadfneij = 6752, + IcdigiekflaCfhlpnaicae = 6753, + IcdigiekflaNhgjmlemgdl = 6754, + IcdigiekflaGfienmckemc = 6755, + IcdigiekflaBoocgfeimkj = 6756, + IcdigiekflaEednnmlcojp = 6757, + IcdigiekflaBbpimgfgden = 6758, + IcdigiekflaGpgcoiggioh = 6771, + IcdigiekflaIjenbeiadao = 6772, + IcdigiekflaDnnaoikhkcb = 6773, + IcdigiekflaMbpbgjefaki = 6774, + IcdigiekflaJklhedpejbb = 6775, + IcdigiekflaHeeeeckahgn = 6776, + IcdigiekflaNniakbajoec = 6801, + IcdigiekflaJnpmjkajnjo = 6802, + IcdigiekflaFkkkafnhcmj = 6803, + IcdigiekflaHjjegfpoefd = 6804, + IcdigiekflaIoljaimfpmh = 6805, + IcdigiekflaPjpnjdielan = 6806, + IcdigiekflaBfbckbbpfdj = 6830, + IcdigiekflaOkkdhpmjnoc = 6841, + IcdigiekflaEllbficlcfj = 6842, + IcdigiekflaAhmeiggipkh = 6843, + IcdigiekflaJnpehgdifed = 6844, + IcdigiekflaDbiklngbhid = 6845, + IcdigiekflaIejpbblfcml = 6846, + IcdigiekflaLkkhgjmhphb = 6847, + IcdigiekflaHoplcofocli = 6848, + IcdigiekflaBnafooefhcj = 6849, + IcdigiekflaNpmdacpojol = 6850, + IcdigiekflaJkdmjmmionn = 6900, + IcdigiekflaCnlekebjcio = 6901, + IcdigiekflaDmomggckdhe = 6902, + IcdigiekflaFnomkddfced = 6903, + IcdigiekflaMpohcjmleko = 6904, + IcdigiekflaHobndanncfe = 6905, + IcdigiekflaHehllgnmjgd = 6906, + IcdigiekflaGgcbnlgloel = 6907, + IcdigiekflaNkopcjgninh = 6908, + IcdigiekflaJlnkedbclak = 6909, + IcdigiekflaDheecaedppa = 6910, + IcdigiekflaCglbhllmnde = 6911, + IcdigiekflaMgemmkphbag = 6912, + IcdigiekflaJdkcmhibccl = 6913, + IcdigiekflaNebfgikhjml = 6914, + IcdigiekflaKbjoeoodfbp = 6915, + IcdigiekflaJlooilajmdb = 6916, + IcdigiekflaNnjehfcfmbj = 6917, + IcdigiekflaGdalbbinlaa = 6918, + IcdigiekflaKdabbbmaald = 6919, + IcdigiekflaDnpdaehpijj = 6920, + IcdigiekflaPcacaabneeh = 6921, + IcdigiekflaMdbhhlmkncf = 6922, + IcdigiekflaFjmngmecikb = 6923, + IcdigiekflaGfmfpgolkhk = 6924, + IcdigiekflaLflapkhomhj = 6925, + IcdigiekflaMbbebjdlibb = 6926, + IcdigiekflaGjgkhlikkbg = 6927, + IcdigiekflaEfakkmmfgcp = 6928, + IcdigiekflaNhfkfbpoooa = 6929, + IcdigiekflaOalehmphlag = 6930, + IcdigiekflaClakdndagkb = 6931, + IcdigiekflaBpjfhabagmm = 6932, + IcdigiekflaPpogjmjcnll = 6933, + IcdigiekflaDjfejaedonc = 6934, + IcdigiekflaPkcbimbafbl = 6935, + IcdigiekflaOokkmhajndj = 6936, + IcdigiekflaDjabompgofa = 6937, + IcdigiekflaLjkbbhdamdp = 6938, + IcdigiekflaNnkmkjocaff = 6939, + IcdigiekflaMbkkomaambc = 6940, + IcdigiekflaHfdilanencc = 6941, + IcdigiekflaJkcokddhhjp = 6942, + IcdigiekflaPdbckfjbafb = 6943, + IcdigiekflaNgnkeccgonk = 6944, + IcdigiekflaHheabkgpmlm = 6945, + IcdigiekflaGifdjhioakj = 6946, + IcdigiekflaLndldccdgoo = 6947, + IcdigiekflaJlajlcjggka = 6948, + IcdigiekflaGkhihefhged = 6949, + IcdigiekflaJennohbfipd = 6950, + IcdigiekflaDbehlgglbak = 6951, + IcdigiekflaIdidjmjobaa = 6952, + IcdigiekflaEggabkcfcgp = 6953, + IcdigiekflaFbbfagkkcpc = 6954, + IcdigiekflaAlobkmpcdih = 6955, + IcdigiekflaNpmalejcikd = 6956, + IcdigiekflaHlmkcomfjlb = 6957, + IcdigiekflaGillmkmomcn = 6958, + IcdigiekflaBpmplinlddb = 6959, + IcdigiekflaNacemefodke = 6960, + IcdigiekflaBagedcghoib = 6961, + IcdigiekflaKfencompoja = 6962, + IcdigiekflaPidicmfehjl = 6963, + IcdigiekflaOepekokhgag = 6964, + IcdigiekflaIffdlilocjn = 6965, + IcdigiekflaMpfhgfolhjj = 6966, + IcdigiekflaMkhacgaoahp = 6967, + IcdigiekflaPpihhmfkkih = 6968, + IcdigiekflaOolhnjokpbk = 6969, + IcdigiekflaCkgfkajieig = 7001, + IcdigiekflaLckhipglkmo = 7002, + IcdigiekflaMcbgccdkpbf = 7003, + IcdigiekflaJgpchdjfppg = 7004, + IcdigiekflaNnebdmjelbf = 7005, + IcdigiekflaGjfolbmdaih = 7006, + IcdigiekflaLjgafpbembd = 7007, + IcdigiekflaBaajoojgpcp = 7008, + IcdigiekflaKdfbpckghho = 7009, + IcdigiekflaBkldnhnpald = 7010, + IcdigiekflaPlhpmnlmbgi = 7011, + IcdigiekflaBhhigjbjlfg = 7012, + IcdigiekflaCegkmnacong = 7013, + IcdigiekflaEnddimdgcep = 7014, + IcdigiekflaPmnlammbpji = 7015, + IcdigiekflaObhkkohilpi = 7016, + IcdigiekflaPhjfhdhkkbf = 7017, + IcdigiekflaEfmljocohei = 7018, + IcdigiekflaPpdgigdejkg = 7019, + IcdigiekflaAghgbokaefe = 7020, + IcdigiekflaEmdcdcbfnco = 7021, + IcdigiekflaKnnejdbebkk = 7022, + IcdigiekflaNenaaenojon = 7023, + IcdigiekflaAjejobchpmo = 7051, + IcdigiekflaGbemalcocla = 7052, + IcdigiekflaJihacahbplj = 7053, + IcdigiekflaOnkgkgcdako = 7054, + IcdigiekflaFoakhhdfeij = 7055, + IcdigiekflaCjfmbpbmnlm = 7056, + IcdigiekflaBdfgkokmimn = 7057, + IcdigiekflaGenoikkjood = 7058, + IcdigiekflaAoechbpgkcn = 7059, + IcdigiekflaKgceojlkfdp = 7060, + IcdigiekflaNoiihjjmleh = 7061, + IcdigiekflaGchendfgbce = 7062, + IcdigiekflaBciohjnadml = 7063, + IcdigiekflaLoeemjcngpl = 7064, + IcdigiekflaIibgmfbiagg = 7065, + IcdigiekflaOcekfmepbnn = 7066, + IcdigiekflaOlpanlopcjc = 7101, + IcdigiekflaDengboagecc = 7102, + IcdigiekflaKlinpacjggk = 7103, + IcdigiekflaDlbpofijhji = 7104, + IcdigiekflaGfnachmklne = 7105, + IcdigiekflaApfadbgcjap = 7106, + IcdigiekflaKmmekbkdokp = 7107, + IcdigiekflaOgjegmdebcl = 7108, + IcdigiekflaOjnieceloaa = 7109, + IcdigiekflaJacfmkdekec = 7110, + IcdigiekflaNbkdnoikmei = 7111, + IcdigiekflaFbibmanpnbc = 7112, + IcdigiekflaJeeabdjgfhd = 7113, + IcdigiekflaMejefbbgoio = 7114, + IcdigiekflaOghgnnfoccm = 7115, + IcdigiekflaNhcbnjhfkhn = 7116, + IcdigiekflaPhkjimnjchm = 7117, } impl Retcode { /// String value of the enum field names used in the ProtoBuf definition. @@ -62806,3649 +64426,2339 @@ impl Retcode { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RetSucc => "RET_SUCC", - Self::RetFail => "RET_FAIL", - Self::RetServerInternalError => "RET_SERVER_INTERNAL_ERROR", - Self::RetTimeout => "RET_TIMEOUT", - Self::RetRepeatedReq => "RET_REPEATED_REQ", - Self::RetReqParaInvalid => "RET_REQ_PARA_INVALID", - Self::RetPlayerDataError => "RET_PLAYER_DATA_ERROR", - Self::RetPlayerClientPaused => "RET_PLAYER_CLIENT_PAUSED", - Self::RetFuncCheckFailed => "RET_FUNC_CHECK_FAILED", - Self::RetFeatureSwitchClosed => "RET_FEATURE_SWITCH_CLOSED", - Self::RetFreqOverLimit => "RET_FREQ_OVER_LIMIT", - Self::RetSystemBusy => "RET_SYSTEM_BUSY", - Self::RetPlayerNotOnline => "RET_PLAYER_NOT_ONLINE", - Self::RetOperationInCd => "RET_OPERATION_IN_CD", - Self::RetRepeateLogin => "RET_REPEATE_LOGIN", - Self::RetRetryLogin => "RET_RETRY_LOGIN", - Self::RetWaitLogin => "RET_WAIT_LOGIN", - Self::RetNotInWhiteList => "RET_NOT_IN_WHITE_LIST", - Self::RetInBlackList => "RET_IN_BLACK_LIST", - Self::RetAccountVerifyError => "RET_ACCOUNT_VERIFY_ERROR", - Self::RetAccountParaError => "RET_ACCOUNT_PARA_ERROR", - Self::RetAntiAddictLogin => "RET_ANTI_ADDICT_LOGIN", - Self::RetCheckSumError => "RET_CHECK_SUM_ERROR", - Self::RetReachMaxPlayerNum => "RET_REACH_MAX_PLAYER_NUM", - Self::RetAlreadyRegistered => "RET_ALREADY_REGISTERED", - Self::RetGenderError => "RET_GENDER_ERROR", - Self::SetNicknameRetCallbackProcessing => { - "SET_NICKNAME_RET_CALLBACK_PROCESSING" - } - Self::RetInGmBindAccess => "RET_IN_GM_BIND_ACCESS", - Self::RetQuestRewardAlreadyTaken => "RET_QUEST_REWARD_ALREADY_TAKEN", - Self::RetQuestNotAccept => "RET_QUEST_NOT_ACCEPT", - Self::RetQuestNotFinish => "RET_QUEST_NOT_FINISH", - Self::RetQuestStatusError => "RET_QUEST_STATUS_ERROR", - Self::RetAchievementLevelNotReach => "RET_ACHIEVEMENT_LEVEL_NOT_REACH", - Self::RetAchievementLevelAlreadyTaken => { - "RET_ACHIEVEMENT_LEVEL_ALREADY_TAKEN" - } - Self::RetAvatarNotExist => "RET_AVATAR_NOT_EXIST", - Self::RetAvatarResExpNotEnough => "RET_AVATAR_RES_EXP_NOT_ENOUGH", - Self::RetAvatarExpReachPromotionLimit => { - "RET_AVATAR_EXP_REACH_PROMOTION_LIMIT" - } - Self::RetAvatarReachMaxPromotion => "RET_AVATAR_REACH_MAX_PROMOTION", - Self::RetSkilltreeConfigNotExist => "RET_SKILLTREE_CONFIG_NOT_EXIST", - Self::RetSkilltreeAlreadyUnlock => "RET_SKILLTREE_ALREADY_UNLOCK", - Self::RetSkilltreePreLocked => "RET_SKILLTREE_PRE_LOCKED", - Self::RetSkilltreeLevelNotMeet => "RET_SKILLTREE_LEVEL_NOT_MEET", - Self::RetSkilltreeRankNotMeet => "RET_SKILLTREE_RANK_NOT_MEET", - Self::RetAvatarDressNoEquipment => "RET_AVATAR_DRESS_NO_EQUIPMENT", - Self::RetAvatarExpItemNotExist => "RET_AVATAR_EXP_ITEM_NOT_EXIST", - Self::RetSkilltreePointLocked => "RET_SKILLTREE_POINT_LOCKED", - Self::RetSkilltreePointLevelUpgradeNotMatch => { - "RET_SKILLTREE_POINT_LEVEL_UPGRADE_NOT_MATCH" - } - Self::RetSkilltreePointLevelReachMax => "RET_SKILLTREE_POINT_LEVEL_REACH_MAX", - Self::RetWorldLevelNotMeet => "RET_WORLD_LEVEL_NOT_MEET", - Self::RetPlayerLevelNotMeet => "RET_PLAYER_LEVEL_NOT_MEET", - Self::RetAvatarRankNotMatch => "RET_AVATAR_RANK_NOT_MATCH", - Self::RetAvatarRankReachMax => "RET_AVATAR_RANK_REACH_MAX", - Self::RetHeroBasicTypeNotMatch => "RET_HERO_BASIC_TYPE_NOT_MATCH", - Self::RetAvatarPromotionNotMeet => "RET_AVATAR_PROMOTION_NOT_MEET", - Self::RetPromotionRewardConfigNotExist => { - "RET_PROMOTION_REWARD_CONFIG_NOT_EXIST" - } - Self::RetPromotionRewardAlreadyTaken => "RET_PROMOTION_REWARD_ALREADY_TAKEN", - Self::RetAvatarSkinItemNotExist => "RET_AVATAR_SKIN_ITEM_NOT_EXIST", - Self::RetAvatarSkinAlreadyDressed => "RET_AVATAR_SKIN_ALREADY_DRESSED", - Self::RetAvatarNotDressSkin => "RET_AVATAR_NOT_DRESS_SKIN", - Self::RetAvatarSkinNotMatchAvatar => "RET_AVATAR_SKIN_NOT_MATCH_AVATAR", - Self::RetAvatarPathNotMatch => "RET_AVATAR_PATH_NOT_MATCH", - Self::RetAvatarEnhancedIdNotExist => "RET_AVATAR_ENHANCED_ID_NOT_EXIST", - Self::RetAvatarEnhancedIdAlreadySet => "RET_AVATAR_ENHANCED_ID_ALREADY_SET", - Self::RetAvatarNotCurEnhancedId => "RET_AVATAR_NOT_CUR_ENHANCED_ID", - Self::RetPlayerOutfitConfigNotExist => "RET_PLAYER_OUTFIT_CONFIG_NOT_EXIST", - Self::RetPlayerOutfitSlotConflict => "RET_PLAYER_OUTFIT_SLOT_CONFLICT", - Self::RetPlayerOutfitIsDefault => "RET_PLAYER_OUTFIT_IS_DEFAULT", - Self::RetPlayerOutfitNotOwned => "RET_PLAYER_OUTFIT_NOT_OWNED", - Self::RetSkilltreeFastLevelUpClose => "RET_SKILLTREE_FAST_LEVEL_UP_CLOSE", - Self::RetItemNotExist => "RET_ITEM_NOT_EXIST", - Self::RetItemCostNotEnough => "RET_ITEM_COST_NOT_ENOUGH", - Self::RetItemCostTooMuch => "RET_ITEM_COST_TOO_MUCH", - Self::RetItemNoCost => "RET_ITEM_NO_COST", - Self::RetItemNotEnough => "RET_ITEM_NOT_ENOUGH", - Self::RetItemInvalid => "RET_ITEM_INVALID", - Self::RetItemConfigNotExist => "RET_ITEM_CONFIG_NOT_EXIST", - Self::RetScoinNotEnough => "RET_SCOIN_NOT_ENOUGH", - Self::RetItemRewardExceedLimit => "RET_ITEM_REWARD_EXCEED_LIMIT", - Self::RetItemInvalidUse => "RET_ITEM_INVALID_USE", - Self::RetItemUseConfigNotExist => "RET_ITEM_USE_CONFIG_NOT_EXIST", - Self::RetRewardConfigNotExist => "RET_REWARD_CONFIG_NOT_EXIST", - Self::RetItemExceedLimit => "RET_ITEM_EXCEED_LIMIT", - Self::RetItemCountInvalid => "RET_ITEM_COUNT_INVALID", - Self::RetItemUseTargetTypeInvalid => "RET_ITEM_USE_TARGET_TYPE_INVALID", - Self::RetItemUseSatietyFull => "RET_ITEM_USE_SATIETY_FULL", - Self::RetItemComposeNotExist => "RET_ITEM_COMPOSE_NOT_EXIST", - Self::RetRelicComposeNotExist => "RET_RELIC_COMPOSE_NOT_EXIST", - Self::RetItemCanNotSell => "RET_ITEM_CAN_NOT_SELL", - Self::RetItemSellExceddLimit => "RET_ITEM_SELL_EXCEDD_LIMIT", - Self::RetItemNotInCostList => "RET_ITEM_NOT_IN_COST_LIST", - Self::RetItemSpecialCostNotEnough => "RET_ITEM_SPECIAL_COST_NOT_ENOUGH", - Self::RetItemSpecialCostTooMuch => "RET_ITEM_SPECIAL_COST_TOO_MUCH", - Self::RetItemFormulaNotExist => "RET_ITEM_FORMULA_NOT_EXIST", - Self::RetItemAutoGiftOptionalNotExist => { - "RET_ITEM_AUTO_GIFT_OPTIONAL_NOT_EXIST" - } - Self::RetRelicComposeRelicInvalid => "RET_RELIC_COMPOSE_RELIC_INVALID", - Self::RetRelicComposeMainAffixIdInvalid => { - "RET_RELIC_COMPOSE_MAIN_AFFIX_ID_INVALID" - } - Self::RetRelicComposeWrongFormulaType => { - "RET_RELIC_COMPOSE_WRONG_FORMULA_TYPE" - } - Self::RetRelicComposeRelicNotExist => "RET_RELIC_COMPOSE_RELIC_NOT_EXIST", - Self::RetRelicComposeBlackGoldCountInvalid => { - "RET_RELIC_COMPOSE_BLACK_GOLD_COUNT_INVALID" - } - Self::RetRelicComposeBlackGoldNotNeed => { - "RET_RELIC_COMPOSE_BLACK_GOLD_NOT_NEED" - } - Self::RetMonthCardCannotUse => "RET_MONTH_CARD_CANNOT_USE", - Self::RetItemRewardExceedDisappear => "RET_ITEM_REWARD_EXCEED_DISAPPEAR", - Self::RetItemNeedRecycle => "RET_ITEM_NEED_RECYCLE", - Self::RetItemComposeExceedLimit => "RET_ITEM_COMPOSE_EXCEED_LIMIT", - Self::RetItemCanNotDestroy => "RET_ITEM_CAN_NOT_DESTROY", - Self::RetItemAlreadyMark => "RET_ITEM_ALREADY_MARK", - Self::RetItemMarkExceedLimit => "RET_ITEM_MARK_EXCEED_LIMIT", - Self::RetItemNotMark => "RET_ITEM_NOT_MARK", - Self::RetItenTurnFoodNotSet => "RET_ITEN_TURN_FOOD_NOT_SET", - Self::RetItemTurnFoodAlreadySet => "RET_ITEM_TURN_FOOD_ALREADY_SET", - Self::RetItemTurnFoodConsumeTypeError => { - "RET_ITEM_TURN_FOOD_CONSUME_TYPE_ERROR" - } - Self::RetItemTurnFoodSwitchAlreadyOpen => { - "RET_ITEM_TURN_FOOD_SWITCH_ALREADY_OPEN" - } - Self::RetItemTurnFoodSwitchAlreadyClose => { - "RET_ITEM_TURN_FOOD_SWITCH_ALREADY_CLOSE" - } - Self::RetHcoinExchangeTooMuch => "RET_HCOIN_EXCHANGE_TOO_MUCH", - Self::RetItemTurnFoodSceneTypeError => "RET_ITEM_TURN_FOOD_SCENE_TYPE_ERROR", - Self::RetEquipmentAlreadyDressed => "RET_EQUIPMENT_ALREADY_DRESSED", - Self::RetEquipmentNotExist => "RET_EQUIPMENT_NOT_EXIST", - Self::RetEquipmentReachLevelLimit => "RET_EQUIPMENT_REACH_LEVEL_LIMIT", - Self::RetEquipmentConsumeSelf => "RET_EQUIPMENT_CONSUME_SELF", - Self::RetEquipmentAlreadyLocked => "RET_EQUIPMENT_ALREADY_LOCKED", - Self::RetEquipmentAlreadyUnlocked => "RET_EQUIPMENT_ALREADY_UNLOCKED", - Self::RetEquipmentLocked => "RET_EQUIPMENT_LOCKED", - Self::RetEquipmentSelectNumOverLimit => "RET_EQUIPMENT_SELECT_NUM_OVER_LIMIT", - Self::RetEquipmentRankUpMustConsumeSameTid => { - "RET_EQUIPMENT_RANK_UP_MUST_CONSUME_SAME_TID" - } - Self::RetEquipmentPromotionReachMax => "RET_EQUIPMENT_PROMOTION_REACH_MAX", - Self::RetEquipmentRankUpReachMax => "RET_EQUIPMENT_RANK_UP_REACH_MAX", - Self::RetEquipmentLevelReachMax => "RET_EQUIPMENT_LEVEL_REACH_MAX", - Self::RetEquipmentExceedLimit => "RET_EQUIPMENT_EXCEED_LIMIT", - Self::RetRelicNotExist => "RET_RELIC_NOT_EXIST", - Self::RetRelicReachLevelLimit => "RET_RELIC_REACH_LEVEL_LIMIT", - Self::RetRelicConsumeSelf => "RET_RELIC_CONSUME_SELF", - Self::RetRelicAlreadyDressed => "RET_RELIC_ALREADY_DRESSED", - Self::RetRelicLocked => "RET_RELIC_LOCKED", - Self::RetRelicAlreadyLocked => "RET_RELIC_ALREADY_LOCKED", - Self::RetRelicAlreadyUnlocked => "RET_RELIC_ALREADY_UNLOCKED", - Self::RetRelicLevelIsNotZero => "RET_RELIC_LEVEL_IS_NOT_ZERO", - Self::RetUniqueIdRepeated => "RET_UNIQUE_ID_REPEATED", - Self::RetEquipmentLevelNotMeet => "RET_EQUIPMENT_LEVEL_NOT_MEET", - Self::RetEquipmentItemNotInCostList => "RET_EQUIPMENT_ITEM_NOT_IN_COST_LIST", - Self::RetEquipmentLevelGreaterThanOne => { - "RET_EQUIPMENT_LEVEL_GREATER_THAN_ONE" - } - Self::RetEquipmentAlreadyRanked => "RET_EQUIPMENT_ALREADY_RANKED", - Self::RetRelicExceedLimit => "RET_RELIC_EXCEED_LIMIT", - Self::RetRelicAlreadyDiscarded => "RET_RELIC_ALREADY_DISCARDED", - Self::RetRelicAlreadyUndiscarded => "RET_RELIC_ALREADY_UNDISCARDED", - Self::RetEquipmentBatchLockTooFast => "RET_EQUIPMENT_BATCH_LOCK_TOO_FAST", - Self::RetRelicFilterPlanSlotEmpty => "RET_RELIC_FILTER_PLAN_SLOT_EMPTY", - Self::RetRelicFilterPlanNumExceedLimit => { - "RET_RELIC_FILTER_PLAN_NUM_EXCEED_LIMIT" - } - Self::RetRelicFilterPlanNameUtf8Error => { - "RET_RELIC_FILTER_PLAN_NAME_UTF8_ERROR" - } - Self::RetRelicFilterPlanNameFormatError => { - "RET_RELIC_FILTER_PLAN_NAME_FORMAT_ERROR" - } - Self::RetRelicFilterPlanNoChange => "RET_RELIC_FILTER_PLAN_NO_CHANGE", - Self::RetRelicReforgeNotConfirmed => "RET_RELIC_REFORGE_NOT_CONFIRMED", - Self::RetEquipmentAlreadyLevelup => "RET_EQUIPMENT_ALREADY_LEVELUP", - Self::RetEquipmentRarityError => "RET_EQUIPMENT_RARITY_ERROR", - Self::RetLineupInvalidIndex => "RET_LINEUP_INVALID_INDEX", - Self::RetLineupInvalidMemberPos => "RET_LINEUP_INVALID_MEMBER_POS", - Self::RetLineupSwapNotExist => "RET_LINEUP_SWAP_NOT_EXIST", - Self::RetLineupAvatarAlreadyIn => "RET_LINEUP_AVATAR_ALREADY_IN", - Self::RetLineupCreateAvatarError => "RET_LINEUP_CREATE_AVATAR_ERROR", - Self::RetLineupAvatarInitError => "RET_LINEUP_AVATAR_INIT_ERROR", - Self::RetLineupNotExist => "RET_LINEUP_NOT_EXIST", - Self::RetLineupOnlyOneMember => "RET_LINEUP_ONLY_ONE_MEMBER", - Self::RetLineupSameLeaderSlot => "RET_LINEUP_SAME_LEADER_SLOT", - Self::RetLineupNoLeaderSelect => "RET_LINEUP_NO_LEADER_SELECT", - Self::RetLineupSwapSameSlot => "RET_LINEUP_SWAP_SAME_SLOT", - Self::RetLineupAvatarNotExist => "RET_LINEUP_AVATAR_NOT_EXIST", - Self::RetLineupTrialAvatarCanNotQuit => { - "RET_LINEUP_TRIAL_AVATAR_CAN_NOT_QUIT" - } - Self::RetLineupVirtualLineupPlaneNotMatch => { - "RET_LINEUP_VIRTUAL_LINEUP_PLANE_NOT_MATCH" - } - Self::RetLineupNotValidLeader => "RET_LINEUP_NOT_VALID_LEADER", - Self::RetLineupSameIndex => "RET_LINEUP_SAME_INDEX", - Self::RetLineupIsEmpty => "RET_LINEUP_IS_EMPTY", - Self::RetLineupNameFormatError => "RET_LINEUP_NAME_FORMAT_ERROR", - Self::RetLineupTypeNotMatch => "RET_LINEUP_TYPE_NOT_MATCH", - Self::RetLineupReplaceAllFailed => "RET_LINEUP_REPLACE_ALL_FAILED", - Self::RetLineupNotAllowEdit => "RET_LINEUP_NOT_ALLOW_EDIT", - Self::RetLineupAvatarIsAlive => "RET_LINEUP_AVATAR_IS_ALIVE", - Self::RetLineupAssistHasOnlyMember => "RET_LINEUP_ASSIST_HAS_ONLY_MEMBER", - Self::RetLineupAssistCannotSwitch => "RET_LINEUP_ASSIST_CANNOT_SWITCH", - Self::RetLineupAvatarTypeInvalid => "RET_LINEUP_AVATAR_TYPE_INVALID", - Self::RetLineupNameUtf8Error => "RET_LINEUP_NAME_UTF8_ERROR", - Self::RetLineupLeaderLock => "RET_LINEUP_LEADER_LOCK", - Self::RetLineupStoryLineNotMatch => "RET_LINEUP_STORY_LINE_NOT_MATCH", - Self::RetLineupAvatarLock => "RET_LINEUP_AVATAR_LOCK", - Self::RetLineupAvatarInvalid => "RET_LINEUP_AVATAR_INVALID", - Self::RetLineupAvatarAlreadyInit => "RET_LINEUP_AVATAR_ALREADY_INIT", - Self::RetLineupLimited => "RET_LINEUP_LIMITED", - Self::RetMailNotExist => "RET_MAIL_NOT_EXIST", - Self::RetMailRangeInvalid => "RET_MAIL_RANGE_INVALID", - Self::RetMailMailIdInvalid => "RET_MAIL_MAIL_ID_INVALID", - Self::RetMailNoMailTakeAttachment => "RET_MAIL_NO_MAIL_TAKE_ATTACHMENT", - Self::RetMailNoMailToDel => "RET_MAIL_NO_MAIL_TO_DEL", - Self::RetMailTypeInvalid => "RET_MAIL_TYPE_INVALID", - Self::RetMailParaInvalid => "RET_MAIL_PARA_INVALID", - Self::RetMailAttachementInvalid => "RET_MAIL_ATTACHEMENT_INVALID", - Self::RetMailTicketInvalid => "RET_MAIL_TICKET_INVALID", - Self::RetMailTicketRepeated => "RET_MAIL_TICKET_REPEATED", - Self::RetStageSettleError => "RET_STAGE_SETTLE_ERROR", - Self::RetStageConfigNotExist => "RET_STAGE_CONFIG_NOT_EXIST", - Self::RetStageNotFound => "RET_STAGE_NOT_FOUND", - Self::RetStageCocoonPropNotValid => "RET_STAGE_COCOON_PROP_NOT_VALID", - Self::RetStageCocoonWaveNotValid => "RET_STAGE_COCOON_WAVE_NOT_VALID", - Self::RetStagePropIdNotEqual => "RET_STAGE_PROP_ID_NOT_EQUAL", - Self::RetStageCocoonWaveOver => "RET_STAGE_COCOON_WAVE_OVER", - Self::RetStageWeekCocoonOverCnt => "RET_STAGE_WEEK_COCOON_OVER_CNT", - Self::RetStageCocoonNotOpen => "RET_STAGE_COCOON_NOT_OPEN", - Self::RetStageTrialNotOpen => "RET_STAGE_TRIAL_NOT_OPEN", - Self::RetStageFarmNotOpen => "RET_STAGE_FARM_NOT_OPEN", - Self::RetStageFarmTypeError => "RET_STAGE_FARM_TYPE_ERROR", - Self::RetStageFarmSweepCd => "RET_STAGE_FARM_SWEEP_CD", - Self::RetStageFarmElementChallengeCntInvalid => { - "RET_STAGE_FARM_ELEMENT_CHALLENGE_CNT_INVALID" - } - Self::RetChapterLock => "RET_CHAPTER_LOCK", - Self::RetChapterChallengeNumNotEnough => { - "RET_CHAPTER_CHALLENGE_NUM_NOT_ENOUGH" - } - Self::RetChapterRewardIdNotExist => "RET_CHAPTER_REWARD_ID_NOT_EXIST", - Self::RetChapterRewardAlreadyTaken => "RET_CHAPTER_REWARD_ALREADY_TAKEN", - Self::RetBattleStageNotMatch => "RET_BATTLE_STAGE_NOT_MATCH", - Self::RetInBattleNow => "RET_IN_BATTLE_NOW", - Self::RetBattleCheat => "RET_BATTLE_CHEAT", - Self::RetBattleFail => "RET_BATTLE_FAIL", - Self::RetBattleNoLineup => "RET_BATTLE_NO_LINEUP", - Self::RetBattleLineupEmpty => "RET_BATTLE_LINEUP_EMPTY", - Self::RetBattleVersionNotMatch => "RET_BATTLE_VERSION_NOT_MATCH", - Self::RetBattleQuitByServer => "RET_BATTLE_QUIT_BY_SERVER", - Self::RetInBattleCheck => "RET_IN_BATTLE_CHECK", - Self::RetBattleCheckNeedRetry => "RET_BATTLE_CHECK_NEED_RETRY", - Self::RetBattleCostTimeCheckFail => "RET_BATTLE_COST_TIME_CHECK_FAIL", - Self::RetLackExchangeStaminaTimes => "RET_LACK_EXCHANGE_STAMINA_TIMES", - Self::RetLackStamina => "RET_LACK_STAMINA", - Self::RetStaminaFull => "RET_STAMINA_FULL", - Self::RetAuthkeySignTypeError => "RET_AUTHKEY_SIGN_TYPE_ERROR", - Self::RetAuthkeySignVerError => "RET_AUTHKEY_SIGN_VER_ERROR", - Self::RetNicknameFormatError => "RET_NICKNAME_FORMAT_ERROR", - Self::RetSensitiveWords => "RET_SENSITIVE_WORDS", - Self::RetLevelRewardHasTaken => "RET_LEVEL_REWARD_HAS_TAKEN", - Self::RetLevelRewardLevelError => "RET_LEVEL_REWARD_LEVEL_ERROR", - Self::RetLanguageInvalid => "RET_LANGUAGE_INVALID", - Self::RetNicknameInCd => "RET_NICKNAME_IN_CD", - Self::RetGameplayBirthdayInvalid => "RET_GAMEPLAY_BIRTHDAY_INVALID", - Self::RetGameplayBirthdayAlreadySet => "RET_GAMEPLAY_BIRTHDAY_ALREADY_SET", - Self::RetNicknameUtf8Error => "RET_NICKNAME_UTF8_ERROR", - Self::RetNicknameDigitLimitError => "RET_NICKNAME_DIGIT_LIMIT_ERROR", - Self::RetSensitiveWordsPlatformError => "RET_SENSITIVE_WORDS_PLATFORM_ERROR", - Self::RetPlayerSettingTypeInvalid => "RET_PLAYER_SETTING_TYPE_INVALID", - Self::RetMazeLackTicket => "RET_MAZE_LACK_TICKET", - Self::RetMazeNotUnlock => "RET_MAZE_NOT_UNLOCK", - Self::RetMazeNoAbility => "RET_MAZE_NO_ABILITY", - Self::RetMazeNoPlane => "RET_MAZE_NO_PLANE", - Self::RetMazeMapNotExist => "RET_MAZE_MAP_NOT_EXIST", - Self::RetMazeMpNotEnough => "RET_MAZE_MP_NOT_ENOUGH", - Self::RetSpringNotEnable => "RET_SPRING_NOT_ENABLE", - Self::RetSpringTooFar => "RET_SPRING_TOO_FAR", - Self::RetNotInMaze => "RET_NOT_IN_MAZE", - Self::RetMazeTimeOfDayTypeError => "RET_MAZE_TIME_OF_DAY_TYPE_ERROR", - Self::RetSceneTransferLockedByTask => "RET_SCENE_TRANSFER_LOCKED_BY_TASK", - Self::RetPlotNotUnlock => "RET_PLOT_NOT_UNLOCK", - Self::RetMissionNotExist => "RET_MISSION_NOT_EXIST", - Self::RetMissionAlreadyDone => "RET_MISSION_ALREADY_DONE", - Self::RetDailyTaskNotFinish => "RET_DAILY_TASK_NOT_FINISH", - Self::RetDailyTaskRewardHasTaken => "RET_DAILY_TASK_REWARD_HAS_TAKEN", - Self::RetMissionNotFinish => "RET_MISSION_NOT_FINISH", - Self::RetMissionNotDoing => "RET_MISSION_NOT_DOING", - Self::RetMissionFinishWayNotMatch => "RET_MISSION_FINISH_WAY_NOT_MATCH", - Self::RetMissionSceneNotMatch => "RET_MISSION_SCENE_NOT_MATCH", - Self::RetMissionCustomValueNotValid => "RET_MISSION_CUSTOM_VALUE_NOT_VALID", - Self::RetMissionSubMissionNotMatch => "RET_MISSION_SUB_MISSION_NOT_MATCH", - Self::RetAdventureMapNotExist => "RET_ADVENTURE_MAP_NOT_EXIST", - Self::RetSceneEntityNotExist => "RET_SCENE_ENTITY_NOT_EXIST", - Self::RetNotInScene => "RET_NOT_IN_SCENE", - Self::RetSceneMonsterNotExist => "RET_SCENE_MONSTER_NOT_EXIST", - Self::RetInteractConfigNotExist => "RET_INTERACT_CONFIG_NOT_EXIST", - Self::RetUnsupportedPropState => "RET_UNSUPPORTED_PROP_STATE", - Self::RetSceneEntryIdNotMatch => "RET_SCENE_ENTRY_ID_NOT_MATCH", - Self::RetSceneEntityMoveCheckFailed => "RET_SCENE_ENTITY_MOVE_CHECK_FAILED", - Self::RetAssistMonsterCountLimit => "RET_ASSIST_MONSTER_COUNT_LIMIT", - Self::RetSceneUseSkillFail => "RET_SCENE_USE_SKILL_FAIL", - Self::RetPropIsHidden => "RET_PROP_IS_HIDDEN", - Self::RetLoadingSuccAlready => "RET_LOADING_SUCC_ALREADY", - Self::RetSceneEntityTypeInvalid => "RET_SCENE_ENTITY_TYPE_INVALID", - Self::RetInteractTypeInvalid => "RET_INTERACT_TYPE_INVALID", - Self::RetInteractNotInRegion => "RET_INTERACT_NOT_IN_REGION", - Self::RetInteractSubTypeInvalid => "RET_INTERACT_SUB_TYPE_INVALID", - Self::RetNotLeaderEntity => "RET_NOT_LEADER_ENTITY", - Self::RetMonsterIsNotFarmElement => "RET_MONSTER_IS_NOT_FARM_ELEMENT", - Self::RetMonsterConfigNotExist => "RET_MONSTER_CONFIG_NOT_EXIST", - Self::RetAvatarHpAlreadyFull => "RET_AVATAR_HP_ALREADY_FULL", - Self::RetCurInteractEntityNotMatch => "RET_CUR_INTERACT_ENTITY_NOT_MATCH", - Self::RetPlaneTypeNotAllow => "RET_PLANE_TYPE_NOT_ALLOW", - Self::RetGroupNotExist => "RET_GROUP_NOT_EXIST", - Self::RetGroupSaveDataInCd => "RET_GROUP_SAVE_DATA_IN_CD", - Self::RetGroupSaveLenghReachMax => "RET_GROUP_SAVE_LENGH_REACH_MAX", - Self::RetRecentElementNotExist => "RET_RECENT_ELEMENT_NOT_EXIST", - Self::RetRecentElementStageNotMatch => "RET_RECENT_ELEMENT_STAGE_NOT_MATCH", - Self::RetScenePositionVersionNotMatch => { - "RET_SCENE_POSITION_VERSION_NOT_MATCH" - } - Self::RetGameplayCounterNotExist => "RET_GAMEPLAY_COUNTER_NOT_EXIST", - Self::RetGameplayCounterNotEnough => "RET_GAMEPLAY_COUNTER_NOT_ENOUGH", - Self::RetGroupStateNotMatch => "RET_GROUP_STATE_NOT_MATCH", - Self::RetSceneEntityPosNotMatch => "RET_SCENE_ENTITY_POS_NOT_MATCH", - Self::RetGroupStateCustomSaveDataOff => { - "RET_GROUP_STATE_CUSTOM_SAVE_DATA_OFF" - } - Self::RetSceneNotMatch => "RET_SCENE_NOT_MATCH", - Self::RetPropTypeInvalid => "RET_PROP_TYPE_INVALID", - Self::RetNotInCorrectScene => "RET_NOT_IN_CORRECT_SCENE", - Self::RetNotInCorrectDimension => "RET_NOT_IN_CORRECT_DIMENSION", - Self::RetNotCorrectGroupPropertyName => "RET_NOT_CORRECT_GROUP_PROPERTY_NAME", - Self::RetBuyTimesLimit => "RET_BUY_TIMES_LIMIT", - Self::RetBuyLimitType => "RET_BUY_LIMIT_TYPE", - Self::RetShopNotOpen => "RET_SHOP_NOT_OPEN", - Self::RetGoodsNotOpen => "RET_GOODS_NOT_OPEN", - Self::RetCityLevelRewardTaken => "RET_CITY_LEVEL_REWARD_TAKEN", - Self::RetCityLevelNotMeet => "RET_CITY_LEVEL_NOT_MEET", - Self::RetSingleBuyLimit => "RET_SINGLE_BUY_LIMIT", - Self::RetTutorialNotUnlock => "RET_TUTORIAL_NOT_UNLOCK", - Self::RetTutorialUnlockAlready => "RET_TUTORIAL_UNLOCK_ALREADY", - Self::RetTutorialFinishAlready => "RET_TUTORIAL_FINISH_ALREADY", - Self::RetTutorialPreNotUnlock => "RET_TUTORIAL_PRE_NOT_UNLOCK", - Self::RetTutorialPlayerLevelNotMatch => "RET_TUTORIAL_PLAYER_LEVEL_NOT_MATCH", - Self::RetTutorialTutorialNotFound => "RET_TUTORIAL_TUTORIAL_NOT_FOUND", - Self::RetChallengeNotExist => "RET_CHALLENGE_NOT_EXIST", - Self::RetChallengeNotUnlock => "RET_CHALLENGE_NOT_UNLOCK", - Self::RetChallengeAlready => "RET_CHALLENGE_ALREADY", - Self::RetChallengeLineupEditForbidden => { - "RET_CHALLENGE_LINEUP_EDIT_FORBIDDEN" - } - Self::RetChallengeLineupEmpty => "RET_CHALLENGE_LINEUP_EMPTY", - Self::RetChallengeNotDoing => "RET_CHALLENGE_NOT_DOING", - Self::RetChallengeNotFinish => "RET_CHALLENGE_NOT_FINISH", - Self::RetChallengeTargetNotFinish => "RET_CHALLENGE_TARGET_NOT_FINISH", - Self::RetChallengeTargetRewardTaken => "RET_CHALLENGE_TARGET_REWARD_TAKEN", - Self::RetChallengeTimeNotValid => "RET_CHALLENGE_TIME_NOT_VALID", - Self::RetChallengeStarsCountNotMeet => "RET_CHALLENGE_STARS_COUNT_NOT_MEET", - Self::RetChallengeStarsRewardTaken => "RET_CHALLENGE_STARS_REWARD_TAKEN", - Self::RetChallengeStarsNotExist => "RET_CHALLENGE_STARS_NOT_EXIST", - Self::RetChallengeCurSceneNotEntryFloor => { - "RET_CHALLENGE_CUR_SCENE_NOT_ENTRY_FLOOR" - } - Self::RetChallengeNoTeamArchive => "RET_CHALLENGE_NO_TEAM_ARCHIVE", - Self::RetChallengeLineupAvatarTypeInvalid => { - "RET_CHALLENGE_LINEUP_AVATAR_TYPE_INVALID" - } - Self::RetChallengeLineupRecommendInCd => { - "RET_CHALLENGE_LINEUP_RECOMMEND_IN_CD" - } - Self::RetBasicTypeAlready => "RET_BASIC_TYPE_ALREADY", - Self::RetNoBasicType => "RET_NO_BASIC_TYPE", - Self::RetNotChooseBasicType => "RET_NOT_CHOOSE_BASIC_TYPE", - Self::RetNotFuncClose => "RET_NOT_FUNC_CLOSE", - Self::RetNotChooseGender => "RET_NOT_CHOOSE_GENDER", - Self::RetNotReqUnlockBasicType => "RET_NOT_REQ_UNLOCK_BASIC_TYPE", - Self::RetAvatarPathLocked => "RET_AVATAR_PATH_LOCKED", - Self::RetRogueStatusNotMatch => "RET_ROGUE_STATUS_NOT_MATCH", - Self::RetRogueSelectBuffNotExist => "RET_ROGUE_SELECT_BUFF_NOT_EXIST", - Self::RetRogueCoinNotEnough => "RET_ROGUE_COIN_NOT_ENOUGH", - Self::RetRogueStaminaNotEnough => "RET_ROGUE_STAMINA_NOT_ENOUGH", - Self::RetRogueAppraisalCountNotEnough => { - "RET_ROGUE_APPRAISAL_COUNT_NOT_ENOUGH" - } - Self::RetRoguePropAlreadyUsed => "RET_ROGUE_PROP_ALREADY_USED", - Self::RetRogueRecordAlreadySaved => "RET_ROGUE_RECORD_ALREADY_SAVED", - Self::RetRogueRollBuffMaxCount => "RET_ROGUE_ROLL_BUFF_MAX_COUNT", - Self::RetRoguePickAvatarInvalid => "RET_ROGUE_PICK_AVATAR_INVALID", - Self::RetRogueQuestExpire => "RET_ROGUE_QUEST_EXPIRE", - Self::RetRogueQuestRewardAlready => "RET_ROGUE_QUEST_REWARD_ALREADY", - Self::RetRogueReviveCountNotEnough => "RET_ROGUE_REVIVE_COUNT_NOT_ENOUGH", - Self::RetRogueAreaInvalid => "RET_ROGUE_AREA_INVALID", - Self::RetRogueScoreRewardPoolInvalid => "RET_ROGUE_SCORE_REWARD_POOL_INVALID", - Self::RetRogueScoreRewardRowInvalid => "RET_ROGUE_SCORE_REWARD_ROW_INVALID", - Self::RetRogueAeonLevelNotMeet => "RET_ROGUE_AEON_LEVEL_NOT_MEET", - Self::RetRogueAeonLevelRewardAlreadyTaken => { - "RET_ROGUE_AEON_LEVEL_REWARD_ALREADY_TAKEN" - } - Self::RetRogueAeonConfigNotExist => "RET_ROGUE_AEON_CONFIG_NOT_EXIST", - Self::RetRogueTrialAvatarInvalid => "RET_ROGUE_TRIAL_AVATAR_INVALID", - Self::RetRogueHandbookRewardAlreadyTaken => { - "RET_ROGUE_HANDBOOK_REWARD_ALREADY_TAKEN" - } - Self::RetRogueRoomTypeNotMatch => "RET_ROGUE_ROOM_TYPE_NOT_MATCH", - Self::RetRogueShopGoodNotFound => "RET_ROGUE_SHOP_GOOD_NOT_FOUND", - Self::RetRogueShopGoodAlreadyBought => "RET_ROGUE_SHOP_GOOD_ALREADY_BOUGHT", - Self::RetRogueShopGoodAlreadyOwn => "RET_ROGUE_SHOP_GOOD_ALREADY_OWN", - Self::RetRogueShopMiracleNotExist => "RET_ROGUE_SHOP_MIRACLE_NOT_EXIST", - Self::RetRogueShopNotExist => "RET_ROGUE_SHOP_NOT_EXIST", - Self::RetRogueShopCannotRefresh => "RET_ROGUE_SHOP_CANNOT_REFRESH", - Self::RetRogueSelectBuffCertainMismatch => { - "RET_ROGUE_SELECT_BUFF_CERTAIN_MISMATCH" - } - Self::RetRogueActionQueueNotEmptyBattle => { - "RET_ROGUE_ACTION_QUEUE_NOT_EMPTY_BATTLE" - } - Self::RetRogueActionQueueNotEmptyOthers => { - "RET_ROGUE_ACTION_QUEUE_NOT_EMPTY_OTHERS" - } - Self::RetMissionEventConfigNotExist => "RET_MISSION_EVENT_CONFIG_NOT_EXIST", - Self::RetMissionEventNotClient => "RET_MISSION_EVENT_NOT_CLIENT", - Self::RetMissionEventFinished => "RET_MISSION_EVENT_FINISHED", - Self::RetMissionEventDoing => "RET_MISSION_EVENT_DOING", - Self::RetHasChallengeMissionEvent => "RET_HAS_CHALLENGE_MISSION_EVENT", - Self::RetNotChallengeMissionEvent => "RET_NOT_CHALLENGE_MISSION_EVENT", - Self::RetGachaIdNotExist => "RET_GACHA_ID_NOT_EXIST", - Self::RetGachaNumInvalid => "RET_GACHA_NUM_INVALID", - Self::RetGachaFirstGachaMustOne => "RET_GACHA_FIRST_GACHA_MUST_ONE", - Self::RetGachaReqDuplicated => "RET_GACHA_REQ_DUPLICATED", - Self::RetGachaNotInSchedule => "RET_GACHA_NOT_IN_SCHEDULE", - Self::RetGachaNewbieClose => "RET_GACHA_NEWBIE_CLOSE", - Self::RetGachaTodayLimited => "RET_GACHA_TODAY_LIMITED", - Self::RetGachaNotSupport => "RET_GACHA_NOT_SUPPORT", - Self::RetGachaCeilingNotEnough => "RET_GACHA_CEILING_NOT_ENOUGH", - Self::RetGachaCeilingClose => "RET_GACHA_CEILING_CLOSE", - Self::RetGachaLocked => "RET_GACHA_LOCKED", - Self::RetGachaDecideItemTypeInvalid => "RET_GACHA_DECIDE_ITEM_TYPE_INVALID", - Self::RetGachaDecideItemIdInvalid => "RET_GACHA_DECIDE_ITEM_ID_INVALID", - Self::RetNotInRaid => "RET_NOT_IN_RAID", - Self::RetRaidDoing => "RET_RAID_DOING", - Self::RetNotProp => "RET_NOT_PROP", - Self::RetRaidIdNotMatch => "RET_RAID_ID_NOT_MATCH", - Self::RetRaidRestartNotMatch => "RET_RAID_RESTART_NOT_MATCH", - Self::RetRaidLimit => "RET_RAID_LIMIT", - Self::RetRaidAvatarListEmpty => "RET_RAID_AVATAR_LIST_EMPTY", - Self::RetRaidAvatarNotExist => "RET_RAID_AVATAR_NOT_EXIST", - Self::RetChallengeRaidRewardAlready => "RET_CHALLENGE_RAID_REWARD_ALREADY", - Self::RetChallengeRaidScoreNotReach => "RET_CHALLENGE_RAID_SCORE_NOT_REACH", - Self::RetChallengeRaidNotOpen => "RET_CHALLENGE_RAID_NOT_OPEN", - Self::RetRaidFinished => "RET_RAID_FINISHED", - Self::RetRaidWorldLevelNotLock => "RET_RAID_WORLD_LEVEL_NOT_LOCK", - Self::RetRaidCannotUseAssist => "RET_RAID_CANNOT_USE_ASSIST", - Self::RetRaidAvatarNotMatch => "RET_RAID_AVATAR_NOT_MATCH", - Self::RetRaidCanNotSave => "RET_RAID_CAN_NOT_SAVE", - Self::RetRaidNoSave => "RET_RAID_NO_SAVE", - Self::RetActivityRaidNotOpen => "RET_ACTIVITY_RAID_NOT_OPEN", - Self::RetRaidAvatarCaptainNotExist => "RET_RAID_AVATAR_CAPTAIN_NOT_EXIST", - Self::RetRaidStoryLineNotMatch => "RET_RAID_STORY_LINE_NOT_MATCH", - Self::RetTalkEventAlreadyTaken => "RET_TALK_EVENT_ALREADY_TAKEN", - Self::RetNpcAlreadyMeet => "RET_NPC_ALREADY_MEET", - Self::RetNpcNotInConfig => "RET_NPC_NOT_IN_CONFIG", - Self::RetDialogueGroupDismatch => "RET_DIALOGUE_GROUP_DISMATCH", - Self::RetDialogueEventInvalid => "RET_DIALOGUE_EVENT_INVALID", - Self::RetTalkEventTakeProtoNotMatch => "RET_TALK_EVENT_TAKE_PROTO_NOT_MATCH", - Self::RetTalkEventNotValid => "RET_TALK_EVENT_NOT_VALID", - Self::RetExpeditionConfigNotExist => "RET_EXPEDITION_CONFIG_NOT_EXIST", - Self::RetExpeditionRewardConfigNotExist => { - "RET_EXPEDITION_REWARD_CONFIG_NOT_EXIST" - } - Self::RetExpeditionNotUnlocked => "RET_EXPEDITION_NOT_UNLOCKED", - Self::RetExpeditionAlreadyAccepted => "RET_EXPEDITION_ALREADY_ACCEPTED", - Self::RetExpeditionRepeatedAvatar => "RET_EXPEDITION_REPEATED_AVATAR", - Self::RetAvatarAlreadyDispatched => "RET_AVATAR_ALREADY_DISPATCHED", - Self::RetExpeditionNotAccepted => "RET_EXPEDITION_NOT_ACCEPTED", - Self::RetExpeditionNotFinish => "RET_EXPEDITION_NOT_FINISH", - Self::RetExpeditionAlreadyFinish => "RET_EXPEDITION_ALREADY_FINISH", - Self::RetExpeditionTeamCountLimit => "RET_EXPEDITION_TEAM_COUNT_LIMIT", - Self::RetExpeditionAvatarNumNotMatch => "RET_EXPEDITION_AVATAR_NUM_NOT_MATCH", - Self::RetExpeditionNotOpen => "RET_EXPEDITION_NOT_OPEN", - Self::RetExpeditionFriendAvatarNotValid => { - "RET_EXPEDITION_FRIEND_AVATAR_NOT_VALID" - } - Self::RetExpeditionNotPublished => "RET_EXPEDITION_NOT_PUBLISHED", - Self::RetLoginActivityHasTaken => "RET_LOGIN_ACTIVITY_HAS_TAKEN", - Self::RetLoginActivityDaysLack => "RET_LOGIN_ACTIVITY_DAYS_LACK", - Self::RetTrialActivityRewardAlreadyTake => { - "RET_TRIAL_ACTIVITY_REWARD_ALREADY_TAKE" - } - Self::RetTrialActivityStageNotFinish => "RET_TRIAL_ACTIVITY_STAGE_NOT_FINISH", - Self::RetMaterialSubmitActivityHasTaken => { - "RET_MATERIAL_SUBMIT_ACTIVITY_HAS_TAKEN" - } - Self::RetMaterialSubmitActivityMaterialNotSubmitted => { - "RET_MATERIAL_SUBMIT_ACTIVITY_MATERIAL_NOT_SUBMITTED" - } - Self::RetMaterialSubmitActivityMaterialAlreadySubmitted => { - "RET_MATERIAL_SUBMIT_ACTIVITY_MATERIAL_ALREADY_SUBMITTED" - } - Self::RetFantasticStoryActivityStoryError => { - "RET_FANTASTIC_STORY_ACTIVITY_STORY_ERROR" - } - Self::RetFantasticStoryActivityStoryNotOpen => { - "RET_FANTASTIC_STORY_ACTIVITY_STORY_NOT_OPEN" - } - Self::RetFantasticStoryActivityBattleError => { - "RET_FANTASTIC_STORY_ACTIVITY_BATTLE_ERROR" - } - Self::RetFantasticStoryActivityBattleNotOpen => { - "RET_FANTASTIC_STORY_ACTIVITY_BATTLE_NOT_OPEN" - } - Self::RetFantasticStoryActivityBattleAvatarError => { - "RET_FANTASTIC_STORY_ACTIVITY_BATTLE_AVATAR_ERROR" - } - Self::RetFantasticStoryActivityBattleBuffError => { - "RET_FANTASTIC_STORY_ACTIVITY_BATTLE_BUFF_ERROR" - } - Self::RetFantasticStoryActivityPreBattleScoreNotEnough => { - "RET_FANTASTIC_STORY_ACTIVITY_PRE_BATTLE_SCORE_NOT_ENOUGH" - } - Self::RetTrialActivityAlreadyInTrialActivity => { - "RET_TRIAL_ACTIVITY_ALREADY_IN_TRIAL_ACTIVITY" - } - Self::RetCommonActivityNotOpen => "RET_COMMON_ACTIVITY_NOT_OPEN", - Self::RetBenefitNotReady => "RET_BENEFIT_NOT_READY", - Self::RetCommonActivityBusy => "RET_COMMON_ACTIVITY_BUSY", - Self::RetAvatarDeliverRewardPhaseError => { - "RET_AVATAR_DELIVER_REWARD_PHASE_ERROR" - } - Self::RetMessageConfigNotExist => "RET_MESSAGE_CONFIG_NOT_EXIST", - Self::RetMessageSectionNotTake => "RET_MESSAGE_SECTION_NOT_TAKE", - Self::RetMessageGroupNotTake => "RET_MESSAGE_GROUP_NOT_TAKE", - Self::RetMessageSectionIdNotMatch => "RET_MESSAGE_SECTION_ID_NOT_MATCH", - Self::RetMessageSectionCanNotFinish => "RET_MESSAGE_SECTION_CAN_NOT_FINISH", - Self::RetMessageItemCanNotFinish => "RET_MESSAGE_ITEM_CAN_NOT_FINISH", - Self::RetMessageItemRaidCanNotFinish => { - "RET_MESSAGE_ITEM_RAID_CAN_NOT_FINISH" - } - Self::RetFriendAlreadyIsFriend => "RET_FRIEND_ALREADY_IS_FRIEND", - Self::RetFriendIsNotFriend => "RET_FRIEND_IS_NOT_FRIEND", - Self::RetFriendApplyExpire => "RET_FRIEND_APPLY_EXPIRE", - Self::RetFriendInBlacklist => "RET_FRIEND_IN_BLACKLIST", - Self::RetFriendNotInBlacklist => "RET_FRIEND_NOT_IN_BLACKLIST", - Self::RetFriendNumberLimit => "RET_FRIEND_NUMBER_LIMIT", - Self::RetFriendBlacklistNumberLimit => "RET_FRIEND_BLACKLIST_NUMBER_LIMIT", - Self::RetFriendDailyApplyLimit => "RET_FRIEND_DAILY_APPLY_LIMIT", - Self::RetFriendInHandleLimit => "RET_FRIEND_IN_HANDLE_LIMIT", - Self::RetFriendApplyInCd => "RET_FRIEND_APPLY_IN_CD", - Self::RetFriendRemarkNameFormatError => "RET_FRIEND_REMARK_NAME_FORMAT_ERROR", - Self::RetFriendPlayerNotFound => "RET_FRIEND_PLAYER_NOT_FOUND", - Self::RetFriendInTargetBlacklist => "RET_FRIEND_IN_TARGET_BLACKLIST", - Self::RetFriendTargetNumberLimit => "RET_FRIEND_TARGET_NUMBER_LIMIT", - Self::RetAssistQueryTooFast => "RET_ASSIST_QUERY_TOO_FAST", - Self::RetAssistNotExist => "RET_ASSIST_NOT_EXIST", - Self::RetAssistUsedAlready => "RET_ASSIST_USED_ALREADY", - Self::RetFriendReportReasonFormatError => { - "RET_FRIEND_REPORT_REASON_FORMAT_ERROR" - } - Self::RetFriendReportSensitiveWords => "RET_FRIEND_REPORT_SENSITIVE_WORDS", - Self::RetAssistUsedTimesOver => "RET_ASSIST_USED_TIMES_OVER", - Self::RetAssistQuitAlready => "RET_ASSIST_QUIT_ALREADY", - Self::RetAssistAvatarInLineup => "RET_ASSIST_AVATAR_IN_LINEUP", - Self::RetAssistNoReward => "RET_ASSIST_NO_REWARD", - Self::RetFriendSearchNumLimit => "RET_FRIEND_SEARCH_NUM_LIMIT", - Self::RetFriendSearchInCd => "RET_FRIEND_SEARCH_IN_CD", - Self::RetFriendRemarkNameUtf8Error => "RET_FRIEND_REMARK_NAME_UTF8_ERROR", - Self::RetFriendReportReasonUtf8Error => "RET_FRIEND_REPORT_REASON_UTF8_ERROR", - Self::RetAssistSetAlready => "RET_ASSIST_SET_ALREADY", - Self::RetFriendTargetForbidOtherApply => { - "RET_FRIEND_TARGET_FORBID_OTHER_APPLY" - } - Self::RetFriendMarkedCntMax => "RET_FRIEND_MARKED_CNT_MAX", - Self::RetFriendMarkedAlready => "RET_FRIEND_MARKED_ALREADY", - Self::RetFriendNotMarked => "RET_FRIEND_NOT_MARKED", - Self::RetFriendChallengeLineupRecommendInCd => { - "RET_FRIEND_CHALLENGE_LINEUP_RECOMMEND_IN_CD" - } - Self::RetViewPlayerCardInCd => "RET_VIEW_PLAYER_CARD_IN_CD", - Self::RetViewPlayerBattleRecordInCd => "RET_VIEW_PLAYER_BATTLE_RECORD_IN_CD", - Self::RetAssistListStrangerConfigError => { - "RET_ASSIST_LIST_STRANGER_CONFIG_ERROR" - } - Self::RetPlayerBoardHeadIconNotExist => { - "RET_PLAYER_BOARD_HEAD_ICON_NOT_EXIST" - } - Self::RetPlayerBoardHeadIconLocked => "RET_PLAYER_BOARD_HEAD_ICON_LOCKED", - Self::RetPlayerBoardHeadIconAlreadyUnlocked => { - "RET_PLAYER_BOARD_HEAD_ICON_ALREADY_UNLOCKED" - } - Self::RetPlayerBoardDisplayAvatarNotExist => { - "RET_PLAYER_BOARD_DISPLAY_AVATAR_NOT_EXIST" - } - Self::RetPlayerBoardDisplayAvatarExceedLimit => { - "RET_PLAYER_BOARD_DISPLAY_AVATAR_EXCEED_LIMIT" - } - Self::RetPlayerBoardDisplayRepeatedAvatar => { - "RET_PLAYER_BOARD_DISPLAY_REPEATED_AVATAR" - } - Self::RetPlayerBoardDisplayAvatarSamePos => { - "RET_PLAYER_BOARD_DISPLAY_AVATAR_SAME_POS" - } - Self::RetPlayerBoardDisplayAvatarLocked => { - "RET_PLAYER_BOARD_DISPLAY_AVATAR_LOCKED" - } - Self::RetSignatureLengthExceedLimit => "RET_SIGNATURE_LENGTH_EXCEED_LIMIT", - Self::RetSignatureSensitiveWords => "RET_SIGNATURE_SENSITIVE_WORDS", - Self::RetPlayerBoardAssistAvatarNotExist => { - "RET_PLAYER_BOARD_ASSIST_AVATAR_NOT_EXIST" - } - Self::RetPlayerBoardAssistAvatarLocked => { - "RET_PLAYER_BOARD_ASSIST_AVATAR_LOCKED" - } - Self::RetSignatureUtf8Error => "RET_SIGNATURE_UTF8_ERROR", - Self::RetPlayerBoardAssistAvatarCntError => { - "RET_PLAYER_BOARD_ASSIST_AVATAR_CNT_ERROR" - } - Self::RetPlayerBoardPersonalCardNotExist => { - "RET_PLAYER_BOARD_PERSONAL_CARD_NOT_EXIST" - } - Self::RetPlayerBoardPersonalCardLocked => { - "RET_PLAYER_BOARD_PERSONAL_CARD_LOCKED" - } - Self::RetPlayerBoardPersonalNoChange => "RET_PLAYER_BOARD_PERSONAL_NO_CHANGE", - Self::RetBattlePassTierNotValid => "RET_BATTLE_PASS_TIER_NOT_VALID", - Self::RetBattlePassLevelNotMeet => "RET_BATTLE_PASS_LEVEL_NOT_MEET", - Self::RetBattlePassRewardTakeAlready => "RET_BATTLE_PASS_REWARD_TAKE_ALREADY", - Self::RetBattlePassNotPremium => "RET_BATTLE_PASS_NOT_PREMIUM", - Self::RetBattlePassNotDoing => "RET_BATTLE_PASS_NOT_DOING", - Self::RetBattlePassLevelInvalid => "RET_BATTLE_PASS_LEVEL_INVALID", - Self::RetBattlePassNotUnlock => "RET_BATTLE_PASS_NOT_UNLOCK", - Self::RetBattlePassNoReward => "RET_BATTLE_PASS_NO_REWARD", - Self::RetBattlePassQuestNotValid => "RET_BATTLE_PASS_QUEST_NOT_VALID", - Self::RetBattlePassNotChooseOptional => "RET_BATTLE_PASS_NOT_CHOOSE_OPTIONAL", - Self::RetBattlePassNotTakeReward => "RET_BATTLE_PASS_NOT_TAKE_REWARD", - Self::RetBattlePassOptionalNotValid => "RET_BATTLE_PASS_OPTIONAL_NOT_VALID", - Self::RetBattlePassBuyAlready => "RET_BATTLE_PASS_BUY_ALREADY", - Self::RetBattlePassNearEnd => "RET_BATTLE_PASS_NEAR_END", - Self::RetMusicLocked => "RET_MUSIC_LOCKED", - Self::RetMusicNotExist => "RET_MUSIC_NOT_EXIST", - Self::RetMusicUnlockFailed => "RET_MUSIC_UNLOCK_FAILED", - Self::RetPunkLordLackSummonTimes => "RET_PUNK_LORD_LACK_SUMMON_TIMES", - Self::RetPunkLordAttackingMonsterLimit => { - "RET_PUNK_LORD_ATTACKING_MONSTER_LIMIT" - } - Self::RetPunkLordMonsterNotExist => "RET_PUNK_LORD_MONSTER_NOT_EXIST", - Self::RetPunkLordMonsterAlreadyShared => { - "RET_PUNK_LORD_MONSTER_ALREADY_SHARED" - } - Self::RetPunkLordMonsterExpired => "RET_PUNK_LORD_MONSTER_EXPIRED", - Self::RetPunkLordSelfMonsterAttackLimit => { - "RET_PUNK_LORD_SELF_MONSTER_ATTACK_LIMIT" - } - Self::RetPunkLordLackSupportTimes => "RET_PUNK_LORD_LACK_SUPPORT_TIMES", - Self::RetPunkLordMonsterAlreadyKilled => { - "RET_PUNK_LORD_MONSTER_ALREADY_KILLED" - } - Self::RetPunkLordMonsterAttackerLimit => { - "RET_PUNK_LORD_MONSTER_ATTACKER_LIMIT" - } - Self::RetPunkLordWorldLevleNotValid => "RET_PUNK_LORD_WORLD_LEVLE_NOT_VALID", - Self::RetPunkLordRewardLevleNotExist => { - "RET_PUNK_LORD_REWARD_LEVLE_NOT_EXIST" - } - Self::RetPunkLordPointNotMeet => "RET_PUNK_LORD_POINT_NOT_MEET", - Self::RetPunkLordInAttacking => "RET_PUNK_LORD_IN_ATTACKING", - Self::RetPunkLordOperationInCd => "RET_PUNK_LORD_OPERATION_IN_CD", - Self::RetPunkLordRewardAlreadyTaken => "RET_PUNK_LORD_REWARD_ALREADY_TAKEN", - Self::RetPunkLordOverBonusRewardLimit => { - "RET_PUNK_LORD_OVER_BONUS_REWARD_LIMIT" - } - Self::RetPunkLordNotInSchedule => "RET_PUNK_LORD_NOT_IN_SCHEDULE", - Self::RetPunkLordMonsterNotAttacked => "RET_PUNK_LORD_MONSTER_NOT_ATTACKED", - Self::RetPunkLordMonsterNotKilled => "RET_PUNK_LORD_MONSTER_NOT_KILLED", - Self::RetPunkLordMonsterKilledScoreAlreadyTake => { - "RET_PUNK_LORD_MONSTER_KILLED_SCORE_ALREADY_TAKE" - } - Self::RetPunkLordRewardLevleAlreadyTake => { - "RET_PUNK_LORD_REWARD_LEVLE_ALREADY_TAKE" - } - Self::RetDailyActiveLevelInvalid => "RET_DAILY_ACTIVE_LEVEL_INVALID", - Self::RetDailyActiveLevelRewardAlreadyTaken => { - "RET_DAILY_ACTIVE_LEVEL_REWARD_ALREADY_TAKEN" - } - Self::RetDailyActiveLevelApNotEnough => { - "RET_DAILY_ACTIVE_LEVEL_AP_NOT_ENOUGH" - } - Self::RetDailyMeetPam => "RET_DAILY_MEET_PAM", - Self::RetReplayIdNotMatch => "RET_REPLAY_ID_NOT_MATCH", - Self::RetReplayReqNotValid => "RET_REPLAY_REQ_NOT_VALID", - Self::RetFightActivityDifficultyLevelNotPassed => { - "RET_FIGHT_ACTIVITY_DIFFICULTY_LEVEL_NOT_PASSED" - } - Self::RetFightActivityDifficultyLevelRewardAlreadyTake => { - "RET_FIGHT_ACTIVITY_DIFFICULTY_LEVEL_REWARD_ALREADY_TAKE" - } - Self::RetFightActivityStageNotOpen => "RET_FIGHT_ACTIVITY_STAGE_NOT_OPEN", - Self::RetFightActivityLevelNotUnlock => "RET_FIGHT_ACTIVITY_LEVEL_NOT_UNLOCK", - Self::RetTrainVisitorVisitorNotExist => "RET_TRAIN_VISITOR_VISITOR_NOT_EXIST", - Self::RetTrainVisitorBehaviorNotExist => { - "RET_TRAIN_VISITOR_BEHAVIOR_NOT_EXIST" - } - Self::RetTrainVisitorBehaviorFinished => { - "RET_TRAIN_VISITOR_BEHAVIOR_FINISHED" - } - Self::RetTrainVisitorAllBehaviorRewardTaken => { - "RET_TRAIN_VISITOR_ALL_BEHAVIOR_REWARD_TAKEN" - } - Self::RetTrainVisitorGetOnMissionNotFinish => { - "RET_TRAIN_VISITOR_GET_ON_MISSION_NOT_FINISH" - } - Self::RetTrainVisitorNotGetOffOrBeTrainMember => { - "RET_TRAIN_VISITOR_NOT_GET_OFF_OR_BE_TRAIN_MEMBER" - } - Self::RetTextJoinUnknowIsOverride => "RET_TEXT_JOIN_UNKNOW_IS_OVERRIDE", - Self::RetTextJoinIdNotExist => "RET_TEXT_JOIN_ID_NOT_EXIST", - Self::RetTextJoinCanNotOverride => "RET_TEXT_JOIN_CAN_NOT_OVERRIDE", - Self::RetTextJoinItemIdError => "RET_TEXT_JOIN_ITEM_ID_ERROR", - Self::RetTextJoinSensitiveCheckError => "RET_TEXT_JOIN_SENSITIVE_CHECK_ERROR", - Self::RetTextJoinMustOverride => "RET_TEXT_JOIN_MUST_OVERRIDE", - Self::RetTextJoinTextEmpty => "RET_TEXT_JOIN_TEXT_EMPTY", - Self::RetTextJoinTextFormatError => "RET_TEXT_JOIN_TEXT_FORMAT_ERROR", - Self::RetTextJoinTextUtf8Error => "RET_TEXT_JOIN_TEXT_UTF8_ERROR", - Self::RetTextJoinBatchReqIdRepeat => "RET_TEXT_JOIN_BATCH_REQ_ID_REPEAT", - Self::RetTextJoinTypeNotSupportBatchReq => { - "RET_TEXT_JOIN_TYPE_NOT_SUPPORT_BATCH_REQ" - } - Self::RetTextJoinAvatarIdNotExist => "RET_TEXT_JOIN_AVATAR_ID_NOT_EXIST", - Self::RetTextJoinUnknowType => "RET_TEXT_JOIN_UNKNOW_TYPE", - Self::RetPamMissionMissionIdError => "RET_PAM_MISSION_MISSION_ID_ERROR", - Self::RetPamMissionMissionExpire => "RET_PAM_MISSION_MISSION_EXPIRE", - Self::RetChatTypeNotExist => "RET_CHAT_TYPE_NOT_EXIST", - Self::RetMsgTypeNotExist => "RET_MSG_TYPE_NOT_EXIST", - Self::RetChatNoTargetUid => "RET_CHAT_NO_TARGET_UID", - Self::RetChatMsgEmpty => "RET_CHAT_MSG_EMPTY", - Self::RetChatMsgExceedLimit => "RET_CHAT_MSG_EXCEED_LIMIT", - Self::RetChatMsgSensitiveCheckError => "RET_CHAT_MSG_SENSITIVE_CHECK_ERROR", - Self::RetChatMsgUtf8Error => "RET_CHAT_MSG_UTF8_ERROR", - Self::RetChatForbidSwitchOpen => "RET_CHAT_FORBID_SWITCH_OPEN", - Self::RetChatForbid => "RET_CHAT_FORBID", - Self::RetChatMsgIncludeSpecialStr => "RET_CHAT_MSG_INCLUDE_SPECIAL_STR", - Self::RetChatMsgEmojiNotExist => "RET_CHAT_MSG_EMOJI_NOT_EXIST", - Self::RetChatMsgEmojiGenderNotMatch => "RET_CHAT_MSG_EMOJI_GENDER_NOT_MATCH", - Self::RetChatMsgEmojiNotMarked => "RET_CHAT_MSG_EMOJI_NOT_MARKED", - Self::RetChatMsgEmojiAlreadyMarked => "RET_CHAT_MSG_EMOJI_ALREADY_MARKED", - Self::RetChatMsgEmojiMarkedMaxLimit => "RET_CHAT_MSG_EMOJI_MARKED_MAX_LIMIT", - Self::RetBoxingClubChallengeNotOpen => "RET_BOXING_CLUB_CHALLENGE_NOT_OPEN", - Self::RetMuseumNotOpen => "RET_MUSEUM_NOT_OPEN", - Self::RetMuseumTurnCntNotMatch => "RET_MUSEUM_TURN_CNT_NOT_MATCH", - Self::RetMuseumPhaseNotReach => "RET_MUSEUM_PHASE_NOT_REACH", - Self::RetMuseumUnknowStuff => "RET_MUSEUM_UNKNOW_STUFF", - Self::RetMuseumUnknowArea => "RET_MUSEUM_UNKNOW_AREA", - Self::RetMuseumUnknowPos => "RET_MUSEUM_UNKNOW_POS", - Self::RetMuseumStuffAlreadyInArea => "RET_MUSEUM_STUFF_ALREADY_IN_AREA", - Self::RetMuseumStuffNotInArea => "RET_MUSEUM_STUFF_NOT_IN_AREA", - Self::RetMuseumGetNpcRepeat => "RET_MUSEUM_GET_NPC_REPEAT", - Self::RetMuseumGetNpcUnlock => "RET_MUSEUM_GET_NPC_UNLOCK", - Self::RetMuseumGetNpcNotEnough => "RET_MUSEUM_GET_NPC_NOT_ENOUGH", - Self::RetMuseumChangeStuffAreaError => "RET_MUSEUM_CHANGE_STUFF_AREA_ERROR", - Self::RetMuseumNotInit => "RET_MUSEUM_NOT_INIT", - Self::RetMuseumEventError => "RET_MUSEUM_EVENT_ERROR", - Self::RetMuseumUnknowChooseEventId => "RET_MUSEUM_UNKNOW_CHOOSE_EVENT_ID", - Self::RetMuseumEventOrderNotMatch => "RET_MUSEUM_EVENT_ORDER_NOT_MATCH", - Self::RetMuseumEventPhaseNotUnlock => "RET_MUSEUM_EVENT_PHASE_NOT_UNLOCK", - Self::RetMuseumEventMissionNotFound => "RET_MUSEUM_EVENT_MISSION_NOT_FOUND", - Self::RetMuseumAreaLevelUpAlready => "RET_MUSEUM_AREA_LEVEL_UP_ALREADY", - Self::RetMuseumStuffAlreadyUsed => "RET_MUSEUM_STUFF_ALREADY_USED", - Self::RetMuseumEventRoundNotUnlock => "RET_MUSEUM_EVENT_ROUND_NOT_UNLOCK", - Self::RetMuseumStuffInArea => "RET_MUSEUM_STUFF_IN_AREA", - Self::RetMuseumStuffDispatch => "RET_MUSEUM_STUFF_DISPATCH", - Self::RetMuseumIsEnd => "RET_MUSEUM_IS_END", - Self::RetMuseumStuffLeaving => "RET_MUSEUM_STUFF_LEAVING", - Self::RetMuseumEventMissionNotFinish => "RET_MUSEUM_EVENT_MISSION_NOT_FINISH", - Self::RetMuseumCollectRewardNotExist => "RET_MUSEUM_COLLECT_REWARD_NOT_EXIST", - Self::RetMuseumCollectRewardAlreadyTaken => { - "RET_MUSEUM_COLLECT_REWARD_ALREADY_TAKEN" - } - Self::RetMuseumAcceptMissionMaxLimit => "RET_MUSEUM_ACCEPT_MISSION_MAX_LIMIT", - Self::RetRogueChallengeNotOpen => "RET_ROGUE_CHALLENGE_NOT_OPEN", - Self::RetRogueChallengeAssisRefreshLimit => { - "RET_ROGUE_CHALLENGE_ASSIS_REFRESH_LIMIT" - } - Self::RetAlleyNotInit => "RET_ALLEY_NOT_INIT", - Self::RetAlleyNotOpen => "RET_ALLEY_NOT_OPEN", - Self::RetAlleyMapNotExist => "RET_ALLEY_MAP_NOT_EXIST", - Self::RetAlleyEmptyPosList => "RET_ALLEY_EMPTY_POS_LIST", - Self::RetAlleyLinePosInvalid => "RET_ALLEY_LINE_POS_INVALID", - Self::RetAlleyShopNotUnlock => "RET_ALLEY_SHOP_NOT_UNLOCK", - Self::RetAlleyDepotFull => "RET_ALLEY_DEPOT_FULL", - Self::RetAlleyShopNotInclude => "RET_ALLEY_SHOP_NOT_INCLUDE", - Self::RetAlleyEventNotUnlock => "RET_ALLEY_EVENT_NOT_UNLOCK", - Self::RetAlleyEventNotRefresh => "RET_ALLEY_EVENT_NOT_REFRESH", - Self::RetAlleyEventStateDoing => "RET_ALLEY_EVENT_STATE_DOING", - Self::RetAlleyEventStateFinish => "RET_ALLEY_EVENT_STATE_FINISH", - Self::RetAlleyEventError => "RET_ALLEY_EVENT_ERROR", - Self::RetAlleyRewardLevelError => "RET_ALLEY_REWARD_LEVEL_ERROR", - Self::RetAlleyRewardPrestigeNotEnough => { - "RET_ALLEY_REWARD_PRESTIGE_NOT_ENOUGH" - } - Self::RetAlleyShipEmpty => "RET_ALLEY_SHIP_EMPTY", - Self::RetAlleyShipIdDismatch => "RET_ALLEY_SHIP_ID_DISMATCH", - Self::RetAlleyShipNotExist => "RET_ALLEY_SHIP_NOT_EXIST", - Self::RetAlleyShipNotUnlock => "RET_ALLEY_SHIP_NOT_UNLOCK", - Self::RetAlleyGoodsNotExist => "RET_ALLEY_GOODS_NOT_EXIST", - Self::RetAlleyGoodsNotUnlock => "RET_ALLEY_GOODS_NOT_UNLOCK", - Self::RetAlleyProfitNotPositive => "RET_ALLEY_PROFIT_NOT_POSITIVE", - Self::RetAlleySpecialOrderDismatch => "RET_ALLEY_SPECIAL_ORDER_DISMATCH", - Self::RetAlleyOrderGoodsOverLimit => "RET_ALLEY_ORDER_GOODS_OVER_LIMIT", - Self::RetAlleySpecialOrderConditionNotMeet => { - "RET_ALLEY_SPECIAL_ORDER_CONDITION_NOT_MEET" - } - Self::RetAlleyDepotSizeOverLimit => "RET_ALLEY_DEPOT_SIZE_OVER_LIMIT", - Self::RetAlleyGoodsNotEnough => "RET_ALLEY_GOODS_NOT_ENOUGH", - Self::RetAlleyOrderIndexInvalid => "RET_ALLEY_ORDER_INDEX_INVALID", - Self::RetAlleyRewardAlreadyTake => "RET_ALLEY_REWARD_ALREADY_TAKE", - Self::RetAlleyRewardNotExist => "RET_ALLEY_REWARD_NOT_EXIST", - Self::RetAlleyMainMissionNotDoing => "RET_ALLEY_MAIN_MISSION_NOT_DOING", - Self::RetAlleyCriticalEventNotFinish => "RET_ALLEY_CRITICAL_EVENT_NOT_FINISH", - Self::RetAlleyShopGoodsNotValid => "RET_ALLEY_SHOP_GOODS_NOT_VALID", - Self::RetAlleySlashNotOpen => "RET_ALLEY_SLASH_NOT_OPEN", - Self::RetAlleyPlacingAnchorInvalid => "RET_ALLEY_PLACING_ANCHOR_INVALID", - Self::RetAlleyPlacingGoodsIndexInvalid => { - "RET_ALLEY_PLACING_GOODS_INDEX_INVALID" - } - Self::RetAlleySaveMapTooQuick => "RET_ALLEY_SAVE_MAP_TOO_QUICK", - Self::RetAlleyMapNotLink => "RET_ALLEY_MAP_NOT_LINK", - Self::RetAlleyFundsNotLowerBase => "RET_ALLEY_FUNDS_NOT_LOWER_BASE", - Self::RetAlleyEventNotFinish => "RET_ALLEY_EVENT_NOT_FINISH", - Self::RetAlleyNormalOrderNotMeet => "RET_ALLEY_NORMAL_ORDER_NOT_MEET", - Self::RetPlayerReturnNotOpen => "RET_PLAYER_RETURN_NOT_OPEN", - Self::RetPlayerReturnIsSigned => "RET_PLAYER_RETURN_IS_SIGNED", - Self::RetPlayerReturnPointNotEnough => "RET_PLAYER_RETURN_POINT_NOT_ENOUGH", - Self::RetPlayerReturnConditionInvalid => { - "RET_PLAYER_RETURN_CONDITION_INVALID" - } - Self::RetPlayerReturnHasSigned => "RET_PLAYER_RETURN_HAS_SIGNED", - Self::RetPlayerReturnRewardTaken => "RET_PLAYER_RETURN_REWARD_TAKEN", - Self::RetPlayerReturnRelicTaken => "RET_PLAYER_RETURN_RELIC_TAKEN", - Self::RetPlayerReturnConfigError => "RET_PLAYER_RETURN_CONFIG_ERROR", - Self::RetPlayerReturnOptionalGiftInvalid => { - "RET_PLAYER_RETURN_OPTIONAL_GIFT_INVALID" - } - Self::RetPlayerReturnOptionalGiftNotExist => { - "RET_PLAYER_RETURN_OPTIONAL_GIFT_NOT_EXIST" - } - Self::RetPlayerReturnSignTypeInvalid => "RET_PLAYER_RETURN_SIGN_TYPE_INVALID", - Self::RetAetherDivideNoLineup => "RET_AETHER_DIVIDE_NO_LINEUP", - Self::RetAetherDivideLineupInvalid => "RET_AETHER_DIVIDE_LINEUP_INVALID", - Self::RetChatBubbleIdError => "RET_CHAT_BUBBLE_ID_ERROR", - Self::RetChatBubbleIdNotUnlock => "RET_CHAT_BUBBLE_ID_NOT_UNLOCK", - Self::RetPhoneThemeIdError => "RET_PHONE_THEME_ID_ERROR", - Self::RetPhoneThemeIdNotUnlock => "RET_PHONE_THEME_ID_NOT_UNLOCK", - Self::RetChatBubbleSelectIsCurrent => "RET_CHAT_BUBBLE_SELECT_IS_CURRENT", - Self::RetPhoneThemeSelectIsCurrent => "RET_PHONE_THEME_SELECT_IS_CURRENT", - Self::RetPhoneCaseIdError => "RET_PHONE_CASE_ID_ERROR", - Self::RetPhoneCaseIdNotUnlock => "RET_PHONE_CASE_ID_NOT_UNLOCK", - Self::RetPhoneCaseSelectIsCurrent => "RET_PHONE_CASE_SELECT_IS_CURRENT", - Self::RetChessRogueConfigNotFound => "RET_CHESS_ROGUE_CONFIG_NOT_FOUND", - Self::RetChessRogueConfigInvalid => "RET_CHESS_ROGUE_CONFIG_INVALID", - Self::RetChessRogueNoValidRoom => "RET_CHESS_ROGUE_NO_VALID_ROOM", - Self::RetChessRogueNoCellInfo => "RET_CHESS_ROGUE_NO_CELL_INFO", - Self::RetChessRogueCellNotFinish => "RET_CHESS_ROGUE_CELL_NOT_FINISH", - Self::RetChessRogueCellIsLocked => "RET_CHESS_ROGUE_CELL_IS_LOCKED", - Self::RetChessRogueScheduleNotMatch => "RET_CHESS_ROGUE_SCHEDULE_NOT_MATCH", - Self::RetChessRogueStatusFail => "RET_CHESS_ROGUE_STATUS_FAIL", - Self::RetChessRogueAreaNotExist => "RET_CHESS_ROGUE_AREA_NOT_EXIST", - Self::RetChessRogueLineupFail => "RET_CHESS_ROGUE_LINEUP_FAIL", - Self::RetChessRogueAeonFail => "RET_CHESS_ROGUE_AEON_FAIL", - Self::RetChessRogueEnterCellFail => "RET_CHESS_ROGUE_ENTER_CELL_FAIL", - Self::RetChessRogueRollDiceFail => "RET_CHESS_ROGUE_ROLL_DICE_FAIL", - Self::RetChessRogueDiceStatusFail => "RET_CHESS_ROGUE_DICE_STATUS_FAIL", - Self::RetChessRogueDiceCntNotFull => "RET_CHESS_ROGUE_DICE_CNT_NOT_FULL", - Self::RetChessRogueUnlock => "RET_CHESS_ROGUE_UNLOCK", - Self::RetChessRoguePickAvatarFail => "RET_CHESS_ROGUE_PICK_AVATAR_FAIL", - Self::RetChessRogueAvatarInvalid => "RET_CHESS_ROGUE_AVATAR_INVALID", - Self::RetChessRogueCellCanNotSelect => "RET_CHESS_ROGUE_CELL_CAN_NOT_SELECT", - Self::RetChessRogueDiceConfirmed => "RET_CHESS_ROGUE_DICE_CONFIRMED", - Self::RetChessRogueNousDiceNotMatch => "RET_CHESS_ROGUE_NOUS_DICE_NOT_MATCH", - Self::RetChessRogueNousDiceRarityFail => { - "RET_CHESS_ROGUE_NOUS_DICE_RARITY_FAIL" - } - Self::RetChessRogueNousDiceSurfaceDuplicate => { - "RET_CHESS_ROGUE_NOUS_DICE_SURFACE_DUPLICATE" - } - Self::RetChessRogueNotInRogue => "RET_CHESS_ROGUE_NOT_IN_ROGUE", - Self::RetChessRogueNousDiceBranchLimit => { - "RET_CHESS_ROGUE_NOUS_DICE_BRANCH_LIMIT" - } - Self::RetHeliobusNotOpen => "RET_HELIOBUS_NOT_OPEN", - Self::RetHeliobusSnsPostNotUnlock => "RET_HELIOBUS_SNS_POST_NOT_UNLOCK", - Self::RetHeliobusSnsAlreadyRead => "RET_HELIOBUS_SNS_ALREADY_READ", - Self::RetHeliobusSnsAlreadyLiked => "RET_HELIOBUS_SNS_ALREADY_LIKED", - Self::RetHeliobusSnsAlreadyCommented => "RET_HELIOBUS_SNS_ALREADY_COMMENTED", - Self::RetHeliobusSnsInMission => "RET_HELIOBUS_SNS_IN_MISSION", - Self::RetHeliobusSnsAlreadyPosted => "RET_HELIOBUS_SNS_ALREADY_POSTED", - Self::RetHeliobusSnsNotDoingMission => "RET_HELIOBUS_SNS_NOT_DOING_MISSION", - Self::RetHeliobusRewardLevelMax => "RET_HELIOBUS_REWARD_LEVEL_MAX", - Self::RetHeliobusIncomeNotEnough => "RET_HELIOBUS_INCOME_NOT_ENOUGH", - Self::RetHeliobusSnsCommentNotUnlock => "RET_HELIOBUS_SNS_COMMENT_NOT_UNLOCK", - Self::RetHeliobusChallengeNotUnlock => "RET_HELIOBUS_CHALLENGE_NOT_UNLOCK", - Self::RetHeliobusChallengeIdError => "RET_HELIOBUS_CHALLENGE_ID_ERROR", - Self::RetHeliobusSkillNotUnlock => "RET_HELIOBUS_SKILL_NOT_UNLOCK", - Self::RetHeliobusAcceptPostMissionFail => { - "RET_HELIOBUS_ACCEPT_POST_MISSION_FAIL" - } - Self::RetHeliobusSkillNotSelected => "RET_HELIOBUS_SKILL_NOT_SELECTED", - Self::RetHeliobusPlaneTypeInvalid => "RET_HELIOBUS_PLANE_TYPE_INVALID", - Self::RetReddotParamInvalid => "RET_REDDOT_PARAM_INVALID", - Self::RetReddotActivityNotOpen => "RET_REDDOT_ACTIVITY_NOT_OPEN", - Self::RetRogueEndlessActivityConfigError => { - "RET_ROGUE_ENDLESS_ACTIVITY_CONFIG_ERROR" - } - Self::RetRogueEndlessActivityNotOpen => "RET_ROGUE_ENDLESS_ACTIVITY_NOT_OPEN", - Self::RetRogueEndlessActivityOverBonusRewardLimit => { - "RET_ROGUE_ENDLESS_ACTIVITY_OVER_BONUS_REWARD_LIMIT" - } - Self::RetRogueEndlessActivityScoreNotMeet => { - "RET_ROGUE_ENDLESS_ACTIVITY_SCORE_NOT_MEET" - } - Self::RetRogueEndlessActivityRewardLevleAlreadyTake => { - "RET_ROGUE_ENDLESS_ACTIVITY_REWARD_LEVLE_ALREADY_TAKE" - } - Self::RetHeartDialScriptNotFound => "RET_HEART_DIAL_SCRIPT_NOT_FOUND", - Self::RetHeartDialScriptEmotionTheSame => { - "RET_HEART_DIAL_SCRIPT_EMOTION_THE_SAME" - } - Self::RetHeartDialScriptStepNotNormal => { - "RET_HEART_DIAL_SCRIPT_STEP_NOT_NORMAL" - } - Self::RetHeartDialScriptConditionNotMatch => { - "RET_HEART_DIAL_SCRIPT_CONDITION_NOT_MATCH" - } - Self::RetHeartDialScriptSubmitItemNumNotMatch => { - "RET_HEART_DIAL_SCRIPT_SUBMIT_ITEM_NUM_NOT_MATCH" - } - Self::RetHeartDialScriptSubmitItemIdNotMatch => { - "RET_HEART_DIAL_SCRIPT_SUBMIT_ITEM_ID_NOT_MATCH" - } - Self::RetHeartDialDialogueNotFound => "RET_HEART_DIAL_DIALOGUE_NOT_FOUND", - Self::RetHeartDialDialogueAlreadyPerformed => { - "RET_HEART_DIAL_DIALOGUE_ALREADY_PERFORMED" - } - Self::RetHeartDialNpcNotFound => "RET_HEART_DIAL_NPC_NOT_FOUND", - Self::RetHeartDialTraceConfigNotFound => { - "RET_HEART_DIAL_TRACE_CONFIG_NOT_FOUND" - } - Self::RetHeartDialFloorTraceExist => "RET_HEART_DIAL_FLOOR_TRACE_EXIST", - Self::RetHeartDialTraceFloorNotMatch => { - "RET_HEART_DIAL_TRACE_FLOOR_NOT_MATCH" - } - Self::RetTravelBrochureConfigError => "RET_TRAVEL_BROCHURE_CONFIG_ERROR", - Self::RetTravelBrochureParamInvalid => "RET_TRAVEL_BROCHURE_PARAM_INVALID", - Self::RetTravelBrochureLocked => "RET_TRAVEL_BROCHURE_LOCKED", - Self::RetTravelBrochureCannotOperate => "RET_TRAVEL_BROCHURE_CANNOT_OPERATE", - Self::RetTravelBrochureWorldIdNotMatch => { - "RET_TRAVEL_BROCHURE_WORLD_ID_NOT_MATCH" - } - Self::RetTravelBrochureHasNoWorldBook => { - "RET_TRAVEL_BROCHURE_HAS_NO_WORLD_BOOK" - } - Self::RetTravelBrochurePageFull => "RET_TRAVEL_BROCHURE_PAGE_FULL", - Self::RetMapRotationNotInRegion => "RET_MAP_ROTATION_NOT_IN_REGION", - Self::RetMapRotationRotaterAlreadyDeployed => { - "RET_MAP_ROTATION_ROTATER_ALREADY_DEPLOYED" - } - Self::RetMapRotationEnergyNotEnough => "RET_MAP_ROTATION_ENERGY_NOT_ENOUGH", - Self::RetMapRotationEntityNotOnCurPose => { - "RET_MAP_ROTATION_ENTITY_NOT_ON_CUR_POSE" - } - Self::RetMapRotationRotaterNotDeployed => { - "RET_MAP_ROTATION_ROTATER_NOT_DEPLOYED" - } - Self::RetMapRotationPoseRotaterMismatch => { - "RET_MAP_ROTATION_POSE_ROTATER_MISMATCH" - } - Self::RetMapRotationRotaterNotRemovable => { - "RET_MAP_ROTATION_ROTATER_NOT_REMOVABLE" - } - Self::RetMapRotationRotaterDisposable => { - "RET_MAP_ROTATION_ROTATER_DISPOSABLE" - } - Self::RetSpaceZooActivityCatNotFound => { - "RET_SPACE_ZOO_ACTIVITY_CAT_NOT_FOUND" - } - Self::RetSpaceZooActivityCatParamInvalid => { - "RET_SPACE_ZOO_ACTIVITY_CAT_PARAM_INVALID" - } - Self::RetSpaceZooActivityCatItemNotEnough => { - "RET_SPACE_ZOO_ACTIVITY_CAT_ITEM_NOT_ENOUGH" - } - Self::RetSpaceZooActivityCatBagFull => "RET_SPACE_ZOO_ACTIVITY_CAT_BAG_FULL", - Self::RetSpaceZooActivityCatNotToMutate => { - "RET_SPACE_ZOO_ACTIVITY_CAT_NOT_TO_MUTATE" - } - Self::RetSpaceZooActivityCatStateError => { - "RET_SPACE_ZOO_ACTIVITY_CAT_STATE_ERROR" - } - Self::RetSpaceZooActivityCatCatteryLocked => { - "RET_SPACE_ZOO_ACTIVITY_CAT_CATTERY_LOCKED" - } - Self::RetSpaceZooActivityCatOutNow => "RET_SPACE_ZOO_ACTIVITY_CAT_OUT_NOW", - Self::RetSpaceZooActivityCatConfigNotFound => { - "RET_SPACE_ZOO_ACTIVITY_CAT_CONFIG_NOT_FOUND" - } - Self::RetSpaceZooActivityCatFeatureNotFound => { - "RET_SPACE_ZOO_ACTIVITY_CAT_FEATURE_NOT_FOUND" - } - Self::RetSpaceZooActivityCatAddCatError => { - "RET_SPACE_ZOO_ACTIVITY_CAT_ADD_CAT_ERROR" - } - Self::RetSpaceZooActivityCatMoneyNotEnough => { - "RET_SPACE_ZOO_ACTIVITY_CAT_MONEY_NOT_ENOUGH" - } - Self::RetSpaceZooActivityCatCondNotMatch => { - "RET_SPACE_ZOO_ACTIVITY_CAT_COND_NOT_MATCH" - } - Self::RetStrongChallengeActivityStageCfgMiss => { - "RET_STRONG_CHALLENGE_ACTIVITY_STAGE_CFG_MISS" - } - Self::RetStrongChallengeActivityStageNotOpen => { - "RET_STRONG_CHALLENGE_ACTIVITY_STAGE_NOT_OPEN" - } - Self::RetStrongChallengeActivityBuffError => { - "RET_STRONG_CHALLENGE_ACTIVITY_BUFF_ERROR" - } - Self::RetRollShopNotFound => "RET_ROLL_SHOP_NOT_FOUND", - Self::RetRollShopGroupEmpty => "RET_ROLL_SHOP_GROUP_EMPTY", - Self::RetRollShopEmpty => "RET_ROLL_SHOP_EMPTY", - Self::RetRollShopGachaReqDuplicated => "RET_ROLL_SHOP_GACHA_REQ_DUPLICATED", - Self::RetRollShopRandomError => "RET_ROLL_SHOP_RANDOM_ERROR", - Self::RetRollShopGroupTypeNotFound => "RET_ROLL_SHOP_GROUP_TYPE_NOT_FOUND", - Self::RetRollShopHasStoredRewardAlready => { - "RET_ROLL_SHOP_HAS_STORED_REWARD_ALREADY" - } - Self::RetRollShopNoStoredReward => "RET_ROLL_SHOP_NO_STORED_REWARD", - Self::RetRollShopNotInValidScene => "RET_ROLL_SHOP_NOT_IN_VALID_SCENE", - Self::RetRollShopInvalidRollShopType => { - "RET_ROLL_SHOP_INVALID_ROLL_SHOP_TYPE" - } - Self::RetActivityRaidCollectionPrevNotFinish => { - "RET_ACTIVITY_RAID_COLLECTION_PREV_NOT_FINISH" - } - Self::RetActivityRaidCollectionGroupEnterNextUnavailable => { - "RET_ACTIVITY_RAID_COLLECTION_GROUP_ENTER_NEXT_UNAVAILABLE" - } - Self::RetActivityRaidCollectionIsLast => { - "RET_ACTIVITY_RAID_COLLECTION_IS_LAST" - } - Self::RetActivityRaidCollectionIsNotNext => { - "RET_ACTIVITY_RAID_COLLECTION_IS_NOT_NEXT" - } - Self::RetOfferingNotUnlock => "RET_OFFERING_NOT_UNLOCK", - Self::RetOfferingLevelNotUnlock => "RET_OFFERING_LEVEL_NOT_UNLOCK", - Self::RetOfferingReachMaxLevel => "RET_OFFERING_REACH_MAX_LEVEL", - Self::RetOfferingItemNotEnough => "RET_OFFERING_ITEM_NOT_ENOUGH", - Self::RetOfferingLongtailNotOpen => "RET_OFFERING_LONGTAIL_NOT_OPEN", - Self::RetOfferingRewardCondition => "RET_OFFERING_REWARD_CONDITION", - Self::RetDrinkMakerChatInvalid => "RET_DRINK_MAKER_CHAT_INVALID", - Self::RetDrinkMakerParamInvalid => "RET_DRINK_MAKER_PARAM_INVALID", - Self::RetDrinkMakerParamNotUnlock => "RET_DRINK_MAKER_PARAM_NOT_UNLOCK", - Self::RetDrinkMakerConfigNotFound => "RET_DRINK_MAKER_CONFIG_NOT_FOUND", - Self::RetDrinkMakerNotLastChat => "RET_DRINK_MAKER_NOT_LAST_CHAT", - Self::RetDrinkMakerDayAndFreePhaseNotOpen => { - "RET_DRINK_MAKER_DAY_AND_FREE_PHASE_NOT_OPEN" - } - Self::RetDrinkMakerCheersNotAbleToNextGroup => { - "RET_DRINK_MAKER_CHEERS_NOT_ABLE_TO_NEXT_GROUP" - } - Self::RetDrinkMakerCheersDrinkAlreadyMade => { - "RET_DRINK_MAKER_CHEERS_DRINK_ALREADY_MADE" - } - Self::RetDrinkMakerCheersActivityNotOpen => { - "RET_DRINK_MAKER_CHEERS_ACTIVITY_NOT_OPEN" - } - Self::RetDrinkMakerCheersMakeDrinkPreMissionNotFinished => { - "RET_DRINK_MAKER_CHEERS_MAKE_DRINK_PRE_MISSION_NOT_FINISHED" - } - Self::RetMonopolyNotOpen => "RET_MONOPOLY_NOT_OPEN", - Self::RetMonopolyConfigError => "RET_MONOPOLY_CONFIG_ERROR", - Self::RetMonopolyDiceNotEnough => "RET_MONOPOLY_DICE_NOT_ENOUGH", - Self::RetMonopolyCurCellNotFinish => "RET_MONOPOLY_CUR_CELL_NOT_FINISH", - Self::RetMonopolyCoinNotEnough => "RET_MONOPOLY_COIN_NOT_ENOUGH", - Self::RetMonopolyCellWaitPending => "RET_MONOPOLY_CELL_WAIT_PENDING", - Self::RetMonopolyCellStateError => "RET_MONOPOLY_CELL_STATE_ERROR", - Self::RetMonopolyCellContentError => "RET_MONOPOLY_CELL_CONTENT_ERROR", - Self::RetMonopolyItemNotEnough => "RET_MONOPOLY_ITEM_NOT_ENOUGH", - Self::RetMonopolyCellContentCannotGiveup => { - "RET_MONOPOLY_CELL_CONTENT_CANNOT_GIVEUP" - } - Self::RetMonopolyAssetLevelInvalid => "RET_MONOPOLY_ASSET_LEVEL_INVALID", - Self::RetMonopolyTurnNotFinish => "RET_MONOPOLY_TURN_NOT_FINISH", - Self::RetMonopolyGuideNotFinish => "RET_MONOPOLY_GUIDE_NOT_FINISH", - Self::RetMonopolyRaffleRewardReissued => { - "RET_MONOPOLY_RAFFLE_REWARD_REISSUED" - } - Self::RetMonopolyNoGameActive => "RET_MONOPOLY_NO_GAME_ACTIVE", - Self::RetMonopolyGameRatioNotIncreasable => { - "RET_MONOPOLY_GAME_RATIO_NOT_INCREASABLE" - } - Self::RetMonopolyGameRatioMax => "RET_MONOPOLY_GAME_RATIO_MAX", - Self::RetMonopolyGameTargetRatioInvalid => { - "RET_MONOPOLY_GAME_TARGET_RATIO_INVALID" - } - Self::RetMonopolyGameBingoFlipPosInvalid => { - "RET_MONOPOLY_GAME_BINGO_FLIP_POS_INVALID" - } - Self::RetMonopolyGameGuessAlreadyChoose => { - "RET_MONOPOLY_GAME_GUESS_ALREADY_CHOOSE" - } - Self::RetMonopolyGameGuessChooseInvalid => { - "RET_MONOPOLY_GAME_GUESS_CHOOSE_INVALID" - } - Self::RetMonopolyGameGuessInformationAlreadyBought => { - "RET_MONOPOLY_GAME_GUESS_INFORMATION_ALREADY_BOUGHT" - } - Self::RetMonopolyGameRaiseRatioNotUnlock => { - "RET_MONOPOLY_GAME_RAISE_RATIO_NOT_UNLOCK" - } - Self::RetMonopolyFriendNotSynced => "RET_MONOPOLY_FRIEND_NOT_SYNCED", - Self::RetMonopolyGetFriendRankingListInCd => { - "RET_MONOPOLY_GET_FRIEND_RANKING_LIST_IN_CD" - } - Self::RetMonopolyLikeTargetNotFriend => "RET_MONOPOLY_LIKE_TARGET_NOT_FRIEND", - Self::RetMonopolyDailyAlreadyLiked => "RET_MONOPOLY_DAILY_ALREADY_LIKED", - Self::RetMonopolySocialEventStatusNotMatch => { - "RET_MONOPOLY_SOCIAL_EVENT_STATUS_NOT_MATCH" - } - Self::RetMonopolySocialEventServerCacheNotExist => { - "RET_MONOPOLY_SOCIAL_EVENT_SERVER_CACHE_NOT_EXIST" - } - Self::RetMonopolyActivityIdNotMatch => "RET_MONOPOLY_ACTIVITY_ID_NOT_MATCH", - Self::RetMonopolyRafflePoolNotExist => "RET_MONOPOLY_RAFFLE_POOL_NOT_EXIST", - Self::RetMonopolyRafflePoolTimeNotMatch => { - "RET_MONOPOLY_RAFFLE_POOL_TIME_NOT_MATCH" - } - Self::RetMonopolyRafflePoolPhaseNotMeet => { - "RET_MONOPOLY_RAFFLE_POOL_PHASE_NOT_MEET" - } - Self::RetMonopolyRafflePoolShowTimeNotMeet => { - "RET_MONOPOLY_RAFFLE_POOL_SHOW_TIME_NOT_MEET" - } - Self::RetMonopolyRaffleTicketNotFound => { - "RET_MONOPOLY_RAFFLE_TICKET_NOT_FOUND" - } - Self::RetMonopolyRaffleTicketTimeNotMeet => { - "RET_MONOPOLY_RAFFLE_TICKET_TIME_NOT_MEET" - } - Self::RetMonopolyRaffleTicketRewardAlreadyTaken => { - "RET_MONOPOLY_RAFFLE_TICKET_REWARD_ALREADY_TAKEN" - } - Self::RetMonopolyRafflePoolNotInRaffleTime => { - "RET_MONOPOLY_RAFFLE_POOL_NOT_IN_RAFFLE_TIME" - } - Self::RetMonopolyMbtiReportRewardAlreadyTaken => { - "RET_MONOPOLY_MBTI_REPORT_REWARD_ALREADY_TAKEN" - } - Self::RetEvolveBuildLevelGaming => "RET_EVOLVE_BUILD_LEVEL_GAMING", - Self::RetEveolveBuildLevelBanRandom => "RET_EVEOLVE_BUILD_LEVEL_BAN_RANDOM", - Self::RetEvolveBuildFirstRewardAlreadyTaken => { - "RET_EVOLVE_BUILD_FIRST_REWARD_ALREADY_TAKEN" - } - Self::RetEvolveBuildLevelUnfinish => "RET_EVOLVE_BUILD_LEVEL_UNFINISH", - Self::RetEvolveBuildShopAbilityMaxLevel => { - "RET_EVOLVE_BUILD_SHOP_ABILITY_MAX_LEVEL" - } - Self::RetEvolveBuildShopAbilityMinLevel => { - "RET_EVOLVE_BUILD_SHOP_ABILITY_MIN_LEVEL" - } - Self::RetEvolveBuildShopAbilityNotGet => { - "RET_EVOLVE_BUILD_SHOP_ABILITY_NOT_GET" - } - Self::RetEvolveBuildLevelLock => "RET_EVOLVE_BUILD_LEVEL_LOCK", - Self::RetEvolveBuildExpNotEnough => "RET_EVOLVE_BUILD_EXP_NOT_ENOUGH", - Self::RetEvolveBuildShopAbilityLevelError => { - "RET_EVOLVE_BUILD_SHOP_ABILITY_LEVEL_ERROR" - } - Self::RetEvolveBuildActivityNotOpen => "RET_EVOLVE_BUILD_ACTIVITY_NOT_OPEN", - Self::RetEvolveBuildShopAbilityEmpty => "RET_EVOLVE_BUILD_SHOP_ABILITY_EMPTY", - Self::RetEvolveBuildLevelNotStart => "RET_EVOLVE_BUILD_LEVEL_NOT_START", - Self::RetEvolveBuildShopLock => "RET_EVOLVE_BUILD_SHOP_LOCK", - Self::RetEvolveBuildRewardLock => "RET_EVOLVE_BUILD_REWARD_LOCK", - Self::RetEvolveBuildRewardLevelMax => "RET_EVOLVE_BUILD_REWARD_LEVEL_MAX", - Self::RetEvolveBuildRewardAlreadyAllTaken => { - "RET_EVOLVE_BUILD_REWARD_ALREADY_ALL_TAKEN" - } - Self::RetEvolveBuildSeasonError => "RET_EVOLVE_BUILD_SEASON_ERROR", - Self::RetEvolveBuildTeachSkipQuestNotFinish => { - "RET_EVOLVE_BUILD_TEACH_SKIP_QUEST_NOT_FINISH" - } - Self::RetClockParkConfigError => "RET_CLOCK_PARK_CONFIG_ERROR", - Self::RetClockParkEffectError => "RET_CLOCK_PARK_EFFECT_ERROR", - Self::RetClockParkScriptAlreadyUnlock => { - "RET_CLOCK_PARK_SCRIPT_ALREADY_UNLOCK" - } - Self::RetClockParkScriptUnlockConditionNotMeet => { - "RET_CLOCK_PARK_SCRIPT_UNLOCK_CONDITION_NOT_MEET" - } - Self::RetClockParkTalentAlreadyUnlock => { - "RET_CLOCK_PARK_TALENT_ALREADY_UNLOCK" - } - Self::RetClockParkScriptLocked => "RET_CLOCK_PARK_SCRIPT_LOCKED", - Self::RetClockParkHasOngoingScript => "RET_CLOCK_PARK_HAS_ONGOING_SCRIPT", - Self::RetClockParkNoOngoingScript => "RET_CLOCK_PARK_NO_ONGOING_SCRIPT", - Self::RetClockParkDicePlacementError => "RET_CLOCK_PARK_DICE_PLACEMENT_ERROR", - Self::RetClockParkMismatchStatus => "RET_CLOCK_PARK_MISMATCH_STATUS", - Self::RetClockParkNoBuff => "RET_CLOCK_PARK_NO_BUFF", - Self::RetClockParkSlotMachineGachaReqDuplicated => { - "RET_CLOCK_PARK_SLOT_MACHINE_GACHA_REQ_DUPLICATED" - } - Self::RetClockParkSlotMachineCostNotEnough => { - "RET_CLOCK_PARK_SLOT_MACHINE_COST_NOT_ENOUGH" - } - Self::RetClockParkSlotMachineGachaCntExceedLimit => { - "RET_CLOCK_PARK_SLOT_MACHINE_GACHA_CNT_EXCEED_LIMIT" - } - Self::RetClockParkNotOpen => "RET_CLOCK_PARK_NOT_OPEN", - Self::RetTournRogueStatusMismatch => "RET_TOURN_ROGUE_STATUS_MISMATCH", - Self::RetMagicRogueStatusMismatch => "RET_MAGIC_ROGUE_STATUS_MISMATCH", - Self::RetAutoMountMagicUnitNoMatchedMagicScepter => { - "RET_AUTO_MOUNT_MAGIC_UNIT_NO_MATCHED_MAGIC_SCEPTER" - } - Self::RetMagicUnitWorkbenchReforgeGenFail => { - "RET_MAGIC_UNIT_WORKBENCH_REFORGE_GEN_FAIL" - } - Self::RetMatchAlreadyInMatch => "RET_MATCH_ALREADY_IN_MATCH", - Self::RetMatchNotInMatch => "RET_MATCH_NOT_IN_MATCH", - Self::RetMatchPlayNotOpen => "RET_MATCH_PLAY_NOT_OPEN", - Self::RetCrossStateError => "RET_CROSS_STATE_ERROR", - Self::RetMatchVersionNotEqual => "RET_MATCH_VERSION_NOT_EQUAL", - Self::RetMatchPlayerNotInLobbyRoom => "RET_MATCH_PLAYER_NOT_IN_LOBBY_ROOM", - Self::RetLobbyStateNotMatch => "RET_LOBBY_STATE_NOT_MATCH", - Self::RetLobbyRoomNotExist => "RET_LOBBY_ROOM_NOT_EXIST", - Self::RetLobbyRoomPalyerFull => "RET_LOBBY_ROOM_PALYER_FULL", - Self::RetLobbyRoomPalyerNotReady => "RET_LOBBY_ROOM_PALYER_NOT_READY", - Self::RetLobbyRoomPalyerFighting => "RET_LOBBY_ROOM_PALYER_FIGHTING", - Self::RetFightRoomNotExist => "RET_FIGHT_ROOM_NOT_EXIST", - Self::RetFightMatch3PlayerStateErr => "RET_FIGHT_MATCH3_PLAYER_STATE_ERR", - Self::RetFightMatch3RoomStateErr => "RET_FIGHT_MATCH3_ROOM_STATE_ERR", - Self::RetCrossStateTimeOut => "RET_CROSS_STATE_TIME_OUT", - Self::RetLobbyStartFightDisable => "RET_LOBBY_START_FIGHT_DISABLE", - Self::RetLobbyStartFightPlayerLack => "RET_LOBBY_START_FIGHT_PLAYER_LACK", - Self::RetMatchClientDataVersionLow => "RET_MATCH_CLIENT_DATA_VERSION_LOW", - Self::RetLobbyStartMatchDisable => "RET_LOBBY_START_MATCH_DISABLE", - Self::RetLobbyInteractInCd => "RET_LOBBY_INTERACT_IN_CD", - Self::RetLobbyOwnerStateErr => "RET_LOBBY_OWNER_STATE_ERR", - Self::RetLobbyOpTooFast => "RET_LOBBY_OP_TOO_FAST", - Self::RetFightMatch3SoloPlayerTurnErr => { - "RET_FIGHT_MATCH3_SOLO_PLAYER_TURN_ERR" - } - Self::RetMatchPlayNotSupported => "RET_MATCH_PLAY_NOT_SUPPORTED", - Self::RetMatchPlayDataNotExist => "RET_MATCH_PLAY_DATA_NOT_EXIST", - Self::RetMatchPlayNotSupportFriendRanking => { - "RET_MATCH_PLAY_NOT_SUPPORT_FRIEND_RANKING" - } - Self::RetMatchPlayGetFriendRankingInfoInCd => { - "RET_MATCH_PLAY_GET_FRIEND_RANKING_INFO_IN_CD" - } - Self::RetSwordTrainingNoActiveGame => "RET_SWORD_TRAINING_NO_ACTIVE_GAME", - Self::RetSwordTrainingNoPendingActionMatch => { - "RET_SWORD_TRAINING_NO_PENDING_ACTION_MATCH" - } - Self::RetSwordTrainingPartnerAbilityInvalid => { - "RET_SWORD_TRAINING_PARTNER_ABILITY_INVALID" - } - Self::RetSwordTrainingSkillAlreadyLearned => { - "RET_SWORD_TRAINING_SKILL_ALREADY_LEARNED" - } - Self::RetSwordTrainingConditionNotMeet => { - "RET_SWORD_TRAINING_CONDITION_NOT_MEET" - } - Self::RetSwordTrainingParentSkillNotLearned => { - "RET_SWORD_TRAINING_PARENT_SKILL_NOT_LEARNED" - } - Self::RetSwordTrainingSkillTypeNotUnlock => { - "RET_SWORD_TRAINING_SKILL_TYPE_NOT_UNLOCK" - } - Self::RetSwordTrainingGameAlreadyExist => { - "RET_SWORD_TRAINING_GAME_ALREADY_EXIST" - } - Self::RetSwordTrainingEndingHintNotMatch => { - "RET_SWORD_TRAINING_ENDING_HINT_NOT_MATCH" - } - Self::RetSwordTrainingStorylineConfigNotFound => { - "RET_SWORD_TRAINING_STORYLINE_CONFIG_NOT_FOUND" - } - Self::RetSwordTrainingStoryConfigNotFound => { - "RET_SWORD_TRAINING_STORY_CONFIG_NOT_FOUND" - } - Self::RetSwordTrainingUnlockNotFinish => { - "RET_SWORD_TRAINING_UNLOCK_NOT_FINISH" - } - Self::RetSwordTrainingOptionMismatch => "RET_SWORD_TRAINING_OPTION_MISMATCH", - Self::RetSwordTrainingRestoreWithoutExamFailed => { - "RET_SWORD_TRAINING_RESTORE_WITHOUT_EXAM_FAILED" - } - Self::RetSwordTrainingNoRestoreGameAvailable => { - "RET_SWORD_TRAINING_NO_RESTORE_GAME_AVAILABLE" - } - Self::RetSwordTrainingEndingStoryNotMatch => { - "RET_SWORD_TRAINING_ENDING_STORY_NOT_MATCH" - } - Self::RetSwordTrainingEndingNotFinish => { - "RET_SWORD_TRAINING_ENDING_NOT_FINISH" - } - Self::RetSwordTrainingEndingRewardTaken => { - "RET_SWORD_TRAINING_ENDING_REWARD_TAKEN" - } - Self::RetSwordTrainingCombatRankNotChange => { - "RET_SWORD_TRAINING_COMBAT_RANK_NOT_CHANGE" - } - Self::RetSwordTrainingDirectBattleDisable => { - "RET_SWORD_TRAINING_DIRECT_BATTLE_DISABLE" - } - Self::RetFightFestPhaseNotMatch => "RET_FIGHT_FEST_PHASE_NOT_MATCH", - Self::RetFightFestScoreRaceAlreadyFinish => { - "RET_FIGHT_FEST_SCORE_RACE_ALREADY_FINISH" - } - Self::RetFightFestChallengeLocked => "RET_FIGHT_FEST_CHALLENGE_LOCKED", - Self::RetFightFestCoachSkillLocked => "RET_FIGHT_FEST_COACH_SKILL_LOCKED", - Self::RetFightFestCoachSkillEquipTypeExisted => { - "RET_FIGHT_FEST_COACH_SKILL_EQUIP_TYPE_EXISTED" - } - Self::RetFightFestScoreRaceMissionDoind => { - "RET_FIGHT_FEST_SCORE_RACE_MISSION_DOIND" - } - Self::RetFightFestCoachSkillNoEquip => "RET_FIGHT_FEST_COACH_SKILL_NO_EQUIP", - Self::RetPetNotExist => "RET_PET_NOT_EXIST", - Self::RetPetAlreadySummoned => "RET_PET_ALREADY_SUMMONED", - Self::RetPetNotSummoned => "RET_PET_NOT_SUMMONED", - Self::RetMusicRhythmLevelTimeTooShort => { - "RET_MUSIC_RHYTHM_LEVEL_TIME_TOO_SHORT" - } - Self::RetMusicRhythmNotInLevel => "RET_MUSIC_RHYTHM_NOT_IN_LEVEL", - Self::RetMusicRhythmPreDifficultyNotPass => { - "RET_MUSIC_RHYTHM_PRE_DIFFICULTY_NOT_PASS" - } - Self::RetMusicRhythmSongLimited => "RET_MUSIC_RHYTHM_SONG_LIMITED", - Self::RetMusicRhythmSongLocked => "RET_MUSIC_RHYTHM_SONG_LOCKED", - Self::RetMusicRhythmTrackLocked => "RET_MUSIC_RHYTHM_TRACK_LOCKED", - Self::RetMusicRhythmLevelNotUnlock => "RET_MUSIC_RHYTHM_LEVEL_NOT_UNLOCK", - Self::RetMusicRhythmSongSfxLocked => "RET_MUSIC_RHYTHM_SONG_SFX_LOCKED", - Self::RetTrainPartyCoinNotEnough => "RET_TRAIN_PARTY_COIN_NOT_ENOUGH", - Self::RetTrainPartyDiyTagNotMatch => "RET_TRAIN_PARTY_DIY_TAG_NOT_MATCH", - Self::RetTrainPartyUseCardMobilityNotEnough => { - "RET_TRAIN_PARTY_USE_CARD_MOBILITY_NOT_ENOUGH" - } - Self::RetTrainPartyAreaUnlockCoinNotEnough => { - "RET_TRAIN_PARTY_AREA_UNLOCK_COIN_NOT_ENOUGH" - } - Self::RetTarotBookEnergyNotEnough => "RET_TAROT_BOOK_ENERGY_NOT_ENOUGH", - Self::RetTarotBookPackNotAvailable => "RET_TAROT_BOOK_PACK_NOT_AVAILABLE", - Self::RetTarotBookStoryAlreadyUnlock => "RET_TAROT_BOOK_STORY_ALREADY_UNLOCK", - Self::RetTarotBookCardNotEnough => "RET_TAROT_BOOK_CARD_NOT_ENOUGH", - Self::RetTarotBookClueNotEnough => "RET_TAROT_BOOK_CLUE_NOT_ENOUGH", - Self::RetTarotBookUnlockStoryCardNotSame => { - "RET_TAROT_BOOK_UNLOCK_STORY_CARD_NOT_SAME" - } - Self::RetTarotBookStoryNotUnlock => "RET_TAROT_BOOK_STORY_NOT_UNLOCK", - Self::RetTarotBookStoryAlreadyFinish => "RET_TAROT_BOOK_STORY_ALREADY_FINISH", - Self::RetTarotBookInteractionAlreadyFinish => { - "RET_TAROT_BOOK_INTERACTION_ALREADY_FINISH" - } - Self::RetChimeraChimeraNotUnlock => "RET_CHIMERA_CHIMERA_NOT_UNLOCK", - Self::RetChimeraChimeraDuplicated => "RET_CHIMERA_CHIMERA_DUPLICATED", - Self::RetChimeraChimeraTypeError => "RET_CHIMERA_CHIMERA_TYPE_ERROR", - Self::RetChimeraWorkMismatchRound => "RET_CHIMERA_WORK_MISMATCH_ROUND", - Self::RetChimeraWorkRoundOptionNotMeet => { - "RET_CHIMERA_WORK_ROUND_OPTION_NOT_MEET" - } - Self::RetChimeraEndlessNotUnlock => "RET_CHIMERA_ENDLESS_NOT_UNLOCK", - Self::RetChimeraInEndless => "RET_CHIMERA_IN_ENDLESS", - Self::RetChimeraNotInEndless => "RET_CHIMERA_NOT_IN_ENDLESS", - Self::RetChimeraChimeraFallInEndless => "RET_CHIMERA_CHIMERA_FALL_IN_ENDLESS", - Self::RetPlanetFesAvatarNotExist => "RET_PLANET_FES_AVATAR_NOT_EXIST", - Self::RetPlanetFesLandNotExist => "RET_PLANET_FES_LAND_NOT_EXIST", - Self::RetPlanetFesItemNotEnough => "RET_PLANET_FES_ITEM_NOT_ENOUGH", - Self::RetPlanetFesLandAlreadyUnlock => "RET_PLANET_FES_LAND_ALREADY_UNLOCK", - Self::RetPlanetFesWorkAvatarRepeat => "RET_PLANET_FES_WORK_AVATAR_REPEAT", - Self::RetPlanetFesWorkAvatarTypeNotMatch => { - "RET_PLANET_FES_WORK_AVATAR_TYPE_NOT_MATCH" - } - Self::RetPlanetFesActivityNotOpen => "RET_PLANET_FES_ACTIVITY_NOT_OPEN", - Self::RetPlanetFesSkilltreePhaseNotUnlock => { - "RET_PLANET_FES_SKILLTREE_PHASE_NOT_UNLOCK" - } - Self::RetPlanetFesSkillNotUnlock => "RET_PLANET_FES_SKILL_NOT_UNLOCK", - Self::RetPlanetFesConfigError => "RET_PLANET_FES_CONFIG_ERROR", - Self::RetPlanetFesNotInBusinessDay => "RET_PLANET_FES_NOT_IN_BUSINESS_DAY", - Self::RetPlanetFesEventLocked => "RET_PLANET_FES_EVENT_LOCKED", - Self::RetPlanetFesEventFinished => "RET_PLANET_FES_EVENT_FINISHED", - Self::RetPlanetFesEventInCd => "RET_PLANET_FES_EVENT_IN_CD", - Self::RetPlanetFesEventAlreadyInState => { - "RET_PLANET_FES_EVENT_ALREADY_IN_STATE" - } - Self::RetPlanetFesEventNoWorkAvatar => "RET_PLANET_FES_EVENT_NO_WORK_AVATAR", - Self::RetPlanetFesEventProcessingCannotDisappear => { - "RET_PLANET_FES_EVENT_PROCESSING_CANNOT_DISAPPEAR" - } - Self::RetPlanetFesEventOptionPhaseWrong => { - "RET_PLANET_FES_EVENT_OPTION_PHASE_WRONG" - } - Self::RetPlanetFesFunctionNotUnlock => "RET_PLANET_FES_FUNCTION_NOT_UNLOCK", - Self::RetPlanetFesRewardAlreadyTaken => "RET_PLANET_FES_REWARD_ALREADY_TAKEN", - Self::RetPlanetFesEventGameNotActive => { - "RET_PLANET_FES_EVENT_GAME_NOT_ACTIVE" - } - Self::RetPlanetFesRegionProgressNotEnough => { - "RET_PLANET_FES_REGION_PROGRESS_NOT_ENOUGH" - } - Self::RetPlanetFesFriendItemNotEnough => { - "RET_PLANET_FES_FRIEND_ITEM_NOT_ENOUGH" - } - Self::RetPlanetFesPiecePermissionBan => "RET_PLANET_FES_PIECE_PERMISSION_BAN", - Self::RetPlanetFesPieceOfferNotExist => { - "RET_PLANET_FES_PIECE_OFFER_NOT_EXIST" - } - Self::RetPlanetFesPieceApplyInStackTooMuch => { - "RET_PLANET_FES_PIECE_APPLY_IN_STACK_TOO_MUCH" - } - Self::RetPlanetFesPieceApplyNotExist => { - "RET_PLANET_FES_PIECE_APPLY_NOT_EXIST" - } - Self::RetPlanetFesGetFriendRankingListInCd => { - "RET_PLANET_FES_GET_FRIEND_RANKING_LIST_IN_CD" - } - Self::RetPlanetFesGivePieceOwnedByTarget => { - "RET_PLANET_FES_GIVE_PIECE_OWNED_BY_TARGET" - } - Self::RetPlanetFesLevelMax => "RET_PLANET_FES_LEVEL_MAX", - Self::RetPlanetFesExclusiveEvent => "RET_PLANET_FES_EXCLUSIVE_EVENT", - Self::RetMarbleSealAlreadyUnlocked => "RET_MARBLE_SEAL_ALREADY_UNLOCKED", - Self::RetMarbleSealShopItemNotEnough => { - "RET_MARBLE_SEAL_SHOP_ITEM_NOT_ENOUGH" - } - Self::RetMarbleSealLocked => "RET_MARBLE_SEAL_LOCKED", - Self::RetCakeRaceFieldLocked => "RET_CAKE_RACE_FIELD_LOCKED", - Self::RetCakeRaceFieldCostNotEnough => "RET_CAKE_RACE_FIELD_COST_NOT_ENOUGH", - Self::RetCakeRaceFieldPvpOnly => "RET_CAKE_RACE_FIELD_PVP_ONLY", - Self::RetCakeRaceAlreadyInGame => "RET_CAKE_RACE_ALREADY_IN_GAME", - Self::RetCakeRaceGetFriendRankingListInCd => { - "RET_CAKE_RACE_GET_FRIEND_RANKING_LIST_IN_CD" - } - Self::RetCakeRaceLikeFriendTargetNotFriend => { - "RET_CAKE_RACE_LIKE_FRIEND_TARGET_NOT_FRIEND" - } - Self::RetCakeRaceLikeFriendDailyAlreadyLiked => { - "RET_CAKE_RACE_LIKE_FRIEND_DAILY_ALREADY_LIKED" - } - Self::RetCakeRaceLikeFriendInCd => "RET_CAKE_RACE_LIKE_FRIEND_IN_CD", - Self::RetFateStatusNotMatch => "RET_FATE_STATUS_NOT_MATCH", - Self::RetFateBuffSlotNotEnough => "RET_FATE_BUFF_SLOT_NOT_ENOUGH", - Self::RetFateCoinNotEnough => "RET_FATE_COIN_NOT_ENOUGH", - Self::RetFateReijuRerollCountNotEnough => { - "RET_FATE_REIJU_REROLL_COUNT_NOT_ENOUGH" - } - Self::RetFateBuffLevelMax => "RET_FATE_BUFF_LEVEL_MAX", - Self::RetFateActionQueueNotEmpty => "RET_FATE_ACTION_QUEUE_NOT_EMPTY", - Self::RetParkourActivityNotOpen => "RET_PARKOUR_ACTIVITY_NOT_OPEN", - Self::RetParkourLevelNotUnlock => "RET_PARKOUR_LEVEL_NOT_UNLOCK", - Self::RetParkourRailBallNotAllowed => "RET_PARKOUR_RAIL_BALL_NOT_ALLOWED", - Self::RetParkourNotInLevel => "RET_PARKOUR_NOT_IN_LEVEL", - Self::RetParkourLevelNotMatch => "RET_PARKOUR_LEVEL_NOT_MATCH", - Self::RetParkourNotPlayedAllNonStoryLevel => { - "RET_PARKOUR_NOT_PLAYED_ALL_NON_STORY_LEVEL" - } - Self::RetFtcLimitNameChange => "RET_FTC_LIMIT_NAME_CHANGE", - Self::RetElfRestaurantConfigError => "RET_ELF_RESTAURANT_CONFIG_ERROR", - Self::RetElfRestaurantFieldAlreadyBought => { - "RET_ELF_RESTAURANT_FIELD_ALREADY_BOUGHT" - } - Self::RetElfRestaurantFieldNotBought => "RET_ELF_RESTAURANT_FIELD_NOT_BOUGHT", - Self::RetElfRestaurantFieldCellInvalid => { - "RET_ELF_RESTAURANT_FIELD_CELL_INVALID" - } - Self::RetElfRestaurantFarmTypeInvalid => { - "RET_ELF_RESTAURANT_FARM_TYPE_INVALID" - } - Self::RetElfRestaurantShopItemNotExist => { - "RET_ELF_RESTAURANT_SHOP_ITEM_NOT_EXIST" - } - Self::RetElfRestaurantShopItemCountLimit => { - "RET_ELF_RESTAURANT_SHOP_ITEM_COUNT_LIMIT" - } - Self::RetElfRestaurantTradeOrderNotExist => { - "RET_ELF_RESTAURANT_TRADE_ORDER_NOT_EXIST" - } - Self::RetElfRestaurantNoReward => "RET_ELF_RESTAURANT_NO_REWARD", - Self::RetElfRestaurantNotInit => "RET_ELF_RESTAURANT_NOT_INIT", - Self::RetGridFightConfMiss => "RET_GRID_FIGHT_CONF_MISS", - Self::RetGridFightRoleNotExist => "RET_GRID_FIGHT_ROLE_NOT_EXIST", - Self::RetGridFightRoleAlreadyExist => "RET_GRID_FIGHT_ROLE_ALREADY_EXIST", - Self::RetGridFightPosExistRole => "RET_GRID_FIGHT_POS_EXIST_ROLE", - Self::RetGridFightPosNotValid => "RET_GRID_FIGHT_POS_NOT_VALID", - Self::RetGridFightCoinNotEnough => "RET_GRID_FIGHT_COIN_NOT_ENOUGH", - Self::RetGridFightEquipNotExist => "RET_GRID_FIGHT_EQUIP_NOT_EXIST", - Self::RetGridFightEquipCannotDress => "RET_GRID_FIGHT_EQUIP_CANNOT_DRESS", - Self::RetGridFightParamNotMatch => "RET_GRID_FIGHT_PARAM_NOT_MATCH", - Self::RetGridFightEquipDressSame => "RET_GRID_FIGHT_EQUIP_DRESS_SAME", - Self::RetGridFightEquipDressed => "RET_GRID_FIGHT_EQUIP_DRESSED", - Self::RetGridFightRandomErr => "RET_GRID_FIGHT_RANDOM_ERR", - Self::RetGridFightGoodsSold => "RET_GRID_FIGHT_GOODS_SOLD", - Self::RetGridFightItemNotEnough => "RET_GRID_FIGHT_ITEM_NOT_ENOUGH", - Self::RetGridFightGameplayLevelMax => "RET_GRID_FIGHT_GAMEPLAY_LEVEL_MAX", - Self::RetGridFightAlreadyInGameplay => "RET_GRID_FIGHT_ALREADY_IN_GAMEPLAY", - Self::RetGridFightEquipTraitLimit => "RET_GRID_FIGHT_EQUIP_TRAIT_LIMIT", - Self::RetGridFightRegionFull => "RET_GRID_FIGHT_REGION_FULL", - Self::RetGridFightTemporaryEquip => "RET_GRID_FIGHT_TEMPORARY_EQUIP", - Self::RetGridFightNotInGameplay => "RET_GRID_FIGHT_NOT_IN_GAMEPLAY", - Self::RetGridFightAddEquipFail => "RET_GRID_FIGHT_ADD_EQUIP_FAIL", - Self::RetGridFightAddConsumableFail => "RET_GRID_FIGHT_ADD_CONSUMABLE_FAIL", - Self::RetGridFightCreateRoleFail => "RET_GRID_FIGHT_CREATE_ROLE_FAIL", - Self::RetGridFightCannotUpgrade => "RET_GRID_FIGHT_CANNOT_UPGRADE", - Self::RetGridFightNoEmptyPos => "RET_GRID_FIGHT_NO_EMPTY_POS", - Self::RetGridFightForgeNotExist => "RET_GRID_FIGHT_FORGE_NOT_EXIST", - Self::RetGridFightAddForgeFail => "RET_GRID_FIGHT_ADD_FORGE_FAIL", - Self::RetGridFightOrbNotEnough => "RET_GRID_FIGHT_ORB_NOT_ENOUGH", - Self::RetGridFightOrbNotExist => "RET_GRID_FIGHT_ORB_NOT_EXIST", - Self::RetGridFightSupplyNoReroll => "RET_GRID_FIGHT_SUPPLY_NO_REROLL", - Self::RetGridFightHighRariyForCopy => "RET_GRID_FIGHT_HIGH_RARIY_FOR_COPY", - Self::RetGridFightRoleFullForCopy => "RET_GRID_FIGHT_ROLE_FULL_FOR_COPY", - Self::RetGridFightUndressEquipFail => "RET_GRID_FIGHT_UNDRESS_EQUIP_FAIL", - Self::RetGridFightDataLocked => "RET_GRID_FIGHT_DATA_LOCKED", - Self::RetGridFightSameRoleInBattle => "RET_GRID_FIGHT_SAME_ROLE_IN_BATTLE", - Self::RetGridFightSupplyAllSelected => "RET_GRID_FIGHT_SUPPLY_ALL_SELECTED", - Self::RetGridFightTraitTrackMax => "RET_GRID_FIGHT_TRAIT_TRACK_MAX", - Self::RetGridFightPosBan => "RET_GRID_FIGHT_POS_BAN", - Self::RetGridFightPosExistItem => "RET_GRID_FIGHT_POS_EXIST_ITEM", - Self::RetGridFightTalentEnabled => "RET_GRID_FIGHT_TALENT_ENABLED", - Self::RetGridFightTalentCostNotEnough => { - "RET_GRID_FIGHT_TALENT_COST_NOT_ENOUGH" - } - Self::RetGridFightTalentPreNotEnabled => { - "RET_GRID_FIGHT_TALENT_PRE_NOT_ENABLED" - } - Self::RetGridFightDivisionInvalid => "RET_GRID_FIGHT_DIVISION_INVALID", - Self::RetGridFightTalentPermanentLimit => { - "RET_GRID_FIGHT_TALENT_PERMANENT_LIMIT" - } - Self::RetGridFightWeeklyRewardTaken => "RET_GRID_FIGHT_WEEKLY_REWARD_TAKEN", - Self::RetGridFightWeeklyScoreNotEnough => { - "RET_GRID_FIGHT_WEEKLY_SCORE_NOT_ENOUGH" - } - Self::RetGridFightCraftCostEquipDressed => { - "RET_GRID_FIGHT_CRAFT_COST_EQUIP_DRESSED" - } - Self::RetGridFightCreateNpcFail => "RET_GRID_FIGHT_CREATE_NPC_FAIL", - Self::RetGridFightNoPosCanPlace => "RET_GRID_FIGHT_NO_POS_CAN_PLACE", - Self::RetGridFightNpcPosLimit => "RET_GRID_FIGHT_NPC_POS_LIMIT", - Self::RetGridFightCraftEquipOnDiffRole => { - "RET_GRID_FIGHT_CRAFT_EQUIP_ON_DIFF_ROLE" - } - Self::RetGridFightGlobalHpNotEnough => "RET_GRID_FIGHT_GLOBAL_HP_NOT_ENOUGH", - Self::RetGridFightEquipTrackMax => "RET_GRID_FIGHT_EQUIP_TRACK_MAX", - Self::RetGridFightNpcNotExist => "RET_GRID_FIGHT_NPC_NOT_EXIST", - Self::RetGridFightRecycleRoleInTutorial => { - "RET_GRID_FIGHT_RECYCLE_ROLE_IN_TUTORIAL" - } - Self::RetGridFightTutorialTaskNotFinished => { - "RET_GRID_FIGHT_TUTORIAL_TASK_NOT_FINISHED" - } - Self::RetGridFightTutorialUpdatePosIninvalid => { - "RET_GRID_FIGHT_TUTORIAL_UPDATE_POS_ININVALID" - } - Self::RetGridFightNoRerollCnt => "RET_GRID_FIGHT_NO_REROLL_CNT", - Self::RetGridFightTutorialRefreshShopLimited => { - "RET_GRID_FIGHT_TUTORIAL_REFRESH_SHOP_LIMITED" - } - Self::RetGridFightTutorialBuyShopLimited => { - "RET_GRID_FIGHT_TUTORIAL_BUY_SHOP_LIMITED" - } - Self::RetGridFightOcUnlockQuestNotFinished => { - "RET_GRID_FIGHT_OC_UNLOCK_QUEST_NOT_FINISHED" - } - Self::RetGridFightForgeLimitSelectIdxInTutorial => { - "RET_GRID_FIGHT_FORGE_LIMIT_SELECT_IDX_IN_TUTORIAL" - } - Self::RetGridFightGameRefIdTooLong => "RET_GRID_FIGHT_GAME_REF_ID_TOO_LONG", - Self::RetGridFightFeatureSwitchClosed => { - "RET_GRID_FIGHT_FEATURE_SWITCH_CLOSED" - } - Self::RetGridFightEquipTraitExclusive => { - "RET_GRID_FIGHT_EQUIP_TRAIT_EXCLUSIVE" - } - Self::RetGridFightShopLocked => "RET_GRID_FIGHT_SHOP_LOCKED", - Self::RetGridFightBuyExpLocked => "RET_GRID_FIGHT_BUY_EXP_LOCKED", - Self::RetHipplenAgendaWorkUnavaible => "RET_HIPPLEN_AGENDA_WORK_UNAVAIBLE", - Self::RetHipplenAgendaWorkConflict => "RET_HIPPLEN_AGENDA_WORK_CONFLICT", - Self::RetHipplenAgendaActionLack => "RET_HIPPLEN_AGENDA_ACTION_LACK", - Self::RetHipplenAgendaEnergyLack => "RET_HIPPLEN_AGENDA_ENERGY_LACK", - Self::RetHipplenAgendaNoWorkForSettle => { - "RET_HIPPLEN_AGENDA_NO_WORK_FOR_SETTLE" - } - Self::RetHipplenAgendaSettleWorkMismatch => { - "RET_HIPPLEN_AGENDA_SETTLE_WORK_MISMATCH" - } - Self::RetHipplenPhaseConfigNoFound => "RET_HIPPLEN_PHASE_CONFIG_NO_FOUND", - Self::RetHipplenTrialMissionNotFinished => { - "RET_HIPPLEN_TRIAL_MISSION_NOT_FINISHED" - } - Self::RetHipplenAgendaSetWhenTrial => "RET_HIPPLEN_AGENDA_SET_WHEN_TRIAL", - Self::RetHipplenAgendaOpenCycleFail => "RET_HIPPLEN_AGENDA_OPEN_CYCLE_FAIL", - Self::RetHipplenAgendaSettleParaInvalid => { - "RET_HIPPLEN_AGENDA_SETTLE_PARA_INVALID" - } - Self::RetHipplenAgendaWorkSetTwice => "RET_HIPPLEN_AGENDA_WORK_SET_TWICE", - Self::RetHipplenAgendaWorkSettleTwice => { - "RET_HIPPLEN_AGENDA_WORK_SETTLE_TWICE" - } - Self::RetHipplenOutfitNotWeared => "RET_HIPPLEN_OUTFIT_NOT_WEARED", - Self::RetHipplenOutfitNotOwn => "RET_HIPPLEN_OUTFIT_NOT_OWN", - Self::RetHipplenOutfitInvalid => "RET_HIPPLEN_OUTFIT_INVALID", - Self::RetHipplenOutfitTypeWeared => "RET_HIPPLEN_OUTFIT_TYPE_WEARED", - Self::RetHipplenAgendaWorkEmpty => "RET_HIPPLEN_AGENDA_WORK_EMPTY", - Self::RetHipplenEndingLock => "RET_HIPPLEN_ENDING_LOCK", - Self::RetHipplenEndingRewardAlreadyTaken => { - "RET_HIPPLEN_ENDING_REWARD_ALREADY_TAKEN" - } - Self::RetHipplenTraitLock => "RET_HIPPLEN_TRAIT_LOCK", - Self::RetHipplenAgendaActionLeft => "RET_HIPPLEN_AGENDA_ACTION_LEFT", - Self::RetHipplenBackwardTrialMissionNotFinished => { - "RET_HIPPLEN_BACKWARD_TRIAL_MISSION_NOT_FINISHED" - } - Self::RetRelicboxHasPendingRelic => "RET_RELICBOX_HAS_PENDING_RELIC", - Self::RetRelicboxNoPendingRelic => "RET_RELICBOX_NO_PENDING_RELIC", - Self::RetRelicboxTargetAvatarInvalid => "RET_RELICBOX_TARGET_AVATAR_INVALID", - Self::RetRelicboxTargetRelicSetInvalid => { - "RET_RELICBOX_TARGET_RELIC_SET_INVALID" - } - Self::RetRelicboxAllowPositionEmpty => "RET_RELICBOX_ALLOW_POSITION_EMPTY", - Self::RetRelicboxRelicConfigNotFound => "RET_RELICBOX_RELIC_CONFIG_NOT_FOUND", - Self::RetRelicboxMainAffixIdInvalid => "RET_RELICBOX_MAIN_AFFIX_ID_INVALID", - Self::RetRelicboxSubAffixInvalid => "RET_RELICBOX_SUB_AFFIX_INVALID", - Self::RetRelicboxRelicCreateFail => "RET_RELICBOX_RELIC_CREATE_FAIL", - Self::RetRelicboxLibConfigNotFound => "RET_RELICBOX_LIB_CONFIG_NOT_FOUND", - Self::RetRelicboxShieldLock => "RET_RELICBOX_SHIELD_LOCK", - Self::RetRelicboxCustomAvatarInvalid => "RET_RELICBOX_CUSTOM_AVATAR_INVALID", - Self::RetRelicboxCustomRelicSetInvalid => { - "RET_RELICBOX_CUSTOM_RELIC_SET_INVALID" - } - Self::RetRelicboxRelicInBox => "RET_RELICBOX_RELIC_IN_BOX", - Self::RetRelicboxOpenTargetConflict => "RET_RELICBOX_OPEN_TARGET_CONFLICT", - Self::RetRelicboxRelicTypeInvalid => "RET_RELICBOX_RELIC_TYPE_INVALID", + Self::IcdigiekflaMpfjlfaoceb => "ICDIGIEKFLA_MPFJLFAOCEB", + Self::IcdigiekflaGjhiebgnoce => "ICDIGIEKFLA_GJHIEBGNOCE", + Self::IcdigiekflaJbgmnipdanj => "ICDIGIEKFLA_JBGMNIPDANJ", + Self::IcdigiekflaKgnbgobmoad => "ICDIGIEKFLA_KGNBGOBMOAD", + Self::IcdigiekflaEbpngcilpoa => "ICDIGIEKFLA_EBPNGCILPOA", + Self::IcdigiekflaBngdnhiiael => "ICDIGIEKFLA_BNGDNHIIAEL", + Self::IcdigiekflaOchfemhghin => "ICDIGIEKFLA_OCHFEMHGHIN", + Self::IcdigiekflaKknbmefdbka => "ICDIGIEKFLA_KKNBMEFDBKA", + Self::IcdigiekflaHhngmdggldo => "ICDIGIEKFLA_HHNGMDGGLDO", + Self::IcdigiekflaFgoneibcfjb => "ICDIGIEKFLA_FGONEIBCFJB", + Self::IcdigiekflaPbagabikdho => "ICDIGIEKFLA_PBAGABIKDHO", + Self::IcdigiekflaFpfcfaaohmi => "ICDIGIEKFLA_FPFCFAAOHMI", + Self::IcdigiekflaPjhcmaipgjm => "ICDIGIEKFLA_PJHCMAIPGJM", + Self::IcdigiekflaDfmdojhdiji => "ICDIGIEKFLA_DFMDOJHDIJI", + Self::IcdigiekflaHfalkhnlman => "ICDIGIEKFLA_HFALKHNLMAN", + Self::IcdigiekflaKfookfohicb => "ICDIGIEKFLA_KFOOKFOHICB", + Self::IcdigiekflaMoegakbeadk => "ICDIGIEKFLA_MOEGAKBEADK", + Self::IcdigiekflaMpnoilaneic => "ICDIGIEKFLA_MPNOILANEIC", + Self::IcdigiekflaNpocnbkiihm => "ICDIGIEKFLA_NPOCNBKIIHM", + Self::IcdigiekflaHpbkfkkbcap => "ICDIGIEKFLA_HPBKFKKBCAP", + Self::IcdigiekflaJompkcmbgeg => "ICDIGIEKFLA_JOMPKCMBGEG", + Self::IcdigiekflaPddikblfojd => "ICDIGIEKFLA_PDDIKBLFOJD", + Self::IcdigiekflaOhaelpejajp => "ICDIGIEKFLA_OHAELPEJAJP", + Self::IcdigiekflaKnlpkdkpgog => "ICDIGIEKFLA_KNLPKDKPGOG", + Self::IcdigiekflaPlodakciopp => "ICDIGIEKFLA_PLODAKCIOPP", + Self::IcdigiekflaLmmnfkogffb => "ICDIGIEKFLA_LMMNFKOGFFB", + Self::IcdigiekflaLnmgcpdhfbp => "ICDIGIEKFLA_LNMGCPDHFBP", + Self::IcdigiekflaHmifeaaacfn => "ICDIGIEKFLA_HMIFEAAACFN", + Self::IcdigiekflaLeliogddelb => "ICDIGIEKFLA_LELIOGDDELB", + Self::IcdigiekflaCnpnmhffhkb => "ICDIGIEKFLA_CNPNMHFFHKB", + Self::IcdigiekflaGgphmjpfmkk => "ICDIGIEKFLA_GGPHMJPFMKK", + Self::IcdigiekflaBpbahmeninm => "ICDIGIEKFLA_BPBAHMENINM", + Self::IcdigiekflaEjfkpncoleg => "ICDIGIEKFLA_EJFKPNCOLEG", + Self::IcdigiekflaLaebhnebdog => "ICDIGIEKFLA_LAEBHNEBDOG", + Self::IcdigiekflaJnakglnljom => "ICDIGIEKFLA_JNAKGLNLJOM", + Self::IcdigiekflaHkeipkiniaf => "ICDIGIEKFLA_HKEIPKINIAF", + Self::IcdigiekflaEmlliicleng => "ICDIGIEKFLA_EMLLIICLENG", + Self::IcdigiekflaLealkhaejag => "ICDIGIEKFLA_LEALKHAEJAG", + Self::IcdigiekflaJeeoomablpa => "ICDIGIEKFLA_JEEOOMABLPA", + Self::IcdigiekflaCdacjcimnaj => "ICDIGIEKFLA_CDACJCIMNAJ", + Self::IcdigiekflaFopniajdfgj => "ICDIGIEKFLA_FOPNIAJDFGJ", + Self::IcdigiekflaNfbmhenbnel => "ICDIGIEKFLA_NFBMHENBNEL", + Self::IcdigiekflaPlladhkmghj => "ICDIGIEKFLA_PLLADHKMGHJ", + Self::IcdigiekflaAdbikendfof => "ICDIGIEKFLA_ADBIKENDFOF", + Self::IcdigiekflaMclnlaljcob => "ICDIGIEKFLA_MCLNLALJCOB", + Self::IcdigiekflaDckgjmkbkaj => "ICDIGIEKFLA_DCKGJMKBKAJ", + Self::IcdigiekflaMihhcmphcnm => "ICDIGIEKFLA_MIHHCMPHCNM", + Self::IcdigiekflaIbglkmghiaf => "ICDIGIEKFLA_IBGLKMGHIAF", + Self::IcdigiekflaPldfjgklchi => "ICDIGIEKFLA_PLDFJGKLCHI", + Self::IcdigiekflaDhldaoicfhm => "ICDIGIEKFLA_DHLDAOICFHM", + Self::IcdigiekflaEbdkmkonaog => "ICDIGIEKFLA_EBDKMKONAOG", + Self::IcdigiekflaNbkndkiepkn => "ICDIGIEKFLA_NBKNDKIEPKN", + Self::IcdigiekflaEedbdnmcpeo => "ICDIGIEKFLA_EEDBDNMCPEO", + Self::IcdigiekflaLmeklnelojc => "ICDIGIEKFLA_LMEKLNELOJC", + Self::IcdigiekflaKpmgbkigocn => "ICDIGIEKFLA_KPMGBKIGOCN", + Self::IcdigiekflaNfahiijjehk => "ICDIGIEKFLA_NFAHIIJJEHK", + Self::IcdigiekflaGcabfgajggb => "ICDIGIEKFLA_GCABFGAJGGB", + Self::IcdigiekflaMbeobdaemad => "ICDIGIEKFLA_MBEOBDAEMAD", + Self::IcdigiekflaGeikghjcbml => "ICDIGIEKFLA_GEIKGHJCBML", + Self::IcdigiekflaNdapdbjejll => "ICDIGIEKFLA_NDAPDBJEJLL", + Self::IcdigiekflaBhkaaafiaan => "ICDIGIEKFLA_BHKAAAFIAAN", + Self::IcdigiekflaMdfhlcejced => "ICDIGIEKFLA_MDFHLCEJCED", + Self::IcdigiekflaEgdpbgffahh => "ICDIGIEKFLA_EGDPBGFFAHH", + Self::IcdigiekflaGbchonokdmi => "ICDIGIEKFLA_GBCHONOKDMI", + Self::IcdigiekflaPbllhimlpio => "ICDIGIEKFLA_PBLLHIMLPIO", + Self::IcdigiekflaMnjjibgfefp => "ICDIGIEKFLA_MNJJIBGFEFP", + Self::IcdigiekflaPdpaappmahm => "ICDIGIEKFLA_PDPAAPPMAHM", + Self::IcdigiekflaOdjoljgmhfo => "ICDIGIEKFLA_ODJOLJGMHFO", + Self::IcdigiekflaEopnbhflodg => "ICDIGIEKFLA_EOPNBHFLODG", + Self::IcdigiekflaJphocnlclne => "ICDIGIEKFLA_JPHOCNLCLNE", + Self::IcdigiekflaBnmdekclool => "ICDIGIEKFLA_BNMDEKCLOOL", + Self::IcdigiekflaEhdohcaedhf => "ICDIGIEKFLA_EHDOHCAEDHF", + Self::IcdigiekflaDoimljfaech => "ICDIGIEKFLA_DOIMLJFAECH", + Self::IcdigiekflaCnkegnpiaeh => "ICDIGIEKFLA_CNKEGNPIAEH", + Self::IcdigiekflaPbkcoepjbhb => "ICDIGIEKFLA_PBKCOEPJBHB", + Self::IcdigiekflaLhljnejpfld => "ICDIGIEKFLA_LHLJNEJPFLD", + Self::IcdigiekflaBahenaanlmi => "ICDIGIEKFLA_BAHENAANLMI", + Self::IcdigiekflaAkddebeemee => "ICDIGIEKFLA_AKDDEBEEMEE", + Self::IcdigiekflaFnpcbjogjce => "ICDIGIEKFLA_FNPCBJOGJCE", + Self::IcdigiekflaBejdimnlfjn => "ICDIGIEKFLA_BEJDIMNLFJN", + Self::IcdigiekflaPemhnkpfign => "ICDIGIEKFLA_PEMHNKPFIGN", + Self::IcdigiekflaImiemamolfo => "ICDIGIEKFLA_IMIEMAMOLFO", + Self::IcdigiekflaDonaaolpjij => "ICDIGIEKFLA_DONAAOLPJIJ", + Self::IcdigiekflaDeplcgfjcee => "ICDIGIEKFLA_DEPLCGFJCEE", + Self::IcdigiekflaMgimiaaafnf => "ICDIGIEKFLA_MGIMIAAAFNF", + Self::IcdigiekflaBgkpkmneace => "ICDIGIEKFLA_BGKPKMNEACE", + Self::IcdigiekflaLdbjebgbloc => "ICDIGIEKFLA_LDBJEBGBLOC", + Self::IcdigiekflaKiachamcpbn => "ICDIGIEKFLA_KIACHAMCPBN", + Self::IcdigiekflaAgbbpgchnem => "ICDIGIEKFLA_AGBBPGCHNEM", + Self::IcdigiekflaIeljdegjepc => "ICDIGIEKFLA_IELJDEGJEPC", + Self::IcdigiekflaLjjljjndlkp => "ICDIGIEKFLA_LJJLJJNDLKP", + Self::IcdigiekflaMeoaffiffac => "ICDIGIEKFLA_MEOAFFIFFAC", + Self::IcdigiekflaOnfabohiede => "ICDIGIEKFLA_ONFABOHIEDE", + Self::IcdigiekflaHpjnbdpgfin => "ICDIGIEKFLA_HPJNBDPGFIN", + Self::IcdigiekflaBcjcgompome => "ICDIGIEKFLA_BCJCGOMPOME", + Self::IcdigiekflaEmmeogkdbje => "ICDIGIEKFLA_EMMEOGKDBJE", + Self::IcdigiekflaGoidecpdlja => "ICDIGIEKFLA_GOIDECPDLJA", + Self::IcdigiekflaJkbmmhdmich => "ICDIGIEKFLA_JKBMMHDMICH", + Self::IcdigiekflaEaokpafjafh => "ICDIGIEKFLA_EAOKPAFJAFH", + Self::IcdigiekflaIbmbenikcka => "ICDIGIEKFLA_IBMBENIKCKA", + Self::IcdigiekflaEkbigjdmjej => "ICDIGIEKFLA_EKBIGJDMJEJ", + Self::IcdigiekflaIcmhgjkfpio => "ICDIGIEKFLA_ICMHGJKFPIO", + Self::IcdigiekflaCldpgcoinnf => "ICDIGIEKFLA_CLDPGCOINNF", + Self::IcdigiekflaFpknaiolfie => "ICDIGIEKFLA_FPKNAIOLFIE", + Self::IcdigiekflaGjbbnjoljaj => "ICDIGIEKFLA_GJBBNJOLJAJ", + Self::IcdigiekflaOjhgaipgfli => "ICDIGIEKFLA_OJHGAIPGFLI", + Self::IcdigiekflaOfnmocgbckj => "ICDIGIEKFLA_OFNMOCGBCKJ", + Self::IcdigiekflaGkcjbkenelc => "ICDIGIEKFLA_GKCJBKENELC", + Self::IcdigiekflaCbnlilepgcp => "ICDIGIEKFLA_CBNLILEPGCP", + Self::IcdigiekflaDohahancicp => "ICDIGIEKFLA_DOHAHANCICP", + Self::IcdigiekflaAfhaeblgcnm => "ICDIGIEKFLA_AFHAEBLGCNM", + Self::IcdigiekflaOkfdoeehllo => "ICDIGIEKFLA_OKFDOEEHLLO", + Self::IcdigiekflaHfdidnnlbla => "ICDIGIEKFLA_HFDIDNNLBLA", + Self::IcdigiekflaKlionningka => "ICDIGIEKFLA_KLIONNINGKA", + Self::IcdigiekflaDkmkpbioonj => "ICDIGIEKFLA_DKMKPBIOONJ", + Self::IcdigiekflaHpggcmnpmba => "ICDIGIEKFLA_HPGGCMNPMBA", + Self::IcdigiekflaCekbaeaidjh => "ICDIGIEKFLA_CEKBAEAIDJH", + Self::IcdigiekflaBkmilkafkkp => "ICDIGIEKFLA_BKMILKAFKKP", + Self::IcdigiekflaPikpaklkbhg => "ICDIGIEKFLA_PIKPAKLKBHG", + Self::IcdigiekflaLojkjniaplb => "ICDIGIEKFLA_LOJKJNIAPLB", + Self::IcdigiekflaPbhlcjhplph => "ICDIGIEKFLA_PBHLCJHPLPH", + Self::IcdigiekflaIblfiblcppo => "ICDIGIEKFLA_IBLFIBLCPPO", + Self::IcdigiekflaAlkaddeeojh => "ICDIGIEKFLA_ALKADDEEOJH", + Self::IcdigiekflaNidnpgonfbj => "ICDIGIEKFLA_NIDNPGONFBJ", + Self::IcdigiekflaKobgjbagfnp => "ICDIGIEKFLA_KOBGJBAGFNP", + Self::IcdigiekflaPohbbnnpede => "ICDIGIEKFLA_POHBBNNPEDE", + Self::IcdigiekflaFocniheiaao => "ICDIGIEKFLA_FOCNIHEIAAO", + Self::IcdigiekflaBjjplanhpag => "ICDIGIEKFLA_BJJPLANHPAG", + Self::IcdigiekflaAanidhckfml => "ICDIGIEKFLA_AANIDHCKFML", + Self::IcdigiekflaFiklgifcilk => "ICDIGIEKFLA_FIKLGIFCILK", + Self::IcdigiekflaLjndcneomba => "ICDIGIEKFLA_LJNDCNEOMBA", + Self::IcdigiekflaMjahdofalnb => "ICDIGIEKFLA_MJAHDOFALNB", + Self::IcdigiekflaGfglminkngj => "ICDIGIEKFLA_GFGLMINKNGJ", + Self::IcdigiekflaDemncpaimgh => "ICDIGIEKFLA_DEMNCPAIMGH", + Self::IcdigiekflaBbbfdgfjhij => "ICDIGIEKFLA_BBBFDGFJHIJ", + Self::IcdigiekflaChmfdccmgpf => "ICDIGIEKFLA_CHMFDCCMGPF", + Self::IcdigiekflaFmooemdjbij => "ICDIGIEKFLA_FMOOEMDJBIJ", + Self::IcdigiekflaFfkmncfmdfk => "ICDIGIEKFLA_FFKMNCFMDFK", + Self::IcdigiekflaMaonceanfnd => "ICDIGIEKFLA_MAONCEANFND", + Self::IcdigiekflaGpjnifokobc => "ICDIGIEKFLA_GPJNIFOKOBC", + Self::IcdigiekflaFafnbnnpdli => "ICDIGIEKFLA_FAFNBNNPDLI", + Self::IcdigiekflaLibjiokmmfj => "ICDIGIEKFLA_LIBJIOKMMFJ", + Self::IcdigiekflaDieoiihjenl => "ICDIGIEKFLA_DIEOIIHJENL", + Self::IcdigiekflaGfhkeoajhpo => "ICDIGIEKFLA_GFHKEOAJHPO", + Self::IcdigiekflaFlmejkjcfhm => "ICDIGIEKFLA_FLMEJKJCFHM", + Self::IcdigiekflaDdccifccdhk => "ICDIGIEKFLA_DDCCIFCCDHK", + Self::IcdigiekflaKmaiekblpbk => "ICDIGIEKFLA_KMAIEKBLPBK", + Self::IcdigiekflaDnoeolhnkii => "ICDIGIEKFLA_DNOEOLHNKII", + Self::IcdigiekflaAefinjkjahp => "ICDIGIEKFLA_AEFINJKJAHP", + Self::IcdigiekflaIoldkflkbmc => "ICDIGIEKFLA_IOLDKFLKBMC", + Self::IcdigiekflaCioffjfencl => "ICDIGIEKFLA_CIOFFJFENCL", + Self::IcdigiekflaPjjjllodobc => "ICDIGIEKFLA_PJJJLLODOBC", + Self::IcdigiekflaHbmppcckgbb => "ICDIGIEKFLA_HBMPPCCKGBB", + Self::IcdigiekflaHoonoppmacl => "ICDIGIEKFLA_HOONOPPMACL", + Self::IcdigiekflaIegocccnhca => "ICDIGIEKFLA_IEGOCCCNHCA", + Self::IcdigiekflaBealmhfaenc => "ICDIGIEKFLA_BEALMHFAENC", + Self::IcdigiekflaCcngnfgehgp => "ICDIGIEKFLA_CCNGNFGEHGP", + Self::IcdigiekflaLkjegbgenia => "ICDIGIEKFLA_LKJEGBGENIA", + Self::IcdigiekflaOcingdddebd => "ICDIGIEKFLA_OCINGDDDEBD", + Self::IcdigiekflaIghmmcahmah => "ICDIGIEKFLA_IGHMMCAHMAH", + Self::IcdigiekflaCoojpjlmlbm => "ICDIGIEKFLA_COOJPJLMLBM", + Self::IcdigiekflaHjimdjhmfhi => "ICDIGIEKFLA_HJIMDJHMFHI", + Self::IcdigiekflaMjacnfooeih => "ICDIGIEKFLA_MJACNFOOEIH", + Self::IcdigiekflaMakbijclmdo => "ICDIGIEKFLA_MAKBIJCLMDO", + Self::IcdigiekflaOejpjmfbeff => "ICDIGIEKFLA_OEJPJMFBEFF", + Self::IcdigiekflaFneaodilhjc => "ICDIGIEKFLA_FNEAODILHJC", + Self::IcdigiekflaAeajcikhmhp => "ICDIGIEKFLA_AEAJCIKHMHP", + Self::IcdigiekflaHaicmifhakg => "ICDIGIEKFLA_HAICMIFHAKG", + Self::IcdigiekflaDgiabglnccl => "ICDIGIEKFLA_DGIABGLNCCL", + Self::IcdigiekflaLkcbojomede => "ICDIGIEKFLA_LKCBOJOMEDE", + Self::IcdigiekflaKnijmpaphnd => "ICDIGIEKFLA_KNIJMPAPHND", + Self::IcdigiekflaBjfmfommblg => "ICDIGIEKFLA_BJFMFOMMBLG", + Self::IcdigiekflaMkhhijamdlc => "ICDIGIEKFLA_MKHHIJAMDLC", + Self::IcdigiekflaFkcgclmgnam => "ICDIGIEKFLA_FKCGCLMGNAM", + Self::IcdigiekflaEocjfhagmin => "ICDIGIEKFLA_EOCJFHAGMIN", + Self::IcdigiekflaIbfjalkcdkc => "ICDIGIEKFLA_IBFJALKCDKC", + Self::IcdigiekflaBfgdfcaaopg => "ICDIGIEKFLA_BFGDFCAAOPG", + Self::IcdigiekflaJfemeafjmml => "ICDIGIEKFLA_JFEMEAFJMML", + Self::IcdigiekflaOdlocojmnjo => "ICDIGIEKFLA_ODLOCOJMNJO", + Self::IcdigiekflaOocpgpleiik => "ICDIGIEKFLA_OOCPGPLEIIK", + Self::IcdigiekflaKolgnebkllk => "ICDIGIEKFLA_KOLGNEBKLLK", + Self::IcdigiekflaHllondgidao => "ICDIGIEKFLA_HLLONDGIDAO", + Self::IcdigiekflaLnbgkohdmln => "ICDIGIEKFLA_LNBGKOHDMLN", + Self::IcdigiekflaDfkcfhcmdho => "ICDIGIEKFLA_DFKCFHCMDHO", + Self::IcdigiekflaCnlhnkkmmhk => "ICDIGIEKFLA_CNLHNKKMMHK", + Self::IcdigiekflaAamfmdjkbai => "ICDIGIEKFLA_AAMFMDJKBAI", + Self::IcdigiekflaElgejcgiohh => "ICDIGIEKFLA_ELGEJCGIOHH", + Self::IcdigiekflaPgmjppipalc => "ICDIGIEKFLA_PGMJPPIPALC", + Self::IcdigiekflaPnmpiciepgm => "ICDIGIEKFLA_PNMPICIEPGM", + Self::IcdigiekflaMimdgbfoidd => "ICDIGIEKFLA_MIMDGBFOIDD", + Self::IcdigiekflaPgcoeimdggg => "ICDIGIEKFLA_PGCOEIMDGGG", + Self::IcdigiekflaOmholfopafc => "ICDIGIEKFLA_OMHOLFOPAFC", + Self::IcdigiekflaFaiakhakagk => "ICDIGIEKFLA_FAIAKHAKAGK", + Self::IcdigiekflaCgpihiejdpa => "ICDIGIEKFLA_CGPIHIEJDPA", + Self::IcdigiekflaIhggdoofdmf => "ICDIGIEKFLA_IHGGDOOFDMF", + Self::IcdigiekflaCdpbmgdooma => "ICDIGIEKFLA_CDPBMGDOOMA", + Self::IcdigiekflaNjeffbgfmok => "ICDIGIEKFLA_NJEFFBGFMOK", + Self::IcdigiekflaEfmpifgimkf => "ICDIGIEKFLA_EFMPIFGIMKF", + Self::IcdigiekflaPiigkdaecbg => "ICDIGIEKFLA_PIIGKDAECBG", + Self::IcdigiekflaBmnolkgmhib => "ICDIGIEKFLA_BMNOLKGMHIB", + Self::IcdigiekflaLfbnhenjlpj => "ICDIGIEKFLA_LFBNHENJLPJ", + Self::IcdigiekflaAjnknnojlhm => "ICDIGIEKFLA_AJNKNNOJLHM", + Self::IcdigiekflaOplgojlocch => "ICDIGIEKFLA_OPLGOJLOCCH", + Self::IcdigiekflaDopajcpibaj => "ICDIGIEKFLA_DOPAJCPIBAJ", + Self::IcdigiekflaLnjdaaoehep => "ICDIGIEKFLA_LNJDAAOEHEP", + Self::IcdigiekflaKkfbccglnka => "ICDIGIEKFLA_KKFBCCGLNKA", + Self::IcdigiekflaNjppjdldhjk => "ICDIGIEKFLA_NJPPJDLDHJK", + Self::IcdigiekflaMhldhjaeend => "ICDIGIEKFLA_MHLDHJAEEND", + Self::IcdigiekflaIckojphkpoh => "ICDIGIEKFLA_ICKOJPHKPOH", + Self::IcdigiekflaFmchjbcjikl => "ICDIGIEKFLA_FMCHJBCJIKL", + Self::IcdigiekflaIabgjcjmamh => "ICDIGIEKFLA_IABGJCJMAMH", + Self::IcdigiekflaCijdliognpm => "ICDIGIEKFLA_CIJDLIOGNPM", + Self::IcdigiekflaJmknnogoooj => "ICDIGIEKFLA_JMKNNOGOOOJ", + Self::IcdigiekflaBkgcpdfmelm => "ICDIGIEKFLA_BKGCPDFMELM", + Self::IcdigiekflaHjcfikhkdlm => "ICDIGIEKFLA_HJCFIKHKDLM", + Self::IcdigiekflaEmdaealhjcd => "ICDIGIEKFLA_EMDAEALHJCD", + Self::IcdigiekflaFbdadkmfdia => "ICDIGIEKFLA_FBDADKMFDIA", + Self::IcdigiekflaMkjhlomjfpm => "ICDIGIEKFLA_MKJHLOMJFPM", + Self::IcdigiekflaAhlokjiekpp => "ICDIGIEKFLA_AHLOKJIEKPP", + Self::IcdigiekflaKabkgjkkejl => "ICDIGIEKFLA_KABKGJKKEJL", + Self::IcdigiekflaLpjmnclfeee => "ICDIGIEKFLA_LPJMNCLFEEE", + Self::IcdigiekflaFjcnmjogiec => "ICDIGIEKFLA_FJCNMJOGIEC", + Self::IcdigiekflaPbenpemkcih => "ICDIGIEKFLA_PBENPEMKCIH", + Self::IcdigiekflaHbkhkflhjao => "ICDIGIEKFLA_HBKHKFLHJAO", + Self::IcdigiekflaDinindodaik => "ICDIGIEKFLA_DININDODAIK", + Self::IcdigiekflaLfbdgcnjlhn => "ICDIGIEKFLA_LFBDGCNJLHN", + Self::IcdigiekflaMcmcaikpeal => "ICDIGIEKFLA_MCMCAIKPEAL", + Self::IcdigiekflaMnodheenjol => "ICDIGIEKFLA_MNODHEENJOL", + Self::IcdigiekflaPfgkhpdemin => "ICDIGIEKFLA_PFGKHPDEMIN", + Self::IcdigiekflaFcggenckacc => "ICDIGIEKFLA_FCGGENCKACC", + Self::IcdigiekflaGghkbljmjng => "ICDIGIEKFLA_GGHKBLJMJNG", + Self::IcdigiekflaCjlfhnlghel => "ICDIGIEKFLA_CJLFHNLGHEL", + Self::IcdigiekflaKjpofapimkm => "ICDIGIEKFLA_KJPOFAPIMKM", + Self::IcdigiekflaOjmdioageab => "ICDIGIEKFLA_OJMDIOAGEAB", + Self::IcdigiekflaDigaefojcia => "ICDIGIEKFLA_DIGAEFOJCIA", + Self::IcdigiekflaPghpofoglek => "ICDIGIEKFLA_PGHPOFOGLEK", + Self::IcdigiekflaAcechgnenaj => "ICDIGIEKFLA_ACECHGNENAJ", + Self::IcdigiekflaMlafikdjoen => "ICDIGIEKFLA_MLAFIKDJOEN", + Self::IcdigiekflaJdnkpphbimm => "ICDIGIEKFLA_JDNKPPHBIMM", + Self::IcdigiekflaGlpmffpciel => "ICDIGIEKFLA_GLPMFFPCIEL", + Self::IcdigiekflaMghieiabkgi => "ICDIGIEKFLA_MGHIEIABKGI", + Self::IcdigiekflaJndngehadfn => "ICDIGIEKFLA_JNDNGEHADFN", + Self::IcdigiekflaKmcakkfdpon => "ICDIGIEKFLA_KMCAKKFDPON", + Self::IcdigiekflaHbblgblollo => "ICDIGIEKFLA_HBBLGBLOLLO", + Self::IcdigiekflaBnaebgedaac => "ICDIGIEKFLA_BNAEBGEDAAC", + Self::IcdigiekflaNhhfacnagak => "ICDIGIEKFLA_NHHFACNAGAK", + Self::IcdigiekflaMlolneecibl => "ICDIGIEKFLA_MLOLNEECIBL", + Self::IcdigiekflaJmmhkibndjb => "ICDIGIEKFLA_JMMHKIBNDJB", + Self::IcdigiekflaGbnjkbdpckl => "ICDIGIEKFLA_GBNJKBDPCKL", + Self::IcdigiekflaKkpckgnkegb => "ICDIGIEKFLA_KKPCKGNKEGB", + Self::IcdigiekflaHnjecdnobgo => "ICDIGIEKFLA_HNJECDNOBGO", + Self::IcdigiekflaOegoafhmedh => "ICDIGIEKFLA_OEGOAFHMEDH", + Self::IcdigiekflaLgllkilhmkc => "ICDIGIEKFLA_LGLLKILHMKC", + Self::IcdigiekflaNbifbampfme => "ICDIGIEKFLA_NBIFBAMPFME", + Self::IcdigiekflaNbiackcchif => "ICDIGIEKFLA_NBIACKCCHIF", + Self::IcdigiekflaHophhgcfoie => "ICDIGIEKFLA_HOPHHGCFOIE", + Self::IcdigiekflaPnbgjbagahm => "ICDIGIEKFLA_PNBGJBAGAHM", + Self::IcdigiekflaEdicidoebko => "ICDIGIEKFLA_EDICIDOEBKO", + Self::IcdigiekflaDjjlinbfdcj => "ICDIGIEKFLA_DJJLINBFDCJ", + Self::IcdigiekflaHamcjhibhka => "ICDIGIEKFLA_HAMCJHIBHKA", + Self::IcdigiekflaCeeafglhmmf => "ICDIGIEKFLA_CEEAFGLHMMF", + Self::IcdigiekflaInjaiamlnko => "ICDIGIEKFLA_INJAIAMLNKO", + Self::IcdigiekflaMkfigkejppe => "ICDIGIEKFLA_MKFIGKEJPPE", + Self::IcdigiekflaPlcnleegcfe => "ICDIGIEKFLA_PLCNLEEGCFE", + Self::IcdigiekflaNhmgibkifnf => "ICDIGIEKFLA_NHMGIBKIFNF", + Self::IcdigiekflaEcnalogeklg => "ICDIGIEKFLA_ECNALOGEKLG", + Self::IcdigiekflaCaokmhcmjab => "ICDIGIEKFLA_CAOKMHCMJAB", + Self::IcdigiekflaCnniddhlgcj => "ICDIGIEKFLA_CNNIDDHLGCJ", + Self::IcdigiekflaJkmgbdajcbd => "ICDIGIEKFLA_JKMGBDAJCBD", + Self::IcdigiekflaDnocemhjbii => "ICDIGIEKFLA_DNOCEMHJBII", + Self::IcdigiekflaPkiojbancni => "ICDIGIEKFLA_PKIOJBANCNI", + Self::IcdigiekflaOdcbhggfnpn => "ICDIGIEKFLA_ODCBHGGFNPN", + Self::IcdigiekflaJaacgbngool => "ICDIGIEKFLA_JAACGBNGOOL", + Self::IcdigiekflaJgianmpdddd => "ICDIGIEKFLA_JGIANMPDDDD", + Self::IcdigiekflaMpbbkhhdoce => "ICDIGIEKFLA_MPBBKHHDOCE", + Self::IcdigiekflaApejhacmemn => "ICDIGIEKFLA_APEJHACMEMN", + Self::IcdigiekflaHmifnjjbhmg => "ICDIGIEKFLA_HMIFNJJBHMG", + Self::IcdigiekflaEldkalklpmh => "ICDIGIEKFLA_ELDKALKLPMH", + Self::IcdigiekflaOlcfpbegplm => "ICDIGIEKFLA_OLCFPBEGPLM", + Self::IcdigiekflaOofdccebcfi => "ICDIGIEKFLA_OOFDCCEBCFI", + Self::IcdigiekflaNflddjmngpa => "ICDIGIEKFLA_NFLDDJMNGPA", + Self::IcdigiekflaDcoekgegmce => "ICDIGIEKFLA_DCOEKGEGMCE", + Self::IcdigiekflaBjiciniaolg => "ICDIGIEKFLA_BJICINIAOLG", + Self::IcdigiekflaLhpnppneolo => "ICDIGIEKFLA_LHPNPPNEOLO", + Self::IcdigiekflaHeolojfblfo => "ICDIGIEKFLA_HEOLOJFBLFO", + Self::IcdigiekflaPolaaciekhh => "ICDIGIEKFLA_POLAACIEKHH", + Self::IcdigiekflaPpomahpkbda => "ICDIGIEKFLA_PPOMAHPKBDA", + Self::IcdigiekflaEaidpohgfde => "ICDIGIEKFLA_EAIDPOHGFDE", + Self::IcdigiekflaDmpdnhgclff => "ICDIGIEKFLA_DMPDNHGCLFF", + Self::IcdigiekflaKnhbiodhbjc => "ICDIGIEKFLA_KNHBIODHBJC", + Self::IcdigiekflaJafbckaiifp => "ICDIGIEKFLA_JAFBCKAIIFP", + Self::IcdigiekflaLlbbhjcilok => "ICDIGIEKFLA_LLBBHJCILOK", + Self::IcdigiekflaMpkdggnfpjj => "ICDIGIEKFLA_MPKDGGNFPJJ", + Self::IcdigiekflaHfohledebdg => "ICDIGIEKFLA_HFOHLEDEBDG", + Self::IcdigiekflaJlbbkdinpfe => "ICDIGIEKFLA_JLBBKDINPFE", + Self::IcdigiekflaMkiokfbcaic => "ICDIGIEKFLA_MKIOKFBCAIC", + Self::IcdigiekflaFhmcdpphbnf => "ICDIGIEKFLA_FHMCDPPHBNF", + Self::IcdigiekflaLgckcobflob => "ICDIGIEKFLA_LGCKCOBFLOB", + Self::IcdigiekflaLljhjocnice => "ICDIGIEKFLA_LLJHJOCNICE", + Self::IcdigiekflaPpmbkeobohb => "ICDIGIEKFLA_PPMBKEOBOHB", + Self::IcdigiekflaKhphhfkekck => "ICDIGIEKFLA_KHPHHFKEKCK", + Self::IcdigiekflaDbkddnodhoc => "ICDIGIEKFLA_DBKDDNODHOC", + Self::IcdigiekflaGoomonmphfb => "ICDIGIEKFLA_GOOMONMPHFB", + Self::IcdigiekflaAhlpokdaebl => "ICDIGIEKFLA_AHLPOKDAEBL", + Self::IcdigiekflaNakbkpiilbm => "ICDIGIEKFLA_NAKBKPIILBM", + Self::IcdigiekflaEnecdiobemg => "ICDIGIEKFLA_ENECDIOBEMG", + Self::IcdigiekflaJomancaoefi => "ICDIGIEKFLA_JOMANCAOEFI", + Self::IcdigiekflaLlaloekbbic => "ICDIGIEKFLA_LLALOEKBBIC", + Self::IcdigiekflaLbhddaknbcn => "ICDIGIEKFLA_LBHDDAKNBCN", + Self::IcdigiekflaEdghimaikem => "ICDIGIEKFLA_EDGHIMAIKEM", + Self::IcdigiekflaKibldhoiefl => "ICDIGIEKFLA_KIBLDHOIEFL", + Self::IcdigiekflaIelkfibddoa => "ICDIGIEKFLA_IELKFIBDDOA", + Self::IcdigiekflaEffkmjnpbbf => "ICDIGIEKFLA_EFFKMJNPBBF", + Self::IcdigiekflaKhjmcheenae => "ICDIGIEKFLA_KHJMCHEENAE", + Self::IcdigiekflaFiglpiegeia => "ICDIGIEKFLA_FIGLPIEGEIA", + Self::IcdigiekflaMcjngmaooje => "ICDIGIEKFLA_MCJNGMAOOJE", + Self::IcdigiekflaBamagoinnoo => "ICDIGIEKFLA_BAMAGOINNOO", + Self::IcdigiekflaEdjihmbeelh => "ICDIGIEKFLA_EDJIHMBEELH", + Self::IcdigiekflaAjdadnebipj => "ICDIGIEKFLA_AJDADNEBIPJ", + Self::IcdigiekflaHjooidfnhlb => "ICDIGIEKFLA_HJOOIDFNHLB", + Self::IcdigiekflaOafhckgimce => "ICDIGIEKFLA_OAFHCKGIMCE", + Self::IcdigiekflaEbgceaomona => "ICDIGIEKFLA_EBGCEAOMONA", + Self::IcdigiekflaHlneofgoblf => "ICDIGIEKFLA_HLNEOFGOBLF", + Self::IcdigiekflaKchbelhgenp => "ICDIGIEKFLA_KCHBELHGENP", + Self::IcdigiekflaBamfnjnabdo => "ICDIGIEKFLA_BAMFNJNABDO", + Self::IcdigiekflaPchdgpjhbag => "ICDIGIEKFLA_PCHDGPJHBAG", + Self::IcdigiekflaPdaiedmhfkd => "ICDIGIEKFLA_PDAIEDMHFKD", + Self::IcdigiekflaEkgopiidbdb => "ICDIGIEKFLA_EKGOPIIDBDB", + Self::IcdigiekflaMegbhanbeig => "ICDIGIEKFLA_MEGBHANBEIG", + Self::IcdigiekflaNjbdjhcemlb => "ICDIGIEKFLA_NJBDJHCEMLB", + Self::IcdigiekflaCoclicjjahk => "ICDIGIEKFLA_COCLICJJAHK", + Self::IcdigiekflaKidblkbdhba => "ICDIGIEKFLA_KIDBLKBDHBA", + Self::IcdigiekflaEajfkpohplp => "ICDIGIEKFLA_EAJFKPOHPLP", + Self::IcdigiekflaBkpjhnbgabd => "ICDIGIEKFLA_BKPJHNBGABD", + Self::IcdigiekflaOifccjlohnh => "ICDIGIEKFLA_OIFCCJLOHNH", + Self::IcdigiekflaBabghifcaka => "ICDIGIEKFLA_BABGHIFCAKA", + Self::IcdigiekflaBnkibklmcjh => "ICDIGIEKFLA_BNKIBKLMCJH", + Self::IcdigiekflaLimonlalgci => "ICDIGIEKFLA_LIMONLALGCI", + Self::IcdigiekflaBjaicnilmhj => "ICDIGIEKFLA_BJAICNILMHJ", + Self::IcdigiekflaJabmcliokcg => "ICDIGIEKFLA_JABMCLIOKCG", + Self::IcdigiekflaPkpnefkcfab => "ICDIGIEKFLA_PKPNEFKCFAB", + Self::IcdigiekflaEbpeopabkjg => "ICDIGIEKFLA_EBPEOPABKJG", + Self::IcdigiekflaKlfhlcejlgh => "ICDIGIEKFLA_KLFHLCEJLGH", + Self::IcdigiekflaCljpnfpccgc => "ICDIGIEKFLA_CLJPNFPCCGC", + Self::IcdigiekflaDcmenficjin => "ICDIGIEKFLA_DCMENFICJIN", + Self::IcdigiekflaDbcalkcembp => "ICDIGIEKFLA_DBCALKCEMBP", + Self::IcdigiekflaNomcfancjdj => "ICDIGIEKFLA_NOMCFANCJDJ", + Self::IcdigiekflaIllafmmhcgk => "ICDIGIEKFLA_ILLAFMMHCGK", + Self::IcdigiekflaLamidgaeajh => "ICDIGIEKFLA_LAMIDGAEAJH", + Self::IcdigiekflaJhgphaflngc => "ICDIGIEKFLA_JHGPHAFLNGC", + Self::IcdigiekflaGbgeegajgcp => "ICDIGIEKFLA_GBGEEGAJGCP", + Self::IcdigiekflaHoljipnkige => "ICDIGIEKFLA_HOLJIPNKIGE", + Self::IcdigiekflaGmlplpplcof => "ICDIGIEKFLA_GMLPLPPLCOF", + Self::IcdigiekflaDimknkaflgd => "ICDIGIEKFLA_DIMKNKAFLGD", + Self::IcdigiekflaBnkmddflmnj => "ICDIGIEKFLA_BNKMDDFLMNJ", + Self::IcdigiekflaLiildenlkcf => "ICDIGIEKFLA_LIILDENLKCF", + Self::IcdigiekflaElanilfddfh => "ICDIGIEKFLA_ELANILFDDFH", + Self::IcdigiekflaOlfeefcpknb => "ICDIGIEKFLA_OLFEEFCPKNB", + Self::IcdigiekflaFpdmmphlepg => "ICDIGIEKFLA_FPDMMPHLEPG", + Self::IcdigiekflaPhdnfbppkjp => "ICDIGIEKFLA_PHDNFBPPKJP", + Self::IcdigiekflaJbngeapfmpd => "ICDIGIEKFLA_JBNGEAPFMPD", + Self::IcdigiekflaLmglminmbia => "ICDIGIEKFLA_LMGLMINMBIA", + Self::IcdigiekflaLfnjfjfoanj => "ICDIGIEKFLA_LFNJFJFOANJ", + Self::IcdigiekflaGjhkmclodfh => "ICDIGIEKFLA_GJHKMCLODFH", + Self::IcdigiekflaBilimckogdc => "ICDIGIEKFLA_BILIMCKOGDC", + Self::IcdigiekflaFgnbbocpcnb => "ICDIGIEKFLA_FGNBBOCPCNB", + Self::IcdigiekflaJblmdnaaknp => "ICDIGIEKFLA_JBLMDNAAKNP", + Self::IcdigiekflaHpadcimchgd => "ICDIGIEKFLA_HPADCIMCHGD", + Self::IcdigiekflaKnojmpfcnoj => "ICDIGIEKFLA_KNOJMPFCNOJ", + Self::IcdigiekflaOjnfdcgoeii => "ICDIGIEKFLA_OJNFDCGOEII", + Self::IcdigiekflaPjnijbjhmlg => "ICDIGIEKFLA_PJNIJBJHMLG", + Self::IcdigiekflaGlnepmffebd => "ICDIGIEKFLA_GLNEPMFFEBD", + Self::IcdigiekflaMabhpkgooni => "ICDIGIEKFLA_MABHPKGOONI", + Self::IcdigiekflaEibbkcfehfg => "ICDIGIEKFLA_EIBBKCFEHFG", + Self::IcdigiekflaGijkjfpbolf => "ICDIGIEKFLA_GIJKJFPBOLF", + Self::IcdigiekflaCfgpjgoajfc => "ICDIGIEKFLA_CFGPJGOAJFC", + Self::IcdigiekflaDjakbniijcl => "ICDIGIEKFLA_DJAKBNIIJCL", + Self::IcdigiekflaEiojjmmdkka => "ICDIGIEKFLA_EIOJJMMDKKA", + Self::IcdigiekflaNgfdcakekdj => "ICDIGIEKFLA_NGFDCAKEKDJ", + Self::IcdigiekflaLgpclncnmdd => "ICDIGIEKFLA_LGPCLNCNMDD", + Self::IcdigiekflaGnienfocoka => "ICDIGIEKFLA_GNIENFOCOKA", + Self::IcdigiekflaPdfmeaajjeb => "ICDIGIEKFLA_PDFMEAAJJEB", + Self::IcdigiekflaHjdappidkih => "ICDIGIEKFLA_HJDAPPIDKIH", + Self::IcdigiekflaHokdiopmnhh => "ICDIGIEKFLA_HOKDIOPMNHH", + Self::IcdigiekflaLgelbmnhoin => "ICDIGIEKFLA_LGELBMNHOIN", + Self::IcdigiekflaEanijmapaea => "ICDIGIEKFLA_EANIJMAPAEA", + Self::IcdigiekflaJfdondhjmhk => "ICDIGIEKFLA_JFDONDHJMHK", + Self::IcdigiekflaMandhmldnma => "ICDIGIEKFLA_MANDHMLDNMA", + Self::IcdigiekflaBhnknkgaeii => "ICDIGIEKFLA_BHNKNKGAEII", + Self::IcdigiekflaGjkplkjpdpj => "ICDIGIEKFLA_GJKPLKJPDPJ", + Self::IcdigiekflaPflfipolbkd => "ICDIGIEKFLA_PFLFIPOLBKD", + Self::IcdigiekflaAfbdligicae => "ICDIGIEKFLA_AFBDLIGICAE", + Self::IcdigiekflaIndheolnnla => "ICDIGIEKFLA_INDHEOLNNLA", + Self::IcdigiekflaLlihlmiopeb => "ICDIGIEKFLA_LLIHLMIOPEB", + Self::IcdigiekflaFcindcnddfb => "ICDIGIEKFLA_FCINDCNDDFB", + Self::IcdigiekflaPdookmcomnd => "ICDIGIEKFLA_PDOOKMCOMND", + Self::IcdigiekflaAcfhiiddamo => "ICDIGIEKFLA_ACFHIIDDAMO", + Self::IcdigiekflaOlnldbdojil => "ICDIGIEKFLA_OLNLDBDOJIL", + Self::IcdigiekflaDeaohhedlff => "ICDIGIEKFLA_DEAOHHEDLFF", + Self::IcdigiekflaEoceanealod => "ICDIGIEKFLA_EOCEANEALOD", + Self::IcdigiekflaFhhnilhapdh => "ICDIGIEKFLA_FHHNILHAPDH", + Self::IcdigiekflaGlhkkjhanci => "ICDIGIEKFLA_GLHKKJHANCI", + Self::IcdigiekflaFljbimhgdoe => "ICDIGIEKFLA_FLJBIMHGDOE", + Self::IcdigiekflaEafpmbihllj => "ICDIGIEKFLA_EAFPMBIHLLJ", + Self::IcdigiekflaPeapncibgib => "ICDIGIEKFLA_PEAPNCIBGIB", + Self::IcdigiekflaImcbejoaokp => "ICDIGIEKFLA_IMCBEJOAOKP", + Self::IcdigiekflaGjclhpjmfpi => "ICDIGIEKFLA_GJCLHPJMFPI", + Self::IcdigiekflaKjmcpdfiofi => "ICDIGIEKFLA_KJMCPDFIOFI", + Self::IcdigiekflaJmgmgcbchhf => "ICDIGIEKFLA_JMGMGCBCHHF", + Self::IcdigiekflaBldpkbanpoj => "ICDIGIEKFLA_BLDPKBANPOJ", + Self::IcdigiekflaHnnclmpimdi => "ICDIGIEKFLA_HNNCLMPIMDI", + Self::IcdigiekflaAloafgkkaki => "ICDIGIEKFLA_ALOAFGKKAKI", + Self::IcdigiekflaNikfhjecndh => "ICDIGIEKFLA_NIKFHJECNDH", + Self::IcdigiekflaBijmhfmjldd => "ICDIGIEKFLA_BIJMHFMJLDD", + Self::IcdigiekflaCjgoiiggnke => "ICDIGIEKFLA_CJGOIIGGNKE", + Self::IcdigiekflaJpgkhneejfg => "ICDIGIEKFLA_JPGKHNEEJFG", + Self::IcdigiekflaBofgggfeoib => "ICDIGIEKFLA_BOFGGGFEOIB", + Self::IcdigiekflaAannohaabha => "ICDIGIEKFLA_AANNOHAABHA", + Self::IcdigiekflaFlibocnjjja => "ICDIGIEKFLA_FLIBOCNJJJA", + Self::IcdigiekflaNgjbmgakpea => "ICDIGIEKFLA_NGJBMGAKPEA", + Self::IcdigiekflaCkmgmgnkdfn => "ICDIGIEKFLA_CKMGMGNKDFN", + Self::IcdigiekflaJlfjjmdaani => "ICDIGIEKFLA_JLFJJMDAANI", + Self::IcdigiekflaFenbccoadph => "ICDIGIEKFLA_FENBCCOADPH", + Self::IcdigiekflaCpbdaikoinl => "ICDIGIEKFLA_CPBDAIKOINL", + Self::IcdigiekflaHhgfiflooij => "ICDIGIEKFLA_HHGFIFLOOIJ", + Self::IcdigiekflaHhdbapcchki => "ICDIGIEKFLA_HHDBAPCCHKI", + Self::IcdigiekflaOmfdnhnkidb => "ICDIGIEKFLA_OMFDNHNKIDB", + Self::IcdigiekflaAkaaeghhbcd => "ICDIGIEKFLA_AKAAEGHHBCD", + Self::IcdigiekflaBelipimldbc => "ICDIGIEKFLA_BELIPIMLDBC", + Self::IcdigiekflaNchnjdbmblf => "ICDIGIEKFLA_NCHNJDBMBLF", + Self::IcdigiekflaAbmlcjjeean => "ICDIGIEKFLA_ABMLCJJEEAN", + Self::IcdigiekflaNfocmbmglfj => "ICDIGIEKFLA_NFOCMBMGLFJ", + Self::IcdigiekflaJophohbikjh => "ICDIGIEKFLA_JOPHOHBIKJH", + Self::IcdigiekflaJfobafiicjl => "ICDIGIEKFLA_JFOBAFIICJL", + Self::IcdigiekflaEjkecpmkpll => "ICDIGIEKFLA_EJKECPMKPLL", + Self::IcdigiekflaOebieondale => "ICDIGIEKFLA_OEBIEONDALE", + Self::IcdigiekflaHeoddnklklk => "ICDIGIEKFLA_HEODDNKLKLK", + Self::IcdigiekflaCjlkfmbcjcg => "ICDIGIEKFLA_CJLKFMBCJCG", + Self::IcdigiekflaCiigiifngha => "ICDIGIEKFLA_CIIGIIFNGHA", + Self::IcdigiekflaDajahndkgbb => "ICDIGIEKFLA_DAJAHNDKGBB", + Self::IcdigiekflaIakcmcifgoi => "ICDIGIEKFLA_IAKCMCIFGOI", + Self::IcdigiekflaIkpgmnakbag => "ICDIGIEKFLA_IKPGMNAKBAG", + Self::IcdigiekflaCelodbeefdk => "ICDIGIEKFLA_CELODBEEFDK", + Self::IcdigiekflaEcfajhbplkg => "ICDIGIEKFLA_ECFAJHBPLKG", + Self::IcdigiekflaFagilpbhkjj => "ICDIGIEKFLA_FAGILPBHKJJ", + Self::IcdigiekflaHhllfpcogoc => "ICDIGIEKFLA_HHLLFPCOGOC", + Self::IcdigiekflaBmmecmhlnbc => "ICDIGIEKFLA_BMMECMHLNBC", + Self::IcdigiekflaIkophanljni => "ICDIGIEKFLA_IKOPHANLJNI", + Self::IcdigiekflaJllplackpjd => "ICDIGIEKFLA_JLLPLACKPJD", + Self::IcdigiekflaGeggmcpnapo => "ICDIGIEKFLA_GEGGMCPNAPO", + Self::IcdigiekflaKejcjbgdecl => "ICDIGIEKFLA_KEJCJBGDECL", + Self::IcdigiekflaEeibemcgakp => "ICDIGIEKFLA_EEIBEMCGAKP", + Self::IcdigiekflaHklfdnfpcfa => "ICDIGIEKFLA_HKLFDNFPCFA", + Self::IcdigiekflaAbakhphnhil => "ICDIGIEKFLA_ABAKHPHNHIL", + Self::IcdigiekflaDamajgpojlh => "ICDIGIEKFLA_DAMAJGPOJLH", + Self::IcdigiekflaIomfplmjkek => "ICDIGIEKFLA_IOMFPLMJKEK", + Self::IcdigiekflaAlpdpgnodac => "ICDIGIEKFLA_ALPDPGNODAC", + Self::IcdigiekflaJmpbbohegmj => "ICDIGIEKFLA_JMPBBOHEGMJ", + Self::IcdigiekflaBgdkngkpnpb => "ICDIGIEKFLA_BGDKNGKPNPB", + Self::IcdigiekflaJfkdlffghnl => "ICDIGIEKFLA_JFKDLFFGHNL", + Self::IcdigiekflaAhkhphlgoek => "ICDIGIEKFLA_AHKHPHLGOEK", + Self::IcdigiekflaGcodogbchlm => "ICDIGIEKFLA_GCODOGBCHLM", + Self::IcdigiekflaKmlgnllfkfb => "ICDIGIEKFLA_KMLGNLLFKFB", + Self::IcdigiekflaNfkfbdcobkd => "ICDIGIEKFLA_NFKFBDCOBKD", + Self::IcdigiekflaGolbllflcfl => "ICDIGIEKFLA_GOLBLLFLCFL", + Self::IcdigiekflaMenamnfmoik => "ICDIGIEKFLA_MENAMNFMOIK", + Self::IcdigiekflaDkogicilfkc => "ICDIGIEKFLA_DKOGICILFKC", + Self::IcdigiekflaCjbkbogmcmk => "ICDIGIEKFLA_CJBKBOGMCMK", + Self::IcdigiekflaAlijpbmkpan => "ICDIGIEKFLA_ALIJPBMKPAN", + Self::IcdigiekflaHefpmginakn => "ICDIGIEKFLA_HEFPMGINAKN", + Self::IcdigiekflaHoflhpcnndo => "ICDIGIEKFLA_HOFLHPCNNDO", + Self::IcdigiekflaJdefkfooiab => "ICDIGIEKFLA_JDEFKFOOIAB", + Self::IcdigiekflaHgdkmaikfip => "ICDIGIEKFLA_HGDKMAIKFIP", + Self::IcdigiekflaGnjegcocbkj => "ICDIGIEKFLA_GNJEGCOCBKJ", + Self::IcdigiekflaKnjfggnceda => "ICDIGIEKFLA_KNJFGGNCEDA", + Self::IcdigiekflaFbdlcfnlgkb => "ICDIGIEKFLA_FBDLCFNLGKB", + Self::IcdigiekflaNcdkllpjodi => "ICDIGIEKFLA_NCDKLLPJODI", + Self::IcdigiekflaMkgjjngbkmg => "ICDIGIEKFLA_MKGJJNGBKMG", + Self::IcdigiekflaJendjcmbeei => "ICDIGIEKFLA_JENDJCMBEEI", + Self::IcdigiekflaBldiaejjmne => "ICDIGIEKFLA_BLDIAEJJMNE", + Self::IcdigiekflaMcdkdeiihim => "ICDIGIEKFLA_MCDKDEIIHIM", + Self::IcdigiekflaPegapdfbeck => "ICDIGIEKFLA_PEGAPDFBECK", + Self::IcdigiekflaJahlbllfnpo => "ICDIGIEKFLA_JAHLBLLFNPO", + Self::IcdigiekflaCpmngmljaan => "ICDIGIEKFLA_CPMNGMLJAAN", + Self::IcdigiekflaPdgplmepfba => "ICDIGIEKFLA_PDGPLMEPFBA", + Self::IcdigiekflaGfkkbdilppa => "ICDIGIEKFLA_GFKKBDILPPA", + Self::IcdigiekflaNjbbigpaplg => "ICDIGIEKFLA_NJBBIGPAPLG", + Self::IcdigiekflaLiphkjcoacl => "ICDIGIEKFLA_LIPHKJCOACL", + Self::IcdigiekflaAgdhdfabndl => "ICDIGIEKFLA_AGDHDFABNDL", + Self::IcdigiekflaDamffdhflgb => "ICDIGIEKFLA_DAMFFDHFLGB", + Self::IcdigiekflaKpmdpbpkomc => "ICDIGIEKFLA_KPMDPBPKOMC", + Self::IcdigiekflaIpoihnjfbjf => "ICDIGIEKFLA_IPOIHNJFBJF", + Self::IcdigiekflaPcjbngjlfih => "ICDIGIEKFLA_PCJBNGJLFIH", + Self::IcdigiekflaLgndegjbape => "ICDIGIEKFLA_LGNDEGJBAPE", + Self::IcdigiekflaDpebaokiogj => "ICDIGIEKFLA_DPEBAOKIOGJ", + Self::IcdigiekflaJkfmhlbhcin => "ICDIGIEKFLA_JKFMHLBHCIN", + Self::IcdigiekflaLegkckpldgo => "ICDIGIEKFLA_LEGKCKPLDGO", + Self::IcdigiekflaPkojoicmmej => "ICDIGIEKFLA_PKOJOICMMEJ", + Self::IcdigiekflaPngikekoblj => "ICDIGIEKFLA_PNGIKEKOBLJ", + Self::IcdigiekflaOkdhaijoeam => "ICDIGIEKFLA_OKDHAIJOEAM", + Self::IcdigiekflaLcomifgjmnk => "ICDIGIEKFLA_LCOMIFGJMNK", + Self::IcdigiekflaLfeimhpllcl => "ICDIGIEKFLA_LFEIMHPLLCL", + Self::IcdigiekflaMpmpmgkjoik => "ICDIGIEKFLA_MPMPMGKJOIK", + Self::IcdigiekflaKcaaajhhjnj => "ICDIGIEKFLA_KCAAAJHHJNJ", + Self::IcdigiekflaDgkbbblehkm => "ICDIGIEKFLA_DGKBBBLEHKM", + Self::IcdigiekflaNacgafokdmj => "ICDIGIEKFLA_NACGAFOKDMJ", + Self::IcdigiekflaHgfapcbefpl => "ICDIGIEKFLA_HGFAPCBEFPL", + Self::IcdigiekflaKeengknjnjk => "ICDIGIEKFLA_KEENGKNJNJK", + Self::IcdigiekflaHjejnbnjjig => "ICDIGIEKFLA_HJEJNBNJJIG", + Self::IcdigiekflaGkjippihbdl => "ICDIGIEKFLA_GKJIPPIHBDL", + Self::IcdigiekflaNcpgoaaokkp => "ICDIGIEKFLA_NCPGOAAOKKP", + Self::IcdigiekflaKojhdikbagp => "ICDIGIEKFLA_KOJHDIKBAGP", + Self::IcdigiekflaNaeaionnaid => "ICDIGIEKFLA_NAEAIONNAID", + Self::IcdigiekflaOobngckjgdk => "ICDIGIEKFLA_OOBNGCKJGDK", + Self::IcdigiekflaIafnfhkehii => "ICDIGIEKFLA_IAFNFHKEHII", + Self::IcdigiekflaOppmnkehplh => "ICDIGIEKFLA_OPPMNKEHPLH", + Self::IcdigiekflaAjoknoanbjg => "ICDIGIEKFLA_AJOKNOANBJG", + Self::IcdigiekflaKhjofiicepk => "ICDIGIEKFLA_KHJOFIICEPK", + Self::IcdigiekflaAmlpejcokml => "ICDIGIEKFLA_AMLPEJCOKML", + Self::IcdigiekflaDafkedkebcb => "ICDIGIEKFLA_DAFKEDKEBCB", + Self::IcdigiekflaHegjfkmakea => "ICDIGIEKFLA_HEGJFKMAKEA", + Self::IcdigiekflaBgdghabbnnl => "ICDIGIEKFLA_BGDGHABBNNL", + Self::IcdigiekflaEfdokaolohg => "ICDIGIEKFLA_EFDOKAOLOHG", + Self::IcdigiekflaLeahonnkjan => "ICDIGIEKFLA_LEAHONNKJAN", + Self::IcdigiekflaMhipejdponj => "ICDIGIEKFLA_MHIPEJDPONJ", + Self::IcdigiekflaPceohkiknam => "ICDIGIEKFLA_PCEOHKIKNAM", + Self::IcdigiekflaLnchjjfchad => "ICDIGIEKFLA_LNCHJJFCHAD", + Self::IcdigiekflaAgcpaealapm => "ICDIGIEKFLA_AGCPAEALAPM", + Self::IcdigiekflaCfdpjjopmda => "ICDIGIEKFLA_CFDPJJOPMDA", + Self::IcdigiekflaBadgfpaakfk => "ICDIGIEKFLA_BADGFPAAKFK", + Self::IcdigiekflaApmjelnbofl => "ICDIGIEKFLA_APMJELNBOFL", + Self::IcdigiekflaEpjmdmangji => "ICDIGIEKFLA_EPJMDMANGJI", + Self::IcdigiekflaFjfnpackcjf => "ICDIGIEKFLA_FJFNPACKCJF", + Self::IcdigiekflaFpckmbnbgdm => "ICDIGIEKFLA_FPCKMBNBGDM", + Self::IcdigiekflaJmdnifbpdco => "ICDIGIEKFLA_JMDNIFBPDCO", + Self::IcdigiekflaJjbpaafckij => "ICDIGIEKFLA_JJBPAAFCKIJ", + Self::IcdigiekflaNckaalmihff => "ICDIGIEKFLA_NCKAALMIHFF", + Self::IcdigiekflaGgfagajnaje => "ICDIGIEKFLA_GGFAGAJNAJE", + Self::IcdigiekflaNefdohdcflb => "ICDIGIEKFLA_NEFDOHDCFLB", + Self::IcdigiekflaGabbjohkfed => "ICDIGIEKFLA_GABBJOHKFED", + Self::IcdigiekflaDjnjdlkkdbe => "ICDIGIEKFLA_DJNJDLKKDBE", + Self::IcdigiekflaDjabmemnpbk => "ICDIGIEKFLA_DJABMEMNPBK", + Self::IcdigiekflaEnimeifegfa => "ICDIGIEKFLA_ENIMEIFEGFA", + Self::IcdigiekflaPkpjafcbkeh => "ICDIGIEKFLA_PKPJAFCBKEH", + Self::IcdigiekflaLkjepdkemfc => "ICDIGIEKFLA_LKJEPDKEMFC", + Self::IcdigiekflaEineckpidnk => "ICDIGIEKFLA_EINECKPIDNK", + Self::IcdigiekflaEmmfnbljiie => "ICDIGIEKFLA_EMMFNBLJIIE", + Self::IcdigiekflaEjhjbidlnph => "ICDIGIEKFLA_EJHJBIDLNPH", + Self::IcdigiekflaAehckamjped => "ICDIGIEKFLA_AEHCKAMJPED", + Self::IcdigiekflaBecjcbeannb => "ICDIGIEKFLA_BECJCBEANNB", + Self::IcdigiekflaJchahhbkabm => "ICDIGIEKFLA_JCHAHHBKABM", + Self::IcdigiekflaHpehjmmibmf => "ICDIGIEKFLA_HPEHJMMIBMF", + Self::IcdigiekflaPignoghncde => "ICDIGIEKFLA_PIGNOGHNCDE", + Self::IcdigiekflaHjeloflbooe => "ICDIGIEKFLA_HJELOFLBOOE", + Self::IcdigiekflaHlngnjkpgeh => "ICDIGIEKFLA_HLNGNJKPGEH", + Self::IcdigiekflaNmmhcnfljop => "ICDIGIEKFLA_NMMHCNFLJOP", + Self::IcdigiekflaKjllnmbbkbo => "ICDIGIEKFLA_KJLLNMBBKBO", + Self::IcdigiekflaPbinlckhjbc => "ICDIGIEKFLA_PBINLCKHJBC", + Self::IcdigiekflaOdalgcaodod => "ICDIGIEKFLA_ODALGCAODOD", + Self::IcdigiekflaDainibgkknm => "ICDIGIEKFLA_DAINIBGKKNM", + Self::IcdigiekflaBokmacfeopk => "ICDIGIEKFLA_BOKMACFEOPK", + Self::IcdigiekflaJojodepipgb => "ICDIGIEKFLA_JOJODEPIPGB", + Self::IcdigiekflaJkaadbmdlno => "ICDIGIEKFLA_JKAADBMDLNO", + Self::IcdigiekflaHhemhmbaien => "ICDIGIEKFLA_HHEMHMBAIEN", + Self::IcdigiekflaKaafklkkkdn => "ICDIGIEKFLA_KAAFKLKKKDN", + Self::IcdigiekflaPllolaplmcd => "ICDIGIEKFLA_PLLOLAPLMCD", + Self::IcdigiekflaMfpbnnjbijh => "ICDIGIEKFLA_MFPBNNJBIJH", + Self::IcdigiekflaAmgllghjhmk => "ICDIGIEKFLA_AMGLLGHJHMK", + Self::IcdigiekflaKkcnfljedch => "ICDIGIEKFLA_KKCNFLJEDCH", + Self::IcdigiekflaEmlfemnnepn => "ICDIGIEKFLA_EMLFEMNNEPN", + Self::IcdigiekflaNjljeopbmoc => "ICDIGIEKFLA_NJLJEOPBMOC", + Self::IcdigiekflaHpmoaolpail => "ICDIGIEKFLA_HPMOAOLPAIL", + Self::IcdigiekflaBijmnihceca => "ICDIGIEKFLA_BIJMNIHCECA", + Self::IcdigiekflaChbnkpikhfo => "ICDIGIEKFLA_CHBNKPIKHFO", + Self::IcdigiekflaCkjkimlkekb => "ICDIGIEKFLA_CKJKIMLKEKB", + Self::IcdigiekflaAibpdmmbjhh => "ICDIGIEKFLA_AIBPDMMBJHH", + Self::IcdigiekflaNokaapjdenl => "ICDIGIEKFLA_NOKAAPJDENL", + Self::IcdigiekflaBdebafkejbf => "ICDIGIEKFLA_BDEBAFKEJBF", + Self::IcdigiekflaGhodmofdadg => "ICDIGIEKFLA_GHODMOFDADG", + Self::IcdigiekflaIgdealjnghi => "ICDIGIEKFLA_IGDEALJNGHI", + Self::IcdigiekflaKbaeodajojf => "ICDIGIEKFLA_KBAEODAJOJF", + Self::IcdigiekflaIiookojlbja => "ICDIGIEKFLA_IIOOKOJLBJA", + Self::IcdigiekflaHdamkagnopa => "ICDIGIEKFLA_HDAMKAGNOPA", + Self::IcdigiekflaBlffedffnig => "ICDIGIEKFLA_BLFFEDFFNIG", + Self::IcdigiekflaNjkedgcnegl => "ICDIGIEKFLA_NJKEDGCNEGL", + Self::IcdigiekflaNbidhmgjfji => "ICDIGIEKFLA_NBIDHMGJFJI", + Self::IcdigiekflaEmekinhajai => "ICDIGIEKFLA_EMEKINHAJAI", + Self::IcdigiekflaPmlephgdfng => "ICDIGIEKFLA_PMLEPHGDFNG", + Self::IcdigiekflaDhdfiejbjni => "ICDIGIEKFLA_DHDFIEJBJNI", + Self::IcdigiekflaFdibcpnhfjl => "ICDIGIEKFLA_FDIBCPNHFJL", + Self::IcdigiekflaLelofflheca => "ICDIGIEKFLA_LELOFFLHECA", + Self::IcdigiekflaObfmoomnina => "ICDIGIEKFLA_OBFMOOMNINA", + Self::IcdigiekflaEjmdfnbbakb => "ICDIGIEKFLA_EJMDFNBBAKB", + Self::IcdigiekflaNjljpakldmn => "ICDIGIEKFLA_NJLJPAKLDMN", + Self::IcdigiekflaGehjjpbghpn => "ICDIGIEKFLA_GEHJJPBGHPN", + Self::IcdigiekflaJkjbeknenge => "ICDIGIEKFLA_JKJBEKNENGE", + Self::IcdigiekflaLodbldlkiio => "ICDIGIEKFLA_LODBLDLKIIO", + Self::IcdigiekflaMfhobdgfnll => "ICDIGIEKFLA_MFHOBDGFNLL", + Self::IcdigiekflaHpopiofighn => "ICDIGIEKFLA_HPOPIOFIGHN", + Self::IcdigiekflaGhljkihcpml => "ICDIGIEKFLA_GHLJKIHCPML", + Self::IcdigiekflaEbbpemaaehg => "ICDIGIEKFLA_EBBPEMAAEHG", + Self::IcdigiekflaJmadchmkjbd => "ICDIGIEKFLA_JMADCHMKJBD", + Self::IcdigiekflaMnelhkkknno => "ICDIGIEKFLA_MNELHKKKNNO", + Self::IcdigiekflaPfmkllaennm => "ICDIGIEKFLA_PFMKLLAENNM", + Self::IcdigiekflaMpejbplplng => "ICDIGIEKFLA_MPEJBPLPLNG", + Self::IcdigiekflaAlkdkchncmd => "ICDIGIEKFLA_ALKDKCHNCMD", + Self::IcdigiekflaFkdkfambffp => "ICDIGIEKFLA_FKDKFAMBFFP", + Self::IcdigiekflaBdicpcaajgg => "ICDIGIEKFLA_BDICPCAAJGG", + Self::IcdigiekflaBbbaknfdopj => "ICDIGIEKFLA_BBBAKNFDOPJ", + Self::IcdigiekflaHfdhiomjjlo => "ICDIGIEKFLA_HFDHIOMJJLO", + Self::IcdigiekflaHeblondgkgj => "ICDIGIEKFLA_HEBLONDGKGJ", + Self::IcdigiekflaFihcodflbkj => "ICDIGIEKFLA_FIHCODFLBKJ", + Self::IcdigiekflaLknpdlbnkpf => "ICDIGIEKFLA_LKNPDLBNKPF", + Self::IcdigiekflaGjjgnfmfgoh => "ICDIGIEKFLA_GJJGNFMFGOH", + Self::IcdigiekflaPlpnajpfkfn => "ICDIGIEKFLA_PLPNAJPFKFN", + Self::IcdigiekflaKeebgdfepmg => "ICDIGIEKFLA_KEEBGDFEPMG", + Self::IcdigiekflaHooaodoafnm => "ICDIGIEKFLA_HOOAODOAFNM", + Self::IcdigiekflaAfbjhmchdio => "ICDIGIEKFLA_AFBJHMCHDIO", + Self::IcdigiekflaFneikdmdofo => "ICDIGIEKFLA_FNEIKDMDOFO", + Self::IcdigiekflaMpjonihcbcp => "ICDIGIEKFLA_MPJONIHCBCP", + Self::IcdigiekflaDhhigehpdce => "ICDIGIEKFLA_DHHIGEHPDCE", + Self::IcdigiekflaAjlpeibaldh => "ICDIGIEKFLA_AJLPEIBALDH", + Self::IcdigiekflaOokoepagnmc => "ICDIGIEKFLA_OOKOEPAGNMC", + Self::IcdigiekflaCbjblfjcjba => "ICDIGIEKFLA_CBJBLFJCJBA", + Self::IcdigiekflaHbphjapicof => "ICDIGIEKFLA_HBPHJAPICOF", + Self::IcdigiekflaOkdanpelbao => "ICDIGIEKFLA_OKDANPELBAO", + Self::IcdigiekflaJkjhbniehak => "ICDIGIEKFLA_JKJHBNIEHAK", + Self::IcdigiekflaKmccoepeina => "ICDIGIEKFLA_KMCCOEPEINA", + Self::IcdigiekflaGgllldbgljm => "ICDIGIEKFLA_GGLLLDBGLJM", + Self::IcdigiekflaJcbgbjkdhha => "ICDIGIEKFLA_JCBGBJKDHHA", + Self::IcdigiekflaKkaociphjdj => "ICDIGIEKFLA_KKAOCIPHJDJ", + Self::IcdigiekflaPpfepfmndee => "ICDIGIEKFLA_PPFEPFMNDEE", + Self::IcdigiekflaBdnegcdadoc => "ICDIGIEKFLA_BDNEGCDADOC", + Self::IcdigiekflaMgfnoahibnj => "ICDIGIEKFLA_MGFNOAHIBNJ", + Self::IcdigiekflaJifognaegpo => "ICDIGIEKFLA_JIFOGNAEGPO", + Self::IcdigiekflaEdmonbpkmog => "ICDIGIEKFLA_EDMONBPKMOG", + Self::IcdigiekflaKjcaogljpoo => "ICDIGIEKFLA_KJCAOGLJPOO", + Self::IcdigiekflaKeemknklkea => "ICDIGIEKFLA_KEEMKNKLKEA", + Self::IcdigiekflaFammkkfnfpc => "ICDIGIEKFLA_FAMMKKFNFPC", + Self::IcdigiekflaLkaaocekbce => "ICDIGIEKFLA_LKAAOCEKBCE", + Self::IcdigiekflaJngeikjlngk => "ICDIGIEKFLA_JNGEIKJLNGK", + Self::IcdigiekflaGajcapegjjh => "ICDIGIEKFLA_GAJCAPEGJJH", + Self::IcdigiekflaDeekjccccid => "ICDIGIEKFLA_DEEKJCCCCID", + Self::IcdigiekflaKdjhkkdfoho => "ICDIGIEKFLA_KDJHKKDFOHO", + Self::IcdigiekflaBblljfkknpa => "ICDIGIEKFLA_BBLLJFKKNPA", + Self::IcdigiekflaLeehaccdfea => "ICDIGIEKFLA_LEEHACCDFEA", + Self::IcdigiekflaBpamiamcdil => "ICDIGIEKFLA_BPAMIAMCDIL", + Self::IcdigiekflaIeknejidlgf => "ICDIGIEKFLA_IEKNEJIDLGF", + Self::IcdigiekflaPpfdbddglfh => "ICDIGIEKFLA_PPFDBDDGLFH", + Self::IcdigiekflaBnmcfcbkpdl => "ICDIGIEKFLA_BNMCFCBKPDL", + Self::IcdigiekflaImagknpddjh => "ICDIGIEKFLA_IMAGKNPDDJH", + Self::IcdigiekflaLablkdbcohl => "ICDIGIEKFLA_LABLKDBCOHL", + Self::IcdigiekflaPmgkiigmkdh => "ICDIGIEKFLA_PMGKIIGMKDH", + Self::IcdigiekflaCbnfjkdhncc => "ICDIGIEKFLA_CBNFJKDHNCC", + Self::IcdigiekflaKpoikafjjjk => "ICDIGIEKFLA_KPOIKAFJJJK", + Self::IcdigiekflaCkcflfljnbm => "ICDIGIEKFLA_CKCFLFLJNBM", + Self::IcdigiekflaMiaiokailcf => "ICDIGIEKFLA_MIAIOKAILCF", + Self::IcdigiekflaBgdcldjibdb => "ICDIGIEKFLA_BGDCLDJIBDB", + Self::IcdigiekflaBjljfahcbln => "ICDIGIEKFLA_BJLJFAHCBLN", + Self::IcdigiekflaMmbaikdglnh => "ICDIGIEKFLA_MMBAIKDGLNH", + Self::IcdigiekflaGgmbepldmlk => "ICDIGIEKFLA_GGMBEPLDMLK", + Self::IcdigiekflaNgkjdpmjdal => "ICDIGIEKFLA_NGKJDPMJDAL", + Self::IcdigiekflaHdhejckgjll => "ICDIGIEKFLA_HDHEJCKGJLL", + Self::IcdigiekflaAblbhdmpgni => "ICDIGIEKFLA_ABLBHDMPGNI", + Self::IcdigiekflaDoddfbhpcpk => "ICDIGIEKFLA_DODDFBHPCPK", + Self::IcdigiekflaPnphnkfdbde => "ICDIGIEKFLA_PNPHNKFDBDE", + Self::IcdigiekflaLlofficdklg => "ICDIGIEKFLA_LLOFFICDKLG", + Self::IcdigiekflaFedgflmilmb => "ICDIGIEKFLA_FEDGFLMILMB", + Self::IcdigiekflaAenilkkafdg => "ICDIGIEKFLA_AENILKKAFDG", + Self::IcdigiekflaMilhlfbfimg => "ICDIGIEKFLA_MILHLFBFIMG", + Self::IcdigiekflaJaacfjigobo => "ICDIGIEKFLA_JAACFJIGOBO", + Self::IcdigiekflaPfdjicbmigi => "ICDIGIEKFLA_PFDJICBMIGI", + Self::IcdigiekflaHkmggihaejd => "ICDIGIEKFLA_HKMGGIHAEJD", + Self::IcdigiekflaPolpbphpljl => "ICDIGIEKFLA_POLPBPHPLJL", + Self::IcdigiekflaAodpleincne => "ICDIGIEKFLA_AODPLEINCNE", + Self::IcdigiekflaBifmianelae => "ICDIGIEKFLA_BIFMIANELAE", + Self::IcdigiekflaCabbdpfccfl => "ICDIGIEKFLA_CABBDPFCCFL", + Self::IcdigiekflaGomnodbhfdc => "ICDIGIEKFLA_GOMNODBHFDC", + Self::IcdigiekflaIpjbedbfljm => "ICDIGIEKFLA_IPJBEDBFLJM", + Self::IcdigiekflaCanoochegoj => "ICDIGIEKFLA_CANOOCHEGOJ", + Self::IcdigiekflaLfhmepbmeom => "ICDIGIEKFLA_LFHMEPBMEOM", + Self::IcdigiekflaEjlgokaiddb => "ICDIGIEKFLA_EJLGOKAIDDB", + Self::IcdigiekflaBpaobfpbddj => "ICDIGIEKFLA_BPAOBFPBDDJ", + Self::IcdigiekflaAabknjenikk => "ICDIGIEKFLA_AABKNJENIKK", + Self::IcdigiekflaAjjjonebaae => "ICDIGIEKFLA_AJJJONEBAAE", + Self::IcdigiekflaJpgiilbhfob => "ICDIGIEKFLA_JPGIILBHFOB", + Self::IcdigiekflaEnlbiegfhgk => "ICDIGIEKFLA_ENLBIEGFHGK", + Self::IcdigiekflaOblambeaihe => "ICDIGIEKFLA_OBLAMBEAIHE", + Self::IcdigiekflaMfkfpmbkfco => "ICDIGIEKFLA_MFKFPMBKFCO", + Self::IcdigiekflaCfmonepaojp => "ICDIGIEKFLA_CFMONEPAOJP", + Self::IcdigiekflaFkihgdalahl => "ICDIGIEKFLA_FKIHGDALAHL", + Self::IcdigiekflaFgmddihgdhi => "ICDIGIEKFLA_FGMDDIHGDHI", + Self::IcdigiekflaJppnipaefbc => "ICDIGIEKFLA_JPPNIPAEFBC", + Self::IcdigiekflaMmoplmdmckd => "ICDIGIEKFLA_MMOPLMDMCKD", + Self::IcdigiekflaOohfnbfdjdk => "ICDIGIEKFLA_OOHFNBFDJDK", + Self::IcdigiekflaEccanalcmgi => "ICDIGIEKFLA_ECCANALCMGI", + Self::IcdigiekflaEoaciocoghd => "ICDIGIEKFLA_EOACIOCOGHD", + Self::IcdigiekflaGdmnhhakgbh => "ICDIGIEKFLA_GDMNHHAKGBH", + Self::IcdigiekflaFmkbjafbdem => "ICDIGIEKFLA_FMKBJAFBDEM", + Self::IcdigiekflaPgpnolmgnak => "ICDIGIEKFLA_PGPNOLMGNAK", + Self::IcdigiekflaCgpkodiikgi => "ICDIGIEKFLA_CGPKODIIKGI", + Self::IcdigiekflaBmfkcoeppck => "ICDIGIEKFLA_BMFKCOEPPCK", + Self::IcdigiekflaIkdmflbadgb => "ICDIGIEKFLA_IKDMFLBADGB", + Self::IcdigiekflaBagjjfffbhl => "ICDIGIEKFLA_BAGJJFFFBHL", + Self::IcdigiekflaGlnkgfhfnfo => "ICDIGIEKFLA_GLNKGFHFNFO", + Self::IcdigiekflaCehghnpclpb => "ICDIGIEKFLA_CEHGHNPCLPB", + Self::IcdigiekflaOhgcmlmkdji => "ICDIGIEKFLA_OHGCMLMKDJI", + Self::IcdigiekflaFblojdalcfd => "ICDIGIEKFLA_FBLOJDALCFD", + Self::IcdigiekflaFkaailhlhji => "ICDIGIEKFLA_FKAAILHLHJI", + Self::IcdigiekflaLalnaapbipg => "ICDIGIEKFLA_LALNAAPBIPG", + Self::IcdigiekflaJdnccjodmjc => "ICDIGIEKFLA_JDNCCJODMJC", + Self::IcdigiekflaJfhjfeonnlf => "ICDIGIEKFLA_JFHJFEONNLF", + Self::IcdigiekflaLobgdidchcg => "ICDIGIEKFLA_LOBGDIDCHCG", + Self::IcdigiekflaFoekhcciahk => "ICDIGIEKFLA_FOEKHCCIAHK", + Self::IcdigiekflaPlpimbdfbfo => "ICDIGIEKFLA_PLPIMBDFBFO", + Self::IcdigiekflaOolomeahflc => "ICDIGIEKFLA_OOLOMEAHFLC", + Self::IcdigiekflaFghiebbomki => "ICDIGIEKFLA_FGHIEBBOMKI", + Self::IcdigiekflaCljdlcamdgi => "ICDIGIEKFLA_CLJDLCAMDGI", + Self::IcdigiekflaDdldbjiodec => "ICDIGIEKFLA_DDLDBJIODEC", + Self::IcdigiekflaBmcaljpigbc => "ICDIGIEKFLA_BMCALJPIGBC", + Self::IcdigiekflaDafofkliogc => "ICDIGIEKFLA_DAFOFKLIOGC", + Self::IcdigiekflaCpoppinokeg => "ICDIGIEKFLA_CPOPPINOKEG", + Self::IcdigiekflaJlbkdbmlmon => "ICDIGIEKFLA_JLBKDBMLMON", + Self::IcdigiekflaNbojheebmkk => "ICDIGIEKFLA_NBOJHEEBMKK", + Self::IcdigiekflaEapfhpbknji => "ICDIGIEKFLA_EAPFHPBKNJI", + Self::IcdigiekflaEbknhjjpdcj => "ICDIGIEKFLA_EBKNHJJPDCJ", + Self::IcdigiekflaCmffokkolme => "ICDIGIEKFLA_CMFFOKKOLME", + Self::IcdigiekflaNipjbjkgkfc => "ICDIGIEKFLA_NIPJBJKGKFC", + Self::IcdigiekflaIhfglknmiia => "ICDIGIEKFLA_IHFGLKNMIIA", + Self::IcdigiekflaDhmjjfomade => "ICDIGIEKFLA_DHMJJFOMADE", + Self::IcdigiekflaFlpdocjgfpe => "ICDIGIEKFLA_FLPDOCJGFPE", + Self::IcdigiekflaBggcmpipjel => "ICDIGIEKFLA_BGGCMPIPJEL", + Self::IcdigiekflaOegbghmbpfp => "ICDIGIEKFLA_OEGBGHMBPFP", + Self::IcdigiekflaDfpbgfpboki => "ICDIGIEKFLA_DFPBGFPBOKI", + Self::IcdigiekflaPcpfjbkpogd => "ICDIGIEKFLA_PCPFJBKPOGD", + Self::IcdigiekflaCkmmkklomio => "ICDIGIEKFLA_CKMMKKLOMIO", + Self::IcdigiekflaFoamcenlhkc => "ICDIGIEKFLA_FOAMCENLHKC", + Self::IcdigiekflaFffbfmhdmkn => "ICDIGIEKFLA_FFFBFMHDMKN", + Self::IcdigiekflaDaheanekaae => "ICDIGIEKFLA_DAHEANEKAAE", + Self::IcdigiekflaLjhgklegkll => "ICDIGIEKFLA_LJHGKLEGKLL", + Self::IcdigiekflaCbmkaeenlhm => "ICDIGIEKFLA_CBMKAEENLHM", + Self::IcdigiekflaBpkcdbicbcp => "ICDIGIEKFLA_BPKCDBICBCP", + Self::IcdigiekflaDgomkdjkkgf => "ICDIGIEKFLA_DGOMKDJKKGF", + Self::IcdigiekflaDeglhjhnfcg => "ICDIGIEKFLA_DEGLHJHNFCG", + Self::IcdigiekflaLdjceiagmfn => "ICDIGIEKFLA_LDJCEIAGMFN", + Self::IcdigiekflaNiicbhhglgo => "ICDIGIEKFLA_NIICBHHGLGO", + Self::IcdigiekflaPdhkpmccnih => "ICDIGIEKFLA_PDHKPMCCNIH", + Self::IcdigiekflaLmppbfhnopp => "ICDIGIEKFLA_LMPPBFHNOPP", + Self::IcdigiekflaBnbdkmgnkpp => "ICDIGIEKFLA_BNBDKMGNKPP", + Self::IcdigiekflaKogbfbpfjld => "ICDIGIEKFLA_KOGBFBPFJLD", + Self::IcdigiekflaHdaeimjggkc => "ICDIGIEKFLA_HDAEIMJGGKC", + Self::IcdigiekflaEmgocgcjehk => "ICDIGIEKFLA_EMGOCGCJEHK", + Self::IcdigiekflaGlfhogepldj => "ICDIGIEKFLA_GLFHOGEPLDJ", + Self::IcdigiekflaAaljpdnhann => "ICDIGIEKFLA_AALJPDNHANN", + Self::IcdigiekflaDpocgemkilo => "ICDIGIEKFLA_DPOCGEMKILO", + Self::IcdigiekflaAdpjdcoeink => "ICDIGIEKFLA_ADPJDCOEINK", + Self::IcdigiekflaOfjnldnfadc => "ICDIGIEKFLA_OFJNLDNFADC", + Self::IcdigiekflaBokghecfnpn => "ICDIGIEKFLA_BOKGHECFNPN", + Self::IcdigiekflaBcjhhbmobld => "ICDIGIEKFLA_BCJHHBMOBLD", + Self::IcdigiekflaOeinpacnagd => "ICDIGIEKFLA_OEINPACNAGD", + Self::IcdigiekflaGnnpaidlkaf => "ICDIGIEKFLA_GNNPAIDLKAF", + Self::IcdigiekflaGknpkkdfido => "ICDIGIEKFLA_GKNPKKDFIDO", + Self::IcdigiekflaCgcnfdljffp => "ICDIGIEKFLA_CGCNFDLJFFP", + Self::IcdigiekflaJaefgnepnci => "ICDIGIEKFLA_JAEFGNEPNCI", + Self::IcdigiekflaOaofkciopbh => "ICDIGIEKFLA_OAOFKCIOPBH", + Self::IcdigiekflaKhflldgflfe => "ICDIGIEKFLA_KHFLLDGFLFE", + Self::IcdigiekflaNnjcanlghlc => "ICDIGIEKFLA_NNJCANLGHLC", + Self::IcdigiekflaBkekijaahfh => "ICDIGIEKFLA_BKEKIJAAHFH", + Self::IcdigiekflaAmodnoledje => "ICDIGIEKFLA_AMODNOLEDJE", + Self::IcdigiekflaLcnfpcdoabj => "ICDIGIEKFLA_LCNFPCDOABJ", + Self::IcdigiekflaPmbmdmghgjf => "ICDIGIEKFLA_PMBMDMGHGJF", + Self::IcdigiekflaIjmblmeaflg => "ICDIGIEKFLA_IJMBLMEAFLG", + Self::IcdigiekflaCfalnmidcbe => "ICDIGIEKFLA_CFALNMIDCBE", + Self::IcdigiekflaMbmbgandgfg => "ICDIGIEKFLA_MBMBGANDGFG", + Self::IcdigiekflaJlffgpjgkoj => "ICDIGIEKFLA_JLFFGPJGKOJ", + Self::IcdigiekflaGpndikpdkpc => "ICDIGIEKFLA_GPNDIKPDKPC", + Self::IcdigiekflaBiigimjecno => "ICDIGIEKFLA_BIIGIMJECNO", + Self::IcdigiekflaNfpcogkbgmo => "ICDIGIEKFLA_NFPCOGKBGMO", + Self::IcdigiekflaDpplfcomedp => "ICDIGIEKFLA_DPPLFCOMEDP", + Self::IcdigiekflaMlnifkdnnel => "ICDIGIEKFLA_MLNIFKDNNEL", + Self::IcdigiekflaCpfffcihfaj => "ICDIGIEKFLA_CPFFFCIHFAJ", + Self::IcdigiekflaNnjlgbgahll => "ICDIGIEKFLA_NNJLGBGAHLL", + Self::IcdigiekflaEaaconcggnj => "ICDIGIEKFLA_EAACONCGGNJ", + Self::IcdigiekflaLoaopniadip => "ICDIGIEKFLA_LOAOPNIADIP", + Self::IcdigiekflaJoobpebfled => "ICDIGIEKFLA_JOOBPEBFLED", + Self::IcdigiekflaIdgbjeijain => "ICDIGIEKFLA_IDGBJEIJAIN", + Self::IcdigiekflaHedffjceckb => "ICDIGIEKFLA_HEDFFJCECKB", + Self::IcdigiekflaAehffakfkeh => "ICDIGIEKFLA_AEHFFAKFKEH", + Self::IcdigiekflaAfbiipnendm => "ICDIGIEKFLA_AFBIIPNENDM", + Self::IcdigiekflaFiebkmjobie => "ICDIGIEKFLA_FIEBKMJOBIE", + Self::IcdigiekflaNgbphajelgo => "ICDIGIEKFLA_NGBPHAJELGO", + Self::IcdigiekflaCplimbmegnb => "ICDIGIEKFLA_CPLIMBMEGNB", + Self::IcdigiekflaIpmkjdbfpma => "ICDIGIEKFLA_IPMKJDBFPMA", + Self::IcdigiekflaJejapjnmkaa => "ICDIGIEKFLA_JEJAPJNMKAA", + Self::IcdigiekflaChmmaclcklo => "ICDIGIEKFLA_CHMMACLCKLO", + Self::IcdigiekflaBfginiinlha => "ICDIGIEKFLA_BFGINIINLHA", + Self::IcdigiekflaKpadcmhcecn => "ICDIGIEKFLA_KPADCMHCECN", + Self::IcdigiekflaFknjhlfjagk => "ICDIGIEKFLA_FKNJHLFJAGK", + Self::IcdigiekflaGcnbfpbddnn => "ICDIGIEKFLA_GCNBFPBDDNN", + Self::IcdigiekflaIhldhbaijgj => "ICDIGIEKFLA_IHLDHBAIJGJ", + Self::IcdigiekflaAjmobbgkene => "ICDIGIEKFLA_AJMOBBGKENE", + Self::IcdigiekflaAghhajmcafb => "ICDIGIEKFLA_AGHHAJMCAFB", + Self::IcdigiekflaLdkgdmgpdln => "ICDIGIEKFLA_LDKGDMGPDLN", + Self::IcdigiekflaGdcopbblkil => "ICDIGIEKFLA_GDCOPBBLKIL", + Self::IcdigiekflaKihbbajlkpa => "ICDIGIEKFLA_KIHBBAJLKPA", + Self::IcdigiekflaDbipbdobnnj => "ICDIGIEKFLA_DBIPBDOBNNJ", + Self::IcdigiekflaPoeminhnnnp => "ICDIGIEKFLA_POEMINHNNNP", + Self::IcdigiekflaBglkfghbane => "ICDIGIEKFLA_BGLKFGHBANE", + Self::IcdigiekflaLihabmojhho => "ICDIGIEKFLA_LIHABMOJHHO", + Self::IcdigiekflaLdklbiaomeo => "ICDIGIEKFLA_LDKLBIAOMEO", + Self::IcdigiekflaFldnakpaeon => "ICDIGIEKFLA_FLDNAKPAEON", + Self::IcdigiekflaPnmabmlffce => "ICDIGIEKFLA_PNMABMLFFCE", + Self::IcdigiekflaHjbcmimmbej => "ICDIGIEKFLA_HJBCMIMMBEJ", + Self::IcdigiekflaPlomblmpgkn => "ICDIGIEKFLA_PLOMBLMPGKN", + Self::IcdigiekflaCeohbjoolhh => "ICDIGIEKFLA_CEOHBJOOLHH", + Self::IcdigiekflaHeegpllbeci => "ICDIGIEKFLA_HEEGPLLBECI", + Self::IcdigiekflaAamjkmpaoao => "ICDIGIEKFLA_AAMJKMPAOAO", + Self::IcdigiekflaNjfogeebccd => "ICDIGIEKFLA_NJFOGEEBCCD", + Self::IcdigiekflaIpdaiibhfmo => "ICDIGIEKFLA_IPDAIIBHFMO", + Self::IcdigiekflaOomnhebcjdg => "ICDIGIEKFLA_OOMNHEBCJDG", + Self::IcdigiekflaAeofpicfemf => "ICDIGIEKFLA_AEOFPICFEMF", + Self::IcdigiekflaImklakgmdpm => "ICDIGIEKFLA_IMKLAKGMDPM", + Self::IcdigiekflaOjckphponia => "ICDIGIEKFLA_OJCKPHPONIA", + Self::IcdigiekflaCccdblnamac => "ICDIGIEKFLA_CCCDBLNAMAC", + Self::IcdigiekflaNdlgbpkadcf => "ICDIGIEKFLA_NDLGBPKADCF", + Self::IcdigiekflaNklkpoogggj => "ICDIGIEKFLA_NKLKPOOGGGJ", + Self::IcdigiekflaBopmijbaedo => "ICDIGIEKFLA_BOPMIJBAEDO", + Self::IcdigiekflaJodkkggokaf => "ICDIGIEKFLA_JODKKGGOKAF", + Self::IcdigiekflaOjhffkhkfco => "ICDIGIEKFLA_OJHFFKHKFCO", + Self::IcdigiekflaPlkkopgpffm => "ICDIGIEKFLA_PLKKOPGPFFM", + Self::IcdigiekflaApoineoccln => "ICDIGIEKFLA_APOINEOCCLN", + Self::IcdigiekflaMoiccjklfne => "ICDIGIEKFLA_MOICCJKLFNE", + Self::IcdigiekflaOigmffpiefm => "ICDIGIEKFLA_OIGMFFPIEFM", + Self::IcdigiekflaNhhaoicdini => "ICDIGIEKFLA_NHHAOICDINI", + Self::IcdigiekflaPbagldghlok => "ICDIGIEKFLA_PBAGLDGHLOK", + Self::IcdigiekflaMnanfpjbcck => "ICDIGIEKFLA_MNANFPJBCCK", + Self::IcdigiekflaJpfdinijfig => "ICDIGIEKFLA_JPFDINIJFIG", + Self::IcdigiekflaEdpodckkcfl => "ICDIGIEKFLA_EDPODCKKCFL", + Self::IcdigiekflaLpbhfiajmok => "ICDIGIEKFLA_LPBHFIAJMOK", + Self::IcdigiekflaAdoocpinenk => "ICDIGIEKFLA_ADOOCPINENK", + Self::IcdigiekflaLhjcjbjjflf => "ICDIGIEKFLA_LHJCJBJJFLF", + Self::IcdigiekflaOmdilidgldn => "ICDIGIEKFLA_OMDILIDGLDN", + Self::IcdigiekflaOncdfpgpnbp => "ICDIGIEKFLA_ONCDFPGPNBP", + Self::IcdigiekflaBdpenhcphgn => "ICDIGIEKFLA_BDPENHCPHGN", + Self::IcdigiekflaEeamhcmhpij => "ICDIGIEKFLA_EEAMHCMHPIJ", + Self::IcdigiekflaGgmamookifb => "ICDIGIEKFLA_GGMAMOOKIFB", + Self::IcdigiekflaGpjeemagkel => "ICDIGIEKFLA_GPJEEMAGKEL", + Self::IcdigiekflaEocbkjeilng => "ICDIGIEKFLA_EOCBKJEILNG", + Self::IcdigiekflaDdcmapfpknd => "ICDIGIEKFLA_DDCMAPFPKND", + Self::IcdigiekflaNkonflenlgn => "ICDIGIEKFLA_NKONFLENLGN", + Self::IcdigiekflaAcdhkpkfceo => "ICDIGIEKFLA_ACDHKPKFCEO", + Self::IcdigiekflaJfcjokmhief => "ICDIGIEKFLA_JFCJOKMHIEF", + Self::IcdigiekflaLddfilhadja => "ICDIGIEKFLA_LDDFILHADJA", + Self::IcdigiekflaEiodcmpkjlh => "ICDIGIEKFLA_EIODCMPKJLH", + Self::IcdigiekflaFmbgggkdamh => "ICDIGIEKFLA_FMBGGGKDAMH", + Self::IcdigiekflaEkjmaiokaaa => "ICDIGIEKFLA_EKJMAIOKAAA", + Self::IcdigiekflaLaacldnapgf => "ICDIGIEKFLA_LAACLDNAPGF", + Self::IcdigiekflaEpfpggfdgkh => "ICDIGIEKFLA_EPFPGGFDGKH", + Self::IcdigiekflaLkfjhjfngoc => "ICDIGIEKFLA_LKFJHJFNGOC", + Self::IcdigiekflaLcpccoglhkm => "ICDIGIEKFLA_LCPCCOGLHKM", + Self::IcdigiekflaIbmnknfgcdf => "ICDIGIEKFLA_IBMNKNFGCDF", + Self::IcdigiekflaGchbckbgchj => "ICDIGIEKFLA_GCHBCKBGCHJ", + Self::IcdigiekflaEachnjlgmfp => "ICDIGIEKFLA_EACHNJLGMFP", + Self::IcdigiekflaKecbemkljdg => "ICDIGIEKFLA_KECBEMKLJDG", + Self::IcdigiekflaEnponnidnnd => "ICDIGIEKFLA_ENPONNIDNND", + Self::IcdigiekflaIdhcfpfhngg => "ICDIGIEKFLA_IDHCFPFHNGG", + Self::IcdigiekflaDjckanlmlnh => "ICDIGIEKFLA_DJCKANLMLNH", + Self::IcdigiekflaFlkkpkpmgjh => "ICDIGIEKFLA_FLKKPKPMGJH", + Self::IcdigiekflaFdeiojaeamf => "ICDIGIEKFLA_FDEIOJAEAMF", + Self::IcdigiekflaGelnhnanldk => "ICDIGIEKFLA_GELNHNANLDK", + Self::IcdigiekflaEhjnghknicj => "ICDIGIEKFLA_EHJNGHKNICJ", + Self::IcdigiekflaJpkbikbpfic => "ICDIGIEKFLA_JPKBIKBPFIC", + Self::IcdigiekflaHccpaflcpcl => "ICDIGIEKFLA_HCCPAFLCPCL", + Self::IcdigiekflaFoifejmfncm => "ICDIGIEKFLA_FOIFEJMFNCM", + Self::IcdigiekflaBnpaddmlokl => "ICDIGIEKFLA_BNPADDMLOKL", + Self::IcdigiekflaFfijdcmaemk => "ICDIGIEKFLA_FFIJDCMAEMK", + Self::IcdigiekflaMdlahahlaal => "ICDIGIEKFLA_MDLAHAHLAAL", + Self::IcdigiekflaIplkgdbjffn => "ICDIGIEKFLA_IPLKGDBJFFN", + Self::IcdigiekflaPfamlohbapl => "ICDIGIEKFLA_PFAMLOHBAPL", + Self::IcdigiekflaHkpneglkhbp => "ICDIGIEKFLA_HKPNEGLKHBP", + Self::IcdigiekflaIjfagdomkhi => "ICDIGIEKFLA_IJFAGDOMKHI", + Self::IcdigiekflaCpmnhcbfgcf => "ICDIGIEKFLA_CPMNHCBFGCF", + Self::IcdigiekflaBjanefpcbbo => "ICDIGIEKFLA_BJANEFPCBBO", + Self::IcdigiekflaJhibcigahlc => "ICDIGIEKFLA_JHIBCIGAHLC", + Self::IcdigiekflaAohadpghhle => "ICDIGIEKFLA_AOHADPGHHLE", + Self::IcdigiekflaMkmamdgcdoe => "ICDIGIEKFLA_MKMAMDGCDOE", + Self::IcdigiekflaEepmepjmkll => "ICDIGIEKFLA_EEPMEPJMKLL", + Self::IcdigiekflaFpgcdimhieb => "ICDIGIEKFLA_FPGCDIMHIEB", + Self::IcdigiekflaNjoagibhgkn => "ICDIGIEKFLA_NJOAGIBHGKN", + Self::IcdigiekflaEdecbnaebac => "ICDIGIEKFLA_EDECBNAEBAC", + Self::IcdigiekflaBoiegeodneo => "ICDIGIEKFLA_BOIEGEODNEO", + Self::IcdigiekflaEchldappoop => "ICDIGIEKFLA_ECHLDAPPOOP", + Self::IcdigiekflaJgbpdipkcol => "ICDIGIEKFLA_JGBPDIPKCOL", + Self::IcdigiekflaDhmgdepadcm => "ICDIGIEKFLA_DHMGDEPADCM", + Self::IcdigiekflaEamfkibcpjl => "ICDIGIEKFLA_EAMFKIBCPJL", + Self::IcdigiekflaOlifjcifbck => "ICDIGIEKFLA_OLIFJCIFBCK", + Self::IcdigiekflaBnkldiefhji => "ICDIGIEKFLA_BNKLDIEFHJI", + Self::IcdigiekflaBpagjckcokk => "ICDIGIEKFLA_BPAGJCKCOKK", + Self::IcdigiekflaKlinfkdcdim => "ICDIGIEKFLA_KLINFKDCDIM", + Self::IcdigiekflaHekglnlifob => "ICDIGIEKFLA_HEKGLNLIFOB", + Self::IcdigiekflaLlefbmhnnpm => "ICDIGIEKFLA_LLEFBMHNNPM", + Self::IcdigiekflaHncdekfdimc => "ICDIGIEKFLA_HNCDEKFDIMC", + Self::IcdigiekflaPgocclafjhf => "ICDIGIEKFLA_PGOCCLAFJHF", + Self::IcdigiekflaDphmeomdioj => "ICDIGIEKFLA_DPHMEOMDIOJ", + Self::IcdigiekflaOoddhmnfdlf => "ICDIGIEKFLA_OODDHMNFDLF", + Self::IcdigiekflaOnapajlhgjn => "ICDIGIEKFLA_ONAPAJLHGJN", + Self::IcdigiekflaLhdgelcdogm => "ICDIGIEKFLA_LHDGELCDOGM", + Self::IcdigiekflaPfgbdobgnak => "ICDIGIEKFLA_PFGBDOBGNAK", + Self::IcdigiekflaBhdhempkood => "ICDIGIEKFLA_BHDHEMPKOOD", + Self::IcdigiekflaAkoidnjdakp => "ICDIGIEKFLA_AKOIDNJDAKP", + Self::IcdigiekflaOijjemohcml => "ICDIGIEKFLA_OIJJEMOHCML", + Self::IcdigiekflaDaapnbmjben => "ICDIGIEKFLA_DAAPNBMJBEN", + Self::IcdigiekflaKjfdphpieck => "ICDIGIEKFLA_KJFDPHPIECK", + Self::IcdigiekflaMdpjfohdfdp => "ICDIGIEKFLA_MDPJFOHDFDP", + Self::IcdigiekflaLgmikcjnfnp => "ICDIGIEKFLA_LGMIKCJNFNP", + Self::IcdigiekflaNjbmdoeddcm => "ICDIGIEKFLA_NJBMDOEDDCM", + Self::IcdigiekflaBajogoabehh => "ICDIGIEKFLA_BAJOGOABEHH", + Self::IcdigiekflaLhcdendpcnl => "ICDIGIEKFLA_LHCDENDPCNL", + Self::IcdigiekflaLdmokpeaian => "ICDIGIEKFLA_LDMOKPEAIAN", + Self::IcdigiekflaBaiknehmbmg => "ICDIGIEKFLA_BAIKNEHMBMG", + Self::IcdigiekflaFefhaphmeoe => "ICDIGIEKFLA_FEFHAPHMEOE", + Self::IcdigiekflaKpjgjodlbao => "ICDIGIEKFLA_KPJGJODLBAO", + Self::IcdigiekflaFcgdcjnmhhj => "ICDIGIEKFLA_FCGDCJNMHHJ", + Self::IcdigiekflaIbfigcfcjog => "ICDIGIEKFLA_IBFIGCFCJOG", + Self::IcdigiekflaNckncleciog => "ICDIGIEKFLA_NCKNCLECIOG", + Self::IcdigiekflaPkjpeaabaoe => "ICDIGIEKFLA_PKJPEAABAOE", + Self::IcdigiekflaHoidlgfchph => "ICDIGIEKFLA_HOIDLGFCHPH", + Self::IcdigiekflaIcocbiihmpj => "ICDIGIEKFLA_ICOCBIIHMPJ", + Self::IcdigiekflaCeeapcbdcfa => "ICDIGIEKFLA_CEEAPCBDCFA", + Self::IcdigiekflaCclenckgnnf => "ICDIGIEKFLA_CCLENCKGNNF", + Self::IcdigiekflaIjmdigklfdm => "ICDIGIEKFLA_IJMDIGKLFDM", + Self::IcdigiekflaFnjnndkhldf => "ICDIGIEKFLA_FNJNNDKHLDF", + Self::IcdigiekflaNldkjfnehph => "ICDIGIEKFLA_NLDKJFNEHPH", + Self::IcdigiekflaKmabcpjdjoe => "ICDIGIEKFLA_KMABCPJDJOE", + Self::IcdigiekflaPjjlejlmeak => "ICDIGIEKFLA_PJJLEJLMEAK", + Self::IcdigiekflaAlpbmolllhe => "ICDIGIEKFLA_ALPBMOLLLHE", + Self::IcdigiekflaFjnohlobgoj => "ICDIGIEKFLA_FJNOHLOBGOJ", + Self::IcdigiekflaBjbhkfjeibl => "ICDIGIEKFLA_BJBHKFJEIBL", + Self::IcdigiekflaFipaooelmgp => "ICDIGIEKFLA_FIPAOOELMGP", + Self::IcdigiekflaFbdppagmhbo => "ICDIGIEKFLA_FBDPPAGMHBO", + Self::IcdigiekflaFmpnegaljjo => "ICDIGIEKFLA_FMPNEGALJJO", + Self::IcdigiekflaOmjpoigibfk => "ICDIGIEKFLA_OMJPOIGIBFK", + Self::IcdigiekflaGdneondlffe => "ICDIGIEKFLA_GDNEONDLFFE", + Self::IcdigiekflaInjgnlpjmoe => "ICDIGIEKFLA_INJGNLPJMOE", + Self::IcdigiekflaDkjliaigloj => "ICDIGIEKFLA_DKJLIAIGLOJ", + Self::IcdigiekflaOamejmameca => "ICDIGIEKFLA_OAMEJMAMECA", + Self::IcdigiekflaFdcgnjjglmm => "ICDIGIEKFLA_FDCGNJJGLMM", + Self::IcdigiekflaLiahhmkdjlb => "ICDIGIEKFLA_LIAHHMKDJLB", + Self::IcdigiekflaOoigakkgehl => "ICDIGIEKFLA_OOIGAKKGEHL", + Self::IcdigiekflaAemhiammfnn => "ICDIGIEKFLA_AEMHIAMMFNN", + Self::IcdigiekflaGebpgfedbjf => "ICDIGIEKFLA_GEBPGFEDBJF", + Self::IcdigiekflaAopefjflgfj => "ICDIGIEKFLA_AOPEFJFLGFJ", + Self::IcdigiekflaIcdlnlfbmgp => "ICDIGIEKFLA_ICDLNLFBMGP", + Self::IcdigiekflaOplgelcbcii => "ICDIGIEKFLA_OPLGELCBCII", + Self::IcdigiekflaDacngicbeif => "ICDIGIEKFLA_DACNGICBEIF", + Self::IcdigiekflaPgmeckeokle => "ICDIGIEKFLA_PGMECKEOKLE", + Self::IcdigiekflaHkammoljiim => "ICDIGIEKFLA_HKAMMOLJIIM", + Self::IcdigiekflaOahcjdkaajc => "ICDIGIEKFLA_OAHCJDKAAJC", + Self::IcdigiekflaLgaamcpbpij => "ICDIGIEKFLA_LGAAMCPBPIJ", + Self::IcdigiekflaLfcijaimadk => "ICDIGIEKFLA_LFCIJAIMADK", + Self::IcdigiekflaDcoklmmocmf => "ICDIGIEKFLA_DCOKLMMOCMF", + Self::IcdigiekflaOmiofjaoiah => "ICDIGIEKFLA_OMIOFJAOIAH", + Self::IcdigiekflaMpeaamlkppf => "ICDIGIEKFLA_MPEAAMLKPPF", + Self::IcdigiekflaGdkkmfkgijf => "ICDIGIEKFLA_GDKKMFKGIJF", + Self::IcdigiekflaCnbeagccjgj => "ICDIGIEKFLA_CNBEAGCCJGJ", + Self::IcdigiekflaJmgcbbjlell => "ICDIGIEKFLA_JMGCBBJLELL", + Self::IcdigiekflaFekohkjjakh => "ICDIGIEKFLA_FEKOHKJJAKH", + Self::IcdigiekflaMmdnmnfejod => "ICDIGIEKFLA_MMDNMNFEJOD", + Self::IcdigiekflaEeeipfeeldl => "ICDIGIEKFLA_EEEIPFEELDL", + Self::IcdigiekflaBinljkmmpln => "ICDIGIEKFLA_BINLJKMMPLN", + Self::IcdigiekflaDgfnfphleep => "ICDIGIEKFLA_DGFNFPHLEEP", + Self::IcdigiekflaEfnefenlgdb => "ICDIGIEKFLA_EFNEFENLGDB", + Self::IcdigiekflaDojjnionbog => "ICDIGIEKFLA_DOJJNIONBOG", + Self::IcdigiekflaGehlbljlidn => "ICDIGIEKFLA_GEHLBLJLIDN", + Self::IcdigiekflaDpfpkfcchel => "ICDIGIEKFLA_DPFPKFCCHEL", + Self::IcdigiekflaPlgjfjghfic => "ICDIGIEKFLA_PLGJFJGHFIC", + Self::IcdigiekflaKbcllppdgfh => "ICDIGIEKFLA_KBCLLPPDGFH", + Self::IcdigiekflaGcoaghogejh => "ICDIGIEKFLA_GCOAGHOGEJH", + Self::IcdigiekflaEhlmmjoclfj => "ICDIGIEKFLA_EHLMMJOCLFJ", + Self::IcdigiekflaJpeoljlpmkc => "ICDIGIEKFLA_JPEOLJLPMKC", + Self::IcdigiekflaPopbiedcjmm => "ICDIGIEKFLA_POPBIEDCJMM", + Self::IcdigiekflaLemboohblga => "ICDIGIEKFLA_LEMBOOHBLGA", + Self::IcdigiekflaFegidhhingk => "ICDIGIEKFLA_FEGIDHHINGK", + Self::IcdigiekflaKedfahhkdma => "ICDIGIEKFLA_KEDFAHHKDMA", + Self::IcdigiekflaCccjmibgbpo => "ICDIGIEKFLA_CCCJMIBGBPO", + Self::IcdigiekflaPopbebecall => "ICDIGIEKFLA_POPBEBECALL", + Self::IcdigiekflaDieopimmamj => "ICDIGIEKFLA_DIEOPIMMAMJ", + Self::IcdigiekflaEickighfmoh => "ICDIGIEKFLA_EICKIGHFMOH", + Self::IcdigiekflaOigcnapcble => "ICDIGIEKFLA_OIGCNAPCBLE", + Self::IcdigiekflaLdojehpldej => "ICDIGIEKFLA_LDOJEHPLDEJ", + Self::IcdigiekflaJacbllgndlh => "ICDIGIEKFLA_JACBLLGNDLH", + Self::IcdigiekflaIohafbnjcfi => "ICDIGIEKFLA_IOHAFBNJCFI", + Self::IcdigiekflaNnlgmnbdhde => "ICDIGIEKFLA_NNLGMNBDHDE", + Self::IcdigiekflaModngbiknld => "ICDIGIEKFLA_MODNGBIKNLD", + Self::IcdigiekflaPcefgjjcgnc => "ICDIGIEKFLA_PCEFGJJCGNC", + Self::IcdigiekflaPpilikhgfja => "ICDIGIEKFLA_PPILIKHGFJA", + Self::IcdigiekflaOenpjmhdfoe => "ICDIGIEKFLA_OENPJMHDFOE", + Self::IcdigiekflaNocdminaamh => "ICDIGIEKFLA_NOCDMINAAMH", + Self::IcdigiekflaMhhnfnffmfo => "ICDIGIEKFLA_MHHNFNFFMFO", + Self::IcdigiekflaBljnjdbmegf => "ICDIGIEKFLA_BLJNJDBMEGF", + Self::IcdigiekflaKplpgklcfko => "ICDIGIEKFLA_KPLPGKLCFKO", + Self::IcdigiekflaOjcghomeacd => "ICDIGIEKFLA_OJCGHOMEACD", + Self::IcdigiekflaAjhmhcgnekk => "ICDIGIEKFLA_AJHMHCGNEKK", + Self::IcdigiekflaEmlghkcbafi => "ICDIGIEKFLA_EMLGHKCBAFI", + Self::IcdigiekflaChpkjijmnlb => "ICDIGIEKFLA_CHPKJIJMNLB", + Self::IcdigiekflaGindchodecp => "ICDIGIEKFLA_GINDCHODECP", + Self::IcdigiekflaAmlmneeidhl => "ICDIGIEKFLA_AMLMNEEIDHL", + Self::IcdigiekflaOpedcdhkcfc => "ICDIGIEKFLA_OPEDCDHKCFC", + Self::IcdigiekflaOcobadfneij => "ICDIGIEKFLA_OCOBADFNEIJ", + Self::IcdigiekflaCfhlpnaicae => "ICDIGIEKFLA_CFHLPNAICAE", + Self::IcdigiekflaNhgjmlemgdl => "ICDIGIEKFLA_NHGJMLEMGDL", + Self::IcdigiekflaGfienmckemc => "ICDIGIEKFLA_GFIENMCKEMC", + Self::IcdigiekflaBoocgfeimkj => "ICDIGIEKFLA_BOOCGFEIMKJ", + Self::IcdigiekflaEednnmlcojp => "ICDIGIEKFLA_EEDNNMLCOJP", + Self::IcdigiekflaBbpimgfgden => "ICDIGIEKFLA_BBPIMGFGDEN", + Self::IcdigiekflaGpgcoiggioh => "ICDIGIEKFLA_GPGCOIGGIOH", + Self::IcdigiekflaIjenbeiadao => "ICDIGIEKFLA_IJENBEIADAO", + Self::IcdigiekflaDnnaoikhkcb => "ICDIGIEKFLA_DNNAOIKHKCB", + Self::IcdigiekflaMbpbgjefaki => "ICDIGIEKFLA_MBPBGJEFAKI", + Self::IcdigiekflaJklhedpejbb => "ICDIGIEKFLA_JKLHEDPEJBB", + Self::IcdigiekflaHeeeeckahgn => "ICDIGIEKFLA_HEEEECKAHGN", + Self::IcdigiekflaNniakbajoec => "ICDIGIEKFLA_NNIAKBAJOEC", + Self::IcdigiekflaJnpmjkajnjo => "ICDIGIEKFLA_JNPMJKAJNJO", + Self::IcdigiekflaFkkkafnhcmj => "ICDIGIEKFLA_FKKKAFNHCMJ", + Self::IcdigiekflaHjjegfpoefd => "ICDIGIEKFLA_HJJEGFPOEFD", + Self::IcdigiekflaIoljaimfpmh => "ICDIGIEKFLA_IOLJAIMFPMH", + Self::IcdigiekflaPjpnjdielan => "ICDIGIEKFLA_PJPNJDIELAN", + Self::IcdigiekflaBfbckbbpfdj => "ICDIGIEKFLA_BFBCKBBPFDJ", + Self::IcdigiekflaOkkdhpmjnoc => "ICDIGIEKFLA_OKKDHPMJNOC", + Self::IcdigiekflaEllbficlcfj => "ICDIGIEKFLA_ELLBFICLCFJ", + Self::IcdigiekflaAhmeiggipkh => "ICDIGIEKFLA_AHMEIGGIPKH", + Self::IcdigiekflaJnpehgdifed => "ICDIGIEKFLA_JNPEHGDIFED", + Self::IcdigiekflaDbiklngbhid => "ICDIGIEKFLA_DBIKLNGBHID", + Self::IcdigiekflaIejpbblfcml => "ICDIGIEKFLA_IEJPBBLFCML", + Self::IcdigiekflaLkkhgjmhphb => "ICDIGIEKFLA_LKKHGJMHPHB", + Self::IcdigiekflaHoplcofocli => "ICDIGIEKFLA_HOPLCOFOCLI", + Self::IcdigiekflaBnafooefhcj => "ICDIGIEKFLA_BNAFOOEFHCJ", + Self::IcdigiekflaNpmdacpojol => "ICDIGIEKFLA_NPMDACPOJOL", + Self::IcdigiekflaJkdmjmmionn => "ICDIGIEKFLA_JKDMJMMIONN", + Self::IcdigiekflaCnlekebjcio => "ICDIGIEKFLA_CNLEKEBJCIO", + Self::IcdigiekflaDmomggckdhe => "ICDIGIEKFLA_DMOMGGCKDHE", + Self::IcdigiekflaFnomkddfced => "ICDIGIEKFLA_FNOMKDDFCED", + Self::IcdigiekflaMpohcjmleko => "ICDIGIEKFLA_MPOHCJMLEKO", + Self::IcdigiekflaHobndanncfe => "ICDIGIEKFLA_HOBNDANNCFE", + Self::IcdigiekflaHehllgnmjgd => "ICDIGIEKFLA_HEHLLGNMJGD", + Self::IcdigiekflaGgcbnlgloel => "ICDIGIEKFLA_GGCBNLGLOEL", + Self::IcdigiekflaNkopcjgninh => "ICDIGIEKFLA_NKOPCJGNINH", + Self::IcdigiekflaJlnkedbclak => "ICDIGIEKFLA_JLNKEDBCLAK", + Self::IcdigiekflaDheecaedppa => "ICDIGIEKFLA_DHEECAEDPPA", + Self::IcdigiekflaCglbhllmnde => "ICDIGIEKFLA_CGLBHLLMNDE", + Self::IcdigiekflaMgemmkphbag => "ICDIGIEKFLA_MGEMMKPHBAG", + Self::IcdigiekflaJdkcmhibccl => "ICDIGIEKFLA_JDKCMHIBCCL", + Self::IcdigiekflaNebfgikhjml => "ICDIGIEKFLA_NEBFGIKHJML", + Self::IcdigiekflaKbjoeoodfbp => "ICDIGIEKFLA_KBJOEOODFBP", + Self::IcdigiekflaJlooilajmdb => "ICDIGIEKFLA_JLOOILAJMDB", + Self::IcdigiekflaNnjehfcfmbj => "ICDIGIEKFLA_NNJEHFCFMBJ", + Self::IcdigiekflaGdalbbinlaa => "ICDIGIEKFLA_GDALBBINLAA", + Self::IcdigiekflaKdabbbmaald => "ICDIGIEKFLA_KDABBBMAALD", + Self::IcdigiekflaDnpdaehpijj => "ICDIGIEKFLA_DNPDAEHPIJJ", + Self::IcdigiekflaPcacaabneeh => "ICDIGIEKFLA_PCACAABNEEH", + Self::IcdigiekflaMdbhhlmkncf => "ICDIGIEKFLA_MDBHHLMKNCF", + Self::IcdigiekflaFjmngmecikb => "ICDIGIEKFLA_FJMNGMECIKB", + Self::IcdigiekflaGfmfpgolkhk => "ICDIGIEKFLA_GFMFPGOLKHK", + Self::IcdigiekflaLflapkhomhj => "ICDIGIEKFLA_LFLAPKHOMHJ", + Self::IcdigiekflaMbbebjdlibb => "ICDIGIEKFLA_MBBEBJDLIBB", + Self::IcdigiekflaGjgkhlikkbg => "ICDIGIEKFLA_GJGKHLIKKBG", + Self::IcdigiekflaEfakkmmfgcp => "ICDIGIEKFLA_EFAKKMMFGCP", + Self::IcdigiekflaNhfkfbpoooa => "ICDIGIEKFLA_NHFKFBPOOOA", + Self::IcdigiekflaOalehmphlag => "ICDIGIEKFLA_OALEHMPHLAG", + Self::IcdigiekflaClakdndagkb => "ICDIGIEKFLA_CLAKDNDAGKB", + Self::IcdigiekflaBpjfhabagmm => "ICDIGIEKFLA_BPJFHABAGMM", + Self::IcdigiekflaPpogjmjcnll => "ICDIGIEKFLA_PPOGJMJCNLL", + Self::IcdigiekflaDjfejaedonc => "ICDIGIEKFLA_DJFEJAEDONC", + Self::IcdigiekflaPkcbimbafbl => "ICDIGIEKFLA_PKCBIMBAFBL", + Self::IcdigiekflaOokkmhajndj => "ICDIGIEKFLA_OOKKMHAJNDJ", + Self::IcdigiekflaDjabompgofa => "ICDIGIEKFLA_DJABOMPGOFA", + Self::IcdigiekflaLjkbbhdamdp => "ICDIGIEKFLA_LJKBBHDAMDP", + Self::IcdigiekflaNnkmkjocaff => "ICDIGIEKFLA_NNKMKJOCAFF", + Self::IcdigiekflaMbkkomaambc => "ICDIGIEKFLA_MBKKOMAAMBC", + Self::IcdigiekflaHfdilanencc => "ICDIGIEKFLA_HFDILANENCC", + Self::IcdigiekflaJkcokddhhjp => "ICDIGIEKFLA_JKCOKDDHHJP", + Self::IcdigiekflaPdbckfjbafb => "ICDIGIEKFLA_PDBCKFJBAFB", + Self::IcdigiekflaNgnkeccgonk => "ICDIGIEKFLA_NGNKECCGONK", + Self::IcdigiekflaHheabkgpmlm => "ICDIGIEKFLA_HHEABKGPMLM", + Self::IcdigiekflaGifdjhioakj => "ICDIGIEKFLA_GIFDJHIOAKJ", + Self::IcdigiekflaLndldccdgoo => "ICDIGIEKFLA_LNDLDCCDGOO", + Self::IcdigiekflaJlajlcjggka => "ICDIGIEKFLA_JLAJLCJGGKA", + Self::IcdigiekflaGkhihefhged => "ICDIGIEKFLA_GKHIHEFHGED", + Self::IcdigiekflaJennohbfipd => "ICDIGIEKFLA_JENNOHBFIPD", + Self::IcdigiekflaDbehlgglbak => "ICDIGIEKFLA_DBEHLGGLBAK", + Self::IcdigiekflaIdidjmjobaa => "ICDIGIEKFLA_IDIDJMJOBAA", + Self::IcdigiekflaEggabkcfcgp => "ICDIGIEKFLA_EGGABKCFCGP", + Self::IcdigiekflaFbbfagkkcpc => "ICDIGIEKFLA_FBBFAGKKCPC", + Self::IcdigiekflaAlobkmpcdih => "ICDIGIEKFLA_ALOBKMPCDIH", + Self::IcdigiekflaNpmalejcikd => "ICDIGIEKFLA_NPMALEJCIKD", + Self::IcdigiekflaHlmkcomfjlb => "ICDIGIEKFLA_HLMKCOMFJLB", + Self::IcdigiekflaGillmkmomcn => "ICDIGIEKFLA_GILLMKMOMCN", + Self::IcdigiekflaBpmplinlddb => "ICDIGIEKFLA_BPMPLINLDDB", + Self::IcdigiekflaNacemefodke => "ICDIGIEKFLA_NACEMEFODKE", + Self::IcdigiekflaBagedcghoib => "ICDIGIEKFLA_BAGEDCGHOIB", + Self::IcdigiekflaKfencompoja => "ICDIGIEKFLA_KFENCOMPOJA", + Self::IcdigiekflaPidicmfehjl => "ICDIGIEKFLA_PIDICMFEHJL", + Self::IcdigiekflaOepekokhgag => "ICDIGIEKFLA_OEPEKOKHGAG", + Self::IcdigiekflaIffdlilocjn => "ICDIGIEKFLA_IFFDLILOCJN", + Self::IcdigiekflaMpfhgfolhjj => "ICDIGIEKFLA_MPFHGFOLHJJ", + Self::IcdigiekflaMkhacgaoahp => "ICDIGIEKFLA_MKHACGAOAHP", + Self::IcdigiekflaPpihhmfkkih => "ICDIGIEKFLA_PPIHHMFKKIH", + Self::IcdigiekflaOolhnjokpbk => "ICDIGIEKFLA_OOLHNJOKPBK", + Self::IcdigiekflaCkgfkajieig => "ICDIGIEKFLA_CKGFKAJIEIG", + Self::IcdigiekflaLckhipglkmo => "ICDIGIEKFLA_LCKHIPGLKMO", + Self::IcdigiekflaMcbgccdkpbf => "ICDIGIEKFLA_MCBGCCDKPBF", + Self::IcdigiekflaJgpchdjfppg => "ICDIGIEKFLA_JGPCHDJFPPG", + Self::IcdigiekflaNnebdmjelbf => "ICDIGIEKFLA_NNEBDMJELBF", + Self::IcdigiekflaGjfolbmdaih => "ICDIGIEKFLA_GJFOLBMDAIH", + Self::IcdigiekflaLjgafpbembd => "ICDIGIEKFLA_LJGAFPBEMBD", + Self::IcdigiekflaBaajoojgpcp => "ICDIGIEKFLA_BAAJOOJGPCP", + Self::IcdigiekflaKdfbpckghho => "ICDIGIEKFLA_KDFBPCKGHHO", + Self::IcdigiekflaBkldnhnpald => "ICDIGIEKFLA_BKLDNHNPALD", + Self::IcdigiekflaPlhpmnlmbgi => "ICDIGIEKFLA_PLHPMNLMBGI", + Self::IcdigiekflaBhhigjbjlfg => "ICDIGIEKFLA_BHHIGJBJLFG", + Self::IcdigiekflaCegkmnacong => "ICDIGIEKFLA_CEGKMNACONG", + Self::IcdigiekflaEnddimdgcep => "ICDIGIEKFLA_ENDDIMDGCEP", + Self::IcdigiekflaPmnlammbpji => "ICDIGIEKFLA_PMNLAMMBPJI", + Self::IcdigiekflaObhkkohilpi => "ICDIGIEKFLA_OBHKKOHILPI", + Self::IcdigiekflaPhjfhdhkkbf => "ICDIGIEKFLA_PHJFHDHKKBF", + Self::IcdigiekflaEfmljocohei => "ICDIGIEKFLA_EFMLJOCOHEI", + Self::IcdigiekflaPpdgigdejkg => "ICDIGIEKFLA_PPDGIGDEJKG", + Self::IcdigiekflaAghgbokaefe => "ICDIGIEKFLA_AGHGBOKAEFE", + Self::IcdigiekflaEmdcdcbfnco => "ICDIGIEKFLA_EMDCDCBFNCO", + Self::IcdigiekflaKnnejdbebkk => "ICDIGIEKFLA_KNNEJDBEBKK", + Self::IcdigiekflaNenaaenojon => "ICDIGIEKFLA_NENAAENOJON", + Self::IcdigiekflaAjejobchpmo => "ICDIGIEKFLA_AJEJOBCHPMO", + Self::IcdigiekflaGbemalcocla => "ICDIGIEKFLA_GBEMALCOCLA", + Self::IcdigiekflaJihacahbplj => "ICDIGIEKFLA_JIHACAHBPLJ", + Self::IcdigiekflaOnkgkgcdako => "ICDIGIEKFLA_ONKGKGCDAKO", + Self::IcdigiekflaFoakhhdfeij => "ICDIGIEKFLA_FOAKHHDFEIJ", + Self::IcdigiekflaCjfmbpbmnlm => "ICDIGIEKFLA_CJFMBPBMNLM", + Self::IcdigiekflaBdfgkokmimn => "ICDIGIEKFLA_BDFGKOKMIMN", + Self::IcdigiekflaGenoikkjood => "ICDIGIEKFLA_GENOIKKJOOD", + Self::IcdigiekflaAoechbpgkcn => "ICDIGIEKFLA_AOECHBPGKCN", + Self::IcdigiekflaKgceojlkfdp => "ICDIGIEKFLA_KGCEOJLKFDP", + Self::IcdigiekflaNoiihjjmleh => "ICDIGIEKFLA_NOIIHJJMLEH", + Self::IcdigiekflaGchendfgbce => "ICDIGIEKFLA_GCHENDFGBCE", + Self::IcdigiekflaBciohjnadml => "ICDIGIEKFLA_BCIOHJNADML", + Self::IcdigiekflaLoeemjcngpl => "ICDIGIEKFLA_LOEEMJCNGPL", + Self::IcdigiekflaIibgmfbiagg => "ICDIGIEKFLA_IIBGMFBIAGG", + Self::IcdigiekflaOcekfmepbnn => "ICDIGIEKFLA_OCEKFMEPBNN", + Self::IcdigiekflaOlpanlopcjc => "ICDIGIEKFLA_OLPANLOPCJC", + Self::IcdigiekflaDengboagecc => "ICDIGIEKFLA_DENGBOAGECC", + Self::IcdigiekflaKlinpacjggk => "ICDIGIEKFLA_KLINPACJGGK", + Self::IcdigiekflaDlbpofijhji => "ICDIGIEKFLA_DLBPOFIJHJI", + Self::IcdigiekflaGfnachmklne => "ICDIGIEKFLA_GFNACHMKLNE", + Self::IcdigiekflaApfadbgcjap => "ICDIGIEKFLA_APFADBGCJAP", + Self::IcdigiekflaKmmekbkdokp => "ICDIGIEKFLA_KMMEKBKDOKP", + Self::IcdigiekflaOgjegmdebcl => "ICDIGIEKFLA_OGJEGMDEBCL", + Self::IcdigiekflaOjnieceloaa => "ICDIGIEKFLA_OJNIECELOAA", + Self::IcdigiekflaJacfmkdekec => "ICDIGIEKFLA_JACFMKDEKEC", + Self::IcdigiekflaNbkdnoikmei => "ICDIGIEKFLA_NBKDNOIKMEI", + Self::IcdigiekflaFbibmanpnbc => "ICDIGIEKFLA_FBIBMANPNBC", + Self::IcdigiekflaJeeabdjgfhd => "ICDIGIEKFLA_JEEABDJGFHD", + Self::IcdigiekflaMejefbbgoio => "ICDIGIEKFLA_MEJEFBBGOIO", + Self::IcdigiekflaOghgnnfoccm => "ICDIGIEKFLA_OGHGNNFOCCM", + Self::IcdigiekflaNhcbnjhfkhn => "ICDIGIEKFLA_NHCBNJHFKHN", + Self::IcdigiekflaPhkjimnjchm => "ICDIGIEKFLA_PHKJIMNJCHM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "RET_SUCC" => Some(Self::RetSucc), - "RET_FAIL" => Some(Self::RetFail), - "RET_SERVER_INTERNAL_ERROR" => Some(Self::RetServerInternalError), - "RET_TIMEOUT" => Some(Self::RetTimeout), - "RET_REPEATED_REQ" => Some(Self::RetRepeatedReq), - "RET_REQ_PARA_INVALID" => Some(Self::RetReqParaInvalid), - "RET_PLAYER_DATA_ERROR" => Some(Self::RetPlayerDataError), - "RET_PLAYER_CLIENT_PAUSED" => Some(Self::RetPlayerClientPaused), - "RET_FUNC_CHECK_FAILED" => Some(Self::RetFuncCheckFailed), - "RET_FEATURE_SWITCH_CLOSED" => Some(Self::RetFeatureSwitchClosed), - "RET_FREQ_OVER_LIMIT" => Some(Self::RetFreqOverLimit), - "RET_SYSTEM_BUSY" => Some(Self::RetSystemBusy), - "RET_PLAYER_NOT_ONLINE" => Some(Self::RetPlayerNotOnline), - "RET_OPERATION_IN_CD" => Some(Self::RetOperationInCd), - "RET_REPEATE_LOGIN" => Some(Self::RetRepeateLogin), - "RET_RETRY_LOGIN" => Some(Self::RetRetryLogin), - "RET_WAIT_LOGIN" => Some(Self::RetWaitLogin), - "RET_NOT_IN_WHITE_LIST" => Some(Self::RetNotInWhiteList), - "RET_IN_BLACK_LIST" => Some(Self::RetInBlackList), - "RET_ACCOUNT_VERIFY_ERROR" => Some(Self::RetAccountVerifyError), - "RET_ACCOUNT_PARA_ERROR" => Some(Self::RetAccountParaError), - "RET_ANTI_ADDICT_LOGIN" => Some(Self::RetAntiAddictLogin), - "RET_CHECK_SUM_ERROR" => Some(Self::RetCheckSumError), - "RET_REACH_MAX_PLAYER_NUM" => Some(Self::RetReachMaxPlayerNum), - "RET_ALREADY_REGISTERED" => Some(Self::RetAlreadyRegistered), - "RET_GENDER_ERROR" => Some(Self::RetGenderError), - "SET_NICKNAME_RET_CALLBACK_PROCESSING" => { - Some(Self::SetNicknameRetCallbackProcessing) - } - "RET_IN_GM_BIND_ACCESS" => Some(Self::RetInGmBindAccess), - "RET_QUEST_REWARD_ALREADY_TAKEN" => Some(Self::RetQuestRewardAlreadyTaken), - "RET_QUEST_NOT_ACCEPT" => Some(Self::RetQuestNotAccept), - "RET_QUEST_NOT_FINISH" => Some(Self::RetQuestNotFinish), - "RET_QUEST_STATUS_ERROR" => Some(Self::RetQuestStatusError), - "RET_ACHIEVEMENT_LEVEL_NOT_REACH" => Some(Self::RetAchievementLevelNotReach), - "RET_ACHIEVEMENT_LEVEL_ALREADY_TAKEN" => { - Some(Self::RetAchievementLevelAlreadyTaken) - } - "RET_AVATAR_NOT_EXIST" => Some(Self::RetAvatarNotExist), - "RET_AVATAR_RES_EXP_NOT_ENOUGH" => Some(Self::RetAvatarResExpNotEnough), - "RET_AVATAR_EXP_REACH_PROMOTION_LIMIT" => { - Some(Self::RetAvatarExpReachPromotionLimit) - } - "RET_AVATAR_REACH_MAX_PROMOTION" => Some(Self::RetAvatarReachMaxPromotion), - "RET_SKILLTREE_CONFIG_NOT_EXIST" => Some(Self::RetSkilltreeConfigNotExist), - "RET_SKILLTREE_ALREADY_UNLOCK" => Some(Self::RetSkilltreeAlreadyUnlock), - "RET_SKILLTREE_PRE_LOCKED" => Some(Self::RetSkilltreePreLocked), - "RET_SKILLTREE_LEVEL_NOT_MEET" => Some(Self::RetSkilltreeLevelNotMeet), - "RET_SKILLTREE_RANK_NOT_MEET" => Some(Self::RetSkilltreeRankNotMeet), - "RET_AVATAR_DRESS_NO_EQUIPMENT" => Some(Self::RetAvatarDressNoEquipment), - "RET_AVATAR_EXP_ITEM_NOT_EXIST" => Some(Self::RetAvatarExpItemNotExist), - "RET_SKILLTREE_POINT_LOCKED" => Some(Self::RetSkilltreePointLocked), - "RET_SKILLTREE_POINT_LEVEL_UPGRADE_NOT_MATCH" => { - Some(Self::RetSkilltreePointLevelUpgradeNotMatch) - } - "RET_SKILLTREE_POINT_LEVEL_REACH_MAX" => { - Some(Self::RetSkilltreePointLevelReachMax) - } - "RET_WORLD_LEVEL_NOT_MEET" => Some(Self::RetWorldLevelNotMeet), - "RET_PLAYER_LEVEL_NOT_MEET" => Some(Self::RetPlayerLevelNotMeet), - "RET_AVATAR_RANK_NOT_MATCH" => Some(Self::RetAvatarRankNotMatch), - "RET_AVATAR_RANK_REACH_MAX" => Some(Self::RetAvatarRankReachMax), - "RET_HERO_BASIC_TYPE_NOT_MATCH" => Some(Self::RetHeroBasicTypeNotMatch), - "RET_AVATAR_PROMOTION_NOT_MEET" => Some(Self::RetAvatarPromotionNotMeet), - "RET_PROMOTION_REWARD_CONFIG_NOT_EXIST" => { - Some(Self::RetPromotionRewardConfigNotExist) - } - "RET_PROMOTION_REWARD_ALREADY_TAKEN" => { - Some(Self::RetPromotionRewardAlreadyTaken) - } - "RET_AVATAR_SKIN_ITEM_NOT_EXIST" => Some(Self::RetAvatarSkinItemNotExist), - "RET_AVATAR_SKIN_ALREADY_DRESSED" => Some(Self::RetAvatarSkinAlreadyDressed), - "RET_AVATAR_NOT_DRESS_SKIN" => Some(Self::RetAvatarNotDressSkin), - "RET_AVATAR_SKIN_NOT_MATCH_AVATAR" => Some(Self::RetAvatarSkinNotMatchAvatar), - "RET_AVATAR_PATH_NOT_MATCH" => Some(Self::RetAvatarPathNotMatch), - "RET_AVATAR_ENHANCED_ID_NOT_EXIST" => Some(Self::RetAvatarEnhancedIdNotExist), - "RET_AVATAR_ENHANCED_ID_ALREADY_SET" => { - Some(Self::RetAvatarEnhancedIdAlreadySet) - } - "RET_AVATAR_NOT_CUR_ENHANCED_ID" => Some(Self::RetAvatarNotCurEnhancedId), - "RET_PLAYER_OUTFIT_CONFIG_NOT_EXIST" => { - Some(Self::RetPlayerOutfitConfigNotExist) - } - "RET_PLAYER_OUTFIT_SLOT_CONFLICT" => Some(Self::RetPlayerOutfitSlotConflict), - "RET_PLAYER_OUTFIT_IS_DEFAULT" => Some(Self::RetPlayerOutfitIsDefault), - "RET_PLAYER_OUTFIT_NOT_OWNED" => Some(Self::RetPlayerOutfitNotOwned), - "RET_SKILLTREE_FAST_LEVEL_UP_CLOSE" => { - Some(Self::RetSkilltreeFastLevelUpClose) - } - "RET_ITEM_NOT_EXIST" => Some(Self::RetItemNotExist), - "RET_ITEM_COST_NOT_ENOUGH" => Some(Self::RetItemCostNotEnough), - "RET_ITEM_COST_TOO_MUCH" => Some(Self::RetItemCostTooMuch), - "RET_ITEM_NO_COST" => Some(Self::RetItemNoCost), - "RET_ITEM_NOT_ENOUGH" => Some(Self::RetItemNotEnough), - "RET_ITEM_INVALID" => Some(Self::RetItemInvalid), - "RET_ITEM_CONFIG_NOT_EXIST" => Some(Self::RetItemConfigNotExist), - "RET_SCOIN_NOT_ENOUGH" => Some(Self::RetScoinNotEnough), - "RET_ITEM_REWARD_EXCEED_LIMIT" => Some(Self::RetItemRewardExceedLimit), - "RET_ITEM_INVALID_USE" => Some(Self::RetItemInvalidUse), - "RET_ITEM_USE_CONFIG_NOT_EXIST" => Some(Self::RetItemUseConfigNotExist), - "RET_REWARD_CONFIG_NOT_EXIST" => Some(Self::RetRewardConfigNotExist), - "RET_ITEM_EXCEED_LIMIT" => Some(Self::RetItemExceedLimit), - "RET_ITEM_COUNT_INVALID" => Some(Self::RetItemCountInvalid), - "RET_ITEM_USE_TARGET_TYPE_INVALID" => Some(Self::RetItemUseTargetTypeInvalid), - "RET_ITEM_USE_SATIETY_FULL" => Some(Self::RetItemUseSatietyFull), - "RET_ITEM_COMPOSE_NOT_EXIST" => Some(Self::RetItemComposeNotExist), - "RET_RELIC_COMPOSE_NOT_EXIST" => Some(Self::RetRelicComposeNotExist), - "RET_ITEM_CAN_NOT_SELL" => Some(Self::RetItemCanNotSell), - "RET_ITEM_SELL_EXCEDD_LIMIT" => Some(Self::RetItemSellExceddLimit), - "RET_ITEM_NOT_IN_COST_LIST" => Some(Self::RetItemNotInCostList), - "RET_ITEM_SPECIAL_COST_NOT_ENOUGH" => Some(Self::RetItemSpecialCostNotEnough), - "RET_ITEM_SPECIAL_COST_TOO_MUCH" => Some(Self::RetItemSpecialCostTooMuch), - "RET_ITEM_FORMULA_NOT_EXIST" => Some(Self::RetItemFormulaNotExist), - "RET_ITEM_AUTO_GIFT_OPTIONAL_NOT_EXIST" => { - Some(Self::RetItemAutoGiftOptionalNotExist) - } - "RET_RELIC_COMPOSE_RELIC_INVALID" => Some(Self::RetRelicComposeRelicInvalid), - "RET_RELIC_COMPOSE_MAIN_AFFIX_ID_INVALID" => { - Some(Self::RetRelicComposeMainAffixIdInvalid) - } - "RET_RELIC_COMPOSE_WRONG_FORMULA_TYPE" => { - Some(Self::RetRelicComposeWrongFormulaType) - } - "RET_RELIC_COMPOSE_RELIC_NOT_EXIST" => { - Some(Self::RetRelicComposeRelicNotExist) - } - "RET_RELIC_COMPOSE_BLACK_GOLD_COUNT_INVALID" => { - Some(Self::RetRelicComposeBlackGoldCountInvalid) - } - "RET_RELIC_COMPOSE_BLACK_GOLD_NOT_NEED" => { - Some(Self::RetRelicComposeBlackGoldNotNeed) - } - "RET_MONTH_CARD_CANNOT_USE" => Some(Self::RetMonthCardCannotUse), - "RET_ITEM_REWARD_EXCEED_DISAPPEAR" => { - Some(Self::RetItemRewardExceedDisappear) - } - "RET_ITEM_NEED_RECYCLE" => Some(Self::RetItemNeedRecycle), - "RET_ITEM_COMPOSE_EXCEED_LIMIT" => Some(Self::RetItemComposeExceedLimit), - "RET_ITEM_CAN_NOT_DESTROY" => Some(Self::RetItemCanNotDestroy), - "RET_ITEM_ALREADY_MARK" => Some(Self::RetItemAlreadyMark), - "RET_ITEM_MARK_EXCEED_LIMIT" => Some(Self::RetItemMarkExceedLimit), - "RET_ITEM_NOT_MARK" => Some(Self::RetItemNotMark), - "RET_ITEN_TURN_FOOD_NOT_SET" => Some(Self::RetItenTurnFoodNotSet), - "RET_ITEM_TURN_FOOD_ALREADY_SET" => Some(Self::RetItemTurnFoodAlreadySet), - "RET_ITEM_TURN_FOOD_CONSUME_TYPE_ERROR" => { - Some(Self::RetItemTurnFoodConsumeTypeError) - } - "RET_ITEM_TURN_FOOD_SWITCH_ALREADY_OPEN" => { - Some(Self::RetItemTurnFoodSwitchAlreadyOpen) - } - "RET_ITEM_TURN_FOOD_SWITCH_ALREADY_CLOSE" => { - Some(Self::RetItemTurnFoodSwitchAlreadyClose) - } - "RET_HCOIN_EXCHANGE_TOO_MUCH" => Some(Self::RetHcoinExchangeTooMuch), - "RET_ITEM_TURN_FOOD_SCENE_TYPE_ERROR" => { - Some(Self::RetItemTurnFoodSceneTypeError) - } - "RET_EQUIPMENT_ALREADY_DRESSED" => Some(Self::RetEquipmentAlreadyDressed), - "RET_EQUIPMENT_NOT_EXIST" => Some(Self::RetEquipmentNotExist), - "RET_EQUIPMENT_REACH_LEVEL_LIMIT" => Some(Self::RetEquipmentReachLevelLimit), - "RET_EQUIPMENT_CONSUME_SELF" => Some(Self::RetEquipmentConsumeSelf), - "RET_EQUIPMENT_ALREADY_LOCKED" => Some(Self::RetEquipmentAlreadyLocked), - "RET_EQUIPMENT_ALREADY_UNLOCKED" => Some(Self::RetEquipmentAlreadyUnlocked), - "RET_EQUIPMENT_LOCKED" => Some(Self::RetEquipmentLocked), - "RET_EQUIPMENT_SELECT_NUM_OVER_LIMIT" => { - Some(Self::RetEquipmentSelectNumOverLimit) - } - "RET_EQUIPMENT_RANK_UP_MUST_CONSUME_SAME_TID" => { - Some(Self::RetEquipmentRankUpMustConsumeSameTid) - } - "RET_EQUIPMENT_PROMOTION_REACH_MAX" => { - Some(Self::RetEquipmentPromotionReachMax) - } - "RET_EQUIPMENT_RANK_UP_REACH_MAX" => Some(Self::RetEquipmentRankUpReachMax), - "RET_EQUIPMENT_LEVEL_REACH_MAX" => Some(Self::RetEquipmentLevelReachMax), - "RET_EQUIPMENT_EXCEED_LIMIT" => Some(Self::RetEquipmentExceedLimit), - "RET_RELIC_NOT_EXIST" => Some(Self::RetRelicNotExist), - "RET_RELIC_REACH_LEVEL_LIMIT" => Some(Self::RetRelicReachLevelLimit), - "RET_RELIC_CONSUME_SELF" => Some(Self::RetRelicConsumeSelf), - "RET_RELIC_ALREADY_DRESSED" => Some(Self::RetRelicAlreadyDressed), - "RET_RELIC_LOCKED" => Some(Self::RetRelicLocked), - "RET_RELIC_ALREADY_LOCKED" => Some(Self::RetRelicAlreadyLocked), - "RET_RELIC_ALREADY_UNLOCKED" => Some(Self::RetRelicAlreadyUnlocked), - "RET_RELIC_LEVEL_IS_NOT_ZERO" => Some(Self::RetRelicLevelIsNotZero), - "RET_UNIQUE_ID_REPEATED" => Some(Self::RetUniqueIdRepeated), - "RET_EQUIPMENT_LEVEL_NOT_MEET" => Some(Self::RetEquipmentLevelNotMeet), - "RET_EQUIPMENT_ITEM_NOT_IN_COST_LIST" => { - Some(Self::RetEquipmentItemNotInCostList) - } - "RET_EQUIPMENT_LEVEL_GREATER_THAN_ONE" => { - Some(Self::RetEquipmentLevelGreaterThanOne) - } - "RET_EQUIPMENT_ALREADY_RANKED" => Some(Self::RetEquipmentAlreadyRanked), - "RET_RELIC_EXCEED_LIMIT" => Some(Self::RetRelicExceedLimit), - "RET_RELIC_ALREADY_DISCARDED" => Some(Self::RetRelicAlreadyDiscarded), - "RET_RELIC_ALREADY_UNDISCARDED" => Some(Self::RetRelicAlreadyUndiscarded), - "RET_EQUIPMENT_BATCH_LOCK_TOO_FAST" => { - Some(Self::RetEquipmentBatchLockTooFast) - } - "RET_RELIC_FILTER_PLAN_SLOT_EMPTY" => Some(Self::RetRelicFilterPlanSlotEmpty), - "RET_RELIC_FILTER_PLAN_NUM_EXCEED_LIMIT" => { - Some(Self::RetRelicFilterPlanNumExceedLimit) - } - "RET_RELIC_FILTER_PLAN_NAME_UTF8_ERROR" => { - Some(Self::RetRelicFilterPlanNameUtf8Error) - } - "RET_RELIC_FILTER_PLAN_NAME_FORMAT_ERROR" => { - Some(Self::RetRelicFilterPlanNameFormatError) - } - "RET_RELIC_FILTER_PLAN_NO_CHANGE" => Some(Self::RetRelicFilterPlanNoChange), - "RET_RELIC_REFORGE_NOT_CONFIRMED" => Some(Self::RetRelicReforgeNotConfirmed), - "RET_EQUIPMENT_ALREADY_LEVELUP" => Some(Self::RetEquipmentAlreadyLevelup), - "RET_EQUIPMENT_RARITY_ERROR" => Some(Self::RetEquipmentRarityError), - "RET_LINEUP_INVALID_INDEX" => Some(Self::RetLineupInvalidIndex), - "RET_LINEUP_INVALID_MEMBER_POS" => Some(Self::RetLineupInvalidMemberPos), - "RET_LINEUP_SWAP_NOT_EXIST" => Some(Self::RetLineupSwapNotExist), - "RET_LINEUP_AVATAR_ALREADY_IN" => Some(Self::RetLineupAvatarAlreadyIn), - "RET_LINEUP_CREATE_AVATAR_ERROR" => Some(Self::RetLineupCreateAvatarError), - "RET_LINEUP_AVATAR_INIT_ERROR" => Some(Self::RetLineupAvatarInitError), - "RET_LINEUP_NOT_EXIST" => Some(Self::RetLineupNotExist), - "RET_LINEUP_ONLY_ONE_MEMBER" => Some(Self::RetLineupOnlyOneMember), - "RET_LINEUP_SAME_LEADER_SLOT" => Some(Self::RetLineupSameLeaderSlot), - "RET_LINEUP_NO_LEADER_SELECT" => Some(Self::RetLineupNoLeaderSelect), - "RET_LINEUP_SWAP_SAME_SLOT" => Some(Self::RetLineupSwapSameSlot), - "RET_LINEUP_AVATAR_NOT_EXIST" => Some(Self::RetLineupAvatarNotExist), - "RET_LINEUP_TRIAL_AVATAR_CAN_NOT_QUIT" => { - Some(Self::RetLineupTrialAvatarCanNotQuit) - } - "RET_LINEUP_VIRTUAL_LINEUP_PLANE_NOT_MATCH" => { - Some(Self::RetLineupVirtualLineupPlaneNotMatch) - } - "RET_LINEUP_NOT_VALID_LEADER" => Some(Self::RetLineupNotValidLeader), - "RET_LINEUP_SAME_INDEX" => Some(Self::RetLineupSameIndex), - "RET_LINEUP_IS_EMPTY" => Some(Self::RetLineupIsEmpty), - "RET_LINEUP_NAME_FORMAT_ERROR" => Some(Self::RetLineupNameFormatError), - "RET_LINEUP_TYPE_NOT_MATCH" => Some(Self::RetLineupTypeNotMatch), - "RET_LINEUP_REPLACE_ALL_FAILED" => Some(Self::RetLineupReplaceAllFailed), - "RET_LINEUP_NOT_ALLOW_EDIT" => Some(Self::RetLineupNotAllowEdit), - "RET_LINEUP_AVATAR_IS_ALIVE" => Some(Self::RetLineupAvatarIsAlive), - "RET_LINEUP_ASSIST_HAS_ONLY_MEMBER" => { - Some(Self::RetLineupAssistHasOnlyMember) - } - "RET_LINEUP_ASSIST_CANNOT_SWITCH" => Some(Self::RetLineupAssistCannotSwitch), - "RET_LINEUP_AVATAR_TYPE_INVALID" => Some(Self::RetLineupAvatarTypeInvalid), - "RET_LINEUP_NAME_UTF8_ERROR" => Some(Self::RetLineupNameUtf8Error), - "RET_LINEUP_LEADER_LOCK" => Some(Self::RetLineupLeaderLock), - "RET_LINEUP_STORY_LINE_NOT_MATCH" => Some(Self::RetLineupStoryLineNotMatch), - "RET_LINEUP_AVATAR_LOCK" => Some(Self::RetLineupAvatarLock), - "RET_LINEUP_AVATAR_INVALID" => Some(Self::RetLineupAvatarInvalid), - "RET_LINEUP_AVATAR_ALREADY_INIT" => Some(Self::RetLineupAvatarAlreadyInit), - "RET_LINEUP_LIMITED" => Some(Self::RetLineupLimited), - "RET_MAIL_NOT_EXIST" => Some(Self::RetMailNotExist), - "RET_MAIL_RANGE_INVALID" => Some(Self::RetMailRangeInvalid), - "RET_MAIL_MAIL_ID_INVALID" => Some(Self::RetMailMailIdInvalid), - "RET_MAIL_NO_MAIL_TAKE_ATTACHMENT" => Some(Self::RetMailNoMailTakeAttachment), - "RET_MAIL_NO_MAIL_TO_DEL" => Some(Self::RetMailNoMailToDel), - "RET_MAIL_TYPE_INVALID" => Some(Self::RetMailTypeInvalid), - "RET_MAIL_PARA_INVALID" => Some(Self::RetMailParaInvalid), - "RET_MAIL_ATTACHEMENT_INVALID" => Some(Self::RetMailAttachementInvalid), - "RET_MAIL_TICKET_INVALID" => Some(Self::RetMailTicketInvalid), - "RET_MAIL_TICKET_REPEATED" => Some(Self::RetMailTicketRepeated), - "RET_STAGE_SETTLE_ERROR" => Some(Self::RetStageSettleError), - "RET_STAGE_CONFIG_NOT_EXIST" => Some(Self::RetStageConfigNotExist), - "RET_STAGE_NOT_FOUND" => Some(Self::RetStageNotFound), - "RET_STAGE_COCOON_PROP_NOT_VALID" => Some(Self::RetStageCocoonPropNotValid), - "RET_STAGE_COCOON_WAVE_NOT_VALID" => Some(Self::RetStageCocoonWaveNotValid), - "RET_STAGE_PROP_ID_NOT_EQUAL" => Some(Self::RetStagePropIdNotEqual), - "RET_STAGE_COCOON_WAVE_OVER" => Some(Self::RetStageCocoonWaveOver), - "RET_STAGE_WEEK_COCOON_OVER_CNT" => Some(Self::RetStageWeekCocoonOverCnt), - "RET_STAGE_COCOON_NOT_OPEN" => Some(Self::RetStageCocoonNotOpen), - "RET_STAGE_TRIAL_NOT_OPEN" => Some(Self::RetStageTrialNotOpen), - "RET_STAGE_FARM_NOT_OPEN" => Some(Self::RetStageFarmNotOpen), - "RET_STAGE_FARM_TYPE_ERROR" => Some(Self::RetStageFarmTypeError), - "RET_STAGE_FARM_SWEEP_CD" => Some(Self::RetStageFarmSweepCd), - "RET_STAGE_FARM_ELEMENT_CHALLENGE_CNT_INVALID" => { - Some(Self::RetStageFarmElementChallengeCntInvalid) - } - "RET_CHAPTER_LOCK" => Some(Self::RetChapterLock), - "RET_CHAPTER_CHALLENGE_NUM_NOT_ENOUGH" => { - Some(Self::RetChapterChallengeNumNotEnough) - } - "RET_CHAPTER_REWARD_ID_NOT_EXIST" => Some(Self::RetChapterRewardIdNotExist), - "RET_CHAPTER_REWARD_ALREADY_TAKEN" => { - Some(Self::RetChapterRewardAlreadyTaken) - } - "RET_BATTLE_STAGE_NOT_MATCH" => Some(Self::RetBattleStageNotMatch), - "RET_IN_BATTLE_NOW" => Some(Self::RetInBattleNow), - "RET_BATTLE_CHEAT" => Some(Self::RetBattleCheat), - "RET_BATTLE_FAIL" => Some(Self::RetBattleFail), - "RET_BATTLE_NO_LINEUP" => Some(Self::RetBattleNoLineup), - "RET_BATTLE_LINEUP_EMPTY" => Some(Self::RetBattleLineupEmpty), - "RET_BATTLE_VERSION_NOT_MATCH" => Some(Self::RetBattleVersionNotMatch), - "RET_BATTLE_QUIT_BY_SERVER" => Some(Self::RetBattleQuitByServer), - "RET_IN_BATTLE_CHECK" => Some(Self::RetInBattleCheck), - "RET_BATTLE_CHECK_NEED_RETRY" => Some(Self::RetBattleCheckNeedRetry), - "RET_BATTLE_COST_TIME_CHECK_FAIL" => Some(Self::RetBattleCostTimeCheckFail), - "RET_LACK_EXCHANGE_STAMINA_TIMES" => Some(Self::RetLackExchangeStaminaTimes), - "RET_LACK_STAMINA" => Some(Self::RetLackStamina), - "RET_STAMINA_FULL" => Some(Self::RetStaminaFull), - "RET_AUTHKEY_SIGN_TYPE_ERROR" => Some(Self::RetAuthkeySignTypeError), - "RET_AUTHKEY_SIGN_VER_ERROR" => Some(Self::RetAuthkeySignVerError), - "RET_NICKNAME_FORMAT_ERROR" => Some(Self::RetNicknameFormatError), - "RET_SENSITIVE_WORDS" => Some(Self::RetSensitiveWords), - "RET_LEVEL_REWARD_HAS_TAKEN" => Some(Self::RetLevelRewardHasTaken), - "RET_LEVEL_REWARD_LEVEL_ERROR" => Some(Self::RetLevelRewardLevelError), - "RET_LANGUAGE_INVALID" => Some(Self::RetLanguageInvalid), - "RET_NICKNAME_IN_CD" => Some(Self::RetNicknameInCd), - "RET_GAMEPLAY_BIRTHDAY_INVALID" => Some(Self::RetGameplayBirthdayInvalid), - "RET_GAMEPLAY_BIRTHDAY_ALREADY_SET" => { - Some(Self::RetGameplayBirthdayAlreadySet) - } - "RET_NICKNAME_UTF8_ERROR" => Some(Self::RetNicknameUtf8Error), - "RET_NICKNAME_DIGIT_LIMIT_ERROR" => Some(Self::RetNicknameDigitLimitError), - "RET_SENSITIVE_WORDS_PLATFORM_ERROR" => { - Some(Self::RetSensitiveWordsPlatformError) - } - "RET_PLAYER_SETTING_TYPE_INVALID" => Some(Self::RetPlayerSettingTypeInvalid), - "RET_MAZE_LACK_TICKET" => Some(Self::RetMazeLackTicket), - "RET_MAZE_NOT_UNLOCK" => Some(Self::RetMazeNotUnlock), - "RET_MAZE_NO_ABILITY" => Some(Self::RetMazeNoAbility), - "RET_MAZE_NO_PLANE" => Some(Self::RetMazeNoPlane), - "RET_MAZE_MAP_NOT_EXIST" => Some(Self::RetMazeMapNotExist), - "RET_MAZE_MP_NOT_ENOUGH" => Some(Self::RetMazeMpNotEnough), - "RET_SPRING_NOT_ENABLE" => Some(Self::RetSpringNotEnable), - "RET_SPRING_TOO_FAR" => Some(Self::RetSpringTooFar), - "RET_NOT_IN_MAZE" => Some(Self::RetNotInMaze), - "RET_MAZE_TIME_OF_DAY_TYPE_ERROR" => Some(Self::RetMazeTimeOfDayTypeError), - "RET_SCENE_TRANSFER_LOCKED_BY_TASK" => { - Some(Self::RetSceneTransferLockedByTask) - } - "RET_PLOT_NOT_UNLOCK" => Some(Self::RetPlotNotUnlock), - "RET_MISSION_NOT_EXIST" => Some(Self::RetMissionNotExist), - "RET_MISSION_ALREADY_DONE" => Some(Self::RetMissionAlreadyDone), - "RET_DAILY_TASK_NOT_FINISH" => Some(Self::RetDailyTaskNotFinish), - "RET_DAILY_TASK_REWARD_HAS_TAKEN" => Some(Self::RetDailyTaskRewardHasTaken), - "RET_MISSION_NOT_FINISH" => Some(Self::RetMissionNotFinish), - "RET_MISSION_NOT_DOING" => Some(Self::RetMissionNotDoing), - "RET_MISSION_FINISH_WAY_NOT_MATCH" => Some(Self::RetMissionFinishWayNotMatch), - "RET_MISSION_SCENE_NOT_MATCH" => Some(Self::RetMissionSceneNotMatch), - "RET_MISSION_CUSTOM_VALUE_NOT_VALID" => { - Some(Self::RetMissionCustomValueNotValid) - } - "RET_MISSION_SUB_MISSION_NOT_MATCH" => { - Some(Self::RetMissionSubMissionNotMatch) - } - "RET_ADVENTURE_MAP_NOT_EXIST" => Some(Self::RetAdventureMapNotExist), - "RET_SCENE_ENTITY_NOT_EXIST" => Some(Self::RetSceneEntityNotExist), - "RET_NOT_IN_SCENE" => Some(Self::RetNotInScene), - "RET_SCENE_MONSTER_NOT_EXIST" => Some(Self::RetSceneMonsterNotExist), - "RET_INTERACT_CONFIG_NOT_EXIST" => Some(Self::RetInteractConfigNotExist), - "RET_UNSUPPORTED_PROP_STATE" => Some(Self::RetUnsupportedPropState), - "RET_SCENE_ENTRY_ID_NOT_MATCH" => Some(Self::RetSceneEntryIdNotMatch), - "RET_SCENE_ENTITY_MOVE_CHECK_FAILED" => { - Some(Self::RetSceneEntityMoveCheckFailed) - } - "RET_ASSIST_MONSTER_COUNT_LIMIT" => Some(Self::RetAssistMonsterCountLimit), - "RET_SCENE_USE_SKILL_FAIL" => Some(Self::RetSceneUseSkillFail), - "RET_PROP_IS_HIDDEN" => Some(Self::RetPropIsHidden), - "RET_LOADING_SUCC_ALREADY" => Some(Self::RetLoadingSuccAlready), - "RET_SCENE_ENTITY_TYPE_INVALID" => Some(Self::RetSceneEntityTypeInvalid), - "RET_INTERACT_TYPE_INVALID" => Some(Self::RetInteractTypeInvalid), - "RET_INTERACT_NOT_IN_REGION" => Some(Self::RetInteractNotInRegion), - "RET_INTERACT_SUB_TYPE_INVALID" => Some(Self::RetInteractSubTypeInvalid), - "RET_NOT_LEADER_ENTITY" => Some(Self::RetNotLeaderEntity), - "RET_MONSTER_IS_NOT_FARM_ELEMENT" => Some(Self::RetMonsterIsNotFarmElement), - "RET_MONSTER_CONFIG_NOT_EXIST" => Some(Self::RetMonsterConfigNotExist), - "RET_AVATAR_HP_ALREADY_FULL" => Some(Self::RetAvatarHpAlreadyFull), - "RET_CUR_INTERACT_ENTITY_NOT_MATCH" => { - Some(Self::RetCurInteractEntityNotMatch) - } - "RET_PLANE_TYPE_NOT_ALLOW" => Some(Self::RetPlaneTypeNotAllow), - "RET_GROUP_NOT_EXIST" => Some(Self::RetGroupNotExist), - "RET_GROUP_SAVE_DATA_IN_CD" => Some(Self::RetGroupSaveDataInCd), - "RET_GROUP_SAVE_LENGH_REACH_MAX" => Some(Self::RetGroupSaveLenghReachMax), - "RET_RECENT_ELEMENT_NOT_EXIST" => Some(Self::RetRecentElementNotExist), - "RET_RECENT_ELEMENT_STAGE_NOT_MATCH" => { - Some(Self::RetRecentElementStageNotMatch) - } - "RET_SCENE_POSITION_VERSION_NOT_MATCH" => { - Some(Self::RetScenePositionVersionNotMatch) - } - "RET_GAMEPLAY_COUNTER_NOT_EXIST" => Some(Self::RetGameplayCounterNotExist), - "RET_GAMEPLAY_COUNTER_NOT_ENOUGH" => Some(Self::RetGameplayCounterNotEnough), - "RET_GROUP_STATE_NOT_MATCH" => Some(Self::RetGroupStateNotMatch), - "RET_SCENE_ENTITY_POS_NOT_MATCH" => Some(Self::RetSceneEntityPosNotMatch), - "RET_GROUP_STATE_CUSTOM_SAVE_DATA_OFF" => { - Some(Self::RetGroupStateCustomSaveDataOff) - } - "RET_SCENE_NOT_MATCH" => Some(Self::RetSceneNotMatch), - "RET_PROP_TYPE_INVALID" => Some(Self::RetPropTypeInvalid), - "RET_NOT_IN_CORRECT_SCENE" => Some(Self::RetNotInCorrectScene), - "RET_NOT_IN_CORRECT_DIMENSION" => Some(Self::RetNotInCorrectDimension), - "RET_NOT_CORRECT_GROUP_PROPERTY_NAME" => { - Some(Self::RetNotCorrectGroupPropertyName) - } - "RET_BUY_TIMES_LIMIT" => Some(Self::RetBuyTimesLimit), - "RET_BUY_LIMIT_TYPE" => Some(Self::RetBuyLimitType), - "RET_SHOP_NOT_OPEN" => Some(Self::RetShopNotOpen), - "RET_GOODS_NOT_OPEN" => Some(Self::RetGoodsNotOpen), - "RET_CITY_LEVEL_REWARD_TAKEN" => Some(Self::RetCityLevelRewardTaken), - "RET_CITY_LEVEL_NOT_MEET" => Some(Self::RetCityLevelNotMeet), - "RET_SINGLE_BUY_LIMIT" => Some(Self::RetSingleBuyLimit), - "RET_TUTORIAL_NOT_UNLOCK" => Some(Self::RetTutorialNotUnlock), - "RET_TUTORIAL_UNLOCK_ALREADY" => Some(Self::RetTutorialUnlockAlready), - "RET_TUTORIAL_FINISH_ALREADY" => Some(Self::RetTutorialFinishAlready), - "RET_TUTORIAL_PRE_NOT_UNLOCK" => Some(Self::RetTutorialPreNotUnlock), - "RET_TUTORIAL_PLAYER_LEVEL_NOT_MATCH" => { - Some(Self::RetTutorialPlayerLevelNotMatch) - } - "RET_TUTORIAL_TUTORIAL_NOT_FOUND" => Some(Self::RetTutorialTutorialNotFound), - "RET_CHALLENGE_NOT_EXIST" => Some(Self::RetChallengeNotExist), - "RET_CHALLENGE_NOT_UNLOCK" => Some(Self::RetChallengeNotUnlock), - "RET_CHALLENGE_ALREADY" => Some(Self::RetChallengeAlready), - "RET_CHALLENGE_LINEUP_EDIT_FORBIDDEN" => { - Some(Self::RetChallengeLineupEditForbidden) - } - "RET_CHALLENGE_LINEUP_EMPTY" => Some(Self::RetChallengeLineupEmpty), - "RET_CHALLENGE_NOT_DOING" => Some(Self::RetChallengeNotDoing), - "RET_CHALLENGE_NOT_FINISH" => Some(Self::RetChallengeNotFinish), - "RET_CHALLENGE_TARGET_NOT_FINISH" => Some(Self::RetChallengeTargetNotFinish), - "RET_CHALLENGE_TARGET_REWARD_TAKEN" => { - Some(Self::RetChallengeTargetRewardTaken) - } - "RET_CHALLENGE_TIME_NOT_VALID" => Some(Self::RetChallengeTimeNotValid), - "RET_CHALLENGE_STARS_COUNT_NOT_MEET" => { - Some(Self::RetChallengeStarsCountNotMeet) - } - "RET_CHALLENGE_STARS_REWARD_TAKEN" => { - Some(Self::RetChallengeStarsRewardTaken) - } - "RET_CHALLENGE_STARS_NOT_EXIST" => Some(Self::RetChallengeStarsNotExist), - "RET_CHALLENGE_CUR_SCENE_NOT_ENTRY_FLOOR" => { - Some(Self::RetChallengeCurSceneNotEntryFloor) - } - "RET_CHALLENGE_NO_TEAM_ARCHIVE" => Some(Self::RetChallengeNoTeamArchive), - "RET_CHALLENGE_LINEUP_AVATAR_TYPE_INVALID" => { - Some(Self::RetChallengeLineupAvatarTypeInvalid) - } - "RET_CHALLENGE_LINEUP_RECOMMEND_IN_CD" => { - Some(Self::RetChallengeLineupRecommendInCd) - } - "RET_BASIC_TYPE_ALREADY" => Some(Self::RetBasicTypeAlready), - "RET_NO_BASIC_TYPE" => Some(Self::RetNoBasicType), - "RET_NOT_CHOOSE_BASIC_TYPE" => Some(Self::RetNotChooseBasicType), - "RET_NOT_FUNC_CLOSE" => Some(Self::RetNotFuncClose), - "RET_NOT_CHOOSE_GENDER" => Some(Self::RetNotChooseGender), - "RET_NOT_REQ_UNLOCK_BASIC_TYPE" => Some(Self::RetNotReqUnlockBasicType), - "RET_AVATAR_PATH_LOCKED" => Some(Self::RetAvatarPathLocked), - "RET_ROGUE_STATUS_NOT_MATCH" => Some(Self::RetRogueStatusNotMatch), - "RET_ROGUE_SELECT_BUFF_NOT_EXIST" => Some(Self::RetRogueSelectBuffNotExist), - "RET_ROGUE_COIN_NOT_ENOUGH" => Some(Self::RetRogueCoinNotEnough), - "RET_ROGUE_STAMINA_NOT_ENOUGH" => Some(Self::RetRogueStaminaNotEnough), - "RET_ROGUE_APPRAISAL_COUNT_NOT_ENOUGH" => { - Some(Self::RetRogueAppraisalCountNotEnough) - } - "RET_ROGUE_PROP_ALREADY_USED" => Some(Self::RetRoguePropAlreadyUsed), - "RET_ROGUE_RECORD_ALREADY_SAVED" => Some(Self::RetRogueRecordAlreadySaved), - "RET_ROGUE_ROLL_BUFF_MAX_COUNT" => Some(Self::RetRogueRollBuffMaxCount), - "RET_ROGUE_PICK_AVATAR_INVALID" => Some(Self::RetRoguePickAvatarInvalid), - "RET_ROGUE_QUEST_EXPIRE" => Some(Self::RetRogueQuestExpire), - "RET_ROGUE_QUEST_REWARD_ALREADY" => Some(Self::RetRogueQuestRewardAlready), - "RET_ROGUE_REVIVE_COUNT_NOT_ENOUGH" => { - Some(Self::RetRogueReviveCountNotEnough) - } - "RET_ROGUE_AREA_INVALID" => Some(Self::RetRogueAreaInvalid), - "RET_ROGUE_SCORE_REWARD_POOL_INVALID" => { - Some(Self::RetRogueScoreRewardPoolInvalid) - } - "RET_ROGUE_SCORE_REWARD_ROW_INVALID" => { - Some(Self::RetRogueScoreRewardRowInvalid) - } - "RET_ROGUE_AEON_LEVEL_NOT_MEET" => Some(Self::RetRogueAeonLevelNotMeet), - "RET_ROGUE_AEON_LEVEL_REWARD_ALREADY_TAKEN" => { - Some(Self::RetRogueAeonLevelRewardAlreadyTaken) - } - "RET_ROGUE_AEON_CONFIG_NOT_EXIST" => Some(Self::RetRogueAeonConfigNotExist), - "RET_ROGUE_TRIAL_AVATAR_INVALID" => Some(Self::RetRogueTrialAvatarInvalid), - "RET_ROGUE_HANDBOOK_REWARD_ALREADY_TAKEN" => { - Some(Self::RetRogueHandbookRewardAlreadyTaken) - } - "RET_ROGUE_ROOM_TYPE_NOT_MATCH" => Some(Self::RetRogueRoomTypeNotMatch), - "RET_ROGUE_SHOP_GOOD_NOT_FOUND" => Some(Self::RetRogueShopGoodNotFound), - "RET_ROGUE_SHOP_GOOD_ALREADY_BOUGHT" => { - Some(Self::RetRogueShopGoodAlreadyBought) - } - "RET_ROGUE_SHOP_GOOD_ALREADY_OWN" => Some(Self::RetRogueShopGoodAlreadyOwn), - "RET_ROGUE_SHOP_MIRACLE_NOT_EXIST" => Some(Self::RetRogueShopMiracleNotExist), - "RET_ROGUE_SHOP_NOT_EXIST" => Some(Self::RetRogueShopNotExist), - "RET_ROGUE_SHOP_CANNOT_REFRESH" => Some(Self::RetRogueShopCannotRefresh), - "RET_ROGUE_SELECT_BUFF_CERTAIN_MISMATCH" => { - Some(Self::RetRogueSelectBuffCertainMismatch) - } - "RET_ROGUE_ACTION_QUEUE_NOT_EMPTY_BATTLE" => { - Some(Self::RetRogueActionQueueNotEmptyBattle) - } - "RET_ROGUE_ACTION_QUEUE_NOT_EMPTY_OTHERS" => { - Some(Self::RetRogueActionQueueNotEmptyOthers) - } - "RET_MISSION_EVENT_CONFIG_NOT_EXIST" => { - Some(Self::RetMissionEventConfigNotExist) - } - "RET_MISSION_EVENT_NOT_CLIENT" => Some(Self::RetMissionEventNotClient), - "RET_MISSION_EVENT_FINISHED" => Some(Self::RetMissionEventFinished), - "RET_MISSION_EVENT_DOING" => Some(Self::RetMissionEventDoing), - "RET_HAS_CHALLENGE_MISSION_EVENT" => Some(Self::RetHasChallengeMissionEvent), - "RET_NOT_CHALLENGE_MISSION_EVENT" => Some(Self::RetNotChallengeMissionEvent), - "RET_GACHA_ID_NOT_EXIST" => Some(Self::RetGachaIdNotExist), - "RET_GACHA_NUM_INVALID" => Some(Self::RetGachaNumInvalid), - "RET_GACHA_FIRST_GACHA_MUST_ONE" => Some(Self::RetGachaFirstGachaMustOne), - "RET_GACHA_REQ_DUPLICATED" => Some(Self::RetGachaReqDuplicated), - "RET_GACHA_NOT_IN_SCHEDULE" => Some(Self::RetGachaNotInSchedule), - "RET_GACHA_NEWBIE_CLOSE" => Some(Self::RetGachaNewbieClose), - "RET_GACHA_TODAY_LIMITED" => Some(Self::RetGachaTodayLimited), - "RET_GACHA_NOT_SUPPORT" => Some(Self::RetGachaNotSupport), - "RET_GACHA_CEILING_NOT_ENOUGH" => Some(Self::RetGachaCeilingNotEnough), - "RET_GACHA_CEILING_CLOSE" => Some(Self::RetGachaCeilingClose), - "RET_GACHA_LOCKED" => Some(Self::RetGachaLocked), - "RET_GACHA_DECIDE_ITEM_TYPE_INVALID" => { - Some(Self::RetGachaDecideItemTypeInvalid) - } - "RET_GACHA_DECIDE_ITEM_ID_INVALID" => Some(Self::RetGachaDecideItemIdInvalid), - "RET_NOT_IN_RAID" => Some(Self::RetNotInRaid), - "RET_RAID_DOING" => Some(Self::RetRaidDoing), - "RET_NOT_PROP" => Some(Self::RetNotProp), - "RET_RAID_ID_NOT_MATCH" => Some(Self::RetRaidIdNotMatch), - "RET_RAID_RESTART_NOT_MATCH" => Some(Self::RetRaidRestartNotMatch), - "RET_RAID_LIMIT" => Some(Self::RetRaidLimit), - "RET_RAID_AVATAR_LIST_EMPTY" => Some(Self::RetRaidAvatarListEmpty), - "RET_RAID_AVATAR_NOT_EXIST" => Some(Self::RetRaidAvatarNotExist), - "RET_CHALLENGE_RAID_REWARD_ALREADY" => { - Some(Self::RetChallengeRaidRewardAlready) - } - "RET_CHALLENGE_RAID_SCORE_NOT_REACH" => { - Some(Self::RetChallengeRaidScoreNotReach) - } - "RET_CHALLENGE_RAID_NOT_OPEN" => Some(Self::RetChallengeRaidNotOpen), - "RET_RAID_FINISHED" => Some(Self::RetRaidFinished), - "RET_RAID_WORLD_LEVEL_NOT_LOCK" => Some(Self::RetRaidWorldLevelNotLock), - "RET_RAID_CANNOT_USE_ASSIST" => Some(Self::RetRaidCannotUseAssist), - "RET_RAID_AVATAR_NOT_MATCH" => Some(Self::RetRaidAvatarNotMatch), - "RET_RAID_CAN_NOT_SAVE" => Some(Self::RetRaidCanNotSave), - "RET_RAID_NO_SAVE" => Some(Self::RetRaidNoSave), - "RET_ACTIVITY_RAID_NOT_OPEN" => Some(Self::RetActivityRaidNotOpen), - "RET_RAID_AVATAR_CAPTAIN_NOT_EXIST" => { - Some(Self::RetRaidAvatarCaptainNotExist) - } - "RET_RAID_STORY_LINE_NOT_MATCH" => Some(Self::RetRaidStoryLineNotMatch), - "RET_TALK_EVENT_ALREADY_TAKEN" => Some(Self::RetTalkEventAlreadyTaken), - "RET_NPC_ALREADY_MEET" => Some(Self::RetNpcAlreadyMeet), - "RET_NPC_NOT_IN_CONFIG" => Some(Self::RetNpcNotInConfig), - "RET_DIALOGUE_GROUP_DISMATCH" => Some(Self::RetDialogueGroupDismatch), - "RET_DIALOGUE_EVENT_INVALID" => Some(Self::RetDialogueEventInvalid), - "RET_TALK_EVENT_TAKE_PROTO_NOT_MATCH" => { - Some(Self::RetTalkEventTakeProtoNotMatch) - } - "RET_TALK_EVENT_NOT_VALID" => Some(Self::RetTalkEventNotValid), - "RET_EXPEDITION_CONFIG_NOT_EXIST" => Some(Self::RetExpeditionConfigNotExist), - "RET_EXPEDITION_REWARD_CONFIG_NOT_EXIST" => { - Some(Self::RetExpeditionRewardConfigNotExist) - } - "RET_EXPEDITION_NOT_UNLOCKED" => Some(Self::RetExpeditionNotUnlocked), - "RET_EXPEDITION_ALREADY_ACCEPTED" => Some(Self::RetExpeditionAlreadyAccepted), - "RET_EXPEDITION_REPEATED_AVATAR" => Some(Self::RetExpeditionRepeatedAvatar), - "RET_AVATAR_ALREADY_DISPATCHED" => Some(Self::RetAvatarAlreadyDispatched), - "RET_EXPEDITION_NOT_ACCEPTED" => Some(Self::RetExpeditionNotAccepted), - "RET_EXPEDITION_NOT_FINISH" => Some(Self::RetExpeditionNotFinish), - "RET_EXPEDITION_ALREADY_FINISH" => Some(Self::RetExpeditionAlreadyFinish), - "RET_EXPEDITION_TEAM_COUNT_LIMIT" => Some(Self::RetExpeditionTeamCountLimit), - "RET_EXPEDITION_AVATAR_NUM_NOT_MATCH" => { - Some(Self::RetExpeditionAvatarNumNotMatch) - } - "RET_EXPEDITION_NOT_OPEN" => Some(Self::RetExpeditionNotOpen), - "RET_EXPEDITION_FRIEND_AVATAR_NOT_VALID" => { - Some(Self::RetExpeditionFriendAvatarNotValid) - } - "RET_EXPEDITION_NOT_PUBLISHED" => Some(Self::RetExpeditionNotPublished), - "RET_LOGIN_ACTIVITY_HAS_TAKEN" => Some(Self::RetLoginActivityHasTaken), - "RET_LOGIN_ACTIVITY_DAYS_LACK" => Some(Self::RetLoginActivityDaysLack), - "RET_TRIAL_ACTIVITY_REWARD_ALREADY_TAKE" => { - Some(Self::RetTrialActivityRewardAlreadyTake) - } - "RET_TRIAL_ACTIVITY_STAGE_NOT_FINISH" => { - Some(Self::RetTrialActivityStageNotFinish) - } - "RET_MATERIAL_SUBMIT_ACTIVITY_HAS_TAKEN" => { - Some(Self::RetMaterialSubmitActivityHasTaken) - } - "RET_MATERIAL_SUBMIT_ACTIVITY_MATERIAL_NOT_SUBMITTED" => { - Some(Self::RetMaterialSubmitActivityMaterialNotSubmitted) - } - "RET_MATERIAL_SUBMIT_ACTIVITY_MATERIAL_ALREADY_SUBMITTED" => { - Some(Self::RetMaterialSubmitActivityMaterialAlreadySubmitted) - } - "RET_FANTASTIC_STORY_ACTIVITY_STORY_ERROR" => { - Some(Self::RetFantasticStoryActivityStoryError) - } - "RET_FANTASTIC_STORY_ACTIVITY_STORY_NOT_OPEN" => { - Some(Self::RetFantasticStoryActivityStoryNotOpen) - } - "RET_FANTASTIC_STORY_ACTIVITY_BATTLE_ERROR" => { - Some(Self::RetFantasticStoryActivityBattleError) - } - "RET_FANTASTIC_STORY_ACTIVITY_BATTLE_NOT_OPEN" => { - Some(Self::RetFantasticStoryActivityBattleNotOpen) - } - "RET_FANTASTIC_STORY_ACTIVITY_BATTLE_AVATAR_ERROR" => { - Some(Self::RetFantasticStoryActivityBattleAvatarError) - } - "RET_FANTASTIC_STORY_ACTIVITY_BATTLE_BUFF_ERROR" => { - Some(Self::RetFantasticStoryActivityBattleBuffError) - } - "RET_FANTASTIC_STORY_ACTIVITY_PRE_BATTLE_SCORE_NOT_ENOUGH" => { - Some(Self::RetFantasticStoryActivityPreBattleScoreNotEnough) - } - "RET_TRIAL_ACTIVITY_ALREADY_IN_TRIAL_ACTIVITY" => { - Some(Self::RetTrialActivityAlreadyInTrialActivity) - } - "RET_COMMON_ACTIVITY_NOT_OPEN" => Some(Self::RetCommonActivityNotOpen), - "RET_BENEFIT_NOT_READY" => Some(Self::RetBenefitNotReady), - "RET_COMMON_ACTIVITY_BUSY" => Some(Self::RetCommonActivityBusy), - "RET_AVATAR_DELIVER_REWARD_PHASE_ERROR" => { - Some(Self::RetAvatarDeliverRewardPhaseError) - } - "RET_MESSAGE_CONFIG_NOT_EXIST" => Some(Self::RetMessageConfigNotExist), - "RET_MESSAGE_SECTION_NOT_TAKE" => Some(Self::RetMessageSectionNotTake), - "RET_MESSAGE_GROUP_NOT_TAKE" => Some(Self::RetMessageGroupNotTake), - "RET_MESSAGE_SECTION_ID_NOT_MATCH" => Some(Self::RetMessageSectionIdNotMatch), - "RET_MESSAGE_SECTION_CAN_NOT_FINISH" => { - Some(Self::RetMessageSectionCanNotFinish) - } - "RET_MESSAGE_ITEM_CAN_NOT_FINISH" => Some(Self::RetMessageItemCanNotFinish), - "RET_MESSAGE_ITEM_RAID_CAN_NOT_FINISH" => { - Some(Self::RetMessageItemRaidCanNotFinish) - } - "RET_FRIEND_ALREADY_IS_FRIEND" => Some(Self::RetFriendAlreadyIsFriend), - "RET_FRIEND_IS_NOT_FRIEND" => Some(Self::RetFriendIsNotFriend), - "RET_FRIEND_APPLY_EXPIRE" => Some(Self::RetFriendApplyExpire), - "RET_FRIEND_IN_BLACKLIST" => Some(Self::RetFriendInBlacklist), - "RET_FRIEND_NOT_IN_BLACKLIST" => Some(Self::RetFriendNotInBlacklist), - "RET_FRIEND_NUMBER_LIMIT" => Some(Self::RetFriendNumberLimit), - "RET_FRIEND_BLACKLIST_NUMBER_LIMIT" => { - Some(Self::RetFriendBlacklistNumberLimit) - } - "RET_FRIEND_DAILY_APPLY_LIMIT" => Some(Self::RetFriendDailyApplyLimit), - "RET_FRIEND_IN_HANDLE_LIMIT" => Some(Self::RetFriendInHandleLimit), - "RET_FRIEND_APPLY_IN_CD" => Some(Self::RetFriendApplyInCd), - "RET_FRIEND_REMARK_NAME_FORMAT_ERROR" => { - Some(Self::RetFriendRemarkNameFormatError) - } - "RET_FRIEND_PLAYER_NOT_FOUND" => Some(Self::RetFriendPlayerNotFound), - "RET_FRIEND_IN_TARGET_BLACKLIST" => Some(Self::RetFriendInTargetBlacklist), - "RET_FRIEND_TARGET_NUMBER_LIMIT" => Some(Self::RetFriendTargetNumberLimit), - "RET_ASSIST_QUERY_TOO_FAST" => Some(Self::RetAssistQueryTooFast), - "RET_ASSIST_NOT_EXIST" => Some(Self::RetAssistNotExist), - "RET_ASSIST_USED_ALREADY" => Some(Self::RetAssistUsedAlready), - "RET_FRIEND_REPORT_REASON_FORMAT_ERROR" => { - Some(Self::RetFriendReportReasonFormatError) - } - "RET_FRIEND_REPORT_SENSITIVE_WORDS" => { - Some(Self::RetFriendReportSensitiveWords) - } - "RET_ASSIST_USED_TIMES_OVER" => Some(Self::RetAssistUsedTimesOver), - "RET_ASSIST_QUIT_ALREADY" => Some(Self::RetAssistQuitAlready), - "RET_ASSIST_AVATAR_IN_LINEUP" => Some(Self::RetAssistAvatarInLineup), - "RET_ASSIST_NO_REWARD" => Some(Self::RetAssistNoReward), - "RET_FRIEND_SEARCH_NUM_LIMIT" => Some(Self::RetFriendSearchNumLimit), - "RET_FRIEND_SEARCH_IN_CD" => Some(Self::RetFriendSearchInCd), - "RET_FRIEND_REMARK_NAME_UTF8_ERROR" => { - Some(Self::RetFriendRemarkNameUtf8Error) - } - "RET_FRIEND_REPORT_REASON_UTF8_ERROR" => { - Some(Self::RetFriendReportReasonUtf8Error) - } - "RET_ASSIST_SET_ALREADY" => Some(Self::RetAssistSetAlready), - "RET_FRIEND_TARGET_FORBID_OTHER_APPLY" => { - Some(Self::RetFriendTargetForbidOtherApply) - } - "RET_FRIEND_MARKED_CNT_MAX" => Some(Self::RetFriendMarkedCntMax), - "RET_FRIEND_MARKED_ALREADY" => Some(Self::RetFriendMarkedAlready), - "RET_FRIEND_NOT_MARKED" => Some(Self::RetFriendNotMarked), - "RET_FRIEND_CHALLENGE_LINEUP_RECOMMEND_IN_CD" => { - Some(Self::RetFriendChallengeLineupRecommendInCd) - } - "RET_VIEW_PLAYER_CARD_IN_CD" => Some(Self::RetViewPlayerCardInCd), - "RET_VIEW_PLAYER_BATTLE_RECORD_IN_CD" => { - Some(Self::RetViewPlayerBattleRecordInCd) - } - "RET_ASSIST_LIST_STRANGER_CONFIG_ERROR" => { - Some(Self::RetAssistListStrangerConfigError) - } - "RET_PLAYER_BOARD_HEAD_ICON_NOT_EXIST" => { - Some(Self::RetPlayerBoardHeadIconNotExist) - } - "RET_PLAYER_BOARD_HEAD_ICON_LOCKED" => { - Some(Self::RetPlayerBoardHeadIconLocked) - } - "RET_PLAYER_BOARD_HEAD_ICON_ALREADY_UNLOCKED" => { - Some(Self::RetPlayerBoardHeadIconAlreadyUnlocked) - } - "RET_PLAYER_BOARD_DISPLAY_AVATAR_NOT_EXIST" => { - Some(Self::RetPlayerBoardDisplayAvatarNotExist) - } - "RET_PLAYER_BOARD_DISPLAY_AVATAR_EXCEED_LIMIT" => { - Some(Self::RetPlayerBoardDisplayAvatarExceedLimit) - } - "RET_PLAYER_BOARD_DISPLAY_REPEATED_AVATAR" => { - Some(Self::RetPlayerBoardDisplayRepeatedAvatar) - } - "RET_PLAYER_BOARD_DISPLAY_AVATAR_SAME_POS" => { - Some(Self::RetPlayerBoardDisplayAvatarSamePos) - } - "RET_PLAYER_BOARD_DISPLAY_AVATAR_LOCKED" => { - Some(Self::RetPlayerBoardDisplayAvatarLocked) - } - "RET_SIGNATURE_LENGTH_EXCEED_LIMIT" => { - Some(Self::RetSignatureLengthExceedLimit) - } - "RET_SIGNATURE_SENSITIVE_WORDS" => Some(Self::RetSignatureSensitiveWords), - "RET_PLAYER_BOARD_ASSIST_AVATAR_NOT_EXIST" => { - Some(Self::RetPlayerBoardAssistAvatarNotExist) - } - "RET_PLAYER_BOARD_ASSIST_AVATAR_LOCKED" => { - Some(Self::RetPlayerBoardAssistAvatarLocked) - } - "RET_SIGNATURE_UTF8_ERROR" => Some(Self::RetSignatureUtf8Error), - "RET_PLAYER_BOARD_ASSIST_AVATAR_CNT_ERROR" => { - Some(Self::RetPlayerBoardAssistAvatarCntError) - } - "RET_PLAYER_BOARD_PERSONAL_CARD_NOT_EXIST" => { - Some(Self::RetPlayerBoardPersonalCardNotExist) - } - "RET_PLAYER_BOARD_PERSONAL_CARD_LOCKED" => { - Some(Self::RetPlayerBoardPersonalCardLocked) - } - "RET_PLAYER_BOARD_PERSONAL_NO_CHANGE" => { - Some(Self::RetPlayerBoardPersonalNoChange) - } - "RET_BATTLE_PASS_TIER_NOT_VALID" => Some(Self::RetBattlePassTierNotValid), - "RET_BATTLE_PASS_LEVEL_NOT_MEET" => Some(Self::RetBattlePassLevelNotMeet), - "RET_BATTLE_PASS_REWARD_TAKE_ALREADY" => { - Some(Self::RetBattlePassRewardTakeAlready) - } - "RET_BATTLE_PASS_NOT_PREMIUM" => Some(Self::RetBattlePassNotPremium), - "RET_BATTLE_PASS_NOT_DOING" => Some(Self::RetBattlePassNotDoing), - "RET_BATTLE_PASS_LEVEL_INVALID" => Some(Self::RetBattlePassLevelInvalid), - "RET_BATTLE_PASS_NOT_UNLOCK" => Some(Self::RetBattlePassNotUnlock), - "RET_BATTLE_PASS_NO_REWARD" => Some(Self::RetBattlePassNoReward), - "RET_BATTLE_PASS_QUEST_NOT_VALID" => Some(Self::RetBattlePassQuestNotValid), - "RET_BATTLE_PASS_NOT_CHOOSE_OPTIONAL" => { - Some(Self::RetBattlePassNotChooseOptional) - } - "RET_BATTLE_PASS_NOT_TAKE_REWARD" => Some(Self::RetBattlePassNotTakeReward), - "RET_BATTLE_PASS_OPTIONAL_NOT_VALID" => { - Some(Self::RetBattlePassOptionalNotValid) - } - "RET_BATTLE_PASS_BUY_ALREADY" => Some(Self::RetBattlePassBuyAlready), - "RET_BATTLE_PASS_NEAR_END" => Some(Self::RetBattlePassNearEnd), - "RET_MUSIC_LOCKED" => Some(Self::RetMusicLocked), - "RET_MUSIC_NOT_EXIST" => Some(Self::RetMusicNotExist), - "RET_MUSIC_UNLOCK_FAILED" => Some(Self::RetMusicUnlockFailed), - "RET_PUNK_LORD_LACK_SUMMON_TIMES" => Some(Self::RetPunkLordLackSummonTimes), - "RET_PUNK_LORD_ATTACKING_MONSTER_LIMIT" => { - Some(Self::RetPunkLordAttackingMonsterLimit) - } - "RET_PUNK_LORD_MONSTER_NOT_EXIST" => Some(Self::RetPunkLordMonsterNotExist), - "RET_PUNK_LORD_MONSTER_ALREADY_SHARED" => { - Some(Self::RetPunkLordMonsterAlreadyShared) - } - "RET_PUNK_LORD_MONSTER_EXPIRED" => Some(Self::RetPunkLordMonsterExpired), - "RET_PUNK_LORD_SELF_MONSTER_ATTACK_LIMIT" => { - Some(Self::RetPunkLordSelfMonsterAttackLimit) - } - "RET_PUNK_LORD_LACK_SUPPORT_TIMES" => Some(Self::RetPunkLordLackSupportTimes), - "RET_PUNK_LORD_MONSTER_ALREADY_KILLED" => { - Some(Self::RetPunkLordMonsterAlreadyKilled) - } - "RET_PUNK_LORD_MONSTER_ATTACKER_LIMIT" => { - Some(Self::RetPunkLordMonsterAttackerLimit) - } - "RET_PUNK_LORD_WORLD_LEVLE_NOT_VALID" => { - Some(Self::RetPunkLordWorldLevleNotValid) - } - "RET_PUNK_LORD_REWARD_LEVLE_NOT_EXIST" => { - Some(Self::RetPunkLordRewardLevleNotExist) - } - "RET_PUNK_LORD_POINT_NOT_MEET" => Some(Self::RetPunkLordPointNotMeet), - "RET_PUNK_LORD_IN_ATTACKING" => Some(Self::RetPunkLordInAttacking), - "RET_PUNK_LORD_OPERATION_IN_CD" => Some(Self::RetPunkLordOperationInCd), - "RET_PUNK_LORD_REWARD_ALREADY_TAKEN" => { - Some(Self::RetPunkLordRewardAlreadyTaken) - } - "RET_PUNK_LORD_OVER_BONUS_REWARD_LIMIT" => { - Some(Self::RetPunkLordOverBonusRewardLimit) - } - "RET_PUNK_LORD_NOT_IN_SCHEDULE" => Some(Self::RetPunkLordNotInSchedule), - "RET_PUNK_LORD_MONSTER_NOT_ATTACKED" => { - Some(Self::RetPunkLordMonsterNotAttacked) - } - "RET_PUNK_LORD_MONSTER_NOT_KILLED" => Some(Self::RetPunkLordMonsterNotKilled), - "RET_PUNK_LORD_MONSTER_KILLED_SCORE_ALREADY_TAKE" => { - Some(Self::RetPunkLordMonsterKilledScoreAlreadyTake) - } - "RET_PUNK_LORD_REWARD_LEVLE_ALREADY_TAKE" => { - Some(Self::RetPunkLordRewardLevleAlreadyTake) - } - "RET_DAILY_ACTIVE_LEVEL_INVALID" => Some(Self::RetDailyActiveLevelInvalid), - "RET_DAILY_ACTIVE_LEVEL_REWARD_ALREADY_TAKEN" => { - Some(Self::RetDailyActiveLevelRewardAlreadyTaken) - } - "RET_DAILY_ACTIVE_LEVEL_AP_NOT_ENOUGH" => { - Some(Self::RetDailyActiveLevelApNotEnough) - } - "RET_DAILY_MEET_PAM" => Some(Self::RetDailyMeetPam), - "RET_REPLAY_ID_NOT_MATCH" => Some(Self::RetReplayIdNotMatch), - "RET_REPLAY_REQ_NOT_VALID" => Some(Self::RetReplayReqNotValid), - "RET_FIGHT_ACTIVITY_DIFFICULTY_LEVEL_NOT_PASSED" => { - Some(Self::RetFightActivityDifficultyLevelNotPassed) - } - "RET_FIGHT_ACTIVITY_DIFFICULTY_LEVEL_REWARD_ALREADY_TAKE" => { - Some(Self::RetFightActivityDifficultyLevelRewardAlreadyTake) - } - "RET_FIGHT_ACTIVITY_STAGE_NOT_OPEN" => { - Some(Self::RetFightActivityStageNotOpen) - } - "RET_FIGHT_ACTIVITY_LEVEL_NOT_UNLOCK" => { - Some(Self::RetFightActivityLevelNotUnlock) - } - "RET_TRAIN_VISITOR_VISITOR_NOT_EXIST" => { - Some(Self::RetTrainVisitorVisitorNotExist) - } - "RET_TRAIN_VISITOR_BEHAVIOR_NOT_EXIST" => { - Some(Self::RetTrainVisitorBehaviorNotExist) - } - "RET_TRAIN_VISITOR_BEHAVIOR_FINISHED" => { - Some(Self::RetTrainVisitorBehaviorFinished) - } - "RET_TRAIN_VISITOR_ALL_BEHAVIOR_REWARD_TAKEN" => { - Some(Self::RetTrainVisitorAllBehaviorRewardTaken) - } - "RET_TRAIN_VISITOR_GET_ON_MISSION_NOT_FINISH" => { - Some(Self::RetTrainVisitorGetOnMissionNotFinish) - } - "RET_TRAIN_VISITOR_NOT_GET_OFF_OR_BE_TRAIN_MEMBER" => { - Some(Self::RetTrainVisitorNotGetOffOrBeTrainMember) - } - "RET_TEXT_JOIN_UNKNOW_IS_OVERRIDE" => Some(Self::RetTextJoinUnknowIsOverride), - "RET_TEXT_JOIN_ID_NOT_EXIST" => Some(Self::RetTextJoinIdNotExist), - "RET_TEXT_JOIN_CAN_NOT_OVERRIDE" => Some(Self::RetTextJoinCanNotOverride), - "RET_TEXT_JOIN_ITEM_ID_ERROR" => Some(Self::RetTextJoinItemIdError), - "RET_TEXT_JOIN_SENSITIVE_CHECK_ERROR" => { - Some(Self::RetTextJoinSensitiveCheckError) - } - "RET_TEXT_JOIN_MUST_OVERRIDE" => Some(Self::RetTextJoinMustOverride), - "RET_TEXT_JOIN_TEXT_EMPTY" => Some(Self::RetTextJoinTextEmpty), - "RET_TEXT_JOIN_TEXT_FORMAT_ERROR" => Some(Self::RetTextJoinTextFormatError), - "RET_TEXT_JOIN_TEXT_UTF8_ERROR" => Some(Self::RetTextJoinTextUtf8Error), - "RET_TEXT_JOIN_BATCH_REQ_ID_REPEAT" => { - Some(Self::RetTextJoinBatchReqIdRepeat) - } - "RET_TEXT_JOIN_TYPE_NOT_SUPPORT_BATCH_REQ" => { - Some(Self::RetTextJoinTypeNotSupportBatchReq) - } - "RET_TEXT_JOIN_AVATAR_ID_NOT_EXIST" => { - Some(Self::RetTextJoinAvatarIdNotExist) - } - "RET_TEXT_JOIN_UNKNOW_TYPE" => Some(Self::RetTextJoinUnknowType), - "RET_PAM_MISSION_MISSION_ID_ERROR" => Some(Self::RetPamMissionMissionIdError), - "RET_PAM_MISSION_MISSION_EXPIRE" => Some(Self::RetPamMissionMissionExpire), - "RET_CHAT_TYPE_NOT_EXIST" => Some(Self::RetChatTypeNotExist), - "RET_MSG_TYPE_NOT_EXIST" => Some(Self::RetMsgTypeNotExist), - "RET_CHAT_NO_TARGET_UID" => Some(Self::RetChatNoTargetUid), - "RET_CHAT_MSG_EMPTY" => Some(Self::RetChatMsgEmpty), - "RET_CHAT_MSG_EXCEED_LIMIT" => Some(Self::RetChatMsgExceedLimit), - "RET_CHAT_MSG_SENSITIVE_CHECK_ERROR" => { - Some(Self::RetChatMsgSensitiveCheckError) - } - "RET_CHAT_MSG_UTF8_ERROR" => Some(Self::RetChatMsgUtf8Error), - "RET_CHAT_FORBID_SWITCH_OPEN" => Some(Self::RetChatForbidSwitchOpen), - "RET_CHAT_FORBID" => Some(Self::RetChatForbid), - "RET_CHAT_MSG_INCLUDE_SPECIAL_STR" => Some(Self::RetChatMsgIncludeSpecialStr), - "RET_CHAT_MSG_EMOJI_NOT_EXIST" => Some(Self::RetChatMsgEmojiNotExist), - "RET_CHAT_MSG_EMOJI_GENDER_NOT_MATCH" => { - Some(Self::RetChatMsgEmojiGenderNotMatch) - } - "RET_CHAT_MSG_EMOJI_NOT_MARKED" => Some(Self::RetChatMsgEmojiNotMarked), - "RET_CHAT_MSG_EMOJI_ALREADY_MARKED" => { - Some(Self::RetChatMsgEmojiAlreadyMarked) - } - "RET_CHAT_MSG_EMOJI_MARKED_MAX_LIMIT" => { - Some(Self::RetChatMsgEmojiMarkedMaxLimit) - } - "RET_BOXING_CLUB_CHALLENGE_NOT_OPEN" => { - Some(Self::RetBoxingClubChallengeNotOpen) - } - "RET_MUSEUM_NOT_OPEN" => Some(Self::RetMuseumNotOpen), - "RET_MUSEUM_TURN_CNT_NOT_MATCH" => Some(Self::RetMuseumTurnCntNotMatch), - "RET_MUSEUM_PHASE_NOT_REACH" => Some(Self::RetMuseumPhaseNotReach), - "RET_MUSEUM_UNKNOW_STUFF" => Some(Self::RetMuseumUnknowStuff), - "RET_MUSEUM_UNKNOW_AREA" => Some(Self::RetMuseumUnknowArea), - "RET_MUSEUM_UNKNOW_POS" => Some(Self::RetMuseumUnknowPos), - "RET_MUSEUM_STUFF_ALREADY_IN_AREA" => Some(Self::RetMuseumStuffAlreadyInArea), - "RET_MUSEUM_STUFF_NOT_IN_AREA" => Some(Self::RetMuseumStuffNotInArea), - "RET_MUSEUM_GET_NPC_REPEAT" => Some(Self::RetMuseumGetNpcRepeat), - "RET_MUSEUM_GET_NPC_UNLOCK" => Some(Self::RetMuseumGetNpcUnlock), - "RET_MUSEUM_GET_NPC_NOT_ENOUGH" => Some(Self::RetMuseumGetNpcNotEnough), - "RET_MUSEUM_CHANGE_STUFF_AREA_ERROR" => { - Some(Self::RetMuseumChangeStuffAreaError) - } - "RET_MUSEUM_NOT_INIT" => Some(Self::RetMuseumNotInit), - "RET_MUSEUM_EVENT_ERROR" => Some(Self::RetMuseumEventError), - "RET_MUSEUM_UNKNOW_CHOOSE_EVENT_ID" => { - Some(Self::RetMuseumUnknowChooseEventId) - } - "RET_MUSEUM_EVENT_ORDER_NOT_MATCH" => Some(Self::RetMuseumEventOrderNotMatch), - "RET_MUSEUM_EVENT_PHASE_NOT_UNLOCK" => { - Some(Self::RetMuseumEventPhaseNotUnlock) - } - "RET_MUSEUM_EVENT_MISSION_NOT_FOUND" => { - Some(Self::RetMuseumEventMissionNotFound) - } - "RET_MUSEUM_AREA_LEVEL_UP_ALREADY" => Some(Self::RetMuseumAreaLevelUpAlready), - "RET_MUSEUM_STUFF_ALREADY_USED" => Some(Self::RetMuseumStuffAlreadyUsed), - "RET_MUSEUM_EVENT_ROUND_NOT_UNLOCK" => { - Some(Self::RetMuseumEventRoundNotUnlock) - } - "RET_MUSEUM_STUFF_IN_AREA" => Some(Self::RetMuseumStuffInArea), - "RET_MUSEUM_STUFF_DISPATCH" => Some(Self::RetMuseumStuffDispatch), - "RET_MUSEUM_IS_END" => Some(Self::RetMuseumIsEnd), - "RET_MUSEUM_STUFF_LEAVING" => Some(Self::RetMuseumStuffLeaving), - "RET_MUSEUM_EVENT_MISSION_NOT_FINISH" => { - Some(Self::RetMuseumEventMissionNotFinish) - } - "RET_MUSEUM_COLLECT_REWARD_NOT_EXIST" => { - Some(Self::RetMuseumCollectRewardNotExist) - } - "RET_MUSEUM_COLLECT_REWARD_ALREADY_TAKEN" => { - Some(Self::RetMuseumCollectRewardAlreadyTaken) - } - "RET_MUSEUM_ACCEPT_MISSION_MAX_LIMIT" => { - Some(Self::RetMuseumAcceptMissionMaxLimit) - } - "RET_ROGUE_CHALLENGE_NOT_OPEN" => Some(Self::RetRogueChallengeNotOpen), - "RET_ROGUE_CHALLENGE_ASSIS_REFRESH_LIMIT" => { - Some(Self::RetRogueChallengeAssisRefreshLimit) - } - "RET_ALLEY_NOT_INIT" => Some(Self::RetAlleyNotInit), - "RET_ALLEY_NOT_OPEN" => Some(Self::RetAlleyNotOpen), - "RET_ALLEY_MAP_NOT_EXIST" => Some(Self::RetAlleyMapNotExist), - "RET_ALLEY_EMPTY_POS_LIST" => Some(Self::RetAlleyEmptyPosList), - "RET_ALLEY_LINE_POS_INVALID" => Some(Self::RetAlleyLinePosInvalid), - "RET_ALLEY_SHOP_NOT_UNLOCK" => Some(Self::RetAlleyShopNotUnlock), - "RET_ALLEY_DEPOT_FULL" => Some(Self::RetAlleyDepotFull), - "RET_ALLEY_SHOP_NOT_INCLUDE" => Some(Self::RetAlleyShopNotInclude), - "RET_ALLEY_EVENT_NOT_UNLOCK" => Some(Self::RetAlleyEventNotUnlock), - "RET_ALLEY_EVENT_NOT_REFRESH" => Some(Self::RetAlleyEventNotRefresh), - "RET_ALLEY_EVENT_STATE_DOING" => Some(Self::RetAlleyEventStateDoing), - "RET_ALLEY_EVENT_STATE_FINISH" => Some(Self::RetAlleyEventStateFinish), - "RET_ALLEY_EVENT_ERROR" => Some(Self::RetAlleyEventError), - "RET_ALLEY_REWARD_LEVEL_ERROR" => Some(Self::RetAlleyRewardLevelError), - "RET_ALLEY_REWARD_PRESTIGE_NOT_ENOUGH" => { - Some(Self::RetAlleyRewardPrestigeNotEnough) - } - "RET_ALLEY_SHIP_EMPTY" => Some(Self::RetAlleyShipEmpty), - "RET_ALLEY_SHIP_ID_DISMATCH" => Some(Self::RetAlleyShipIdDismatch), - "RET_ALLEY_SHIP_NOT_EXIST" => Some(Self::RetAlleyShipNotExist), - "RET_ALLEY_SHIP_NOT_UNLOCK" => Some(Self::RetAlleyShipNotUnlock), - "RET_ALLEY_GOODS_NOT_EXIST" => Some(Self::RetAlleyGoodsNotExist), - "RET_ALLEY_GOODS_NOT_UNLOCK" => Some(Self::RetAlleyGoodsNotUnlock), - "RET_ALLEY_PROFIT_NOT_POSITIVE" => Some(Self::RetAlleyProfitNotPositive), - "RET_ALLEY_SPECIAL_ORDER_DISMATCH" => { - Some(Self::RetAlleySpecialOrderDismatch) - } - "RET_ALLEY_ORDER_GOODS_OVER_LIMIT" => Some(Self::RetAlleyOrderGoodsOverLimit), - "RET_ALLEY_SPECIAL_ORDER_CONDITION_NOT_MEET" => { - Some(Self::RetAlleySpecialOrderConditionNotMeet) - } - "RET_ALLEY_DEPOT_SIZE_OVER_LIMIT" => Some(Self::RetAlleyDepotSizeOverLimit), - "RET_ALLEY_GOODS_NOT_ENOUGH" => Some(Self::RetAlleyGoodsNotEnough), - "RET_ALLEY_ORDER_INDEX_INVALID" => Some(Self::RetAlleyOrderIndexInvalid), - "RET_ALLEY_REWARD_ALREADY_TAKE" => Some(Self::RetAlleyRewardAlreadyTake), - "RET_ALLEY_REWARD_NOT_EXIST" => Some(Self::RetAlleyRewardNotExist), - "RET_ALLEY_MAIN_MISSION_NOT_DOING" => Some(Self::RetAlleyMainMissionNotDoing), - "RET_ALLEY_CRITICAL_EVENT_NOT_FINISH" => { - Some(Self::RetAlleyCriticalEventNotFinish) - } - "RET_ALLEY_SHOP_GOODS_NOT_VALID" => Some(Self::RetAlleyShopGoodsNotValid), - "RET_ALLEY_SLASH_NOT_OPEN" => Some(Self::RetAlleySlashNotOpen), - "RET_ALLEY_PLACING_ANCHOR_INVALID" => { - Some(Self::RetAlleyPlacingAnchorInvalid) - } - "RET_ALLEY_PLACING_GOODS_INDEX_INVALID" => { - Some(Self::RetAlleyPlacingGoodsIndexInvalid) - } - "RET_ALLEY_SAVE_MAP_TOO_QUICK" => Some(Self::RetAlleySaveMapTooQuick), - "RET_ALLEY_MAP_NOT_LINK" => Some(Self::RetAlleyMapNotLink), - "RET_ALLEY_FUNDS_NOT_LOWER_BASE" => Some(Self::RetAlleyFundsNotLowerBase), - "RET_ALLEY_EVENT_NOT_FINISH" => Some(Self::RetAlleyEventNotFinish), - "RET_ALLEY_NORMAL_ORDER_NOT_MEET" => Some(Self::RetAlleyNormalOrderNotMeet), - "RET_PLAYER_RETURN_NOT_OPEN" => Some(Self::RetPlayerReturnNotOpen), - "RET_PLAYER_RETURN_IS_SIGNED" => Some(Self::RetPlayerReturnIsSigned), - "RET_PLAYER_RETURN_POINT_NOT_ENOUGH" => { - Some(Self::RetPlayerReturnPointNotEnough) - } - "RET_PLAYER_RETURN_CONDITION_INVALID" => { - Some(Self::RetPlayerReturnConditionInvalid) - } - "RET_PLAYER_RETURN_HAS_SIGNED" => Some(Self::RetPlayerReturnHasSigned), - "RET_PLAYER_RETURN_REWARD_TAKEN" => Some(Self::RetPlayerReturnRewardTaken), - "RET_PLAYER_RETURN_RELIC_TAKEN" => Some(Self::RetPlayerReturnRelicTaken), - "RET_PLAYER_RETURN_CONFIG_ERROR" => Some(Self::RetPlayerReturnConfigError), - "RET_PLAYER_RETURN_OPTIONAL_GIFT_INVALID" => { - Some(Self::RetPlayerReturnOptionalGiftInvalid) - } - "RET_PLAYER_RETURN_OPTIONAL_GIFT_NOT_EXIST" => { - Some(Self::RetPlayerReturnOptionalGiftNotExist) - } - "RET_PLAYER_RETURN_SIGN_TYPE_INVALID" => { - Some(Self::RetPlayerReturnSignTypeInvalid) - } - "RET_AETHER_DIVIDE_NO_LINEUP" => Some(Self::RetAetherDivideNoLineup), - "RET_AETHER_DIVIDE_LINEUP_INVALID" => { - Some(Self::RetAetherDivideLineupInvalid) - } - "RET_CHAT_BUBBLE_ID_ERROR" => Some(Self::RetChatBubbleIdError), - "RET_CHAT_BUBBLE_ID_NOT_UNLOCK" => Some(Self::RetChatBubbleIdNotUnlock), - "RET_PHONE_THEME_ID_ERROR" => Some(Self::RetPhoneThemeIdError), - "RET_PHONE_THEME_ID_NOT_UNLOCK" => Some(Self::RetPhoneThemeIdNotUnlock), - "RET_CHAT_BUBBLE_SELECT_IS_CURRENT" => { - Some(Self::RetChatBubbleSelectIsCurrent) - } - "RET_PHONE_THEME_SELECT_IS_CURRENT" => { - Some(Self::RetPhoneThemeSelectIsCurrent) - } - "RET_PHONE_CASE_ID_ERROR" => Some(Self::RetPhoneCaseIdError), - "RET_PHONE_CASE_ID_NOT_UNLOCK" => Some(Self::RetPhoneCaseIdNotUnlock), - "RET_PHONE_CASE_SELECT_IS_CURRENT" => Some(Self::RetPhoneCaseSelectIsCurrent), - "RET_CHESS_ROGUE_CONFIG_NOT_FOUND" => Some(Self::RetChessRogueConfigNotFound), - "RET_CHESS_ROGUE_CONFIG_INVALID" => Some(Self::RetChessRogueConfigInvalid), - "RET_CHESS_ROGUE_NO_VALID_ROOM" => Some(Self::RetChessRogueNoValidRoom), - "RET_CHESS_ROGUE_NO_CELL_INFO" => Some(Self::RetChessRogueNoCellInfo), - "RET_CHESS_ROGUE_CELL_NOT_FINISH" => Some(Self::RetChessRogueCellNotFinish), - "RET_CHESS_ROGUE_CELL_IS_LOCKED" => Some(Self::RetChessRogueCellIsLocked), - "RET_CHESS_ROGUE_SCHEDULE_NOT_MATCH" => { - Some(Self::RetChessRogueScheduleNotMatch) - } - "RET_CHESS_ROGUE_STATUS_FAIL" => Some(Self::RetChessRogueStatusFail), - "RET_CHESS_ROGUE_AREA_NOT_EXIST" => Some(Self::RetChessRogueAreaNotExist), - "RET_CHESS_ROGUE_LINEUP_FAIL" => Some(Self::RetChessRogueLineupFail), - "RET_CHESS_ROGUE_AEON_FAIL" => Some(Self::RetChessRogueAeonFail), - "RET_CHESS_ROGUE_ENTER_CELL_FAIL" => Some(Self::RetChessRogueEnterCellFail), - "RET_CHESS_ROGUE_ROLL_DICE_FAIL" => Some(Self::RetChessRogueRollDiceFail), - "RET_CHESS_ROGUE_DICE_STATUS_FAIL" => Some(Self::RetChessRogueDiceStatusFail), - "RET_CHESS_ROGUE_DICE_CNT_NOT_FULL" => { - Some(Self::RetChessRogueDiceCntNotFull) - } - "RET_CHESS_ROGUE_UNLOCK" => Some(Self::RetChessRogueUnlock), - "RET_CHESS_ROGUE_PICK_AVATAR_FAIL" => Some(Self::RetChessRoguePickAvatarFail), - "RET_CHESS_ROGUE_AVATAR_INVALID" => Some(Self::RetChessRogueAvatarInvalid), - "RET_CHESS_ROGUE_CELL_CAN_NOT_SELECT" => { - Some(Self::RetChessRogueCellCanNotSelect) - } - "RET_CHESS_ROGUE_DICE_CONFIRMED" => Some(Self::RetChessRogueDiceConfirmed), - "RET_CHESS_ROGUE_NOUS_DICE_NOT_MATCH" => { - Some(Self::RetChessRogueNousDiceNotMatch) - } - "RET_CHESS_ROGUE_NOUS_DICE_RARITY_FAIL" => { - Some(Self::RetChessRogueNousDiceRarityFail) - } - "RET_CHESS_ROGUE_NOUS_DICE_SURFACE_DUPLICATE" => { - Some(Self::RetChessRogueNousDiceSurfaceDuplicate) - } - "RET_CHESS_ROGUE_NOT_IN_ROGUE" => Some(Self::RetChessRogueNotInRogue), - "RET_CHESS_ROGUE_NOUS_DICE_BRANCH_LIMIT" => { - Some(Self::RetChessRogueNousDiceBranchLimit) - } - "RET_HELIOBUS_NOT_OPEN" => Some(Self::RetHeliobusNotOpen), - "RET_HELIOBUS_SNS_POST_NOT_UNLOCK" => Some(Self::RetHeliobusSnsPostNotUnlock), - "RET_HELIOBUS_SNS_ALREADY_READ" => Some(Self::RetHeliobusSnsAlreadyRead), - "RET_HELIOBUS_SNS_ALREADY_LIKED" => Some(Self::RetHeliobusSnsAlreadyLiked), - "RET_HELIOBUS_SNS_ALREADY_COMMENTED" => { - Some(Self::RetHeliobusSnsAlreadyCommented) - } - "RET_HELIOBUS_SNS_IN_MISSION" => Some(Self::RetHeliobusSnsInMission), - "RET_HELIOBUS_SNS_ALREADY_POSTED" => Some(Self::RetHeliobusSnsAlreadyPosted), - "RET_HELIOBUS_SNS_NOT_DOING_MISSION" => { - Some(Self::RetHeliobusSnsNotDoingMission) - } - "RET_HELIOBUS_REWARD_LEVEL_MAX" => Some(Self::RetHeliobusRewardLevelMax), - "RET_HELIOBUS_INCOME_NOT_ENOUGH" => Some(Self::RetHeliobusIncomeNotEnough), - "RET_HELIOBUS_SNS_COMMENT_NOT_UNLOCK" => { - Some(Self::RetHeliobusSnsCommentNotUnlock) - } - "RET_HELIOBUS_CHALLENGE_NOT_UNLOCK" => { - Some(Self::RetHeliobusChallengeNotUnlock) - } - "RET_HELIOBUS_CHALLENGE_ID_ERROR" => Some(Self::RetHeliobusChallengeIdError), - "RET_HELIOBUS_SKILL_NOT_UNLOCK" => Some(Self::RetHeliobusSkillNotUnlock), - "RET_HELIOBUS_ACCEPT_POST_MISSION_FAIL" => { - Some(Self::RetHeliobusAcceptPostMissionFail) - } - "RET_HELIOBUS_SKILL_NOT_SELECTED" => Some(Self::RetHeliobusSkillNotSelected), - "RET_HELIOBUS_PLANE_TYPE_INVALID" => Some(Self::RetHeliobusPlaneTypeInvalid), - "RET_REDDOT_PARAM_INVALID" => Some(Self::RetReddotParamInvalid), - "RET_REDDOT_ACTIVITY_NOT_OPEN" => Some(Self::RetReddotActivityNotOpen), - "RET_ROGUE_ENDLESS_ACTIVITY_CONFIG_ERROR" => { - Some(Self::RetRogueEndlessActivityConfigError) - } - "RET_ROGUE_ENDLESS_ACTIVITY_NOT_OPEN" => { - Some(Self::RetRogueEndlessActivityNotOpen) - } - "RET_ROGUE_ENDLESS_ACTIVITY_OVER_BONUS_REWARD_LIMIT" => { - Some(Self::RetRogueEndlessActivityOverBonusRewardLimit) - } - "RET_ROGUE_ENDLESS_ACTIVITY_SCORE_NOT_MEET" => { - Some(Self::RetRogueEndlessActivityScoreNotMeet) - } - "RET_ROGUE_ENDLESS_ACTIVITY_REWARD_LEVLE_ALREADY_TAKE" => { - Some(Self::RetRogueEndlessActivityRewardLevleAlreadyTake) - } - "RET_HEART_DIAL_SCRIPT_NOT_FOUND" => Some(Self::RetHeartDialScriptNotFound), - "RET_HEART_DIAL_SCRIPT_EMOTION_THE_SAME" => { - Some(Self::RetHeartDialScriptEmotionTheSame) - } - "RET_HEART_DIAL_SCRIPT_STEP_NOT_NORMAL" => { - Some(Self::RetHeartDialScriptStepNotNormal) - } - "RET_HEART_DIAL_SCRIPT_CONDITION_NOT_MATCH" => { - Some(Self::RetHeartDialScriptConditionNotMatch) - } - "RET_HEART_DIAL_SCRIPT_SUBMIT_ITEM_NUM_NOT_MATCH" => { - Some(Self::RetHeartDialScriptSubmitItemNumNotMatch) - } - "RET_HEART_DIAL_SCRIPT_SUBMIT_ITEM_ID_NOT_MATCH" => { - Some(Self::RetHeartDialScriptSubmitItemIdNotMatch) - } - "RET_HEART_DIAL_DIALOGUE_NOT_FOUND" => { - Some(Self::RetHeartDialDialogueNotFound) - } - "RET_HEART_DIAL_DIALOGUE_ALREADY_PERFORMED" => { - Some(Self::RetHeartDialDialogueAlreadyPerformed) - } - "RET_HEART_DIAL_NPC_NOT_FOUND" => Some(Self::RetHeartDialNpcNotFound), - "RET_HEART_DIAL_TRACE_CONFIG_NOT_FOUND" => { - Some(Self::RetHeartDialTraceConfigNotFound) - } - "RET_HEART_DIAL_FLOOR_TRACE_EXIST" => Some(Self::RetHeartDialFloorTraceExist), - "RET_HEART_DIAL_TRACE_FLOOR_NOT_MATCH" => { - Some(Self::RetHeartDialTraceFloorNotMatch) - } - "RET_TRAVEL_BROCHURE_CONFIG_ERROR" => { - Some(Self::RetTravelBrochureConfigError) - } - "RET_TRAVEL_BROCHURE_PARAM_INVALID" => { - Some(Self::RetTravelBrochureParamInvalid) - } - "RET_TRAVEL_BROCHURE_LOCKED" => Some(Self::RetTravelBrochureLocked), - "RET_TRAVEL_BROCHURE_CANNOT_OPERATE" => { - Some(Self::RetTravelBrochureCannotOperate) - } - "RET_TRAVEL_BROCHURE_WORLD_ID_NOT_MATCH" => { - Some(Self::RetTravelBrochureWorldIdNotMatch) - } - "RET_TRAVEL_BROCHURE_HAS_NO_WORLD_BOOK" => { - Some(Self::RetTravelBrochureHasNoWorldBook) - } - "RET_TRAVEL_BROCHURE_PAGE_FULL" => Some(Self::RetTravelBrochurePageFull), - "RET_MAP_ROTATION_NOT_IN_REGION" => Some(Self::RetMapRotationNotInRegion), - "RET_MAP_ROTATION_ROTATER_ALREADY_DEPLOYED" => { - Some(Self::RetMapRotationRotaterAlreadyDeployed) - } - "RET_MAP_ROTATION_ENERGY_NOT_ENOUGH" => { - Some(Self::RetMapRotationEnergyNotEnough) - } - "RET_MAP_ROTATION_ENTITY_NOT_ON_CUR_POSE" => { - Some(Self::RetMapRotationEntityNotOnCurPose) - } - "RET_MAP_ROTATION_ROTATER_NOT_DEPLOYED" => { - Some(Self::RetMapRotationRotaterNotDeployed) - } - "RET_MAP_ROTATION_POSE_ROTATER_MISMATCH" => { - Some(Self::RetMapRotationPoseRotaterMismatch) - } - "RET_MAP_ROTATION_ROTATER_NOT_REMOVABLE" => { - Some(Self::RetMapRotationRotaterNotRemovable) - } - "RET_MAP_ROTATION_ROTATER_DISPOSABLE" => { - Some(Self::RetMapRotationRotaterDisposable) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_NOT_FOUND" => { - Some(Self::RetSpaceZooActivityCatNotFound) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_PARAM_INVALID" => { - Some(Self::RetSpaceZooActivityCatParamInvalid) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_ITEM_NOT_ENOUGH" => { - Some(Self::RetSpaceZooActivityCatItemNotEnough) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_BAG_FULL" => { - Some(Self::RetSpaceZooActivityCatBagFull) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_NOT_TO_MUTATE" => { - Some(Self::RetSpaceZooActivityCatNotToMutate) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_STATE_ERROR" => { - Some(Self::RetSpaceZooActivityCatStateError) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_CATTERY_LOCKED" => { - Some(Self::RetSpaceZooActivityCatCatteryLocked) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_OUT_NOW" => { - Some(Self::RetSpaceZooActivityCatOutNow) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_CONFIG_NOT_FOUND" => { - Some(Self::RetSpaceZooActivityCatConfigNotFound) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_FEATURE_NOT_FOUND" => { - Some(Self::RetSpaceZooActivityCatFeatureNotFound) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_ADD_CAT_ERROR" => { - Some(Self::RetSpaceZooActivityCatAddCatError) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_MONEY_NOT_ENOUGH" => { - Some(Self::RetSpaceZooActivityCatMoneyNotEnough) - } - "RET_SPACE_ZOO_ACTIVITY_CAT_COND_NOT_MATCH" => { - Some(Self::RetSpaceZooActivityCatCondNotMatch) - } - "RET_STRONG_CHALLENGE_ACTIVITY_STAGE_CFG_MISS" => { - Some(Self::RetStrongChallengeActivityStageCfgMiss) - } - "RET_STRONG_CHALLENGE_ACTIVITY_STAGE_NOT_OPEN" => { - Some(Self::RetStrongChallengeActivityStageNotOpen) - } - "RET_STRONG_CHALLENGE_ACTIVITY_BUFF_ERROR" => { - Some(Self::RetStrongChallengeActivityBuffError) - } - "RET_ROLL_SHOP_NOT_FOUND" => Some(Self::RetRollShopNotFound), - "RET_ROLL_SHOP_GROUP_EMPTY" => Some(Self::RetRollShopGroupEmpty), - "RET_ROLL_SHOP_EMPTY" => Some(Self::RetRollShopEmpty), - "RET_ROLL_SHOP_GACHA_REQ_DUPLICATED" => { - Some(Self::RetRollShopGachaReqDuplicated) - } - "RET_ROLL_SHOP_RANDOM_ERROR" => Some(Self::RetRollShopRandomError), - "RET_ROLL_SHOP_GROUP_TYPE_NOT_FOUND" => { - Some(Self::RetRollShopGroupTypeNotFound) - } - "RET_ROLL_SHOP_HAS_STORED_REWARD_ALREADY" => { - Some(Self::RetRollShopHasStoredRewardAlready) - } - "RET_ROLL_SHOP_NO_STORED_REWARD" => Some(Self::RetRollShopNoStoredReward), - "RET_ROLL_SHOP_NOT_IN_VALID_SCENE" => Some(Self::RetRollShopNotInValidScene), - "RET_ROLL_SHOP_INVALID_ROLL_SHOP_TYPE" => { - Some(Self::RetRollShopInvalidRollShopType) - } - "RET_ACTIVITY_RAID_COLLECTION_PREV_NOT_FINISH" => { - Some(Self::RetActivityRaidCollectionPrevNotFinish) - } - "RET_ACTIVITY_RAID_COLLECTION_GROUP_ENTER_NEXT_UNAVAILABLE" => { - Some(Self::RetActivityRaidCollectionGroupEnterNextUnavailable) - } - "RET_ACTIVITY_RAID_COLLECTION_IS_LAST" => { - Some(Self::RetActivityRaidCollectionIsLast) - } - "RET_ACTIVITY_RAID_COLLECTION_IS_NOT_NEXT" => { - Some(Self::RetActivityRaidCollectionIsNotNext) - } - "RET_OFFERING_NOT_UNLOCK" => Some(Self::RetOfferingNotUnlock), - "RET_OFFERING_LEVEL_NOT_UNLOCK" => Some(Self::RetOfferingLevelNotUnlock), - "RET_OFFERING_REACH_MAX_LEVEL" => Some(Self::RetOfferingReachMaxLevel), - "RET_OFFERING_ITEM_NOT_ENOUGH" => Some(Self::RetOfferingItemNotEnough), - "RET_OFFERING_LONGTAIL_NOT_OPEN" => Some(Self::RetOfferingLongtailNotOpen), - "RET_OFFERING_REWARD_CONDITION" => Some(Self::RetOfferingRewardCondition), - "RET_DRINK_MAKER_CHAT_INVALID" => Some(Self::RetDrinkMakerChatInvalid), - "RET_DRINK_MAKER_PARAM_INVALID" => Some(Self::RetDrinkMakerParamInvalid), - "RET_DRINK_MAKER_PARAM_NOT_UNLOCK" => Some(Self::RetDrinkMakerParamNotUnlock), - "RET_DRINK_MAKER_CONFIG_NOT_FOUND" => Some(Self::RetDrinkMakerConfigNotFound), - "RET_DRINK_MAKER_NOT_LAST_CHAT" => Some(Self::RetDrinkMakerNotLastChat), - "RET_DRINK_MAKER_DAY_AND_FREE_PHASE_NOT_OPEN" => { - Some(Self::RetDrinkMakerDayAndFreePhaseNotOpen) - } - "RET_DRINK_MAKER_CHEERS_NOT_ABLE_TO_NEXT_GROUP" => { - Some(Self::RetDrinkMakerCheersNotAbleToNextGroup) - } - "RET_DRINK_MAKER_CHEERS_DRINK_ALREADY_MADE" => { - Some(Self::RetDrinkMakerCheersDrinkAlreadyMade) - } - "RET_DRINK_MAKER_CHEERS_ACTIVITY_NOT_OPEN" => { - Some(Self::RetDrinkMakerCheersActivityNotOpen) - } - "RET_DRINK_MAKER_CHEERS_MAKE_DRINK_PRE_MISSION_NOT_FINISHED" => { - Some(Self::RetDrinkMakerCheersMakeDrinkPreMissionNotFinished) - } - "RET_MONOPOLY_NOT_OPEN" => Some(Self::RetMonopolyNotOpen), - "RET_MONOPOLY_CONFIG_ERROR" => Some(Self::RetMonopolyConfigError), - "RET_MONOPOLY_DICE_NOT_ENOUGH" => Some(Self::RetMonopolyDiceNotEnough), - "RET_MONOPOLY_CUR_CELL_NOT_FINISH" => Some(Self::RetMonopolyCurCellNotFinish), - "RET_MONOPOLY_COIN_NOT_ENOUGH" => Some(Self::RetMonopolyCoinNotEnough), - "RET_MONOPOLY_CELL_WAIT_PENDING" => Some(Self::RetMonopolyCellWaitPending), - "RET_MONOPOLY_CELL_STATE_ERROR" => Some(Self::RetMonopolyCellStateError), - "RET_MONOPOLY_CELL_CONTENT_ERROR" => Some(Self::RetMonopolyCellContentError), - "RET_MONOPOLY_ITEM_NOT_ENOUGH" => Some(Self::RetMonopolyItemNotEnough), - "RET_MONOPOLY_CELL_CONTENT_CANNOT_GIVEUP" => { - Some(Self::RetMonopolyCellContentCannotGiveup) - } - "RET_MONOPOLY_ASSET_LEVEL_INVALID" => { - Some(Self::RetMonopolyAssetLevelInvalid) - } - "RET_MONOPOLY_TURN_NOT_FINISH" => Some(Self::RetMonopolyTurnNotFinish), - "RET_MONOPOLY_GUIDE_NOT_FINISH" => Some(Self::RetMonopolyGuideNotFinish), - "RET_MONOPOLY_RAFFLE_REWARD_REISSUED" => { - Some(Self::RetMonopolyRaffleRewardReissued) - } - "RET_MONOPOLY_NO_GAME_ACTIVE" => Some(Self::RetMonopolyNoGameActive), - "RET_MONOPOLY_GAME_RATIO_NOT_INCREASABLE" => { - Some(Self::RetMonopolyGameRatioNotIncreasable) - } - "RET_MONOPOLY_GAME_RATIO_MAX" => Some(Self::RetMonopolyGameRatioMax), - "RET_MONOPOLY_GAME_TARGET_RATIO_INVALID" => { - Some(Self::RetMonopolyGameTargetRatioInvalid) - } - "RET_MONOPOLY_GAME_BINGO_FLIP_POS_INVALID" => { - Some(Self::RetMonopolyGameBingoFlipPosInvalid) - } - "RET_MONOPOLY_GAME_GUESS_ALREADY_CHOOSE" => { - Some(Self::RetMonopolyGameGuessAlreadyChoose) - } - "RET_MONOPOLY_GAME_GUESS_CHOOSE_INVALID" => { - Some(Self::RetMonopolyGameGuessChooseInvalid) - } - "RET_MONOPOLY_GAME_GUESS_INFORMATION_ALREADY_BOUGHT" => { - Some(Self::RetMonopolyGameGuessInformationAlreadyBought) - } - "RET_MONOPOLY_GAME_RAISE_RATIO_NOT_UNLOCK" => { - Some(Self::RetMonopolyGameRaiseRatioNotUnlock) - } - "RET_MONOPOLY_FRIEND_NOT_SYNCED" => Some(Self::RetMonopolyFriendNotSynced), - "RET_MONOPOLY_GET_FRIEND_RANKING_LIST_IN_CD" => { - Some(Self::RetMonopolyGetFriendRankingListInCd) - } - "RET_MONOPOLY_LIKE_TARGET_NOT_FRIEND" => { - Some(Self::RetMonopolyLikeTargetNotFriend) - } - "RET_MONOPOLY_DAILY_ALREADY_LIKED" => { - Some(Self::RetMonopolyDailyAlreadyLiked) - } - "RET_MONOPOLY_SOCIAL_EVENT_STATUS_NOT_MATCH" => { - Some(Self::RetMonopolySocialEventStatusNotMatch) - } - "RET_MONOPOLY_SOCIAL_EVENT_SERVER_CACHE_NOT_EXIST" => { - Some(Self::RetMonopolySocialEventServerCacheNotExist) - } - "RET_MONOPOLY_ACTIVITY_ID_NOT_MATCH" => { - Some(Self::RetMonopolyActivityIdNotMatch) - } - "RET_MONOPOLY_RAFFLE_POOL_NOT_EXIST" => { - Some(Self::RetMonopolyRafflePoolNotExist) - } - "RET_MONOPOLY_RAFFLE_POOL_TIME_NOT_MATCH" => { - Some(Self::RetMonopolyRafflePoolTimeNotMatch) - } - "RET_MONOPOLY_RAFFLE_POOL_PHASE_NOT_MEET" => { - Some(Self::RetMonopolyRafflePoolPhaseNotMeet) - } - "RET_MONOPOLY_RAFFLE_POOL_SHOW_TIME_NOT_MEET" => { - Some(Self::RetMonopolyRafflePoolShowTimeNotMeet) - } - "RET_MONOPOLY_RAFFLE_TICKET_NOT_FOUND" => { - Some(Self::RetMonopolyRaffleTicketNotFound) - } - "RET_MONOPOLY_RAFFLE_TICKET_TIME_NOT_MEET" => { - Some(Self::RetMonopolyRaffleTicketTimeNotMeet) - } - "RET_MONOPOLY_RAFFLE_TICKET_REWARD_ALREADY_TAKEN" => { - Some(Self::RetMonopolyRaffleTicketRewardAlreadyTaken) - } - "RET_MONOPOLY_RAFFLE_POOL_NOT_IN_RAFFLE_TIME" => { - Some(Self::RetMonopolyRafflePoolNotInRaffleTime) - } - "RET_MONOPOLY_MBTI_REPORT_REWARD_ALREADY_TAKEN" => { - Some(Self::RetMonopolyMbtiReportRewardAlreadyTaken) - } - "RET_EVOLVE_BUILD_LEVEL_GAMING" => Some(Self::RetEvolveBuildLevelGaming), - "RET_EVEOLVE_BUILD_LEVEL_BAN_RANDOM" => { - Some(Self::RetEveolveBuildLevelBanRandom) - } - "RET_EVOLVE_BUILD_FIRST_REWARD_ALREADY_TAKEN" => { - Some(Self::RetEvolveBuildFirstRewardAlreadyTaken) - } - "RET_EVOLVE_BUILD_LEVEL_UNFINISH" => Some(Self::RetEvolveBuildLevelUnfinish), - "RET_EVOLVE_BUILD_SHOP_ABILITY_MAX_LEVEL" => { - Some(Self::RetEvolveBuildShopAbilityMaxLevel) - } - "RET_EVOLVE_BUILD_SHOP_ABILITY_MIN_LEVEL" => { - Some(Self::RetEvolveBuildShopAbilityMinLevel) - } - "RET_EVOLVE_BUILD_SHOP_ABILITY_NOT_GET" => { - Some(Self::RetEvolveBuildShopAbilityNotGet) - } - "RET_EVOLVE_BUILD_LEVEL_LOCK" => Some(Self::RetEvolveBuildLevelLock), - "RET_EVOLVE_BUILD_EXP_NOT_ENOUGH" => Some(Self::RetEvolveBuildExpNotEnough), - "RET_EVOLVE_BUILD_SHOP_ABILITY_LEVEL_ERROR" => { - Some(Self::RetEvolveBuildShopAbilityLevelError) - } - "RET_EVOLVE_BUILD_ACTIVITY_NOT_OPEN" => { - Some(Self::RetEvolveBuildActivityNotOpen) - } - "RET_EVOLVE_BUILD_SHOP_ABILITY_EMPTY" => { - Some(Self::RetEvolveBuildShopAbilityEmpty) - } - "RET_EVOLVE_BUILD_LEVEL_NOT_START" => Some(Self::RetEvolveBuildLevelNotStart), - "RET_EVOLVE_BUILD_SHOP_LOCK" => Some(Self::RetEvolveBuildShopLock), - "RET_EVOLVE_BUILD_REWARD_LOCK" => Some(Self::RetEvolveBuildRewardLock), - "RET_EVOLVE_BUILD_REWARD_LEVEL_MAX" => { - Some(Self::RetEvolveBuildRewardLevelMax) - } - "RET_EVOLVE_BUILD_REWARD_ALREADY_ALL_TAKEN" => { - Some(Self::RetEvolveBuildRewardAlreadyAllTaken) - } - "RET_EVOLVE_BUILD_SEASON_ERROR" => Some(Self::RetEvolveBuildSeasonError), - "RET_EVOLVE_BUILD_TEACH_SKIP_QUEST_NOT_FINISH" => { - Some(Self::RetEvolveBuildTeachSkipQuestNotFinish) - } - "RET_CLOCK_PARK_CONFIG_ERROR" => Some(Self::RetClockParkConfigError), - "RET_CLOCK_PARK_EFFECT_ERROR" => Some(Self::RetClockParkEffectError), - "RET_CLOCK_PARK_SCRIPT_ALREADY_UNLOCK" => { - Some(Self::RetClockParkScriptAlreadyUnlock) - } - "RET_CLOCK_PARK_SCRIPT_UNLOCK_CONDITION_NOT_MEET" => { - Some(Self::RetClockParkScriptUnlockConditionNotMeet) - } - "RET_CLOCK_PARK_TALENT_ALREADY_UNLOCK" => { - Some(Self::RetClockParkTalentAlreadyUnlock) - } - "RET_CLOCK_PARK_SCRIPT_LOCKED" => Some(Self::RetClockParkScriptLocked), - "RET_CLOCK_PARK_HAS_ONGOING_SCRIPT" => { - Some(Self::RetClockParkHasOngoingScript) - } - "RET_CLOCK_PARK_NO_ONGOING_SCRIPT" => Some(Self::RetClockParkNoOngoingScript), - "RET_CLOCK_PARK_DICE_PLACEMENT_ERROR" => { - Some(Self::RetClockParkDicePlacementError) - } - "RET_CLOCK_PARK_MISMATCH_STATUS" => Some(Self::RetClockParkMismatchStatus), - "RET_CLOCK_PARK_NO_BUFF" => Some(Self::RetClockParkNoBuff), - "RET_CLOCK_PARK_SLOT_MACHINE_GACHA_REQ_DUPLICATED" => { - Some(Self::RetClockParkSlotMachineGachaReqDuplicated) - } - "RET_CLOCK_PARK_SLOT_MACHINE_COST_NOT_ENOUGH" => { - Some(Self::RetClockParkSlotMachineCostNotEnough) - } - "RET_CLOCK_PARK_SLOT_MACHINE_GACHA_CNT_EXCEED_LIMIT" => { - Some(Self::RetClockParkSlotMachineGachaCntExceedLimit) - } - "RET_CLOCK_PARK_NOT_OPEN" => Some(Self::RetClockParkNotOpen), - "RET_TOURN_ROGUE_STATUS_MISMATCH" => Some(Self::RetTournRogueStatusMismatch), - "RET_MAGIC_ROGUE_STATUS_MISMATCH" => Some(Self::RetMagicRogueStatusMismatch), - "RET_AUTO_MOUNT_MAGIC_UNIT_NO_MATCHED_MAGIC_SCEPTER" => { - Some(Self::RetAutoMountMagicUnitNoMatchedMagicScepter) - } - "RET_MAGIC_UNIT_WORKBENCH_REFORGE_GEN_FAIL" => { - Some(Self::RetMagicUnitWorkbenchReforgeGenFail) - } - "RET_MATCH_ALREADY_IN_MATCH" => Some(Self::RetMatchAlreadyInMatch), - "RET_MATCH_NOT_IN_MATCH" => Some(Self::RetMatchNotInMatch), - "RET_MATCH_PLAY_NOT_OPEN" => Some(Self::RetMatchPlayNotOpen), - "RET_CROSS_STATE_ERROR" => Some(Self::RetCrossStateError), - "RET_MATCH_VERSION_NOT_EQUAL" => Some(Self::RetMatchVersionNotEqual), - "RET_MATCH_PLAYER_NOT_IN_LOBBY_ROOM" => { - Some(Self::RetMatchPlayerNotInLobbyRoom) - } - "RET_LOBBY_STATE_NOT_MATCH" => Some(Self::RetLobbyStateNotMatch), - "RET_LOBBY_ROOM_NOT_EXIST" => Some(Self::RetLobbyRoomNotExist), - "RET_LOBBY_ROOM_PALYER_FULL" => Some(Self::RetLobbyRoomPalyerFull), - "RET_LOBBY_ROOM_PALYER_NOT_READY" => Some(Self::RetLobbyRoomPalyerNotReady), - "RET_LOBBY_ROOM_PALYER_FIGHTING" => Some(Self::RetLobbyRoomPalyerFighting), - "RET_FIGHT_ROOM_NOT_EXIST" => Some(Self::RetFightRoomNotExist), - "RET_FIGHT_MATCH3_PLAYER_STATE_ERR" => { - Some(Self::RetFightMatch3PlayerStateErr) - } - "RET_FIGHT_MATCH3_ROOM_STATE_ERR" => Some(Self::RetFightMatch3RoomStateErr), - "RET_CROSS_STATE_TIME_OUT" => Some(Self::RetCrossStateTimeOut), - "RET_LOBBY_START_FIGHT_DISABLE" => Some(Self::RetLobbyStartFightDisable), - "RET_LOBBY_START_FIGHT_PLAYER_LACK" => { - Some(Self::RetLobbyStartFightPlayerLack) - } - "RET_MATCH_CLIENT_DATA_VERSION_LOW" => { - Some(Self::RetMatchClientDataVersionLow) - } - "RET_LOBBY_START_MATCH_DISABLE" => Some(Self::RetLobbyStartMatchDisable), - "RET_LOBBY_INTERACT_IN_CD" => Some(Self::RetLobbyInteractInCd), - "RET_LOBBY_OWNER_STATE_ERR" => Some(Self::RetLobbyOwnerStateErr), - "RET_LOBBY_OP_TOO_FAST" => Some(Self::RetLobbyOpTooFast), - "RET_FIGHT_MATCH3_SOLO_PLAYER_TURN_ERR" => { - Some(Self::RetFightMatch3SoloPlayerTurnErr) - } - "RET_MATCH_PLAY_NOT_SUPPORTED" => Some(Self::RetMatchPlayNotSupported), - "RET_MATCH_PLAY_DATA_NOT_EXIST" => Some(Self::RetMatchPlayDataNotExist), - "RET_MATCH_PLAY_NOT_SUPPORT_FRIEND_RANKING" => { - Some(Self::RetMatchPlayNotSupportFriendRanking) - } - "RET_MATCH_PLAY_GET_FRIEND_RANKING_INFO_IN_CD" => { - Some(Self::RetMatchPlayGetFriendRankingInfoInCd) - } - "RET_SWORD_TRAINING_NO_ACTIVE_GAME" => { - Some(Self::RetSwordTrainingNoActiveGame) - } - "RET_SWORD_TRAINING_NO_PENDING_ACTION_MATCH" => { - Some(Self::RetSwordTrainingNoPendingActionMatch) - } - "RET_SWORD_TRAINING_PARTNER_ABILITY_INVALID" => { - Some(Self::RetSwordTrainingPartnerAbilityInvalid) - } - "RET_SWORD_TRAINING_SKILL_ALREADY_LEARNED" => { - Some(Self::RetSwordTrainingSkillAlreadyLearned) - } - "RET_SWORD_TRAINING_CONDITION_NOT_MEET" => { - Some(Self::RetSwordTrainingConditionNotMeet) - } - "RET_SWORD_TRAINING_PARENT_SKILL_NOT_LEARNED" => { - Some(Self::RetSwordTrainingParentSkillNotLearned) - } - "RET_SWORD_TRAINING_SKILL_TYPE_NOT_UNLOCK" => { - Some(Self::RetSwordTrainingSkillTypeNotUnlock) - } - "RET_SWORD_TRAINING_GAME_ALREADY_EXIST" => { - Some(Self::RetSwordTrainingGameAlreadyExist) - } - "RET_SWORD_TRAINING_ENDING_HINT_NOT_MATCH" => { - Some(Self::RetSwordTrainingEndingHintNotMatch) - } - "RET_SWORD_TRAINING_STORYLINE_CONFIG_NOT_FOUND" => { - Some(Self::RetSwordTrainingStorylineConfigNotFound) - } - "RET_SWORD_TRAINING_STORY_CONFIG_NOT_FOUND" => { - Some(Self::RetSwordTrainingStoryConfigNotFound) - } - "RET_SWORD_TRAINING_UNLOCK_NOT_FINISH" => { - Some(Self::RetSwordTrainingUnlockNotFinish) - } - "RET_SWORD_TRAINING_OPTION_MISMATCH" => { - Some(Self::RetSwordTrainingOptionMismatch) - } - "RET_SWORD_TRAINING_RESTORE_WITHOUT_EXAM_FAILED" => { - Some(Self::RetSwordTrainingRestoreWithoutExamFailed) - } - "RET_SWORD_TRAINING_NO_RESTORE_GAME_AVAILABLE" => { - Some(Self::RetSwordTrainingNoRestoreGameAvailable) - } - "RET_SWORD_TRAINING_ENDING_STORY_NOT_MATCH" => { - Some(Self::RetSwordTrainingEndingStoryNotMatch) - } - "RET_SWORD_TRAINING_ENDING_NOT_FINISH" => { - Some(Self::RetSwordTrainingEndingNotFinish) - } - "RET_SWORD_TRAINING_ENDING_REWARD_TAKEN" => { - Some(Self::RetSwordTrainingEndingRewardTaken) - } - "RET_SWORD_TRAINING_COMBAT_RANK_NOT_CHANGE" => { - Some(Self::RetSwordTrainingCombatRankNotChange) - } - "RET_SWORD_TRAINING_DIRECT_BATTLE_DISABLE" => { - Some(Self::RetSwordTrainingDirectBattleDisable) - } - "RET_FIGHT_FEST_PHASE_NOT_MATCH" => Some(Self::RetFightFestPhaseNotMatch), - "RET_FIGHT_FEST_SCORE_RACE_ALREADY_FINISH" => { - Some(Self::RetFightFestScoreRaceAlreadyFinish) - } - "RET_FIGHT_FEST_CHALLENGE_LOCKED" => Some(Self::RetFightFestChallengeLocked), - "RET_FIGHT_FEST_COACH_SKILL_LOCKED" => { - Some(Self::RetFightFestCoachSkillLocked) - } - "RET_FIGHT_FEST_COACH_SKILL_EQUIP_TYPE_EXISTED" => { - Some(Self::RetFightFestCoachSkillEquipTypeExisted) - } - "RET_FIGHT_FEST_SCORE_RACE_MISSION_DOIND" => { - Some(Self::RetFightFestScoreRaceMissionDoind) - } - "RET_FIGHT_FEST_COACH_SKILL_NO_EQUIP" => { - Some(Self::RetFightFestCoachSkillNoEquip) - } - "RET_PET_NOT_EXIST" => Some(Self::RetPetNotExist), - "RET_PET_ALREADY_SUMMONED" => Some(Self::RetPetAlreadySummoned), - "RET_PET_NOT_SUMMONED" => Some(Self::RetPetNotSummoned), - "RET_MUSIC_RHYTHM_LEVEL_TIME_TOO_SHORT" => { - Some(Self::RetMusicRhythmLevelTimeTooShort) - } - "RET_MUSIC_RHYTHM_NOT_IN_LEVEL" => Some(Self::RetMusicRhythmNotInLevel), - "RET_MUSIC_RHYTHM_PRE_DIFFICULTY_NOT_PASS" => { - Some(Self::RetMusicRhythmPreDifficultyNotPass) - } - "RET_MUSIC_RHYTHM_SONG_LIMITED" => Some(Self::RetMusicRhythmSongLimited), - "RET_MUSIC_RHYTHM_SONG_LOCKED" => Some(Self::RetMusicRhythmSongLocked), - "RET_MUSIC_RHYTHM_TRACK_LOCKED" => Some(Self::RetMusicRhythmTrackLocked), - "RET_MUSIC_RHYTHM_LEVEL_NOT_UNLOCK" => { - Some(Self::RetMusicRhythmLevelNotUnlock) - } - "RET_MUSIC_RHYTHM_SONG_SFX_LOCKED" => Some(Self::RetMusicRhythmSongSfxLocked), - "RET_TRAIN_PARTY_COIN_NOT_ENOUGH" => Some(Self::RetTrainPartyCoinNotEnough), - "RET_TRAIN_PARTY_DIY_TAG_NOT_MATCH" => { - Some(Self::RetTrainPartyDiyTagNotMatch) - } - "RET_TRAIN_PARTY_USE_CARD_MOBILITY_NOT_ENOUGH" => { - Some(Self::RetTrainPartyUseCardMobilityNotEnough) - } - "RET_TRAIN_PARTY_AREA_UNLOCK_COIN_NOT_ENOUGH" => { - Some(Self::RetTrainPartyAreaUnlockCoinNotEnough) - } - "RET_TAROT_BOOK_ENERGY_NOT_ENOUGH" => Some(Self::RetTarotBookEnergyNotEnough), - "RET_TAROT_BOOK_PACK_NOT_AVAILABLE" => { - Some(Self::RetTarotBookPackNotAvailable) - } - "RET_TAROT_BOOK_STORY_ALREADY_UNLOCK" => { - Some(Self::RetTarotBookStoryAlreadyUnlock) - } - "RET_TAROT_BOOK_CARD_NOT_ENOUGH" => Some(Self::RetTarotBookCardNotEnough), - "RET_TAROT_BOOK_CLUE_NOT_ENOUGH" => Some(Self::RetTarotBookClueNotEnough), - "RET_TAROT_BOOK_UNLOCK_STORY_CARD_NOT_SAME" => { - Some(Self::RetTarotBookUnlockStoryCardNotSame) - } - "RET_TAROT_BOOK_STORY_NOT_UNLOCK" => Some(Self::RetTarotBookStoryNotUnlock), - "RET_TAROT_BOOK_STORY_ALREADY_FINISH" => { - Some(Self::RetTarotBookStoryAlreadyFinish) - } - "RET_TAROT_BOOK_INTERACTION_ALREADY_FINISH" => { - Some(Self::RetTarotBookInteractionAlreadyFinish) - } - "RET_CHIMERA_CHIMERA_NOT_UNLOCK" => Some(Self::RetChimeraChimeraNotUnlock), - "RET_CHIMERA_CHIMERA_DUPLICATED" => Some(Self::RetChimeraChimeraDuplicated), - "RET_CHIMERA_CHIMERA_TYPE_ERROR" => Some(Self::RetChimeraChimeraTypeError), - "RET_CHIMERA_WORK_MISMATCH_ROUND" => Some(Self::RetChimeraWorkMismatchRound), - "RET_CHIMERA_WORK_ROUND_OPTION_NOT_MEET" => { - Some(Self::RetChimeraWorkRoundOptionNotMeet) - } - "RET_CHIMERA_ENDLESS_NOT_UNLOCK" => Some(Self::RetChimeraEndlessNotUnlock), - "RET_CHIMERA_IN_ENDLESS" => Some(Self::RetChimeraInEndless), - "RET_CHIMERA_NOT_IN_ENDLESS" => Some(Self::RetChimeraNotInEndless), - "RET_CHIMERA_CHIMERA_FALL_IN_ENDLESS" => { - Some(Self::RetChimeraChimeraFallInEndless) - } - "RET_PLANET_FES_AVATAR_NOT_EXIST" => Some(Self::RetPlanetFesAvatarNotExist), - "RET_PLANET_FES_LAND_NOT_EXIST" => Some(Self::RetPlanetFesLandNotExist), - "RET_PLANET_FES_ITEM_NOT_ENOUGH" => Some(Self::RetPlanetFesItemNotEnough), - "RET_PLANET_FES_LAND_ALREADY_UNLOCK" => { - Some(Self::RetPlanetFesLandAlreadyUnlock) - } - "RET_PLANET_FES_WORK_AVATAR_REPEAT" => { - Some(Self::RetPlanetFesWorkAvatarRepeat) - } - "RET_PLANET_FES_WORK_AVATAR_TYPE_NOT_MATCH" => { - Some(Self::RetPlanetFesWorkAvatarTypeNotMatch) - } - "RET_PLANET_FES_ACTIVITY_NOT_OPEN" => Some(Self::RetPlanetFesActivityNotOpen), - "RET_PLANET_FES_SKILLTREE_PHASE_NOT_UNLOCK" => { - Some(Self::RetPlanetFesSkilltreePhaseNotUnlock) - } - "RET_PLANET_FES_SKILL_NOT_UNLOCK" => Some(Self::RetPlanetFesSkillNotUnlock), - "RET_PLANET_FES_CONFIG_ERROR" => Some(Self::RetPlanetFesConfigError), - "RET_PLANET_FES_NOT_IN_BUSINESS_DAY" => { - Some(Self::RetPlanetFesNotInBusinessDay) - } - "RET_PLANET_FES_EVENT_LOCKED" => Some(Self::RetPlanetFesEventLocked), - "RET_PLANET_FES_EVENT_FINISHED" => Some(Self::RetPlanetFesEventFinished), - "RET_PLANET_FES_EVENT_IN_CD" => Some(Self::RetPlanetFesEventInCd), - "RET_PLANET_FES_EVENT_ALREADY_IN_STATE" => { - Some(Self::RetPlanetFesEventAlreadyInState) - } - "RET_PLANET_FES_EVENT_NO_WORK_AVATAR" => { - Some(Self::RetPlanetFesEventNoWorkAvatar) - } - "RET_PLANET_FES_EVENT_PROCESSING_CANNOT_DISAPPEAR" => { - Some(Self::RetPlanetFesEventProcessingCannotDisappear) - } - "RET_PLANET_FES_EVENT_OPTION_PHASE_WRONG" => { - Some(Self::RetPlanetFesEventOptionPhaseWrong) - } - "RET_PLANET_FES_FUNCTION_NOT_UNLOCK" => { - Some(Self::RetPlanetFesFunctionNotUnlock) - } - "RET_PLANET_FES_REWARD_ALREADY_TAKEN" => { - Some(Self::RetPlanetFesRewardAlreadyTaken) - } - "RET_PLANET_FES_EVENT_GAME_NOT_ACTIVE" => { - Some(Self::RetPlanetFesEventGameNotActive) - } - "RET_PLANET_FES_REGION_PROGRESS_NOT_ENOUGH" => { - Some(Self::RetPlanetFesRegionProgressNotEnough) - } - "RET_PLANET_FES_FRIEND_ITEM_NOT_ENOUGH" => { - Some(Self::RetPlanetFesFriendItemNotEnough) - } - "RET_PLANET_FES_PIECE_PERMISSION_BAN" => { - Some(Self::RetPlanetFesPiecePermissionBan) - } - "RET_PLANET_FES_PIECE_OFFER_NOT_EXIST" => { - Some(Self::RetPlanetFesPieceOfferNotExist) - } - "RET_PLANET_FES_PIECE_APPLY_IN_STACK_TOO_MUCH" => { - Some(Self::RetPlanetFesPieceApplyInStackTooMuch) - } - "RET_PLANET_FES_PIECE_APPLY_NOT_EXIST" => { - Some(Self::RetPlanetFesPieceApplyNotExist) - } - "RET_PLANET_FES_GET_FRIEND_RANKING_LIST_IN_CD" => { - Some(Self::RetPlanetFesGetFriendRankingListInCd) - } - "RET_PLANET_FES_GIVE_PIECE_OWNED_BY_TARGET" => { - Some(Self::RetPlanetFesGivePieceOwnedByTarget) - } - "RET_PLANET_FES_LEVEL_MAX" => Some(Self::RetPlanetFesLevelMax), - "RET_PLANET_FES_EXCLUSIVE_EVENT" => Some(Self::RetPlanetFesExclusiveEvent), - "RET_MARBLE_SEAL_ALREADY_UNLOCKED" => { - Some(Self::RetMarbleSealAlreadyUnlocked) - } - "RET_MARBLE_SEAL_SHOP_ITEM_NOT_ENOUGH" => { - Some(Self::RetMarbleSealShopItemNotEnough) - } - "RET_MARBLE_SEAL_LOCKED" => Some(Self::RetMarbleSealLocked), - "RET_CAKE_RACE_FIELD_LOCKED" => Some(Self::RetCakeRaceFieldLocked), - "RET_CAKE_RACE_FIELD_COST_NOT_ENOUGH" => { - Some(Self::RetCakeRaceFieldCostNotEnough) - } - "RET_CAKE_RACE_FIELD_PVP_ONLY" => Some(Self::RetCakeRaceFieldPvpOnly), - "RET_CAKE_RACE_ALREADY_IN_GAME" => Some(Self::RetCakeRaceAlreadyInGame), - "RET_CAKE_RACE_GET_FRIEND_RANKING_LIST_IN_CD" => { - Some(Self::RetCakeRaceGetFriendRankingListInCd) - } - "RET_CAKE_RACE_LIKE_FRIEND_TARGET_NOT_FRIEND" => { - Some(Self::RetCakeRaceLikeFriendTargetNotFriend) - } - "RET_CAKE_RACE_LIKE_FRIEND_DAILY_ALREADY_LIKED" => { - Some(Self::RetCakeRaceLikeFriendDailyAlreadyLiked) - } - "RET_CAKE_RACE_LIKE_FRIEND_IN_CD" => Some(Self::RetCakeRaceLikeFriendInCd), - "RET_FATE_STATUS_NOT_MATCH" => Some(Self::RetFateStatusNotMatch), - "RET_FATE_BUFF_SLOT_NOT_ENOUGH" => Some(Self::RetFateBuffSlotNotEnough), - "RET_FATE_COIN_NOT_ENOUGH" => Some(Self::RetFateCoinNotEnough), - "RET_FATE_REIJU_REROLL_COUNT_NOT_ENOUGH" => { - Some(Self::RetFateReijuRerollCountNotEnough) - } - "RET_FATE_BUFF_LEVEL_MAX" => Some(Self::RetFateBuffLevelMax), - "RET_FATE_ACTION_QUEUE_NOT_EMPTY" => Some(Self::RetFateActionQueueNotEmpty), - "RET_PARKOUR_ACTIVITY_NOT_OPEN" => Some(Self::RetParkourActivityNotOpen), - "RET_PARKOUR_LEVEL_NOT_UNLOCK" => Some(Self::RetParkourLevelNotUnlock), - "RET_PARKOUR_RAIL_BALL_NOT_ALLOWED" => { - Some(Self::RetParkourRailBallNotAllowed) - } - "RET_PARKOUR_NOT_IN_LEVEL" => Some(Self::RetParkourNotInLevel), - "RET_PARKOUR_LEVEL_NOT_MATCH" => Some(Self::RetParkourLevelNotMatch), - "RET_PARKOUR_NOT_PLAYED_ALL_NON_STORY_LEVEL" => { - Some(Self::RetParkourNotPlayedAllNonStoryLevel) - } - "RET_FTC_LIMIT_NAME_CHANGE" => Some(Self::RetFtcLimitNameChange), - "RET_ELF_RESTAURANT_CONFIG_ERROR" => Some(Self::RetElfRestaurantConfigError), - "RET_ELF_RESTAURANT_FIELD_ALREADY_BOUGHT" => { - Some(Self::RetElfRestaurantFieldAlreadyBought) - } - "RET_ELF_RESTAURANT_FIELD_NOT_BOUGHT" => { - Some(Self::RetElfRestaurantFieldNotBought) - } - "RET_ELF_RESTAURANT_FIELD_CELL_INVALID" => { - Some(Self::RetElfRestaurantFieldCellInvalid) - } - "RET_ELF_RESTAURANT_FARM_TYPE_INVALID" => { - Some(Self::RetElfRestaurantFarmTypeInvalid) - } - "RET_ELF_RESTAURANT_SHOP_ITEM_NOT_EXIST" => { - Some(Self::RetElfRestaurantShopItemNotExist) - } - "RET_ELF_RESTAURANT_SHOP_ITEM_COUNT_LIMIT" => { - Some(Self::RetElfRestaurantShopItemCountLimit) - } - "RET_ELF_RESTAURANT_TRADE_ORDER_NOT_EXIST" => { - Some(Self::RetElfRestaurantTradeOrderNotExist) - } - "RET_ELF_RESTAURANT_NO_REWARD" => Some(Self::RetElfRestaurantNoReward), - "RET_ELF_RESTAURANT_NOT_INIT" => Some(Self::RetElfRestaurantNotInit), - "RET_GRID_FIGHT_CONF_MISS" => Some(Self::RetGridFightConfMiss), - "RET_GRID_FIGHT_ROLE_NOT_EXIST" => Some(Self::RetGridFightRoleNotExist), - "RET_GRID_FIGHT_ROLE_ALREADY_EXIST" => { - Some(Self::RetGridFightRoleAlreadyExist) - } - "RET_GRID_FIGHT_POS_EXIST_ROLE" => Some(Self::RetGridFightPosExistRole), - "RET_GRID_FIGHT_POS_NOT_VALID" => Some(Self::RetGridFightPosNotValid), - "RET_GRID_FIGHT_COIN_NOT_ENOUGH" => Some(Self::RetGridFightCoinNotEnough), - "RET_GRID_FIGHT_EQUIP_NOT_EXIST" => Some(Self::RetGridFightEquipNotExist), - "RET_GRID_FIGHT_EQUIP_CANNOT_DRESS" => { - Some(Self::RetGridFightEquipCannotDress) - } - "RET_GRID_FIGHT_PARAM_NOT_MATCH" => Some(Self::RetGridFightParamNotMatch), - "RET_GRID_FIGHT_EQUIP_DRESS_SAME" => Some(Self::RetGridFightEquipDressSame), - "RET_GRID_FIGHT_EQUIP_DRESSED" => Some(Self::RetGridFightEquipDressed), - "RET_GRID_FIGHT_RANDOM_ERR" => Some(Self::RetGridFightRandomErr), - "RET_GRID_FIGHT_GOODS_SOLD" => Some(Self::RetGridFightGoodsSold), - "RET_GRID_FIGHT_ITEM_NOT_ENOUGH" => Some(Self::RetGridFightItemNotEnough), - "RET_GRID_FIGHT_GAMEPLAY_LEVEL_MAX" => { - Some(Self::RetGridFightGameplayLevelMax) - } - "RET_GRID_FIGHT_ALREADY_IN_GAMEPLAY" => { - Some(Self::RetGridFightAlreadyInGameplay) - } - "RET_GRID_FIGHT_EQUIP_TRAIT_LIMIT" => Some(Self::RetGridFightEquipTraitLimit), - "RET_GRID_FIGHT_REGION_FULL" => Some(Self::RetGridFightRegionFull), - "RET_GRID_FIGHT_TEMPORARY_EQUIP" => Some(Self::RetGridFightTemporaryEquip), - "RET_GRID_FIGHT_NOT_IN_GAMEPLAY" => Some(Self::RetGridFightNotInGameplay), - "RET_GRID_FIGHT_ADD_EQUIP_FAIL" => Some(Self::RetGridFightAddEquipFail), - "RET_GRID_FIGHT_ADD_CONSUMABLE_FAIL" => { - Some(Self::RetGridFightAddConsumableFail) - } - "RET_GRID_FIGHT_CREATE_ROLE_FAIL" => Some(Self::RetGridFightCreateRoleFail), - "RET_GRID_FIGHT_CANNOT_UPGRADE" => Some(Self::RetGridFightCannotUpgrade), - "RET_GRID_FIGHT_NO_EMPTY_POS" => Some(Self::RetGridFightNoEmptyPos), - "RET_GRID_FIGHT_FORGE_NOT_EXIST" => Some(Self::RetGridFightForgeNotExist), - "RET_GRID_FIGHT_ADD_FORGE_FAIL" => Some(Self::RetGridFightAddForgeFail), - "RET_GRID_FIGHT_ORB_NOT_ENOUGH" => Some(Self::RetGridFightOrbNotEnough), - "RET_GRID_FIGHT_ORB_NOT_EXIST" => Some(Self::RetGridFightOrbNotExist), - "RET_GRID_FIGHT_SUPPLY_NO_REROLL" => Some(Self::RetGridFightSupplyNoReroll), - "RET_GRID_FIGHT_HIGH_RARIY_FOR_COPY" => { - Some(Self::RetGridFightHighRariyForCopy) - } - "RET_GRID_FIGHT_ROLE_FULL_FOR_COPY" => { - Some(Self::RetGridFightRoleFullForCopy) - } - "RET_GRID_FIGHT_UNDRESS_EQUIP_FAIL" => { - Some(Self::RetGridFightUndressEquipFail) - } - "RET_GRID_FIGHT_DATA_LOCKED" => Some(Self::RetGridFightDataLocked), - "RET_GRID_FIGHT_SAME_ROLE_IN_BATTLE" => { - Some(Self::RetGridFightSameRoleInBattle) - } - "RET_GRID_FIGHT_SUPPLY_ALL_SELECTED" => { - Some(Self::RetGridFightSupplyAllSelected) - } - "RET_GRID_FIGHT_TRAIT_TRACK_MAX" => Some(Self::RetGridFightTraitTrackMax), - "RET_GRID_FIGHT_POS_BAN" => Some(Self::RetGridFightPosBan), - "RET_GRID_FIGHT_POS_EXIST_ITEM" => Some(Self::RetGridFightPosExistItem), - "RET_GRID_FIGHT_TALENT_ENABLED" => Some(Self::RetGridFightTalentEnabled), - "RET_GRID_FIGHT_TALENT_COST_NOT_ENOUGH" => { - Some(Self::RetGridFightTalentCostNotEnough) - } - "RET_GRID_FIGHT_TALENT_PRE_NOT_ENABLED" => { - Some(Self::RetGridFightTalentPreNotEnabled) - } - "RET_GRID_FIGHT_DIVISION_INVALID" => Some(Self::RetGridFightDivisionInvalid), - "RET_GRID_FIGHT_TALENT_PERMANENT_LIMIT" => { - Some(Self::RetGridFightTalentPermanentLimit) - } - "RET_GRID_FIGHT_WEEKLY_REWARD_TAKEN" => { - Some(Self::RetGridFightWeeklyRewardTaken) - } - "RET_GRID_FIGHT_WEEKLY_SCORE_NOT_ENOUGH" => { - Some(Self::RetGridFightWeeklyScoreNotEnough) - } - "RET_GRID_FIGHT_CRAFT_COST_EQUIP_DRESSED" => { - Some(Self::RetGridFightCraftCostEquipDressed) - } - "RET_GRID_FIGHT_CREATE_NPC_FAIL" => Some(Self::RetGridFightCreateNpcFail), - "RET_GRID_FIGHT_NO_POS_CAN_PLACE" => Some(Self::RetGridFightNoPosCanPlace), - "RET_GRID_FIGHT_NPC_POS_LIMIT" => Some(Self::RetGridFightNpcPosLimit), - "RET_GRID_FIGHT_CRAFT_EQUIP_ON_DIFF_ROLE" => { - Some(Self::RetGridFightCraftEquipOnDiffRole) - } - "RET_GRID_FIGHT_GLOBAL_HP_NOT_ENOUGH" => { - Some(Self::RetGridFightGlobalHpNotEnough) - } - "RET_GRID_FIGHT_EQUIP_TRACK_MAX" => Some(Self::RetGridFightEquipTrackMax), - "RET_GRID_FIGHT_NPC_NOT_EXIST" => Some(Self::RetGridFightNpcNotExist), - "RET_GRID_FIGHT_RECYCLE_ROLE_IN_TUTORIAL" => { - Some(Self::RetGridFightRecycleRoleInTutorial) - } - "RET_GRID_FIGHT_TUTORIAL_TASK_NOT_FINISHED" => { - Some(Self::RetGridFightTutorialTaskNotFinished) - } - "RET_GRID_FIGHT_TUTORIAL_UPDATE_POS_ININVALID" => { - Some(Self::RetGridFightTutorialUpdatePosIninvalid) - } - "RET_GRID_FIGHT_NO_REROLL_CNT" => Some(Self::RetGridFightNoRerollCnt), - "RET_GRID_FIGHT_TUTORIAL_REFRESH_SHOP_LIMITED" => { - Some(Self::RetGridFightTutorialRefreshShopLimited) - } - "RET_GRID_FIGHT_TUTORIAL_BUY_SHOP_LIMITED" => { - Some(Self::RetGridFightTutorialBuyShopLimited) - } - "RET_GRID_FIGHT_OC_UNLOCK_QUEST_NOT_FINISHED" => { - Some(Self::RetGridFightOcUnlockQuestNotFinished) - } - "RET_GRID_FIGHT_FORGE_LIMIT_SELECT_IDX_IN_TUTORIAL" => { - Some(Self::RetGridFightForgeLimitSelectIdxInTutorial) - } - "RET_GRID_FIGHT_GAME_REF_ID_TOO_LONG" => { - Some(Self::RetGridFightGameRefIdTooLong) - } - "RET_GRID_FIGHT_FEATURE_SWITCH_CLOSED" => { - Some(Self::RetGridFightFeatureSwitchClosed) - } - "RET_GRID_FIGHT_EQUIP_TRAIT_EXCLUSIVE" => { - Some(Self::RetGridFightEquipTraitExclusive) - } - "RET_GRID_FIGHT_SHOP_LOCKED" => Some(Self::RetGridFightShopLocked), - "RET_GRID_FIGHT_BUY_EXP_LOCKED" => Some(Self::RetGridFightBuyExpLocked), - "RET_HIPPLEN_AGENDA_WORK_UNAVAIBLE" => { - Some(Self::RetHipplenAgendaWorkUnavaible) - } - "RET_HIPPLEN_AGENDA_WORK_CONFLICT" => { - Some(Self::RetHipplenAgendaWorkConflict) - } - "RET_HIPPLEN_AGENDA_ACTION_LACK" => Some(Self::RetHipplenAgendaActionLack), - "RET_HIPPLEN_AGENDA_ENERGY_LACK" => Some(Self::RetHipplenAgendaEnergyLack), - "RET_HIPPLEN_AGENDA_NO_WORK_FOR_SETTLE" => { - Some(Self::RetHipplenAgendaNoWorkForSettle) - } - "RET_HIPPLEN_AGENDA_SETTLE_WORK_MISMATCH" => { - Some(Self::RetHipplenAgendaSettleWorkMismatch) - } - "RET_HIPPLEN_PHASE_CONFIG_NO_FOUND" => { - Some(Self::RetHipplenPhaseConfigNoFound) - } - "RET_HIPPLEN_TRIAL_MISSION_NOT_FINISHED" => { - Some(Self::RetHipplenTrialMissionNotFinished) - } - "RET_HIPPLEN_AGENDA_SET_WHEN_TRIAL" => { - Some(Self::RetHipplenAgendaSetWhenTrial) - } - "RET_HIPPLEN_AGENDA_OPEN_CYCLE_FAIL" => { - Some(Self::RetHipplenAgendaOpenCycleFail) - } - "RET_HIPPLEN_AGENDA_SETTLE_PARA_INVALID" => { - Some(Self::RetHipplenAgendaSettleParaInvalid) - } - "RET_HIPPLEN_AGENDA_WORK_SET_TWICE" => { - Some(Self::RetHipplenAgendaWorkSetTwice) - } - "RET_HIPPLEN_AGENDA_WORK_SETTLE_TWICE" => { - Some(Self::RetHipplenAgendaWorkSettleTwice) - } - "RET_HIPPLEN_OUTFIT_NOT_WEARED" => Some(Self::RetHipplenOutfitNotWeared), - "RET_HIPPLEN_OUTFIT_NOT_OWN" => Some(Self::RetHipplenOutfitNotOwn), - "RET_HIPPLEN_OUTFIT_INVALID" => Some(Self::RetHipplenOutfitInvalid), - "RET_HIPPLEN_OUTFIT_TYPE_WEARED" => Some(Self::RetHipplenOutfitTypeWeared), - "RET_HIPPLEN_AGENDA_WORK_EMPTY" => Some(Self::RetHipplenAgendaWorkEmpty), - "RET_HIPPLEN_ENDING_LOCK" => Some(Self::RetHipplenEndingLock), - "RET_HIPPLEN_ENDING_REWARD_ALREADY_TAKEN" => { - Some(Self::RetHipplenEndingRewardAlreadyTaken) - } - "RET_HIPPLEN_TRAIT_LOCK" => Some(Self::RetHipplenTraitLock), - "RET_HIPPLEN_AGENDA_ACTION_LEFT" => Some(Self::RetHipplenAgendaActionLeft), - "RET_HIPPLEN_BACKWARD_TRIAL_MISSION_NOT_FINISHED" => { - Some(Self::RetHipplenBackwardTrialMissionNotFinished) - } - "RET_RELICBOX_HAS_PENDING_RELIC" => Some(Self::RetRelicboxHasPendingRelic), - "RET_RELICBOX_NO_PENDING_RELIC" => Some(Self::RetRelicboxNoPendingRelic), - "RET_RELICBOX_TARGET_AVATAR_INVALID" => { - Some(Self::RetRelicboxTargetAvatarInvalid) - } - "RET_RELICBOX_TARGET_RELIC_SET_INVALID" => { - Some(Self::RetRelicboxTargetRelicSetInvalid) - } - "RET_RELICBOX_ALLOW_POSITION_EMPTY" => { - Some(Self::RetRelicboxAllowPositionEmpty) - } - "RET_RELICBOX_RELIC_CONFIG_NOT_FOUND" => { - Some(Self::RetRelicboxRelicConfigNotFound) - } - "RET_RELICBOX_MAIN_AFFIX_ID_INVALID" => { - Some(Self::RetRelicboxMainAffixIdInvalid) - } - "RET_RELICBOX_SUB_AFFIX_INVALID" => Some(Self::RetRelicboxSubAffixInvalid), - "RET_RELICBOX_RELIC_CREATE_FAIL" => Some(Self::RetRelicboxRelicCreateFail), - "RET_RELICBOX_LIB_CONFIG_NOT_FOUND" => { - Some(Self::RetRelicboxLibConfigNotFound) - } - "RET_RELICBOX_SHIELD_LOCK" => Some(Self::RetRelicboxShieldLock), - "RET_RELICBOX_CUSTOM_AVATAR_INVALID" => { - Some(Self::RetRelicboxCustomAvatarInvalid) - } - "RET_RELICBOX_CUSTOM_RELIC_SET_INVALID" => { - Some(Self::RetRelicboxCustomRelicSetInvalid) - } - "RET_RELICBOX_RELIC_IN_BOX" => Some(Self::RetRelicboxRelicInBox), - "RET_RELICBOX_OPEN_TARGET_CONFLICT" => { - Some(Self::RetRelicboxOpenTargetConflict) - } - "RET_RELICBOX_RELIC_TYPE_INVALID" => Some(Self::RetRelicboxRelicTypeInvalid), + "ICDIGIEKFLA_MPFJLFAOCEB" => Some(Self::IcdigiekflaMpfjlfaoceb), + "ICDIGIEKFLA_GJHIEBGNOCE" => Some(Self::IcdigiekflaGjhiebgnoce), + "ICDIGIEKFLA_JBGMNIPDANJ" => Some(Self::IcdigiekflaJbgmnipdanj), + "ICDIGIEKFLA_KGNBGOBMOAD" => Some(Self::IcdigiekflaKgnbgobmoad), + "ICDIGIEKFLA_EBPNGCILPOA" => Some(Self::IcdigiekflaEbpngcilpoa), + "ICDIGIEKFLA_BNGDNHIIAEL" => Some(Self::IcdigiekflaBngdnhiiael), + "ICDIGIEKFLA_OCHFEMHGHIN" => Some(Self::IcdigiekflaOchfemhghin), + "ICDIGIEKFLA_KKNBMEFDBKA" => Some(Self::IcdigiekflaKknbmefdbka), + "ICDIGIEKFLA_HHNGMDGGLDO" => Some(Self::IcdigiekflaHhngmdggldo), + "ICDIGIEKFLA_FGONEIBCFJB" => Some(Self::IcdigiekflaFgoneibcfjb), + "ICDIGIEKFLA_PBAGABIKDHO" => Some(Self::IcdigiekflaPbagabikdho), + "ICDIGIEKFLA_FPFCFAAOHMI" => Some(Self::IcdigiekflaFpfcfaaohmi), + "ICDIGIEKFLA_PJHCMAIPGJM" => Some(Self::IcdigiekflaPjhcmaipgjm), + "ICDIGIEKFLA_DFMDOJHDIJI" => Some(Self::IcdigiekflaDfmdojhdiji), + "ICDIGIEKFLA_HFALKHNLMAN" => Some(Self::IcdigiekflaHfalkhnlman), + "ICDIGIEKFLA_KFOOKFOHICB" => Some(Self::IcdigiekflaKfookfohicb), + "ICDIGIEKFLA_MOEGAKBEADK" => Some(Self::IcdigiekflaMoegakbeadk), + "ICDIGIEKFLA_MPNOILANEIC" => Some(Self::IcdigiekflaMpnoilaneic), + "ICDIGIEKFLA_NPOCNBKIIHM" => Some(Self::IcdigiekflaNpocnbkiihm), + "ICDIGIEKFLA_HPBKFKKBCAP" => Some(Self::IcdigiekflaHpbkfkkbcap), + "ICDIGIEKFLA_JOMPKCMBGEG" => Some(Self::IcdigiekflaJompkcmbgeg), + "ICDIGIEKFLA_PDDIKBLFOJD" => Some(Self::IcdigiekflaPddikblfojd), + "ICDIGIEKFLA_OHAELPEJAJP" => Some(Self::IcdigiekflaOhaelpejajp), + "ICDIGIEKFLA_KNLPKDKPGOG" => Some(Self::IcdigiekflaKnlpkdkpgog), + "ICDIGIEKFLA_PLODAKCIOPP" => Some(Self::IcdigiekflaPlodakciopp), + "ICDIGIEKFLA_LMMNFKOGFFB" => Some(Self::IcdigiekflaLmmnfkogffb), + "ICDIGIEKFLA_LNMGCPDHFBP" => Some(Self::IcdigiekflaLnmgcpdhfbp), + "ICDIGIEKFLA_HMIFEAAACFN" => Some(Self::IcdigiekflaHmifeaaacfn), + "ICDIGIEKFLA_LELIOGDDELB" => Some(Self::IcdigiekflaLeliogddelb), + "ICDIGIEKFLA_CNPNMHFFHKB" => Some(Self::IcdigiekflaCnpnmhffhkb), + "ICDIGIEKFLA_GGPHMJPFMKK" => Some(Self::IcdigiekflaGgphmjpfmkk), + "ICDIGIEKFLA_BPBAHMENINM" => Some(Self::IcdigiekflaBpbahmeninm), + "ICDIGIEKFLA_EJFKPNCOLEG" => Some(Self::IcdigiekflaEjfkpncoleg), + "ICDIGIEKFLA_LAEBHNEBDOG" => Some(Self::IcdigiekflaLaebhnebdog), + "ICDIGIEKFLA_JNAKGLNLJOM" => Some(Self::IcdigiekflaJnakglnljom), + "ICDIGIEKFLA_HKEIPKINIAF" => Some(Self::IcdigiekflaHkeipkiniaf), + "ICDIGIEKFLA_EMLLIICLENG" => Some(Self::IcdigiekflaEmlliicleng), + "ICDIGIEKFLA_LEALKHAEJAG" => Some(Self::IcdigiekflaLealkhaejag), + "ICDIGIEKFLA_JEEOOMABLPA" => Some(Self::IcdigiekflaJeeoomablpa), + "ICDIGIEKFLA_CDACJCIMNAJ" => Some(Self::IcdigiekflaCdacjcimnaj), + "ICDIGIEKFLA_FOPNIAJDFGJ" => Some(Self::IcdigiekflaFopniajdfgj), + "ICDIGIEKFLA_NFBMHENBNEL" => Some(Self::IcdigiekflaNfbmhenbnel), + "ICDIGIEKFLA_PLLADHKMGHJ" => Some(Self::IcdigiekflaPlladhkmghj), + "ICDIGIEKFLA_ADBIKENDFOF" => Some(Self::IcdigiekflaAdbikendfof), + "ICDIGIEKFLA_MCLNLALJCOB" => Some(Self::IcdigiekflaMclnlaljcob), + "ICDIGIEKFLA_DCKGJMKBKAJ" => Some(Self::IcdigiekflaDckgjmkbkaj), + "ICDIGIEKFLA_MIHHCMPHCNM" => Some(Self::IcdigiekflaMihhcmphcnm), + "ICDIGIEKFLA_IBGLKMGHIAF" => Some(Self::IcdigiekflaIbglkmghiaf), + "ICDIGIEKFLA_PLDFJGKLCHI" => Some(Self::IcdigiekflaPldfjgklchi), + "ICDIGIEKFLA_DHLDAOICFHM" => Some(Self::IcdigiekflaDhldaoicfhm), + "ICDIGIEKFLA_EBDKMKONAOG" => Some(Self::IcdigiekflaEbdkmkonaog), + "ICDIGIEKFLA_NBKNDKIEPKN" => Some(Self::IcdigiekflaNbkndkiepkn), + "ICDIGIEKFLA_EEDBDNMCPEO" => Some(Self::IcdigiekflaEedbdnmcpeo), + "ICDIGIEKFLA_LMEKLNELOJC" => Some(Self::IcdigiekflaLmeklnelojc), + "ICDIGIEKFLA_KPMGBKIGOCN" => Some(Self::IcdigiekflaKpmgbkigocn), + "ICDIGIEKFLA_NFAHIIJJEHK" => Some(Self::IcdigiekflaNfahiijjehk), + "ICDIGIEKFLA_GCABFGAJGGB" => Some(Self::IcdigiekflaGcabfgajggb), + "ICDIGIEKFLA_MBEOBDAEMAD" => Some(Self::IcdigiekflaMbeobdaemad), + "ICDIGIEKFLA_GEIKGHJCBML" => Some(Self::IcdigiekflaGeikghjcbml), + "ICDIGIEKFLA_NDAPDBJEJLL" => Some(Self::IcdigiekflaNdapdbjejll), + "ICDIGIEKFLA_BHKAAAFIAAN" => Some(Self::IcdigiekflaBhkaaafiaan), + "ICDIGIEKFLA_MDFHLCEJCED" => Some(Self::IcdigiekflaMdfhlcejced), + "ICDIGIEKFLA_EGDPBGFFAHH" => Some(Self::IcdigiekflaEgdpbgffahh), + "ICDIGIEKFLA_GBCHONOKDMI" => Some(Self::IcdigiekflaGbchonokdmi), + "ICDIGIEKFLA_PBLLHIMLPIO" => Some(Self::IcdigiekflaPbllhimlpio), + "ICDIGIEKFLA_MNJJIBGFEFP" => Some(Self::IcdigiekflaMnjjibgfefp), + "ICDIGIEKFLA_PDPAAPPMAHM" => Some(Self::IcdigiekflaPdpaappmahm), + "ICDIGIEKFLA_ODJOLJGMHFO" => Some(Self::IcdigiekflaOdjoljgmhfo), + "ICDIGIEKFLA_EOPNBHFLODG" => Some(Self::IcdigiekflaEopnbhflodg), + "ICDIGIEKFLA_JPHOCNLCLNE" => Some(Self::IcdigiekflaJphocnlclne), + "ICDIGIEKFLA_BNMDEKCLOOL" => Some(Self::IcdigiekflaBnmdekclool), + "ICDIGIEKFLA_EHDOHCAEDHF" => Some(Self::IcdigiekflaEhdohcaedhf), + "ICDIGIEKFLA_DOIMLJFAECH" => Some(Self::IcdigiekflaDoimljfaech), + "ICDIGIEKFLA_CNKEGNPIAEH" => Some(Self::IcdigiekflaCnkegnpiaeh), + "ICDIGIEKFLA_PBKCOEPJBHB" => Some(Self::IcdigiekflaPbkcoepjbhb), + "ICDIGIEKFLA_LHLJNEJPFLD" => Some(Self::IcdigiekflaLhljnejpfld), + "ICDIGIEKFLA_BAHENAANLMI" => Some(Self::IcdigiekflaBahenaanlmi), + "ICDIGIEKFLA_AKDDEBEEMEE" => Some(Self::IcdigiekflaAkddebeemee), + "ICDIGIEKFLA_FNPCBJOGJCE" => Some(Self::IcdigiekflaFnpcbjogjce), + "ICDIGIEKFLA_BEJDIMNLFJN" => Some(Self::IcdigiekflaBejdimnlfjn), + "ICDIGIEKFLA_PEMHNKPFIGN" => Some(Self::IcdigiekflaPemhnkpfign), + "ICDIGIEKFLA_IMIEMAMOLFO" => Some(Self::IcdigiekflaImiemamolfo), + "ICDIGIEKFLA_DONAAOLPJIJ" => Some(Self::IcdigiekflaDonaaolpjij), + "ICDIGIEKFLA_DEPLCGFJCEE" => Some(Self::IcdigiekflaDeplcgfjcee), + "ICDIGIEKFLA_MGIMIAAAFNF" => Some(Self::IcdigiekflaMgimiaaafnf), + "ICDIGIEKFLA_BGKPKMNEACE" => Some(Self::IcdigiekflaBgkpkmneace), + "ICDIGIEKFLA_LDBJEBGBLOC" => Some(Self::IcdigiekflaLdbjebgbloc), + "ICDIGIEKFLA_KIACHAMCPBN" => Some(Self::IcdigiekflaKiachamcpbn), + "ICDIGIEKFLA_AGBBPGCHNEM" => Some(Self::IcdigiekflaAgbbpgchnem), + "ICDIGIEKFLA_IELJDEGJEPC" => Some(Self::IcdigiekflaIeljdegjepc), + "ICDIGIEKFLA_LJJLJJNDLKP" => Some(Self::IcdigiekflaLjjljjndlkp), + "ICDIGIEKFLA_MEOAFFIFFAC" => Some(Self::IcdigiekflaMeoaffiffac), + "ICDIGIEKFLA_ONFABOHIEDE" => Some(Self::IcdigiekflaOnfabohiede), + "ICDIGIEKFLA_HPJNBDPGFIN" => Some(Self::IcdigiekflaHpjnbdpgfin), + "ICDIGIEKFLA_BCJCGOMPOME" => Some(Self::IcdigiekflaBcjcgompome), + "ICDIGIEKFLA_EMMEOGKDBJE" => Some(Self::IcdigiekflaEmmeogkdbje), + "ICDIGIEKFLA_GOIDECPDLJA" => Some(Self::IcdigiekflaGoidecpdlja), + "ICDIGIEKFLA_JKBMMHDMICH" => Some(Self::IcdigiekflaJkbmmhdmich), + "ICDIGIEKFLA_EAOKPAFJAFH" => Some(Self::IcdigiekflaEaokpafjafh), + "ICDIGIEKFLA_IBMBENIKCKA" => Some(Self::IcdigiekflaIbmbenikcka), + "ICDIGIEKFLA_EKBIGJDMJEJ" => Some(Self::IcdigiekflaEkbigjdmjej), + "ICDIGIEKFLA_ICMHGJKFPIO" => Some(Self::IcdigiekflaIcmhgjkfpio), + "ICDIGIEKFLA_CLDPGCOINNF" => Some(Self::IcdigiekflaCldpgcoinnf), + "ICDIGIEKFLA_FPKNAIOLFIE" => Some(Self::IcdigiekflaFpknaiolfie), + "ICDIGIEKFLA_GJBBNJOLJAJ" => Some(Self::IcdigiekflaGjbbnjoljaj), + "ICDIGIEKFLA_OJHGAIPGFLI" => Some(Self::IcdigiekflaOjhgaipgfli), + "ICDIGIEKFLA_OFNMOCGBCKJ" => Some(Self::IcdigiekflaOfnmocgbckj), + "ICDIGIEKFLA_GKCJBKENELC" => Some(Self::IcdigiekflaGkcjbkenelc), + "ICDIGIEKFLA_CBNLILEPGCP" => Some(Self::IcdigiekflaCbnlilepgcp), + "ICDIGIEKFLA_DOHAHANCICP" => Some(Self::IcdigiekflaDohahancicp), + "ICDIGIEKFLA_AFHAEBLGCNM" => Some(Self::IcdigiekflaAfhaeblgcnm), + "ICDIGIEKFLA_OKFDOEEHLLO" => Some(Self::IcdigiekflaOkfdoeehllo), + "ICDIGIEKFLA_HFDIDNNLBLA" => Some(Self::IcdigiekflaHfdidnnlbla), + "ICDIGIEKFLA_KLIONNINGKA" => Some(Self::IcdigiekflaKlionningka), + "ICDIGIEKFLA_DKMKPBIOONJ" => Some(Self::IcdigiekflaDkmkpbioonj), + "ICDIGIEKFLA_HPGGCMNPMBA" => Some(Self::IcdigiekflaHpggcmnpmba), + "ICDIGIEKFLA_CEKBAEAIDJH" => Some(Self::IcdigiekflaCekbaeaidjh), + "ICDIGIEKFLA_BKMILKAFKKP" => Some(Self::IcdigiekflaBkmilkafkkp), + "ICDIGIEKFLA_PIKPAKLKBHG" => Some(Self::IcdigiekflaPikpaklkbhg), + "ICDIGIEKFLA_LOJKJNIAPLB" => Some(Self::IcdigiekflaLojkjniaplb), + "ICDIGIEKFLA_PBHLCJHPLPH" => Some(Self::IcdigiekflaPbhlcjhplph), + "ICDIGIEKFLA_IBLFIBLCPPO" => Some(Self::IcdigiekflaIblfiblcppo), + "ICDIGIEKFLA_ALKADDEEOJH" => Some(Self::IcdigiekflaAlkaddeeojh), + "ICDIGIEKFLA_NIDNPGONFBJ" => Some(Self::IcdigiekflaNidnpgonfbj), + "ICDIGIEKFLA_KOBGJBAGFNP" => Some(Self::IcdigiekflaKobgjbagfnp), + "ICDIGIEKFLA_POHBBNNPEDE" => Some(Self::IcdigiekflaPohbbnnpede), + "ICDIGIEKFLA_FOCNIHEIAAO" => Some(Self::IcdigiekflaFocniheiaao), + "ICDIGIEKFLA_BJJPLANHPAG" => Some(Self::IcdigiekflaBjjplanhpag), + "ICDIGIEKFLA_AANIDHCKFML" => Some(Self::IcdigiekflaAanidhckfml), + "ICDIGIEKFLA_FIKLGIFCILK" => Some(Self::IcdigiekflaFiklgifcilk), + "ICDIGIEKFLA_LJNDCNEOMBA" => Some(Self::IcdigiekflaLjndcneomba), + "ICDIGIEKFLA_MJAHDOFALNB" => Some(Self::IcdigiekflaMjahdofalnb), + "ICDIGIEKFLA_GFGLMINKNGJ" => Some(Self::IcdigiekflaGfglminkngj), + "ICDIGIEKFLA_DEMNCPAIMGH" => Some(Self::IcdigiekflaDemncpaimgh), + "ICDIGIEKFLA_BBBFDGFJHIJ" => Some(Self::IcdigiekflaBbbfdgfjhij), + "ICDIGIEKFLA_CHMFDCCMGPF" => Some(Self::IcdigiekflaChmfdccmgpf), + "ICDIGIEKFLA_FMOOEMDJBIJ" => Some(Self::IcdigiekflaFmooemdjbij), + "ICDIGIEKFLA_FFKMNCFMDFK" => Some(Self::IcdigiekflaFfkmncfmdfk), + "ICDIGIEKFLA_MAONCEANFND" => Some(Self::IcdigiekflaMaonceanfnd), + "ICDIGIEKFLA_GPJNIFOKOBC" => Some(Self::IcdigiekflaGpjnifokobc), + "ICDIGIEKFLA_FAFNBNNPDLI" => Some(Self::IcdigiekflaFafnbnnpdli), + "ICDIGIEKFLA_LIBJIOKMMFJ" => Some(Self::IcdigiekflaLibjiokmmfj), + "ICDIGIEKFLA_DIEOIIHJENL" => Some(Self::IcdigiekflaDieoiihjenl), + "ICDIGIEKFLA_GFHKEOAJHPO" => Some(Self::IcdigiekflaGfhkeoajhpo), + "ICDIGIEKFLA_FLMEJKJCFHM" => Some(Self::IcdigiekflaFlmejkjcfhm), + "ICDIGIEKFLA_DDCCIFCCDHK" => Some(Self::IcdigiekflaDdccifccdhk), + "ICDIGIEKFLA_KMAIEKBLPBK" => Some(Self::IcdigiekflaKmaiekblpbk), + "ICDIGIEKFLA_DNOEOLHNKII" => Some(Self::IcdigiekflaDnoeolhnkii), + "ICDIGIEKFLA_AEFINJKJAHP" => Some(Self::IcdigiekflaAefinjkjahp), + "ICDIGIEKFLA_IOLDKFLKBMC" => Some(Self::IcdigiekflaIoldkflkbmc), + "ICDIGIEKFLA_CIOFFJFENCL" => Some(Self::IcdigiekflaCioffjfencl), + "ICDIGIEKFLA_PJJJLLODOBC" => Some(Self::IcdigiekflaPjjjllodobc), + "ICDIGIEKFLA_HBMPPCCKGBB" => Some(Self::IcdigiekflaHbmppcckgbb), + "ICDIGIEKFLA_HOONOPPMACL" => Some(Self::IcdigiekflaHoonoppmacl), + "ICDIGIEKFLA_IEGOCCCNHCA" => Some(Self::IcdigiekflaIegocccnhca), + "ICDIGIEKFLA_BEALMHFAENC" => Some(Self::IcdigiekflaBealmhfaenc), + "ICDIGIEKFLA_CCNGNFGEHGP" => Some(Self::IcdigiekflaCcngnfgehgp), + "ICDIGIEKFLA_LKJEGBGENIA" => Some(Self::IcdigiekflaLkjegbgenia), + "ICDIGIEKFLA_OCINGDDDEBD" => Some(Self::IcdigiekflaOcingdddebd), + "ICDIGIEKFLA_IGHMMCAHMAH" => Some(Self::IcdigiekflaIghmmcahmah), + "ICDIGIEKFLA_COOJPJLMLBM" => Some(Self::IcdigiekflaCoojpjlmlbm), + "ICDIGIEKFLA_HJIMDJHMFHI" => Some(Self::IcdigiekflaHjimdjhmfhi), + "ICDIGIEKFLA_MJACNFOOEIH" => Some(Self::IcdigiekflaMjacnfooeih), + "ICDIGIEKFLA_MAKBIJCLMDO" => Some(Self::IcdigiekflaMakbijclmdo), + "ICDIGIEKFLA_OEJPJMFBEFF" => Some(Self::IcdigiekflaOejpjmfbeff), + "ICDIGIEKFLA_FNEAODILHJC" => Some(Self::IcdigiekflaFneaodilhjc), + "ICDIGIEKFLA_AEAJCIKHMHP" => Some(Self::IcdigiekflaAeajcikhmhp), + "ICDIGIEKFLA_HAICMIFHAKG" => Some(Self::IcdigiekflaHaicmifhakg), + "ICDIGIEKFLA_DGIABGLNCCL" => Some(Self::IcdigiekflaDgiabglnccl), + "ICDIGIEKFLA_LKCBOJOMEDE" => Some(Self::IcdigiekflaLkcbojomede), + "ICDIGIEKFLA_KNIJMPAPHND" => Some(Self::IcdigiekflaKnijmpaphnd), + "ICDIGIEKFLA_BJFMFOMMBLG" => Some(Self::IcdigiekflaBjfmfommblg), + "ICDIGIEKFLA_MKHHIJAMDLC" => Some(Self::IcdigiekflaMkhhijamdlc), + "ICDIGIEKFLA_FKCGCLMGNAM" => Some(Self::IcdigiekflaFkcgclmgnam), + "ICDIGIEKFLA_EOCJFHAGMIN" => Some(Self::IcdigiekflaEocjfhagmin), + "ICDIGIEKFLA_IBFJALKCDKC" => Some(Self::IcdigiekflaIbfjalkcdkc), + "ICDIGIEKFLA_BFGDFCAAOPG" => Some(Self::IcdigiekflaBfgdfcaaopg), + "ICDIGIEKFLA_JFEMEAFJMML" => Some(Self::IcdigiekflaJfemeafjmml), + "ICDIGIEKFLA_ODLOCOJMNJO" => Some(Self::IcdigiekflaOdlocojmnjo), + "ICDIGIEKFLA_OOCPGPLEIIK" => Some(Self::IcdigiekflaOocpgpleiik), + "ICDIGIEKFLA_KOLGNEBKLLK" => Some(Self::IcdigiekflaKolgnebkllk), + "ICDIGIEKFLA_HLLONDGIDAO" => Some(Self::IcdigiekflaHllondgidao), + "ICDIGIEKFLA_LNBGKOHDMLN" => Some(Self::IcdigiekflaLnbgkohdmln), + "ICDIGIEKFLA_DFKCFHCMDHO" => Some(Self::IcdigiekflaDfkcfhcmdho), + "ICDIGIEKFLA_CNLHNKKMMHK" => Some(Self::IcdigiekflaCnlhnkkmmhk), + "ICDIGIEKFLA_AAMFMDJKBAI" => Some(Self::IcdigiekflaAamfmdjkbai), + "ICDIGIEKFLA_ELGEJCGIOHH" => Some(Self::IcdigiekflaElgejcgiohh), + "ICDIGIEKFLA_PGMJPPIPALC" => Some(Self::IcdigiekflaPgmjppipalc), + "ICDIGIEKFLA_PNMPICIEPGM" => Some(Self::IcdigiekflaPnmpiciepgm), + "ICDIGIEKFLA_MIMDGBFOIDD" => Some(Self::IcdigiekflaMimdgbfoidd), + "ICDIGIEKFLA_PGCOEIMDGGG" => Some(Self::IcdigiekflaPgcoeimdggg), + "ICDIGIEKFLA_OMHOLFOPAFC" => Some(Self::IcdigiekflaOmholfopafc), + "ICDIGIEKFLA_FAIAKHAKAGK" => Some(Self::IcdigiekflaFaiakhakagk), + "ICDIGIEKFLA_CGPIHIEJDPA" => Some(Self::IcdigiekflaCgpihiejdpa), + "ICDIGIEKFLA_IHGGDOOFDMF" => Some(Self::IcdigiekflaIhggdoofdmf), + "ICDIGIEKFLA_CDPBMGDOOMA" => Some(Self::IcdigiekflaCdpbmgdooma), + "ICDIGIEKFLA_NJEFFBGFMOK" => Some(Self::IcdigiekflaNjeffbgfmok), + "ICDIGIEKFLA_EFMPIFGIMKF" => Some(Self::IcdigiekflaEfmpifgimkf), + "ICDIGIEKFLA_PIIGKDAECBG" => Some(Self::IcdigiekflaPiigkdaecbg), + "ICDIGIEKFLA_BMNOLKGMHIB" => Some(Self::IcdigiekflaBmnolkgmhib), + "ICDIGIEKFLA_LFBNHENJLPJ" => Some(Self::IcdigiekflaLfbnhenjlpj), + "ICDIGIEKFLA_AJNKNNOJLHM" => Some(Self::IcdigiekflaAjnknnojlhm), + "ICDIGIEKFLA_OPLGOJLOCCH" => Some(Self::IcdigiekflaOplgojlocch), + "ICDIGIEKFLA_DOPAJCPIBAJ" => Some(Self::IcdigiekflaDopajcpibaj), + "ICDIGIEKFLA_LNJDAAOEHEP" => Some(Self::IcdigiekflaLnjdaaoehep), + "ICDIGIEKFLA_KKFBCCGLNKA" => Some(Self::IcdigiekflaKkfbccglnka), + "ICDIGIEKFLA_NJPPJDLDHJK" => Some(Self::IcdigiekflaNjppjdldhjk), + "ICDIGIEKFLA_MHLDHJAEEND" => Some(Self::IcdigiekflaMhldhjaeend), + "ICDIGIEKFLA_ICKOJPHKPOH" => Some(Self::IcdigiekflaIckojphkpoh), + "ICDIGIEKFLA_FMCHJBCJIKL" => Some(Self::IcdigiekflaFmchjbcjikl), + "ICDIGIEKFLA_IABGJCJMAMH" => Some(Self::IcdigiekflaIabgjcjmamh), + "ICDIGIEKFLA_CIJDLIOGNPM" => Some(Self::IcdigiekflaCijdliognpm), + "ICDIGIEKFLA_JMKNNOGOOOJ" => Some(Self::IcdigiekflaJmknnogoooj), + "ICDIGIEKFLA_BKGCPDFMELM" => Some(Self::IcdigiekflaBkgcpdfmelm), + "ICDIGIEKFLA_HJCFIKHKDLM" => Some(Self::IcdigiekflaHjcfikhkdlm), + "ICDIGIEKFLA_EMDAEALHJCD" => Some(Self::IcdigiekflaEmdaealhjcd), + "ICDIGIEKFLA_FBDADKMFDIA" => Some(Self::IcdigiekflaFbdadkmfdia), + "ICDIGIEKFLA_MKJHLOMJFPM" => Some(Self::IcdigiekflaMkjhlomjfpm), + "ICDIGIEKFLA_AHLOKJIEKPP" => Some(Self::IcdigiekflaAhlokjiekpp), + "ICDIGIEKFLA_KABKGJKKEJL" => Some(Self::IcdigiekflaKabkgjkkejl), + "ICDIGIEKFLA_LPJMNCLFEEE" => Some(Self::IcdigiekflaLpjmnclfeee), + "ICDIGIEKFLA_FJCNMJOGIEC" => Some(Self::IcdigiekflaFjcnmjogiec), + "ICDIGIEKFLA_PBENPEMKCIH" => Some(Self::IcdigiekflaPbenpemkcih), + "ICDIGIEKFLA_HBKHKFLHJAO" => Some(Self::IcdigiekflaHbkhkflhjao), + "ICDIGIEKFLA_DININDODAIK" => Some(Self::IcdigiekflaDinindodaik), + "ICDIGIEKFLA_LFBDGCNJLHN" => Some(Self::IcdigiekflaLfbdgcnjlhn), + "ICDIGIEKFLA_MCMCAIKPEAL" => Some(Self::IcdigiekflaMcmcaikpeal), + "ICDIGIEKFLA_MNODHEENJOL" => Some(Self::IcdigiekflaMnodheenjol), + "ICDIGIEKFLA_PFGKHPDEMIN" => Some(Self::IcdigiekflaPfgkhpdemin), + "ICDIGIEKFLA_FCGGENCKACC" => Some(Self::IcdigiekflaFcggenckacc), + "ICDIGIEKFLA_GGHKBLJMJNG" => Some(Self::IcdigiekflaGghkbljmjng), + "ICDIGIEKFLA_CJLFHNLGHEL" => Some(Self::IcdigiekflaCjlfhnlghel), + "ICDIGIEKFLA_KJPOFAPIMKM" => Some(Self::IcdigiekflaKjpofapimkm), + "ICDIGIEKFLA_OJMDIOAGEAB" => Some(Self::IcdigiekflaOjmdioageab), + "ICDIGIEKFLA_DIGAEFOJCIA" => Some(Self::IcdigiekflaDigaefojcia), + "ICDIGIEKFLA_PGHPOFOGLEK" => Some(Self::IcdigiekflaPghpofoglek), + "ICDIGIEKFLA_ACECHGNENAJ" => Some(Self::IcdigiekflaAcechgnenaj), + "ICDIGIEKFLA_MLAFIKDJOEN" => Some(Self::IcdigiekflaMlafikdjoen), + "ICDIGIEKFLA_JDNKPPHBIMM" => Some(Self::IcdigiekflaJdnkpphbimm), + "ICDIGIEKFLA_GLPMFFPCIEL" => Some(Self::IcdigiekflaGlpmffpciel), + "ICDIGIEKFLA_MGHIEIABKGI" => Some(Self::IcdigiekflaMghieiabkgi), + "ICDIGIEKFLA_JNDNGEHADFN" => Some(Self::IcdigiekflaJndngehadfn), + "ICDIGIEKFLA_KMCAKKFDPON" => Some(Self::IcdigiekflaKmcakkfdpon), + "ICDIGIEKFLA_HBBLGBLOLLO" => Some(Self::IcdigiekflaHbblgblollo), + "ICDIGIEKFLA_BNAEBGEDAAC" => Some(Self::IcdigiekflaBnaebgedaac), + "ICDIGIEKFLA_NHHFACNAGAK" => Some(Self::IcdigiekflaNhhfacnagak), + "ICDIGIEKFLA_MLOLNEECIBL" => Some(Self::IcdigiekflaMlolneecibl), + "ICDIGIEKFLA_JMMHKIBNDJB" => Some(Self::IcdigiekflaJmmhkibndjb), + "ICDIGIEKFLA_GBNJKBDPCKL" => Some(Self::IcdigiekflaGbnjkbdpckl), + "ICDIGIEKFLA_KKPCKGNKEGB" => Some(Self::IcdigiekflaKkpckgnkegb), + "ICDIGIEKFLA_HNJECDNOBGO" => Some(Self::IcdigiekflaHnjecdnobgo), + "ICDIGIEKFLA_OEGOAFHMEDH" => Some(Self::IcdigiekflaOegoafhmedh), + "ICDIGIEKFLA_LGLLKILHMKC" => Some(Self::IcdigiekflaLgllkilhmkc), + "ICDIGIEKFLA_NBIFBAMPFME" => Some(Self::IcdigiekflaNbifbampfme), + "ICDIGIEKFLA_NBIACKCCHIF" => Some(Self::IcdigiekflaNbiackcchif), + "ICDIGIEKFLA_HOPHHGCFOIE" => Some(Self::IcdigiekflaHophhgcfoie), + "ICDIGIEKFLA_PNBGJBAGAHM" => Some(Self::IcdigiekflaPnbgjbagahm), + "ICDIGIEKFLA_EDICIDOEBKO" => Some(Self::IcdigiekflaEdicidoebko), + "ICDIGIEKFLA_DJJLINBFDCJ" => Some(Self::IcdigiekflaDjjlinbfdcj), + "ICDIGIEKFLA_HAMCJHIBHKA" => Some(Self::IcdigiekflaHamcjhibhka), + "ICDIGIEKFLA_CEEAFGLHMMF" => Some(Self::IcdigiekflaCeeafglhmmf), + "ICDIGIEKFLA_INJAIAMLNKO" => Some(Self::IcdigiekflaInjaiamlnko), + "ICDIGIEKFLA_MKFIGKEJPPE" => Some(Self::IcdigiekflaMkfigkejppe), + "ICDIGIEKFLA_PLCNLEEGCFE" => Some(Self::IcdigiekflaPlcnleegcfe), + "ICDIGIEKFLA_NHMGIBKIFNF" => Some(Self::IcdigiekflaNhmgibkifnf), + "ICDIGIEKFLA_ECNALOGEKLG" => Some(Self::IcdigiekflaEcnalogeklg), + "ICDIGIEKFLA_CAOKMHCMJAB" => Some(Self::IcdigiekflaCaokmhcmjab), + "ICDIGIEKFLA_CNNIDDHLGCJ" => Some(Self::IcdigiekflaCnniddhlgcj), + "ICDIGIEKFLA_JKMGBDAJCBD" => Some(Self::IcdigiekflaJkmgbdajcbd), + "ICDIGIEKFLA_DNOCEMHJBII" => Some(Self::IcdigiekflaDnocemhjbii), + "ICDIGIEKFLA_PKIOJBANCNI" => Some(Self::IcdigiekflaPkiojbancni), + "ICDIGIEKFLA_ODCBHGGFNPN" => Some(Self::IcdigiekflaOdcbhggfnpn), + "ICDIGIEKFLA_JAACGBNGOOL" => Some(Self::IcdigiekflaJaacgbngool), + "ICDIGIEKFLA_JGIANMPDDDD" => Some(Self::IcdigiekflaJgianmpdddd), + "ICDIGIEKFLA_MPBBKHHDOCE" => Some(Self::IcdigiekflaMpbbkhhdoce), + "ICDIGIEKFLA_APEJHACMEMN" => Some(Self::IcdigiekflaApejhacmemn), + "ICDIGIEKFLA_HMIFNJJBHMG" => Some(Self::IcdigiekflaHmifnjjbhmg), + "ICDIGIEKFLA_ELDKALKLPMH" => Some(Self::IcdigiekflaEldkalklpmh), + "ICDIGIEKFLA_OLCFPBEGPLM" => Some(Self::IcdigiekflaOlcfpbegplm), + "ICDIGIEKFLA_OOFDCCEBCFI" => Some(Self::IcdigiekflaOofdccebcfi), + "ICDIGIEKFLA_NFLDDJMNGPA" => Some(Self::IcdigiekflaNflddjmngpa), + "ICDIGIEKFLA_DCOEKGEGMCE" => Some(Self::IcdigiekflaDcoekgegmce), + "ICDIGIEKFLA_BJICINIAOLG" => Some(Self::IcdigiekflaBjiciniaolg), + "ICDIGIEKFLA_LHPNPPNEOLO" => Some(Self::IcdigiekflaLhpnppneolo), + "ICDIGIEKFLA_HEOLOJFBLFO" => Some(Self::IcdigiekflaHeolojfblfo), + "ICDIGIEKFLA_POLAACIEKHH" => Some(Self::IcdigiekflaPolaaciekhh), + "ICDIGIEKFLA_PPOMAHPKBDA" => Some(Self::IcdigiekflaPpomahpkbda), + "ICDIGIEKFLA_EAIDPOHGFDE" => Some(Self::IcdigiekflaEaidpohgfde), + "ICDIGIEKFLA_DMPDNHGCLFF" => Some(Self::IcdigiekflaDmpdnhgclff), + "ICDIGIEKFLA_KNHBIODHBJC" => Some(Self::IcdigiekflaKnhbiodhbjc), + "ICDIGIEKFLA_JAFBCKAIIFP" => Some(Self::IcdigiekflaJafbckaiifp), + "ICDIGIEKFLA_LLBBHJCILOK" => Some(Self::IcdigiekflaLlbbhjcilok), + "ICDIGIEKFLA_MPKDGGNFPJJ" => Some(Self::IcdigiekflaMpkdggnfpjj), + "ICDIGIEKFLA_HFOHLEDEBDG" => Some(Self::IcdigiekflaHfohledebdg), + "ICDIGIEKFLA_JLBBKDINPFE" => Some(Self::IcdigiekflaJlbbkdinpfe), + "ICDIGIEKFLA_MKIOKFBCAIC" => Some(Self::IcdigiekflaMkiokfbcaic), + "ICDIGIEKFLA_FHMCDPPHBNF" => Some(Self::IcdigiekflaFhmcdpphbnf), + "ICDIGIEKFLA_LGCKCOBFLOB" => Some(Self::IcdigiekflaLgckcobflob), + "ICDIGIEKFLA_LLJHJOCNICE" => Some(Self::IcdigiekflaLljhjocnice), + "ICDIGIEKFLA_PPMBKEOBOHB" => Some(Self::IcdigiekflaPpmbkeobohb), + "ICDIGIEKFLA_KHPHHFKEKCK" => Some(Self::IcdigiekflaKhphhfkekck), + "ICDIGIEKFLA_DBKDDNODHOC" => Some(Self::IcdigiekflaDbkddnodhoc), + "ICDIGIEKFLA_GOOMONMPHFB" => Some(Self::IcdigiekflaGoomonmphfb), + "ICDIGIEKFLA_AHLPOKDAEBL" => Some(Self::IcdigiekflaAhlpokdaebl), + "ICDIGIEKFLA_NAKBKPIILBM" => Some(Self::IcdigiekflaNakbkpiilbm), + "ICDIGIEKFLA_ENECDIOBEMG" => Some(Self::IcdigiekflaEnecdiobemg), + "ICDIGIEKFLA_JOMANCAOEFI" => Some(Self::IcdigiekflaJomancaoefi), + "ICDIGIEKFLA_LLALOEKBBIC" => Some(Self::IcdigiekflaLlaloekbbic), + "ICDIGIEKFLA_LBHDDAKNBCN" => Some(Self::IcdigiekflaLbhddaknbcn), + "ICDIGIEKFLA_EDGHIMAIKEM" => Some(Self::IcdigiekflaEdghimaikem), + "ICDIGIEKFLA_KIBLDHOIEFL" => Some(Self::IcdigiekflaKibldhoiefl), + "ICDIGIEKFLA_IELKFIBDDOA" => Some(Self::IcdigiekflaIelkfibddoa), + "ICDIGIEKFLA_EFFKMJNPBBF" => Some(Self::IcdigiekflaEffkmjnpbbf), + "ICDIGIEKFLA_KHJMCHEENAE" => Some(Self::IcdigiekflaKhjmcheenae), + "ICDIGIEKFLA_FIGLPIEGEIA" => Some(Self::IcdigiekflaFiglpiegeia), + "ICDIGIEKFLA_MCJNGMAOOJE" => Some(Self::IcdigiekflaMcjngmaooje), + "ICDIGIEKFLA_BAMAGOINNOO" => Some(Self::IcdigiekflaBamagoinnoo), + "ICDIGIEKFLA_EDJIHMBEELH" => Some(Self::IcdigiekflaEdjihmbeelh), + "ICDIGIEKFLA_AJDADNEBIPJ" => Some(Self::IcdigiekflaAjdadnebipj), + "ICDIGIEKFLA_HJOOIDFNHLB" => Some(Self::IcdigiekflaHjooidfnhlb), + "ICDIGIEKFLA_OAFHCKGIMCE" => Some(Self::IcdigiekflaOafhckgimce), + "ICDIGIEKFLA_EBGCEAOMONA" => Some(Self::IcdigiekflaEbgceaomona), + "ICDIGIEKFLA_HLNEOFGOBLF" => Some(Self::IcdigiekflaHlneofgoblf), + "ICDIGIEKFLA_KCHBELHGENP" => Some(Self::IcdigiekflaKchbelhgenp), + "ICDIGIEKFLA_BAMFNJNABDO" => Some(Self::IcdigiekflaBamfnjnabdo), + "ICDIGIEKFLA_PCHDGPJHBAG" => Some(Self::IcdigiekflaPchdgpjhbag), + "ICDIGIEKFLA_PDAIEDMHFKD" => Some(Self::IcdigiekflaPdaiedmhfkd), + "ICDIGIEKFLA_EKGOPIIDBDB" => Some(Self::IcdigiekflaEkgopiidbdb), + "ICDIGIEKFLA_MEGBHANBEIG" => Some(Self::IcdigiekflaMegbhanbeig), + "ICDIGIEKFLA_NJBDJHCEMLB" => Some(Self::IcdigiekflaNjbdjhcemlb), + "ICDIGIEKFLA_COCLICJJAHK" => Some(Self::IcdigiekflaCoclicjjahk), + "ICDIGIEKFLA_KIDBLKBDHBA" => Some(Self::IcdigiekflaKidblkbdhba), + "ICDIGIEKFLA_EAJFKPOHPLP" => Some(Self::IcdigiekflaEajfkpohplp), + "ICDIGIEKFLA_BKPJHNBGABD" => Some(Self::IcdigiekflaBkpjhnbgabd), + "ICDIGIEKFLA_OIFCCJLOHNH" => Some(Self::IcdigiekflaOifccjlohnh), + "ICDIGIEKFLA_BABGHIFCAKA" => Some(Self::IcdigiekflaBabghifcaka), + "ICDIGIEKFLA_BNKIBKLMCJH" => Some(Self::IcdigiekflaBnkibklmcjh), + "ICDIGIEKFLA_LIMONLALGCI" => Some(Self::IcdigiekflaLimonlalgci), + "ICDIGIEKFLA_BJAICNILMHJ" => Some(Self::IcdigiekflaBjaicnilmhj), + "ICDIGIEKFLA_JABMCLIOKCG" => Some(Self::IcdigiekflaJabmcliokcg), + "ICDIGIEKFLA_PKPNEFKCFAB" => Some(Self::IcdigiekflaPkpnefkcfab), + "ICDIGIEKFLA_EBPEOPABKJG" => Some(Self::IcdigiekflaEbpeopabkjg), + "ICDIGIEKFLA_KLFHLCEJLGH" => Some(Self::IcdigiekflaKlfhlcejlgh), + "ICDIGIEKFLA_CLJPNFPCCGC" => Some(Self::IcdigiekflaCljpnfpccgc), + "ICDIGIEKFLA_DCMENFICJIN" => Some(Self::IcdigiekflaDcmenficjin), + "ICDIGIEKFLA_DBCALKCEMBP" => Some(Self::IcdigiekflaDbcalkcembp), + "ICDIGIEKFLA_NOMCFANCJDJ" => Some(Self::IcdigiekflaNomcfancjdj), + "ICDIGIEKFLA_ILLAFMMHCGK" => Some(Self::IcdigiekflaIllafmmhcgk), + "ICDIGIEKFLA_LAMIDGAEAJH" => Some(Self::IcdigiekflaLamidgaeajh), + "ICDIGIEKFLA_JHGPHAFLNGC" => Some(Self::IcdigiekflaJhgphaflngc), + "ICDIGIEKFLA_GBGEEGAJGCP" => Some(Self::IcdigiekflaGbgeegajgcp), + "ICDIGIEKFLA_HOLJIPNKIGE" => Some(Self::IcdigiekflaHoljipnkige), + "ICDIGIEKFLA_GMLPLPPLCOF" => Some(Self::IcdigiekflaGmlplpplcof), + "ICDIGIEKFLA_DIMKNKAFLGD" => Some(Self::IcdigiekflaDimknkaflgd), + "ICDIGIEKFLA_BNKMDDFLMNJ" => Some(Self::IcdigiekflaBnkmddflmnj), + "ICDIGIEKFLA_LIILDENLKCF" => Some(Self::IcdigiekflaLiildenlkcf), + "ICDIGIEKFLA_ELANILFDDFH" => Some(Self::IcdigiekflaElanilfddfh), + "ICDIGIEKFLA_OLFEEFCPKNB" => Some(Self::IcdigiekflaOlfeefcpknb), + "ICDIGIEKFLA_FPDMMPHLEPG" => Some(Self::IcdigiekflaFpdmmphlepg), + "ICDIGIEKFLA_PHDNFBPPKJP" => Some(Self::IcdigiekflaPhdnfbppkjp), + "ICDIGIEKFLA_JBNGEAPFMPD" => Some(Self::IcdigiekflaJbngeapfmpd), + "ICDIGIEKFLA_LMGLMINMBIA" => Some(Self::IcdigiekflaLmglminmbia), + "ICDIGIEKFLA_LFNJFJFOANJ" => Some(Self::IcdigiekflaLfnjfjfoanj), + "ICDIGIEKFLA_GJHKMCLODFH" => Some(Self::IcdigiekflaGjhkmclodfh), + "ICDIGIEKFLA_BILIMCKOGDC" => Some(Self::IcdigiekflaBilimckogdc), + "ICDIGIEKFLA_FGNBBOCPCNB" => Some(Self::IcdigiekflaFgnbbocpcnb), + "ICDIGIEKFLA_JBLMDNAAKNP" => Some(Self::IcdigiekflaJblmdnaaknp), + "ICDIGIEKFLA_HPADCIMCHGD" => Some(Self::IcdigiekflaHpadcimchgd), + "ICDIGIEKFLA_KNOJMPFCNOJ" => Some(Self::IcdigiekflaKnojmpfcnoj), + "ICDIGIEKFLA_OJNFDCGOEII" => Some(Self::IcdigiekflaOjnfdcgoeii), + "ICDIGIEKFLA_PJNIJBJHMLG" => Some(Self::IcdigiekflaPjnijbjhmlg), + "ICDIGIEKFLA_GLNEPMFFEBD" => Some(Self::IcdigiekflaGlnepmffebd), + "ICDIGIEKFLA_MABHPKGOONI" => Some(Self::IcdigiekflaMabhpkgooni), + "ICDIGIEKFLA_EIBBKCFEHFG" => Some(Self::IcdigiekflaEibbkcfehfg), + "ICDIGIEKFLA_GIJKJFPBOLF" => Some(Self::IcdigiekflaGijkjfpbolf), + "ICDIGIEKFLA_CFGPJGOAJFC" => Some(Self::IcdigiekflaCfgpjgoajfc), + "ICDIGIEKFLA_DJAKBNIIJCL" => Some(Self::IcdigiekflaDjakbniijcl), + "ICDIGIEKFLA_EIOJJMMDKKA" => Some(Self::IcdigiekflaEiojjmmdkka), + "ICDIGIEKFLA_NGFDCAKEKDJ" => Some(Self::IcdigiekflaNgfdcakekdj), + "ICDIGIEKFLA_LGPCLNCNMDD" => Some(Self::IcdigiekflaLgpclncnmdd), + "ICDIGIEKFLA_GNIENFOCOKA" => Some(Self::IcdigiekflaGnienfocoka), + "ICDIGIEKFLA_PDFMEAAJJEB" => Some(Self::IcdigiekflaPdfmeaajjeb), + "ICDIGIEKFLA_HJDAPPIDKIH" => Some(Self::IcdigiekflaHjdappidkih), + "ICDIGIEKFLA_HOKDIOPMNHH" => Some(Self::IcdigiekflaHokdiopmnhh), + "ICDIGIEKFLA_LGELBMNHOIN" => Some(Self::IcdigiekflaLgelbmnhoin), + "ICDIGIEKFLA_EANIJMAPAEA" => Some(Self::IcdigiekflaEanijmapaea), + "ICDIGIEKFLA_JFDONDHJMHK" => Some(Self::IcdigiekflaJfdondhjmhk), + "ICDIGIEKFLA_MANDHMLDNMA" => Some(Self::IcdigiekflaMandhmldnma), + "ICDIGIEKFLA_BHNKNKGAEII" => Some(Self::IcdigiekflaBhnknkgaeii), + "ICDIGIEKFLA_GJKPLKJPDPJ" => Some(Self::IcdigiekflaGjkplkjpdpj), + "ICDIGIEKFLA_PFLFIPOLBKD" => Some(Self::IcdigiekflaPflfipolbkd), + "ICDIGIEKFLA_AFBDLIGICAE" => Some(Self::IcdigiekflaAfbdligicae), + "ICDIGIEKFLA_INDHEOLNNLA" => Some(Self::IcdigiekflaIndheolnnla), + "ICDIGIEKFLA_LLIHLMIOPEB" => Some(Self::IcdigiekflaLlihlmiopeb), + "ICDIGIEKFLA_FCINDCNDDFB" => Some(Self::IcdigiekflaFcindcnddfb), + "ICDIGIEKFLA_PDOOKMCOMND" => Some(Self::IcdigiekflaPdookmcomnd), + "ICDIGIEKFLA_ACFHIIDDAMO" => Some(Self::IcdigiekflaAcfhiiddamo), + "ICDIGIEKFLA_OLNLDBDOJIL" => Some(Self::IcdigiekflaOlnldbdojil), + "ICDIGIEKFLA_DEAOHHEDLFF" => Some(Self::IcdigiekflaDeaohhedlff), + "ICDIGIEKFLA_EOCEANEALOD" => Some(Self::IcdigiekflaEoceanealod), + "ICDIGIEKFLA_FHHNILHAPDH" => Some(Self::IcdigiekflaFhhnilhapdh), + "ICDIGIEKFLA_GLHKKJHANCI" => Some(Self::IcdigiekflaGlhkkjhanci), + "ICDIGIEKFLA_FLJBIMHGDOE" => Some(Self::IcdigiekflaFljbimhgdoe), + "ICDIGIEKFLA_EAFPMBIHLLJ" => Some(Self::IcdigiekflaEafpmbihllj), + "ICDIGIEKFLA_PEAPNCIBGIB" => Some(Self::IcdigiekflaPeapncibgib), + "ICDIGIEKFLA_IMCBEJOAOKP" => Some(Self::IcdigiekflaImcbejoaokp), + "ICDIGIEKFLA_GJCLHPJMFPI" => Some(Self::IcdigiekflaGjclhpjmfpi), + "ICDIGIEKFLA_KJMCPDFIOFI" => Some(Self::IcdigiekflaKjmcpdfiofi), + "ICDIGIEKFLA_JMGMGCBCHHF" => Some(Self::IcdigiekflaJmgmgcbchhf), + "ICDIGIEKFLA_BLDPKBANPOJ" => Some(Self::IcdigiekflaBldpkbanpoj), + "ICDIGIEKFLA_HNNCLMPIMDI" => Some(Self::IcdigiekflaHnnclmpimdi), + "ICDIGIEKFLA_ALOAFGKKAKI" => Some(Self::IcdigiekflaAloafgkkaki), + "ICDIGIEKFLA_NIKFHJECNDH" => Some(Self::IcdigiekflaNikfhjecndh), + "ICDIGIEKFLA_BIJMHFMJLDD" => Some(Self::IcdigiekflaBijmhfmjldd), + "ICDIGIEKFLA_CJGOIIGGNKE" => Some(Self::IcdigiekflaCjgoiiggnke), + "ICDIGIEKFLA_JPGKHNEEJFG" => Some(Self::IcdigiekflaJpgkhneejfg), + "ICDIGIEKFLA_BOFGGGFEOIB" => Some(Self::IcdigiekflaBofgggfeoib), + "ICDIGIEKFLA_AANNOHAABHA" => Some(Self::IcdigiekflaAannohaabha), + "ICDIGIEKFLA_FLIBOCNJJJA" => Some(Self::IcdigiekflaFlibocnjjja), + "ICDIGIEKFLA_NGJBMGAKPEA" => Some(Self::IcdigiekflaNgjbmgakpea), + "ICDIGIEKFLA_CKMGMGNKDFN" => Some(Self::IcdigiekflaCkmgmgnkdfn), + "ICDIGIEKFLA_JLFJJMDAANI" => Some(Self::IcdigiekflaJlfjjmdaani), + "ICDIGIEKFLA_FENBCCOADPH" => Some(Self::IcdigiekflaFenbccoadph), + "ICDIGIEKFLA_CPBDAIKOINL" => Some(Self::IcdigiekflaCpbdaikoinl), + "ICDIGIEKFLA_HHGFIFLOOIJ" => Some(Self::IcdigiekflaHhgfiflooij), + "ICDIGIEKFLA_HHDBAPCCHKI" => Some(Self::IcdigiekflaHhdbapcchki), + "ICDIGIEKFLA_OMFDNHNKIDB" => Some(Self::IcdigiekflaOmfdnhnkidb), + "ICDIGIEKFLA_AKAAEGHHBCD" => Some(Self::IcdigiekflaAkaaeghhbcd), + "ICDIGIEKFLA_BELIPIMLDBC" => Some(Self::IcdigiekflaBelipimldbc), + "ICDIGIEKFLA_NCHNJDBMBLF" => Some(Self::IcdigiekflaNchnjdbmblf), + "ICDIGIEKFLA_ABMLCJJEEAN" => Some(Self::IcdigiekflaAbmlcjjeean), + "ICDIGIEKFLA_NFOCMBMGLFJ" => Some(Self::IcdigiekflaNfocmbmglfj), + "ICDIGIEKFLA_JOPHOHBIKJH" => Some(Self::IcdigiekflaJophohbikjh), + "ICDIGIEKFLA_JFOBAFIICJL" => Some(Self::IcdigiekflaJfobafiicjl), + "ICDIGIEKFLA_EJKECPMKPLL" => Some(Self::IcdigiekflaEjkecpmkpll), + "ICDIGIEKFLA_OEBIEONDALE" => Some(Self::IcdigiekflaOebieondale), + "ICDIGIEKFLA_HEODDNKLKLK" => Some(Self::IcdigiekflaHeoddnklklk), + "ICDIGIEKFLA_CJLKFMBCJCG" => Some(Self::IcdigiekflaCjlkfmbcjcg), + "ICDIGIEKFLA_CIIGIIFNGHA" => Some(Self::IcdigiekflaCiigiifngha), + "ICDIGIEKFLA_DAJAHNDKGBB" => Some(Self::IcdigiekflaDajahndkgbb), + "ICDIGIEKFLA_IAKCMCIFGOI" => Some(Self::IcdigiekflaIakcmcifgoi), + "ICDIGIEKFLA_IKPGMNAKBAG" => Some(Self::IcdigiekflaIkpgmnakbag), + "ICDIGIEKFLA_CELODBEEFDK" => Some(Self::IcdigiekflaCelodbeefdk), + "ICDIGIEKFLA_ECFAJHBPLKG" => Some(Self::IcdigiekflaEcfajhbplkg), + "ICDIGIEKFLA_FAGILPBHKJJ" => Some(Self::IcdigiekflaFagilpbhkjj), + "ICDIGIEKFLA_HHLLFPCOGOC" => Some(Self::IcdigiekflaHhllfpcogoc), + "ICDIGIEKFLA_BMMECMHLNBC" => Some(Self::IcdigiekflaBmmecmhlnbc), + "ICDIGIEKFLA_IKOPHANLJNI" => Some(Self::IcdigiekflaIkophanljni), + "ICDIGIEKFLA_JLLPLACKPJD" => Some(Self::IcdigiekflaJllplackpjd), + "ICDIGIEKFLA_GEGGMCPNAPO" => Some(Self::IcdigiekflaGeggmcpnapo), + "ICDIGIEKFLA_KEJCJBGDECL" => Some(Self::IcdigiekflaKejcjbgdecl), + "ICDIGIEKFLA_EEIBEMCGAKP" => Some(Self::IcdigiekflaEeibemcgakp), + "ICDIGIEKFLA_HKLFDNFPCFA" => Some(Self::IcdigiekflaHklfdnfpcfa), + "ICDIGIEKFLA_ABAKHPHNHIL" => Some(Self::IcdigiekflaAbakhphnhil), + "ICDIGIEKFLA_DAMAJGPOJLH" => Some(Self::IcdigiekflaDamajgpojlh), + "ICDIGIEKFLA_IOMFPLMJKEK" => Some(Self::IcdigiekflaIomfplmjkek), + "ICDIGIEKFLA_ALPDPGNODAC" => Some(Self::IcdigiekflaAlpdpgnodac), + "ICDIGIEKFLA_JMPBBOHEGMJ" => Some(Self::IcdigiekflaJmpbbohegmj), + "ICDIGIEKFLA_BGDKNGKPNPB" => Some(Self::IcdigiekflaBgdkngkpnpb), + "ICDIGIEKFLA_JFKDLFFGHNL" => Some(Self::IcdigiekflaJfkdlffghnl), + "ICDIGIEKFLA_AHKHPHLGOEK" => Some(Self::IcdigiekflaAhkhphlgoek), + "ICDIGIEKFLA_GCODOGBCHLM" => Some(Self::IcdigiekflaGcodogbchlm), + "ICDIGIEKFLA_KMLGNLLFKFB" => Some(Self::IcdigiekflaKmlgnllfkfb), + "ICDIGIEKFLA_NFKFBDCOBKD" => Some(Self::IcdigiekflaNfkfbdcobkd), + "ICDIGIEKFLA_GOLBLLFLCFL" => Some(Self::IcdigiekflaGolbllflcfl), + "ICDIGIEKFLA_MENAMNFMOIK" => Some(Self::IcdigiekflaMenamnfmoik), + "ICDIGIEKFLA_DKOGICILFKC" => Some(Self::IcdigiekflaDkogicilfkc), + "ICDIGIEKFLA_CJBKBOGMCMK" => Some(Self::IcdigiekflaCjbkbogmcmk), + "ICDIGIEKFLA_ALIJPBMKPAN" => Some(Self::IcdigiekflaAlijpbmkpan), + "ICDIGIEKFLA_HEFPMGINAKN" => Some(Self::IcdigiekflaHefpmginakn), + "ICDIGIEKFLA_HOFLHPCNNDO" => Some(Self::IcdigiekflaHoflhpcnndo), + "ICDIGIEKFLA_JDEFKFOOIAB" => Some(Self::IcdigiekflaJdefkfooiab), + "ICDIGIEKFLA_HGDKMAIKFIP" => Some(Self::IcdigiekflaHgdkmaikfip), + "ICDIGIEKFLA_GNJEGCOCBKJ" => Some(Self::IcdigiekflaGnjegcocbkj), + "ICDIGIEKFLA_KNJFGGNCEDA" => Some(Self::IcdigiekflaKnjfggnceda), + "ICDIGIEKFLA_FBDLCFNLGKB" => Some(Self::IcdigiekflaFbdlcfnlgkb), + "ICDIGIEKFLA_NCDKLLPJODI" => Some(Self::IcdigiekflaNcdkllpjodi), + "ICDIGIEKFLA_MKGJJNGBKMG" => Some(Self::IcdigiekflaMkgjjngbkmg), + "ICDIGIEKFLA_JENDJCMBEEI" => Some(Self::IcdigiekflaJendjcmbeei), + "ICDIGIEKFLA_BLDIAEJJMNE" => Some(Self::IcdigiekflaBldiaejjmne), + "ICDIGIEKFLA_MCDKDEIIHIM" => Some(Self::IcdigiekflaMcdkdeiihim), + "ICDIGIEKFLA_PEGAPDFBECK" => Some(Self::IcdigiekflaPegapdfbeck), + "ICDIGIEKFLA_JAHLBLLFNPO" => Some(Self::IcdigiekflaJahlbllfnpo), + "ICDIGIEKFLA_CPMNGMLJAAN" => Some(Self::IcdigiekflaCpmngmljaan), + "ICDIGIEKFLA_PDGPLMEPFBA" => Some(Self::IcdigiekflaPdgplmepfba), + "ICDIGIEKFLA_GFKKBDILPPA" => Some(Self::IcdigiekflaGfkkbdilppa), + "ICDIGIEKFLA_NJBBIGPAPLG" => Some(Self::IcdigiekflaNjbbigpaplg), + "ICDIGIEKFLA_LIPHKJCOACL" => Some(Self::IcdigiekflaLiphkjcoacl), + "ICDIGIEKFLA_AGDHDFABNDL" => Some(Self::IcdigiekflaAgdhdfabndl), + "ICDIGIEKFLA_DAMFFDHFLGB" => Some(Self::IcdigiekflaDamffdhflgb), + "ICDIGIEKFLA_KPMDPBPKOMC" => Some(Self::IcdigiekflaKpmdpbpkomc), + "ICDIGIEKFLA_IPOIHNJFBJF" => Some(Self::IcdigiekflaIpoihnjfbjf), + "ICDIGIEKFLA_PCJBNGJLFIH" => Some(Self::IcdigiekflaPcjbngjlfih), + "ICDIGIEKFLA_LGNDEGJBAPE" => Some(Self::IcdigiekflaLgndegjbape), + "ICDIGIEKFLA_DPEBAOKIOGJ" => Some(Self::IcdigiekflaDpebaokiogj), + "ICDIGIEKFLA_JKFMHLBHCIN" => Some(Self::IcdigiekflaJkfmhlbhcin), + "ICDIGIEKFLA_LEGKCKPLDGO" => Some(Self::IcdigiekflaLegkckpldgo), + "ICDIGIEKFLA_PKOJOICMMEJ" => Some(Self::IcdigiekflaPkojoicmmej), + "ICDIGIEKFLA_PNGIKEKOBLJ" => Some(Self::IcdigiekflaPngikekoblj), + "ICDIGIEKFLA_OKDHAIJOEAM" => Some(Self::IcdigiekflaOkdhaijoeam), + "ICDIGIEKFLA_LCOMIFGJMNK" => Some(Self::IcdigiekflaLcomifgjmnk), + "ICDIGIEKFLA_LFEIMHPLLCL" => Some(Self::IcdigiekflaLfeimhpllcl), + "ICDIGIEKFLA_MPMPMGKJOIK" => Some(Self::IcdigiekflaMpmpmgkjoik), + "ICDIGIEKFLA_KCAAAJHHJNJ" => Some(Self::IcdigiekflaKcaaajhhjnj), + "ICDIGIEKFLA_DGKBBBLEHKM" => Some(Self::IcdigiekflaDgkbbblehkm), + "ICDIGIEKFLA_NACGAFOKDMJ" => Some(Self::IcdigiekflaNacgafokdmj), + "ICDIGIEKFLA_HGFAPCBEFPL" => Some(Self::IcdigiekflaHgfapcbefpl), + "ICDIGIEKFLA_KEENGKNJNJK" => Some(Self::IcdigiekflaKeengknjnjk), + "ICDIGIEKFLA_HJEJNBNJJIG" => Some(Self::IcdigiekflaHjejnbnjjig), + "ICDIGIEKFLA_GKJIPPIHBDL" => Some(Self::IcdigiekflaGkjippihbdl), + "ICDIGIEKFLA_NCPGOAAOKKP" => Some(Self::IcdigiekflaNcpgoaaokkp), + "ICDIGIEKFLA_KOJHDIKBAGP" => Some(Self::IcdigiekflaKojhdikbagp), + "ICDIGIEKFLA_NAEAIONNAID" => Some(Self::IcdigiekflaNaeaionnaid), + "ICDIGIEKFLA_OOBNGCKJGDK" => Some(Self::IcdigiekflaOobngckjgdk), + "ICDIGIEKFLA_IAFNFHKEHII" => Some(Self::IcdigiekflaIafnfhkehii), + "ICDIGIEKFLA_OPPMNKEHPLH" => Some(Self::IcdigiekflaOppmnkehplh), + "ICDIGIEKFLA_AJOKNOANBJG" => Some(Self::IcdigiekflaAjoknoanbjg), + "ICDIGIEKFLA_KHJOFIICEPK" => Some(Self::IcdigiekflaKhjofiicepk), + "ICDIGIEKFLA_AMLPEJCOKML" => Some(Self::IcdigiekflaAmlpejcokml), + "ICDIGIEKFLA_DAFKEDKEBCB" => Some(Self::IcdigiekflaDafkedkebcb), + "ICDIGIEKFLA_HEGJFKMAKEA" => Some(Self::IcdigiekflaHegjfkmakea), + "ICDIGIEKFLA_BGDGHABBNNL" => Some(Self::IcdigiekflaBgdghabbnnl), + "ICDIGIEKFLA_EFDOKAOLOHG" => Some(Self::IcdigiekflaEfdokaolohg), + "ICDIGIEKFLA_LEAHONNKJAN" => Some(Self::IcdigiekflaLeahonnkjan), + "ICDIGIEKFLA_MHIPEJDPONJ" => Some(Self::IcdigiekflaMhipejdponj), + "ICDIGIEKFLA_PCEOHKIKNAM" => Some(Self::IcdigiekflaPceohkiknam), + "ICDIGIEKFLA_LNCHJJFCHAD" => Some(Self::IcdigiekflaLnchjjfchad), + "ICDIGIEKFLA_AGCPAEALAPM" => Some(Self::IcdigiekflaAgcpaealapm), + "ICDIGIEKFLA_CFDPJJOPMDA" => Some(Self::IcdigiekflaCfdpjjopmda), + "ICDIGIEKFLA_BADGFPAAKFK" => Some(Self::IcdigiekflaBadgfpaakfk), + "ICDIGIEKFLA_APMJELNBOFL" => Some(Self::IcdigiekflaApmjelnbofl), + "ICDIGIEKFLA_EPJMDMANGJI" => Some(Self::IcdigiekflaEpjmdmangji), + "ICDIGIEKFLA_FJFNPACKCJF" => Some(Self::IcdigiekflaFjfnpackcjf), + "ICDIGIEKFLA_FPCKMBNBGDM" => Some(Self::IcdigiekflaFpckmbnbgdm), + "ICDIGIEKFLA_JMDNIFBPDCO" => Some(Self::IcdigiekflaJmdnifbpdco), + "ICDIGIEKFLA_JJBPAAFCKIJ" => Some(Self::IcdigiekflaJjbpaafckij), + "ICDIGIEKFLA_NCKAALMIHFF" => Some(Self::IcdigiekflaNckaalmihff), + "ICDIGIEKFLA_GGFAGAJNAJE" => Some(Self::IcdigiekflaGgfagajnaje), + "ICDIGIEKFLA_NEFDOHDCFLB" => Some(Self::IcdigiekflaNefdohdcflb), + "ICDIGIEKFLA_GABBJOHKFED" => Some(Self::IcdigiekflaGabbjohkfed), + "ICDIGIEKFLA_DJNJDLKKDBE" => Some(Self::IcdigiekflaDjnjdlkkdbe), + "ICDIGIEKFLA_DJABMEMNPBK" => Some(Self::IcdigiekflaDjabmemnpbk), + "ICDIGIEKFLA_ENIMEIFEGFA" => Some(Self::IcdigiekflaEnimeifegfa), + "ICDIGIEKFLA_PKPJAFCBKEH" => Some(Self::IcdigiekflaPkpjafcbkeh), + "ICDIGIEKFLA_LKJEPDKEMFC" => Some(Self::IcdigiekflaLkjepdkemfc), + "ICDIGIEKFLA_EINECKPIDNK" => Some(Self::IcdigiekflaEineckpidnk), + "ICDIGIEKFLA_EMMFNBLJIIE" => Some(Self::IcdigiekflaEmmfnbljiie), + "ICDIGIEKFLA_EJHJBIDLNPH" => Some(Self::IcdigiekflaEjhjbidlnph), + "ICDIGIEKFLA_AEHCKAMJPED" => Some(Self::IcdigiekflaAehckamjped), + "ICDIGIEKFLA_BECJCBEANNB" => Some(Self::IcdigiekflaBecjcbeannb), + "ICDIGIEKFLA_JCHAHHBKABM" => Some(Self::IcdigiekflaJchahhbkabm), + "ICDIGIEKFLA_HPEHJMMIBMF" => Some(Self::IcdigiekflaHpehjmmibmf), + "ICDIGIEKFLA_PIGNOGHNCDE" => Some(Self::IcdigiekflaPignoghncde), + "ICDIGIEKFLA_HJELOFLBOOE" => Some(Self::IcdigiekflaHjeloflbooe), + "ICDIGIEKFLA_HLNGNJKPGEH" => Some(Self::IcdigiekflaHlngnjkpgeh), + "ICDIGIEKFLA_NMMHCNFLJOP" => Some(Self::IcdigiekflaNmmhcnfljop), + "ICDIGIEKFLA_KJLLNMBBKBO" => Some(Self::IcdigiekflaKjllnmbbkbo), + "ICDIGIEKFLA_PBINLCKHJBC" => Some(Self::IcdigiekflaPbinlckhjbc), + "ICDIGIEKFLA_ODALGCAODOD" => Some(Self::IcdigiekflaOdalgcaodod), + "ICDIGIEKFLA_DAINIBGKKNM" => Some(Self::IcdigiekflaDainibgkknm), + "ICDIGIEKFLA_BOKMACFEOPK" => Some(Self::IcdigiekflaBokmacfeopk), + "ICDIGIEKFLA_JOJODEPIPGB" => Some(Self::IcdigiekflaJojodepipgb), + "ICDIGIEKFLA_JKAADBMDLNO" => Some(Self::IcdigiekflaJkaadbmdlno), + "ICDIGIEKFLA_HHEMHMBAIEN" => Some(Self::IcdigiekflaHhemhmbaien), + "ICDIGIEKFLA_KAAFKLKKKDN" => Some(Self::IcdigiekflaKaafklkkkdn), + "ICDIGIEKFLA_PLLOLAPLMCD" => Some(Self::IcdigiekflaPllolaplmcd), + "ICDIGIEKFLA_MFPBNNJBIJH" => Some(Self::IcdigiekflaMfpbnnjbijh), + "ICDIGIEKFLA_AMGLLGHJHMK" => Some(Self::IcdigiekflaAmgllghjhmk), + "ICDIGIEKFLA_KKCNFLJEDCH" => Some(Self::IcdigiekflaKkcnfljedch), + "ICDIGIEKFLA_EMLFEMNNEPN" => Some(Self::IcdigiekflaEmlfemnnepn), + "ICDIGIEKFLA_NJLJEOPBMOC" => Some(Self::IcdigiekflaNjljeopbmoc), + "ICDIGIEKFLA_HPMOAOLPAIL" => Some(Self::IcdigiekflaHpmoaolpail), + "ICDIGIEKFLA_BIJMNIHCECA" => Some(Self::IcdigiekflaBijmnihceca), + "ICDIGIEKFLA_CHBNKPIKHFO" => Some(Self::IcdigiekflaChbnkpikhfo), + "ICDIGIEKFLA_CKJKIMLKEKB" => Some(Self::IcdigiekflaCkjkimlkekb), + "ICDIGIEKFLA_AIBPDMMBJHH" => Some(Self::IcdigiekflaAibpdmmbjhh), + "ICDIGIEKFLA_NOKAAPJDENL" => Some(Self::IcdigiekflaNokaapjdenl), + "ICDIGIEKFLA_BDEBAFKEJBF" => Some(Self::IcdigiekflaBdebafkejbf), + "ICDIGIEKFLA_GHODMOFDADG" => Some(Self::IcdigiekflaGhodmofdadg), + "ICDIGIEKFLA_IGDEALJNGHI" => Some(Self::IcdigiekflaIgdealjnghi), + "ICDIGIEKFLA_KBAEODAJOJF" => Some(Self::IcdigiekflaKbaeodajojf), + "ICDIGIEKFLA_IIOOKOJLBJA" => Some(Self::IcdigiekflaIiookojlbja), + "ICDIGIEKFLA_HDAMKAGNOPA" => Some(Self::IcdigiekflaHdamkagnopa), + "ICDIGIEKFLA_BLFFEDFFNIG" => Some(Self::IcdigiekflaBlffedffnig), + "ICDIGIEKFLA_NJKEDGCNEGL" => Some(Self::IcdigiekflaNjkedgcnegl), + "ICDIGIEKFLA_NBIDHMGJFJI" => Some(Self::IcdigiekflaNbidhmgjfji), + "ICDIGIEKFLA_EMEKINHAJAI" => Some(Self::IcdigiekflaEmekinhajai), + "ICDIGIEKFLA_PMLEPHGDFNG" => Some(Self::IcdigiekflaPmlephgdfng), + "ICDIGIEKFLA_DHDFIEJBJNI" => Some(Self::IcdigiekflaDhdfiejbjni), + "ICDIGIEKFLA_FDIBCPNHFJL" => Some(Self::IcdigiekflaFdibcpnhfjl), + "ICDIGIEKFLA_LELOFFLHECA" => Some(Self::IcdigiekflaLelofflheca), + "ICDIGIEKFLA_OBFMOOMNINA" => Some(Self::IcdigiekflaObfmoomnina), + "ICDIGIEKFLA_EJMDFNBBAKB" => Some(Self::IcdigiekflaEjmdfnbbakb), + "ICDIGIEKFLA_NJLJPAKLDMN" => Some(Self::IcdigiekflaNjljpakldmn), + "ICDIGIEKFLA_GEHJJPBGHPN" => Some(Self::IcdigiekflaGehjjpbghpn), + "ICDIGIEKFLA_JKJBEKNENGE" => Some(Self::IcdigiekflaJkjbeknenge), + "ICDIGIEKFLA_LODBLDLKIIO" => Some(Self::IcdigiekflaLodbldlkiio), + "ICDIGIEKFLA_MFHOBDGFNLL" => Some(Self::IcdigiekflaMfhobdgfnll), + "ICDIGIEKFLA_HPOPIOFIGHN" => Some(Self::IcdigiekflaHpopiofighn), + "ICDIGIEKFLA_GHLJKIHCPML" => Some(Self::IcdigiekflaGhljkihcpml), + "ICDIGIEKFLA_EBBPEMAAEHG" => Some(Self::IcdigiekflaEbbpemaaehg), + "ICDIGIEKFLA_JMADCHMKJBD" => Some(Self::IcdigiekflaJmadchmkjbd), + "ICDIGIEKFLA_MNELHKKKNNO" => Some(Self::IcdigiekflaMnelhkkknno), + "ICDIGIEKFLA_PFMKLLAENNM" => Some(Self::IcdigiekflaPfmkllaennm), + "ICDIGIEKFLA_MPEJBPLPLNG" => Some(Self::IcdigiekflaMpejbplplng), + "ICDIGIEKFLA_ALKDKCHNCMD" => Some(Self::IcdigiekflaAlkdkchncmd), + "ICDIGIEKFLA_FKDKFAMBFFP" => Some(Self::IcdigiekflaFkdkfambffp), + "ICDIGIEKFLA_BDICPCAAJGG" => Some(Self::IcdigiekflaBdicpcaajgg), + "ICDIGIEKFLA_BBBAKNFDOPJ" => Some(Self::IcdigiekflaBbbaknfdopj), + "ICDIGIEKFLA_HFDHIOMJJLO" => Some(Self::IcdigiekflaHfdhiomjjlo), + "ICDIGIEKFLA_HEBLONDGKGJ" => Some(Self::IcdigiekflaHeblondgkgj), + "ICDIGIEKFLA_FIHCODFLBKJ" => Some(Self::IcdigiekflaFihcodflbkj), + "ICDIGIEKFLA_LKNPDLBNKPF" => Some(Self::IcdigiekflaLknpdlbnkpf), + "ICDIGIEKFLA_GJJGNFMFGOH" => Some(Self::IcdigiekflaGjjgnfmfgoh), + "ICDIGIEKFLA_PLPNAJPFKFN" => Some(Self::IcdigiekflaPlpnajpfkfn), + "ICDIGIEKFLA_KEEBGDFEPMG" => Some(Self::IcdigiekflaKeebgdfepmg), + "ICDIGIEKFLA_HOOAODOAFNM" => Some(Self::IcdigiekflaHooaodoafnm), + "ICDIGIEKFLA_AFBJHMCHDIO" => Some(Self::IcdigiekflaAfbjhmchdio), + "ICDIGIEKFLA_FNEIKDMDOFO" => Some(Self::IcdigiekflaFneikdmdofo), + "ICDIGIEKFLA_MPJONIHCBCP" => Some(Self::IcdigiekflaMpjonihcbcp), + "ICDIGIEKFLA_DHHIGEHPDCE" => Some(Self::IcdigiekflaDhhigehpdce), + "ICDIGIEKFLA_AJLPEIBALDH" => Some(Self::IcdigiekflaAjlpeibaldh), + "ICDIGIEKFLA_OOKOEPAGNMC" => Some(Self::IcdigiekflaOokoepagnmc), + "ICDIGIEKFLA_CBJBLFJCJBA" => Some(Self::IcdigiekflaCbjblfjcjba), + "ICDIGIEKFLA_HBPHJAPICOF" => Some(Self::IcdigiekflaHbphjapicof), + "ICDIGIEKFLA_OKDANPELBAO" => Some(Self::IcdigiekflaOkdanpelbao), + "ICDIGIEKFLA_JKJHBNIEHAK" => Some(Self::IcdigiekflaJkjhbniehak), + "ICDIGIEKFLA_KMCCOEPEINA" => Some(Self::IcdigiekflaKmccoepeina), + "ICDIGIEKFLA_GGLLLDBGLJM" => Some(Self::IcdigiekflaGgllldbgljm), + "ICDIGIEKFLA_JCBGBJKDHHA" => Some(Self::IcdigiekflaJcbgbjkdhha), + "ICDIGIEKFLA_KKAOCIPHJDJ" => Some(Self::IcdigiekflaKkaociphjdj), + "ICDIGIEKFLA_PPFEPFMNDEE" => Some(Self::IcdigiekflaPpfepfmndee), + "ICDIGIEKFLA_BDNEGCDADOC" => Some(Self::IcdigiekflaBdnegcdadoc), + "ICDIGIEKFLA_MGFNOAHIBNJ" => Some(Self::IcdigiekflaMgfnoahibnj), + "ICDIGIEKFLA_JIFOGNAEGPO" => Some(Self::IcdigiekflaJifognaegpo), + "ICDIGIEKFLA_EDMONBPKMOG" => Some(Self::IcdigiekflaEdmonbpkmog), + "ICDIGIEKFLA_KJCAOGLJPOO" => Some(Self::IcdigiekflaKjcaogljpoo), + "ICDIGIEKFLA_KEEMKNKLKEA" => Some(Self::IcdigiekflaKeemknklkea), + "ICDIGIEKFLA_FAMMKKFNFPC" => Some(Self::IcdigiekflaFammkkfnfpc), + "ICDIGIEKFLA_LKAAOCEKBCE" => Some(Self::IcdigiekflaLkaaocekbce), + "ICDIGIEKFLA_JNGEIKJLNGK" => Some(Self::IcdigiekflaJngeikjlngk), + "ICDIGIEKFLA_GAJCAPEGJJH" => Some(Self::IcdigiekflaGajcapegjjh), + "ICDIGIEKFLA_DEEKJCCCCID" => Some(Self::IcdigiekflaDeekjccccid), + "ICDIGIEKFLA_KDJHKKDFOHO" => Some(Self::IcdigiekflaKdjhkkdfoho), + "ICDIGIEKFLA_BBLLJFKKNPA" => Some(Self::IcdigiekflaBblljfkknpa), + "ICDIGIEKFLA_LEEHACCDFEA" => Some(Self::IcdigiekflaLeehaccdfea), + "ICDIGIEKFLA_BPAMIAMCDIL" => Some(Self::IcdigiekflaBpamiamcdil), + "ICDIGIEKFLA_IEKNEJIDLGF" => Some(Self::IcdigiekflaIeknejidlgf), + "ICDIGIEKFLA_PPFDBDDGLFH" => Some(Self::IcdigiekflaPpfdbddglfh), + "ICDIGIEKFLA_BNMCFCBKPDL" => Some(Self::IcdigiekflaBnmcfcbkpdl), + "ICDIGIEKFLA_IMAGKNPDDJH" => Some(Self::IcdigiekflaImagknpddjh), + "ICDIGIEKFLA_LABLKDBCOHL" => Some(Self::IcdigiekflaLablkdbcohl), + "ICDIGIEKFLA_PMGKIIGMKDH" => Some(Self::IcdigiekflaPmgkiigmkdh), + "ICDIGIEKFLA_CBNFJKDHNCC" => Some(Self::IcdigiekflaCbnfjkdhncc), + "ICDIGIEKFLA_KPOIKAFJJJK" => Some(Self::IcdigiekflaKpoikafjjjk), + "ICDIGIEKFLA_CKCFLFLJNBM" => Some(Self::IcdigiekflaCkcflfljnbm), + "ICDIGIEKFLA_MIAIOKAILCF" => Some(Self::IcdigiekflaMiaiokailcf), + "ICDIGIEKFLA_BGDCLDJIBDB" => Some(Self::IcdigiekflaBgdcldjibdb), + "ICDIGIEKFLA_BJLJFAHCBLN" => Some(Self::IcdigiekflaBjljfahcbln), + "ICDIGIEKFLA_MMBAIKDGLNH" => Some(Self::IcdigiekflaMmbaikdglnh), + "ICDIGIEKFLA_GGMBEPLDMLK" => Some(Self::IcdigiekflaGgmbepldmlk), + "ICDIGIEKFLA_NGKJDPMJDAL" => Some(Self::IcdigiekflaNgkjdpmjdal), + "ICDIGIEKFLA_HDHEJCKGJLL" => Some(Self::IcdigiekflaHdhejckgjll), + "ICDIGIEKFLA_ABLBHDMPGNI" => Some(Self::IcdigiekflaAblbhdmpgni), + "ICDIGIEKFLA_DODDFBHPCPK" => Some(Self::IcdigiekflaDoddfbhpcpk), + "ICDIGIEKFLA_PNPHNKFDBDE" => Some(Self::IcdigiekflaPnphnkfdbde), + "ICDIGIEKFLA_LLOFFICDKLG" => Some(Self::IcdigiekflaLlofficdklg), + "ICDIGIEKFLA_FEDGFLMILMB" => Some(Self::IcdigiekflaFedgflmilmb), + "ICDIGIEKFLA_AENILKKAFDG" => Some(Self::IcdigiekflaAenilkkafdg), + "ICDIGIEKFLA_MILHLFBFIMG" => Some(Self::IcdigiekflaMilhlfbfimg), + "ICDIGIEKFLA_JAACFJIGOBO" => Some(Self::IcdigiekflaJaacfjigobo), + "ICDIGIEKFLA_PFDJICBMIGI" => Some(Self::IcdigiekflaPfdjicbmigi), + "ICDIGIEKFLA_HKMGGIHAEJD" => Some(Self::IcdigiekflaHkmggihaejd), + "ICDIGIEKFLA_POLPBPHPLJL" => Some(Self::IcdigiekflaPolpbphpljl), + "ICDIGIEKFLA_AODPLEINCNE" => Some(Self::IcdigiekflaAodpleincne), + "ICDIGIEKFLA_BIFMIANELAE" => Some(Self::IcdigiekflaBifmianelae), + "ICDIGIEKFLA_CABBDPFCCFL" => Some(Self::IcdigiekflaCabbdpfccfl), + "ICDIGIEKFLA_GOMNODBHFDC" => Some(Self::IcdigiekflaGomnodbhfdc), + "ICDIGIEKFLA_IPJBEDBFLJM" => Some(Self::IcdigiekflaIpjbedbfljm), + "ICDIGIEKFLA_CANOOCHEGOJ" => Some(Self::IcdigiekflaCanoochegoj), + "ICDIGIEKFLA_LFHMEPBMEOM" => Some(Self::IcdigiekflaLfhmepbmeom), + "ICDIGIEKFLA_EJLGOKAIDDB" => Some(Self::IcdigiekflaEjlgokaiddb), + "ICDIGIEKFLA_BPAOBFPBDDJ" => Some(Self::IcdigiekflaBpaobfpbddj), + "ICDIGIEKFLA_AABKNJENIKK" => Some(Self::IcdigiekflaAabknjenikk), + "ICDIGIEKFLA_AJJJONEBAAE" => Some(Self::IcdigiekflaAjjjonebaae), + "ICDIGIEKFLA_JPGIILBHFOB" => Some(Self::IcdigiekflaJpgiilbhfob), + "ICDIGIEKFLA_ENLBIEGFHGK" => Some(Self::IcdigiekflaEnlbiegfhgk), + "ICDIGIEKFLA_OBLAMBEAIHE" => Some(Self::IcdigiekflaOblambeaihe), + "ICDIGIEKFLA_MFKFPMBKFCO" => Some(Self::IcdigiekflaMfkfpmbkfco), + "ICDIGIEKFLA_CFMONEPAOJP" => Some(Self::IcdigiekflaCfmonepaojp), + "ICDIGIEKFLA_FKIHGDALAHL" => Some(Self::IcdigiekflaFkihgdalahl), + "ICDIGIEKFLA_FGMDDIHGDHI" => Some(Self::IcdigiekflaFgmddihgdhi), + "ICDIGIEKFLA_JPPNIPAEFBC" => Some(Self::IcdigiekflaJppnipaefbc), + "ICDIGIEKFLA_MMOPLMDMCKD" => Some(Self::IcdigiekflaMmoplmdmckd), + "ICDIGIEKFLA_OOHFNBFDJDK" => Some(Self::IcdigiekflaOohfnbfdjdk), + "ICDIGIEKFLA_ECCANALCMGI" => Some(Self::IcdigiekflaEccanalcmgi), + "ICDIGIEKFLA_EOACIOCOGHD" => Some(Self::IcdigiekflaEoaciocoghd), + "ICDIGIEKFLA_GDMNHHAKGBH" => Some(Self::IcdigiekflaGdmnhhakgbh), + "ICDIGIEKFLA_FMKBJAFBDEM" => Some(Self::IcdigiekflaFmkbjafbdem), + "ICDIGIEKFLA_PGPNOLMGNAK" => Some(Self::IcdigiekflaPgpnolmgnak), + "ICDIGIEKFLA_CGPKODIIKGI" => Some(Self::IcdigiekflaCgpkodiikgi), + "ICDIGIEKFLA_BMFKCOEPPCK" => Some(Self::IcdigiekflaBmfkcoeppck), + "ICDIGIEKFLA_IKDMFLBADGB" => Some(Self::IcdigiekflaIkdmflbadgb), + "ICDIGIEKFLA_BAGJJFFFBHL" => Some(Self::IcdigiekflaBagjjfffbhl), + "ICDIGIEKFLA_GLNKGFHFNFO" => Some(Self::IcdigiekflaGlnkgfhfnfo), + "ICDIGIEKFLA_CEHGHNPCLPB" => Some(Self::IcdigiekflaCehghnpclpb), + "ICDIGIEKFLA_OHGCMLMKDJI" => Some(Self::IcdigiekflaOhgcmlmkdji), + "ICDIGIEKFLA_FBLOJDALCFD" => Some(Self::IcdigiekflaFblojdalcfd), + "ICDIGIEKFLA_FKAAILHLHJI" => Some(Self::IcdigiekflaFkaailhlhji), + "ICDIGIEKFLA_LALNAAPBIPG" => Some(Self::IcdigiekflaLalnaapbipg), + "ICDIGIEKFLA_JDNCCJODMJC" => Some(Self::IcdigiekflaJdnccjodmjc), + "ICDIGIEKFLA_JFHJFEONNLF" => Some(Self::IcdigiekflaJfhjfeonnlf), + "ICDIGIEKFLA_LOBGDIDCHCG" => Some(Self::IcdigiekflaLobgdidchcg), + "ICDIGIEKFLA_FOEKHCCIAHK" => Some(Self::IcdigiekflaFoekhcciahk), + "ICDIGIEKFLA_PLPIMBDFBFO" => Some(Self::IcdigiekflaPlpimbdfbfo), + "ICDIGIEKFLA_OOLOMEAHFLC" => Some(Self::IcdigiekflaOolomeahflc), + "ICDIGIEKFLA_FGHIEBBOMKI" => Some(Self::IcdigiekflaFghiebbomki), + "ICDIGIEKFLA_CLJDLCAMDGI" => Some(Self::IcdigiekflaCljdlcamdgi), + "ICDIGIEKFLA_DDLDBJIODEC" => Some(Self::IcdigiekflaDdldbjiodec), + "ICDIGIEKFLA_BMCALJPIGBC" => Some(Self::IcdigiekflaBmcaljpigbc), + "ICDIGIEKFLA_DAFOFKLIOGC" => Some(Self::IcdigiekflaDafofkliogc), + "ICDIGIEKFLA_CPOPPINOKEG" => Some(Self::IcdigiekflaCpoppinokeg), + "ICDIGIEKFLA_JLBKDBMLMON" => Some(Self::IcdigiekflaJlbkdbmlmon), + "ICDIGIEKFLA_NBOJHEEBMKK" => Some(Self::IcdigiekflaNbojheebmkk), + "ICDIGIEKFLA_EAPFHPBKNJI" => Some(Self::IcdigiekflaEapfhpbknji), + "ICDIGIEKFLA_EBKNHJJPDCJ" => Some(Self::IcdigiekflaEbknhjjpdcj), + "ICDIGIEKFLA_CMFFOKKOLME" => Some(Self::IcdigiekflaCmffokkolme), + "ICDIGIEKFLA_NIPJBJKGKFC" => Some(Self::IcdigiekflaNipjbjkgkfc), + "ICDIGIEKFLA_IHFGLKNMIIA" => Some(Self::IcdigiekflaIhfglknmiia), + "ICDIGIEKFLA_DHMJJFOMADE" => Some(Self::IcdigiekflaDhmjjfomade), + "ICDIGIEKFLA_FLPDOCJGFPE" => Some(Self::IcdigiekflaFlpdocjgfpe), + "ICDIGIEKFLA_BGGCMPIPJEL" => Some(Self::IcdigiekflaBggcmpipjel), + "ICDIGIEKFLA_OEGBGHMBPFP" => Some(Self::IcdigiekflaOegbghmbpfp), + "ICDIGIEKFLA_DFPBGFPBOKI" => Some(Self::IcdigiekflaDfpbgfpboki), + "ICDIGIEKFLA_PCPFJBKPOGD" => Some(Self::IcdigiekflaPcpfjbkpogd), + "ICDIGIEKFLA_CKMMKKLOMIO" => Some(Self::IcdigiekflaCkmmkklomio), + "ICDIGIEKFLA_FOAMCENLHKC" => Some(Self::IcdigiekflaFoamcenlhkc), + "ICDIGIEKFLA_FFFBFMHDMKN" => Some(Self::IcdigiekflaFffbfmhdmkn), + "ICDIGIEKFLA_DAHEANEKAAE" => Some(Self::IcdigiekflaDaheanekaae), + "ICDIGIEKFLA_LJHGKLEGKLL" => Some(Self::IcdigiekflaLjhgklegkll), + "ICDIGIEKFLA_CBMKAEENLHM" => Some(Self::IcdigiekflaCbmkaeenlhm), + "ICDIGIEKFLA_BPKCDBICBCP" => Some(Self::IcdigiekflaBpkcdbicbcp), + "ICDIGIEKFLA_DGOMKDJKKGF" => Some(Self::IcdigiekflaDgomkdjkkgf), + "ICDIGIEKFLA_DEGLHJHNFCG" => Some(Self::IcdigiekflaDeglhjhnfcg), + "ICDIGIEKFLA_LDJCEIAGMFN" => Some(Self::IcdigiekflaLdjceiagmfn), + "ICDIGIEKFLA_NIICBHHGLGO" => Some(Self::IcdigiekflaNiicbhhglgo), + "ICDIGIEKFLA_PDHKPMCCNIH" => Some(Self::IcdigiekflaPdhkpmccnih), + "ICDIGIEKFLA_LMPPBFHNOPP" => Some(Self::IcdigiekflaLmppbfhnopp), + "ICDIGIEKFLA_BNBDKMGNKPP" => Some(Self::IcdigiekflaBnbdkmgnkpp), + "ICDIGIEKFLA_KOGBFBPFJLD" => Some(Self::IcdigiekflaKogbfbpfjld), + "ICDIGIEKFLA_HDAEIMJGGKC" => Some(Self::IcdigiekflaHdaeimjggkc), + "ICDIGIEKFLA_EMGOCGCJEHK" => Some(Self::IcdigiekflaEmgocgcjehk), + "ICDIGIEKFLA_GLFHOGEPLDJ" => Some(Self::IcdigiekflaGlfhogepldj), + "ICDIGIEKFLA_AALJPDNHANN" => Some(Self::IcdigiekflaAaljpdnhann), + "ICDIGIEKFLA_DPOCGEMKILO" => Some(Self::IcdigiekflaDpocgemkilo), + "ICDIGIEKFLA_ADPJDCOEINK" => Some(Self::IcdigiekflaAdpjdcoeink), + "ICDIGIEKFLA_OFJNLDNFADC" => Some(Self::IcdigiekflaOfjnldnfadc), + "ICDIGIEKFLA_BOKGHECFNPN" => Some(Self::IcdigiekflaBokghecfnpn), + "ICDIGIEKFLA_BCJHHBMOBLD" => Some(Self::IcdigiekflaBcjhhbmobld), + "ICDIGIEKFLA_OEINPACNAGD" => Some(Self::IcdigiekflaOeinpacnagd), + "ICDIGIEKFLA_GNNPAIDLKAF" => Some(Self::IcdigiekflaGnnpaidlkaf), + "ICDIGIEKFLA_GKNPKKDFIDO" => Some(Self::IcdigiekflaGknpkkdfido), + "ICDIGIEKFLA_CGCNFDLJFFP" => Some(Self::IcdigiekflaCgcnfdljffp), + "ICDIGIEKFLA_JAEFGNEPNCI" => Some(Self::IcdigiekflaJaefgnepnci), + "ICDIGIEKFLA_OAOFKCIOPBH" => Some(Self::IcdigiekflaOaofkciopbh), + "ICDIGIEKFLA_KHFLLDGFLFE" => Some(Self::IcdigiekflaKhflldgflfe), + "ICDIGIEKFLA_NNJCANLGHLC" => Some(Self::IcdigiekflaNnjcanlghlc), + "ICDIGIEKFLA_BKEKIJAAHFH" => Some(Self::IcdigiekflaBkekijaahfh), + "ICDIGIEKFLA_AMODNOLEDJE" => Some(Self::IcdigiekflaAmodnoledje), + "ICDIGIEKFLA_LCNFPCDOABJ" => Some(Self::IcdigiekflaLcnfpcdoabj), + "ICDIGIEKFLA_PMBMDMGHGJF" => Some(Self::IcdigiekflaPmbmdmghgjf), + "ICDIGIEKFLA_IJMBLMEAFLG" => Some(Self::IcdigiekflaIjmblmeaflg), + "ICDIGIEKFLA_CFALNMIDCBE" => Some(Self::IcdigiekflaCfalnmidcbe), + "ICDIGIEKFLA_MBMBGANDGFG" => Some(Self::IcdigiekflaMbmbgandgfg), + "ICDIGIEKFLA_JLFFGPJGKOJ" => Some(Self::IcdigiekflaJlffgpjgkoj), + "ICDIGIEKFLA_GPNDIKPDKPC" => Some(Self::IcdigiekflaGpndikpdkpc), + "ICDIGIEKFLA_BIIGIMJECNO" => Some(Self::IcdigiekflaBiigimjecno), + "ICDIGIEKFLA_NFPCOGKBGMO" => Some(Self::IcdigiekflaNfpcogkbgmo), + "ICDIGIEKFLA_DPPLFCOMEDP" => Some(Self::IcdigiekflaDpplfcomedp), + "ICDIGIEKFLA_MLNIFKDNNEL" => Some(Self::IcdigiekflaMlnifkdnnel), + "ICDIGIEKFLA_CPFFFCIHFAJ" => Some(Self::IcdigiekflaCpfffcihfaj), + "ICDIGIEKFLA_NNJLGBGAHLL" => Some(Self::IcdigiekflaNnjlgbgahll), + "ICDIGIEKFLA_EAACONCGGNJ" => Some(Self::IcdigiekflaEaaconcggnj), + "ICDIGIEKFLA_LOAOPNIADIP" => Some(Self::IcdigiekflaLoaopniadip), + "ICDIGIEKFLA_JOOBPEBFLED" => Some(Self::IcdigiekflaJoobpebfled), + "ICDIGIEKFLA_IDGBJEIJAIN" => Some(Self::IcdigiekflaIdgbjeijain), + "ICDIGIEKFLA_HEDFFJCECKB" => Some(Self::IcdigiekflaHedffjceckb), + "ICDIGIEKFLA_AEHFFAKFKEH" => Some(Self::IcdigiekflaAehffakfkeh), + "ICDIGIEKFLA_AFBIIPNENDM" => Some(Self::IcdigiekflaAfbiipnendm), + "ICDIGIEKFLA_FIEBKMJOBIE" => Some(Self::IcdigiekflaFiebkmjobie), + "ICDIGIEKFLA_NGBPHAJELGO" => Some(Self::IcdigiekflaNgbphajelgo), + "ICDIGIEKFLA_CPLIMBMEGNB" => Some(Self::IcdigiekflaCplimbmegnb), + "ICDIGIEKFLA_IPMKJDBFPMA" => Some(Self::IcdigiekflaIpmkjdbfpma), + "ICDIGIEKFLA_JEJAPJNMKAA" => Some(Self::IcdigiekflaJejapjnmkaa), + "ICDIGIEKFLA_CHMMACLCKLO" => Some(Self::IcdigiekflaChmmaclcklo), + "ICDIGIEKFLA_BFGINIINLHA" => Some(Self::IcdigiekflaBfginiinlha), + "ICDIGIEKFLA_KPADCMHCECN" => Some(Self::IcdigiekflaKpadcmhcecn), + "ICDIGIEKFLA_FKNJHLFJAGK" => Some(Self::IcdigiekflaFknjhlfjagk), + "ICDIGIEKFLA_GCNBFPBDDNN" => Some(Self::IcdigiekflaGcnbfpbddnn), + "ICDIGIEKFLA_IHLDHBAIJGJ" => Some(Self::IcdigiekflaIhldhbaijgj), + "ICDIGIEKFLA_AJMOBBGKENE" => Some(Self::IcdigiekflaAjmobbgkene), + "ICDIGIEKFLA_AGHHAJMCAFB" => Some(Self::IcdigiekflaAghhajmcafb), + "ICDIGIEKFLA_LDKGDMGPDLN" => Some(Self::IcdigiekflaLdkgdmgpdln), + "ICDIGIEKFLA_GDCOPBBLKIL" => Some(Self::IcdigiekflaGdcopbblkil), + "ICDIGIEKFLA_KIHBBAJLKPA" => Some(Self::IcdigiekflaKihbbajlkpa), + "ICDIGIEKFLA_DBIPBDOBNNJ" => Some(Self::IcdigiekflaDbipbdobnnj), + "ICDIGIEKFLA_POEMINHNNNP" => Some(Self::IcdigiekflaPoeminhnnnp), + "ICDIGIEKFLA_BGLKFGHBANE" => Some(Self::IcdigiekflaBglkfghbane), + "ICDIGIEKFLA_LIHABMOJHHO" => Some(Self::IcdigiekflaLihabmojhho), + "ICDIGIEKFLA_LDKLBIAOMEO" => Some(Self::IcdigiekflaLdklbiaomeo), + "ICDIGIEKFLA_FLDNAKPAEON" => Some(Self::IcdigiekflaFldnakpaeon), + "ICDIGIEKFLA_PNMABMLFFCE" => Some(Self::IcdigiekflaPnmabmlffce), + "ICDIGIEKFLA_HJBCMIMMBEJ" => Some(Self::IcdigiekflaHjbcmimmbej), + "ICDIGIEKFLA_PLOMBLMPGKN" => Some(Self::IcdigiekflaPlomblmpgkn), + "ICDIGIEKFLA_CEOHBJOOLHH" => Some(Self::IcdigiekflaCeohbjoolhh), + "ICDIGIEKFLA_HEEGPLLBECI" => Some(Self::IcdigiekflaHeegpllbeci), + "ICDIGIEKFLA_AAMJKMPAOAO" => Some(Self::IcdigiekflaAamjkmpaoao), + "ICDIGIEKFLA_NJFOGEEBCCD" => Some(Self::IcdigiekflaNjfogeebccd), + "ICDIGIEKFLA_IPDAIIBHFMO" => Some(Self::IcdigiekflaIpdaiibhfmo), + "ICDIGIEKFLA_OOMNHEBCJDG" => Some(Self::IcdigiekflaOomnhebcjdg), + "ICDIGIEKFLA_AEOFPICFEMF" => Some(Self::IcdigiekflaAeofpicfemf), + "ICDIGIEKFLA_IMKLAKGMDPM" => Some(Self::IcdigiekflaImklakgmdpm), + "ICDIGIEKFLA_OJCKPHPONIA" => Some(Self::IcdigiekflaOjckphponia), + "ICDIGIEKFLA_CCCDBLNAMAC" => Some(Self::IcdigiekflaCccdblnamac), + "ICDIGIEKFLA_NDLGBPKADCF" => Some(Self::IcdigiekflaNdlgbpkadcf), + "ICDIGIEKFLA_NKLKPOOGGGJ" => Some(Self::IcdigiekflaNklkpoogggj), + "ICDIGIEKFLA_BOPMIJBAEDO" => Some(Self::IcdigiekflaBopmijbaedo), + "ICDIGIEKFLA_JODKKGGOKAF" => Some(Self::IcdigiekflaJodkkggokaf), + "ICDIGIEKFLA_OJHFFKHKFCO" => Some(Self::IcdigiekflaOjhffkhkfco), + "ICDIGIEKFLA_PLKKOPGPFFM" => Some(Self::IcdigiekflaPlkkopgpffm), + "ICDIGIEKFLA_APOINEOCCLN" => Some(Self::IcdigiekflaApoineoccln), + "ICDIGIEKFLA_MOICCJKLFNE" => Some(Self::IcdigiekflaMoiccjklfne), + "ICDIGIEKFLA_OIGMFFPIEFM" => Some(Self::IcdigiekflaOigmffpiefm), + "ICDIGIEKFLA_NHHAOICDINI" => Some(Self::IcdigiekflaNhhaoicdini), + "ICDIGIEKFLA_PBAGLDGHLOK" => Some(Self::IcdigiekflaPbagldghlok), + "ICDIGIEKFLA_MNANFPJBCCK" => Some(Self::IcdigiekflaMnanfpjbcck), + "ICDIGIEKFLA_JPFDINIJFIG" => Some(Self::IcdigiekflaJpfdinijfig), + "ICDIGIEKFLA_EDPODCKKCFL" => Some(Self::IcdigiekflaEdpodckkcfl), + "ICDIGIEKFLA_LPBHFIAJMOK" => Some(Self::IcdigiekflaLpbhfiajmok), + "ICDIGIEKFLA_ADOOCPINENK" => Some(Self::IcdigiekflaAdoocpinenk), + "ICDIGIEKFLA_LHJCJBJJFLF" => Some(Self::IcdigiekflaLhjcjbjjflf), + "ICDIGIEKFLA_OMDILIDGLDN" => Some(Self::IcdigiekflaOmdilidgldn), + "ICDIGIEKFLA_ONCDFPGPNBP" => Some(Self::IcdigiekflaOncdfpgpnbp), + "ICDIGIEKFLA_BDPENHCPHGN" => Some(Self::IcdigiekflaBdpenhcphgn), + "ICDIGIEKFLA_EEAMHCMHPIJ" => Some(Self::IcdigiekflaEeamhcmhpij), + "ICDIGIEKFLA_GGMAMOOKIFB" => Some(Self::IcdigiekflaGgmamookifb), + "ICDIGIEKFLA_GPJEEMAGKEL" => Some(Self::IcdigiekflaGpjeemagkel), + "ICDIGIEKFLA_EOCBKJEILNG" => Some(Self::IcdigiekflaEocbkjeilng), + "ICDIGIEKFLA_DDCMAPFPKND" => Some(Self::IcdigiekflaDdcmapfpknd), + "ICDIGIEKFLA_NKONFLENLGN" => Some(Self::IcdigiekflaNkonflenlgn), + "ICDIGIEKFLA_ACDHKPKFCEO" => Some(Self::IcdigiekflaAcdhkpkfceo), + "ICDIGIEKFLA_JFCJOKMHIEF" => Some(Self::IcdigiekflaJfcjokmhief), + "ICDIGIEKFLA_LDDFILHADJA" => Some(Self::IcdigiekflaLddfilhadja), + "ICDIGIEKFLA_EIODCMPKJLH" => Some(Self::IcdigiekflaEiodcmpkjlh), + "ICDIGIEKFLA_FMBGGGKDAMH" => Some(Self::IcdigiekflaFmbgggkdamh), + "ICDIGIEKFLA_EKJMAIOKAAA" => Some(Self::IcdigiekflaEkjmaiokaaa), + "ICDIGIEKFLA_LAACLDNAPGF" => Some(Self::IcdigiekflaLaacldnapgf), + "ICDIGIEKFLA_EPFPGGFDGKH" => Some(Self::IcdigiekflaEpfpggfdgkh), + "ICDIGIEKFLA_LKFJHJFNGOC" => Some(Self::IcdigiekflaLkfjhjfngoc), + "ICDIGIEKFLA_LCPCCOGLHKM" => Some(Self::IcdigiekflaLcpccoglhkm), + "ICDIGIEKFLA_IBMNKNFGCDF" => Some(Self::IcdigiekflaIbmnknfgcdf), + "ICDIGIEKFLA_GCHBCKBGCHJ" => Some(Self::IcdigiekflaGchbckbgchj), + "ICDIGIEKFLA_EACHNJLGMFP" => Some(Self::IcdigiekflaEachnjlgmfp), + "ICDIGIEKFLA_KECBEMKLJDG" => Some(Self::IcdigiekflaKecbemkljdg), + "ICDIGIEKFLA_ENPONNIDNND" => Some(Self::IcdigiekflaEnponnidnnd), + "ICDIGIEKFLA_IDHCFPFHNGG" => Some(Self::IcdigiekflaIdhcfpfhngg), + "ICDIGIEKFLA_DJCKANLMLNH" => Some(Self::IcdigiekflaDjckanlmlnh), + "ICDIGIEKFLA_FLKKPKPMGJH" => Some(Self::IcdigiekflaFlkkpkpmgjh), + "ICDIGIEKFLA_FDEIOJAEAMF" => Some(Self::IcdigiekflaFdeiojaeamf), + "ICDIGIEKFLA_GELNHNANLDK" => Some(Self::IcdigiekflaGelnhnanldk), + "ICDIGIEKFLA_EHJNGHKNICJ" => Some(Self::IcdigiekflaEhjnghknicj), + "ICDIGIEKFLA_JPKBIKBPFIC" => Some(Self::IcdigiekflaJpkbikbpfic), + "ICDIGIEKFLA_HCCPAFLCPCL" => Some(Self::IcdigiekflaHccpaflcpcl), + "ICDIGIEKFLA_FOIFEJMFNCM" => Some(Self::IcdigiekflaFoifejmfncm), + "ICDIGIEKFLA_BNPADDMLOKL" => Some(Self::IcdigiekflaBnpaddmlokl), + "ICDIGIEKFLA_FFIJDCMAEMK" => Some(Self::IcdigiekflaFfijdcmaemk), + "ICDIGIEKFLA_MDLAHAHLAAL" => Some(Self::IcdigiekflaMdlahahlaal), + "ICDIGIEKFLA_IPLKGDBJFFN" => Some(Self::IcdigiekflaIplkgdbjffn), + "ICDIGIEKFLA_PFAMLOHBAPL" => Some(Self::IcdigiekflaPfamlohbapl), + "ICDIGIEKFLA_HKPNEGLKHBP" => Some(Self::IcdigiekflaHkpneglkhbp), + "ICDIGIEKFLA_IJFAGDOMKHI" => Some(Self::IcdigiekflaIjfagdomkhi), + "ICDIGIEKFLA_CPMNHCBFGCF" => Some(Self::IcdigiekflaCpmnhcbfgcf), + "ICDIGIEKFLA_BJANEFPCBBO" => Some(Self::IcdigiekflaBjanefpcbbo), + "ICDIGIEKFLA_JHIBCIGAHLC" => Some(Self::IcdigiekflaJhibcigahlc), + "ICDIGIEKFLA_AOHADPGHHLE" => Some(Self::IcdigiekflaAohadpghhle), + "ICDIGIEKFLA_MKMAMDGCDOE" => Some(Self::IcdigiekflaMkmamdgcdoe), + "ICDIGIEKFLA_EEPMEPJMKLL" => Some(Self::IcdigiekflaEepmepjmkll), + "ICDIGIEKFLA_FPGCDIMHIEB" => Some(Self::IcdigiekflaFpgcdimhieb), + "ICDIGIEKFLA_NJOAGIBHGKN" => Some(Self::IcdigiekflaNjoagibhgkn), + "ICDIGIEKFLA_EDECBNAEBAC" => Some(Self::IcdigiekflaEdecbnaebac), + "ICDIGIEKFLA_BOIEGEODNEO" => Some(Self::IcdigiekflaBoiegeodneo), + "ICDIGIEKFLA_ECHLDAPPOOP" => Some(Self::IcdigiekflaEchldappoop), + "ICDIGIEKFLA_JGBPDIPKCOL" => Some(Self::IcdigiekflaJgbpdipkcol), + "ICDIGIEKFLA_DHMGDEPADCM" => Some(Self::IcdigiekflaDhmgdepadcm), + "ICDIGIEKFLA_EAMFKIBCPJL" => Some(Self::IcdigiekflaEamfkibcpjl), + "ICDIGIEKFLA_OLIFJCIFBCK" => Some(Self::IcdigiekflaOlifjcifbck), + "ICDIGIEKFLA_BNKLDIEFHJI" => Some(Self::IcdigiekflaBnkldiefhji), + "ICDIGIEKFLA_BPAGJCKCOKK" => Some(Self::IcdigiekflaBpagjckcokk), + "ICDIGIEKFLA_KLINFKDCDIM" => Some(Self::IcdigiekflaKlinfkdcdim), + "ICDIGIEKFLA_HEKGLNLIFOB" => Some(Self::IcdigiekflaHekglnlifob), + "ICDIGIEKFLA_LLEFBMHNNPM" => Some(Self::IcdigiekflaLlefbmhnnpm), + "ICDIGIEKFLA_HNCDEKFDIMC" => Some(Self::IcdigiekflaHncdekfdimc), + "ICDIGIEKFLA_PGOCCLAFJHF" => Some(Self::IcdigiekflaPgocclafjhf), + "ICDIGIEKFLA_DPHMEOMDIOJ" => Some(Self::IcdigiekflaDphmeomdioj), + "ICDIGIEKFLA_OODDHMNFDLF" => Some(Self::IcdigiekflaOoddhmnfdlf), + "ICDIGIEKFLA_ONAPAJLHGJN" => Some(Self::IcdigiekflaOnapajlhgjn), + "ICDIGIEKFLA_LHDGELCDOGM" => Some(Self::IcdigiekflaLhdgelcdogm), + "ICDIGIEKFLA_PFGBDOBGNAK" => Some(Self::IcdigiekflaPfgbdobgnak), + "ICDIGIEKFLA_BHDHEMPKOOD" => Some(Self::IcdigiekflaBhdhempkood), + "ICDIGIEKFLA_AKOIDNJDAKP" => Some(Self::IcdigiekflaAkoidnjdakp), + "ICDIGIEKFLA_OIJJEMOHCML" => Some(Self::IcdigiekflaOijjemohcml), + "ICDIGIEKFLA_DAAPNBMJBEN" => Some(Self::IcdigiekflaDaapnbmjben), + "ICDIGIEKFLA_KJFDPHPIECK" => Some(Self::IcdigiekflaKjfdphpieck), + "ICDIGIEKFLA_MDPJFOHDFDP" => Some(Self::IcdigiekflaMdpjfohdfdp), + "ICDIGIEKFLA_LGMIKCJNFNP" => Some(Self::IcdigiekflaLgmikcjnfnp), + "ICDIGIEKFLA_NJBMDOEDDCM" => Some(Self::IcdigiekflaNjbmdoeddcm), + "ICDIGIEKFLA_BAJOGOABEHH" => Some(Self::IcdigiekflaBajogoabehh), + "ICDIGIEKFLA_LHCDENDPCNL" => Some(Self::IcdigiekflaLhcdendpcnl), + "ICDIGIEKFLA_LDMOKPEAIAN" => Some(Self::IcdigiekflaLdmokpeaian), + "ICDIGIEKFLA_BAIKNEHMBMG" => Some(Self::IcdigiekflaBaiknehmbmg), + "ICDIGIEKFLA_FEFHAPHMEOE" => Some(Self::IcdigiekflaFefhaphmeoe), + "ICDIGIEKFLA_KPJGJODLBAO" => Some(Self::IcdigiekflaKpjgjodlbao), + "ICDIGIEKFLA_FCGDCJNMHHJ" => Some(Self::IcdigiekflaFcgdcjnmhhj), + "ICDIGIEKFLA_IBFIGCFCJOG" => Some(Self::IcdigiekflaIbfigcfcjog), + "ICDIGIEKFLA_NCKNCLECIOG" => Some(Self::IcdigiekflaNckncleciog), + "ICDIGIEKFLA_PKJPEAABAOE" => Some(Self::IcdigiekflaPkjpeaabaoe), + "ICDIGIEKFLA_HOIDLGFCHPH" => Some(Self::IcdigiekflaHoidlgfchph), + "ICDIGIEKFLA_ICOCBIIHMPJ" => Some(Self::IcdigiekflaIcocbiihmpj), + "ICDIGIEKFLA_CEEAPCBDCFA" => Some(Self::IcdigiekflaCeeapcbdcfa), + "ICDIGIEKFLA_CCLENCKGNNF" => Some(Self::IcdigiekflaCclenckgnnf), + "ICDIGIEKFLA_IJMDIGKLFDM" => Some(Self::IcdigiekflaIjmdigklfdm), + "ICDIGIEKFLA_FNJNNDKHLDF" => Some(Self::IcdigiekflaFnjnndkhldf), + "ICDIGIEKFLA_NLDKJFNEHPH" => Some(Self::IcdigiekflaNldkjfnehph), + "ICDIGIEKFLA_KMABCPJDJOE" => Some(Self::IcdigiekflaKmabcpjdjoe), + "ICDIGIEKFLA_PJJLEJLMEAK" => Some(Self::IcdigiekflaPjjlejlmeak), + "ICDIGIEKFLA_ALPBMOLLLHE" => Some(Self::IcdigiekflaAlpbmolllhe), + "ICDIGIEKFLA_FJNOHLOBGOJ" => Some(Self::IcdigiekflaFjnohlobgoj), + "ICDIGIEKFLA_BJBHKFJEIBL" => Some(Self::IcdigiekflaBjbhkfjeibl), + "ICDIGIEKFLA_FIPAOOELMGP" => Some(Self::IcdigiekflaFipaooelmgp), + "ICDIGIEKFLA_FBDPPAGMHBO" => Some(Self::IcdigiekflaFbdppagmhbo), + "ICDIGIEKFLA_FMPNEGALJJO" => Some(Self::IcdigiekflaFmpnegaljjo), + "ICDIGIEKFLA_OMJPOIGIBFK" => Some(Self::IcdigiekflaOmjpoigibfk), + "ICDIGIEKFLA_GDNEONDLFFE" => Some(Self::IcdigiekflaGdneondlffe), + "ICDIGIEKFLA_INJGNLPJMOE" => Some(Self::IcdigiekflaInjgnlpjmoe), + "ICDIGIEKFLA_DKJLIAIGLOJ" => Some(Self::IcdigiekflaDkjliaigloj), + "ICDIGIEKFLA_OAMEJMAMECA" => Some(Self::IcdigiekflaOamejmameca), + "ICDIGIEKFLA_FDCGNJJGLMM" => Some(Self::IcdigiekflaFdcgnjjglmm), + "ICDIGIEKFLA_LIAHHMKDJLB" => Some(Self::IcdigiekflaLiahhmkdjlb), + "ICDIGIEKFLA_OOIGAKKGEHL" => Some(Self::IcdigiekflaOoigakkgehl), + "ICDIGIEKFLA_AEMHIAMMFNN" => Some(Self::IcdigiekflaAemhiammfnn), + "ICDIGIEKFLA_GEBPGFEDBJF" => Some(Self::IcdigiekflaGebpgfedbjf), + "ICDIGIEKFLA_AOPEFJFLGFJ" => Some(Self::IcdigiekflaAopefjflgfj), + "ICDIGIEKFLA_ICDLNLFBMGP" => Some(Self::IcdigiekflaIcdlnlfbmgp), + "ICDIGIEKFLA_OPLGELCBCII" => Some(Self::IcdigiekflaOplgelcbcii), + "ICDIGIEKFLA_DACNGICBEIF" => Some(Self::IcdigiekflaDacngicbeif), + "ICDIGIEKFLA_PGMECKEOKLE" => Some(Self::IcdigiekflaPgmeckeokle), + "ICDIGIEKFLA_HKAMMOLJIIM" => Some(Self::IcdigiekflaHkammoljiim), + "ICDIGIEKFLA_OAHCJDKAAJC" => Some(Self::IcdigiekflaOahcjdkaajc), + "ICDIGIEKFLA_LGAAMCPBPIJ" => Some(Self::IcdigiekflaLgaamcpbpij), + "ICDIGIEKFLA_LFCIJAIMADK" => Some(Self::IcdigiekflaLfcijaimadk), + "ICDIGIEKFLA_DCOKLMMOCMF" => Some(Self::IcdigiekflaDcoklmmocmf), + "ICDIGIEKFLA_OMIOFJAOIAH" => Some(Self::IcdigiekflaOmiofjaoiah), + "ICDIGIEKFLA_MPEAAMLKPPF" => Some(Self::IcdigiekflaMpeaamlkppf), + "ICDIGIEKFLA_GDKKMFKGIJF" => Some(Self::IcdigiekflaGdkkmfkgijf), + "ICDIGIEKFLA_CNBEAGCCJGJ" => Some(Self::IcdigiekflaCnbeagccjgj), + "ICDIGIEKFLA_JMGCBBJLELL" => Some(Self::IcdigiekflaJmgcbbjlell), + "ICDIGIEKFLA_FEKOHKJJAKH" => Some(Self::IcdigiekflaFekohkjjakh), + "ICDIGIEKFLA_MMDNMNFEJOD" => Some(Self::IcdigiekflaMmdnmnfejod), + "ICDIGIEKFLA_EEEIPFEELDL" => Some(Self::IcdigiekflaEeeipfeeldl), + "ICDIGIEKFLA_BINLJKMMPLN" => Some(Self::IcdigiekflaBinljkmmpln), + "ICDIGIEKFLA_DGFNFPHLEEP" => Some(Self::IcdigiekflaDgfnfphleep), + "ICDIGIEKFLA_EFNEFENLGDB" => Some(Self::IcdigiekflaEfnefenlgdb), + "ICDIGIEKFLA_DOJJNIONBOG" => Some(Self::IcdigiekflaDojjnionbog), + "ICDIGIEKFLA_GEHLBLJLIDN" => Some(Self::IcdigiekflaGehlbljlidn), + "ICDIGIEKFLA_DPFPKFCCHEL" => Some(Self::IcdigiekflaDpfpkfcchel), + "ICDIGIEKFLA_PLGJFJGHFIC" => Some(Self::IcdigiekflaPlgjfjghfic), + "ICDIGIEKFLA_KBCLLPPDGFH" => Some(Self::IcdigiekflaKbcllppdgfh), + "ICDIGIEKFLA_GCOAGHOGEJH" => Some(Self::IcdigiekflaGcoaghogejh), + "ICDIGIEKFLA_EHLMMJOCLFJ" => Some(Self::IcdigiekflaEhlmmjoclfj), + "ICDIGIEKFLA_JPEOLJLPMKC" => Some(Self::IcdigiekflaJpeoljlpmkc), + "ICDIGIEKFLA_POPBIEDCJMM" => Some(Self::IcdigiekflaPopbiedcjmm), + "ICDIGIEKFLA_LEMBOOHBLGA" => Some(Self::IcdigiekflaLemboohblga), + "ICDIGIEKFLA_FEGIDHHINGK" => Some(Self::IcdigiekflaFegidhhingk), + "ICDIGIEKFLA_KEDFAHHKDMA" => Some(Self::IcdigiekflaKedfahhkdma), + "ICDIGIEKFLA_CCCJMIBGBPO" => Some(Self::IcdigiekflaCccjmibgbpo), + "ICDIGIEKFLA_POPBEBECALL" => Some(Self::IcdigiekflaPopbebecall), + "ICDIGIEKFLA_DIEOPIMMAMJ" => Some(Self::IcdigiekflaDieopimmamj), + "ICDIGIEKFLA_EICKIGHFMOH" => Some(Self::IcdigiekflaEickighfmoh), + "ICDIGIEKFLA_OIGCNAPCBLE" => Some(Self::IcdigiekflaOigcnapcble), + "ICDIGIEKFLA_LDOJEHPLDEJ" => Some(Self::IcdigiekflaLdojehpldej), + "ICDIGIEKFLA_JACBLLGNDLH" => Some(Self::IcdigiekflaJacbllgndlh), + "ICDIGIEKFLA_IOHAFBNJCFI" => Some(Self::IcdigiekflaIohafbnjcfi), + "ICDIGIEKFLA_NNLGMNBDHDE" => Some(Self::IcdigiekflaNnlgmnbdhde), + "ICDIGIEKFLA_MODNGBIKNLD" => Some(Self::IcdigiekflaModngbiknld), + "ICDIGIEKFLA_PCEFGJJCGNC" => Some(Self::IcdigiekflaPcefgjjcgnc), + "ICDIGIEKFLA_PPILIKHGFJA" => Some(Self::IcdigiekflaPpilikhgfja), + "ICDIGIEKFLA_OENPJMHDFOE" => Some(Self::IcdigiekflaOenpjmhdfoe), + "ICDIGIEKFLA_NOCDMINAAMH" => Some(Self::IcdigiekflaNocdminaamh), + "ICDIGIEKFLA_MHHNFNFFMFO" => Some(Self::IcdigiekflaMhhnfnffmfo), + "ICDIGIEKFLA_BLJNJDBMEGF" => Some(Self::IcdigiekflaBljnjdbmegf), + "ICDIGIEKFLA_KPLPGKLCFKO" => Some(Self::IcdigiekflaKplpgklcfko), + "ICDIGIEKFLA_OJCGHOMEACD" => Some(Self::IcdigiekflaOjcghomeacd), + "ICDIGIEKFLA_AJHMHCGNEKK" => Some(Self::IcdigiekflaAjhmhcgnekk), + "ICDIGIEKFLA_EMLGHKCBAFI" => Some(Self::IcdigiekflaEmlghkcbafi), + "ICDIGIEKFLA_CHPKJIJMNLB" => Some(Self::IcdigiekflaChpkjijmnlb), + "ICDIGIEKFLA_GINDCHODECP" => Some(Self::IcdigiekflaGindchodecp), + "ICDIGIEKFLA_AMLMNEEIDHL" => Some(Self::IcdigiekflaAmlmneeidhl), + "ICDIGIEKFLA_OPEDCDHKCFC" => Some(Self::IcdigiekflaOpedcdhkcfc), + "ICDIGIEKFLA_OCOBADFNEIJ" => Some(Self::IcdigiekflaOcobadfneij), + "ICDIGIEKFLA_CFHLPNAICAE" => Some(Self::IcdigiekflaCfhlpnaicae), + "ICDIGIEKFLA_NHGJMLEMGDL" => Some(Self::IcdigiekflaNhgjmlemgdl), + "ICDIGIEKFLA_GFIENMCKEMC" => Some(Self::IcdigiekflaGfienmckemc), + "ICDIGIEKFLA_BOOCGFEIMKJ" => Some(Self::IcdigiekflaBoocgfeimkj), + "ICDIGIEKFLA_EEDNNMLCOJP" => Some(Self::IcdigiekflaEednnmlcojp), + "ICDIGIEKFLA_BBPIMGFGDEN" => Some(Self::IcdigiekflaBbpimgfgden), + "ICDIGIEKFLA_GPGCOIGGIOH" => Some(Self::IcdigiekflaGpgcoiggioh), + "ICDIGIEKFLA_IJENBEIADAO" => Some(Self::IcdigiekflaIjenbeiadao), + "ICDIGIEKFLA_DNNAOIKHKCB" => Some(Self::IcdigiekflaDnnaoikhkcb), + "ICDIGIEKFLA_MBPBGJEFAKI" => Some(Self::IcdigiekflaMbpbgjefaki), + "ICDIGIEKFLA_JKLHEDPEJBB" => Some(Self::IcdigiekflaJklhedpejbb), + "ICDIGIEKFLA_HEEEECKAHGN" => Some(Self::IcdigiekflaHeeeeckahgn), + "ICDIGIEKFLA_NNIAKBAJOEC" => Some(Self::IcdigiekflaNniakbajoec), + "ICDIGIEKFLA_JNPMJKAJNJO" => Some(Self::IcdigiekflaJnpmjkajnjo), + "ICDIGIEKFLA_FKKKAFNHCMJ" => Some(Self::IcdigiekflaFkkkafnhcmj), + "ICDIGIEKFLA_HJJEGFPOEFD" => Some(Self::IcdigiekflaHjjegfpoefd), + "ICDIGIEKFLA_IOLJAIMFPMH" => Some(Self::IcdigiekflaIoljaimfpmh), + "ICDIGIEKFLA_PJPNJDIELAN" => Some(Self::IcdigiekflaPjpnjdielan), + "ICDIGIEKFLA_BFBCKBBPFDJ" => Some(Self::IcdigiekflaBfbckbbpfdj), + "ICDIGIEKFLA_OKKDHPMJNOC" => Some(Self::IcdigiekflaOkkdhpmjnoc), + "ICDIGIEKFLA_ELLBFICLCFJ" => Some(Self::IcdigiekflaEllbficlcfj), + "ICDIGIEKFLA_AHMEIGGIPKH" => Some(Self::IcdigiekflaAhmeiggipkh), + "ICDIGIEKFLA_JNPEHGDIFED" => Some(Self::IcdigiekflaJnpehgdifed), + "ICDIGIEKFLA_DBIKLNGBHID" => Some(Self::IcdigiekflaDbiklngbhid), + "ICDIGIEKFLA_IEJPBBLFCML" => Some(Self::IcdigiekflaIejpbblfcml), + "ICDIGIEKFLA_LKKHGJMHPHB" => Some(Self::IcdigiekflaLkkhgjmhphb), + "ICDIGIEKFLA_HOPLCOFOCLI" => Some(Self::IcdigiekflaHoplcofocli), + "ICDIGIEKFLA_BNAFOOEFHCJ" => Some(Self::IcdigiekflaBnafooefhcj), + "ICDIGIEKFLA_NPMDACPOJOL" => Some(Self::IcdigiekflaNpmdacpojol), + "ICDIGIEKFLA_JKDMJMMIONN" => Some(Self::IcdigiekflaJkdmjmmionn), + "ICDIGIEKFLA_CNLEKEBJCIO" => Some(Self::IcdigiekflaCnlekebjcio), + "ICDIGIEKFLA_DMOMGGCKDHE" => Some(Self::IcdigiekflaDmomggckdhe), + "ICDIGIEKFLA_FNOMKDDFCED" => Some(Self::IcdigiekflaFnomkddfced), + "ICDIGIEKFLA_MPOHCJMLEKO" => Some(Self::IcdigiekflaMpohcjmleko), + "ICDIGIEKFLA_HOBNDANNCFE" => Some(Self::IcdigiekflaHobndanncfe), + "ICDIGIEKFLA_HEHLLGNMJGD" => Some(Self::IcdigiekflaHehllgnmjgd), + "ICDIGIEKFLA_GGCBNLGLOEL" => Some(Self::IcdigiekflaGgcbnlgloel), + "ICDIGIEKFLA_NKOPCJGNINH" => Some(Self::IcdigiekflaNkopcjgninh), + "ICDIGIEKFLA_JLNKEDBCLAK" => Some(Self::IcdigiekflaJlnkedbclak), + "ICDIGIEKFLA_DHEECAEDPPA" => Some(Self::IcdigiekflaDheecaedppa), + "ICDIGIEKFLA_CGLBHLLMNDE" => Some(Self::IcdigiekflaCglbhllmnde), + "ICDIGIEKFLA_MGEMMKPHBAG" => Some(Self::IcdigiekflaMgemmkphbag), + "ICDIGIEKFLA_JDKCMHIBCCL" => Some(Self::IcdigiekflaJdkcmhibccl), + "ICDIGIEKFLA_NEBFGIKHJML" => Some(Self::IcdigiekflaNebfgikhjml), + "ICDIGIEKFLA_KBJOEOODFBP" => Some(Self::IcdigiekflaKbjoeoodfbp), + "ICDIGIEKFLA_JLOOILAJMDB" => Some(Self::IcdigiekflaJlooilajmdb), + "ICDIGIEKFLA_NNJEHFCFMBJ" => Some(Self::IcdigiekflaNnjehfcfmbj), + "ICDIGIEKFLA_GDALBBINLAA" => Some(Self::IcdigiekflaGdalbbinlaa), + "ICDIGIEKFLA_KDABBBMAALD" => Some(Self::IcdigiekflaKdabbbmaald), + "ICDIGIEKFLA_DNPDAEHPIJJ" => Some(Self::IcdigiekflaDnpdaehpijj), + "ICDIGIEKFLA_PCACAABNEEH" => Some(Self::IcdigiekflaPcacaabneeh), + "ICDIGIEKFLA_MDBHHLMKNCF" => Some(Self::IcdigiekflaMdbhhlmkncf), + "ICDIGIEKFLA_FJMNGMECIKB" => Some(Self::IcdigiekflaFjmngmecikb), + "ICDIGIEKFLA_GFMFPGOLKHK" => Some(Self::IcdigiekflaGfmfpgolkhk), + "ICDIGIEKFLA_LFLAPKHOMHJ" => Some(Self::IcdigiekflaLflapkhomhj), + "ICDIGIEKFLA_MBBEBJDLIBB" => Some(Self::IcdigiekflaMbbebjdlibb), + "ICDIGIEKFLA_GJGKHLIKKBG" => Some(Self::IcdigiekflaGjgkhlikkbg), + "ICDIGIEKFLA_EFAKKMMFGCP" => Some(Self::IcdigiekflaEfakkmmfgcp), + "ICDIGIEKFLA_NHFKFBPOOOA" => Some(Self::IcdigiekflaNhfkfbpoooa), + "ICDIGIEKFLA_OALEHMPHLAG" => Some(Self::IcdigiekflaOalehmphlag), + "ICDIGIEKFLA_CLAKDNDAGKB" => Some(Self::IcdigiekflaClakdndagkb), + "ICDIGIEKFLA_BPJFHABAGMM" => Some(Self::IcdigiekflaBpjfhabagmm), + "ICDIGIEKFLA_PPOGJMJCNLL" => Some(Self::IcdigiekflaPpogjmjcnll), + "ICDIGIEKFLA_DJFEJAEDONC" => Some(Self::IcdigiekflaDjfejaedonc), + "ICDIGIEKFLA_PKCBIMBAFBL" => Some(Self::IcdigiekflaPkcbimbafbl), + "ICDIGIEKFLA_OOKKMHAJNDJ" => Some(Self::IcdigiekflaOokkmhajndj), + "ICDIGIEKFLA_DJABOMPGOFA" => Some(Self::IcdigiekflaDjabompgofa), + "ICDIGIEKFLA_LJKBBHDAMDP" => Some(Self::IcdigiekflaLjkbbhdamdp), + "ICDIGIEKFLA_NNKMKJOCAFF" => Some(Self::IcdigiekflaNnkmkjocaff), + "ICDIGIEKFLA_MBKKOMAAMBC" => Some(Self::IcdigiekflaMbkkomaambc), + "ICDIGIEKFLA_HFDILANENCC" => Some(Self::IcdigiekflaHfdilanencc), + "ICDIGIEKFLA_JKCOKDDHHJP" => Some(Self::IcdigiekflaJkcokddhhjp), + "ICDIGIEKFLA_PDBCKFJBAFB" => Some(Self::IcdigiekflaPdbckfjbafb), + "ICDIGIEKFLA_NGNKECCGONK" => Some(Self::IcdigiekflaNgnkeccgonk), + "ICDIGIEKFLA_HHEABKGPMLM" => Some(Self::IcdigiekflaHheabkgpmlm), + "ICDIGIEKFLA_GIFDJHIOAKJ" => Some(Self::IcdigiekflaGifdjhioakj), + "ICDIGIEKFLA_LNDLDCCDGOO" => Some(Self::IcdigiekflaLndldccdgoo), + "ICDIGIEKFLA_JLAJLCJGGKA" => Some(Self::IcdigiekflaJlajlcjggka), + "ICDIGIEKFLA_GKHIHEFHGED" => Some(Self::IcdigiekflaGkhihefhged), + "ICDIGIEKFLA_JENNOHBFIPD" => Some(Self::IcdigiekflaJennohbfipd), + "ICDIGIEKFLA_DBEHLGGLBAK" => Some(Self::IcdigiekflaDbehlgglbak), + "ICDIGIEKFLA_IDIDJMJOBAA" => Some(Self::IcdigiekflaIdidjmjobaa), + "ICDIGIEKFLA_EGGABKCFCGP" => Some(Self::IcdigiekflaEggabkcfcgp), + "ICDIGIEKFLA_FBBFAGKKCPC" => Some(Self::IcdigiekflaFbbfagkkcpc), + "ICDIGIEKFLA_ALOBKMPCDIH" => Some(Self::IcdigiekflaAlobkmpcdih), + "ICDIGIEKFLA_NPMALEJCIKD" => Some(Self::IcdigiekflaNpmalejcikd), + "ICDIGIEKFLA_HLMKCOMFJLB" => Some(Self::IcdigiekflaHlmkcomfjlb), + "ICDIGIEKFLA_GILLMKMOMCN" => Some(Self::IcdigiekflaGillmkmomcn), + "ICDIGIEKFLA_BPMPLINLDDB" => Some(Self::IcdigiekflaBpmplinlddb), + "ICDIGIEKFLA_NACEMEFODKE" => Some(Self::IcdigiekflaNacemefodke), + "ICDIGIEKFLA_BAGEDCGHOIB" => Some(Self::IcdigiekflaBagedcghoib), + "ICDIGIEKFLA_KFENCOMPOJA" => Some(Self::IcdigiekflaKfencompoja), + "ICDIGIEKFLA_PIDICMFEHJL" => Some(Self::IcdigiekflaPidicmfehjl), + "ICDIGIEKFLA_OEPEKOKHGAG" => Some(Self::IcdigiekflaOepekokhgag), + "ICDIGIEKFLA_IFFDLILOCJN" => Some(Self::IcdigiekflaIffdlilocjn), + "ICDIGIEKFLA_MPFHGFOLHJJ" => Some(Self::IcdigiekflaMpfhgfolhjj), + "ICDIGIEKFLA_MKHACGAOAHP" => Some(Self::IcdigiekflaMkhacgaoahp), + "ICDIGIEKFLA_PPIHHMFKKIH" => Some(Self::IcdigiekflaPpihhmfkkih), + "ICDIGIEKFLA_OOLHNJOKPBK" => Some(Self::IcdigiekflaOolhnjokpbk), + "ICDIGIEKFLA_CKGFKAJIEIG" => Some(Self::IcdigiekflaCkgfkajieig), + "ICDIGIEKFLA_LCKHIPGLKMO" => Some(Self::IcdigiekflaLckhipglkmo), + "ICDIGIEKFLA_MCBGCCDKPBF" => Some(Self::IcdigiekflaMcbgccdkpbf), + "ICDIGIEKFLA_JGPCHDJFPPG" => Some(Self::IcdigiekflaJgpchdjfppg), + "ICDIGIEKFLA_NNEBDMJELBF" => Some(Self::IcdigiekflaNnebdmjelbf), + "ICDIGIEKFLA_GJFOLBMDAIH" => Some(Self::IcdigiekflaGjfolbmdaih), + "ICDIGIEKFLA_LJGAFPBEMBD" => Some(Self::IcdigiekflaLjgafpbembd), + "ICDIGIEKFLA_BAAJOOJGPCP" => Some(Self::IcdigiekflaBaajoojgpcp), + "ICDIGIEKFLA_KDFBPCKGHHO" => Some(Self::IcdigiekflaKdfbpckghho), + "ICDIGIEKFLA_BKLDNHNPALD" => Some(Self::IcdigiekflaBkldnhnpald), + "ICDIGIEKFLA_PLHPMNLMBGI" => Some(Self::IcdigiekflaPlhpmnlmbgi), + "ICDIGIEKFLA_BHHIGJBJLFG" => Some(Self::IcdigiekflaBhhigjbjlfg), + "ICDIGIEKFLA_CEGKMNACONG" => Some(Self::IcdigiekflaCegkmnacong), + "ICDIGIEKFLA_ENDDIMDGCEP" => Some(Self::IcdigiekflaEnddimdgcep), + "ICDIGIEKFLA_PMNLAMMBPJI" => Some(Self::IcdigiekflaPmnlammbpji), + "ICDIGIEKFLA_OBHKKOHILPI" => Some(Self::IcdigiekflaObhkkohilpi), + "ICDIGIEKFLA_PHJFHDHKKBF" => Some(Self::IcdigiekflaPhjfhdhkkbf), + "ICDIGIEKFLA_EFMLJOCOHEI" => Some(Self::IcdigiekflaEfmljocohei), + "ICDIGIEKFLA_PPDGIGDEJKG" => Some(Self::IcdigiekflaPpdgigdejkg), + "ICDIGIEKFLA_AGHGBOKAEFE" => Some(Self::IcdigiekflaAghgbokaefe), + "ICDIGIEKFLA_EMDCDCBFNCO" => Some(Self::IcdigiekflaEmdcdcbfnco), + "ICDIGIEKFLA_KNNEJDBEBKK" => Some(Self::IcdigiekflaKnnejdbebkk), + "ICDIGIEKFLA_NENAAENOJON" => Some(Self::IcdigiekflaNenaaenojon), + "ICDIGIEKFLA_AJEJOBCHPMO" => Some(Self::IcdigiekflaAjejobchpmo), + "ICDIGIEKFLA_GBEMALCOCLA" => Some(Self::IcdigiekflaGbemalcocla), + "ICDIGIEKFLA_JIHACAHBPLJ" => Some(Self::IcdigiekflaJihacahbplj), + "ICDIGIEKFLA_ONKGKGCDAKO" => Some(Self::IcdigiekflaOnkgkgcdako), + "ICDIGIEKFLA_FOAKHHDFEIJ" => Some(Self::IcdigiekflaFoakhhdfeij), + "ICDIGIEKFLA_CJFMBPBMNLM" => Some(Self::IcdigiekflaCjfmbpbmnlm), + "ICDIGIEKFLA_BDFGKOKMIMN" => Some(Self::IcdigiekflaBdfgkokmimn), + "ICDIGIEKFLA_GENOIKKJOOD" => Some(Self::IcdigiekflaGenoikkjood), + "ICDIGIEKFLA_AOECHBPGKCN" => Some(Self::IcdigiekflaAoechbpgkcn), + "ICDIGIEKFLA_KGCEOJLKFDP" => Some(Self::IcdigiekflaKgceojlkfdp), + "ICDIGIEKFLA_NOIIHJJMLEH" => Some(Self::IcdigiekflaNoiihjjmleh), + "ICDIGIEKFLA_GCHENDFGBCE" => Some(Self::IcdigiekflaGchendfgbce), + "ICDIGIEKFLA_BCIOHJNADML" => Some(Self::IcdigiekflaBciohjnadml), + "ICDIGIEKFLA_LOEEMJCNGPL" => Some(Self::IcdigiekflaLoeemjcngpl), + "ICDIGIEKFLA_IIBGMFBIAGG" => Some(Self::IcdigiekflaIibgmfbiagg), + "ICDIGIEKFLA_OCEKFMEPBNN" => Some(Self::IcdigiekflaOcekfmepbnn), + "ICDIGIEKFLA_OLPANLOPCJC" => Some(Self::IcdigiekflaOlpanlopcjc), + "ICDIGIEKFLA_DENGBOAGECC" => Some(Self::IcdigiekflaDengboagecc), + "ICDIGIEKFLA_KLINPACJGGK" => Some(Self::IcdigiekflaKlinpacjggk), + "ICDIGIEKFLA_DLBPOFIJHJI" => Some(Self::IcdigiekflaDlbpofijhji), + "ICDIGIEKFLA_GFNACHMKLNE" => Some(Self::IcdigiekflaGfnachmklne), + "ICDIGIEKFLA_APFADBGCJAP" => Some(Self::IcdigiekflaApfadbgcjap), + "ICDIGIEKFLA_KMMEKBKDOKP" => Some(Self::IcdigiekflaKmmekbkdokp), + "ICDIGIEKFLA_OGJEGMDEBCL" => Some(Self::IcdigiekflaOgjegmdebcl), + "ICDIGIEKFLA_OJNIECELOAA" => Some(Self::IcdigiekflaOjnieceloaa), + "ICDIGIEKFLA_JACFMKDEKEC" => Some(Self::IcdigiekflaJacfmkdekec), + "ICDIGIEKFLA_NBKDNOIKMEI" => Some(Self::IcdigiekflaNbkdnoikmei), + "ICDIGIEKFLA_FBIBMANPNBC" => Some(Self::IcdigiekflaFbibmanpnbc), + "ICDIGIEKFLA_JEEABDJGFHD" => Some(Self::IcdigiekflaJeeabdjgfhd), + "ICDIGIEKFLA_MEJEFBBGOIO" => Some(Self::IcdigiekflaMejefbbgoio), + "ICDIGIEKFLA_OGHGNNFOCCM" => Some(Self::IcdigiekflaOghgnnfoccm), + "ICDIGIEKFLA_NHCBNJHFKHN" => Some(Self::IcdigiekflaNhcbnjhfkhn), + "ICDIGIEKFLA_PHKJIMNJCHM" => Some(Self::IcdigiekflaPhkjimnjchm), _ => None, } } @@ -66457,37 +66767,37 @@ impl Retcode { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdActivityType { - None = 0, - CmdTakeTrialActivityRewardScRsp = 2666, - CmdAvatarDeliverRewardChooseAvatarCsReq = 2618, - CmdTakeLoginActivityRewardCsReq = 2698, - CmdTrialActivityDataChangeScNotify = 2625, - CmdSubmitMaterialSubmitActivityMaterialCsReq = 2680, - CmdStartTrialActivityScRsp = 2645, - CmdCurTrialActivityScNotify = 2602, - CmdAvatarDeliverRewardChooseAvatarScRsp = 2654, - CmdAvatarDeliverRewardTakeRewardCsReq = 2661, - CmdGetMaterialSubmitActivityDataCsReq = 2668, - CmdGetMaterialSubmitActivityDataScRsp = 2649, - CmdGetLoginActivityScRsp = 2623, - CmdLeaveTrialActivityCsReq = 2695, - CmdEnterTrialActivityStageCsReq = 2685, - CmdTakeMaterialSubmitActivityRewardScRsp = 2651, - CmdGetTrialActivityDataCsReq = 2601, - CmdGetActivityScheduleConfigCsReq = 2683, - CmdTakeLoginActivityRewardScRsp = 2665, - CmdStartTrialActivityCsReq = 2639, - CmdLeaveTrialActivityScRsp = 2679, - CmdTakeTrialActivityRewardCsReq = 2640, - CmdGetLoginActivityCsReq = 2699, - CmdAvatarDeliverRewardTakeRewardScRsp = 2633, - CmdGetAvatarDeliverRewardActivityDataScRsp = 2630, - CmdTakeMaterialSubmitActivityRewardCsReq = 2605, - CmdGetAvatarDeliverRewardActivityDataCsReq = 2688, + FkmpdgbhdnnAlocmfakbkp = 0, + CmdLeaveTrialActivityCsReq = 2631, + CmdSubmitMaterialSubmitActivityMaterialScRsp = 2667, + CmdStartTrialActivityScRsp = 2627, + CmdSubmitMaterialSubmitActivityMaterialCsReq = 2610, + CmdAvatarDeliverRewardTakeRewardCsReq = 2696, + CmdTakeLoginActivityRewardScRsp = 2617, + CmdGetTrialActivityDataCsReq = 2632, + CmdGetAvatarDeliverRewardActivityDataCsReq = 2618, + FkmpdgbhdnnHdmbhdbhnbl = 2668, + CmdGetLoginActivityScRsp = 2609, + CmdTakeTrialActivityRewardCsReq = 2665, + CmdGetTrialActivityDataScRsp = 2700, + CmdGetAvatarDeliverRewardActivityDataScRsp = 2680, + CmdTakeTrialActivityRewardScRsp = 2639, + CmdTakeLoginActivityRewardCsReq = 2638, + CmdAvatarDeliverRewardChooseAvatarScRsp = 2653, + CmdTrialActivityDataChangeScNotify = 2634, + CmdGetActivityScheduleConfigScRsp = 2611, + CmdStartTrialActivityCsReq = 2679, + CmdGetMaterialSubmitActivityDataScRsp = 2637, + CmdTakeMaterialSubmitActivityRewardCsReq = 2662, + CmdGetLoginActivityCsReq = 2647, + CmdAvatarDeliverRewardChooseAvatarCsReq = 2683, + CmdAvatarDeliverRewardTakeRewardScRsp = 2648, + CmdLeaveTrialActivityScRsp = 2641, CmdEnterTrialActivityStageScRsp = 2672, - CmdSubmitMaterialSubmitActivityMaterialScRsp = 2677, - CmdGetTrialActivityDataScRsp = 2696, - CmdGetActivityScheduleConfigScRsp = 2686, + CmdTakeMaterialSubmitActivityRewardScRsp = 2635, + CmdGetActivityScheduleConfigCsReq = 2651, + CmdGetMaterialSubmitActivityDataCsReq = 2693, + CmdCurTrialActivityScNotify = 2602, } impl CmdActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -66496,145 +66806,143 @@ impl CmdActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdActivityTypeNone", - Self::CmdTakeTrialActivityRewardScRsp => "CmdTakeTrialActivityRewardScRsp", - Self::CmdAvatarDeliverRewardChooseAvatarCsReq => { - "CmdAvatarDeliverRewardChooseAvatarCsReq" - } - Self::CmdTakeLoginActivityRewardCsReq => "CmdTakeLoginActivityRewardCsReq", - Self::CmdTrialActivityDataChangeScNotify => { - "CmdTrialActivityDataChangeScNotify" - } - Self::CmdSubmitMaterialSubmitActivityMaterialCsReq => { - "CmdSubmitMaterialSubmitActivityMaterialCsReq" + Self::FkmpdgbhdnnAlocmfakbkp => "FKMPDGBHDNN_ALOCMFAKBKP", + Self::CmdLeaveTrialActivityCsReq => "CmdLeaveTrialActivityCsReq", + Self::CmdSubmitMaterialSubmitActivityMaterialScRsp => { + "CmdSubmitMaterialSubmitActivityMaterialScRsp" } Self::CmdStartTrialActivityScRsp => "CmdStartTrialActivityScRsp", - Self::CmdCurTrialActivityScNotify => "CmdCurTrialActivityScNotify", - Self::CmdAvatarDeliverRewardChooseAvatarScRsp => { - "CmdAvatarDeliverRewardChooseAvatarScRsp" + Self::CmdSubmitMaterialSubmitActivityMaterialCsReq => { + "CmdSubmitMaterialSubmitActivityMaterialCsReq" } Self::CmdAvatarDeliverRewardTakeRewardCsReq => { "CmdAvatarDeliverRewardTakeRewardCsReq" } - Self::CmdGetMaterialSubmitActivityDataCsReq => { - "CmdGetMaterialSubmitActivityDataCsReq" - } - Self::CmdGetMaterialSubmitActivityDataScRsp => { - "CmdGetMaterialSubmitActivityDataScRsp" - } - Self::CmdGetLoginActivityScRsp => "CmdGetLoginActivityScRsp", - Self::CmdLeaveTrialActivityCsReq => "CmdLeaveTrialActivityCsReq", - Self::CmdEnterTrialActivityStageCsReq => "CmdEnterTrialActivityStageCsReq", - Self::CmdTakeMaterialSubmitActivityRewardScRsp => { - "CmdTakeMaterialSubmitActivityRewardScRsp" - } - Self::CmdGetTrialActivityDataCsReq => "CmdGetTrialActivityDataCsReq", - Self::CmdGetActivityScheduleConfigCsReq => { - "CmdGetActivityScheduleConfigCsReq" - } Self::CmdTakeLoginActivityRewardScRsp => "CmdTakeLoginActivityRewardScRsp", - Self::CmdStartTrialActivityCsReq => "CmdStartTrialActivityCsReq", - Self::CmdLeaveTrialActivityScRsp => "CmdLeaveTrialActivityScRsp", - Self::CmdTakeTrialActivityRewardCsReq => "CmdTakeTrialActivityRewardCsReq", - Self::CmdGetLoginActivityCsReq => "CmdGetLoginActivityCsReq", - Self::CmdAvatarDeliverRewardTakeRewardScRsp => { - "CmdAvatarDeliverRewardTakeRewardScRsp" + Self::CmdGetTrialActivityDataCsReq => "CmdGetTrialActivityDataCsReq", + Self::CmdGetAvatarDeliverRewardActivityDataCsReq => { + "CmdGetAvatarDeliverRewardActivityDataCsReq" } + Self::FkmpdgbhdnnHdmbhdbhnbl => "FKMPDGBHDNN_HDMBHDBHNBL", + Self::CmdGetLoginActivityScRsp => "CmdGetLoginActivityScRsp", + Self::CmdTakeTrialActivityRewardCsReq => "CmdTakeTrialActivityRewardCsReq", + Self::CmdGetTrialActivityDataScRsp => "CmdGetTrialActivityDataScRsp", Self::CmdGetAvatarDeliverRewardActivityDataScRsp => { "CmdGetAvatarDeliverRewardActivityDataScRsp" } + Self::CmdTakeTrialActivityRewardScRsp => "CmdTakeTrialActivityRewardScRsp", + Self::CmdTakeLoginActivityRewardCsReq => "CmdTakeLoginActivityRewardCsReq", + Self::CmdAvatarDeliverRewardChooseAvatarScRsp => { + "CmdAvatarDeliverRewardChooseAvatarScRsp" + } + Self::CmdTrialActivityDataChangeScNotify => { + "CmdTrialActivityDataChangeScNotify" + } + Self::CmdGetActivityScheduleConfigScRsp => { + "CmdGetActivityScheduleConfigScRsp" + } + Self::CmdStartTrialActivityCsReq => "CmdStartTrialActivityCsReq", + Self::CmdGetMaterialSubmitActivityDataScRsp => { + "CmdGetMaterialSubmitActivityDataScRsp" + } Self::CmdTakeMaterialSubmitActivityRewardCsReq => { "CmdTakeMaterialSubmitActivityRewardCsReq" } - Self::CmdGetAvatarDeliverRewardActivityDataCsReq => { - "CmdGetAvatarDeliverRewardActivityDataCsReq" + Self::CmdGetLoginActivityCsReq => "CmdGetLoginActivityCsReq", + Self::CmdAvatarDeliverRewardChooseAvatarCsReq => { + "CmdAvatarDeliverRewardChooseAvatarCsReq" } + Self::CmdAvatarDeliverRewardTakeRewardScRsp => { + "CmdAvatarDeliverRewardTakeRewardScRsp" + } + Self::CmdLeaveTrialActivityScRsp => "CmdLeaveTrialActivityScRsp", Self::CmdEnterTrialActivityStageScRsp => "CmdEnterTrialActivityStageScRsp", - Self::CmdSubmitMaterialSubmitActivityMaterialScRsp => { - "CmdSubmitMaterialSubmitActivityMaterialScRsp" + Self::CmdTakeMaterialSubmitActivityRewardScRsp => { + "CmdTakeMaterialSubmitActivityRewardScRsp" } - Self::CmdGetTrialActivityDataScRsp => "CmdGetTrialActivityDataScRsp", - Self::CmdGetActivityScheduleConfigScRsp => { - "CmdGetActivityScheduleConfigScRsp" + Self::CmdGetActivityScheduleConfigCsReq => { + "CmdGetActivityScheduleConfigCsReq" } + Self::CmdGetMaterialSubmitActivityDataCsReq => { + "CmdGetMaterialSubmitActivityDataCsReq" + } + Self::CmdCurTrialActivityScNotify => "CmdCurTrialActivityScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdActivityTypeNone" => Some(Self::None), - "CmdTakeTrialActivityRewardScRsp" => { - Some(Self::CmdTakeTrialActivityRewardScRsp) - } - "CmdAvatarDeliverRewardChooseAvatarCsReq" => { - Some(Self::CmdAvatarDeliverRewardChooseAvatarCsReq) - } - "CmdTakeLoginActivityRewardCsReq" => { - Some(Self::CmdTakeLoginActivityRewardCsReq) - } - "CmdTrialActivityDataChangeScNotify" => { - Some(Self::CmdTrialActivityDataChangeScNotify) - } - "CmdSubmitMaterialSubmitActivityMaterialCsReq" => { - Some(Self::CmdSubmitMaterialSubmitActivityMaterialCsReq) + "FKMPDGBHDNN_ALOCMFAKBKP" => Some(Self::FkmpdgbhdnnAlocmfakbkp), + "CmdLeaveTrialActivityCsReq" => Some(Self::CmdLeaveTrialActivityCsReq), + "CmdSubmitMaterialSubmitActivityMaterialScRsp" => { + Some(Self::CmdSubmitMaterialSubmitActivityMaterialScRsp) } "CmdStartTrialActivityScRsp" => Some(Self::CmdStartTrialActivityScRsp), - "CmdCurTrialActivityScNotify" => Some(Self::CmdCurTrialActivityScNotify), - "CmdAvatarDeliverRewardChooseAvatarScRsp" => { - Some(Self::CmdAvatarDeliverRewardChooseAvatarScRsp) + "CmdSubmitMaterialSubmitActivityMaterialCsReq" => { + Some(Self::CmdSubmitMaterialSubmitActivityMaterialCsReq) } "CmdAvatarDeliverRewardTakeRewardCsReq" => { Some(Self::CmdAvatarDeliverRewardTakeRewardCsReq) } - "CmdGetMaterialSubmitActivityDataCsReq" => { - Some(Self::CmdGetMaterialSubmitActivityDataCsReq) - } - "CmdGetMaterialSubmitActivityDataScRsp" => { - Some(Self::CmdGetMaterialSubmitActivityDataScRsp) - } - "CmdGetLoginActivityScRsp" => Some(Self::CmdGetLoginActivityScRsp), - "CmdLeaveTrialActivityCsReq" => Some(Self::CmdLeaveTrialActivityCsReq), - "CmdEnterTrialActivityStageCsReq" => { - Some(Self::CmdEnterTrialActivityStageCsReq) - } - "CmdTakeMaterialSubmitActivityRewardScRsp" => { - Some(Self::CmdTakeMaterialSubmitActivityRewardScRsp) - } - "CmdGetTrialActivityDataCsReq" => Some(Self::CmdGetTrialActivityDataCsReq), - "CmdGetActivityScheduleConfigCsReq" => { - Some(Self::CmdGetActivityScheduleConfigCsReq) - } "CmdTakeLoginActivityRewardScRsp" => { Some(Self::CmdTakeLoginActivityRewardScRsp) } - "CmdStartTrialActivityCsReq" => Some(Self::CmdStartTrialActivityCsReq), - "CmdLeaveTrialActivityScRsp" => Some(Self::CmdLeaveTrialActivityScRsp), + "CmdGetTrialActivityDataCsReq" => Some(Self::CmdGetTrialActivityDataCsReq), + "CmdGetAvatarDeliverRewardActivityDataCsReq" => { + Some(Self::CmdGetAvatarDeliverRewardActivityDataCsReq) + } + "FKMPDGBHDNN_HDMBHDBHNBL" => Some(Self::FkmpdgbhdnnHdmbhdbhnbl), + "CmdGetLoginActivityScRsp" => Some(Self::CmdGetLoginActivityScRsp), "CmdTakeTrialActivityRewardCsReq" => { Some(Self::CmdTakeTrialActivityRewardCsReq) } - "CmdGetLoginActivityCsReq" => Some(Self::CmdGetLoginActivityCsReq), - "CmdAvatarDeliverRewardTakeRewardScRsp" => { - Some(Self::CmdAvatarDeliverRewardTakeRewardScRsp) - } + "CmdGetTrialActivityDataScRsp" => Some(Self::CmdGetTrialActivityDataScRsp), "CmdGetAvatarDeliverRewardActivityDataScRsp" => { Some(Self::CmdGetAvatarDeliverRewardActivityDataScRsp) } + "CmdTakeTrialActivityRewardScRsp" => { + Some(Self::CmdTakeTrialActivityRewardScRsp) + } + "CmdTakeLoginActivityRewardCsReq" => { + Some(Self::CmdTakeLoginActivityRewardCsReq) + } + "CmdAvatarDeliverRewardChooseAvatarScRsp" => { + Some(Self::CmdAvatarDeliverRewardChooseAvatarScRsp) + } + "CmdTrialActivityDataChangeScNotify" => { + Some(Self::CmdTrialActivityDataChangeScNotify) + } + "CmdGetActivityScheduleConfigScRsp" => { + Some(Self::CmdGetActivityScheduleConfigScRsp) + } + "CmdStartTrialActivityCsReq" => Some(Self::CmdStartTrialActivityCsReq), + "CmdGetMaterialSubmitActivityDataScRsp" => { + Some(Self::CmdGetMaterialSubmitActivityDataScRsp) + } "CmdTakeMaterialSubmitActivityRewardCsReq" => { Some(Self::CmdTakeMaterialSubmitActivityRewardCsReq) } - "CmdGetAvatarDeliverRewardActivityDataCsReq" => { - Some(Self::CmdGetAvatarDeliverRewardActivityDataCsReq) + "CmdGetLoginActivityCsReq" => Some(Self::CmdGetLoginActivityCsReq), + "CmdAvatarDeliverRewardChooseAvatarCsReq" => { + Some(Self::CmdAvatarDeliverRewardChooseAvatarCsReq) } + "CmdAvatarDeliverRewardTakeRewardScRsp" => { + Some(Self::CmdAvatarDeliverRewardTakeRewardScRsp) + } + "CmdLeaveTrialActivityScRsp" => Some(Self::CmdLeaveTrialActivityScRsp), "CmdEnterTrialActivityStageScRsp" => { Some(Self::CmdEnterTrialActivityStageScRsp) } - "CmdSubmitMaterialSubmitActivityMaterialScRsp" => { - Some(Self::CmdSubmitMaterialSubmitActivityMaterialScRsp) + "CmdTakeMaterialSubmitActivityRewardScRsp" => { + Some(Self::CmdTakeMaterialSubmitActivityRewardScRsp) } - "CmdGetTrialActivityDataScRsp" => Some(Self::CmdGetTrialActivityDataScRsp), - "CmdGetActivityScheduleConfigScRsp" => { - Some(Self::CmdGetActivityScheduleConfigScRsp) + "CmdGetActivityScheduleConfigCsReq" => { + Some(Self::CmdGetActivityScheduleConfigCsReq) } + "CmdGetMaterialSubmitActivityDataCsReq" => { + Some(Self::CmdGetMaterialSubmitActivityDataCsReq) + } + "CmdCurTrialActivityScNotify" => Some(Self::CmdCurTrialActivityScNotify), _ => None, } } @@ -66642,26 +66950,26 @@ impl CmdActivityType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pmidehdobhj { - TrialActivityStatusNone = 0, - TrialActivityStatusFinish = 1, +pub enum TrialActivityStatus { + PhboekignpaAlocmfakbkp = 0, + PhboekignpaEddpgfacjae = 1, } -impl Pmidehdobhj { +impl TrialActivityStatus { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TrialActivityStatusNone => "TRIAL_ACTIVITY_STATUS_NONE", - Self::TrialActivityStatusFinish => "TRIAL_ACTIVITY_STATUS_FINISH", + Self::PhboekignpaAlocmfakbkp => "PHBOEKIGNPA_ALOCMFAKBKP", + Self::PhboekignpaEddpgfacjae => "PHBOEKIGNPA_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TRIAL_ACTIVITY_STATUS_NONE" => Some(Self::TrialActivityStatusNone), - "TRIAL_ACTIVITY_STATUS_FINISH" => Some(Self::TrialActivityStatusFinish), + "PHBOEKIGNPA_ALOCMFAKBKP" => Some(Self::PhboekignpaAlocmfakbkp), + "PHBOEKIGNPA_EDDPGFACJAE" => Some(Self::PhboekignpaEddpgfacjae), _ => None, } } @@ -66670,11 +66978,11 @@ impl Pmidehdobhj { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdActivityRewardStat { - None = 0, - CmdGetActivityHotDataCsReq = 9116, - CmdGetActivityRewardCountDataScRsp = 9119, + CmfldmlfnekBeeiamdchpd = 0, + CmdGetActivityRewardCountDataCsReq = 9120, + CmdGetActivityHotDataCsReq = 9112, CmdGetActivityHotDataScRsp = 9117, - CmdGetActivityRewardCountDataCsReq = 9114, + CmdGetActivityRewardCountDataScRsp = 9111, } impl CmdActivityRewardStat { /// String value of the enum field names used in the ProtoBuf definition. @@ -66683,29 +66991,29 @@ impl CmdActivityRewardStat { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdActivityRewardStatNone", - Self::CmdGetActivityHotDataCsReq => "CmdGetActivityHotDataCsReq", - Self::CmdGetActivityRewardCountDataScRsp => { - "CmdGetActivityRewardCountDataScRsp" - } - Self::CmdGetActivityHotDataScRsp => "CmdGetActivityHotDataScRsp", + Self::CmfldmlfnekBeeiamdchpd => "CMFLDMLFNEK_BEEIAMDCHPD", Self::CmdGetActivityRewardCountDataCsReq => { "CmdGetActivityRewardCountDataCsReq" } + Self::CmdGetActivityHotDataCsReq => "CmdGetActivityHotDataCsReq", + Self::CmdGetActivityHotDataScRsp => "CmdGetActivityHotDataScRsp", + Self::CmdGetActivityRewardCountDataScRsp => { + "CmdGetActivityRewardCountDataScRsp" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdActivityRewardStatNone" => Some(Self::None), - "CmdGetActivityHotDataCsReq" => Some(Self::CmdGetActivityHotDataCsReq), - "CmdGetActivityRewardCountDataScRsp" => { - Some(Self::CmdGetActivityRewardCountDataScRsp) - } - "CmdGetActivityHotDataScRsp" => Some(Self::CmdGetActivityHotDataScRsp), + "CMFLDMLFNEK_BEEIAMDCHPD" => Some(Self::CmfldmlfnekBeeiamdchpd), "CmdGetActivityRewardCountDataCsReq" => { Some(Self::CmdGetActivityRewardCountDataCsReq) } + "CmdGetActivityHotDataCsReq" => Some(Self::CmdGetActivityHotDataCsReq), + "CmdGetActivityHotDataScRsp" => Some(Self::CmdGetActivityHotDataScRsp), + "CmdGetActivityRewardCountDataScRsp" => { + Some(Self::CmdGetActivityRewardCountDataScRsp) + } _ => None, } } @@ -66714,19 +67022,19 @@ impl CmdActivityRewardStat { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdAdventureType { - None = 0, - CmdQuickStartCocoonStageCsReq = 1383, - CmdGetFarmStageGachaInfoCsReq = 1398, - CmdQuickStartFarmElementCsReq = 1394, - CmdGetFarmStageGachaInfoScRsp = 1365, - CmdCocoonSweepScRsp = 1344, - CmdEnterAdventureScRsp = 1323, - CmdFarmElementSweepScRsp = 1369, - CmdCocoonSweepCsReq = 1319, - CmdEnterAdventureCsReq = 1399, - CmdQuickStartCocoonStageScRsp = 1386, - CmdFarmElementSweepCsReq = 1381, - CmdQuickStartFarmElementScRsp = 1352, + GnpcdoolmeeAlocmfakbkp = 0, + CmdGetFarmStageGachaInfoScRsp = 1317, + GnpcdoolmeeCcopjnbffaf = 1347, + CmdQuickStartCocoonStageCsReq = 1351, + CmdEnterAdventureScRsp = 1309, + CmdCocoonSweepCsReq = 1395, + CmdGetFarmStageGachaInfoCsReq = 1338, + CmdCocoonSweepScRsp = 1391, + CmdQuickStartCocoonStageScRsp = 1311, + CmdQuickStartFarmElementScRsp = 1320, + CmdQuickStartFarmElementCsReq = 1389, + CmdFarmElementSweepCsReq = 1361, + CmdFarmElementSweepScRsp = 1345, } impl CmdAdventureType { /// String value of the enum field names used in the ProtoBuf definition. @@ -66735,37 +67043,37 @@ impl CmdAdventureType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdAdventureTypeNone", - Self::CmdQuickStartCocoonStageCsReq => "CmdQuickStartCocoonStageCsReq", - Self::CmdGetFarmStageGachaInfoCsReq => "CmdGetFarmStageGachaInfoCsReq", - Self::CmdQuickStartFarmElementCsReq => "CmdQuickStartFarmElementCsReq", + Self::GnpcdoolmeeAlocmfakbkp => "GNPCDOOLMEE_ALOCMFAKBKP", Self::CmdGetFarmStageGachaInfoScRsp => "CmdGetFarmStageGachaInfoScRsp", - Self::CmdCocoonSweepScRsp => "CmdCocoonSweepScRsp", + Self::GnpcdoolmeeCcopjnbffaf => "GNPCDOOLMEE_CCOPJNBFFAF", + Self::CmdQuickStartCocoonStageCsReq => "CmdQuickStartCocoonStageCsReq", Self::CmdEnterAdventureScRsp => "CmdEnterAdventureScRsp", - Self::CmdFarmElementSweepScRsp => "CmdFarmElementSweepScRsp", Self::CmdCocoonSweepCsReq => "CmdCocoonSweepCsReq", - Self::CmdEnterAdventureCsReq => "CmdEnterAdventureCsReq", + Self::CmdGetFarmStageGachaInfoCsReq => "CmdGetFarmStageGachaInfoCsReq", + Self::CmdCocoonSweepScRsp => "CmdCocoonSweepScRsp", Self::CmdQuickStartCocoonStageScRsp => "CmdQuickStartCocoonStageScRsp", - Self::CmdFarmElementSweepCsReq => "CmdFarmElementSweepCsReq", Self::CmdQuickStartFarmElementScRsp => "CmdQuickStartFarmElementScRsp", + Self::CmdQuickStartFarmElementCsReq => "CmdQuickStartFarmElementCsReq", + Self::CmdFarmElementSweepCsReq => "CmdFarmElementSweepCsReq", + Self::CmdFarmElementSweepScRsp => "CmdFarmElementSweepScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdAdventureTypeNone" => Some(Self::None), - "CmdQuickStartCocoonStageCsReq" => Some(Self::CmdQuickStartCocoonStageCsReq), - "CmdGetFarmStageGachaInfoCsReq" => Some(Self::CmdGetFarmStageGachaInfoCsReq), - "CmdQuickStartFarmElementCsReq" => Some(Self::CmdQuickStartFarmElementCsReq), + "GNPCDOOLMEE_ALOCMFAKBKP" => Some(Self::GnpcdoolmeeAlocmfakbkp), "CmdGetFarmStageGachaInfoScRsp" => Some(Self::CmdGetFarmStageGachaInfoScRsp), - "CmdCocoonSweepScRsp" => Some(Self::CmdCocoonSweepScRsp), + "GNPCDOOLMEE_CCOPJNBFFAF" => Some(Self::GnpcdoolmeeCcopjnbffaf), + "CmdQuickStartCocoonStageCsReq" => Some(Self::CmdQuickStartCocoonStageCsReq), "CmdEnterAdventureScRsp" => Some(Self::CmdEnterAdventureScRsp), - "CmdFarmElementSweepScRsp" => Some(Self::CmdFarmElementSweepScRsp), "CmdCocoonSweepCsReq" => Some(Self::CmdCocoonSweepCsReq), - "CmdEnterAdventureCsReq" => Some(Self::CmdEnterAdventureCsReq), + "CmdGetFarmStageGachaInfoCsReq" => Some(Self::CmdGetFarmStageGachaInfoCsReq), + "CmdCocoonSweepScRsp" => Some(Self::CmdCocoonSweepScRsp), "CmdQuickStartCocoonStageScRsp" => Some(Self::CmdQuickStartCocoonStageScRsp), - "CmdFarmElementSweepCsReq" => Some(Self::CmdFarmElementSweepCsReq), "CmdQuickStartFarmElementScRsp" => Some(Self::CmdQuickStartFarmElementScRsp), + "CmdQuickStartFarmElementCsReq" => Some(Self::CmdQuickStartFarmElementCsReq), + "CmdFarmElementSweepCsReq" => Some(Self::CmdFarmElementSweepCsReq), + "CmdFarmElementSweepScRsp" => Some(Self::CmdFarmElementSweepScRsp), _ => None, } } @@ -66774,41 +67082,41 @@ impl CmdAdventureType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdAetherDivideType { - None = 0, - CmdAetherDivideFinishChallengeScNotify = 4849, - CmdClearAetherDividePassiveSkillCsReq = 4830, - CmdSetAetherDivideLineUpCsReq = 4823, - CmdClearAetherDividePassiveSkillScRsp = 4811, - CmdSwitchAetherDivideLineUpSlotCsReq = 4829, - CmdStartAetherDivideStageBattleCsReq = 4812, - CmdSetAetherDivideLineUpScRsp = 4819, - CmdAetherDivideRefreshEndlessScRsp = 4822, - CmdAetherDivideTainerInfoScNotify = 4832, - CmdAetherDivideLineupScNotify = 4836, - CmdAetherDivideTakeChallengeRewardCsReq = 4842, - CmdEnterAetherDivideSceneCsReq = 4826, - CmdLeaveAetherDivideSceneScRsp = 4838, - CmdStartAetherDivideChallengeBattleScRsp = 4844, - CmdEquipAetherDividePassiveSkillCsReq = 4847, - CmdLeaveAetherDivideSceneCsReq = 4821, - CmdAetherDivideRefreshEndlessCsReq = 4809, - CmdEquipAetherDividePassiveSkillScRsp = 4833, - CmdAetherDivideTakeChallengeRewardScRsp = 4837, - CmdAetherDivideSpiritExpUpCsReq = 4831, - CmdGetAetherDivideChallengeInfoScRsp = 4806, - CmdSwitchAetherDivideLineUpSlotScRsp = 4835, - CmdEnterAetherDivideSceneScRsp = 4828, - CmdGetAetherDivideInfoScRsp = 4803, - CmdAetherDivideSpiritInfoScNotify = 4802, - CmdAetherDivideSpiritExpUpScRsp = 4808, - CmdGetAetherDivideInfoCsReq = 4843, - CmdGetAetherDivideChallengeInfoCsReq = 4834, - CmdStartAetherDivideChallengeBattleCsReq = 4820, - CmdAetherDivideRefreshEndlessScNotify = 4816, - CmdStartAetherDivideStageBattleScRsp = 4815, - CmdAetherDivideSkillItemScNotify = 4825, - CmdStartAetherDivideSceneBattleCsReq = 4805, - CmdStartAetherDivideSceneBattleScRsp = 4827, + OafpchjjpgdAlocmfakbkp = 0, + CmdMppinlpankb = 4835, + CmdChjjofpenla = 4807, + CmdHlbckcdicaa = 4810, + CmdLihkfbkognb = 4824, + CmdKnccobpcfel = 4831, + CmdKgjpebcepdl = 4850, + CmdDnheionheie = 4847, + CmdKejcgnhoaml = 4813, + CmdCjcjefbpebc = 4825, + CmdDiohkakcklc = 4848, + CmdFojnpaeenop = 4840, + CmdDbjkdlioieo = 4814, + OafpchjjpgdFhnekimkcib = 4819, + CmdOdigipehbgg = 4826, + CmdMhcgodlnnpj = 4823, + CmdGejionmnikj = 4836, + CmdOpekcngfdjo = 4834, + CmdMhjbacdklfe = 4816, + CmdLjnbhdoaooc = 4820, + CmdAeinlinfcdl = 4833, + CmdOpblfmboffa = 4809, + CmdLafnpeblnde = 4843, + CmdIbnojkhjclc = 4812, + CmdFmhgdkefbbj = 4811, + CmdCmafkhkkdnm = 4827, + CmdDmllgodhjpa = 4844, + CmdIcebbmakhie = 4805, + CmdOicmoejbnjd = 4801, + CmdEdagaaechlk = 4839, + CmdNofnmhpmcjn = 4830, + CmdMjfpnikjefi = 4804, + CmdAndacjggbeb = 4829, + CmdOjjadenfndj = 4802, + CmdHefcpafnhhk = 4845, } impl CmdAetherDivideType { /// String value of the enum field names used in the ProtoBuf definition. @@ -66817,183 +67125,81 @@ impl CmdAetherDivideType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdAetherDivideTypeNone", - Self::CmdAetherDivideFinishChallengeScNotify => { - "CmdAetherDivideFinishChallengeScNotify" - } - Self::CmdClearAetherDividePassiveSkillCsReq => { - "CmdClearAetherDividePassiveSkillCsReq" - } - Self::CmdSetAetherDivideLineUpCsReq => "CmdSetAetherDivideLineUpCsReq", - Self::CmdClearAetherDividePassiveSkillScRsp => { - "CmdClearAetherDividePassiveSkillScRsp" - } - Self::CmdSwitchAetherDivideLineUpSlotCsReq => { - "CmdSwitchAetherDivideLineUpSlotCsReq" - } - Self::CmdStartAetherDivideStageBattleCsReq => { - "CmdStartAetherDivideStageBattleCsReq" - } - Self::CmdSetAetherDivideLineUpScRsp => "CmdSetAetherDivideLineUpScRsp", - Self::CmdAetherDivideRefreshEndlessScRsp => { - "CmdAetherDivideRefreshEndlessScRsp" - } - Self::CmdAetherDivideTainerInfoScNotify => { - "CmdAetherDivideTainerInfoScNotify" - } - Self::CmdAetherDivideLineupScNotify => "CmdAetherDivideLineupScNotify", - Self::CmdAetherDivideTakeChallengeRewardCsReq => { - "CmdAetherDivideTakeChallengeRewardCsReq" - } - Self::CmdEnterAetherDivideSceneCsReq => "CmdEnterAetherDivideSceneCsReq", - Self::CmdLeaveAetherDivideSceneScRsp => "CmdLeaveAetherDivideSceneScRsp", - Self::CmdStartAetherDivideChallengeBattleScRsp => { - "CmdStartAetherDivideChallengeBattleScRsp" - } - Self::CmdEquipAetherDividePassiveSkillCsReq => { - "CmdEquipAetherDividePassiveSkillCsReq" - } - Self::CmdLeaveAetherDivideSceneCsReq => "CmdLeaveAetherDivideSceneCsReq", - Self::CmdAetherDivideRefreshEndlessCsReq => { - "CmdAetherDivideRefreshEndlessCsReq" - } - Self::CmdEquipAetherDividePassiveSkillScRsp => { - "CmdEquipAetherDividePassiveSkillScRsp" - } - Self::CmdAetherDivideTakeChallengeRewardScRsp => { - "CmdAetherDivideTakeChallengeRewardScRsp" - } - Self::CmdAetherDivideSpiritExpUpCsReq => "CmdAetherDivideSpiritExpUpCsReq", - Self::CmdGetAetherDivideChallengeInfoScRsp => { - "CmdGetAetherDivideChallengeInfoScRsp" - } - Self::CmdSwitchAetherDivideLineUpSlotScRsp => { - "CmdSwitchAetherDivideLineUpSlotScRsp" - } - Self::CmdEnterAetherDivideSceneScRsp => "CmdEnterAetherDivideSceneScRsp", - Self::CmdGetAetherDivideInfoScRsp => "CmdGetAetherDivideInfoScRsp", - Self::CmdAetherDivideSpiritInfoScNotify => { - "CmdAetherDivideSpiritInfoScNotify" - } - Self::CmdAetherDivideSpiritExpUpScRsp => "CmdAetherDivideSpiritExpUpScRsp", - Self::CmdGetAetherDivideInfoCsReq => "CmdGetAetherDivideInfoCsReq", - Self::CmdGetAetherDivideChallengeInfoCsReq => { - "CmdGetAetherDivideChallengeInfoCsReq" - } - Self::CmdStartAetherDivideChallengeBattleCsReq => { - "CmdStartAetherDivideChallengeBattleCsReq" - } - Self::CmdAetherDivideRefreshEndlessScNotify => { - "CmdAetherDivideRefreshEndlessScNotify" - } - Self::CmdStartAetherDivideStageBattleScRsp => { - "CmdStartAetherDivideStageBattleScRsp" - } - Self::CmdAetherDivideSkillItemScNotify => "CmdAetherDivideSkillItemScNotify", - Self::CmdStartAetherDivideSceneBattleCsReq => { - "CmdStartAetherDivideSceneBattleCsReq" - } - Self::CmdStartAetherDivideSceneBattleScRsp => { - "CmdStartAetherDivideSceneBattleScRsp" - } + Self::OafpchjjpgdAlocmfakbkp => "OAFPCHJJPGD_ALOCMFAKBKP", + Self::CmdMppinlpankb => "CmdMPPINLPANKB", + Self::CmdChjjofpenla => "CmdCHJJOFPENLA", + Self::CmdHlbckcdicaa => "CmdHLBCKCDICAA", + Self::CmdLihkfbkognb => "CmdLIHKFBKOGNB", + Self::CmdKnccobpcfel => "CmdKNCCOBPCFEL", + Self::CmdKgjpebcepdl => "CmdKGJPEBCEPDL", + Self::CmdDnheionheie => "CmdDNHEIONHEIE", + Self::CmdKejcgnhoaml => "CmdKEJCGNHOAML", + Self::CmdCjcjefbpebc => "CmdCJCJEFBPEBC", + Self::CmdDiohkakcklc => "CmdDIOHKAKCKLC", + Self::CmdFojnpaeenop => "CmdFOJNPAEENOP", + Self::CmdDbjkdlioieo => "CmdDBJKDLIOIEO", + Self::OafpchjjpgdFhnekimkcib => "OAFPCHJJPGD_FHNEKIMKCIB", + Self::CmdOdigipehbgg => "CmdODIGIPEHBGG", + Self::CmdMhcgodlnnpj => "CmdMHCGODLNNPJ", + Self::CmdGejionmnikj => "CmdGEJIONMNIKJ", + Self::CmdOpekcngfdjo => "CmdOPEKCNGFDJO", + Self::CmdMhjbacdklfe => "CmdMHJBACDKLFE", + Self::CmdLjnbhdoaooc => "CmdLJNBHDOAOOC", + Self::CmdAeinlinfcdl => "CmdAEINLINFCDL", + Self::CmdOpblfmboffa => "CmdOPBLFMBOFFA", + Self::CmdLafnpeblnde => "CmdLAFNPEBLNDE", + Self::CmdIbnojkhjclc => "CmdIBNOJKHJCLC", + Self::CmdFmhgdkefbbj => "CmdFMHGDKEFBBJ", + Self::CmdCmafkhkkdnm => "CmdCMAFKHKKDNM", + Self::CmdDmllgodhjpa => "CmdDMLLGODHJPA", + Self::CmdIcebbmakhie => "CmdICEBBMAKHIE", + Self::CmdOicmoejbnjd => "CmdOICMOEJBNJD", + Self::CmdEdagaaechlk => "CmdEDAGAAECHLK", + Self::CmdNofnmhpmcjn => "CmdNOFNMHPMCJN", + Self::CmdMjfpnikjefi => "CmdMJFPNIKJEFI", + Self::CmdAndacjggbeb => "CmdANDACJGGBEB", + Self::CmdOjjadenfndj => "CmdOJJADENFNDJ", + Self::CmdHefcpafnhhk => "CmdHEFCPAFNHHK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdAetherDivideTypeNone" => Some(Self::None), - "CmdAetherDivideFinishChallengeScNotify" => { - Some(Self::CmdAetherDivideFinishChallengeScNotify) - } - "CmdClearAetherDividePassiveSkillCsReq" => { - Some(Self::CmdClearAetherDividePassiveSkillCsReq) - } - "CmdSetAetherDivideLineUpCsReq" => Some(Self::CmdSetAetherDivideLineUpCsReq), - "CmdClearAetherDividePassiveSkillScRsp" => { - Some(Self::CmdClearAetherDividePassiveSkillScRsp) - } - "CmdSwitchAetherDivideLineUpSlotCsReq" => { - Some(Self::CmdSwitchAetherDivideLineUpSlotCsReq) - } - "CmdStartAetherDivideStageBattleCsReq" => { - Some(Self::CmdStartAetherDivideStageBattleCsReq) - } - "CmdSetAetherDivideLineUpScRsp" => Some(Self::CmdSetAetherDivideLineUpScRsp), - "CmdAetherDivideRefreshEndlessScRsp" => { - Some(Self::CmdAetherDivideRefreshEndlessScRsp) - } - "CmdAetherDivideTainerInfoScNotify" => { - Some(Self::CmdAetherDivideTainerInfoScNotify) - } - "CmdAetherDivideLineupScNotify" => Some(Self::CmdAetherDivideLineupScNotify), - "CmdAetherDivideTakeChallengeRewardCsReq" => { - Some(Self::CmdAetherDivideTakeChallengeRewardCsReq) - } - "CmdEnterAetherDivideSceneCsReq" => { - Some(Self::CmdEnterAetherDivideSceneCsReq) - } - "CmdLeaveAetherDivideSceneScRsp" => { - Some(Self::CmdLeaveAetherDivideSceneScRsp) - } - "CmdStartAetherDivideChallengeBattleScRsp" => { - Some(Self::CmdStartAetherDivideChallengeBattleScRsp) - } - "CmdEquipAetherDividePassiveSkillCsReq" => { - Some(Self::CmdEquipAetherDividePassiveSkillCsReq) - } - "CmdLeaveAetherDivideSceneCsReq" => { - Some(Self::CmdLeaveAetherDivideSceneCsReq) - } - "CmdAetherDivideRefreshEndlessCsReq" => { - Some(Self::CmdAetherDivideRefreshEndlessCsReq) - } - "CmdEquipAetherDividePassiveSkillScRsp" => { - Some(Self::CmdEquipAetherDividePassiveSkillScRsp) - } - "CmdAetherDivideTakeChallengeRewardScRsp" => { - Some(Self::CmdAetherDivideTakeChallengeRewardScRsp) - } - "CmdAetherDivideSpiritExpUpCsReq" => { - Some(Self::CmdAetherDivideSpiritExpUpCsReq) - } - "CmdGetAetherDivideChallengeInfoScRsp" => { - Some(Self::CmdGetAetherDivideChallengeInfoScRsp) - } - "CmdSwitchAetherDivideLineUpSlotScRsp" => { - Some(Self::CmdSwitchAetherDivideLineUpSlotScRsp) - } - "CmdEnterAetherDivideSceneScRsp" => { - Some(Self::CmdEnterAetherDivideSceneScRsp) - } - "CmdGetAetherDivideInfoScRsp" => Some(Self::CmdGetAetherDivideInfoScRsp), - "CmdAetherDivideSpiritInfoScNotify" => { - Some(Self::CmdAetherDivideSpiritInfoScNotify) - } - "CmdAetherDivideSpiritExpUpScRsp" => { - Some(Self::CmdAetherDivideSpiritExpUpScRsp) - } - "CmdGetAetherDivideInfoCsReq" => Some(Self::CmdGetAetherDivideInfoCsReq), - "CmdGetAetherDivideChallengeInfoCsReq" => { - Some(Self::CmdGetAetherDivideChallengeInfoCsReq) - } - "CmdStartAetherDivideChallengeBattleCsReq" => { - Some(Self::CmdStartAetherDivideChallengeBattleCsReq) - } - "CmdAetherDivideRefreshEndlessScNotify" => { - Some(Self::CmdAetherDivideRefreshEndlessScNotify) - } - "CmdStartAetherDivideStageBattleScRsp" => { - Some(Self::CmdStartAetherDivideStageBattleScRsp) - } - "CmdAetherDivideSkillItemScNotify" => { - Some(Self::CmdAetherDivideSkillItemScNotify) - } - "CmdStartAetherDivideSceneBattleCsReq" => { - Some(Self::CmdStartAetherDivideSceneBattleCsReq) - } - "CmdStartAetherDivideSceneBattleScRsp" => { - Some(Self::CmdStartAetherDivideSceneBattleScRsp) - } + "OAFPCHJJPGD_ALOCMFAKBKP" => Some(Self::OafpchjjpgdAlocmfakbkp), + "CmdMPPINLPANKB" => Some(Self::CmdMppinlpankb), + "CmdCHJJOFPENLA" => Some(Self::CmdChjjofpenla), + "CmdHLBCKCDICAA" => Some(Self::CmdHlbckcdicaa), + "CmdLIHKFBKOGNB" => Some(Self::CmdLihkfbkognb), + "CmdKNCCOBPCFEL" => Some(Self::CmdKnccobpcfel), + "CmdKGJPEBCEPDL" => Some(Self::CmdKgjpebcepdl), + "CmdDNHEIONHEIE" => Some(Self::CmdDnheionheie), + "CmdKEJCGNHOAML" => Some(Self::CmdKejcgnhoaml), + "CmdCJCJEFBPEBC" => Some(Self::CmdCjcjefbpebc), + "CmdDIOHKAKCKLC" => Some(Self::CmdDiohkakcklc), + "CmdFOJNPAEENOP" => Some(Self::CmdFojnpaeenop), + "CmdDBJKDLIOIEO" => Some(Self::CmdDbjkdlioieo), + "OAFPCHJJPGD_FHNEKIMKCIB" => Some(Self::OafpchjjpgdFhnekimkcib), + "CmdODIGIPEHBGG" => Some(Self::CmdOdigipehbgg), + "CmdMHCGODLNNPJ" => Some(Self::CmdMhcgodlnnpj), + "CmdGEJIONMNIKJ" => Some(Self::CmdGejionmnikj), + "CmdOPEKCNGFDJO" => Some(Self::CmdOpekcngfdjo), + "CmdMHJBACDKLFE" => Some(Self::CmdMhjbacdklfe), + "CmdLJNBHDOAOOC" => Some(Self::CmdLjnbhdoaooc), + "CmdAEINLINFCDL" => Some(Self::CmdAeinlinfcdl), + "CmdOPBLFMBOFFA" => Some(Self::CmdOpblfmboffa), + "CmdLAFNPEBLNDE" => Some(Self::CmdLafnpeblnde), + "CmdIBNOJKHJCLC" => Some(Self::CmdIbnojkhjclc), + "CmdFMHGDKEFBBJ" => Some(Self::CmdFmhgdkefbbj), + "CmdCMAFKHKKDNM" => Some(Self::CmdCmafkhkkdnm), + "CmdDMLLGODHJPA" => Some(Self::CmdDmllgodhjpa), + "CmdICEBBMAKHIE" => Some(Self::CmdIcebbmakhie), + "CmdOICMOEJBNJD" => Some(Self::CmdOicmoejbnjd), + "CmdEDAGAAECHLK" => Some(Self::CmdEdagaaechlk), + "CmdNOFNMHPMCJN" => Some(Self::CmdNofnmhpmcjn), + "CmdMJFPNIKJEFI" => Some(Self::CmdMjfpnikjefi), + "CmdANDACJGGBEB" => Some(Self::CmdAndacjggbeb), + "CmdOJJADENFNDJ" => Some(Self::CmdOjjadenfndj), + "CmdHEFCPAFNHHK" => Some(Self::CmdHefcpafnhhk), _ => None, } } @@ -67002,43 +67208,43 @@ impl CmdAetherDivideType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdAlleyType { - None = 0, - CmdGetSaveLogisticsMapCsReq = 4797, - CmdActivityRaidPlacingGameCsReq = 4710, - CmdAlleyTakeEventRewardScRsp = 4774, - CmdLogisticsScoreRewardSyncInfoScNotify = 4721, - CmdAlleyTakeEventRewardCsReq = 4735, - CmdAlleyShipUnlockScNotify = 4703, - CmdAlleyPlacingGameScRsp = 4715, - CmdGetAlleyInfoScRsp = 4723, - CmdActivityRaidPlacingGameScRsp = 4753, - CmdGetAlleyInfoCsReq = 4799, - CmdStartAlleyEventScRsp = 4752, - CmdAlleyShipUsedCountScNotify = 4750, - CmdAlleyShipmentEventEffectsScNotify = 4722, - CmdAlleyGuaranteedFundsScRsp = 4771, - CmdGetSaveLogisticsMapScRsp = 4755, - CmdLogisticsGameScRsp = 4765, - CmdLogisticsDetonateStarSkiffCsReq = 4716, - CmdLogisticsDetonateStarSkiffScRsp = 4756, - CmdAlleyGuaranteedFundsCsReq = 4760, - CmdTakePrestigeRewardCsReq = 4781, - CmdPrestigeLevelUpScRsp = 4751, - CmdRefreshAlleyOrderScRsp = 4749, - CmdSaveLogisticsScRsp = 4762, - CmdStartAlleyEventCsReq = 4794, - CmdAlleyShopLevelScNotify = 4738, - CmdRefreshAlleyOrderCsReq = 4768, - CmdSaveLogisticsCsReq = 4709, - CmdAlleyEventEffectNotify = 4744, - CmdAlleyOrderChangedScNotify = 4780, - CmdAlleyPlacingGameCsReq = 4757, - CmdLogisticsInfoScNotify = 4759, - CmdLogisticsGameCsReq = 4798, - CmdAlleyFundsScNotify = 4729, - CmdAlleyEventChangeNotify = 4719, - CmdTakePrestigeRewardScRsp = 4769, - CmdPrestigeLevelUpCsReq = 4705, + IipeloiebnhAlocmfakbkp = 0, + CmdOeodhmafebf = 4770, + CmdEikfiejkmnc = 4755, + CmdFbmpmkjcpkd = 4789, + CmdMgmdengangh = 4769, + CmdEiophckbeep = 4776, + IipeloiebnhBbdamecnken = 4793, + CmdHmlpkfeohkh = 4745, + CmdKigdognlbej = 4792, + CmdDofpcpjleec = 4726, + CmdCjghaplbfab = 4715, + CmdLihohdabgec = 4788, + CmdHknkcnmbeao = 4761, + CmdHolmfmjbkbk = 4757, + IipeloiebnhBbmnadijkei = 4746, + CmdChbooadlnea = 4749, + CmdNhlcpfejmhc = 4714, + CmdHifeimicdml = 4798, + CmdMcodbgamgae = 4710, + CmdLcfijcknmdb = 4735, + CmdFleggmnphjd = 4773, + CmdCeeicjcfggc = 4713, + CmdJglpimncioo = 4706, + CmdDfjdecbjkmb = 4791, + CmdPgheieekelk = 4795, + CmdGjdjcdbbhoe = 4709, + CmdHjbddadipnl = 4762, + CmdOkojaakffdb = 4752, + CmdNibocpdlgfg = 4717, + CmdGkfkfejipbl = 4703, + CmdCjinjhfhopb = 4719, + CmdMbffbcabiml = 4738, + CmdHednplncicc = 4747, + CmdNpekkfmmkhl = 4777, + IipeloiebnhHndlpekdefa = 4737, + CmdAedklldfcpn = 4720, + IipeloiebnhGmdpmdlpbog = 4701, } impl CmdAlleyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67047,105 +67253,85 @@ impl CmdAlleyType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdAlleyTypeNone", - Self::CmdGetSaveLogisticsMapCsReq => "CmdGetSaveLogisticsMapCsReq", - Self::CmdActivityRaidPlacingGameCsReq => "CmdActivityRaidPlacingGameCsReq", - Self::CmdAlleyTakeEventRewardScRsp => "CmdAlleyTakeEventRewardScRsp", - Self::CmdLogisticsScoreRewardSyncInfoScNotify => { - "CmdLogisticsScoreRewardSyncInfoScNotify" - } - Self::CmdAlleyTakeEventRewardCsReq => "CmdAlleyTakeEventRewardCsReq", - Self::CmdAlleyShipUnlockScNotify => "CmdAlleyShipUnlockScNotify", - Self::CmdAlleyPlacingGameScRsp => "CmdAlleyPlacingGameScRsp", - Self::CmdGetAlleyInfoScRsp => "CmdGetAlleyInfoScRsp", - Self::CmdActivityRaidPlacingGameScRsp => "CmdActivityRaidPlacingGameScRsp", - Self::CmdGetAlleyInfoCsReq => "CmdGetAlleyInfoCsReq", - Self::CmdStartAlleyEventScRsp => "CmdStartAlleyEventScRsp", - Self::CmdAlleyShipUsedCountScNotify => "CmdAlleyShipUsedCountScNotify", - Self::CmdAlleyShipmentEventEffectsScNotify => { - "CmdAlleyShipmentEventEffectsScNotify" - } - Self::CmdAlleyGuaranteedFundsScRsp => "CmdAlleyGuaranteedFundsScRsp", - Self::CmdGetSaveLogisticsMapScRsp => "CmdGetSaveLogisticsMapScRsp", - Self::CmdLogisticsGameScRsp => "CmdLogisticsGameScRsp", - Self::CmdLogisticsDetonateStarSkiffCsReq => { - "CmdLogisticsDetonateStarSkiffCsReq" - } - Self::CmdLogisticsDetonateStarSkiffScRsp => { - "CmdLogisticsDetonateStarSkiffScRsp" - } - Self::CmdAlleyGuaranteedFundsCsReq => "CmdAlleyGuaranteedFundsCsReq", - Self::CmdTakePrestigeRewardCsReq => "CmdTakePrestigeRewardCsReq", - Self::CmdPrestigeLevelUpScRsp => "CmdPrestigeLevelUpScRsp", - Self::CmdRefreshAlleyOrderScRsp => "CmdRefreshAlleyOrderScRsp", - Self::CmdSaveLogisticsScRsp => "CmdSaveLogisticsScRsp", - Self::CmdStartAlleyEventCsReq => "CmdStartAlleyEventCsReq", - Self::CmdAlleyShopLevelScNotify => "CmdAlleyShopLevelScNotify", - Self::CmdRefreshAlleyOrderCsReq => "CmdRefreshAlleyOrderCsReq", - Self::CmdSaveLogisticsCsReq => "CmdSaveLogisticsCsReq", - Self::CmdAlleyEventEffectNotify => "CmdAlleyEventEffectNotify", - Self::CmdAlleyOrderChangedScNotify => "CmdAlleyOrderChangedScNotify", - Self::CmdAlleyPlacingGameCsReq => "CmdAlleyPlacingGameCsReq", - Self::CmdLogisticsInfoScNotify => "CmdLogisticsInfoScNotify", - Self::CmdLogisticsGameCsReq => "CmdLogisticsGameCsReq", - Self::CmdAlleyFundsScNotify => "CmdAlleyFundsScNotify", - Self::CmdAlleyEventChangeNotify => "CmdAlleyEventChangeNotify", - Self::CmdTakePrestigeRewardScRsp => "CmdTakePrestigeRewardScRsp", - Self::CmdPrestigeLevelUpCsReq => "CmdPrestigeLevelUpCsReq", + Self::IipeloiebnhAlocmfakbkp => "IIPELOIEBNH_ALOCMFAKBKP", + Self::CmdOeodhmafebf => "CmdOEODHMAFEBF", + Self::CmdEikfiejkmnc => "CmdEIKFIEJKMNC", + Self::CmdFbmpmkjcpkd => "CmdFBMPMKJCPKD", + Self::CmdMgmdengangh => "CmdMGMDENGANGH", + Self::CmdEiophckbeep => "CmdEIOPHCKBEEP", + Self::IipeloiebnhBbdamecnken => "IIPELOIEBNH_BBDAMECNKEN", + Self::CmdHmlpkfeohkh => "CmdHMLPKFEOHKH", + Self::CmdKigdognlbej => "CmdKIGDOGNLBEJ", + Self::CmdDofpcpjleec => "CmdDOFPCPJLEEC", + Self::CmdCjghaplbfab => "CmdCJGHAPLBFAB", + Self::CmdLihohdabgec => "CmdLIHOHDABGEC", + Self::CmdHknkcnmbeao => "CmdHKNKCNMBEAO", + Self::CmdHolmfmjbkbk => "CmdHOLMFMJBKBK", + Self::IipeloiebnhBbmnadijkei => "IIPELOIEBNH_BBMNADIJKEI", + Self::CmdChbooadlnea => "CmdCHBOOADLNEA", + Self::CmdNhlcpfejmhc => "CmdNHLCPFEJMHC", + Self::CmdHifeimicdml => "CmdHIFEIMICDML", + Self::CmdMcodbgamgae => "CmdMCODBGAMGAE", + Self::CmdLcfijcknmdb => "CmdLCFIJCKNMDB", + Self::CmdFleggmnphjd => "CmdFLEGGMNPHJD", + Self::CmdCeeicjcfggc => "CmdCEEICJCFGGC", + Self::CmdJglpimncioo => "CmdJGLPIMNCIOO", + Self::CmdDfjdecbjkmb => "CmdDFJDECBJKMB", + Self::CmdPgheieekelk => "CmdPGHEIEEKELK", + Self::CmdGjdjcdbbhoe => "CmdGJDJCDBBHOE", + Self::CmdHjbddadipnl => "CmdHJBDDADIPNL", + Self::CmdOkojaakffdb => "CmdOKOJAAKFFDB", + Self::CmdNibocpdlgfg => "CmdNIBOCPDLGFG", + Self::CmdGkfkfejipbl => "CmdGKFKFEJIPBL", + Self::CmdCjinjhfhopb => "CmdCJINJHFHOPB", + Self::CmdMbffbcabiml => "CmdMBFFBCABIML", + Self::CmdHednplncicc => "CmdHEDNPLNCICC", + Self::CmdNpekkfmmkhl => "CmdNPEKKFMMKHL", + Self::IipeloiebnhHndlpekdefa => "IIPELOIEBNH_HNDLPEKDEFA", + Self::CmdAedklldfcpn => "CmdAEDKLLDFCPN", + Self::IipeloiebnhGmdpmdlpbog => "IIPELOIEBNH_GMDPMDLPBOG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdAlleyTypeNone" => Some(Self::None), - "CmdGetSaveLogisticsMapCsReq" => Some(Self::CmdGetSaveLogisticsMapCsReq), - "CmdActivityRaidPlacingGameCsReq" => { - Some(Self::CmdActivityRaidPlacingGameCsReq) - } - "CmdAlleyTakeEventRewardScRsp" => Some(Self::CmdAlleyTakeEventRewardScRsp), - "CmdLogisticsScoreRewardSyncInfoScNotify" => { - Some(Self::CmdLogisticsScoreRewardSyncInfoScNotify) - } - "CmdAlleyTakeEventRewardCsReq" => Some(Self::CmdAlleyTakeEventRewardCsReq), - "CmdAlleyShipUnlockScNotify" => Some(Self::CmdAlleyShipUnlockScNotify), - "CmdAlleyPlacingGameScRsp" => Some(Self::CmdAlleyPlacingGameScRsp), - "CmdGetAlleyInfoScRsp" => Some(Self::CmdGetAlleyInfoScRsp), - "CmdActivityRaidPlacingGameScRsp" => { - Some(Self::CmdActivityRaidPlacingGameScRsp) - } - "CmdGetAlleyInfoCsReq" => Some(Self::CmdGetAlleyInfoCsReq), - "CmdStartAlleyEventScRsp" => Some(Self::CmdStartAlleyEventScRsp), - "CmdAlleyShipUsedCountScNotify" => Some(Self::CmdAlleyShipUsedCountScNotify), - "CmdAlleyShipmentEventEffectsScNotify" => { - Some(Self::CmdAlleyShipmentEventEffectsScNotify) - } - "CmdAlleyGuaranteedFundsScRsp" => Some(Self::CmdAlleyGuaranteedFundsScRsp), - "CmdGetSaveLogisticsMapScRsp" => Some(Self::CmdGetSaveLogisticsMapScRsp), - "CmdLogisticsGameScRsp" => Some(Self::CmdLogisticsGameScRsp), - "CmdLogisticsDetonateStarSkiffCsReq" => { - Some(Self::CmdLogisticsDetonateStarSkiffCsReq) - } - "CmdLogisticsDetonateStarSkiffScRsp" => { - Some(Self::CmdLogisticsDetonateStarSkiffScRsp) - } - "CmdAlleyGuaranteedFundsCsReq" => Some(Self::CmdAlleyGuaranteedFundsCsReq), - "CmdTakePrestigeRewardCsReq" => Some(Self::CmdTakePrestigeRewardCsReq), - "CmdPrestigeLevelUpScRsp" => Some(Self::CmdPrestigeLevelUpScRsp), - "CmdRefreshAlleyOrderScRsp" => Some(Self::CmdRefreshAlleyOrderScRsp), - "CmdSaveLogisticsScRsp" => Some(Self::CmdSaveLogisticsScRsp), - "CmdStartAlleyEventCsReq" => Some(Self::CmdStartAlleyEventCsReq), - "CmdAlleyShopLevelScNotify" => Some(Self::CmdAlleyShopLevelScNotify), - "CmdRefreshAlleyOrderCsReq" => Some(Self::CmdRefreshAlleyOrderCsReq), - "CmdSaveLogisticsCsReq" => Some(Self::CmdSaveLogisticsCsReq), - "CmdAlleyEventEffectNotify" => Some(Self::CmdAlleyEventEffectNotify), - "CmdAlleyOrderChangedScNotify" => Some(Self::CmdAlleyOrderChangedScNotify), - "CmdAlleyPlacingGameCsReq" => Some(Self::CmdAlleyPlacingGameCsReq), - "CmdLogisticsInfoScNotify" => Some(Self::CmdLogisticsInfoScNotify), - "CmdLogisticsGameCsReq" => Some(Self::CmdLogisticsGameCsReq), - "CmdAlleyFundsScNotify" => Some(Self::CmdAlleyFundsScNotify), - "CmdAlleyEventChangeNotify" => Some(Self::CmdAlleyEventChangeNotify), - "CmdTakePrestigeRewardScRsp" => Some(Self::CmdTakePrestigeRewardScRsp), - "CmdPrestigeLevelUpCsReq" => Some(Self::CmdPrestigeLevelUpCsReq), + "IIPELOIEBNH_ALOCMFAKBKP" => Some(Self::IipeloiebnhAlocmfakbkp), + "CmdOEODHMAFEBF" => Some(Self::CmdOeodhmafebf), + "CmdEIKFIEJKMNC" => Some(Self::CmdEikfiejkmnc), + "CmdFBMPMKJCPKD" => Some(Self::CmdFbmpmkjcpkd), + "CmdMGMDENGANGH" => Some(Self::CmdMgmdengangh), + "CmdEIOPHCKBEEP" => Some(Self::CmdEiophckbeep), + "IIPELOIEBNH_BBDAMECNKEN" => Some(Self::IipeloiebnhBbdamecnken), + "CmdHMLPKFEOHKH" => Some(Self::CmdHmlpkfeohkh), + "CmdKIGDOGNLBEJ" => Some(Self::CmdKigdognlbej), + "CmdDOFPCPJLEEC" => Some(Self::CmdDofpcpjleec), + "CmdCJGHAPLBFAB" => Some(Self::CmdCjghaplbfab), + "CmdLIHOHDABGEC" => Some(Self::CmdLihohdabgec), + "CmdHKNKCNMBEAO" => Some(Self::CmdHknkcnmbeao), + "CmdHOLMFMJBKBK" => Some(Self::CmdHolmfmjbkbk), + "IIPELOIEBNH_BBMNADIJKEI" => Some(Self::IipeloiebnhBbmnadijkei), + "CmdCHBOOADLNEA" => Some(Self::CmdChbooadlnea), + "CmdNHLCPFEJMHC" => Some(Self::CmdNhlcpfejmhc), + "CmdHIFEIMICDML" => Some(Self::CmdHifeimicdml), + "CmdMCODBGAMGAE" => Some(Self::CmdMcodbgamgae), + "CmdLCFIJCKNMDB" => Some(Self::CmdLcfijcknmdb), + "CmdFLEGGMNPHJD" => Some(Self::CmdFleggmnphjd), + "CmdCEEICJCFGGC" => Some(Self::CmdCeeicjcfggc), + "CmdJGLPIMNCIOO" => Some(Self::CmdJglpimncioo), + "CmdDFJDECBJKMB" => Some(Self::CmdDfjdecbjkmb), + "CmdPGHEIEEKELK" => Some(Self::CmdPgheieekelk), + "CmdGJDJCDBBHOE" => Some(Self::CmdGjdjcdbbhoe), + "CmdHJBDDADIPNL" => Some(Self::CmdHjbddadipnl), + "CmdOKOJAAKFFDB" => Some(Self::CmdOkojaakffdb), + "CmdNIBOCPDLGFG" => Some(Self::CmdNibocpdlgfg), + "CmdGKFKFEJIPBL" => Some(Self::CmdGkfkfejipbl), + "CmdCJINJHFHOPB" => Some(Self::CmdCjinjhfhopb), + "CmdMBFFBCABIML" => Some(Self::CmdMbffbcabiml), + "CmdHEDNPLNCICC" => Some(Self::CmdHednplncicc), + "CmdNPEKKFMMKHL" => Some(Self::CmdNpekkfmmkhl), + "IIPELOIEBNH_HNDLPEKDEFA" => Some(Self::IipeloiebnhHndlpekdefa), + "CmdAEDKLLDFCPN" => Some(Self::CmdAedklldfcpn), + "IIPELOIEBNH_GMDPMDLPBOG" => Some(Self::IipeloiebnhGmdpmdlpbog), _ => None, } } @@ -67153,44 +67339,44 @@ impl CmdAlleyType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Gbphkkmolmf { - Left = 0, - Right = 1, - Up = 2, - Down = 3, - LeftUp = 4, - LeftDown = 5, - RightUp = 6, - RightDown = 7, +pub enum Immkdebgajp { + Kfpbnnoljii = 0, + Jmbcekmpapo = 1, + Iedfjameajf = 2, + Eenjgpmfgli = 3, + Flneflhbaog = 4, + Mgpngjbpblp = 5, + Ppngkoghinn = 6, + Conpgdkbnnk = 7, } -impl Gbphkkmolmf { +impl Immkdebgajp { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Left => "LEFT", - Self::Right => "RIGHT", - Self::Up => "UP", - Self::Down => "DOWN", - Self::LeftUp => "LEFT_UP", - Self::LeftDown => "LEFT_DOWN", - Self::RightUp => "RIGHT_UP", - Self::RightDown => "RIGHT_DOWN", + Self::Kfpbnnoljii => "IMMKDEBGAJP_KFPBNNOLJII", + Self::Jmbcekmpapo => "IMMKDEBGAJP_JMBCEKMPAPO", + Self::Iedfjameajf => "IMMKDEBGAJP_IEDFJAMEAJF", + Self::Eenjgpmfgli => "IMMKDEBGAJP_EENJGPMFGLI", + Self::Flneflhbaog => "IMMKDEBGAJP_FLNEFLHBAOG", + Self::Mgpngjbpblp => "IMMKDEBGAJP_MGPNGJBPBLP", + Self::Ppngkoghinn => "IMMKDEBGAJP_PPNGKOGHINN", + Self::Conpgdkbnnk => "IMMKDEBGAJP_CONPGDKBNNK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "LEFT" => Some(Self::Left), - "RIGHT" => Some(Self::Right), - "UP" => Some(Self::Up), - "DOWN" => Some(Self::Down), - "LEFT_UP" => Some(Self::LeftUp), - "LEFT_DOWN" => Some(Self::LeftDown), - "RIGHT_UP" => Some(Self::RightUp), - "RIGHT_DOWN" => Some(Self::RightDown), + "IMMKDEBGAJP_KFPBNNOLJII" => Some(Self::Kfpbnnoljii), + "IMMKDEBGAJP_JMBCEKMPAPO" => Some(Self::Jmbcekmpapo), + "IMMKDEBGAJP_IEDFJAMEAJF" => Some(Self::Iedfjameajf), + "IMMKDEBGAJP_EENJGPMFGLI" => Some(Self::Eenjgpmfgli), + "IMMKDEBGAJP_FLNEFLHBAOG" => Some(Self::Flneflhbaog), + "IMMKDEBGAJP_MGPNGJBPBLP" => Some(Self::Mgpngjbpblp), + "IMMKDEBGAJP_PPNGKOGHINN" => Some(Self::Ppngkoghinn), + "IMMKDEBGAJP_CONPGDKBNNK" => Some(Self::Conpgdkbnnk), _ => None, } } @@ -67198,32 +67384,32 @@ impl Gbphkkmolmf { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Cfancffhhkb { - AlleyEventTypeNone = 0, - AlleyMainEvent = 1, - AlleyCriticalEvent = 2, - AlleyDailyEvent = 3, +pub enum Oofmipidabk { + Alocmfakbkp = 0, + Mfghphkkmhg = 1, + Fklikghmkph = 2, + Bidfbodcphf = 3, } -impl Cfancffhhkb { +impl Oofmipidabk { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::AlleyEventTypeNone => "ALLEY_EVENT_TYPE_NONE", - Self::AlleyMainEvent => "ALLEY_MAIN_EVENT", - Self::AlleyCriticalEvent => "ALLEY_CRITICAL_EVENT", - Self::AlleyDailyEvent => "ALLEY_DAILY_EVENT", + Self::Alocmfakbkp => "OOFMIPIDABK_ALOCMFAKBKP", + Self::Mfghphkkmhg => "OOFMIPIDABK_MFGHPHKKMHG", + Self::Fklikghmkph => "OOFMIPIDABK_FKLIKGHMKPH", + Self::Bidfbodcphf => "OOFMIPIDABK_BIDFBODCPHF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ALLEY_EVENT_TYPE_NONE" => Some(Self::AlleyEventTypeNone), - "ALLEY_MAIN_EVENT" => Some(Self::AlleyMainEvent), - "ALLEY_CRITICAL_EVENT" => Some(Self::AlleyCriticalEvent), - "ALLEY_DAILY_EVENT" => Some(Self::AlleyDailyEvent), + "OOFMIPIDABK_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "OOFMIPIDABK_MFGHPHKKMHG" => Some(Self::Mfghphkkmhg), + "OOFMIPIDABK_FKLIKGHMKPH" => Some(Self::Fklikghmkph), + "OOFMIPIDABK_BIDFBODCPHF" => Some(Self::Bidfbodcphf), _ => None, } } @@ -67231,32 +67417,32 @@ impl Cfancffhhkb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Bjlncfjoiaf { - AlleyStateNone = 0, - AlleyEventDoing = 1, - AlleyEventFinish = 2, - AlleyEventRewarded = 3, +pub enum Mdejakhmhio { + Gnfhcckeini = 0, + Gdgbdhabned = 1, + Gkheohiddoc = 2, + Pnflbigaleg = 3, } -impl Bjlncfjoiaf { +impl Mdejakhmhio { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::AlleyStateNone => "ALLEY_STATE_NONE", - Self::AlleyEventDoing => "ALLEY_EVENT_DOING", - Self::AlleyEventFinish => "ALLEY_EVENT_FINISH", - Self::AlleyEventRewarded => "ALLEY_EVENT_REWARDED", + Self::Gnfhcckeini => "MDEJAKHMHIO_GNFHCCKEINI", + Self::Gdgbdhabned => "MDEJAKHMHIO_GDGBDHABNED", + Self::Gkheohiddoc => "MDEJAKHMHIO_GKHEOHIDDOC", + Self::Pnflbigaleg => "MDEJAKHMHIO_PNFLBIGALEG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ALLEY_STATE_NONE" => Some(Self::AlleyStateNone), - "ALLEY_EVENT_DOING" => Some(Self::AlleyEventDoing), - "ALLEY_EVENT_FINISH" => Some(Self::AlleyEventFinish), - "ALLEY_EVENT_REWARDED" => Some(Self::AlleyEventRewarded), + "MDEJAKHMHIO_GNFHCCKEINI" => Some(Self::Gnfhcckeini), + "MDEJAKHMHIO_GDGBDHABNED" => Some(Self::Gdgbdhabned), + "MDEJAKHMHIO_GKHEOHIDDOC" => Some(Self::Gkheohiddoc), + "MDEJAKHMHIO_PNFLBIGALEG" => Some(Self::Pnflbigaleg), _ => None, } } @@ -67265,11 +67451,11 @@ impl Bjlncfjoiaf { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdArchiveType { - None = 0, - CmdGetArchiveDataCsReq = 2399, - CmdGetUpdatedArchiveDataCsReq = 2398, - CmdGetUpdatedArchiveDataScRsp = 2365, - CmdGetArchiveDataScRsp = 2323, + HoblnbnpajaAlocmfakbkp = 0, + CmdGetArchiveDataScRsp = 2309, + CmdGetUpdatedArchiveDataScRsp = 2317, + CmdGetUpdatedArchiveDataCsReq = 2338, + CmdGetArchiveDataCsReq = 2347, } impl CmdArchiveType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67278,21 +67464,21 @@ impl CmdArchiveType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdArchiveTypeNone", - Self::CmdGetArchiveDataCsReq => "CmdGetArchiveDataCsReq", - Self::CmdGetUpdatedArchiveDataCsReq => "CmdGetUpdatedArchiveDataCsReq", - Self::CmdGetUpdatedArchiveDataScRsp => "CmdGetUpdatedArchiveDataScRsp", + Self::HoblnbnpajaAlocmfakbkp => "HOBLNBNPAJA_ALOCMFAKBKP", Self::CmdGetArchiveDataScRsp => "CmdGetArchiveDataScRsp", + Self::CmdGetUpdatedArchiveDataScRsp => "CmdGetUpdatedArchiveDataScRsp", + Self::CmdGetUpdatedArchiveDataCsReq => "CmdGetUpdatedArchiveDataCsReq", + Self::CmdGetArchiveDataCsReq => "CmdGetArchiveDataCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdArchiveTypeNone" => Some(Self::None), - "CmdGetArchiveDataCsReq" => Some(Self::CmdGetArchiveDataCsReq), - "CmdGetUpdatedArchiveDataCsReq" => Some(Self::CmdGetUpdatedArchiveDataCsReq), - "CmdGetUpdatedArchiveDataScRsp" => Some(Self::CmdGetUpdatedArchiveDataScRsp), + "HOBLNBNPAJA_ALOCMFAKBKP" => Some(Self::HoblnbnpajaAlocmfakbkp), "CmdGetArchiveDataScRsp" => Some(Self::CmdGetArchiveDataScRsp), + "CmdGetUpdatedArchiveDataScRsp" => Some(Self::CmdGetUpdatedArchiveDataScRsp), + "CmdGetUpdatedArchiveDataCsReq" => Some(Self::CmdGetUpdatedArchiveDataCsReq), + "CmdGetArchiveDataCsReq" => Some(Self::CmdGetArchiveDataCsReq), _ => None, } } @@ -67301,55 +67487,55 @@ impl CmdArchiveType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdAvatarType { - None = 0, - CmdAddMultiPathAvatarScNotify = 322, - CmdTakeOffEquipmentScRsp = 369, - CmdAvatarExpUpCsReq = 398, - CmdDressAvatarScRsp = 344, - CmdDressAvatarCsReq = 319, - CmdUnlockSkilltreeCsReq = 383, - CmdSetAvatarEnhancedIdCsReq = 316, - CmdGetPreAvatarActivityListCsReq = 321, - CmdGetPreAvatarGrowthInfoScRsp = 371, - CmdSetPlayerOutfitCsReq = 353, - CmdGrowthTargetAvatarChangedScNotify = 350, - CmdGetPreAvatarActivityListScRsp = 310, - CmdTakeOffEquipmentCsReq = 381, - CmdTakePromotionRewardCsReq = 377, - CmdDressRelicAvatarScRsp = 368, - CmdGetPreAvatarGrowthInfoCsReq = 360, - CmdRankUpAvatarCsReq = 315, - CmdSetAvatarPathScRsp = 341, - CmdTakeOffRelicScRsp = 380, - CmdSetGrowthTargetAvatarCsReq = 397, - CmdAvatarExpUpScRsp = 365, - CmdTakeOffRelicCsReq = 349, - CmdSetAvatarEnhancedIdScRsp = 356, - CmdMarkAvatarScRsp = 359, - CmdTakeOffAvatarSkinScRsp = 303, - CmdDressAvatarSkinScRsp = 329, - CmdUnlockAvatarPathScRsp = 363, - CmdSetGrowthTargetAvatarScRsp = 355, - CmdSetMultipleAvatarPathsScRsp = 311, - CmdMarkAvatarCsReq = 362, - CmdGetAvatarDataCsReq = 399, - CmdUnlockAvatarPathCsReq = 306, - CmdUnlockAvatarSkinScNotify = 309, - CmdPromoteAvatarCsReq = 394, - CmdDressRelicAvatarCsReq = 337, - CmdAddAvatarScNotify = 357, - CmdAvatarPathChangedNotify = 312, - CmdAvatarSpecialSkilltreeUnlockScNotify = 301, - CmdSetPlayerOutfitScRsp = 342, - CmdSetAvatarPathCsReq = 370, - CmdTakeOffAvatarSkinCsReq = 338, - CmdSetMultipleAvatarPathsCsReq = 304, - CmdPromoteAvatarScRsp = 352, - CmdGetAvatarDataScRsp = 323, - CmdRankUpAvatarScRsp = 392, - CmdDressAvatarSkinCsReq = 351, - CmdTakePromotionRewardScRsp = 305, - CmdUnlockSkilltreeScRsp = 386, + OmjgckpinjhAlocmfakbkp = 0, + CmdDressRelicAvatarCsReq = 381, + CmdTakeOffRelicScRsp = 310, + CmdTakeOffRelicCsReq = 337, + CmdDressAvatarCsReq = 395, + CmdAddAvatarScNotify = 376, + CmdSetAvatarPathCsReq = 333, + CmdGetAvatarDataCsReq = 347, + CmdSetPlayerOutfitScRsp = 330, + CmdUnlockSkilltreeScRsp = 311, + CmdGrowthTargetAvatarChangedScNotify = 313, + CmdTakePromotionRewardScRsp = 362, + CmdPromoteAvatarScRsp = 320, + CmdAvatarExpUpCsReq = 338, + CmdDressAvatarSkinScRsp = 398, + CmdGetPreAvatarActivityListCsReq = 388, + CmdPromoteAvatarCsReq = 389, + CmdSetAvatarPathScRsp = 366, + CmdRankUpAvatarCsReq = 352, + CmdUnlockAvatarPathScRsp = 325, + CmdDressAvatarScRsp = 391, + CmdSetAvatarEnhancedIdCsReq = 369, + CmdTakeOffEquipmentScRsp = 345, + CmdTakePromotionRewardCsReq = 367, + CmdDressAvatarSkinCsReq = 335, + CmdSetGrowthTargetAvatarScRsp = 370, + CmdSetMultipleAvatarPathsCsReq = 307, + CmdAvatarExpUpScRsp = 317, + CmdTakeOffAvatarSkinScRsp = 392, + CmdUnlockSkilltreeCsReq = 351, + CmdGetAvatarDataScRsp = 309, + CmdUnlockAvatarSkinScNotify = 314, + CmdSetMultipleAvatarPathsScRsp = 397, + CmdSetAvatarEnhancedIdScRsp = 306, + CmdGetPreAvatarGrowthInfoScRsp = 349, + CmdGetPreAvatarGrowthInfoCsReq = 301, + CmdDressRelicAvatarScRsp = 393, + CmdSetGrowthTargetAvatarCsReq = 373, + CmdMarkAvatarScRsp = 357, + CmdTakeOffAvatarSkinCsReq = 346, + CmdRankUpAvatarScRsp = 350, + CmdUnlockAvatarPathCsReq = 385, + CmdMarkAvatarCsReq = 326, + CmdGetPreAvatarActivityListScRsp = 303, + CmdAvatarPathChangedNotify = 336, + CmdAddMultiPathAvatarScNotify = 315, + CmdTakeOffEquipmentCsReq = 361, + CmdAvatarSpecialSkilltreeUnlockScNotify = 332, + CmdSetPlayerOutfitCsReq = 355, } impl CmdAvatarType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67358,129 +67544,129 @@ impl CmdAvatarType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdAvatarTypeNone", - Self::CmdAddMultiPathAvatarScNotify => "CmdAddMultiPathAvatarScNotify", - Self::CmdTakeOffEquipmentScRsp => "CmdTakeOffEquipmentScRsp", - Self::CmdAvatarExpUpCsReq => "CmdAvatarExpUpCsReq", - Self::CmdDressAvatarScRsp => "CmdDressAvatarScRsp", + Self::OmjgckpinjhAlocmfakbkp => "OMJGCKPINJH_ALOCMFAKBKP", + Self::CmdDressRelicAvatarCsReq => "CmdDressRelicAvatarCsReq", + Self::CmdTakeOffRelicScRsp => "CmdTakeOffRelicScRsp", + Self::CmdTakeOffRelicCsReq => "CmdTakeOffRelicCsReq", Self::CmdDressAvatarCsReq => "CmdDressAvatarCsReq", - Self::CmdUnlockSkilltreeCsReq => "CmdUnlockSkilltreeCsReq", - Self::CmdSetAvatarEnhancedIdCsReq => "CmdSetAvatarEnhancedIdCsReq", - Self::CmdGetPreAvatarActivityListCsReq => "CmdGetPreAvatarActivityListCsReq", - Self::CmdGetPreAvatarGrowthInfoScRsp => "CmdGetPreAvatarGrowthInfoScRsp", - Self::CmdSetPlayerOutfitCsReq => "CmdSetPlayerOutfitCsReq", + Self::CmdAddAvatarScNotify => "CmdAddAvatarScNotify", + Self::CmdSetAvatarPathCsReq => "CmdSetAvatarPathCsReq", + Self::CmdGetAvatarDataCsReq => "CmdGetAvatarDataCsReq", + Self::CmdSetPlayerOutfitScRsp => "CmdSetPlayerOutfitScRsp", + Self::CmdUnlockSkilltreeScRsp => "CmdUnlockSkilltreeScRsp", Self::CmdGrowthTargetAvatarChangedScNotify => { "CmdGrowthTargetAvatarChangedScNotify" } - Self::CmdGetPreAvatarActivityListScRsp => "CmdGetPreAvatarActivityListScRsp", - Self::CmdTakeOffEquipmentCsReq => "CmdTakeOffEquipmentCsReq", - Self::CmdTakePromotionRewardCsReq => "CmdTakePromotionRewardCsReq", - Self::CmdDressRelicAvatarScRsp => "CmdDressRelicAvatarScRsp", - Self::CmdGetPreAvatarGrowthInfoCsReq => "CmdGetPreAvatarGrowthInfoCsReq", - Self::CmdRankUpAvatarCsReq => "CmdRankUpAvatarCsReq", - Self::CmdSetAvatarPathScRsp => "CmdSetAvatarPathScRsp", - Self::CmdTakeOffRelicScRsp => "CmdTakeOffRelicScRsp", - Self::CmdSetGrowthTargetAvatarCsReq => "CmdSetGrowthTargetAvatarCsReq", - Self::CmdAvatarExpUpScRsp => "CmdAvatarExpUpScRsp", - Self::CmdTakeOffRelicCsReq => "CmdTakeOffRelicCsReq", - Self::CmdSetAvatarEnhancedIdScRsp => "CmdSetAvatarEnhancedIdScRsp", - Self::CmdMarkAvatarScRsp => "CmdMarkAvatarScRsp", - Self::CmdTakeOffAvatarSkinScRsp => "CmdTakeOffAvatarSkinScRsp", + Self::CmdTakePromotionRewardScRsp => "CmdTakePromotionRewardScRsp", + Self::CmdPromoteAvatarScRsp => "CmdPromoteAvatarScRsp", + Self::CmdAvatarExpUpCsReq => "CmdAvatarExpUpCsReq", Self::CmdDressAvatarSkinScRsp => "CmdDressAvatarSkinScRsp", - Self::CmdUnlockAvatarPathScRsp => "CmdUnlockAvatarPathScRsp", - Self::CmdSetGrowthTargetAvatarScRsp => "CmdSetGrowthTargetAvatarScRsp", - Self::CmdSetMultipleAvatarPathsScRsp => "CmdSetMultipleAvatarPathsScRsp", - Self::CmdMarkAvatarCsReq => "CmdMarkAvatarCsReq", - Self::CmdGetAvatarDataCsReq => "CmdGetAvatarDataCsReq", - Self::CmdUnlockAvatarPathCsReq => "CmdUnlockAvatarPathCsReq", - Self::CmdUnlockAvatarSkinScNotify => "CmdUnlockAvatarSkinScNotify", + Self::CmdGetPreAvatarActivityListCsReq => "CmdGetPreAvatarActivityListCsReq", Self::CmdPromoteAvatarCsReq => "CmdPromoteAvatarCsReq", - Self::CmdDressRelicAvatarCsReq => "CmdDressRelicAvatarCsReq", - Self::CmdAddAvatarScNotify => "CmdAddAvatarScNotify", + Self::CmdSetAvatarPathScRsp => "CmdSetAvatarPathScRsp", + Self::CmdRankUpAvatarCsReq => "CmdRankUpAvatarCsReq", + Self::CmdUnlockAvatarPathScRsp => "CmdUnlockAvatarPathScRsp", + Self::CmdDressAvatarScRsp => "CmdDressAvatarScRsp", + Self::CmdSetAvatarEnhancedIdCsReq => "CmdSetAvatarEnhancedIdCsReq", + Self::CmdTakeOffEquipmentScRsp => "CmdTakeOffEquipmentScRsp", + Self::CmdTakePromotionRewardCsReq => "CmdTakePromotionRewardCsReq", + Self::CmdDressAvatarSkinCsReq => "CmdDressAvatarSkinCsReq", + Self::CmdSetGrowthTargetAvatarScRsp => "CmdSetGrowthTargetAvatarScRsp", + Self::CmdSetMultipleAvatarPathsCsReq => "CmdSetMultipleAvatarPathsCsReq", + Self::CmdAvatarExpUpScRsp => "CmdAvatarExpUpScRsp", + Self::CmdTakeOffAvatarSkinScRsp => "CmdTakeOffAvatarSkinScRsp", + Self::CmdUnlockSkilltreeCsReq => "CmdUnlockSkilltreeCsReq", + Self::CmdGetAvatarDataScRsp => "CmdGetAvatarDataScRsp", + Self::CmdUnlockAvatarSkinScNotify => "CmdUnlockAvatarSkinScNotify", + Self::CmdSetMultipleAvatarPathsScRsp => "CmdSetMultipleAvatarPathsScRsp", + Self::CmdSetAvatarEnhancedIdScRsp => "CmdSetAvatarEnhancedIdScRsp", + Self::CmdGetPreAvatarGrowthInfoScRsp => "CmdGetPreAvatarGrowthInfoScRsp", + Self::CmdGetPreAvatarGrowthInfoCsReq => "CmdGetPreAvatarGrowthInfoCsReq", + Self::CmdDressRelicAvatarScRsp => "CmdDressRelicAvatarScRsp", + Self::CmdSetGrowthTargetAvatarCsReq => "CmdSetGrowthTargetAvatarCsReq", + Self::CmdMarkAvatarScRsp => "CmdMarkAvatarScRsp", + Self::CmdTakeOffAvatarSkinCsReq => "CmdTakeOffAvatarSkinCsReq", + Self::CmdRankUpAvatarScRsp => "CmdRankUpAvatarScRsp", + Self::CmdUnlockAvatarPathCsReq => "CmdUnlockAvatarPathCsReq", + Self::CmdMarkAvatarCsReq => "CmdMarkAvatarCsReq", + Self::CmdGetPreAvatarActivityListScRsp => "CmdGetPreAvatarActivityListScRsp", Self::CmdAvatarPathChangedNotify => "CmdAvatarPathChangedNotify", + Self::CmdAddMultiPathAvatarScNotify => "CmdAddMultiPathAvatarScNotify", + Self::CmdTakeOffEquipmentCsReq => "CmdTakeOffEquipmentCsReq", Self::CmdAvatarSpecialSkilltreeUnlockScNotify => { "CmdAvatarSpecialSkilltreeUnlockScNotify" } - Self::CmdSetPlayerOutfitScRsp => "CmdSetPlayerOutfitScRsp", - Self::CmdSetAvatarPathCsReq => "CmdSetAvatarPathCsReq", - Self::CmdTakeOffAvatarSkinCsReq => "CmdTakeOffAvatarSkinCsReq", - Self::CmdSetMultipleAvatarPathsCsReq => "CmdSetMultipleAvatarPathsCsReq", - Self::CmdPromoteAvatarScRsp => "CmdPromoteAvatarScRsp", - Self::CmdGetAvatarDataScRsp => "CmdGetAvatarDataScRsp", - Self::CmdRankUpAvatarScRsp => "CmdRankUpAvatarScRsp", - Self::CmdDressAvatarSkinCsReq => "CmdDressAvatarSkinCsReq", - Self::CmdTakePromotionRewardScRsp => "CmdTakePromotionRewardScRsp", - Self::CmdUnlockSkilltreeScRsp => "CmdUnlockSkilltreeScRsp", + Self::CmdSetPlayerOutfitCsReq => "CmdSetPlayerOutfitCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdAvatarTypeNone" => Some(Self::None), - "CmdAddMultiPathAvatarScNotify" => Some(Self::CmdAddMultiPathAvatarScNotify), - "CmdTakeOffEquipmentScRsp" => Some(Self::CmdTakeOffEquipmentScRsp), - "CmdAvatarExpUpCsReq" => Some(Self::CmdAvatarExpUpCsReq), - "CmdDressAvatarScRsp" => Some(Self::CmdDressAvatarScRsp), + "OMJGCKPINJH_ALOCMFAKBKP" => Some(Self::OmjgckpinjhAlocmfakbkp), + "CmdDressRelicAvatarCsReq" => Some(Self::CmdDressRelicAvatarCsReq), + "CmdTakeOffRelicScRsp" => Some(Self::CmdTakeOffRelicScRsp), + "CmdTakeOffRelicCsReq" => Some(Self::CmdTakeOffRelicCsReq), "CmdDressAvatarCsReq" => Some(Self::CmdDressAvatarCsReq), - "CmdUnlockSkilltreeCsReq" => Some(Self::CmdUnlockSkilltreeCsReq), - "CmdSetAvatarEnhancedIdCsReq" => Some(Self::CmdSetAvatarEnhancedIdCsReq), - "CmdGetPreAvatarActivityListCsReq" => { - Some(Self::CmdGetPreAvatarActivityListCsReq) - } - "CmdGetPreAvatarGrowthInfoScRsp" => { - Some(Self::CmdGetPreAvatarGrowthInfoScRsp) - } - "CmdSetPlayerOutfitCsReq" => Some(Self::CmdSetPlayerOutfitCsReq), + "CmdAddAvatarScNotify" => Some(Self::CmdAddAvatarScNotify), + "CmdSetAvatarPathCsReq" => Some(Self::CmdSetAvatarPathCsReq), + "CmdGetAvatarDataCsReq" => Some(Self::CmdGetAvatarDataCsReq), + "CmdSetPlayerOutfitScRsp" => Some(Self::CmdSetPlayerOutfitScRsp), + "CmdUnlockSkilltreeScRsp" => Some(Self::CmdUnlockSkilltreeScRsp), "CmdGrowthTargetAvatarChangedScNotify" => { Some(Self::CmdGrowthTargetAvatarChangedScNotify) } - "CmdGetPreAvatarActivityListScRsp" => { - Some(Self::CmdGetPreAvatarActivityListScRsp) - } - "CmdTakeOffEquipmentCsReq" => Some(Self::CmdTakeOffEquipmentCsReq), - "CmdTakePromotionRewardCsReq" => Some(Self::CmdTakePromotionRewardCsReq), - "CmdDressRelicAvatarScRsp" => Some(Self::CmdDressRelicAvatarScRsp), - "CmdGetPreAvatarGrowthInfoCsReq" => { - Some(Self::CmdGetPreAvatarGrowthInfoCsReq) - } - "CmdRankUpAvatarCsReq" => Some(Self::CmdRankUpAvatarCsReq), - "CmdSetAvatarPathScRsp" => Some(Self::CmdSetAvatarPathScRsp), - "CmdTakeOffRelicScRsp" => Some(Self::CmdTakeOffRelicScRsp), - "CmdSetGrowthTargetAvatarCsReq" => Some(Self::CmdSetGrowthTargetAvatarCsReq), - "CmdAvatarExpUpScRsp" => Some(Self::CmdAvatarExpUpScRsp), - "CmdTakeOffRelicCsReq" => Some(Self::CmdTakeOffRelicCsReq), - "CmdSetAvatarEnhancedIdScRsp" => Some(Self::CmdSetAvatarEnhancedIdScRsp), - "CmdMarkAvatarScRsp" => Some(Self::CmdMarkAvatarScRsp), - "CmdTakeOffAvatarSkinScRsp" => Some(Self::CmdTakeOffAvatarSkinScRsp), + "CmdTakePromotionRewardScRsp" => Some(Self::CmdTakePromotionRewardScRsp), + "CmdPromoteAvatarScRsp" => Some(Self::CmdPromoteAvatarScRsp), + "CmdAvatarExpUpCsReq" => Some(Self::CmdAvatarExpUpCsReq), "CmdDressAvatarSkinScRsp" => Some(Self::CmdDressAvatarSkinScRsp), - "CmdUnlockAvatarPathScRsp" => Some(Self::CmdUnlockAvatarPathScRsp), - "CmdSetGrowthTargetAvatarScRsp" => Some(Self::CmdSetGrowthTargetAvatarScRsp), - "CmdSetMultipleAvatarPathsScRsp" => { - Some(Self::CmdSetMultipleAvatarPathsScRsp) + "CmdGetPreAvatarActivityListCsReq" => { + Some(Self::CmdGetPreAvatarActivityListCsReq) } - "CmdMarkAvatarCsReq" => Some(Self::CmdMarkAvatarCsReq), - "CmdGetAvatarDataCsReq" => Some(Self::CmdGetAvatarDataCsReq), - "CmdUnlockAvatarPathCsReq" => Some(Self::CmdUnlockAvatarPathCsReq), - "CmdUnlockAvatarSkinScNotify" => Some(Self::CmdUnlockAvatarSkinScNotify), "CmdPromoteAvatarCsReq" => Some(Self::CmdPromoteAvatarCsReq), - "CmdDressRelicAvatarCsReq" => Some(Self::CmdDressRelicAvatarCsReq), - "CmdAddAvatarScNotify" => Some(Self::CmdAddAvatarScNotify), - "CmdAvatarPathChangedNotify" => Some(Self::CmdAvatarPathChangedNotify), - "CmdAvatarSpecialSkilltreeUnlockScNotify" => { - Some(Self::CmdAvatarSpecialSkilltreeUnlockScNotify) - } - "CmdSetPlayerOutfitScRsp" => Some(Self::CmdSetPlayerOutfitScRsp), - "CmdSetAvatarPathCsReq" => Some(Self::CmdSetAvatarPathCsReq), - "CmdTakeOffAvatarSkinCsReq" => Some(Self::CmdTakeOffAvatarSkinCsReq), + "CmdSetAvatarPathScRsp" => Some(Self::CmdSetAvatarPathScRsp), + "CmdRankUpAvatarCsReq" => Some(Self::CmdRankUpAvatarCsReq), + "CmdUnlockAvatarPathScRsp" => Some(Self::CmdUnlockAvatarPathScRsp), + "CmdDressAvatarScRsp" => Some(Self::CmdDressAvatarScRsp), + "CmdSetAvatarEnhancedIdCsReq" => Some(Self::CmdSetAvatarEnhancedIdCsReq), + "CmdTakeOffEquipmentScRsp" => Some(Self::CmdTakeOffEquipmentScRsp), + "CmdTakePromotionRewardCsReq" => Some(Self::CmdTakePromotionRewardCsReq), + "CmdDressAvatarSkinCsReq" => Some(Self::CmdDressAvatarSkinCsReq), + "CmdSetGrowthTargetAvatarScRsp" => Some(Self::CmdSetGrowthTargetAvatarScRsp), "CmdSetMultipleAvatarPathsCsReq" => { Some(Self::CmdSetMultipleAvatarPathsCsReq) } - "CmdPromoteAvatarScRsp" => Some(Self::CmdPromoteAvatarScRsp), + "CmdAvatarExpUpScRsp" => Some(Self::CmdAvatarExpUpScRsp), + "CmdTakeOffAvatarSkinScRsp" => Some(Self::CmdTakeOffAvatarSkinScRsp), + "CmdUnlockSkilltreeCsReq" => Some(Self::CmdUnlockSkilltreeCsReq), "CmdGetAvatarDataScRsp" => Some(Self::CmdGetAvatarDataScRsp), + "CmdUnlockAvatarSkinScNotify" => Some(Self::CmdUnlockAvatarSkinScNotify), + "CmdSetMultipleAvatarPathsScRsp" => { + Some(Self::CmdSetMultipleAvatarPathsScRsp) + } + "CmdSetAvatarEnhancedIdScRsp" => Some(Self::CmdSetAvatarEnhancedIdScRsp), + "CmdGetPreAvatarGrowthInfoScRsp" => { + Some(Self::CmdGetPreAvatarGrowthInfoScRsp) + } + "CmdGetPreAvatarGrowthInfoCsReq" => { + Some(Self::CmdGetPreAvatarGrowthInfoCsReq) + } + "CmdDressRelicAvatarScRsp" => Some(Self::CmdDressRelicAvatarScRsp), + "CmdSetGrowthTargetAvatarCsReq" => Some(Self::CmdSetGrowthTargetAvatarCsReq), + "CmdMarkAvatarScRsp" => Some(Self::CmdMarkAvatarScRsp), + "CmdTakeOffAvatarSkinCsReq" => Some(Self::CmdTakeOffAvatarSkinCsReq), "CmdRankUpAvatarScRsp" => Some(Self::CmdRankUpAvatarScRsp), - "CmdDressAvatarSkinCsReq" => Some(Self::CmdDressAvatarSkinCsReq), - "CmdTakePromotionRewardScRsp" => Some(Self::CmdTakePromotionRewardScRsp), - "CmdUnlockSkilltreeScRsp" => Some(Self::CmdUnlockSkilltreeScRsp), + "CmdUnlockAvatarPathCsReq" => Some(Self::CmdUnlockAvatarPathCsReq), + "CmdMarkAvatarCsReq" => Some(Self::CmdMarkAvatarCsReq), + "CmdGetPreAvatarActivityListScRsp" => { + Some(Self::CmdGetPreAvatarActivityListScRsp) + } + "CmdAvatarPathChangedNotify" => Some(Self::CmdAvatarPathChangedNotify), + "CmdAddMultiPathAvatarScNotify" => Some(Self::CmdAddMultiPathAvatarScNotify), + "CmdTakeOffEquipmentCsReq" => Some(Self::CmdTakeOffEquipmentCsReq), + "CmdAvatarSpecialSkilltreeUnlockScNotify" => { + Some(Self::CmdAvatarSpecialSkilltreeUnlockScNotify) + } + "CmdSetPlayerOutfitCsReq" => Some(Self::CmdSetPlayerOutfitCsReq), _ => None, } } @@ -67488,27 +67674,23 @@ impl CmdAvatarType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Bcmljcfoefm { - GrowthTargetFunctionTypeIncludeAllSkilltree = 0, +pub enum GrowthTartgetFuncType { + HnehdplghdpOjdelhchnig = 0, } -impl Bcmljcfoefm { +impl GrowthTartgetFuncType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::GrowthTargetFunctionTypeIncludeAllSkilltree => { - "GROWTH_TARGET_FUNCTION_TYPE_INCLUDE_ALL_SKILLTREE" - } + Self::HnehdplghdpOjdelhchnig => "HNEHDPLGHDP_OJDELHCHNIG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "GROWTH_TARGET_FUNCTION_TYPE_INCLUDE_ALL_SKILLTREE" => { - Some(Self::GrowthTargetFunctionTypeIncludeAllSkilltree) - } + "HNEHDPLGHDP_OJDELHCHNIG" => Some(Self::HnehdplghdpOjdelhchnig), _ => None, } } @@ -67516,32 +67698,32 @@ impl Bcmljcfoefm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum AddAvatarSrc { - None = 0, - Gacha = 1, - Rogue = 2, - Delivery = 3, +pub enum AddAvatarSrcState { + LlalkhmheecAlocmfakbkp = 0, + LlalkhmheecEijcdihbhbc = 1, + LlalkhmheecHdihiedngkp = 2, + LlalkhmheecJgpkdlpnigl = 3, } -impl AddAvatarSrc { +impl AddAvatarSrcState { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "ADD_AVATAR_SRC_NONE", - Self::Gacha => "ADD_AVATAR_SRC_GACHA", - Self::Rogue => "ADD_AVATAR_SRC_ROGUE", - Self::Delivery => "ADD_AVATAR_SRC_DELIVERY", + Self::LlalkhmheecAlocmfakbkp => "LLALKHMHEEC_ALOCMFAKBKP", + Self::LlalkhmheecEijcdihbhbc => "LLALKHMHEEC_EIJCDIHBHBC", + Self::LlalkhmheecHdihiedngkp => "LLALKHMHEEC_HDIHIEDNGKP", + Self::LlalkhmheecJgpkdlpnigl => "LLALKHMHEEC_JGPKDLPNIGL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ADD_AVATAR_SRC_NONE" => Some(Self::None), - "ADD_AVATAR_SRC_GACHA" => Some(Self::Gacha), - "ADD_AVATAR_SRC_ROGUE" => Some(Self::Rogue), - "ADD_AVATAR_SRC_DELIVERY" => Some(Self::Delivery), + "LLALKHMHEEC_ALOCMFAKBKP" => Some(Self::LlalkhmheecAlocmfakbkp), + "LLALKHMHEEC_EIJCDIHBHBC" => Some(Self::LlalkhmheecEijcdihbhbc), + "LLALKHMHEEC_HDIHIEDNGKP" => Some(Self::LlalkhmheecHdihiedngkp), + "LLALKHMHEEC_JGPKDLPNIGL" => Some(Self::LlalkhmheecJgpkdlpnigl), _ => None, } } @@ -67549,41 +67731,29 @@ impl AddAvatarSrc { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Obipkiialhc { - MultiPathAvatarUnlockReasonNone = 0, - MultiPathAvatarUnlockReasonFinishUnlockCondition = 1, - MultiPathAvatarUnlockReasonEarlyUnlock = 2, +pub enum Nablpjaiioh { + Alocmfakbkp = 0, + Noiofocibcc = 1, + Gmndpmaccll = 2, } -impl Obipkiialhc { +impl Nablpjaiioh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MultiPathAvatarUnlockReasonNone => { - "MULTI_PATH_AVATAR_UNLOCK_REASON_NONE" - } - Self::MultiPathAvatarUnlockReasonFinishUnlockCondition => { - "MULTI_PATH_AVATAR_UNLOCK_REASON_FINISH_UNLOCK_CONDITION" - } - Self::MultiPathAvatarUnlockReasonEarlyUnlock => { - "MULTI_PATH_AVATAR_UNLOCK_REASON_EARLY_UNLOCK" - } + Self::Alocmfakbkp => "NABLPJAIIOH_ALOCMFAKBKP", + Self::Noiofocibcc => "NABLPJAIIOH_NOIOFOCIBCC", + Self::Gmndpmaccll => "NABLPJAIIOH_GMNDPMACCLL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MULTI_PATH_AVATAR_UNLOCK_REASON_NONE" => { - Some(Self::MultiPathAvatarUnlockReasonNone) - } - "MULTI_PATH_AVATAR_UNLOCK_REASON_FINISH_UNLOCK_CONDITION" => { - Some(Self::MultiPathAvatarUnlockReasonFinishUnlockCondition) - } - "MULTI_PATH_AVATAR_UNLOCK_REASON_EARLY_UNLOCK" => { - Some(Self::MultiPathAvatarUnlockReasonEarlyUnlock) - } + "NABLPJAIIOH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "NABLPJAIIOH_NOIOFOCIBCC" => Some(Self::Noiofocibcc), + "NABLPJAIIOH_GMNDPMACCLL" => Some(Self::Gmndpmaccll), _ => None, } } @@ -67591,38 +67761,38 @@ impl Obipkiialhc { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Gifjdobiiik { - GrowthTargetAvatarNone = 0, - GrowthTargetAvatarPre = 1, - GrowthTargetAvatarUp = 2, - GrowthTargetAvatarLock = 3, - GrowthTargetAvatarUnlock = 4, - GrowthTargetAvatarLockAndUp = 5, +pub enum GrowthTargetState { + MhcmdbfboigImfjbcbdpld = 0, + MhcmdbfboigLlcebdfpgel = 1, + MhcmdbfboigDeiokmjdgje = 2, + MhcmdbfboigAbnmfjbcadg = 3, + MhcmdbfboigBpckflnbpjb = 4, + MhcmdbfboigDkccbcaabhc = 5, } -impl Gifjdobiiik { +impl GrowthTargetState { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::GrowthTargetAvatarNone => "GROWTH_TARGET_AVATAR_NONE", - Self::GrowthTargetAvatarPre => "GROWTH_TARGET_AVATAR_PRE", - Self::GrowthTargetAvatarUp => "GROWTH_TARGET_AVATAR_UP", - Self::GrowthTargetAvatarLock => "GROWTH_TARGET_AVATAR_LOCK", - Self::GrowthTargetAvatarUnlock => "GROWTH_TARGET_AVATAR_UNLOCK", - Self::GrowthTargetAvatarLockAndUp => "GROWTH_TARGET_AVATAR_LOCK_AND_UP", + Self::MhcmdbfboigImfjbcbdpld => "MHCMDBFBOIG_IMFJBCBDPLD", + Self::MhcmdbfboigLlcebdfpgel => "MHCMDBFBOIG_LLCEBDFPGEL", + Self::MhcmdbfboigDeiokmjdgje => "MHCMDBFBOIG_DEIOKMJDGJE", + Self::MhcmdbfboigAbnmfjbcadg => "MHCMDBFBOIG_ABNMFJBCADG", + Self::MhcmdbfboigBpckflnbpjb => "MHCMDBFBOIG_BPCKFLNBPJB", + Self::MhcmdbfboigDkccbcaabhc => "MHCMDBFBOIG_DKCCBCAABHC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "GROWTH_TARGET_AVATAR_NONE" => Some(Self::GrowthTargetAvatarNone), - "GROWTH_TARGET_AVATAR_PRE" => Some(Self::GrowthTargetAvatarPre), - "GROWTH_TARGET_AVATAR_UP" => Some(Self::GrowthTargetAvatarUp), - "GROWTH_TARGET_AVATAR_LOCK" => Some(Self::GrowthTargetAvatarLock), - "GROWTH_TARGET_AVATAR_UNLOCK" => Some(Self::GrowthTargetAvatarUnlock), - "GROWTH_TARGET_AVATAR_LOCK_AND_UP" => Some(Self::GrowthTargetAvatarLockAndUp), + "MHCMDBFBOIG_IMFJBCBDPLD" => Some(Self::MhcmdbfboigImfjbcbdpld), + "MHCMDBFBOIG_LLCEBDFPGEL" => Some(Self::MhcmdbfboigLlcebdfpgel), + "MHCMDBFBOIG_DEIOKMJDGJE" => Some(Self::MhcmdbfboigDeiokmjdgje), + "MHCMDBFBOIG_ABNMFJBCADG" => Some(Self::MhcmdbfboigAbnmfjbcadg), + "MHCMDBFBOIG_BPCKFLNBPJB" => Some(Self::MhcmdbfboigBpckflnbpjb), + "MHCMDBFBOIG_DKCCBCAABHC" => Some(Self::MhcmdbfboigDkccbcaabhc), _ => None, } } @@ -67631,21 +67801,21 @@ impl Gifjdobiiik { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdBattleType { - None = 0, - CmdBattleLogReportScRsp = 181, - CmdQuitBattleScRsp = 165, - CmdBattleLogReportCsReq = 144, - CmdGetCurBattleInfoScRsp = 186, - CmdSyncClientResVersionScRsp = 152, - CmdPveBattleResultScRsp = 123, - CmdGetCurBattleInfoCsReq = 183, - CmdPveBattleResultCsReq = 199, - CmdRebattleByClientCsNotify = 115, - CmdQuitBattleScNotify = 119, - CmdServerSimulateBattleFinishScNotify = 169, - CmdQuitBattleCsReq = 198, - CmdReBattleAfterBattleLoseCsNotify = 157, - CmdSyncClientResVersionCsReq = 194, + LiimljhkkboAlocmfakbkp = 0, + CmdBattleLogReportScRsp = 161, + LiimljhkkboHlmekalpmgd = 191, + CmdQuitBattleScRsp = 117, + CmdQuitBattleCsReq = 138, + CmdReBattleAfterBattleLoseCsNotify = 176, + CmdGetCurBattleInfoScRsp = 111, + CmdSyncClientResVersionScRsp = 120, + CmdGetCurBattleInfoCsReq = 151, + CmdServerSimulateBattleFinishScNotify = 145, + CmdPveBattleResultCsReq = 147, + CmdRebattleByClientCsNotify = 152, + CmdPveBattleResultScRsp = 109, + CmdSyncClientResVersionCsReq = 189, + CmdQuitBattleScNotify = 195, } impl CmdBattleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67654,49 +67824,49 @@ impl CmdBattleType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdBattleTypeNone", + Self::LiimljhkkboAlocmfakbkp => "LIIMLJHKKBO_ALOCMFAKBKP", Self::CmdBattleLogReportScRsp => "CmdBattleLogReportScRsp", + Self::LiimljhkkboHlmekalpmgd => "LIIMLJHKKBO_HLMEKALPMGD", Self::CmdQuitBattleScRsp => "CmdQuitBattleScRsp", - Self::CmdBattleLogReportCsReq => "CmdBattleLogReportCsReq", - Self::CmdGetCurBattleInfoScRsp => "CmdGetCurBattleInfoScRsp", - Self::CmdSyncClientResVersionScRsp => "CmdSyncClientResVersionScRsp", - Self::CmdPveBattleResultScRsp => "CmdPVEBattleResultScRsp", - Self::CmdGetCurBattleInfoCsReq => "CmdGetCurBattleInfoCsReq", - Self::CmdPveBattleResultCsReq => "CmdPVEBattleResultCsReq", - Self::CmdRebattleByClientCsNotify => "CmdRebattleByClientCsNotify", - Self::CmdQuitBattleScNotify => "CmdQuitBattleScNotify", - Self::CmdServerSimulateBattleFinishScNotify => { - "CmdServerSimulateBattleFinishScNotify" - } Self::CmdQuitBattleCsReq => "CmdQuitBattleCsReq", Self::CmdReBattleAfterBattleLoseCsNotify => { "CmdReBattleAfterBattleLoseCsNotify" } + Self::CmdGetCurBattleInfoScRsp => "CmdGetCurBattleInfoScRsp", + Self::CmdSyncClientResVersionScRsp => "CmdSyncClientResVersionScRsp", + Self::CmdGetCurBattleInfoCsReq => "CmdGetCurBattleInfoCsReq", + Self::CmdServerSimulateBattleFinishScNotify => { + "CmdServerSimulateBattleFinishScNotify" + } + Self::CmdPveBattleResultCsReq => "CmdPVEBattleResultCsReq", + Self::CmdRebattleByClientCsNotify => "CmdRebattleByClientCsNotify", + Self::CmdPveBattleResultScRsp => "CmdPVEBattleResultScRsp", Self::CmdSyncClientResVersionCsReq => "CmdSyncClientResVersionCsReq", + Self::CmdQuitBattleScNotify => "CmdQuitBattleScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdBattleTypeNone" => Some(Self::None), + "LIIMLJHKKBO_ALOCMFAKBKP" => Some(Self::LiimljhkkboAlocmfakbkp), "CmdBattleLogReportScRsp" => Some(Self::CmdBattleLogReportScRsp), + "LIIMLJHKKBO_HLMEKALPMGD" => Some(Self::LiimljhkkboHlmekalpmgd), "CmdQuitBattleScRsp" => Some(Self::CmdQuitBattleScRsp), - "CmdBattleLogReportCsReq" => Some(Self::CmdBattleLogReportCsReq), - "CmdGetCurBattleInfoScRsp" => Some(Self::CmdGetCurBattleInfoScRsp), - "CmdSyncClientResVersionScRsp" => Some(Self::CmdSyncClientResVersionScRsp), - "CmdPVEBattleResultScRsp" => Some(Self::CmdPveBattleResultScRsp), - "CmdGetCurBattleInfoCsReq" => Some(Self::CmdGetCurBattleInfoCsReq), - "CmdPVEBattleResultCsReq" => Some(Self::CmdPveBattleResultCsReq), - "CmdRebattleByClientCsNotify" => Some(Self::CmdRebattleByClientCsNotify), - "CmdQuitBattleScNotify" => Some(Self::CmdQuitBattleScNotify), - "CmdServerSimulateBattleFinishScNotify" => { - Some(Self::CmdServerSimulateBattleFinishScNotify) - } "CmdQuitBattleCsReq" => Some(Self::CmdQuitBattleCsReq), "CmdReBattleAfterBattleLoseCsNotify" => { Some(Self::CmdReBattleAfterBattleLoseCsNotify) } + "CmdGetCurBattleInfoScRsp" => Some(Self::CmdGetCurBattleInfoScRsp), + "CmdSyncClientResVersionScRsp" => Some(Self::CmdSyncClientResVersionScRsp), + "CmdGetCurBattleInfoCsReq" => Some(Self::CmdGetCurBattleInfoCsReq), + "CmdServerSimulateBattleFinishScNotify" => { + Some(Self::CmdServerSimulateBattleFinishScNotify) + } + "CmdPVEBattleResultCsReq" => Some(Self::CmdPveBattleResultCsReq), + "CmdRebattleByClientCsNotify" => Some(Self::CmdRebattleByClientCsNotify), + "CmdPVEBattleResultScRsp" => Some(Self::CmdPveBattleResultScRsp), "CmdSyncClientResVersionCsReq" => Some(Self::CmdSyncClientResVersionCsReq), + "CmdQuitBattleScNotify" => Some(Self::CmdQuitBattleScNotify), _ => None, } } @@ -67705,12 +67875,12 @@ impl CmdBattleType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdBattleCollegeType { - None = 0, - CmdGetBattleCollegeDataScRsp = 5723, - CmdBattleCollegeDataChangeScNotify = 5798, - CmdStartBattleCollegeScRsp = 5783, - CmdStartBattleCollegeCsReq = 5765, - CmdGetBattleCollegeDataCsReq = 5799, + PcgcoegbjopAlocmfakbkp = 0, + CmdGetBattleCollegeDataScRsp = 5709, + CmdStartBattleCollegeCsReq = 5717, + CmdBattleCollegeDataChangeScNotify = 5738, + CmdGetBattleCollegeDataCsReq = 5747, + CmdStartBattleCollegeScRsp = 5751, } impl CmdBattleCollegeType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67719,27 +67889,27 @@ impl CmdBattleCollegeType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdBattleCollegeTypeNone", + Self::PcgcoegbjopAlocmfakbkp => "PCGCOEGBJOP_ALOCMFAKBKP", Self::CmdGetBattleCollegeDataScRsp => "CmdGetBattleCollegeDataScRsp", + Self::CmdStartBattleCollegeCsReq => "CmdStartBattleCollegeCsReq", Self::CmdBattleCollegeDataChangeScNotify => { "CmdBattleCollegeDataChangeScNotify" } - Self::CmdStartBattleCollegeScRsp => "CmdStartBattleCollegeScRsp", - Self::CmdStartBattleCollegeCsReq => "CmdStartBattleCollegeCsReq", Self::CmdGetBattleCollegeDataCsReq => "CmdGetBattleCollegeDataCsReq", + Self::CmdStartBattleCollegeScRsp => "CmdStartBattleCollegeScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdBattleCollegeTypeNone" => Some(Self::None), + "PCGCOEGBJOP_ALOCMFAKBKP" => Some(Self::PcgcoegbjopAlocmfakbkp), "CmdGetBattleCollegeDataScRsp" => Some(Self::CmdGetBattleCollegeDataScRsp), + "CmdStartBattleCollegeCsReq" => Some(Self::CmdStartBattleCollegeCsReq), "CmdBattleCollegeDataChangeScNotify" => { Some(Self::CmdBattleCollegeDataChangeScNotify) } - "CmdStartBattleCollegeScRsp" => Some(Self::CmdStartBattleCollegeScRsp), - "CmdStartBattleCollegeCsReq" => Some(Self::CmdStartBattleCollegeCsReq), "CmdGetBattleCollegeDataCsReq" => Some(Self::CmdGetBattleCollegeDataCsReq), + "CmdStartBattleCollegeScRsp" => Some(Self::CmdStartBattleCollegeScRsp), _ => None, } } @@ -67748,14 +67918,14 @@ impl CmdBattleCollegeType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdBattlePassType { - None = 0, - CmdTakeBpRewardCsReq = 3065, - CmdBuyBpLevelCsReq = 3086, - CmdBuyBpLevelScRsp = 3094, - CmdTakeAllRewardScRsp = 3019, - CmdBattlePassInfoNotify = 3099, - CmdTakeAllRewardCsReq = 3052, - CmdTakeBpRewardScRsp = 3083, + GlhnbjhdiijAlocmfakbkp = 0, + CmdBuyBpLevelCsReq = 3011, + CmdBattlePassInfoNotify = 3047, + CmdBuyBpLevelScRsp = 3089, + CmdTakeAllRewardScRsp = 3095, + CmdTakeBpRewardScRsp = 3051, + CmdTakeBpRewardCsReq = 3017, + CmdTakeAllRewardCsReq = 3020, } impl CmdBattlePassType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67764,27 +67934,27 @@ impl CmdBattlePassType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdBattlePassTypeNone", - Self::CmdTakeBpRewardCsReq => "CmdTakeBpRewardCsReq", + Self::GlhnbjhdiijAlocmfakbkp => "GLHNBJHDIIJ_ALOCMFAKBKP", Self::CmdBuyBpLevelCsReq => "CmdBuyBpLevelCsReq", + Self::CmdBattlePassInfoNotify => "CmdBattlePassInfoNotify", Self::CmdBuyBpLevelScRsp => "CmdBuyBpLevelScRsp", Self::CmdTakeAllRewardScRsp => "CmdTakeAllRewardScRsp", - Self::CmdBattlePassInfoNotify => "CmdBattlePassInfoNotify", - Self::CmdTakeAllRewardCsReq => "CmdTakeAllRewardCsReq", Self::CmdTakeBpRewardScRsp => "CmdTakeBpRewardScRsp", + Self::CmdTakeBpRewardCsReq => "CmdTakeBpRewardCsReq", + Self::CmdTakeAllRewardCsReq => "CmdTakeAllRewardCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdBattlePassTypeNone" => Some(Self::None), - "CmdTakeBpRewardCsReq" => Some(Self::CmdTakeBpRewardCsReq), + "GLHNBJHDIIJ_ALOCMFAKBKP" => Some(Self::GlhnbjhdiijAlocmfakbkp), "CmdBuyBpLevelCsReq" => Some(Self::CmdBuyBpLevelCsReq), + "CmdBattlePassInfoNotify" => Some(Self::CmdBattlePassInfoNotify), "CmdBuyBpLevelScRsp" => Some(Self::CmdBuyBpLevelScRsp), "CmdTakeAllRewardScRsp" => Some(Self::CmdTakeAllRewardScRsp), - "CmdBattlePassInfoNotify" => Some(Self::CmdBattlePassInfoNotify), - "CmdTakeAllRewardCsReq" => Some(Self::CmdTakeAllRewardCsReq), "CmdTakeBpRewardScRsp" => Some(Self::CmdTakeBpRewardScRsp), + "CmdTakeBpRewardCsReq" => Some(Self::CmdTakeBpRewardCsReq), + "CmdTakeAllRewardCsReq" => Some(Self::CmdTakeAllRewardCsReq), _ => None, } } @@ -67793,10 +67963,10 @@ impl CmdBattlePassType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BpTierType { - None = 0, - Free = 1, - Premium1 = 2, - Premium2 = 3, + HafdkmlomdnAlocmfakbkp = 0, + HafdkmlomdnDnaidldaafh = 1, + HafdkmlomdnBpffhcllobf = 2, + HafdkmlomdnKklfnfemcka = 3, } impl BpTierType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67805,19 +67975,19 @@ impl BpTierType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "BP_TIER_TYPE_NONE", - Self::Free => "BP_TIER_TYPE_FREE", - Self::Premium1 => "BP_TIER_TYPE_PREMIUM_1", - Self::Premium2 => "BP_TIER_TYPE_PREMIUM_2", + Self::HafdkmlomdnAlocmfakbkp => "HAFDKMLOMDN_ALOCMFAKBKP", + Self::HafdkmlomdnDnaidldaafh => "HAFDKMLOMDN_DNAIDLDAAFH", + Self::HafdkmlomdnBpffhcllobf => "HAFDKMLOMDN_BPFFHCLLOBF", + Self::HafdkmlomdnKklfnfemcka => "HAFDKMLOMDN_KKLFNFEMCKA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BP_TIER_TYPE_NONE" => Some(Self::None), - "BP_TIER_TYPE_FREE" => Some(Self::Free), - "BP_TIER_TYPE_PREMIUM_1" => Some(Self::Premium1), - "BP_TIER_TYPE_PREMIUM_2" => Some(Self::Premium2), + "HAFDKMLOMDN_ALOCMFAKBKP" => Some(Self::HafdkmlomdnAlocmfakbkp), + "HAFDKMLOMDN_DNAIDLDAAFH" => Some(Self::HafdkmlomdnDnaidldaafh), + "HAFDKMLOMDN_BPFFHCLLOBF" => Some(Self::HafdkmlomdnBpffhcllobf), + "HAFDKMLOMDN_KKLFNFEMCKA" => Some(Self::HafdkmlomdnKklfnfemcka), _ => None, } } @@ -67826,11 +67996,11 @@ impl BpTierType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BpRewardType { - BpRewaradTypeNone = 0, - BpRewaradTypeFree = 1, - BpRewaradTypePremium1 = 2, - BpRewaradTypePremium2 = 3, - BpRewaradTypePremiumOptional = 4, + ElajbngjfcmOaljiokokbb = 0, + ElajbngjfcmGihhhhehmgg = 1, + ElajbngjfcmAeggfedcfjc = 2, + ElajbngjfcmHedaaaffdpd = 3, + ElajbngjfcmIandgbpgffg = 4, } impl BpRewardType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67839,23 +68009,21 @@ impl BpRewardType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BpRewaradTypeNone => "BP_REWARAD_TYPE_NONE", - Self::BpRewaradTypeFree => "BP_REWARAD_TYPE_FREE", - Self::BpRewaradTypePremium1 => "BP_REWARAD_TYPE_PREMIUM_1", - Self::BpRewaradTypePremium2 => "BP_REWARAD_TYPE_PREMIUM_2", - Self::BpRewaradTypePremiumOptional => "BP_REWARAD_TYPE_PREMIUM_OPTIONAL", + Self::ElajbngjfcmOaljiokokbb => "ELAJBNGJFCM_OALJIOKOKBB", + Self::ElajbngjfcmGihhhhehmgg => "ELAJBNGJFCM_GIHHHHEHMGG", + Self::ElajbngjfcmAeggfedcfjc => "ELAJBNGJFCM_AEGGFEDCFJC", + Self::ElajbngjfcmHedaaaffdpd => "ELAJBNGJFCM_HEDAAAFFDPD", + Self::ElajbngjfcmIandgbpgffg => "ELAJBNGJFCM_IANDGBPGFFG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BP_REWARAD_TYPE_NONE" => Some(Self::BpRewaradTypeNone), - "BP_REWARAD_TYPE_FREE" => Some(Self::BpRewaradTypeFree), - "BP_REWARAD_TYPE_PREMIUM_1" => Some(Self::BpRewaradTypePremium1), - "BP_REWARAD_TYPE_PREMIUM_2" => Some(Self::BpRewaradTypePremium2), - "BP_REWARAD_TYPE_PREMIUM_OPTIONAL" => { - Some(Self::BpRewaradTypePremiumOptional) - } + "ELAJBNGJFCM_OALJIOKOKBB" => Some(Self::ElajbngjfcmOaljiokokbb), + "ELAJBNGJFCM_GIHHHHEHMGG" => Some(Self::ElajbngjfcmGihhhhehmgg), + "ELAJBNGJFCM_AEGGFEDCFJC" => Some(Self::ElajbngjfcmAeggfedcfjc), + "ELAJBNGJFCM_HEDAAAFFDPD" => Some(Self::ElajbngjfcmHedaaaffdpd), + "ELAJBNGJFCM_IANDGBPGFFG" => Some(Self::ElajbngjfcmIandgbpgffg), _ => None, } } @@ -67864,13 +68032,13 @@ impl BpRewardType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdBenefitActivityType { - None = 0, - CmdJoinBenefitActivityScRsp = 4877, - CmdGetBenefitActivityInfoScRsp = 4878, - CmdTakeBenefitActivityRewardScRsp = 4888, - CmdGetBenefitActivityInfoCsReq = 4876, - CmdJoinBenefitActivityCsReq = 4855, - CmdTakeBenefitActivityRewardCsReq = 4871, + JjoblfgnghhAlocmfakbkp = 0, + CmdGetBenefitActivityInfoScRsp = 4852, + CmdGetBenefitActivityInfoCsReq = 4869, + CmdJoinBenefitActivityScRsp = 4883, + CmdTakeBenefitActivityRewardScRsp = 4855, + CmdTakeBenefitActivityRewardCsReq = 4898, + CmdJoinBenefitActivityCsReq = 4885, } impl CmdBenefitActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67879,37 +68047,37 @@ impl CmdBenefitActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdBenefitActivityTypeNone", - Self::CmdJoinBenefitActivityScRsp => "CmdJoinBenefitActivityScRsp", + Self::JjoblfgnghhAlocmfakbkp => "JJOBLFGNGHH_ALOCMFAKBKP", Self::CmdGetBenefitActivityInfoScRsp => "CmdGetBenefitActivityInfoScRsp", + Self::CmdGetBenefitActivityInfoCsReq => "CmdGetBenefitActivityInfoCsReq", + Self::CmdJoinBenefitActivityScRsp => "CmdJoinBenefitActivityScRsp", Self::CmdTakeBenefitActivityRewardScRsp => { "CmdTakeBenefitActivityRewardScRsp" } - Self::CmdGetBenefitActivityInfoCsReq => "CmdGetBenefitActivityInfoCsReq", - Self::CmdJoinBenefitActivityCsReq => "CmdJoinBenefitActivityCsReq", Self::CmdTakeBenefitActivityRewardCsReq => { "CmdTakeBenefitActivityRewardCsReq" } + Self::CmdJoinBenefitActivityCsReq => "CmdJoinBenefitActivityCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdBenefitActivityTypeNone" => Some(Self::None), - "CmdJoinBenefitActivityScRsp" => Some(Self::CmdJoinBenefitActivityScRsp), + "JJOBLFGNGHH_ALOCMFAKBKP" => Some(Self::JjoblfgnghhAlocmfakbkp), "CmdGetBenefitActivityInfoScRsp" => { Some(Self::CmdGetBenefitActivityInfoScRsp) } - "CmdTakeBenefitActivityRewardScRsp" => { - Some(Self::CmdTakeBenefitActivityRewardScRsp) - } "CmdGetBenefitActivityInfoCsReq" => { Some(Self::CmdGetBenefitActivityInfoCsReq) } - "CmdJoinBenefitActivityCsReq" => Some(Self::CmdJoinBenefitActivityCsReq), + "CmdJoinBenefitActivityScRsp" => Some(Self::CmdJoinBenefitActivityScRsp), + "CmdTakeBenefitActivityRewardScRsp" => { + Some(Self::CmdTakeBenefitActivityRewardScRsp) + } "CmdTakeBenefitActivityRewardCsReq" => { Some(Self::CmdTakeBenefitActivityRewardCsReq) } + "CmdJoinBenefitActivityCsReq" => Some(Self::CmdJoinBenefitActivityCsReq), _ => None, } } @@ -67918,23 +68086,23 @@ impl CmdBenefitActivityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdBoxingClubType { - None = 0, - CmdChooseBoxingClubResonanceScRsp = 4269, - CmdChooseBoxingClubStageOptionalBuffScRsp = 4237, - CmdChooseBoxingClubStageOptionalBuffCsReq = 4292, - CmdGiveUpBoxingClubChallengeCsReq = 4294, - CmdGetBoxingClubInfoScRsp = 4223, - CmdGetBoxingClubInfoCsReq = 4299, - CmdGiveUpBoxingClubChallengeScRsp = 4252, - CmdBoxingClubChallengeUpdateScNotify = 4244, - CmdChooseBoxingClubResonanceCsReq = 4281, - CmdStartBoxingClubBattleCsReq = 4283, - CmdMatchBoxingClubOpponentCsReq = 4298, - CmdBoxingClubRewardScNotify = 4219, - CmdSetBoxingClubResonanceLineupScRsp = 4215, - CmdMatchBoxingClubOpponentScRsp = 4265, - CmdSetBoxingClubResonanceLineupCsReq = 4257, - CmdStartBoxingClubBattleScRsp = 4286, + HahhijgfphiAlocmfakbkp = 0, + CmdOhfglcdjbaj = 4245, + CmdDpcfnekeagf = 4247, + CmdBbphbnhnnkj = 4295, + CmdLjokckagipn = 4250, + CmdKlnkdcogkab = 4211, + CmdBpnmebkdjea = 4209, + CmdIhcmmgaebjl = 4276, + CmdIlafjjcacna = 4252, + CmdOpgobplgboi = 4291, + CmdGlmffpngofa = 4261, + CmdEmchjnaojml = 4220, + CmdMajgiaamopl = 4289, + CmdJfplikoofeh = 4238, + CmdJcmiigmbked = 4217, + CmdGboggnakmfg = 4251, + CmdNdbjemiiblf = 4281, } impl CmdBoxingClubType { /// String value of the enum field names used in the ProtoBuf definition. @@ -67943,85 +68111,45 @@ impl CmdBoxingClubType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdBoxingClubTypeNone", - Self::CmdChooseBoxingClubResonanceScRsp => { - "CmdChooseBoxingClubResonanceScRsp" - } - Self::CmdChooseBoxingClubStageOptionalBuffScRsp => { - "CmdChooseBoxingClubStageOptionalBuffScRsp" - } - Self::CmdChooseBoxingClubStageOptionalBuffCsReq => { - "CmdChooseBoxingClubStageOptionalBuffCsReq" - } - Self::CmdGiveUpBoxingClubChallengeCsReq => { - "CmdGiveUpBoxingClubChallengeCsReq" - } - Self::CmdGetBoxingClubInfoScRsp => "CmdGetBoxingClubInfoScRsp", - Self::CmdGetBoxingClubInfoCsReq => "CmdGetBoxingClubInfoCsReq", - Self::CmdGiveUpBoxingClubChallengeScRsp => { - "CmdGiveUpBoxingClubChallengeScRsp" - } - Self::CmdBoxingClubChallengeUpdateScNotify => { - "CmdBoxingClubChallengeUpdateScNotify" - } - Self::CmdChooseBoxingClubResonanceCsReq => { - "CmdChooseBoxingClubResonanceCsReq" - } - Self::CmdStartBoxingClubBattleCsReq => "CmdStartBoxingClubBattleCsReq", - Self::CmdMatchBoxingClubOpponentCsReq => "CmdMatchBoxingClubOpponentCsReq", - Self::CmdBoxingClubRewardScNotify => "CmdBoxingClubRewardScNotify", - Self::CmdSetBoxingClubResonanceLineupScRsp => { - "CmdSetBoxingClubResonanceLineupScRsp" - } - Self::CmdMatchBoxingClubOpponentScRsp => "CmdMatchBoxingClubOpponentScRsp", - Self::CmdSetBoxingClubResonanceLineupCsReq => { - "CmdSetBoxingClubResonanceLineupCsReq" - } - Self::CmdStartBoxingClubBattleScRsp => "CmdStartBoxingClubBattleScRsp", + Self::HahhijgfphiAlocmfakbkp => "HAHHIJGFPHI_ALOCMFAKBKP", + Self::CmdOhfglcdjbaj => "CmdOHFGLCDJBAJ", + Self::CmdDpcfnekeagf => "CmdDPCFNEKEAGF", + Self::CmdBbphbnhnnkj => "CmdBBPHBNHNNKJ", + Self::CmdLjokckagipn => "CmdLJOKCKAGIPN", + Self::CmdKlnkdcogkab => "CmdKLNKDCOGKAB", + Self::CmdBpnmebkdjea => "CmdBPNMEBKDJEA", + Self::CmdIhcmmgaebjl => "CmdIHCMMGAEBJL", + Self::CmdIlafjjcacna => "CmdILAFJJCACNA", + Self::CmdOpgobplgboi => "CmdOPGOBPLGBOI", + Self::CmdGlmffpngofa => "CmdGLMFFPNGOFA", + Self::CmdEmchjnaojml => "CmdEMCHJNAOJML", + Self::CmdMajgiaamopl => "CmdMAJGIAAMOPL", + Self::CmdJfplikoofeh => "CmdJFPLIKOOFEH", + Self::CmdJcmiigmbked => "CmdJCMIIGMBKED", + Self::CmdGboggnakmfg => "CmdGBOGGNAKMFG", + Self::CmdNdbjemiiblf => "CmdNDBJEMIIBLF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdBoxingClubTypeNone" => Some(Self::None), - "CmdChooseBoxingClubResonanceScRsp" => { - Some(Self::CmdChooseBoxingClubResonanceScRsp) - } - "CmdChooseBoxingClubStageOptionalBuffScRsp" => { - Some(Self::CmdChooseBoxingClubStageOptionalBuffScRsp) - } - "CmdChooseBoxingClubStageOptionalBuffCsReq" => { - Some(Self::CmdChooseBoxingClubStageOptionalBuffCsReq) - } - "CmdGiveUpBoxingClubChallengeCsReq" => { - Some(Self::CmdGiveUpBoxingClubChallengeCsReq) - } - "CmdGetBoxingClubInfoScRsp" => Some(Self::CmdGetBoxingClubInfoScRsp), - "CmdGetBoxingClubInfoCsReq" => Some(Self::CmdGetBoxingClubInfoCsReq), - "CmdGiveUpBoxingClubChallengeScRsp" => { - Some(Self::CmdGiveUpBoxingClubChallengeScRsp) - } - "CmdBoxingClubChallengeUpdateScNotify" => { - Some(Self::CmdBoxingClubChallengeUpdateScNotify) - } - "CmdChooseBoxingClubResonanceCsReq" => { - Some(Self::CmdChooseBoxingClubResonanceCsReq) - } - "CmdStartBoxingClubBattleCsReq" => Some(Self::CmdStartBoxingClubBattleCsReq), - "CmdMatchBoxingClubOpponentCsReq" => { - Some(Self::CmdMatchBoxingClubOpponentCsReq) - } - "CmdBoxingClubRewardScNotify" => Some(Self::CmdBoxingClubRewardScNotify), - "CmdSetBoxingClubResonanceLineupScRsp" => { - Some(Self::CmdSetBoxingClubResonanceLineupScRsp) - } - "CmdMatchBoxingClubOpponentScRsp" => { - Some(Self::CmdMatchBoxingClubOpponentScRsp) - } - "CmdSetBoxingClubResonanceLineupCsReq" => { - Some(Self::CmdSetBoxingClubResonanceLineupCsReq) - } - "CmdStartBoxingClubBattleScRsp" => Some(Self::CmdStartBoxingClubBattleScRsp), + "HAHHIJGFPHI_ALOCMFAKBKP" => Some(Self::HahhijgfphiAlocmfakbkp), + "CmdOHFGLCDJBAJ" => Some(Self::CmdOhfglcdjbaj), + "CmdDPCFNEKEAGF" => Some(Self::CmdDpcfnekeagf), + "CmdBBPHBNHNNKJ" => Some(Self::CmdBbphbnhnnkj), + "CmdLJOKCKAGIPN" => Some(Self::CmdLjokckagipn), + "CmdKLNKDCOGKAB" => Some(Self::CmdKlnkdcogkab), + "CmdBPNMEBKDJEA" => Some(Self::CmdBpnmebkdjea), + "CmdIHCMMGAEBJL" => Some(Self::CmdIhcmmgaebjl), + "CmdILAFJJCACNA" => Some(Self::CmdIlafjjcacna), + "CmdOPGOBPLGBOI" => Some(Self::CmdOpgobplgboi), + "CmdGLMFFPNGOFA" => Some(Self::CmdGlmffpngofa), + "CmdEMCHJNAOJML" => Some(Self::CmdEmchjnaojml), + "CmdMAJGIAAMOPL" => Some(Self::CmdMajgiaamopl), + "CmdJFPLIKOOFEH" => Some(Self::CmdJfplikoofeh), + "CmdJCMIIGMBKED" => Some(Self::CmdJcmiigmbked), + "CmdGBOGGNAKMFG" => Some(Self::CmdGboggnakmfg), + "CmdNDBJEMIIBLF" => Some(Self::CmdNdbjemiiblf), _ => None, } } @@ -68030,29 +68158,29 @@ impl CmdBoxingClubType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdCakeRaceType { - None = 0, - CmdCakeRaceGetMatchDataCsReq = 9122, - CmdCakeRaceGetDataScRsp = 9121, - CmdCakeRaceStartPveScRsp = 9136, - CmdCakeRaceLoanScRsp = 9143, - CmdCakeRaceFinishFieldRewardScNotify = 9127, - CmdCakeRaceGetDailyLikeScRsp = 9142, - CmdCakeRaceCoinScoreChangeScNotify = 9126, - CmdCakeRaceLikeFriendRankingInfoScRsp = 9147, - CmdCakeRaceStartPveCsReq = 9145, - CmdCakeRaceFinishPveCsReq = 9133, - CmdCakeRaceGetFriendRankingInfoListScRsp = 9138, - CmdCakeRaceGetFriendRankingInfoListCsReq = 9139, - CmdCakeRaceFinishPveScRsp = 9137, - CmdCakeRaceGetDataCsReq = 9128, - CmdCakeRaceGetHandbookCsReq = 9131, - CmdCakeRaceGetDailyLikeCsReq = 9144, - CmdCakeRaceGetHandbookScRsp = 9130, - CmdCakeRaceUpdatePveScRsp = 9123, - CmdCakeRaceUpdatePveCsReq = 9134, - CmdCakeRaceLikeFriendRankingInfoCsReq = 9149, - CmdCakeRaceLoanCsReq = 9135, - CmdCakeRaceGetMatchDataScRsp = 9132, + LdhihakbejoAlocmfakbkp = 0, + CmdAmfbceopcdp = 9143, + CmdCcienkdnoae = 9146, + CmdMenbjhdinmp = 9129, + CmdAgjlobmfknc = 9149, + CmdHgchmeogoma = 9126, + CmdKdcglmgicmg = 9137, + CmdBofanblckgi = 9125, + LdhihakbejoNdalpagkgid = 9148, + CmdJefonnolaeb = 9122, + CmdPabipmphmhc = 9144, + CmdLeibjekbpbj = 9134, + CmdFfmdkkcihma = 9130, + CmdNdlobadoaao = 9133, + CmdFhpkllopkoc = 9121, + CmdDmgiohdpgio = 9150, + CmdEhgaliklnha = 9124, + CmdKemcceijakd = 9123, + CmdGkmkceamkpf = 9138, + CmdHmjicdopolh = 9135, + CmdFcpemjijnpj = 9127, + CmdOkpoacnhjek = 9142, + CmdNbjpofhicid = 9132, } impl CmdCakeRaceType { /// String value of the enum field names used in the ProtoBuf definition. @@ -68061,81 +68189,57 @@ impl CmdCakeRaceType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdCakeRaceTypeNone", - Self::CmdCakeRaceGetMatchDataCsReq => "CmdCakeRaceGetMatchDataCsReq", - Self::CmdCakeRaceGetDataScRsp => "CmdCakeRaceGetDataScRsp", - Self::CmdCakeRaceStartPveScRsp => "CmdCakeRaceStartPveScRsp", - Self::CmdCakeRaceLoanScRsp => "CmdCakeRaceLoanScRsp", - Self::CmdCakeRaceFinishFieldRewardScNotify => { - "CmdCakeRaceFinishFieldRewardScNotify" - } - Self::CmdCakeRaceGetDailyLikeScRsp => "CmdCakeRaceGetDailyLikeScRsp", - Self::CmdCakeRaceCoinScoreChangeScNotify => { - "CmdCakeRaceCoinScoreChangeScNotify" - } - Self::CmdCakeRaceLikeFriendRankingInfoScRsp => { - "CmdCakeRaceLikeFriendRankingInfoScRsp" - } - Self::CmdCakeRaceStartPveCsReq => "CmdCakeRaceStartPveCsReq", - Self::CmdCakeRaceFinishPveCsReq => "CmdCakeRaceFinishPveCsReq", - Self::CmdCakeRaceGetFriendRankingInfoListScRsp => { - "CmdCakeRaceGetFriendRankingInfoListScRsp" - } - Self::CmdCakeRaceGetFriendRankingInfoListCsReq => { - "CmdCakeRaceGetFriendRankingInfoListCsReq" - } - Self::CmdCakeRaceFinishPveScRsp => "CmdCakeRaceFinishPveScRsp", - Self::CmdCakeRaceGetDataCsReq => "CmdCakeRaceGetDataCsReq", - Self::CmdCakeRaceGetHandbookCsReq => "CmdCakeRaceGetHandbookCsReq", - Self::CmdCakeRaceGetDailyLikeCsReq => "CmdCakeRaceGetDailyLikeCsReq", - Self::CmdCakeRaceGetHandbookScRsp => "CmdCakeRaceGetHandbookScRsp", - Self::CmdCakeRaceUpdatePveScRsp => "CmdCakeRaceUpdatePveScRsp", - Self::CmdCakeRaceUpdatePveCsReq => "CmdCakeRaceUpdatePveCsReq", - Self::CmdCakeRaceLikeFriendRankingInfoCsReq => { - "CmdCakeRaceLikeFriendRankingInfoCsReq" - } - Self::CmdCakeRaceLoanCsReq => "CmdCakeRaceLoanCsReq", - Self::CmdCakeRaceGetMatchDataScRsp => "CmdCakeRaceGetMatchDataScRsp", + Self::LdhihakbejoAlocmfakbkp => "LDHIHAKBEJO_ALOCMFAKBKP", + Self::CmdAmfbceopcdp => "CmdAMFBCEOPCDP", + Self::CmdCcienkdnoae => "CmdCCIENKDNOAE", + Self::CmdMenbjhdinmp => "CmdMENBJHDINMP", + Self::CmdAgjlobmfknc => "CmdAGJLOBMFKNC", + Self::CmdHgchmeogoma => "CmdHGCHMEOGOMA", + Self::CmdKdcglmgicmg => "CmdKDCGLMGICMG", + Self::CmdBofanblckgi => "CmdBOFANBLCKGI", + Self::LdhihakbejoNdalpagkgid => "LDHIHAKBEJO_NDALPAGKGID", + Self::CmdJefonnolaeb => "CmdJEFONNOLAEB", + Self::CmdPabipmphmhc => "CmdPABIPMPHMHC", + Self::CmdLeibjekbpbj => "CmdLEIBJEKBPBJ", + Self::CmdFfmdkkcihma => "CmdFFMDKKCIHMA", + Self::CmdNdlobadoaao => "CmdNDLOBADOAAO", + Self::CmdFhpkllopkoc => "CmdFHPKLLOPKOC", + Self::CmdDmgiohdpgio => "CmdDMGIOHDPGIO", + Self::CmdEhgaliklnha => "CmdEHGALIKLNHA", + Self::CmdKemcceijakd => "CmdKEMCCEIJAKD", + Self::CmdGkmkceamkpf => "CmdGKMKCEAMKPF", + Self::CmdHmjicdopolh => "CmdHMJICDOPOLH", + Self::CmdFcpemjijnpj => "CmdFCPEMJIJNPJ", + Self::CmdOkpoacnhjek => "CmdOKPOACNHJEK", + Self::CmdNbjpofhicid => "CmdNBJPOFHICID", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdCakeRaceTypeNone" => Some(Self::None), - "CmdCakeRaceGetMatchDataCsReq" => Some(Self::CmdCakeRaceGetMatchDataCsReq), - "CmdCakeRaceGetDataScRsp" => Some(Self::CmdCakeRaceGetDataScRsp), - "CmdCakeRaceStartPveScRsp" => Some(Self::CmdCakeRaceStartPveScRsp), - "CmdCakeRaceLoanScRsp" => Some(Self::CmdCakeRaceLoanScRsp), - "CmdCakeRaceFinishFieldRewardScNotify" => { - Some(Self::CmdCakeRaceFinishFieldRewardScNotify) - } - "CmdCakeRaceGetDailyLikeScRsp" => Some(Self::CmdCakeRaceGetDailyLikeScRsp), - "CmdCakeRaceCoinScoreChangeScNotify" => { - Some(Self::CmdCakeRaceCoinScoreChangeScNotify) - } - "CmdCakeRaceLikeFriendRankingInfoScRsp" => { - Some(Self::CmdCakeRaceLikeFriendRankingInfoScRsp) - } - "CmdCakeRaceStartPveCsReq" => Some(Self::CmdCakeRaceStartPveCsReq), - "CmdCakeRaceFinishPveCsReq" => Some(Self::CmdCakeRaceFinishPveCsReq), - "CmdCakeRaceGetFriendRankingInfoListScRsp" => { - Some(Self::CmdCakeRaceGetFriendRankingInfoListScRsp) - } - "CmdCakeRaceGetFriendRankingInfoListCsReq" => { - Some(Self::CmdCakeRaceGetFriendRankingInfoListCsReq) - } - "CmdCakeRaceFinishPveScRsp" => Some(Self::CmdCakeRaceFinishPveScRsp), - "CmdCakeRaceGetDataCsReq" => Some(Self::CmdCakeRaceGetDataCsReq), - "CmdCakeRaceGetHandbookCsReq" => Some(Self::CmdCakeRaceGetHandbookCsReq), - "CmdCakeRaceGetDailyLikeCsReq" => Some(Self::CmdCakeRaceGetDailyLikeCsReq), - "CmdCakeRaceGetHandbookScRsp" => Some(Self::CmdCakeRaceGetHandbookScRsp), - "CmdCakeRaceUpdatePveScRsp" => Some(Self::CmdCakeRaceUpdatePveScRsp), - "CmdCakeRaceUpdatePveCsReq" => Some(Self::CmdCakeRaceUpdatePveCsReq), - "CmdCakeRaceLikeFriendRankingInfoCsReq" => { - Some(Self::CmdCakeRaceLikeFriendRankingInfoCsReq) - } - "CmdCakeRaceLoanCsReq" => Some(Self::CmdCakeRaceLoanCsReq), - "CmdCakeRaceGetMatchDataScRsp" => Some(Self::CmdCakeRaceGetMatchDataScRsp), + "LDHIHAKBEJO_ALOCMFAKBKP" => Some(Self::LdhihakbejoAlocmfakbkp), + "CmdAMFBCEOPCDP" => Some(Self::CmdAmfbceopcdp), + "CmdCCIENKDNOAE" => Some(Self::CmdCcienkdnoae), + "CmdMENBJHDINMP" => Some(Self::CmdMenbjhdinmp), + "CmdAGJLOBMFKNC" => Some(Self::CmdAgjlobmfknc), + "CmdHGCHMEOGOMA" => Some(Self::CmdHgchmeogoma), + "CmdKDCGLMGICMG" => Some(Self::CmdKdcglmgicmg), + "CmdBOFANBLCKGI" => Some(Self::CmdBofanblckgi), + "LDHIHAKBEJO_NDALPAGKGID" => Some(Self::LdhihakbejoNdalpagkgid), + "CmdJEFONNOLAEB" => Some(Self::CmdJefonnolaeb), + "CmdPABIPMPHMHC" => Some(Self::CmdPabipmphmhc), + "CmdLEIBJEKBPBJ" => Some(Self::CmdLeibjekbpbj), + "CmdFFMDKKCIHMA" => Some(Self::CmdFfmdkkcihma), + "CmdNDLOBADOAAO" => Some(Self::CmdNdlobadoaao), + "CmdFHPKLLOPKOC" => Some(Self::CmdFhpkllopkoc), + "CmdDMGIOHDPGIO" => Some(Self::CmdDmgiohdpgio), + "CmdEHGALIKLNHA" => Some(Self::CmdEhgaliklnha), + "CmdKEMCCEIJAKD" => Some(Self::CmdKemcceijakd), + "CmdGKMKCEAMKPF" => Some(Self::CmdGkmkceamkpf), + "CmdHMJICDOPOLH" => Some(Self::CmdHmjicdopolh), + "CmdFCPEMJIJNPJ" => Some(Self::CmdFcpemjijnpj), + "CmdOKPOACNHJEK" => Some(Self::CmdOkpoacnhjek), + "CmdNBJPOFHICID" => Some(Self::CmdNbjpofhicid), _ => None, } } @@ -68144,28 +68248,28 @@ impl CmdCakeRaceType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdChallengeType { - None = 0, - CmdGetCurChallengeScRsp = 1781, - CmdChallengeBossPhaseSettleNotify = 1709, - CmdTakeChallengeRewardCsReq = 1792, - CmdGetChallengeGroupStatisticsCsReq = 1768, - CmdStartChallengeCsReq = 1798, - CmdLeaveChallengeScRsp = 1786, - CmdStartPartialChallengeScRsp = 1777, - CmdRestartChallengePhaseCsReq = 1751, - CmdRestartChallengePhaseScRsp = 1729, - CmdStartChallengeScRsp = 1765, - CmdEnterChallengeNextPhaseScRsp = 1703, - CmdGetCurChallengeCsReq = 1744, - CmdChallengeSettleNotify = 1794, - CmdGetChallengeScRsp = 1723, - CmdGetChallengeCsReq = 1799, - CmdGetChallengeGroupStatisticsScRsp = 1749, - CmdLeaveChallengeCsReq = 1783, - CmdEnterChallengeNextPhaseCsReq = 1738, - CmdStartPartialChallengeCsReq = 1780, - CmdTakeChallengeRewardScRsp = 1737, - CmdChallengeLineupNotify = 1769, + DahhldpmnpjAlocmfakbkp = 0, + CmdEnterChallengeNextPhaseCsReq = 1746, + CmdGetChallengeGroupStatisticsCsReq = 1793, + CmdRestartChallengePhaseCsReq = 1735, + CmdTakeChallengeRewardScRsp = 1781, + CmdLeaveChallengeScRsp = 1711, + CmdRestartChallengePhaseScRsp = 1798, + CmdEnterChallengeNextPhaseScRsp = 1792, + CmdChallengeLineupNotify = 1745, + CmdStartPartialChallengeScRsp = 1767, + CmdGetChallengeCsReq = 1747, + CmdGetCurChallengeCsReq = 1791, + CmdGetCurChallengeScRsp = 1761, + CmdStartPartialChallengeCsReq = 1710, + CmdTakeChallengeRewardCsReq = 1750, + CmdStartChallengeCsReq = 1738, + CmdLeaveChallengeCsReq = 1751, + CmdChallengeSettleNotify = 1789, + CmdStartChallengeScRsp = 1717, + CmdGetChallengeScRsp = 1709, + CmdGetChallengeGroupStatisticsScRsp = 1737, + CmdChallengeBossPhaseSettleNotify = 1714, } impl CmdChallengeType { /// String value of the enum field names used in the ProtoBuf definition. @@ -68174,71 +68278,71 @@ impl CmdChallengeType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdChallengeTypeNone", - Self::CmdGetCurChallengeScRsp => "CmdGetCurChallengeScRsp", - Self::CmdChallengeBossPhaseSettleNotify => { - "CmdChallengeBossPhaseSettleNotify" - } - Self::CmdTakeChallengeRewardCsReq => "CmdTakeChallengeRewardCsReq", + Self::DahhldpmnpjAlocmfakbkp => "DAHHLDPMNPJ_ALOCMFAKBKP", + Self::CmdEnterChallengeNextPhaseCsReq => "CmdEnterChallengeNextPhaseCsReq", Self::CmdGetChallengeGroupStatisticsCsReq => { "CmdGetChallengeGroupStatisticsCsReq" } - Self::CmdStartChallengeCsReq => "CmdStartChallengeCsReq", - Self::CmdLeaveChallengeScRsp => "CmdLeaveChallengeScRsp", - Self::CmdStartPartialChallengeScRsp => "CmdStartPartialChallengeScRsp", Self::CmdRestartChallengePhaseCsReq => "CmdRestartChallengePhaseCsReq", + Self::CmdTakeChallengeRewardScRsp => "CmdTakeChallengeRewardScRsp", + Self::CmdLeaveChallengeScRsp => "CmdLeaveChallengeScRsp", Self::CmdRestartChallengePhaseScRsp => "CmdRestartChallengePhaseScRsp", - Self::CmdStartChallengeScRsp => "CmdStartChallengeScRsp", Self::CmdEnterChallengeNextPhaseScRsp => "CmdEnterChallengeNextPhaseScRsp", - Self::CmdGetCurChallengeCsReq => "CmdGetCurChallengeCsReq", - Self::CmdChallengeSettleNotify => "CmdChallengeSettleNotify", - Self::CmdGetChallengeScRsp => "CmdGetChallengeScRsp", + Self::CmdChallengeLineupNotify => "CmdChallengeLineupNotify", + Self::CmdStartPartialChallengeScRsp => "CmdStartPartialChallengeScRsp", Self::CmdGetChallengeCsReq => "CmdGetChallengeCsReq", + Self::CmdGetCurChallengeCsReq => "CmdGetCurChallengeCsReq", + Self::CmdGetCurChallengeScRsp => "CmdGetCurChallengeScRsp", + Self::CmdStartPartialChallengeCsReq => "CmdStartPartialChallengeCsReq", + Self::CmdTakeChallengeRewardCsReq => "CmdTakeChallengeRewardCsReq", + Self::CmdStartChallengeCsReq => "CmdStartChallengeCsReq", + Self::CmdLeaveChallengeCsReq => "CmdLeaveChallengeCsReq", + Self::CmdChallengeSettleNotify => "CmdChallengeSettleNotify", + Self::CmdStartChallengeScRsp => "CmdStartChallengeScRsp", + Self::CmdGetChallengeScRsp => "CmdGetChallengeScRsp", Self::CmdGetChallengeGroupStatisticsScRsp => { "CmdGetChallengeGroupStatisticsScRsp" } - Self::CmdLeaveChallengeCsReq => "CmdLeaveChallengeCsReq", - Self::CmdEnterChallengeNextPhaseCsReq => "CmdEnterChallengeNextPhaseCsReq", - Self::CmdStartPartialChallengeCsReq => "CmdStartPartialChallengeCsReq", - Self::CmdTakeChallengeRewardScRsp => "CmdTakeChallengeRewardScRsp", - Self::CmdChallengeLineupNotify => "CmdChallengeLineupNotify", + Self::CmdChallengeBossPhaseSettleNotify => { + "CmdChallengeBossPhaseSettleNotify" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdChallengeTypeNone" => Some(Self::None), - "CmdGetCurChallengeScRsp" => Some(Self::CmdGetCurChallengeScRsp), - "CmdChallengeBossPhaseSettleNotify" => { - Some(Self::CmdChallengeBossPhaseSettleNotify) - } - "CmdTakeChallengeRewardCsReq" => Some(Self::CmdTakeChallengeRewardCsReq), - "CmdGetChallengeGroupStatisticsCsReq" => { - Some(Self::CmdGetChallengeGroupStatisticsCsReq) - } - "CmdStartChallengeCsReq" => Some(Self::CmdStartChallengeCsReq), - "CmdLeaveChallengeScRsp" => Some(Self::CmdLeaveChallengeScRsp), - "CmdStartPartialChallengeScRsp" => Some(Self::CmdStartPartialChallengeScRsp), - "CmdRestartChallengePhaseCsReq" => Some(Self::CmdRestartChallengePhaseCsReq), - "CmdRestartChallengePhaseScRsp" => Some(Self::CmdRestartChallengePhaseScRsp), - "CmdStartChallengeScRsp" => Some(Self::CmdStartChallengeScRsp), - "CmdEnterChallengeNextPhaseScRsp" => { - Some(Self::CmdEnterChallengeNextPhaseScRsp) - } - "CmdGetCurChallengeCsReq" => Some(Self::CmdGetCurChallengeCsReq), - "CmdChallengeSettleNotify" => Some(Self::CmdChallengeSettleNotify), - "CmdGetChallengeScRsp" => Some(Self::CmdGetChallengeScRsp), - "CmdGetChallengeCsReq" => Some(Self::CmdGetChallengeCsReq), - "CmdGetChallengeGroupStatisticsScRsp" => { - Some(Self::CmdGetChallengeGroupStatisticsScRsp) - } - "CmdLeaveChallengeCsReq" => Some(Self::CmdLeaveChallengeCsReq), + "DAHHLDPMNPJ_ALOCMFAKBKP" => Some(Self::DahhldpmnpjAlocmfakbkp), "CmdEnterChallengeNextPhaseCsReq" => { Some(Self::CmdEnterChallengeNextPhaseCsReq) } - "CmdStartPartialChallengeCsReq" => Some(Self::CmdStartPartialChallengeCsReq), + "CmdGetChallengeGroupStatisticsCsReq" => { + Some(Self::CmdGetChallengeGroupStatisticsCsReq) + } + "CmdRestartChallengePhaseCsReq" => Some(Self::CmdRestartChallengePhaseCsReq), "CmdTakeChallengeRewardScRsp" => Some(Self::CmdTakeChallengeRewardScRsp), + "CmdLeaveChallengeScRsp" => Some(Self::CmdLeaveChallengeScRsp), + "CmdRestartChallengePhaseScRsp" => Some(Self::CmdRestartChallengePhaseScRsp), + "CmdEnterChallengeNextPhaseScRsp" => { + Some(Self::CmdEnterChallengeNextPhaseScRsp) + } "CmdChallengeLineupNotify" => Some(Self::CmdChallengeLineupNotify), + "CmdStartPartialChallengeScRsp" => Some(Self::CmdStartPartialChallengeScRsp), + "CmdGetChallengeCsReq" => Some(Self::CmdGetChallengeCsReq), + "CmdGetCurChallengeCsReq" => Some(Self::CmdGetCurChallengeCsReq), + "CmdGetCurChallengeScRsp" => Some(Self::CmdGetCurChallengeScRsp), + "CmdStartPartialChallengeCsReq" => Some(Self::CmdStartPartialChallengeCsReq), + "CmdTakeChallengeRewardCsReq" => Some(Self::CmdTakeChallengeRewardCsReq), + "CmdStartChallengeCsReq" => Some(Self::CmdStartChallengeCsReq), + "CmdLeaveChallengeCsReq" => Some(Self::CmdLeaveChallengeCsReq), + "CmdChallengeSettleNotify" => Some(Self::CmdChallengeSettleNotify), + "CmdStartChallengeScRsp" => Some(Self::CmdStartChallengeScRsp), + "CmdGetChallengeScRsp" => Some(Self::CmdGetChallengeScRsp), + "CmdGetChallengeGroupStatisticsScRsp" => { + Some(Self::CmdGetChallengeGroupStatisticsScRsp) + } + "CmdChallengeBossPhaseSettleNotify" => { + Some(Self::CmdChallengeBossPhaseSettleNotify) + } _ => None, } } @@ -68247,10 +68351,10 @@ impl CmdChallengeType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ChallengeStatus { - ChallengeUnknown = 0, - ChallengeDoing = 1, - ChallengeFinish = 2, - ChallengeFailed = 3, + IoboackgfejJjgjblhljbf = 0, + IoboackgfejFcbcalamjeb = 1, + IoboackgfejKloildgmoek = 2, + IoboackgfejIkhafpaadme = 3, } impl ChallengeStatus { /// String value of the enum field names used in the ProtoBuf definition. @@ -68259,19 +68363,19 @@ impl ChallengeStatus { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChallengeUnknown => "CHALLENGE_UNKNOWN", - Self::ChallengeDoing => "CHALLENGE_DOING", - Self::ChallengeFinish => "CHALLENGE_FINISH", - Self::ChallengeFailed => "CHALLENGE_FAILED", + Self::IoboackgfejJjgjblhljbf => "IOBOACKGFEJ_JJGJBLHLJBF", + Self::IoboackgfejFcbcalamjeb => "IOBOACKGFEJ_FCBCALAMJEB", + Self::IoboackgfejKloildgmoek => "IOBOACKGFEJ_KLOILDGMOEK", + Self::IoboackgfejIkhafpaadme => "IOBOACKGFEJ_IKHAFPAADME", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHALLENGE_UNKNOWN" => Some(Self::ChallengeUnknown), - "CHALLENGE_DOING" => Some(Self::ChallengeDoing), - "CHALLENGE_FINISH" => Some(Self::ChallengeFinish), - "CHALLENGE_FAILED" => Some(Self::ChallengeFailed), + "IOBOACKGFEJ_JJGJBLHLJBF" => Some(Self::IoboackgfejJjgjblhljbf), + "IOBOACKGFEJ_FCBCALAMJEB" => Some(Self::IoboackgfejFcbcalamjeb), + "IOBOACKGFEJ_KLOILDGMOEK" => Some(Self::IoboackgfejKloildgmoek), + "IOBOACKGFEJ_IKHAFPAADME" => Some(Self::IoboackgfejIkhafpaadme), _ => None, } } @@ -68280,27 +68384,27 @@ impl ChallengeStatus { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdChallengePeakType { - None = 0, - CmdSetChallengePeakBossHardModeCsReq = 8923, - CmdSetChallengePeakBossHardModeScRsp = 8919, - CmdLeaveChallengePeakScRsp = 8927, - CmdStartChallengePeakCsReq = 8921, - CmdLeaveChallengePeakCsReq = 8905, - CmdChallengePeakSettleScNotify = 8920, - CmdReStartChallengePeakScRsp = 8933, - CmdStartChallengePeakScRsp = 8938, - CmdTakeChallengePeakRewardCsReq = 8901, - CmdTakeChallengePeakRewardScRsp = 8945, - CmdGetChallengePeakDataCsReq = 8926, - CmdReStartChallengePeakCsReq = 8947, - CmdSetChallengePeakMobLineupAvatarScRsp = 8935, - CmdConfirmChallengePeakSettleCsReq = 8931, - CmdConfirmChallengePeakSettleScRsp = 8908, - CmdGetChallengePeakDataScRsp = 8928, - CmdChallengePeakGroupDataUpdateScNotify = 8944, - CmdGetCurChallengePeakCsReq = 8943, - CmdSetChallengePeakMobLineupAvatarCsReq = 8929, - CmdGetCurChallengePeakScRsp = 8903, + NdnjhopaeegAlocmfakbkp = 0, + CmdSetChallengePeakMobLineupAvatarCsReq = 8910, + CmdStartChallengePeakScRsp = 8905, + CmdGetChallengePeakDataScRsp = 8902, + CmdSetChallengePeakBossHardModeScRsp = 8943, + CmdReStartChallengePeakCsReq = 8934, + CmdChallengePeakSettleScNotify = 8931, + CmdLeaveChallengePeakScRsp = 8933, + CmdConfirmChallengePeakSettleScRsp = 8916, + CmdSetChallengePeakBossHardModeCsReq = 8913, + CmdConfirmChallengePeakSettleCsReq = 8923, + CmdReStartChallengePeakScRsp = 8920, + CmdLeaveChallengePeakCsReq = 8935, + CmdChallengePeakGroupDataUpdateScNotify = 8925, + CmdGetCurChallengePeakCsReq = 8912, + CmdTakeChallengePeakRewardCsReq = 8946, + CmdSetChallengePeakMobLineupAvatarScRsp = 8950, + CmdGetChallengePeakDataCsReq = 8919, + CmdStartChallengePeakCsReq = 8948, + CmdGetCurChallengePeakScRsp = 8909, + CmdTakeChallengePeakRewardScRsp = 8917, } impl CmdChallengePeakType { /// String value of the enum field names used in the ProtoBuf definition. @@ -68309,87 +68413,87 @@ impl CmdChallengePeakType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdChallengePeakTypeNone", - Self::CmdSetChallengePeakBossHardModeCsReq => { - "CmdSetChallengePeakBossHardModeCsReq" + Self::NdnjhopaeegAlocmfakbkp => "NDNJHOPAEEG_ALOCMFAKBKP", + Self::CmdSetChallengePeakMobLineupAvatarCsReq => { + "CmdSetChallengePeakMobLineupAvatarCsReq" } + Self::CmdStartChallengePeakScRsp => "CmdStartChallengePeakScRsp", + Self::CmdGetChallengePeakDataScRsp => "CmdGetChallengePeakDataScRsp", Self::CmdSetChallengePeakBossHardModeScRsp => { "CmdSetChallengePeakBossHardModeScRsp" } - Self::CmdLeaveChallengePeakScRsp => "CmdLeaveChallengePeakScRsp", - Self::CmdStartChallengePeakCsReq => "CmdStartChallengePeakCsReq", - Self::CmdLeaveChallengePeakCsReq => "CmdLeaveChallengePeakCsReq", - Self::CmdChallengePeakSettleScNotify => "CmdChallengePeakSettleScNotify", - Self::CmdReStartChallengePeakScRsp => "CmdReStartChallengePeakScRsp", - Self::CmdStartChallengePeakScRsp => "CmdStartChallengePeakScRsp", - Self::CmdTakeChallengePeakRewardCsReq => "CmdTakeChallengePeakRewardCsReq", - Self::CmdTakeChallengePeakRewardScRsp => "CmdTakeChallengePeakRewardScRsp", - Self::CmdGetChallengePeakDataCsReq => "CmdGetChallengePeakDataCsReq", Self::CmdReStartChallengePeakCsReq => "CmdReStartChallengePeakCsReq", - Self::CmdSetChallengePeakMobLineupAvatarScRsp => { - "CmdSetChallengePeakMobLineupAvatarScRsp" + Self::CmdChallengePeakSettleScNotify => "CmdChallengePeakSettleScNotify", + Self::CmdLeaveChallengePeakScRsp => "CmdLeaveChallengePeakScRsp", + Self::CmdConfirmChallengePeakSettleScRsp => { + "CmdConfirmChallengePeakSettleScRsp" + } + Self::CmdSetChallengePeakBossHardModeCsReq => { + "CmdSetChallengePeakBossHardModeCsReq" } Self::CmdConfirmChallengePeakSettleCsReq => { "CmdConfirmChallengePeakSettleCsReq" } - Self::CmdConfirmChallengePeakSettleScRsp => { - "CmdConfirmChallengePeakSettleScRsp" - } - Self::CmdGetChallengePeakDataScRsp => "CmdGetChallengePeakDataScRsp", + Self::CmdReStartChallengePeakScRsp => "CmdReStartChallengePeakScRsp", + Self::CmdLeaveChallengePeakCsReq => "CmdLeaveChallengePeakCsReq", Self::CmdChallengePeakGroupDataUpdateScNotify => { "CmdChallengePeakGroupDataUpdateScNotify" } Self::CmdGetCurChallengePeakCsReq => "CmdGetCurChallengePeakCsReq", - Self::CmdSetChallengePeakMobLineupAvatarCsReq => { - "CmdSetChallengePeakMobLineupAvatarCsReq" + Self::CmdTakeChallengePeakRewardCsReq => "CmdTakeChallengePeakRewardCsReq", + Self::CmdSetChallengePeakMobLineupAvatarScRsp => { + "CmdSetChallengePeakMobLineupAvatarScRsp" } + Self::CmdGetChallengePeakDataCsReq => "CmdGetChallengePeakDataCsReq", + Self::CmdStartChallengePeakCsReq => "CmdStartChallengePeakCsReq", Self::CmdGetCurChallengePeakScRsp => "CmdGetCurChallengePeakScRsp", + Self::CmdTakeChallengePeakRewardScRsp => "CmdTakeChallengePeakRewardScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdChallengePeakTypeNone" => Some(Self::None), - "CmdSetChallengePeakBossHardModeCsReq" => { - Some(Self::CmdSetChallengePeakBossHardModeCsReq) + "NDNJHOPAEEG_ALOCMFAKBKP" => Some(Self::NdnjhopaeegAlocmfakbkp), + "CmdSetChallengePeakMobLineupAvatarCsReq" => { + Some(Self::CmdSetChallengePeakMobLineupAvatarCsReq) } + "CmdStartChallengePeakScRsp" => Some(Self::CmdStartChallengePeakScRsp), + "CmdGetChallengePeakDataScRsp" => Some(Self::CmdGetChallengePeakDataScRsp), "CmdSetChallengePeakBossHardModeScRsp" => { Some(Self::CmdSetChallengePeakBossHardModeScRsp) } - "CmdLeaveChallengePeakScRsp" => Some(Self::CmdLeaveChallengePeakScRsp), - "CmdStartChallengePeakCsReq" => Some(Self::CmdStartChallengePeakCsReq), - "CmdLeaveChallengePeakCsReq" => Some(Self::CmdLeaveChallengePeakCsReq), + "CmdReStartChallengePeakCsReq" => Some(Self::CmdReStartChallengePeakCsReq), "CmdChallengePeakSettleScNotify" => { Some(Self::CmdChallengePeakSettleScNotify) } - "CmdReStartChallengePeakScRsp" => Some(Self::CmdReStartChallengePeakScRsp), - "CmdStartChallengePeakScRsp" => Some(Self::CmdStartChallengePeakScRsp), - "CmdTakeChallengePeakRewardCsReq" => { - Some(Self::CmdTakeChallengePeakRewardCsReq) + "CmdLeaveChallengePeakScRsp" => Some(Self::CmdLeaveChallengePeakScRsp), + "CmdConfirmChallengePeakSettleScRsp" => { + Some(Self::CmdConfirmChallengePeakSettleScRsp) } - "CmdTakeChallengePeakRewardScRsp" => { - Some(Self::CmdTakeChallengePeakRewardScRsp) - } - "CmdGetChallengePeakDataCsReq" => Some(Self::CmdGetChallengePeakDataCsReq), - "CmdReStartChallengePeakCsReq" => Some(Self::CmdReStartChallengePeakCsReq), - "CmdSetChallengePeakMobLineupAvatarScRsp" => { - Some(Self::CmdSetChallengePeakMobLineupAvatarScRsp) + "CmdSetChallengePeakBossHardModeCsReq" => { + Some(Self::CmdSetChallengePeakBossHardModeCsReq) } "CmdConfirmChallengePeakSettleCsReq" => { Some(Self::CmdConfirmChallengePeakSettleCsReq) } - "CmdConfirmChallengePeakSettleScRsp" => { - Some(Self::CmdConfirmChallengePeakSettleScRsp) - } - "CmdGetChallengePeakDataScRsp" => Some(Self::CmdGetChallengePeakDataScRsp), + "CmdReStartChallengePeakScRsp" => Some(Self::CmdReStartChallengePeakScRsp), + "CmdLeaveChallengePeakCsReq" => Some(Self::CmdLeaveChallengePeakCsReq), "CmdChallengePeakGroupDataUpdateScNotify" => { Some(Self::CmdChallengePeakGroupDataUpdateScNotify) } "CmdGetCurChallengePeakCsReq" => Some(Self::CmdGetCurChallengePeakCsReq), - "CmdSetChallengePeakMobLineupAvatarCsReq" => { - Some(Self::CmdSetChallengePeakMobLineupAvatarCsReq) + "CmdTakeChallengePeakRewardCsReq" => { + Some(Self::CmdTakeChallengePeakRewardCsReq) } + "CmdSetChallengePeakMobLineupAvatarScRsp" => { + Some(Self::CmdSetChallengePeakMobLineupAvatarScRsp) + } + "CmdGetChallengePeakDataCsReq" => Some(Self::CmdGetChallengePeakDataCsReq), + "CmdStartChallengePeakCsReq" => Some(Self::CmdStartChallengePeakCsReq), "CmdGetCurChallengePeakScRsp" => Some(Self::CmdGetCurChallengePeakScRsp), + "CmdTakeChallengePeakRewardScRsp" => { + Some(Self::CmdTakeChallengePeakRewardScRsp) + } _ => None, } } @@ -68398,23 +68502,23 @@ impl CmdChallengePeakType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdChatType { - None = 0, - CmdGetChatFriendHistoryCsReq = 3994, - CmdGetLoginChatInfoCsReq = 3992, - CmdBatchMarkChatEmojiScRsp = 3915, - CmdRevcMsgScNotify = 3998, - CmdGetLoginChatInfoScRsp = 3937, - CmdMarkChatEmojiScRsp = 3969, - CmdGetChatEmojiListCsReq = 3919, - CmdSendMsgScRsp = 3923, - CmdGetPrivateChatHistoryCsReq = 3983, - CmdGetChatEmojiListScRsp = 3944, - CmdMarkChatEmojiCsReq = 3981, - CmdGetPrivateChatHistoryScRsp = 3986, - CmdBatchMarkChatEmojiCsReq = 3957, - CmdGetChatFriendHistoryScRsp = 3952, - CmdPrivateMsgOfflineUsersScNotify = 3965, - CmdSendMsgCsReq = 3999, + CgahdgajmmdAlocmfakbkp = 0, + CmdGetChatFriendHistoryCsReq = 3989, + CmdGetLoginChatInfoScRsp = 3981, + CmdSendMsgCsReq = 3947, + CmdBatchMarkChatEmojiScRsp = 3952, + CmdGetChatEmojiListScRsp = 3991, + CmdGetPrivateChatHistoryScRsp = 3911, + CmdBatchMarkChatEmojiCsReq = 3976, + CmdPrivateMsgOfflineUsersScNotify = 3917, + CmdGetLoginChatInfoCsReq = 3950, + CmdMarkChatEmojiScRsp = 3945, + CmdGetChatFriendHistoryScRsp = 3920, + CmdSendMsgScRsp = 3909, + CmdRevcMsgScNotify = 3938, + CmdGetPrivateChatHistoryCsReq = 3951, + CmdMarkChatEmojiCsReq = 3961, + CmdGetChatEmojiListCsReq = 3995, } impl CmdChatType { /// String value of the enum field names used in the ProtoBuf definition. @@ -68423,49 +68527,49 @@ impl CmdChatType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdChatTypeNone", + Self::CgahdgajmmdAlocmfakbkp => "CGAHDGAJMMD_ALOCMFAKBKP", Self::CmdGetChatFriendHistoryCsReq => "CmdGetChatFriendHistoryCsReq", - Self::CmdGetLoginChatInfoCsReq => "CmdGetLoginChatInfoCsReq", - Self::CmdBatchMarkChatEmojiScRsp => "CmdBatchMarkChatEmojiScRsp", - Self::CmdRevcMsgScNotify => "CmdRevcMsgScNotify", Self::CmdGetLoginChatInfoScRsp => "CmdGetLoginChatInfoScRsp", - Self::CmdMarkChatEmojiScRsp => "CmdMarkChatEmojiScRsp", - Self::CmdGetChatEmojiListCsReq => "CmdGetChatEmojiListCsReq", - Self::CmdSendMsgScRsp => "CmdSendMsgScRsp", - Self::CmdGetPrivateChatHistoryCsReq => "CmdGetPrivateChatHistoryCsReq", + Self::CmdSendMsgCsReq => "CmdSendMsgCsReq", + Self::CmdBatchMarkChatEmojiScRsp => "CmdBatchMarkChatEmojiScRsp", Self::CmdGetChatEmojiListScRsp => "CmdGetChatEmojiListScRsp", - Self::CmdMarkChatEmojiCsReq => "CmdMarkChatEmojiCsReq", Self::CmdGetPrivateChatHistoryScRsp => "CmdGetPrivateChatHistoryScRsp", Self::CmdBatchMarkChatEmojiCsReq => "CmdBatchMarkChatEmojiCsReq", - Self::CmdGetChatFriendHistoryScRsp => "CmdGetChatFriendHistoryScRsp", Self::CmdPrivateMsgOfflineUsersScNotify => { "CmdPrivateMsgOfflineUsersScNotify" } - Self::CmdSendMsgCsReq => "CmdSendMsgCsReq", + Self::CmdGetLoginChatInfoCsReq => "CmdGetLoginChatInfoCsReq", + Self::CmdMarkChatEmojiScRsp => "CmdMarkChatEmojiScRsp", + Self::CmdGetChatFriendHistoryScRsp => "CmdGetChatFriendHistoryScRsp", + Self::CmdSendMsgScRsp => "CmdSendMsgScRsp", + Self::CmdRevcMsgScNotify => "CmdRevcMsgScNotify", + Self::CmdGetPrivateChatHistoryCsReq => "CmdGetPrivateChatHistoryCsReq", + Self::CmdMarkChatEmojiCsReq => "CmdMarkChatEmojiCsReq", + Self::CmdGetChatEmojiListCsReq => "CmdGetChatEmojiListCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdChatTypeNone" => Some(Self::None), + "CGAHDGAJMMD_ALOCMFAKBKP" => Some(Self::CgahdgajmmdAlocmfakbkp), "CmdGetChatFriendHistoryCsReq" => Some(Self::CmdGetChatFriendHistoryCsReq), - "CmdGetLoginChatInfoCsReq" => Some(Self::CmdGetLoginChatInfoCsReq), - "CmdBatchMarkChatEmojiScRsp" => Some(Self::CmdBatchMarkChatEmojiScRsp), - "CmdRevcMsgScNotify" => Some(Self::CmdRevcMsgScNotify), "CmdGetLoginChatInfoScRsp" => Some(Self::CmdGetLoginChatInfoScRsp), - "CmdMarkChatEmojiScRsp" => Some(Self::CmdMarkChatEmojiScRsp), - "CmdGetChatEmojiListCsReq" => Some(Self::CmdGetChatEmojiListCsReq), - "CmdSendMsgScRsp" => Some(Self::CmdSendMsgScRsp), - "CmdGetPrivateChatHistoryCsReq" => Some(Self::CmdGetPrivateChatHistoryCsReq), + "CmdSendMsgCsReq" => Some(Self::CmdSendMsgCsReq), + "CmdBatchMarkChatEmojiScRsp" => Some(Self::CmdBatchMarkChatEmojiScRsp), "CmdGetChatEmojiListScRsp" => Some(Self::CmdGetChatEmojiListScRsp), - "CmdMarkChatEmojiCsReq" => Some(Self::CmdMarkChatEmojiCsReq), "CmdGetPrivateChatHistoryScRsp" => Some(Self::CmdGetPrivateChatHistoryScRsp), "CmdBatchMarkChatEmojiCsReq" => Some(Self::CmdBatchMarkChatEmojiCsReq), - "CmdGetChatFriendHistoryScRsp" => Some(Self::CmdGetChatFriendHistoryScRsp), "CmdPrivateMsgOfflineUsersScNotify" => { Some(Self::CmdPrivateMsgOfflineUsersScNotify) } - "CmdSendMsgCsReq" => Some(Self::CmdSendMsgCsReq), + "CmdGetLoginChatInfoCsReq" => Some(Self::CmdGetLoginChatInfoCsReq), + "CmdMarkChatEmojiScRsp" => Some(Self::CmdMarkChatEmojiScRsp), + "CmdGetChatFriendHistoryScRsp" => Some(Self::CmdGetChatFriendHistoryScRsp), + "CmdSendMsgScRsp" => Some(Self::CmdSendMsgScRsp), + "CmdRevcMsgScNotify" => Some(Self::CmdRevcMsgScNotify), + "CmdGetPrivateChatHistoryCsReq" => Some(Self::CmdGetPrivateChatHistoryCsReq), + "CmdMarkChatEmojiCsReq" => Some(Self::CmdMarkChatEmojiCsReq), + "CmdGetChatEmojiListCsReq" => Some(Self::CmdGetChatEmojiListCsReq), _ => None, } } @@ -68474,85 +68578,85 @@ impl CmdChatType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdChessRogueType { - None = 0, - CmdEnhanceChessRogueBuffScRsp = 5458, - CmdSelectChessRogueSubStoryScRsp = 5452, - CmdChessRogueChangeyAeonDimensionNotify = 5491, - CmdSyncChessRogueNousSubStoryScNotify = 5537, - CmdChessRogueNousDiceUpdateNotify = 5443, - CmdChessRogueEnterNextLayerCsReq = 5551, - CmdChessRogueCheatRollScRsp = 5588, - CmdChessRogueGiveUpRollScRsp = 5482, - CmdGetChessRogueStoryAeonTalkInfoCsReq = 5521, - CmdGetChessRogueStoryInfoScRsp = 5536, - CmdChessRogueReviveAvatarCsReq = 5433, - CmdChessRogueQueryAeonDimensionsScRsp = 5530, - CmdChessRogueGiveUpRollCsReq = 5552, - CmdChessRogueQueryScRsp = 5596, - CmdChessRogueRollDiceScRsp = 5473, - CmdFinishChessRogueSubStoryCsReq = 5478, - CmdChessRogueReviveAvatarScRsp = 5503, - CmdChessRogueQueryAeonDimensionsCsReq = 5512, - CmdChessRogueEnterScRsp = 5564, - CmdSyncChessRogueMainStoryFinishScNotify = 5423, - CmdChessRogueNousEditDiceScRsp = 5594, - CmdChessRogueNousDiceSurfaceUnlockNotify = 5403, - CmdChessRogueEnterNextLayerScRsp = 5547, - CmdChessRogueSelectCellScRsp = 5576, - CmdSelectChessRogueSubStoryCsReq = 5553, - CmdChessRogueQueryCsReq = 5562, - CmdGetChessRogueBuffEnhanceInfoScRsp = 5587, - CmdGetChessRogueStoryAeonTalkInfoScRsp = 5446, - CmdGetChessRogueBuffEnhanceInfoCsReq = 5421, - CmdChessRogueQuestFinishNotify = 5567, - CmdChessRogueSkipTeachingLevelCsReq = 5529, - CmdChessRogueReRollDiceCsReq = 5440, - CmdChessRogueUpdateLevelBaseInfoScNotify = 5560, - CmdChessRogueGiveUpScRsp = 5425, - CmdChessRogueSelectCellCsReq = 5500, - CmdGetChessRogueNousStoryInfoCsReq = 5554, - CmdChessRogueUpdateBoardScNotify = 5474, - CmdChessRogueRollDiceCsReq = 5412, - CmdChessRogueUpdateAeonModifierValueScNotify = 5548, - CmdChessRogueUpdateDicePassiveAccumulateValueScNotify = 5580, - CmdChessRogueStartCsReq = 5511, - CmdChessRogueNousEnableRogueTalentCsReq = 5465, - CmdChessRogueUpdateMoneyInfoScNotify = 5437, - CmdChessRogueUpdateActionPointScNotify = 5545, - CmdChessRogueCheatRollCsReq = 5466, - CmdChessRogueReRollDiceScRsp = 5513, - CmdChessRogueEnterCellScRsp = 5510, - CmdChessRogueNousGetRogueTalentInfoCsReq = 5522, - CmdEnterChessRogueAeonRoomCsReq = 5504, - CmdChessRogueQuitCsReq = 5524, - CmdChessRogueQuitScRsp = 5441, - CmdEnhanceChessRogueBuffCsReq = 5475, - CmdChessRogueCellUpdateNotify = 5561, - CmdChessRogueLayerAccountInfoNotify = 5422, - CmdGetChessRogueNousStoryInfoScRsp = 5585, - CmdChessRogueNousGetRogueTalentInfoScRsp = 5557, - CmdChessRogueNousEditDiceCsReq = 5556, - CmdChessRogueEnterCellCsReq = 5469, - CmdSyncChessRogueNousValueScNotify = 5499, - CmdSyncChessRogueNousMainStoryScNotify = 5507, - CmdChessRogueGiveUpCsReq = 5449, - CmdChessRoguePickAvatarScRsp = 5527, - CmdChessRogueUpdateUnlockLevelScNotify = 5456, - CmdGetChessRogueStoryInfoCsReq = 5419, - CmdChessRogueSkipTeachingLevelScRsp = 5533, - CmdFinishChessRogueSubStoryScRsp = 5402, - CmdChessRoguePickAvatarCsReq = 5508, - CmdEnterChessRogueAeonRoomScRsp = 5471, - CmdChessRogueConfirmRollScRsp = 5489, - CmdChessRogueLeaveScRsp = 5523, - CmdChessRogueConfirmRollCsReq = 5525, - CmdChessRogueLeaveCsReq = 5404, - CmdChessRogueUpdateDiceInfoScNotify = 5490, - CmdChessRogueNousEnableRogueTalentScRsp = 5598, - CmdChessRogueUpdateAllowedSelectCellScNotify = 5570, - CmdChessRogueUpdateReviveInfoScNotify = 5574, - CmdChessRogueStartScRsp = 5445, - CmdChessRogueEnterCsReq = 5411, + CjlnkfjmijfAlocmfakbkp = 0, + CmdEkkdjdgiocn = 5529, + CmdBigogdodafh = 5515, + CmdLihdjldpbgo = 5571, + CmdMgcocdhlobl = 5573, + CmdHgpgndfjfnc = 5431, + CmdNhmdadncdbn = 5598, + CmdPdlhodmbdgg = 5460, + CmdCcamijodaeo = 5427, + CmdAfbhpglblch = 5545, + CmdEbcgenehplo = 5577, + CmdNchaneedheb = 5536, + CmdNgopjfjghpf = 5434, + CmdAjidlgfblbc = 5477, + CmdCeeeekkfeen = 5455, + CmdNeepidokioe = 5579, + CmdAgmnchofgep = 5588, + CmdKkejmjmklbh = 5569, + CmdIklemedkbfa = 5453, + CmdFolenggpdhf = 5580, + CmdCejfnfdkadc = 5546, + CmdOcagicpapnn = 5538, + CmdMdfhejdfppf = 5504, + CmdKidimagoddo = 5402, + CmdDceinfonekb = 5472, + CmdAejfofifgjj = 5527, + CmdHfgikbfcnhj = 5490, + CmdHcimdmndajh = 5459, + CmdPhpghelojon = 5572, + CmdKjllinokeeg = 5451, + CmdHjbinchfmij = 5575, + CmdBjcgpiddkco = 5466, + CmdLokepeoldlk = 5555, + CmdHjppoljobdc = 5468, + CmdPbjpgcckdaa = 5549, + CmdHjmlhaeoogl = 5479, + CmdKodbmifickl = 5499, + CmdOoaknkppfjn = 5406, + CmdDipabhgiohc = 5435, + CmdDhkbdlakcjc = 5591, + CmdGaaknmclfdb = 5454, + CmdFmdbhhlpjlf = 5532, + CmdMjgelcnmlim = 5566, + CmdIchjabjdiln = 5452, + CmdDkmlfpliolm = 5535, + CmdFdpnnaddhfb = 5465, + CmdIfnppmegagk = 5552, + CmdBgepeaiekbl = 5502, + CmdLdjcmnilfig = 5478, + CmdEgoebbekoak = 5543, + CmdHlmlppgfcok = 5404, + CmdLegnfijhfja = 5540, + CmdOhkobjkmjif = 5492, + CmdNiphnioeooh = 5565, + CmdEmgannehnlj = 5506, + CmdOkiecejgbnh = 5425, + CmdMigikkgehab = 5525, + CmdAkeadaimkkb = 5497, + CmdBmemeaipico = 5584, + CmdJolmfhdnmjc = 5585, + CjlnkfjmijfFkeofhmdome = 5405, + CmdHjfpnhkkgem = 5514, + CmdBopibeaabhm = 5562, + CmdLilaoomjgbo = 5403, + CmdGfhpielaemd = 5559, + CmdMjkhajmofhd = 5429, + CmdJogmakfdddi = 5440, + CmdHdelcmikkhe = 5482, + CmdFnkbmegfcao = 5433, + CmdLamoknaccfe = 5595, + CmdOhpfcgmaoek = 5592, + CmdNjndmaklhgh = 5594, + CmdAibmgoglflj = 5596, + CmdOdoghfdoame = 5576, + CmdCmjmfikajbg = 5597, + CmdIjifckaifam = 5541, + CjlnkfjmijfLehmilaljkp = 5589, + CmdPjbeehefgii = 5508, + CmdFgbhbckpeec = 5530, } impl CmdChessRogueType { /// String value of the enum field names used in the ProtoBuf definition. @@ -68561,325 +68665,169 @@ impl CmdChessRogueType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdChessRogueTypeNone", - Self::CmdEnhanceChessRogueBuffScRsp => "CmdEnhanceChessRogueBuffScRsp", - Self::CmdSelectChessRogueSubStoryScRsp => "CmdSelectChessRogueSubStoryScRsp", - Self::CmdChessRogueChangeyAeonDimensionNotify => { - "CmdChessRogueChangeyAeonDimensionNotify" - } - Self::CmdSyncChessRogueNousSubStoryScNotify => { - "CmdSyncChessRogueNousSubStoryScNotify" - } - Self::CmdChessRogueNousDiceUpdateNotify => { - "CmdChessRogueNousDiceUpdateNotify" - } - Self::CmdChessRogueEnterNextLayerCsReq => "CmdChessRogueEnterNextLayerCsReq", - Self::CmdChessRogueCheatRollScRsp => "CmdChessRogueCheatRollScRsp", - Self::CmdChessRogueGiveUpRollScRsp => "CmdChessRogueGiveUpRollScRsp", - Self::CmdGetChessRogueStoryAeonTalkInfoCsReq => { - "CmdGetChessRogueStoryAeonTalkInfoCsReq" - } - Self::CmdGetChessRogueStoryInfoScRsp => "CmdGetChessRogueStoryInfoScRsp", - Self::CmdChessRogueReviveAvatarCsReq => "CmdChessRogueReviveAvatarCsReq", - Self::CmdChessRogueQueryAeonDimensionsScRsp => { - "CmdChessRogueQueryAeonDimensionsScRsp" - } - Self::CmdChessRogueGiveUpRollCsReq => "CmdChessRogueGiveUpRollCsReq", - Self::CmdChessRogueQueryScRsp => "CmdChessRogueQueryScRsp", - Self::CmdChessRogueRollDiceScRsp => "CmdChessRogueRollDiceScRsp", - Self::CmdFinishChessRogueSubStoryCsReq => "CmdFinishChessRogueSubStoryCsReq", - Self::CmdChessRogueReviveAvatarScRsp => "CmdChessRogueReviveAvatarScRsp", - Self::CmdChessRogueQueryAeonDimensionsCsReq => { - "CmdChessRogueQueryAeonDimensionsCsReq" - } - Self::CmdChessRogueEnterScRsp => "CmdChessRogueEnterScRsp", - Self::CmdSyncChessRogueMainStoryFinishScNotify => { - "CmdSyncChessRogueMainStoryFinishScNotify" - } - Self::CmdChessRogueNousEditDiceScRsp => "CmdChessRogueNousEditDiceScRsp", - Self::CmdChessRogueNousDiceSurfaceUnlockNotify => { - "CmdChessRogueNousDiceSurfaceUnlockNotify" - } - Self::CmdChessRogueEnterNextLayerScRsp => "CmdChessRogueEnterNextLayerScRsp", - Self::CmdChessRogueSelectCellScRsp => "CmdChessRogueSelectCellScRsp", - Self::CmdSelectChessRogueSubStoryCsReq => "CmdSelectChessRogueSubStoryCsReq", - Self::CmdChessRogueQueryCsReq => "CmdChessRogueQueryCsReq", - Self::CmdGetChessRogueBuffEnhanceInfoScRsp => { - "CmdGetChessRogueBuffEnhanceInfoScRsp" - } - Self::CmdGetChessRogueStoryAeonTalkInfoScRsp => { - "CmdGetChessRogueStoryAeonTalkInfoScRsp" - } - Self::CmdGetChessRogueBuffEnhanceInfoCsReq => { - "CmdGetChessRogueBuffEnhanceInfoCsReq" - } - Self::CmdChessRogueQuestFinishNotify => "CmdChessRogueQuestFinishNotify", - Self::CmdChessRogueSkipTeachingLevelCsReq => { - "CmdChessRogueSkipTeachingLevelCsReq" - } - Self::CmdChessRogueReRollDiceCsReq => "CmdChessRogueReRollDiceCsReq", - Self::CmdChessRogueUpdateLevelBaseInfoScNotify => { - "CmdChessRogueUpdateLevelBaseInfoScNotify" - } - Self::CmdChessRogueGiveUpScRsp => "CmdChessRogueGiveUpScRsp", - Self::CmdChessRogueSelectCellCsReq => "CmdChessRogueSelectCellCsReq", - Self::CmdGetChessRogueNousStoryInfoCsReq => { - "CmdGetChessRogueNousStoryInfoCsReq" - } - Self::CmdChessRogueUpdateBoardScNotify => "CmdChessRogueUpdateBoardScNotify", - Self::CmdChessRogueRollDiceCsReq => "CmdChessRogueRollDiceCsReq", - Self::CmdChessRogueUpdateAeonModifierValueScNotify => { - "CmdChessRogueUpdateAeonModifierValueScNotify" - } - Self::CmdChessRogueUpdateDicePassiveAccumulateValueScNotify => { - "CmdChessRogueUpdateDicePassiveAccumulateValueScNotify" - } - Self::CmdChessRogueStartCsReq => "CmdChessRogueStartCsReq", - Self::CmdChessRogueNousEnableRogueTalentCsReq => { - "CmdChessRogueNousEnableRogueTalentCsReq" - } - Self::CmdChessRogueUpdateMoneyInfoScNotify => { - "CmdChessRogueUpdateMoneyInfoScNotify" - } - Self::CmdChessRogueUpdateActionPointScNotify => { - "CmdChessRogueUpdateActionPointScNotify" - } - Self::CmdChessRogueCheatRollCsReq => "CmdChessRogueCheatRollCsReq", - Self::CmdChessRogueReRollDiceScRsp => "CmdChessRogueReRollDiceScRsp", - Self::CmdChessRogueEnterCellScRsp => "CmdChessRogueEnterCellScRsp", - Self::CmdChessRogueNousGetRogueTalentInfoCsReq => { - "CmdChessRogueNousGetRogueTalentInfoCsReq" - } - Self::CmdEnterChessRogueAeonRoomCsReq => "CmdEnterChessRogueAeonRoomCsReq", - Self::CmdChessRogueQuitCsReq => "CmdChessRogueQuitCsReq", - Self::CmdChessRogueQuitScRsp => "CmdChessRogueQuitScRsp", - Self::CmdEnhanceChessRogueBuffCsReq => "CmdEnhanceChessRogueBuffCsReq", - Self::CmdChessRogueCellUpdateNotify => "CmdChessRogueCellUpdateNotify", - Self::CmdChessRogueLayerAccountInfoNotify => { - "CmdChessRogueLayerAccountInfoNotify" - } - Self::CmdGetChessRogueNousStoryInfoScRsp => { - "CmdGetChessRogueNousStoryInfoScRsp" - } - Self::CmdChessRogueNousGetRogueTalentInfoScRsp => { - "CmdChessRogueNousGetRogueTalentInfoScRsp" - } - Self::CmdChessRogueNousEditDiceCsReq => "CmdChessRogueNousEditDiceCsReq", - Self::CmdChessRogueEnterCellCsReq => "CmdChessRogueEnterCellCsReq", - Self::CmdSyncChessRogueNousValueScNotify => { - "CmdSyncChessRogueNousValueScNotify" - } - Self::CmdSyncChessRogueNousMainStoryScNotify => { - "CmdSyncChessRogueNousMainStoryScNotify" - } - Self::CmdChessRogueGiveUpCsReq => "CmdChessRogueGiveUpCsReq", - Self::CmdChessRoguePickAvatarScRsp => "CmdChessRoguePickAvatarScRsp", - Self::CmdChessRogueUpdateUnlockLevelScNotify => { - "CmdChessRogueUpdateUnlockLevelScNotify" - } - Self::CmdGetChessRogueStoryInfoCsReq => "CmdGetChessRogueStoryInfoCsReq", - Self::CmdChessRogueSkipTeachingLevelScRsp => { - "CmdChessRogueSkipTeachingLevelScRsp" - } - Self::CmdFinishChessRogueSubStoryScRsp => "CmdFinishChessRogueSubStoryScRsp", - Self::CmdChessRoguePickAvatarCsReq => "CmdChessRoguePickAvatarCsReq", - Self::CmdEnterChessRogueAeonRoomScRsp => "CmdEnterChessRogueAeonRoomScRsp", - Self::CmdChessRogueConfirmRollScRsp => "CmdChessRogueConfirmRollScRsp", - Self::CmdChessRogueLeaveScRsp => "CmdChessRogueLeaveScRsp", - Self::CmdChessRogueConfirmRollCsReq => "CmdChessRogueConfirmRollCsReq", - Self::CmdChessRogueLeaveCsReq => "CmdChessRogueLeaveCsReq", - Self::CmdChessRogueUpdateDiceInfoScNotify => { - "CmdChessRogueUpdateDiceInfoScNotify" - } - Self::CmdChessRogueNousEnableRogueTalentScRsp => { - "CmdChessRogueNousEnableRogueTalentScRsp" - } - Self::CmdChessRogueUpdateAllowedSelectCellScNotify => { - "CmdChessRogueUpdateAllowedSelectCellScNotify" - } - Self::CmdChessRogueUpdateReviveInfoScNotify => { - "CmdChessRogueUpdateReviveInfoScNotify" - } - Self::CmdChessRogueStartScRsp => "CmdChessRogueStartScRsp", - Self::CmdChessRogueEnterCsReq => "CmdChessRogueEnterCsReq", + Self::CjlnkfjmijfAlocmfakbkp => "CJLNKFJMIJF_ALOCMFAKBKP", + Self::CmdEkkdjdgiocn => "CmdEKKDJDGIOCN", + Self::CmdBigogdodafh => "CmdBIGOGDODAFH", + Self::CmdLihdjldpbgo => "CmdLIHDJLDPBGO", + Self::CmdMgcocdhlobl => "CmdMGCOCDHLOBL", + Self::CmdHgpgndfjfnc => "CmdHGPGNDFJFNC", + Self::CmdNhmdadncdbn => "CmdNHMDADNCDBN", + Self::CmdPdlhodmbdgg => "CmdPDLHODMBDGG", + Self::CmdCcamijodaeo => "CmdCCAMIJODAEO", + Self::CmdAfbhpglblch => "CmdAFBHPGLBLCH", + Self::CmdEbcgenehplo => "CmdEBCGENEHPLO", + Self::CmdNchaneedheb => "CmdNCHANEEDHEB", + Self::CmdNgopjfjghpf => "CmdNGOPJFJGHPF", + Self::CmdAjidlgfblbc => "CmdAJIDLGFBLBC", + Self::CmdCeeeekkfeen => "CmdCEEEEKKFEEN", + Self::CmdNeepidokioe => "CmdNEEPIDOKIOE", + Self::CmdAgmnchofgep => "CmdAGMNCHOFGEP", + Self::CmdKkejmjmklbh => "CmdKKEJMJMKLBH", + Self::CmdIklemedkbfa => "CmdIKLEMEDKBFA", + Self::CmdFolenggpdhf => "CmdFOLENGGPDHF", + Self::CmdCejfnfdkadc => "CmdCEJFNFDKADC", + Self::CmdOcagicpapnn => "CmdOCAGICPAPNN", + Self::CmdMdfhejdfppf => "CmdMDFHEJDFPPF", + Self::CmdKidimagoddo => "CmdKIDIMAGODDO", + Self::CmdDceinfonekb => "CmdDCEINFONEKB", + Self::CmdAejfofifgjj => "CmdAEJFOFIFGJJ", + Self::CmdHfgikbfcnhj => "CmdHFGIKBFCNHJ", + Self::CmdHcimdmndajh => "CmdHCIMDMNDAJH", + Self::CmdPhpghelojon => "CmdPHPGHELOJON", + Self::CmdKjllinokeeg => "CmdKJLLINOKEEG", + Self::CmdHjbinchfmij => "CmdHJBINCHFMIJ", + Self::CmdBjcgpiddkco => "CmdBJCGPIDDKCO", + Self::CmdLokepeoldlk => "CmdLOKEPEOLDLK", + Self::CmdHjppoljobdc => "CmdHJPPOLJOBDC", + Self::CmdPbjpgcckdaa => "CmdPBJPGCCKDAA", + Self::CmdHjmlhaeoogl => "CmdHJMLHAEOOGL", + Self::CmdKodbmifickl => "CmdKODBMIFICKL", + Self::CmdOoaknkppfjn => "CmdOOAKNKPPFJN", + Self::CmdDipabhgiohc => "CmdDIPABHGIOHC", + Self::CmdDhkbdlakcjc => "CmdDHKBDLAKCJC", + Self::CmdGaaknmclfdb => "CmdGAAKNMCLFDB", + Self::CmdFmdbhhlpjlf => "CmdFMDBHHLPJLF", + Self::CmdMjgelcnmlim => "CmdMJGELCNMLIM", + Self::CmdIchjabjdiln => "CmdICHJABJDILN", + Self::CmdDkmlfpliolm => "CmdDKMLFPLIOLM", + Self::CmdFdpnnaddhfb => "CmdFDPNNADDHFB", + Self::CmdIfnppmegagk => "CmdIFNPPMEGAGK", + Self::CmdBgepeaiekbl => "CmdBGEPEAIEKBL", + Self::CmdLdjcmnilfig => "CmdLDJCMNILFIG", + Self::CmdEgoebbekoak => "CmdEGOEBBEKOAK", + Self::CmdHlmlppgfcok => "CmdHLMLPPGFCOK", + Self::CmdLegnfijhfja => "CmdLEGNFIJHFJA", + Self::CmdOhkobjkmjif => "CmdOHKOBJKMJIF", + Self::CmdNiphnioeooh => "CmdNIPHNIOEOOH", + Self::CmdEmgannehnlj => "CmdEMGANNEHNLJ", + Self::CmdOkiecejgbnh => "CmdOKIECEJGBNH", + Self::CmdMigikkgehab => "CmdMIGIKKGEHAB", + Self::CmdAkeadaimkkb => "CmdAKEADAIMKKB", + Self::CmdBmemeaipico => "CmdBMEMEAIPICO", + Self::CmdJolmfhdnmjc => "CmdJOLMFHDNMJC", + Self::CjlnkfjmijfFkeofhmdome => "CJLNKFJMIJF_FKEOFHMDOME", + Self::CmdHjfpnhkkgem => "CmdHJFPNHKKGEM", + Self::CmdBopibeaabhm => "CmdBOPIBEAABHM", + Self::CmdLilaoomjgbo => "CmdLILAOOMJGBO", + Self::CmdGfhpielaemd => "CmdGFHPIELAEMD", + Self::CmdMjkhajmofhd => "CmdMJKHAJMOFHD", + Self::CmdJogmakfdddi => "CmdJOGMAKFDDDI", + Self::CmdHdelcmikkhe => "CmdHDELCMIKKHE", + Self::CmdFnkbmegfcao => "CmdFNKBMEGFCAO", + Self::CmdLamoknaccfe => "CmdLAMOKNACCFE", + Self::CmdOhpfcgmaoek => "CmdOHPFCGMAOEK", + Self::CmdNjndmaklhgh => "CmdNJNDMAKLHGH", + Self::CmdAibmgoglflj => "CmdAIBMGOGLFLJ", + Self::CmdOdoghfdoame => "CmdODOGHFDOAME", + Self::CmdCmjmfikajbg => "CmdCMJMFIKAJBG", + Self::CmdIjifckaifam => "CmdIJIFCKAIFAM", + Self::CjlnkfjmijfLehmilaljkp => "CJLNKFJMIJF_LEHMILALJKP", + Self::CmdPjbeehefgii => "CmdPJBEEHEFGII", + Self::CmdFgbhbckpeec => "CmdFGBHBCKPEEC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdChessRogueTypeNone" => Some(Self::None), - "CmdEnhanceChessRogueBuffScRsp" => Some(Self::CmdEnhanceChessRogueBuffScRsp), - "CmdSelectChessRogueSubStoryScRsp" => { - Some(Self::CmdSelectChessRogueSubStoryScRsp) - } - "CmdChessRogueChangeyAeonDimensionNotify" => { - Some(Self::CmdChessRogueChangeyAeonDimensionNotify) - } - "CmdSyncChessRogueNousSubStoryScNotify" => { - Some(Self::CmdSyncChessRogueNousSubStoryScNotify) - } - "CmdChessRogueNousDiceUpdateNotify" => { - Some(Self::CmdChessRogueNousDiceUpdateNotify) - } - "CmdChessRogueEnterNextLayerCsReq" => { - Some(Self::CmdChessRogueEnterNextLayerCsReq) - } - "CmdChessRogueCheatRollScRsp" => Some(Self::CmdChessRogueCheatRollScRsp), - "CmdChessRogueGiveUpRollScRsp" => Some(Self::CmdChessRogueGiveUpRollScRsp), - "CmdGetChessRogueStoryAeonTalkInfoCsReq" => { - Some(Self::CmdGetChessRogueStoryAeonTalkInfoCsReq) - } - "CmdGetChessRogueStoryInfoScRsp" => { - Some(Self::CmdGetChessRogueStoryInfoScRsp) - } - "CmdChessRogueReviveAvatarCsReq" => { - Some(Self::CmdChessRogueReviveAvatarCsReq) - } - "CmdChessRogueQueryAeonDimensionsScRsp" => { - Some(Self::CmdChessRogueQueryAeonDimensionsScRsp) - } - "CmdChessRogueGiveUpRollCsReq" => Some(Self::CmdChessRogueGiveUpRollCsReq), - "CmdChessRogueQueryScRsp" => Some(Self::CmdChessRogueQueryScRsp), - "CmdChessRogueRollDiceScRsp" => Some(Self::CmdChessRogueRollDiceScRsp), - "CmdFinishChessRogueSubStoryCsReq" => { - Some(Self::CmdFinishChessRogueSubStoryCsReq) - } - "CmdChessRogueReviveAvatarScRsp" => { - Some(Self::CmdChessRogueReviveAvatarScRsp) - } - "CmdChessRogueQueryAeonDimensionsCsReq" => { - Some(Self::CmdChessRogueQueryAeonDimensionsCsReq) - } - "CmdChessRogueEnterScRsp" => Some(Self::CmdChessRogueEnterScRsp), - "CmdSyncChessRogueMainStoryFinishScNotify" => { - Some(Self::CmdSyncChessRogueMainStoryFinishScNotify) - } - "CmdChessRogueNousEditDiceScRsp" => { - Some(Self::CmdChessRogueNousEditDiceScRsp) - } - "CmdChessRogueNousDiceSurfaceUnlockNotify" => { - Some(Self::CmdChessRogueNousDiceSurfaceUnlockNotify) - } - "CmdChessRogueEnterNextLayerScRsp" => { - Some(Self::CmdChessRogueEnterNextLayerScRsp) - } - "CmdChessRogueSelectCellScRsp" => Some(Self::CmdChessRogueSelectCellScRsp), - "CmdSelectChessRogueSubStoryCsReq" => { - Some(Self::CmdSelectChessRogueSubStoryCsReq) - } - "CmdChessRogueQueryCsReq" => Some(Self::CmdChessRogueQueryCsReq), - "CmdGetChessRogueBuffEnhanceInfoScRsp" => { - Some(Self::CmdGetChessRogueBuffEnhanceInfoScRsp) - } - "CmdGetChessRogueStoryAeonTalkInfoScRsp" => { - Some(Self::CmdGetChessRogueStoryAeonTalkInfoScRsp) - } - "CmdGetChessRogueBuffEnhanceInfoCsReq" => { - Some(Self::CmdGetChessRogueBuffEnhanceInfoCsReq) - } - "CmdChessRogueQuestFinishNotify" => { - Some(Self::CmdChessRogueQuestFinishNotify) - } - "CmdChessRogueSkipTeachingLevelCsReq" => { - Some(Self::CmdChessRogueSkipTeachingLevelCsReq) - } - "CmdChessRogueReRollDiceCsReq" => Some(Self::CmdChessRogueReRollDiceCsReq), - "CmdChessRogueUpdateLevelBaseInfoScNotify" => { - Some(Self::CmdChessRogueUpdateLevelBaseInfoScNotify) - } - "CmdChessRogueGiveUpScRsp" => Some(Self::CmdChessRogueGiveUpScRsp), - "CmdChessRogueSelectCellCsReq" => Some(Self::CmdChessRogueSelectCellCsReq), - "CmdGetChessRogueNousStoryInfoCsReq" => { - Some(Self::CmdGetChessRogueNousStoryInfoCsReq) - } - "CmdChessRogueUpdateBoardScNotify" => { - Some(Self::CmdChessRogueUpdateBoardScNotify) - } - "CmdChessRogueRollDiceCsReq" => Some(Self::CmdChessRogueRollDiceCsReq), - "CmdChessRogueUpdateAeonModifierValueScNotify" => { - Some(Self::CmdChessRogueUpdateAeonModifierValueScNotify) - } - "CmdChessRogueUpdateDicePassiveAccumulateValueScNotify" => { - Some(Self::CmdChessRogueUpdateDicePassiveAccumulateValueScNotify) - } - "CmdChessRogueStartCsReq" => Some(Self::CmdChessRogueStartCsReq), - "CmdChessRogueNousEnableRogueTalentCsReq" => { - Some(Self::CmdChessRogueNousEnableRogueTalentCsReq) - } - "CmdChessRogueUpdateMoneyInfoScNotify" => { - Some(Self::CmdChessRogueUpdateMoneyInfoScNotify) - } - "CmdChessRogueUpdateActionPointScNotify" => { - Some(Self::CmdChessRogueUpdateActionPointScNotify) - } - "CmdChessRogueCheatRollCsReq" => Some(Self::CmdChessRogueCheatRollCsReq), - "CmdChessRogueReRollDiceScRsp" => Some(Self::CmdChessRogueReRollDiceScRsp), - "CmdChessRogueEnterCellScRsp" => Some(Self::CmdChessRogueEnterCellScRsp), - "CmdChessRogueNousGetRogueTalentInfoCsReq" => { - Some(Self::CmdChessRogueNousGetRogueTalentInfoCsReq) - } - "CmdEnterChessRogueAeonRoomCsReq" => { - Some(Self::CmdEnterChessRogueAeonRoomCsReq) - } - "CmdChessRogueQuitCsReq" => Some(Self::CmdChessRogueQuitCsReq), - "CmdChessRogueQuitScRsp" => Some(Self::CmdChessRogueQuitScRsp), - "CmdEnhanceChessRogueBuffCsReq" => Some(Self::CmdEnhanceChessRogueBuffCsReq), - "CmdChessRogueCellUpdateNotify" => Some(Self::CmdChessRogueCellUpdateNotify), - "CmdChessRogueLayerAccountInfoNotify" => { - Some(Self::CmdChessRogueLayerAccountInfoNotify) - } - "CmdGetChessRogueNousStoryInfoScRsp" => { - Some(Self::CmdGetChessRogueNousStoryInfoScRsp) - } - "CmdChessRogueNousGetRogueTalentInfoScRsp" => { - Some(Self::CmdChessRogueNousGetRogueTalentInfoScRsp) - } - "CmdChessRogueNousEditDiceCsReq" => { - Some(Self::CmdChessRogueNousEditDiceCsReq) - } - "CmdChessRogueEnterCellCsReq" => Some(Self::CmdChessRogueEnterCellCsReq), - "CmdSyncChessRogueNousValueScNotify" => { - Some(Self::CmdSyncChessRogueNousValueScNotify) - } - "CmdSyncChessRogueNousMainStoryScNotify" => { - Some(Self::CmdSyncChessRogueNousMainStoryScNotify) - } - "CmdChessRogueGiveUpCsReq" => Some(Self::CmdChessRogueGiveUpCsReq), - "CmdChessRoguePickAvatarScRsp" => Some(Self::CmdChessRoguePickAvatarScRsp), - "CmdChessRogueUpdateUnlockLevelScNotify" => { - Some(Self::CmdChessRogueUpdateUnlockLevelScNotify) - } - "CmdGetChessRogueStoryInfoCsReq" => { - Some(Self::CmdGetChessRogueStoryInfoCsReq) - } - "CmdChessRogueSkipTeachingLevelScRsp" => { - Some(Self::CmdChessRogueSkipTeachingLevelScRsp) - } - "CmdFinishChessRogueSubStoryScRsp" => { - Some(Self::CmdFinishChessRogueSubStoryScRsp) - } - "CmdChessRoguePickAvatarCsReq" => Some(Self::CmdChessRoguePickAvatarCsReq), - "CmdEnterChessRogueAeonRoomScRsp" => { - Some(Self::CmdEnterChessRogueAeonRoomScRsp) - } - "CmdChessRogueConfirmRollScRsp" => Some(Self::CmdChessRogueConfirmRollScRsp), - "CmdChessRogueLeaveScRsp" => Some(Self::CmdChessRogueLeaveScRsp), - "CmdChessRogueConfirmRollCsReq" => Some(Self::CmdChessRogueConfirmRollCsReq), - "CmdChessRogueLeaveCsReq" => Some(Self::CmdChessRogueLeaveCsReq), - "CmdChessRogueUpdateDiceInfoScNotify" => { - Some(Self::CmdChessRogueUpdateDiceInfoScNotify) - } - "CmdChessRogueNousEnableRogueTalentScRsp" => { - Some(Self::CmdChessRogueNousEnableRogueTalentScRsp) - } - "CmdChessRogueUpdateAllowedSelectCellScNotify" => { - Some(Self::CmdChessRogueUpdateAllowedSelectCellScNotify) - } - "CmdChessRogueUpdateReviveInfoScNotify" => { - Some(Self::CmdChessRogueUpdateReviveInfoScNotify) - } - "CmdChessRogueStartScRsp" => Some(Self::CmdChessRogueStartScRsp), - "CmdChessRogueEnterCsReq" => Some(Self::CmdChessRogueEnterCsReq), + "CJLNKFJMIJF_ALOCMFAKBKP" => Some(Self::CjlnkfjmijfAlocmfakbkp), + "CmdEKKDJDGIOCN" => Some(Self::CmdEkkdjdgiocn), + "CmdBIGOGDODAFH" => Some(Self::CmdBigogdodafh), + "CmdLIHDJLDPBGO" => Some(Self::CmdLihdjldpbgo), + "CmdMGCOCDHLOBL" => Some(Self::CmdMgcocdhlobl), + "CmdHGPGNDFJFNC" => Some(Self::CmdHgpgndfjfnc), + "CmdNHMDADNCDBN" => Some(Self::CmdNhmdadncdbn), + "CmdPDLHODMBDGG" => Some(Self::CmdPdlhodmbdgg), + "CmdCCAMIJODAEO" => Some(Self::CmdCcamijodaeo), + "CmdAFBHPGLBLCH" => Some(Self::CmdAfbhpglblch), + "CmdEBCGENEHPLO" => Some(Self::CmdEbcgenehplo), + "CmdNCHANEEDHEB" => Some(Self::CmdNchaneedheb), + "CmdNGOPJFJGHPF" => Some(Self::CmdNgopjfjghpf), + "CmdAJIDLGFBLBC" => Some(Self::CmdAjidlgfblbc), + "CmdCEEEEKKFEEN" => Some(Self::CmdCeeeekkfeen), + "CmdNEEPIDOKIOE" => Some(Self::CmdNeepidokioe), + "CmdAGMNCHOFGEP" => Some(Self::CmdAgmnchofgep), + "CmdKKEJMJMKLBH" => Some(Self::CmdKkejmjmklbh), + "CmdIKLEMEDKBFA" => Some(Self::CmdIklemedkbfa), + "CmdFOLENGGPDHF" => Some(Self::CmdFolenggpdhf), + "CmdCEJFNFDKADC" => Some(Self::CmdCejfnfdkadc), + "CmdOCAGICPAPNN" => Some(Self::CmdOcagicpapnn), + "CmdMDFHEJDFPPF" => Some(Self::CmdMdfhejdfppf), + "CmdKIDIMAGODDO" => Some(Self::CmdKidimagoddo), + "CmdDCEINFONEKB" => Some(Self::CmdDceinfonekb), + "CmdAEJFOFIFGJJ" => Some(Self::CmdAejfofifgjj), + "CmdHFGIKBFCNHJ" => Some(Self::CmdHfgikbfcnhj), + "CmdHCIMDMNDAJH" => Some(Self::CmdHcimdmndajh), + "CmdPHPGHELOJON" => Some(Self::CmdPhpghelojon), + "CmdKJLLINOKEEG" => Some(Self::CmdKjllinokeeg), + "CmdHJBINCHFMIJ" => Some(Self::CmdHjbinchfmij), + "CmdBJCGPIDDKCO" => Some(Self::CmdBjcgpiddkco), + "CmdLOKEPEOLDLK" => Some(Self::CmdLokepeoldlk), + "CmdHJPPOLJOBDC" => Some(Self::CmdHjppoljobdc), + "CmdPBJPGCCKDAA" => Some(Self::CmdPbjpgcckdaa), + "CmdHJMLHAEOOGL" => Some(Self::CmdHjmlhaeoogl), + "CmdKODBMIFICKL" => Some(Self::CmdKodbmifickl), + "CmdOOAKNKPPFJN" => Some(Self::CmdOoaknkppfjn), + "CmdDIPABHGIOHC" => Some(Self::CmdDipabhgiohc), + "CmdDHKBDLAKCJC" => Some(Self::CmdDhkbdlakcjc), + "CmdGAAKNMCLFDB" => Some(Self::CmdGaaknmclfdb), + "CmdFMDBHHLPJLF" => Some(Self::CmdFmdbhhlpjlf), + "CmdMJGELCNMLIM" => Some(Self::CmdMjgelcnmlim), + "CmdICHJABJDILN" => Some(Self::CmdIchjabjdiln), + "CmdDKMLFPLIOLM" => Some(Self::CmdDkmlfpliolm), + "CmdFDPNNADDHFB" => Some(Self::CmdFdpnnaddhfb), + "CmdIFNPPMEGAGK" => Some(Self::CmdIfnppmegagk), + "CmdBGEPEAIEKBL" => Some(Self::CmdBgepeaiekbl), + "CmdLDJCMNILFIG" => Some(Self::CmdLdjcmnilfig), + "CmdEGOEBBEKOAK" => Some(Self::CmdEgoebbekoak), + "CmdHLMLPPGFCOK" => Some(Self::CmdHlmlppgfcok), + "CmdLEGNFIJHFJA" => Some(Self::CmdLegnfijhfja), + "CmdOHKOBJKMJIF" => Some(Self::CmdOhkobjkmjif), + "CmdNIPHNIOEOOH" => Some(Self::CmdNiphnioeooh), + "CmdEMGANNEHNLJ" => Some(Self::CmdEmgannehnlj), + "CmdOKIECEJGBNH" => Some(Self::CmdOkiecejgbnh), + "CmdMIGIKKGEHAB" => Some(Self::CmdMigikkgehab), + "CmdAKEADAIMKKB" => Some(Self::CmdAkeadaimkkb), + "CmdBMEMEAIPICO" => Some(Self::CmdBmemeaipico), + "CmdJOLMFHDNMJC" => Some(Self::CmdJolmfhdnmjc), + "CJLNKFJMIJF_FKEOFHMDOME" => Some(Self::CjlnkfjmijfFkeofhmdome), + "CmdHJFPNHKKGEM" => Some(Self::CmdHjfpnhkkgem), + "CmdBOPIBEAABHM" => Some(Self::CmdBopibeaabhm), + "CmdLILAOOMJGBO" => Some(Self::CmdLilaoomjgbo), + "CmdGFHPIELAEMD" => Some(Self::CmdGfhpielaemd), + "CmdMJKHAJMOFHD" => Some(Self::CmdMjkhajmofhd), + "CmdJOGMAKFDDDI" => Some(Self::CmdJogmakfdddi), + "CmdHDELCMIKKHE" => Some(Self::CmdHdelcmikkhe), + "CmdFNKBMEGFCAO" => Some(Self::CmdFnkbmegfcao), + "CmdLAMOKNACCFE" => Some(Self::CmdLamoknaccfe), + "CmdOHPFCGMAOEK" => Some(Self::CmdOhpfcgmaoek), + "CmdNJNDMAKLHGH" => Some(Self::CmdNjndmaklhgh), + "CmdAIBMGOGLFLJ" => Some(Self::CmdAibmgoglflj), + "CmdODOGHFDOAME" => Some(Self::CmdOdoghfdoame), + "CmdCMJMFIKAJBG" => Some(Self::CmdCmjmfikajbg), + "CmdIJIFCKAIFAM" => Some(Self::CmdIjifckaifam), + "CJLNKFJMIJF_LEHMILALJKP" => Some(Self::CjlnkfjmijfLehmilaljkp), + "CmdPJBEEHEFGII" => Some(Self::CmdPjbeehefgii), + "CmdFGBHBCKPEEC" => Some(Self::CmdFgbhbckpeec), _ => None, } } @@ -68887,32 +68835,32 @@ impl CmdChessRogueType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nlmollcfcgb { - ChessRogueDiceIdle = 0, - ChessRogueDiceRolled = 1, - ChessRogueDiceConfirmed = 2, - ChessRogueDiceGiveup = 3, +pub enum Kpoaknfkcoj { + Peamgmbmchc = 0, + Migkniapfhc = 1, + Hbfmkhkdkhd = 2, + Ecblehlafbp = 3, } -impl Nlmollcfcgb { +impl Kpoaknfkcoj { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueDiceIdle => "CHESS_ROGUE_DICE_IDLE", - Self::ChessRogueDiceRolled => "CHESS_ROGUE_DICE_ROLLED", - Self::ChessRogueDiceConfirmed => "CHESS_ROGUE_DICE_CONFIRMED", - Self::ChessRogueDiceGiveup => "CHESS_ROGUE_DICE_GIVEUP", + Self::Peamgmbmchc => "KPOAKNFKCOJ_PEAMGMBMCHC", + Self::Migkniapfhc => "KPOAKNFKCOJ_MIGKNIAPFHC", + Self::Hbfmkhkdkhd => "KPOAKNFKCOJ_HBFMKHKDKHD", + Self::Ecblehlafbp => "KPOAKNFKCOJ_ECBLEHLAFBP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_DICE_IDLE" => Some(Self::ChessRogueDiceIdle), - "CHESS_ROGUE_DICE_ROLLED" => Some(Self::ChessRogueDiceRolled), - "CHESS_ROGUE_DICE_CONFIRMED" => Some(Self::ChessRogueDiceConfirmed), - "CHESS_ROGUE_DICE_GIVEUP" => Some(Self::ChessRogueDiceGiveup), + "KPOAKNFKCOJ_PEAMGMBMCHC" => Some(Self::Peamgmbmchc), + "KPOAKNFKCOJ_MIGKNIAPFHC" => Some(Self::Migkniapfhc), + "KPOAKNFKCOJ_HBFMKHKDKHD" => Some(Self::Hbfmkhkdkhd), + "KPOAKNFKCOJ_ECBLEHLAFBP" => Some(Self::Ecblehlafbp), _ => None, } } @@ -68920,26 +68868,26 @@ impl Nlmollcfcgb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Aikblmohhjp { - ChessRogueDiceFixed = 0, - ChessRogueDiceEditable = 1, +pub enum Dgobmnejpin { + Ifddlhdjabo = 0, + Fedobbhpdbm = 1, } -impl Aikblmohhjp { +impl Dgobmnejpin { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueDiceFixed => "CHESS_ROGUE_DICE_FIXED", - Self::ChessRogueDiceEditable => "CHESS_ROGUE_DICE_EDITABLE", + Self::Ifddlhdjabo => "DGOBMNEJPIN_IFDDLHDJABO", + Self::Fedobbhpdbm => "DGOBMNEJPIN_FEDOBBHPDBM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_DICE_FIXED" => Some(Self::ChessRogueDiceFixed), - "CHESS_ROGUE_DICE_EDITABLE" => Some(Self::ChessRogueDiceEditable), + "DGOBMNEJPIN_IFDDLHDJABO" => Some(Self::Ifddlhdjabo), + "DGOBMNEJPIN_FEDOBBHPDBM" => Some(Self::Fedobbhpdbm), _ => None, } } @@ -68947,32 +68895,32 @@ impl Aikblmohhjp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Eieenafclll { - Idle = 0, - Selected = 1, - Processing = 2, - Finish = 3, +pub enum Okenkfkomnf { + Mokkbomcmef = 0, + Bapnkgmffme = 1, + Egnpknbehej = 2, + Eddpgfacjae = 3, } -impl Eieenafclll { +impl Okenkfkomnf { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Idle => "IDLE", - Self::Selected => "SELECTED", - Self::Processing => "PROCESSING", - Self::Finish => "FINISH", + Self::Mokkbomcmef => "OKENKFKOMNF_MOKKBOMCMEF", + Self::Bapnkgmffme => "OKENKFKOMNF_BAPNKGMFFME", + Self::Egnpknbehej => "OKENKFKOMNF_EGNPKNBEHEJ", + Self::Eddpgfacjae => "OKENKFKOMNF_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "IDLE" => Some(Self::Idle), - "SELECTED" => Some(Self::Selected), - "PROCESSING" => Some(Self::Processing), - "FINISH" => Some(Self::Finish), + "OKENKFKOMNF_MOKKBOMCMEF" => Some(Self::Mokkbomcmef), + "OKENKFKOMNF_BAPNKGMFFME" => Some(Self::Bapnkgmffme), + "OKENKFKOMNF_EGNPKNBEHEJ" => Some(Self::Egnpknbehej), + "OKENKFKOMNF_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -68980,56 +68928,38 @@ impl Eieenafclll { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ogjbgonlhih { - ChessRogueCellSpecialTypeNone = 0, - ChessRogueCellSpecialTypeLocked = 1, - ChessRogueCellSpecialTypeReplicate = 2, - ChessRogueCellSpecialTypeProtected = 3, - ChessRogueCellSpecialTypeSeed = 4, - ChessRogueCellSpecialTypeStamp = 5, +pub enum Cfcnieaomjp { + Alocmfakbkp = 0, + Phgldmgbibl = 1, + Dmbmgloipfk = 2, + Adjdaghakkl = 3, + Affejoepied = 4, + Elmkdgofboc = 5, } -impl Ogjbgonlhih { +impl Cfcnieaomjp { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueCellSpecialTypeNone => "CHESS_ROGUE_CELL_SPECIAL_TYPE_NONE", - Self::ChessRogueCellSpecialTypeLocked => { - "CHESS_ROGUE_CELL_SPECIAL_TYPE_LOCKED" - } - Self::ChessRogueCellSpecialTypeReplicate => { - "CHESS_ROGUE_CELL_SPECIAL_TYPE_REPLICATE" - } - Self::ChessRogueCellSpecialTypeProtected => { - "CHESS_ROGUE_CELL_SPECIAL_TYPE_PROTECTED" - } - Self::ChessRogueCellSpecialTypeSeed => "CHESS_ROGUE_CELL_SPECIAL_TYPE_SEED", - Self::ChessRogueCellSpecialTypeStamp => "CHESS_ROGUE_CELL_SPECIAL_TYPE_STAMP", + Self::Alocmfakbkp => "CFCNIEAOMJP_ALOCMFAKBKP", + Self::Phgldmgbibl => "CFCNIEAOMJP_PHGLDMGBIBL", + Self::Dmbmgloipfk => "CFCNIEAOMJP_DMBMGLOIPFK", + Self::Adjdaghakkl => "CFCNIEAOMJP_ADJDAGHAKKL", + Self::Affejoepied => "CFCNIEAOMJP_AFFEJOEPIED", + Self::Elmkdgofboc => "CFCNIEAOMJP_ELMKDGOFBOC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_CELL_SPECIAL_TYPE_NONE" => { - Some(Self::ChessRogueCellSpecialTypeNone) - } - "CHESS_ROGUE_CELL_SPECIAL_TYPE_LOCKED" => { - Some(Self::ChessRogueCellSpecialTypeLocked) - } - "CHESS_ROGUE_CELL_SPECIAL_TYPE_REPLICATE" => { - Some(Self::ChessRogueCellSpecialTypeReplicate) - } - "CHESS_ROGUE_CELL_SPECIAL_TYPE_PROTECTED" => { - Some(Self::ChessRogueCellSpecialTypeProtected) - } - "CHESS_ROGUE_CELL_SPECIAL_TYPE_SEED" => { - Some(Self::ChessRogueCellSpecialTypeSeed) - } - "CHESS_ROGUE_CELL_SPECIAL_TYPE_STAMP" => { - Some(Self::ChessRogueCellSpecialTypeStamp) - } + "CFCNIEAOMJP_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "CFCNIEAOMJP_PHGLDMGBIBL" => Some(Self::Phgldmgbibl), + "CFCNIEAOMJP_DMBMGLOIPFK" => Some(Self::Dmbmgloipfk), + "CFCNIEAOMJP_ADJDAGHAKKL" => Some(Self::Adjdaghakkl), + "CFCNIEAOMJP_AFFEJOEPIED" => Some(Self::Affejoepied), + "CFCNIEAOMJP_ELMKDGOFBOC" => Some(Self::Elmkdgofboc), _ => None, } } @@ -69037,38 +68967,38 @@ impl Ogjbgonlhih { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ibmlfggingp { - ChessRogueLevelIdle = 0, - ChessRogueLevelProcessing = 1, - ChessRogueLevelPending = 2, - ChessRogueLevelFinish = 3, - ChessRogueLevelFailed = 4, - ChessRogueLevelForceFinish = 5, +pub enum Mbbakondodg { + Ilhdlklenec = 0, + Ddefgibpalf = 1, + Inbdgfkcihc = 2, + Kkbieamkjip = 3, + Mogokofdegn = 4, + Eeldjccgeie = 5, } -impl Ibmlfggingp { +impl Mbbakondodg { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueLevelIdle => "CHESS_ROGUE_LEVEL_IDLE", - Self::ChessRogueLevelProcessing => "CHESS_ROGUE_LEVEL_PROCESSING", - Self::ChessRogueLevelPending => "CHESS_ROGUE_LEVEL_PENDING", - Self::ChessRogueLevelFinish => "CHESS_ROGUE_LEVEL_FINISH", - Self::ChessRogueLevelFailed => "CHESS_ROGUE_LEVEL_FAILED", - Self::ChessRogueLevelForceFinish => "CHESS_ROGUE_LEVEL_FORCE_FINISH", + Self::Ilhdlklenec => "MBBAKONDODG_ILHDLKLENEC", + Self::Ddefgibpalf => "MBBAKONDODG_DDEFGIBPALF", + Self::Inbdgfkcihc => "MBBAKONDODG_INBDGFKCIHC", + Self::Kkbieamkjip => "MBBAKONDODG_KKBIEAMKJIP", + Self::Mogokofdegn => "MBBAKONDODG_MOGOKOFDEGN", + Self::Eeldjccgeie => "MBBAKONDODG_EELDJCCGEIE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_LEVEL_IDLE" => Some(Self::ChessRogueLevelIdle), - "CHESS_ROGUE_LEVEL_PROCESSING" => Some(Self::ChessRogueLevelProcessing), - "CHESS_ROGUE_LEVEL_PENDING" => Some(Self::ChessRogueLevelPending), - "CHESS_ROGUE_LEVEL_FINISH" => Some(Self::ChessRogueLevelFinish), - "CHESS_ROGUE_LEVEL_FAILED" => Some(Self::ChessRogueLevelFailed), - "CHESS_ROGUE_LEVEL_FORCE_FINISH" => Some(Self::ChessRogueLevelForceFinish), + "MBBAKONDODG_ILHDLKLENEC" => Some(Self::Ilhdlklenec), + "MBBAKONDODG_DDEFGIBPALF" => Some(Self::Ddefgibpalf), + "MBBAKONDODG_INBDGFKCIHC" => Some(Self::Inbdgfkcihc), + "MBBAKONDODG_KKBIEAMKJIP" => Some(Self::Kkbieamkjip), + "MBBAKONDODG_MOGOKOFDEGN" => Some(Self::Mogokofdegn), + "MBBAKONDODG_EELDJCCGEIE" => Some(Self::Eeldjccgeie), _ => None, } } @@ -69076,44 +69006,38 @@ impl Ibmlfggingp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Kfhlbkccaco { - ChessRogueAccountByNone = 0, - ChessRogueAccountByNormalFinish = 1, - ChessRogueAccountByNormalQuit = 2, - ChessRogueAccountByDialog = 3, - ChessRogueAccountByFailed = 4, - ChessRogueAccountByCustomOp = 5, +pub enum Baihgdmjpjc { + Femehjkkick = 0, + Bcalfcoecdi = 1, + Njopgpklgic = 2, + Djhodjnecji = 3, + Flgkfafafmh = 4, + Fdpfooieegp = 5, } -impl Kfhlbkccaco { +impl Baihgdmjpjc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueAccountByNone => "CHESS_ROGUE_ACCOUNT_BY_NONE", - Self::ChessRogueAccountByNormalFinish => { - "CHESS_ROGUE_ACCOUNT_BY_NORMAL_FINISH" - } - Self::ChessRogueAccountByNormalQuit => "CHESS_ROGUE_ACCOUNT_BY_NORMAL_QUIT", - Self::ChessRogueAccountByDialog => "CHESS_ROGUE_ACCOUNT_BY_DIALOG", - Self::ChessRogueAccountByFailed => "CHESS_ROGUE_ACCOUNT_BY_FAILED", - Self::ChessRogueAccountByCustomOp => "CHESS_ROGUE_ACCOUNT_BY_CUSTOM_OP", + Self::Femehjkkick => "BAIHGDMJPJC_FEMEHJKKICK", + Self::Bcalfcoecdi => "BAIHGDMJPJC_BCALFCOECDI", + Self::Njopgpklgic => "BAIHGDMJPJC_NJOPGPKLGIC", + Self::Djhodjnecji => "BAIHGDMJPJC_DJHODJNECJI", + Self::Flgkfafafmh => "BAIHGDMJPJC_FLGKFAFAFMH", + Self::Fdpfooieegp => "BAIHGDMJPJC_FDPFOOIEEGP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_ACCOUNT_BY_NONE" => Some(Self::ChessRogueAccountByNone), - "CHESS_ROGUE_ACCOUNT_BY_NORMAL_FINISH" => { - Some(Self::ChessRogueAccountByNormalFinish) - } - "CHESS_ROGUE_ACCOUNT_BY_NORMAL_QUIT" => { - Some(Self::ChessRogueAccountByNormalQuit) - } - "CHESS_ROGUE_ACCOUNT_BY_DIALOG" => Some(Self::ChessRogueAccountByDialog), - "CHESS_ROGUE_ACCOUNT_BY_FAILED" => Some(Self::ChessRogueAccountByFailed), - "CHESS_ROGUE_ACCOUNT_BY_CUSTOM_OP" => Some(Self::ChessRogueAccountByCustomOp), + "BAIHGDMJPJC_FEMEHJKKICK" => Some(Self::Femehjkkick), + "BAIHGDMJPJC_BCALFCOECDI" => Some(Self::Bcalfcoecdi), + "BAIHGDMJPJC_NJOPGPKLGIC" => Some(Self::Njopgpklgic), + "BAIHGDMJPJC_DJHODJNECJI" => Some(Self::Djhodjnecji), + "BAIHGDMJPJC_FLGKFAFAFMH" => Some(Self::Flgkfafafmh), + "BAIHGDMJPJC_FDPFOOIEEGP" => Some(Self::Fdpfooieegp), _ => None, } } @@ -69121,85 +69045,53 @@ impl Kfhlbkccaco { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Obfdebfdgob { - ChessRogueBuffSourceTypeNone = 0, - ChessRogueBuffSourceTypeSelect = 1, - ChessRogueBuffSourceTypeEnhance = 2, - ChessRogueBuffSourceTypeMiracle = 3, - ChessRogueBuffSourceTypeDialogue = 4, - ChessRogueBuffSourceTypeBonus = 5, - ChessRogueBuffSourceTypeShop = 6, - ChessRogueBuffSourceTypeDice = 7, - ChessRogueBuffSourceTypeAeon = 8, - ChessRogueBuffSourceTypeMazeSkill = 9, - ChessRogueBuffSourceTypeLevelMechanism = 10, +pub enum Knkkdglcibm { + Elipophaehe = 0, + Ggcmbfppkhl = 1, + Lgakgjodegk = 2, + Oecbhgnnhnp = 3, + Mpekfckkoon = 4, + Ckcjkolejkd = 5, + Ihaaenddphk = 6, + Hcnebfjnfbo = 7, + Nicnaeedeja = 8, + Bnmkjnnnlga = 9, + Llghcmlanmc = 10, } -impl Obfdebfdgob { +impl Knkkdglcibm { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueBuffSourceTypeNone => "CHESS_ROGUE_BUFF_SOURCE_TYPE_NONE", - Self::ChessRogueBuffSourceTypeSelect => "CHESS_ROGUE_BUFF_SOURCE_TYPE_SELECT", - Self::ChessRogueBuffSourceTypeEnhance => { - "CHESS_ROGUE_BUFF_SOURCE_TYPE_ENHANCE" - } - Self::ChessRogueBuffSourceTypeMiracle => { - "CHESS_ROGUE_BUFF_SOURCE_TYPE_MIRACLE" - } - Self::ChessRogueBuffSourceTypeDialogue => { - "CHESS_ROGUE_BUFF_SOURCE_TYPE_DIALOGUE" - } - Self::ChessRogueBuffSourceTypeBonus => "CHESS_ROGUE_BUFF_SOURCE_TYPE_BONUS", - Self::ChessRogueBuffSourceTypeShop => "CHESS_ROGUE_BUFF_SOURCE_TYPE_SHOP", - Self::ChessRogueBuffSourceTypeDice => "CHESS_ROGUE_BUFF_SOURCE_TYPE_DICE", - Self::ChessRogueBuffSourceTypeAeon => "CHESS_ROGUE_BUFF_SOURCE_TYPE_AEON", - Self::ChessRogueBuffSourceTypeMazeSkill => { - "CHESS_ROGUE_BUFF_SOURCE_TYPE_MAZE_SKILL" - } - Self::ChessRogueBuffSourceTypeLevelMechanism => { - "CHESS_ROGUE_BUFF_SOURCE_TYPE_LEVEL_MECHANISM" - } + Self::Elipophaehe => "KNKKDGLCIBM_ELIPOPHAEHE", + Self::Ggcmbfppkhl => "KNKKDGLCIBM_GGCMBFPPKHL", + Self::Lgakgjodegk => "KNKKDGLCIBM_LGAKGJODEGK", + Self::Oecbhgnnhnp => "KNKKDGLCIBM_OECBHGNNHNP", + Self::Mpekfckkoon => "KNKKDGLCIBM_MPEKFCKKOON", + Self::Ckcjkolejkd => "KNKKDGLCIBM_CKCJKOLEJKD", + Self::Ihaaenddphk => "KNKKDGLCIBM_IHAAENDDPHK", + Self::Hcnebfjnfbo => "KNKKDGLCIBM_HCNEBFJNFBO", + Self::Nicnaeedeja => "KNKKDGLCIBM_NICNAEEDEJA", + Self::Bnmkjnnnlga => "KNKKDGLCIBM_BNMKJNNNLGA", + Self::Llghcmlanmc => "KNKKDGLCIBM_LLGHCMLANMC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_BUFF_SOURCE_TYPE_NONE" => { - Some(Self::ChessRogueBuffSourceTypeNone) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_SELECT" => { - Some(Self::ChessRogueBuffSourceTypeSelect) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_ENHANCE" => { - Some(Self::ChessRogueBuffSourceTypeEnhance) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_MIRACLE" => { - Some(Self::ChessRogueBuffSourceTypeMiracle) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_DIALOGUE" => { - Some(Self::ChessRogueBuffSourceTypeDialogue) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_BONUS" => { - Some(Self::ChessRogueBuffSourceTypeBonus) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_SHOP" => { - Some(Self::ChessRogueBuffSourceTypeShop) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_DICE" => { - Some(Self::ChessRogueBuffSourceTypeDice) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_AEON" => { - Some(Self::ChessRogueBuffSourceTypeAeon) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_MAZE_SKILL" => { - Some(Self::ChessRogueBuffSourceTypeMazeSkill) - } - "CHESS_ROGUE_BUFF_SOURCE_TYPE_LEVEL_MECHANISM" => { - Some(Self::ChessRogueBuffSourceTypeLevelMechanism) - } + "KNKKDGLCIBM_ELIPOPHAEHE" => Some(Self::Elipophaehe), + "KNKKDGLCIBM_GGCMBFPPKHL" => Some(Self::Ggcmbfppkhl), + "KNKKDGLCIBM_LGAKGJODEGK" => Some(Self::Lgakgjodegk), + "KNKKDGLCIBM_OECBHGNNHNP" => Some(Self::Oecbhgnnhnp), + "KNKKDGLCIBM_MPEKFCKKOON" => Some(Self::Mpekfckkoon), + "KNKKDGLCIBM_CKCJKOLEJKD" => Some(Self::Ckcjkolejkd), + "KNKKDGLCIBM_IHAAENDDPHK" => Some(Self::Ihaaenddphk), + "KNKKDGLCIBM_HCNEBFJNFBO" => Some(Self::Hcnebfjnfbo), + "KNKKDGLCIBM_NICNAEEDEJA" => Some(Self::Nicnaeedeja), + "KNKKDGLCIBM_BNMKJNNNLGA" => Some(Self::Bnmkjnnnlga), + "KNKKDGLCIBM_LLGHCMLANMC" => Some(Self::Llghcmlanmc), _ => None, } } @@ -69207,100 +69099,56 @@ impl Obfdebfdgob { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hfenkddaoff { - ChessRogueMiracleSourceTypeNone = 0, - ChessRogueMiracleSourceTypeSelect = 1, - ChessRogueMiracleSourceTypeDialogue = 2, - ChessRogueMiracleSourceTypeBonus = 3, - ChessRogueMiracleSourceTypeUse = 4, - ChessRogueMiracleSourceTypeReset = 5, - ChessRogueMiracleSourceTypeReplace = 6, - ChessRogueMiracleSourceTypeTrade = 7, - ChessRogueMiracleSourceTypeGet = 8, - ChessRogueMiracleSourceTypeShop = 9, - ChessRogueMiracleSourceTypeMazeSkill = 10, - ChessRogueMiracleSourceTypeLevelMechanism = 11, +pub enum Kialgjbcgcm { + Alocmfakbkp = 0, + Dhbelffggfl = 1, + Bchklgifekh = 2, + Hmeciphapfm = 3, + Phlfhdcdoia = 4, + Bakdcbjahlf = 5, + Hcglimkpdpb = 6, + Pcfmmfbgbok = 7, + Aobbfcgnmio = 8, + Elhkkabfjgf = 9, + Fkallllpjof = 10, + Indophddgdf = 11, } -impl Hfenkddaoff { +impl Kialgjbcgcm { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueMiracleSourceTypeNone => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_NONE" - } - Self::ChessRogueMiracleSourceTypeSelect => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_SELECT" - } - Self::ChessRogueMiracleSourceTypeDialogue => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_DIALOGUE" - } - Self::ChessRogueMiracleSourceTypeBonus => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_BONUS" - } - Self::ChessRogueMiracleSourceTypeUse => "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_USE", - Self::ChessRogueMiracleSourceTypeReset => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_RESET" - } - Self::ChessRogueMiracleSourceTypeReplace => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_REPLACE" - } - Self::ChessRogueMiracleSourceTypeTrade => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_TRADE" - } - Self::ChessRogueMiracleSourceTypeGet => "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_GET", - Self::ChessRogueMiracleSourceTypeShop => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_SHOP" - } - Self::ChessRogueMiracleSourceTypeMazeSkill => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_MAZE_SKILL" - } - Self::ChessRogueMiracleSourceTypeLevelMechanism => { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_LEVEL_MECHANISM" - } + Self::Alocmfakbkp => "KIALGJBCGCM_ALOCMFAKBKP", + Self::Dhbelffggfl => "KIALGJBCGCM_DHBELFFGGFL", + Self::Bchklgifekh => "KIALGJBCGCM_BCHKLGIFEKH", + Self::Hmeciphapfm => "KIALGJBCGCM_HMECIPHAPFM", + Self::Phlfhdcdoia => "KIALGJBCGCM_PHLFHDCDOIA", + Self::Bakdcbjahlf => "KIALGJBCGCM_BAKDCBJAHLF", + Self::Hcglimkpdpb => "KIALGJBCGCM_HCGLIMKPDPB", + Self::Pcfmmfbgbok => "KIALGJBCGCM_PCFMMFBGBOK", + Self::Aobbfcgnmio => "KIALGJBCGCM_AOBBFCGNMIO", + Self::Elhkkabfjgf => "KIALGJBCGCM_ELHKKABFJGF", + Self::Fkallllpjof => "KIALGJBCGCM_FKALLLLPJOF", + Self::Indophddgdf => "KIALGJBCGCM_INDOPHDDGDF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_NONE" => { - Some(Self::ChessRogueMiracleSourceTypeNone) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_SELECT" => { - Some(Self::ChessRogueMiracleSourceTypeSelect) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_DIALOGUE" => { - Some(Self::ChessRogueMiracleSourceTypeDialogue) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_BONUS" => { - Some(Self::ChessRogueMiracleSourceTypeBonus) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_USE" => { - Some(Self::ChessRogueMiracleSourceTypeUse) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_RESET" => { - Some(Self::ChessRogueMiracleSourceTypeReset) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_REPLACE" => { - Some(Self::ChessRogueMiracleSourceTypeReplace) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_TRADE" => { - Some(Self::ChessRogueMiracleSourceTypeTrade) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_GET" => { - Some(Self::ChessRogueMiracleSourceTypeGet) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_SHOP" => { - Some(Self::ChessRogueMiracleSourceTypeShop) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_MAZE_SKILL" => { - Some(Self::ChessRogueMiracleSourceTypeMazeSkill) - } - "CHESS_ROGUE_MIRACLE_SOURCE_TYPE_LEVEL_MECHANISM" => { - Some(Self::ChessRogueMiracleSourceTypeLevelMechanism) - } + "KIALGJBCGCM_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "KIALGJBCGCM_DHBELFFGGFL" => Some(Self::Dhbelffggfl), + "KIALGJBCGCM_BCHKLGIFEKH" => Some(Self::Bchklgifekh), + "KIALGJBCGCM_HMECIPHAPFM" => Some(Self::Hmeciphapfm), + "KIALGJBCGCM_PHLFHDCDOIA" => Some(Self::Phlfhdcdoia), + "KIALGJBCGCM_BAKDCBJAHLF" => Some(Self::Bakdcbjahlf), + "KIALGJBCGCM_HCGLIMKPDPB" => Some(Self::Hcglimkpdpb), + "KIALGJBCGCM_PCFMMFBGBOK" => Some(Self::Pcfmmfbgbok), + "KIALGJBCGCM_AOBBFCGNMIO" => Some(Self::Aobbfcgnmio), + "KIALGJBCGCM_ELHKKABFJGF" => Some(Self::Elhkkabfjgf), + "KIALGJBCGCM_FKALLLLPJOF" => Some(Self::Fkallllpjof), + "KIALGJBCGCM_INDOPHDDGDF" => Some(Self::Indophddgdf), _ => None, } } @@ -69308,34 +69156,26 @@ impl Hfenkddaoff { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mmkdkdgfblh { - ChessRogueUpdateLevelStatusByNone = 0, - ChessRogueUpdateLevelStatusByDialog = 1, +pub enum Ignaggmojbh { + Dadpnelapgn = 0, + Cijjdgocfaj = 1, } -impl Mmkdkdgfblh { +impl Ignaggmojbh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueUpdateLevelStatusByNone => { - "CHESS_ROGUE_UPDATE_LEVEL_STATUS_BY_NONE" - } - Self::ChessRogueUpdateLevelStatusByDialog => { - "CHESS_ROGUE_UPDATE_LEVEL_STATUS_BY_DIALOG" - } + Self::Dadpnelapgn => "IGNAGGMOJBH_DADPNELAPGN", + Self::Cijjdgocfaj => "IGNAGGMOJBH_CIJJDGOCFAJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_UPDATE_LEVEL_STATUS_BY_NONE" => { - Some(Self::ChessRogueUpdateLevelStatusByNone) - } - "CHESS_ROGUE_UPDATE_LEVEL_STATUS_BY_DIALOG" => { - Some(Self::ChessRogueUpdateLevelStatusByDialog) - } + "IGNAGGMOJBH_DADPNELAPGN" => Some(Self::Dadpnelapgn), + "IGNAGGMOJBH_CIJJDGOCFAJ" => Some(Self::Cijjdgocfaj), _ => None, } } @@ -69343,32 +69183,26 @@ impl Mmkdkdgfblh { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Aebjegdpong { - ChessRogueCellUpdateReasonNone = 0, - ChessRogueCellUpdateReasonModifier = 1, +pub enum Abbkdokebbi { + Alocmfakbkp = 0, + Mnilaagpncp = 1, } -impl Aebjegdpong { +impl Abbkdokebbi { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueCellUpdateReasonNone => "CHESS_ROGUE_CELL_UPDATE_REASON_NONE", - Self::ChessRogueCellUpdateReasonModifier => { - "CHESS_ROGUE_CELL_UPDATE_REASON_MODIFIER" - } + Self::Alocmfakbkp => "ABBKDOKEBBI_ALOCMFAKBKP", + Self::Mnilaagpncp => "ABBKDOKEBBI_MNILAAGPNCP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_CELL_UPDATE_REASON_NONE" => { - Some(Self::ChessRogueCellUpdateReasonNone) - } - "CHESS_ROGUE_CELL_UPDATE_REASON_MODIFIER" => { - Some(Self::ChessRogueCellUpdateReasonModifier) - } + "ABBKDOKEBBI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "ABBKDOKEBBI_MNILAAGPNCP" => Some(Self::Mnilaagpncp), _ => None, } } @@ -69376,47 +69210,47 @@ impl Aebjegdpong { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Cbncoeiemfi { - ChessRogueAeonTypeNone = 0, - ChessRogueAeonTypeKnight = 1, - ChessRogueAeonTypeMemory = 2, - ChessRogueAeonTypeWarlock = 3, - ChessRogueAeonTypePriest = 4, - ChessRogueAeonTypeRogue = 5, - ChessRogueAeonTypeWarrior = 6, - ChessRogueAeonTypeHappy = 7, - ChessRogueAeonTypeBreed = 8, +pub enum Iilpnokjjnm { + Alocmfakbkp = 0, + Ppombbjlobc = 1, + Geainiodinj = 2, + Jkfndgfafla = 3, + Emaieobeflp = 4, + Hdihiedngkp = 5, + Okaecjooefi = 6, + Ddeijigmgke = 7, + Mfioblnpblb = 8, } -impl Cbncoeiemfi { +impl Iilpnokjjnm { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueAeonTypeNone => "CHESS_ROGUE_AEON_TYPE_NONE", - Self::ChessRogueAeonTypeKnight => "CHESS_ROGUE_AEON_TYPE_KNIGHT", - Self::ChessRogueAeonTypeMemory => "CHESS_ROGUE_AEON_TYPE_MEMORY", - Self::ChessRogueAeonTypeWarlock => "CHESS_ROGUE_AEON_TYPE_WARLOCK", - Self::ChessRogueAeonTypePriest => "CHESS_ROGUE_AEON_TYPE_PRIEST", - Self::ChessRogueAeonTypeRogue => "CHESS_ROGUE_AEON_TYPE_ROGUE", - Self::ChessRogueAeonTypeWarrior => "CHESS_ROGUE_AEON_TYPE_WARRIOR", - Self::ChessRogueAeonTypeHappy => "CHESS_ROGUE_AEON_TYPE_HAPPY", - Self::ChessRogueAeonTypeBreed => "CHESS_ROGUE_AEON_TYPE_BREED", + Self::Alocmfakbkp => "IILPNOKJJNM_ALOCMFAKBKP", + Self::Ppombbjlobc => "IILPNOKJJNM_PPOMBBJLOBC", + Self::Geainiodinj => "IILPNOKJJNM_GEAINIODINJ", + Self::Jkfndgfafla => "IILPNOKJJNM_JKFNDGFAFLA", + Self::Emaieobeflp => "IILPNOKJJNM_EMAIEOBEFLP", + Self::Hdihiedngkp => "IILPNOKJJNM_HDIHIEDNGKP", + Self::Okaecjooefi => "IILPNOKJJNM_OKAECJOOEFI", + Self::Ddeijigmgke => "IILPNOKJJNM_DDEIJIGMGKE", + Self::Mfioblnpblb => "IILPNOKJJNM_MFIOBLNPBLB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_AEON_TYPE_NONE" => Some(Self::ChessRogueAeonTypeNone), - "CHESS_ROGUE_AEON_TYPE_KNIGHT" => Some(Self::ChessRogueAeonTypeKnight), - "CHESS_ROGUE_AEON_TYPE_MEMORY" => Some(Self::ChessRogueAeonTypeMemory), - "CHESS_ROGUE_AEON_TYPE_WARLOCK" => Some(Self::ChessRogueAeonTypeWarlock), - "CHESS_ROGUE_AEON_TYPE_PRIEST" => Some(Self::ChessRogueAeonTypePriest), - "CHESS_ROGUE_AEON_TYPE_ROGUE" => Some(Self::ChessRogueAeonTypeRogue), - "CHESS_ROGUE_AEON_TYPE_WARRIOR" => Some(Self::ChessRogueAeonTypeWarrior), - "CHESS_ROGUE_AEON_TYPE_HAPPY" => Some(Self::ChessRogueAeonTypeHappy), - "CHESS_ROGUE_AEON_TYPE_BREED" => Some(Self::ChessRogueAeonTypeBreed), + "IILPNOKJJNM_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "IILPNOKJJNM_PPOMBBJLOBC" => Some(Self::Ppombbjlobc), + "IILPNOKJJNM_GEAINIODINJ" => Some(Self::Geainiodinj), + "IILPNOKJJNM_JKFNDGFAFLA" => Some(Self::Jkfndgfafla), + "IILPNOKJJNM_EMAIEOBEFLP" => Some(Self::Emaieobeflp), + "IILPNOKJJNM_HDIHIEDNGKP" => Some(Self::Hdihiedngkp), + "IILPNOKJJNM_OKAECJOOEFI" => Some(Self::Okaecjooefi), + "IILPNOKJJNM_DDEIJIGMGKE" => Some(Self::Ddeijigmgke), + "IILPNOKJJNM_MFIOBLNPBLB" => Some(Self::Mfioblnpblb), _ => None, } } @@ -69424,40 +69258,32 @@ impl Cbncoeiemfi { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Lmgjdlookoj { - ChessRogueDiceSourceTypeNone = 0, - ChessRogueDiceSourceTypeNormal = 1, - ChessRogueDiceSourceTypeRepeat = 2, - ChessRogueDiceSourceTypeCheat = 3, +pub enum Lhjmggfecjd { + Mhnfoioiahm = 0, + Imegfmamdgd = 1, + Jolgohldckc = 2, + Ammhnadolkm = 3, } -impl Lmgjdlookoj { +impl Lhjmggfecjd { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueDiceSourceTypeNone => "CHESS_ROGUE_DICE_SOURCE_TYPE_NONE", - Self::ChessRogueDiceSourceTypeNormal => "CHESS_ROGUE_DICE_SOURCE_TYPE_NORMAL", - Self::ChessRogueDiceSourceTypeRepeat => "CHESS_ROGUE_DICE_SOURCE_TYPE_REPEAT", - Self::ChessRogueDiceSourceTypeCheat => "CHESS_ROGUE_DICE_SOURCE_TYPE_CHEAT", + Self::Mhnfoioiahm => "LHJMGGFECJD_MHNFOIOIAHM", + Self::Imegfmamdgd => "LHJMGGFECJD_IMEGFMAMDGD", + Self::Jolgohldckc => "LHJMGGFECJD_JOLGOHLDCKC", + Self::Ammhnadolkm => "LHJMGGFECJD_AMMHNADOLKM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_DICE_SOURCE_TYPE_NONE" => { - Some(Self::ChessRogueDiceSourceTypeNone) - } - "CHESS_ROGUE_DICE_SOURCE_TYPE_NORMAL" => { - Some(Self::ChessRogueDiceSourceTypeNormal) - } - "CHESS_ROGUE_DICE_SOURCE_TYPE_REPEAT" => { - Some(Self::ChessRogueDiceSourceTypeRepeat) - } - "CHESS_ROGUE_DICE_SOURCE_TYPE_CHEAT" => { - Some(Self::ChessRogueDiceSourceTypeCheat) - } + "LHJMGGFECJD_MHNFOIOIAHM" => Some(Self::Mhnfoioiahm), + "LHJMGGFECJD_IMEGFMAMDGD" => Some(Self::Imegfmamdgd), + "LHJMGGFECJD_JOLGOHLDCKC" => Some(Self::Jolgohldckc), + "LHJMGGFECJD_AMMHNADOLKM" => Some(Self::Ammhnadolkm), _ => None, } } @@ -69465,48 +69291,32 @@ impl Lmgjdlookoj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Cdoegmdjgoc { - ChessRogueNousMainStoryStatusNone = 0, - ChessRogueNousMainStoryStatusUnlock = 1, - ChessRogueNousMainStoryStatusFinish = 2, - ChessRogueNousMainStoryStatusCanTrigger = 3, +pub enum Kdjdilcchjg { + Alocmfakbkp = 0, + Dicadjmaife = 1, + Eddpgfacjae = 2, + Enkkigjfccf = 3, } -impl Cdoegmdjgoc { +impl Kdjdilcchjg { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChessRogueNousMainStoryStatusNone => { - "CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_NONE" - } - Self::ChessRogueNousMainStoryStatusUnlock => { - "CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_UNLOCK" - } - Self::ChessRogueNousMainStoryStatusFinish => { - "CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_FINISH" - } - Self::ChessRogueNousMainStoryStatusCanTrigger => { - "CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_CAN_TRIGGER" - } + Self::Alocmfakbkp => "KDJDILCCHJG_ALOCMFAKBKP", + Self::Dicadjmaife => "KDJDILCCHJG_DICADJMAIFE", + Self::Eddpgfacjae => "KDJDILCCHJG_EDDPGFACJAE", + Self::Enkkigjfccf => "KDJDILCCHJG_ENKKIGJFCCF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_NONE" => { - Some(Self::ChessRogueNousMainStoryStatusNone) - } - "CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_UNLOCK" => { - Some(Self::ChessRogueNousMainStoryStatusUnlock) - } - "CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_FINISH" => { - Some(Self::ChessRogueNousMainStoryStatusFinish) - } - "CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_CAN_TRIGGER" => { - Some(Self::ChessRogueNousMainStoryStatusCanTrigger) - } + "KDJDILCCHJG_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "KDJDILCCHJG_DICADJMAIFE" => Some(Self::Dicadjmaife), + "KDJDILCCHJG_EDDPGFACJAE" => Some(Self::Eddpgfacjae), + "KDJDILCCHJG_ENKKIGJFCCF" => Some(Self::Enkkigjfccf), _ => None, } } @@ -69514,29 +69324,29 @@ impl Cdoegmdjgoc { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Faohejiddhj { - None = 0, - PhaseOne = 1, - PhaseTwo = 2, +pub enum Gopcighiegf { + Alocmfakbkp = 0, + Gjmpldegaoo = 1, + Ebebkkghfdd = 2, } -impl Faohejiddhj { +impl Gopcighiegf { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "NONE", - Self::PhaseOne => "PHASE_ONE", - Self::PhaseTwo => "PHASE_TWO", + Self::Alocmfakbkp => "GOPCIGHIEGF_ALOCMFAKBKP", + Self::Gjmpldegaoo => "GOPCIGHIEGF_GJMPLDEGAOO", + Self::Ebebkkghfdd => "GOPCIGHIEGF_EBEBKKGHFDD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "NONE" => Some(Self::None), - "PHASE_ONE" => Some(Self::PhaseOne), - "PHASE_TWO" => Some(Self::PhaseTwo), + "GOPCIGHIEGF_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "GOPCIGHIEGF_GJMPLDEGAOO" => Some(Self::Gjmpldegaoo), + "GOPCIGHIEGF_EBEBKKGHFDD" => Some(Self::Ebebkkghfdd), _ => None, } } @@ -69545,23 +69355,23 @@ impl Faohejiddhj { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdChimeraType { - None = 0, - CmdChimeraGetDataCsReq = 8167, - CmdChimeraStartEndlessScRsp = 8171, - CmdChimeraSetLineupScRsp = 8179, - CmdChimeraFinishEndlessRoundCsReq = 8170, - CmdChimeraSetLineupCsReq = 8173, - CmdChimeraDoFinalRoundScRsp = 8180, - CmdChimeraFinishRoundCsReq = 8163, - CmdChimeraQuitEndlessScRsp = 8166, - CmdChimeraDoFinalRoundCsReq = 8174, - CmdChimeraFinishEndlessRoundScRsp = 8176, - CmdChimeraStartEndlessCsReq = 8168, - CmdChimeraRoundWorkStartScRsp = 8162, - CmdChimeraGetDataScRsp = 8161, - CmdChimeraRoundWorkStartCsReq = 8177, - CmdChimeraFinishRoundScRsp = 8175, - CmdChimeraQuitEndlessCsReq = 8178, + PplcfdfejgmAlocmfakbkp = 0, + CmdEdkdbkodjna = 8179, + PplcfdfejgmCbejapnbpib = 8167, + CmdMmpamlgkgfg = 8162, + CmdEbnikjnjmbd = 8170, + CmdHbedpfhcapj = 8165, + CmdBojimhgfgee = 8166, + PplcfdfejgmGlghilgepkd = 8174, + CmdBnabeagdklp = 8172, + CmdEabdahbdkpe = 8164, + PplcfdfejgmAoklhcohmmk = 8169, + CmdJimmklihona = 8161, + CmdImeipjbflpl = 8173, + CmdHkfibmbcpnk = 8180, + CmdOkomobednpf = 8175, + CmdIclgfihjiaf = 8163, + CmdIomkbpmhpam = 8177, } impl CmdChimeraType { /// String value of the enum field names used in the ProtoBuf definition. @@ -69570,53 +69380,45 @@ impl CmdChimeraType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdChimeraTypeNone", - Self::CmdChimeraGetDataCsReq => "CmdChimeraGetDataCsReq", - Self::CmdChimeraStartEndlessScRsp => "CmdChimeraStartEndlessScRsp", - Self::CmdChimeraSetLineupScRsp => "CmdChimeraSetLineupScRsp", - Self::CmdChimeraFinishEndlessRoundCsReq => { - "CmdChimeraFinishEndlessRoundCsReq" - } - Self::CmdChimeraSetLineupCsReq => "CmdChimeraSetLineupCsReq", - Self::CmdChimeraDoFinalRoundScRsp => "CmdChimeraDoFinalRoundScRsp", - Self::CmdChimeraFinishRoundCsReq => "CmdChimeraFinishRoundCsReq", - Self::CmdChimeraQuitEndlessScRsp => "CmdChimeraQuitEndlessScRsp", - Self::CmdChimeraDoFinalRoundCsReq => "CmdChimeraDoFinalRoundCsReq", - Self::CmdChimeraFinishEndlessRoundScRsp => { - "CmdChimeraFinishEndlessRoundScRsp" - } - Self::CmdChimeraStartEndlessCsReq => "CmdChimeraStartEndlessCsReq", - Self::CmdChimeraRoundWorkStartScRsp => "CmdChimeraRoundWorkStartScRsp", - Self::CmdChimeraGetDataScRsp => "CmdChimeraGetDataScRsp", - Self::CmdChimeraRoundWorkStartCsReq => "CmdChimeraRoundWorkStartCsReq", - Self::CmdChimeraFinishRoundScRsp => "CmdChimeraFinishRoundScRsp", - Self::CmdChimeraQuitEndlessCsReq => "CmdChimeraQuitEndlessCsReq", + Self::PplcfdfejgmAlocmfakbkp => "PPLCFDFEJGM_ALOCMFAKBKP", + Self::CmdEdkdbkodjna => "CmdEDKDBKODJNA", + Self::PplcfdfejgmCbejapnbpib => "PPLCFDFEJGM_CBEJAPNBPIB", + Self::CmdMmpamlgkgfg => "CmdMMPAMLGKGFG", + Self::CmdEbnikjnjmbd => "CmdEBNIKJNJMBD", + Self::CmdHbedpfhcapj => "CmdHBEDPFHCAPJ", + Self::CmdBojimhgfgee => "CmdBOJIMHGFGEE", + Self::PplcfdfejgmGlghilgepkd => "PPLCFDFEJGM_GLGHILGEPKD", + Self::CmdBnabeagdklp => "CmdBNABEAGDKLP", + Self::CmdEabdahbdkpe => "CmdEABDAHBDKPE", + Self::PplcfdfejgmAoklhcohmmk => "PPLCFDFEJGM_AOKLHCOHMMK", + Self::CmdJimmklihona => "CmdJIMMKLIHONA", + Self::CmdImeipjbflpl => "CmdIMEIPJBFLPL", + Self::CmdHkfibmbcpnk => "CmdHKFIBMBCPNK", + Self::CmdOkomobednpf => "CmdOKOMOBEDNPF", + Self::CmdIclgfihjiaf => "CmdICLGFIHJIAF", + Self::CmdIomkbpmhpam => "CmdIOMKBPMHPAM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdChimeraTypeNone" => Some(Self::None), - "CmdChimeraGetDataCsReq" => Some(Self::CmdChimeraGetDataCsReq), - "CmdChimeraStartEndlessScRsp" => Some(Self::CmdChimeraStartEndlessScRsp), - "CmdChimeraSetLineupScRsp" => Some(Self::CmdChimeraSetLineupScRsp), - "CmdChimeraFinishEndlessRoundCsReq" => { - Some(Self::CmdChimeraFinishEndlessRoundCsReq) - } - "CmdChimeraSetLineupCsReq" => Some(Self::CmdChimeraSetLineupCsReq), - "CmdChimeraDoFinalRoundScRsp" => Some(Self::CmdChimeraDoFinalRoundScRsp), - "CmdChimeraFinishRoundCsReq" => Some(Self::CmdChimeraFinishRoundCsReq), - "CmdChimeraQuitEndlessScRsp" => Some(Self::CmdChimeraQuitEndlessScRsp), - "CmdChimeraDoFinalRoundCsReq" => Some(Self::CmdChimeraDoFinalRoundCsReq), - "CmdChimeraFinishEndlessRoundScRsp" => { - Some(Self::CmdChimeraFinishEndlessRoundScRsp) - } - "CmdChimeraStartEndlessCsReq" => Some(Self::CmdChimeraStartEndlessCsReq), - "CmdChimeraRoundWorkStartScRsp" => Some(Self::CmdChimeraRoundWorkStartScRsp), - "CmdChimeraGetDataScRsp" => Some(Self::CmdChimeraGetDataScRsp), - "CmdChimeraRoundWorkStartCsReq" => Some(Self::CmdChimeraRoundWorkStartCsReq), - "CmdChimeraFinishRoundScRsp" => Some(Self::CmdChimeraFinishRoundScRsp), - "CmdChimeraQuitEndlessCsReq" => Some(Self::CmdChimeraQuitEndlessCsReq), + "PPLCFDFEJGM_ALOCMFAKBKP" => Some(Self::PplcfdfejgmAlocmfakbkp), + "CmdEDKDBKODJNA" => Some(Self::CmdEdkdbkodjna), + "PPLCFDFEJGM_CBEJAPNBPIB" => Some(Self::PplcfdfejgmCbejapnbpib), + "CmdMMPAMLGKGFG" => Some(Self::CmdMmpamlgkgfg), + "CmdEBNIKJNJMBD" => Some(Self::CmdEbnikjnjmbd), + "CmdHBEDPFHCAPJ" => Some(Self::CmdHbedpfhcapj), + "CmdBOJIMHGFGEE" => Some(Self::CmdBojimhgfgee), + "PPLCFDFEJGM_GLGHILGEPKD" => Some(Self::PplcfdfejgmGlghilgepkd), + "CmdBNABEAGDKLP" => Some(Self::CmdBnabeagdklp), + "CmdEABDAHBDKPE" => Some(Self::CmdEabdahbdkpe), + "PPLCFDFEJGM_AOKLHCOHMMK" => Some(Self::PplcfdfejgmAoklhcohmmk), + "CmdJIMMKLIHONA" => Some(Self::CmdJimmklihona), + "CmdIMEIPJBFLPL" => Some(Self::CmdImeipjbflpl), + "CmdHKFIBMBCPNK" => Some(Self::CmdHkfibmbcpnk), + "CmdOKOMOBEDNPF" => Some(Self::CmdOkomobednpf), + "CmdICLGFIHJIAF" => Some(Self::CmdIclgfihjiaf), + "CmdIOMKBPMHPAM" => Some(Self::CmdIomkbpmhpam), _ => None, } } @@ -69624,34 +69426,32 @@ impl CmdChimeraType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Oapdmkkkeol { - ChimeraLastPhaseFinishNone = 0, - ChimeraLastPhaseFinishNormal = 1, - ChimeraLastPhaseFinishSkip = 2, - ChimeraLastPhaseFinishForce = 3, +pub enum Knkbgoljmbf { + Ddidcndcjfd = 0, + Cadafalcmef = 1, + Mpoobcifiom = 2, + Gjmjoaecifj = 3, } -impl Oapdmkkkeol { +impl Knkbgoljmbf { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChimeraLastPhaseFinishNone => "CHIMERA_LAST_PHASE_FINISH_NONE", - Self::ChimeraLastPhaseFinishNormal => "CHIMERA_LAST_PHASE_FINISH_NORMAL", - Self::ChimeraLastPhaseFinishSkip => "CHIMERA_LAST_PHASE_FINISH_SKIP", - Self::ChimeraLastPhaseFinishForce => "CHIMERA_LAST_PHASE_FINISH_FORCE", + Self::Ddidcndcjfd => "KNKBGOLJMBF_DDIDCNDCJFD", + Self::Cadafalcmef => "KNKBGOLJMBF_CADAFALCMEF", + Self::Mpoobcifiom => "KNKBGOLJMBF_MPOOBCIFIOM", + Self::Gjmjoaecifj => "KNKBGOLJMBF_GJMJOAECIFJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHIMERA_LAST_PHASE_FINISH_NONE" => Some(Self::ChimeraLastPhaseFinishNone), - "CHIMERA_LAST_PHASE_FINISH_NORMAL" => { - Some(Self::ChimeraLastPhaseFinishNormal) - } - "CHIMERA_LAST_PHASE_FINISH_SKIP" => Some(Self::ChimeraLastPhaseFinishSkip), - "CHIMERA_LAST_PHASE_FINISH_FORCE" => Some(Self::ChimeraLastPhaseFinishForce), + "KNKBGOLJMBF_DDIDCNDCJFD" => Some(Self::Ddidcndcjfd), + "KNKBGOLJMBF_CADAFALCMEF" => Some(Self::Cadafalcmef), + "KNKBGOLJMBF_MPOOBCIFIOM" => Some(Self::Mpoobcifiom), + "KNKBGOLJMBF_GJMJOAECIFJ" => Some(Self::Gjmjoaecifj), _ => None, } } @@ -69659,32 +69459,293 @@ impl Oapdmkkkeol { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Biakdfeljfm { - ChimeraRoundWorkEndNone = 0, - ChimeraRoundWorkEndSucc = 1, - ChimeraRoundWorkEndFail = 2, - ChimeraRoundWorkEndLeave = 3, +pub enum Djbnaabkcfa { + Ampkjaphhfl = 0, + Hkchincofjk = 1, + Ehjlfekpgfl = 2, + Fngiaacdhgb = 3, } -impl Biakdfeljfm { +impl Djbnaabkcfa { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChimeraRoundWorkEndNone => "CHIMERA_ROUND_WORK_END_NONE", - Self::ChimeraRoundWorkEndSucc => "CHIMERA_ROUND_WORK_END_SUCC", - Self::ChimeraRoundWorkEndFail => "CHIMERA_ROUND_WORK_END_FAIL", - Self::ChimeraRoundWorkEndLeave => "CHIMERA_ROUND_WORK_END_LEAVE", + Self::Ampkjaphhfl => "DJBNAABKCFA_AMPKJAPHHFL", + Self::Hkchincofjk => "DJBNAABKCFA_HKCHINCOFJK", + Self::Ehjlfekpgfl => "DJBNAABKCFA_EHJLFEKPGFL", + Self::Fngiaacdhgb => "DJBNAABKCFA_FNGIAACDHGB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CHIMERA_ROUND_WORK_END_NONE" => Some(Self::ChimeraRoundWorkEndNone), - "CHIMERA_ROUND_WORK_END_SUCC" => Some(Self::ChimeraRoundWorkEndSucc), - "CHIMERA_ROUND_WORK_END_FAIL" => Some(Self::ChimeraRoundWorkEndFail), - "CHIMERA_ROUND_WORK_END_LEAVE" => Some(Self::ChimeraRoundWorkEndLeave), + "DJBNAABKCFA_AMPKJAPHHFL" => Some(Self::Ampkjaphhfl), + "DJBNAABKCFA_HKCHINCOFJK" => Some(Self::Hkchincofjk), + "DJBNAABKCFA_EHJLFEKPGFL" => Some(Self::Ehjlfekpgfl), + "DJBNAABKCFA_FNGIAACDHGB" => Some(Self::Fngiaacdhgb), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Pakfjefemki { + Alocmfakbkp = 0, + Lhjcdbkeffl = 9235, + Mgcjieonjmm = 9237, + Bfnpijkocho = 9240, + Edhialeeffp = 9224, + Iebemckpbog = 9220, + Dohkkpmldml = 9243, + Infpaalafjh = 9256, + Kmnoidjgegj = 9260, + Ajpgpgddlpp = 9230, + Enmncanjmbe = 9221, + Cojfjobbckj = 9227, + Khbmnbpfhhi = 9236, + Hbdpmeeabmk = 9222, + Flfckeinjmc = 9228, + Eniedilkghj = 9212, + Ohakdbolpcf = 9223, + Baopklmlllo = 9217, + Kbiideocmfl = 9229, + Lgniggmhfan = 9211, + Kjmogjgbdbl = 9241, + Ajnkfnpdnag = 9239, + Ldkbecdimdo = 9253, + Ggjijbbpfek = 9246, + Mjnnchikfnb = 9219, + Ejkhhhifccd = 9233, + Ojjfhhapeel = 9234, + Lgdfnhnknfe = 9254, + Ojdmofhllgj = 9226, + Gdbpidgiama = 9249, + Fklkmfcakkk = 9250, + Mcnmcdabfan = 9257, + Jocccclmehp = 9244, + Kdpobmkpglo = 9255, + Jccmhbccgop = 9245, + Ikkbgofddkb = 9214, +} +impl Pakfjefemki { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Alocmfakbkp => "PAKFJEFEMKI_ALOCMFAKBKP", + Self::Lhjcdbkeffl => "PAKFJEFEMKI_LHJCDBKEFFL", + Self::Mgcjieonjmm => "PAKFJEFEMKI_MGCJIEONJMM", + Self::Bfnpijkocho => "PAKFJEFEMKI_BFNPIJKOCHO", + Self::Edhialeeffp => "PAKFJEFEMKI_EDHIALEEFFP", + Self::Iebemckpbog => "PAKFJEFEMKI_IEBEMCKPBOG", + Self::Dohkkpmldml => "PAKFJEFEMKI_DOHKKPMLDML", + Self::Infpaalafjh => "PAKFJEFEMKI_INFPAALAFJH", + Self::Kmnoidjgegj => "PAKFJEFEMKI_KMNOIDJGEGJ", + Self::Ajpgpgddlpp => "PAKFJEFEMKI_AJPGPGDDLPP", + Self::Enmncanjmbe => "PAKFJEFEMKI_ENMNCANJMBE", + Self::Cojfjobbckj => "PAKFJEFEMKI_COJFJOBBCKJ", + Self::Khbmnbpfhhi => "PAKFJEFEMKI_KHBMNBPFHHI", + Self::Hbdpmeeabmk => "PAKFJEFEMKI_HBDPMEEABMK", + Self::Flfckeinjmc => "PAKFJEFEMKI_FLFCKEINJMC", + Self::Eniedilkghj => "PAKFJEFEMKI_ENIEDILKGHJ", + Self::Ohakdbolpcf => "PAKFJEFEMKI_OHAKDBOLPCF", + Self::Baopklmlllo => "PAKFJEFEMKI_BAOPKLMLLLO", + Self::Kbiideocmfl => "PAKFJEFEMKI_KBIIDEOCMFL", + Self::Lgniggmhfan => "PAKFJEFEMKI_LGNIGGMHFAN", + Self::Kjmogjgbdbl => "PAKFJEFEMKI_KJMOGJGBDBL", + Self::Ajnkfnpdnag => "PAKFJEFEMKI_AJNKFNPDNAG", + Self::Ldkbecdimdo => "PAKFJEFEMKI_LDKBECDIMDO", + Self::Ggjijbbpfek => "PAKFJEFEMKI_GGJIJBBPFEK", + Self::Mjnnchikfnb => "PAKFJEFEMKI_MJNNCHIKFNB", + Self::Ejkhhhifccd => "PAKFJEFEMKI_EJKHHHIFCCD", + Self::Ojjfhhapeel => "PAKFJEFEMKI_OJJFHHAPEEL", + Self::Lgdfnhnknfe => "PAKFJEFEMKI_LGDFNHNKNFE", + Self::Ojdmofhllgj => "PAKFJEFEMKI_OJDMOFHLLGJ", + Self::Gdbpidgiama => "PAKFJEFEMKI_GDBPIDGIAMA", + Self::Fklkmfcakkk => "PAKFJEFEMKI_FKLKMFCAKKK", + Self::Mcnmcdabfan => "PAKFJEFEMKI_MCNMCDABFAN", + Self::Jocccclmehp => "PAKFJEFEMKI_JOCCCCLMEHP", + Self::Kdpobmkpglo => "PAKFJEFEMKI_KDPOBMKPGLO", + Self::Jccmhbccgop => "PAKFJEFEMKI_JCCMHBCCGOP", + Self::Ikkbgofddkb => "PAKFJEFEMKI_IKKBGOFDDKB", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "PAKFJEFEMKI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "PAKFJEFEMKI_LHJCDBKEFFL" => Some(Self::Lhjcdbkeffl), + "PAKFJEFEMKI_MGCJIEONJMM" => Some(Self::Mgcjieonjmm), + "PAKFJEFEMKI_BFNPIJKOCHO" => Some(Self::Bfnpijkocho), + "PAKFJEFEMKI_EDHIALEEFFP" => Some(Self::Edhialeeffp), + "PAKFJEFEMKI_IEBEMCKPBOG" => Some(Self::Iebemckpbog), + "PAKFJEFEMKI_DOHKKPMLDML" => Some(Self::Dohkkpmldml), + "PAKFJEFEMKI_INFPAALAFJH" => Some(Self::Infpaalafjh), + "PAKFJEFEMKI_KMNOIDJGEGJ" => Some(Self::Kmnoidjgegj), + "PAKFJEFEMKI_AJPGPGDDLPP" => Some(Self::Ajpgpgddlpp), + "PAKFJEFEMKI_ENMNCANJMBE" => Some(Self::Enmncanjmbe), + "PAKFJEFEMKI_COJFJOBBCKJ" => Some(Self::Cojfjobbckj), + "PAKFJEFEMKI_KHBMNBPFHHI" => Some(Self::Khbmnbpfhhi), + "PAKFJEFEMKI_HBDPMEEABMK" => Some(Self::Hbdpmeeabmk), + "PAKFJEFEMKI_FLFCKEINJMC" => Some(Self::Flfckeinjmc), + "PAKFJEFEMKI_ENIEDILKGHJ" => Some(Self::Eniedilkghj), + "PAKFJEFEMKI_OHAKDBOLPCF" => Some(Self::Ohakdbolpcf), + "PAKFJEFEMKI_BAOPKLMLLLO" => Some(Self::Baopklmlllo), + "PAKFJEFEMKI_KBIIDEOCMFL" => Some(Self::Kbiideocmfl), + "PAKFJEFEMKI_LGNIGGMHFAN" => Some(Self::Lgniggmhfan), + "PAKFJEFEMKI_KJMOGJGBDBL" => Some(Self::Kjmogjgbdbl), + "PAKFJEFEMKI_AJNKFNPDNAG" => Some(Self::Ajnkfnpdnag), + "PAKFJEFEMKI_LDKBECDIMDO" => Some(Self::Ldkbecdimdo), + "PAKFJEFEMKI_GGJIJBBPFEK" => Some(Self::Ggjijbbpfek), + "PAKFJEFEMKI_MJNNCHIKFNB" => Some(Self::Mjnnchikfnb), + "PAKFJEFEMKI_EJKHHHIFCCD" => Some(Self::Ejkhhhifccd), + "PAKFJEFEMKI_OJJFHHAPEEL" => Some(Self::Ojjfhhapeel), + "PAKFJEFEMKI_LGDFNHNKNFE" => Some(Self::Lgdfnhnknfe), + "PAKFJEFEMKI_OJDMOFHLLGJ" => Some(Self::Ojdmofhllgj), + "PAKFJEFEMKI_GDBPIDGIAMA" => Some(Self::Gdbpidgiama), + "PAKFJEFEMKI_FKLKMFCAKKK" => Some(Self::Fklkmfcakkk), + "PAKFJEFEMKI_MCNMCDABFAN" => Some(Self::Mcnmcdabfan), + "PAKFJEFEMKI_JOCCCCLMEHP" => Some(Self::Jocccclmehp), + "PAKFJEFEMKI_KDPOBMKPGLO" => Some(Self::Kdpobmkpglo), + "PAKFJEFEMKI_JCCMHBCCGOP" => Some(Self::Jccmhbccgop), + "PAKFJEFEMKI_IKKBGOFDDKB" => Some(Self::Ikkbgofddkb), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Ipfkdopibck { + Alocmfakbkp = 0, + Jjmdlobcnfc = 1, + Fmjddlknnpb = 2, + Bbnnoodipkn = 3, + Dhhmlhnnikc = 4, + Leaebnaopal = 5, +} +impl Ipfkdopibck { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Alocmfakbkp => "IPFKDOPIBCK_ALOCMFAKBKP", + Self::Jjmdlobcnfc => "IPFKDOPIBCK_JJMDLOBCNFC", + Self::Fmjddlknnpb => "IPFKDOPIBCK_FMJDDLKNNPB", + Self::Bbnnoodipkn => "IPFKDOPIBCK_BBNNOODIPKN", + Self::Dhhmlhnnikc => "IPFKDOPIBCK_DHHMLHNNIKC", + Self::Leaebnaopal => "IPFKDOPIBCK_LEAEBNAOPAL", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "IPFKDOPIBCK_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "IPFKDOPIBCK_JJMDLOBCNFC" => Some(Self::Jjmdlobcnfc), + "IPFKDOPIBCK_FMJDDLKNNPB" => Some(Self::Fmjddlknnpb), + "IPFKDOPIBCK_BBNNOODIPKN" => Some(Self::Bbnnoodipkn), + "IPFKDOPIBCK_DHHMLHNNIKC" => Some(Self::Dhhmlhnnikc), + "IPFKDOPIBCK_LEAEBNAOPAL" => Some(Self::Leaebnaopal), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Flkaipgjeni { + Alocmfakbkp = 0, + Bbobmpgblao = 1, + Fjfeiknmlea = 2, + Ajobdmaefcg = 3, +} +impl Flkaipgjeni { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Alocmfakbkp => "FLKAIPGJENI_ALOCMFAKBKP", + Self::Bbobmpgblao => "FLKAIPGJENI_BBOBMPGBLAO", + Self::Fjfeiknmlea => "FLKAIPGJENI_FJFEIKNMLEA", + Self::Ajobdmaefcg => "FLKAIPGJENI_AJOBDMAEFCG", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "FLKAIPGJENI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "FLKAIPGJENI_BBOBMPGBLAO" => Some(Self::Bbobmpgblao), + "FLKAIPGJENI_FJFEIKNMLEA" => Some(Self::Fjfeiknmlea), + "FLKAIPGJENI_AJOBDMAEFCG" => Some(Self::Ajobdmaefcg), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Belfhimennn { + Cdjmnnbpgnn = 0, + Fofcoleagmo = 1, + Omdnohdajak = 2, +} +impl Belfhimennn { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Cdjmnnbpgnn => "BELFHIMENNN_CDJMNNBPGNN", + Self::Fofcoleagmo => "BELFHIMENNN_FOFCOLEAGMO", + Self::Omdnohdajak => "BELFHIMENNN_OMDNOHDAJAK", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "BELFHIMENNN_CDJMNNBPGNN" => Some(Self::Cdjmnnbpgnn), + "BELFHIMENNN_FOFCOLEAGMO" => Some(Self::Fofcoleagmo), + "BELFHIMENNN_OMDNOHDAJAK" => Some(Self::Omdnohdajak), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Cjjdahejiga { + Alocmfakbkp = 0, + Lkmoicjbchj = 1, + Jddjkfifcih = 2, +} +impl Cjjdahejiga { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Alocmfakbkp => "CJJDAHEJIGA_ALOCMFAKBKP", + Self::Lkmoicjbchj => "CJJDAHEJIGA_LKMOICJBCHJ", + Self::Jddjkfifcih => "CJJDAHEJIGA_JDDJKFIFCIH", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "CJJDAHEJIGA_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "CJJDAHEJIGA_LKMOICJBCHJ" => Some(Self::Lkmoicjbchj), + "CJJDAHEJIGA_JDDJKFIFCIH" => Some(Self::Jddjkfifcih), _ => None, } } @@ -69693,23 +69754,23 @@ impl Biakdfeljfm { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdClockParkType { - None = 0, - CmdClockParkUseBuffScRsp = 7235, - CmdClockParkGetInfoCsReq = 7226, - CmdClockParkGetOngoingScriptInfoCsReq = 7201, - CmdClockParkGetInfoScRsp = 7228, - CmdClockParkQuitScriptCsReq = 7223, - CmdClockParkUnlockTalentCsReq = 7205, - CmdClockParkBattleEndScNotify = 7230, - CmdClockParkStartScriptCsReq = 7220, - CmdClockParkUseBuffCsReq = 7229, - CmdClockParkHandleWaitOperationScRsp = 7203, - CmdClockParkQuitScriptScRsp = 7219, - CmdClockParkFinishScriptScNotify = 7212, - CmdClockParkGetOngoingScriptInfoScRsp = 7245, - CmdClockParkStartScriptScRsp = 7244, - CmdClockParkUnlockTalentScRsp = 7227, - CmdClockParkHandleWaitOperationCsReq = 7243, + EgahipaiilmAlocmfakbkp = 0, + CmdHpdkmojigne = 7250, + CmdJmcmmnkaneo = 7246, + CmdHcbiodpeohe = 7240, + CmdClockParkGetInfoCsReq = 7219, + CmdCchimmemkbo = 7231, + CmdLfodgnfbpob = 7217, + CmdBmdpjkogjdm = 7212, + CmdBpmlefkkjcg = 7207, + CmdFknhmacbhlp = 7225, + CmdNnkemldcggp = 7213, + CmdEbgildgngcl = 7243, + CmdJiobhlopkhb = 7233, + CmdFagpoldodgp = 7235, + CmdFeipjnnpmoc = 7209, + CmdJlmemdmfkgm = 7210, + CmdClockParkGetInfoScRsp = 7202, } impl CmdClockParkType { /// String value of the enum field names used in the ProtoBuf definition. @@ -69718,63 +69779,45 @@ impl CmdClockParkType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdClockParkTypeNone", - Self::CmdClockParkUseBuffScRsp => "CmdClockParkUseBuffScRsp", + Self::EgahipaiilmAlocmfakbkp => "EGAHIPAIILM_ALOCMFAKBKP", + Self::CmdHpdkmojigne => "CmdHPDKMOJIGNE", + Self::CmdJmcmmnkaneo => "CmdJMCMMNKANEO", + Self::CmdHcbiodpeohe => "CmdHCBIODPEOHE", Self::CmdClockParkGetInfoCsReq => "CmdClockParkGetInfoCsReq", - Self::CmdClockParkGetOngoingScriptInfoCsReq => { - "CmdClockParkGetOngoingScriptInfoCsReq" - } + Self::CmdCchimmemkbo => "CmdCCHIMMEMKBO", + Self::CmdLfodgnfbpob => "CmdLFODGNFBPOB", + Self::CmdBmdpjkogjdm => "CmdBMDPJKOGJDM", + Self::CmdBpmlefkkjcg => "CmdBPMLEFKKJCG", + Self::CmdFknhmacbhlp => "CmdFKNHMACBHLP", + Self::CmdNnkemldcggp => "CmdNNKEMLDCGGP", + Self::CmdEbgildgngcl => "CmdEBGILDGNGCL", + Self::CmdJiobhlopkhb => "CmdJIOBHLOPKHB", + Self::CmdFagpoldodgp => "CmdFAGPOLDODGP", + Self::CmdFeipjnnpmoc => "CmdFEIPJNNPMOC", + Self::CmdJlmemdmfkgm => "CmdJLMEMDMFKGM", Self::CmdClockParkGetInfoScRsp => "CmdClockParkGetInfoScRsp", - Self::CmdClockParkQuitScriptCsReq => "CmdClockParkQuitScriptCsReq", - Self::CmdClockParkUnlockTalentCsReq => "CmdClockParkUnlockTalentCsReq", - Self::CmdClockParkBattleEndScNotify => "CmdClockParkBattleEndScNotify", - Self::CmdClockParkStartScriptCsReq => "CmdClockParkStartScriptCsReq", - Self::CmdClockParkUseBuffCsReq => "CmdClockParkUseBuffCsReq", - Self::CmdClockParkHandleWaitOperationScRsp => { - "CmdClockParkHandleWaitOperationScRsp" - } - Self::CmdClockParkQuitScriptScRsp => "CmdClockParkQuitScriptScRsp", - Self::CmdClockParkFinishScriptScNotify => "CmdClockParkFinishScriptScNotify", - Self::CmdClockParkGetOngoingScriptInfoScRsp => { - "CmdClockParkGetOngoingScriptInfoScRsp" - } - Self::CmdClockParkStartScriptScRsp => "CmdClockParkStartScriptScRsp", - Self::CmdClockParkUnlockTalentScRsp => "CmdClockParkUnlockTalentScRsp", - Self::CmdClockParkHandleWaitOperationCsReq => { - "CmdClockParkHandleWaitOperationCsReq" - } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdClockParkTypeNone" => Some(Self::None), - "CmdClockParkUseBuffScRsp" => Some(Self::CmdClockParkUseBuffScRsp), + "EGAHIPAIILM_ALOCMFAKBKP" => Some(Self::EgahipaiilmAlocmfakbkp), + "CmdHPDKMOJIGNE" => Some(Self::CmdHpdkmojigne), + "CmdJMCMMNKANEO" => Some(Self::CmdJmcmmnkaneo), + "CmdHCBIODPEOHE" => Some(Self::CmdHcbiodpeohe), "CmdClockParkGetInfoCsReq" => Some(Self::CmdClockParkGetInfoCsReq), - "CmdClockParkGetOngoingScriptInfoCsReq" => { - Some(Self::CmdClockParkGetOngoingScriptInfoCsReq) - } + "CmdCCHIMMEMKBO" => Some(Self::CmdCchimmemkbo), + "CmdLFODGNFBPOB" => Some(Self::CmdLfodgnfbpob), + "CmdBMDPJKOGJDM" => Some(Self::CmdBmdpjkogjdm), + "CmdBPMLEFKKJCG" => Some(Self::CmdBpmlefkkjcg), + "CmdFKNHMACBHLP" => Some(Self::CmdFknhmacbhlp), + "CmdNNKEMLDCGGP" => Some(Self::CmdNnkemldcggp), + "CmdEBGILDGNGCL" => Some(Self::CmdEbgildgngcl), + "CmdJIOBHLOPKHB" => Some(Self::CmdJiobhlopkhb), + "CmdFAGPOLDODGP" => Some(Self::CmdFagpoldodgp), + "CmdFEIPJNNPMOC" => Some(Self::CmdFeipjnnpmoc), + "CmdJLMEMDMFKGM" => Some(Self::CmdJlmemdmfkgm), "CmdClockParkGetInfoScRsp" => Some(Self::CmdClockParkGetInfoScRsp), - "CmdClockParkQuitScriptCsReq" => Some(Self::CmdClockParkQuitScriptCsReq), - "CmdClockParkUnlockTalentCsReq" => Some(Self::CmdClockParkUnlockTalentCsReq), - "CmdClockParkBattleEndScNotify" => Some(Self::CmdClockParkBattleEndScNotify), - "CmdClockParkStartScriptCsReq" => Some(Self::CmdClockParkStartScriptCsReq), - "CmdClockParkUseBuffCsReq" => Some(Self::CmdClockParkUseBuffCsReq), - "CmdClockParkHandleWaitOperationScRsp" => { - Some(Self::CmdClockParkHandleWaitOperationScRsp) - } - "CmdClockParkQuitScriptScRsp" => Some(Self::CmdClockParkQuitScriptScRsp), - "CmdClockParkFinishScriptScNotify" => { - Some(Self::CmdClockParkFinishScriptScNotify) - } - "CmdClockParkGetOngoingScriptInfoScRsp" => { - Some(Self::CmdClockParkGetOngoingScriptInfoScRsp) - } - "CmdClockParkStartScriptScRsp" => Some(Self::CmdClockParkStartScriptScRsp), - "CmdClockParkUnlockTalentScRsp" => Some(Self::CmdClockParkUnlockTalentScRsp), - "CmdClockParkHandleWaitOperationCsReq" => { - Some(Self::CmdClockParkHandleWaitOperationCsReq) - } _ => None, } } @@ -69782,32 +69825,32 @@ impl CmdClockParkType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Egblomhgijm { - ClockParkPlayNone = 0, - ClockParkPlayNormalDeath = 1, - ClockParkPlayNormalPass = 2, - ClockParkPlayFinishScript = 5, +pub enum ClockParkPlayStatus { + KeanfbcekkdAgpkoljical = 0, + KeanfbcekkdCjpihadmdnj = 1, + KeanfbcekkdOcbefneiinn = 2, + KeanfbcekkdPajgadjjhil = 5, } -impl Egblomhgijm { +impl ClockParkPlayStatus { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ClockParkPlayNone => "CLOCK_PARK_PLAY_NONE", - Self::ClockParkPlayNormalDeath => "CLOCK_PARK_PLAY_NORMAL_DEATH", - Self::ClockParkPlayNormalPass => "CLOCK_PARK_PLAY_NORMAL_PASS", - Self::ClockParkPlayFinishScript => "CLOCK_PARK_PLAY_FINISH_SCRIPT", + Self::KeanfbcekkdAgpkoljical => "KEANFBCEKKD_AGPKOLJICAL", + Self::KeanfbcekkdCjpihadmdnj => "KEANFBCEKKD_CJPIHADMDNJ", + Self::KeanfbcekkdOcbefneiinn => "KEANFBCEKKD_OCBEFNEIINN", + Self::KeanfbcekkdPajgadjjhil => "KEANFBCEKKD_PAJGADJJHIL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CLOCK_PARK_PLAY_NONE" => Some(Self::ClockParkPlayNone), - "CLOCK_PARK_PLAY_NORMAL_DEATH" => Some(Self::ClockParkPlayNormalDeath), - "CLOCK_PARK_PLAY_NORMAL_PASS" => Some(Self::ClockParkPlayNormalPass), - "CLOCK_PARK_PLAY_FINISH_SCRIPT" => Some(Self::ClockParkPlayFinishScript), + "KEANFBCEKKD_AGPKOLJICAL" => Some(Self::KeanfbcekkdAgpkoljical), + "KEANFBCEKKD_CJPIHADMDNJ" => Some(Self::KeanfbcekkdCjpihadmdnj), + "KEANFBCEKKD_OCBEFNEIINN" => Some(Self::KeanfbcekkdOcbefneiinn), + "KEANFBCEKKD_PAJGADJJHIL" => Some(Self::KeanfbcekkdPajgadjjhil), _ => None, } } @@ -69848,32 +69891,32 @@ impl MissionStatus { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Liejljnbjnp { - MessageSectionNone = 0, - MessageSectionDoing = 1, - MessageSectionFinish = 2, - MessageSectionFrozen = 3, +pub enum MessageSectionStatus { + JjdenajbfhiBccmfojnoon = 0, + JjdenajbfhiCkmplakknkg = 1, + JjdenajbfhiLikdhngaone = 2, + JjdenajbfhiJpgobngjncm = 3, } -impl Liejljnbjnp { +impl MessageSectionStatus { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MessageSectionNone => "MESSAGE_SECTION_NONE", - Self::MessageSectionDoing => "MESSAGE_SECTION_DOING", - Self::MessageSectionFinish => "MESSAGE_SECTION_FINISH", - Self::MessageSectionFrozen => "MESSAGE_SECTION_FROZEN", + Self::JjdenajbfhiBccmfojnoon => "JJDENAJBFHI_BCCMFOJNOON", + Self::JjdenajbfhiCkmplakknkg => "JJDENAJBFHI_CKMPLAKKNKG", + Self::JjdenajbfhiLikdhngaone => "JJDENAJBFHI_LIKDHNGAONE", + Self::JjdenajbfhiJpgobngjncm => "JJDENAJBFHI_JPGOBNGJNCM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MESSAGE_SECTION_NONE" => Some(Self::MessageSectionNone), - "MESSAGE_SECTION_DOING" => Some(Self::MessageSectionDoing), - "MESSAGE_SECTION_FINISH" => Some(Self::MessageSectionFinish), - "MESSAGE_SECTION_FROZEN" => Some(Self::MessageSectionFrozen), + "JJDENAJBFHI_BCCMFOJNOON" => Some(Self::JjdenajbfhiBccmfojnoon), + "JJDENAJBFHI_CKMPLAKKNKG" => Some(Self::JjdenajbfhiCkmplakknkg), + "JJDENAJBFHI_LIKDHNGAONE" => Some(Self::JjdenajbfhiLikdhngaone), + "JJDENAJBFHI_JPGOBNGJNCM" => Some(Self::JjdenajbfhiJpgobngjncm), _ => None, } } @@ -69881,32 +69924,32 @@ impl Liejljnbjnp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Llhaabppapd { - MessageGroupNone = 0, - MessageGroupDoing = 1, - MessageGroupFinish = 2, - MessageGroupFrozen = 3, +pub enum MessageGroupStatus { + HlneainbdhmLkkdpimimcb = 0, + HlneainbdhmCgeajanjjjc = 1, + HlneainbdhmMallkpgnojo = 2, + HlneainbdhmNknjlmipblg = 3, } -impl Llhaabppapd { +impl MessageGroupStatus { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MessageGroupNone => "MESSAGE_GROUP_NONE", - Self::MessageGroupDoing => "MESSAGE_GROUP_DOING", - Self::MessageGroupFinish => "MESSAGE_GROUP_FINISH", - Self::MessageGroupFrozen => "MESSAGE_GROUP_FROZEN", + Self::HlneainbdhmLkkdpimimcb => "HLNEAINBDHM_LKKDPIMIMCB", + Self::HlneainbdhmCgeajanjjjc => "HLNEAINBDHM_CGEAJANJJJC", + Self::HlneainbdhmMallkpgnojo => "HLNEAINBDHM_MALLKPGNOJO", + Self::HlneainbdhmNknjlmipblg => "HLNEAINBDHM_NKNJLMIPBLG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MESSAGE_GROUP_NONE" => Some(Self::MessageGroupNone), - "MESSAGE_GROUP_DOING" => Some(Self::MessageGroupDoing), - "MESSAGE_GROUP_FINISH" => Some(Self::MessageGroupFinish), - "MESSAGE_GROUP_FROZEN" => Some(Self::MessageGroupFrozen), + "HLNEAINBDHM_LKKDPIMIMCB" => Some(Self::HlneainbdhmLkkdpimimcb), + "HLNEAINBDHM_CGEAJANJJJC" => Some(Self::HlneainbdhmCgeajanjjjc), + "HLNEAINBDHM_MALLKPGNOJO" => Some(Self::HlneainbdhmMallkpgnojo), + "HLNEAINBDHM_NKNJLMIPBLG" => Some(Self::HlneainbdhmNknjlmipblg), _ => None, } } @@ -69914,29 +69957,29 @@ impl Llhaabppapd { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pcahopmikim { - BattleRecordNone = 0, - BattleRecordChallenge = 1, - BattleRecordRogue = 2, +pub enum BattleRecordType { + NpkjcalbbioMjhdecopobo = 0, + NpkjcalbbioKlhbhfagenj = 1, + NpkjcalbbioBmagmoeaeob = 2, } -impl Pcahopmikim { +impl BattleRecordType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BattleRecordNone => "BATTLE_RECORD_NONE", - Self::BattleRecordChallenge => "BATTLE_RECORD_CHALLENGE", - Self::BattleRecordRogue => "BATTLE_RECORD_ROGUE", + Self::NpkjcalbbioMjhdecopobo => "NPKJCALBBIO_MJHDECOPOBO", + Self::NpkjcalbbioKlhbhfagenj => "NPKJCALBBIO_KLHBHFAGENJ", + Self::NpkjcalbbioBmagmoeaeob => "NPKJCALBBIO_BMAGMOEAEOB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BATTLE_RECORD_NONE" => Some(Self::BattleRecordNone), - "BATTLE_RECORD_CHALLENGE" => Some(Self::BattleRecordChallenge), - "BATTLE_RECORD_ROGUE" => Some(Self::BattleRecordRogue), + "NPKJCALBBIO_MJHDECOPOBO" => Some(Self::NpkjcalbbioMjhdecopobo), + "NPKJCALBBIO_KLHBHFAGENJ" => Some(Self::NpkjcalbbioKlhbhfagenj), + "NPKJCALBBIO_BMAGMOEAEOB" => Some(Self::NpkjcalbbioBmagmoeaeob), _ => None, } } @@ -69944,47 +69987,41 @@ impl Pcahopmikim { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Lipekjfjmnm { - RebattleTypeNone = 0, - RebattleTypeRebattleMidway = 1, - RebattleTypeRebattleLose = 2, - RebattleTypeRebattleMidwayLineup = 3, - RebattleTypeRebattleLoseLineup = 4, - RebattleTypeQuitMidway = 5, - RebattleTypeQuitLose = 6, +pub enum RebattleType { + OpemlkdebppAlocmfakbkp = 0, + OpemlkdebppBjpjmelnlml = 1, + OpemlkdebppOkgpkcmljcd = 2, + OpemlkdebppMmenjggepcb = 3, + OpemlkdebppOljijgefipc = 4, + OpemlkdebppCndihdonkmf = 5, + OpemlkdebppModadllgfmh = 6, } -impl Lipekjfjmnm { +impl RebattleType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RebattleTypeNone => "REBATTLE_TYPE_NONE", - Self::RebattleTypeRebattleMidway => "REBATTLE_TYPE_REBATTLE_MIDWAY", - Self::RebattleTypeRebattleLose => "REBATTLE_TYPE_REBATTLE_LOSE", - Self::RebattleTypeRebattleMidwayLineup => { - "REBATTLE_TYPE_REBATTLE_MIDWAY_LINEUP" - } - Self::RebattleTypeRebattleLoseLineup => "REBATTLE_TYPE_REBATTLE_LOSE_LINEUP", - Self::RebattleTypeQuitMidway => "REBATTLE_TYPE_QUIT_MIDWAY", - Self::RebattleTypeQuitLose => "REBATTLE_TYPE_QUIT_LOSE", + Self::OpemlkdebppAlocmfakbkp => "OPEMLKDEBPP_ALOCMFAKBKP", + Self::OpemlkdebppBjpjmelnlml => "OPEMLKDEBPP_BJPJMELNLML", + Self::OpemlkdebppOkgpkcmljcd => "OPEMLKDEBPP_OKGPKCMLJCD", + Self::OpemlkdebppMmenjggepcb => "OPEMLKDEBPP_MMENJGGEPCB", + Self::OpemlkdebppOljijgefipc => "OPEMLKDEBPP_OLJIJGEFIPC", + Self::OpemlkdebppCndihdonkmf => "OPEMLKDEBPP_CNDIHDONKMF", + Self::OpemlkdebppModadllgfmh => "OPEMLKDEBPP_MODADLLGFMH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "REBATTLE_TYPE_NONE" => Some(Self::RebattleTypeNone), - "REBATTLE_TYPE_REBATTLE_MIDWAY" => Some(Self::RebattleTypeRebattleMidway), - "REBATTLE_TYPE_REBATTLE_LOSE" => Some(Self::RebattleTypeRebattleLose), - "REBATTLE_TYPE_REBATTLE_MIDWAY_LINEUP" => { - Some(Self::RebattleTypeRebattleMidwayLineup) - } - "REBATTLE_TYPE_REBATTLE_LOSE_LINEUP" => { - Some(Self::RebattleTypeRebattleLoseLineup) - } - "REBATTLE_TYPE_QUIT_MIDWAY" => Some(Self::RebattleTypeQuitMidway), - "REBATTLE_TYPE_QUIT_LOSE" => Some(Self::RebattleTypeQuitLose), + "OPEMLKDEBPP_ALOCMFAKBKP" => Some(Self::OpemlkdebppAlocmfakbkp), + "OPEMLKDEBPP_BJPJMELNLML" => Some(Self::OpemlkdebppBjpjmelnlml), + "OPEMLKDEBPP_OKGPKCMLJCD" => Some(Self::OpemlkdebppOkgpkcmljcd), + "OPEMLKDEBPP_MMENJGGEPCB" => Some(Self::OpemlkdebppMmenjggepcb), + "OPEMLKDEBPP_OLJIJGEFIPC" => Some(Self::OpemlkdebppOljijgefipc), + "OPEMLKDEBPP_CNDIHDONKMF" => Some(Self::OpemlkdebppCndihdonkmf), + "OPEMLKDEBPP_MODADLLGFMH" => Some(Self::OpemlkdebppModadllgfmh), _ => None, } } @@ -70029,13 +70066,11 @@ impl ContentPackageStatus { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdContentPackageType { - None = 0, - CmdContentPackageUnlockCsReq = 7538, - CmdContentPackageTransferScNotify = 7527, - CmdContentPackageGetDataCsReq = 7526, - CmdContentPackageSyncDataScNotify = 7521, - CmdContentPackageUnlockScRsp = 7505, - CmdContentPackageGetDataScRsp = 7528, + BinincogmghAlocmfakbkp = 0, + CmdContentPackageGetDataScRsp = 7502, + CmdContentPackageTransferScNotify = 7533, + CmdContentPackageSyncDataScNotify = 7548, + BinincogmghPkkdlbcndbo = 7519, } impl CmdContentPackageType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70044,33 +70079,29 @@ impl CmdContentPackageType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdContentPackageTypeNone", - Self::CmdContentPackageUnlockCsReq => "CmdContentPackageUnlockCsReq", + Self::BinincogmghAlocmfakbkp => "BININCOGMGH_ALOCMFAKBKP", + Self::CmdContentPackageGetDataScRsp => "CmdContentPackageGetDataScRsp", Self::CmdContentPackageTransferScNotify => { "CmdContentPackageTransferScNotify" } - Self::CmdContentPackageGetDataCsReq => "CmdContentPackageGetDataCsReq", Self::CmdContentPackageSyncDataScNotify => { "CmdContentPackageSyncDataScNotify" } - Self::CmdContentPackageUnlockScRsp => "CmdContentPackageUnlockScRsp", - Self::CmdContentPackageGetDataScRsp => "CmdContentPackageGetDataScRsp", + Self::BinincogmghPkkdlbcndbo => "BININCOGMGH_PKKDLBCNDBO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdContentPackageTypeNone" => Some(Self::None), - "CmdContentPackageUnlockCsReq" => Some(Self::CmdContentPackageUnlockCsReq), + "BININCOGMGH_ALOCMFAKBKP" => Some(Self::BinincogmghAlocmfakbkp), + "CmdContentPackageGetDataScRsp" => Some(Self::CmdContentPackageGetDataScRsp), "CmdContentPackageTransferScNotify" => { Some(Self::CmdContentPackageTransferScNotify) } - "CmdContentPackageGetDataCsReq" => Some(Self::CmdContentPackageGetDataCsReq), "CmdContentPackageSyncDataScNotify" => { Some(Self::CmdContentPackageSyncDataScNotify) } - "CmdContentPackageUnlockScRsp" => Some(Self::CmdContentPackageUnlockScRsp), - "CmdContentPackageGetDataScRsp" => Some(Self::CmdContentPackageGetDataScRsp), + "BININCOGMGH_PKKDLBCNDBO" => Some(Self::BinincogmghPkkdlbcndbo), _ => None, } } @@ -70079,14 +70110,14 @@ impl CmdContentPackageType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdDailyActiveType { - None = 0, - CmdDailyActiveInfoNotify = 3383, - CmdGetDailyActiveInfoScRsp = 3365, - CmdTakeAllApRewardCsReq = 3386, - CmdTakeApRewardCsReq = 3399, - CmdTakeAllApRewardScRsp = 3394, - CmdGetDailyActiveInfoCsReq = 3398, - CmdTakeApRewardScRsp = 3323, + KlkkcjbbddeAlocmfakbkp = 0, + CmdGetDailyActiveInfoScRsp = 3317, + CmdTakeAllApRewardCsReq = 3311, + CmdTakeApRewardCsReq = 3347, + CmdDailyActiveInfoNotify = 3351, + CmdTakeAllApRewardScRsp = 3389, + CmdGetDailyActiveInfoCsReq = 3338, + CmdTakeApRewardScRsp = 3309, } impl CmdDailyActiveType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70095,11 +70126,11 @@ impl CmdDailyActiveType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdDailyActiveTypeNone", - Self::CmdDailyActiveInfoNotify => "CmdDailyActiveInfoNotify", + Self::KlkkcjbbddeAlocmfakbkp => "KLKKCJBBDDE_ALOCMFAKBKP", Self::CmdGetDailyActiveInfoScRsp => "CmdGetDailyActiveInfoScRsp", Self::CmdTakeAllApRewardCsReq => "CmdTakeAllApRewardCsReq", Self::CmdTakeApRewardCsReq => "CmdTakeApRewardCsReq", + Self::CmdDailyActiveInfoNotify => "CmdDailyActiveInfoNotify", Self::CmdTakeAllApRewardScRsp => "CmdTakeAllApRewardScRsp", Self::CmdGetDailyActiveInfoCsReq => "CmdGetDailyActiveInfoCsReq", Self::CmdTakeApRewardScRsp => "CmdTakeApRewardScRsp", @@ -70108,11 +70139,11 @@ impl CmdDailyActiveType { /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdDailyActiveTypeNone" => Some(Self::None), - "CmdDailyActiveInfoNotify" => Some(Self::CmdDailyActiveInfoNotify), + "KLKKCJBBDDE_ALOCMFAKBKP" => Some(Self::KlkkcjbbddeAlocmfakbkp), "CmdGetDailyActiveInfoScRsp" => Some(Self::CmdGetDailyActiveInfoScRsp), "CmdTakeAllApRewardCsReq" => Some(Self::CmdTakeAllApRewardCsReq), "CmdTakeApRewardCsReq" => Some(Self::CmdTakeApRewardCsReq), + "CmdDailyActiveInfoNotify" => Some(Self::CmdDailyActiveInfoNotify), "CmdTakeAllApRewardScRsp" => Some(Self::CmdTakeAllApRewardScRsp), "CmdGetDailyActiveInfoCsReq" => Some(Self::CmdGetDailyActiveInfoCsReq), "CmdTakeApRewardScRsp" => Some(Self::CmdTakeApRewardScRsp), @@ -70124,25 +70155,25 @@ impl CmdDailyActiveType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdDrinkMakerType { - None = 0, - CmdDrinkMakerCheersGetDataScRsp = 7000, - CmdGetDrinkMakerDataCsReq = 6987, - CmdDrinkMakerCheersMakeDrinkScRsp = 6982, - CmdDrinkMakerUpdateTipsNotify = 6986, - CmdDrinkMakerCheersEnterNextGroupCsReq = 6992, - CmdDrinkMakerChallengeScRsp = 6998, - CmdDrinkMakerChallengeCsReq = 6996, - CmdMakeMissionDrinkCsReq = 6988, - CmdEndDrinkMakerSequenceScRsp = 6995, - CmdGetDrinkMakerDataScRsp = 6981, - CmdDrinkMakerCheersMakeDrinkCsReq = 6997, - CmdMakeDrinkCsReq = 6993, - CmdMakeMissionDrinkScRsp = 6991, - CmdDrinkMakerDayEndScNotify = 6990, - CmdDrinkMakerCheersGetDataCsReq = 6994, - CmdEndDrinkMakerSequenceCsReq = 6983, - CmdDrinkMakerCheersEnterNextGroupScRsp = 6985, - CmdMakeDrinkScRsp = 6999, + JifhhpdkgpeAlocmfakbkp = 0, + CmdKmcheilekki = 6986, + CmdNlbilpplbfl = 6994, + CmdNpopgihldno = 6983, + CmdJadfjjnoaab = 6981, + CmdOphhnpgiknk = 6987, + CmdOgdmbjbobdn = 6989, + CmdLfhdjpdihdo = 6990, + CmdHaibddpanjj = 6995, + CmdAklpocneddj = 6984, + CmdMgmacjhpeld = 7000, + CmdMfiepphjhbc = 6991, + CmdGbncomhbfja = 6997, + CmdImmcalokijn = 6993, + CmdFpklbdnapeg = 6999, + CmdMddjjljface = 6985, + CmdFeppfechkpb = 6992, + CmdKadiildgapd = 6982, + CmdIaaciljiodi = 6998, } impl CmdDrinkMakerType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70151,69 +70182,49 @@ impl CmdDrinkMakerType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdDrinkMakerTypeNone", - Self::CmdDrinkMakerCheersGetDataScRsp => "CmdDrinkMakerCheersGetDataScRsp", - Self::CmdGetDrinkMakerDataCsReq => "CmdGetDrinkMakerDataCsReq", - Self::CmdDrinkMakerCheersMakeDrinkScRsp => { - "CmdDrinkMakerCheersMakeDrinkScRsp" - } - Self::CmdDrinkMakerUpdateTipsNotify => "CmdDrinkMakerUpdateTipsNotify", - Self::CmdDrinkMakerCheersEnterNextGroupCsReq => { - "CmdDrinkMakerCheersEnterNextGroupCsReq" - } - Self::CmdDrinkMakerChallengeScRsp => "CmdDrinkMakerChallengeScRsp", - Self::CmdDrinkMakerChallengeCsReq => "CmdDrinkMakerChallengeCsReq", - Self::CmdMakeMissionDrinkCsReq => "CmdMakeMissionDrinkCsReq", - Self::CmdEndDrinkMakerSequenceScRsp => "CmdEndDrinkMakerSequenceScRsp", - Self::CmdGetDrinkMakerDataScRsp => "CmdGetDrinkMakerDataScRsp", - Self::CmdDrinkMakerCheersMakeDrinkCsReq => { - "CmdDrinkMakerCheersMakeDrinkCsReq" - } - Self::CmdMakeDrinkCsReq => "CmdMakeDrinkCsReq", - Self::CmdMakeMissionDrinkScRsp => "CmdMakeMissionDrinkScRsp", - Self::CmdDrinkMakerDayEndScNotify => "CmdDrinkMakerDayEndScNotify", - Self::CmdDrinkMakerCheersGetDataCsReq => "CmdDrinkMakerCheersGetDataCsReq", - Self::CmdEndDrinkMakerSequenceCsReq => "CmdEndDrinkMakerSequenceCsReq", - Self::CmdDrinkMakerCheersEnterNextGroupScRsp => { - "CmdDrinkMakerCheersEnterNextGroupScRsp" - } - Self::CmdMakeDrinkScRsp => "CmdMakeDrinkScRsp", + Self::JifhhpdkgpeAlocmfakbkp => "JIFHHPDKGPE_ALOCMFAKBKP", + Self::CmdKmcheilekki => "CmdKMCHEILEKKI", + Self::CmdNlbilpplbfl => "CmdNLBILPPLBFL", + Self::CmdNpopgihldno => "CmdNPOPGIHLDNO", + Self::CmdJadfjjnoaab => "CmdJADFJJNOAAB", + Self::CmdOphhnpgiknk => "CmdOPHHNPGIKNK", + Self::CmdOgdmbjbobdn => "CmdOGDMBJBOBDN", + Self::CmdLfhdjpdihdo => "CmdLFHDJPDIHDO", + Self::CmdHaibddpanjj => "CmdHAIBDDPANJJ", + Self::CmdAklpocneddj => "CmdAKLPOCNEDDJ", + Self::CmdMgmacjhpeld => "CmdMGMACJHPELD", + Self::CmdMfiepphjhbc => "CmdMFIEPPHJHBC", + Self::CmdGbncomhbfja => "CmdGBNCOMHBFJA", + Self::CmdImmcalokijn => "CmdIMMCALOKIJN", + Self::CmdFpklbdnapeg => "CmdFPKLBDNAPEG", + Self::CmdMddjjljface => "CmdMDDJJLJFACE", + Self::CmdFeppfechkpb => "CmdFEPPFECHKPB", + Self::CmdKadiildgapd => "CmdKADIILDGAPD", + Self::CmdIaaciljiodi => "CmdIAACILJIODI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdDrinkMakerTypeNone" => Some(Self::None), - "CmdDrinkMakerCheersGetDataScRsp" => { - Some(Self::CmdDrinkMakerCheersGetDataScRsp) - } - "CmdGetDrinkMakerDataCsReq" => Some(Self::CmdGetDrinkMakerDataCsReq), - "CmdDrinkMakerCheersMakeDrinkScRsp" => { - Some(Self::CmdDrinkMakerCheersMakeDrinkScRsp) - } - "CmdDrinkMakerUpdateTipsNotify" => Some(Self::CmdDrinkMakerUpdateTipsNotify), - "CmdDrinkMakerCheersEnterNextGroupCsReq" => { - Some(Self::CmdDrinkMakerCheersEnterNextGroupCsReq) - } - "CmdDrinkMakerChallengeScRsp" => Some(Self::CmdDrinkMakerChallengeScRsp), - "CmdDrinkMakerChallengeCsReq" => Some(Self::CmdDrinkMakerChallengeCsReq), - "CmdMakeMissionDrinkCsReq" => Some(Self::CmdMakeMissionDrinkCsReq), - "CmdEndDrinkMakerSequenceScRsp" => Some(Self::CmdEndDrinkMakerSequenceScRsp), - "CmdGetDrinkMakerDataScRsp" => Some(Self::CmdGetDrinkMakerDataScRsp), - "CmdDrinkMakerCheersMakeDrinkCsReq" => { - Some(Self::CmdDrinkMakerCheersMakeDrinkCsReq) - } - "CmdMakeDrinkCsReq" => Some(Self::CmdMakeDrinkCsReq), - "CmdMakeMissionDrinkScRsp" => Some(Self::CmdMakeMissionDrinkScRsp), - "CmdDrinkMakerDayEndScNotify" => Some(Self::CmdDrinkMakerDayEndScNotify), - "CmdDrinkMakerCheersGetDataCsReq" => { - Some(Self::CmdDrinkMakerCheersGetDataCsReq) - } - "CmdEndDrinkMakerSequenceCsReq" => Some(Self::CmdEndDrinkMakerSequenceCsReq), - "CmdDrinkMakerCheersEnterNextGroupScRsp" => { - Some(Self::CmdDrinkMakerCheersEnterNextGroupScRsp) - } - "CmdMakeDrinkScRsp" => Some(Self::CmdMakeDrinkScRsp), + "JIFHHPDKGPE_ALOCMFAKBKP" => Some(Self::JifhhpdkgpeAlocmfakbkp), + "CmdKMCHEILEKKI" => Some(Self::CmdKmcheilekki), + "CmdNLBILPPLBFL" => Some(Self::CmdNlbilpplbfl), + "CmdNPOPGIHLDNO" => Some(Self::CmdNpopgihldno), + "CmdJADFJJNOAAB" => Some(Self::CmdJadfjjnoaab), + "CmdOPHHNPGIKNK" => Some(Self::CmdOphhnpgiknk), + "CmdOGDMBJBOBDN" => Some(Self::CmdOgdmbjbobdn), + "CmdLFHDJPDIHDO" => Some(Self::CmdLfhdjpdihdo), + "CmdHAIBDDPANJJ" => Some(Self::CmdHaibddpanjj), + "CmdAKLPOCNEDDJ" => Some(Self::CmdAklpocneddj), + "CmdMGMACJHPELD" => Some(Self::CmdMgmacjhpeld), + "CmdMFIEPPHJHBC" => Some(Self::CmdMfiepphjhbc), + "CmdGBNCOMHBFJA" => Some(Self::CmdGbncomhbfja), + "CmdIMMCALOKIJN" => Some(Self::CmdImmcalokijn), + "CmdFPKLBDNAPEG" => Some(Self::CmdFpklbdnapeg), + "CmdMDDJJLJFACE" => Some(Self::CmdMddjjljface), + "CmdFEPPFECHKPB" => Some(Self::CmdFeppfechkpb), + "CmdKADIILDGAPD" => Some(Self::CmdKadiildgapd), + "CmdIAACILJIODI" => Some(Self::CmdIaaciljiodi), _ => None, } } @@ -70222,12 +70233,12 @@ impl CmdDrinkMakerType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdElationActivityType { - None = 0, - CmdEnterElationActivityStageScRsp = 9109, - CmdElationActivityBattleEndScNotify = 9110, - CmdGetElationActivityDataCsReq = 9106, + GojdoplkbmoAlocmfakbkp = 0, + CmdEnterElationActivityStageScRsp = 9101, + CmdElationActivityBattleEndScNotify = 9103, CmdGetElationActivityDataScRsp = 9107, - CmdEnterElationActivityStageCsReq = 9104, + CmdGetElationActivityDataCsReq = 9102, + CmdEnterElationActivityStageCsReq = 9110, } impl CmdElationActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70236,15 +70247,15 @@ impl CmdElationActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdElationActivityTypeNone", + Self::GojdoplkbmoAlocmfakbkp => "GOJDOPLKBMO_ALOCMFAKBKP", Self::CmdEnterElationActivityStageScRsp => { "CmdEnterElationActivityStageScRsp" } Self::CmdElationActivityBattleEndScNotify => { "CmdElationActivityBattleEndScNotify" } - Self::CmdGetElationActivityDataCsReq => "CmdGetElationActivityDataCsReq", Self::CmdGetElationActivityDataScRsp => "CmdGetElationActivityDataScRsp", + Self::CmdGetElationActivityDataCsReq => "CmdGetElationActivityDataCsReq", Self::CmdEnterElationActivityStageCsReq => { "CmdEnterElationActivityStageCsReq" } @@ -70253,19 +70264,19 @@ impl CmdElationActivityType { /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdElationActivityTypeNone" => Some(Self::None), + "GOJDOPLKBMO_ALOCMFAKBKP" => Some(Self::GojdoplkbmoAlocmfakbkp), "CmdEnterElationActivityStageScRsp" => { Some(Self::CmdEnterElationActivityStageScRsp) } "CmdElationActivityBattleEndScNotify" => { Some(Self::CmdElationActivityBattleEndScNotify) } - "CmdGetElationActivityDataCsReq" => { - Some(Self::CmdGetElationActivityDataCsReq) - } "CmdGetElationActivityDataScRsp" => { Some(Self::CmdGetElationActivityDataScRsp) } + "CmdGetElationActivityDataCsReq" => { + Some(Self::CmdGetElationActivityDataCsReq) + } "CmdEnterElationActivityStageCsReq" => { Some(Self::CmdEnterElationActivityStageCsReq) } @@ -70277,40 +70288,40 @@ impl CmdElationActivityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdElfRestaurantType { - None = 0, - CmdElfRestaurantSetFarmManagerScRsp = 2583, - CmdElfRestaurantBuyFieldCsReq = 2570, - CmdElfRestaurantClientStatusScRsp = 2572, - CmdGetElfRestaurantDataCsReq = 2576, - CmdElfRestaurantUpgradeRecipeLevelCsReq = 2562, - CmdElfRestaurantUpgradeEmployeeLevelCsReq = 2580, - CmdElfRestaurantBuyShopItemCsReq = 2552, - CmdGetElfRestaurantDataScRsp = 2578, - CmdElfRestaurantTakeVillagerRewardScRsp = 2575, - CmdElfRestaurantPlantSeedCsReq = 2551, - CmdElfRestaurantBuyShopItemScRsp = 2584, - CmdElfRestaurantFinishTradeOrderScRsp = 2599, - CmdElfRestaurantRecycleSeedScRsp = 2569, - CmdElfRestaurantUpgradeFacilityLevelScRsp = 2585, - CmdEnterElfRestaurantNextDayCsReq = 2571, - CmdElfRestaurantUpgradeFacilityLevelCsReq = 2579, - CmdElfRestaurantFinishTradeOrderCsReq = 2556, - CmdElfRestaurantPlantSeedScRsp = 2595, - CmdSettleElfRestaurantPlayScRsp = 2558, - CmdElfRestaurantClientStatusCsReq = 2559, - CmdElfRestaurantRecycleSeedCsReq = 2573, - CmdElfRestaurantTakeVillagerRewardCsReq = 2582, - CmdElfRestaurantUpgradeEmployeeLevelScRsp = 2561, - CmdElfRestaurantDataChangeNotify = 2577, - CmdSettleElfRestaurantPlayCsReq = 2581, - CmdEnterElfRestaurantNextDayScRsp = 2588, - CmdElfRestaurantSetFarmManagerCsReq = 2597, - CmdElfRestaurantBuyFieldScRsp = 2594, - CmdSetElfRestaurantPlayRecipeScRsp = 2586, - CmdElfRestaurantUpgradeRecipeLevelScRsp = 2565, - CmdElfRestaurantHarvestCropScRsp = 2553, - CmdElfRestaurantHarvestCropCsReq = 2593, - CmdSetElfRestaurantPlayRecipeCsReq = 2598, + GpplhjlgiapAlocmfakbkp = 0, + CmdBkbjglioajc = 2595, + GpplhjlgiapHfdhiohkkfm = 2570, + CmdJmdpennddha = 2557, + CmdCbhchlcpdkk = 2573, + CmdFnikjflfmhp = 2577, + CmdGglhjmhlpoi = 2600, + CmdHhmdibhfifg = 2594, + CmdAjdkjffjame = 2559, + CmdAieaadpofka = 2569, + CmdCpoannnhkgp = 2590, + CmdHliocieddgl = 2596, + CmdDcaokhoahmd = 2555, + CmdJgnemnfkcgj = 2574, + CmdEgkkapicimp = 2551, + CmdOmndpbijkeo = 2579, + CmdAdhbnifdgld = 2560, + CmdKcmhlaliifl = 2562, + CmdIcidmoinjoo = 2561, + CmdLphfjlkinio = 2576, + CmdEkamfgaibib = 2581, + CmdKaidaliamll = 2563, + CmdKebecgmklnm = 2593, + GpplhjlgiapDdipdkhodgf = 2584, + CmdJelfffknfch = 2598, + CmdPblckliblci = 2568, + CmdMaaanablhcf = 2575, + CmdFnlgjfeoimd = 2589, + CmdMdngdcfhdgg = 2566, + CmdFnlldopiphd = 2567, + CmdLbldgljflmc = 2564, + CmdLofbejofpnb = 2586, + CmdDahlbdgmhch = 2552, + CmdJklcpkejgno = 2583, } impl CmdElfRestaurantType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70319,173 +70330,79 @@ impl CmdElfRestaurantType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdElfRestaurantTypeNone", - Self::CmdElfRestaurantSetFarmManagerScRsp => { - "CmdElfRestaurantSetFarmManagerScRsp" - } - Self::CmdElfRestaurantBuyFieldCsReq => "CmdElfRestaurantBuyFieldCsReq", - Self::CmdElfRestaurantClientStatusScRsp => { - "CmdElfRestaurantClientStatusScRsp" - } - Self::CmdGetElfRestaurantDataCsReq => "CmdGetElfRestaurantDataCsReq", - Self::CmdElfRestaurantUpgradeRecipeLevelCsReq => { - "CmdElfRestaurantUpgradeRecipeLevelCsReq" - } - Self::CmdElfRestaurantUpgradeEmployeeLevelCsReq => { - "CmdElfRestaurantUpgradeEmployeeLevelCsReq" - } - Self::CmdElfRestaurantBuyShopItemCsReq => "CmdElfRestaurantBuyShopItemCsReq", - Self::CmdGetElfRestaurantDataScRsp => "CmdGetElfRestaurantDataScRsp", - Self::CmdElfRestaurantTakeVillagerRewardScRsp => { - "CmdElfRestaurantTakeVillagerRewardScRsp" - } - Self::CmdElfRestaurantPlantSeedCsReq => "CmdElfRestaurantPlantSeedCsReq", - Self::CmdElfRestaurantBuyShopItemScRsp => "CmdElfRestaurantBuyShopItemScRsp", - Self::CmdElfRestaurantFinishTradeOrderScRsp => { - "CmdElfRestaurantFinishTradeOrderScRsp" - } - Self::CmdElfRestaurantRecycleSeedScRsp => "CmdElfRestaurantRecycleSeedScRsp", - Self::CmdElfRestaurantUpgradeFacilityLevelScRsp => { - "CmdElfRestaurantUpgradeFacilityLevelScRsp" - } - Self::CmdEnterElfRestaurantNextDayCsReq => { - "CmdEnterElfRestaurantNextDayCsReq" - } - Self::CmdElfRestaurantUpgradeFacilityLevelCsReq => { - "CmdElfRestaurantUpgradeFacilityLevelCsReq" - } - Self::CmdElfRestaurantFinishTradeOrderCsReq => { - "CmdElfRestaurantFinishTradeOrderCsReq" - } - Self::CmdElfRestaurantPlantSeedScRsp => "CmdElfRestaurantPlantSeedScRsp", - Self::CmdSettleElfRestaurantPlayScRsp => "CmdSettleElfRestaurantPlayScRsp", - Self::CmdElfRestaurantClientStatusCsReq => { - "CmdElfRestaurantClientStatusCsReq" - } - Self::CmdElfRestaurantRecycleSeedCsReq => "CmdElfRestaurantRecycleSeedCsReq", - Self::CmdElfRestaurantTakeVillagerRewardCsReq => { - "CmdElfRestaurantTakeVillagerRewardCsReq" - } - Self::CmdElfRestaurantUpgradeEmployeeLevelScRsp => { - "CmdElfRestaurantUpgradeEmployeeLevelScRsp" - } - Self::CmdElfRestaurantDataChangeNotify => "CmdElfRestaurantDataChangeNotify", - Self::CmdSettleElfRestaurantPlayCsReq => "CmdSettleElfRestaurantPlayCsReq", - Self::CmdEnterElfRestaurantNextDayScRsp => { - "CmdEnterElfRestaurantNextDayScRsp" - } - Self::CmdElfRestaurantSetFarmManagerCsReq => { - "CmdElfRestaurantSetFarmManagerCsReq" - } - Self::CmdElfRestaurantBuyFieldScRsp => "CmdElfRestaurantBuyFieldScRsp", - Self::CmdSetElfRestaurantPlayRecipeScRsp => { - "CmdSetElfRestaurantPlayRecipeScRsp" - } - Self::CmdElfRestaurantUpgradeRecipeLevelScRsp => { - "CmdElfRestaurantUpgradeRecipeLevelScRsp" - } - Self::CmdElfRestaurantHarvestCropScRsp => "CmdElfRestaurantHarvestCropScRsp", - Self::CmdElfRestaurantHarvestCropCsReq => "CmdElfRestaurantHarvestCropCsReq", - Self::CmdSetElfRestaurantPlayRecipeCsReq => { - "CmdSetElfRestaurantPlayRecipeCsReq" - } + Self::GpplhjlgiapAlocmfakbkp => "GPPLHJLGIAP_ALOCMFAKBKP", + Self::CmdBkbjglioajc => "CmdBKBJGLIOAJC", + Self::GpplhjlgiapHfdhiohkkfm => "GPPLHJLGIAP_HFDHIOHKKFM", + Self::CmdJmdpennddha => "CmdJMDPENNDDHA", + Self::CmdCbhchlcpdkk => "CmdCBHCHLCPDKK", + Self::CmdFnikjflfmhp => "CmdFNIKJFLFMHP", + Self::CmdGglhjmhlpoi => "CmdGGLHJMHLPOI", + Self::CmdHhmdibhfifg => "CmdHHMDIBHFIFG", + Self::CmdAjdkjffjame => "CmdAJDKJFFJAME", + Self::CmdAieaadpofka => "CmdAIEAADPOFKA", + Self::CmdCpoannnhkgp => "CmdCPOANNNHKGP", + Self::CmdHliocieddgl => "CmdHLIOCIEDDGL", + Self::CmdDcaokhoahmd => "CmdDCAOKHOAHMD", + Self::CmdJgnemnfkcgj => "CmdJGNEMNFKCGJ", + Self::CmdEgkkapicimp => "CmdEGKKAPICIMP", + Self::CmdOmndpbijkeo => "CmdOMNDPBIJKEO", + Self::CmdAdhbnifdgld => "CmdADHBNIFDGLD", + Self::CmdKcmhlaliifl => "CmdKCMHLALIIFL", + Self::CmdIcidmoinjoo => "CmdICIDMOINJOO", + Self::CmdLphfjlkinio => "CmdLPHFJLKINIO", + Self::CmdEkamfgaibib => "CmdEKAMFGAIBIB", + Self::CmdKaidaliamll => "CmdKAIDALIAMLL", + Self::CmdKebecgmklnm => "CmdKEBECGMKLNM", + Self::GpplhjlgiapDdipdkhodgf => "GPPLHJLGIAP_DDIPDKHODGF", + Self::CmdJelfffknfch => "CmdJELFFFKNFCH", + Self::CmdPblckliblci => "CmdPBLCKLIBLCI", + Self::CmdMaaanablhcf => "CmdMAAANABLHCF", + Self::CmdFnlgjfeoimd => "CmdFNLGJFEOIMD", + Self::CmdMdngdcfhdgg => "CmdMDNGDCFHDGG", + Self::CmdFnlldopiphd => "CmdFNLLDOPIPHD", + Self::CmdLbldgljflmc => "CmdLBLDGLJFLMC", + Self::CmdLofbejofpnb => "CmdLOFBEJOFPNB", + Self::CmdDahlbdgmhch => "CmdDAHLBDGMHCH", + Self::CmdJklcpkejgno => "CmdJKLCPKEJGNO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdElfRestaurantTypeNone" => Some(Self::None), - "CmdElfRestaurantSetFarmManagerScRsp" => { - Some(Self::CmdElfRestaurantSetFarmManagerScRsp) - } - "CmdElfRestaurantBuyFieldCsReq" => Some(Self::CmdElfRestaurantBuyFieldCsReq), - "CmdElfRestaurantClientStatusScRsp" => { - Some(Self::CmdElfRestaurantClientStatusScRsp) - } - "CmdGetElfRestaurantDataCsReq" => Some(Self::CmdGetElfRestaurantDataCsReq), - "CmdElfRestaurantUpgradeRecipeLevelCsReq" => { - Some(Self::CmdElfRestaurantUpgradeRecipeLevelCsReq) - } - "CmdElfRestaurantUpgradeEmployeeLevelCsReq" => { - Some(Self::CmdElfRestaurantUpgradeEmployeeLevelCsReq) - } - "CmdElfRestaurantBuyShopItemCsReq" => { - Some(Self::CmdElfRestaurantBuyShopItemCsReq) - } - "CmdGetElfRestaurantDataScRsp" => Some(Self::CmdGetElfRestaurantDataScRsp), - "CmdElfRestaurantTakeVillagerRewardScRsp" => { - Some(Self::CmdElfRestaurantTakeVillagerRewardScRsp) - } - "CmdElfRestaurantPlantSeedCsReq" => { - Some(Self::CmdElfRestaurantPlantSeedCsReq) - } - "CmdElfRestaurantBuyShopItemScRsp" => { - Some(Self::CmdElfRestaurantBuyShopItemScRsp) - } - "CmdElfRestaurantFinishTradeOrderScRsp" => { - Some(Self::CmdElfRestaurantFinishTradeOrderScRsp) - } - "CmdElfRestaurantRecycleSeedScRsp" => { - Some(Self::CmdElfRestaurantRecycleSeedScRsp) - } - "CmdElfRestaurantUpgradeFacilityLevelScRsp" => { - Some(Self::CmdElfRestaurantUpgradeFacilityLevelScRsp) - } - "CmdEnterElfRestaurantNextDayCsReq" => { - Some(Self::CmdEnterElfRestaurantNextDayCsReq) - } - "CmdElfRestaurantUpgradeFacilityLevelCsReq" => { - Some(Self::CmdElfRestaurantUpgradeFacilityLevelCsReq) - } - "CmdElfRestaurantFinishTradeOrderCsReq" => { - Some(Self::CmdElfRestaurantFinishTradeOrderCsReq) - } - "CmdElfRestaurantPlantSeedScRsp" => { - Some(Self::CmdElfRestaurantPlantSeedScRsp) - } - "CmdSettleElfRestaurantPlayScRsp" => { - Some(Self::CmdSettleElfRestaurantPlayScRsp) - } - "CmdElfRestaurantClientStatusCsReq" => { - Some(Self::CmdElfRestaurantClientStatusCsReq) - } - "CmdElfRestaurantRecycleSeedCsReq" => { - Some(Self::CmdElfRestaurantRecycleSeedCsReq) - } - "CmdElfRestaurantTakeVillagerRewardCsReq" => { - Some(Self::CmdElfRestaurantTakeVillagerRewardCsReq) - } - "CmdElfRestaurantUpgradeEmployeeLevelScRsp" => { - Some(Self::CmdElfRestaurantUpgradeEmployeeLevelScRsp) - } - "CmdElfRestaurantDataChangeNotify" => { - Some(Self::CmdElfRestaurantDataChangeNotify) - } - "CmdSettleElfRestaurantPlayCsReq" => { - Some(Self::CmdSettleElfRestaurantPlayCsReq) - } - "CmdEnterElfRestaurantNextDayScRsp" => { - Some(Self::CmdEnterElfRestaurantNextDayScRsp) - } - "CmdElfRestaurantSetFarmManagerCsReq" => { - Some(Self::CmdElfRestaurantSetFarmManagerCsReq) - } - "CmdElfRestaurantBuyFieldScRsp" => Some(Self::CmdElfRestaurantBuyFieldScRsp), - "CmdSetElfRestaurantPlayRecipeScRsp" => { - Some(Self::CmdSetElfRestaurantPlayRecipeScRsp) - } - "CmdElfRestaurantUpgradeRecipeLevelScRsp" => { - Some(Self::CmdElfRestaurantUpgradeRecipeLevelScRsp) - } - "CmdElfRestaurantHarvestCropScRsp" => { - Some(Self::CmdElfRestaurantHarvestCropScRsp) - } - "CmdElfRestaurantHarvestCropCsReq" => { - Some(Self::CmdElfRestaurantHarvestCropCsReq) - } - "CmdSetElfRestaurantPlayRecipeCsReq" => { - Some(Self::CmdSetElfRestaurantPlayRecipeCsReq) - } + "GPPLHJLGIAP_ALOCMFAKBKP" => Some(Self::GpplhjlgiapAlocmfakbkp), + "CmdBKBJGLIOAJC" => Some(Self::CmdBkbjglioajc), + "GPPLHJLGIAP_HFDHIOHKKFM" => Some(Self::GpplhjlgiapHfdhiohkkfm), + "CmdJMDPENNDDHA" => Some(Self::CmdJmdpennddha), + "CmdCBHCHLCPDKK" => Some(Self::CmdCbhchlcpdkk), + "CmdFNIKJFLFMHP" => Some(Self::CmdFnikjflfmhp), + "CmdGGLHJMHLPOI" => Some(Self::CmdGglhjmhlpoi), + "CmdHHMDIBHFIFG" => Some(Self::CmdHhmdibhfifg), + "CmdAJDKJFFJAME" => Some(Self::CmdAjdkjffjame), + "CmdAIEAADPOFKA" => Some(Self::CmdAieaadpofka), + "CmdCPOANNNHKGP" => Some(Self::CmdCpoannnhkgp), + "CmdHLIOCIEDDGL" => Some(Self::CmdHliocieddgl), + "CmdDCAOKHOAHMD" => Some(Self::CmdDcaokhoahmd), + "CmdJGNEMNFKCGJ" => Some(Self::CmdJgnemnfkcgj), + "CmdEGKKAPICIMP" => Some(Self::CmdEgkkapicimp), + "CmdOMNDPBIJKEO" => Some(Self::CmdOmndpbijkeo), + "CmdADHBNIFDGLD" => Some(Self::CmdAdhbnifdgld), + "CmdKCMHLALIIFL" => Some(Self::CmdKcmhlaliifl), + "CmdICIDMOINJOO" => Some(Self::CmdIcidmoinjoo), + "CmdLPHFJLKINIO" => Some(Self::CmdLphfjlkinio), + "CmdEKAMFGAIBIB" => Some(Self::CmdEkamfgaibib), + "CmdKAIDALIAMLL" => Some(Self::CmdKaidaliamll), + "CmdKEBECGMKLNM" => Some(Self::CmdKebecgmklnm), + "GPPLHJLGIAP_DDIPDKHODGF" => Some(Self::GpplhjlgiapDdipdkhodgf), + "CmdJELFFFKNFCH" => Some(Self::CmdJelfffknfch), + "CmdPBLCKLIBLCI" => Some(Self::CmdPblckliblci), + "CmdMAAANABLHCF" => Some(Self::CmdMaaanablhcf), + "CmdFNLGJFEOIMD" => Some(Self::CmdFnlgjfeoimd), + "CmdMDNGDCFHDGG" => Some(Self::CmdMdngdcfhdgg), + "CmdFNLLDOPIPHD" => Some(Self::CmdFnlldopiphd), + "CmdLBLDGLJFLMC" => Some(Self::CmdLbldgljflmc), + "CmdLOFBEJOFPNB" => Some(Self::CmdLofbejofpnb), + "CmdDAHLBDGMHCH" => Some(Self::CmdDahlbdgmhch), + "CmdJKLCPKEJGNO" => Some(Self::CmdJklcpkejgno), _ => None, } } @@ -70494,16 +70411,16 @@ impl CmdElfRestaurantType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdEraFlipperType { - None = 0, - CmdEnterEraFlipperRegionScRsp = 6575, - CmdChangeEraFlipperDataCsReq = 6563, - CmdGetEraFlipperDataCsReq = 6558, - CmdGetEraFlipperDataScRsp = 6551, - CmdResetEraFlipperDataScRsp = 6565, - CmdChangeEraFlipperDataScRsp = 6566, - CmdEnterEraFlipperRegionCsReq = 6553, - CmdEraFlipperDataChangeScNotify = 6556, - CmdResetEraFlipperDataCsReq = 6568, + OnpnfpnicbjAlocmfakbkp = 0, + CmdOjobjihlcak = 6557, + CmdAkhjllnnaja = 6570, + CmdBgdhcmbnnfc = 6574, + CmdPgnmplfhdna = 6562, + CmdIheocpcambf = 6572, + CmdPfndodnbajk = 6568, + CmdHhlngdghhhh = 6555, + CmdBdagnlnghic = 6559, + CmdPkbpgmgmdac = 6567, } impl CmdEraFlipperType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70512,33 +70429,31 @@ impl CmdEraFlipperType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdEraFlipperTypeNone", - Self::CmdEnterEraFlipperRegionScRsp => "CmdEnterEraFlipperRegionScRsp", - Self::CmdChangeEraFlipperDataCsReq => "CmdChangeEraFlipperDataCsReq", - Self::CmdGetEraFlipperDataCsReq => "CmdGetEraFlipperDataCsReq", - Self::CmdGetEraFlipperDataScRsp => "CmdGetEraFlipperDataScRsp", - Self::CmdResetEraFlipperDataScRsp => "CmdResetEraFlipperDataScRsp", - Self::CmdChangeEraFlipperDataScRsp => "CmdChangeEraFlipperDataScRsp", - Self::CmdEnterEraFlipperRegionCsReq => "CmdEnterEraFlipperRegionCsReq", - Self::CmdEraFlipperDataChangeScNotify => "CmdEraFlipperDataChangeScNotify", - Self::CmdResetEraFlipperDataCsReq => "CmdResetEraFlipperDataCsReq", + Self::OnpnfpnicbjAlocmfakbkp => "ONPNFPNICBJ_ALOCMFAKBKP", + Self::CmdOjobjihlcak => "CmdOJOBJIHLCAK", + Self::CmdAkhjllnnaja => "CmdAKHJLLNNAJA", + Self::CmdBgdhcmbnnfc => "CmdBGDHCMBNNFC", + Self::CmdPgnmplfhdna => "CmdPGNMPLFHDNA", + Self::CmdIheocpcambf => "CmdIHEOCPCAMBF", + Self::CmdPfndodnbajk => "CmdPFNDODNBAJK", + Self::CmdHhlngdghhhh => "CmdHHLNGDGHHHH", + Self::CmdBdagnlnghic => "CmdBDAGNLNGHIC", + Self::CmdPkbpgmgmdac => "CmdPKBPGMGMDAC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdEraFlipperTypeNone" => Some(Self::None), - "CmdEnterEraFlipperRegionScRsp" => Some(Self::CmdEnterEraFlipperRegionScRsp), - "CmdChangeEraFlipperDataCsReq" => Some(Self::CmdChangeEraFlipperDataCsReq), - "CmdGetEraFlipperDataCsReq" => Some(Self::CmdGetEraFlipperDataCsReq), - "CmdGetEraFlipperDataScRsp" => Some(Self::CmdGetEraFlipperDataScRsp), - "CmdResetEraFlipperDataScRsp" => Some(Self::CmdResetEraFlipperDataScRsp), - "CmdChangeEraFlipperDataScRsp" => Some(Self::CmdChangeEraFlipperDataScRsp), - "CmdEnterEraFlipperRegionCsReq" => Some(Self::CmdEnterEraFlipperRegionCsReq), - "CmdEraFlipperDataChangeScNotify" => { - Some(Self::CmdEraFlipperDataChangeScNotify) - } - "CmdResetEraFlipperDataCsReq" => Some(Self::CmdResetEraFlipperDataCsReq), + "ONPNFPNICBJ_ALOCMFAKBKP" => Some(Self::OnpnfpnicbjAlocmfakbkp), + "CmdOJOBJIHLCAK" => Some(Self::CmdOjobjihlcak), + "CmdAKHJLLNNAJA" => Some(Self::CmdAkhjllnnaja), + "CmdBGDHCMBNNFC" => Some(Self::CmdBgdhcmbnnfc), + "CmdPGNMPLFHDNA" => Some(Self::CmdPgnmplfhdna), + "CmdIHEOCPCAMBF" => Some(Self::CmdIheocpcambf), + "CmdPFNDODNBAJK" => Some(Self::CmdPfndodnbajk), + "CmdHHLNGDGHHHH" => Some(Self::CmdHhlngdghhhh), + "CmdBDAGNLNGHIC" => Some(Self::CmdBdagnlnghic), + "CmdPKBPGMGMDAC" => Some(Self::CmdPkbpgmgmdac), _ => None, } } @@ -70547,29 +70462,29 @@ impl CmdEraFlipperType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdEvolveBuild { - None = 0, - ReRandomStageCsReq = 7103, - ShopAbilityUpScRsp = 7130, - ShopAbilityResetCsReq = 7115, - StartLevelScRsp = 7138, - ShopAbilityResetScRsp = 7131, - QueryInfoScRsp = 7128, - CoinNotify = 7108, - SkipTeachLevelCsReq = 7134, - ShopAbilityDownScRsp = 7129, - SkipTeachLevelScRsp = 7106, - FinishScNotify = 7143, - ShopAbilityUpCsReq = 7133, - QueryInfoCsReq = 7126, - StartStageCsReq = 7105, - GiveupCsReq = 7120, - ShopAbilityDownCsReq = 7111, - GiveupScRsp = 7144, - StartStageScRsp = 7127, - StartLevelCsReq = 7121, - LeaveCsReq = 7101, - LeaveScRsp = 7145, - ReRandomStageScRsp = 7123, + PejpifmdihcBheippdnbja = 0, + CmdFkcibemnkfe = 7136, + CmdEaokbocdhhg = 7109, + CmdAgoklpncbdn = 7112, + CmdMfplapmoblk = 7105, + PejpifmdihcJgjkbgigpnc = 7146, + CmdKmllppeibop = 7117, + CmdLccnlfahcba = 7119, + CmdHmdklfghgmg = 7131, + CmdDcfmocenkkj = 7127, + CmdGbpdeecdbef = 7133, + CmdNkejnocljea = 7102, + CmdLihdihmolgb = 7114, + CmdKjlcmecmhhe = 7110, + CmdGdpemimgbni = 7123, + CmdHomkhaknbcd = 7126, + CmdClbifdfpjnk = 7125, + CmdHhohohhfjlf = 7116, + CmdDabhbbcpifg = 7148, + CmdFkjkjkgljmp = 7135, + CmdMbjffjdbajj = 7120, + CmdBkhonfcfgkb = 7113, + CmdPejjabdloih = 7107, } impl CmdEvolveBuild { /// String value of the enum field names used in the ProtoBuf definition. @@ -70578,57 +70493,57 @@ impl CmdEvolveBuild { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdEvolveBuildNone", - Self::ReRandomStageCsReq => "CmdEvolveBuildReRandomStageCsReq", - Self::ShopAbilityUpScRsp => "CmdEvolveBuildShopAbilityUpScRsp", - Self::ShopAbilityResetCsReq => "CmdEvolveBuildShopAbilityResetCsReq", - Self::StartLevelScRsp => "CmdEvolveBuildStartLevelScRsp", - Self::ShopAbilityResetScRsp => "CmdEvolveBuildShopAbilityResetScRsp", - Self::QueryInfoScRsp => "CmdEvolveBuildQueryInfoScRsp", - Self::CoinNotify => "CmdEvolveBuildCoinNotify", - Self::SkipTeachLevelCsReq => "CmdEvolveBuildSkipTeachLevelCsReq", - Self::ShopAbilityDownScRsp => "CmdEvolveBuildShopAbilityDownScRsp", - Self::SkipTeachLevelScRsp => "CmdEvolveBuildSkipTeachLevelScRsp", - Self::FinishScNotify => "CmdEvolveBuildFinishScNotify", - Self::ShopAbilityUpCsReq => "CmdEvolveBuildShopAbilityUpCsReq", - Self::QueryInfoCsReq => "CmdEvolveBuildQueryInfoCsReq", - Self::StartStageCsReq => "CmdEvolveBuildStartStageCsReq", - Self::GiveupCsReq => "CmdEvolveBuildGiveupCsReq", - Self::ShopAbilityDownCsReq => "CmdEvolveBuildShopAbilityDownCsReq", - Self::GiveupScRsp => "CmdEvolveBuildGiveupScRsp", - Self::StartStageScRsp => "CmdEvolveBuildStartStageScRsp", - Self::StartLevelCsReq => "CmdEvolveBuildStartLevelCsReq", - Self::LeaveCsReq => "CmdEvolveBuildLeaveCsReq", - Self::LeaveScRsp => "CmdEvolveBuildLeaveScRsp", - Self::ReRandomStageScRsp => "CmdEvolveBuildReRandomStageScRsp", + Self::PejpifmdihcBheippdnbja => "PEJPIFMDIHC_BHEIPPDNBJA", + Self::CmdFkcibemnkfe => "CmdFKCIBEMNKFE", + Self::CmdEaokbocdhhg => "CmdEAOKBOCDHHG", + Self::CmdAgoklpncbdn => "CmdAGOKLPNCBDN", + Self::CmdMfplapmoblk => "CmdMFPLAPMOBLK", + Self::PejpifmdihcJgjkbgigpnc => "PEJPIFMDIHC_JGJKBGIGPNC", + Self::CmdKmllppeibop => "CmdKMLLPPEIBOP", + Self::CmdLccnlfahcba => "CmdLCCNLFAHCBA", + Self::CmdHmdklfghgmg => "CmdHMDKLFGHGMG", + Self::CmdDcfmocenkkj => "CmdDCFMOCENKKJ", + Self::CmdGbpdeecdbef => "CmdGBPDEECDBEF", + Self::CmdNkejnocljea => "CmdNKEJNOCLJEA", + Self::CmdLihdihmolgb => "CmdLIHDIHMOLGB", + Self::CmdKjlcmecmhhe => "CmdKJLCMECMHHE", + Self::CmdGdpemimgbni => "CmdGDPEMIMGBNI", + Self::CmdHomkhaknbcd => "CmdHOMKHAKNBCD", + Self::CmdClbifdfpjnk => "CmdCLBIFDFPJNK", + Self::CmdHhohohhfjlf => "CmdHHOHOHHFJLF", + Self::CmdDabhbbcpifg => "CmdDABHBBCPIFG", + Self::CmdFkjkjkgljmp => "CmdFKJKJKGLJMP", + Self::CmdMbjffjdbajj => "CmdMBJFFJDBAJJ", + Self::CmdBkhonfcfgkb => "CmdBKHONFCFGKB", + Self::CmdPejjabdloih => "CmdPEJJABDLOIH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdEvolveBuildNone" => Some(Self::None), - "CmdEvolveBuildReRandomStageCsReq" => Some(Self::ReRandomStageCsReq), - "CmdEvolveBuildShopAbilityUpScRsp" => Some(Self::ShopAbilityUpScRsp), - "CmdEvolveBuildShopAbilityResetCsReq" => Some(Self::ShopAbilityResetCsReq), - "CmdEvolveBuildStartLevelScRsp" => Some(Self::StartLevelScRsp), - "CmdEvolveBuildShopAbilityResetScRsp" => Some(Self::ShopAbilityResetScRsp), - "CmdEvolveBuildQueryInfoScRsp" => Some(Self::QueryInfoScRsp), - "CmdEvolveBuildCoinNotify" => Some(Self::CoinNotify), - "CmdEvolveBuildSkipTeachLevelCsReq" => Some(Self::SkipTeachLevelCsReq), - "CmdEvolveBuildShopAbilityDownScRsp" => Some(Self::ShopAbilityDownScRsp), - "CmdEvolveBuildSkipTeachLevelScRsp" => Some(Self::SkipTeachLevelScRsp), - "CmdEvolveBuildFinishScNotify" => Some(Self::FinishScNotify), - "CmdEvolveBuildShopAbilityUpCsReq" => Some(Self::ShopAbilityUpCsReq), - "CmdEvolveBuildQueryInfoCsReq" => Some(Self::QueryInfoCsReq), - "CmdEvolveBuildStartStageCsReq" => Some(Self::StartStageCsReq), - "CmdEvolveBuildGiveupCsReq" => Some(Self::GiveupCsReq), - "CmdEvolveBuildShopAbilityDownCsReq" => Some(Self::ShopAbilityDownCsReq), - "CmdEvolveBuildGiveupScRsp" => Some(Self::GiveupScRsp), - "CmdEvolveBuildStartStageScRsp" => Some(Self::StartStageScRsp), - "CmdEvolveBuildStartLevelCsReq" => Some(Self::StartLevelCsReq), - "CmdEvolveBuildLeaveCsReq" => Some(Self::LeaveCsReq), - "CmdEvolveBuildLeaveScRsp" => Some(Self::LeaveScRsp), - "CmdEvolveBuildReRandomStageScRsp" => Some(Self::ReRandomStageScRsp), + "PEJPIFMDIHC_BHEIPPDNBJA" => Some(Self::PejpifmdihcBheippdnbja), + "CmdFKCIBEMNKFE" => Some(Self::CmdFkcibemnkfe), + "CmdEAOKBOCDHHG" => Some(Self::CmdEaokbocdhhg), + "CmdAGOKLPNCBDN" => Some(Self::CmdAgoklpncbdn), + "CmdMFPLAPMOBLK" => Some(Self::CmdMfplapmoblk), + "PEJPIFMDIHC_JGJKBGIGPNC" => Some(Self::PejpifmdihcJgjkbgigpnc), + "CmdKMLLPPEIBOP" => Some(Self::CmdKmllppeibop), + "CmdLCCNLFAHCBA" => Some(Self::CmdLccnlfahcba), + "CmdHMDKLFGHGMG" => Some(Self::CmdHmdklfghgmg), + "CmdDCFMOCENKKJ" => Some(Self::CmdDcfmocenkkj), + "CmdGBPDEECDBEF" => Some(Self::CmdGbpdeecdbef), + "CmdNKEJNOCLJEA" => Some(Self::CmdNkejnocljea), + "CmdLIHDIHMOLGB" => Some(Self::CmdLihdihmolgb), + "CmdKJLCMECMHHE" => Some(Self::CmdKjlcmecmhhe), + "CmdGDPEMIMGBNI" => Some(Self::CmdGdpemimgbni), + "CmdHOMKHAKNBCD" => Some(Self::CmdHomkhaknbcd), + "CmdCLBIFDFPJNK" => Some(Self::CmdClbifdfpjnk), + "CmdHHOHOHHFJLF" => Some(Self::CmdHhohohhfjlf), + "CmdDABHBBCPIFG" => Some(Self::CmdDabhbbcpifg), + "CmdFKJKJKGLJMP" => Some(Self::CmdFkjkjkgljmp), + "CmdMBJFFJDBAJJ" => Some(Self::CmdMbjffjdbajj), + "CmdBKHONFCFGKB" => Some(Self::CmdBkhonfcfgkb), + "CmdPEJJABDLOIH" => Some(Self::CmdPejjabdloih), _ => None, } } @@ -70636,35 +70551,35 @@ impl CmdEvolveBuild { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Oijlbloohjg { - EvolvePeriodNone = 0, - EvolvePeriodFirst = 1, - EvolvePeriodSecond = 2, - EvolvePeriodThird = 3, - EvolvePeriodExtra = 4, +pub enum Jkffhhjidpj { + Opgchphimco = 0, + Lopgjagjghm = 1, + Fkcgbgbojhd = 2, + Mpebfomedmc = 3, + Lgbjlkegdpg = 4, } -impl Oijlbloohjg { +impl Jkffhhjidpj { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::EvolvePeriodNone => "EVOLVE_PERIOD_NONE", - Self::EvolvePeriodFirst => "EVOLVE_PERIOD_FIRST", - Self::EvolvePeriodSecond => "EVOLVE_PERIOD_SECOND", - Self::EvolvePeriodThird => "EVOLVE_PERIOD_THIRD", - Self::EvolvePeriodExtra => "EVOLVE_PERIOD_EXTRA", + Self::Opgchphimco => "JKFFHHJIDPJ_OPGCHPHIMCO", + Self::Lopgjagjghm => "JKFFHHJIDPJ_LOPGJAGJGHM", + Self::Fkcgbgbojhd => "JKFFHHJIDPJ_FKCGBGBOJHD", + Self::Mpebfomedmc => "JKFFHHJIDPJ_MPEBFOMEDMC", + Self::Lgbjlkegdpg => "JKFFHHJIDPJ_LGBJLKEGDPG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "EVOLVE_PERIOD_NONE" => Some(Self::EvolvePeriodNone), - "EVOLVE_PERIOD_FIRST" => Some(Self::EvolvePeriodFirst), - "EVOLVE_PERIOD_SECOND" => Some(Self::EvolvePeriodSecond), - "EVOLVE_PERIOD_THIRD" => Some(Self::EvolvePeriodThird), - "EVOLVE_PERIOD_EXTRA" => Some(Self::EvolvePeriodExtra), + "JKFFHHJIDPJ_OPGCHPHIMCO" => Some(Self::Opgchphimco), + "JKFFHHJIDPJ_LOPGJAGJGHM" => Some(Self::Lopgjagjghm), + "JKFFHHJIDPJ_FKCGBGBOJHD" => Some(Self::Fkcgbgbojhd), + "JKFFHHJIDPJ_MPEBFOMEDMC" => Some(Self::Mpebfomedmc), + "JKFFHHJIDPJ_LGBJLKEGDPG" => Some(Self::Lgbjlkegdpg), _ => None, } } @@ -70672,41 +70587,35 @@ impl Oijlbloohjg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dlhcmcnihii { - EvolveBattleResultNone = 0, - EvolveBattleResultWin = 1, - EvolveBattleResultAllAvatarDead = 2, - EvolveBattleResultNoDeadLine = 3, - EvolveBattleResultQuit = 4, +pub enum Kfcdfiiflfb { + Mgnjccphkol = 0, + Pijhodgmpbf = 1, + Elfjnoakghh = 2, + Dnifcocgial = 3, + Hnaobnfgkfe = 4, } -impl Dlhcmcnihii { +impl Kfcdfiiflfb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::EvolveBattleResultNone => "EVOLVE_BATTLE_RESULT_NONE", - Self::EvolveBattleResultWin => "EVOLVE_BATTLE_RESULT_WIN", - Self::EvolveBattleResultAllAvatarDead => { - "EVOLVE_BATTLE_RESULT_ALL_AVATAR_DEAD" - } - Self::EvolveBattleResultNoDeadLine => "EVOLVE_BATTLE_RESULT_NO_DEAD_LINE", - Self::EvolveBattleResultQuit => "EVOLVE_BATTLE_RESULT_QUIT", + Self::Mgnjccphkol => "KFCDFIIFLFB_MGNJCCPHKOL", + Self::Pijhodgmpbf => "KFCDFIIFLFB_PIJHODGMPBF", + Self::Elfjnoakghh => "KFCDFIIFLFB_ELFJNOAKGHH", + Self::Dnifcocgial => "KFCDFIIFLFB_DNIFCOCGIAL", + Self::Hnaobnfgkfe => "KFCDFIIFLFB_HNAOBNFGKFE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "EVOLVE_BATTLE_RESULT_NONE" => Some(Self::EvolveBattleResultNone), - "EVOLVE_BATTLE_RESULT_WIN" => Some(Self::EvolveBattleResultWin), - "EVOLVE_BATTLE_RESULT_ALL_AVATAR_DEAD" => { - Some(Self::EvolveBattleResultAllAvatarDead) - } - "EVOLVE_BATTLE_RESULT_NO_DEAD_LINE" => { - Some(Self::EvolveBattleResultNoDeadLine) - } - "EVOLVE_BATTLE_RESULT_QUIT" => Some(Self::EvolveBattleResultQuit), + "KFCDFIIFLFB_MGNJCCPHKOL" => Some(Self::Mgnjccphkol), + "KFCDFIIFLFB_PIJHODGMPBF" => Some(Self::Pijhodgmpbf), + "KFCDFIIFLFB_ELFJNOAKGHH" => Some(Self::Elfjnoakghh), + "KFCDFIIFLFB_DNIFCOCGIAL" => Some(Self::Dnifcocgial), + "KFCDFIIFLFB_HNAOBNFGKFE" => Some(Self::Hnaobnfgkfe), _ => None, } } @@ -70714,29 +70623,29 @@ impl Dlhcmcnihii { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Klnipnjcnmj { - EvolveBuildSeasonNone = 0, - EvolveBuildEarlyAccess = 1, - EvolveBuildSecondChapter = 2, +pub enum Ldgnfpgdfpe { + Nbacjhkofng = 0, + Djooahojocj = 1, + Gnjimnflckk = 2, } -impl Klnipnjcnmj { +impl Ldgnfpgdfpe { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::EvolveBuildSeasonNone => "EVOLVE_BUILD_SEASON_NONE", - Self::EvolveBuildEarlyAccess => "EVOLVE_BUILD_EARLY_ACCESS", - Self::EvolveBuildSecondChapter => "EVOLVE_BUILD_SECOND_CHAPTER", + Self::Nbacjhkofng => "LDGNFPGDFPE_NBACJHKOFNG", + Self::Djooahojocj => "LDGNFPGDFPE_DJOOAHOJOCJ", + Self::Gnjimnflckk => "LDGNFPGDFPE_GNJIMNFLCKK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "EVOLVE_BUILD_SEASON_NONE" => Some(Self::EvolveBuildSeasonNone), - "EVOLVE_BUILD_EARLY_ACCESS" => Some(Self::EvolveBuildEarlyAccess), - "EVOLVE_BUILD_SECOND_CHAPTER" => Some(Self::EvolveBuildSecondChapter), + "LDGNFPGDFPE_NBACJHKOFNG" => Some(Self::Nbacjhkofng), + "LDGNFPGDFPE_DJOOAHOJOCJ" => Some(Self::Djooahojocj), + "LDGNFPGDFPE_GNJIMNFLCKK" => Some(Self::Gnjimnflckk), _ => None, } } @@ -70745,28 +70654,28 @@ impl Klnipnjcnmj { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdExpeditionType { - None = 0, - CmdExpeditionDataChangeScNotify = 2501, - CmdCancelExpeditionCsReq = 2505, - CmdTakeMultipleExpeditionRewardCsReq = 2511, - CmdAcceptExpeditionScRsp = 2538, - CmdTakeMultipleExpeditionRewardScRsp = 2529, - CmdCancelActivityExpeditionScRsp = 2523, - CmdAcceptActivityExpeditionScRsp = 2543, - CmdAcceptExpeditionCsReq = 2521, - CmdCancelActivityExpeditionCsReq = 2503, - CmdTakeMultipleActivityExpeditionRewardScRsp = 2512, - CmdTakeActivityExpeditionRewardScRsp = 2547, - CmdTakeExpeditionRewardScRsp = 2544, - CmdTakeActivityExpeditionRewardCsReq = 2519, - CmdCancelExpeditionScRsp = 2527, - CmdAcceptActivityExpeditionCsReq = 2545, - CmdTakeMultipleActivityExpeditionRewardCsReq = 2535, - CmdGetExpeditionDataCsReq = 2526, - CmdGetExpeditionDataScRsp = 2528, - CmdTakeExpeditionRewardCsReq = 2520, - CmdAcceptMultipleExpeditionScRsp = 2530, - CmdAcceptMultipleExpeditionCsReq = 2533, + BpclgacobibAlocmfakbkp = 0, + CmdAcceptExpeditionCsReq = 2548, + CmdTakeActivityExpeditionRewardCsReq = 2543, + CmdAcceptActivityExpeditionCsReq = 2517, + CmdAcceptMultipleExpeditionCsReq = 2520, + CmdTakeExpeditionRewardCsReq = 2531, + CmdTakeActivityExpeditionRewardScRsp = 2534, + CmdAcceptActivityExpeditionScRsp = 2512, + CmdTakeMultipleActivityExpeditionRewardScRsp = 2540, + CmdCancelExpeditionScRsp = 2533, + CmdCancelExpeditionCsReq = 2535, + CmdTakeMultipleExpeditionRewardCsReq = 2527, + CmdAcceptExpeditionScRsp = 2505, + CmdExpeditionDataChangeScNotify = 2546, + CmdGetExpeditionDataCsReq = 2519, + CmdTakeMultipleActivityExpeditionRewardCsReq = 2550, + CmdAcceptMultipleExpeditionScRsp = 2507, + CmdCancelActivityExpeditionCsReq = 2509, + CmdGetExpeditionDataScRsp = 2502, + CmdTakeExpeditionRewardScRsp = 2525, + CmdCancelActivityExpeditionScRsp = 2513, + CmdTakeMultipleExpeditionRewardScRsp = 2510, } impl CmdExpeditionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70775,92 +70684,92 @@ impl CmdExpeditionType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdExpeditionTypeNone", - Self::CmdExpeditionDataChangeScNotify => "CmdExpeditionDataChangeScNotify", + Self::BpclgacobibAlocmfakbkp => "BPCLGACOBIB_ALOCMFAKBKP", + Self::CmdAcceptExpeditionCsReq => "CmdAcceptExpeditionCsReq", + Self::CmdTakeActivityExpeditionRewardCsReq => { + "CmdTakeActivityExpeditionRewardCsReq" + } + Self::CmdAcceptActivityExpeditionCsReq => "CmdAcceptActivityExpeditionCsReq", + Self::CmdAcceptMultipleExpeditionCsReq => "CmdAcceptMultipleExpeditionCsReq", + Self::CmdTakeExpeditionRewardCsReq => "CmdTakeExpeditionRewardCsReq", + Self::CmdTakeActivityExpeditionRewardScRsp => { + "CmdTakeActivityExpeditionRewardScRsp" + } + Self::CmdAcceptActivityExpeditionScRsp => "CmdAcceptActivityExpeditionScRsp", + Self::CmdTakeMultipleActivityExpeditionRewardScRsp => { + "CmdTakeMultipleActivityExpeditionRewardScRsp" + } + Self::CmdCancelExpeditionScRsp => "CmdCancelExpeditionScRsp", Self::CmdCancelExpeditionCsReq => "CmdCancelExpeditionCsReq", Self::CmdTakeMultipleExpeditionRewardCsReq => { "CmdTakeMultipleExpeditionRewardCsReq" } Self::CmdAcceptExpeditionScRsp => "CmdAcceptExpeditionScRsp", - Self::CmdTakeMultipleExpeditionRewardScRsp => { - "CmdTakeMultipleExpeditionRewardScRsp" - } - Self::CmdCancelActivityExpeditionScRsp => "CmdCancelActivityExpeditionScRsp", - Self::CmdAcceptActivityExpeditionScRsp => "CmdAcceptActivityExpeditionScRsp", - Self::CmdAcceptExpeditionCsReq => "CmdAcceptExpeditionCsReq", - Self::CmdCancelActivityExpeditionCsReq => "CmdCancelActivityExpeditionCsReq", - Self::CmdTakeMultipleActivityExpeditionRewardScRsp => { - "CmdTakeMultipleActivityExpeditionRewardScRsp" - } - Self::CmdTakeActivityExpeditionRewardScRsp => { - "CmdTakeActivityExpeditionRewardScRsp" - } - Self::CmdTakeExpeditionRewardScRsp => "CmdTakeExpeditionRewardScRsp", - Self::CmdTakeActivityExpeditionRewardCsReq => { - "CmdTakeActivityExpeditionRewardCsReq" - } - Self::CmdCancelExpeditionScRsp => "CmdCancelExpeditionScRsp", - Self::CmdAcceptActivityExpeditionCsReq => "CmdAcceptActivityExpeditionCsReq", + Self::CmdExpeditionDataChangeScNotify => "CmdExpeditionDataChangeScNotify", + Self::CmdGetExpeditionDataCsReq => "CmdGetExpeditionDataCsReq", Self::CmdTakeMultipleActivityExpeditionRewardCsReq => { "CmdTakeMultipleActivityExpeditionRewardCsReq" } - Self::CmdGetExpeditionDataCsReq => "CmdGetExpeditionDataCsReq", - Self::CmdGetExpeditionDataScRsp => "CmdGetExpeditionDataScRsp", - Self::CmdTakeExpeditionRewardCsReq => "CmdTakeExpeditionRewardCsReq", Self::CmdAcceptMultipleExpeditionScRsp => "CmdAcceptMultipleExpeditionScRsp", - Self::CmdAcceptMultipleExpeditionCsReq => "CmdAcceptMultipleExpeditionCsReq", + Self::CmdCancelActivityExpeditionCsReq => "CmdCancelActivityExpeditionCsReq", + Self::CmdGetExpeditionDataScRsp => "CmdGetExpeditionDataScRsp", + Self::CmdTakeExpeditionRewardScRsp => "CmdTakeExpeditionRewardScRsp", + Self::CmdCancelActivityExpeditionScRsp => "CmdCancelActivityExpeditionScRsp", + Self::CmdTakeMultipleExpeditionRewardScRsp => { + "CmdTakeMultipleExpeditionRewardScRsp" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdExpeditionTypeNone" => Some(Self::None), - "CmdExpeditionDataChangeScNotify" => { - Some(Self::CmdExpeditionDataChangeScNotify) + "BPCLGACOBIB_ALOCMFAKBKP" => Some(Self::BpclgacobibAlocmfakbkp), + "CmdAcceptExpeditionCsReq" => Some(Self::CmdAcceptExpeditionCsReq), + "CmdTakeActivityExpeditionRewardCsReq" => { + Some(Self::CmdTakeActivityExpeditionRewardCsReq) } + "CmdAcceptActivityExpeditionCsReq" => { + Some(Self::CmdAcceptActivityExpeditionCsReq) + } + "CmdAcceptMultipleExpeditionCsReq" => { + Some(Self::CmdAcceptMultipleExpeditionCsReq) + } + "CmdTakeExpeditionRewardCsReq" => Some(Self::CmdTakeExpeditionRewardCsReq), + "CmdTakeActivityExpeditionRewardScRsp" => { + Some(Self::CmdTakeActivityExpeditionRewardScRsp) + } + "CmdAcceptActivityExpeditionScRsp" => { + Some(Self::CmdAcceptActivityExpeditionScRsp) + } + "CmdTakeMultipleActivityExpeditionRewardScRsp" => { + Some(Self::CmdTakeMultipleActivityExpeditionRewardScRsp) + } + "CmdCancelExpeditionScRsp" => Some(Self::CmdCancelExpeditionScRsp), "CmdCancelExpeditionCsReq" => Some(Self::CmdCancelExpeditionCsReq), "CmdTakeMultipleExpeditionRewardCsReq" => { Some(Self::CmdTakeMultipleExpeditionRewardCsReq) } "CmdAcceptExpeditionScRsp" => Some(Self::CmdAcceptExpeditionScRsp), - "CmdTakeMultipleExpeditionRewardScRsp" => { - Some(Self::CmdTakeMultipleExpeditionRewardScRsp) - } - "CmdCancelActivityExpeditionScRsp" => { - Some(Self::CmdCancelActivityExpeditionScRsp) - } - "CmdAcceptActivityExpeditionScRsp" => { - Some(Self::CmdAcceptActivityExpeditionScRsp) - } - "CmdAcceptExpeditionCsReq" => Some(Self::CmdAcceptExpeditionCsReq), - "CmdCancelActivityExpeditionCsReq" => { - Some(Self::CmdCancelActivityExpeditionCsReq) - } - "CmdTakeMultipleActivityExpeditionRewardScRsp" => { - Some(Self::CmdTakeMultipleActivityExpeditionRewardScRsp) - } - "CmdTakeActivityExpeditionRewardScRsp" => { - Some(Self::CmdTakeActivityExpeditionRewardScRsp) - } - "CmdTakeExpeditionRewardScRsp" => Some(Self::CmdTakeExpeditionRewardScRsp), - "CmdTakeActivityExpeditionRewardCsReq" => { - Some(Self::CmdTakeActivityExpeditionRewardCsReq) - } - "CmdCancelExpeditionScRsp" => Some(Self::CmdCancelExpeditionScRsp), - "CmdAcceptActivityExpeditionCsReq" => { - Some(Self::CmdAcceptActivityExpeditionCsReq) + "CmdExpeditionDataChangeScNotify" => { + Some(Self::CmdExpeditionDataChangeScNotify) } + "CmdGetExpeditionDataCsReq" => Some(Self::CmdGetExpeditionDataCsReq), "CmdTakeMultipleActivityExpeditionRewardCsReq" => { Some(Self::CmdTakeMultipleActivityExpeditionRewardCsReq) } - "CmdGetExpeditionDataCsReq" => Some(Self::CmdGetExpeditionDataCsReq), - "CmdGetExpeditionDataScRsp" => Some(Self::CmdGetExpeditionDataScRsp), - "CmdTakeExpeditionRewardCsReq" => Some(Self::CmdTakeExpeditionRewardCsReq), "CmdAcceptMultipleExpeditionScRsp" => { Some(Self::CmdAcceptMultipleExpeditionScRsp) } - "CmdAcceptMultipleExpeditionCsReq" => { - Some(Self::CmdAcceptMultipleExpeditionCsReq) + "CmdCancelActivityExpeditionCsReq" => { + Some(Self::CmdCancelActivityExpeditionCsReq) + } + "CmdGetExpeditionDataScRsp" => Some(Self::CmdGetExpeditionDataScRsp), + "CmdTakeExpeditionRewardScRsp" => Some(Self::CmdTakeExpeditionRewardScRsp), + "CmdCancelActivityExpeditionScRsp" => { + Some(Self::CmdCancelActivityExpeditionScRsp) + } + "CmdTakeMultipleExpeditionRewardScRsp" => { + Some(Self::CmdTakeMultipleExpeditionRewardScRsp) } _ => None, } @@ -70870,13 +70779,13 @@ impl CmdExpeditionType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFantasticStoryActivityType { - None = 0, - CmdGetFantasticStoryActivityDataScRsp = 4923, - CmdEnterFantasticStoryActivityStageScRsp = 4983, - CmdFantasticStoryActivityBattleEndScNotify = 4986, - CmdGetFantasticStoryActivityDataCsReq = 4999, - CmdEnterFantasticStoryActivityStageCsReq = 4965, - CmdFinishChapterScNotify = 4998, + EdnlngccaioAlocmfakbkp = 0, + CmdAfganafooij = 4917, + CmdAhgmkogahgd = 4909, + CmdHehlnimbfpm = 4911, + CmdCedicahdico = 4947, + CmdNkgdpmonopd = 4938, + CmdPkieooohpkg = 4951, } impl CmdFantasticStoryActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70885,45 +70794,25 @@ impl CmdFantasticStoryActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFantasticStoryActivityTypeNone", - Self::CmdGetFantasticStoryActivityDataScRsp => { - "CmdGetFantasticStoryActivityDataScRsp" - } - Self::CmdEnterFantasticStoryActivityStageScRsp => { - "CmdEnterFantasticStoryActivityStageScRsp" - } - Self::CmdFantasticStoryActivityBattleEndScNotify => { - "CmdFantasticStoryActivityBattleEndScNotify" - } - Self::CmdGetFantasticStoryActivityDataCsReq => { - "CmdGetFantasticStoryActivityDataCsReq" - } - Self::CmdEnterFantasticStoryActivityStageCsReq => { - "CmdEnterFantasticStoryActivityStageCsReq" - } - Self::CmdFinishChapterScNotify => "CmdFinishChapterScNotify", + Self::EdnlngccaioAlocmfakbkp => "EDNLNGCCAIO_ALOCMFAKBKP", + Self::CmdAfganafooij => "CmdAFGANAFOOIJ", + Self::CmdAhgmkogahgd => "CmdAHGMKOGAHGD", + Self::CmdHehlnimbfpm => "CmdHEHLNIMBFPM", + Self::CmdCedicahdico => "CmdCEDICAHDICO", + Self::CmdNkgdpmonopd => "CmdNKGDPMONOPD", + Self::CmdPkieooohpkg => "CmdPKIEOOOHPKG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFantasticStoryActivityTypeNone" => Some(Self::None), - "CmdGetFantasticStoryActivityDataScRsp" => { - Some(Self::CmdGetFantasticStoryActivityDataScRsp) - } - "CmdEnterFantasticStoryActivityStageScRsp" => { - Some(Self::CmdEnterFantasticStoryActivityStageScRsp) - } - "CmdFantasticStoryActivityBattleEndScNotify" => { - Some(Self::CmdFantasticStoryActivityBattleEndScNotify) - } - "CmdGetFantasticStoryActivityDataCsReq" => { - Some(Self::CmdGetFantasticStoryActivityDataCsReq) - } - "CmdEnterFantasticStoryActivityStageCsReq" => { - Some(Self::CmdEnterFantasticStoryActivityStageCsReq) - } - "CmdFinishChapterScNotify" => Some(Self::CmdFinishChapterScNotify), + "EDNLNGCCAIO_ALOCMFAKBKP" => Some(Self::EdnlngccaioAlocmfakbkp), + "CmdAFGANAFOOIJ" => Some(Self::CmdAfganafooij), + "CmdAHGMKOGAHGD" => Some(Self::CmdAhgmkogahgd), + "CmdHEHLNIMBFPM" => Some(Self::CmdHehlnimbfpm), + "CmdCEDICAHDICO" => Some(Self::CmdCedicahdico), + "CmdNKGDPMONOPD" => Some(Self::CmdNkgdpmonopd), + "CmdPKIEOOOHPKG" => Some(Self::CmdPkieooohpkg), _ => None, } } @@ -70932,34 +70821,34 @@ impl CmdFantasticStoryActivityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFateType { - None = 0, - CmdFateQueryCsReq = 5976, - CmdFateShopLeaveScRsp = 5961, - CmdFateShopBuyGoodsCsReq = 5951, - CmdFateShopLeaveCsReq = 5980, - CmdFateQueryScRsp = 5978, - CmdFateShopSellBuffScRsp = 5953, - CmdFateShopLockGoodsCsReq = 5997, - CmdFateSettleScNotify = 5952, - CmdFateBattleStartCsReq = 5955, - CmdFateSettleCsReq = 5981, - CmdFateShopLockGoodsScRsp = 5983, - CmdFateShopBuyGoodsScRsp = 5995, - CmdFateHandlePendingActionCsReq = 5979, - CmdFateBattleStartScRsp = 5977, - CmdFateChangeLineupScRsp = 5994, - CmdFateShopRefreshGoodsScRsp = 5969, - CmdFateSyncPendingActionScNotify = 5965, - CmdFateTakeExpRewardScRsp = 5956, - CmdFateStartScRsp = 5988, - CmdFateChangeLineupCsReq = 5970, - CmdFateSyncActionResultScNotify = 5962, - CmdFateStartCsReq = 5971, - CmdFateShopSellBuffCsReq = 5993, - CmdFateTakeExpRewardCsReq = 5984, - CmdFateSettleScRsp = 5958, - CmdFateHandlePendingActionScRsp = 5985, - CmdFateShopRefreshGoodsCsReq = 5973, + EckplndlfdeAlocmfakbkp = 0, + CmdOiffdiomiif = 5977, + CmdPkkggnjiceo = 5998, + CmdMmpjpkeodel = 5967, + CmdPanodpajmoj = 5975, + CmdHjfjaafodac = 5985, + CmdJdbgcnbdllo = 5981, + CmdAdmnibijhfl = 5984, + CmdFdcnfhljejh = 5986, + CmdNanefgenlao = 5957, + CmdEbcacfhppcf = 5969, + CmdMicglcnilol = 5960, + CmdCnacenhjlol = 5955, + CmdCjmdehegbdb = 6000, + CmdDmffkcbgkkj = 5952, + CmdPamknhokhdl = 5983, + CmdDhkkjdjokmh = 5996, + CmdFmllcfaegkf = 5993, + CmdNoebcpdgjac = 5974, + CmdEgmpiicelah = 5962, + CmdMdldapdjnmk = 5963, + CmdJlkbppljkij = 5966, + CmdDpolnplhiaa = 5964, + CmdEmopjegphgk = 5970, + CmdFjfkpkdakgf = 5990, + CmdPjccjafepmp = 5976, + CmdHpafbmdjodd = 5959, + CmdGhccoimogjb = 5973, } impl CmdFateType { /// String value of the enum field names used in the ProtoBuf definition. @@ -70968,75 +70857,67 @@ impl CmdFateType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFateTypeNone", - Self::CmdFateQueryCsReq => "CmdFateQueryCsReq", - Self::CmdFateShopLeaveScRsp => "CmdFateShopLeaveScRsp", - Self::CmdFateShopBuyGoodsCsReq => "CmdFateShopBuyGoodsCsReq", - Self::CmdFateShopLeaveCsReq => "CmdFateShopLeaveCsReq", - Self::CmdFateQueryScRsp => "CmdFateQueryScRsp", - Self::CmdFateShopSellBuffScRsp => "CmdFateShopSellBuffScRsp", - Self::CmdFateShopLockGoodsCsReq => "CmdFateShopLockGoodsCsReq", - Self::CmdFateSettleScNotify => "CmdFateSettleScNotify", - Self::CmdFateBattleStartCsReq => "CmdFateBattleStartCsReq", - Self::CmdFateSettleCsReq => "CmdFateSettleCsReq", - Self::CmdFateShopLockGoodsScRsp => "CmdFateShopLockGoodsScRsp", - Self::CmdFateShopBuyGoodsScRsp => "CmdFateShopBuyGoodsScRsp", - Self::CmdFateHandlePendingActionCsReq => "CmdFateHandlePendingActionCsReq", - Self::CmdFateBattleStartScRsp => "CmdFateBattleStartScRsp", - Self::CmdFateChangeLineupScRsp => "CmdFateChangeLineupScRsp", - Self::CmdFateShopRefreshGoodsScRsp => "CmdFateShopRefreshGoodsScRsp", - Self::CmdFateSyncPendingActionScNotify => "CmdFateSyncPendingActionScNotify", - Self::CmdFateTakeExpRewardScRsp => "CmdFateTakeExpRewardScRsp", - Self::CmdFateStartScRsp => "CmdFateStartScRsp", - Self::CmdFateChangeLineupCsReq => "CmdFateChangeLineupCsReq", - Self::CmdFateSyncActionResultScNotify => "CmdFateSyncActionResultScNotify", - Self::CmdFateStartCsReq => "CmdFateStartCsReq", - Self::CmdFateShopSellBuffCsReq => "CmdFateShopSellBuffCsReq", - Self::CmdFateTakeExpRewardCsReq => "CmdFateTakeExpRewardCsReq", - Self::CmdFateSettleScRsp => "CmdFateSettleScRsp", - Self::CmdFateHandlePendingActionScRsp => "CmdFateHandlePendingActionScRsp", - Self::CmdFateShopRefreshGoodsCsReq => "CmdFateShopRefreshGoodsCsReq", + Self::EckplndlfdeAlocmfakbkp => "ECKPLNDLFDE_ALOCMFAKBKP", + Self::CmdOiffdiomiif => "CmdOIFFDIOMIIF", + Self::CmdPkkggnjiceo => "CmdPKKGGNJICEO", + Self::CmdMmpjpkeodel => "CmdMMPJPKEODEL", + Self::CmdPanodpajmoj => "CmdPANODPAJMOJ", + Self::CmdHjfjaafodac => "CmdHJFJAAFODAC", + Self::CmdJdbgcnbdllo => "CmdJDBGCNBDLLO", + Self::CmdAdmnibijhfl => "CmdADMNIBIJHFL", + Self::CmdFdcnfhljejh => "CmdFDCNFHLJEJH", + Self::CmdNanefgenlao => "CmdNANEFGENLAO", + Self::CmdEbcacfhppcf => "CmdEBCACFHPPCF", + Self::CmdMicglcnilol => "CmdMICGLCNILOL", + Self::CmdCnacenhjlol => "CmdCNACENHJLOL", + Self::CmdCjmdehegbdb => "CmdCJMDEHEGBDB", + Self::CmdDmffkcbgkkj => "CmdDMFFKCBGKKJ", + Self::CmdPamknhokhdl => "CmdPAMKNHOKHDL", + Self::CmdDhkkjdjokmh => "CmdDHKKJDJOKMH", + Self::CmdFmllcfaegkf => "CmdFMLLCFAEGKF", + Self::CmdNoebcpdgjac => "CmdNOEBCPDGJAC", + Self::CmdEgmpiicelah => "CmdEGMPIICELAH", + Self::CmdMdldapdjnmk => "CmdMDLDAPDJNMK", + Self::CmdJlkbppljkij => "CmdJLKBPPLJKIJ", + Self::CmdDpolnplhiaa => "CmdDPOLNPLHIAA", + Self::CmdEmopjegphgk => "CmdEMOPJEGPHGK", + Self::CmdFjfkpkdakgf => "CmdFJFKPKDAKGF", + Self::CmdPjccjafepmp => "CmdPJCCJAFEPMP", + Self::CmdHpafbmdjodd => "CmdHPAFBMDJODD", + Self::CmdGhccoimogjb => "CmdGHCCOIMOGJB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFateTypeNone" => Some(Self::None), - "CmdFateQueryCsReq" => Some(Self::CmdFateQueryCsReq), - "CmdFateShopLeaveScRsp" => Some(Self::CmdFateShopLeaveScRsp), - "CmdFateShopBuyGoodsCsReq" => Some(Self::CmdFateShopBuyGoodsCsReq), - "CmdFateShopLeaveCsReq" => Some(Self::CmdFateShopLeaveCsReq), - "CmdFateQueryScRsp" => Some(Self::CmdFateQueryScRsp), - "CmdFateShopSellBuffScRsp" => Some(Self::CmdFateShopSellBuffScRsp), - "CmdFateShopLockGoodsCsReq" => Some(Self::CmdFateShopLockGoodsCsReq), - "CmdFateSettleScNotify" => Some(Self::CmdFateSettleScNotify), - "CmdFateBattleStartCsReq" => Some(Self::CmdFateBattleStartCsReq), - "CmdFateSettleCsReq" => Some(Self::CmdFateSettleCsReq), - "CmdFateShopLockGoodsScRsp" => Some(Self::CmdFateShopLockGoodsScRsp), - "CmdFateShopBuyGoodsScRsp" => Some(Self::CmdFateShopBuyGoodsScRsp), - "CmdFateHandlePendingActionCsReq" => { - Some(Self::CmdFateHandlePendingActionCsReq) - } - "CmdFateBattleStartScRsp" => Some(Self::CmdFateBattleStartScRsp), - "CmdFateChangeLineupScRsp" => Some(Self::CmdFateChangeLineupScRsp), - "CmdFateShopRefreshGoodsScRsp" => Some(Self::CmdFateShopRefreshGoodsScRsp), - "CmdFateSyncPendingActionScNotify" => { - Some(Self::CmdFateSyncPendingActionScNotify) - } - "CmdFateTakeExpRewardScRsp" => Some(Self::CmdFateTakeExpRewardScRsp), - "CmdFateStartScRsp" => Some(Self::CmdFateStartScRsp), - "CmdFateChangeLineupCsReq" => Some(Self::CmdFateChangeLineupCsReq), - "CmdFateSyncActionResultScNotify" => { - Some(Self::CmdFateSyncActionResultScNotify) - } - "CmdFateStartCsReq" => Some(Self::CmdFateStartCsReq), - "CmdFateShopSellBuffCsReq" => Some(Self::CmdFateShopSellBuffCsReq), - "CmdFateTakeExpRewardCsReq" => Some(Self::CmdFateTakeExpRewardCsReq), - "CmdFateSettleScRsp" => Some(Self::CmdFateSettleScRsp), - "CmdFateHandlePendingActionScRsp" => { - Some(Self::CmdFateHandlePendingActionScRsp) - } - "CmdFateShopRefreshGoodsCsReq" => Some(Self::CmdFateShopRefreshGoodsCsReq), + "ECKPLNDLFDE_ALOCMFAKBKP" => Some(Self::EckplndlfdeAlocmfakbkp), + "CmdOIFFDIOMIIF" => Some(Self::CmdOiffdiomiif), + "CmdPKKGGNJICEO" => Some(Self::CmdPkkggnjiceo), + "CmdMMPJPKEODEL" => Some(Self::CmdMmpjpkeodel), + "CmdPANODPAJMOJ" => Some(Self::CmdPanodpajmoj), + "CmdHJFJAAFODAC" => Some(Self::CmdHjfjaafodac), + "CmdJDBGCNBDLLO" => Some(Self::CmdJdbgcnbdllo), + "CmdADMNIBIJHFL" => Some(Self::CmdAdmnibijhfl), + "CmdFDCNFHLJEJH" => Some(Self::CmdFdcnfhljejh), + "CmdNANEFGENLAO" => Some(Self::CmdNanefgenlao), + "CmdEBCACFHPPCF" => Some(Self::CmdEbcacfhppcf), + "CmdMICGLCNILOL" => Some(Self::CmdMicglcnilol), + "CmdCNACENHJLOL" => Some(Self::CmdCnacenhjlol), + "CmdCJMDEHEGBDB" => Some(Self::CmdCjmdehegbdb), + "CmdDMFFKCBGKKJ" => Some(Self::CmdDmffkcbgkkj), + "CmdPAMKNHOKHDL" => Some(Self::CmdPamknhokhdl), + "CmdDHKKJDJOKMH" => Some(Self::CmdDhkkjdjokmh), + "CmdFMLLCFAEGKF" => Some(Self::CmdFmllcfaegkf), + "CmdNOEBCPDGJAC" => Some(Self::CmdNoebcpdgjac), + "CmdEGMPIICELAH" => Some(Self::CmdEgmpiicelah), + "CmdMDLDAPDJNMK" => Some(Self::CmdMdldapdjnmk), + "CmdJLKBPPLJKIJ" => Some(Self::CmdJlkbppljkij), + "CmdDPOLNPLHIAA" => Some(Self::CmdDpolnplhiaa), + "CmdEMOPJEGPHGK" => Some(Self::CmdEmopjegphgk), + "CmdFJFKPKDAKGF" => Some(Self::CmdFjfkpkdakgf), + "CmdPJCCJAFEPMP" => Some(Self::CmdPjccjafepmp), + "CmdHPAFBMDJODD" => Some(Self::CmdHpafbmdjodd), + "CmdGHCCOIMOGJB" => Some(Self::CmdGhccoimogjb), _ => None, } } @@ -71044,59 +70925,41 @@ impl CmdFateType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ghhdmemlkpo { - FateLevelStatusTypeNone = 0, - FateLevelStatusTypeRoundPrepare = 1, - FateLevelStatusTypeRoundHougu = 2, - FateLevelStatusTypeRoundReiju = 3, - FateLevelStatusTypeRoundShop = 4, - FateLevelStatusTypeServerInternalCoinEffectSettle = 5, - FateLevelStatusTypeServerInternalNoncoinEffectSettle = 6, +pub enum Gnkmcjofmgb { + Alocmfakbkp = 0, + Ifocilakdim = 1, + Kmbbdnipaef = 2, + Hpjdcobljpf = 3, + Fajiodhbhkb = 4, + Cjaglpnpfjn = 5, + Lhbgfiplfog = 6, } -impl Ghhdmemlkpo { +impl Gnkmcjofmgb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FateLevelStatusTypeNone => "FATE_LEVEL_STATUS_TYPE_NONE", - Self::FateLevelStatusTypeRoundPrepare => { - "FATE_LEVEL_STATUS_TYPE_ROUND_PREPARE" - } - Self::FateLevelStatusTypeRoundHougu => "FATE_LEVEL_STATUS_TYPE_ROUND_HOUGU", - Self::FateLevelStatusTypeRoundReiju => "FATE_LEVEL_STATUS_TYPE_ROUND_REIJU", - Self::FateLevelStatusTypeRoundShop => "FATE_LEVEL_STATUS_TYPE_ROUND_SHOP", - Self::FateLevelStatusTypeServerInternalCoinEffectSettle => { - "FATE_LEVEL_STATUS_TYPE_SERVER_INTERNAL_COIN_EFFECT_SETTLE" - } - Self::FateLevelStatusTypeServerInternalNoncoinEffectSettle => { - "FATE_LEVEL_STATUS_TYPE_SERVER_INTERNAL_NONCOIN_EFFECT_SETTLE" - } + Self::Alocmfakbkp => "GNKMCJOFMGB_ALOCMFAKBKP", + Self::Ifocilakdim => "GNKMCJOFMGB_IFOCILAKDIM", + Self::Kmbbdnipaef => "GNKMCJOFMGB_KMBBDNIPAEF", + Self::Hpjdcobljpf => "GNKMCJOFMGB_HPJDCOBLJPF", + Self::Fajiodhbhkb => "GNKMCJOFMGB_FAJIODHBHKB", + Self::Cjaglpnpfjn => "GNKMCJOFMGB_CJAGLPNPFJN", + Self::Lhbgfiplfog => "GNKMCJOFMGB_LHBGFIPLFOG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FATE_LEVEL_STATUS_TYPE_NONE" => Some(Self::FateLevelStatusTypeNone), - "FATE_LEVEL_STATUS_TYPE_ROUND_PREPARE" => { - Some(Self::FateLevelStatusTypeRoundPrepare) - } - "FATE_LEVEL_STATUS_TYPE_ROUND_HOUGU" => { - Some(Self::FateLevelStatusTypeRoundHougu) - } - "FATE_LEVEL_STATUS_TYPE_ROUND_REIJU" => { - Some(Self::FateLevelStatusTypeRoundReiju) - } - "FATE_LEVEL_STATUS_TYPE_ROUND_SHOP" => { - Some(Self::FateLevelStatusTypeRoundShop) - } - "FATE_LEVEL_STATUS_TYPE_SERVER_INTERNAL_COIN_EFFECT_SETTLE" => { - Some(Self::FateLevelStatusTypeServerInternalCoinEffectSettle) - } - "FATE_LEVEL_STATUS_TYPE_SERVER_INTERNAL_NONCOIN_EFFECT_SETTLE" => { - Some(Self::FateLevelStatusTypeServerInternalNoncoinEffectSettle) - } + "GNKMCJOFMGB_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "GNKMCJOFMGB_IFOCILAKDIM" => Some(Self::Ifocilakdim), + "GNKMCJOFMGB_KMBBDNIPAEF" => Some(Self::Kmbbdnipaef), + "GNKMCJOFMGB_HPJDCOBLJPF" => Some(Self::Hpjdcobljpf), + "GNKMCJOFMGB_FAJIODHBHKB" => Some(Self::Fajiodhbhkb), + "GNKMCJOFMGB_CJAGLPNPFJN" => Some(Self::Cjaglpnpfjn), + "GNKMCJOFMGB_LHBGFIPLFOG" => Some(Self::Lhbgfiplfog), _ => None, } } @@ -71104,32 +70967,32 @@ impl Ghhdmemlkpo { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mgpocjfmkpm { - FateMasterStatusTypeNone = 0, - FateMasterStatusTypeAlive = 1, - FateMasterStatusTypeDead = 2, - FateMasterStatusTypeBanned = 3, +pub enum Lblpeccjfbp { + Alocmfakbkp = 0, + Cdjmnnbpgnn = 1, + Fofcoleagmo = 2, + Ppdaaddeepj = 3, } -impl Mgpocjfmkpm { +impl Lblpeccjfbp { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FateMasterStatusTypeNone => "FATE_MASTER_STATUS_TYPE_NONE", - Self::FateMasterStatusTypeAlive => "FATE_MASTER_STATUS_TYPE_ALIVE", - Self::FateMasterStatusTypeDead => "FATE_MASTER_STATUS_TYPE_DEAD", - Self::FateMasterStatusTypeBanned => "FATE_MASTER_STATUS_TYPE_BANNED", + Self::Alocmfakbkp => "LBLPECCJFBP_ALOCMFAKBKP", + Self::Cdjmnnbpgnn => "LBLPECCJFBP_CDJMNNBPGNN", + Self::Fofcoleagmo => "LBLPECCJFBP_FOFCOLEAGMO", + Self::Ppdaaddeepj => "LBLPECCJFBP_PPDAADDEEPJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FATE_MASTER_STATUS_TYPE_NONE" => Some(Self::FateMasterStatusTypeNone), - "FATE_MASTER_STATUS_TYPE_ALIVE" => Some(Self::FateMasterStatusTypeAlive), - "FATE_MASTER_STATUS_TYPE_DEAD" => Some(Self::FateMasterStatusTypeDead), - "FATE_MASTER_STATUS_TYPE_BANNED" => Some(Self::FateMasterStatusTypeBanned), + "LBLPECCJFBP_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "LBLPECCJFBP_CDJMNNBPGNN" => Some(Self::Cdjmnnbpgnn), + "LBLPECCJFBP_FOFCOLEAGMO" => Some(Self::Fofcoleagmo), + "LBLPECCJFBP_PPDAADDEEPJ" => Some(Self::Ppdaaddeepj), _ => None, } } @@ -71138,12 +71001,12 @@ impl Mgpocjfmkpm { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFeverTimeActivityType { - None = 0, - CmdFeverTimeActivityBattleEndScNotify = 7154, - CmdGetFeverTimeActivityDataScRsp = 7160, - CmdEnterFeverTimeActivityStageScRsp = 7157, - CmdEnterFeverTimeActivityStageCsReq = 7156, - CmdGetFeverTimeActivityDataCsReq = 7159, + JlajpnkdpalAlocmfakbkp = 0, + CmdFpccjfbknfi = 7157, + CmdOlpaahbahmj = 7151, + CmdFdecmdakedc = 7160, + CmdAdebblihhno = 7153, + CmdCnlbffielgm = 7152, } impl CmdFeverTimeActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -71152,39 +71015,23 @@ impl CmdFeverTimeActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFeverTimeActivityTypeNone", - Self::CmdFeverTimeActivityBattleEndScNotify => { - "CmdFeverTimeActivityBattleEndScNotify" - } - Self::CmdGetFeverTimeActivityDataScRsp => "CmdGetFeverTimeActivityDataScRsp", - Self::CmdEnterFeverTimeActivityStageScRsp => { - "CmdEnterFeverTimeActivityStageScRsp" - } - Self::CmdEnterFeverTimeActivityStageCsReq => { - "CmdEnterFeverTimeActivityStageCsReq" - } - Self::CmdGetFeverTimeActivityDataCsReq => "CmdGetFeverTimeActivityDataCsReq", + Self::JlajpnkdpalAlocmfakbkp => "JLAJPNKDPAL_ALOCMFAKBKP", + Self::CmdFpccjfbknfi => "CmdFPCCJFBKNFI", + Self::CmdOlpaahbahmj => "CmdOLPAAHBAHMJ", + Self::CmdFdecmdakedc => "CmdFDECMDAKEDC", + Self::CmdAdebblihhno => "CmdADEBBLIHHNO", + Self::CmdCnlbffielgm => "CmdCNLBFFIELGM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFeverTimeActivityTypeNone" => Some(Self::None), - "CmdFeverTimeActivityBattleEndScNotify" => { - Some(Self::CmdFeverTimeActivityBattleEndScNotify) - } - "CmdGetFeverTimeActivityDataScRsp" => { - Some(Self::CmdGetFeverTimeActivityDataScRsp) - } - "CmdEnterFeverTimeActivityStageScRsp" => { - Some(Self::CmdEnterFeverTimeActivityStageScRsp) - } - "CmdEnterFeverTimeActivityStageCsReq" => { - Some(Self::CmdEnterFeverTimeActivityStageCsReq) - } - "CmdGetFeverTimeActivityDataCsReq" => { - Some(Self::CmdGetFeverTimeActivityDataCsReq) - } + "JLAJPNKDPAL_ALOCMFAKBKP" => Some(Self::JlajpnkdpalAlocmfakbkp), + "CmdFPCCJFBKNFI" => Some(Self::CmdFpccjfbknfi), + "CmdOLPAAHBAHMJ" => Some(Self::CmdOlpaahbahmj), + "CmdFDECMDAKEDC" => Some(Self::CmdFdecmdakedc), + "CmdADEBBLIHHNO" => Some(Self::CmdAdebblihhno), + "CmdCNLBFFIELGM" => Some(Self::CmdCnlbffielgm), _ => None, } } @@ -71192,35 +71039,35 @@ impl CmdFeverTimeActivityType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pmnfdjcllgb { - FeverTimeBattleRankC = 0, - FeverTimeBattleRankB = 1, - FeverTimeBattleRankA = 2, - FeverTimeBattleRankS = 3, - FeverTimeBattleRankSs = 4, +pub enum Nmimbjmphoh { + Mnbknjbggko = 0, + Jehehpklhad = 1, + Iidapeciong = 2, + Ljphcdficip = 3, + Djgbkgkgpkm = 4, } -impl Pmnfdjcllgb { +impl Nmimbjmphoh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FeverTimeBattleRankC => "FEVER_TIME_BATTLE_RANK_C", - Self::FeverTimeBattleRankB => "FEVER_TIME_BATTLE_RANK_B", - Self::FeverTimeBattleRankA => "FEVER_TIME_BATTLE_RANK_A", - Self::FeverTimeBattleRankS => "FEVER_TIME_BATTLE_RANK_S", - Self::FeverTimeBattleRankSs => "FEVER_TIME_BATTLE_RANK_SS", + Self::Mnbknjbggko => "NMIMBJMPHOH_MNBKNJBGGKO", + Self::Jehehpklhad => "NMIMBJMPHOH_JEHEHPKLHAD", + Self::Iidapeciong => "NMIMBJMPHOH_IIDAPECIONG", + Self::Ljphcdficip => "NMIMBJMPHOH_LJPHCDFICIP", + Self::Djgbkgkgpkm => "NMIMBJMPHOH_DJGBKGKGPKM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FEVER_TIME_BATTLE_RANK_C" => Some(Self::FeverTimeBattleRankC), - "FEVER_TIME_BATTLE_RANK_B" => Some(Self::FeverTimeBattleRankB), - "FEVER_TIME_BATTLE_RANK_A" => Some(Self::FeverTimeBattleRankA), - "FEVER_TIME_BATTLE_RANK_S" => Some(Self::FeverTimeBattleRankS), - "FEVER_TIME_BATTLE_RANK_SS" => Some(Self::FeverTimeBattleRankSs), + "NMIMBJMPHOH_MNBKNJBGGKO" => Some(Self::Mnbknjbggko), + "NMIMBJMPHOH_JEHEHPKLHAD" => Some(Self::Jehehpklhad), + "NMIMBJMPHOH_IIDAPECIONG" => Some(Self::Iidapeciong), + "NMIMBJMPHOH_LJPHCDFICIP" => Some(Self::Ljphcdficip), + "NMIMBJMPHOH_DJGBKGKGPKM" => Some(Self::Djgbkgkgpkm), _ => None, } } @@ -71229,17 +71076,17 @@ impl Pmnfdjcllgb { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFightType { - None = 0, - CmdFightSessionStopScNotify = 30094, - CmdFightGeneralCsReq = 30052, - CmdFightGeneralScRsp = 30019, - CmdFightHeartBeatCsReq = 30083, - CmdFightEnterCsReq = 30099, - CmdFightHeartBeatScRsp = 30086, - CmdFightKickOutScNotify = 30065, - CmdFightGeneralScNotify = 30044, - CmdFightLeaveScNotify = 30098, - CmdFightEnterScRsp = 30023, + NodabihoipdAlocmfakbkp = 0, + CmdFightKickOutScNotify = 30017, + CmdFightLeaveScNotify = 30038, + NodabihoipdFnnmolemicc = 30020, + NodabihoipdLajkkhhmmid = 30047, + CmdFightGeneralScNotify = 30091, + CmdFightHeartBeatScRsp = 30011, + CmdFightGeneralScRsp = 30095, + NodabihoipdFaflbpbdnmj = 30051, + CmdFightSessionStopScNotify = 30089, + CmdFightEnterScRsp = 30009, } impl CmdFightType { /// String value of the enum field names used in the ProtoBuf definition. @@ -71248,32 +71095,32 @@ impl CmdFightType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFightTypeNone", - Self::CmdFightSessionStopScNotify => "CmdFightSessionStopScNotify", - Self::CmdFightGeneralCsReq => "CmdFightGeneralCsReq", - Self::CmdFightGeneralScRsp => "CmdFightGeneralScRsp", - Self::CmdFightHeartBeatCsReq => "CmdFightHeartBeatCsReq", - Self::CmdFightEnterCsReq => "CmdFightEnterCsReq", - Self::CmdFightHeartBeatScRsp => "CmdFightHeartBeatScRsp", + Self::NodabihoipdAlocmfakbkp => "NODABIHOIPD_ALOCMFAKBKP", Self::CmdFightKickOutScNotify => "CmdFightKickOutScNotify", - Self::CmdFightGeneralScNotify => "CmdFightGeneralScNotify", Self::CmdFightLeaveScNotify => "CmdFightLeaveScNotify", + Self::NodabihoipdFnnmolemicc => "NODABIHOIPD_FNNMOLEMICC", + Self::NodabihoipdLajkkhhmmid => "NODABIHOIPD_LAJKKHHMMID", + Self::CmdFightGeneralScNotify => "CmdFightGeneralScNotify", + Self::CmdFightHeartBeatScRsp => "CmdFightHeartBeatScRsp", + Self::CmdFightGeneralScRsp => "CmdFightGeneralScRsp", + Self::NodabihoipdFaflbpbdnmj => "NODABIHOIPD_FAFLBPBDNMJ", + Self::CmdFightSessionStopScNotify => "CmdFightSessionStopScNotify", Self::CmdFightEnterScRsp => "CmdFightEnterScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFightTypeNone" => Some(Self::None), - "CmdFightSessionStopScNotify" => Some(Self::CmdFightSessionStopScNotify), - "CmdFightGeneralCsReq" => Some(Self::CmdFightGeneralCsReq), - "CmdFightGeneralScRsp" => Some(Self::CmdFightGeneralScRsp), - "CmdFightHeartBeatCsReq" => Some(Self::CmdFightHeartBeatCsReq), - "CmdFightEnterCsReq" => Some(Self::CmdFightEnterCsReq), - "CmdFightHeartBeatScRsp" => Some(Self::CmdFightHeartBeatScRsp), + "NODABIHOIPD_ALOCMFAKBKP" => Some(Self::NodabihoipdAlocmfakbkp), "CmdFightKickOutScNotify" => Some(Self::CmdFightKickOutScNotify), - "CmdFightGeneralScNotify" => Some(Self::CmdFightGeneralScNotify), "CmdFightLeaveScNotify" => Some(Self::CmdFightLeaveScNotify), + "NODABIHOIPD_FNNMOLEMICC" => Some(Self::NodabihoipdFnnmolemicc), + "NODABIHOIPD_LAJKKHHMMID" => Some(Self::NodabihoipdLajkkhhmmid), + "CmdFightGeneralScNotify" => Some(Self::CmdFightGeneralScNotify), + "CmdFightHeartBeatScRsp" => Some(Self::CmdFightHeartBeatScRsp), + "CmdFightGeneralScRsp" => Some(Self::CmdFightGeneralScRsp), + "NODABIHOIPD_FAFLBPBDNMJ" => Some(Self::NodabihoipdFaflbpbdnmj), + "CmdFightSessionStopScNotify" => Some(Self::CmdFightSessionStopScNotify), "CmdFightEnterScRsp" => Some(Self::CmdFightEnterScRsp), _ => None, } @@ -71283,14 +71130,14 @@ impl CmdFightType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFightActivityType { - None = 0, - CmdTakeFightActivityRewardScRsp = 3694, - CmdEnterFightActivityStageScRsp = 3683, - CmdFightActivityDataChangeScNotify = 3698, - CmdEnterFightActivityStageCsReq = 3665, - CmdGetFightActivityDataScRsp = 3623, - CmdTakeFightActivityRewardCsReq = 3686, - CmdGetFightActivityDataCsReq = 3699, + BpeaicaemoeAlocmfakbkp = 0, + CmdEnterFightActivityStageCsReq = 3617, + CmdTakeFightActivityRewardCsReq = 3611, + CmdGetFightActivityDataScRsp = 3609, + CmdGetFightActivityDataCsReq = 3647, + CmdEnterFightActivityStageScRsp = 3651, + CmdTakeFightActivityRewardScRsp = 3689, + CmdFightActivityDataChangeScNotify = 3638, } impl CmdFightActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -71299,39 +71146,39 @@ impl CmdFightActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFightActivityTypeNone", - Self::CmdTakeFightActivityRewardScRsp => "CmdTakeFightActivityRewardScRsp", + Self::BpeaicaemoeAlocmfakbkp => "BPEAICAEMOE_ALOCMFAKBKP", + Self::CmdEnterFightActivityStageCsReq => "CmdEnterFightActivityStageCsReq", + Self::CmdTakeFightActivityRewardCsReq => "CmdTakeFightActivityRewardCsReq", + Self::CmdGetFightActivityDataScRsp => "CmdGetFightActivityDataScRsp", + Self::CmdGetFightActivityDataCsReq => "CmdGetFightActivityDataCsReq", Self::CmdEnterFightActivityStageScRsp => "CmdEnterFightActivityStageScRsp", + Self::CmdTakeFightActivityRewardScRsp => "CmdTakeFightActivityRewardScRsp", Self::CmdFightActivityDataChangeScNotify => { "CmdFightActivityDataChangeScNotify" } - Self::CmdEnterFightActivityStageCsReq => "CmdEnterFightActivityStageCsReq", - Self::CmdGetFightActivityDataScRsp => "CmdGetFightActivityDataScRsp", - Self::CmdTakeFightActivityRewardCsReq => "CmdTakeFightActivityRewardCsReq", - Self::CmdGetFightActivityDataCsReq => "CmdGetFightActivityDataCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFightActivityTypeNone" => Some(Self::None), - "CmdTakeFightActivityRewardScRsp" => { - Some(Self::CmdTakeFightActivityRewardScRsp) + "BPEAICAEMOE_ALOCMFAKBKP" => Some(Self::BpeaicaemoeAlocmfakbkp), + "CmdEnterFightActivityStageCsReq" => { + Some(Self::CmdEnterFightActivityStageCsReq) } + "CmdTakeFightActivityRewardCsReq" => { + Some(Self::CmdTakeFightActivityRewardCsReq) + } + "CmdGetFightActivityDataScRsp" => Some(Self::CmdGetFightActivityDataScRsp), + "CmdGetFightActivityDataCsReq" => Some(Self::CmdGetFightActivityDataCsReq), "CmdEnterFightActivityStageScRsp" => { Some(Self::CmdEnterFightActivityStageScRsp) } + "CmdTakeFightActivityRewardScRsp" => { + Some(Self::CmdTakeFightActivityRewardScRsp) + } "CmdFightActivityDataChangeScNotify" => { Some(Self::CmdFightActivityDataChangeScNotify) } - "CmdEnterFightActivityStageCsReq" => { - Some(Self::CmdEnterFightActivityStageCsReq) - } - "CmdGetFightActivityDataScRsp" => Some(Self::CmdGetFightActivityDataScRsp), - "CmdTakeFightActivityRewardCsReq" => { - Some(Self::CmdTakeFightActivityRewardCsReq) - } - "CmdGetFightActivityDataCsReq" => Some(Self::CmdGetFightActivityDataCsReq), _ => None, } } @@ -71340,7 +71187,7 @@ impl CmdFightActivityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFightCakeRaceType { - None = 0, + GgmedefmdbhAlocmfakbkp = 0, } impl CmdFightCakeRaceType { /// String value of the enum field names used in the ProtoBuf definition. @@ -71349,13 +71196,13 @@ impl CmdFightCakeRaceType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFightCakeRaceTypeNone", + Self::GgmedefmdbhAlocmfakbkp => "GGMEDEFMDBH_ALOCMFAKBKP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFightCakeRaceTypeNone" => Some(Self::None), + "GGMEDEFMDBH_ALOCMFAKBKP" => Some(Self::GgmedefmdbhAlocmfakbkp), _ => None, } } @@ -71363,28 +71210,26 @@ impl CmdFightCakeRaceType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Aejkifadgjb { - FightCakeRaceEventTypeNone = 0, - FightCakeRaceEventTypePlayerEnd = 1, +pub enum Mmlbclbhhmd { + Alocmfakbkp = 0, + Fipbdbchgkc = 1, } -impl Aejkifadgjb { +impl Mmlbclbhhmd { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightCakeRaceEventTypeNone => "FightCakeRaceEventTypeNone", - Self::FightCakeRaceEventTypePlayerEnd => "FightCakeRaceEventTypePlayerEnd", + Self::Alocmfakbkp => "MMLBCLBHHMD_ALOCMFAKBKP", + Self::Fipbdbchgkc => "MMLBCLBHHMD_FIPBDBCHGKC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FightCakeRaceEventTypeNone" => Some(Self::FightCakeRaceEventTypeNone), - "FightCakeRaceEventTypePlayerEnd" => { - Some(Self::FightCakeRaceEventTypePlayerEnd) - } + "MMLBCLBHHMD_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "MMLBCLBHHMD_FIPBDBCHGKC" => Some(Self::Fipbdbchgkc), _ => None, } } @@ -71392,42 +71237,32 @@ impl Aejkifadgjb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pohheefaeja { - FightCakeRaceAbilityOwnerNone = 0, - FightCakeRaceAbilityOwnerCat = 1, - FightCakeRaceAbilityOwnerPlayer = 2, - FightCakeRaceAbilityOwnerGame = 3, +pub enum Kdibbpcjgbo { + Alafhmjpclb = 0, + Oakccljapgg = 1, + Khbdcckofke = 2, + Meagdaehfom = 3, } -impl Pohheefaeja { +impl Kdibbpcjgbo { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightCakeRaceAbilityOwnerNone => "FIGHT_CAKE_RACE_ABILITY_OWNER_NONE", - Self::FightCakeRaceAbilityOwnerCat => "FIGHT_CAKE_RACE_ABILITY_OWNER_CAT", - Self::FightCakeRaceAbilityOwnerPlayer => { - "FIGHT_CAKE_RACE_ABILITY_OWNER_PLAYER" - } - Self::FightCakeRaceAbilityOwnerGame => "FIGHT_CAKE_RACE_ABILITY_OWNER_GAME", + Self::Alafhmjpclb => "KDIBBPCJGBO_ALAFHMJPCLB", + Self::Oakccljapgg => "KDIBBPCJGBO_OAKCCLJAPGG", + Self::Khbdcckofke => "KDIBBPCJGBO_KHBDCCKOFKE", + Self::Meagdaehfom => "KDIBBPCJGBO_MEAGDAEHFOM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FIGHT_CAKE_RACE_ABILITY_OWNER_NONE" => { - Some(Self::FightCakeRaceAbilityOwnerNone) - } - "FIGHT_CAKE_RACE_ABILITY_OWNER_CAT" => { - Some(Self::FightCakeRaceAbilityOwnerCat) - } - "FIGHT_CAKE_RACE_ABILITY_OWNER_PLAYER" => { - Some(Self::FightCakeRaceAbilityOwnerPlayer) - } - "FIGHT_CAKE_RACE_ABILITY_OWNER_GAME" => { - Some(Self::FightCakeRaceAbilityOwnerGame) - } + "KDIBBPCJGBO_ALAFHMJPCLB" => Some(Self::Alafhmjpclb), + "KDIBBPCJGBO_OAKCCLJAPGG" => Some(Self::Oakccljapgg), + "KDIBBPCJGBO_KHBDCCKOFKE" => Some(Self::Khbdcckofke), + "KDIBBPCJGBO_MEAGDAEHFOM" => Some(Self::Meagdaehfom), _ => None, } } @@ -71436,15 +71271,15 @@ impl Pohheefaeja { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFightFestType { - None = 0, - CmdFightFestUpdateCoinNotify = 7294, - CmdStartFightFestCsReq = 7271, - CmdGetFightFestDataCsReq = 7276, - CmdStartFightFestScRsp = 7288, - CmdGetFightFestDataScRsp = 7278, - CmdFightFestUpdateChallengeRecordNotify = 7270, - CmdFightFestUnlockSkillNotify = 7277, - CmdFightFestScoreUpdateNotify = 7255, + HipcfpkdapjAlocmfakbkp = 0, + CmdDoeamnckpnn = 7252, + CmdLmaolbgbfhh = 7285, + CmdCgaagokhiem = 7255, + CmdCjdinmhaicj = 7275, + CmdGkialgmgjnd = 7281, + CmdGbfldclcedo = 7283, + CmdHckpaancjeh = 7298, + CmdKfagmgmmhgc = 7269, } impl CmdFightFestType { /// String value of the enum field names used in the ProtoBuf definition. @@ -71453,33 +71288,29 @@ impl CmdFightFestType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFightFestTypeNone", - Self::CmdFightFestUpdateCoinNotify => "CmdFightFestUpdateCoinNotify", - Self::CmdStartFightFestCsReq => "CmdStartFightFestCsReq", - Self::CmdGetFightFestDataCsReq => "CmdGetFightFestDataCsReq", - Self::CmdStartFightFestScRsp => "CmdStartFightFestScRsp", - Self::CmdGetFightFestDataScRsp => "CmdGetFightFestDataScRsp", - Self::CmdFightFestUpdateChallengeRecordNotify => { - "CmdFightFestUpdateChallengeRecordNotify" - } - Self::CmdFightFestUnlockSkillNotify => "CmdFightFestUnlockSkillNotify", - Self::CmdFightFestScoreUpdateNotify => "CmdFightFestScoreUpdateNotify", + Self::HipcfpkdapjAlocmfakbkp => "HIPCFPKDAPJ_ALOCMFAKBKP", + Self::CmdDoeamnckpnn => "CmdDOEAMNCKPNN", + Self::CmdLmaolbgbfhh => "CmdLMAOLBGBFHH", + Self::CmdCgaagokhiem => "CmdCGAAGOKHIEM", + Self::CmdCjdinmhaicj => "CmdCJDINMHAICJ", + Self::CmdGkialgmgjnd => "CmdGKIALGMGJND", + Self::CmdGbfldclcedo => "CmdGBFLDCLCEDO", + Self::CmdHckpaancjeh => "CmdHCKPAANCJEH", + Self::CmdKfagmgmmhgc => "CmdKFAGMGMMHGC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFightFestTypeNone" => Some(Self::None), - "CmdFightFestUpdateCoinNotify" => Some(Self::CmdFightFestUpdateCoinNotify), - "CmdStartFightFestCsReq" => Some(Self::CmdStartFightFestCsReq), - "CmdGetFightFestDataCsReq" => Some(Self::CmdGetFightFestDataCsReq), - "CmdStartFightFestScRsp" => Some(Self::CmdStartFightFestScRsp), - "CmdGetFightFestDataScRsp" => Some(Self::CmdGetFightFestDataScRsp), - "CmdFightFestUpdateChallengeRecordNotify" => { - Some(Self::CmdFightFestUpdateChallengeRecordNotify) - } - "CmdFightFestUnlockSkillNotify" => Some(Self::CmdFightFestUnlockSkillNotify), - "CmdFightFestScoreUpdateNotify" => Some(Self::CmdFightFestScoreUpdateNotify), + "HIPCFPKDAPJ_ALOCMFAKBKP" => Some(Self::HipcfpkdapjAlocmfakbkp), + "CmdDOEAMNCKPNN" => Some(Self::CmdDoeamnckpnn), + "CmdLMAOLBGBFHH" => Some(Self::CmdLmaolbgbfhh), + "CmdCGAAGOKHIEM" => Some(Self::CmdCgaagokhiem), + "CmdCJDINMHAICJ" => Some(Self::CmdCjdinmhaicj), + "CmdGKIALGMGJND" => Some(Self::CmdGkialgmgjnd), + "CmdGBFLDCLCEDO" => Some(Self::CmdGbfldclcedo), + "CmdHCKPAANCJEH" => Some(Self::CmdHckpaancjeh), + "CmdKFAGMGMMHGC" => Some(Self::CmdKfagmgmmhgc), _ => None, } } @@ -71487,35 +71318,35 @@ impl CmdFightFestType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hgdapjpkffb { - FightFestBattleRankC = 0, - FightFestBattleRankB = 1, - FightFestBattleRankA = 2, - FightFestBattleRankS = 3, - FightFestBattleRankSs = 4, +pub enum Hakpdjkhecm { + Mnbknjbggko = 0, + Jehehpklhad = 1, + Iidapeciong = 2, + Ljphcdficip = 3, + Djgbkgkgpkm = 4, } -impl Hgdapjpkffb { +impl Hakpdjkhecm { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightFestBattleRankC => "FIGHT_FEST_BATTLE_RANK_C", - Self::FightFestBattleRankB => "FIGHT_FEST_BATTLE_RANK_B", - Self::FightFestBattleRankA => "FIGHT_FEST_BATTLE_RANK_A", - Self::FightFestBattleRankS => "FIGHT_FEST_BATTLE_RANK_S", - Self::FightFestBattleRankSs => "FIGHT_FEST_BATTLE_RANK_SS", + Self::Mnbknjbggko => "HAKPDJKHECM_MNBKNJBGGKO", + Self::Jehehpklhad => "HAKPDJKHECM_JEHEHPKLHAD", + Self::Iidapeciong => "HAKPDJKHECM_IIDAPECIONG", + Self::Ljphcdficip => "HAKPDJKHECM_LJPHCDFICIP", + Self::Djgbkgkgpkm => "HAKPDJKHECM_DJGBKGKGPKM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FIGHT_FEST_BATTLE_RANK_C" => Some(Self::FightFestBattleRankC), - "FIGHT_FEST_BATTLE_RANK_B" => Some(Self::FightFestBattleRankB), - "FIGHT_FEST_BATTLE_RANK_A" => Some(Self::FightFestBattleRankA), - "FIGHT_FEST_BATTLE_RANK_S" => Some(Self::FightFestBattleRankS), - "FIGHT_FEST_BATTLE_RANK_SS" => Some(Self::FightFestBattleRankSs), + "HAKPDJKHECM_MNBKNJBGGKO" => Some(Self::Mnbknjbggko), + "HAKPDJKHECM_JEHEHPKLHAD" => Some(Self::Jehehpklhad), + "HAKPDJKHECM_IIDAPECIONG" => Some(Self::Iidapeciong), + "HAKPDJKHECM_LJPHCDFICIP" => Some(Self::Ljphcdficip), + "HAKPDJKHECM_DJGBKGKGPKM" => Some(Self::Djgbkgkgpkm), _ => None, } } @@ -71523,35 +71354,35 @@ impl Hgdapjpkffb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Aploagdibki { - FightFestTypeNone = 0, - FightFestTypeMain = 1, - FightFestTypeScore = 2, - FightFestTypeChallenge = 3, - FightFestTypeTeach = 4, +pub enum Nadagifciba { + Alocmfakbkp = 0, + Hepnmniclem = 1, + Maldmkjldlp = 2, + Fammakbffnl = 3, + Aknnhjaplio = 4, } -impl Aploagdibki { +impl Nadagifciba { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightFestTypeNone => "FIGHT_FEST_TYPE_NONE", - Self::FightFestTypeMain => "FIGHT_FEST_TYPE_MAIN", - Self::FightFestTypeScore => "FIGHT_FEST_TYPE_SCORE", - Self::FightFestTypeChallenge => "FIGHT_FEST_TYPE_CHALLENGE", - Self::FightFestTypeTeach => "FIGHT_FEST_TYPE_TEACH", + Self::Alocmfakbkp => "NADAGIFCIBA_ALOCMFAKBKP", + Self::Hepnmniclem => "NADAGIFCIBA_HEPNMNICLEM", + Self::Maldmkjldlp => "NADAGIFCIBA_MALDMKJLDLP", + Self::Fammakbffnl => "NADAGIFCIBA_FAMMAKBFFNL", + Self::Aknnhjaplio => "NADAGIFCIBA_AKNNHJAPLIO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FIGHT_FEST_TYPE_NONE" => Some(Self::FightFestTypeNone), - "FIGHT_FEST_TYPE_MAIN" => Some(Self::FightFestTypeMain), - "FIGHT_FEST_TYPE_SCORE" => Some(Self::FightFestTypeScore), - "FIGHT_FEST_TYPE_CHALLENGE" => Some(Self::FightFestTypeChallenge), - "FIGHT_FEST_TYPE_TEACH" => Some(Self::FightFestTypeTeach), + "NADAGIFCIBA_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "NADAGIFCIBA_HEPNMNICLEM" => Some(Self::Hepnmniclem), + "NADAGIFCIBA_MALDMKJLDLP" => Some(Self::Maldmkjldlp), + "NADAGIFCIBA_FAMMAKBFFNL" => Some(Self::Fammakbffnl), + "NADAGIFCIBA_AKNNHJAPLIO" => Some(Self::Aknnhjaplio), _ => None, } } @@ -71560,7 +71391,7 @@ impl Aploagdibki { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFightMarbleType { - None = 0, + IeipdhakdpfAlocmfakbkp = 0, } impl CmdFightMarbleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -71569,13 +71400,13 @@ impl CmdFightMarbleType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFightMarbleTypeNone", + Self::IeipdhakdpfAlocmfakbkp => "IEIPDHAKDPF_ALOCMFAKBKP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFightMarbleTypeNone" => Some(Self::None), + "IEIPDHAKDPF_ALOCMFAKBKP" => Some(Self::IeipdhakdpfAlocmfakbkp), _ => None, } } @@ -71583,29 +71414,29 @@ impl CmdFightMarbleType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mjbikbcpkai { - FightMarbleEventTypeNone = 0, - FightMarbleEventTypePlayerEnd = 1, - FightMarbleEventTypeGameEnd = 2, +pub enum Delmgjmlfbc { + Alocmfakbkp = 0, + Fipbdbchgkc = 1, + Onndfgfoncm = 2, } -impl Mjbikbcpkai { +impl Delmgjmlfbc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::FightMarbleEventTypeNone => "FightMarbleEventTypeNone", - Self::FightMarbleEventTypePlayerEnd => "FightMarbleEventTypePlayerEnd", - Self::FightMarbleEventTypeGameEnd => "FightMarbleEventTypeGameEnd", + Self::Alocmfakbkp => "DELMGJMLFBC_ALOCMFAKBKP", + Self::Fipbdbchgkc => "DELMGJMLFBC_FIPBDBCHGKC", + Self::Onndfgfoncm => "DELMGJMLFBC_ONNDFGFONCM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FightMarbleEventTypeNone" => Some(Self::FightMarbleEventTypeNone), - "FightMarbleEventTypePlayerEnd" => Some(Self::FightMarbleEventTypePlayerEnd), - "FightMarbleEventTypeGameEnd" => Some(Self::FightMarbleEventTypeGameEnd), + "DELMGJMLFBC_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "DELMGJMLFBC_FIPBDBCHGKC" => Some(Self::Fipbdbchgkc), + "DELMGJMLFBC_ONNDFGFONCM" => Some(Self::Onndfgfoncm), _ => None, } } @@ -71613,29 +71444,29 @@ impl Mjbikbcpkai { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jomkpegefmp { - MarbleTeamTypeNone = 0, - MarbleTeamTypeTeamA = 1, - MarbleTeamTypeTeamB = 2, +pub enum Knbjclilnkp { + Lajhlanbocl = 0, + Hlnbhpfoono = 1, + Bmgigdaioak = 2, } -impl Jomkpegefmp { +impl Knbjclilnkp { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MarbleTeamTypeNone => "MARBLE_TEAM_TYPE_NONE", - Self::MarbleTeamTypeTeamA => "MARBLE_TEAM_TYPE_TEAM_A", - Self::MarbleTeamTypeTeamB => "MARBLE_TEAM_TYPE_TEAM_B", + Self::Lajhlanbocl => "KNBJCLILNKP_LAJHLANBOCL", + Self::Hlnbhpfoono => "KNBJCLILNKP_HLNBHPFOONO", + Self::Bmgigdaioak => "KNBJCLILNKP_BMGIGDAIOAK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MARBLE_TEAM_TYPE_NONE" => Some(Self::MarbleTeamTypeNone), - "MARBLE_TEAM_TYPE_TEAM_A" => Some(Self::MarbleTeamTypeTeamA), - "MARBLE_TEAM_TYPE_TEAM_B" => Some(Self::MarbleTeamTypeTeamB), + "KNBJCLILNKP_LAJHLANBOCL" => Some(Self::Lajhlanbocl), + "KNBJCLILNKP_HLNBHPFOONO" => Some(Self::Hlnbhpfoono), + "KNBJCLILNKP_BMGIGDAIOAK" => Some(Self::Bmgigdaioak), _ => None, } } @@ -71643,29 +71474,29 @@ impl Jomkpegefmp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Eeibhjpnjcf { - MarblePlayerStateDefault = 0, - MarblePlayerStateLeave = 1, - MarblePlayerStateKickOut = 2, +pub enum Dbigboeemkb { + Bgijodlnmhf = 0, + Jfmfhpidjin = 1, + Ehgfmmcbgek = 2, } -impl Eeibhjpnjcf { +impl Dbigboeemkb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MarblePlayerStateDefault => "MARBLE_PLAYER_STATE_Default", - Self::MarblePlayerStateLeave => "MARBLE_PLAYER_STATE_Leave", - Self::MarblePlayerStateKickOut => "MARBLE_PLAYER_STATE_KickOut", + Self::Bgijodlnmhf => "DBIGBOEEMKB_BGIJODLNMHF", + Self::Jfmfhpidjin => "DBIGBOEEMKB_JFMFHPIDJIN", + Self::Ehgfmmcbgek => "DBIGBOEEMKB_EHGFMMCBGEK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MARBLE_PLAYER_STATE_Default" => Some(Self::MarblePlayerStateDefault), - "MARBLE_PLAYER_STATE_Leave" => Some(Self::MarblePlayerStateLeave), - "MARBLE_PLAYER_STATE_KickOut" => Some(Self::MarblePlayerStateKickOut), + "DBIGBOEEMKB_BGIJODLNMHF" => Some(Self::Bgijodlnmhf), + "DBIGBOEEMKB_JFMFHPIDJIN" => Some(Self::Jfmfhpidjin), + "DBIGBOEEMKB_EHGFMMCBGEK" => Some(Self::Ehgfmmcbgek), _ => None, } } @@ -71673,50 +71504,50 @@ impl Eeibhjpnjcf { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Impkpkamiaf { - MarbleSyncTypeNone = 0, - MarbleSyncTypeLoading = 1, - MarbleSyncTypePerformance = 2, - MarbleSyncTypeRoundStart = 3, - MarbleSyncTypeRoundEnd = 4, - MarbleSyncTypeSwitchRound = 6, - MarbleSyncTypeUseTech = 7, - MarbleSyncTypeSimulateStart = 8, - MarbleSyncTypeEmoji = 9, - MarbleSyncTypeAchievement = 10, +pub enum Ajlhaglidde { + Cenelnkebkk = 0, + Glmfaaealgj = 1, + Nahakkdpgig = 2, + Anfmpkglogf = 3, + Ihdfgibnapb = 4, + Ljnnmdglagb = 6, + Bjjkgohconm = 7, + Gonokkoamff = 8, + Opclpgdicbd = 9, + Gfpklcipbff = 10, } -impl Impkpkamiaf { +impl Ajlhaglidde { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MarbleSyncTypeNone => "MARBLE_SYNC_TYPE_NONE", - Self::MarbleSyncTypeLoading => "MARBLE_SYNC_TYPE_LOADING", - Self::MarbleSyncTypePerformance => "MARBLE_SYNC_TYPE_PERFORMANCE", - Self::MarbleSyncTypeRoundStart => "MARBLE_SYNC_TYPE_ROUND_START", - Self::MarbleSyncTypeRoundEnd => "MARBLE_SYNC_TYPE_ROUND_END", - Self::MarbleSyncTypeSwitchRound => "MARBLE_SYNC_TYPE_SWITCH_ROUND", - Self::MarbleSyncTypeUseTech => "MARBLE_SYNC_TYPE_USE_TECH", - Self::MarbleSyncTypeSimulateStart => "MARBLE_SYNC_TYPE_SIMULATE_START", - Self::MarbleSyncTypeEmoji => "MARBLE_SYNC_TYPE_EMOJI", - Self::MarbleSyncTypeAchievement => "MARBLE_SYNC_TYPE_ACHIEVEMENT", + Self::Cenelnkebkk => "AJLHAGLIDDE_CENELNKEBKK", + Self::Glmfaaealgj => "AJLHAGLIDDE_GLMFAAEALGJ", + Self::Nahakkdpgig => "AJLHAGLIDDE_NAHAKKDPGIG", + Self::Anfmpkglogf => "AJLHAGLIDDE_ANFMPKGLOGF", + Self::Ihdfgibnapb => "AJLHAGLIDDE_IHDFGIBNAPB", + Self::Ljnnmdglagb => "AJLHAGLIDDE_LJNNMDGLAGB", + Self::Bjjkgohconm => "AJLHAGLIDDE_BJJKGOHCONM", + Self::Gonokkoamff => "AJLHAGLIDDE_GONOKKOAMFF", + Self::Opclpgdicbd => "AJLHAGLIDDE_OPCLPGDICBD", + Self::Gfpklcipbff => "AJLHAGLIDDE_GFPKLCIPBFF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MARBLE_SYNC_TYPE_NONE" => Some(Self::MarbleSyncTypeNone), - "MARBLE_SYNC_TYPE_LOADING" => Some(Self::MarbleSyncTypeLoading), - "MARBLE_SYNC_TYPE_PERFORMANCE" => Some(Self::MarbleSyncTypePerformance), - "MARBLE_SYNC_TYPE_ROUND_START" => Some(Self::MarbleSyncTypeRoundStart), - "MARBLE_SYNC_TYPE_ROUND_END" => Some(Self::MarbleSyncTypeRoundEnd), - "MARBLE_SYNC_TYPE_SWITCH_ROUND" => Some(Self::MarbleSyncTypeSwitchRound), - "MARBLE_SYNC_TYPE_USE_TECH" => Some(Self::MarbleSyncTypeUseTech), - "MARBLE_SYNC_TYPE_SIMULATE_START" => Some(Self::MarbleSyncTypeSimulateStart), - "MARBLE_SYNC_TYPE_EMOJI" => Some(Self::MarbleSyncTypeEmoji), - "MARBLE_SYNC_TYPE_ACHIEVEMENT" => Some(Self::MarbleSyncTypeAchievement), + "AJLHAGLIDDE_CENELNKEBKK" => Some(Self::Cenelnkebkk), + "AJLHAGLIDDE_GLMFAAEALGJ" => Some(Self::Glmfaaealgj), + "AJLHAGLIDDE_NAHAKKDPGIG" => Some(Self::Nahakkdpgig), + "AJLHAGLIDDE_ANFMPKGLOGF" => Some(Self::Anfmpkglogf), + "AJLHAGLIDDE_IHDFGIBNAPB" => Some(Self::Ihdfgibnapb), + "AJLHAGLIDDE_LJNNMDGLAGB" => Some(Self::Ljnnmdglagb), + "AJLHAGLIDDE_BJJKGOHCONM" => Some(Self::Bjjkgohconm), + "AJLHAGLIDDE_GONOKKOAMFF" => Some(Self::Gonokkoamff), + "AJLHAGLIDDE_OPCLPGDICBD" => Some(Self::Opclpgdicbd), + "AJLHAGLIDDE_GFPKLCIPBFF" => Some(Self::Gfpklcipbff), _ => None, } } @@ -71724,101 +71555,101 @@ impl Impkpkamiaf { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pajnhiagodd { - MarbleFrameTypeNone = 0, - MarbleFrameTypeActionStart = 1, - MarbleFrameTypeActionEnd = 2, - MarbleFrameTypeRoundStart = 3, - MarbleFrameTypeRoundEnd = 4, - MarbleFrameTypeRevive = 5, - MarbleFrameTypeHpChange = 6, - MarbleFrameTypeLaunch = 7, - MarbleFrameTypeStop = 8, - MarbleFrameTypeCollide = 9, - MarbleFrameTypeEffect = 10, - MarbleFrameTypeBuffText = 11, - MarbleFrameTypeSkillUi = 12, - MarbleFrameTypeAbsorb = 13, - MarbleFrameTypeOnOffField = 14, - MarbleFrameTypeDead = 15, - MarbleFrameTypeUseTech = 16, - MarbleFrameTypeTechActive = 17, - MarbleFrameTypeGhostFire = 18, - MarbleFrameTypeTrigger = 19, - MarbleFrameTypeSwallow = 20, - MarbleFrameTypeRadius = 21, - MarbleFrameTypeHideLine = 22, - MarbleFrameTypeTeamScore = 23, - MarbleFrameTypeEmojiPackage = 24, - MarbleFrameTypeChangeSpeed = 25, - MarbleFrameTypeAddShield = 26, +pub enum Giehoaonegk { + Baemaaehglc = 0, + Eekfoplbnph = 1, + Adjboncmmjl = 2, + Bppldlaeogk = 3, + Ihgcocdcmnk = 4, + Jnmnhpkfill = 5, + Ifccfgogaii = 6, + Onldglopnij = 7, + Gfefjpacamn = 8, + Iajighfcile = 9, + Cdgdpgkieeg = 10, + Pneeaejfemf = 11, + Lahpkcepack = 12, + Lkmpbdbbbed = 13, + Dhbfoekmnba = 14, + Opinoigbaec = 15, + Ocfcjaiapjb = 16, + Lgaeghkjlen = 17, + Kifandhpbga = 18, + Loemnfhdkog = 19, + Pnlponhffgm = 20, + Bgepcbdblbp = 21, + Ejikdmdagaa = 22, + Ejcehihkgib = 23, + Ilfmfpkfdnk = 24, + Icpembdgbco = 25, + Beebcaehgbn = 26, } -impl Pajnhiagodd { +impl Giehoaonegk { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MarbleFrameTypeNone => "MARBLE_FRAME_TYPE_NONE", - Self::MarbleFrameTypeActionStart => "MARBLE_FRAME_TYPE_ACTION_START", - Self::MarbleFrameTypeActionEnd => "MARBLE_FRAME_TYPE_ACTION_END", - Self::MarbleFrameTypeRoundStart => "MARBLE_FRAME_TYPE_ROUND_START", - Self::MarbleFrameTypeRoundEnd => "MARBLE_FRAME_TYPE_ROUND_END", - Self::MarbleFrameTypeRevive => "MARBLE_FRAME_TYPE_REVIVE", - Self::MarbleFrameTypeHpChange => "MARBLE_FRAME_TYPE_HP_CHANGE", - Self::MarbleFrameTypeLaunch => "MARBLE_FRAME_TYPE_LAUNCH", - Self::MarbleFrameTypeStop => "MARBLE_FRAME_TYPE_STOP", - Self::MarbleFrameTypeCollide => "MARBLE_FRAME_TYPE_COLLIDE", - Self::MarbleFrameTypeEffect => "MARBLE_FRAME_TYPE_EFFECT", - Self::MarbleFrameTypeBuffText => "MARBLE_FRAME_TYPE_BUFF_TEXT", - Self::MarbleFrameTypeSkillUi => "MARBLE_FRAME_TYPE_SKILL_UI", - Self::MarbleFrameTypeAbsorb => "MARBLE_FRAME_TYPE_ABSORB", - Self::MarbleFrameTypeOnOffField => "MARBLE_FRAME_TYPE_ON_OFF_FIELD", - Self::MarbleFrameTypeDead => "MARBLE_FRAME_TYPE_DEAD", - Self::MarbleFrameTypeUseTech => "MARBLE_FRAME_TYPE_USE_TECH", - Self::MarbleFrameTypeTechActive => "MARBLE_FRAME_TYPE_TECH_ACTIVE", - Self::MarbleFrameTypeGhostFire => "MARBLE_FRAME_TYPE_GHOST_FIRE", - Self::MarbleFrameTypeTrigger => "MARBLE_FRAME_TYPE_TRIGGER", - Self::MarbleFrameTypeSwallow => "MARBLE_FRAME_TYPE_SWALLOW", - Self::MarbleFrameTypeRadius => "MARBLE_FRAME_TYPE_RADIUS", - Self::MarbleFrameTypeHideLine => "MARBLE_FRAME_TYPE_HIDE_LINE", - Self::MarbleFrameTypeTeamScore => "MARBLE_FRAME_TYPE_TEAM_SCORE", - Self::MarbleFrameTypeEmojiPackage => "MARBLE_FRAME_TYPE_EMOJI_PACKAGE", - Self::MarbleFrameTypeChangeSpeed => "MARBLE_FRAME_TYPE_CHANGE_SPEED", - Self::MarbleFrameTypeAddShield => "MARBLE_FRAME_TYPE_ADD_SHIELD", + Self::Baemaaehglc => "GIEHOAONEGK_BAEMAAEHGLC", + Self::Eekfoplbnph => "GIEHOAONEGK_EEKFOPLBNPH", + Self::Adjboncmmjl => "GIEHOAONEGK_ADJBONCMMJL", + Self::Bppldlaeogk => "GIEHOAONEGK_BPPLDLAEOGK", + Self::Ihgcocdcmnk => "GIEHOAONEGK_IHGCOCDCMNK", + Self::Jnmnhpkfill => "GIEHOAONEGK_JNMNHPKFILL", + Self::Ifccfgogaii => "GIEHOAONEGK_IFCCFGOGAII", + Self::Onldglopnij => "GIEHOAONEGK_ONLDGLOPNIJ", + Self::Gfefjpacamn => "GIEHOAONEGK_GFEFJPACAMN", + Self::Iajighfcile => "GIEHOAONEGK_IAJIGHFCILE", + Self::Cdgdpgkieeg => "GIEHOAONEGK_CDGDPGKIEEG", + Self::Pneeaejfemf => "GIEHOAONEGK_PNEEAEJFEMF", + Self::Lahpkcepack => "GIEHOAONEGK_LAHPKCEPACK", + Self::Lkmpbdbbbed => "GIEHOAONEGK_LKMPBDBBBED", + Self::Dhbfoekmnba => "GIEHOAONEGK_DHBFOEKMNBA", + Self::Opinoigbaec => "GIEHOAONEGK_OPINOIGBAEC", + Self::Ocfcjaiapjb => "GIEHOAONEGK_OCFCJAIAPJB", + Self::Lgaeghkjlen => "GIEHOAONEGK_LGAEGHKJLEN", + Self::Kifandhpbga => "GIEHOAONEGK_KIFANDHPBGA", + Self::Loemnfhdkog => "GIEHOAONEGK_LOEMNFHDKOG", + Self::Pnlponhffgm => "GIEHOAONEGK_PNLPONHFFGM", + Self::Bgepcbdblbp => "GIEHOAONEGK_BGEPCBDBLBP", + Self::Ejikdmdagaa => "GIEHOAONEGK_EJIKDMDAGAA", + Self::Ejcehihkgib => "GIEHOAONEGK_EJCEHIHKGIB", + Self::Ilfmfpkfdnk => "GIEHOAONEGK_ILFMFPKFDNK", + Self::Icpembdgbco => "GIEHOAONEGK_ICPEMBDGBCO", + Self::Beebcaehgbn => "GIEHOAONEGK_BEEBCAEHGBN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MARBLE_FRAME_TYPE_NONE" => Some(Self::MarbleFrameTypeNone), - "MARBLE_FRAME_TYPE_ACTION_START" => Some(Self::MarbleFrameTypeActionStart), - "MARBLE_FRAME_TYPE_ACTION_END" => Some(Self::MarbleFrameTypeActionEnd), - "MARBLE_FRAME_TYPE_ROUND_START" => Some(Self::MarbleFrameTypeRoundStart), - "MARBLE_FRAME_TYPE_ROUND_END" => Some(Self::MarbleFrameTypeRoundEnd), - "MARBLE_FRAME_TYPE_REVIVE" => Some(Self::MarbleFrameTypeRevive), - "MARBLE_FRAME_TYPE_HP_CHANGE" => Some(Self::MarbleFrameTypeHpChange), - "MARBLE_FRAME_TYPE_LAUNCH" => Some(Self::MarbleFrameTypeLaunch), - "MARBLE_FRAME_TYPE_STOP" => Some(Self::MarbleFrameTypeStop), - "MARBLE_FRAME_TYPE_COLLIDE" => Some(Self::MarbleFrameTypeCollide), - "MARBLE_FRAME_TYPE_EFFECT" => Some(Self::MarbleFrameTypeEffect), - "MARBLE_FRAME_TYPE_BUFF_TEXT" => Some(Self::MarbleFrameTypeBuffText), - "MARBLE_FRAME_TYPE_SKILL_UI" => Some(Self::MarbleFrameTypeSkillUi), - "MARBLE_FRAME_TYPE_ABSORB" => Some(Self::MarbleFrameTypeAbsorb), - "MARBLE_FRAME_TYPE_ON_OFF_FIELD" => Some(Self::MarbleFrameTypeOnOffField), - "MARBLE_FRAME_TYPE_DEAD" => Some(Self::MarbleFrameTypeDead), - "MARBLE_FRAME_TYPE_USE_TECH" => Some(Self::MarbleFrameTypeUseTech), - "MARBLE_FRAME_TYPE_TECH_ACTIVE" => Some(Self::MarbleFrameTypeTechActive), - "MARBLE_FRAME_TYPE_GHOST_FIRE" => Some(Self::MarbleFrameTypeGhostFire), - "MARBLE_FRAME_TYPE_TRIGGER" => Some(Self::MarbleFrameTypeTrigger), - "MARBLE_FRAME_TYPE_SWALLOW" => Some(Self::MarbleFrameTypeSwallow), - "MARBLE_FRAME_TYPE_RADIUS" => Some(Self::MarbleFrameTypeRadius), - "MARBLE_FRAME_TYPE_HIDE_LINE" => Some(Self::MarbleFrameTypeHideLine), - "MARBLE_FRAME_TYPE_TEAM_SCORE" => Some(Self::MarbleFrameTypeTeamScore), - "MARBLE_FRAME_TYPE_EMOJI_PACKAGE" => Some(Self::MarbleFrameTypeEmojiPackage), - "MARBLE_FRAME_TYPE_CHANGE_SPEED" => Some(Self::MarbleFrameTypeChangeSpeed), - "MARBLE_FRAME_TYPE_ADD_SHIELD" => Some(Self::MarbleFrameTypeAddShield), + "GIEHOAONEGK_BAEMAAEHGLC" => Some(Self::Baemaaehglc), + "GIEHOAONEGK_EEKFOPLBNPH" => Some(Self::Eekfoplbnph), + "GIEHOAONEGK_ADJBONCMMJL" => Some(Self::Adjboncmmjl), + "GIEHOAONEGK_BPPLDLAEOGK" => Some(Self::Bppldlaeogk), + "GIEHOAONEGK_IHGCOCDCMNK" => Some(Self::Ihgcocdcmnk), + "GIEHOAONEGK_JNMNHPKFILL" => Some(Self::Jnmnhpkfill), + "GIEHOAONEGK_IFCCFGOGAII" => Some(Self::Ifccfgogaii), + "GIEHOAONEGK_ONLDGLOPNIJ" => Some(Self::Onldglopnij), + "GIEHOAONEGK_GFEFJPACAMN" => Some(Self::Gfefjpacamn), + "GIEHOAONEGK_IAJIGHFCILE" => Some(Self::Iajighfcile), + "GIEHOAONEGK_CDGDPGKIEEG" => Some(Self::Cdgdpgkieeg), + "GIEHOAONEGK_PNEEAEJFEMF" => Some(Self::Pneeaejfemf), + "GIEHOAONEGK_LAHPKCEPACK" => Some(Self::Lahpkcepack), + "GIEHOAONEGK_LKMPBDBBBED" => Some(Self::Lkmpbdbbbed), + "GIEHOAONEGK_DHBFOEKMNBA" => Some(Self::Dhbfoekmnba), + "GIEHOAONEGK_OPINOIGBAEC" => Some(Self::Opinoigbaec), + "GIEHOAONEGK_OCFCJAIAPJB" => Some(Self::Ocfcjaiapjb), + "GIEHOAONEGK_LGAEGHKJLEN" => Some(Self::Lgaeghkjlen), + "GIEHOAONEGK_KIFANDHPBGA" => Some(Self::Kifandhpbga), + "GIEHOAONEGK_LOEMNFHDKOG" => Some(Self::Loemnfhdkog), + "GIEHOAONEGK_PNLPONHFFGM" => Some(Self::Pnlponhffgm), + "GIEHOAONEGK_BGEPCBDBLBP" => Some(Self::Bgepcbdblbp), + "GIEHOAONEGK_EJIKDMDAGAA" => Some(Self::Ejikdmdagaa), + "GIEHOAONEGK_EJCEHIHKGIB" => Some(Self::Ejcehihkgib), + "GIEHOAONEGK_ILFMFPKFDNK" => Some(Self::Ilfmfpkfdnk), + "GIEHOAONEGK_ICPEMBDGBCO" => Some(Self::Icpembdgbco), + "GIEHOAONEGK_BEEBCAEHGBN" => Some(Self::Beebcaehgbn), _ => None, } } @@ -71826,35 +71657,35 @@ impl Pajnhiagodd { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Lkkajcaciji { - MarbleFactionTypeNone = 0, - MarbleFactionTypeAll = 1, - MarbleFactionTypeEnemy = 2, - MarbleFactionTypeAlly = 3, - MarbleFactionTypeField = 4, +pub enum Kjoacmfoonb { + Jibkjjiaoka = 0, + Akbocebhfki = 1, + Efbpdhmapdb = 2, + Dnefejiognb = 3, + Lgiheagapbi = 4, } -impl Lkkajcaciji { +impl Kjoacmfoonb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MarbleFactionTypeNone => "MARBLE_FACTION_TYPE_NONE", - Self::MarbleFactionTypeAll => "MARBLE_FACTION_TYPE_ALL", - Self::MarbleFactionTypeEnemy => "MARBLE_FACTION_TYPE_ENEMY", - Self::MarbleFactionTypeAlly => "MARBLE_FACTION_TYPE_ALLY", - Self::MarbleFactionTypeField => "MARBLE_FACTION_TYPE_FIELD", + Self::Jibkjjiaoka => "KJOACMFOONB_JIBKJJIAOKA", + Self::Akbocebhfki => "KJOACMFOONB_AKBOCEBHFKI", + Self::Efbpdhmapdb => "KJOACMFOONB_EFBPDHMAPDB", + Self::Dnefejiognb => "KJOACMFOONB_DNEFEJIOGNB", + Self::Lgiheagapbi => "KJOACMFOONB_LGIHEAGAPBI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MARBLE_FACTION_TYPE_NONE" => Some(Self::MarbleFactionTypeNone), - "MARBLE_FACTION_TYPE_ALL" => Some(Self::MarbleFactionTypeAll), - "MARBLE_FACTION_TYPE_ENEMY" => Some(Self::MarbleFactionTypeEnemy), - "MARBLE_FACTION_TYPE_ALLY" => Some(Self::MarbleFactionTypeAlly), - "MARBLE_FACTION_TYPE_FIELD" => Some(Self::MarbleFactionTypeField), + "KJOACMFOONB_JIBKJJIAOKA" => Some(Self::Jibkjjiaoka), + "KJOACMFOONB_AKBOCEBHFKI" => Some(Self::Akbocebhfki), + "KJOACMFOONB_EFBPDHMAPDB" => Some(Self::Efbpdhmapdb), + "KJOACMFOONB_DNEFEJIOGNB" => Some(Self::Dnefejiognb), + "KJOACMFOONB_LGIHEAGAPBI" => Some(Self::Lgiheagapbi), _ => None, } } @@ -71862,29 +71693,29 @@ impl Lkkajcaciji { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Fippklcoegj { - MarbleHpChangeTypeNone = 0, - MarbleHpChangeTypeCritical = 1, - MarbleHpChangeTypeSpine = 2, +pub enum Jjgbjlkbhkl { + Lojphkdlkkj = 0, + Bmjcimfjmmg = 1, + Lnffgoecijd = 2, } -impl Fippklcoegj { +impl Jjgbjlkbhkl { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MarbleHpChangeTypeNone => "MARBLE_HP_CHANGE_TYPE_NONE", - Self::MarbleHpChangeTypeCritical => "MARBLE_HP_CHANGE_TYPE_CRITICAL", - Self::MarbleHpChangeTypeSpine => "MARBLE_HP_CHANGE_TYPE_SPINE", + Self::Lojphkdlkkj => "JJGBJLKBHKL_LOJPHKDLKKJ", + Self::Bmjcimfjmmg => "JJGBJLKBHKL_BMJCIMFJMMG", + Self::Lnffgoecijd => "JJGBJLKBHKL_LNFFGOECIJD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MARBLE_HP_CHANGE_TYPE_NONE" => Some(Self::MarbleHpChangeTypeNone), - "MARBLE_HP_CHANGE_TYPE_CRITICAL" => Some(Self::MarbleHpChangeTypeCritical), - "MARBLE_HP_CHANGE_TYPE_SPINE" => Some(Self::MarbleHpChangeTypeSpine), + "JJGBJLKBHKL_LOJPHKDLKKJ" => Some(Self::Lojphkdlkkj), + "JJGBJLKBHKL_BMJCIMFJMMG" => Some(Self::Bmjcimfjmmg), + "JJGBJLKBHKL_LNFFGOECIJD" => Some(Self::Lnffgoecijd), _ => None, } } @@ -71892,74 +71723,68 @@ impl Fippklcoegj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ppiffkjejja { - MarbleGamePhaseNone = 0, - MarbleGamePhaseReady = 1, - MarbleGamePhaseDelay = 2, - MarbleGamePhaseLoading = 3, - MarbleGamePhaseLoadFinish = 4, - MarbleGamePhasePerformance = 5, - MarbleGamePhasePerformanceFinish = 6, - MarbleGamePhaseRoundA = 7, - MarbleGamePhaseRoundB = 8, - MarbleGamePhaseSimulate = 9, - MarbleGamePhaseSimulateFinish = 10, - MarbleGamePhaseTech = 11, - MarbleGamePhaseTechUi = 12, - MarbleGamePhaseTechFinish = 13, - MarbleGamePhaseFinish = 14, - MarbleGamePhasePreRound = 15, +pub enum Fjkioojffap { + Gjbdlpklecd = 0, + Mdpfacmckpf = 1, + Binmigfcllg = 2, + Idakijpcgmj = 3, + Ncoiahmppkk = 4, + Eolnboofmdm = 5, + Ohkfoneejen = 6, + Pcaknkkoohf = 7, + Kjjbkhdkgje = 8, + Bopcelphini = 9, + Jgjeaebmggb = 10, + Hoiccbclhep = 11, + Dbijibpcfeb = 12, + Lilnjlfnkoc = 13, + Lfflmiclbdn = 14, + Nhojbliifkd = 15, } -impl Ppiffkjejja { +impl Fjkioojffap { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MarbleGamePhaseNone => "Marble_Game_Phase_None", - Self::MarbleGamePhaseReady => "Marble_Game_Phase_Ready", - Self::MarbleGamePhaseDelay => "Marble_Game_Phase_Delay", - Self::MarbleGamePhaseLoading => "Marble_Game_Phase_Loading", - Self::MarbleGamePhaseLoadFinish => "Marble_Game_Phase_LoadFinish", - Self::MarbleGamePhasePerformance => "Marble_Game_Phase_Performance", - Self::MarbleGamePhasePerformanceFinish => { - "Marble_Game_Phase_PerformanceFinish" - } - Self::MarbleGamePhaseRoundA => "Marble_Game_Phase_RoundA", - Self::MarbleGamePhaseRoundB => "Marble_Game_Phase_RoundB", - Self::MarbleGamePhaseSimulate => "Marble_Game_Phase_Simulate", - Self::MarbleGamePhaseSimulateFinish => "Marble_Game_Phase_SimulateFinish", - Self::MarbleGamePhaseTech => "Marble_Game_Phase_Tech", - Self::MarbleGamePhaseTechUi => "Marble_Game_Phase_TechUI", - Self::MarbleGamePhaseTechFinish => "Marble_Game_Phase_TechFinish", - Self::MarbleGamePhaseFinish => "Marble_Game_Phase_Finish", - Self::MarbleGamePhasePreRound => "Marble_Game_Phase_PreRound", + Self::Gjbdlpklecd => "FJKIOOJFFAP_GJBDLPKLECD", + Self::Mdpfacmckpf => "FJKIOOJFFAP_MDPFACMCKPF", + Self::Binmigfcllg => "FJKIOOJFFAP_BINMIGFCLLG", + Self::Idakijpcgmj => "FJKIOOJFFAP_IDAKIJPCGMJ", + Self::Ncoiahmppkk => "FJKIOOJFFAP_NCOIAHMPPKK", + Self::Eolnboofmdm => "FJKIOOJFFAP_EOLNBOOFMDM", + Self::Ohkfoneejen => "FJKIOOJFFAP_OHKFONEEJEN", + Self::Pcaknkkoohf => "FJKIOOJFFAP_PCAKNKKOOHF", + Self::Kjjbkhdkgje => "FJKIOOJFFAP_KJJBKHDKGJE", + Self::Bopcelphini => "FJKIOOJFFAP_BOPCELPHINI", + Self::Jgjeaebmggb => "FJKIOOJFFAP_JGJEAEBMGGB", + Self::Hoiccbclhep => "FJKIOOJFFAP_HOICCBCLHEP", + Self::Dbijibpcfeb => "FJKIOOJFFAP_DBIJIBPCFEB", + Self::Lilnjlfnkoc => "FJKIOOJFFAP_LILNJLFNKOC", + Self::Lfflmiclbdn => "FJKIOOJFFAP_LFFLMICLBDN", + Self::Nhojbliifkd => "FJKIOOJFFAP_NHOJBLIIFKD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "Marble_Game_Phase_None" => Some(Self::MarbleGamePhaseNone), - "Marble_Game_Phase_Ready" => Some(Self::MarbleGamePhaseReady), - "Marble_Game_Phase_Delay" => Some(Self::MarbleGamePhaseDelay), - "Marble_Game_Phase_Loading" => Some(Self::MarbleGamePhaseLoading), - "Marble_Game_Phase_LoadFinish" => Some(Self::MarbleGamePhaseLoadFinish), - "Marble_Game_Phase_Performance" => Some(Self::MarbleGamePhasePerformance), - "Marble_Game_Phase_PerformanceFinish" => { - Some(Self::MarbleGamePhasePerformanceFinish) - } - "Marble_Game_Phase_RoundA" => Some(Self::MarbleGamePhaseRoundA), - "Marble_Game_Phase_RoundB" => Some(Self::MarbleGamePhaseRoundB), - "Marble_Game_Phase_Simulate" => Some(Self::MarbleGamePhaseSimulate), - "Marble_Game_Phase_SimulateFinish" => { - Some(Self::MarbleGamePhaseSimulateFinish) - } - "Marble_Game_Phase_Tech" => Some(Self::MarbleGamePhaseTech), - "Marble_Game_Phase_TechUI" => Some(Self::MarbleGamePhaseTechUi), - "Marble_Game_Phase_TechFinish" => Some(Self::MarbleGamePhaseTechFinish), - "Marble_Game_Phase_Finish" => Some(Self::MarbleGamePhaseFinish), - "Marble_Game_Phase_PreRound" => Some(Self::MarbleGamePhasePreRound), + "FJKIOOJFFAP_GJBDLPKLECD" => Some(Self::Gjbdlpklecd), + "FJKIOOJFFAP_MDPFACMCKPF" => Some(Self::Mdpfacmckpf), + "FJKIOOJFFAP_BINMIGFCLLG" => Some(Self::Binmigfcllg), + "FJKIOOJFFAP_IDAKIJPCGMJ" => Some(Self::Idakijpcgmj), + "FJKIOOJFFAP_NCOIAHMPPKK" => Some(Self::Ncoiahmppkk), + "FJKIOOJFFAP_EOLNBOOFMDM" => Some(Self::Eolnboofmdm), + "FJKIOOJFFAP_OHKFONEEJEN" => Some(Self::Ohkfoneejen), + "FJKIOOJFFAP_PCAKNKKOOHF" => Some(Self::Pcaknkkoohf), + "FJKIOOJFFAP_KJJBKHDKGJE" => Some(Self::Kjjbkhdkgje), + "FJKIOOJFFAP_BOPCELPHINI" => Some(Self::Bopcelphini), + "FJKIOOJFFAP_JGJEAEBMGGB" => Some(Self::Jgjeaebmggb), + "FJKIOOJFFAP_HOICCBCLHEP" => Some(Self::Hoiccbclhep), + "FJKIOOJFFAP_DBIJIBPCFEB" => Some(Self::Dbijibpcfeb), + "FJKIOOJFFAP_LILNJLFNKOC" => Some(Self::Lilnjlfnkoc), + "FJKIOOJFFAP_LFFLMICLBDN" => Some(Self::Lfflmiclbdn), + "FJKIOOJFFAP_NHOJBLIIFKD" => Some(Self::Nhojbliifkd), _ => None, } } @@ -71968,34 +71793,34 @@ impl Ppiffkjejja { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFightMathc3Type { - None = 0, - CmdFightMatch3DataScRsp = 30123, - CmdFightMatch3ChatScNotify = 30181, - CmdFightMatch3TurnStartScNotify = 30165, - CmdFightMatch3UseItemCsReq = 30157, - CmdFightMatch3SoloDataUpdateNotify = 30180, - CmdFightMatch3RoyaleRankUpdateNotify = 30162, - CmdFightMatch3SoloUseItemNotify = 30105, - CmdFightMatch3ChatCsReq = 30119, - CmdFightMatch3SwapCsReq = 30186, - CmdFightMatch3RoyaleDataScRsp = 30103, - CmdFightMatch3StartCountDownScNotify = 30198, - CmdFightMatch3SoloAnimEndScRsp = 30149, - CmdFightMatch3SoloPreTurnEndScRsp = 30129, - CmdFightMatch3TurnEndScNotify = 30183, - CmdFightMatch3ForceUpdateNotify = 30169, - CmdFightMatch3UseItemScRsp = 30115, - CmdFightMatch3OpponentDataScNotify = 30152, - CmdFightMatch3SoloSwapNotify = 30177, - CmdFightMatch3ChatScRsp = 30144, - CmdFightMatch3DataCsReq = 30199, - CmdFightMatch3SoloDataCsReq = 30192, - CmdFightMatch3SoloAnimEndCsReq = 30168, - CmdFightMatch3SwapScRsp = 30194, - CmdFightMatch3SoloPreTurnEndCsReq = 30151, - CmdFightMatch3RoyaleDataCsReq = 30138, - CmdFightMatch3SoloDataScRsp = 30137, - CmdFightMatch3RoyaleDataUpdateNotify = 30109, + CadjbcnjnbgDejbfechjgm = 0, + CmdLigdmicinab = 30114, + CmdElngdgghlpl = 30151, + CmdIgeiiokaklg = 30117, + CmdGghdplpgcmn = 30145, + CadjbcnjnbgFocgleaphih = 30111, + CmdBgemckfpjfb = 30167, + CmdBldppinbdfc = 30126, + CmdBcicfmmjjoi = 30189, + CadjbcnjnbgKidojhhfjca = 30176, + CmdConoimjddpb = 30162, + CadjbcnjnbgPbekilfljic = 30146, + CadjbcnjnbgDnolpolcfmo = 30150, + CmdFcjhebmdcha = 30138, + CmdGbonfncical = 30120, + CmdFndjdjneaea = 30109, + CmdIcielffcaeg = 30181, + CadjbcnjnbgMfkkocceljj = 30147, + CmdOebpdlgbcbb = 30110, + CmdDfakfbefhbi = 30191, + CmdCconboocedk = 30161, + CadjbcnjnbgCjihfpfjbho = 30195, + CmdEjjmmhmpgnf = 30192, + CadjbcnjnbgMmlaoeedcdc = 30135, + CmdJkiahgladjf = 30152, + CmdBihjppjhohh = 30198, + CmdFenmjkpfkfo = 30137, + CadjbcnjnbgOopjfnpohlp = 30193, } impl CmdFightMathc3Type { /// String value of the enum field names used in the ProtoBuf definition. @@ -72004,105 +71829,67 @@ impl CmdFightMathc3Type { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFightMathc3TypeNone", - Self::CmdFightMatch3DataScRsp => "CmdFightMatch3DataScRsp", - Self::CmdFightMatch3ChatScNotify => "CmdFightMatch3ChatScNotify", - Self::CmdFightMatch3TurnStartScNotify => "CmdFightMatch3TurnStartScNotify", - Self::CmdFightMatch3UseItemCsReq => "CmdFightMatch3UseItemCsReq", - Self::CmdFightMatch3SoloDataUpdateNotify => { - "CmdFightMatch3SoloDataUpdateNotify" - } - Self::CmdFightMatch3RoyaleRankUpdateNotify => { - "CmdFightMatch3RoyaleRankUpdateNotify" - } - Self::CmdFightMatch3SoloUseItemNotify => "CmdFightMatch3SoloUseItemNotify", - Self::CmdFightMatch3ChatCsReq => "CmdFightMatch3ChatCsReq", - Self::CmdFightMatch3SwapCsReq => "CmdFightMatch3SwapCsReq", - Self::CmdFightMatch3RoyaleDataScRsp => "CmdFightMatch3RoyaleDataScRsp", - Self::CmdFightMatch3StartCountDownScNotify => { - "CmdFightMatch3StartCountDownScNotify" - } - Self::CmdFightMatch3SoloAnimEndScRsp => "CmdFightMatch3SoloAnimEndScRsp", - Self::CmdFightMatch3SoloPreTurnEndScRsp => { - "CmdFightMatch3SoloPreTurnEndScRsp" - } - Self::CmdFightMatch3TurnEndScNotify => "CmdFightMatch3TurnEndScNotify", - Self::CmdFightMatch3ForceUpdateNotify => "CmdFightMatch3ForceUpdateNotify", - Self::CmdFightMatch3UseItemScRsp => "CmdFightMatch3UseItemScRsp", - Self::CmdFightMatch3OpponentDataScNotify => { - "CmdFightMatch3OpponentDataScNotify" - } - Self::CmdFightMatch3SoloSwapNotify => "CmdFightMatch3SoloSwapNotify", - Self::CmdFightMatch3ChatScRsp => "CmdFightMatch3ChatScRsp", - Self::CmdFightMatch3DataCsReq => "CmdFightMatch3DataCsReq", - Self::CmdFightMatch3SoloDataCsReq => "CmdFightMatch3SoloDataCsReq", - Self::CmdFightMatch3SoloAnimEndCsReq => "CmdFightMatch3SoloAnimEndCsReq", - Self::CmdFightMatch3SwapScRsp => "CmdFightMatch3SwapScRsp", - Self::CmdFightMatch3SoloPreTurnEndCsReq => { - "CmdFightMatch3SoloPreTurnEndCsReq" - } - Self::CmdFightMatch3RoyaleDataCsReq => "CmdFightMatch3RoyaleDataCsReq", - Self::CmdFightMatch3SoloDataScRsp => "CmdFightMatch3SoloDataScRsp", - Self::CmdFightMatch3RoyaleDataUpdateNotify => { - "CmdFightMatch3RoyaleDataUpdateNotify" - } + Self::CadjbcnjnbgDejbfechjgm => "CADJBCNJNBG_DEJBFECHJGM", + Self::CmdLigdmicinab => "CmdLIGDMICINAB", + Self::CmdElngdgghlpl => "CmdELNGDGGHLPL", + Self::CmdIgeiiokaklg => "CmdIGEIIOKAKLG", + Self::CmdGghdplpgcmn => "CmdGGHDPLPGCMN", + Self::CadjbcnjnbgFocgleaphih => "CADJBCNJNBG_FOCGLEAPHIH", + Self::CmdBgemckfpjfb => "CmdBGEMCKFPJFB", + Self::CmdBldppinbdfc => "CmdBLDPPINBDFC", + Self::CmdBcicfmmjjoi => "CmdBCICFMMJJOI", + Self::CadjbcnjnbgKidojhhfjca => "CADJBCNJNBG_KIDOJHHFJCA", + Self::CmdConoimjddpb => "CmdCONOIMJDDPB", + Self::CadjbcnjnbgPbekilfljic => "CADJBCNJNBG_PBEKILFLJIC", + Self::CadjbcnjnbgDnolpolcfmo => "CADJBCNJNBG_DNOLPOLCFMO", + Self::CmdFcjhebmdcha => "CmdFCJHEBMDCHA", + Self::CmdGbonfncical => "CmdGBONFNCICAL", + Self::CmdFndjdjneaea => "CmdFNDJDJNEAEA", + Self::CmdIcielffcaeg => "CmdICIELFFCAEG", + Self::CadjbcnjnbgMfkkocceljj => "CADJBCNJNBG_MFKKOCCELJJ", + Self::CmdOebpdlgbcbb => "CmdOEBPDLGBCBB", + Self::CmdDfakfbefhbi => "CmdDFAKFBEFHBI", + Self::CmdCconboocedk => "CmdCCONBOOCEDK", + Self::CadjbcnjnbgCjihfpfjbho => "CADJBCNJNBG_CJIHFPFJBHO", + Self::CmdEjjmmhmpgnf => "CmdEJJMMHMPGNF", + Self::CadjbcnjnbgMmlaoeedcdc => "CADJBCNJNBG_MMLAOEEDCDC", + Self::CmdJkiahgladjf => "CmdJKIAHGLADJF", + Self::CmdBihjppjhohh => "CmdBIHJPPJHOHH", + Self::CmdFenmjkpfkfo => "CmdFENMJKPFKFO", + Self::CadjbcnjnbgOopjfnpohlp => "CADJBCNJNBG_OOPJFNPOHLP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFightMathc3TypeNone" => Some(Self::None), - "CmdFightMatch3DataScRsp" => Some(Self::CmdFightMatch3DataScRsp), - "CmdFightMatch3ChatScNotify" => Some(Self::CmdFightMatch3ChatScNotify), - "CmdFightMatch3TurnStartScNotify" => { - Some(Self::CmdFightMatch3TurnStartScNotify) - } - "CmdFightMatch3UseItemCsReq" => Some(Self::CmdFightMatch3UseItemCsReq), - "CmdFightMatch3SoloDataUpdateNotify" => { - Some(Self::CmdFightMatch3SoloDataUpdateNotify) - } - "CmdFightMatch3RoyaleRankUpdateNotify" => { - Some(Self::CmdFightMatch3RoyaleRankUpdateNotify) - } - "CmdFightMatch3SoloUseItemNotify" => { - Some(Self::CmdFightMatch3SoloUseItemNotify) - } - "CmdFightMatch3ChatCsReq" => Some(Self::CmdFightMatch3ChatCsReq), - "CmdFightMatch3SwapCsReq" => Some(Self::CmdFightMatch3SwapCsReq), - "CmdFightMatch3RoyaleDataScRsp" => Some(Self::CmdFightMatch3RoyaleDataScRsp), - "CmdFightMatch3StartCountDownScNotify" => { - Some(Self::CmdFightMatch3StartCountDownScNotify) - } - "CmdFightMatch3SoloAnimEndScRsp" => { - Some(Self::CmdFightMatch3SoloAnimEndScRsp) - } - "CmdFightMatch3SoloPreTurnEndScRsp" => { - Some(Self::CmdFightMatch3SoloPreTurnEndScRsp) - } - "CmdFightMatch3TurnEndScNotify" => Some(Self::CmdFightMatch3TurnEndScNotify), - "CmdFightMatch3ForceUpdateNotify" => { - Some(Self::CmdFightMatch3ForceUpdateNotify) - } - "CmdFightMatch3UseItemScRsp" => Some(Self::CmdFightMatch3UseItemScRsp), - "CmdFightMatch3OpponentDataScNotify" => { - Some(Self::CmdFightMatch3OpponentDataScNotify) - } - "CmdFightMatch3SoloSwapNotify" => Some(Self::CmdFightMatch3SoloSwapNotify), - "CmdFightMatch3ChatScRsp" => Some(Self::CmdFightMatch3ChatScRsp), - "CmdFightMatch3DataCsReq" => Some(Self::CmdFightMatch3DataCsReq), - "CmdFightMatch3SoloDataCsReq" => Some(Self::CmdFightMatch3SoloDataCsReq), - "CmdFightMatch3SoloAnimEndCsReq" => { - Some(Self::CmdFightMatch3SoloAnimEndCsReq) - } - "CmdFightMatch3SwapScRsp" => Some(Self::CmdFightMatch3SwapScRsp), - "CmdFightMatch3SoloPreTurnEndCsReq" => { - Some(Self::CmdFightMatch3SoloPreTurnEndCsReq) - } - "CmdFightMatch3RoyaleDataCsReq" => Some(Self::CmdFightMatch3RoyaleDataCsReq), - "CmdFightMatch3SoloDataScRsp" => Some(Self::CmdFightMatch3SoloDataScRsp), - "CmdFightMatch3RoyaleDataUpdateNotify" => { - Some(Self::CmdFightMatch3RoyaleDataUpdateNotify) - } + "CADJBCNJNBG_DEJBFECHJGM" => Some(Self::CadjbcnjnbgDejbfechjgm), + "CmdLIGDMICINAB" => Some(Self::CmdLigdmicinab), + "CmdELNGDGGHLPL" => Some(Self::CmdElngdgghlpl), + "CmdIGEIIOKAKLG" => Some(Self::CmdIgeiiokaklg), + "CmdGGHDPLPGCMN" => Some(Self::CmdGghdplpgcmn), + "CADJBCNJNBG_FOCGLEAPHIH" => Some(Self::CadjbcnjnbgFocgleaphih), + "CmdBGEMCKFPJFB" => Some(Self::CmdBgemckfpjfb), + "CmdBLDPPINBDFC" => Some(Self::CmdBldppinbdfc), + "CmdBCICFMMJJOI" => Some(Self::CmdBcicfmmjjoi), + "CADJBCNJNBG_KIDOJHHFJCA" => Some(Self::CadjbcnjnbgKidojhhfjca), + "CmdCONOIMJDDPB" => Some(Self::CmdConoimjddpb), + "CADJBCNJNBG_PBEKILFLJIC" => Some(Self::CadjbcnjnbgPbekilfljic), + "CADJBCNJNBG_DNOLPOLCFMO" => Some(Self::CadjbcnjnbgDnolpolcfmo), + "CmdFCJHEBMDCHA" => Some(Self::CmdFcjhebmdcha), + "CmdGBONFNCICAL" => Some(Self::CmdGbonfncical), + "CmdFNDJDJNEAEA" => Some(Self::CmdFndjdjneaea), + "CmdICIELFFCAEG" => Some(Self::CmdIcielffcaeg), + "CADJBCNJNBG_MFKKOCCELJJ" => Some(Self::CadjbcnjnbgMfkkocceljj), + "CmdOEBPDLGBCBB" => Some(Self::CmdOebpdlgbcbb), + "CmdDFAKFBEFHBI" => Some(Self::CmdDfakfbefhbi), + "CmdCCONBOOCEDK" => Some(Self::CmdCconboocedk), + "CADJBCNJNBG_CJIHFPFJBHO" => Some(Self::CadjbcnjnbgCjihfpfjbho), + "CmdEJJMMHMPGNF" => Some(Self::CmdEjjmmhmpgnf), + "CADJBCNJNBG_MMLAOEEDCDC" => Some(Self::CadjbcnjnbgMmlaoeedcdc), + "CmdJKIAHGLADJF" => Some(Self::CmdJkiahgladjf), + "CmdBIHJPPJHOHH" => Some(Self::CmdBihjppjhohh), + "CmdFENMJKPFKFO" => Some(Self::CmdFenmjkpfkfo), + "CADJBCNJNBG_OOPJFNPOHLP" => Some(Self::CadjbcnjnbgOopjfnpohlp), _ => None, } } @@ -72110,38 +71897,38 @@ impl CmdFightMathc3Type { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dgfcbofaoia { - Match3StateIdle = 0, - Match3StateStart = 1, - Match3StateMatch = 2, - Match3StateGame = 3, - Match3StateHalftime = 4, - Match3StateOver = 5, +pub enum Gajcafhhdin { + Pnofojjhpfl = 0, + Mpkijmobofh = 1, + Ijknaifjoki = 2, + Gpfdjednndo = 3, + Biolpknffnp = 4, + Nilekinljdd = 5, } -impl Dgfcbofaoia { +impl Gajcafhhdin { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3StateIdle => "MATCH3_STATE_IDLE", - Self::Match3StateStart => "MATCH3_STATE_START", - Self::Match3StateMatch => "MATCH3_STATE_MATCH", - Self::Match3StateGame => "MATCH3_STATE_GAME", - Self::Match3StateHalftime => "MATCH3_STATE_HALFTIME", - Self::Match3StateOver => "MATCH3_STATE_OVER", + Self::Pnofojjhpfl => "GAJCAFHHDIN_PNOFOJJHPFL", + Self::Mpkijmobofh => "GAJCAFHHDIN_MPKIJMOBOFH", + Self::Ijknaifjoki => "GAJCAFHHDIN_IJKNAIFJOKI", + Self::Gpfdjednndo => "GAJCAFHHDIN_GPFDJEDNNDO", + Self::Biolpknffnp => "GAJCAFHHDIN_BIOLPKNFFNP", + Self::Nilekinljdd => "GAJCAFHHDIN_NILEKINLJDD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_STATE_IDLE" => Some(Self::Match3StateIdle), - "MATCH3_STATE_START" => Some(Self::Match3StateStart), - "MATCH3_STATE_MATCH" => Some(Self::Match3StateMatch), - "MATCH3_STATE_GAME" => Some(Self::Match3StateGame), - "MATCH3_STATE_HALFTIME" => Some(Self::Match3StateHalftime), - "MATCH3_STATE_OVER" => Some(Self::Match3StateOver), + "GAJCAFHHDIN_PNOFOJJHPFL" => Some(Self::Pnofojjhpfl), + "GAJCAFHHDIN_MPKIJMOBOFH" => Some(Self::Mpkijmobofh), + "GAJCAFHHDIN_IJKNAIFJOKI" => Some(Self::Ijknaifjoki), + "GAJCAFHHDIN_GPFDJEDNNDO" => Some(Self::Gpfdjednndo), + "GAJCAFHHDIN_BIOLPKNFFNP" => Some(Self::Biolpknffnp), + "GAJCAFHHDIN_NILEKINLJDD" => Some(Self::Nilekinljdd), _ => None, } } @@ -72149,32 +71936,32 @@ impl Dgfcbofaoia { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nppnfppenmc { - Match3PlayerStateAlive = 0, - Match3PlayerStateDying = 1, - Match3PlayerStateDead = 2, - Match3PlayerStateLeave = 3, +pub enum Hffeajpohao { + Cdjmnnbpgnn = 0, + Icepnbioehk = 1, + Fofcoleagmo = 2, + Mfhhdppleac = 3, } -impl Nppnfppenmc { +impl Hffeajpohao { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3PlayerStateAlive => "MATCH3_PLAYER_STATE_ALIVE", - Self::Match3PlayerStateDying => "MATCH3_PLAYER_STATE_DYING", - Self::Match3PlayerStateDead => "MATCH3_PLAYER_STATE_DEAD", - Self::Match3PlayerStateLeave => "MATCH3_PLAYER_STATE_LEAVE", + Self::Cdjmnnbpgnn => "HFFEAJPOHAO_CDJMNNBPGNN", + Self::Icepnbioehk => "HFFEAJPOHAO_ICEPNBIOEHK", + Self::Fofcoleagmo => "HFFEAJPOHAO_FOFCOLEAGMO", + Self::Mfhhdppleac => "HFFEAJPOHAO_MFHHDPPLEAC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_PLAYER_STATE_ALIVE" => Some(Self::Match3PlayerStateAlive), - "MATCH3_PLAYER_STATE_DYING" => Some(Self::Match3PlayerStateDying), - "MATCH3_PLAYER_STATE_DEAD" => Some(Self::Match3PlayerStateDead), - "MATCH3_PLAYER_STATE_LEAVE" => Some(Self::Match3PlayerStateLeave), + "HFFEAJPOHAO_CDJMNNBPGNN" => Some(Self::Cdjmnnbpgnn), + "HFFEAJPOHAO_ICEPNBIOEHK" => Some(Self::Icepnbioehk), + "HFFEAJPOHAO_FOFCOLEAGMO" => Some(Self::Fofcoleagmo), + "HFFEAJPOHAO_MFHHDPPLEAC" => Some(Self::Mfhhdppleac), _ => None, } } @@ -72182,38 +71969,38 @@ impl Nppnfppenmc { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Bfilliobmfn { - EventBegin = 0, - EventBreak = 1, - EventFall = 2, - EventRefresh = 3, - EventBirdSkill = 4, - EventShuffle = 5, +pub enum Hgpdfoilhak { + Ohocjgpeigf = 0, + Klmgeicfjla = 1, + Ojbgeejonma = 2, + Lffjihingck = 3, + Lfgofadcfgh = 4, + Olkbiedjepc = 5, } -impl Bfilliobmfn { +impl Hgpdfoilhak { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::EventBegin => "EVENT_BEGIN", - Self::EventBreak => "EVENT_BREAK", - Self::EventFall => "EVENT_FALL", - Self::EventRefresh => "EVENT_REFRESH", - Self::EventBirdSkill => "EVENT_BIRD_SKILL", - Self::EventShuffle => "EVENT_SHUFFLE", + Self::Ohocjgpeigf => "HGPDFOILHAK_OHOCJGPEIGF", + Self::Klmgeicfjla => "HGPDFOILHAK_KLMGEICFJLA", + Self::Ojbgeejonma => "HGPDFOILHAK_OJBGEEJONMA", + Self::Lffjihingck => "HGPDFOILHAK_LFFJIHINGCK", + Self::Lfgofadcfgh => "HGPDFOILHAK_LFGOFADCFGH", + Self::Olkbiedjepc => "HGPDFOILHAK_OLKBIEDJEPC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "EVENT_BEGIN" => Some(Self::EventBegin), - "EVENT_BREAK" => Some(Self::EventBreak), - "EVENT_FALL" => Some(Self::EventFall), - "EVENT_REFRESH" => Some(Self::EventRefresh), - "EVENT_BIRD_SKILL" => Some(Self::EventBirdSkill), - "EVENT_SHUFFLE" => Some(Self::EventShuffle), + "HGPDFOILHAK_OHOCJGPEIGF" => Some(Self::Ohocjgpeigf), + "HGPDFOILHAK_KLMGEICFJLA" => Some(Self::Klmgeicfjla), + "HGPDFOILHAK_OJBGEEJONMA" => Some(Self::Ojbgeejonma), + "HGPDFOILHAK_LFFJIHINGCK" => Some(Self::Lffjihingck), + "HGPDFOILHAK_LFGOFADCFGH" => Some(Self::Lfgofadcfgh), + "HGPDFOILHAK_OLKBIEDJEPC" => Some(Self::Olkbiedjepc), _ => None, } } @@ -72221,38 +72008,38 @@ impl Bfilliobmfn { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Kjjldimbgmm { - Match3SoloStateIdle = 0, - Match3SoloStateStart = 1, - Match3SoloStateGame = 2, - Match3SoloStateAnim = 3, - Match3SoloStateOver = 4, - Match3SoloStateDel = 5, +pub enum Ppckjibbhed { + Fpifblbklnk = 0, + Hlfagchcdbl = 1, + Jgbdppbkaef = 2, + Odnanlicijj = 3, + Mfaocioagjm = 4, + Nchbncikjbb = 5, } -impl Kjjldimbgmm { +impl Ppckjibbhed { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3SoloStateIdle => "MATCH3_SOLO_STATE_IDLE", - Self::Match3SoloStateStart => "MATCH3_SOLO_STATE_START", - Self::Match3SoloStateGame => "MATCH3_SOLO_STATE_GAME", - Self::Match3SoloStateAnim => "MATCH3_SOLO_STATE_ANIM", - Self::Match3SoloStateOver => "MATCH3_SOLO_STATE_OVER", - Self::Match3SoloStateDel => "MATCH3_SOLO_STATE_DEL", + Self::Fpifblbklnk => "PPCKJIBBHED_FPIFBLBKLNK", + Self::Hlfagchcdbl => "PPCKJIBBHED_HLFAGCHCDBL", + Self::Jgbdppbkaef => "PPCKJIBBHED_JGBDPPBKAEF", + Self::Odnanlicijj => "PPCKJIBBHED_ODNANLICIJJ", + Self::Mfaocioagjm => "PPCKJIBBHED_MFAOCIOAGJM", + Self::Nchbncikjbb => "PPCKJIBBHED_NCHBNCIKJBB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_SOLO_STATE_IDLE" => Some(Self::Match3SoloStateIdle), - "MATCH3_SOLO_STATE_START" => Some(Self::Match3SoloStateStart), - "MATCH3_SOLO_STATE_GAME" => Some(Self::Match3SoloStateGame), - "MATCH3_SOLO_STATE_ANIM" => Some(Self::Match3SoloStateAnim), - "MATCH3_SOLO_STATE_OVER" => Some(Self::Match3SoloStateOver), - "MATCH3_SOLO_STATE_DEL" => Some(Self::Match3SoloStateDel), + "PPCKJIBBHED_FPIFBLBKLNK" => Some(Self::Fpifblbklnk), + "PPCKJIBBHED_HLFAGCHCDBL" => Some(Self::Hlfagchcdbl), + "PPCKJIBBHED_JGBDPPBKAEF" => Some(Self::Jgbdppbkaef), + "PPCKJIBBHED_ODNANLICIJJ" => Some(Self::Odnanlicijj), + "PPCKJIBBHED_MFAOCIOAGJM" => Some(Self::Mfaocioagjm), + "PPCKJIBBHED_NCHBNCIKJBB" => Some(Self::Nchbncikjbb), _ => None, } } @@ -72260,29 +72047,29 @@ impl Kjjldimbgmm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nlaamogoobe { - Match3BattleOpTypeNone = 0, - Match3BattleOpTypeSwap = 1, - Match3BattleOpTypeUseItem = 2, +pub enum Gafekhlpblp { + Alocmfakbkp = 0, + Gmmfjbbggpe = 1, + Fficigembjb = 2, } -impl Nlaamogoobe { +impl Gafekhlpblp { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3BattleOpTypeNone => "MATCH3_BATTLE_OP_TYPE_NONE", - Self::Match3BattleOpTypeSwap => "MATCH3_BATTLE_OP_TYPE_SWAP", - Self::Match3BattleOpTypeUseItem => "MATCH3_BATTLE_OP_TYPE_USE_ITEM", + Self::Alocmfakbkp => "GAFEKHLPBLP_ALOCMFAKBKP", + Self::Gmmfjbbggpe => "GAFEKHLPBLP_GMMFJBBGGPE", + Self::Fficigembjb => "GAFEKHLPBLP_FFICIGEMBJB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_BATTLE_OP_TYPE_NONE" => Some(Self::Match3BattleOpTypeNone), - "MATCH3_BATTLE_OP_TYPE_SWAP" => Some(Self::Match3BattleOpTypeSwap), - "MATCH3_BATTLE_OP_TYPE_USE_ITEM" => Some(Self::Match3BattleOpTypeUseItem), + "GAFEKHLPBLP_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "GAFEKHLPBLP_GMMFJBBGGPE" => Some(Self::Gmmfjbbggpe), + "GAFEKHLPBLP_FFICIGEMBJB" => Some(Self::Fficigembjb), _ => None, } } @@ -72290,42 +72077,32 @@ impl Nlaamogoobe { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ganmcijcoki { - Match3BattleBuffTypeNone = 0, - Match3BattleBuffTypeDetonateBombRecur = 1, - Match3BattleBuffTypeActivization = 2, - Match3BattleBuffTypeScoreBonus = 3, +pub enum Eodehdemmll { + Alocmfakbkp = 0, + Kfhjecmjfhg = 1, + Aajpnjmddfl = 2, + Dfkfoaieoje = 3, } -impl Ganmcijcoki { +impl Eodehdemmll { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3BattleBuffTypeNone => "MATCH3_BATTLE_BUFF_TYPE_NONE", - Self::Match3BattleBuffTypeDetonateBombRecur => { - "MATCH3_BATTLE_BUFF_TYPE_DETONATE_BOMB_RECUR" - } - Self::Match3BattleBuffTypeActivization => { - "MATCH3_BATTLE_BUFF_TYPE_ACTIVIZATION" - } - Self::Match3BattleBuffTypeScoreBonus => "MATCH3_BATTLE_BUFF_TYPE_SCORE_BONUS", + Self::Alocmfakbkp => "EODEHDEMMLL_ALOCMFAKBKP", + Self::Kfhjecmjfhg => "EODEHDEMMLL_KFHJECMJFHG", + Self::Aajpnjmddfl => "EODEHDEMMLL_AAJPNJMDDFL", + Self::Dfkfoaieoje => "EODEHDEMMLL_DFKFOAIEOJE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_BATTLE_BUFF_TYPE_NONE" => Some(Self::Match3BattleBuffTypeNone), - "MATCH3_BATTLE_BUFF_TYPE_DETONATE_BOMB_RECUR" => { - Some(Self::Match3BattleBuffTypeDetonateBombRecur) - } - "MATCH3_BATTLE_BUFF_TYPE_ACTIVIZATION" => { - Some(Self::Match3BattleBuffTypeActivization) - } - "MATCH3_BATTLE_BUFF_TYPE_SCORE_BONUS" => { - Some(Self::Match3BattleBuffTypeScoreBonus) - } + "EODEHDEMMLL_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "EODEHDEMMLL_KFHJECMJFHG" => Some(Self::Kfhjecmjfhg), + "EODEHDEMMLL_AAJPNJMDDFL" => Some(Self::Aajpnjmddfl), + "EODEHDEMMLL_DFKFOAIEOJE" => Some(Self::Dfkfoaieoje), _ => None, } } @@ -72333,52 +72110,38 @@ impl Ganmcijcoki { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Abbdjbmiibe { - Match3SoloUpdateReasonDefault = 0, - Match3SoloUpdateReasonTurnStart = 1, - Match3SoloUpdateReasonTurnEnd = 2, - Match3SoloUpdateReasonGameStart = 3, - Match3SoloUpdateReasonGameEnd = 4, - Match3SoloUpdateReasonGm = 5, +pub enum Jgppdjhfiek { + Ifbdpcdmbgm = 0, + Gmjekgealme = 1, + Fhcgjfipmbp = 2, + Hmnnkcgjihe = 3, + Okpbdcchaen = 4, + Epgcnpebclf = 5, } -impl Abbdjbmiibe { +impl Jgppdjhfiek { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3SoloUpdateReasonDefault => "MATCH3_SOLO_UPDATE_REASON_DEFAULT", - Self::Match3SoloUpdateReasonTurnStart => { - "MATCH3_SOLO_UPDATE_REASON_TURN_START" - } - Self::Match3SoloUpdateReasonTurnEnd => "MATCH3_SOLO_UPDATE_REASON_TURN_END", - Self::Match3SoloUpdateReasonGameStart => { - "MATCH3_SOLO_UPDATE_REASON_GAME_START" - } - Self::Match3SoloUpdateReasonGameEnd => "MATCH3_SOLO_UPDATE_REASON_GAME_END", - Self::Match3SoloUpdateReasonGm => "MATCH3_SOLO_UPDATE_REASON_GM", + Self::Ifbdpcdmbgm => "JGPPDJHFIEK_IFBDPCDMBGM", + Self::Gmjekgealme => "JGPPDJHFIEK_GMJEKGEALME", + Self::Fhcgjfipmbp => "JGPPDJHFIEK_FHCGJFIPMBP", + Self::Hmnnkcgjihe => "JGPPDJHFIEK_HMNNKCGJIHE", + Self::Okpbdcchaen => "JGPPDJHFIEK_OKPBDCCHAEN", + Self::Epgcnpebclf => "JGPPDJHFIEK_EPGCNPEBCLF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_SOLO_UPDATE_REASON_DEFAULT" => { - Some(Self::Match3SoloUpdateReasonDefault) - } - "MATCH3_SOLO_UPDATE_REASON_TURN_START" => { - Some(Self::Match3SoloUpdateReasonTurnStart) - } - "MATCH3_SOLO_UPDATE_REASON_TURN_END" => { - Some(Self::Match3SoloUpdateReasonTurnEnd) - } - "MATCH3_SOLO_UPDATE_REASON_GAME_START" => { - Some(Self::Match3SoloUpdateReasonGameStart) - } - "MATCH3_SOLO_UPDATE_REASON_GAME_END" => { - Some(Self::Match3SoloUpdateReasonGameEnd) - } - "MATCH3_SOLO_UPDATE_REASON_GM" => Some(Self::Match3SoloUpdateReasonGm), + "JGPPDJHFIEK_IFBDPCDMBGM" => Some(Self::Ifbdpcdmbgm), + "JGPPDJHFIEK_GMJEKGEALME" => Some(Self::Gmjekgealme), + "JGPPDJHFIEK_FHCGJFIPMBP" => Some(Self::Fhcgjfipmbp), + "JGPPDJHFIEK_HMNNKCGJIHE" => Some(Self::Hmnnkcgjihe), + "JGPPDJHFIEK_OKPBDCCHAEN" => Some(Self::Okpbdcchaen), + "JGPPDJHFIEK_EPGCNPEBCLF" => Some(Self::Epgcnpebclf), _ => None, } } @@ -72386,35 +72149,35 @@ impl Abbdjbmiibe { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nonmoljkoci { - Match3RoyaleStateIdle = 0, - Match3RoyaleStateStart = 1, - Match3RoyaleStateGame = 2, - Match3RoyaleStateHalftime = 3, - Match3RoyaleStateOver = 4, +pub enum Lcaaabngmce { + Onehaojpdkn = 0, + Lahffhckhdb = 1, + Aocdlhmplba = 2, + Fajnaajcdij = 3, + Jhjllfejdbh = 4, } -impl Nonmoljkoci { +impl Lcaaabngmce { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3RoyaleStateIdle => "MATCH3_ROYALE_STATE_IDLE", - Self::Match3RoyaleStateStart => "MATCH3_ROYALE_STATE_START", - Self::Match3RoyaleStateGame => "MATCH3_ROYALE_STATE_GAME", - Self::Match3RoyaleStateHalftime => "MATCH3_ROYALE_STATE_HALFTIME", - Self::Match3RoyaleStateOver => "MATCH3_ROYALE_STATE_OVER", + Self::Onehaojpdkn => "LCAAABNGMCE_ONEHAOJPDKN", + Self::Lahffhckhdb => "LCAAABNGMCE_LAHFFHCKHDB", + Self::Aocdlhmplba => "LCAAABNGMCE_AOCDLHMPLBA", + Self::Fajnaajcdij => "LCAAABNGMCE_FAJNAAJCDIJ", + Self::Jhjllfejdbh => "LCAAABNGMCE_JHJLLFEJDBH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_ROYALE_STATE_IDLE" => Some(Self::Match3RoyaleStateIdle), - "MATCH3_ROYALE_STATE_START" => Some(Self::Match3RoyaleStateStart), - "MATCH3_ROYALE_STATE_GAME" => Some(Self::Match3RoyaleStateGame), - "MATCH3_ROYALE_STATE_HALFTIME" => Some(Self::Match3RoyaleStateHalftime), - "MATCH3_ROYALE_STATE_OVER" => Some(Self::Match3RoyaleStateOver), + "LCAAABNGMCE_ONEHAOJPDKN" => Some(Self::Onehaojpdkn), + "LCAAABNGMCE_LAHFFHCKHDB" => Some(Self::Lahffhckhdb), + "LCAAABNGMCE_AOCDLHMPLBA" => Some(Self::Aocdlhmplba), + "LCAAABNGMCE_FAJNAAJCDIJ" => Some(Self::Fajnaajcdij), + "LCAAABNGMCE_JHJLLFEJDBH" => Some(Self::Jhjllfejdbh), _ => None, } } @@ -72422,58 +72185,38 @@ impl Nonmoljkoci { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Minnalimmgd { - Match3RoyaleUpdateReasonDefault = 0, - Match3RoyaleUpdateReasonRoundStart = 1, - Match3RoyaleUpdateReasonRoundEnd = 2, - Match3RoyaleUpdateReasonGameStart = 3, - Match3RoyaleUpdateReasonGameEnd = 4, - Match3RoyaleUpdateReasonGm = 5, +pub enum Jmhhekndjcc { + Beipkmifkbb = 0, + Inpaohmnlgk = 1, + Nikhmpdbgdc = 2, + Fnageondmhl = 3, + Kieebancjld = 4, + Nhjnlkjhiop = 5, } -impl Minnalimmgd { +impl Jmhhekndjcc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Match3RoyaleUpdateReasonDefault => { - "MATCH3_ROYALE_UPDATE_REASON_DEFAULT" - } - Self::Match3RoyaleUpdateReasonRoundStart => { - "MATCH3_ROYALE_UPDATE_REASON_ROUND_START" - } - Self::Match3RoyaleUpdateReasonRoundEnd => { - "MATCH3_ROYALE_UPDATE_REASON_ROUND_END" - } - Self::Match3RoyaleUpdateReasonGameStart => { - "MATCH3_ROYALE_UPDATE_REASON_GAME_START" - } - Self::Match3RoyaleUpdateReasonGameEnd => { - "MATCH3_ROYALE_UPDATE_REASON_GAME_END" - } - Self::Match3RoyaleUpdateReasonGm => "MATCH3_ROYALE_UPDATE_REASON_GM", + Self::Beipkmifkbb => "JMHHEKNDJCC_BEIPKMIFKBB", + Self::Inpaohmnlgk => "JMHHEKNDJCC_INPAOHMNLGK", + Self::Nikhmpdbgdc => "JMHHEKNDJCC_NIKHMPDBGDC", + Self::Fnageondmhl => "JMHHEKNDJCC_FNAGEONDMHL", + Self::Kieebancjld => "JMHHEKNDJCC_KIEEBANCJLD", + Self::Nhjnlkjhiop => "JMHHEKNDJCC_NHJNLKJHIOP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MATCH3_ROYALE_UPDATE_REASON_DEFAULT" => { - Some(Self::Match3RoyaleUpdateReasonDefault) - } - "MATCH3_ROYALE_UPDATE_REASON_ROUND_START" => { - Some(Self::Match3RoyaleUpdateReasonRoundStart) - } - "MATCH3_ROYALE_UPDATE_REASON_ROUND_END" => { - Some(Self::Match3RoyaleUpdateReasonRoundEnd) - } - "MATCH3_ROYALE_UPDATE_REASON_GAME_START" => { - Some(Self::Match3RoyaleUpdateReasonGameStart) - } - "MATCH3_ROYALE_UPDATE_REASON_GAME_END" => { - Some(Self::Match3RoyaleUpdateReasonGameEnd) - } - "MATCH3_ROYALE_UPDATE_REASON_GM" => Some(Self::Match3RoyaleUpdateReasonGm), + "JMHHEKNDJCC_BEIPKMIFKBB" => Some(Self::Beipkmifkbb), + "JMHHEKNDJCC_INPAOHMNLGK" => Some(Self::Inpaohmnlgk), + "JMHHEKNDJCC_NIKHMPDBGDC" => Some(Self::Nikhmpdbgdc), + "JMHHEKNDJCC_FNAGEONDMHL" => Some(Self::Fnageondmhl), + "JMHHEKNDJCC_KIEEBANCJLD" => Some(Self::Kieebancjld), + "JMHHEKNDJCC_NHJNLKJHIOP" => Some(Self::Nhjnlkjhiop), _ => None, } } @@ -72482,65 +72225,65 @@ impl Minnalimmgd { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdFriendType { - None = 0, - CmdAddBlacklistCsReq = 2937, - CmdGetFriendApplyListInfoCsReq = 2983, - CmdGetFriendRecommendLineupDetailScRsp = 2988, - CmdCurAssistChangedNotify = 2910, - CmdNewAssistHistoryNotify = 2916, - CmdGetFriendRecommendListInfoCsReq = 2980, - CmdSetFriendRemarkNameScRsp = 2951, - CmdSetAssistScRsp = 2950, - CmdReportPlayerCsReq = 2929, - CmdGetFriendBattleRecordDetailScRsp = 2966, - CmdHandleFriendCsReq = 2944, - CmdGetFriendAssistListCsReq = 2911, - CmdGetPlatformPlayerInfoScRsp = 2942, - CmdSetFriendMarkCsReq = 2963, - CmdGetPlayerDetailInfoScRsp = 2965, - CmdTakeAssistRewardScRsp = 2921, - CmdGetFriendRecommendLineupCsReq = 2995, - CmdGetFriendRecommendLineupScRsp = 2979, - CmdApplyFriendCsReq = 2994, - CmdGetCurAssistCsReq = 2960, - CmdSyncAddBlacklistScNotify = 2949, - CmdSetForbidOtherApplyFriendCsReq = 2912, - CmdReportPlayerScRsp = 2938, - CmdApplyFriendScRsp = 2952, - CmdGetAssistListCsReq = 2922, - CmdGetFriendLoginInfoCsReq = 2970, - CmdSyncDeleteFriendScNotify = 2992, - CmdSearchPlayerCsReq = 2962, - CmdDeleteBlacklistScRsp = 2909, - CmdAddBlacklistScRsp = 2968, - CmdGetPlatformPlayerInfoCsReq = 2953, - CmdSyncHandleFriendScNotify = 2969, - CmdDeleteFriendCsReq = 2957, - CmdGetFriendListInfoScRsp = 2923, + KoejamncchmAlocmfakbkp = 0, + CmdGetFriendRecommendListInfoScRsp = 2967, + CmdGetPlayerDetailInfoScRsp = 2917, + CmdCurAssistChangedNotify = 2903, + CmdReportPlayerCsReq = 2998, + CmdGetAssistHistoryCsReq = 2977, + CmdHandleFriendScRsp = 2961, + CmdGetFriendListInfoCsReq = 2947, + CmdGetFriendBattleRecordDetailScRsp = 2939, + CmdGetFriendApplyListInfoCsReq = 2951, CmdGetFriendRecommendLineupDetailCsReq = 2902, - CmdGetFriendLoginInfoScRsp = 2941, - CmdGetAssistListScRsp = 2997, - CmdGetFriendDevelopmentInfoScRsp = 2945, - CmdHandleFriendScRsp = 2981, - CmdSearchPlayerScRsp = 2959, - CmdSyncApplyFriendScNotify = 2919, - CmdGetFriendBattleRecordDetailCsReq = 2940, - CmdGetAssistHistoryCsReq = 2935, - CmdTakeAssistRewardCsReq = 2956, - CmdGetAssistHistoryScRsp = 2974, - CmdGetFriendRecommendListInfoScRsp = 2977, - CmdGetFriendAssistListScRsp = 2901, - CmdSetForbidOtherApplyFriendScRsp = 2906, - CmdDeleteFriendScRsp = 2915, - CmdSetFriendRemarkNameCsReq = 2905, - CmdDeleteBlacklistCsReq = 2903, - CmdGetFriendDevelopmentInfoCsReq = 2939, - CmdGetCurAssistScRsp = 2971, - CmdSetFriendMarkScRsp = 2904, - CmdSetAssistCsReq = 2955, - CmdGetFriendApplyListInfoScRsp = 2986, - CmdGetFriendListInfoCsReq = 2999, - CmdGetPlayerDetailInfoCsReq = 2998, + CmdGetFriendRecommendLineupDetailScRsp = 2918, + CmdGetCurAssistScRsp = 2949, + CmdAddBlacklistCsReq = 2981, + CmdSetForbidOtherApplyFriendCsReq = 2936, + CmdGetFriendListInfoScRsp = 2909, + CmdSetFriendRemarkNameScRsp = 2935, + CmdTakeAssistRewardScRsp = 2988, + CmdSyncDeleteFriendScNotify = 2950, + CmdSetFriendMarkCsReq = 2925, + CmdDeleteBlacklistCsReq = 2992, + CmdSetForbidOtherApplyFriendScRsp = 2985, + CmdGetPlatformPlayerInfoCsReq = 2955, + CmdGetFriendDevelopmentInfoCsReq = 2979, + CmdGetFriendRecommendListInfoCsReq = 2910, + CmdSearchPlayerScRsp = 2957, + CmdGetAssistHistoryScRsp = 2919, + CmdGetCurAssistCsReq = 2901, + CmdApplyFriendCsReq = 2989, + CmdSyncAddBlacklistScNotify = 2937, + CmdGetFriendAssistListScRsp = 2932, + CmdGetFriendApplyListInfoScRsp = 2911, + CmdNewAssistHistoryNotify = 2969, + CmdSyncHandleFriendScNotify = 2945, + CmdGetAssistListScRsp = 2973, + CmdApplyFriendScRsp = 2920, + CmdSetFriendRemarkNameCsReq = 2962, + CmdGetFriendRecommendLineupCsReq = 2931, + CmdDeleteBlacklistScRsp = 2914, + CmdGetFriendAssistListCsReq = 2997, + CmdDeleteFriendScRsp = 2952, + CmdSyncApplyFriendScNotify = 2995, + CmdHandleFriendCsReq = 2991, + CmdGetAssistListCsReq = 2915, + CmdTakeAssistRewardCsReq = 2906, + CmdGetFriendLoginInfoCsReq = 2933, + CmdGetFriendLoginInfoScRsp = 2966, + CmdGetFriendDevelopmentInfoScRsp = 2927, + CmdGetPlatformPlayerInfoScRsp = 2930, + CmdSetFriendMarkScRsp = 2907, + CmdReportPlayerScRsp = 2946, + CmdGetFriendBattleRecordDetailCsReq = 2965, + CmdSetAssistCsReq = 2970, + CmdSearchPlayerCsReq = 2926, + CmdGetFriendRecommendLineupScRsp = 2941, + CmdSetAssistScRsp = 2913, + CmdAddBlacklistScRsp = 2993, + CmdGetPlayerDetailInfoCsReq = 2938, + CmdDeleteFriendCsReq = 2976, } impl CmdFriendType { /// String value of the enum field names used in the ProtoBuf definition. @@ -72549,173 +72292,173 @@ impl CmdFriendType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdFriendTypeNone", - Self::CmdAddBlacklistCsReq => "CmdAddBlacklistCsReq", - Self::CmdGetFriendApplyListInfoCsReq => "CmdGetFriendApplyListInfoCsReq", - Self::CmdGetFriendRecommendLineupDetailScRsp => { - "CmdGetFriendRecommendLineupDetailScRsp" - } - Self::CmdCurAssistChangedNotify => "CmdCurAssistChangedNotify", - Self::CmdNewAssistHistoryNotify => "CmdNewAssistHistoryNotify", - Self::CmdGetFriendRecommendListInfoCsReq => { - "CmdGetFriendRecommendListInfoCsReq" - } - Self::CmdSetFriendRemarkNameScRsp => "CmdSetFriendRemarkNameScRsp", - Self::CmdSetAssistScRsp => "CmdSetAssistScRsp", - Self::CmdReportPlayerCsReq => "CmdReportPlayerCsReq", - Self::CmdGetFriendBattleRecordDetailScRsp => { - "CmdGetFriendBattleRecordDetailScRsp" - } - Self::CmdHandleFriendCsReq => "CmdHandleFriendCsReq", - Self::CmdGetFriendAssistListCsReq => "CmdGetFriendAssistListCsReq", - Self::CmdGetPlatformPlayerInfoScRsp => "CmdGetPlatformPlayerInfoScRsp", - Self::CmdSetFriendMarkCsReq => "CmdSetFriendMarkCsReq", - Self::CmdGetPlayerDetailInfoScRsp => "CmdGetPlayerDetailInfoScRsp", - Self::CmdTakeAssistRewardScRsp => "CmdTakeAssistRewardScRsp", - Self::CmdGetFriendRecommendLineupCsReq => "CmdGetFriendRecommendLineupCsReq", - Self::CmdGetFriendRecommendLineupScRsp => "CmdGetFriendRecommendLineupScRsp", - Self::CmdApplyFriendCsReq => "CmdApplyFriendCsReq", - Self::CmdGetCurAssistCsReq => "CmdGetCurAssistCsReq", - Self::CmdSyncAddBlacklistScNotify => "CmdSyncAddBlacklistScNotify", - Self::CmdSetForbidOtherApplyFriendCsReq => { - "CmdSetForbidOtherApplyFriendCsReq" - } - Self::CmdReportPlayerScRsp => "CmdReportPlayerScRsp", - Self::CmdApplyFriendScRsp => "CmdApplyFriendScRsp", - Self::CmdGetAssistListCsReq => "CmdGetAssistListCsReq", - Self::CmdGetFriendLoginInfoCsReq => "CmdGetFriendLoginInfoCsReq", - Self::CmdSyncDeleteFriendScNotify => "CmdSyncDeleteFriendScNotify", - Self::CmdSearchPlayerCsReq => "CmdSearchPlayerCsReq", - Self::CmdDeleteBlacklistScRsp => "CmdDeleteBlacklistScRsp", - Self::CmdAddBlacklistScRsp => "CmdAddBlacklistScRsp", - Self::CmdGetPlatformPlayerInfoCsReq => "CmdGetPlatformPlayerInfoCsReq", - Self::CmdSyncHandleFriendScNotify => "CmdSyncHandleFriendScNotify", - Self::CmdDeleteFriendCsReq => "CmdDeleteFriendCsReq", - Self::CmdGetFriendListInfoScRsp => "CmdGetFriendListInfoScRsp", - Self::CmdGetFriendRecommendLineupDetailCsReq => { - "CmdGetFriendRecommendLineupDetailCsReq" - } - Self::CmdGetFriendLoginInfoScRsp => "CmdGetFriendLoginInfoScRsp", - Self::CmdGetAssistListScRsp => "CmdGetAssistListScRsp", - Self::CmdGetFriendDevelopmentInfoScRsp => "CmdGetFriendDevelopmentInfoScRsp", - Self::CmdHandleFriendScRsp => "CmdHandleFriendScRsp", - Self::CmdSearchPlayerScRsp => "CmdSearchPlayerScRsp", - Self::CmdSyncApplyFriendScNotify => "CmdSyncApplyFriendScNotify", - Self::CmdGetFriendBattleRecordDetailCsReq => { - "CmdGetFriendBattleRecordDetailCsReq" - } - Self::CmdGetAssistHistoryCsReq => "CmdGetAssistHistoryCsReq", - Self::CmdTakeAssistRewardCsReq => "CmdTakeAssistRewardCsReq", - Self::CmdGetAssistHistoryScRsp => "CmdGetAssistHistoryScRsp", + Self::KoejamncchmAlocmfakbkp => "KOEJAMNCCHM_ALOCMFAKBKP", Self::CmdGetFriendRecommendListInfoScRsp => { "CmdGetFriendRecommendListInfoScRsp" } - Self::CmdGetFriendAssistListScRsp => "CmdGetFriendAssistListScRsp", + Self::CmdGetPlayerDetailInfoScRsp => "CmdGetPlayerDetailInfoScRsp", + Self::CmdCurAssistChangedNotify => "CmdCurAssistChangedNotify", + Self::CmdReportPlayerCsReq => "CmdReportPlayerCsReq", + Self::CmdGetAssistHistoryCsReq => "CmdGetAssistHistoryCsReq", + Self::CmdHandleFriendScRsp => "CmdHandleFriendScRsp", + Self::CmdGetFriendListInfoCsReq => "CmdGetFriendListInfoCsReq", + Self::CmdGetFriendBattleRecordDetailScRsp => { + "CmdGetFriendBattleRecordDetailScRsp" + } + Self::CmdGetFriendApplyListInfoCsReq => "CmdGetFriendApplyListInfoCsReq", + Self::CmdGetFriendRecommendLineupDetailCsReq => { + "CmdGetFriendRecommendLineupDetailCsReq" + } + Self::CmdGetFriendRecommendLineupDetailScRsp => { + "CmdGetFriendRecommendLineupDetailScRsp" + } + Self::CmdGetCurAssistScRsp => "CmdGetCurAssistScRsp", + Self::CmdAddBlacklistCsReq => "CmdAddBlacklistCsReq", + Self::CmdSetForbidOtherApplyFriendCsReq => { + "CmdSetForbidOtherApplyFriendCsReq" + } + Self::CmdGetFriendListInfoScRsp => "CmdGetFriendListInfoScRsp", + Self::CmdSetFriendRemarkNameScRsp => "CmdSetFriendRemarkNameScRsp", + Self::CmdTakeAssistRewardScRsp => "CmdTakeAssistRewardScRsp", + Self::CmdSyncDeleteFriendScNotify => "CmdSyncDeleteFriendScNotify", + Self::CmdSetFriendMarkCsReq => "CmdSetFriendMarkCsReq", + Self::CmdDeleteBlacklistCsReq => "CmdDeleteBlacklistCsReq", Self::CmdSetForbidOtherApplyFriendScRsp => { "CmdSetForbidOtherApplyFriendScRsp" } - Self::CmdDeleteFriendScRsp => "CmdDeleteFriendScRsp", - Self::CmdSetFriendRemarkNameCsReq => "CmdSetFriendRemarkNameCsReq", - Self::CmdDeleteBlacklistCsReq => "CmdDeleteBlacklistCsReq", + Self::CmdGetPlatformPlayerInfoCsReq => "CmdGetPlatformPlayerInfoCsReq", Self::CmdGetFriendDevelopmentInfoCsReq => "CmdGetFriendDevelopmentInfoCsReq", - Self::CmdGetCurAssistScRsp => "CmdGetCurAssistScRsp", - Self::CmdSetFriendMarkScRsp => "CmdSetFriendMarkScRsp", - Self::CmdSetAssistCsReq => "CmdSetAssistCsReq", + Self::CmdGetFriendRecommendListInfoCsReq => { + "CmdGetFriendRecommendListInfoCsReq" + } + Self::CmdSearchPlayerScRsp => "CmdSearchPlayerScRsp", + Self::CmdGetAssistHistoryScRsp => "CmdGetAssistHistoryScRsp", + Self::CmdGetCurAssistCsReq => "CmdGetCurAssistCsReq", + Self::CmdApplyFriendCsReq => "CmdApplyFriendCsReq", + Self::CmdSyncAddBlacklistScNotify => "CmdSyncAddBlacklistScNotify", + Self::CmdGetFriendAssistListScRsp => "CmdGetFriendAssistListScRsp", Self::CmdGetFriendApplyListInfoScRsp => "CmdGetFriendApplyListInfoScRsp", - Self::CmdGetFriendListInfoCsReq => "CmdGetFriendListInfoCsReq", + Self::CmdNewAssistHistoryNotify => "CmdNewAssistHistoryNotify", + Self::CmdSyncHandleFriendScNotify => "CmdSyncHandleFriendScNotify", + Self::CmdGetAssistListScRsp => "CmdGetAssistListScRsp", + Self::CmdApplyFriendScRsp => "CmdApplyFriendScRsp", + Self::CmdSetFriendRemarkNameCsReq => "CmdSetFriendRemarkNameCsReq", + Self::CmdGetFriendRecommendLineupCsReq => "CmdGetFriendRecommendLineupCsReq", + Self::CmdDeleteBlacklistScRsp => "CmdDeleteBlacklistScRsp", + Self::CmdGetFriendAssistListCsReq => "CmdGetFriendAssistListCsReq", + Self::CmdDeleteFriendScRsp => "CmdDeleteFriendScRsp", + Self::CmdSyncApplyFriendScNotify => "CmdSyncApplyFriendScNotify", + Self::CmdHandleFriendCsReq => "CmdHandleFriendCsReq", + Self::CmdGetAssistListCsReq => "CmdGetAssistListCsReq", + Self::CmdTakeAssistRewardCsReq => "CmdTakeAssistRewardCsReq", + Self::CmdGetFriendLoginInfoCsReq => "CmdGetFriendLoginInfoCsReq", + Self::CmdGetFriendLoginInfoScRsp => "CmdGetFriendLoginInfoScRsp", + Self::CmdGetFriendDevelopmentInfoScRsp => "CmdGetFriendDevelopmentInfoScRsp", + Self::CmdGetPlatformPlayerInfoScRsp => "CmdGetPlatformPlayerInfoScRsp", + Self::CmdSetFriendMarkScRsp => "CmdSetFriendMarkScRsp", + Self::CmdReportPlayerScRsp => "CmdReportPlayerScRsp", + Self::CmdGetFriendBattleRecordDetailCsReq => { + "CmdGetFriendBattleRecordDetailCsReq" + } + Self::CmdSetAssistCsReq => "CmdSetAssistCsReq", + Self::CmdSearchPlayerCsReq => "CmdSearchPlayerCsReq", + Self::CmdGetFriendRecommendLineupScRsp => "CmdGetFriendRecommendLineupScRsp", + Self::CmdSetAssistScRsp => "CmdSetAssistScRsp", + Self::CmdAddBlacklistScRsp => "CmdAddBlacklistScRsp", Self::CmdGetPlayerDetailInfoCsReq => "CmdGetPlayerDetailInfoCsReq", + Self::CmdDeleteFriendCsReq => "CmdDeleteFriendCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdFriendTypeNone" => Some(Self::None), - "CmdAddBlacklistCsReq" => Some(Self::CmdAddBlacklistCsReq), + "KOEJAMNCCHM_ALOCMFAKBKP" => Some(Self::KoejamncchmAlocmfakbkp), + "CmdGetFriendRecommendListInfoScRsp" => { + Some(Self::CmdGetFriendRecommendListInfoScRsp) + } + "CmdGetPlayerDetailInfoScRsp" => Some(Self::CmdGetPlayerDetailInfoScRsp), + "CmdCurAssistChangedNotify" => Some(Self::CmdCurAssistChangedNotify), + "CmdReportPlayerCsReq" => Some(Self::CmdReportPlayerCsReq), + "CmdGetAssistHistoryCsReq" => Some(Self::CmdGetAssistHistoryCsReq), + "CmdHandleFriendScRsp" => Some(Self::CmdHandleFriendScRsp), + "CmdGetFriendListInfoCsReq" => Some(Self::CmdGetFriendListInfoCsReq), + "CmdGetFriendBattleRecordDetailScRsp" => { + Some(Self::CmdGetFriendBattleRecordDetailScRsp) + } "CmdGetFriendApplyListInfoCsReq" => { Some(Self::CmdGetFriendApplyListInfoCsReq) } + "CmdGetFriendRecommendLineupDetailCsReq" => { + Some(Self::CmdGetFriendRecommendLineupDetailCsReq) + } "CmdGetFriendRecommendLineupDetailScRsp" => { Some(Self::CmdGetFriendRecommendLineupDetailScRsp) } - "CmdCurAssistChangedNotify" => Some(Self::CmdCurAssistChangedNotify), - "CmdNewAssistHistoryNotify" => Some(Self::CmdNewAssistHistoryNotify), - "CmdGetFriendRecommendListInfoCsReq" => { - Some(Self::CmdGetFriendRecommendListInfoCsReq) - } - "CmdSetFriendRemarkNameScRsp" => Some(Self::CmdSetFriendRemarkNameScRsp), - "CmdSetAssistScRsp" => Some(Self::CmdSetAssistScRsp), - "CmdReportPlayerCsReq" => Some(Self::CmdReportPlayerCsReq), - "CmdGetFriendBattleRecordDetailScRsp" => { - Some(Self::CmdGetFriendBattleRecordDetailScRsp) - } - "CmdHandleFriendCsReq" => Some(Self::CmdHandleFriendCsReq), - "CmdGetFriendAssistListCsReq" => Some(Self::CmdGetFriendAssistListCsReq), - "CmdGetPlatformPlayerInfoScRsp" => Some(Self::CmdGetPlatformPlayerInfoScRsp), - "CmdSetFriendMarkCsReq" => Some(Self::CmdSetFriendMarkCsReq), - "CmdGetPlayerDetailInfoScRsp" => Some(Self::CmdGetPlayerDetailInfoScRsp), - "CmdTakeAssistRewardScRsp" => Some(Self::CmdTakeAssistRewardScRsp), - "CmdGetFriendRecommendLineupCsReq" => { - Some(Self::CmdGetFriendRecommendLineupCsReq) - } - "CmdGetFriendRecommendLineupScRsp" => { - Some(Self::CmdGetFriendRecommendLineupScRsp) - } - "CmdApplyFriendCsReq" => Some(Self::CmdApplyFriendCsReq), - "CmdGetCurAssistCsReq" => Some(Self::CmdGetCurAssistCsReq), - "CmdSyncAddBlacklistScNotify" => Some(Self::CmdSyncAddBlacklistScNotify), + "CmdGetCurAssistScRsp" => Some(Self::CmdGetCurAssistScRsp), + "CmdAddBlacklistCsReq" => Some(Self::CmdAddBlacklistCsReq), "CmdSetForbidOtherApplyFriendCsReq" => { Some(Self::CmdSetForbidOtherApplyFriendCsReq) } - "CmdReportPlayerScRsp" => Some(Self::CmdReportPlayerScRsp), - "CmdApplyFriendScRsp" => Some(Self::CmdApplyFriendScRsp), - "CmdGetAssistListCsReq" => Some(Self::CmdGetAssistListCsReq), - "CmdGetFriendLoginInfoCsReq" => Some(Self::CmdGetFriendLoginInfoCsReq), - "CmdSyncDeleteFriendScNotify" => Some(Self::CmdSyncDeleteFriendScNotify), - "CmdSearchPlayerCsReq" => Some(Self::CmdSearchPlayerCsReq), - "CmdDeleteBlacklistScRsp" => Some(Self::CmdDeleteBlacklistScRsp), - "CmdAddBlacklistScRsp" => Some(Self::CmdAddBlacklistScRsp), - "CmdGetPlatformPlayerInfoCsReq" => Some(Self::CmdGetPlatformPlayerInfoCsReq), - "CmdSyncHandleFriendScNotify" => Some(Self::CmdSyncHandleFriendScNotify), - "CmdDeleteFriendCsReq" => Some(Self::CmdDeleteFriendCsReq), "CmdGetFriendListInfoScRsp" => Some(Self::CmdGetFriendListInfoScRsp), - "CmdGetFriendRecommendLineupDetailCsReq" => { - Some(Self::CmdGetFriendRecommendLineupDetailCsReq) - } - "CmdGetFriendLoginInfoScRsp" => Some(Self::CmdGetFriendLoginInfoScRsp), - "CmdGetAssistListScRsp" => Some(Self::CmdGetAssistListScRsp), - "CmdGetFriendDevelopmentInfoScRsp" => { - Some(Self::CmdGetFriendDevelopmentInfoScRsp) - } - "CmdHandleFriendScRsp" => Some(Self::CmdHandleFriendScRsp), - "CmdSearchPlayerScRsp" => Some(Self::CmdSearchPlayerScRsp), - "CmdSyncApplyFriendScNotify" => Some(Self::CmdSyncApplyFriendScNotify), - "CmdGetFriendBattleRecordDetailCsReq" => { - Some(Self::CmdGetFriendBattleRecordDetailCsReq) - } - "CmdGetAssistHistoryCsReq" => Some(Self::CmdGetAssistHistoryCsReq), - "CmdTakeAssistRewardCsReq" => Some(Self::CmdTakeAssistRewardCsReq), - "CmdGetAssistHistoryScRsp" => Some(Self::CmdGetAssistHistoryScRsp), - "CmdGetFriendRecommendListInfoScRsp" => { - Some(Self::CmdGetFriendRecommendListInfoScRsp) - } - "CmdGetFriendAssistListScRsp" => Some(Self::CmdGetFriendAssistListScRsp), + "CmdSetFriendRemarkNameScRsp" => Some(Self::CmdSetFriendRemarkNameScRsp), + "CmdTakeAssistRewardScRsp" => Some(Self::CmdTakeAssistRewardScRsp), + "CmdSyncDeleteFriendScNotify" => Some(Self::CmdSyncDeleteFriendScNotify), + "CmdSetFriendMarkCsReq" => Some(Self::CmdSetFriendMarkCsReq), + "CmdDeleteBlacklistCsReq" => Some(Self::CmdDeleteBlacklistCsReq), "CmdSetForbidOtherApplyFriendScRsp" => { Some(Self::CmdSetForbidOtherApplyFriendScRsp) } - "CmdDeleteFriendScRsp" => Some(Self::CmdDeleteFriendScRsp), - "CmdSetFriendRemarkNameCsReq" => Some(Self::CmdSetFriendRemarkNameCsReq), - "CmdDeleteBlacklistCsReq" => Some(Self::CmdDeleteBlacklistCsReq), + "CmdGetPlatformPlayerInfoCsReq" => Some(Self::CmdGetPlatformPlayerInfoCsReq), "CmdGetFriendDevelopmentInfoCsReq" => { Some(Self::CmdGetFriendDevelopmentInfoCsReq) } - "CmdGetCurAssistScRsp" => Some(Self::CmdGetCurAssistScRsp), - "CmdSetFriendMarkScRsp" => Some(Self::CmdSetFriendMarkScRsp), - "CmdSetAssistCsReq" => Some(Self::CmdSetAssistCsReq), + "CmdGetFriendRecommendListInfoCsReq" => { + Some(Self::CmdGetFriendRecommendListInfoCsReq) + } + "CmdSearchPlayerScRsp" => Some(Self::CmdSearchPlayerScRsp), + "CmdGetAssistHistoryScRsp" => Some(Self::CmdGetAssistHistoryScRsp), + "CmdGetCurAssistCsReq" => Some(Self::CmdGetCurAssistCsReq), + "CmdApplyFriendCsReq" => Some(Self::CmdApplyFriendCsReq), + "CmdSyncAddBlacklistScNotify" => Some(Self::CmdSyncAddBlacklistScNotify), + "CmdGetFriendAssistListScRsp" => Some(Self::CmdGetFriendAssistListScRsp), "CmdGetFriendApplyListInfoScRsp" => { Some(Self::CmdGetFriendApplyListInfoScRsp) } - "CmdGetFriendListInfoCsReq" => Some(Self::CmdGetFriendListInfoCsReq), + "CmdNewAssistHistoryNotify" => Some(Self::CmdNewAssistHistoryNotify), + "CmdSyncHandleFriendScNotify" => Some(Self::CmdSyncHandleFriendScNotify), + "CmdGetAssistListScRsp" => Some(Self::CmdGetAssistListScRsp), + "CmdApplyFriendScRsp" => Some(Self::CmdApplyFriendScRsp), + "CmdSetFriendRemarkNameCsReq" => Some(Self::CmdSetFriendRemarkNameCsReq), + "CmdGetFriendRecommendLineupCsReq" => { + Some(Self::CmdGetFriendRecommendLineupCsReq) + } + "CmdDeleteBlacklistScRsp" => Some(Self::CmdDeleteBlacklistScRsp), + "CmdGetFriendAssistListCsReq" => Some(Self::CmdGetFriendAssistListCsReq), + "CmdDeleteFriendScRsp" => Some(Self::CmdDeleteFriendScRsp), + "CmdSyncApplyFriendScNotify" => Some(Self::CmdSyncApplyFriendScNotify), + "CmdHandleFriendCsReq" => Some(Self::CmdHandleFriendCsReq), + "CmdGetAssistListCsReq" => Some(Self::CmdGetAssistListCsReq), + "CmdTakeAssistRewardCsReq" => Some(Self::CmdTakeAssistRewardCsReq), + "CmdGetFriendLoginInfoCsReq" => Some(Self::CmdGetFriendLoginInfoCsReq), + "CmdGetFriendLoginInfoScRsp" => Some(Self::CmdGetFriendLoginInfoScRsp), + "CmdGetFriendDevelopmentInfoScRsp" => { + Some(Self::CmdGetFriendDevelopmentInfoScRsp) + } + "CmdGetPlatformPlayerInfoScRsp" => Some(Self::CmdGetPlatformPlayerInfoScRsp), + "CmdSetFriendMarkScRsp" => Some(Self::CmdSetFriendMarkScRsp), + "CmdReportPlayerScRsp" => Some(Self::CmdReportPlayerScRsp), + "CmdGetFriendBattleRecordDetailCsReq" => { + Some(Self::CmdGetFriendBattleRecordDetailCsReq) + } + "CmdSetAssistCsReq" => Some(Self::CmdSetAssistCsReq), + "CmdSearchPlayerCsReq" => Some(Self::CmdSearchPlayerCsReq), + "CmdGetFriendRecommendLineupScRsp" => { + Some(Self::CmdGetFriendRecommendLineupScRsp) + } + "CmdSetAssistScRsp" => Some(Self::CmdSetAssistScRsp), + "CmdAddBlacklistScRsp" => Some(Self::CmdAddBlacklistScRsp), "CmdGetPlayerDetailInfoCsReq" => Some(Self::CmdGetPlayerDetailInfoCsReq), + "CmdDeleteFriendCsReq" => Some(Self::CmdDeleteFriendCsReq), _ => None, } } @@ -72751,13 +72494,13 @@ impl FriendOnlineStatus { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FriendApplySource { - None = 0, - Search = 1, - Recommend = 2, - Assist = 3, - RecommendAssist = 4, - PsnFriend = 5, - AssistReward = 6, + HbfaijngmmkAlocmfakbkp = 0, + HbfaijngmmkBheboenncpn = 1, + HbfaijngmmkFlkbmenemlj = 2, + HbfaijngmmkMilniejdbgl = 3, + HbfaijngmmkJoiiglekokf = 4, + HbfaijngmmkHkddmkfhchf = 5, + HbfaijngmmkAekbmhgbehk = 6, } impl FriendApplySource { /// String value of the enum field names used in the ProtoBuf definition. @@ -72766,25 +72509,25 @@ impl FriendApplySource { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "FRIEND_APPLY_SOURCE_NONE", - Self::Search => "FRIEND_APPLY_SOURCE_SEARCH", - Self::Recommend => "FRIEND_APPLY_SOURCE_RECOMMEND", - Self::Assist => "FRIEND_APPLY_SOURCE_ASSIST", - Self::RecommendAssist => "FRIEND_APPLY_SOURCE_RECOMMEND_ASSIST", - Self::PsnFriend => "FRIEND_APPLY_SOURCE_PSN_FRIEND", - Self::AssistReward => "FRIEND_APPLY_SOURCE_ASSIST_REWARD", + Self::HbfaijngmmkAlocmfakbkp => "HBFAIJNGMMK_ALOCMFAKBKP", + Self::HbfaijngmmkBheboenncpn => "HBFAIJNGMMK_BHEBOENNCPN", + Self::HbfaijngmmkFlkbmenemlj => "HBFAIJNGMMK_FLKBMENEMLJ", + Self::HbfaijngmmkMilniejdbgl => "HBFAIJNGMMK_MILNIEJDBGL", + Self::HbfaijngmmkJoiiglekokf => "HBFAIJNGMMK_JOIIGLEKOKF", + Self::HbfaijngmmkHkddmkfhchf => "HBFAIJNGMMK_HKDDMKFHCHF", + Self::HbfaijngmmkAekbmhgbehk => "HBFAIJNGMMK_AEKBMHGBEHK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "FRIEND_APPLY_SOURCE_NONE" => Some(Self::None), - "FRIEND_APPLY_SOURCE_SEARCH" => Some(Self::Search), - "FRIEND_APPLY_SOURCE_RECOMMEND" => Some(Self::Recommend), - "FRIEND_APPLY_SOURCE_ASSIST" => Some(Self::Assist), - "FRIEND_APPLY_SOURCE_RECOMMEND_ASSIST" => Some(Self::RecommendAssist), - "FRIEND_APPLY_SOURCE_PSN_FRIEND" => Some(Self::PsnFriend), - "FRIEND_APPLY_SOURCE_ASSIST_REWARD" => Some(Self::AssistReward), + "HBFAIJNGMMK_ALOCMFAKBKP" => Some(Self::HbfaijngmmkAlocmfakbkp), + "HBFAIJNGMMK_BHEBOENNCPN" => Some(Self::HbfaijngmmkBheboenncpn), + "HBFAIJNGMMK_FLKBMENEMLJ" => Some(Self::HbfaijngmmkFlkbmenemlj), + "HBFAIJNGMMK_MILNIEJDBGL" => Some(Self::HbfaijngmmkMilniejdbgl), + "HBFAIJNGMMK_JOIIGLEKOKF" => Some(Self::HbfaijngmmkJoiiglekokf), + "HBFAIJNGMMK_HKDDMKFHCHF" => Some(Self::HbfaijngmmkHkddmkfhchf), + "HBFAIJNGMMK_AEKBMHGBEHK" => Some(Self::HbfaijngmmkAekbmhgbehk), _ => None, } } @@ -72793,18 +72536,18 @@ impl FriendApplySource { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdGachaType { - None = 0, - CmdGetGachaCeilingCsReq = 1983, - CmdGachaDecideItemChangeScNotify = 1981, - CmdExchangeGachaCeilingScRsp = 1952, - CmdSetGachaDecideItemCsReq = 1919, - CmdSetGachaDecideItemScRsp = 1944, - CmdGetGachaCeilingScRsp = 1986, - CmdDoGachaScRsp = 1965, - CmdGetGachaInfoScRsp = 1923, - CmdGetGachaInfoCsReq = 1999, - CmdDoGachaCsReq = 1998, - CmdExchangeGachaCeilingCsReq = 1994, + MkglncbjafeAlocmfakbkp = 0, + CmdGetGachaCeilingCsReq = 1951, + MkglncbjafeCgbgjhabfgk = 1961, + CmdGetGachaInfoCsReq = 1947, + CmdDoGachaCsReq = 1938, + CmdGetGachaInfoScRsp = 1909, + CmdExchangeGachaCeilingScRsp = 1920, + CmdGetGachaCeilingScRsp = 1911, + CmdSetGachaDecideItemCsReq = 1995, + CmdSetGachaDecideItemScRsp = 1991, + CmdExchangeGachaCeilingCsReq = 1989, + CmdDoGachaScRsp = 1917, } impl CmdGachaType { /// String value of the enum field names used in the ProtoBuf definition. @@ -72813,37 +72556,35 @@ impl CmdGachaType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdGachaTypeNone", + Self::MkglncbjafeAlocmfakbkp => "MKGLNCBJAFE_ALOCMFAKBKP", Self::CmdGetGachaCeilingCsReq => "CmdGetGachaCeilingCsReq", - Self::CmdGachaDecideItemChangeScNotify => "CmdGachaDecideItemChangeScNotify", - Self::CmdExchangeGachaCeilingScRsp => "CmdExchangeGachaCeilingScRsp", - Self::CmdSetGachaDecideItemCsReq => "CmdSetGachaDecideItemCsReq", - Self::CmdSetGachaDecideItemScRsp => "CmdSetGachaDecideItemScRsp", - Self::CmdGetGachaCeilingScRsp => "CmdGetGachaCeilingScRsp", - Self::CmdDoGachaScRsp => "CmdDoGachaScRsp", - Self::CmdGetGachaInfoScRsp => "CmdGetGachaInfoScRsp", + Self::MkglncbjafeCgbgjhabfgk => "MKGLNCBJAFE_CGBGJHABFGK", Self::CmdGetGachaInfoCsReq => "CmdGetGachaInfoCsReq", Self::CmdDoGachaCsReq => "CmdDoGachaCsReq", + Self::CmdGetGachaInfoScRsp => "CmdGetGachaInfoScRsp", + Self::CmdExchangeGachaCeilingScRsp => "CmdExchangeGachaCeilingScRsp", + Self::CmdGetGachaCeilingScRsp => "CmdGetGachaCeilingScRsp", + Self::CmdSetGachaDecideItemCsReq => "CmdSetGachaDecideItemCsReq", + Self::CmdSetGachaDecideItemScRsp => "CmdSetGachaDecideItemScRsp", Self::CmdExchangeGachaCeilingCsReq => "CmdExchangeGachaCeilingCsReq", + Self::CmdDoGachaScRsp => "CmdDoGachaScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdGachaTypeNone" => Some(Self::None), + "MKGLNCBJAFE_ALOCMFAKBKP" => Some(Self::MkglncbjafeAlocmfakbkp), "CmdGetGachaCeilingCsReq" => Some(Self::CmdGetGachaCeilingCsReq), - "CmdGachaDecideItemChangeScNotify" => { - Some(Self::CmdGachaDecideItemChangeScNotify) - } - "CmdExchangeGachaCeilingScRsp" => Some(Self::CmdExchangeGachaCeilingScRsp), - "CmdSetGachaDecideItemCsReq" => Some(Self::CmdSetGachaDecideItemCsReq), - "CmdSetGachaDecideItemScRsp" => Some(Self::CmdSetGachaDecideItemScRsp), - "CmdGetGachaCeilingScRsp" => Some(Self::CmdGetGachaCeilingScRsp), - "CmdDoGachaScRsp" => Some(Self::CmdDoGachaScRsp), - "CmdGetGachaInfoScRsp" => Some(Self::CmdGetGachaInfoScRsp), + "MKGLNCBJAFE_CGBGJHABFGK" => Some(Self::MkglncbjafeCgbgjhabfgk), "CmdGetGachaInfoCsReq" => Some(Self::CmdGetGachaInfoCsReq), "CmdDoGachaCsReq" => Some(Self::CmdDoGachaCsReq), + "CmdGetGachaInfoScRsp" => Some(Self::CmdGetGachaInfoScRsp), + "CmdExchangeGachaCeilingScRsp" => Some(Self::CmdExchangeGachaCeilingScRsp), + "CmdGetGachaCeilingScRsp" => Some(Self::CmdGetGachaCeilingScRsp), + "CmdSetGachaDecideItemCsReq" => Some(Self::CmdSetGachaDecideItemCsReq), + "CmdSetGachaDecideItemScRsp" => Some(Self::CmdSetGachaDecideItemScRsp), "CmdExchangeGachaCeilingCsReq" => Some(Self::CmdExchangeGachaCeilingCsReq), + "CmdDoGachaScRsp" => Some(Self::CmdDoGachaScRsp), _ => None, } } @@ -72852,92 +72593,92 @@ impl CmdGachaType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdGridFightType { - None = 0, - CmdGridFightGetFormationCsReq = 8416, - CmdGridFightUpdateTraitTrackScRsp = 8574, - CmdGridFightUseOrbNotify = 8427, - CmdGridFightUseForgeScRsp = 8482, - CmdGridFightUseOrbScRsp = 8527, - CmdGridFightEquipDressScRsp = 8596, - CmdGridFightEquipDressCsReq = 8562, - CmdGridFightHandlePendingActionScRsp = 8490, - CmdGridFightAddFormationCsReq = 8534, - CmdGridFightBackToPrepareCsReq = 8453, - CmdGridFightFinishTutorialScRsp = 8472, - CmdGridFightTakeWeeklyRewardScRsp = 8549, - CmdGridFightGetFormationScRsp = 8447, - CmdGridFightEndBattleStageNotify = 8440, - CmdGridFightTraitUpdateScRsp = 8588, - CmdGridFightUpdateEliteBranchSelectScRsp = 8528, - CmdGridFightSettleNotify = 8561, - CmdGridFightUpdateEquipTrackScRsp = 8589, - CmdGridFightUpdateTraitTrackCsReq = 8545, - CmdGridFightResumeGamePlayCsReq = 8495, - CmdGridFightSyncVirtualItemScNotify = 8537, - CmdGridFightFinishTutorialCsReq = 8579, - CmdGridFightBuyExpCsReq = 8449, - CmdGridFightSyncUpdateResultScNotify = 8560, - CmdGridFightUpdateEquipTrackProrityScRsp = 8573, - CmdGridFightStartGamePlayScRsp = 8470, - CmdGridFightUpdateFormationCsReq = 8581, - CmdGridFightResetPermanentTalentScRsp = 8507, - CmdGridFightAddFormationScRsp = 8592, - CmdGridFightUpdateEliteBranchSelectCsReq = 8462, - CmdGridFightUpdateEquipTrackProrityCsReq = 8426, - CmdGridFightEnterBattleStageCsReq = 8544, - CmdGridFightGetDataCsReq = 8511, - CmdGridFightResetPermanentTalentCsReq = 8436, - CmdGridFightEquipCraftScRsp = 8564, - CmdGridFightRefreshShopCsReq = 8512, - CmdGridFightBuyGoodsScRsp = 8459, - CmdGridFightEnablePermanentTalentCsReq = 8502, - CmdGridFightTraitUpdateCsReq = 8466, - CmdGridFightUpdateEquipTrackCsReq = 8546, - CmdGridFightQuitSettleCsReq = 8541, - CmdGridFightUseOrbCsReq = 8508, - CmdGridFightUseConsumableCsReq = 8404, - CmdGridFightHandlePendingActionCsReq = 8437, - CmdGridFightEquipCraftCsReq = 8411, - CmdGridFightEnableSeasonTalentCsReq = 8450, - CmdGridFightEnterBattleStageScRsp = 8422, - CmdGridFightUpdateGameRefCsReq = 8451, - CmdGridFightUpdateGameRefScRsp = 8577, - CmdGridFightDeleteFormationCsReq = 8486, - CmdGridFightResetSeasonTalentScRsp = 8557, - CmdGridFightEnableSeasonTalentScRsp = 8519, - CmdGridFightBuyExpScRsp = 8425, - CmdGridFightGetArchiveCsReq = 8492, - CmdGridFightBackToPrepareScRsp = 8461, - CmdGridFightDeleteFormationScRsp = 8463, - CmdGridFightResetSeasonTalentCsReq = 8522, - CmdGridFightRecycleRoleScRsp = 8510, - CmdGridFightSeasonHandBookNotify = 8465, - CmdGridFightQuitLeaveGamePlayScRsp = 8593, - CmdGridFightResumeGamePlayScRsp = 8455, - CmdGridFightEnablePermanentTalentScRsp = 8407, - CmdGridFightStartGamePlayCsReq = 8514, - CmdGridFightUpdatePosScRsp = 8558, - CmdGridFightUseForgeCsReq = 8552, - CmdGridFightRefreshShopScRsp = 8530, - CmdGridFightQuitLeaveGamePlayCsReq = 8413, - CmdGridFightRecycleRoleCsReq = 8469, - CmdGridFightGetShopRandomRuleCsReq = 8433, - CmdGridFightGetArchiveScRsp = 8516, - CmdGridFightTakeWeeklyRewardCsReq = 8485, - CmdGridFightLockShopScRsp = 8500, - CmdGridFightUseConsumableScRsp = 8523, - CmdGridFightUpdateFormationScRsp = 8434, - CmdGridFightGetDataScRsp = 8445, - CmdGridFightApplyFormationCsReq = 8590, - CmdGridFightLockShopCsReq = 8491, - CmdGridFightBuyGoodsCsReq = 8576, - CmdGridFightUpdateWeeklyRewardInfoScNotify = 8586, - CmdGridFightQuitSettleScRsp = 8476, - CmdGridFightApplyFormationScRsp = 8571, - CmdGridFightWeeklyExtraSeasonExpNotify = 8598, - CmdGridFightDataScNotify = 8412, - CmdGridFightGetShopRandomRuleScRsp = 8503, - CmdGridFightUpdatePosCsReq = 8518, + OofgahehmagAlocmfakbkp = 0, + CmdPbpigabcjed = 8465, + CmdDoekjbohggd = 8577, + CmdPgkdcdonkei = 8589, + CmdFcdpnmdngfc = 8529, + OofgahehmagMgflglhcilh = 8512, + CmdDbnegfomojg = 8424, + CmdNdhpmcecjdn = 8595, + CmdEkelngfidjd = 8466, + CmdKpmlkcdifbe = 8441, + CmdDelmbjcmfap = 8568, + CmdBklfedbgiop = 8432, + CmdJdjfnmfehng = 8523, + CmdGdbehbfbkkd = 8500, + CmdIkomimhgiin = 8404, + CmdHehlilcfmme = 8563, + CmdNfpbidkbclm = 8468, + CmdBnaneknnmgd = 8567, + CmdNpfmipdcloi = 8559, + CmdGmaajcpdfbf = 8566, + CmdFcmphkjebja = 8453, + OofgahehmagAokhageiegg = 8545, + CmdNdlgfkkelln = 8506, + CmdAbjbjocbplh = 8527, + CmdNbkmjnmlbbo = 8557, + CmdGkilpaeeljh = 8548, + CmdCgdadaacbfo = 8528, + CmdAhbffeplbmd = 8487, + CmdEkooanidbpp = 8446, + CmdIbobbdillef = 8555, + CmdMmjbhompnnh = 8505, + CmdKmeojgkpnic = 8433, + CmdIehclhcbiap = 8431, + CmdGhbgnokpdkl = 8401, + CmdEboahjgekmp = 8597, + CmdOfhphmdaeab = 8588, + CmdCbpgkbbbeep = 8496, + CmdDlkclhjnegb = 8511, + CmdIjncidccnfg = 8438, + CmdBankfkmlpkp = 8586, + CmdKhnmpoadpfm = 8416, + CmdLedeckhlpjn = 8538, + OofgahehmagFfdmpggjbob = 8578, + CmdMgccigagecd = 8576, + CmdFemlpcafcfe = 8406, + OofgahehmagDnipmccdkdk = 8599, + CmdGlfkbpcdnlm = 8486, + CmdNenocoghfon = 8531, + CmdKpbgjhihkha = 8410, + CmdMmjaglclipo = 8474, + CmdCnoingllhmb = 8472, + CmdMifgnjimlko = 8485, + CmdNcgohbcbfmh = 8456, + CmdEhbepefdphc = 8459, + CmdGoiialeibob = 8479, + CmdNdajhdmmcoi = 8550, + CmdDlkhmmljhca = 8443, + CmdEpmnhlaejod = 8413, + CmdBhfcgfiipek = 8430, + CmdKmkofikgljd = 8516, + CmdOnbjlecgiid = 8598, + CmdCjhkhijcbdl = 8440, + CmdGfdgpbelegb = 8508, + CmdFigghkdldeh = 8415, + CmdKaccpaljofk = 8549, + CmdBeopbdooppd = 8427, + CmdDmklpokpige = 8532, + CmdOkjbbhpffan = 8518, + CmdKngccckigdf = 8507, + CmdFenmmjbpkki = 8533, + CmdLcnhojpjkhm = 8571, + CmdFjdagbijmep = 8445, + CmdPnnjikhkihj = 8575, + CmdJocpdpnobna = 8442, + CmdPghhjgllokp = 8448, + CmdNofklglkcal = 8580, + CmdGpibedecndp = 8435, + CmdJcmooebeonf = 8405, + CmdFagafkidikb = 8536, + CmdGmcaikpagmc = 8541, + CmdHjfbjfnpdkb = 8519, + OofgahehmagGcaiolldejm = 8542, + CmdKfhnbiknlbh = 8515, + OofgahehmagLdjjlfcnmlf = 8407, + CmdHehobipohcp = 8480, + CmdHhghiljdnai = 8497, } impl CmdGridFightType { /// String value of the enum field names used in the ProtoBuf definition. @@ -72946,343 +72687,183 @@ impl CmdGridFightType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdGridFightTypeNone", - Self::CmdGridFightGetFormationCsReq => "CmdGridFightGetFormationCsReq", - Self::CmdGridFightUpdateTraitTrackScRsp => { - "CmdGridFightUpdateTraitTrackScRsp" - } - Self::CmdGridFightUseOrbNotify => "CmdGridFightUseOrbNotify", - Self::CmdGridFightUseForgeScRsp => "CmdGridFightUseForgeScRsp", - Self::CmdGridFightUseOrbScRsp => "CmdGridFightUseOrbScRsp", - Self::CmdGridFightEquipDressScRsp => "CmdGridFightEquipDressScRsp", - Self::CmdGridFightEquipDressCsReq => "CmdGridFightEquipDressCsReq", - Self::CmdGridFightHandlePendingActionScRsp => { - "CmdGridFightHandlePendingActionScRsp" - } - Self::CmdGridFightAddFormationCsReq => "CmdGridFightAddFormationCsReq", - Self::CmdGridFightBackToPrepareCsReq => "CmdGridFightBackToPrepareCsReq", - Self::CmdGridFightFinishTutorialScRsp => "CmdGridFightFinishTutorialScRsp", - Self::CmdGridFightTakeWeeklyRewardScRsp => { - "CmdGridFightTakeWeeklyRewardScRsp" - } - Self::CmdGridFightGetFormationScRsp => "CmdGridFightGetFormationScRsp", - Self::CmdGridFightEndBattleStageNotify => "CmdGridFightEndBattleStageNotify", - Self::CmdGridFightTraitUpdateScRsp => "CmdGridFightTraitUpdateScRsp", - Self::CmdGridFightUpdateEliteBranchSelectScRsp => { - "CmdGridFightUpdateEliteBranchSelectScRsp" - } - Self::CmdGridFightSettleNotify => "CmdGridFightSettleNotify", - Self::CmdGridFightUpdateEquipTrackScRsp => { - "CmdGridFightUpdateEquipTrackScRsp" - } - Self::CmdGridFightUpdateTraitTrackCsReq => { - "CmdGridFightUpdateTraitTrackCsReq" - } - Self::CmdGridFightResumeGamePlayCsReq => "CmdGridFightResumeGamePlayCsReq", - Self::CmdGridFightSyncVirtualItemScNotify => { - "CmdGridFightSyncVirtualItemScNotify" - } - Self::CmdGridFightFinishTutorialCsReq => "CmdGridFightFinishTutorialCsReq", - Self::CmdGridFightBuyExpCsReq => "CmdGridFightBuyExpCsReq", - Self::CmdGridFightSyncUpdateResultScNotify => { - "CmdGridFightSyncUpdateResultScNotify" - } - Self::CmdGridFightUpdateEquipTrackProrityScRsp => { - "CmdGridFightUpdateEquipTrackProrityScRsp" - } - Self::CmdGridFightStartGamePlayScRsp => "CmdGridFightStartGamePlayScRsp", - Self::CmdGridFightUpdateFormationCsReq => "CmdGridFightUpdateFormationCsReq", - Self::CmdGridFightResetPermanentTalentScRsp => { - "CmdGridFightResetPermanentTalentScRsp" - } - Self::CmdGridFightAddFormationScRsp => "CmdGridFightAddFormationScRsp", - Self::CmdGridFightUpdateEliteBranchSelectCsReq => { - "CmdGridFightUpdateEliteBranchSelectCsReq" - } - Self::CmdGridFightUpdateEquipTrackProrityCsReq => { - "CmdGridFightUpdateEquipTrackProrityCsReq" - } - Self::CmdGridFightEnterBattleStageCsReq => { - "CmdGridFightEnterBattleStageCsReq" - } - Self::CmdGridFightGetDataCsReq => "CmdGridFightGetDataCsReq", - Self::CmdGridFightResetPermanentTalentCsReq => { - "CmdGridFightResetPermanentTalentCsReq" - } - Self::CmdGridFightEquipCraftScRsp => "CmdGridFightEquipCraftScRsp", - Self::CmdGridFightRefreshShopCsReq => "CmdGridFightRefreshShopCsReq", - Self::CmdGridFightBuyGoodsScRsp => "CmdGridFightBuyGoodsScRsp", - Self::CmdGridFightEnablePermanentTalentCsReq => { - "CmdGridFightEnablePermanentTalentCsReq" - } - Self::CmdGridFightTraitUpdateCsReq => "CmdGridFightTraitUpdateCsReq", - Self::CmdGridFightUpdateEquipTrackCsReq => { - "CmdGridFightUpdateEquipTrackCsReq" - } - Self::CmdGridFightQuitSettleCsReq => "CmdGridFightQuitSettleCsReq", - Self::CmdGridFightUseOrbCsReq => "CmdGridFightUseOrbCsReq", - Self::CmdGridFightUseConsumableCsReq => "CmdGridFightUseConsumableCsReq", - Self::CmdGridFightHandlePendingActionCsReq => { - "CmdGridFightHandlePendingActionCsReq" - } - Self::CmdGridFightEquipCraftCsReq => "CmdGridFightEquipCraftCsReq", - Self::CmdGridFightEnableSeasonTalentCsReq => { - "CmdGridFightEnableSeasonTalentCsReq" - } - Self::CmdGridFightEnterBattleStageScRsp => { - "CmdGridFightEnterBattleStageScRsp" - } - Self::CmdGridFightUpdateGameRefCsReq => "CmdGridFightUpdateGameRefCsReq", - Self::CmdGridFightUpdateGameRefScRsp => "CmdGridFightUpdateGameRefScRsp", - Self::CmdGridFightDeleteFormationCsReq => "CmdGridFightDeleteFormationCsReq", - Self::CmdGridFightResetSeasonTalentScRsp => { - "CmdGridFightResetSeasonTalentScRsp" - } - Self::CmdGridFightEnableSeasonTalentScRsp => { - "CmdGridFightEnableSeasonTalentScRsp" - } - Self::CmdGridFightBuyExpScRsp => "CmdGridFightBuyExpScRsp", - Self::CmdGridFightGetArchiveCsReq => "CmdGridFightGetArchiveCsReq", - Self::CmdGridFightBackToPrepareScRsp => "CmdGridFightBackToPrepareScRsp", - Self::CmdGridFightDeleteFormationScRsp => "CmdGridFightDeleteFormationScRsp", - Self::CmdGridFightResetSeasonTalentCsReq => { - "CmdGridFightResetSeasonTalentCsReq" - } - Self::CmdGridFightRecycleRoleScRsp => "CmdGridFightRecycleRoleScRsp", - Self::CmdGridFightSeasonHandBookNotify => "CmdGridFightSeasonHandBookNotify", - Self::CmdGridFightQuitLeaveGamePlayScRsp => { - "CmdGridFightQuitLeaveGamePlayScRsp" - } - Self::CmdGridFightResumeGamePlayScRsp => "CmdGridFightResumeGamePlayScRsp", - Self::CmdGridFightEnablePermanentTalentScRsp => { - "CmdGridFightEnablePermanentTalentScRsp" - } - Self::CmdGridFightStartGamePlayCsReq => "CmdGridFightStartGamePlayCsReq", - Self::CmdGridFightUpdatePosScRsp => "CmdGridFightUpdatePosScRsp", - Self::CmdGridFightUseForgeCsReq => "CmdGridFightUseForgeCsReq", - Self::CmdGridFightRefreshShopScRsp => "CmdGridFightRefreshShopScRsp", - Self::CmdGridFightQuitLeaveGamePlayCsReq => { - "CmdGridFightQuitLeaveGamePlayCsReq" - } - Self::CmdGridFightRecycleRoleCsReq => "CmdGridFightRecycleRoleCsReq", - Self::CmdGridFightGetShopRandomRuleCsReq => { - "CmdGridFightGetShopRandomRuleCsReq" - } - Self::CmdGridFightGetArchiveScRsp => "CmdGridFightGetArchiveScRsp", - Self::CmdGridFightTakeWeeklyRewardCsReq => { - "CmdGridFightTakeWeeklyRewardCsReq" - } - Self::CmdGridFightLockShopScRsp => "CmdGridFightLockShopScRsp", - Self::CmdGridFightUseConsumableScRsp => "CmdGridFightUseConsumableScRsp", - Self::CmdGridFightUpdateFormationScRsp => "CmdGridFightUpdateFormationScRsp", - Self::CmdGridFightGetDataScRsp => "CmdGridFightGetDataScRsp", - Self::CmdGridFightApplyFormationCsReq => "CmdGridFightApplyFormationCsReq", - Self::CmdGridFightLockShopCsReq => "CmdGridFightLockShopCsReq", - Self::CmdGridFightBuyGoodsCsReq => "CmdGridFightBuyGoodsCsReq", - Self::CmdGridFightUpdateWeeklyRewardInfoScNotify => { - "CmdGridFightUpdateWeeklyRewardInfoScNotify" - } - Self::CmdGridFightQuitSettleScRsp => "CmdGridFightQuitSettleScRsp", - Self::CmdGridFightApplyFormationScRsp => "CmdGridFightApplyFormationScRsp", - Self::CmdGridFightWeeklyExtraSeasonExpNotify => { - "CmdGridFightWeeklyExtraSeasonExpNotify" - } - Self::CmdGridFightDataScNotify => "CmdGridFightDataScNotify", - Self::CmdGridFightGetShopRandomRuleScRsp => { - "CmdGridFightGetShopRandomRuleScRsp" - } - Self::CmdGridFightUpdatePosCsReq => "CmdGridFightUpdatePosCsReq", + Self::OofgahehmagAlocmfakbkp => "OOFGAHEHMAG_ALOCMFAKBKP", + Self::CmdPbpigabcjed => "CmdPBPIGABCJED", + Self::CmdDoekjbohggd => "CmdDOEKJBOHGGD", + Self::CmdPgkdcdonkei => "CmdPGKDCDONKEI", + Self::CmdFcdpnmdngfc => "CmdFCDPNMDNGFC", + Self::OofgahehmagMgflglhcilh => "OOFGAHEHMAG_MGFLGLHCILH", + Self::CmdDbnegfomojg => "CmdDBNEGFOMOJG", + Self::CmdNdhpmcecjdn => "CmdNDHPMCECJDN", + Self::CmdEkelngfidjd => "CmdEKELNGFIDJD", + Self::CmdKpmlkcdifbe => "CmdKPMLKCDIFBE", + Self::CmdDelmbjcmfap => "CmdDELMBJCMFAP", + Self::CmdBklfedbgiop => "CmdBKLFEDBGIOP", + Self::CmdJdjfnmfehng => "CmdJDJFNMFEHNG", + Self::CmdGdbehbfbkkd => "CmdGDBEHBFBKKD", + Self::CmdIkomimhgiin => "CmdIKOMIMHGIIN", + Self::CmdHehlilcfmme => "CmdHEHLILCFMME", + Self::CmdNfpbidkbclm => "CmdNFPBIDKBCLM", + Self::CmdBnaneknnmgd => "CmdBNANEKNNMGD", + Self::CmdNpfmipdcloi => "CmdNPFMIPDCLOI", + Self::CmdGmaajcpdfbf => "CmdGMAAJCPDFBF", + Self::CmdFcmphkjebja => "CmdFCMPHKJEBJA", + Self::OofgahehmagAokhageiegg => "OOFGAHEHMAG_AOKHAGEIEGG", + Self::CmdNdlgfkkelln => "CmdNDLGFKKELLN", + Self::CmdAbjbjocbplh => "CmdABJBJOCBPLH", + Self::CmdNbkmjnmlbbo => "CmdNBKMJNMLBBO", + Self::CmdGkilpaeeljh => "CmdGKILPAEELJH", + Self::CmdCgdadaacbfo => "CmdCGDADAACBFO", + Self::CmdAhbffeplbmd => "CmdAHBFFEPLBMD", + Self::CmdEkooanidbpp => "CmdEKOOANIDBPP", + Self::CmdIbobbdillef => "CmdIBOBBDILLEF", + Self::CmdMmjbhompnnh => "CmdMMJBHOMPNNH", + Self::CmdKmeojgkpnic => "CmdKMEOJGKPNIC", + Self::CmdIehclhcbiap => "CmdIEHCLHCBIAP", + Self::CmdGhbgnokpdkl => "CmdGHBGNOKPDKL", + Self::CmdEboahjgekmp => "CmdEBOAHJGEKMP", + Self::CmdOfhphmdaeab => "CmdOFHPHMDAEAB", + Self::CmdCbpgkbbbeep => "CmdCBPGKBBBEEP", + Self::CmdDlkclhjnegb => "CmdDLKCLHJNEGB", + Self::CmdIjncidccnfg => "CmdIJNCIDCCNFG", + Self::CmdBankfkmlpkp => "CmdBANKFKMLPKP", + Self::CmdKhnmpoadpfm => "CmdKHNMPOADPFM", + Self::CmdLedeckhlpjn => "CmdLEDECKHLPJN", + Self::OofgahehmagFfdmpggjbob => "OOFGAHEHMAG_FFDMPGGJBOB", + Self::CmdMgccigagecd => "CmdMGCCIGAGECD", + Self::CmdFemlpcafcfe => "CmdFEMLPCAFCFE", + Self::OofgahehmagDnipmccdkdk => "OOFGAHEHMAG_DNIPMCCDKDK", + Self::CmdGlfkbpcdnlm => "CmdGLFKBPCDNLM", + Self::CmdNenocoghfon => "CmdNENOCOGHFON", + Self::CmdKpbgjhihkha => "CmdKPBGJHIHKHA", + Self::CmdMmjaglclipo => "CmdMMJAGLCLIPO", + Self::CmdCnoingllhmb => "CmdCNOINGLLHMB", + Self::CmdMifgnjimlko => "CmdMIFGNJIMLKO", + Self::CmdNcgohbcbfmh => "CmdNCGOHBCBFMH", + Self::CmdEhbepefdphc => "CmdEHBEPEFDPHC", + Self::CmdGoiialeibob => "CmdGOIIALEIBOB", + Self::CmdNdajhdmmcoi => "CmdNDAJHDMMCOI", + Self::CmdDlkhmmljhca => "CmdDLKHMMLJHCA", + Self::CmdEpmnhlaejod => "CmdEPMNHLAEJOD", + Self::CmdBhfcgfiipek => "CmdBHFCGFIIPEK", + Self::CmdKmkofikgljd => "CmdKMKOFIKGLJD", + Self::CmdOnbjlecgiid => "CmdONBJLECGIID", + Self::CmdCjhkhijcbdl => "CmdCJHKHIJCBDL", + Self::CmdGfdgpbelegb => "CmdGFDGPBELEGB", + Self::CmdFigghkdldeh => "CmdFIGGHKDLDEH", + Self::CmdKaccpaljofk => "CmdKACCPALJOFK", + Self::CmdBeopbdooppd => "CmdBEOPBDOOPPD", + Self::CmdDmklpokpige => "CmdDMKLPOKPIGE", + Self::CmdOkjbbhpffan => "CmdOKJBBHPFFAN", + Self::CmdKngccckigdf => "CmdKNGCCCKIGDF", + Self::CmdFenmmjbpkki => "CmdFENMMJBPKKI", + Self::CmdLcnhojpjkhm => "CmdLCNHOJPJKHM", + Self::CmdFjdagbijmep => "CmdFJDAGBIJMEP", + Self::CmdPnnjikhkihj => "CmdPNNJIKHKIHJ", + Self::CmdJocpdpnobna => "CmdJOCPDPNOBNA", + Self::CmdPghhjgllokp => "CmdPGHHJGLLOKP", + Self::CmdNofklglkcal => "CmdNOFKLGLKCAL", + Self::CmdGpibedecndp => "CmdGPIBEDECNDP", + Self::CmdJcmooebeonf => "CmdJCMOOEBEONF", + Self::CmdFagafkidikb => "CmdFAGAFKIDIKB", + Self::CmdGmcaikpagmc => "CmdGMCAIKPAGMC", + Self::CmdHjfbjfnpdkb => "CmdHJFBJFNPDKB", + Self::OofgahehmagGcaiolldejm => "OOFGAHEHMAG_GCAIOLLDEJM", + Self::CmdKfhnbiknlbh => "CmdKFHNBIKNLBH", + Self::OofgahehmagLdjjlfcnmlf => "OOFGAHEHMAG_LDJJLFCNMLF", + Self::CmdHehobipohcp => "CmdHEHOBIPOHCP", + Self::CmdHhghiljdnai => "CmdHHGHILJDNAI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdGridFightTypeNone" => Some(Self::None), - "CmdGridFightGetFormationCsReq" => Some(Self::CmdGridFightGetFormationCsReq), - "CmdGridFightUpdateTraitTrackScRsp" => { - Some(Self::CmdGridFightUpdateTraitTrackScRsp) - } - "CmdGridFightUseOrbNotify" => Some(Self::CmdGridFightUseOrbNotify), - "CmdGridFightUseForgeScRsp" => Some(Self::CmdGridFightUseForgeScRsp), - "CmdGridFightUseOrbScRsp" => Some(Self::CmdGridFightUseOrbScRsp), - "CmdGridFightEquipDressScRsp" => Some(Self::CmdGridFightEquipDressScRsp), - "CmdGridFightEquipDressCsReq" => Some(Self::CmdGridFightEquipDressCsReq), - "CmdGridFightHandlePendingActionScRsp" => { - Some(Self::CmdGridFightHandlePendingActionScRsp) - } - "CmdGridFightAddFormationCsReq" => Some(Self::CmdGridFightAddFormationCsReq), - "CmdGridFightBackToPrepareCsReq" => { - Some(Self::CmdGridFightBackToPrepareCsReq) - } - "CmdGridFightFinishTutorialScRsp" => { - Some(Self::CmdGridFightFinishTutorialScRsp) - } - "CmdGridFightTakeWeeklyRewardScRsp" => { - Some(Self::CmdGridFightTakeWeeklyRewardScRsp) - } - "CmdGridFightGetFormationScRsp" => Some(Self::CmdGridFightGetFormationScRsp), - "CmdGridFightEndBattleStageNotify" => { - Some(Self::CmdGridFightEndBattleStageNotify) - } - "CmdGridFightTraitUpdateScRsp" => Some(Self::CmdGridFightTraitUpdateScRsp), - "CmdGridFightUpdateEliteBranchSelectScRsp" => { - Some(Self::CmdGridFightUpdateEliteBranchSelectScRsp) - } - "CmdGridFightSettleNotify" => Some(Self::CmdGridFightSettleNotify), - "CmdGridFightUpdateEquipTrackScRsp" => { - Some(Self::CmdGridFightUpdateEquipTrackScRsp) - } - "CmdGridFightUpdateTraitTrackCsReq" => { - Some(Self::CmdGridFightUpdateTraitTrackCsReq) - } - "CmdGridFightResumeGamePlayCsReq" => { - Some(Self::CmdGridFightResumeGamePlayCsReq) - } - "CmdGridFightSyncVirtualItemScNotify" => { - Some(Self::CmdGridFightSyncVirtualItemScNotify) - } - "CmdGridFightFinishTutorialCsReq" => { - Some(Self::CmdGridFightFinishTutorialCsReq) - } - "CmdGridFightBuyExpCsReq" => Some(Self::CmdGridFightBuyExpCsReq), - "CmdGridFightSyncUpdateResultScNotify" => { - Some(Self::CmdGridFightSyncUpdateResultScNotify) - } - "CmdGridFightUpdateEquipTrackProrityScRsp" => { - Some(Self::CmdGridFightUpdateEquipTrackProrityScRsp) - } - "CmdGridFightStartGamePlayScRsp" => { - Some(Self::CmdGridFightStartGamePlayScRsp) - } - "CmdGridFightUpdateFormationCsReq" => { - Some(Self::CmdGridFightUpdateFormationCsReq) - } - "CmdGridFightResetPermanentTalentScRsp" => { - Some(Self::CmdGridFightResetPermanentTalentScRsp) - } - "CmdGridFightAddFormationScRsp" => Some(Self::CmdGridFightAddFormationScRsp), - "CmdGridFightUpdateEliteBranchSelectCsReq" => { - Some(Self::CmdGridFightUpdateEliteBranchSelectCsReq) - } - "CmdGridFightUpdateEquipTrackProrityCsReq" => { - Some(Self::CmdGridFightUpdateEquipTrackProrityCsReq) - } - "CmdGridFightEnterBattleStageCsReq" => { - Some(Self::CmdGridFightEnterBattleStageCsReq) - } - "CmdGridFightGetDataCsReq" => Some(Self::CmdGridFightGetDataCsReq), - "CmdGridFightResetPermanentTalentCsReq" => { - Some(Self::CmdGridFightResetPermanentTalentCsReq) - } - "CmdGridFightEquipCraftScRsp" => Some(Self::CmdGridFightEquipCraftScRsp), - "CmdGridFightRefreshShopCsReq" => Some(Self::CmdGridFightRefreshShopCsReq), - "CmdGridFightBuyGoodsScRsp" => Some(Self::CmdGridFightBuyGoodsScRsp), - "CmdGridFightEnablePermanentTalentCsReq" => { - Some(Self::CmdGridFightEnablePermanentTalentCsReq) - } - "CmdGridFightTraitUpdateCsReq" => Some(Self::CmdGridFightTraitUpdateCsReq), - "CmdGridFightUpdateEquipTrackCsReq" => { - Some(Self::CmdGridFightUpdateEquipTrackCsReq) - } - "CmdGridFightQuitSettleCsReq" => Some(Self::CmdGridFightQuitSettleCsReq), - "CmdGridFightUseOrbCsReq" => Some(Self::CmdGridFightUseOrbCsReq), - "CmdGridFightUseConsumableCsReq" => { - Some(Self::CmdGridFightUseConsumableCsReq) - } - "CmdGridFightHandlePendingActionCsReq" => { - Some(Self::CmdGridFightHandlePendingActionCsReq) - } - "CmdGridFightEquipCraftCsReq" => Some(Self::CmdGridFightEquipCraftCsReq), - "CmdGridFightEnableSeasonTalentCsReq" => { - Some(Self::CmdGridFightEnableSeasonTalentCsReq) - } - "CmdGridFightEnterBattleStageScRsp" => { - Some(Self::CmdGridFightEnterBattleStageScRsp) - } - "CmdGridFightUpdateGameRefCsReq" => { - Some(Self::CmdGridFightUpdateGameRefCsReq) - } - "CmdGridFightUpdateGameRefScRsp" => { - Some(Self::CmdGridFightUpdateGameRefScRsp) - } - "CmdGridFightDeleteFormationCsReq" => { - Some(Self::CmdGridFightDeleteFormationCsReq) - } - "CmdGridFightResetSeasonTalentScRsp" => { - Some(Self::CmdGridFightResetSeasonTalentScRsp) - } - "CmdGridFightEnableSeasonTalentScRsp" => { - Some(Self::CmdGridFightEnableSeasonTalentScRsp) - } - "CmdGridFightBuyExpScRsp" => Some(Self::CmdGridFightBuyExpScRsp), - "CmdGridFightGetArchiveCsReq" => Some(Self::CmdGridFightGetArchiveCsReq), - "CmdGridFightBackToPrepareScRsp" => { - Some(Self::CmdGridFightBackToPrepareScRsp) - } - "CmdGridFightDeleteFormationScRsp" => { - Some(Self::CmdGridFightDeleteFormationScRsp) - } - "CmdGridFightResetSeasonTalentCsReq" => { - Some(Self::CmdGridFightResetSeasonTalentCsReq) - } - "CmdGridFightRecycleRoleScRsp" => Some(Self::CmdGridFightRecycleRoleScRsp), - "CmdGridFightSeasonHandBookNotify" => { - Some(Self::CmdGridFightSeasonHandBookNotify) - } - "CmdGridFightQuitLeaveGamePlayScRsp" => { - Some(Self::CmdGridFightQuitLeaveGamePlayScRsp) - } - "CmdGridFightResumeGamePlayScRsp" => { - Some(Self::CmdGridFightResumeGamePlayScRsp) - } - "CmdGridFightEnablePermanentTalentScRsp" => { - Some(Self::CmdGridFightEnablePermanentTalentScRsp) - } - "CmdGridFightStartGamePlayCsReq" => { - Some(Self::CmdGridFightStartGamePlayCsReq) - } - "CmdGridFightUpdatePosScRsp" => Some(Self::CmdGridFightUpdatePosScRsp), - "CmdGridFightUseForgeCsReq" => Some(Self::CmdGridFightUseForgeCsReq), - "CmdGridFightRefreshShopScRsp" => Some(Self::CmdGridFightRefreshShopScRsp), - "CmdGridFightQuitLeaveGamePlayCsReq" => { - Some(Self::CmdGridFightQuitLeaveGamePlayCsReq) - } - "CmdGridFightRecycleRoleCsReq" => Some(Self::CmdGridFightRecycleRoleCsReq), - "CmdGridFightGetShopRandomRuleCsReq" => { - Some(Self::CmdGridFightGetShopRandomRuleCsReq) - } - "CmdGridFightGetArchiveScRsp" => Some(Self::CmdGridFightGetArchiveScRsp), - "CmdGridFightTakeWeeklyRewardCsReq" => { - Some(Self::CmdGridFightTakeWeeklyRewardCsReq) - } - "CmdGridFightLockShopScRsp" => Some(Self::CmdGridFightLockShopScRsp), - "CmdGridFightUseConsumableScRsp" => { - Some(Self::CmdGridFightUseConsumableScRsp) - } - "CmdGridFightUpdateFormationScRsp" => { - Some(Self::CmdGridFightUpdateFormationScRsp) - } - "CmdGridFightGetDataScRsp" => Some(Self::CmdGridFightGetDataScRsp), - "CmdGridFightApplyFormationCsReq" => { - Some(Self::CmdGridFightApplyFormationCsReq) - } - "CmdGridFightLockShopCsReq" => Some(Self::CmdGridFightLockShopCsReq), - "CmdGridFightBuyGoodsCsReq" => Some(Self::CmdGridFightBuyGoodsCsReq), - "CmdGridFightUpdateWeeklyRewardInfoScNotify" => { - Some(Self::CmdGridFightUpdateWeeklyRewardInfoScNotify) - } - "CmdGridFightQuitSettleScRsp" => Some(Self::CmdGridFightQuitSettleScRsp), - "CmdGridFightApplyFormationScRsp" => { - Some(Self::CmdGridFightApplyFormationScRsp) - } - "CmdGridFightWeeklyExtraSeasonExpNotify" => { - Some(Self::CmdGridFightWeeklyExtraSeasonExpNotify) - } - "CmdGridFightDataScNotify" => Some(Self::CmdGridFightDataScNotify), - "CmdGridFightGetShopRandomRuleScRsp" => { - Some(Self::CmdGridFightGetShopRandomRuleScRsp) - } - "CmdGridFightUpdatePosCsReq" => Some(Self::CmdGridFightUpdatePosCsReq), + "OOFGAHEHMAG_ALOCMFAKBKP" => Some(Self::OofgahehmagAlocmfakbkp), + "CmdPBPIGABCJED" => Some(Self::CmdPbpigabcjed), + "CmdDOEKJBOHGGD" => Some(Self::CmdDoekjbohggd), + "CmdPGKDCDONKEI" => Some(Self::CmdPgkdcdonkei), + "CmdFCDPNMDNGFC" => Some(Self::CmdFcdpnmdngfc), + "OOFGAHEHMAG_MGFLGLHCILH" => Some(Self::OofgahehmagMgflglhcilh), + "CmdDBNEGFOMOJG" => Some(Self::CmdDbnegfomojg), + "CmdNDHPMCECJDN" => Some(Self::CmdNdhpmcecjdn), + "CmdEKELNGFIDJD" => Some(Self::CmdEkelngfidjd), + "CmdKPMLKCDIFBE" => Some(Self::CmdKpmlkcdifbe), + "CmdDELMBJCMFAP" => Some(Self::CmdDelmbjcmfap), + "CmdBKLFEDBGIOP" => Some(Self::CmdBklfedbgiop), + "CmdJDJFNMFEHNG" => Some(Self::CmdJdjfnmfehng), + "CmdGDBEHBFBKKD" => Some(Self::CmdGdbehbfbkkd), + "CmdIKOMIMHGIIN" => Some(Self::CmdIkomimhgiin), + "CmdHEHLILCFMME" => Some(Self::CmdHehlilcfmme), + "CmdNFPBIDKBCLM" => Some(Self::CmdNfpbidkbclm), + "CmdBNANEKNNMGD" => Some(Self::CmdBnaneknnmgd), + "CmdNPFMIPDCLOI" => Some(Self::CmdNpfmipdcloi), + "CmdGMAAJCPDFBF" => Some(Self::CmdGmaajcpdfbf), + "CmdFCMPHKJEBJA" => Some(Self::CmdFcmphkjebja), + "OOFGAHEHMAG_AOKHAGEIEGG" => Some(Self::OofgahehmagAokhageiegg), + "CmdNDLGFKKELLN" => Some(Self::CmdNdlgfkkelln), + "CmdABJBJOCBPLH" => Some(Self::CmdAbjbjocbplh), + "CmdNBKMJNMLBBO" => Some(Self::CmdNbkmjnmlbbo), + "CmdGKILPAEELJH" => Some(Self::CmdGkilpaeeljh), + "CmdCGDADAACBFO" => Some(Self::CmdCgdadaacbfo), + "CmdAHBFFEPLBMD" => Some(Self::CmdAhbffeplbmd), + "CmdEKOOANIDBPP" => Some(Self::CmdEkooanidbpp), + "CmdIBOBBDILLEF" => Some(Self::CmdIbobbdillef), + "CmdMMJBHOMPNNH" => Some(Self::CmdMmjbhompnnh), + "CmdKMEOJGKPNIC" => Some(Self::CmdKmeojgkpnic), + "CmdIEHCLHCBIAP" => Some(Self::CmdIehclhcbiap), + "CmdGHBGNOKPDKL" => Some(Self::CmdGhbgnokpdkl), + "CmdEBOAHJGEKMP" => Some(Self::CmdEboahjgekmp), + "CmdOFHPHMDAEAB" => Some(Self::CmdOfhphmdaeab), + "CmdCBPGKBBBEEP" => Some(Self::CmdCbpgkbbbeep), + "CmdDLKCLHJNEGB" => Some(Self::CmdDlkclhjnegb), + "CmdIJNCIDCCNFG" => Some(Self::CmdIjncidccnfg), + "CmdBANKFKMLPKP" => Some(Self::CmdBankfkmlpkp), + "CmdKHNMPOADPFM" => Some(Self::CmdKhnmpoadpfm), + "CmdLEDECKHLPJN" => Some(Self::CmdLedeckhlpjn), + "OOFGAHEHMAG_FFDMPGGJBOB" => Some(Self::OofgahehmagFfdmpggjbob), + "CmdMGCCIGAGECD" => Some(Self::CmdMgccigagecd), + "CmdFEMLPCAFCFE" => Some(Self::CmdFemlpcafcfe), + "OOFGAHEHMAG_DNIPMCCDKDK" => Some(Self::OofgahehmagDnipmccdkdk), + "CmdGLFKBPCDNLM" => Some(Self::CmdGlfkbpcdnlm), + "CmdNENOCOGHFON" => Some(Self::CmdNenocoghfon), + "CmdKPBGJHIHKHA" => Some(Self::CmdKpbgjhihkha), + "CmdMMJAGLCLIPO" => Some(Self::CmdMmjaglclipo), + "CmdCNOINGLLHMB" => Some(Self::CmdCnoingllhmb), + "CmdMIFGNJIMLKO" => Some(Self::CmdMifgnjimlko), + "CmdNCGOHBCBFMH" => Some(Self::CmdNcgohbcbfmh), + "CmdEHBEPEFDPHC" => Some(Self::CmdEhbepefdphc), + "CmdGOIIALEIBOB" => Some(Self::CmdGoiialeibob), + "CmdNDAJHDMMCOI" => Some(Self::CmdNdajhdmmcoi), + "CmdDLKHMMLJHCA" => Some(Self::CmdDlkhmmljhca), + "CmdEPMNHLAEJOD" => Some(Self::CmdEpmnhlaejod), + "CmdBHFCGFIIPEK" => Some(Self::CmdBhfcgfiipek), + "CmdKMKOFIKGLJD" => Some(Self::CmdKmkofikgljd), + "CmdONBJLECGIID" => Some(Self::CmdOnbjlecgiid), + "CmdCJHKHIJCBDL" => Some(Self::CmdCjhkhijcbdl), + "CmdGFDGPBELEGB" => Some(Self::CmdGfdgpbelegb), + "CmdFIGGHKDLDEH" => Some(Self::CmdFigghkdldeh), + "CmdKACCPALJOFK" => Some(Self::CmdKaccpaljofk), + "CmdBEOPBDOOPPD" => Some(Self::CmdBeopbdooppd), + "CmdDMKLPOKPIGE" => Some(Self::CmdDmklpokpige), + "CmdOKJBBHPFFAN" => Some(Self::CmdOkjbbhpffan), + "CmdKNGCCCKIGDF" => Some(Self::CmdKngccckigdf), + "CmdFENMMJBPKKI" => Some(Self::CmdFenmmjbpkki), + "CmdLCNHOJPJKHM" => Some(Self::CmdLcnhojpjkhm), + "CmdFJDAGBIJMEP" => Some(Self::CmdFjdagbijmep), + "CmdPNNJIKHKIHJ" => Some(Self::CmdPnnjikhkihj), + "CmdJOCPDPNOBNA" => Some(Self::CmdJocpdpnobna), + "CmdPGHHJGLLOKP" => Some(Self::CmdPghhjgllokp), + "CmdNOFKLGLKCAL" => Some(Self::CmdNofklglkcal), + "CmdGPIBEDECNDP" => Some(Self::CmdGpibedecndp), + "CmdJCMOOEBEONF" => Some(Self::CmdJcmooebeonf), + "CmdFAGAFKIDIKB" => Some(Self::CmdFagafkidikb), + "CmdGMCAIKPAGMC" => Some(Self::CmdGmcaikpagmc), + "CmdHJFBJFNPDKB" => Some(Self::CmdHjfbjfnpdkb), + "OOFGAHEHMAG_GCAIOLLDEJM" => Some(Self::OofgahehmagGcaiolldejm), + "CmdKFHNBIKNLBH" => Some(Self::CmdKfhnbiknlbh), + "OOFGAHEHMAG_LDJJLFCNMLF" => Some(Self::OofgahehmagLdjjlfcnmlf), + "CmdHEHOBIPOHCP" => Some(Self::CmdHehobipohcp), + "CmdHHGHILJDNAI" => Some(Self::CmdHhghiljdnai), _ => None, } } @@ -73290,32 +72871,32 @@ impl CmdGridFightType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dafjdhmghdc { - KGridFightLockTypeNone = 0, - KGridFightLockTypeAll = 6, - KGridFightLockTypeShop = 7, - KGridFightLockTypeBuyExp = 8, +pub enum Llicmhionjd { + Hhigmcholoa = 0, + Dammnahpnme = 6, + Eelilpfmgpo = 7, + Acjpoaecpmk = 8, } -impl Dafjdhmghdc { +impl Llicmhionjd { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightLockTypeNone => "kGridFightLockTypeNone", - Self::KGridFightLockTypeAll => "kGridFightLockTypeAll", - Self::KGridFightLockTypeShop => "kGridFightLockTypeShop", - Self::KGridFightLockTypeBuyExp => "kGridFightLockTypeBuyExp", + Self::Hhigmcholoa => "LLICMHIONJD_HHIGMCHOLOA", + Self::Dammnahpnme => "LLICMHIONJD_DAMMNAHPNME", + Self::Eelilpfmgpo => "LLICMHIONJD_EELILPFMGPO", + Self::Acjpoaecpmk => "LLICMHIONJD_ACJPOAECPMK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightLockTypeNone" => Some(Self::KGridFightLockTypeNone), - "kGridFightLockTypeAll" => Some(Self::KGridFightLockTypeAll), - "kGridFightLockTypeShop" => Some(Self::KGridFightLockTypeShop), - "kGridFightLockTypeBuyExp" => Some(Self::KGridFightLockTypeBuyExp), + "LLICMHIONJD_HHIGMCHOLOA" => Some(Self::Hhigmcholoa), + "LLICMHIONJD_DAMMNAHPNME" => Some(Self::Dammnahpnme), + "LLICMHIONJD_EELILPFMGPO" => Some(Self::Eelilpfmgpo), + "LLICMHIONJD_ACJPOAECPMK" => Some(Self::Acjpoaecpmk), _ => None, } } @@ -73323,36 +72904,32 @@ impl Dafjdhmghdc { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pgkahnkhnbm { - KGridFightLockReasonUnknown = 0, - KGridFightLockReasonBattle = 1, - KGridFightLockReasonAction = 2, - KGridFightLockReasonPendingAction = 3, +pub enum Mookocdkdjd { + Fpdiooffodi = 0, + Dgnfjgfogpp = 1, + Jhfkhinmkmn = 2, + Opcjeahpigb = 3, } -impl Pgkahnkhnbm { +impl Mookocdkdjd { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightLockReasonUnknown => "kGridFightLockReasonUnknown", - Self::KGridFightLockReasonBattle => "kGridFightLockReasonBattle", - Self::KGridFightLockReasonAction => "kGridFightLockReasonAction", - Self::KGridFightLockReasonPendingAction => { - "kGridFightLockReasonPendingAction" - } + Self::Fpdiooffodi => "MOOKOCDKDJD_FPDIOOFFODI", + Self::Dgnfjgfogpp => "MOOKOCDKDJD_DGNFJGFOGPP", + Self::Jhfkhinmkmn => "MOOKOCDKDJD_JHFKHINMKMN", + Self::Opcjeahpigb => "MOOKOCDKDJD_OPCJEAHPIGB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightLockReasonUnknown" => Some(Self::KGridFightLockReasonUnknown), - "kGridFightLockReasonBattle" => Some(Self::KGridFightLockReasonBattle), - "kGridFightLockReasonAction" => Some(Self::KGridFightLockReasonAction), - "kGridFightLockReasonPendingAction" => { - Some(Self::KGridFightLockReasonPendingAction) - } + "MOOKOCDKDJD_FPDIOOFFODI" => Some(Self::Fpdiooffodi), + "MOOKOCDKDJD_DGNFJGFOGPP" => Some(Self::Dgnfjgfogpp), + "MOOKOCDKDJD_JHFKHINMKMN" => Some(Self::Jhfkhinmkmn), + "MOOKOCDKDJD_OPCJEAHPIGB" => Some(Self::Opcjeahpigb), _ => None, } } @@ -73360,115 +72937,113 @@ impl Pgkahnkhnbm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Clghhjdadef { - KGridFightSrcNone = 0, - KGridFightSrcUseOrb = 1, - KGridFightSrcInitialSupplySelect = 2, - KGridFightSrcSelectPortalBuff = 3, - KGridFightSrcSelectAugment = 4, - KGridFightSrcTraitEffectUpdate = 5, - KGridFightSrcEnterNode = 6, - KGridFightSrcManualRefreshGoods = 7, - KGridFightSrcBuyGoods = 8, - KGridFightSrcMergeRole = 9, - KGridFightSrcAugment = 10, - KGridFightSrcPortalBuff = 11, - KGridFightSrcTalent = 12, - KGridFightSrcCraftEquip = 13, - KGridFightSrcDressEquip = 14, - KGridFightSrcAffix = 15, - KGridFightSrcUseForge = 16, - KGridFightSrcSelectSupply = 17, - KGridFightSrcBattleEnd = 18, - KGridFightSrcEliteBranchBattleBonus = 19, - KGridFightSrcCopyRole = 20, - KGridFightSrcDivision = 21, - KGridFightSrcSpecialGoods = 22, - KGridFightSrcEquipModifier = 23, - KGridFightSrcPreInitialSupplySelect = 24, - KGridFightSrcRecycleRole = 25, - KGridFightSrcUseConsumable = 26, +pub enum Kfgdppgfnge { + Mfhpkoahmna = 0, + Ijkknflhjpb = 1, + Foecdkdpjda = 2, + Nmobmjjjeno = 3, + Cnkbghbhoah = 4, + Fkppmmlohcl = 5, + Diagkpmnohb = 6, + Ilekijhaebh = 7, + Ldkhcajajoc = 8, + Fbogkkfffbb = 9, + Fhmcnmmghag = 10, + Ikeljcmmpnc = 11, + Dgnbgnobgcf = 12, + Epcoenakpde = 13, + Ielcbpocjdh = 14, + Dchmpepofii = 15, + Pjlhicmoddj = 16, + Cnnlkhcegjh = 17, + Oaijjojdddg = 18, + Bgkmaofllda = 19, + Fddminhkjim = 20, + Lcapnmpokjn = 21, + Hnfaicnljeg = 22, + Emdkeohomah = 23, + Makeljaehdn = 24, + Oojdlhpkfjh = 25, + Laidljjnkmf = 26, + Gfpgbajfapb = 27, + Mkpelmjdilk = 28, + Ohligcjdnke = 29, + Gidfdehmbfg = 30, } -impl Clghhjdadef { +impl Kfgdppgfnge { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightSrcNone => "kGridFightSrcNone", - Self::KGridFightSrcUseOrb => "kGridFightSrcUseOrb", - Self::KGridFightSrcInitialSupplySelect => "kGridFightSrcInitialSupplySelect", - Self::KGridFightSrcSelectPortalBuff => "kGridFightSrcSelectPortalBuff", - Self::KGridFightSrcSelectAugment => "kGridFightSrcSelectAugment", - Self::KGridFightSrcTraitEffectUpdate => "kGridFightSrcTraitEffectUpdate", - Self::KGridFightSrcEnterNode => "kGridFightSrcEnterNode", - Self::KGridFightSrcManualRefreshGoods => "kGridFightSrcManualRefreshGoods", - Self::KGridFightSrcBuyGoods => "kGridFightSrcBuyGoods", - Self::KGridFightSrcMergeRole => "kGridFightSrcMergeRole", - Self::KGridFightSrcAugment => "kGridFightSrcAugment", - Self::KGridFightSrcPortalBuff => "kGridFightSrcPortalBuff", - Self::KGridFightSrcTalent => "kGridFightSrcTalent", - Self::KGridFightSrcCraftEquip => "kGridFightSrcCraftEquip", - Self::KGridFightSrcDressEquip => "kGridFightSrcDressEquip", - Self::KGridFightSrcAffix => "kGridFightSrcAffix", - Self::KGridFightSrcUseForge => "kGridFightSrcUseForge", - Self::KGridFightSrcSelectSupply => "kGridFightSrcSelectSupply", - Self::KGridFightSrcBattleEnd => "kGridFightSrcBattleEnd", - Self::KGridFightSrcEliteBranchBattleBonus => { - "kGridFightSrcEliteBranchBattleBonus" - } - Self::KGridFightSrcCopyRole => "kGridFightSrcCopyRole", - Self::KGridFightSrcDivision => "kGridFightSrcDivision", - Self::KGridFightSrcSpecialGoods => "kGridFightSrcSpecialGoods", - Self::KGridFightSrcEquipModifier => "kGridFightSrcEquipModifier", - Self::KGridFightSrcPreInitialSupplySelect => { - "kGridFightSrcPreInitialSupplySelect" - } - Self::KGridFightSrcRecycleRole => "kGridFightSrcRecycleRole", - Self::KGridFightSrcUseConsumable => "kGridFightSrcUseConsumable", + Self::Mfhpkoahmna => "KFGDPPGFNGE_MFHPKOAHMNA", + Self::Ijkknflhjpb => "KFGDPPGFNGE_IJKKNFLHJPB", + Self::Foecdkdpjda => "KFGDPPGFNGE_FOECDKDPJDA", + Self::Nmobmjjjeno => "KFGDPPGFNGE_NMOBMJJJENO", + Self::Cnkbghbhoah => "KFGDPPGFNGE_CNKBGHBHOAH", + Self::Fkppmmlohcl => "KFGDPPGFNGE_FKPPMMLOHCL", + Self::Diagkpmnohb => "KFGDPPGFNGE_DIAGKPMNOHB", + Self::Ilekijhaebh => "KFGDPPGFNGE_ILEKIJHAEBH", + Self::Ldkhcajajoc => "KFGDPPGFNGE_LDKHCAJAJOC", + Self::Fbogkkfffbb => "KFGDPPGFNGE_FBOGKKFFFBB", + Self::Fhmcnmmghag => "KFGDPPGFNGE_FHMCNMMGHAG", + Self::Ikeljcmmpnc => "KFGDPPGFNGE_IKELJCMMPNC", + Self::Dgnbgnobgcf => "KFGDPPGFNGE_DGNBGNOBGCF", + Self::Epcoenakpde => "KFGDPPGFNGE_EPCOENAKPDE", + Self::Ielcbpocjdh => "KFGDPPGFNGE_IELCBPOCJDH", + Self::Dchmpepofii => "KFGDPPGFNGE_DCHMPEPOFII", + Self::Pjlhicmoddj => "KFGDPPGFNGE_PJLHICMODDJ", + Self::Cnnlkhcegjh => "KFGDPPGFNGE_CNNLKHCEGJH", + Self::Oaijjojdddg => "KFGDPPGFNGE_OAIJJOJDDDG", + Self::Bgkmaofllda => "KFGDPPGFNGE_BGKMAOFLLDA", + Self::Fddminhkjim => "KFGDPPGFNGE_FDDMINHKJIM", + Self::Lcapnmpokjn => "KFGDPPGFNGE_LCAPNMPOKJN", + Self::Hnfaicnljeg => "KFGDPPGFNGE_HNFAICNLJEG", + Self::Emdkeohomah => "KFGDPPGFNGE_EMDKEOHOMAH", + Self::Makeljaehdn => "KFGDPPGFNGE_MAKELJAEHDN", + Self::Oojdlhpkfjh => "KFGDPPGFNGE_OOJDLHPKFJH", + Self::Laidljjnkmf => "KFGDPPGFNGE_LAIDLJJNKMF", + Self::Gfpgbajfapb => "KFGDPPGFNGE_GFPGBAJFAPB", + Self::Mkpelmjdilk => "KFGDPPGFNGE_MKPELMJDILK", + Self::Ohligcjdnke => "KFGDPPGFNGE_OHLIGCJDNKE", + Self::Gidfdehmbfg => "KFGDPPGFNGE_GIDFDEHMBFG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightSrcNone" => Some(Self::KGridFightSrcNone), - "kGridFightSrcUseOrb" => Some(Self::KGridFightSrcUseOrb), - "kGridFightSrcInitialSupplySelect" => { - Some(Self::KGridFightSrcInitialSupplySelect) - } - "kGridFightSrcSelectPortalBuff" => Some(Self::KGridFightSrcSelectPortalBuff), - "kGridFightSrcSelectAugment" => Some(Self::KGridFightSrcSelectAugment), - "kGridFightSrcTraitEffectUpdate" => { - Some(Self::KGridFightSrcTraitEffectUpdate) - } - "kGridFightSrcEnterNode" => Some(Self::KGridFightSrcEnterNode), - "kGridFightSrcManualRefreshGoods" => { - Some(Self::KGridFightSrcManualRefreshGoods) - } - "kGridFightSrcBuyGoods" => Some(Self::KGridFightSrcBuyGoods), - "kGridFightSrcMergeRole" => Some(Self::KGridFightSrcMergeRole), - "kGridFightSrcAugment" => Some(Self::KGridFightSrcAugment), - "kGridFightSrcPortalBuff" => Some(Self::KGridFightSrcPortalBuff), - "kGridFightSrcTalent" => Some(Self::KGridFightSrcTalent), - "kGridFightSrcCraftEquip" => Some(Self::KGridFightSrcCraftEquip), - "kGridFightSrcDressEquip" => Some(Self::KGridFightSrcDressEquip), - "kGridFightSrcAffix" => Some(Self::KGridFightSrcAffix), - "kGridFightSrcUseForge" => Some(Self::KGridFightSrcUseForge), - "kGridFightSrcSelectSupply" => Some(Self::KGridFightSrcSelectSupply), - "kGridFightSrcBattleEnd" => Some(Self::KGridFightSrcBattleEnd), - "kGridFightSrcEliteBranchBattleBonus" => { - Some(Self::KGridFightSrcEliteBranchBattleBonus) - } - "kGridFightSrcCopyRole" => Some(Self::KGridFightSrcCopyRole), - "kGridFightSrcDivision" => Some(Self::KGridFightSrcDivision), - "kGridFightSrcSpecialGoods" => Some(Self::KGridFightSrcSpecialGoods), - "kGridFightSrcEquipModifier" => Some(Self::KGridFightSrcEquipModifier), - "kGridFightSrcPreInitialSupplySelect" => { - Some(Self::KGridFightSrcPreInitialSupplySelect) - } - "kGridFightSrcRecycleRole" => Some(Self::KGridFightSrcRecycleRole), - "kGridFightSrcUseConsumable" => Some(Self::KGridFightSrcUseConsumable), + "KFGDPPGFNGE_MFHPKOAHMNA" => Some(Self::Mfhpkoahmna), + "KFGDPPGFNGE_IJKKNFLHJPB" => Some(Self::Ijkknflhjpb), + "KFGDPPGFNGE_FOECDKDPJDA" => Some(Self::Foecdkdpjda), + "KFGDPPGFNGE_NMOBMJJJENO" => Some(Self::Nmobmjjjeno), + "KFGDPPGFNGE_CNKBGHBHOAH" => Some(Self::Cnkbghbhoah), + "KFGDPPGFNGE_FKPPMMLOHCL" => Some(Self::Fkppmmlohcl), + "KFGDPPGFNGE_DIAGKPMNOHB" => Some(Self::Diagkpmnohb), + "KFGDPPGFNGE_ILEKIJHAEBH" => Some(Self::Ilekijhaebh), + "KFGDPPGFNGE_LDKHCAJAJOC" => Some(Self::Ldkhcajajoc), + "KFGDPPGFNGE_FBOGKKFFFBB" => Some(Self::Fbogkkfffbb), + "KFGDPPGFNGE_FHMCNMMGHAG" => Some(Self::Fhmcnmmghag), + "KFGDPPGFNGE_IKELJCMMPNC" => Some(Self::Ikeljcmmpnc), + "KFGDPPGFNGE_DGNBGNOBGCF" => Some(Self::Dgnbgnobgcf), + "KFGDPPGFNGE_EPCOENAKPDE" => Some(Self::Epcoenakpde), + "KFGDPPGFNGE_IELCBPOCJDH" => Some(Self::Ielcbpocjdh), + "KFGDPPGFNGE_DCHMPEPOFII" => Some(Self::Dchmpepofii), + "KFGDPPGFNGE_PJLHICMODDJ" => Some(Self::Pjlhicmoddj), + "KFGDPPGFNGE_CNNLKHCEGJH" => Some(Self::Cnnlkhcegjh), + "KFGDPPGFNGE_OAIJJOJDDDG" => Some(Self::Oaijjojdddg), + "KFGDPPGFNGE_BGKMAOFLLDA" => Some(Self::Bgkmaofllda), + "KFGDPPGFNGE_FDDMINHKJIM" => Some(Self::Fddminhkjim), + "KFGDPPGFNGE_LCAPNMPOKJN" => Some(Self::Lcapnmpokjn), + "KFGDPPGFNGE_HNFAICNLJEG" => Some(Self::Hnfaicnljeg), + "KFGDPPGFNGE_EMDKEOHOMAH" => Some(Self::Emdkeohomah), + "KFGDPPGFNGE_MAKELJAEHDN" => Some(Self::Makeljaehdn), + "KFGDPPGFNGE_OOJDLHPKFJH" => Some(Self::Oojdlhpkfjh), + "KFGDPPGFNGE_LAIDLJJNKMF" => Some(Self::Laidljjnkmf), + "KFGDPPGFNGE_GFPGBAJFAPB" => Some(Self::Gfpgbajfapb), + "KFGDPPGFNGE_MKPELMJDILK" => Some(Self::Mkpelmjdilk), + "KFGDPPGFNGE_OHLIGCJDNKE" => Some(Self::Ohligcjdnke), + "KFGDPPGFNGE_GIDFDEHMBFG" => Some(Self::Gidfdehmbfg), _ => None, } } @@ -73476,37 +73051,29 @@ impl Clghhjdadef { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hjldegakhhb { - KGridFightEquipTrackSourceNone = 0, - KGridFightEquipTrackSourceRecommend = 1, - KGridFightEquipTrackSourceGuide = 2, +pub enum Plngddngcnc { + Cphncfmeafh = 0, + Apcdmmkgbon = 1, + Oejbpihfcce = 2, } -impl Hjldegakhhb { +impl Plngddngcnc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightEquipTrackSourceNone => "kGridFightEquipTrackSourceNone", - Self::KGridFightEquipTrackSourceRecommend => { - "kGridFightEquipTrackSourceRecommend" - } - Self::KGridFightEquipTrackSourceGuide => "kGridFightEquipTrackSourceGuide", + Self::Cphncfmeafh => "PLNGDDNGCNC_CPHNCFMEAFH", + Self::Apcdmmkgbon => "PLNGDDNGCNC_APCDMMKGBON", + Self::Oejbpihfcce => "PLNGDDNGCNC_OEJBPIHFCCE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightEquipTrackSourceNone" => { - Some(Self::KGridFightEquipTrackSourceNone) - } - "kGridFightEquipTrackSourceRecommend" => { - Some(Self::KGridFightEquipTrackSourceRecommend) - } - "kGridFightEquipTrackSourceGuide" => { - Some(Self::KGridFightEquipTrackSourceGuide) - } + "PLNGDDNGCNC_CPHNCFMEAFH" => Some(Self::Cphncfmeafh), + "PLNGDDNGCNC_APCDMMKGBON" => Some(Self::Apcdmmkgbon), + "PLNGDDNGCNC_OEJBPIHFCCE" => Some(Self::Oejbpihfcce), _ => None, } } @@ -73514,35 +73081,29 @@ impl Hjldegakhhb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Odihphkjlfp { - KGridFightEquipDressSourceNone = 0, - KGridFightEquipDressSourceManual = 1, - KGridFightEquipDressSourceTrack = 2, +pub enum Pckjppikdhg { + Ncbbnlapeoo = 0, + Amfgmmpanll = 1, + Cigndehokmf = 2, } -impl Odihphkjlfp { +impl Pckjppikdhg { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightEquipDressSourceNone => "kGridFightEquipDressSourceNone", - Self::KGridFightEquipDressSourceManual => "kGridFightEquipDressSourceManual", - Self::KGridFightEquipDressSourceTrack => "kGridFightEquipDressSourceTrack", + Self::Ncbbnlapeoo => "PCKJPPIKDHG_NCBBNLAPEOO", + Self::Amfgmmpanll => "PCKJPPIKDHG_AMFGMMPANLL", + Self::Cigndehokmf => "PCKJPPIKDHG_CIGNDEHOKMF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightEquipDressSourceNone" => { - Some(Self::KGridFightEquipDressSourceNone) - } - "kGridFightEquipDressSourceManual" => { - Some(Self::KGridFightEquipDressSourceManual) - } - "kGridFightEquipDressSourceTrack" => { - Some(Self::KGridFightEquipDressSourceTrack) - } + "PCKJPPIKDHG_NCBBNLAPEOO" => Some(Self::Ncbbnlapeoo), + "PCKJPPIKDHG_AMFGMMPANLL" => Some(Self::Amfgmmpanll), + "PCKJPPIKDHG_CIGNDEHOKMF" => Some(Self::Cigndehokmf), _ => None, } } @@ -73550,42 +73111,32 @@ impl Odihphkjlfp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ehfpjajohlj { - KGridFightEquipCraftSourceNone = 0, - KGridFightEquipCraftSourceManual = 1, - KGridFightEquipCraftSourceTrack = 2, - KGridFightEquipCraftSourceRecommend = 3, +pub enum Icnccfgdgde { + Joboibanopj = 0, + Phlmiehgbed = 1, + Laiafgenfka = 2, + Eegpgnnkbdd = 3, } -impl Ehfpjajohlj { +impl Icnccfgdgde { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightEquipCraftSourceNone => "kGridFightEquipCraftSourceNone", - Self::KGridFightEquipCraftSourceManual => "kGridFightEquipCraftSourceManual", - Self::KGridFightEquipCraftSourceTrack => "kGridFightEquipCraftSourceTrack", - Self::KGridFightEquipCraftSourceRecommend => { - "kGridFightEquipCraftSourceRecommend" - } + Self::Joboibanopj => "ICNCCFGDGDE_JOBOIBANOPJ", + Self::Phlmiehgbed => "ICNCCFGDGDE_PHLMIEHGBED", + Self::Laiafgenfka => "ICNCCFGDGDE_LAIAFGENFKA", + Self::Eegpgnnkbdd => "ICNCCFGDGDE_EEGPGNNKBDD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightEquipCraftSourceNone" => { - Some(Self::KGridFightEquipCraftSourceNone) - } - "kGridFightEquipCraftSourceManual" => { - Some(Self::KGridFightEquipCraftSourceManual) - } - "kGridFightEquipCraftSourceTrack" => { - Some(Self::KGridFightEquipCraftSourceTrack) - } - "kGridFightEquipCraftSourceRecommend" => { - Some(Self::KGridFightEquipCraftSourceRecommend) - } + "ICNCCFGDGDE_JOBOIBANOPJ" => Some(Self::Joboibanopj), + "ICNCCFGDGDE_PHLMIEHGBED" => Some(Self::Phlmiehgbed), + "ICNCCFGDGDE_LAIAFGENFKA" => Some(Self::Laiafgenfka), + "ICNCCFGDGDE_EEGPGNNKBDD" => Some(Self::Eegpgnnkbdd), _ => None, } } @@ -73593,31 +73144,29 @@ impl Ehfpjajohlj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mgdpfkjpmjj { - KGridFightRollEquipSourceNone = 0, - KGridFightRollEquipSourceManual = 1, - KGridFightRollEquipSourceAuto = 2, +pub enum Aplcbhmkcld { + Baobcgpfhkb = 0, + Didfdpmoood = 1, + Jlhcogadnhc = 2, } -impl Mgdpfkjpmjj { +impl Aplcbhmkcld { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightRollEquipSourceNone => "kGridFightRollEquipSourceNone", - Self::KGridFightRollEquipSourceManual => "kGridFightRollEquipSourceManual", - Self::KGridFightRollEquipSourceAuto => "kGridFightRollEquipSourceAuto", + Self::Baobcgpfhkb => "APLCBHMKCLD_BAOBCGPFHKB", + Self::Didfdpmoood => "APLCBHMKCLD_DIDFDPMOOOD", + Self::Jlhcogadnhc => "APLCBHMKCLD_JLHCOGADNHC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightRollEquipSourceNone" => Some(Self::KGridFightRollEquipSourceNone), - "kGridFightRollEquipSourceManual" => { - Some(Self::KGridFightRollEquipSourceManual) - } - "kGridFightRollEquipSourceAuto" => Some(Self::KGridFightRollEquipSourceAuto), + "APLCBHMKCLD_BAOBCGPFHKB" => Some(Self::Baobcgpfhkb), + "APLCBHMKCLD_DIDFDPMOOOD" => Some(Self::Didfdpmoood), + "APLCBHMKCLD_JLHCOGADNHC" => Some(Self::Jlhcogadnhc), _ => None, } } @@ -73625,29 +73174,29 @@ impl Mgdpfkjpmjj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Cbapbddmecl { - KGridFightDropReasonNone = 0, - KGridFightDropReasonBattle = 1, - KGridFightDropReasonMonster = 2, +pub enum Edackgklogh { + Ahppgkongmo = 0, + Hehllpfmgpa = 1, + Kijhcechjoh = 2, } -impl Cbapbddmecl { +impl Edackgklogh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightDropReasonNone => "kGridFightDropReasonNone", - Self::KGridFightDropReasonBattle => "kGridFightDropReasonBattle", - Self::KGridFightDropReasonMonster => "kGridFightDropReasonMonster", + Self::Ahppgkongmo => "EDACKGKLOGH_AHPPGKONGMO", + Self::Hehllpfmgpa => "EDACKGKLOGH_HEHLLPFMGPA", + Self::Kijhcechjoh => "EDACKGKLOGH_KIJHCECHJOH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightDropReasonNone" => Some(Self::KGridFightDropReasonNone), - "kGridFightDropReasonBattle" => Some(Self::KGridFightDropReasonBattle), - "kGridFightDropReasonMonster" => Some(Self::KGridFightDropReasonMonster), + "EDACKGKLOGH_AHPPGKONGMO" => Some(Self::Ahppgkongmo), + "EDACKGKLOGH_HEHLLPFMGPA" => Some(Self::Hehllpfmgpa), + "EDACKGKLOGH_KIJHCECHJOH" => Some(Self::Kijhcechjoh), _ => None, } } @@ -73655,44 +73204,38 @@ impl Cbapbddmecl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Cdmemgiljgb { - KGridFightGlobalHpChangeReasonNone = 0, - KGridFightGlobalHpBaseCost = 1, - KGridFightGlobalHpExtraCost = 2, - KGridFightGlobalHpAugmentAdd = 3, - KGridFightGlobalHpEffectCost = 4, - KGridFightGlobalHpThresholdCost = 5, +pub enum Ajafjogocnn { + Ebbbdankchc = 0, + Jlpfkjjfood = 1, + Bndghknmpfn = 2, + Bnjggifalea = 3, + Lpefeejpako = 4, + Cboplcipkgp = 5, } -impl Cdmemgiljgb { +impl Ajafjogocnn { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightGlobalHpChangeReasonNone => { - "kGridFightGlobalHpChangeReasonNone" - } - Self::KGridFightGlobalHpBaseCost => "kGridFightGlobalHpBaseCost", - Self::KGridFightGlobalHpExtraCost => "kGridFightGlobalHpExtraCost", - Self::KGridFightGlobalHpAugmentAdd => "kGridFightGlobalHpAugmentAdd", - Self::KGridFightGlobalHpEffectCost => "kGridFightGlobalHpEffectCost", - Self::KGridFightGlobalHpThresholdCost => "kGridFightGlobalHpThresholdCost", + Self::Ebbbdankchc => "AJAFJOGOCNN_EBBBDANKCHC", + Self::Jlpfkjjfood => "AJAFJOGOCNN_JLPFKJJFOOD", + Self::Bndghknmpfn => "AJAFJOGOCNN_BNDGHKNMPFN", + Self::Bnjggifalea => "AJAFJOGOCNN_BNJGGIFALEA", + Self::Lpefeejpako => "AJAFJOGOCNN_LPEFEEJPAKO", + Self::Cboplcipkgp => "AJAFJOGOCNN_CBOPLCIPKGP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightGlobalHpChangeReasonNone" => { - Some(Self::KGridFightGlobalHpChangeReasonNone) - } - "kGridFightGlobalHpBaseCost" => Some(Self::KGridFightGlobalHpBaseCost), - "kGridFightGlobalHpExtraCost" => Some(Self::KGridFightGlobalHpExtraCost), - "kGridFightGlobalHpAugmentAdd" => Some(Self::KGridFightGlobalHpAugmentAdd), - "kGridFightGlobalHpEffectCost" => Some(Self::KGridFightGlobalHpEffectCost), - "kGridFightGlobalHpThresholdCost" => { - Some(Self::KGridFightGlobalHpThresholdCost) - } + "AJAFJOGOCNN_EBBBDANKCHC" => Some(Self::Ebbbdankchc), + "AJAFJOGOCNN_JLPFKJJFOOD" => Some(Self::Jlpfkjjfood), + "AJAFJOGOCNN_BNDGHKNMPFN" => Some(Self::Bndghknmpfn), + "AJAFJOGOCNN_BNJGGIFALEA" => Some(Self::Bnjggifalea), + "AJAFJOGOCNN_LPEFEEJPAKO" => Some(Self::Lpefeejpako), + "AJAFJOGOCNN_CBOPLCIPKGP" => Some(Self::Cboplcipkgp), _ => None, } } @@ -73700,47 +73243,47 @@ impl Cdmemgiljgb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pnhijblbjlj { - KUpdateGlobalHpNone = 0, - KSubGlobalHpBaseCost = 1, - KSubGlobalHpExtraCost = 2, - KSubGlobalHpThresholdCost = 3, - KSubGlobalHpEffectCost = 4, - KAddGlobalHpTalent = 101, - KAddGlobalHpAugment = 102, - KAddGlobalHpFinalBattleTurn = 103, - KSetGlobalHpRevive = 201, +pub enum Blfiehcingg { + Phkfbjklnig = 0, + Ffjeapbimpd = 1, + Iefoikldbcf = 2, + Ecjikiamidb = 3, + Fnkjahnejnh = 4, + Gocojhdgijd = 101, + Dioflgmbkjm = 102, + Pkegnnhiolb = 103, + Odcecfejkmf = 201, } -impl Pnhijblbjlj { +impl Blfiehcingg { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KUpdateGlobalHpNone => "kUpdateGlobalHpNone", - Self::KSubGlobalHpBaseCost => "kSubGlobalHpBaseCost", - Self::KSubGlobalHpExtraCost => "kSubGlobalHpExtraCost", - Self::KSubGlobalHpThresholdCost => "kSubGlobalHpThresholdCost", - Self::KSubGlobalHpEffectCost => "kSubGlobalHpEffectCost", - Self::KAddGlobalHpTalent => "kAddGlobalHpTalent", - Self::KAddGlobalHpAugment => "kAddGlobalHpAugment", - Self::KAddGlobalHpFinalBattleTurn => "kAddGlobalHpFinalBattleTurn", - Self::KSetGlobalHpRevive => "kSetGlobalHpRevive", + Self::Phkfbjklnig => "BLFIEHCINGG_PHKFBJKLNIG", + Self::Ffjeapbimpd => "BLFIEHCINGG_FFJEAPBIMPD", + Self::Iefoikldbcf => "BLFIEHCINGG_IEFOIKLDBCF", + Self::Ecjikiamidb => "BLFIEHCINGG_ECJIKIAMIDB", + Self::Fnkjahnejnh => "BLFIEHCINGG_FNKJAHNEJNH", + Self::Gocojhdgijd => "BLFIEHCINGG_GOCOJHDGIJD", + Self::Dioflgmbkjm => "BLFIEHCINGG_DIOFLGMBKJM", + Self::Pkegnnhiolb => "BLFIEHCINGG_PKEGNNHIOLB", + Self::Odcecfejkmf => "BLFIEHCINGG_ODCECFEJKMF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kUpdateGlobalHpNone" => Some(Self::KUpdateGlobalHpNone), - "kSubGlobalHpBaseCost" => Some(Self::KSubGlobalHpBaseCost), - "kSubGlobalHpExtraCost" => Some(Self::KSubGlobalHpExtraCost), - "kSubGlobalHpThresholdCost" => Some(Self::KSubGlobalHpThresholdCost), - "kSubGlobalHpEffectCost" => Some(Self::KSubGlobalHpEffectCost), - "kAddGlobalHpTalent" => Some(Self::KAddGlobalHpTalent), - "kAddGlobalHpAugment" => Some(Self::KAddGlobalHpAugment), - "kAddGlobalHpFinalBattleTurn" => Some(Self::KAddGlobalHpFinalBattleTurn), - "kSetGlobalHpRevive" => Some(Self::KSetGlobalHpRevive), + "BLFIEHCINGG_PHKFBJKLNIG" => Some(Self::Phkfbjklnig), + "BLFIEHCINGG_FFJEAPBIMPD" => Some(Self::Ffjeapbimpd), + "BLFIEHCINGG_IEFOIKLDBCF" => Some(Self::Iefoikldbcf), + "BLFIEHCINGG_ECJIKIAMIDB" => Some(Self::Ecjikiamidb), + "BLFIEHCINGG_FNKJAHNEJNH" => Some(Self::Fnkjahnejnh), + "BLFIEHCINGG_GOCOJHDGIJD" => Some(Self::Gocojhdgijd), + "BLFIEHCINGG_DIOFLGMBKJM" => Some(Self::Dioflgmbkjm), + "BLFIEHCINGG_PKEGNNHIOLB" => Some(Self::Pkegnnhiolb), + "BLFIEHCINGG_ODCECFEJKMF" => Some(Self::Odcecfejkmf), _ => None, } } @@ -73748,39 +73291,35 @@ impl Pnhijblbjlj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pmlcfanemja { - KGridFightSettleReasonNone = 0, - KGridFightSettleReasonQuit = 1, - KGridFightSettleReasonHpZero = 2, - KGridFightSettleReasonFinish = 3, - KGridFightSettleReasonSubSeasonEnd = 4, +pub enum Jkoaglnmgcc { + Eacncppagdk = 0, + Ajlgaonemcl = 1, + Cgklmoickfe = 2, + Aaikkingjpm = 3, + Ojfejgaplng = 4, } -impl Pmlcfanemja { +impl Jkoaglnmgcc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KGridFightSettleReasonNone => "kGridFightSettleReasonNone", - Self::KGridFightSettleReasonQuit => "kGridFightSettleReasonQuit", - Self::KGridFightSettleReasonHpZero => "kGridFightSettleReasonHpZero", - Self::KGridFightSettleReasonFinish => "kGridFightSettleReasonFinish", - Self::KGridFightSettleReasonSubSeasonEnd => { - "kGridFightSettleReasonSubSeasonEnd" - } + Self::Eacncppagdk => "JKOAGLNMGCC_EACNCPPAGDK", + Self::Ajlgaonemcl => "JKOAGLNMGCC_AJLGAONEMCL", + Self::Cgklmoickfe => "JKOAGLNMGCC_CGKLMOICKFE", + Self::Aaikkingjpm => "JKOAGLNMGCC_AAIKKINGJPM", + Self::Ojfejgaplng => "JKOAGLNMGCC_OJFEJGAPLNG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kGridFightSettleReasonNone" => Some(Self::KGridFightSettleReasonNone), - "kGridFightSettleReasonQuit" => Some(Self::KGridFightSettleReasonQuit), - "kGridFightSettleReasonHpZero" => Some(Self::KGridFightSettleReasonHpZero), - "kGridFightSettleReasonFinish" => Some(Self::KGridFightSettleReasonFinish), - "kGridFightSettleReasonSubSeasonEnd" => { - Some(Self::KGridFightSettleReasonSubSeasonEnd) - } + "JKOAGLNMGCC_EACNCPPAGDK" => Some(Self::Eacncppagdk), + "JKOAGLNMGCC_AJLGAONEMCL" => Some(Self::Ajlgaonemcl), + "JKOAGLNMGCC_CGKLMOICKFE" => Some(Self::Cgklmoickfe), + "JKOAGLNMGCC_AAIKKINGJPM" => Some(Self::Aaikkingjpm), + "JKOAGLNMGCC_OJFEJGAPLNG" => Some(Self::Ojfejgaplng), _ => None, } } @@ -73789,18 +73328,18 @@ impl Pmlcfanemja { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdHeartdialType { - None = 0, - CmdChangeScriptEmotionCsReq = 6398, - CmdHeartDialScriptChangeScNotify = 6319, - CmdHeartDialTraceScriptScRsp = 6381, - CmdFinishEmotionDialoguePerformanceScRsp = 6352, - CmdGetHeartDialInfoCsReq = 6399, - CmdHeartDialTraceScriptCsReq = 6344, - CmdSubmitEmotionItemScRsp = 6386, - CmdSubmitEmotionItemCsReq = 6383, - CmdChangeScriptEmotionScRsp = 6365, - CmdGetHeartDialInfoScRsp = 6323, - CmdFinishEmotionDialoguePerformanceCsReq = 6394, + OnbjoflpneaAlocmfakbkp = 0, + CmdHeartDialTraceScriptScRsp = 6361, + CmdFinishEmotionDialoguePerformanceScRsp = 6320, + OnbjoflpneaIbijcicpbdc = 6351, + CmdChangeScriptEmotionCsReq = 6338, + CmdFinishEmotionDialoguePerformanceCsReq = 6389, + CmdSubmitEmotionItemScRsp = 6311, + CmdHeartDialTraceScriptCsReq = 6391, + CmdGetHeartDialInfoCsReq = 6347, + CmdGetHeartDialInfoScRsp = 6309, + CmdChangeScriptEmotionScRsp = 6317, + CmdHeartDialScriptChangeScNotify = 6395, } impl CmdHeartdialType { /// String value of the enum field names used in the ProtoBuf definition. @@ -73809,45 +73348,45 @@ impl CmdHeartdialType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdHeartdialTypeNone", - Self::CmdChangeScriptEmotionCsReq => "CmdChangeScriptEmotionCsReq", - Self::CmdHeartDialScriptChangeScNotify => "CmdHeartDialScriptChangeScNotify", + Self::OnbjoflpneaAlocmfakbkp => "ONBJOFLPNEA_ALOCMFAKBKP", Self::CmdHeartDialTraceScriptScRsp => "CmdHeartDialTraceScriptScRsp", Self::CmdFinishEmotionDialoguePerformanceScRsp => { "CmdFinishEmotionDialoguePerformanceScRsp" } - Self::CmdGetHeartDialInfoCsReq => "CmdGetHeartDialInfoCsReq", - Self::CmdHeartDialTraceScriptCsReq => "CmdHeartDialTraceScriptCsReq", - Self::CmdSubmitEmotionItemScRsp => "CmdSubmitEmotionItemScRsp", - Self::CmdSubmitEmotionItemCsReq => "CmdSubmitEmotionItemCsReq", - Self::CmdChangeScriptEmotionScRsp => "CmdChangeScriptEmotionScRsp", - Self::CmdGetHeartDialInfoScRsp => "CmdGetHeartDialInfoScRsp", + Self::OnbjoflpneaIbijcicpbdc => "ONBJOFLPNEA_IBIJCICPBDC", + Self::CmdChangeScriptEmotionCsReq => "CmdChangeScriptEmotionCsReq", Self::CmdFinishEmotionDialoguePerformanceCsReq => { "CmdFinishEmotionDialoguePerformanceCsReq" } + Self::CmdSubmitEmotionItemScRsp => "CmdSubmitEmotionItemScRsp", + Self::CmdHeartDialTraceScriptCsReq => "CmdHeartDialTraceScriptCsReq", + Self::CmdGetHeartDialInfoCsReq => "CmdGetHeartDialInfoCsReq", + Self::CmdGetHeartDialInfoScRsp => "CmdGetHeartDialInfoScRsp", + Self::CmdChangeScriptEmotionScRsp => "CmdChangeScriptEmotionScRsp", + Self::CmdHeartDialScriptChangeScNotify => "CmdHeartDialScriptChangeScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdHeartdialTypeNone" => Some(Self::None), - "CmdChangeScriptEmotionCsReq" => Some(Self::CmdChangeScriptEmotionCsReq), - "CmdHeartDialScriptChangeScNotify" => { - Some(Self::CmdHeartDialScriptChangeScNotify) - } + "ONBJOFLPNEA_ALOCMFAKBKP" => Some(Self::OnbjoflpneaAlocmfakbkp), "CmdHeartDialTraceScriptScRsp" => Some(Self::CmdHeartDialTraceScriptScRsp), "CmdFinishEmotionDialoguePerformanceScRsp" => { Some(Self::CmdFinishEmotionDialoguePerformanceScRsp) } - "CmdGetHeartDialInfoCsReq" => Some(Self::CmdGetHeartDialInfoCsReq), - "CmdHeartDialTraceScriptCsReq" => Some(Self::CmdHeartDialTraceScriptCsReq), - "CmdSubmitEmotionItemScRsp" => Some(Self::CmdSubmitEmotionItemScRsp), - "CmdSubmitEmotionItemCsReq" => Some(Self::CmdSubmitEmotionItemCsReq), - "CmdChangeScriptEmotionScRsp" => Some(Self::CmdChangeScriptEmotionScRsp), - "CmdGetHeartDialInfoScRsp" => Some(Self::CmdGetHeartDialInfoScRsp), + "ONBJOFLPNEA_IBIJCICPBDC" => Some(Self::OnbjoflpneaIbijcicpbdc), + "CmdChangeScriptEmotionCsReq" => Some(Self::CmdChangeScriptEmotionCsReq), "CmdFinishEmotionDialoguePerformanceCsReq" => { Some(Self::CmdFinishEmotionDialoguePerformanceCsReq) } + "CmdSubmitEmotionItemScRsp" => Some(Self::CmdSubmitEmotionItemScRsp), + "CmdHeartDialTraceScriptCsReq" => Some(Self::CmdHeartDialTraceScriptCsReq), + "CmdGetHeartDialInfoCsReq" => Some(Self::CmdGetHeartDialInfoCsReq), + "CmdGetHeartDialInfoScRsp" => Some(Self::CmdGetHeartDialInfoScRsp), + "CmdChangeScriptEmotionScRsp" => Some(Self::CmdChangeScriptEmotionScRsp), + "CmdHeartDialScriptChangeScNotify" => { + Some(Self::CmdHeartDialScriptChangeScNotify) + } _ => None, } } @@ -73855,32 +73394,32 @@ impl CmdHeartdialType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Bfdflhekfgk { - HeartDialEmotionTypePeace = 0, - HeartDialEmotionTypeAnger = 1, - HeartDialEmotionTypeHappy = 2, - HeartDialEmotionTypeSad = 3, +pub enum HeartDialEmotionType { + MkpmgmjkialJoefpbdgdnl = 0, + MkpmgmjkialAplpflmeaib = 1, + MkpmgmjkialDdeijigmgke = 2, + MkpmgmjkialAoaoacngnao = 3, } -impl Bfdflhekfgk { +impl HeartDialEmotionType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::HeartDialEmotionTypePeace => "HEART_DIAL_EMOTION_TYPE_PEACE", - Self::HeartDialEmotionTypeAnger => "HEART_DIAL_EMOTION_TYPE_ANGER", - Self::HeartDialEmotionTypeHappy => "HEART_DIAL_EMOTION_TYPE_HAPPY", - Self::HeartDialEmotionTypeSad => "HEART_DIAL_EMOTION_TYPE_SAD", + Self::MkpmgmjkialJoefpbdgdnl => "MKPMGMJKIAL_JOEFPBDGDNL", + Self::MkpmgmjkialAplpflmeaib => "MKPMGMJKIAL_APLPFLMEAIB", + Self::MkpmgmjkialDdeijigmgke => "MKPMGMJKIAL_DDEIJIGMGKE", + Self::MkpmgmjkialAoaoacngnao => "MKPMGMJKIAL_AOAOACNGNAO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "HEART_DIAL_EMOTION_TYPE_PEACE" => Some(Self::HeartDialEmotionTypePeace), - "HEART_DIAL_EMOTION_TYPE_ANGER" => Some(Self::HeartDialEmotionTypeAnger), - "HEART_DIAL_EMOTION_TYPE_HAPPY" => Some(Self::HeartDialEmotionTypeHappy), - "HEART_DIAL_EMOTION_TYPE_SAD" => Some(Self::HeartDialEmotionTypeSad), + "MKPMGMJKIAL_JOEFPBDGDNL" => Some(Self::MkpmgmjkialJoefpbdgdnl), + "MKPMGMJKIAL_APLPFLMEAIB" => Some(Self::MkpmgmjkialAplpflmeaib), + "MKPMGMJKIAL_DDEIJIGMGKE" => Some(Self::MkpmgmjkialDdeijigmgke), + "MKPMGMJKIAL_AOAOACNGNAO" => Some(Self::MkpmgmjkialAoaoacngnao), _ => None, } } @@ -73888,38 +73427,38 @@ impl Bfdflhekfgk { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Afefbpablhm { - HeartDialStepTypeMissing = 0, - HeartDialStepTypeFull = 1, - HeartDialStepTypeLock = 2, - HeartDialStepTypeUnlock = 3, - HeartDialStepTypeNormal = 4, - HeartDialStepTypeControl = 5, +pub enum HeartDialStepType { + GphnnfgilhiInkfehjcapk = 0, + GphnnfgilhiGcpkndbeikf = 1, + GphnnfgilhiGbcmpododmc = 2, + GphnnfgilhiDicadjmaife = 3, + GphnnfgilhiGmbghbpibml = 4, + GphnnfgilhiPhabolbkoic = 5, } -impl Afefbpablhm { +impl HeartDialStepType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::HeartDialStepTypeMissing => "HEART_DIAL_STEP_TYPE_MISSING", - Self::HeartDialStepTypeFull => "HEART_DIAL_STEP_TYPE_FULL", - Self::HeartDialStepTypeLock => "HEART_DIAL_STEP_TYPE_LOCK", - Self::HeartDialStepTypeUnlock => "HEART_DIAL_STEP_TYPE_UNLOCK", - Self::HeartDialStepTypeNormal => "HEART_DIAL_STEP_TYPE_NORMAL", - Self::HeartDialStepTypeControl => "HEART_DIAL_STEP_TYPE_CONTROL", + Self::GphnnfgilhiInkfehjcapk => "GPHNNFGILHI_INKFEHJCAPK", + Self::GphnnfgilhiGcpkndbeikf => "GPHNNFGILHI_GCPKNDBEIKF", + Self::GphnnfgilhiGbcmpododmc => "GPHNNFGILHI_GBCMPODODMC", + Self::GphnnfgilhiDicadjmaife => "GPHNNFGILHI_DICADJMAIFE", + Self::GphnnfgilhiGmbghbpibml => "GPHNNFGILHI_GMBGHBPIBML", + Self::GphnnfgilhiPhabolbkoic => "GPHNNFGILHI_PHABOLBKOIC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "HEART_DIAL_STEP_TYPE_MISSING" => Some(Self::HeartDialStepTypeMissing), - "HEART_DIAL_STEP_TYPE_FULL" => Some(Self::HeartDialStepTypeFull), - "HEART_DIAL_STEP_TYPE_LOCK" => Some(Self::HeartDialStepTypeLock), - "HEART_DIAL_STEP_TYPE_UNLOCK" => Some(Self::HeartDialStepTypeUnlock), - "HEART_DIAL_STEP_TYPE_NORMAL" => Some(Self::HeartDialStepTypeNormal), - "HEART_DIAL_STEP_TYPE_CONTROL" => Some(Self::HeartDialStepTypeControl), + "GPHNNFGILHI_INKFEHJCAPK" => Some(Self::GphnnfgilhiInkfehjcapk), + "GPHNNFGILHI_GCPKNDBEIKF" => Some(Self::GphnnfgilhiGcpkndbeikf), + "GPHNNFGILHI_GBCMPODODMC" => Some(Self::GphnnfgilhiGbcmpododmc), + "GPHNNFGILHI_DICADJMAIFE" => Some(Self::GphnnfgilhiDicadjmaife), + "GPHNNFGILHI_GMBGHBPIBML" => Some(Self::GphnnfgilhiGmbghbpibml), + "GPHNNFGILHI_PHABOLBKOIC" => Some(Self::GphnnfgilhiPhabolbkoic), _ => None, } } @@ -73927,35 +73466,29 @@ impl Afefbpablhm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ooehgmemkoi { - HeartDialUnlockStatusLock = 0, - HeartDialUnlockStatusUnlockSingle = 1, - HeartDialUnlockStatusUnlockAll = 2, +pub enum HeartDialUnlockStatus { + NdpoihpheomGbcmpododmc = 0, + NdpoihpheomJcdkhfndilg = 1, + NdpoihpheomEkkokmickdf = 2, } -impl Ooehgmemkoi { +impl HeartDialUnlockStatus { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::HeartDialUnlockStatusLock => "HEART_DIAL_UNLOCK_STATUS_LOCK", - Self::HeartDialUnlockStatusUnlockSingle => { - "HEART_DIAL_UNLOCK_STATUS_UNLOCK_SINGLE" - } - Self::HeartDialUnlockStatusUnlockAll => "HEART_DIAL_UNLOCK_STATUS_UNLOCK_ALL", + Self::NdpoihpheomGbcmpododmc => "NDPOIHPHEOM_GBCMPODODMC", + Self::NdpoihpheomJcdkhfndilg => "NDPOIHPHEOM_JCDKHFNDILG", + Self::NdpoihpheomEkkokmickdf => "NDPOIHPHEOM_EKKOKMICKDF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "HEART_DIAL_UNLOCK_STATUS_LOCK" => Some(Self::HeartDialUnlockStatusLock), - "HEART_DIAL_UNLOCK_STATUS_UNLOCK_SINGLE" => { - Some(Self::HeartDialUnlockStatusUnlockSingle) - } - "HEART_DIAL_UNLOCK_STATUS_UNLOCK_ALL" => { - Some(Self::HeartDialUnlockStatusUnlockAll) - } + "NDPOIHPHEOM_GBCMPODODMC" => Some(Self::NdpoihpheomGbcmpododmc), + "NDPOIHPHEOM_JCDKHFNDILG" => Some(Self::NdpoihpheomJcdkhfndilg), + "NDPOIHPHEOM_EKKOKMICKDF" => Some(Self::NdpoihpheomEkkokmickdf), _ => None, } } @@ -73964,30 +73497,30 @@ impl Ooehgmemkoi { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdHeliobusType { - None = 0, - CmdHeliobusInfoChangedScNotify = 5869, - CmdHeliobusSnsCommentScRsp = 5844, - CmdHeliobusSelectSkillScRsp = 5868, - CmdHeliobusSnsReadScRsp = 5865, - CmdHeliobusUpgradeLevelScRsp = 5815, - CmdHeliobusSnsUpdateScNotify = 5881, - CmdHeliobusUnlockSkillScNotify = 5892, - CmdHeliobusSnsPostCsReq = 5883, - CmdHeliobusEnterBattleScRsp = 5805, - CmdHeliobusSnsPostScRsp = 5886, - CmdHeliobusActivityDataScRsp = 5823, - CmdHeliobusSnsLikeCsReq = 5894, - CmdHeliobusEnterBattleCsReq = 5877, - CmdHeliobusStartRaidCsReq = 5851, - CmdHeliobusActivityDataCsReq = 5899, - CmdHeliobusChallengeUpdateScNotify = 5838, - CmdHeliobusUpgradeLevelCsReq = 5857, - CmdHeliobusSnsReadCsReq = 5898, - CmdHeliobusLineupUpdateScNotify = 5803, - CmdHeliobusSnsLikeScRsp = 5852, - CmdHeliobusStartRaidScRsp = 5829, - CmdHeliobusSnsCommentCsReq = 5819, - CmdHeliobusSelectSkillCsReq = 5837, + CglipmbfkgoAlocmfakbkp = 0, + CmdLlmjhihlbad = 5817, + CmdOdelndkfbkd = 5835, + CmdLgbfjciboik = 5850, + CmdHeonenlglfb = 5867, + CmdIjckoifehgo = 5846, + CmdKmhcomiceim = 5851, + CmdLjfmphjckbg = 5895, + CmdLcmimfdldih = 5862, + CmdIdaepkpfbea = 5876, + CglipmbfkgoDlnahgpgani = 5881, + CmdNglfffncjln = 5811, + CmdOlcilepilca = 5847, + CmdLhenfpkmhmk = 5893, + CmdCnfnjcechgo = 5861, + CmdLcfnjlbhfba = 5852, + CmdEifabalinba = 5891, + CmdFfockccmhfn = 5809, + CmdOmmhmmgbome = 5892, + CmdCdlfdjhknla = 5898, + CmdLfdihdcpjcp = 5820, + CmdDgmalfemgcj = 5889, + CmdMnilindcmgj = 5845, + CmdFhdcafmeflj = 5838, } impl CmdHeliobusType { /// String value of the enum field names used in the ProtoBuf definition. @@ -73996,69 +73529,59 @@ impl CmdHeliobusType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdHeliobusTypeNone", - Self::CmdHeliobusInfoChangedScNotify => "CmdHeliobusInfoChangedScNotify", - Self::CmdHeliobusSnsCommentScRsp => "CmdHeliobusSnsCommentScRsp", - Self::CmdHeliobusSelectSkillScRsp => "CmdHeliobusSelectSkillScRsp", - Self::CmdHeliobusSnsReadScRsp => "CmdHeliobusSnsReadScRsp", - Self::CmdHeliobusUpgradeLevelScRsp => "CmdHeliobusUpgradeLevelScRsp", - Self::CmdHeliobusSnsUpdateScNotify => "CmdHeliobusSnsUpdateScNotify", - Self::CmdHeliobusUnlockSkillScNotify => "CmdHeliobusUnlockSkillScNotify", - Self::CmdHeliobusSnsPostCsReq => "CmdHeliobusSnsPostCsReq", - Self::CmdHeliobusEnterBattleScRsp => "CmdHeliobusEnterBattleScRsp", - Self::CmdHeliobusSnsPostScRsp => "CmdHeliobusSnsPostScRsp", - Self::CmdHeliobusActivityDataScRsp => "CmdHeliobusActivityDataScRsp", - Self::CmdHeliobusSnsLikeCsReq => "CmdHeliobusSnsLikeCsReq", - Self::CmdHeliobusEnterBattleCsReq => "CmdHeliobusEnterBattleCsReq", - Self::CmdHeliobusStartRaidCsReq => "CmdHeliobusStartRaidCsReq", - Self::CmdHeliobusActivityDataCsReq => "CmdHeliobusActivityDataCsReq", - Self::CmdHeliobusChallengeUpdateScNotify => { - "CmdHeliobusChallengeUpdateScNotify" - } - Self::CmdHeliobusUpgradeLevelCsReq => "CmdHeliobusUpgradeLevelCsReq", - Self::CmdHeliobusSnsReadCsReq => "CmdHeliobusSnsReadCsReq", - Self::CmdHeliobusLineupUpdateScNotify => "CmdHeliobusLineupUpdateScNotify", - Self::CmdHeliobusSnsLikeScRsp => "CmdHeliobusSnsLikeScRsp", - Self::CmdHeliobusStartRaidScRsp => "CmdHeliobusStartRaidScRsp", - Self::CmdHeliobusSnsCommentCsReq => "CmdHeliobusSnsCommentCsReq", - Self::CmdHeliobusSelectSkillCsReq => "CmdHeliobusSelectSkillCsReq", + Self::CglipmbfkgoAlocmfakbkp => "CGLIPMBFKGO_ALOCMFAKBKP", + Self::CmdLlmjhihlbad => "CmdLLMJHIHLBAD", + Self::CmdOdelndkfbkd => "CmdODELNDKFBKD", + Self::CmdLgbfjciboik => "CmdLGBFJCIBOIK", + Self::CmdHeonenlglfb => "CmdHEONENLGLFB", + Self::CmdIjckoifehgo => "CmdIJCKOIFEHGO", + Self::CmdKmhcomiceim => "CmdKMHCOMICEIM", + Self::CmdLjfmphjckbg => "CmdLJFMPHJCKBG", + Self::CmdLcmimfdldih => "CmdLCMIMFDLDIH", + Self::CmdIdaepkpfbea => "CmdIDAEPKPFBEA", + Self::CglipmbfkgoDlnahgpgani => "CGLIPMBFKGO_DLNAHGPGANI", + Self::CmdNglfffncjln => "CmdNGLFFFNCJLN", + Self::CmdOlcilepilca => "CmdOLCILEPILCA", + Self::CmdLhenfpkmhmk => "CmdLHENFPKMHMK", + Self::CmdCnfnjcechgo => "CmdCNFNJCECHGO", + Self::CmdLcfnjlbhfba => "CmdLCFNJLBHFBA", + Self::CmdEifabalinba => "CmdEIFABALINBA", + Self::CmdFfockccmhfn => "CmdFFOCKCCMHFN", + Self::CmdOmmhmmgbome => "CmdOMMHMMGBOME", + Self::CmdCdlfdjhknla => "CmdCDLFDJHKNLA", + Self::CmdLfdihdcpjcp => "CmdLFDIHDCPJCP", + Self::CmdDgmalfemgcj => "CmdDGMALFEMGCJ", + Self::CmdMnilindcmgj => "CmdMNILINDCMGJ", + Self::CmdFhdcafmeflj => "CmdFHDCAFMEFLJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdHeliobusTypeNone" => Some(Self::None), - "CmdHeliobusInfoChangedScNotify" => { - Some(Self::CmdHeliobusInfoChangedScNotify) - } - "CmdHeliobusSnsCommentScRsp" => Some(Self::CmdHeliobusSnsCommentScRsp), - "CmdHeliobusSelectSkillScRsp" => Some(Self::CmdHeliobusSelectSkillScRsp), - "CmdHeliobusSnsReadScRsp" => Some(Self::CmdHeliobusSnsReadScRsp), - "CmdHeliobusUpgradeLevelScRsp" => Some(Self::CmdHeliobusUpgradeLevelScRsp), - "CmdHeliobusSnsUpdateScNotify" => Some(Self::CmdHeliobusSnsUpdateScNotify), - "CmdHeliobusUnlockSkillScNotify" => { - Some(Self::CmdHeliobusUnlockSkillScNotify) - } - "CmdHeliobusSnsPostCsReq" => Some(Self::CmdHeliobusSnsPostCsReq), - "CmdHeliobusEnterBattleScRsp" => Some(Self::CmdHeliobusEnterBattleScRsp), - "CmdHeliobusSnsPostScRsp" => Some(Self::CmdHeliobusSnsPostScRsp), - "CmdHeliobusActivityDataScRsp" => Some(Self::CmdHeliobusActivityDataScRsp), - "CmdHeliobusSnsLikeCsReq" => Some(Self::CmdHeliobusSnsLikeCsReq), - "CmdHeliobusEnterBattleCsReq" => Some(Self::CmdHeliobusEnterBattleCsReq), - "CmdHeliobusStartRaidCsReq" => Some(Self::CmdHeliobusStartRaidCsReq), - "CmdHeliobusActivityDataCsReq" => Some(Self::CmdHeliobusActivityDataCsReq), - "CmdHeliobusChallengeUpdateScNotify" => { - Some(Self::CmdHeliobusChallengeUpdateScNotify) - } - "CmdHeliobusUpgradeLevelCsReq" => Some(Self::CmdHeliobusUpgradeLevelCsReq), - "CmdHeliobusSnsReadCsReq" => Some(Self::CmdHeliobusSnsReadCsReq), - "CmdHeliobusLineupUpdateScNotify" => { - Some(Self::CmdHeliobusLineupUpdateScNotify) - } - "CmdHeliobusSnsLikeScRsp" => Some(Self::CmdHeliobusSnsLikeScRsp), - "CmdHeliobusStartRaidScRsp" => Some(Self::CmdHeliobusStartRaidScRsp), - "CmdHeliobusSnsCommentCsReq" => Some(Self::CmdHeliobusSnsCommentCsReq), - "CmdHeliobusSelectSkillCsReq" => Some(Self::CmdHeliobusSelectSkillCsReq), + "CGLIPMBFKGO_ALOCMFAKBKP" => Some(Self::CglipmbfkgoAlocmfakbkp), + "CmdLLMJHIHLBAD" => Some(Self::CmdLlmjhihlbad), + "CmdODELNDKFBKD" => Some(Self::CmdOdelndkfbkd), + "CmdLGBFJCIBOIK" => Some(Self::CmdLgbfjciboik), + "CmdHEONENLGLFB" => Some(Self::CmdHeonenlglfb), + "CmdIJCKOIFEHGO" => Some(Self::CmdIjckoifehgo), + "CmdKMHCOMICEIM" => Some(Self::CmdKmhcomiceim), + "CmdLJFMPHJCKBG" => Some(Self::CmdLjfmphjckbg), + "CmdLCMIMFDLDIH" => Some(Self::CmdLcmimfdldih), + "CmdIDAEPKPFBEA" => Some(Self::CmdIdaepkpfbea), + "CGLIPMBFKGO_DLNAHGPGANI" => Some(Self::CglipmbfkgoDlnahgpgani), + "CmdNGLFFFNCJLN" => Some(Self::CmdNglfffncjln), + "CmdOLCILEPILCA" => Some(Self::CmdOlcilepilca), + "CmdLHENFPKMHMK" => Some(Self::CmdLhenfpkmhmk), + "CmdCNFNJCECHGO" => Some(Self::CmdCnfnjcechgo), + "CmdLCFNJLBHFBA" => Some(Self::CmdLcfnjlbhfba), + "CmdEIFABALINBA" => Some(Self::CmdEifabalinba), + "CmdFFOCKCCMHFN" => Some(Self::CmdFfockccmhfn), + "CmdOMMHMMGBOME" => Some(Self::CmdOmmhmmgbome), + "CmdCDLFDJHKNLA" => Some(Self::CmdCdlfdjhknla), + "CmdLFDIHDCPJCP" => Some(Self::CmdLfdihdcpjcp), + "CmdDGMALFEMGCJ" => Some(Self::CmdDgmalfemgcj), + "CmdMNILINDCMGJ" => Some(Self::CmdMnilindcmgj), + "CmdFHDCAFMEFLJ" => Some(Self::CmdFhdcafmeflj), _ => None, } } @@ -74067,25 +73590,25 @@ impl CmdHeliobusType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdHipplenType { - None = 0, - CmdOpenHipplenCycleCsReq = 9043, - CmdSetHipplenAgendaScRsp = 9027, - CmdSetHipplenOutfitCsReq = 9023, - CmdTakeHipplenEndingRewardCsReq = 9011, - CmdTakeHipplenEndingRewardScRsp = 9029, - CmdGetHipplenDataScRsp = 9028, - CmdGetHipplenInheritScRsp = 9038, - CmdHipplenChangeScNotify = 9035, - CmdGetHipplenInheritCsReq = 9021, - CmdSettleHipplenWorkScRsp = 9044, - CmdSetHipplenOutfitScRsp = 9019, - CmdHipplenAgendaResultScNotify = 9001, - CmdHipplenTraitUnlockScNotify = 9030, - CmdGetHipplenDataCsReq = 9026, - CmdSetHipplenAgendaCsReq = 9005, - CmdSettleHipplenWorkCsReq = 9020, - CmdHipplenCycleResultScNotify = 9045, - CmdOpenHipplenCycleScRsp = 9003, + AdolpoepmkeAlocmfakbkp = 0, + CmdMlgecidinhm = 9002, + CmdJbfcbgjadoa = 9012, + CmdFbphnlfdfae = 9025, + CmdMhoajajnbgh = 9043, + CmdIjjlbekhico = 9013, + CmdGmjihgdonde = 9035, + CmdOhfabpdbide = 9017, + CmdJihbnkncjkh = 9048, + CmdImkpbfnlmbj = 9007, + CmdLkjmmajjcbk = 9005, + CmdAnpnfcfddla = 9050, + CmdPfcghodonek = 9019, + CmdAjdbhhlklbb = 9033, + CmdJbgbomddoen = 9046, + CmdGigamcjgjkp = 9031, + CmdMchdfohhblf = 9009, + CmdPklffnmiian = 9010, + CmdHjjafgibndi = 9027, } impl CmdHipplenType { /// String value of the enum field names used in the ProtoBuf definition. @@ -74094,55 +73617,49 @@ impl CmdHipplenType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdHipplenTypeNone", - Self::CmdOpenHipplenCycleCsReq => "CmdOpenHipplenCycleCsReq", - Self::CmdSetHipplenAgendaScRsp => "CmdSetHipplenAgendaScRsp", - Self::CmdSetHipplenOutfitCsReq => "CmdSetHipplenOutfitCsReq", - Self::CmdTakeHipplenEndingRewardCsReq => "CmdTakeHipplenEndingRewardCsReq", - Self::CmdTakeHipplenEndingRewardScRsp => "CmdTakeHipplenEndingRewardScRsp", - Self::CmdGetHipplenDataScRsp => "CmdGetHipplenDataScRsp", - Self::CmdGetHipplenInheritScRsp => "CmdGetHipplenInheritScRsp", - Self::CmdHipplenChangeScNotify => "CmdHipplenChangeScNotify", - Self::CmdGetHipplenInheritCsReq => "CmdGetHipplenInheritCsReq", - Self::CmdSettleHipplenWorkScRsp => "CmdSettleHipplenWorkScRsp", - Self::CmdSetHipplenOutfitScRsp => "CmdSetHipplenOutfitScRsp", - Self::CmdHipplenAgendaResultScNotify => "CmdHipplenAgendaResultScNotify", - Self::CmdHipplenTraitUnlockScNotify => "CmdHipplenTraitUnlockScNotify", - Self::CmdGetHipplenDataCsReq => "CmdGetHipplenDataCsReq", - Self::CmdSetHipplenAgendaCsReq => "CmdSetHipplenAgendaCsReq", - Self::CmdSettleHipplenWorkCsReq => "CmdSettleHipplenWorkCsReq", - Self::CmdHipplenCycleResultScNotify => "CmdHipplenCycleResultScNotify", - Self::CmdOpenHipplenCycleScRsp => "CmdOpenHipplenCycleScRsp", + Self::AdolpoepmkeAlocmfakbkp => "ADOLPOEPMKE_ALOCMFAKBKP", + Self::CmdMlgecidinhm => "CmdMLGECIDINHM", + Self::CmdJbfcbgjadoa => "CmdJBFCBGJADOA", + Self::CmdFbphnlfdfae => "CmdFBPHNLFDFAE", + Self::CmdMhoajajnbgh => "CmdMHOAJAJNBGH", + Self::CmdIjjlbekhico => "CmdIJJLBEKHICO", + Self::CmdGmjihgdonde => "CmdGMJIHGDONDE", + Self::CmdOhfabpdbide => "CmdOHFABPDBIDE", + Self::CmdJihbnkncjkh => "CmdJIHBNKNCJKH", + Self::CmdImkpbfnlmbj => "CmdIMKPBFNLMBJ", + Self::CmdLkjmmajjcbk => "CmdLKJMMAJJCBK", + Self::CmdAnpnfcfddla => "CmdANPNFCFDDLA", + Self::CmdPfcghodonek => "CmdPFCGHODONEK", + Self::CmdAjdbhhlklbb => "CmdAJDBHHLKLBB", + Self::CmdJbgbomddoen => "CmdJBGBOMDDOEN", + Self::CmdGigamcjgjkp => "CmdGIGAMCJGJKP", + Self::CmdMchdfohhblf => "CmdMCHDFOHHBLF", + Self::CmdPklffnmiian => "CmdPKLFFNMIIAN", + Self::CmdHjjafgibndi => "CmdHJJAFGIBNDI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdHipplenTypeNone" => Some(Self::None), - "CmdOpenHipplenCycleCsReq" => Some(Self::CmdOpenHipplenCycleCsReq), - "CmdSetHipplenAgendaScRsp" => Some(Self::CmdSetHipplenAgendaScRsp), - "CmdSetHipplenOutfitCsReq" => Some(Self::CmdSetHipplenOutfitCsReq), - "CmdTakeHipplenEndingRewardCsReq" => { - Some(Self::CmdTakeHipplenEndingRewardCsReq) - } - "CmdTakeHipplenEndingRewardScRsp" => { - Some(Self::CmdTakeHipplenEndingRewardScRsp) - } - "CmdGetHipplenDataScRsp" => Some(Self::CmdGetHipplenDataScRsp), - "CmdGetHipplenInheritScRsp" => Some(Self::CmdGetHipplenInheritScRsp), - "CmdHipplenChangeScNotify" => Some(Self::CmdHipplenChangeScNotify), - "CmdGetHipplenInheritCsReq" => Some(Self::CmdGetHipplenInheritCsReq), - "CmdSettleHipplenWorkScRsp" => Some(Self::CmdSettleHipplenWorkScRsp), - "CmdSetHipplenOutfitScRsp" => Some(Self::CmdSetHipplenOutfitScRsp), - "CmdHipplenAgendaResultScNotify" => { - Some(Self::CmdHipplenAgendaResultScNotify) - } - "CmdHipplenTraitUnlockScNotify" => Some(Self::CmdHipplenTraitUnlockScNotify), - "CmdGetHipplenDataCsReq" => Some(Self::CmdGetHipplenDataCsReq), - "CmdSetHipplenAgendaCsReq" => Some(Self::CmdSetHipplenAgendaCsReq), - "CmdSettleHipplenWorkCsReq" => Some(Self::CmdSettleHipplenWorkCsReq), - "CmdHipplenCycleResultScNotify" => Some(Self::CmdHipplenCycleResultScNotify), - "CmdOpenHipplenCycleScRsp" => Some(Self::CmdOpenHipplenCycleScRsp), + "ADOLPOEPMKE_ALOCMFAKBKP" => Some(Self::AdolpoepmkeAlocmfakbkp), + "CmdMLGECIDINHM" => Some(Self::CmdMlgecidinhm), + "CmdJBFCBGJADOA" => Some(Self::CmdJbfcbgjadoa), + "CmdFBPHNLFDFAE" => Some(Self::CmdFbphnlfdfae), + "CmdMHOAJAJNBGH" => Some(Self::CmdMhoajajnbgh), + "CmdIJJLBEKHICO" => Some(Self::CmdIjjlbekhico), + "CmdGMJIHGDONDE" => Some(Self::CmdGmjihgdonde), + "CmdOHFABPDBIDE" => Some(Self::CmdOhfabpdbide), + "CmdJIHBNKNCJKH" => Some(Self::CmdJihbnkncjkh), + "CmdIMKPBFNLMBJ" => Some(Self::CmdImkpbfnlmbj), + "CmdLKJMMAJJCBK" => Some(Self::CmdLkjmmajjcbk), + "CmdANPNFCFDDLA" => Some(Self::CmdAnpnfcfddla), + "CmdPFCGHODONEK" => Some(Self::CmdPfcghodonek), + "CmdAJDBHHLKLBB" => Some(Self::CmdAjdbhhlklbb), + "CmdJBGBOMDDOEN" => Some(Self::CmdJbgbomddoen), + "CmdGIGAMCJGJKP" => Some(Self::CmdGigamcjgjkp), + "CmdMCHDFOHHBLF" => Some(Self::CmdMchdfohhblf), + "CmdPKLFFNMIIAN" => Some(Self::CmdPklffnmiian), + "CmdHJJAFGIBNDI" => Some(Self::CmdHjjafgibndi), _ => None, } } @@ -74150,38 +73667,38 @@ impl CmdHipplenType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jjiboilecdm { - HipplenWorkTypeNone = 0, - HipplenWorkTypeMinigame = 1, - HipplenWorkTypeIncident = 2, - HipplenWorkTypeInteract = 3, - HipplenWorkTypeTrial = 4, - HipplenWorkTypePerformance = 5, +pub enum Mckifmnocld { + Alocmfakbkp = 0, + Eldpnhcfcgm = 1, + Pigonpefjfd = 2, + Bdojopdonfm = 3, + Lgnlnhdbdmk = 4, + Gbmjnkdljna = 5, } -impl Jjiboilecdm { +impl Mckifmnocld { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::HipplenWorkTypeNone => "HIPPLEN_WORK_TYPE_NONE", - Self::HipplenWorkTypeMinigame => "HIPPLEN_WORK_TYPE_MINIGAME", - Self::HipplenWorkTypeIncident => "HIPPLEN_WORK_TYPE_INCIDENT", - Self::HipplenWorkTypeInteract => "HIPPLEN_WORK_TYPE_INTERACT", - Self::HipplenWorkTypeTrial => "HIPPLEN_WORK_TYPE_TRIAL", - Self::HipplenWorkTypePerformance => "HIPPLEN_WORK_TYPE_PERFORMANCE", + Self::Alocmfakbkp => "MCKIFMNOCLD_ALOCMFAKBKP", + Self::Eldpnhcfcgm => "MCKIFMNOCLD_ELDPNHCFCGM", + Self::Pigonpefjfd => "MCKIFMNOCLD_PIGONPEFJFD", + Self::Bdojopdonfm => "MCKIFMNOCLD_BDOJOPDONFM", + Self::Lgnlnhdbdmk => "MCKIFMNOCLD_LGNLNHDBDMK", + Self::Gbmjnkdljna => "MCKIFMNOCLD_GBMJNKDLJNA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "HIPPLEN_WORK_TYPE_NONE" => Some(Self::HipplenWorkTypeNone), - "HIPPLEN_WORK_TYPE_MINIGAME" => Some(Self::HipplenWorkTypeMinigame), - "HIPPLEN_WORK_TYPE_INCIDENT" => Some(Self::HipplenWorkTypeIncident), - "HIPPLEN_WORK_TYPE_INTERACT" => Some(Self::HipplenWorkTypeInteract), - "HIPPLEN_WORK_TYPE_TRIAL" => Some(Self::HipplenWorkTypeTrial), - "HIPPLEN_WORK_TYPE_PERFORMANCE" => Some(Self::HipplenWorkTypePerformance), + "MCKIFMNOCLD_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "MCKIFMNOCLD_ELDPNHCFCGM" => Some(Self::Eldpnhcfcgm), + "MCKIFMNOCLD_PIGONPEFJFD" => Some(Self::Pigonpefjfd), + "MCKIFMNOCLD_BDOJOPDONFM" => Some(Self::Bdojopdonfm), + "MCKIFMNOCLD_LGNLNHDBDMK" => Some(Self::Lgnlnhdbdmk), + "MCKIFMNOCLD_GBMJNKDLJNA" => Some(Self::Gbmjnkdljna), _ => None, } } @@ -74190,67 +73707,67 @@ impl Jjiboilecdm { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdItemType { - None = 0, - CmdDestroyItemScRsp = 550, - CmdGetMarkItemListCsReq = 560, - CmdLockRelicCsReq = 568, - CmdModifyRelicFilterPlanScRsp = 585, - CmdRelicFilterPlanClearNameScNotify = 545, - CmdLockEquipmentScRsp = 586, - CmdExpUpEquipmentCsReq = 581, - CmdGetBagScRsp = 523, - CmdRelicReforgeConfirmCsReq = 502, - CmdGetRecyleTimeCsReq = 562, - CmdDiscardRelicScRsp = 570, - CmdMarkItemCsReq = 535, - CmdPromoteEquipmentCsReq = 598, - CmdMarkRelicFilterPlanScRsp = 539, - CmdDestroyItemCsReq = 555, - CmdExpUpEquipmentScRsp = 569, - CmdUseItemScRsp = 552, - CmdMarkItemScRsp = 574, - CmdLockEquipmentCsReq = 583, - CmdGetBagCsReq = 599, - CmdComposeItemCsReq = 557, - CmdAddRelicFilterPlanCsReq = 501, - CmdMarkRelicFilterPlanCsReq = 566, - CmdCancelMarkItemNotify = 516, - CmdExpUpRelicScRsp = 537, - CmdGetRecyleTimeScRsp = 559, - CmdSetTurnFoodSwitchScRsp = 510, - CmdRechargeSuccNotify = 505, - CmdDiscardRelicCsReq = 542, - CmdSellItemCsReq = 580, - CmdRankUpEquipmentCsReq = 519, - CmdComposeLimitNumCompleteNotify = 522, - CmdComposeLimitNumUpdateNotify = 597, - CmdRankUpEquipmentScRsp = 544, - CmdRelicReforgeConfirmScRsp = 588, - CmdComposeSelectedRelicScRsp = 503, - CmdGetRelicFilterPlanScRsp = 511, - CmdSellItemScRsp = 577, - CmdAddRelicFilterPlanScRsp = 596, - CmdExchangeHcoinCsReq = 551, - CmdGeneralVirtualItemDataNotify = 553, - CmdSetTurnFoodSwitchCsReq = 521, - CmdSyncTurnFoodNotify = 556, - CmdComposeItemScRsp = 515, - CmdGetRelicFilterPlanCsReq = 504, - CmdLockRelicScRsp = 549, - CmdBatchRankUpEquipmentScRsp = 518, - CmdModifyRelicFilterPlanCsReq = 525, - CmdRelicReforgeCsReq = 595, - CmdUseItemCsReq = 594, - CmdDeleteRelicFilterPlanScRsp = 540, - CmdAddEquipmentScNotify = 509, - CmdRelicReforgeScRsp = 579, - CmdGetMarkItemListScRsp = 571, - CmdBatchRankUpEquipmentCsReq = 530, - CmdExchangeHcoinScRsp = 529, - CmdComposeSelectedRelicCsReq = 538, - CmdExpUpRelicCsReq = 592, - CmdPromoteEquipmentScRsp = 565, + BibpeolcohoAlocmfakbkp = 0, + CmdGetMarkItemListCsReq = 501, + CmdRelicFilterPlanClearNameScNotify = 527, + CmdSetTurnFoodSwitchCsReq = 588, + CmdSetTurnFoodSwitchScRsp = 503, CmdDeleteRelicFilterPlanCsReq = 572, + CmdComposeItemCsReq = 576, + CmdRelicReforgeCsReq = 531, + CmdGeneralVirtualItemDataNotify = 555, + CmdDestroyItemScRsp = 513, + CmdGetRecyleTimeCsReq = 526, + CmdGetBagCsReq = 547, + CmdUseItemCsReq = 589, + CmdComposeLimitNumUpdateNotify = 573, + CmdExchangeHcoinCsReq = 535, + CmdSyncTurnFoodNotify = 506, + CmdSellItemCsReq = 510, + CmdPromoteEquipmentCsReq = 538, + CmdBatchRankUpEquipmentCsReq = 580, + CmdGetMarkItemListScRsp = 549, + CmdLockEquipmentScRsp = 511, + CmdLockRelicCsReq = 593, + CmdDiscardRelicCsReq = 530, + CmdPromoteEquipmentScRsp = 517, + CmdExpUpRelicCsReq = 550, + CmdAddRelicFilterPlanScRsp = 600, + CmdExpUpRelicScRsp = 581, + CmdAddEquipmentScNotify = 514, + CmdRankUpEquipmentScRsp = 591, + CmdModifyRelicFilterPlanCsReq = 534, + CmdExpUpEquipmentCsReq = 561, + CmdComposeLimitNumCompleteNotify = 515, + CmdMarkRelicFilterPlanCsReq = 539, + CmdAddRelicFilterPlanCsReq = 532, + CmdGetRelicFilterPlanCsReq = 507, + CmdComposeSelectedRelicCsReq = 546, + CmdGetRecyleTimeScRsp = 557, + CmdCancelMarkItemNotify = 569, + CmdDiscardRelicScRsp = 533, + CmdExchangeHcoinScRsp = 598, + CmdDestroyItemCsReq = 570, + CmdComposeSelectedRelicScRsp = 592, + CmdRankUpEquipmentCsReq = 595, + CmdBatchRankUpEquipmentScRsp = 583, + CmdMarkRelicFilterPlanScRsp = 579, + CmdRelicReforgeConfirmScRsp = 518, + CmdLockEquipmentCsReq = 551, + CmdLockRelicScRsp = 537, + CmdComposeItemScRsp = 552, + CmdUseItemScRsp = 520, + CmdSellItemScRsp = 567, + CmdMarkItemCsReq = 577, + CmdModifyRelicFilterPlanScRsp = 568, + CmdGetBagScRsp = 509, + CmdGetRelicFilterPlanScRsp = 597, + CmdRelicReforgeScRsp = 541, + CmdRechargeSuccNotify = 562, + CmdExpUpEquipmentScRsp = 545, + CmdRelicReforgeConfirmCsReq = 502, + CmdMarkItemScRsp = 519, + CmdDeleteRelicFilterPlanScRsp = 565, } impl CmdItemType { /// String value of the enum field names used in the ProtoBuf definition. @@ -74259,143 +73776,143 @@ impl CmdItemType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdItemTypeNone", - Self::CmdDestroyItemScRsp => "CmdDestroyItemScRsp", + Self::BibpeolcohoAlocmfakbkp => "BIBPEOLCOHO_ALOCMFAKBKP", Self::CmdGetMarkItemListCsReq => "CmdGetMarkItemListCsReq", - Self::CmdLockRelicCsReq => "CmdLockRelicCsReq", - Self::CmdModifyRelicFilterPlanScRsp => "CmdModifyRelicFilterPlanScRsp", Self::CmdRelicFilterPlanClearNameScNotify => { "CmdRelicFilterPlanClearNameScNotify" } - Self::CmdLockEquipmentScRsp => "CmdLockEquipmentScRsp", - Self::CmdExpUpEquipmentCsReq => "CmdExpUpEquipmentCsReq", - Self::CmdGetBagScRsp => "CmdGetBagScRsp", - Self::CmdRelicReforgeConfirmCsReq => "CmdRelicReforgeConfirmCsReq", - Self::CmdGetRecyleTimeCsReq => "CmdGetRecyleTimeCsReq", - Self::CmdDiscardRelicScRsp => "CmdDiscardRelicScRsp", - Self::CmdMarkItemCsReq => "CmdMarkItemCsReq", - Self::CmdPromoteEquipmentCsReq => "CmdPromoteEquipmentCsReq", - Self::CmdMarkRelicFilterPlanScRsp => "CmdMarkRelicFilterPlanScRsp", - Self::CmdDestroyItemCsReq => "CmdDestroyItemCsReq", - Self::CmdExpUpEquipmentScRsp => "CmdExpUpEquipmentScRsp", - Self::CmdUseItemScRsp => "CmdUseItemScRsp", - Self::CmdMarkItemScRsp => "CmdMarkItemScRsp", - Self::CmdLockEquipmentCsReq => "CmdLockEquipmentCsReq", - Self::CmdGetBagCsReq => "CmdGetBagCsReq", - Self::CmdComposeItemCsReq => "CmdComposeItemCsReq", - Self::CmdAddRelicFilterPlanCsReq => "CmdAddRelicFilterPlanCsReq", - Self::CmdMarkRelicFilterPlanCsReq => "CmdMarkRelicFilterPlanCsReq", - Self::CmdCancelMarkItemNotify => "CmdCancelMarkItemNotify", - Self::CmdExpUpRelicScRsp => "CmdExpUpRelicScRsp", - Self::CmdGetRecyleTimeScRsp => "CmdGetRecyleTimeScRsp", - Self::CmdSetTurnFoodSwitchScRsp => "CmdSetTurnFoodSwitchScRsp", - Self::CmdRechargeSuccNotify => "CmdRechargeSuccNotify", - Self::CmdDiscardRelicCsReq => "CmdDiscardRelicCsReq", - Self::CmdSellItemCsReq => "CmdSellItemCsReq", - Self::CmdRankUpEquipmentCsReq => "CmdRankUpEquipmentCsReq", - Self::CmdComposeLimitNumCompleteNotify => "CmdComposeLimitNumCompleteNotify", - Self::CmdComposeLimitNumUpdateNotify => "CmdComposeLimitNumUpdateNotify", - Self::CmdRankUpEquipmentScRsp => "CmdRankUpEquipmentScRsp", - Self::CmdRelicReforgeConfirmScRsp => "CmdRelicReforgeConfirmScRsp", - Self::CmdComposeSelectedRelicScRsp => "CmdComposeSelectedRelicScRsp", - Self::CmdGetRelicFilterPlanScRsp => "CmdGetRelicFilterPlanScRsp", - Self::CmdSellItemScRsp => "CmdSellItemScRsp", - Self::CmdAddRelicFilterPlanScRsp => "CmdAddRelicFilterPlanScRsp", - Self::CmdExchangeHcoinCsReq => "CmdExchangeHcoinCsReq", - Self::CmdGeneralVirtualItemDataNotify => "CmdGeneralVirtualItemDataNotify", Self::CmdSetTurnFoodSwitchCsReq => "CmdSetTurnFoodSwitchCsReq", - Self::CmdSyncTurnFoodNotify => "CmdSyncTurnFoodNotify", - Self::CmdComposeItemScRsp => "CmdComposeItemScRsp", - Self::CmdGetRelicFilterPlanCsReq => "CmdGetRelicFilterPlanCsReq", - Self::CmdLockRelicScRsp => "CmdLockRelicScRsp", - Self::CmdBatchRankUpEquipmentScRsp => "CmdBatchRankUpEquipmentScRsp", - Self::CmdModifyRelicFilterPlanCsReq => "CmdModifyRelicFilterPlanCsReq", - Self::CmdRelicReforgeCsReq => "CmdRelicReforgeCsReq", - Self::CmdUseItemCsReq => "CmdUseItemCsReq", - Self::CmdDeleteRelicFilterPlanScRsp => "CmdDeleteRelicFilterPlanScRsp", - Self::CmdAddEquipmentScNotify => "CmdAddEquipmentScNotify", - Self::CmdRelicReforgeScRsp => "CmdRelicReforgeScRsp", - Self::CmdGetMarkItemListScRsp => "CmdGetMarkItemListScRsp", - Self::CmdBatchRankUpEquipmentCsReq => "CmdBatchRankUpEquipmentCsReq", - Self::CmdExchangeHcoinScRsp => "CmdExchangeHcoinScRsp", - Self::CmdComposeSelectedRelicCsReq => "CmdComposeSelectedRelicCsReq", - Self::CmdExpUpRelicCsReq => "CmdExpUpRelicCsReq", - Self::CmdPromoteEquipmentScRsp => "CmdPromoteEquipmentScRsp", + Self::CmdSetTurnFoodSwitchScRsp => "CmdSetTurnFoodSwitchScRsp", Self::CmdDeleteRelicFilterPlanCsReq => "CmdDeleteRelicFilterPlanCsReq", + Self::CmdComposeItemCsReq => "CmdComposeItemCsReq", + Self::CmdRelicReforgeCsReq => "CmdRelicReforgeCsReq", + Self::CmdGeneralVirtualItemDataNotify => "CmdGeneralVirtualItemDataNotify", + Self::CmdDestroyItemScRsp => "CmdDestroyItemScRsp", + Self::CmdGetRecyleTimeCsReq => "CmdGetRecyleTimeCsReq", + Self::CmdGetBagCsReq => "CmdGetBagCsReq", + Self::CmdUseItemCsReq => "CmdUseItemCsReq", + Self::CmdComposeLimitNumUpdateNotify => "CmdComposeLimitNumUpdateNotify", + Self::CmdExchangeHcoinCsReq => "CmdExchangeHcoinCsReq", + Self::CmdSyncTurnFoodNotify => "CmdSyncTurnFoodNotify", + Self::CmdSellItemCsReq => "CmdSellItemCsReq", + Self::CmdPromoteEquipmentCsReq => "CmdPromoteEquipmentCsReq", + Self::CmdBatchRankUpEquipmentCsReq => "CmdBatchRankUpEquipmentCsReq", + Self::CmdGetMarkItemListScRsp => "CmdGetMarkItemListScRsp", + Self::CmdLockEquipmentScRsp => "CmdLockEquipmentScRsp", + Self::CmdLockRelicCsReq => "CmdLockRelicCsReq", + Self::CmdDiscardRelicCsReq => "CmdDiscardRelicCsReq", + Self::CmdPromoteEquipmentScRsp => "CmdPromoteEquipmentScRsp", + Self::CmdExpUpRelicCsReq => "CmdExpUpRelicCsReq", + Self::CmdAddRelicFilterPlanScRsp => "CmdAddRelicFilterPlanScRsp", + Self::CmdExpUpRelicScRsp => "CmdExpUpRelicScRsp", + Self::CmdAddEquipmentScNotify => "CmdAddEquipmentScNotify", + Self::CmdRankUpEquipmentScRsp => "CmdRankUpEquipmentScRsp", + Self::CmdModifyRelicFilterPlanCsReq => "CmdModifyRelicFilterPlanCsReq", + Self::CmdExpUpEquipmentCsReq => "CmdExpUpEquipmentCsReq", + Self::CmdComposeLimitNumCompleteNotify => "CmdComposeLimitNumCompleteNotify", + Self::CmdMarkRelicFilterPlanCsReq => "CmdMarkRelicFilterPlanCsReq", + Self::CmdAddRelicFilterPlanCsReq => "CmdAddRelicFilterPlanCsReq", + Self::CmdGetRelicFilterPlanCsReq => "CmdGetRelicFilterPlanCsReq", + Self::CmdComposeSelectedRelicCsReq => "CmdComposeSelectedRelicCsReq", + Self::CmdGetRecyleTimeScRsp => "CmdGetRecyleTimeScRsp", + Self::CmdCancelMarkItemNotify => "CmdCancelMarkItemNotify", + Self::CmdDiscardRelicScRsp => "CmdDiscardRelicScRsp", + Self::CmdExchangeHcoinScRsp => "CmdExchangeHcoinScRsp", + Self::CmdDestroyItemCsReq => "CmdDestroyItemCsReq", + Self::CmdComposeSelectedRelicScRsp => "CmdComposeSelectedRelicScRsp", + Self::CmdRankUpEquipmentCsReq => "CmdRankUpEquipmentCsReq", + Self::CmdBatchRankUpEquipmentScRsp => "CmdBatchRankUpEquipmentScRsp", + Self::CmdMarkRelicFilterPlanScRsp => "CmdMarkRelicFilterPlanScRsp", + Self::CmdRelicReforgeConfirmScRsp => "CmdRelicReforgeConfirmScRsp", + Self::CmdLockEquipmentCsReq => "CmdLockEquipmentCsReq", + Self::CmdLockRelicScRsp => "CmdLockRelicScRsp", + Self::CmdComposeItemScRsp => "CmdComposeItemScRsp", + Self::CmdUseItemScRsp => "CmdUseItemScRsp", + Self::CmdSellItemScRsp => "CmdSellItemScRsp", + Self::CmdMarkItemCsReq => "CmdMarkItemCsReq", + Self::CmdModifyRelicFilterPlanScRsp => "CmdModifyRelicFilterPlanScRsp", + Self::CmdGetBagScRsp => "CmdGetBagScRsp", + Self::CmdGetRelicFilterPlanScRsp => "CmdGetRelicFilterPlanScRsp", + Self::CmdRelicReforgeScRsp => "CmdRelicReforgeScRsp", + Self::CmdRechargeSuccNotify => "CmdRechargeSuccNotify", + Self::CmdExpUpEquipmentScRsp => "CmdExpUpEquipmentScRsp", + Self::CmdRelicReforgeConfirmCsReq => "CmdRelicReforgeConfirmCsReq", + Self::CmdMarkItemScRsp => "CmdMarkItemScRsp", + Self::CmdDeleteRelicFilterPlanScRsp => "CmdDeleteRelicFilterPlanScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdItemTypeNone" => Some(Self::None), - "CmdDestroyItemScRsp" => Some(Self::CmdDestroyItemScRsp), + "BIBPEOLCOHO_ALOCMFAKBKP" => Some(Self::BibpeolcohoAlocmfakbkp), "CmdGetMarkItemListCsReq" => Some(Self::CmdGetMarkItemListCsReq), - "CmdLockRelicCsReq" => Some(Self::CmdLockRelicCsReq), - "CmdModifyRelicFilterPlanScRsp" => Some(Self::CmdModifyRelicFilterPlanScRsp), "CmdRelicFilterPlanClearNameScNotify" => { Some(Self::CmdRelicFilterPlanClearNameScNotify) } - "CmdLockEquipmentScRsp" => Some(Self::CmdLockEquipmentScRsp), - "CmdExpUpEquipmentCsReq" => Some(Self::CmdExpUpEquipmentCsReq), - "CmdGetBagScRsp" => Some(Self::CmdGetBagScRsp), - "CmdRelicReforgeConfirmCsReq" => Some(Self::CmdRelicReforgeConfirmCsReq), - "CmdGetRecyleTimeCsReq" => Some(Self::CmdGetRecyleTimeCsReq), - "CmdDiscardRelicScRsp" => Some(Self::CmdDiscardRelicScRsp), - "CmdMarkItemCsReq" => Some(Self::CmdMarkItemCsReq), - "CmdPromoteEquipmentCsReq" => Some(Self::CmdPromoteEquipmentCsReq), - "CmdMarkRelicFilterPlanScRsp" => Some(Self::CmdMarkRelicFilterPlanScRsp), - "CmdDestroyItemCsReq" => Some(Self::CmdDestroyItemCsReq), - "CmdExpUpEquipmentScRsp" => Some(Self::CmdExpUpEquipmentScRsp), - "CmdUseItemScRsp" => Some(Self::CmdUseItemScRsp), - "CmdMarkItemScRsp" => Some(Self::CmdMarkItemScRsp), - "CmdLockEquipmentCsReq" => Some(Self::CmdLockEquipmentCsReq), - "CmdGetBagCsReq" => Some(Self::CmdGetBagCsReq), - "CmdComposeItemCsReq" => Some(Self::CmdComposeItemCsReq), - "CmdAddRelicFilterPlanCsReq" => Some(Self::CmdAddRelicFilterPlanCsReq), - "CmdMarkRelicFilterPlanCsReq" => Some(Self::CmdMarkRelicFilterPlanCsReq), - "CmdCancelMarkItemNotify" => Some(Self::CmdCancelMarkItemNotify), - "CmdExpUpRelicScRsp" => Some(Self::CmdExpUpRelicScRsp), - "CmdGetRecyleTimeScRsp" => Some(Self::CmdGetRecyleTimeScRsp), + "CmdSetTurnFoodSwitchCsReq" => Some(Self::CmdSetTurnFoodSwitchCsReq), "CmdSetTurnFoodSwitchScRsp" => Some(Self::CmdSetTurnFoodSwitchScRsp), - "CmdRechargeSuccNotify" => Some(Self::CmdRechargeSuccNotify), - "CmdDiscardRelicCsReq" => Some(Self::CmdDiscardRelicCsReq), - "CmdSellItemCsReq" => Some(Self::CmdSellItemCsReq), - "CmdRankUpEquipmentCsReq" => Some(Self::CmdRankUpEquipmentCsReq), - "CmdComposeLimitNumCompleteNotify" => { - Some(Self::CmdComposeLimitNumCompleteNotify) - } - "CmdComposeLimitNumUpdateNotify" => { - Some(Self::CmdComposeLimitNumUpdateNotify) - } - "CmdRankUpEquipmentScRsp" => Some(Self::CmdRankUpEquipmentScRsp), - "CmdRelicReforgeConfirmScRsp" => Some(Self::CmdRelicReforgeConfirmScRsp), - "CmdComposeSelectedRelicScRsp" => Some(Self::CmdComposeSelectedRelicScRsp), - "CmdGetRelicFilterPlanScRsp" => Some(Self::CmdGetRelicFilterPlanScRsp), - "CmdSellItemScRsp" => Some(Self::CmdSellItemScRsp), - "CmdAddRelicFilterPlanScRsp" => Some(Self::CmdAddRelicFilterPlanScRsp), - "CmdExchangeHcoinCsReq" => Some(Self::CmdExchangeHcoinCsReq), + "CmdDeleteRelicFilterPlanCsReq" => Some(Self::CmdDeleteRelicFilterPlanCsReq), + "CmdComposeItemCsReq" => Some(Self::CmdComposeItemCsReq), + "CmdRelicReforgeCsReq" => Some(Self::CmdRelicReforgeCsReq), "CmdGeneralVirtualItemDataNotify" => { Some(Self::CmdGeneralVirtualItemDataNotify) } - "CmdSetTurnFoodSwitchCsReq" => Some(Self::CmdSetTurnFoodSwitchCsReq), - "CmdSyncTurnFoodNotify" => Some(Self::CmdSyncTurnFoodNotify), - "CmdComposeItemScRsp" => Some(Self::CmdComposeItemScRsp), - "CmdGetRelicFilterPlanCsReq" => Some(Self::CmdGetRelicFilterPlanCsReq), - "CmdLockRelicScRsp" => Some(Self::CmdLockRelicScRsp), - "CmdBatchRankUpEquipmentScRsp" => Some(Self::CmdBatchRankUpEquipmentScRsp), - "CmdModifyRelicFilterPlanCsReq" => Some(Self::CmdModifyRelicFilterPlanCsReq), - "CmdRelicReforgeCsReq" => Some(Self::CmdRelicReforgeCsReq), + "CmdDestroyItemScRsp" => Some(Self::CmdDestroyItemScRsp), + "CmdGetRecyleTimeCsReq" => Some(Self::CmdGetRecyleTimeCsReq), + "CmdGetBagCsReq" => Some(Self::CmdGetBagCsReq), "CmdUseItemCsReq" => Some(Self::CmdUseItemCsReq), - "CmdDeleteRelicFilterPlanScRsp" => Some(Self::CmdDeleteRelicFilterPlanScRsp), - "CmdAddEquipmentScNotify" => Some(Self::CmdAddEquipmentScNotify), - "CmdRelicReforgeScRsp" => Some(Self::CmdRelicReforgeScRsp), - "CmdGetMarkItemListScRsp" => Some(Self::CmdGetMarkItemListScRsp), + "CmdComposeLimitNumUpdateNotify" => { + Some(Self::CmdComposeLimitNumUpdateNotify) + } + "CmdExchangeHcoinCsReq" => Some(Self::CmdExchangeHcoinCsReq), + "CmdSyncTurnFoodNotify" => Some(Self::CmdSyncTurnFoodNotify), + "CmdSellItemCsReq" => Some(Self::CmdSellItemCsReq), + "CmdPromoteEquipmentCsReq" => Some(Self::CmdPromoteEquipmentCsReq), "CmdBatchRankUpEquipmentCsReq" => Some(Self::CmdBatchRankUpEquipmentCsReq), - "CmdExchangeHcoinScRsp" => Some(Self::CmdExchangeHcoinScRsp), - "CmdComposeSelectedRelicCsReq" => Some(Self::CmdComposeSelectedRelicCsReq), - "CmdExpUpRelicCsReq" => Some(Self::CmdExpUpRelicCsReq), + "CmdGetMarkItemListScRsp" => Some(Self::CmdGetMarkItemListScRsp), + "CmdLockEquipmentScRsp" => Some(Self::CmdLockEquipmentScRsp), + "CmdLockRelicCsReq" => Some(Self::CmdLockRelicCsReq), + "CmdDiscardRelicCsReq" => Some(Self::CmdDiscardRelicCsReq), "CmdPromoteEquipmentScRsp" => Some(Self::CmdPromoteEquipmentScRsp), - "CmdDeleteRelicFilterPlanCsReq" => Some(Self::CmdDeleteRelicFilterPlanCsReq), + "CmdExpUpRelicCsReq" => Some(Self::CmdExpUpRelicCsReq), + "CmdAddRelicFilterPlanScRsp" => Some(Self::CmdAddRelicFilterPlanScRsp), + "CmdExpUpRelicScRsp" => Some(Self::CmdExpUpRelicScRsp), + "CmdAddEquipmentScNotify" => Some(Self::CmdAddEquipmentScNotify), + "CmdRankUpEquipmentScRsp" => Some(Self::CmdRankUpEquipmentScRsp), + "CmdModifyRelicFilterPlanCsReq" => Some(Self::CmdModifyRelicFilterPlanCsReq), + "CmdExpUpEquipmentCsReq" => Some(Self::CmdExpUpEquipmentCsReq), + "CmdComposeLimitNumCompleteNotify" => { + Some(Self::CmdComposeLimitNumCompleteNotify) + } + "CmdMarkRelicFilterPlanCsReq" => Some(Self::CmdMarkRelicFilterPlanCsReq), + "CmdAddRelicFilterPlanCsReq" => Some(Self::CmdAddRelicFilterPlanCsReq), + "CmdGetRelicFilterPlanCsReq" => Some(Self::CmdGetRelicFilterPlanCsReq), + "CmdComposeSelectedRelicCsReq" => Some(Self::CmdComposeSelectedRelicCsReq), + "CmdGetRecyleTimeScRsp" => Some(Self::CmdGetRecyleTimeScRsp), + "CmdCancelMarkItemNotify" => Some(Self::CmdCancelMarkItemNotify), + "CmdDiscardRelicScRsp" => Some(Self::CmdDiscardRelicScRsp), + "CmdExchangeHcoinScRsp" => Some(Self::CmdExchangeHcoinScRsp), + "CmdDestroyItemCsReq" => Some(Self::CmdDestroyItemCsReq), + "CmdComposeSelectedRelicScRsp" => Some(Self::CmdComposeSelectedRelicScRsp), + "CmdRankUpEquipmentCsReq" => Some(Self::CmdRankUpEquipmentCsReq), + "CmdBatchRankUpEquipmentScRsp" => Some(Self::CmdBatchRankUpEquipmentScRsp), + "CmdMarkRelicFilterPlanScRsp" => Some(Self::CmdMarkRelicFilterPlanScRsp), + "CmdRelicReforgeConfirmScRsp" => Some(Self::CmdRelicReforgeConfirmScRsp), + "CmdLockEquipmentCsReq" => Some(Self::CmdLockEquipmentCsReq), + "CmdLockRelicScRsp" => Some(Self::CmdLockRelicScRsp), + "CmdComposeItemScRsp" => Some(Self::CmdComposeItemScRsp), + "CmdUseItemScRsp" => Some(Self::CmdUseItemScRsp), + "CmdSellItemScRsp" => Some(Self::CmdSellItemScRsp), + "CmdMarkItemCsReq" => Some(Self::CmdMarkItemCsReq), + "CmdModifyRelicFilterPlanScRsp" => Some(Self::CmdModifyRelicFilterPlanScRsp), + "CmdGetBagScRsp" => Some(Self::CmdGetBagScRsp), + "CmdGetRelicFilterPlanScRsp" => Some(Self::CmdGetRelicFilterPlanScRsp), + "CmdRelicReforgeScRsp" => Some(Self::CmdRelicReforgeScRsp), + "CmdRechargeSuccNotify" => Some(Self::CmdRechargeSuccNotify), + "CmdExpUpEquipmentScRsp" => Some(Self::CmdExpUpEquipmentScRsp), + "CmdRelicReforgeConfirmCsReq" => Some(Self::CmdRelicReforgeConfirmCsReq), + "CmdMarkItemScRsp" => Some(Self::CmdMarkItemScRsp), + "CmdDeleteRelicFilterPlanScRsp" => Some(Self::CmdDeleteRelicFilterPlanScRsp), _ => None, } } @@ -74403,29 +73920,29 @@ impl CmdItemType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Icpineholml { - RelicDiscardTypeSingle = 0, - RelicDiscardTypeBatch = 1, - RelicDiscardTypeSmart = 2, +pub enum Idcinkkccpe { + Nlibiefcjgn = 0, + Hkmclcjknhm = 1, + Gaaomcocefa = 2, } -impl Icpineholml { +impl Idcinkkccpe { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RelicDiscardTypeSingle => "RELIC_DISCARD_TYPE_SINGLE", - Self::RelicDiscardTypeBatch => "RELIC_DISCARD_TYPE_BATCH", - Self::RelicDiscardTypeSmart => "RELIC_DISCARD_TYPE_SMART", + Self::Nlibiefcjgn => "IDCINKKCCPE_NLIBIEFCJGN", + Self::Hkmclcjknhm => "IDCINKKCCPE_HKMCLCJKNHM", + Self::Gaaomcocefa => "IDCINKKCCPE_GAAOMCOCEFA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "RELIC_DISCARD_TYPE_SINGLE" => Some(Self::RelicDiscardTypeSingle), - "RELIC_DISCARD_TYPE_BATCH" => Some(Self::RelicDiscardTypeBatch), - "RELIC_DISCARD_TYPE_SMART" => Some(Self::RelicDiscardTypeSmart), + "IDCINKKCCPE_NLIBIEFCJGN" => Some(Self::Nlibiefcjgn), + "IDCINKKCCPE_HKMCLCJKNHM" => Some(Self::Hkmclcjknhm), + "IDCINKKCCPE_GAAOMCOCEFA" => Some(Self::Gaaomcocefa), _ => None, } } @@ -74434,9 +73951,9 @@ impl Icpineholml { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TurnFoodSwitch { - None = 0, - Attack = 1, - Define = 2, + OkofddmpnjpAlocmfakbkp = 0, + OkofddmpnjpLhhehbbclam = 1, + OkofddmpnjpCfemjmahdpj = 2, } impl TurnFoodSwitch { /// String value of the enum field names used in the ProtoBuf definition. @@ -74445,17 +73962,17 @@ impl TurnFoodSwitch { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "TURN_FOOD_SWITCH_NONE", - Self::Attack => "TURN_FOOD_SWITCH_ATTACK", - Self::Define => "TURN_FOOD_SWITCH_DEFINE", + Self::OkofddmpnjpAlocmfakbkp => "OKOFDDMPNJP_ALOCMFAKBKP", + Self::OkofddmpnjpLhhehbbclam => "OKOFDDMPNJP_LHHEHBBCLAM", + Self::OkofddmpnjpCfemjmahdpj => "OKOFDDMPNJP_CFEMJMAHDPJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TURN_FOOD_SWITCH_NONE" => Some(Self::None), - "TURN_FOOD_SWITCH_ATTACK" => Some(Self::Attack), - "TURN_FOOD_SWITCH_DEFINE" => Some(Self::Define), + "OKOFDDMPNJP_ALOCMFAKBKP" => Some(Self::OkofddmpnjpAlocmfakbkp), + "OKOFDDMPNJP_LHHEHBBCLAM" => Some(Self::OkofddmpnjpLhhehbbclam), + "OKOFDDMPNJP_CFEMJMAHDPJ" => Some(Self::OkofddmpnjpCfemjmahdpj), _ => None, } } @@ -74464,15 +73981,15 @@ impl TurnFoodSwitch { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdJukeboxType { - None = 0, - CmdTrialBackGroundMusicCsReq = 3194, - CmdUnlockBackGroundMusicCsReq = 3183, - CmdUnlockBackGroundMusicScRsp = 3186, - CmdGetJukeboxDataScRsp = 3123, - CmdGetJukeboxDataCsReq = 3199, - CmdTrialBackGroundMusicScRsp = 3152, - CmdPlayBackGroundMusicCsReq = 3198, - CmdPlayBackGroundMusicScRsp = 3165, + LeomopbjdphAlocmfakbkp = 0, + CmdGetJukeboxDataCsReq = 3147, + CmdPlayBackGroundMusicCsReq = 3138, + CmdTrialBackGroundMusicCsReq = 3189, + CmdUnlockBackGroundMusicCsReq = 3151, + CmdUnlockBackGroundMusicScRsp = 3111, + CmdGetJukeboxDataScRsp = 3109, + CmdPlayBackGroundMusicScRsp = 3117, + CmdTrialBackGroundMusicScRsp = 3120, } impl CmdJukeboxType { /// String value of the enum field names used in the ProtoBuf definition. @@ -74481,29 +73998,29 @@ impl CmdJukeboxType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdJukeboxTypeNone", + Self::LeomopbjdphAlocmfakbkp => "LEOMOPBJDPH_ALOCMFAKBKP", + Self::CmdGetJukeboxDataCsReq => "CmdGetJukeboxDataCsReq", + Self::CmdPlayBackGroundMusicCsReq => "CmdPlayBackGroundMusicCsReq", Self::CmdTrialBackGroundMusicCsReq => "CmdTrialBackGroundMusicCsReq", Self::CmdUnlockBackGroundMusicCsReq => "CmdUnlockBackGroundMusicCsReq", Self::CmdUnlockBackGroundMusicScRsp => "CmdUnlockBackGroundMusicScRsp", Self::CmdGetJukeboxDataScRsp => "CmdGetJukeboxDataScRsp", - Self::CmdGetJukeboxDataCsReq => "CmdGetJukeboxDataCsReq", - Self::CmdTrialBackGroundMusicScRsp => "CmdTrialBackGroundMusicScRsp", - Self::CmdPlayBackGroundMusicCsReq => "CmdPlayBackGroundMusicCsReq", Self::CmdPlayBackGroundMusicScRsp => "CmdPlayBackGroundMusicScRsp", + Self::CmdTrialBackGroundMusicScRsp => "CmdTrialBackGroundMusicScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdJukeboxTypeNone" => Some(Self::None), + "LEOMOPBJDPH_ALOCMFAKBKP" => Some(Self::LeomopbjdphAlocmfakbkp), + "CmdGetJukeboxDataCsReq" => Some(Self::CmdGetJukeboxDataCsReq), + "CmdPlayBackGroundMusicCsReq" => Some(Self::CmdPlayBackGroundMusicCsReq), "CmdTrialBackGroundMusicCsReq" => Some(Self::CmdTrialBackGroundMusicCsReq), "CmdUnlockBackGroundMusicCsReq" => Some(Self::CmdUnlockBackGroundMusicCsReq), "CmdUnlockBackGroundMusicScRsp" => Some(Self::CmdUnlockBackGroundMusicScRsp), "CmdGetJukeboxDataScRsp" => Some(Self::CmdGetJukeboxDataScRsp), - "CmdGetJukeboxDataCsReq" => Some(Self::CmdGetJukeboxDataCsReq), - "CmdTrialBackGroundMusicScRsp" => Some(Self::CmdTrialBackGroundMusicScRsp), - "CmdPlayBackGroundMusicCsReq" => Some(Self::CmdPlayBackGroundMusicCsReq), "CmdPlayBackGroundMusicScRsp" => Some(Self::CmdPlayBackGroundMusicScRsp), + "CmdTrialBackGroundMusicScRsp" => Some(Self::CmdTrialBackGroundMusicScRsp), _ => None, } } @@ -74512,33 +74029,33 @@ impl CmdJukeboxType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdLineupType { - None = 0, - CmdVirtualLineupDestroyNotify = 751, - CmdSwapLineupScRsp = 744, - CmdGetCurLineupDataScRsp = 765, - CmdSwitchLineupIndexCsReq = 737, - CmdReplaceLineupScRsp = 738, - CmdChangeLineupLeaderCsReq = 715, - CmdVirtualLineupTrialAvatarChangeScNotify = 709, - CmdSyncLineupNotify = 781, - CmdGetStageLineupCsReq = 799, - CmdSwapLineupCsReq = 719, - CmdGetLineupAvatarDataScRsp = 757, - CmdGetAllLineupDataCsReq = 777, - CmdJoinLineupScRsp = 786, - CmdQuitLineupCsReq = 794, - CmdJoinLineupCsReq = 783, - CmdGetLineupAvatarDataCsReq = 769, - CmdReplaceLineupCsReq = 729, - CmdChangeLineupLeaderScRsp = 792, - CmdExtraLineupDestroyNotify = 703, - CmdSetLineupNameCsReq = 749, - CmdSetLineupNameScRsp = 780, - CmdGetCurLineupDataCsReq = 798, - CmdQuitLineupScRsp = 752, - CmdGetAllLineupDataScRsp = 705, - CmdGetStageLineupScRsp = 723, - CmdSwitchLineupIndexScRsp = 768, + CcdkpgblemiAlocmfakbkp = 0, + CmdExtraLineupDestroyNotify = 792, + CmdSwapLineupScRsp = 791, + CmdGetLineupAvatarDataCsReq = 745, + CmdVirtualLineupTrialAvatarChangeScNotify = 714, + CmdSwitchLineupIndexScRsp = 793, + CmdSwitchLineupIndexCsReq = 781, + CmdGetAllLineupDataCsReq = 767, + CmdChangeLineupLeaderScRsp = 750, + CmdJoinLineupCsReq = 751, + CmdGetLineupAvatarDataScRsp = 776, + CmdReplaceLineupScRsp = 746, + CmdQuitLineupCsReq = 789, + CmdSyncLineupNotify = 761, + CmdVirtualLineupDestroyNotify = 735, + CmdReplaceLineupCsReq = 798, + CmdSwapLineupCsReq = 795, + CmdSetLineupNameCsReq = 737, + CmdGetStageLineupScRsp = 709, + CmdJoinLineupScRsp = 711, + CmdChangeLineupLeaderCsReq = 752, + CmdSetLineupNameScRsp = 710, + CmdGetCurLineupDataScRsp = 717, + CmdGetAllLineupDataScRsp = 762, + CmdQuitLineupScRsp = 720, + CcdkpgblemiKkpiedgdcbm = 747, + CmdGetCurLineupDataCsReq = 738, } impl CmdLineupType { /// String value of the enum field names used in the ProtoBuf definition. @@ -74547,69 +74064,69 @@ impl CmdLineupType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdLineupTypeNone", - Self::CmdVirtualLineupDestroyNotify => "CmdVirtualLineupDestroyNotify", + Self::CcdkpgblemiAlocmfakbkp => "CCDKPGBLEMI_ALOCMFAKBKP", + Self::CmdExtraLineupDestroyNotify => "CmdExtraLineupDestroyNotify", Self::CmdSwapLineupScRsp => "CmdSwapLineupScRsp", - Self::CmdGetCurLineupDataScRsp => "CmdGetCurLineupDataScRsp", - Self::CmdSwitchLineupIndexCsReq => "CmdSwitchLineupIndexCsReq", - Self::CmdReplaceLineupScRsp => "CmdReplaceLineupScRsp", - Self::CmdChangeLineupLeaderCsReq => "CmdChangeLineupLeaderCsReq", + Self::CmdGetLineupAvatarDataCsReq => "CmdGetLineupAvatarDataCsReq", Self::CmdVirtualLineupTrialAvatarChangeScNotify => { "CmdVirtualLineupTrialAvatarChangeScNotify" } - Self::CmdSyncLineupNotify => "CmdSyncLineupNotify", - Self::CmdGetStageLineupCsReq => "CmdGetStageLineupCsReq", - Self::CmdSwapLineupCsReq => "CmdSwapLineupCsReq", - Self::CmdGetLineupAvatarDataScRsp => "CmdGetLineupAvatarDataScRsp", - Self::CmdGetAllLineupDataCsReq => "CmdGetAllLineupDataCsReq", - Self::CmdJoinLineupScRsp => "CmdJoinLineupScRsp", - Self::CmdQuitLineupCsReq => "CmdQuitLineupCsReq", - Self::CmdJoinLineupCsReq => "CmdJoinLineupCsReq", - Self::CmdGetLineupAvatarDataCsReq => "CmdGetLineupAvatarDataCsReq", - Self::CmdReplaceLineupCsReq => "CmdReplaceLineupCsReq", - Self::CmdChangeLineupLeaderScRsp => "CmdChangeLineupLeaderScRsp", - Self::CmdExtraLineupDestroyNotify => "CmdExtraLineupDestroyNotify", - Self::CmdSetLineupNameCsReq => "CmdSetLineupNameCsReq", - Self::CmdSetLineupNameScRsp => "CmdSetLineupNameScRsp", - Self::CmdGetCurLineupDataCsReq => "CmdGetCurLineupDataCsReq", - Self::CmdQuitLineupScRsp => "CmdQuitLineupScRsp", - Self::CmdGetAllLineupDataScRsp => "CmdGetAllLineupDataScRsp", - Self::CmdGetStageLineupScRsp => "CmdGetStageLineupScRsp", Self::CmdSwitchLineupIndexScRsp => "CmdSwitchLineupIndexScRsp", + Self::CmdSwitchLineupIndexCsReq => "CmdSwitchLineupIndexCsReq", + Self::CmdGetAllLineupDataCsReq => "CmdGetAllLineupDataCsReq", + Self::CmdChangeLineupLeaderScRsp => "CmdChangeLineupLeaderScRsp", + Self::CmdJoinLineupCsReq => "CmdJoinLineupCsReq", + Self::CmdGetLineupAvatarDataScRsp => "CmdGetLineupAvatarDataScRsp", + Self::CmdReplaceLineupScRsp => "CmdReplaceLineupScRsp", + Self::CmdQuitLineupCsReq => "CmdQuitLineupCsReq", + Self::CmdSyncLineupNotify => "CmdSyncLineupNotify", + Self::CmdVirtualLineupDestroyNotify => "CmdVirtualLineupDestroyNotify", + Self::CmdReplaceLineupCsReq => "CmdReplaceLineupCsReq", + Self::CmdSwapLineupCsReq => "CmdSwapLineupCsReq", + Self::CmdSetLineupNameCsReq => "CmdSetLineupNameCsReq", + Self::CmdGetStageLineupScRsp => "CmdGetStageLineupScRsp", + Self::CmdJoinLineupScRsp => "CmdJoinLineupScRsp", + Self::CmdChangeLineupLeaderCsReq => "CmdChangeLineupLeaderCsReq", + Self::CmdSetLineupNameScRsp => "CmdSetLineupNameScRsp", + Self::CmdGetCurLineupDataScRsp => "CmdGetCurLineupDataScRsp", + Self::CmdGetAllLineupDataScRsp => "CmdGetAllLineupDataScRsp", + Self::CmdQuitLineupScRsp => "CmdQuitLineupScRsp", + Self::CcdkpgblemiKkpiedgdcbm => "CCDKPGBLEMI_KKPIEDGDCBM", + Self::CmdGetCurLineupDataCsReq => "CmdGetCurLineupDataCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdLineupTypeNone" => Some(Self::None), - "CmdVirtualLineupDestroyNotify" => Some(Self::CmdVirtualLineupDestroyNotify), + "CCDKPGBLEMI_ALOCMFAKBKP" => Some(Self::CcdkpgblemiAlocmfakbkp), + "CmdExtraLineupDestroyNotify" => Some(Self::CmdExtraLineupDestroyNotify), "CmdSwapLineupScRsp" => Some(Self::CmdSwapLineupScRsp), - "CmdGetCurLineupDataScRsp" => Some(Self::CmdGetCurLineupDataScRsp), - "CmdSwitchLineupIndexCsReq" => Some(Self::CmdSwitchLineupIndexCsReq), - "CmdReplaceLineupScRsp" => Some(Self::CmdReplaceLineupScRsp), - "CmdChangeLineupLeaderCsReq" => Some(Self::CmdChangeLineupLeaderCsReq), + "CmdGetLineupAvatarDataCsReq" => Some(Self::CmdGetLineupAvatarDataCsReq), "CmdVirtualLineupTrialAvatarChangeScNotify" => { Some(Self::CmdVirtualLineupTrialAvatarChangeScNotify) } - "CmdSyncLineupNotify" => Some(Self::CmdSyncLineupNotify), - "CmdGetStageLineupCsReq" => Some(Self::CmdGetStageLineupCsReq), - "CmdSwapLineupCsReq" => Some(Self::CmdSwapLineupCsReq), - "CmdGetLineupAvatarDataScRsp" => Some(Self::CmdGetLineupAvatarDataScRsp), - "CmdGetAllLineupDataCsReq" => Some(Self::CmdGetAllLineupDataCsReq), - "CmdJoinLineupScRsp" => Some(Self::CmdJoinLineupScRsp), - "CmdQuitLineupCsReq" => Some(Self::CmdQuitLineupCsReq), - "CmdJoinLineupCsReq" => Some(Self::CmdJoinLineupCsReq), - "CmdGetLineupAvatarDataCsReq" => Some(Self::CmdGetLineupAvatarDataCsReq), - "CmdReplaceLineupCsReq" => Some(Self::CmdReplaceLineupCsReq), - "CmdChangeLineupLeaderScRsp" => Some(Self::CmdChangeLineupLeaderScRsp), - "CmdExtraLineupDestroyNotify" => Some(Self::CmdExtraLineupDestroyNotify), - "CmdSetLineupNameCsReq" => Some(Self::CmdSetLineupNameCsReq), - "CmdSetLineupNameScRsp" => Some(Self::CmdSetLineupNameScRsp), - "CmdGetCurLineupDataCsReq" => Some(Self::CmdGetCurLineupDataCsReq), - "CmdQuitLineupScRsp" => Some(Self::CmdQuitLineupScRsp), - "CmdGetAllLineupDataScRsp" => Some(Self::CmdGetAllLineupDataScRsp), - "CmdGetStageLineupScRsp" => Some(Self::CmdGetStageLineupScRsp), "CmdSwitchLineupIndexScRsp" => Some(Self::CmdSwitchLineupIndexScRsp), + "CmdSwitchLineupIndexCsReq" => Some(Self::CmdSwitchLineupIndexCsReq), + "CmdGetAllLineupDataCsReq" => Some(Self::CmdGetAllLineupDataCsReq), + "CmdChangeLineupLeaderScRsp" => Some(Self::CmdChangeLineupLeaderScRsp), + "CmdJoinLineupCsReq" => Some(Self::CmdJoinLineupCsReq), + "CmdGetLineupAvatarDataScRsp" => Some(Self::CmdGetLineupAvatarDataScRsp), + "CmdReplaceLineupScRsp" => Some(Self::CmdReplaceLineupScRsp), + "CmdQuitLineupCsReq" => Some(Self::CmdQuitLineupCsReq), + "CmdSyncLineupNotify" => Some(Self::CmdSyncLineupNotify), + "CmdVirtualLineupDestroyNotify" => Some(Self::CmdVirtualLineupDestroyNotify), + "CmdReplaceLineupCsReq" => Some(Self::CmdReplaceLineupCsReq), + "CmdSwapLineupCsReq" => Some(Self::CmdSwapLineupCsReq), + "CmdSetLineupNameCsReq" => Some(Self::CmdSetLineupNameCsReq), + "CmdGetStageLineupScRsp" => Some(Self::CmdGetStageLineupScRsp), + "CmdJoinLineupScRsp" => Some(Self::CmdJoinLineupScRsp), + "CmdChangeLineupLeaderCsReq" => Some(Self::CmdChangeLineupLeaderCsReq), + "CmdSetLineupNameScRsp" => Some(Self::CmdSetLineupNameScRsp), + "CmdGetCurLineupDataScRsp" => Some(Self::CmdGetCurLineupDataScRsp), + "CmdGetAllLineupDataScRsp" => Some(Self::CmdGetAllLineupDataScRsp), + "CmdQuitLineupScRsp" => Some(Self::CmdQuitLineupScRsp), + "CCDKPGBLEMI_KKPIEDGDCBM" => Some(Self::CcdkpgblemiKkpiedgdcbm), + "CmdGetCurLineupDataCsReq" => Some(Self::CmdGetCurLineupDataCsReq), _ => None, } } @@ -74617,35 +74134,35 @@ impl CmdLineupType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pbpahlpfnda { - LineupTypeNone = 0, - LineupTypePreset = 1, - LineupTypeVirtual = 2, - LineupTypeExtra = 3, - LineupTypeStoryLine = 4, +pub enum Jddllgggfkh { + Alocmfakbkp = 0, + Kbagldhgadp = 1, + Jcljaiomldf = 2, + Gajignmcfij = 3, + Faaljejhlec = 4, } -impl Pbpahlpfnda { +impl Jddllgggfkh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::LineupTypeNone => "LINEUP_TYPE_NONE", - Self::LineupTypePreset => "LINEUP_TYPE_PRESET", - Self::LineupTypeVirtual => "LINEUP_TYPE_VIRTUAL", - Self::LineupTypeExtra => "LINEUP_TYPE_EXTRA", - Self::LineupTypeStoryLine => "LINEUP_TYPE_STORY_LINE", + Self::Alocmfakbkp => "JDDLLGGGFKH_ALOCMFAKBKP", + Self::Kbagldhgadp => "JDDLLGGGFKH_KBAGLDHGADP", + Self::Jcljaiomldf => "JDDLLGGGFKH_JCLJAIOMLDF", + Self::Gajignmcfij => "JDDLLGGGFKH_GAJIGNMCFIJ", + Self::Faaljejhlec => "JDDLLGGGFKH_FAALJEJHLEC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "LINEUP_TYPE_NONE" => Some(Self::LineupTypeNone), - "LINEUP_TYPE_PRESET" => Some(Self::LineupTypePreset), - "LINEUP_TYPE_VIRTUAL" => Some(Self::LineupTypeVirtual), - "LINEUP_TYPE_EXTRA" => Some(Self::LineupTypeExtra), - "LINEUP_TYPE_STORY_LINE" => Some(Self::LineupTypeStoryLine), + "JDDLLGGGFKH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "JDDLLGGGFKH_KBAGLDHGADP" => Some(Self::Kbagldhgadp), + "JDDLLGGGFKH_JCLJAIOMLDF" => Some(Self::Jcljaiomldf), + "JDDLLGGGFKH_GAJIGNMCFIJ" => Some(Self::Gajignmcfij), + "JDDLLGGGFKH_FAALJEJHLEC" => Some(Self::Faaljejhlec), _ => None, } } @@ -74731,43 +74248,41 @@ impl ExtraLineupType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum SyncReason { - None = 0, - MpAdd = 1, - MpAddPropHit = 2, - HpAdd = 3, - HpAddPropHit = 4, - MpMaxChangedPermanent = 5, - MpMaxChangedByModifier = 6, +pub enum SyncLineupReason { + MpceifkfcehFhdennglemb = 0, + MpceifkfcehBcihebbklde = 1, + MpceifkfcehElokicdbhjk = 2, + MpceifkfcehGidbdbhopfp = 3, + MpceifkfcehGoinccffikd = 4, + MpceifkfcehNbcgfgehgjk = 5, + MpceifkfcehIgpcofinmda = 6, } -impl SyncReason { +impl SyncLineupReason { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "SYNC_REASON_NONE", - Self::MpAdd => "SYNC_REASON_MP_ADD", - Self::MpAddPropHit => "SYNC_REASON_MP_ADD_PROP_HIT", - Self::HpAdd => "SYNC_REASON_HP_ADD", - Self::HpAddPropHit => "SYNC_REASON_HP_ADD_PROP_HIT", - Self::MpMaxChangedPermanent => "SYNC_REASON_MP_MAX_CHANGED_PERMANENT", - Self::MpMaxChangedByModifier => "SYNC_REASON_MP_MAX_CHANGED_BY_MODIFIER", + Self::MpceifkfcehFhdennglemb => "MPCEIFKFCEH_FHDENNGLEMB", + Self::MpceifkfcehBcihebbklde => "MPCEIFKFCEH_BCIHEBBKLDE", + Self::MpceifkfcehElokicdbhjk => "MPCEIFKFCEH_ELOKICDBHJK", + Self::MpceifkfcehGidbdbhopfp => "MPCEIFKFCEH_GIDBDBHOPFP", + Self::MpceifkfcehGoinccffikd => "MPCEIFKFCEH_GOINCCFFIKD", + Self::MpceifkfcehNbcgfgehgjk => "MPCEIFKFCEH_NBCGFGEHGJK", + Self::MpceifkfcehIgpcofinmda => "MPCEIFKFCEH_IGPCOFINMDA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SYNC_REASON_NONE" => Some(Self::None), - "SYNC_REASON_MP_ADD" => Some(Self::MpAdd), - "SYNC_REASON_MP_ADD_PROP_HIT" => Some(Self::MpAddPropHit), - "SYNC_REASON_HP_ADD" => Some(Self::HpAdd), - "SYNC_REASON_HP_ADD_PROP_HIT" => Some(Self::HpAddPropHit), - "SYNC_REASON_MP_MAX_CHANGED_PERMANENT" => Some(Self::MpMaxChangedPermanent), - "SYNC_REASON_MP_MAX_CHANGED_BY_MODIFIER" => { - Some(Self::MpMaxChangedByModifier) - } + "MPCEIFKFCEH_FHDENNGLEMB" => Some(Self::MpceifkfcehFhdennglemb), + "MPCEIFKFCEH_BCIHEBBKLDE" => Some(Self::MpceifkfcehBcihebbklde), + "MPCEIFKFCEH_ELOKICDBHJK" => Some(Self::MpceifkfcehElokicdbhjk), + "MPCEIFKFCEH_GIDBDBHOPFP" => Some(Self::MpceifkfcehGidbdbhopfp), + "MPCEIFKFCEH_GOINCCFFIKD" => Some(Self::MpceifkfcehGoinccffikd), + "MPCEIFKFCEH_NBCGFGEHGJK" => Some(Self::MpceifkfcehNbcgfgehgjk), + "MPCEIFKFCEH_IGPCOFINMDA" => Some(Self::MpceifkfcehIgpcofinmda), _ => None, } } @@ -74776,28 +74291,28 @@ impl SyncReason { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdLobbyType { - None = 0, - CmdLobbyStartFightScRsp = 7377, - CmdLobbyInteractScNotify = 7362, - CmdLobbyInviteScNotify = 7383, - CmdLobbyQuitCsReq = 7369, - CmdLobbyInviteCsReq = 7353, - CmdLobbyInteractCsReq = 7379, - CmdLobbyGetInfoScRsp = 7361, - CmdLobbyQuitScRsp = 7397, - CmdLobbyCreateCsReq = 7376, - CmdLobbyInviteScRsp = 7373, - CmdLobbyGetInfoCsReq = 7380, - CmdLobbyInteractScRsp = 7385, - CmdLobbyJoinCsReq = 7371, - CmdLobbyStartFightCsReq = 7355, - CmdLobbySyncInfoScNotify = 7393, - CmdLobbyModifyPlayerInfoScRsp = 7394, - CmdLobbyKickOutScRsp = 7395, - CmdLobbyJoinScRsp = 7388, - CmdLobbyKickOutCsReq = 7351, - CmdLobbyCreateScRsp = 7378, - CmdLobbyModifyPlayerInfoCsReq = 7370, + JlfjcffkjfkAlocmfakbkp = 0, + CmdHinljepmaeo = 7385, + CmdKdhmnkgiadl = 7393, + CmdDmhlehmcmja = 7360, + CmdIgklaopjfog = 7355, + CmdGeppceoclog = 7357, + CmdNniebhkiiip = 7383, + CmdDaadkjadmpp = 7400, + CmdHdkfbpgaoam = 7363, + CmdPihiecemccb = 7359, + CmdOchfadebkha = 7367, + CmdEkhnldeellh = 7390, + CmdAencoebkfma = 7396, + CmdHiienohbgpg = 7362, + CmdEmiojolocpm = 7352, + CmdDblhndbnjhf = 7377, + CmdNmiocheckle = 7398, + CmdGogomfcohja = 7384, + CmdElocpginhjc = 7369, + CmdFbialgfbakh = 7370, + CmdIfapojidinh = 7375, + CmdEogbkaikcke = 7381, } impl CmdLobbyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -74806,55 +74321,94 @@ impl CmdLobbyType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdLobbyTypeNone", - Self::CmdLobbyStartFightScRsp => "CmdLobbyStartFightScRsp", - Self::CmdLobbyInteractScNotify => "CmdLobbyInteractScNotify", - Self::CmdLobbyInviteScNotify => "CmdLobbyInviteScNotify", - Self::CmdLobbyQuitCsReq => "CmdLobbyQuitCsReq", - Self::CmdLobbyInviteCsReq => "CmdLobbyInviteCsReq", - Self::CmdLobbyInteractCsReq => "CmdLobbyInteractCsReq", - Self::CmdLobbyGetInfoScRsp => "CmdLobbyGetInfoScRsp", - Self::CmdLobbyQuitScRsp => "CmdLobbyQuitScRsp", - Self::CmdLobbyCreateCsReq => "CmdLobbyCreateCsReq", - Self::CmdLobbyInviteScRsp => "CmdLobbyInviteScRsp", - Self::CmdLobbyGetInfoCsReq => "CmdLobbyGetInfoCsReq", - Self::CmdLobbyInteractScRsp => "CmdLobbyInteractScRsp", - Self::CmdLobbyJoinCsReq => "CmdLobbyJoinCsReq", - Self::CmdLobbyStartFightCsReq => "CmdLobbyStartFightCsReq", - Self::CmdLobbySyncInfoScNotify => "CmdLobbySyncInfoScNotify", - Self::CmdLobbyModifyPlayerInfoScRsp => "CmdLobbyModifyPlayerInfoScRsp", - Self::CmdLobbyKickOutScRsp => "CmdLobbyKickOutScRsp", - Self::CmdLobbyJoinScRsp => "CmdLobbyJoinScRsp", - Self::CmdLobbyKickOutCsReq => "CmdLobbyKickOutCsReq", - Self::CmdLobbyCreateScRsp => "CmdLobbyCreateScRsp", - Self::CmdLobbyModifyPlayerInfoCsReq => "CmdLobbyModifyPlayerInfoCsReq", + Self::JlfjcffkjfkAlocmfakbkp => "JLFJCFFKJFK_ALOCMFAKBKP", + Self::CmdHinljepmaeo => "CmdHINLJEPMAEO", + Self::CmdKdhmnkgiadl => "CmdKDHMNKGIADL", + Self::CmdDmhlehmcmja => "CmdDMHLEHMCMJA", + Self::CmdIgklaopjfog => "CmdIGKLAOPJFOG", + Self::CmdGeppceoclog => "CmdGEPPCEOCLOG", + Self::CmdNniebhkiiip => "CmdNNIEBHKIIIP", + Self::CmdDaadkjadmpp => "CmdDAADKJADMPP", + Self::CmdHdkfbpgaoam => "CmdHDKFBPGAOAM", + Self::CmdPihiecemccb => "CmdPIHIECEMCCB", + Self::CmdOchfadebkha => "CmdOCHFADEBKHA", + Self::CmdEkhnldeellh => "CmdEKHNLDEELLH", + Self::CmdAencoebkfma => "CmdAENCOEBKFMA", + Self::CmdHiienohbgpg => "CmdHIIENOHBGPG", + Self::CmdEmiojolocpm => "CmdEMIOJOLOCPM", + Self::CmdDblhndbnjhf => "CmdDBLHNDBNJHF", + Self::CmdNmiocheckle => "CmdNMIOCHECKLE", + Self::CmdGogomfcohja => "CmdGOGOMFCOHJA", + Self::CmdElocpginhjc => "CmdELOCPGINHJC", + Self::CmdFbialgfbakh => "CmdFBIALGFBAKH", + Self::CmdIfapojidinh => "CmdIFAPOJIDINH", + Self::CmdEogbkaikcke => "CmdEOGBKAIKCKE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdLobbyTypeNone" => Some(Self::None), - "CmdLobbyStartFightScRsp" => Some(Self::CmdLobbyStartFightScRsp), - "CmdLobbyInteractScNotify" => Some(Self::CmdLobbyInteractScNotify), - "CmdLobbyInviteScNotify" => Some(Self::CmdLobbyInviteScNotify), - "CmdLobbyQuitCsReq" => Some(Self::CmdLobbyQuitCsReq), - "CmdLobbyInviteCsReq" => Some(Self::CmdLobbyInviteCsReq), - "CmdLobbyInteractCsReq" => Some(Self::CmdLobbyInteractCsReq), - "CmdLobbyGetInfoScRsp" => Some(Self::CmdLobbyGetInfoScRsp), - "CmdLobbyQuitScRsp" => Some(Self::CmdLobbyQuitScRsp), - "CmdLobbyCreateCsReq" => Some(Self::CmdLobbyCreateCsReq), - "CmdLobbyInviteScRsp" => Some(Self::CmdLobbyInviteScRsp), - "CmdLobbyGetInfoCsReq" => Some(Self::CmdLobbyGetInfoCsReq), - "CmdLobbyInteractScRsp" => Some(Self::CmdLobbyInteractScRsp), - "CmdLobbyJoinCsReq" => Some(Self::CmdLobbyJoinCsReq), - "CmdLobbyStartFightCsReq" => Some(Self::CmdLobbyStartFightCsReq), - "CmdLobbySyncInfoScNotify" => Some(Self::CmdLobbySyncInfoScNotify), - "CmdLobbyModifyPlayerInfoScRsp" => Some(Self::CmdLobbyModifyPlayerInfoScRsp), - "CmdLobbyKickOutScRsp" => Some(Self::CmdLobbyKickOutScRsp), - "CmdLobbyJoinScRsp" => Some(Self::CmdLobbyJoinScRsp), - "CmdLobbyKickOutCsReq" => Some(Self::CmdLobbyKickOutCsReq), - "CmdLobbyCreateScRsp" => Some(Self::CmdLobbyCreateScRsp), - "CmdLobbyModifyPlayerInfoCsReq" => Some(Self::CmdLobbyModifyPlayerInfoCsReq), + "JLFJCFFKJFK_ALOCMFAKBKP" => Some(Self::JlfjcffkjfkAlocmfakbkp), + "CmdHINLJEPMAEO" => Some(Self::CmdHinljepmaeo), + "CmdKDHMNKGIADL" => Some(Self::CmdKdhmnkgiadl), + "CmdDMHLEHMCMJA" => Some(Self::CmdDmhlehmcmja), + "CmdIGKLAOPJFOG" => Some(Self::CmdIgklaopjfog), + "CmdGEPPCEOCLOG" => Some(Self::CmdGeppceoclog), + "CmdNNIEBHKIIIP" => Some(Self::CmdNniebhkiiip), + "CmdDAADKJADMPP" => Some(Self::CmdDaadkjadmpp), + "CmdHDKFBPGAOAM" => Some(Self::CmdHdkfbpgaoam), + "CmdPIHIECEMCCB" => Some(Self::CmdPihiecemccb), + "CmdOCHFADEBKHA" => Some(Self::CmdOchfadebkha), + "CmdEKHNLDEELLH" => Some(Self::CmdEkhnldeellh), + "CmdAENCOEBKFMA" => Some(Self::CmdAencoebkfma), + "CmdHIIENOHBGPG" => Some(Self::CmdHiienohbgpg), + "CmdEMIOJOLOCPM" => Some(Self::CmdEmiojolocpm), + "CmdDBLHNDBNJHF" => Some(Self::CmdDblhndbnjhf), + "CmdNMIOCHECKLE" => Some(Self::CmdNmiocheckle), + "CmdGOGOMFCOHJA" => Some(Self::CmdGogomfcohja), + "CmdELOCPGINHJC" => Some(Self::CmdElocpginhjc), + "CmdFBIALGFBAKH" => Some(Self::CmdFbialgfbakh), + "CmdIFAPOJIDINH" => Some(Self::CmdIfapojidinh), + "CmdEOGBKAIKCKE" => Some(Self::CmdEogbkaikcke), + _ => None, + } + } +} +#[derive(proto_derive::CmdID)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum Aepcdfmjmjh { + Alocmfakbkp = 0, + Jghigdgpdfd = 6595, + Glalpaonkip = 6592, + Kkgffdedojg = 6599, + Kmbdgdcacab = 6584, + Gfflfiaohgi = 6582, +} +impl Aepcdfmjmjh { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Self::Alocmfakbkp => "AEPCDFMJMJH_ALOCMFAKBKP", + Self::Jghigdgpdfd => "AEPCDFMJMJH_JGHIGDGPDFD", + Self::Glalpaonkip => "AEPCDFMJMJH_GLALPAONKIP", + Self::Kkgffdedojg => "AEPCDFMJMJH_KKGFFDEDOJG", + Self::Kmbdgdcacab => "AEPCDFMJMJH_KMBDGDCACAB", + Self::Gfflfiaohgi => "AEPCDFMJMJH_GFFLFIAOHGI", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "AEPCDFMJMJH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "AEPCDFMJMJH_JGHIGDGPDFD" => Some(Self::Jghigdgpdfd), + "AEPCDFMJMJH_GLALPAONKIP" => Some(Self::Glalpaonkip), + "AEPCDFMJMJH_KKGFFDEDOJG" => Some(Self::Kkgffdedojg), + "AEPCDFMJMJH_KMBDGDCACAB" => Some(Self::Kmbdgdcacab), + "AEPCDFMJMJH_GFFLFIAOHGI" => Some(Self::Gfflfiaohgi), _ => None, } } @@ -74863,16 +74417,16 @@ impl CmdLobbyType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMailType { - None = 0, - CmdNewMailScNotify = 819, - CmdDelMailScRsp = 886, - CmdGetMailScRsp = 823, - CmdTakeMailAttachmentCsReq = 894, - CmdGetMailCsReq = 899, - CmdMarkReadMailCsReq = 898, - CmdTakeMailAttachmentScRsp = 852, - CmdMarkReadMailScRsp = 865, - CmdDelMailCsReq = 883, + HaeklpdccgfAlocmfakbkp = 0, + CmdTakeMailAttachmentScRsp = 820, + CmdGetMailCsReq = 847, + CmdGetMailScRsp = 809, + CmdMarkReadMailScRsp = 817, + CmdDelMailCsReq = 851, + CmdTakeMailAttachmentCsReq = 889, + CmdNewMailScNotify = 895, + CmdMarkReadMailCsReq = 838, + CmdDelMailScRsp = 811, } impl CmdMailType { /// String value of the enum field names used in the ProtoBuf definition. @@ -74881,31 +74435,31 @@ impl CmdMailType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMailTypeNone", - Self::CmdNewMailScNotify => "CmdNewMailScNotify", - Self::CmdDelMailScRsp => "CmdDelMailScRsp", - Self::CmdGetMailScRsp => "CmdGetMailScRsp", - Self::CmdTakeMailAttachmentCsReq => "CmdTakeMailAttachmentCsReq", - Self::CmdGetMailCsReq => "CmdGetMailCsReq", - Self::CmdMarkReadMailCsReq => "CmdMarkReadMailCsReq", + Self::HaeklpdccgfAlocmfakbkp => "HAEKLPDCCGF_ALOCMFAKBKP", Self::CmdTakeMailAttachmentScRsp => "CmdTakeMailAttachmentScRsp", + Self::CmdGetMailCsReq => "CmdGetMailCsReq", + Self::CmdGetMailScRsp => "CmdGetMailScRsp", Self::CmdMarkReadMailScRsp => "CmdMarkReadMailScRsp", Self::CmdDelMailCsReq => "CmdDelMailCsReq", + Self::CmdTakeMailAttachmentCsReq => "CmdTakeMailAttachmentCsReq", + Self::CmdNewMailScNotify => "CmdNewMailScNotify", + Self::CmdMarkReadMailCsReq => "CmdMarkReadMailCsReq", + Self::CmdDelMailScRsp => "CmdDelMailScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMailTypeNone" => Some(Self::None), - "CmdNewMailScNotify" => Some(Self::CmdNewMailScNotify), - "CmdDelMailScRsp" => Some(Self::CmdDelMailScRsp), - "CmdGetMailScRsp" => Some(Self::CmdGetMailScRsp), - "CmdTakeMailAttachmentCsReq" => Some(Self::CmdTakeMailAttachmentCsReq), - "CmdGetMailCsReq" => Some(Self::CmdGetMailCsReq), - "CmdMarkReadMailCsReq" => Some(Self::CmdMarkReadMailCsReq), + "HAEKLPDCCGF_ALOCMFAKBKP" => Some(Self::HaeklpdccgfAlocmfakbkp), "CmdTakeMailAttachmentScRsp" => Some(Self::CmdTakeMailAttachmentScRsp), + "CmdGetMailCsReq" => Some(Self::CmdGetMailCsReq), + "CmdGetMailScRsp" => Some(Self::CmdGetMailScRsp), "CmdMarkReadMailScRsp" => Some(Self::CmdMarkReadMailScRsp), "CmdDelMailCsReq" => Some(Self::CmdDelMailCsReq), + "CmdTakeMailAttachmentCsReq" => Some(Self::CmdTakeMailAttachmentCsReq), + "CmdNewMailScNotify" => Some(Self::CmdNewMailScNotify), + "CmdMarkReadMailCsReq" => Some(Self::CmdMarkReadMailCsReq), + "CmdDelMailScRsp" => Some(Self::CmdDelMailScRsp), _ => None, } } @@ -74914,8 +74468,8 @@ impl CmdMailType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MailType { - Normal = 0, - Star = 1, + HbefjekmnfbGmbghbpibml = 0, + HbefjekmnfbOjhffmmafgg = 1, } impl MailType { /// String value of the enum field names used in the ProtoBuf definition. @@ -74924,15 +74478,15 @@ impl MailType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Normal => "MAIL_TYPE_NORMAL", - Self::Star => "MAIL_TYPE_STAR", + Self::HbefjekmnfbGmbghbpibml => "HBEFJEKMNFB_GMBGHBPIBML", + Self::HbefjekmnfbOjhffmmafgg => "HBEFJEKMNFB_OJHFFMMAFGG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MAIL_TYPE_NORMAL" => Some(Self::Normal), - "MAIL_TYPE_STAR" => Some(Self::Star), + "HBEFJEKMNFB_GMBGHBPIBML" => Some(Self::HbefjekmnfbGmbghbpibml), + "HBEFJEKMNFB_OJHFFMMAFGG" => Some(Self::HbefjekmnfbOjhffmmafgg), _ => None, } } @@ -74941,27 +74495,27 @@ impl MailType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMapRotationType { - None = 0, - CmdRotateMapScRsp = 6852, - CmdEnterMapRotationRegionCsReq = 6899, - CmdResetMapRotationRegionCsReq = 6857, - CmdDeployRotaterScRsp = 6886, - CmdUpdateEnergyScNotify = 6837, - CmdRemoveRotaterScRsp = 6880, - CmdLeaveMapRotationRegionScNotify = 6892, - CmdDeployRotaterCsReq = 6883, - CmdUpdateMapRotationDataScNotify = 6868, - CmdRemoveRotaterCsReq = 6849, - CmdGetMapRotationDataCsReq = 6881, - CmdInteractChargerScRsp = 6865, - CmdRotateMapCsReq = 6894, - CmdLeaveMapRotationRegionScRsp = 6844, - CmdInteractChargerCsReq = 6898, - CmdUpdateRotaterScNotify = 6877, - CmdLeaveMapRotationRegionCsReq = 6819, - CmdEnterMapRotationRegionScRsp = 6823, - CmdResetMapRotationRegionScRsp = 6815, - CmdGetMapRotationDataScRsp = 6869, + IkoladlmbhmAlocmfakbkp = 0, + CmdGetMapRotationDataScRsp = 6845, + CmdEnterMapRotationRegionScRsp = 6809, + CmdInteractChargerCsReq = 6838, + CmdRotateMapCsReq = 6889, + CmdRemoveRotaterScRsp = 6810, + CmdResetMapRotationRegionScRsp = 6852, + CmdUpdateEnergyScNotify = 6881, + CmdDeployRotaterCsReq = 6851, + CmdLeaveMapRotationRegionScNotify = 6850, + CmdRotateMapScRsp = 6820, + CmdInteractChargerScRsp = 6817, + CmdEnterMapRotationRegionCsReq = 6847, + CmdUpdateMapRotationDataScNotify = 6893, + CmdLeaveMapRotationRegionScRsp = 6891, + CmdLeaveMapRotationRegionCsReq = 6895, + CmdUpdateRotaterScNotify = 6867, + CmdResetMapRotationRegionCsReq = 6876, + CmdDeployRotaterScRsp = 6811, + CmdGetMapRotationDataCsReq = 6861, + CmdRemoveRotaterCsReq = 6837, } impl CmdMapRotationType { /// String value of the enum field names used in the ProtoBuf definition. @@ -74970,71 +74524,71 @@ impl CmdMapRotationType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMapRotationTypeNone", - Self::CmdRotateMapScRsp => "CmdRotateMapScRsp", - Self::CmdEnterMapRotationRegionCsReq => "CmdEnterMapRotationRegionCsReq", - Self::CmdResetMapRotationRegionCsReq => "CmdResetMapRotationRegionCsReq", - Self::CmdDeployRotaterScRsp => "CmdDeployRotaterScRsp", - Self::CmdUpdateEnergyScNotify => "CmdUpdateEnergyScNotify", + Self::IkoladlmbhmAlocmfakbkp => "IKOLADLMBHM_ALOCMFAKBKP", + Self::CmdGetMapRotationDataScRsp => "CmdGetMapRotationDataScRsp", + Self::CmdEnterMapRotationRegionScRsp => "CmdEnterMapRotationRegionScRsp", + Self::CmdInteractChargerCsReq => "CmdInteractChargerCsReq", + Self::CmdRotateMapCsReq => "CmdRotateMapCsReq", Self::CmdRemoveRotaterScRsp => "CmdRemoveRotaterScRsp", + Self::CmdResetMapRotationRegionScRsp => "CmdResetMapRotationRegionScRsp", + Self::CmdUpdateEnergyScNotify => "CmdUpdateEnergyScNotify", + Self::CmdDeployRotaterCsReq => "CmdDeployRotaterCsReq", Self::CmdLeaveMapRotationRegionScNotify => { "CmdLeaveMapRotationRegionScNotify" } - Self::CmdDeployRotaterCsReq => "CmdDeployRotaterCsReq", - Self::CmdUpdateMapRotationDataScNotify => "CmdUpdateMapRotationDataScNotify", - Self::CmdRemoveRotaterCsReq => "CmdRemoveRotaterCsReq", - Self::CmdGetMapRotationDataCsReq => "CmdGetMapRotationDataCsReq", + Self::CmdRotateMapScRsp => "CmdRotateMapScRsp", Self::CmdInteractChargerScRsp => "CmdInteractChargerScRsp", - Self::CmdRotateMapCsReq => "CmdRotateMapCsReq", + Self::CmdEnterMapRotationRegionCsReq => "CmdEnterMapRotationRegionCsReq", + Self::CmdUpdateMapRotationDataScNotify => "CmdUpdateMapRotationDataScNotify", Self::CmdLeaveMapRotationRegionScRsp => "CmdLeaveMapRotationRegionScRsp", - Self::CmdInteractChargerCsReq => "CmdInteractChargerCsReq", - Self::CmdUpdateRotaterScNotify => "CmdUpdateRotaterScNotify", Self::CmdLeaveMapRotationRegionCsReq => "CmdLeaveMapRotationRegionCsReq", - Self::CmdEnterMapRotationRegionScRsp => "CmdEnterMapRotationRegionScRsp", - Self::CmdResetMapRotationRegionScRsp => "CmdResetMapRotationRegionScRsp", - Self::CmdGetMapRotationDataScRsp => "CmdGetMapRotationDataScRsp", + Self::CmdUpdateRotaterScNotify => "CmdUpdateRotaterScNotify", + Self::CmdResetMapRotationRegionCsReq => "CmdResetMapRotationRegionCsReq", + Self::CmdDeployRotaterScRsp => "CmdDeployRotaterScRsp", + Self::CmdGetMapRotationDataCsReq => "CmdGetMapRotationDataCsReq", + Self::CmdRemoveRotaterCsReq => "CmdRemoveRotaterCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMapRotationTypeNone" => Some(Self::None), + "IKOLADLMBHM_ALOCMFAKBKP" => Some(Self::IkoladlmbhmAlocmfakbkp), + "CmdGetMapRotationDataScRsp" => Some(Self::CmdGetMapRotationDataScRsp), + "CmdEnterMapRotationRegionScRsp" => { + Some(Self::CmdEnterMapRotationRegionScRsp) + } + "CmdInteractChargerCsReq" => Some(Self::CmdInteractChargerCsReq), + "CmdRotateMapCsReq" => Some(Self::CmdRotateMapCsReq), + "CmdRemoveRotaterScRsp" => Some(Self::CmdRemoveRotaterScRsp), + "CmdResetMapRotationRegionScRsp" => { + Some(Self::CmdResetMapRotationRegionScRsp) + } + "CmdUpdateEnergyScNotify" => Some(Self::CmdUpdateEnergyScNotify), + "CmdDeployRotaterCsReq" => Some(Self::CmdDeployRotaterCsReq), + "CmdLeaveMapRotationRegionScNotify" => { + Some(Self::CmdLeaveMapRotationRegionScNotify) + } "CmdRotateMapScRsp" => Some(Self::CmdRotateMapScRsp), + "CmdInteractChargerScRsp" => Some(Self::CmdInteractChargerScRsp), "CmdEnterMapRotationRegionCsReq" => { Some(Self::CmdEnterMapRotationRegionCsReq) } + "CmdUpdateMapRotationDataScNotify" => { + Some(Self::CmdUpdateMapRotationDataScNotify) + } + "CmdLeaveMapRotationRegionScRsp" => { + Some(Self::CmdLeaveMapRotationRegionScRsp) + } + "CmdLeaveMapRotationRegionCsReq" => { + Some(Self::CmdLeaveMapRotationRegionCsReq) + } + "CmdUpdateRotaterScNotify" => Some(Self::CmdUpdateRotaterScNotify), "CmdResetMapRotationRegionCsReq" => { Some(Self::CmdResetMapRotationRegionCsReq) } "CmdDeployRotaterScRsp" => Some(Self::CmdDeployRotaterScRsp), - "CmdUpdateEnergyScNotify" => Some(Self::CmdUpdateEnergyScNotify), - "CmdRemoveRotaterScRsp" => Some(Self::CmdRemoveRotaterScRsp), - "CmdLeaveMapRotationRegionScNotify" => { - Some(Self::CmdLeaveMapRotationRegionScNotify) - } - "CmdDeployRotaterCsReq" => Some(Self::CmdDeployRotaterCsReq), - "CmdUpdateMapRotationDataScNotify" => { - Some(Self::CmdUpdateMapRotationDataScNotify) - } - "CmdRemoveRotaterCsReq" => Some(Self::CmdRemoveRotaterCsReq), "CmdGetMapRotationDataCsReq" => Some(Self::CmdGetMapRotationDataCsReq), - "CmdInteractChargerScRsp" => Some(Self::CmdInteractChargerScRsp), - "CmdRotateMapCsReq" => Some(Self::CmdRotateMapCsReq), - "CmdLeaveMapRotationRegionScRsp" => { - Some(Self::CmdLeaveMapRotationRegionScRsp) - } - "CmdInteractChargerCsReq" => Some(Self::CmdInteractChargerCsReq), - "CmdUpdateRotaterScNotify" => Some(Self::CmdUpdateRotaterScNotify), - "CmdLeaveMapRotationRegionCsReq" => { - Some(Self::CmdLeaveMapRotationRegionCsReq) - } - "CmdEnterMapRotationRegionScRsp" => { - Some(Self::CmdEnterMapRotationRegionScRsp) - } - "CmdResetMapRotationRegionScRsp" => { - Some(Self::CmdResetMapRotationRegionScRsp) - } - "CmdGetMapRotationDataScRsp" => Some(Self::CmdGetMapRotationDataScRsp), + "CmdRemoveRotaterCsReq" => Some(Self::CmdRemoveRotaterCsReq), _ => None, } } @@ -75043,17 +74597,17 @@ impl CmdMapRotationType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMarbleType { - None = 0, - CmdMarbleUnlockSealScNotify = 8278, - CmdMarbleUpdateShownSealCsReq = 8280, - CmdMarbleShopBuyCsReq = 8273, - CmdMarbleGetDataScRsp = 8271, - CmdMarbleLevelFinishCsReq = 8283, - CmdMarbleUpdateShownSealScRsp = 8286, - CmdMarbleLevelFinishScRsp = 8289, - CmdMarbleGetDataCsReq = 8277, - CmdMarbleShopBuyScRsp = 8285, - CmdMarblePvpDataUpdateScNotify = 8281, + LgbednbeobcAlocmfakbkp = 0, + CmdBpnjpcnekbd = 8275, + CmdOkekjdfoikd = 8287, + CmdLlbmdljhjlo = 8274, + CmdEghobcimpnh = 8276, + CmdGbhlodaeahh = 8273, + CmdPniehblnhob = 8282, + CmdMfanaadhhpg = 8279, + CmdOljeaphmgie = 8271, + CmdKgeijdnmeko = 8283, + CmdKcgjfhileoi = 8284, } impl CmdMarbleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -75062,35 +74616,33 @@ impl CmdMarbleType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMarbleTypeNone", - Self::CmdMarbleUnlockSealScNotify => "CmdMarbleUnlockSealScNotify", - Self::CmdMarbleUpdateShownSealCsReq => "CmdMarbleUpdateShownSealCsReq", - Self::CmdMarbleShopBuyCsReq => "CmdMarbleShopBuyCsReq", - Self::CmdMarbleGetDataScRsp => "CmdMarbleGetDataScRsp", - Self::CmdMarbleLevelFinishCsReq => "CmdMarbleLevelFinishCsReq", - Self::CmdMarbleUpdateShownSealScRsp => "CmdMarbleUpdateShownSealScRsp", - Self::CmdMarbleLevelFinishScRsp => "CmdMarbleLevelFinishScRsp", - Self::CmdMarbleGetDataCsReq => "CmdMarbleGetDataCsReq", - Self::CmdMarbleShopBuyScRsp => "CmdMarbleShopBuyScRsp", - Self::CmdMarblePvpDataUpdateScNotify => "CmdMarblePvpDataUpdateScNotify", + Self::LgbednbeobcAlocmfakbkp => "LGBEDNBEOBC_ALOCMFAKBKP", + Self::CmdBpnjpcnekbd => "CmdBPNJPCNEKBD", + Self::CmdOkekjdfoikd => "CmdOKEKJDFOIKD", + Self::CmdLlbmdljhjlo => "CmdLLBMDLJHJLO", + Self::CmdEghobcimpnh => "CmdEGHOBCIMPNH", + Self::CmdGbhlodaeahh => "CmdGBHLODAEAHH", + Self::CmdPniehblnhob => "CmdPNIEHBLNHOB", + Self::CmdMfanaadhhpg => "CmdMFANAADHHPG", + Self::CmdOljeaphmgie => "CmdOLJEAPHMGIE", + Self::CmdKgeijdnmeko => "CmdKGEIJDNMEKO", + Self::CmdKcgjfhileoi => "CmdKCGJFHILEOI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMarbleTypeNone" => Some(Self::None), - "CmdMarbleUnlockSealScNotify" => Some(Self::CmdMarbleUnlockSealScNotify), - "CmdMarbleUpdateShownSealCsReq" => Some(Self::CmdMarbleUpdateShownSealCsReq), - "CmdMarbleShopBuyCsReq" => Some(Self::CmdMarbleShopBuyCsReq), - "CmdMarbleGetDataScRsp" => Some(Self::CmdMarbleGetDataScRsp), - "CmdMarbleLevelFinishCsReq" => Some(Self::CmdMarbleLevelFinishCsReq), - "CmdMarbleUpdateShownSealScRsp" => Some(Self::CmdMarbleUpdateShownSealScRsp), - "CmdMarbleLevelFinishScRsp" => Some(Self::CmdMarbleLevelFinishScRsp), - "CmdMarbleGetDataCsReq" => Some(Self::CmdMarbleGetDataCsReq), - "CmdMarbleShopBuyScRsp" => Some(Self::CmdMarbleShopBuyScRsp), - "CmdMarblePvpDataUpdateScNotify" => { - Some(Self::CmdMarblePvpDataUpdateScNotify) - } + "LGBEDNBEOBC_ALOCMFAKBKP" => Some(Self::LgbednbeobcAlocmfakbkp), + "CmdBPNJPCNEKBD" => Some(Self::CmdBpnjpcnekbd), + "CmdOKEKJDFOIKD" => Some(Self::CmdOkekjdfoikd), + "CmdLLBMDLJHJLO" => Some(Self::CmdLlbmdljhjlo), + "CmdEGHOBCIMPNH" => Some(Self::CmdEghobcimpnh), + "CmdGBHLODAEAHH" => Some(Self::CmdGbhlodaeahh), + "CmdPNIEHBLNHOB" => Some(Self::CmdPniehblnhob), + "CmdMFANAADHHPG" => Some(Self::CmdMfanaadhhpg), + "CmdOLJEAPHMGIE" => Some(Self::CmdOljeaphmgie), + "CmdKGEIJDNMEKO" => Some(Self::CmdKgeijdnmeko), + "CmdKCGJFHILEOI" => Some(Self::CmdKcgjfhileoi), _ => None, } } @@ -75099,12 +74651,12 @@ impl CmdMarbleType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMarkChestType { - None = 0, - CmdUpdateMarkChestScRsp = 8199, - CmdGetMarkChestScRsp = 8181, - CmdGetMarkChestCsReq = 8187, - CmdMarkChestChangedScNotify = 8183, - CmdUpdateMarkChestCsReq = 8193, + ConknfogohiAlocmfakbkp = 0, + CmdUpdateMarkChestScRsp = 8185, + CmdMarkChestChangedScNotify = 8194, + CmdGetMarkChestCsReq = 8193, + CmdGetMarkChestScRsp = 8186, + CmdUpdateMarkChestCsReq = 8189, } impl CmdMarkChestType { /// String value of the enum field names used in the ProtoBuf definition. @@ -75113,22 +74665,22 @@ impl CmdMarkChestType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMarkChestTypeNone", + Self::ConknfogohiAlocmfakbkp => "CONKNFOGOHI_ALOCMFAKBKP", Self::CmdUpdateMarkChestScRsp => "CmdUpdateMarkChestScRsp", - Self::CmdGetMarkChestScRsp => "CmdGetMarkChestScRsp", - Self::CmdGetMarkChestCsReq => "CmdGetMarkChestCsReq", Self::CmdMarkChestChangedScNotify => "CmdMarkChestChangedScNotify", + Self::CmdGetMarkChestCsReq => "CmdGetMarkChestCsReq", + Self::CmdGetMarkChestScRsp => "CmdGetMarkChestScRsp", Self::CmdUpdateMarkChestCsReq => "CmdUpdateMarkChestCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMarkChestTypeNone" => Some(Self::None), + "CONKNFOGOHI_ALOCMFAKBKP" => Some(Self::ConknfogohiAlocmfakbkp), "CmdUpdateMarkChestScRsp" => Some(Self::CmdUpdateMarkChestScRsp), - "CmdGetMarkChestScRsp" => Some(Self::CmdGetMarkChestScRsp), - "CmdGetMarkChestCsReq" => Some(Self::CmdGetMarkChestCsReq), "CmdMarkChestChangedScNotify" => Some(Self::CmdMarkChestChangedScNotify), + "CmdGetMarkChestCsReq" => Some(Self::CmdGetMarkChestCsReq), + "CmdGetMarkChestScRsp" => Some(Self::CmdGetMarkChestScRsp), "CmdUpdateMarkChestCsReq" => Some(Self::CmdUpdateMarkChestCsReq), _ => None, } @@ -75138,14 +74690,14 @@ impl CmdMarkChestType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMatchType { - None = 0, - CmdStartMatchCsReq = 7326, - CmdCancelMatchScRsp = 7338, - CmdGetCrossInfoScRsp = 7320, - CmdStartMatchScRsp = 7328, - CmdCancelMatchCsReq = 7321, - CmdMatchResultScNotify = 7305, - CmdGetCrossInfoCsReq = 7327, + FdhbfnekafcAlocmfakbkp = 0, + CmdCancelMatchScRsp = 7305, + CmdStartMatchScRsp = 7302, + CmdStartMatchCsReq = 7348, + CmdGetCrossInfoScRsp = 7331, + CmdGetCrossInfoCsReq = 7333, + FdhbfnekafcPiiofalognj = 7319, + CmdMatchResultScNotify = 7335, } impl CmdMatchType { /// String value of the enum field names used in the ProtoBuf definition. @@ -75154,27 +74706,27 @@ impl CmdMatchType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMatchTypeNone", - Self::CmdStartMatchCsReq => "CmdStartMatchCsReq", + Self::FdhbfnekafcAlocmfakbkp => "FDHBFNEKAFC_ALOCMFAKBKP", Self::CmdCancelMatchScRsp => "CmdCancelMatchScRsp", - Self::CmdGetCrossInfoScRsp => "CmdGetCrossInfoScRsp", Self::CmdStartMatchScRsp => "CmdStartMatchScRsp", - Self::CmdCancelMatchCsReq => "CmdCancelMatchCsReq", - Self::CmdMatchResultScNotify => "CmdMatchResultScNotify", + Self::CmdStartMatchCsReq => "CmdStartMatchCsReq", + Self::CmdGetCrossInfoScRsp => "CmdGetCrossInfoScRsp", Self::CmdGetCrossInfoCsReq => "CmdGetCrossInfoCsReq", + Self::FdhbfnekafcPiiofalognj => "FDHBFNEKAFC_PIIOFALOGNJ", + Self::CmdMatchResultScNotify => "CmdMatchResultScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMatchTypeNone" => Some(Self::None), - "CmdStartMatchCsReq" => Some(Self::CmdStartMatchCsReq), + "FDHBFNEKAFC_ALOCMFAKBKP" => Some(Self::FdhbfnekafcAlocmfakbkp), "CmdCancelMatchScRsp" => Some(Self::CmdCancelMatchScRsp), - "CmdGetCrossInfoScRsp" => Some(Self::CmdGetCrossInfoScRsp), "CmdStartMatchScRsp" => Some(Self::CmdStartMatchScRsp), - "CmdCancelMatchCsReq" => Some(Self::CmdCancelMatchCsReq), - "CmdMatchResultScNotify" => Some(Self::CmdMatchResultScNotify), + "CmdStartMatchCsReq" => Some(Self::CmdStartMatchCsReq), + "CmdGetCrossInfoScRsp" => Some(Self::CmdGetCrossInfoScRsp), "CmdGetCrossInfoCsReq" => Some(Self::CmdGetCrossInfoCsReq), + "FDHBFNEKAFC_PIIOFALOGNJ" => Some(Self::FdhbfnekafcPiiofalognj), + "CmdMatchResultScNotify" => Some(Self::CmdMatchResultScNotify), _ => None, } } @@ -75183,25 +74735,25 @@ impl CmdMatchType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMatchThreeModuleType { - None = 0, - CmdMatchThreeV2GetDataScRsp = 7401, - CmdMatchThreeSyncDataScNotify = 7405, - CmdMatchThreeV2LevelEndScRsp = 7423, - CmdMatchThreeRoyaleFinishScNotify = 7411, - CmdMatchThreeV2GetDataCsReq = 7444, - CmdMatchThreeV2PvpFinishScNotify = 7430, - CmdMatchThreeV2LevelEndCsReq = 7403, - CmdMatchThreeV2BattleItemLevelUpCsReq = 7445, - CmdMatchThreeSetBirdPosScRsp = 7420, - CmdMatchThreeGetDataScRsp = 7428, - CmdMatchThreeSetBirdPosCsReq = 7427, - CmdMatchThreeV2SetBirdPosScRsp = 7447, - CmdMatchThreeLevelEndCsReq = 7421, - CmdMatchThreeV2ScNotify = 7433, - CmdMatchThreeLevelEndScRsp = 7438, - CmdMatchThreeV2SetBirdPosCsReq = 7419, - CmdMatchThreeGetDataCsReq = 7426, - CmdMatchThreeV2BattleItemLevelUpScRsp = 7443, + EkmpeonglikAlocmfakbkp = 0, + CmdKfpnnlagcon = 7413, + CmdBbghlimpobh = 7446, + CmdPencgfncoei = 7443, + CmdGofpclnnhlg = 7420, + CmdEemdhjfinbd = 7433, + CmdLnbeniecpoi = 7434, + CmdBodcpljdpgf = 7435, + CmdLcnhijfmbai = 7448, + CmdAgllfhmlcff = 7425, + CmdBehgljapojf = 7409, + CmdIpbnimplebd = 7419, + CmdEmkjjgaddld = 7431, + CmdJfhbmcmggpg = 7407, + CmdHeooekcdmba = 7412, + CmdBnpjmliijhe = 7427, + CmdOlipbinkphl = 7417, + CmdNdnodngcifp = 7402, + CmdAnfgnjfoffi = 7405, } impl CmdMatchThreeModuleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -75210,67 +74762,49 @@ impl CmdMatchThreeModuleType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMatchThreeModuleTypeNone", - Self::CmdMatchThreeV2GetDataScRsp => "CmdMatchThreeV2GetDataScRsp", - Self::CmdMatchThreeSyncDataScNotify => "CmdMatchThreeSyncDataScNotify", - Self::CmdMatchThreeV2LevelEndScRsp => "CmdMatchThreeV2LevelEndScRsp", - Self::CmdMatchThreeRoyaleFinishScNotify => { - "CmdMatchThreeRoyaleFinishScNotify" - } - Self::CmdMatchThreeV2GetDataCsReq => "CmdMatchThreeV2GetDataCsReq", - Self::CmdMatchThreeV2PvpFinishScNotify => "CmdMatchThreeV2PvpFinishScNotify", - Self::CmdMatchThreeV2LevelEndCsReq => "CmdMatchThreeV2LevelEndCsReq", - Self::CmdMatchThreeV2BattleItemLevelUpCsReq => { - "CmdMatchThreeV2BattleItemLevelUpCsReq" - } - Self::CmdMatchThreeSetBirdPosScRsp => "CmdMatchThreeSetBirdPosScRsp", - Self::CmdMatchThreeGetDataScRsp => "CmdMatchThreeGetDataScRsp", - Self::CmdMatchThreeSetBirdPosCsReq => "CmdMatchThreeSetBirdPosCsReq", - Self::CmdMatchThreeV2SetBirdPosScRsp => "CmdMatchThreeV2SetBirdPosScRsp", - Self::CmdMatchThreeLevelEndCsReq => "CmdMatchThreeLevelEndCsReq", - Self::CmdMatchThreeV2ScNotify => "CmdMatchThreeV2ScNotify", - Self::CmdMatchThreeLevelEndScRsp => "CmdMatchThreeLevelEndScRsp", - Self::CmdMatchThreeV2SetBirdPosCsReq => "CmdMatchThreeV2SetBirdPosCsReq", - Self::CmdMatchThreeGetDataCsReq => "CmdMatchThreeGetDataCsReq", - Self::CmdMatchThreeV2BattleItemLevelUpScRsp => { - "CmdMatchThreeV2BattleItemLevelUpScRsp" - } + Self::EkmpeonglikAlocmfakbkp => "EKMPEONGLIK_ALOCMFAKBKP", + Self::CmdKfpnnlagcon => "CmdKFPNNLAGCON", + Self::CmdBbghlimpobh => "CmdBBGHLIMPOBH", + Self::CmdPencgfncoei => "CmdPENCGFNCOEI", + Self::CmdGofpclnnhlg => "CmdGOFPCLNNHLG", + Self::CmdEemdhjfinbd => "CmdEEMDHJFINBD", + Self::CmdLnbeniecpoi => "CmdLNBENIECPOI", + Self::CmdBodcpljdpgf => "CmdBODCPLJDPGF", + Self::CmdLcnhijfmbai => "CmdLCNHIJFMBAI", + Self::CmdAgllfhmlcff => "CmdAGLLFHMLCFF", + Self::CmdBehgljapojf => "CmdBEHGLJAPOJF", + Self::CmdIpbnimplebd => "CmdIPBNIMPLEBD", + Self::CmdEmkjjgaddld => "CmdEMKJJGADDLD", + Self::CmdJfhbmcmggpg => "CmdJFHBMCMGGPG", + Self::CmdHeooekcdmba => "CmdHEOOEKCDMBA", + Self::CmdBnpjmliijhe => "CmdBNPJMLIIJHE", + Self::CmdOlipbinkphl => "CmdOLIPBINKPHL", + Self::CmdNdnodngcifp => "CmdNDNODNGCIFP", + Self::CmdAnfgnjfoffi => "CmdANFGNJFOFFI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMatchThreeModuleTypeNone" => Some(Self::None), - "CmdMatchThreeV2GetDataScRsp" => Some(Self::CmdMatchThreeV2GetDataScRsp), - "CmdMatchThreeSyncDataScNotify" => Some(Self::CmdMatchThreeSyncDataScNotify), - "CmdMatchThreeV2LevelEndScRsp" => Some(Self::CmdMatchThreeV2LevelEndScRsp), - "CmdMatchThreeRoyaleFinishScNotify" => { - Some(Self::CmdMatchThreeRoyaleFinishScNotify) - } - "CmdMatchThreeV2GetDataCsReq" => Some(Self::CmdMatchThreeV2GetDataCsReq), - "CmdMatchThreeV2PvpFinishScNotify" => { - Some(Self::CmdMatchThreeV2PvpFinishScNotify) - } - "CmdMatchThreeV2LevelEndCsReq" => Some(Self::CmdMatchThreeV2LevelEndCsReq), - "CmdMatchThreeV2BattleItemLevelUpCsReq" => { - Some(Self::CmdMatchThreeV2BattleItemLevelUpCsReq) - } - "CmdMatchThreeSetBirdPosScRsp" => Some(Self::CmdMatchThreeSetBirdPosScRsp), - "CmdMatchThreeGetDataScRsp" => Some(Self::CmdMatchThreeGetDataScRsp), - "CmdMatchThreeSetBirdPosCsReq" => Some(Self::CmdMatchThreeSetBirdPosCsReq), - "CmdMatchThreeV2SetBirdPosScRsp" => { - Some(Self::CmdMatchThreeV2SetBirdPosScRsp) - } - "CmdMatchThreeLevelEndCsReq" => Some(Self::CmdMatchThreeLevelEndCsReq), - "CmdMatchThreeV2ScNotify" => Some(Self::CmdMatchThreeV2ScNotify), - "CmdMatchThreeLevelEndScRsp" => Some(Self::CmdMatchThreeLevelEndScRsp), - "CmdMatchThreeV2SetBirdPosCsReq" => { - Some(Self::CmdMatchThreeV2SetBirdPosCsReq) - } - "CmdMatchThreeGetDataCsReq" => Some(Self::CmdMatchThreeGetDataCsReq), - "CmdMatchThreeV2BattleItemLevelUpScRsp" => { - Some(Self::CmdMatchThreeV2BattleItemLevelUpScRsp) - } + "EKMPEONGLIK_ALOCMFAKBKP" => Some(Self::EkmpeonglikAlocmfakbkp), + "CmdKFPNNLAGCON" => Some(Self::CmdKfpnnlagcon), + "CmdBBGHLIMPOBH" => Some(Self::CmdBbghlimpobh), + "CmdPENCGFNCOEI" => Some(Self::CmdPencgfncoei), + "CmdGOFPCLNNHLG" => Some(Self::CmdGofpclnnhlg), + "CmdEEMDHJFINBD" => Some(Self::CmdEemdhjfinbd), + "CmdLNBENIECPOI" => Some(Self::CmdLnbeniecpoi), + "CmdBODCPLJDPGF" => Some(Self::CmdBodcpljdpgf), + "CmdLCNHIJFMBAI" => Some(Self::CmdLcnhijfmbai), + "CmdAGLLFHMLCFF" => Some(Self::CmdAgllfhmlcff), + "CmdBEHGLJAPOJF" => Some(Self::CmdBehgljapojf), + "CmdIPBNIMPLEBD" => Some(Self::CmdIpbnimplebd), + "CmdEMKJJGADDLD" => Some(Self::CmdEmkjjgaddld), + "CmdJFHBMCMGGPG" => Some(Self::CmdJfhbmcmggpg), + "CmdHEOOEKCDMBA" => Some(Self::CmdHeooekcdmba), + "CmdBNPJMLIIJHE" => Some(Self::CmdBnpjmliijhe), + "CmdOLIPBINKPHL" => Some(Self::CmdOlipbinkphl), + "CmdNDNODNGCIFP" => Some(Self::CmdNdnodngcifp), + "CmdANFGNJFOFFI" => Some(Self::CmdAnfgnjfoffi), _ => None, } } @@ -75278,64 +74812,62 @@ impl CmdMatchThreeModuleType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ajddhbhmoof { - MatchThreeStatisticsNone = 0, - MatchThreeStatisticsFirst = 1, - MatchThreeStatisticsSecond = 2, - MatchThreeStatisticsThird = 3, - MatchThreeStatisticsFruit = 4, - MatchThreeStatisticsSkill = 5, - MatchThreeStatisticsDefeat = 6, - MatchThreeStatisticsBomb = 7, - MatchThreeStatisticsDamage = 8, - MatchThreeStatisticsEnergy = 9, - MatchThreeStatisticsSwapBomb = 10, - MatchThreeStatisticsUseItem = 11, - MatchThreeStatisticsSoloMaxStep = 12, - MatchThreeStatisticsSoloScore = 13, +pub enum Ibjjfiekaeb { + Jjgmhopoecf = 0, + Hpfbgmiokck = 1, + Hpclecmabig = 2, + Ehpajiggclo = 3, + Hcdfhlmdahd = 4, + Ahledcepfgp = 5, + Lihbajcmmmm = 6, + Amlljnccmih = 7, + Hjgknljlffh = 8, + Dmklejfdiom = 9, + Hnfcgimacff = 10, + Jldpkbdcjib = 11, + Ihmknplnnfe = 12, + Infioicaalo = 13, } -impl Ajddhbhmoof { +impl Ibjjfiekaeb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MatchThreeStatisticsNone => "MatchThreeStatistics_None", - Self::MatchThreeStatisticsFirst => "MatchThreeStatistics_First", - Self::MatchThreeStatisticsSecond => "MatchThreeStatistics_Second", - Self::MatchThreeStatisticsThird => "MatchThreeStatistics_Third", - Self::MatchThreeStatisticsFruit => "MatchThreeStatistics_Fruit", - Self::MatchThreeStatisticsSkill => "MatchThreeStatistics_Skill", - Self::MatchThreeStatisticsDefeat => "MatchThreeStatistics_Defeat", - Self::MatchThreeStatisticsBomb => "MatchThreeStatistics_Bomb", - Self::MatchThreeStatisticsDamage => "MatchThreeStatistics_Damage", - Self::MatchThreeStatisticsEnergy => "MatchThreeStatistics_Energy", - Self::MatchThreeStatisticsSwapBomb => "MatchThreeStatistics_SwapBomb", - Self::MatchThreeStatisticsUseItem => "MatchThreeStatistics_UseItem", - Self::MatchThreeStatisticsSoloMaxStep => "MatchThreeStatistics_SoloMaxStep", - Self::MatchThreeStatisticsSoloScore => "MatchThreeStatistics_SoloScore", + Self::Jjgmhopoecf => "IBJJFIEKAEB_JJGMHOPOECF", + Self::Hpfbgmiokck => "IBJJFIEKAEB_HPFBGMIOKCK", + Self::Hpclecmabig => "IBJJFIEKAEB_HPCLECMABIG", + Self::Ehpajiggclo => "IBJJFIEKAEB_EHPAJIGGCLO", + Self::Hcdfhlmdahd => "IBJJFIEKAEB_HCDFHLMDAHD", + Self::Ahledcepfgp => "IBJJFIEKAEB_AHLEDCEPFGP", + Self::Lihbajcmmmm => "IBJJFIEKAEB_LIHBAJCMMMM", + Self::Amlljnccmih => "IBJJFIEKAEB_AMLLJNCCMIH", + Self::Hjgknljlffh => "IBJJFIEKAEB_HJGKNLJLFFH", + Self::Dmklejfdiom => "IBJJFIEKAEB_DMKLEJFDIOM", + Self::Hnfcgimacff => "IBJJFIEKAEB_HNFCGIMACFF", + Self::Jldpkbdcjib => "IBJJFIEKAEB_JLDPKBDCJIB", + Self::Ihmknplnnfe => "IBJJFIEKAEB_IHMKNPLNNFE", + Self::Infioicaalo => "IBJJFIEKAEB_INFIOICAALO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MatchThreeStatistics_None" => Some(Self::MatchThreeStatisticsNone), - "MatchThreeStatistics_First" => Some(Self::MatchThreeStatisticsFirst), - "MatchThreeStatistics_Second" => Some(Self::MatchThreeStatisticsSecond), - "MatchThreeStatistics_Third" => Some(Self::MatchThreeStatisticsThird), - "MatchThreeStatistics_Fruit" => Some(Self::MatchThreeStatisticsFruit), - "MatchThreeStatistics_Skill" => Some(Self::MatchThreeStatisticsSkill), - "MatchThreeStatistics_Defeat" => Some(Self::MatchThreeStatisticsDefeat), - "MatchThreeStatistics_Bomb" => Some(Self::MatchThreeStatisticsBomb), - "MatchThreeStatistics_Damage" => Some(Self::MatchThreeStatisticsDamage), - "MatchThreeStatistics_Energy" => Some(Self::MatchThreeStatisticsEnergy), - "MatchThreeStatistics_SwapBomb" => Some(Self::MatchThreeStatisticsSwapBomb), - "MatchThreeStatistics_UseItem" => Some(Self::MatchThreeStatisticsUseItem), - "MatchThreeStatistics_SoloMaxStep" => { - Some(Self::MatchThreeStatisticsSoloMaxStep) - } - "MatchThreeStatistics_SoloScore" => Some(Self::MatchThreeStatisticsSoloScore), + "IBJJFIEKAEB_JJGMHOPOECF" => Some(Self::Jjgmhopoecf), + "IBJJFIEKAEB_HPFBGMIOKCK" => Some(Self::Hpfbgmiokck), + "IBJJFIEKAEB_HPCLECMABIG" => Some(Self::Hpclecmabig), + "IBJJFIEKAEB_EHPAJIGGCLO" => Some(Self::Ehpajiggclo), + "IBJJFIEKAEB_HCDFHLMDAHD" => Some(Self::Hcdfhlmdahd), + "IBJJFIEKAEB_AHLEDCEPFGP" => Some(Self::Ahledcepfgp), + "IBJJFIEKAEB_LIHBAJCMMMM" => Some(Self::Lihbajcmmmm), + "IBJJFIEKAEB_AMLLJNCCMIH" => Some(Self::Amlljnccmih), + "IBJJFIEKAEB_HJGKNLJLFFH" => Some(Self::Hjgknljlffh), + "IBJJFIEKAEB_DMKLEJFDIOM" => Some(Self::Dmklejfdiom), + "IBJJFIEKAEB_HNFCGIMACFF" => Some(Self::Hnfcgimacff), + "IBJJFIEKAEB_JLDPKBDCJIB" => Some(Self::Jldpkbdcjib), + "IBJJFIEKAEB_IHMKNPLNNFE" => Some(Self::Ihmknplnnfe), + "IBJJFIEKAEB_INFIOICAALO" => Some(Self::Infioicaalo), _ => None, } } @@ -75344,19 +74876,19 @@ impl Ajddhbhmoof { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMessageType { - None = 0, - CmdFinishItemIdScRsp = 2786, - CmdGetNpcMessageGroupScRsp = 2723, - CmdGetNpcMessageGroupCsReq = 2799, - CmdGetNpcStatusCsReq = 2798, - CmdFinishSectionIdCsReq = 2794, - CmdGetMissionMessageInfoCsReq = 2781, - CmdFinishItemIdCsReq = 2783, - CmdFinishSectionIdScRsp = 2752, - CmdGetNpcStatusScRsp = 2765, - CmdGetMissionMessageInfoScRsp = 2769, - CmdFinishPerformSectionIdCsReq = 2719, - CmdFinishPerformSectionIdScRsp = 2744, + PepgpcpefmgAlocmfakbkp = 0, + CmdGetNpcMessageGroupCsReq = 2747, + CmdGetMissionMessageInfoScRsp = 2745, + CmdGetMissionMessageInfoCsReq = 2761, + CmdFinishSectionIdScRsp = 2720, + CmdGetNpcMessageGroupScRsp = 2709, + CmdFinishPerformSectionIdScRsp = 2791, + CmdFinishItemIdScRsp = 2711, + CmdFinishPerformSectionIdCsReq = 2795, + CmdGetNpcStatusCsReq = 2738, + CmdGetNpcStatusScRsp = 2717, + CmdFinishItemIdCsReq = 2751, + CmdFinishSectionIdCsReq = 2789, } impl CmdMessageType { /// String value of the enum field names used in the ProtoBuf definition. @@ -75365,41 +74897,41 @@ impl CmdMessageType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMessageTypeNone", - Self::CmdFinishItemIdScRsp => "CmdFinishItemIdScRsp", - Self::CmdGetNpcMessageGroupScRsp => "CmdGetNpcMessageGroupScRsp", + Self::PepgpcpefmgAlocmfakbkp => "PEPGPCPEFMG_ALOCMFAKBKP", Self::CmdGetNpcMessageGroupCsReq => "CmdGetNpcMessageGroupCsReq", - Self::CmdGetNpcStatusCsReq => "CmdGetNpcStatusCsReq", - Self::CmdFinishSectionIdCsReq => "CmdFinishSectionIdCsReq", - Self::CmdGetMissionMessageInfoCsReq => "CmdGetMissionMessageInfoCsReq", - Self::CmdFinishItemIdCsReq => "CmdFinishItemIdCsReq", - Self::CmdFinishSectionIdScRsp => "CmdFinishSectionIdScRsp", - Self::CmdGetNpcStatusScRsp => "CmdGetNpcStatusScRsp", Self::CmdGetMissionMessageInfoScRsp => "CmdGetMissionMessageInfoScRsp", - Self::CmdFinishPerformSectionIdCsReq => "CmdFinishPerformSectionIdCsReq", + Self::CmdGetMissionMessageInfoCsReq => "CmdGetMissionMessageInfoCsReq", + Self::CmdFinishSectionIdScRsp => "CmdFinishSectionIdScRsp", + Self::CmdGetNpcMessageGroupScRsp => "CmdGetNpcMessageGroupScRsp", Self::CmdFinishPerformSectionIdScRsp => "CmdFinishPerformSectionIdScRsp", + Self::CmdFinishItemIdScRsp => "CmdFinishItemIdScRsp", + Self::CmdFinishPerformSectionIdCsReq => "CmdFinishPerformSectionIdCsReq", + Self::CmdGetNpcStatusCsReq => "CmdGetNpcStatusCsReq", + Self::CmdGetNpcStatusScRsp => "CmdGetNpcStatusScRsp", + Self::CmdFinishItemIdCsReq => "CmdFinishItemIdCsReq", + Self::CmdFinishSectionIdCsReq => "CmdFinishSectionIdCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMessageTypeNone" => Some(Self::None), - "CmdFinishItemIdScRsp" => Some(Self::CmdFinishItemIdScRsp), - "CmdGetNpcMessageGroupScRsp" => Some(Self::CmdGetNpcMessageGroupScRsp), + "PEPGPCPEFMG_ALOCMFAKBKP" => Some(Self::PepgpcpefmgAlocmfakbkp), "CmdGetNpcMessageGroupCsReq" => Some(Self::CmdGetNpcMessageGroupCsReq), - "CmdGetNpcStatusCsReq" => Some(Self::CmdGetNpcStatusCsReq), - "CmdFinishSectionIdCsReq" => Some(Self::CmdFinishSectionIdCsReq), - "CmdGetMissionMessageInfoCsReq" => Some(Self::CmdGetMissionMessageInfoCsReq), - "CmdFinishItemIdCsReq" => Some(Self::CmdFinishItemIdCsReq), - "CmdFinishSectionIdScRsp" => Some(Self::CmdFinishSectionIdScRsp), - "CmdGetNpcStatusScRsp" => Some(Self::CmdGetNpcStatusScRsp), "CmdGetMissionMessageInfoScRsp" => Some(Self::CmdGetMissionMessageInfoScRsp), - "CmdFinishPerformSectionIdCsReq" => { - Some(Self::CmdFinishPerformSectionIdCsReq) - } + "CmdGetMissionMessageInfoCsReq" => Some(Self::CmdGetMissionMessageInfoCsReq), + "CmdFinishSectionIdScRsp" => Some(Self::CmdFinishSectionIdScRsp), + "CmdGetNpcMessageGroupScRsp" => Some(Self::CmdGetNpcMessageGroupScRsp), "CmdFinishPerformSectionIdScRsp" => { Some(Self::CmdFinishPerformSectionIdScRsp) } + "CmdFinishItemIdScRsp" => Some(Self::CmdFinishItemIdScRsp), + "CmdFinishPerformSectionIdCsReq" => { + Some(Self::CmdFinishPerformSectionIdCsReq) + } + "CmdGetNpcStatusCsReq" => Some(Self::CmdGetNpcStatusCsReq), + "CmdGetNpcStatusScRsp" => Some(Self::CmdGetNpcStatusScRsp), + "CmdFinishItemIdCsReq" => Some(Self::CmdFinishItemIdCsReq), + "CmdFinishSectionIdCsReq" => Some(Self::CmdFinishSectionIdCsReq), _ => None, } } @@ -75408,45 +74940,45 @@ impl CmdMessageType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMiscModuleType { - None = 0, - CmdSecurityReportCsReq = 4181, - CmdTakePictureScRsp = 4186, - CmdMazeKillDirectScRsp = 4171, - CmdDifficultyAdjustmentUpdateDataCsReq = 4155, - CmdGetMovieRacingDataScRsp = 4151, - CmdGetSwitchMascotDataScRsp = 4121, - CmdShareScRsp = 4123, - CmdUpdateMovieRacingDataCsReq = 4129, - CmdSubmitOrigamiItemScRsp = 4137, - CmdGetMovieRacingDataCsReq = 4105, - CmdGetGunPlayDataCsReq = 4103, - CmdDifficultyAdjustmentGetDataScRsp = 4197, - CmdCancelDirectDeliveryNoticeScRsp = 4116, - CmdGetOrigamiPropInfoCsReq = 4168, - CmdMazeKillDirectCsReq = 4160, - CmdUpdateGunPlayDataScRsp = 4159, - CmdDirectDeliveryScNotify = 4135, - CmdSubmitOrigamiItemCsReq = 4192, - CmdUpdateGunPlayDataCsReq = 4162, - CmdDifficultyAdjustmentGetDataCsReq = 4122, - CmdShareCsReq = 4199, - CmdTakePictureCsReq = 4183, - CmdGetShareDataScRsp = 4165, - CmdCancelCacheNotifyCsReq = 4119, - CmdDifficultyAdjustmentUpdateDataScRsp = 4150, - CmdCancelCacheNotifyScRsp = 4144, - CmdGetGunPlayDataScRsp = 4109, - CmdGetUnreleasedBlockInfoScRsp = 4142, - CmdTriggerVoiceScRsp = 4115, - CmdTriggerVoiceCsReq = 4157, - CmdUpdateMovieRacingDataScRsp = 4138, - CmdCancelDirectDeliveryNoticeCsReq = 4174, - CmdGetSwitchMascotDataCsReq = 4156, - CmdGetOrigamiPropInfoScRsp = 4149, - CmdSecurityReportScRsp = 4169, - CmdGetShareDataCsReq = 4198, - CmdGetUnreleasedBlockInfoCsReq = 4153, - CmdSwitchMascotUpdateScNotify = 4110, + PcmlmeoaofiAlocmfakbkp = 0, + CmdBaiigcmkcbm = 4106, + CmdFnaodjkigji = 4170, + CmdFoogebileaf = 4150, + CmdLknokgfjimk = 4181, + CmdIihfknneofj = 4113, + CmdPbgpjpladmm = 4147, + CmdMlngpipghbf = 4138, + CmdBpkmgaemnoi = 4191, + CmdOcckfbcngdo = 4119, + CmdLknafhdgbkg = 4109, + CmdGahlhbpmnjf = 4151, + CmdObmlehnaobo = 4135, + CmdAcffhcjggng = 4162, + CmdFmijpnjlggc = 4103, + CmdLmdanceplne = 4126, + CmdEjpgiokiacg = 4152, + CmdCfnpomfjmik = 4155, + PcmlmeoaofiEcobncggdfj = 4161, + CmdCkiahipfhfa = 4192, + CmdCddkfbpglpj = 4114, + CmdFienhookflh = 4130, + CmdEljojmljnkg = 4111, + CmdGjhllanlngd = 4177, + CmdJeofibofibl = 4188, + CmdIdbkcjhhkeh = 4146, + CmdLkcoilpbfhg = 4195, + CmdIljllncmlol = 4169, + CmdAbpnglijjbp = 4101, + CmdBblcojglchc = 4149, + CmdGfhfbkkohdb = 4176, + CmdCelfbjplhld = 4145, + CmdGagckacbjif = 4117, + CmdChgipfnliaf = 4115, + CmdAdinknminad = 4173, + CmdEbigagodbpm = 4137, + CmdOcoeemojdhd = 4193, + CmdOegofaoblfg = 4198, + CmdCdlpedihphc = 4157, } impl CmdMiscModuleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -75455,117 +74987,89 @@ impl CmdMiscModuleType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMiscModuleTypeNone", - Self::CmdSecurityReportCsReq => "CmdSecurityReportCsReq", - Self::CmdTakePictureScRsp => "CmdTakePictureScRsp", - Self::CmdMazeKillDirectScRsp => "CmdMazeKillDirectScRsp", - Self::CmdDifficultyAdjustmentUpdateDataCsReq => { - "CmdDifficultyAdjustmentUpdateDataCsReq" - } - Self::CmdGetMovieRacingDataScRsp => "CmdGetMovieRacingDataScRsp", - Self::CmdGetSwitchMascotDataScRsp => "CmdGetSwitchMascotDataScRsp", - Self::CmdShareScRsp => "CmdShareScRsp", - Self::CmdUpdateMovieRacingDataCsReq => "CmdUpdateMovieRacingDataCsReq", - Self::CmdSubmitOrigamiItemScRsp => "CmdSubmitOrigamiItemScRsp", - Self::CmdGetMovieRacingDataCsReq => "CmdGetMovieRacingDataCsReq", - Self::CmdGetGunPlayDataCsReq => "CmdGetGunPlayDataCsReq", - Self::CmdDifficultyAdjustmentGetDataScRsp => { - "CmdDifficultyAdjustmentGetDataScRsp" - } - Self::CmdCancelDirectDeliveryNoticeScRsp => { - "CmdCancelDirectDeliveryNoticeScRsp" - } - Self::CmdGetOrigamiPropInfoCsReq => "CmdGetOrigamiPropInfoCsReq", - Self::CmdMazeKillDirectCsReq => "CmdMazeKillDirectCsReq", - Self::CmdUpdateGunPlayDataScRsp => "CmdUpdateGunPlayDataScRsp", - Self::CmdDirectDeliveryScNotify => "CmdDirectDeliveryScNotify", - Self::CmdSubmitOrigamiItemCsReq => "CmdSubmitOrigamiItemCsReq", - Self::CmdUpdateGunPlayDataCsReq => "CmdUpdateGunPlayDataCsReq", - Self::CmdDifficultyAdjustmentGetDataCsReq => { - "CmdDifficultyAdjustmentGetDataCsReq" - } - Self::CmdShareCsReq => "CmdShareCsReq", - Self::CmdTakePictureCsReq => "CmdTakePictureCsReq", - Self::CmdGetShareDataScRsp => "CmdGetShareDataScRsp", - Self::CmdCancelCacheNotifyCsReq => "CmdCancelCacheNotifyCsReq", - Self::CmdDifficultyAdjustmentUpdateDataScRsp => { - "CmdDifficultyAdjustmentUpdateDataScRsp" - } - Self::CmdCancelCacheNotifyScRsp => "CmdCancelCacheNotifyScRsp", - Self::CmdGetGunPlayDataScRsp => "CmdGetGunPlayDataScRsp", - Self::CmdGetUnreleasedBlockInfoScRsp => "CmdGetUnreleasedBlockInfoScRsp", - Self::CmdTriggerVoiceScRsp => "CmdTriggerVoiceScRsp", - Self::CmdTriggerVoiceCsReq => "CmdTriggerVoiceCsReq", - Self::CmdUpdateMovieRacingDataScRsp => "CmdUpdateMovieRacingDataScRsp", - Self::CmdCancelDirectDeliveryNoticeCsReq => { - "CmdCancelDirectDeliveryNoticeCsReq" - } - Self::CmdGetSwitchMascotDataCsReq => "CmdGetSwitchMascotDataCsReq", - Self::CmdGetOrigamiPropInfoScRsp => "CmdGetOrigamiPropInfoScRsp", - Self::CmdSecurityReportScRsp => "CmdSecurityReportScRsp", - Self::CmdGetShareDataCsReq => "CmdGetShareDataCsReq", - Self::CmdGetUnreleasedBlockInfoCsReq => "CmdGetUnreleasedBlockInfoCsReq", - Self::CmdSwitchMascotUpdateScNotify => "CmdSwitchMascotUpdateScNotify", + Self::PcmlmeoaofiAlocmfakbkp => "PCMLMEOAOFI_ALOCMFAKBKP", + Self::CmdBaiigcmkcbm => "CmdBAIIGCMKCBM", + Self::CmdFnaodjkigji => "CmdFNAODJKIGJI", + Self::CmdFoogebileaf => "CmdFOOGEBILEAF", + Self::CmdLknokgfjimk => "CmdLKNOKGFJIMK", + Self::CmdIihfknneofj => "CmdIIHFKNNEOFJ", + Self::CmdPbgpjpladmm => "CmdPBGPJPLADMM", + Self::CmdMlngpipghbf => "CmdMLNGPIPGHBF", + Self::CmdBpkmgaemnoi => "CmdBPKMGAEMNOI", + Self::CmdOcckfbcngdo => "CmdOCCKFBCNGDO", + Self::CmdLknafhdgbkg => "CmdLKNAFHDGBKG", + Self::CmdGahlhbpmnjf => "CmdGAHLHBPMNJF", + Self::CmdObmlehnaobo => "CmdOBMLEHNAOBO", + Self::CmdAcffhcjggng => "CmdACFFHCJGGNG", + Self::CmdFmijpnjlggc => "CmdFMIJPNJLGGC", + Self::CmdLmdanceplne => "CmdLMDANCEPLNE", + Self::CmdEjpgiokiacg => "CmdEJPGIOKIACG", + Self::CmdCfnpomfjmik => "CmdCFNPOMFJMIK", + Self::PcmlmeoaofiEcobncggdfj => "PCMLMEOAOFI_ECOBNCGGDFJ", + Self::CmdCkiahipfhfa => "CmdCKIAHIPFHFA", + Self::CmdCddkfbpglpj => "CmdCDDKFBPGLPJ", + Self::CmdFienhookflh => "CmdFIENHOOKFLH", + Self::CmdEljojmljnkg => "CmdELJOJMLJNKG", + Self::CmdGjhllanlngd => "CmdGJHLLANLNGD", + Self::CmdJeofibofibl => "CmdJEOFIBOFIBL", + Self::CmdIdbkcjhhkeh => "CmdIDBKCJHHKEH", + Self::CmdLkcoilpbfhg => "CmdLKCOILPBFHG", + Self::CmdIljllncmlol => "CmdILJLLNCMLOL", + Self::CmdAbpnglijjbp => "CmdABPNGLIJJBP", + Self::CmdBblcojglchc => "CmdBBLCOJGLCHC", + Self::CmdGfhfbkkohdb => "CmdGFHFBKKOHDB", + Self::CmdCelfbjplhld => "CmdCELFBJPLHLD", + Self::CmdGagckacbjif => "CmdGAGCKACBJIF", + Self::CmdChgipfnliaf => "CmdCHGIPFNLIAF", + Self::CmdAdinknminad => "CmdADINKNMINAD", + Self::CmdEbigagodbpm => "CmdEBIGAGODBPM", + Self::CmdOcoeemojdhd => "CmdOCOEEMOJDHD", + Self::CmdOegofaoblfg => "CmdOEGOFAOBLFG", + Self::CmdCdlpedihphc => "CmdCDLPEDIHPHC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMiscModuleTypeNone" => Some(Self::None), - "CmdSecurityReportCsReq" => Some(Self::CmdSecurityReportCsReq), - "CmdTakePictureScRsp" => Some(Self::CmdTakePictureScRsp), - "CmdMazeKillDirectScRsp" => Some(Self::CmdMazeKillDirectScRsp), - "CmdDifficultyAdjustmentUpdateDataCsReq" => { - Some(Self::CmdDifficultyAdjustmentUpdateDataCsReq) - } - "CmdGetMovieRacingDataScRsp" => Some(Self::CmdGetMovieRacingDataScRsp), - "CmdGetSwitchMascotDataScRsp" => Some(Self::CmdGetSwitchMascotDataScRsp), - "CmdShareScRsp" => Some(Self::CmdShareScRsp), - "CmdUpdateMovieRacingDataCsReq" => Some(Self::CmdUpdateMovieRacingDataCsReq), - "CmdSubmitOrigamiItemScRsp" => Some(Self::CmdSubmitOrigamiItemScRsp), - "CmdGetMovieRacingDataCsReq" => Some(Self::CmdGetMovieRacingDataCsReq), - "CmdGetGunPlayDataCsReq" => Some(Self::CmdGetGunPlayDataCsReq), - "CmdDifficultyAdjustmentGetDataScRsp" => { - Some(Self::CmdDifficultyAdjustmentGetDataScRsp) - } - "CmdCancelDirectDeliveryNoticeScRsp" => { - Some(Self::CmdCancelDirectDeliveryNoticeScRsp) - } - "CmdGetOrigamiPropInfoCsReq" => Some(Self::CmdGetOrigamiPropInfoCsReq), - "CmdMazeKillDirectCsReq" => Some(Self::CmdMazeKillDirectCsReq), - "CmdUpdateGunPlayDataScRsp" => Some(Self::CmdUpdateGunPlayDataScRsp), - "CmdDirectDeliveryScNotify" => Some(Self::CmdDirectDeliveryScNotify), - "CmdSubmitOrigamiItemCsReq" => Some(Self::CmdSubmitOrigamiItemCsReq), - "CmdUpdateGunPlayDataCsReq" => Some(Self::CmdUpdateGunPlayDataCsReq), - "CmdDifficultyAdjustmentGetDataCsReq" => { - Some(Self::CmdDifficultyAdjustmentGetDataCsReq) - } - "CmdShareCsReq" => Some(Self::CmdShareCsReq), - "CmdTakePictureCsReq" => Some(Self::CmdTakePictureCsReq), - "CmdGetShareDataScRsp" => Some(Self::CmdGetShareDataScRsp), - "CmdCancelCacheNotifyCsReq" => Some(Self::CmdCancelCacheNotifyCsReq), - "CmdDifficultyAdjustmentUpdateDataScRsp" => { - Some(Self::CmdDifficultyAdjustmentUpdateDataScRsp) - } - "CmdCancelCacheNotifyScRsp" => Some(Self::CmdCancelCacheNotifyScRsp), - "CmdGetGunPlayDataScRsp" => Some(Self::CmdGetGunPlayDataScRsp), - "CmdGetUnreleasedBlockInfoScRsp" => { - Some(Self::CmdGetUnreleasedBlockInfoScRsp) - } - "CmdTriggerVoiceScRsp" => Some(Self::CmdTriggerVoiceScRsp), - "CmdTriggerVoiceCsReq" => Some(Self::CmdTriggerVoiceCsReq), - "CmdUpdateMovieRacingDataScRsp" => Some(Self::CmdUpdateMovieRacingDataScRsp), - "CmdCancelDirectDeliveryNoticeCsReq" => { - Some(Self::CmdCancelDirectDeliveryNoticeCsReq) - } - "CmdGetSwitchMascotDataCsReq" => Some(Self::CmdGetSwitchMascotDataCsReq), - "CmdGetOrigamiPropInfoScRsp" => Some(Self::CmdGetOrigamiPropInfoScRsp), - "CmdSecurityReportScRsp" => Some(Self::CmdSecurityReportScRsp), - "CmdGetShareDataCsReq" => Some(Self::CmdGetShareDataCsReq), - "CmdGetUnreleasedBlockInfoCsReq" => { - Some(Self::CmdGetUnreleasedBlockInfoCsReq) - } - "CmdSwitchMascotUpdateScNotify" => Some(Self::CmdSwitchMascotUpdateScNotify), + "PCMLMEOAOFI_ALOCMFAKBKP" => Some(Self::PcmlmeoaofiAlocmfakbkp), + "CmdBAIIGCMKCBM" => Some(Self::CmdBaiigcmkcbm), + "CmdFNAODJKIGJI" => Some(Self::CmdFnaodjkigji), + "CmdFOOGEBILEAF" => Some(Self::CmdFoogebileaf), + "CmdLKNOKGFJIMK" => Some(Self::CmdLknokgfjimk), + "CmdIIHFKNNEOFJ" => Some(Self::CmdIihfknneofj), + "CmdPBGPJPLADMM" => Some(Self::CmdPbgpjpladmm), + "CmdMLNGPIPGHBF" => Some(Self::CmdMlngpipghbf), + "CmdBPKMGAEMNOI" => Some(Self::CmdBpkmgaemnoi), + "CmdOCCKFBCNGDO" => Some(Self::CmdOcckfbcngdo), + "CmdLKNAFHDGBKG" => Some(Self::CmdLknafhdgbkg), + "CmdGAHLHBPMNJF" => Some(Self::CmdGahlhbpmnjf), + "CmdOBMLEHNAOBO" => Some(Self::CmdObmlehnaobo), + "CmdACFFHCJGGNG" => Some(Self::CmdAcffhcjggng), + "CmdFMIJPNJLGGC" => Some(Self::CmdFmijpnjlggc), + "CmdLMDANCEPLNE" => Some(Self::CmdLmdanceplne), + "CmdEJPGIOKIACG" => Some(Self::CmdEjpgiokiacg), + "CmdCFNPOMFJMIK" => Some(Self::CmdCfnpomfjmik), + "PCMLMEOAOFI_ECOBNCGGDFJ" => Some(Self::PcmlmeoaofiEcobncggdfj), + "CmdCKIAHIPFHFA" => Some(Self::CmdCkiahipfhfa), + "CmdCDDKFBPGLPJ" => Some(Self::CmdCddkfbpglpj), + "CmdFIENHOOKFLH" => Some(Self::CmdFienhookflh), + "CmdELJOJMLJNKG" => Some(Self::CmdEljojmljnkg), + "CmdGJHLLANLNGD" => Some(Self::CmdGjhllanlngd), + "CmdJEOFIBOFIBL" => Some(Self::CmdJeofibofibl), + "CmdIDBKCJHHKEH" => Some(Self::CmdIdbkcjhhkeh), + "CmdLKCOILPBFHG" => Some(Self::CmdLkcoilpbfhg), + "CmdILJLLNCMLOL" => Some(Self::CmdIljllncmlol), + "CmdABPNGLIJJBP" => Some(Self::CmdAbpnglijjbp), + "CmdBBLCOJGLCHC" => Some(Self::CmdBblcojglchc), + "CmdGFHFBKKOHDB" => Some(Self::CmdGfhfbkkohdb), + "CmdCELFBJPLHLD" => Some(Self::CmdCelfbjplhld), + "CmdGAGCKACBJIF" => Some(Self::CmdGagckacbjif), + "CmdCHGIPFNLIAF" => Some(Self::CmdChgipfnliaf), + "CmdADINKNMINAD" => Some(Self::CmdAdinknminad), + "CmdEBIGAGODBPM" => Some(Self::CmdEbigagodbpm), + "CmdOCOEEMOJDHD" => Some(Self::CmdOcoeemojdhd), + "CmdOEGOFAOBLFG" => Some(Self::CmdOegofaoblfg), + "CmdCDLPEDIHPHC" => Some(Self::CmdCdlpedihphc), _ => None, } } @@ -75573,36 +75077,32 @@ impl CmdMiscModuleType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mgaefjjdmom { - CacheNotifyTypeNone = 0, - CacheNotifyTypeRecycle = 1, - CacheNotifyTypeRecharge = 2, - CacheNotifyTypeItemAutoTransfer = 3, +pub enum Mfldhildjdo { + Alocmfakbkp = 0, + Fpfnfoeiamb = 1, + Feaahgihgnm = 2, + Ogmebhgiokf = 3, } -impl Mgaefjjdmom { +impl Mfldhildjdo { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::CacheNotifyTypeNone => "CACHE_NOTIFY_TYPE_NONE", - Self::CacheNotifyTypeRecycle => "CACHE_NOTIFY_TYPE_RECYCLE", - Self::CacheNotifyTypeRecharge => "CACHE_NOTIFY_TYPE_RECHARGE", - Self::CacheNotifyTypeItemAutoTransfer => { - "CACHE_NOTIFY_TYPE_ITEM_AUTO_TRANSFER" - } + Self::Alocmfakbkp => "MFLDHILDJDO_ALOCMFAKBKP", + Self::Fpfnfoeiamb => "MFLDHILDJDO_FPFNFOEIAMB", + Self::Feaahgihgnm => "MFLDHILDJDO_FEAAHGIHGNM", + Self::Ogmebhgiokf => "MFLDHILDJDO_OGMEBHGIOKF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CACHE_NOTIFY_TYPE_NONE" => Some(Self::CacheNotifyTypeNone), - "CACHE_NOTIFY_TYPE_RECYCLE" => Some(Self::CacheNotifyTypeRecycle), - "CACHE_NOTIFY_TYPE_RECHARGE" => Some(Self::CacheNotifyTypeRecharge), - "CACHE_NOTIFY_TYPE_ITEM_AUTO_TRANSFER" => { - Some(Self::CacheNotifyTypeItemAutoTransfer) - } + "MFLDHILDJDO_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "MFLDHILDJDO_FPFNFOEIAMB" => Some(Self::Fpfnfoeiamb), + "MFLDHILDJDO_FEAAHGIHGNM" => Some(Self::Feaahgihgnm), + "MFLDHILDJDO_OGMEBHGIOKF" => Some(Self::Ogmebhgiokf), _ => None, } } @@ -75610,32 +75110,32 @@ impl Mgaefjjdmom { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dcadlnjbkbk { - MovieRacingOverTake = 0, - MovieRacingOverTakeEndless = 1, - MovieRacingShooting = 2, - MovieRacingShootingEndless = 3, +pub enum Flnjaebepgb { + Mbchkcmdgjg = 0, + Pojagdcalnk = 1, + Jkjbbfjinil = 2, + Pgghhclifeb = 3, } -impl Dcadlnjbkbk { +impl Flnjaebepgb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MovieRacingOverTake => "MOVIE_RACING_OVER_TAKE", - Self::MovieRacingOverTakeEndless => "MOVIE_RACING_OVER_TAKE_ENDLESS", - Self::MovieRacingShooting => "MOVIE_RACING_SHOOTING", - Self::MovieRacingShootingEndless => "MOVIE_RACING_SHOOTING_ENDLESS", + Self::Mbchkcmdgjg => "FLNJAEBEPGB_MBCHKCMDGJG", + Self::Pojagdcalnk => "FLNJAEBEPGB_POJAGDCALNK", + Self::Jkjbbfjinil => "FLNJAEBEPGB_JKJBBFJINIL", + Self::Pgghhclifeb => "FLNJAEBEPGB_PGGHHCLIFEB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MOVIE_RACING_OVER_TAKE" => Some(Self::MovieRacingOverTake), - "MOVIE_RACING_OVER_TAKE_ENDLESS" => Some(Self::MovieRacingOverTakeEndless), - "MOVIE_RACING_SHOOTING" => Some(Self::MovieRacingShooting), - "MOVIE_RACING_SHOOTING_ENDLESS" => Some(Self::MovieRacingShootingEndless), + "FLNJAEBEPGB_MBCHKCMDGJG" => Some(Self::Mbchkcmdgjg), + "FLNJAEBEPGB_POJAGDCALNK" => Some(Self::Pojagdcalnk), + "FLNJAEBEPGB_JKJBBFJINIL" => Some(Self::Jkjbbfjinil), + "FLNJAEBEPGB_PGGHHCLIFEB" => Some(Self::Pgghhclifeb), _ => None, } } @@ -75643,28 +75143,26 @@ impl Dcadlnjbkbk { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Fjhikfikamo { - DifficultyAjustmentTypeDefault = 0, - DifficultyAjustmentTypeEasy = 1, +pub enum Jloblpfkkip { + Melnglodenb = 0, + Kkhainecmlh = 1, } -impl Fjhikfikamo { +impl Jloblpfkkip { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::DifficultyAjustmentTypeDefault => "DIFFICULTY_AJUSTMENT_TYPE_DEFAULT", - Self::DifficultyAjustmentTypeEasy => "DIFFICULTY_AJUSTMENT_TYPE_EASY", + Self::Melnglodenb => "JLOBLPFKKIP_MELNGLODENB", + Self::Kkhainecmlh => "JLOBLPFKKIP_KKHAINECMLH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "DIFFICULTY_AJUSTMENT_TYPE_DEFAULT" => { - Some(Self::DifficultyAjustmentTypeDefault) - } - "DIFFICULTY_AJUSTMENT_TYPE_EASY" => Some(Self::DifficultyAjustmentTypeEasy), + "JLOBLPFKKIP_MELNGLODENB" => Some(Self::Melnglodenb), + "JLOBLPFKKIP_KKHAINECMLH" => Some(Self::Kkhainecmlh), _ => None, } } @@ -75672,35 +75170,29 @@ impl Fjhikfikamo { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Giilenmkcah { - DifficultyAjustmentSourceNone = 0, - DifficultyAjustmentSourceRaid = 1, - DifficultyAjustmentSourceEvent = 2, +pub enum Jaedbnpjmlh { + Fojkmkgilpd = 0, + Bebebpgkcdl = 1, + Chehepaoilg = 2, } -impl Giilenmkcah { +impl Jaedbnpjmlh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::DifficultyAjustmentSourceNone => "DIFFICULTY_AJUSTMENT_SOURCE_NONE", - Self::DifficultyAjustmentSourceRaid => "DIFFICULTY_AJUSTMENT_SOURCE_RAID", - Self::DifficultyAjustmentSourceEvent => "DIFFICULTY_AJUSTMENT_SOURCE_EVENT", + Self::Fojkmkgilpd => "JAEDBNPJMLH_FOJKMKGILPD", + Self::Bebebpgkcdl => "JAEDBNPJMLH_BEBEBPGKCDL", + Self::Chehepaoilg => "JAEDBNPJMLH_CHEHEPAOILG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "DIFFICULTY_AJUSTMENT_SOURCE_NONE" => { - Some(Self::DifficultyAjustmentSourceNone) - } - "DIFFICULTY_AJUSTMENT_SOURCE_RAID" => { - Some(Self::DifficultyAjustmentSourceRaid) - } - "DIFFICULTY_AJUSTMENT_SOURCE_EVENT" => { - Some(Self::DifficultyAjustmentSourceEvent) - } + "JAEDBNPJMLH_FOJKMKGILPD" => Some(Self::Fojkmkgilpd), + "JAEDBNPJMLH_BEBEBPGKCDL" => Some(Self::Bebebpgkcdl), + "JAEDBNPJMLH_CHEHEPAOILG" => Some(Self::Chehepaoilg), _ => None, } } @@ -75708,32 +75200,32 @@ impl Giilenmkcah { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mnijhmepgnn { - MazeKillSourceNone = 0, - MazeKillSourceSwitchHand = 1, - MazeKillSourceTimeLine = 2, - MazeKillSourceSwitchMascot = 3, +pub enum Japnonnghia { + Ecjnfnmcfom = 0, + Gheljbihjoj = 1, + Nhjfkdafdja = 2, + Mcgjbbfgbhg = 3, } -impl Mnijhmepgnn { +impl Japnonnghia { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MazeKillSourceNone => "MAZE_KILL_SOURCE_NONE", - Self::MazeKillSourceSwitchHand => "MAZE_KILL_SOURCE_SWITCH_HAND", - Self::MazeKillSourceTimeLine => "MAZE_KILL_SOURCE_TIME_LINE", - Self::MazeKillSourceSwitchMascot => "MAZE_KILL_SOURCE_SWITCH_MASCOT", + Self::Ecjnfnmcfom => "JAPNONNGHIA_ECJNFNMCFOM", + Self::Gheljbihjoj => "JAPNONNGHIA_GHELJBIHJOJ", + Self::Nhjfkdafdja => "JAPNONNGHIA_NHJFKDAFDJA", + Self::Mcgjbbfgbhg => "JAPNONNGHIA_MCGJBBFGBHG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MAZE_KILL_SOURCE_NONE" => Some(Self::MazeKillSourceNone), - "MAZE_KILL_SOURCE_SWITCH_HAND" => Some(Self::MazeKillSourceSwitchHand), - "MAZE_KILL_SOURCE_TIME_LINE" => Some(Self::MazeKillSourceTimeLine), - "MAZE_KILL_SOURCE_SWITCH_MASCOT" => Some(Self::MazeKillSourceSwitchMascot), + "JAPNONNGHIA_ECJNFNMCFOM" => Some(Self::Ecjnfnmcfom), + "JAPNONNGHIA_GHELJBIHJOJ" => Some(Self::Gheljbihjoj), + "JAPNONNGHIA_NHJFKDAFDJA" => Some(Self::Nhjfkdafdja), + "JAPNONNGHIA_MCGJBBFGBHG" => Some(Self::Mcgjbbfgbhg), _ => None, } } @@ -75742,34 +75234,36 @@ impl Mnijhmepgnn { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMissionType { - None = 0, - CmdGetMainMissionCustomValueCsReq = 1260, - CmdGetMissionStatusScRsp = 1205, - CmdStartFinishMainMissionScNotify = 1297, - CmdTeleportToMissionResetPointScRsp = 1259, - CmdSyncTaskCsReq = 1286, - CmdSyncTaskScRsp = 1294, - CmdAcceptMainMissionScRsp = 1250, - CmdStartFinishSubMissionScNotify = 1222, - CmdTeleportToMissionResetPointCsReq = 1262, - CmdFinishedMissionScNotify = 1221, - CmdFinishTalkMissionCsReq = 1298, - CmdGetMissionDataCsReq = 1299, - CmdMissionGroupWarnScNotify = 1269, - CmdUpdateMainMissionCustomValueCsReq = 1210, - CmdUpdateTrackMainMissionIdCsReq = 1216, - CmdMissionAcceptScNotify = 1235, - CmdUpdateTrackMainMissionIdScRsp = 1256, - CmdFinishTalkMissionScRsp = 1265, - CmdFinishCosumeItemMissionScRsp = 1215, - CmdFinishCosumeItemMissionCsReq = 1257, - CmdSubMissionRewardScNotify = 1209, - CmdAcceptMainMissionCsReq = 1255, - CmdGetMissionDataScRsp = 1223, - CmdUpdateMainMissionCustomValueScRsp = 1253, - CmdGetMainMissionCustomValueScRsp = 1271, - CmdGetMissionStatusCsReq = 1277, - CmdMissionRewardScNotify = 1283, + LmampgfecekAlocmfakbkp = 0, + LmampgfecekKldgjjmlhef = 1289, + LmampgfecekGfcmbhokfih = 1269, + LmampgfecekDjicmolplci = 1230, + LmampgfecekEikdcjfdenc = 1245, + LmampgfecekGhplhobimck = 1270, + LmampgfecekAchpehhjeli = 1252, + CmdGetMissionStatusCsReq = 1267, + CmdGetMissionDataScRsp = 1209, + LmampgfecekPdfdigeekah = 1214, + LmampgfecekBfgdmbiogdk = 1262, + LmampgfecekFkialkdajfg = 1288, + CmdGetMissionDataCsReq = 1247, + LmampgfecekAmoacpfmjgm = 1257, + CmdFinishTalkMissionScRsp = 1217, + LmampgfecekPagceccijdb = 1273, + LmampgfecekCjjiadifdgi = 1201, + LmampgfecekKjemjalolnp = 1215, + LmampgfecekCfelnokaiaa = 1251, + CmdFinishTalkMissionCsReq = 1238, + LmampgfecekIilfjpflafi = 1249, + LmampgfecekPmdplofgdbl = 1203, + LmampgfecekFacpcghcdnl = 1276, + LmampgfecekKaiebecaibi = 1206, + LmampgfecekAcnafhohhie = 1277, + LmampgfecekJaknbajinaa = 1233, + LmampgfecekElncdajpoch = 1211, + LmampgfecekGiemlabgokk = 1255, + LmampgfecekOcidlbloddm = 1226, + LmampgfecekOdefndgjnkm = 1213, } impl CmdMissionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -75778,105 +75272,71 @@ impl CmdMissionType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMissionTypeNone", - Self::CmdGetMainMissionCustomValueCsReq => { - "CmdGetMainMissionCustomValueCsReq" - } - Self::CmdGetMissionStatusScRsp => "CmdGetMissionStatusScRsp", - Self::CmdStartFinishMainMissionScNotify => { - "CmdStartFinishMainMissionScNotify" - } - Self::CmdTeleportToMissionResetPointScRsp => { - "CmdTeleportToMissionResetPointScRsp" - } - Self::CmdSyncTaskCsReq => "CmdSyncTaskCsReq", - Self::CmdSyncTaskScRsp => "CmdSyncTaskScRsp", - Self::CmdAcceptMainMissionScRsp => "CmdAcceptMainMissionScRsp", - Self::CmdStartFinishSubMissionScNotify => "CmdStartFinishSubMissionScNotify", - Self::CmdTeleportToMissionResetPointCsReq => { - "CmdTeleportToMissionResetPointCsReq" - } - Self::CmdFinishedMissionScNotify => "CmdFinishedMissionScNotify", - Self::CmdFinishTalkMissionCsReq => "CmdFinishTalkMissionCsReq", - Self::CmdGetMissionDataCsReq => "CmdGetMissionDataCsReq", - Self::CmdMissionGroupWarnScNotify => "CmdMissionGroupWarnScNotify", - Self::CmdUpdateMainMissionCustomValueCsReq => { - "CmdUpdateMainMissionCustomValueCsReq" - } - Self::CmdUpdateTrackMainMissionIdCsReq => "CmdUpdateTrackMainMissionIdCsReq", - Self::CmdMissionAcceptScNotify => "CmdMissionAcceptScNotify", - Self::CmdUpdateTrackMainMissionIdScRsp => "CmdUpdateTrackMainMissionIdScRsp", - Self::CmdFinishTalkMissionScRsp => "CmdFinishTalkMissionScRsp", - Self::CmdFinishCosumeItemMissionScRsp => "CmdFinishCosumeItemMissionScRsp", - Self::CmdFinishCosumeItemMissionCsReq => "CmdFinishCosumeItemMissionCsReq", - Self::CmdSubMissionRewardScNotify => "CmdSubMissionRewardScNotify", - Self::CmdAcceptMainMissionCsReq => "CmdAcceptMainMissionCsReq", - Self::CmdGetMissionDataScRsp => "CmdGetMissionDataScRsp", - Self::CmdUpdateMainMissionCustomValueScRsp => { - "CmdUpdateMainMissionCustomValueScRsp" - } - Self::CmdGetMainMissionCustomValueScRsp => { - "CmdGetMainMissionCustomValueScRsp" - } + Self::LmampgfecekAlocmfakbkp => "LMAMPGFECEK_ALOCMFAKBKP", + Self::LmampgfecekKldgjjmlhef => "LMAMPGFECEK_KLDGJJMLHEF", + Self::LmampgfecekGfcmbhokfih => "LMAMPGFECEK_GFCMBHOKFIH", + Self::LmampgfecekDjicmolplci => "LMAMPGFECEK_DJICMOLPLCI", + Self::LmampgfecekEikdcjfdenc => "LMAMPGFECEK_EIKDCJFDENC", + Self::LmampgfecekGhplhobimck => "LMAMPGFECEK_GHPLHOBIMCK", + Self::LmampgfecekAchpehhjeli => "LMAMPGFECEK_ACHPEHHJELI", Self::CmdGetMissionStatusCsReq => "CmdGetMissionStatusCsReq", - Self::CmdMissionRewardScNotify => "CmdMissionRewardScNotify", + Self::CmdGetMissionDataScRsp => "CmdGetMissionDataScRsp", + Self::LmampgfecekPdfdigeekah => "LMAMPGFECEK_PDFDIGEEKAH", + Self::LmampgfecekBfgdmbiogdk => "LMAMPGFECEK_BFGDMBIOGDK", + Self::LmampgfecekFkialkdajfg => "LMAMPGFECEK_FKIALKDAJFG", + Self::CmdGetMissionDataCsReq => "CmdGetMissionDataCsReq", + Self::LmampgfecekAmoacpfmjgm => "LMAMPGFECEK_AMOACPFMJGM", + Self::CmdFinishTalkMissionScRsp => "CmdFinishTalkMissionScRsp", + Self::LmampgfecekPagceccijdb => "LMAMPGFECEK_PAGCECCIJDB", + Self::LmampgfecekCjjiadifdgi => "LMAMPGFECEK_CJJIADIFDGI", + Self::LmampgfecekKjemjalolnp => "LMAMPGFECEK_KJEMJALOLNP", + Self::LmampgfecekCfelnokaiaa => "LMAMPGFECEK_CFELNOKAIAA", + Self::CmdFinishTalkMissionCsReq => "CmdFinishTalkMissionCsReq", + Self::LmampgfecekIilfjpflafi => "LMAMPGFECEK_IILFJPFLAFI", + Self::LmampgfecekPmdplofgdbl => "LMAMPGFECEK_PMDPLOFGDBL", + Self::LmampgfecekFacpcghcdnl => "LMAMPGFECEK_FACPCGHCDNL", + Self::LmampgfecekKaiebecaibi => "LMAMPGFECEK_KAIEBECAIBI", + Self::LmampgfecekAcnafhohhie => "LMAMPGFECEK_ACNAFHOHHIE", + Self::LmampgfecekJaknbajinaa => "LMAMPGFECEK_JAKNBAJINAA", + Self::LmampgfecekElncdajpoch => "LMAMPGFECEK_ELNCDAJPOCH", + Self::LmampgfecekGiemlabgokk => "LMAMPGFECEK_GIEMLABGOKK", + Self::LmampgfecekOcidlbloddm => "LMAMPGFECEK_OCIDLBLODDM", + Self::LmampgfecekOdefndgjnkm => "LMAMPGFECEK_ODEFNDGJNKM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMissionTypeNone" => Some(Self::None), - "CmdGetMainMissionCustomValueCsReq" => { - Some(Self::CmdGetMainMissionCustomValueCsReq) - } - "CmdGetMissionStatusScRsp" => Some(Self::CmdGetMissionStatusScRsp), - "CmdStartFinishMainMissionScNotify" => { - Some(Self::CmdStartFinishMainMissionScNotify) - } - "CmdTeleportToMissionResetPointScRsp" => { - Some(Self::CmdTeleportToMissionResetPointScRsp) - } - "CmdSyncTaskCsReq" => Some(Self::CmdSyncTaskCsReq), - "CmdSyncTaskScRsp" => Some(Self::CmdSyncTaskScRsp), - "CmdAcceptMainMissionScRsp" => Some(Self::CmdAcceptMainMissionScRsp), - "CmdStartFinishSubMissionScNotify" => { - Some(Self::CmdStartFinishSubMissionScNotify) - } - "CmdTeleportToMissionResetPointCsReq" => { - Some(Self::CmdTeleportToMissionResetPointCsReq) - } - "CmdFinishedMissionScNotify" => Some(Self::CmdFinishedMissionScNotify), - "CmdFinishTalkMissionCsReq" => Some(Self::CmdFinishTalkMissionCsReq), - "CmdGetMissionDataCsReq" => Some(Self::CmdGetMissionDataCsReq), - "CmdMissionGroupWarnScNotify" => Some(Self::CmdMissionGroupWarnScNotify), - "CmdUpdateMainMissionCustomValueCsReq" => { - Some(Self::CmdUpdateMainMissionCustomValueCsReq) - } - "CmdUpdateTrackMainMissionIdCsReq" => { - Some(Self::CmdUpdateTrackMainMissionIdCsReq) - } - "CmdMissionAcceptScNotify" => Some(Self::CmdMissionAcceptScNotify), - "CmdUpdateTrackMainMissionIdScRsp" => { - Some(Self::CmdUpdateTrackMainMissionIdScRsp) - } - "CmdFinishTalkMissionScRsp" => Some(Self::CmdFinishTalkMissionScRsp), - "CmdFinishCosumeItemMissionScRsp" => { - Some(Self::CmdFinishCosumeItemMissionScRsp) - } - "CmdFinishCosumeItemMissionCsReq" => { - Some(Self::CmdFinishCosumeItemMissionCsReq) - } - "CmdSubMissionRewardScNotify" => Some(Self::CmdSubMissionRewardScNotify), - "CmdAcceptMainMissionCsReq" => Some(Self::CmdAcceptMainMissionCsReq), - "CmdGetMissionDataScRsp" => Some(Self::CmdGetMissionDataScRsp), - "CmdUpdateMainMissionCustomValueScRsp" => { - Some(Self::CmdUpdateMainMissionCustomValueScRsp) - } - "CmdGetMainMissionCustomValueScRsp" => { - Some(Self::CmdGetMainMissionCustomValueScRsp) - } + "LMAMPGFECEK_ALOCMFAKBKP" => Some(Self::LmampgfecekAlocmfakbkp), + "LMAMPGFECEK_KLDGJJMLHEF" => Some(Self::LmampgfecekKldgjjmlhef), + "LMAMPGFECEK_GFCMBHOKFIH" => Some(Self::LmampgfecekGfcmbhokfih), + "LMAMPGFECEK_DJICMOLPLCI" => Some(Self::LmampgfecekDjicmolplci), + "LMAMPGFECEK_EIKDCJFDENC" => Some(Self::LmampgfecekEikdcjfdenc), + "LMAMPGFECEK_GHPLHOBIMCK" => Some(Self::LmampgfecekGhplhobimck), + "LMAMPGFECEK_ACHPEHHJELI" => Some(Self::LmampgfecekAchpehhjeli), "CmdGetMissionStatusCsReq" => Some(Self::CmdGetMissionStatusCsReq), - "CmdMissionRewardScNotify" => Some(Self::CmdMissionRewardScNotify), + "CmdGetMissionDataScRsp" => Some(Self::CmdGetMissionDataScRsp), + "LMAMPGFECEK_PDFDIGEEKAH" => Some(Self::LmampgfecekPdfdigeekah), + "LMAMPGFECEK_BFGDMBIOGDK" => Some(Self::LmampgfecekBfgdmbiogdk), + "LMAMPGFECEK_FKIALKDAJFG" => Some(Self::LmampgfecekFkialkdajfg), + "CmdGetMissionDataCsReq" => Some(Self::CmdGetMissionDataCsReq), + "LMAMPGFECEK_AMOACPFMJGM" => Some(Self::LmampgfecekAmoacpfmjgm), + "CmdFinishTalkMissionScRsp" => Some(Self::CmdFinishTalkMissionScRsp), + "LMAMPGFECEK_PAGCECCIJDB" => Some(Self::LmampgfecekPagceccijdb), + "LMAMPGFECEK_CJJIADIFDGI" => Some(Self::LmampgfecekCjjiadifdgi), + "LMAMPGFECEK_KJEMJALOLNP" => Some(Self::LmampgfecekKjemjalolnp), + "LMAMPGFECEK_CFELNOKAIAA" => Some(Self::LmampgfecekCfelnokaiaa), + "CmdFinishTalkMissionCsReq" => Some(Self::CmdFinishTalkMissionCsReq), + "LMAMPGFECEK_IILFJPFLAFI" => Some(Self::LmampgfecekIilfjpflafi), + "LMAMPGFECEK_PMDPLOFGDBL" => Some(Self::LmampgfecekPmdplofgdbl), + "LMAMPGFECEK_FACPCGHCDNL" => Some(Self::LmampgfecekFacpcghcdnl), + "LMAMPGFECEK_KAIEBECAIBI" => Some(Self::LmampgfecekKaiebecaibi), + "LMAMPGFECEK_ACNAFHOHHIE" => Some(Self::LmampgfecekAcnafhohhie), + "LMAMPGFECEK_JAKNBAJINAA" => Some(Self::LmampgfecekJaknbajinaa), + "LMAMPGFECEK_ELNCDAJPOCH" => Some(Self::LmampgfecekElncdajpoch), + "LMAMPGFECEK_GIEMLABGOKK" => Some(Self::LmampgfecekGiemlabgokk), + "LMAMPGFECEK_OCIDLBLODDM" => Some(Self::LmampgfecekOcidlbloddm), + "LMAMPGFECEK_ODEFNDGJNKM" => Some(Self::LmampgfecekOdefndgjnkm), _ => None, } } @@ -75884,78 +75344,50 @@ impl CmdMissionType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Iebnpbjdfgp { - MissionSyncRecordNone = 0, - MissionSyncRecordMainMissionAccept = 1, - MissionSyncRecordMainMissionStart = 2, - MissionSyncRecordMainMissionFinish = 3, - MissionSyncRecordMainMissionDelete = 4, - MissionSyncRecordMissionAccept = 11, - MissionSyncRecordMissionStart = 12, - MissionSyncRecordMissionFinish = 13, - MissionSyncRecordMissionDelete = 14, - MissionSyncRecordMissionProgress = 15, +pub enum MissionSyncRecord { + MjpniblhmgaJogmpinbboi = 0, + MjpniblhmgaHjkdkngggoe = 1, + MjpniblhmgaGelhffdekjh = 2, + MjpniblhmgaDndaclainlg = 3, + MjpniblhmgaGlpmmjeppne = 4, + MjpniblhmgaMgbcpgicphg = 11, + MjpniblhmgaLbfdaipkkfg = 12, + MjpniblhmgaCkapmjfbejp = 13, + MjpniblhmgaOhclkigjceb = 14, + MjpniblhmgaCpgpamhadja = 15, } -impl Iebnpbjdfgp { +impl MissionSyncRecord { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MissionSyncRecordNone => "MISSION_SYNC_RECORD_NONE", - Self::MissionSyncRecordMainMissionAccept => { - "MISSION_SYNC_RECORD_MAIN_MISSION_ACCEPT" - } - Self::MissionSyncRecordMainMissionStart => { - "MISSION_SYNC_RECORD_MAIN_MISSION_START" - } - Self::MissionSyncRecordMainMissionFinish => { - "MISSION_SYNC_RECORD_MAIN_MISSION_FINISH" - } - Self::MissionSyncRecordMainMissionDelete => { - "MISSION_SYNC_RECORD_MAIN_MISSION_DELETE" - } - Self::MissionSyncRecordMissionAccept => "MISSION_SYNC_RECORD_MISSION_ACCEPT", - Self::MissionSyncRecordMissionStart => "MISSION_SYNC_RECORD_MISSION_START", - Self::MissionSyncRecordMissionFinish => "MISSION_SYNC_RECORD_MISSION_FINISH", - Self::MissionSyncRecordMissionDelete => "MISSION_SYNC_RECORD_MISSION_DELETE", - Self::MissionSyncRecordMissionProgress => { - "MISSION_SYNC_RECORD_MISSION_PROGRESS" - } + Self::MjpniblhmgaJogmpinbboi => "MJPNIBLHMGA_JOGMPINBBOI", + Self::MjpniblhmgaHjkdkngggoe => "MJPNIBLHMGA_HJKDKNGGGOE", + Self::MjpniblhmgaGelhffdekjh => "MJPNIBLHMGA_GELHFFDEKJH", + Self::MjpniblhmgaDndaclainlg => "MJPNIBLHMGA_DNDACLAINLG", + Self::MjpniblhmgaGlpmmjeppne => "MJPNIBLHMGA_GLPMMJEPPNE", + Self::MjpniblhmgaMgbcpgicphg => "MJPNIBLHMGA_MGBCPGICPHG", + Self::MjpniblhmgaLbfdaipkkfg => "MJPNIBLHMGA_LBFDAIPKKFG", + Self::MjpniblhmgaCkapmjfbejp => "MJPNIBLHMGA_CKAPMJFBEJP", + Self::MjpniblhmgaOhclkigjceb => "MJPNIBLHMGA_OHCLKIGJCEB", + Self::MjpniblhmgaCpgpamhadja => "MJPNIBLHMGA_CPGPAMHADJA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MISSION_SYNC_RECORD_NONE" => Some(Self::MissionSyncRecordNone), - "MISSION_SYNC_RECORD_MAIN_MISSION_ACCEPT" => { - Some(Self::MissionSyncRecordMainMissionAccept) - } - "MISSION_SYNC_RECORD_MAIN_MISSION_START" => { - Some(Self::MissionSyncRecordMainMissionStart) - } - "MISSION_SYNC_RECORD_MAIN_MISSION_FINISH" => { - Some(Self::MissionSyncRecordMainMissionFinish) - } - "MISSION_SYNC_RECORD_MAIN_MISSION_DELETE" => { - Some(Self::MissionSyncRecordMainMissionDelete) - } - "MISSION_SYNC_RECORD_MISSION_ACCEPT" => { - Some(Self::MissionSyncRecordMissionAccept) - } - "MISSION_SYNC_RECORD_MISSION_START" => { - Some(Self::MissionSyncRecordMissionStart) - } - "MISSION_SYNC_RECORD_MISSION_FINISH" => { - Some(Self::MissionSyncRecordMissionFinish) - } - "MISSION_SYNC_RECORD_MISSION_DELETE" => { - Some(Self::MissionSyncRecordMissionDelete) - } - "MISSION_SYNC_RECORD_MISSION_PROGRESS" => { - Some(Self::MissionSyncRecordMissionProgress) - } + "MJPNIBLHMGA_JOGMPINBBOI" => Some(Self::MjpniblhmgaJogmpinbboi), + "MJPNIBLHMGA_HJKDKNGGGOE" => Some(Self::MjpniblhmgaHjkdkngggoe), + "MJPNIBLHMGA_GELHFFDEKJH" => Some(Self::MjpniblhmgaGelhffdekjh), + "MJPNIBLHMGA_DNDACLAINLG" => Some(Self::MjpniblhmgaDndaclainlg), + "MJPNIBLHMGA_GLPMMJEPPNE" => Some(Self::MjpniblhmgaGlpmmjeppne), + "MJPNIBLHMGA_MGBCPGICPHG" => Some(Self::MjpniblhmgaMgbcpgicphg), + "MJPNIBLHMGA_LBFDAIPKKFG" => Some(Self::MjpniblhmgaLbfdaipkkfg), + "MJPNIBLHMGA_CKAPMJFBEJP" => Some(Self::MjpniblhmgaCkapmjfbejp), + "MJPNIBLHMGA_OHCLKIGJCEB" => Some(Self::MjpniblhmgaOhclkigjceb), + "MJPNIBLHMGA_CPGPAMHADJA" => Some(Self::MjpniblhmgaCpgpamhadja), _ => None, } } @@ -75963,26 +75395,26 @@ impl Iebnpbjdfgp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Gjpkmnefcfo { - MainMissionSyncNone = 0, - MainMissionSyncMcv = 1, +pub enum Cfpogdfipki { + Pooghjooiko = 0, + Igmjaoackaf = 1, } -impl Gjpkmnefcfo { +impl Cfpogdfipki { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MainMissionSyncNone => "MAIN_MISSION_SYNC_NONE", - Self::MainMissionSyncMcv => "MAIN_MISSION_SYNC_MCV", + Self::Pooghjooiko => "CFPOGDFIPKI_POOGHJOOIKO", + Self::Igmjaoackaf => "CFPOGDFIPKI_IGMJAOACKAF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MAIN_MISSION_SYNC_NONE" => Some(Self::MainMissionSyncNone), - "MAIN_MISSION_SYNC_MCV" => Some(Self::MainMissionSyncMcv), + "CFPOGDFIPKI_POOGHJOOIKO" => Some(Self::Pooghjooiko), + "CFPOGDFIPKI_IGMJAOACKAF" => Some(Self::Igmjaoackaf), _ => None, } } @@ -75990,38 +75422,32 @@ impl Gjpkmnefcfo { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nnfdmniijgo { - TrackMainMissionUpdateNone = 0, - TrackMainMissionUpdateAuto = 1, - TrackMainMissionUpdateManual = 2, - TrackMainMissionUpdateLoginReport = 3, +pub enum TrackMainMissionUpdateReasonId { + OidpmognlhmNlfkhehniil = 0, + OidpmognlhmMejlhcclhpm = 1, + OidpmognlhmKkgkdfchknl = 2, + OidpmognlhmGheiponmlmf = 3, } -impl Nnfdmniijgo { +impl TrackMainMissionUpdateReasonId { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TrackMainMissionUpdateNone => "TRACK_MAIN_MISSION_UPDATE_NONE", - Self::TrackMainMissionUpdateAuto => "TRACK_MAIN_MISSION_UPDATE_AUTO", - Self::TrackMainMissionUpdateManual => "TRACK_MAIN_MISSION_UPDATE_MANUAL", - Self::TrackMainMissionUpdateLoginReport => { - "TRACK_MAIN_MISSION_UPDATE_LOGIN_REPORT" - } + Self::OidpmognlhmNlfkhehniil => "OIDPMOGNLHM_NLFKHEHNIIL", + Self::OidpmognlhmMejlhcclhpm => "OIDPMOGNLHM_MEJLHCCLHPM", + Self::OidpmognlhmKkgkdfchknl => "OIDPMOGNLHM_KKGKDFCHKNL", + Self::OidpmognlhmGheiponmlmf => "OIDPMOGNLHM_GHEIPONMLMF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TRACK_MAIN_MISSION_UPDATE_NONE" => Some(Self::TrackMainMissionUpdateNone), - "TRACK_MAIN_MISSION_UPDATE_AUTO" => Some(Self::TrackMainMissionUpdateAuto), - "TRACK_MAIN_MISSION_UPDATE_MANUAL" => { - Some(Self::TrackMainMissionUpdateManual) - } - "TRACK_MAIN_MISSION_UPDATE_LOGIN_REPORT" => { - Some(Self::TrackMainMissionUpdateLoginReport) - } + "OIDPMOGNLHM_NLFKHEHNIIL" => Some(Self::OidpmognlhmNlfkhehniil), + "OIDPMOGNLHM_MEJLHCCLHPM" => Some(Self::OidpmognlhmMejlhcclhpm), + "OIDPMOGNLHM_KKGKDFCHKNL" => Some(Self::OidpmognlhmKkgkdfchknl), + "OIDPMOGNLHM_GHEIPONMLMF" => Some(Self::OidpmognlhmGheiponmlmf), _ => None, } } @@ -76030,90 +75456,90 @@ impl Nnfdmniijgo { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMonopolyType { - None = 0, - CmdMonopolyDailySettleScNotify = 7001, - CmdMonopolyGameRaiseRatioCsReq = 7097, - CmdMonopolyGetDailyInitItemCsReq = 7090, - CmdMonopolyGetRafflePoolInfoScRsp = 7031, - CmdMonopolyConditionUpdateScNotify = 7087, - CmdMonopolyGetRaffleTicketScRsp = 7033, - CmdMonopolyAcceptQuizScRsp = 7056, - CmdGetSocialEventServerCacheCsReq = 7002, - CmdMonopolyLikeScNotify = 7040, - CmdMonopolyGetRaffleTicketCsReq = 7061, - CmdMonopolyCheatDiceCsReq = 7062, - CmdMonopolyGameRaiseRatioScRsp = 7055, - CmdMonopolyGetRegionProgressCsReq = 7046, - CmdMonopolyGameBingoFlipCardCsReq = 7035, - CmdMonopolyClickMbtiReportCsReq = 7100, - CmdGetMonopolyMbtiReportRewardScRsp = 7017, - CmdMonopolyContentUpdateScNotify = 7022, - CmdMonopolyCellUpdateNotify = 7065, - CmdMonopolyConfirmRandomCsReq = 7080, - CmdMonopolyGuessChooseCsReq = 7010, - CmdMonopolyScrachRaffleTicketCsReq = 7075, - CmdMonopolyEventLoadUpdateScNotify = 7067, - CmdMonopolyGuessBuyInformationCsReq = 7042, - CmdMonopolyClickMbtiReportScRsp = 7036, - CmdMonopolyTakePhaseRewardScRsp = 7024, - CmdGetSocialEventServerCacheScRsp = 7088, - CmdMonopolyGuessBuyInformationScRsp = 7070, - CmdGetMonopolyFriendRankingListScRsp = 7025, - CmdGetMonopolyMbtiReportRewardCsReq = 7084, - CmdGetMonopolyDailyReportCsReq = 7043, - CmdMonopolyReRollRandomCsReq = 7068, - CmdMonopolyGameGachaScRsp = 7071, - CmdMonopolySelectOptionScRsp = 7081, - CmdMonopolyGetRegionProgressScRsp = 7058, - CmdMonopolyBuyGoodsCsReq = 7005, - CmdMonopolyClickCellScRsp = 7073, - CmdDeleteSocialEventServerCacheCsReq = 7030, - CmdDeleteSocialEventServerCacheScRsp = 7018, - CmdMonopolyGameGachaCsReq = 7060, - CmdMonopolyCheatDiceScRsp = 7059, - CmdMonopolyScrachRaffleTicketScRsp = 7064, - CmdMonopolyUpgradeAssetCsReq = 7029, - CmdMonopolyGetDailyInitItemScRsp = 7013, - CmdMonopolyGetRafflePoolInfoCsReq = 7027, - CmdGetMonopolyInfoCsReq = 7099, - CmdMonopolyMoveCsReq = 7052, - CmdMonopolyEventSelectFriendCsReq = 7045, - CmdMonopolyGiveUpCurContentScRsp = 7009, - CmdMonopolyTakePhaseRewardCsReq = 7008, - CmdMonopolyRollRandomScRsp = 7037, - CmdMonopolyConfirmRandomScRsp = 7077, - CmdMonopolyRollRandomCsReq = 7092, - CmdDailyFirstEnterMonopolyActivityScRsp = 7015, - CmdMonopolyGiveUpCurContentCsReq = 7003, - CmdMonopolySelectOptionCsReq = 7044, - CmdGetMonopolyInfoScRsp = 7023, - CmdMonopolyGuessDrawScNotify = 7041, - CmdMonopolyRollDiceScRsp = 7094, - CmdMonopolySttUpdateScNotify = 7093, - CmdMonopolyLikeCsReq = 7085, - CmdMonopolyEventSelectFriendScRsp = 7095, - CmdGetMonopolyDailyReportScRsp = 7032, - CmdMonopolyGameBingoFlipCardScRsp = 7074, - CmdGetMonopolyFriendRankingListCsReq = 7096, - CmdMonopolyReRollRandomScRsp = 7049, - CmdMonopolyQuizDurationChangeScNotify = 7012, - CmdMonopolyActionResultScNotify = 7098, - CmdMonopolyGameCreateScNotify = 7021, - CmdMonopolyUpgradeAssetScRsp = 7038, - CmdMonopolyTakeRaffleTicketRewardCsReq = 7076, - CmdGetMbtiReportScRsp = 7039, - CmdMonopolyGuessChooseScRsp = 7053, - CmdMonopolyMoveScRsp = 7019, - CmdGetMbtiReportCsReq = 7066, - CmdMonopolyAcceptQuizCsReq = 7016, - CmdMonopolyRollDiceCsReq = 7086, - CmdMonopolyTakeRaffleTicketRewardScRsp = 7082, - CmdMonopolyGameSettleScNotify = 7050, - CmdMonopolyLikeScRsp = 7072, - CmdMonopolyClickCellCsReq = 7091, - CmdDailyFirstEnterMonopolyActivityCsReq = 7057, - CmdMonopolyBuyGoodsScRsp = 7051, - CmdMonopolySocialEventEffectScNotify = 7079, + GjpnmlhbdbaAlocmfakbkp = 0, + CmdPjgmmjndhmj = 7088, + CmdLjpjgdegomh = 7033, + CmdHjdfohnjpph = 7010, + CmdOhghibhdkld = 7068, + CmdBaockgbclid = 7073, + CmdMejlobjpijn = 7052, + CmdAnhcfipglde = 7067, + CmdLoekmdfoiof = 7071, + CmdKoiekodnagi = 7062, + CmdLfmgjlcbafb = 7087, + CmdKkdnfldmglm = 7076, + CmdKggeigmplnl = 7058, + CmdDdbdpdmflme = 7100, + CmdGdbcmfabpbj = 7036, + CmdFjobkkkdmnk = 7031, + CmdCffjcaecfmd = 7055, + CmdKagabfdoiao = 7059, + CmdFicmemecajk = 7093, + CmdGldpejdgfen = 7096, + CmdDgedopcnlme = 7021, + CmdCcanodedlhb = 7024, + CmdMklfmdbbaon = 7038, + CmdKghhklnjana = 7002, + CmdGpkachppgki = 7094, + CmdJkgphjnfdia = 7060, + CmdMncbhmnlifg = 7079, + CmdMekbaooifok = 7008, + CmdObeigomkpfb = 7081, + CmdJmfggmfhehj = 7019, + CmdDjdollmenfg = 7057, + CmdOafhjfcngkj = 7050, + CmdDleopiflmao = 7006, + CmdDpcpmolhgme = 7061, + CmdAnlchklhcie = 7086, + CmdKmbipnpcadd = 7048, + CmdNjpccbnpmep = 7004, + CmdEplpnapfbhm = 7099, + CmdOfmkjhfpbnk = 7075, + CmdJfjghafdfje = 7028, + CmdPkbagklffgk = 7090, + CmdEneamlfnhpe = 7023, + CmdMaofjeeapjo = 7040, + CmdEkiomgciink = 7035, + CmdGcpjpejmdap = 7089, + CmdDabemhcdiec = 7080, + CmdJfonbmaafek = 7014, + CmdJfeefpcmbpk = 7018, + CmdBbpbbbddkfi = 7078, + CmdIfebfonchco = 7041, + CmdBjoljjallll = 7056, + CmdEdidbdgjiaf = 7091, + CmdCkcipgpkahb = 7003, + CmdGdkgeajpeck = 7032, + CmdEjpbceibnji = 7027, + CmdMjpjndckopf = 7083, + CmdGccmljndnfh = 7030, + CmdIjmcpcmpjme = 7054, + CmdKoebompepjk = 7064, + CmdKgnhccpmblh = 7047, + CmdDckfgkkdkeb = 7092, + CmdPcfgodkodhm = 7065, + CmdOkgdejigade = 7026, + CmdAecjkldghjk = 7066, + CmdLfkloapmfkp = 7077, + CmdAfpaebgolhg = 7095, + CmdHilfaihngkd = 7020, + CmdFhldklfkepg = 7011, + CmdMmjehailnge = 7039, + CmdJajokjhmgbj = 7049, + CmdGmicfoldopa = 7009, + CmdGfjgfkcglkm = 7046, + CmdFgoifcabmmg = 7044, + CmdCilgfnegehd = 7015, + CmdNohghmmfblc = 7037, + CmdCmdmgbpbaid = 7034, + CmdAgjijjbbdkg = 7013, + CmdJcajlacnkdm = 7069, + CmdBgfoecmpagb = 7070, + CmdHnpcljokjii = 7022, + CmdJfgjmccopjf = 7001, + CmdLjidiffpakl = 7017, + CmdPcnkhelglhj = 7072, + CmdHhfjjdmgiip = 7098, } impl CmdMonopolyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -76122,325 +75548,179 @@ impl CmdMonopolyType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMonopolyTypeNone", - Self::CmdMonopolyDailySettleScNotify => "CmdMonopolyDailySettleScNotify", - Self::CmdMonopolyGameRaiseRatioCsReq => "CmdMonopolyGameRaiseRatioCsReq", - Self::CmdMonopolyGetDailyInitItemCsReq => "CmdMonopolyGetDailyInitItemCsReq", - Self::CmdMonopolyGetRafflePoolInfoScRsp => { - "CmdMonopolyGetRafflePoolInfoScRsp" - } - Self::CmdMonopolyConditionUpdateScNotify => { - "CmdMonopolyConditionUpdateScNotify" - } - Self::CmdMonopolyGetRaffleTicketScRsp => "CmdMonopolyGetRaffleTicketScRsp", - Self::CmdMonopolyAcceptQuizScRsp => "CmdMonopolyAcceptQuizScRsp", - Self::CmdGetSocialEventServerCacheCsReq => { - "CmdGetSocialEventServerCacheCsReq" - } - Self::CmdMonopolyLikeScNotify => "CmdMonopolyLikeScNotify", - Self::CmdMonopolyGetRaffleTicketCsReq => "CmdMonopolyGetRaffleTicketCsReq", - Self::CmdMonopolyCheatDiceCsReq => "CmdMonopolyCheatDiceCsReq", - Self::CmdMonopolyGameRaiseRatioScRsp => "CmdMonopolyGameRaiseRatioScRsp", - Self::CmdMonopolyGetRegionProgressCsReq => { - "CmdMonopolyGetRegionProgressCsReq" - } - Self::CmdMonopolyGameBingoFlipCardCsReq => { - "CmdMonopolyGameBingoFlipCardCsReq" - } - Self::CmdMonopolyClickMbtiReportCsReq => "CmdMonopolyClickMbtiReportCsReq", - Self::CmdGetMonopolyMbtiReportRewardScRsp => { - "CmdGetMonopolyMbtiReportRewardScRsp" - } - Self::CmdMonopolyContentUpdateScNotify => "CmdMonopolyContentUpdateScNotify", - Self::CmdMonopolyCellUpdateNotify => "CmdMonopolyCellUpdateNotify", - Self::CmdMonopolyConfirmRandomCsReq => "CmdMonopolyConfirmRandomCsReq", - Self::CmdMonopolyGuessChooseCsReq => "CmdMonopolyGuessChooseCsReq", - Self::CmdMonopolyScrachRaffleTicketCsReq => { - "CmdMonopolyScrachRaffleTicketCsReq" - } - Self::CmdMonopolyEventLoadUpdateScNotify => { - "CmdMonopolyEventLoadUpdateScNotify" - } - Self::CmdMonopolyGuessBuyInformationCsReq => { - "CmdMonopolyGuessBuyInformationCsReq" - } - Self::CmdMonopolyClickMbtiReportScRsp => "CmdMonopolyClickMbtiReportScRsp", - Self::CmdMonopolyTakePhaseRewardScRsp => "CmdMonopolyTakePhaseRewardScRsp", - Self::CmdGetSocialEventServerCacheScRsp => { - "CmdGetSocialEventServerCacheScRsp" - } - Self::CmdMonopolyGuessBuyInformationScRsp => { - "CmdMonopolyGuessBuyInformationScRsp" - } - Self::CmdGetMonopolyFriendRankingListScRsp => { - "CmdGetMonopolyFriendRankingListScRsp" - } - Self::CmdGetMonopolyMbtiReportRewardCsReq => { - "CmdGetMonopolyMbtiReportRewardCsReq" - } - Self::CmdGetMonopolyDailyReportCsReq => "CmdGetMonopolyDailyReportCsReq", - Self::CmdMonopolyReRollRandomCsReq => "CmdMonopolyReRollRandomCsReq", - Self::CmdMonopolyGameGachaScRsp => "CmdMonopolyGameGachaScRsp", - Self::CmdMonopolySelectOptionScRsp => "CmdMonopolySelectOptionScRsp", - Self::CmdMonopolyGetRegionProgressScRsp => { - "CmdMonopolyGetRegionProgressScRsp" - } - Self::CmdMonopolyBuyGoodsCsReq => "CmdMonopolyBuyGoodsCsReq", - Self::CmdMonopolyClickCellScRsp => "CmdMonopolyClickCellScRsp", - Self::CmdDeleteSocialEventServerCacheCsReq => { - "CmdDeleteSocialEventServerCacheCsReq" - } - Self::CmdDeleteSocialEventServerCacheScRsp => { - "CmdDeleteSocialEventServerCacheScRsp" - } - Self::CmdMonopolyGameGachaCsReq => "CmdMonopolyGameGachaCsReq", - Self::CmdMonopolyCheatDiceScRsp => "CmdMonopolyCheatDiceScRsp", - Self::CmdMonopolyScrachRaffleTicketScRsp => { - "CmdMonopolyScrachRaffleTicketScRsp" - } - Self::CmdMonopolyUpgradeAssetCsReq => "CmdMonopolyUpgradeAssetCsReq", - Self::CmdMonopolyGetDailyInitItemScRsp => "CmdMonopolyGetDailyInitItemScRsp", - Self::CmdMonopolyGetRafflePoolInfoCsReq => { - "CmdMonopolyGetRafflePoolInfoCsReq" - } - Self::CmdGetMonopolyInfoCsReq => "CmdGetMonopolyInfoCsReq", - Self::CmdMonopolyMoveCsReq => "CmdMonopolyMoveCsReq", - Self::CmdMonopolyEventSelectFriendCsReq => { - "CmdMonopolyEventSelectFriendCsReq" - } - Self::CmdMonopolyGiveUpCurContentScRsp => "CmdMonopolyGiveUpCurContentScRsp", - Self::CmdMonopolyTakePhaseRewardCsReq => "CmdMonopolyTakePhaseRewardCsReq", - Self::CmdMonopolyRollRandomScRsp => "CmdMonopolyRollRandomScRsp", - Self::CmdMonopolyConfirmRandomScRsp => "CmdMonopolyConfirmRandomScRsp", - Self::CmdMonopolyRollRandomCsReq => "CmdMonopolyRollRandomCsReq", - Self::CmdDailyFirstEnterMonopolyActivityScRsp => { - "CmdDailyFirstEnterMonopolyActivityScRsp" - } - Self::CmdMonopolyGiveUpCurContentCsReq => "CmdMonopolyGiveUpCurContentCsReq", - Self::CmdMonopolySelectOptionCsReq => "CmdMonopolySelectOptionCsReq", - Self::CmdGetMonopolyInfoScRsp => "CmdGetMonopolyInfoScRsp", - Self::CmdMonopolyGuessDrawScNotify => "CmdMonopolyGuessDrawScNotify", - Self::CmdMonopolyRollDiceScRsp => "CmdMonopolyRollDiceScRsp", - Self::CmdMonopolySttUpdateScNotify => "CmdMonopolySttUpdateScNotify", - Self::CmdMonopolyLikeCsReq => "CmdMonopolyLikeCsReq", - Self::CmdMonopolyEventSelectFriendScRsp => { - "CmdMonopolyEventSelectFriendScRsp" - } - Self::CmdGetMonopolyDailyReportScRsp => "CmdGetMonopolyDailyReportScRsp", - Self::CmdMonopolyGameBingoFlipCardScRsp => { - "CmdMonopolyGameBingoFlipCardScRsp" - } - Self::CmdGetMonopolyFriendRankingListCsReq => { - "CmdGetMonopolyFriendRankingListCsReq" - } - Self::CmdMonopolyReRollRandomScRsp => "CmdMonopolyReRollRandomScRsp", - Self::CmdMonopolyQuizDurationChangeScNotify => { - "CmdMonopolyQuizDurationChangeScNotify" - } - Self::CmdMonopolyActionResultScNotify => "CmdMonopolyActionResultScNotify", - Self::CmdMonopolyGameCreateScNotify => "CmdMonopolyGameCreateScNotify", - Self::CmdMonopolyUpgradeAssetScRsp => "CmdMonopolyUpgradeAssetScRsp", - Self::CmdMonopolyTakeRaffleTicketRewardCsReq => { - "CmdMonopolyTakeRaffleTicketRewardCsReq" - } - Self::CmdGetMbtiReportScRsp => "CmdGetMbtiReportScRsp", - Self::CmdMonopolyGuessChooseScRsp => "CmdMonopolyGuessChooseScRsp", - Self::CmdMonopolyMoveScRsp => "CmdMonopolyMoveScRsp", - Self::CmdGetMbtiReportCsReq => "CmdGetMbtiReportCsReq", - Self::CmdMonopolyAcceptQuizCsReq => "CmdMonopolyAcceptQuizCsReq", - Self::CmdMonopolyRollDiceCsReq => "CmdMonopolyRollDiceCsReq", - Self::CmdMonopolyTakeRaffleTicketRewardScRsp => { - "CmdMonopolyTakeRaffleTicketRewardScRsp" - } - Self::CmdMonopolyGameSettleScNotify => "CmdMonopolyGameSettleScNotify", - Self::CmdMonopolyLikeScRsp => "CmdMonopolyLikeScRsp", - Self::CmdMonopolyClickCellCsReq => "CmdMonopolyClickCellCsReq", - Self::CmdDailyFirstEnterMonopolyActivityCsReq => { - "CmdDailyFirstEnterMonopolyActivityCsReq" - } - Self::CmdMonopolyBuyGoodsScRsp => "CmdMonopolyBuyGoodsScRsp", - Self::CmdMonopolySocialEventEffectScNotify => { - "CmdMonopolySocialEventEffectScNotify" - } + Self::GjpnmlhbdbaAlocmfakbkp => "GJPNMLHBDBA_ALOCMFAKBKP", + Self::CmdPjgmmjndhmj => "CmdPJGMMJNDHMJ", + Self::CmdLjpjgdegomh => "CmdLJPJGDEGOMH", + Self::CmdHjdfohnjpph => "CmdHJDFOHNJPPH", + Self::CmdOhghibhdkld => "CmdOHGHIBHDKLD", + Self::CmdBaockgbclid => "CmdBAOCKGBCLID", + Self::CmdMejlobjpijn => "CmdMEJLOBJPIJN", + Self::CmdAnhcfipglde => "CmdANHCFIPGLDE", + Self::CmdLoekmdfoiof => "CmdLOEKMDFOIOF", + Self::CmdKoiekodnagi => "CmdKOIEKODNAGI", + Self::CmdLfmgjlcbafb => "CmdLFMGJLCBAFB", + Self::CmdKkdnfldmglm => "CmdKKDNFLDMGLM", + Self::CmdKggeigmplnl => "CmdKGGEIGMPLNL", + Self::CmdDdbdpdmflme => "CmdDDBDPDMFLME", + Self::CmdGdbcmfabpbj => "CmdGDBCMFABPBJ", + Self::CmdFjobkkkdmnk => "CmdFJOBKKKDMNK", + Self::CmdCffjcaecfmd => "CmdCFFJCAECFMD", + Self::CmdKagabfdoiao => "CmdKAGABFDOIAO", + Self::CmdFicmemecajk => "CmdFICMEMECAJK", + Self::CmdGldpejdgfen => "CmdGLDPEJDGFEN", + Self::CmdDgedopcnlme => "CmdDGEDOPCNLME", + Self::CmdCcanodedlhb => "CmdCCANODEDLHB", + Self::CmdMklfmdbbaon => "CmdMKLFMDBBAON", + Self::CmdKghhklnjana => "CmdKGHHKLNJANA", + Self::CmdGpkachppgki => "CmdGPKACHPPGKI", + Self::CmdJkgphjnfdia => "CmdJKGPHJNFDIA", + Self::CmdMncbhmnlifg => "CmdMNCBHMNLIFG", + Self::CmdMekbaooifok => "CmdMEKBAOOIFOK", + Self::CmdObeigomkpfb => "CmdOBEIGOMKPFB", + Self::CmdJmfggmfhehj => "CmdJMFGGMFHEHJ", + Self::CmdDjdollmenfg => "CmdDJDOLLMENFG", + Self::CmdOafhjfcngkj => "CmdOAFHJFCNGKJ", + Self::CmdDleopiflmao => "CmdDLEOPIFLMAO", + Self::CmdDpcpmolhgme => "CmdDPCPMOLHGME", + Self::CmdAnlchklhcie => "CmdANLCHKLHCIE", + Self::CmdKmbipnpcadd => "CmdKMBIPNPCADD", + Self::CmdNjpccbnpmep => "CmdNJPCCBNPMEP", + Self::CmdEplpnapfbhm => "CmdEPLPNAPFBHM", + Self::CmdOfmkjhfpbnk => "CmdOFMKJHFPBNK", + Self::CmdJfjghafdfje => "CmdJFJGHAFDFJE", + Self::CmdPkbagklffgk => "CmdPKBAGKLFFGK", + Self::CmdEneamlfnhpe => "CmdENEAMLFNHPE", + Self::CmdMaofjeeapjo => "CmdMAOFJEEAPJO", + Self::CmdEkiomgciink => "CmdEKIOMGCIINK", + Self::CmdGcpjpejmdap => "CmdGCPJPEJMDAP", + Self::CmdDabemhcdiec => "CmdDABEMHCDIEC", + Self::CmdJfonbmaafek => "CmdJFONBMAAFEK", + Self::CmdJfeefpcmbpk => "CmdJFEEFPCMBPK", + Self::CmdBbpbbbddkfi => "CmdBBPBBBDDKFI", + Self::CmdIfebfonchco => "CmdIFEBFONCHCO", + Self::CmdBjoljjallll => "CmdBJOLJJALLLL", + Self::CmdEdidbdgjiaf => "CmdEDIDBDGJIAF", + Self::CmdCkcipgpkahb => "CmdCKCIPGPKAHB", + Self::CmdGdkgeajpeck => "CmdGDKGEAJPECK", + Self::CmdEjpbceibnji => "CmdEJPBCEIBNJI", + Self::CmdMjpjndckopf => "CmdMJPJNDCKOPF", + Self::CmdGccmljndnfh => "CmdGCCMLJNDNFH", + Self::CmdIjmcpcmpjme => "CmdIJMCPCMPJME", + Self::CmdKoebompepjk => "CmdKOEBOMPEPJK", + Self::CmdKgnhccpmblh => "CmdKGNHCCPMBLH", + Self::CmdDckfgkkdkeb => "CmdDCKFGKKDKEB", + Self::CmdPcfgodkodhm => "CmdPCFGODKODHM", + Self::CmdOkgdejigade => "CmdOKGDEJIGADE", + Self::CmdAecjkldghjk => "CmdAECJKLDGHJK", + Self::CmdLfkloapmfkp => "CmdLFKLOAPMFKP", + Self::CmdAfpaebgolhg => "CmdAFPAEBGOLHG", + Self::CmdHilfaihngkd => "CmdHILFAIHNGKD", + Self::CmdFhldklfkepg => "CmdFHLDKLFKEPG", + Self::CmdMmjehailnge => "CmdMMJEHAILNGE", + Self::CmdJajokjhmgbj => "CmdJAJOKJHMGBJ", + Self::CmdGmicfoldopa => "CmdGMICFOLDOPA", + Self::CmdGfjgfkcglkm => "CmdGFJGFKCGLKM", + Self::CmdFgoifcabmmg => "CmdFGOIFCABMMG", + Self::CmdCilgfnegehd => "CmdCILGFNEGEHD", + Self::CmdNohghmmfblc => "CmdNOHGHMMFBLC", + Self::CmdCmdmgbpbaid => "CmdCMDMGBPBAID", + Self::CmdAgjijjbbdkg => "CmdAGJIJJBBDKG", + Self::CmdJcajlacnkdm => "CmdJCAJLACNKDM", + Self::CmdBgfoecmpagb => "CmdBGFOECMPAGB", + Self::CmdHnpcljokjii => "CmdHNPCLJOKJII", + Self::CmdJfgjmccopjf => "CmdJFGJMCCOPJF", + Self::CmdLjidiffpakl => "CmdLJIDIFFPAKL", + Self::CmdPcnkhelglhj => "CmdPCNKHELGLHJ", + Self::CmdHhfjjdmgiip => "CmdHHFJJDMGIIP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMonopolyTypeNone" => Some(Self::None), - "CmdMonopolyDailySettleScNotify" => { - Some(Self::CmdMonopolyDailySettleScNotify) - } - "CmdMonopolyGameRaiseRatioCsReq" => { - Some(Self::CmdMonopolyGameRaiseRatioCsReq) - } - "CmdMonopolyGetDailyInitItemCsReq" => { - Some(Self::CmdMonopolyGetDailyInitItemCsReq) - } - "CmdMonopolyGetRafflePoolInfoScRsp" => { - Some(Self::CmdMonopolyGetRafflePoolInfoScRsp) - } - "CmdMonopolyConditionUpdateScNotify" => { - Some(Self::CmdMonopolyConditionUpdateScNotify) - } - "CmdMonopolyGetRaffleTicketScRsp" => { - Some(Self::CmdMonopolyGetRaffleTicketScRsp) - } - "CmdMonopolyAcceptQuizScRsp" => Some(Self::CmdMonopolyAcceptQuizScRsp), - "CmdGetSocialEventServerCacheCsReq" => { - Some(Self::CmdGetSocialEventServerCacheCsReq) - } - "CmdMonopolyLikeScNotify" => Some(Self::CmdMonopolyLikeScNotify), - "CmdMonopolyGetRaffleTicketCsReq" => { - Some(Self::CmdMonopolyGetRaffleTicketCsReq) - } - "CmdMonopolyCheatDiceCsReq" => Some(Self::CmdMonopolyCheatDiceCsReq), - "CmdMonopolyGameRaiseRatioScRsp" => { - Some(Self::CmdMonopolyGameRaiseRatioScRsp) - } - "CmdMonopolyGetRegionProgressCsReq" => { - Some(Self::CmdMonopolyGetRegionProgressCsReq) - } - "CmdMonopolyGameBingoFlipCardCsReq" => { - Some(Self::CmdMonopolyGameBingoFlipCardCsReq) - } - "CmdMonopolyClickMbtiReportCsReq" => { - Some(Self::CmdMonopolyClickMbtiReportCsReq) - } - "CmdGetMonopolyMbtiReportRewardScRsp" => { - Some(Self::CmdGetMonopolyMbtiReportRewardScRsp) - } - "CmdMonopolyContentUpdateScNotify" => { - Some(Self::CmdMonopolyContentUpdateScNotify) - } - "CmdMonopolyCellUpdateNotify" => Some(Self::CmdMonopolyCellUpdateNotify), - "CmdMonopolyConfirmRandomCsReq" => Some(Self::CmdMonopolyConfirmRandomCsReq), - "CmdMonopolyGuessChooseCsReq" => Some(Self::CmdMonopolyGuessChooseCsReq), - "CmdMonopolyScrachRaffleTicketCsReq" => { - Some(Self::CmdMonopolyScrachRaffleTicketCsReq) - } - "CmdMonopolyEventLoadUpdateScNotify" => { - Some(Self::CmdMonopolyEventLoadUpdateScNotify) - } - "CmdMonopolyGuessBuyInformationCsReq" => { - Some(Self::CmdMonopolyGuessBuyInformationCsReq) - } - "CmdMonopolyClickMbtiReportScRsp" => { - Some(Self::CmdMonopolyClickMbtiReportScRsp) - } - "CmdMonopolyTakePhaseRewardScRsp" => { - Some(Self::CmdMonopolyTakePhaseRewardScRsp) - } - "CmdGetSocialEventServerCacheScRsp" => { - Some(Self::CmdGetSocialEventServerCacheScRsp) - } - "CmdMonopolyGuessBuyInformationScRsp" => { - Some(Self::CmdMonopolyGuessBuyInformationScRsp) - } - "CmdGetMonopolyFriendRankingListScRsp" => { - Some(Self::CmdGetMonopolyFriendRankingListScRsp) - } - "CmdGetMonopolyMbtiReportRewardCsReq" => { - Some(Self::CmdGetMonopolyMbtiReportRewardCsReq) - } - "CmdGetMonopolyDailyReportCsReq" => { - Some(Self::CmdGetMonopolyDailyReportCsReq) - } - "CmdMonopolyReRollRandomCsReq" => Some(Self::CmdMonopolyReRollRandomCsReq), - "CmdMonopolyGameGachaScRsp" => Some(Self::CmdMonopolyGameGachaScRsp), - "CmdMonopolySelectOptionScRsp" => Some(Self::CmdMonopolySelectOptionScRsp), - "CmdMonopolyGetRegionProgressScRsp" => { - Some(Self::CmdMonopolyGetRegionProgressScRsp) - } - "CmdMonopolyBuyGoodsCsReq" => Some(Self::CmdMonopolyBuyGoodsCsReq), - "CmdMonopolyClickCellScRsp" => Some(Self::CmdMonopolyClickCellScRsp), - "CmdDeleteSocialEventServerCacheCsReq" => { - Some(Self::CmdDeleteSocialEventServerCacheCsReq) - } - "CmdDeleteSocialEventServerCacheScRsp" => { - Some(Self::CmdDeleteSocialEventServerCacheScRsp) - } - "CmdMonopolyGameGachaCsReq" => Some(Self::CmdMonopolyGameGachaCsReq), - "CmdMonopolyCheatDiceScRsp" => Some(Self::CmdMonopolyCheatDiceScRsp), - "CmdMonopolyScrachRaffleTicketScRsp" => { - Some(Self::CmdMonopolyScrachRaffleTicketScRsp) - } - "CmdMonopolyUpgradeAssetCsReq" => Some(Self::CmdMonopolyUpgradeAssetCsReq), - "CmdMonopolyGetDailyInitItemScRsp" => { - Some(Self::CmdMonopolyGetDailyInitItemScRsp) - } - "CmdMonopolyGetRafflePoolInfoCsReq" => { - Some(Self::CmdMonopolyGetRafflePoolInfoCsReq) - } - "CmdGetMonopolyInfoCsReq" => Some(Self::CmdGetMonopolyInfoCsReq), - "CmdMonopolyMoveCsReq" => Some(Self::CmdMonopolyMoveCsReq), - "CmdMonopolyEventSelectFriendCsReq" => { - Some(Self::CmdMonopolyEventSelectFriendCsReq) - } - "CmdMonopolyGiveUpCurContentScRsp" => { - Some(Self::CmdMonopolyGiveUpCurContentScRsp) - } - "CmdMonopolyTakePhaseRewardCsReq" => { - Some(Self::CmdMonopolyTakePhaseRewardCsReq) - } - "CmdMonopolyRollRandomScRsp" => Some(Self::CmdMonopolyRollRandomScRsp), - "CmdMonopolyConfirmRandomScRsp" => Some(Self::CmdMonopolyConfirmRandomScRsp), - "CmdMonopolyRollRandomCsReq" => Some(Self::CmdMonopolyRollRandomCsReq), - "CmdDailyFirstEnterMonopolyActivityScRsp" => { - Some(Self::CmdDailyFirstEnterMonopolyActivityScRsp) - } - "CmdMonopolyGiveUpCurContentCsReq" => { - Some(Self::CmdMonopolyGiveUpCurContentCsReq) - } - "CmdMonopolySelectOptionCsReq" => Some(Self::CmdMonopolySelectOptionCsReq), - "CmdGetMonopolyInfoScRsp" => Some(Self::CmdGetMonopolyInfoScRsp), - "CmdMonopolyGuessDrawScNotify" => Some(Self::CmdMonopolyGuessDrawScNotify), - "CmdMonopolyRollDiceScRsp" => Some(Self::CmdMonopolyRollDiceScRsp), - "CmdMonopolySttUpdateScNotify" => Some(Self::CmdMonopolySttUpdateScNotify), - "CmdMonopolyLikeCsReq" => Some(Self::CmdMonopolyLikeCsReq), - "CmdMonopolyEventSelectFriendScRsp" => { - Some(Self::CmdMonopolyEventSelectFriendScRsp) - } - "CmdGetMonopolyDailyReportScRsp" => { - Some(Self::CmdGetMonopolyDailyReportScRsp) - } - "CmdMonopolyGameBingoFlipCardScRsp" => { - Some(Self::CmdMonopolyGameBingoFlipCardScRsp) - } - "CmdGetMonopolyFriendRankingListCsReq" => { - Some(Self::CmdGetMonopolyFriendRankingListCsReq) - } - "CmdMonopolyReRollRandomScRsp" => Some(Self::CmdMonopolyReRollRandomScRsp), - "CmdMonopolyQuizDurationChangeScNotify" => { - Some(Self::CmdMonopolyQuizDurationChangeScNotify) - } - "CmdMonopolyActionResultScNotify" => { - Some(Self::CmdMonopolyActionResultScNotify) - } - "CmdMonopolyGameCreateScNotify" => Some(Self::CmdMonopolyGameCreateScNotify), - "CmdMonopolyUpgradeAssetScRsp" => Some(Self::CmdMonopolyUpgradeAssetScRsp), - "CmdMonopolyTakeRaffleTicketRewardCsReq" => { - Some(Self::CmdMonopolyTakeRaffleTicketRewardCsReq) - } - "CmdGetMbtiReportScRsp" => Some(Self::CmdGetMbtiReportScRsp), - "CmdMonopolyGuessChooseScRsp" => Some(Self::CmdMonopolyGuessChooseScRsp), - "CmdMonopolyMoveScRsp" => Some(Self::CmdMonopolyMoveScRsp), - "CmdGetMbtiReportCsReq" => Some(Self::CmdGetMbtiReportCsReq), - "CmdMonopolyAcceptQuizCsReq" => Some(Self::CmdMonopolyAcceptQuizCsReq), - "CmdMonopolyRollDiceCsReq" => Some(Self::CmdMonopolyRollDiceCsReq), - "CmdMonopolyTakeRaffleTicketRewardScRsp" => { - Some(Self::CmdMonopolyTakeRaffleTicketRewardScRsp) - } - "CmdMonopolyGameSettleScNotify" => Some(Self::CmdMonopolyGameSettleScNotify), - "CmdMonopolyLikeScRsp" => Some(Self::CmdMonopolyLikeScRsp), - "CmdMonopolyClickCellCsReq" => Some(Self::CmdMonopolyClickCellCsReq), - "CmdDailyFirstEnterMonopolyActivityCsReq" => { - Some(Self::CmdDailyFirstEnterMonopolyActivityCsReq) - } - "CmdMonopolyBuyGoodsScRsp" => Some(Self::CmdMonopolyBuyGoodsScRsp), - "CmdMonopolySocialEventEffectScNotify" => { - Some(Self::CmdMonopolySocialEventEffectScNotify) - } + "GJPNMLHBDBA_ALOCMFAKBKP" => Some(Self::GjpnmlhbdbaAlocmfakbkp), + "CmdPJGMMJNDHMJ" => Some(Self::CmdPjgmmjndhmj), + "CmdLJPJGDEGOMH" => Some(Self::CmdLjpjgdegomh), + "CmdHJDFOHNJPPH" => Some(Self::CmdHjdfohnjpph), + "CmdOHGHIBHDKLD" => Some(Self::CmdOhghibhdkld), + "CmdBAOCKGBCLID" => Some(Self::CmdBaockgbclid), + "CmdMEJLOBJPIJN" => Some(Self::CmdMejlobjpijn), + "CmdANHCFIPGLDE" => Some(Self::CmdAnhcfipglde), + "CmdLOEKMDFOIOF" => Some(Self::CmdLoekmdfoiof), + "CmdKOIEKODNAGI" => Some(Self::CmdKoiekodnagi), + "CmdLFMGJLCBAFB" => Some(Self::CmdLfmgjlcbafb), + "CmdKKDNFLDMGLM" => Some(Self::CmdKkdnfldmglm), + "CmdKGGEIGMPLNL" => Some(Self::CmdKggeigmplnl), + "CmdDDBDPDMFLME" => Some(Self::CmdDdbdpdmflme), + "CmdGDBCMFABPBJ" => Some(Self::CmdGdbcmfabpbj), + "CmdFJOBKKKDMNK" => Some(Self::CmdFjobkkkdmnk), + "CmdCFFJCAECFMD" => Some(Self::CmdCffjcaecfmd), + "CmdKAGABFDOIAO" => Some(Self::CmdKagabfdoiao), + "CmdFICMEMECAJK" => Some(Self::CmdFicmemecajk), + "CmdGLDPEJDGFEN" => Some(Self::CmdGldpejdgfen), + "CmdDGEDOPCNLME" => Some(Self::CmdDgedopcnlme), + "CmdCCANODEDLHB" => Some(Self::CmdCcanodedlhb), + "CmdMKLFMDBBAON" => Some(Self::CmdMklfmdbbaon), + "CmdKGHHKLNJANA" => Some(Self::CmdKghhklnjana), + "CmdGPKACHPPGKI" => Some(Self::CmdGpkachppgki), + "CmdJKGPHJNFDIA" => Some(Self::CmdJkgphjnfdia), + "CmdMNCBHMNLIFG" => Some(Self::CmdMncbhmnlifg), + "CmdMEKBAOOIFOK" => Some(Self::CmdMekbaooifok), + "CmdOBEIGOMKPFB" => Some(Self::CmdObeigomkpfb), + "CmdJMFGGMFHEHJ" => Some(Self::CmdJmfggmfhehj), + "CmdDJDOLLMENFG" => Some(Self::CmdDjdollmenfg), + "CmdOAFHJFCNGKJ" => Some(Self::CmdOafhjfcngkj), + "CmdDLEOPIFLMAO" => Some(Self::CmdDleopiflmao), + "CmdDPCPMOLHGME" => Some(Self::CmdDpcpmolhgme), + "CmdANLCHKLHCIE" => Some(Self::CmdAnlchklhcie), + "CmdKMBIPNPCADD" => Some(Self::CmdKmbipnpcadd), + "CmdNJPCCBNPMEP" => Some(Self::CmdNjpccbnpmep), + "CmdEPLPNAPFBHM" => Some(Self::CmdEplpnapfbhm), + "CmdOFMKJHFPBNK" => Some(Self::CmdOfmkjhfpbnk), + "CmdJFJGHAFDFJE" => Some(Self::CmdJfjghafdfje), + "CmdPKBAGKLFFGK" => Some(Self::CmdPkbagklffgk), + "CmdENEAMLFNHPE" => Some(Self::CmdEneamlfnhpe), + "CmdMAOFJEEAPJO" => Some(Self::CmdMaofjeeapjo), + "CmdEKIOMGCIINK" => Some(Self::CmdEkiomgciink), + "CmdGCPJPEJMDAP" => Some(Self::CmdGcpjpejmdap), + "CmdDABEMHCDIEC" => Some(Self::CmdDabemhcdiec), + "CmdJFONBMAAFEK" => Some(Self::CmdJfonbmaafek), + "CmdJFEEFPCMBPK" => Some(Self::CmdJfeefpcmbpk), + "CmdBBPBBBDDKFI" => Some(Self::CmdBbpbbbddkfi), + "CmdIFEBFONCHCO" => Some(Self::CmdIfebfonchco), + "CmdBJOLJJALLLL" => Some(Self::CmdBjoljjallll), + "CmdEDIDBDGJIAF" => Some(Self::CmdEdidbdgjiaf), + "CmdCKCIPGPKAHB" => Some(Self::CmdCkcipgpkahb), + "CmdGDKGEAJPECK" => Some(Self::CmdGdkgeajpeck), + "CmdEJPBCEIBNJI" => Some(Self::CmdEjpbceibnji), + "CmdMJPJNDCKOPF" => Some(Self::CmdMjpjndckopf), + "CmdGCCMLJNDNFH" => Some(Self::CmdGccmljndnfh), + "CmdIJMCPCMPJME" => Some(Self::CmdIjmcpcmpjme), + "CmdKOEBOMPEPJK" => Some(Self::CmdKoebompepjk), + "CmdKGNHCCPMBLH" => Some(Self::CmdKgnhccpmblh), + "CmdDCKFGKKDKEB" => Some(Self::CmdDckfgkkdkeb), + "CmdPCFGODKODHM" => Some(Self::CmdPcfgodkodhm), + "CmdOKGDEJIGADE" => Some(Self::CmdOkgdejigade), + "CmdAECJKLDGHJK" => Some(Self::CmdAecjkldghjk), + "CmdLFKLOAPMFKP" => Some(Self::CmdLfkloapmfkp), + "CmdAFPAEBGOLHG" => Some(Self::CmdAfpaebgolhg), + "CmdHILFAIHNGKD" => Some(Self::CmdHilfaihngkd), + "CmdFHLDKLFKEPG" => Some(Self::CmdFhldklfkepg), + "CmdMMJEHAILNGE" => Some(Self::CmdMmjehailnge), + "CmdJAJOKJHMGBJ" => Some(Self::CmdJajokjhmgbj), + "CmdGMICFOLDOPA" => Some(Self::CmdGmicfoldopa), + "CmdGFJGFKCGLKM" => Some(Self::CmdGfjgfkcglkm), + "CmdFGOIFCABMMG" => Some(Self::CmdFgoifcabmmg), + "CmdCILGFNEGEHD" => Some(Self::CmdCilgfnegehd), + "CmdNOHGHMMFBLC" => Some(Self::CmdNohghmmfblc), + "CmdCMDMGBPBAID" => Some(Self::CmdCmdmgbpbaid), + "CmdAGJIJJBBDKG" => Some(Self::CmdAgjijjbbdkg), + "CmdJCAJLACNKDM" => Some(Self::CmdJcajlacnkdm), + "CmdBGFOECMPAGB" => Some(Self::CmdBgfoecmpagb), + "CmdHNPCLJOKJII" => Some(Self::CmdHnpcljokjii), + "CmdJFGJMCCOPJF" => Some(Self::CmdJfgjmccopjf), + "CmdLJIDIFFPAKL" => Some(Self::CmdLjidiffpakl), + "CmdPCNKHELGLHJ" => Some(Self::CmdPcnkhelglhj), + "CmdHHFJJDMGIIP" => Some(Self::CmdHhfjjdmgiip), _ => None, } } @@ -76448,32 +75728,26 @@ impl CmdMonopolyType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Gojoindbkik { - MonopolySocialEventStatusNone = 0, - MonopolySocialEventStatusWaitingSelectFriend = 1, +pub enum Gabofmfnmhh { + Alocmfakbkp = 0, + Hjmjcjmomaf = 1, } -impl Gojoindbkik { +impl Gabofmfnmhh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MonopolySocialEventStatusNone => "MONOPOLY_SOCIAL_EVENT_STATUS_NONE", - Self::MonopolySocialEventStatusWaitingSelectFriend => { - "MONOPOLY_SOCIAL_EVENT_STATUS_WAITING_SELECT_FRIEND" - } + Self::Alocmfakbkp => "GABOFMFNMHH_ALOCMFAKBKP", + Self::Hjmjcjmomaf => "GABOFMFNMHH_HJMJCJMOMAF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MONOPOLY_SOCIAL_EVENT_STATUS_NONE" => { - Some(Self::MonopolySocialEventStatusNone) - } - "MONOPOLY_SOCIAL_EVENT_STATUS_WAITING_SELECT_FRIEND" => { - Some(Self::MonopolySocialEventStatusWaitingSelectFriend) - } + "GABOFMFNMHH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "GABOFMFNMHH_HJMJCJMOMAF" => Some(Self::Hjmjcjmomaf), _ => None, } } @@ -76481,32 +75755,32 @@ impl Gojoindbkik { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ihgjllngdkl { - MonopolyCellStateIdle = 0, - MonopolyCellStateBarrier = 1, - MonopolyCellStateGround = 2, - MonopolyCellStateFinish = 3, +pub enum Cgngjgpejoc { + Mokkbomcmef = 0, + Gidabcngibb = 1, + Jbfjhmhpccd = 2, + Eddpgfacjae = 3, } -impl Ihgjllngdkl { +impl Cgngjgpejoc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MonopolyCellStateIdle => "MONOPOLY_CELL_STATE_IDLE", - Self::MonopolyCellStateBarrier => "MONOPOLY_CELL_STATE_BARRIER", - Self::MonopolyCellStateGround => "MONOPOLY_CELL_STATE_GROUND", - Self::MonopolyCellStateFinish => "MONOPOLY_CELL_STATE_FINISH", + Self::Mokkbomcmef => "CGNGJGPEJOC_MOKKBOMCMEF", + Self::Gidabcngibb => "CGNGJGPEJOC_GIDABCNGIBB", + Self::Jbfjhmhpccd => "CGNGJGPEJOC_JBFJHMHPCCD", + Self::Eddpgfacjae => "CGNGJGPEJOC_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MONOPOLY_CELL_STATE_IDLE" => Some(Self::MonopolyCellStateIdle), - "MONOPOLY_CELL_STATE_BARRIER" => Some(Self::MonopolyCellStateBarrier), - "MONOPOLY_CELL_STATE_GROUND" => Some(Self::MonopolyCellStateGround), - "MONOPOLY_CELL_STATE_FINISH" => Some(Self::MonopolyCellStateFinish), + "CGNGJGPEJOC_MOKKBOMCMEF" => Some(Self::Mokkbomcmef), + "CGNGJGPEJOC_GIDABCNGIBB" => Some(Self::Gidabcngibb), + "CGNGJGPEJOC_JBFJHMHPCCD" => Some(Self::Jbfjhmhpccd), + "CGNGJGPEJOC_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -76514,97 +75788,53 @@ impl Ihgjllngdkl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Gkejfkakenm { - MonopolyActionResultSourceTypeNone = 0, - MonopolyActionResultSourceTypeEffect = 1, - MonopolyActionResultSourceTypeAssetBonus = 2, - MonopolyActionResultSourceTypeAssetTax = 3, - MonopolyActionResultSourceTypeAssetUpgrade = 4, - MonopolyActionResultSourceTypeGameSettle = 5, - MonopolyActionResultSourceTypeBuyGoods = 6, - MonopolyActionResultSourceTypeClick = 7, - MonopolyActionResultSourceTypeSocialEvent = 8, - MonopolyActionResultSourceTypeLike = 9, - MonopolyActionResultSourceTypeQuizGameSettle = 10, +pub enum Nfjjfbmmcdj { + Alocmfakbkp = 0, + Abnlblodgbc = 1, + Cidnfejimcb = 2, + Oifldlcijhp = 3, + Laiaoacidoo = 4, + Iiljndphmbd = 5, + Koapdlpldhn = 6, + Ibammjhmehk = 7, + Kaoecnopbfl = 8, + Ijboccndbej = 9, + Dgllockjbgi = 10, } -impl Gkejfkakenm { +impl Nfjjfbmmcdj { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MonopolyActionResultSourceTypeNone => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_NONE" - } - Self::MonopolyActionResultSourceTypeEffect => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_EFFECT" - } - Self::MonopolyActionResultSourceTypeAssetBonus => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_ASSET_BONUS" - } - Self::MonopolyActionResultSourceTypeAssetTax => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_ASSET_TAX" - } - Self::MonopolyActionResultSourceTypeAssetUpgrade => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_ASSET_UPGRADE" - } - Self::MonopolyActionResultSourceTypeGameSettle => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_GAME_SETTLE" - } - Self::MonopolyActionResultSourceTypeBuyGoods => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_BUY_GOODS" - } - Self::MonopolyActionResultSourceTypeClick => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_CLICK" - } - Self::MonopolyActionResultSourceTypeSocialEvent => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_SOCIAL_EVENT" - } - Self::MonopolyActionResultSourceTypeLike => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_LIKE" - } - Self::MonopolyActionResultSourceTypeQuizGameSettle => { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_QUIZ_GAME_SETTLE" - } + Self::Alocmfakbkp => "NFJJFBMMCDJ_ALOCMFAKBKP", + Self::Abnlblodgbc => "NFJJFBMMCDJ_ABNLBLODGBC", + Self::Cidnfejimcb => "NFJJFBMMCDJ_CIDNFEJIMCB", + Self::Oifldlcijhp => "NFJJFBMMCDJ_OIFLDLCIJHP", + Self::Laiaoacidoo => "NFJJFBMMCDJ_LAIAOACIDOO", + Self::Iiljndphmbd => "NFJJFBMMCDJ_IILJNDPHMBD", + Self::Koapdlpldhn => "NFJJFBMMCDJ_KOAPDLPLDHN", + Self::Ibammjhmehk => "NFJJFBMMCDJ_IBAMMJHMEHK", + Self::Kaoecnopbfl => "NFJJFBMMCDJ_KAOECNOPBFL", + Self::Ijboccndbej => "NFJJFBMMCDJ_IJBOCCNDBEJ", + Self::Dgllockjbgi => "NFJJFBMMCDJ_DGLLOCKJBGI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_NONE" => { - Some(Self::MonopolyActionResultSourceTypeNone) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_EFFECT" => { - Some(Self::MonopolyActionResultSourceTypeEffect) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_ASSET_BONUS" => { - Some(Self::MonopolyActionResultSourceTypeAssetBonus) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_ASSET_TAX" => { - Some(Self::MonopolyActionResultSourceTypeAssetTax) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_ASSET_UPGRADE" => { - Some(Self::MonopolyActionResultSourceTypeAssetUpgrade) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_GAME_SETTLE" => { - Some(Self::MonopolyActionResultSourceTypeGameSettle) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_BUY_GOODS" => { - Some(Self::MonopolyActionResultSourceTypeBuyGoods) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_CLICK" => { - Some(Self::MonopolyActionResultSourceTypeClick) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_SOCIAL_EVENT" => { - Some(Self::MonopolyActionResultSourceTypeSocialEvent) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_LIKE" => { - Some(Self::MonopolyActionResultSourceTypeLike) - } - "MONOPOLY_ACTION_RESULT_SOURCE_TYPE_QUIZ_GAME_SETTLE" => { - Some(Self::MonopolyActionResultSourceTypeQuizGameSettle) - } + "NFJJFBMMCDJ_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "NFJJFBMMCDJ_ABNLBLODGBC" => Some(Self::Abnlblodgbc), + "NFJJFBMMCDJ_CIDNFEJIMCB" => Some(Self::Cidnfejimcb), + "NFJJFBMMCDJ_OIFLDLCIJHP" => Some(Self::Oifldlcijhp), + "NFJJFBMMCDJ_LAIAOACIDOO" => Some(Self::Laiaoacidoo), + "NFJJFBMMCDJ_IILJNDPHMBD" => Some(Self::Iiljndphmbd), + "NFJJFBMMCDJ_KOAPDLPLDHN" => Some(Self::Koapdlpldhn), + "NFJJFBMMCDJ_IBAMMJHMEHK" => Some(Self::Ibammjhmehk), + "NFJJFBMMCDJ_KAOECNOPBFL" => Some(Self::Kaoecnopbfl), + "NFJJFBMMCDJ_IJBOCCNDBEJ" => Some(Self::Ijboccndbej), + "NFJJFBMMCDJ_DGLLOCKJBGI" => Some(Self::Dgllockjbgi), _ => None, } } @@ -76613,22 +75843,22 @@ impl Gkejfkakenm { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMultiplayerType { - None = 0, - CmdMultiplayerGetFightGateCsReq = 1098, - CmdMultiplayerGetFightGateScRsp = 1065, - CmdMultiplayerFightGiveUpCsReq = 1083, - CmdMultiplayerGetMatchPlayDataScRsp = 1081, - CmdMultiplayerGetMatchPlayDataCsReq = 1044, - CmdMultiplayerGetMatchPlayFriendRankingInfoScRsp = 1015, - CmdMultiplayerGetMatchPlayFriendRankingInfoCsReq = 1057, - CmdMultiplayerMatchPlayFriendRankingInfoChangeScNotify = 1092, - CmdMultiplayerFightGiveUpScRsp = 1086, - CmdMultiplayerFightGameStateCsReq = 1099, - CmdMultiplayerFightGameStartScNotify = 1094, - CmdMultiplayerFightGameFinishScNotify = 1052, - CmdMultiplayerFightGameStateScRsp = 1023, - CmdMultiplayerMatch3FinishScNotify = 1019, - CmdMultiplayerMatchPlayDataChangeScNotify = 1069, + AbhgjjncpomAlocmfakbkp = 0, + CmdEchfciciago = 1011, + CmdDjnjlmodhfb = 1038, + CmdBiapihnjhin = 1076, + CmdNedmnnmkcfd = 1051, + CmdMfcmnnjghdj = 1050, + CmdAilpjkhcggb = 1095, + CmdGcjndoagdif = 1045, + CmdGpafhgjocgh = 1061, + CmdDncijboacfo = 1089, + CmdOkbdgicagaa = 1047, + CmdHhmdejfgfkg = 1091, + CmdPclpimjpadf = 1009, + CmdNmfbemkibed = 1017, + CmdKjebhaeapcg = 1020, + CmdFocopoalnfp = 1052, } impl CmdMultiplayerType { /// String value of the enum field names used in the ProtoBuf definition. @@ -76637,95 +75867,43 @@ impl CmdMultiplayerType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMultiplayerTypeNone", - Self::CmdMultiplayerGetFightGateCsReq => "CmdMultiplayerGetFightGateCsReq", - Self::CmdMultiplayerGetFightGateScRsp => "CmdMultiplayerGetFightGateScRsp", - Self::CmdMultiplayerFightGiveUpCsReq => "CmdMultiplayerFightGiveUpCsReq", - Self::CmdMultiplayerGetMatchPlayDataScRsp => { - "CmdMultiplayerGetMatchPlayDataScRsp" - } - Self::CmdMultiplayerGetMatchPlayDataCsReq => { - "CmdMultiplayerGetMatchPlayDataCsReq" - } - Self::CmdMultiplayerGetMatchPlayFriendRankingInfoScRsp => { - "CmdMultiplayerGetMatchPlayFriendRankingInfoScRsp" - } - Self::CmdMultiplayerGetMatchPlayFriendRankingInfoCsReq => { - "CmdMultiplayerGetMatchPlayFriendRankingInfoCsReq" - } - Self::CmdMultiplayerMatchPlayFriendRankingInfoChangeScNotify => { - "CmdMultiplayerMatchPlayFriendRankingInfoChangeScNotify" - } - Self::CmdMultiplayerFightGiveUpScRsp => "CmdMultiplayerFightGiveUpScRsp", - Self::CmdMultiplayerFightGameStateCsReq => { - "CmdMultiplayerFightGameStateCsReq" - } - Self::CmdMultiplayerFightGameStartScNotify => { - "CmdMultiplayerFightGameStartScNotify" - } - Self::CmdMultiplayerFightGameFinishScNotify => { - "CmdMultiplayerFightGameFinishScNotify" - } - Self::CmdMultiplayerFightGameStateScRsp => { - "CmdMultiplayerFightGameStateScRsp" - } - Self::CmdMultiplayerMatch3FinishScNotify => { - "CmdMultiplayerMatch3FinishScNotify" - } - Self::CmdMultiplayerMatchPlayDataChangeScNotify => { - "CmdMultiplayerMatchPlayDataChangeScNotify" - } + Self::AbhgjjncpomAlocmfakbkp => "ABHGJJNCPOM_ALOCMFAKBKP", + Self::CmdEchfciciago => "CmdECHFCICIAGO", + Self::CmdDjnjlmodhfb => "CmdDJNJLMODHFB", + Self::CmdBiapihnjhin => "CmdBIAPIHNJHIN", + Self::CmdNedmnnmkcfd => "CmdNEDMNNMKCFD", + Self::CmdMfcmnnjghdj => "CmdMFCMNNJGHDJ", + Self::CmdAilpjkhcggb => "CmdAILPJKHCGGB", + Self::CmdGcjndoagdif => "CmdGCJNDOAGDIF", + Self::CmdGpafhgjocgh => "CmdGPAFHGJOCGH", + Self::CmdDncijboacfo => "CmdDNCIJBOACFO", + Self::CmdOkbdgicagaa => "CmdOKBDGICAGAA", + Self::CmdHhmdejfgfkg => "CmdHHMDEJFGFKG", + Self::CmdPclpimjpadf => "CmdPCLPIMJPADF", + Self::CmdNmfbemkibed => "CmdNMFBEMKIBED", + Self::CmdKjebhaeapcg => "CmdKJEBHAEAPCG", + Self::CmdFocopoalnfp => "CmdFOCOPOALNFP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMultiplayerTypeNone" => Some(Self::None), - "CmdMultiplayerGetFightGateCsReq" => { - Some(Self::CmdMultiplayerGetFightGateCsReq) - } - "CmdMultiplayerGetFightGateScRsp" => { - Some(Self::CmdMultiplayerGetFightGateScRsp) - } - "CmdMultiplayerFightGiveUpCsReq" => { - Some(Self::CmdMultiplayerFightGiveUpCsReq) - } - "CmdMultiplayerGetMatchPlayDataScRsp" => { - Some(Self::CmdMultiplayerGetMatchPlayDataScRsp) - } - "CmdMultiplayerGetMatchPlayDataCsReq" => { - Some(Self::CmdMultiplayerGetMatchPlayDataCsReq) - } - "CmdMultiplayerGetMatchPlayFriendRankingInfoScRsp" => { - Some(Self::CmdMultiplayerGetMatchPlayFriendRankingInfoScRsp) - } - "CmdMultiplayerGetMatchPlayFriendRankingInfoCsReq" => { - Some(Self::CmdMultiplayerGetMatchPlayFriendRankingInfoCsReq) - } - "CmdMultiplayerMatchPlayFriendRankingInfoChangeScNotify" => { - Some(Self::CmdMultiplayerMatchPlayFriendRankingInfoChangeScNotify) - } - "CmdMultiplayerFightGiveUpScRsp" => { - Some(Self::CmdMultiplayerFightGiveUpScRsp) - } - "CmdMultiplayerFightGameStateCsReq" => { - Some(Self::CmdMultiplayerFightGameStateCsReq) - } - "CmdMultiplayerFightGameStartScNotify" => { - Some(Self::CmdMultiplayerFightGameStartScNotify) - } - "CmdMultiplayerFightGameFinishScNotify" => { - Some(Self::CmdMultiplayerFightGameFinishScNotify) - } - "CmdMultiplayerFightGameStateScRsp" => { - Some(Self::CmdMultiplayerFightGameStateScRsp) - } - "CmdMultiplayerMatch3FinishScNotify" => { - Some(Self::CmdMultiplayerMatch3FinishScNotify) - } - "CmdMultiplayerMatchPlayDataChangeScNotify" => { - Some(Self::CmdMultiplayerMatchPlayDataChangeScNotify) - } + "ABHGJJNCPOM_ALOCMFAKBKP" => Some(Self::AbhgjjncpomAlocmfakbkp), + "CmdECHFCICIAGO" => Some(Self::CmdEchfciciago), + "CmdDJNJLMODHFB" => Some(Self::CmdDjnjlmodhfb), + "CmdBIAPIHNJHIN" => Some(Self::CmdBiapihnjhin), + "CmdNEDMNNMKCFD" => Some(Self::CmdNedmnnmkcfd), + "CmdMFCMNNJGHDJ" => Some(Self::CmdMfcmnnjghdj), + "CmdAILPJKHCGGB" => Some(Self::CmdAilpjkhcggb), + "CmdGCJNDOAGDIF" => Some(Self::CmdGcjndoagdif), + "CmdGPAFHGJOCGH" => Some(Self::CmdGpafhgjocgh), + "CmdDNCIJBOACFO" => Some(Self::CmdDncijboacfo), + "CmdOKBDGICAGAA" => Some(Self::CmdOkbdgicagaa), + "CmdHHMDEJFGFKG" => Some(Self::CmdHhmdejfgfkg), + "CmdPCLPIMJPADF" => Some(Self::CmdPclpimjpadf), + "CmdNMFBEMKIBED" => Some(Self::CmdNmfbemkibed), + "CmdKJEBHAEAPCG" => Some(Self::CmdKjebhaeapcg), + "CmdFOCOPOALNFP" => Some(Self::CmdFocopoalnfp), _ => None, } } @@ -76734,13 +75912,13 @@ impl CmdMultiplayerType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMultipleDropType { - None = 0, - CmdGetMultipleDropInfoCsReq = 4699, - CmdGetPlayerReturnMultiDropInfoScRsp = 4683, - CmdMultipleDropInfoScNotify = 4698, - CmdGetPlayerReturnMultiDropInfoCsReq = 4665, - CmdGetMultipleDropInfoScRsp = 4623, - CmdMultipleDropInfoNotify = 4686, + LoanbhdopniAlocmfakbkp = 0, + CmdGaiehaknmmf = 4609, + CmdCkgjhjgaepp = 4611, + CmdCnooefbflcl = 4617, + CmdHpidgcjdpee = 4651, + CmdPdphclpcnbp = 4647, + CmdMamdabmcimp = 4638, } impl CmdMultipleDropType { /// String value of the enum field names used in the ProtoBuf definition. @@ -76749,33 +75927,25 @@ impl CmdMultipleDropType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMultipleDropTypeNone", - Self::CmdGetMultipleDropInfoCsReq => "CmdGetMultipleDropInfoCsReq", - Self::CmdGetPlayerReturnMultiDropInfoScRsp => { - "CmdGetPlayerReturnMultiDropInfoScRsp" - } - Self::CmdMultipleDropInfoScNotify => "CmdMultipleDropInfoScNotify", - Self::CmdGetPlayerReturnMultiDropInfoCsReq => { - "CmdGetPlayerReturnMultiDropInfoCsReq" - } - Self::CmdGetMultipleDropInfoScRsp => "CmdGetMultipleDropInfoScRsp", - Self::CmdMultipleDropInfoNotify => "CmdMultipleDropInfoNotify", + Self::LoanbhdopniAlocmfakbkp => "LOANBHDOPNI_ALOCMFAKBKP", + Self::CmdGaiehaknmmf => "CmdGAIEHAKNMMF", + Self::CmdCkgjhjgaepp => "CmdCKGJHJGAEPP", + Self::CmdCnooefbflcl => "CmdCNOOEFBFLCL", + Self::CmdHpidgcjdpee => "CmdHPIDGCJDPEE", + Self::CmdPdphclpcnbp => "CmdPDPHCLPCNBP", + Self::CmdMamdabmcimp => "CmdMAMDABMCIMP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMultipleDropTypeNone" => Some(Self::None), - "CmdGetMultipleDropInfoCsReq" => Some(Self::CmdGetMultipleDropInfoCsReq), - "CmdGetPlayerReturnMultiDropInfoScRsp" => { - Some(Self::CmdGetPlayerReturnMultiDropInfoScRsp) - } - "CmdMultipleDropInfoScNotify" => Some(Self::CmdMultipleDropInfoScNotify), - "CmdGetPlayerReturnMultiDropInfoCsReq" => { - Some(Self::CmdGetPlayerReturnMultiDropInfoCsReq) - } - "CmdGetMultipleDropInfoScRsp" => Some(Self::CmdGetMultipleDropInfoScRsp), - "CmdMultipleDropInfoNotify" => Some(Self::CmdMultipleDropInfoNotify), + "LOANBHDOPNI_ALOCMFAKBKP" => Some(Self::LoanbhdopniAlocmfakbkp), + "CmdGAIEHAKNMMF" => Some(Self::CmdGaiehaknmmf), + "CmdCKGJHJGAEPP" => Some(Self::CmdCkgjhjgaepp), + "CmdCNOOEFBFLCL" => Some(Self::CmdCnooefbflcl), + "CmdHPIDGCJDPEE" => Some(Self::CmdHpidgcjdpee), + "CmdPDPHCLPCNBP" => Some(Self::CmdPdphclpcnbp), + "CmdMAMDABMCIMP" => Some(Self::CmdMamdabmcimp), _ => None, } } @@ -76784,36 +75954,36 @@ impl CmdMultipleDropType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMuseumType { - None = 0, - CmdMuseumInfoChangedScNotify = 4368, - CmdMuseumTakeCollectRewardCsReq = 4359, - CmdGetStuffScNotify = 4319, - CmdGetMuseumInfoScRsp = 4323, - CmdRemoveStuffFromAreaScRsp = 4352, - CmdUpgradeAreaStatScRsp = 4337, - CmdUpgradeAreaScRsp = 4315, - CmdMuseumTargetStartNotify = 4303, - CmdMuseumDispatchFinishedScNotify = 4338, - CmdMuseumRandomEventSelectScRsp = 4329, - CmdMuseumFundsChangedScNotify = 4349, - CmdFinishCurTurnScRsp = 4369, - CmdSetStuffToAreaCsReq = 4383, - CmdSetStuffToAreaScRsp = 4386, - CmdRemoveStuffFromAreaCsReq = 4394, - CmdMuseumTakeCollectRewardScRsp = 4322, - CmdMuseumTargetMissionFinishNotify = 4309, - CmdGetExhibitScNotify = 4344, - CmdUpgradeAreaStatCsReq = 4392, - CmdMuseumRandomEventSelectCsReq = 4351, - CmdFinishCurTurnCsReq = 4381, - CmdMuseumRandomEventQueryCsReq = 4377, - CmdMuseumTargetRewardNotify = 4362, - CmdMuseumRandomEventQueryScRsp = 4305, - CmdMuseumRandomEventStartScNotify = 4380, - CmdBuyNpcStuffScRsp = 4365, - CmdBuyNpcStuffCsReq = 4398, - CmdGetMuseumInfoCsReq = 4399, - CmdUpgradeAreaCsReq = 4357, + LibadlfmlihAlocmfakbkp = 0, + CmdAhjknpinkic = 4367, + CmdLkggbagpdno = 4337, + CmdBmjhomaffkp = 4381, + CmdBccmmojgdpm = 4362, + CmdPbgpjkjidje = 4320, + CmdJjbabpchhfn = 4315, + CmdAkmjjopbnbl = 4389, + CmdEobdamhnocd = 4314, + CmdFkieednbpco = 4352, + CmdBcfiiljhalj = 4357, + CmdLpmbcegllen = 4347, + CmdHohhdideemo = 4391, + CmdLcleaogmnml = 4361, + CmdEodcbbdgfda = 4392, + CmdDelnphojhii = 4351, + CmdObabkhghkfb = 4338, + CmdBfhhoioblmi = 4398, + CmdLjmdjdfodkm = 4335, + CmdLlgkdecgehj = 4326, + CmdJnbbfoiodia = 4395, + CmdNmehfcjaack = 4345, + CmdOdijhinadin = 4317, + CmdDcdhmpbnlla = 4310, + CmdHdpcknipilg = 4350, + CmdAbeeiihopkj = 4311, + CmdLoelhdfpjkd = 4309, + CmdImlkdfclbil = 4393, + CmdNdgodkmmmfj = 4376, + CmdEjpnncnlonc = 4346, } impl CmdMuseumType { /// String value of the enum field names used in the ProtoBuf definition. @@ -76822,95 +75992,71 @@ impl CmdMuseumType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMuseumTypeNone", - Self::CmdMuseumInfoChangedScNotify => "CmdMuseumInfoChangedScNotify", - Self::CmdMuseumTakeCollectRewardCsReq => "CmdMuseumTakeCollectRewardCsReq", - Self::CmdGetStuffScNotify => "CmdGetStuffScNotify", - Self::CmdGetMuseumInfoScRsp => "CmdGetMuseumInfoScRsp", - Self::CmdRemoveStuffFromAreaScRsp => "CmdRemoveStuffFromAreaScRsp", - Self::CmdUpgradeAreaStatScRsp => "CmdUpgradeAreaStatScRsp", - Self::CmdUpgradeAreaScRsp => "CmdUpgradeAreaScRsp", - Self::CmdMuseumTargetStartNotify => "CmdMuseumTargetStartNotify", - Self::CmdMuseumDispatchFinishedScNotify => { - "CmdMuseumDispatchFinishedScNotify" - } - Self::CmdMuseumRandomEventSelectScRsp => "CmdMuseumRandomEventSelectScRsp", - Self::CmdMuseumFundsChangedScNotify => "CmdMuseumFundsChangedScNotify", - Self::CmdFinishCurTurnScRsp => "CmdFinishCurTurnScRsp", - Self::CmdSetStuffToAreaCsReq => "CmdSetStuffToAreaCsReq", - Self::CmdSetStuffToAreaScRsp => "CmdSetStuffToAreaScRsp", - Self::CmdRemoveStuffFromAreaCsReq => "CmdRemoveStuffFromAreaCsReq", - Self::CmdMuseumTakeCollectRewardScRsp => "CmdMuseumTakeCollectRewardScRsp", - Self::CmdMuseumTargetMissionFinishNotify => { - "CmdMuseumTargetMissionFinishNotify" - } - Self::CmdGetExhibitScNotify => "CmdGetExhibitScNotify", - Self::CmdUpgradeAreaStatCsReq => "CmdUpgradeAreaStatCsReq", - Self::CmdMuseumRandomEventSelectCsReq => "CmdMuseumRandomEventSelectCsReq", - Self::CmdFinishCurTurnCsReq => "CmdFinishCurTurnCsReq", - Self::CmdMuseumRandomEventQueryCsReq => "CmdMuseumRandomEventQueryCsReq", - Self::CmdMuseumTargetRewardNotify => "CmdMuseumTargetRewardNotify", - Self::CmdMuseumRandomEventQueryScRsp => "CmdMuseumRandomEventQueryScRsp", - Self::CmdMuseumRandomEventStartScNotify => { - "CmdMuseumRandomEventStartScNotify" - } - Self::CmdBuyNpcStuffScRsp => "CmdBuyNpcStuffScRsp", - Self::CmdBuyNpcStuffCsReq => "CmdBuyNpcStuffCsReq", - Self::CmdGetMuseumInfoCsReq => "CmdGetMuseumInfoCsReq", - Self::CmdUpgradeAreaCsReq => "CmdUpgradeAreaCsReq", + Self::LibadlfmlihAlocmfakbkp => "LIBADLFMLIH_ALOCMFAKBKP", + Self::CmdAhjknpinkic => "CmdAHJKNPINKIC", + Self::CmdLkggbagpdno => "CmdLKGGBAGPDNO", + Self::CmdBmjhomaffkp => "CmdBMJHOMAFFKP", + Self::CmdBccmmojgdpm => "CmdBCCMMOJGDPM", + Self::CmdPbgpjkjidje => "CmdPBGPJKJIDJE", + Self::CmdJjbabpchhfn => "CmdJJBABPCHHFN", + Self::CmdAkmjjopbnbl => "CmdAKMJJOPBNBL", + Self::CmdEobdamhnocd => "CmdEOBDAMHNOCD", + Self::CmdFkieednbpco => "CmdFKIEEDNBPCO", + Self::CmdBcfiiljhalj => "CmdBCFIILJHALJ", + Self::CmdLpmbcegllen => "CmdLPMBCEGLLEN", + Self::CmdHohhdideemo => "CmdHOHHDIDEEMO", + Self::CmdLcleaogmnml => "CmdLCLEAOGMNML", + Self::CmdEodcbbdgfda => "CmdEODCBBDGFDA", + Self::CmdDelnphojhii => "CmdDELNPHOJHII", + Self::CmdObabkhghkfb => "CmdOBABKHGHKFB", + Self::CmdBfhhoioblmi => "CmdBFHHOIOBLMI", + Self::CmdLjmdjdfodkm => "CmdLJMDJDFODKM", + Self::CmdLlgkdecgehj => "CmdLLGKDECGEHJ", + Self::CmdJnbbfoiodia => "CmdJNBBFOIODIA", + Self::CmdNmehfcjaack => "CmdNMEHFCJAACK", + Self::CmdOdijhinadin => "CmdODIJHINADIN", + Self::CmdDcdhmpbnlla => "CmdDCDHMPBNLLA", + Self::CmdHdpcknipilg => "CmdHDPCKNIPILG", + Self::CmdAbeeiihopkj => "CmdABEEIIHOPKJ", + Self::CmdLoelhdfpjkd => "CmdLOELHDFPJKD", + Self::CmdImlkdfclbil => "CmdIMLKDFCLBIL", + Self::CmdNdgodkmmmfj => "CmdNDGODKMMMFJ", + Self::CmdEjpnncnlonc => "CmdEJPNNCNLONC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMuseumTypeNone" => Some(Self::None), - "CmdMuseumInfoChangedScNotify" => Some(Self::CmdMuseumInfoChangedScNotify), - "CmdMuseumTakeCollectRewardCsReq" => { - Some(Self::CmdMuseumTakeCollectRewardCsReq) - } - "CmdGetStuffScNotify" => Some(Self::CmdGetStuffScNotify), - "CmdGetMuseumInfoScRsp" => Some(Self::CmdGetMuseumInfoScRsp), - "CmdRemoveStuffFromAreaScRsp" => Some(Self::CmdRemoveStuffFromAreaScRsp), - "CmdUpgradeAreaStatScRsp" => Some(Self::CmdUpgradeAreaStatScRsp), - "CmdUpgradeAreaScRsp" => Some(Self::CmdUpgradeAreaScRsp), - "CmdMuseumTargetStartNotify" => Some(Self::CmdMuseumTargetStartNotify), - "CmdMuseumDispatchFinishedScNotify" => { - Some(Self::CmdMuseumDispatchFinishedScNotify) - } - "CmdMuseumRandomEventSelectScRsp" => { - Some(Self::CmdMuseumRandomEventSelectScRsp) - } - "CmdMuseumFundsChangedScNotify" => Some(Self::CmdMuseumFundsChangedScNotify), - "CmdFinishCurTurnScRsp" => Some(Self::CmdFinishCurTurnScRsp), - "CmdSetStuffToAreaCsReq" => Some(Self::CmdSetStuffToAreaCsReq), - "CmdSetStuffToAreaScRsp" => Some(Self::CmdSetStuffToAreaScRsp), - "CmdRemoveStuffFromAreaCsReq" => Some(Self::CmdRemoveStuffFromAreaCsReq), - "CmdMuseumTakeCollectRewardScRsp" => { - Some(Self::CmdMuseumTakeCollectRewardScRsp) - } - "CmdMuseumTargetMissionFinishNotify" => { - Some(Self::CmdMuseumTargetMissionFinishNotify) - } - "CmdGetExhibitScNotify" => Some(Self::CmdGetExhibitScNotify), - "CmdUpgradeAreaStatCsReq" => Some(Self::CmdUpgradeAreaStatCsReq), - "CmdMuseumRandomEventSelectCsReq" => { - Some(Self::CmdMuseumRandomEventSelectCsReq) - } - "CmdFinishCurTurnCsReq" => Some(Self::CmdFinishCurTurnCsReq), - "CmdMuseumRandomEventQueryCsReq" => { - Some(Self::CmdMuseumRandomEventQueryCsReq) - } - "CmdMuseumTargetRewardNotify" => Some(Self::CmdMuseumTargetRewardNotify), - "CmdMuseumRandomEventQueryScRsp" => { - Some(Self::CmdMuseumRandomEventQueryScRsp) - } - "CmdMuseumRandomEventStartScNotify" => { - Some(Self::CmdMuseumRandomEventStartScNotify) - } - "CmdBuyNpcStuffScRsp" => Some(Self::CmdBuyNpcStuffScRsp), - "CmdBuyNpcStuffCsReq" => Some(Self::CmdBuyNpcStuffCsReq), - "CmdGetMuseumInfoCsReq" => Some(Self::CmdGetMuseumInfoCsReq), - "CmdUpgradeAreaCsReq" => Some(Self::CmdUpgradeAreaCsReq), + "LIBADLFMLIH_ALOCMFAKBKP" => Some(Self::LibadlfmlihAlocmfakbkp), + "CmdAHJKNPINKIC" => Some(Self::CmdAhjknpinkic), + "CmdLKGGBAGPDNO" => Some(Self::CmdLkggbagpdno), + "CmdBMJHOMAFFKP" => Some(Self::CmdBmjhomaffkp), + "CmdBCCMMOJGDPM" => Some(Self::CmdBccmmojgdpm), + "CmdPBGPJKJIDJE" => Some(Self::CmdPbgpjkjidje), + "CmdJJBABPCHHFN" => Some(Self::CmdJjbabpchhfn), + "CmdAKMJJOPBNBL" => Some(Self::CmdAkmjjopbnbl), + "CmdEOBDAMHNOCD" => Some(Self::CmdEobdamhnocd), + "CmdFKIEEDNBPCO" => Some(Self::CmdFkieednbpco), + "CmdBCFIILJHALJ" => Some(Self::CmdBcfiiljhalj), + "CmdLPMBCEGLLEN" => Some(Self::CmdLpmbcegllen), + "CmdHOHHDIDEEMO" => Some(Self::CmdHohhdideemo), + "CmdLCLEAOGMNML" => Some(Self::CmdLcleaogmnml), + "CmdEODCBBDGFDA" => Some(Self::CmdEodcbbdgfda), + "CmdDELNPHOJHII" => Some(Self::CmdDelnphojhii), + "CmdOBABKHGHKFB" => Some(Self::CmdObabkhghkfb), + "CmdBFHHOIOBLMI" => Some(Self::CmdBfhhoioblmi), + "CmdLJMDJDFODKM" => Some(Self::CmdLjmdjdfodkm), + "CmdLLGKDECGEHJ" => Some(Self::CmdLlgkdecgehj), + "CmdJNBBFOIODIA" => Some(Self::CmdJnbbfoiodia), + "CmdNMEHFCJAACK" => Some(Self::CmdNmehfcjaack), + "CmdODIJHINADIN" => Some(Self::CmdOdijhinadin), + "CmdDCDHMPBNLLA" => Some(Self::CmdDcdhmpbnlla), + "CmdHDPCKNIPILG" => Some(Self::CmdHdpcknipilg), + "CmdABEEIIHOPKJ" => Some(Self::CmdAbeeiihopkj), + "CmdLOELHDFPJKD" => Some(Self::CmdLoelhdfpjkd), + "CmdIMLKDFCLBIL" => Some(Self::CmdImlkdfclbil), + "CmdNDGODKMMMFJ" => Some(Self::CmdNdgodkmmmfj), + "CmdEJPNNCNLONC" => Some(Self::CmdEjpnncnlonc), _ => None, } } @@ -76918,38 +76064,32 @@ impl CmdMuseumType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Aihadkbhpbm { - MuseumRandomEventStateNone = 0, - MuseumRandomEventStateStart = 1, - MuseumRandomEventStateProcessing = 2, - MuseumRandomEventStateFinish = 3, +pub enum Fcdomojalja { + Alocmfakbkp = 0, + Jlojlhfjakf = 1, + Egnpknbehej = 2, + Eddpgfacjae = 3, } -impl Aihadkbhpbm { +impl Fcdomojalja { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::MuseumRandomEventStateNone => "MUSEUM_RANDOM_EVENT_STATE_NONE", - Self::MuseumRandomEventStateStart => "MUSEUM_RANDOM_EVENT_STATE_START", - Self::MuseumRandomEventStateProcessing => { - "MUSEUM_RANDOM_EVENT_STATE_PROCESSING" - } - Self::MuseumRandomEventStateFinish => "MUSEUM_RANDOM_EVENT_STATE_FINISH", + Self::Alocmfakbkp => "FCDOMOJALJA_ALOCMFAKBKP", + Self::Jlojlhfjakf => "FCDOMOJALJA_JLOJLHFJAKF", + Self::Egnpknbehej => "FCDOMOJALJA_EGNPKNBEHEJ", + Self::Eddpgfacjae => "FCDOMOJALJA_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MUSEUM_RANDOM_EVENT_STATE_NONE" => Some(Self::MuseumRandomEventStateNone), - "MUSEUM_RANDOM_EVENT_STATE_START" => Some(Self::MuseumRandomEventStateStart), - "MUSEUM_RANDOM_EVENT_STATE_PROCESSING" => { - Some(Self::MuseumRandomEventStateProcessing) - } - "MUSEUM_RANDOM_EVENT_STATE_FINISH" => { - Some(Self::MuseumRandomEventStateFinish) - } + "FCDOMOJALJA_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "FCDOMOJALJA_JLOJLHFJAKF" => Some(Self::Jlojlhfjakf), + "FCDOMOJALJA_EGNPKNBEHEJ" => Some(Self::Egnpknbehej), + "FCDOMOJALJA_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -76957,32 +76097,32 @@ impl Aihadkbhpbm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Kamlglmnjgj { - WorkPosNone = 0, - WorkPos1 = 1, - WorkPos2 = 2, - WorkPos3 = 3, +pub enum Kkgcjaodioj { + Alocmfakbkp = 0, + Bnmjhhikigk = 1, + Fegdbdibbjk = 2, + Loikhhcigdk = 3, } -impl Kamlglmnjgj { +impl Kkgcjaodioj { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::WorkPosNone => "WORK_POS_NONE", - Self::WorkPos1 => "WORK_POS_1", - Self::WorkPos2 => "WORK_POS_2", - Self::WorkPos3 => "WORK_POS_3", + Self::Alocmfakbkp => "KKGCJAODIOJ_ALOCMFAKBKP", + Self::Bnmjhhikigk => "KKGCJAODIOJ_BNMJHHIKIGK", + Self::Fegdbdibbjk => "KKGCJAODIOJ_FEGDBDIBBJK", + Self::Loikhhcigdk => "KKGCJAODIOJ_LOIKHHCIGDK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "WORK_POS_NONE" => Some(Self::WorkPosNone), - "WORK_POS_1" => Some(Self::WorkPos1), - "WORK_POS_2" => Some(Self::WorkPos2), - "WORK_POS_3" => Some(Self::WorkPos3), + "KKGCJAODIOJ_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "KKGCJAODIOJ_BNMJHHIKIGK" => Some(Self::Bnmjhhikigk), + "KKGCJAODIOJ_FEGDBDIBBJK" => Some(Self::Fegdbdibbjk), + "KKGCJAODIOJ_LOIKHHCIGDK" => Some(Self::Loikhhcigdk), _ => None, } } @@ -76990,32 +76130,32 @@ impl Kamlglmnjgj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ibbgdgghejl { - StatTypeNone = 0, - StatTypeArt = 1, - StatTypeCulture = 2, - StatTypePopular = 3, +pub enum Jmgagmkhclh { + Alocmfakbkp = 0, + Dkaecnfnmje = 1, + Agphpjeoeke = 2, + Boghefdddio = 3, } -impl Ibbgdgghejl { +impl Jmgagmkhclh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::StatTypeNone => "STAT_TYPE_NONE", - Self::StatTypeArt => "STAT_TYPE_ART", - Self::StatTypeCulture => "STAT_TYPE_CULTURE", - Self::StatTypePopular => "STAT_TYPE_POPULAR", + Self::Alocmfakbkp => "JMGAGMKHCLH_ALOCMFAKBKP", + Self::Dkaecnfnmje => "JMGAGMKHCLH_DKAECNFNMJE", + Self::Agphpjeoeke => "JMGAGMKHCLH_AGPHPJEOEKE", + Self::Boghefdddio => "JMGAGMKHCLH_BOGHEFDDDIO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "STAT_TYPE_NONE" => Some(Self::StatTypeNone), - "STAT_TYPE_ART" => Some(Self::StatTypeArt), - "STAT_TYPE_CULTURE" => Some(Self::StatTypeCulture), - "STAT_TYPE_POPULAR" => Some(Self::StatTypePopular), + "JMGAGMKHCLH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "JMGAGMKHCLH_DKAECNFNMJE" => Some(Self::Dkaecnfnmje), + "JMGAGMKHCLH_AGPHPJEOEKE" => Some(Self::Agphpjeoeke), + "JMGAGMKHCLH_BOGHEFDDDIO" => Some(Self::Boghefdddio), _ => None, } } @@ -77023,41 +76163,41 @@ impl Ibbgdgghejl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Kgjjjkpdcfg { - Unknow = 0, - MissionReward = 1, - EventBuyStuff = 2, - MarketBuyStuff = 3, - QuestReward = 4, - Initial = 5, - PhaseFinishReward = 6, +pub enum Jjdffmmbefi { + Jeinppcohom = 0, + Lhikiicmnjm = 1, + Akeemhfnmmh = 2, + Kommbeabbeg = 3, + Nojdhphjigh = 4, + Koiclkbdfab = 5, + Khplanmpjcm = 6, } -impl Kgjjjkpdcfg { +impl Jjdffmmbefi { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::Unknow => "UNKNOW", - Self::MissionReward => "MISSION_REWARD", - Self::EventBuyStuff => "EVENT_BUY_STUFF", - Self::MarketBuyStuff => "MARKET_BUY_STUFF", - Self::QuestReward => "QUEST_REWARD", - Self::Initial => "INITIAL", - Self::PhaseFinishReward => "PHASE_FINISH_REWARD", + Self::Jeinppcohom => "JJDFFMMBEFI_JEINPPCOHOM", + Self::Lhikiicmnjm => "JJDFFMMBEFI_LHIKIICMNJM", + Self::Akeemhfnmmh => "JJDFFMMBEFI_AKEEMHFNMMH", + Self::Kommbeabbeg => "JJDFFMMBEFI_KOMMBEABBEG", + Self::Nojdhphjigh => "JJDFFMMBEFI_NOJDHPHJIGH", + Self::Koiclkbdfab => "JJDFFMMBEFI_KOICLKBDFAB", + Self::Khplanmpjcm => "JJDFFMMBEFI_KHPLANMPJCM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "UNKNOW" => Some(Self::Unknow), - "MISSION_REWARD" => Some(Self::MissionReward), - "EVENT_BUY_STUFF" => Some(Self::EventBuyStuff), - "MARKET_BUY_STUFF" => Some(Self::MarketBuyStuff), - "QUEST_REWARD" => Some(Self::QuestReward), - "INITIAL" => Some(Self::Initial), - "PHASE_FINISH_REWARD" => Some(Self::PhaseFinishReward), + "JJDFFMMBEFI_JEINPPCOHOM" => Some(Self::Jeinppcohom), + "JJDFFMMBEFI_LHIKIICMNJM" => Some(Self::Lhikiicmnjm), + "JJDFFMMBEFI_AKEEMHFNMMH" => Some(Self::Akeemhfnmmh), + "JJDFFMMBEFI_KOMMBEABBEG" => Some(Self::Kommbeabbeg), + "JJDFFMMBEFI_NOJDHPHJIGH" => Some(Self::Nojdhphjigh), + "JJDFFMMBEFI_KOICLKBDFAB" => Some(Self::Koiclkbdfab), + "JJDFFMMBEFI_KHPLANMPJCM" => Some(Self::Khplanmpjcm), _ => None, } } @@ -77066,19 +76206,19 @@ impl Kgjjjkpdcfg { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdMusicRhythmType { - None = 0, - CmdMusicRhythmStartLevelCsReq = 7585, - CmdMusicRhythmUnlockSongSfxScNotify = 7587, - CmdMusicRhythmMaxDifficultyLevelsUnlockNotify = 7583, - CmdMusicRhythmSaveSongConfigDataScRsp = 7584, - CmdMusicRhythmDataCsReq = 7578, - CmdMusicRhythmStartLevelScRsp = 7593, - CmdMusicRhythmDataScRsp = 7571, - CmdMusicRhythmFinishLevelCsReq = 7595, - CmdMusicRhythmSaveSongConfigDataCsReq = 7600, - CmdMusicRhythmUnlockSongNotify = 7573, - CmdMusicRhythmFinishLevelScRsp = 7586, - CmdMusicRhythmUnlockTrackScNotify = 7591, + EnlabefnefmAlocmfakbkp = 0, + CmdMusicRhythmSaveSongConfigDataScRsp = 7588, + CmdMusicRhythmMaxDifficultyLevelsUnlockNotify = 7579, + CmdMusicRhythmSaveSongConfigDataCsReq = 7597, + CmdMusicRhythmStartLevelScRsp = 7583, + CmdMusicRhythmFinishLevelScRsp = 7587, + CmdMusicRhythmUnlockSongSfxScNotify = 7594, + CmdMusicRhythmUnlockSongNotify = 7582, + CmdMusicRhythmUnlockTrackScNotify = 7590, + CmdMusicRhythmStartLevelCsReq = 7575, + CmdMusicRhythmDataScRsp = 7580, + CmdMusicRhythmDataCsReq = 7593, + CmdMusicRhythmFinishLevelCsReq = 7577, } impl CmdMusicRhythmType { /// String value of the enum field names used in the ProtoBuf definition. @@ -77087,63 +76227,63 @@ impl CmdMusicRhythmType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdMusicRhythmTypeNone", - Self::CmdMusicRhythmStartLevelCsReq => "CmdMusicRhythmStartLevelCsReq", - Self::CmdMusicRhythmUnlockSongSfxScNotify => { - "CmdMusicRhythmUnlockSongSfxScNotify" + Self::EnlabefnefmAlocmfakbkp => "ENLABEFNEFM_ALOCMFAKBKP", + Self::CmdMusicRhythmSaveSongConfigDataScRsp => { + "CmdMusicRhythmSaveSongConfigDataScRsp" } Self::CmdMusicRhythmMaxDifficultyLevelsUnlockNotify => { "CmdMusicRhythmMaxDifficultyLevelsUnlockNotify" } - Self::CmdMusicRhythmSaveSongConfigDataScRsp => { - "CmdMusicRhythmSaveSongConfigDataScRsp" - } - Self::CmdMusicRhythmDataCsReq => "CmdMusicRhythmDataCsReq", - Self::CmdMusicRhythmStartLevelScRsp => "CmdMusicRhythmStartLevelScRsp", - Self::CmdMusicRhythmDataScRsp => "CmdMusicRhythmDataScRsp", - Self::CmdMusicRhythmFinishLevelCsReq => "CmdMusicRhythmFinishLevelCsReq", Self::CmdMusicRhythmSaveSongConfigDataCsReq => { "CmdMusicRhythmSaveSongConfigDataCsReq" } - Self::CmdMusicRhythmUnlockSongNotify => "CmdMusicRhythmUnlockSongNotify", + Self::CmdMusicRhythmStartLevelScRsp => "CmdMusicRhythmStartLevelScRsp", Self::CmdMusicRhythmFinishLevelScRsp => "CmdMusicRhythmFinishLevelScRsp", + Self::CmdMusicRhythmUnlockSongSfxScNotify => { + "CmdMusicRhythmUnlockSongSfxScNotify" + } + Self::CmdMusicRhythmUnlockSongNotify => "CmdMusicRhythmUnlockSongNotify", Self::CmdMusicRhythmUnlockTrackScNotify => { "CmdMusicRhythmUnlockTrackScNotify" } + Self::CmdMusicRhythmStartLevelCsReq => "CmdMusicRhythmStartLevelCsReq", + Self::CmdMusicRhythmDataScRsp => "CmdMusicRhythmDataScRsp", + Self::CmdMusicRhythmDataCsReq => "CmdMusicRhythmDataCsReq", + Self::CmdMusicRhythmFinishLevelCsReq => "CmdMusicRhythmFinishLevelCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdMusicRhythmTypeNone" => Some(Self::None), - "CmdMusicRhythmStartLevelCsReq" => Some(Self::CmdMusicRhythmStartLevelCsReq), - "CmdMusicRhythmUnlockSongSfxScNotify" => { - Some(Self::CmdMusicRhythmUnlockSongSfxScNotify) + "ENLABEFNEFM_ALOCMFAKBKP" => Some(Self::EnlabefnefmAlocmfakbkp), + "CmdMusicRhythmSaveSongConfigDataScRsp" => { + Some(Self::CmdMusicRhythmSaveSongConfigDataScRsp) } "CmdMusicRhythmMaxDifficultyLevelsUnlockNotify" => { Some(Self::CmdMusicRhythmMaxDifficultyLevelsUnlockNotify) } - "CmdMusicRhythmSaveSongConfigDataScRsp" => { - Some(Self::CmdMusicRhythmSaveSongConfigDataScRsp) - } - "CmdMusicRhythmDataCsReq" => Some(Self::CmdMusicRhythmDataCsReq), - "CmdMusicRhythmStartLevelScRsp" => Some(Self::CmdMusicRhythmStartLevelScRsp), - "CmdMusicRhythmDataScRsp" => Some(Self::CmdMusicRhythmDataScRsp), - "CmdMusicRhythmFinishLevelCsReq" => { - Some(Self::CmdMusicRhythmFinishLevelCsReq) - } "CmdMusicRhythmSaveSongConfigDataCsReq" => { Some(Self::CmdMusicRhythmSaveSongConfigDataCsReq) } + "CmdMusicRhythmStartLevelScRsp" => Some(Self::CmdMusicRhythmStartLevelScRsp), + "CmdMusicRhythmFinishLevelScRsp" => { + Some(Self::CmdMusicRhythmFinishLevelScRsp) + } + "CmdMusicRhythmUnlockSongSfxScNotify" => { + Some(Self::CmdMusicRhythmUnlockSongSfxScNotify) + } "CmdMusicRhythmUnlockSongNotify" => { Some(Self::CmdMusicRhythmUnlockSongNotify) } - "CmdMusicRhythmFinishLevelScRsp" => { - Some(Self::CmdMusicRhythmFinishLevelScRsp) - } "CmdMusicRhythmUnlockTrackScNotify" => { Some(Self::CmdMusicRhythmUnlockTrackScNotify) } + "CmdMusicRhythmStartLevelCsReq" => Some(Self::CmdMusicRhythmStartLevelCsReq), + "CmdMusicRhythmDataScRsp" => Some(Self::CmdMusicRhythmDataScRsp), + "CmdMusicRhythmDataCsReq" => Some(Self::CmdMusicRhythmDataCsReq), + "CmdMusicRhythmFinishLevelCsReq" => { + Some(Self::CmdMusicRhythmFinishLevelCsReq) + } _ => None, } } @@ -77151,26 +76291,26 @@ impl CmdMusicRhythmType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Epgdhhhdjdc { - StatusClose = 0, - StatusOpen = 1, +pub enum Mjcbododdjb { + Fiepconaofb = 0, + Heoikkicedp = 1, } -impl Epgdhhhdjdc { +impl Mjcbododdjb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::StatusClose => "STATUS_CLOSE", - Self::StatusOpen => "STATUS_OPEN", + Self::Fiepconaofb => "MJCBODODDJB_FIEPCONAOFB", + Self::Heoikkicedp => "MJCBODODDJB_HEOIKKICEDP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "STATUS_CLOSE" => Some(Self::StatusClose), - "STATUS_OPEN" => Some(Self::StatusOpen), + "MJCBODODDJB_FIEPCONAOFB" => Some(Self::Fiepconaofb), + "MJCBODODDJB_HEOIKKICEDP" => Some(Self::Heoikkicedp), _ => None, } } @@ -77179,14 +76319,14 @@ impl Epgdhhhdjdc { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdOfferingType { - None = 0, - CmdGetOfferingInfoCsReq = 6927, - CmdGetOfferingInfoScRsp = 6921, - CmdTakeOfferingRewardScRsp = 6935, - CmdOfferingInfoScNotify = 6928, - CmdSubmitOfferingItemCsReq = 6933, - CmdSubmitOfferingItemScRsp = 6939, - CmdTakeOfferingRewardCsReq = 6923, + NpbonjelbigAlocmfakbkp = 0, + CmdGetOfferingInfoCsReq = 6933, + CmdGetOfferingInfoScRsp = 6926, + CmdTakeOfferingRewardCsReq = 6934, + CmdOfferingInfoScNotify = 6923, + CmdSubmitOfferingItemCsReq = 6929, + CmdSubmitOfferingItemScRsp = 6925, + CmdTakeOfferingRewardScRsp = 6924, } impl CmdOfferingType { /// String value of the enum field names used in the ProtoBuf definition. @@ -77195,27 +76335,27 @@ impl CmdOfferingType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdOfferingTypeNone", + Self::NpbonjelbigAlocmfakbkp => "NPBONJELBIG_ALOCMFAKBKP", Self::CmdGetOfferingInfoCsReq => "CmdGetOfferingInfoCsReq", Self::CmdGetOfferingInfoScRsp => "CmdGetOfferingInfoScRsp", - Self::CmdTakeOfferingRewardScRsp => "CmdTakeOfferingRewardScRsp", + Self::CmdTakeOfferingRewardCsReq => "CmdTakeOfferingRewardCsReq", Self::CmdOfferingInfoScNotify => "CmdOfferingInfoScNotify", Self::CmdSubmitOfferingItemCsReq => "CmdSubmitOfferingItemCsReq", Self::CmdSubmitOfferingItemScRsp => "CmdSubmitOfferingItemScRsp", - Self::CmdTakeOfferingRewardCsReq => "CmdTakeOfferingRewardCsReq", + Self::CmdTakeOfferingRewardScRsp => "CmdTakeOfferingRewardScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdOfferingTypeNone" => Some(Self::None), + "NPBONJELBIG_ALOCMFAKBKP" => Some(Self::NpbonjelbigAlocmfakbkp), "CmdGetOfferingInfoCsReq" => Some(Self::CmdGetOfferingInfoCsReq), "CmdGetOfferingInfoScRsp" => Some(Self::CmdGetOfferingInfoScRsp), - "CmdTakeOfferingRewardScRsp" => Some(Self::CmdTakeOfferingRewardScRsp), + "CmdTakeOfferingRewardCsReq" => Some(Self::CmdTakeOfferingRewardCsReq), "CmdOfferingInfoScNotify" => Some(Self::CmdOfferingInfoScNotify), "CmdSubmitOfferingItemCsReq" => Some(Self::CmdSubmitOfferingItemCsReq), "CmdSubmitOfferingItemScRsp" => Some(Self::CmdSubmitOfferingItemScRsp), - "CmdTakeOfferingRewardCsReq" => Some(Self::CmdTakeOfferingRewardCsReq), + "CmdTakeOfferingRewardScRsp" => Some(Self::CmdTakeOfferingRewardScRsp), _ => None, } } @@ -77223,29 +76363,29 @@ impl CmdOfferingType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Fbomlibegoc { - OfferingStateNone = 0, - OfferingStateLock = 1, - OfferingStateOpen = 2, +pub enum OfferingState { + ChijimnpmhbAlocmfakbkp = 0, + ChijimnpmhbGbcmpododmc = 1, + ChijimnpmhbAffmpobfjik = 2, } -impl Fbomlibegoc { +impl OfferingState { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::OfferingStateNone => "OFFERING_STATE_NONE", - Self::OfferingStateLock => "OFFERING_STATE_LOCK", - Self::OfferingStateOpen => "OFFERING_STATE_OPEN", + Self::ChijimnpmhbAlocmfakbkp => "CHIJIMNPMHB_ALOCMFAKBKP", + Self::ChijimnpmhbGbcmpododmc => "CHIJIMNPMHB_GBCMPODODMC", + Self::ChijimnpmhbAffmpobfjik => "CHIJIMNPMHB_AFFMPOBFJIK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "OFFERING_STATE_NONE" => Some(Self::OfferingStateNone), - "OFFERING_STATE_LOCK" => Some(Self::OfferingStateLock), - "OFFERING_STATE_OPEN" => Some(Self::OfferingStateOpen), + "CHIJIMNPMHB_ALOCMFAKBKP" => Some(Self::ChijimnpmhbAlocmfakbkp), + "CHIJIMNPMHB_GBCMPODODMC" => Some(Self::ChijimnpmhbGbcmpododmc), + "CHIJIMNPMHB_AFFMPOBFJIK" => Some(Self::ChijimnpmhbAffmpobfjik), _ => None, } } @@ -77254,10 +76394,10 @@ impl Fbomlibegoc { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPamMissionType { - None = 0, - CmdAcceptedPamMissionExpireScRsp = 4023, - CmdSyncAcceptedPamMissionNotify = 4098, - CmdAcceptedPamMissionExpireCsReq = 4099, + IjpdhlikdbdAlocmfakbkp = 0, + CmdAcceptedPamMissionExpireScRsp = 4009, + CmdAcceptedPamMissionExpireCsReq = 4047, + CmdSyncAcceptedPamMissionNotify = 4038, } impl CmdPamMissionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -77266,25 +76406,25 @@ impl CmdPamMissionType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPamMissionTypeNone", + Self::IjpdhlikdbdAlocmfakbkp => "IJPDHLIKDBD_ALOCMFAKBKP", Self::CmdAcceptedPamMissionExpireScRsp => "CmdAcceptedPamMissionExpireScRsp", - Self::CmdSyncAcceptedPamMissionNotify => "CmdSyncAcceptedPamMissionNotify", Self::CmdAcceptedPamMissionExpireCsReq => "CmdAcceptedPamMissionExpireCsReq", + Self::CmdSyncAcceptedPamMissionNotify => "CmdSyncAcceptedPamMissionNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPamMissionTypeNone" => Some(Self::None), + "IJPDHLIKDBD_ALOCMFAKBKP" => Some(Self::IjpdhlikdbdAlocmfakbkp), "CmdAcceptedPamMissionExpireScRsp" => { Some(Self::CmdAcceptedPamMissionExpireScRsp) } - "CmdSyncAcceptedPamMissionNotify" => { - Some(Self::CmdSyncAcceptedPamMissionNotify) - } "CmdAcceptedPamMissionExpireCsReq" => { Some(Self::CmdAcceptedPamMissionExpireCsReq) } + "CmdSyncAcceptedPamMissionNotify" => { + Some(Self::CmdSyncAcceptedPamMissionNotify) + } _ => None, } } @@ -77293,12 +76433,12 @@ impl CmdPamMissionType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPamSkinType { - None = 0, - CmdSelectPamSkinCsReq = 8133, - CmdSelectPamSkinScRsp = 8139, - CmdUnlockPamSkinScNotify = 8123, - CmdGetPamSkinDataScRsp = 8121, - CmdGetPamSkinDataCsReq = 8127, + LaeclbnfgpcAlocmfakbkp = 0, + CmdUnlockPamSkinScNotify = 8134, + CmdSelectPamSkinCsReq = 8129, + CmdGetPamSkinDataCsReq = 8133, + CmdSelectPamSkinScRsp = 8125, + CmdGetPamSkinDataScRsp = 8126, } impl CmdPamSkinType { /// String value of the enum field names used in the ProtoBuf definition. @@ -77307,23 +76447,23 @@ impl CmdPamSkinType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPamSkinTypeNone", - Self::CmdSelectPamSkinCsReq => "CmdSelectPamSkinCsReq", - Self::CmdSelectPamSkinScRsp => "CmdSelectPamSkinScRsp", + Self::LaeclbnfgpcAlocmfakbkp => "LAECLBNFGPC_ALOCMFAKBKP", Self::CmdUnlockPamSkinScNotify => "CmdUnlockPamSkinScNotify", - Self::CmdGetPamSkinDataScRsp => "CmdGetPamSkinDataScRsp", + Self::CmdSelectPamSkinCsReq => "CmdSelectPamSkinCsReq", Self::CmdGetPamSkinDataCsReq => "CmdGetPamSkinDataCsReq", + Self::CmdSelectPamSkinScRsp => "CmdSelectPamSkinScRsp", + Self::CmdGetPamSkinDataScRsp => "CmdGetPamSkinDataScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPamSkinTypeNone" => Some(Self::None), - "CmdSelectPamSkinCsReq" => Some(Self::CmdSelectPamSkinCsReq), - "CmdSelectPamSkinScRsp" => Some(Self::CmdSelectPamSkinScRsp), + "LAECLBNFGPC_ALOCMFAKBKP" => Some(Self::LaeclbnfgpcAlocmfakbkp), "CmdUnlockPamSkinScNotify" => Some(Self::CmdUnlockPamSkinScNotify), - "CmdGetPamSkinDataScRsp" => Some(Self::CmdGetPamSkinDataScRsp), + "CmdSelectPamSkinCsReq" => Some(Self::CmdSelectPamSkinCsReq), "CmdGetPamSkinDataCsReq" => Some(Self::CmdGetPamSkinDataCsReq), + "CmdSelectPamSkinScRsp" => Some(Self::CmdSelectPamSkinScRsp), + "CmdGetPamSkinDataScRsp" => Some(Self::CmdGetPamSkinDataScRsp), _ => None, } } @@ -77332,15 +76472,15 @@ impl CmdPamSkinType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdParkourType { - None = 0, - CmdParkourStartLevelScRsp = 8395, - CmdParkourEndLevelCsReq = 8388, - CmdParkourStartLevelCsReq = 8383, - CmdParkourGetDataScRsp = 8381, - CmdParkourEndLevelScRsp = 8391, - CmdParkourGetDataCsReq = 8387, - CmdParkourGetRankingInfoCsReq = 8393, - CmdParkourGetRankingInfoScRsp = 8399, + GnfefflhhmpAlocmfakbkp = 0, + CmdGnlljmimnpc = 8386, + CmdLliemgcghdg = 8383, + CmdKiffldhfmll = 8394, + CmdBhhdigknggk = 8397, + CmdFpmfiippimo = 8389, + CmdLpikogpomni = 8384, + CmdHdbillenkmg = 8393, + CmdPpmgkfednol = 8385, } impl CmdParkourType { /// String value of the enum field names used in the ProtoBuf definition. @@ -77349,29 +76489,29 @@ impl CmdParkourType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdParkourTypeNone", - Self::CmdParkourStartLevelScRsp => "CmdParkourStartLevelScRsp", - Self::CmdParkourEndLevelCsReq => "CmdParkourEndLevelCsReq", - Self::CmdParkourStartLevelCsReq => "CmdParkourStartLevelCsReq", - Self::CmdParkourGetDataScRsp => "CmdParkourGetDataScRsp", - Self::CmdParkourEndLevelScRsp => "CmdParkourEndLevelScRsp", - Self::CmdParkourGetDataCsReq => "CmdParkourGetDataCsReq", - Self::CmdParkourGetRankingInfoCsReq => "CmdParkourGetRankingInfoCsReq", - Self::CmdParkourGetRankingInfoScRsp => "CmdParkourGetRankingInfoScRsp", + Self::GnfefflhhmpAlocmfakbkp => "GNFEFFLHHMP_ALOCMFAKBKP", + Self::CmdGnlljmimnpc => "CmdGNLLJMIMNPC", + Self::CmdLliemgcghdg => "CmdLLIEMGCGHDG", + Self::CmdKiffldhfmll => "CmdKIFFLDHFMLL", + Self::CmdBhhdigknggk => "CmdBHHDIGKNGGK", + Self::CmdFpmfiippimo => "CmdFPMFIIPPIMO", + Self::CmdLpikogpomni => "CmdLPIKOGPOMNI", + Self::CmdHdbillenkmg => "CmdHDBILLENKMG", + Self::CmdPpmgkfednol => "CmdPPMGKFEDNOL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdParkourTypeNone" => Some(Self::None), - "CmdParkourStartLevelScRsp" => Some(Self::CmdParkourStartLevelScRsp), - "CmdParkourEndLevelCsReq" => Some(Self::CmdParkourEndLevelCsReq), - "CmdParkourStartLevelCsReq" => Some(Self::CmdParkourStartLevelCsReq), - "CmdParkourGetDataScRsp" => Some(Self::CmdParkourGetDataScRsp), - "CmdParkourEndLevelScRsp" => Some(Self::CmdParkourEndLevelScRsp), - "CmdParkourGetDataCsReq" => Some(Self::CmdParkourGetDataCsReq), - "CmdParkourGetRankingInfoCsReq" => Some(Self::CmdParkourGetRankingInfoCsReq), - "CmdParkourGetRankingInfoScRsp" => Some(Self::CmdParkourGetRankingInfoScRsp), + "GNFEFFLHHMP_ALOCMFAKBKP" => Some(Self::GnfefflhhmpAlocmfakbkp), + "CmdGNLLJMIMNPC" => Some(Self::CmdGnlljmimnpc), + "CmdLLIEMGCGHDG" => Some(Self::CmdLliemgcghdg), + "CmdKIFFLDHFMLL" => Some(Self::CmdKiffldhfmll), + "CmdBHHDIGKNGGK" => Some(Self::CmdBhhdigknggk), + "CmdFPMFIIPPIMO" => Some(Self::CmdFpmfiippimo), + "CmdLPIKOGPOMNI" => Some(Self::CmdLpikogpomni), + "CmdHDBILLENKMG" => Some(Self::CmdHdbillenkmg), + "CmdPPMGKFEDNOL" => Some(Self::CmdPpmgkfednol), _ => None, } } @@ -77379,29 +76519,29 @@ impl CmdParkourType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Poahabdkpkj { - ParkourEndLevelReasonNone = 0, - ParkourEndLevelReasonFinish = 1, - ParkourEndLevelReasonQuit = 2, +pub enum Pdccmhdagfc { + Alocmfakbkp = 0, + Eddpgfacjae = 1, + Llpodamofoe = 2, } -impl Poahabdkpkj { +impl Pdccmhdagfc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ParkourEndLevelReasonNone => "PARKOUR_END_LEVEL_REASON_NONE", - Self::ParkourEndLevelReasonFinish => "PARKOUR_END_LEVEL_REASON_FINISH", - Self::ParkourEndLevelReasonQuit => "PARKOUR_END_LEVEL_REASON_QUIT", + Self::Alocmfakbkp => "PDCCMHDAGFC_ALOCMFAKBKP", + Self::Eddpgfacjae => "PDCCMHDAGFC_EDDPGFACJAE", + Self::Llpodamofoe => "PDCCMHDAGFC_LLPODAMOFOE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PARKOUR_END_LEVEL_REASON_NONE" => Some(Self::ParkourEndLevelReasonNone), - "PARKOUR_END_LEVEL_REASON_FINISH" => Some(Self::ParkourEndLevelReasonFinish), - "PARKOUR_END_LEVEL_REASON_QUIT" => Some(Self::ParkourEndLevelReasonQuit), + "PDCCMHDAGFC_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "PDCCMHDAGFC_EDDPGFACJAE" => Some(Self::Eddpgfacjae), + "PDCCMHDAGFC_LLPODAMOFOE" => Some(Self::Llpodamofoe), _ => None, } } @@ -77409,37 +76549,29 @@ impl Poahabdkpkj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hcfffeimcmf { - ParkourLevelSttNone = 0, - ParkourLevelSttBombedBySparkleFigure = 1, - ParkourLevelSttDestroySparkleFigure = 2, +pub enum Jgbdoghcaok { + Pmjfmmmfoic = 0, + Eppdmcpjjfl = 1, + Dfoigjobacl = 2, } -impl Hcfffeimcmf { +impl Jgbdoghcaok { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ParkourLevelSttNone => "PARKOUR_LEVEL_STT_NONE", - Self::ParkourLevelSttBombedBySparkleFigure => { - "PARKOUR_LEVEL_STT_BOMBED_BY_SPARKLE_FIGURE" - } - Self::ParkourLevelSttDestroySparkleFigure => { - "PARKOUR_LEVEL_STT_DESTROY_SPARKLE_FIGURE" - } + Self::Pmjfmmmfoic => "JGBDOGHCAOK_PMJFMMMFOIC", + Self::Eppdmcpjjfl => "JGBDOGHCAOK_EPPDMCPJJFL", + Self::Dfoigjobacl => "JGBDOGHCAOK_DFOIGJOBACL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PARKOUR_LEVEL_STT_NONE" => Some(Self::ParkourLevelSttNone), - "PARKOUR_LEVEL_STT_BOMBED_BY_SPARKLE_FIGURE" => { - Some(Self::ParkourLevelSttBombedBySparkleFigure) - } - "PARKOUR_LEVEL_STT_DESTROY_SPARKLE_FIGURE" => { - Some(Self::ParkourLevelSttDestroySparkleFigure) - } + "JGBDOGHCAOK_PMJFMMMFOIC" => Some(Self::Pmjfmmmfoic), + "JGBDOGHCAOK_EPPDMCPJJFL" => Some(Self::Eppdmcpjjfl), + "JGBDOGHCAOK_DFOIGJOBACL" => Some(Self::Dfoigjobacl), _ => None, } } @@ -77448,14 +76580,14 @@ impl Hcfffeimcmf { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPetType { - None = 0, - CmdGetPetDataScRsp = 7601, - CmdSummonPetCsReq = 7613, - CmdCurPetChangedScNotify = 7603, - CmdRecallPetCsReq = 7618, - CmdSummonPetScRsp = 7616, - CmdRecallPetScRsp = 7615, - CmdGetPetDataCsReq = 7608, + GacjkkajjpnAlocmfakbkp = 0, + CmdRecallPetScRsp = 7622, + CmdGetPetDataScRsp = 7607, + CmdSummonPetCsReq = 7624, + CmdCurPetChangedScNotify = 7605, + CmdSummonPetScRsp = 7609, + CmdGetPetDataCsReq = 7617, + CmdRecallPetCsReq = 7620, } impl CmdPetType { /// String value of the enum field names used in the ProtoBuf definition. @@ -77464,27 +76596,27 @@ impl CmdPetType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPetTypeNone", + Self::GacjkkajjpnAlocmfakbkp => "GACJKKAJJPN_ALOCMFAKBKP", + Self::CmdRecallPetScRsp => "CmdRecallPetScRsp", Self::CmdGetPetDataScRsp => "CmdGetPetDataScRsp", Self::CmdSummonPetCsReq => "CmdSummonPetCsReq", Self::CmdCurPetChangedScNotify => "CmdCurPetChangedScNotify", - Self::CmdRecallPetCsReq => "CmdRecallPetCsReq", Self::CmdSummonPetScRsp => "CmdSummonPetScRsp", - Self::CmdRecallPetScRsp => "CmdRecallPetScRsp", Self::CmdGetPetDataCsReq => "CmdGetPetDataCsReq", + Self::CmdRecallPetCsReq => "CmdRecallPetCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPetTypeNone" => Some(Self::None), + "GACJKKAJJPN_ALOCMFAKBKP" => Some(Self::GacjkkajjpnAlocmfakbkp), + "CmdRecallPetScRsp" => Some(Self::CmdRecallPetScRsp), "CmdGetPetDataScRsp" => Some(Self::CmdGetPetDataScRsp), "CmdSummonPetCsReq" => Some(Self::CmdSummonPetCsReq), "CmdCurPetChangedScNotify" => Some(Self::CmdCurPetChangedScNotify), - "CmdRecallPetCsReq" => Some(Self::CmdRecallPetCsReq), "CmdSummonPetScRsp" => Some(Self::CmdSummonPetScRsp), - "CmdRecallPetScRsp" => Some(Self::CmdRecallPetScRsp), "CmdGetPetDataCsReq" => Some(Self::CmdGetPetDataCsReq), + "CmdRecallPetCsReq" => Some(Self::CmdRecallPetCsReq), _ => None, } } @@ -77492,29 +76624,29 @@ impl CmdPetType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Cdefbkpcppa { - PetOperationTypeNone = 0, - PetOperationTypeSummon = 1, - PetOperationTypeRecall = 2, +pub enum Mmhcbbidalg { + Alocmfakbkp = 0, + Ifgliiobpbd = 1, + Mlnpfhegcgf = 2, } -impl Cdefbkpcppa { +impl Mmhcbbidalg { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PetOperationTypeNone => "PET_OPERATION_TYPE_NONE", - Self::PetOperationTypeSummon => "PET_OPERATION_TYPE_SUMMON", - Self::PetOperationTypeRecall => "PET_OPERATION_TYPE_RECALL", + Self::Alocmfakbkp => "MMHCBBIDALG_ALOCMFAKBKP", + Self::Ifgliiobpbd => "MMHCBBIDALG_IFGLIIOBPBD", + Self::Mlnpfhegcgf => "MMHCBBIDALG_MLNPFHEGCGF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PET_OPERATION_TYPE_NONE" => Some(Self::PetOperationTypeNone), - "PET_OPERATION_TYPE_SUMMON" => Some(Self::PetOperationTypeSummon), - "PET_OPERATION_TYPE_RECALL" => Some(Self::PetOperationTypeRecall), + "MMHCBBIDALG_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "MMHCBBIDALG_IFGLIIOBPBD" => Some(Self::Ifgliiobpbd), + "MMHCBBIDALG_MLNPFHEGCGF" => Some(Self::Mlnpfhegcgf), _ => None, } } @@ -77523,18 +76655,18 @@ impl Cdefbkpcppa { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPhoneType { - None = 0, - CmdSelectPhoneCaseScRsp = 5144, - CmdSelectPhoneThemeCsReq = 5186, - CmdSelectChatBubbleCsReq = 5198, - CmdUnlockPhoneThemeScNotify = 5152, - CmdSelectChatBubbleScRsp = 5165, - CmdUnlockChatBubbleScNotify = 5183, - CmdGetPhoneDataScRsp = 5123, - CmdGetPhoneDataCsReq = 5199, - CmdSelectPhoneCaseCsReq = 5119, - CmdUnlockPhoneCaseScNotify = 5181, - CmdSelectPhoneThemeScRsp = 5194, + FmhejabnmmmAlocmfakbkp = 0, + CmdSelectPhoneCaseScRsp = 5191, + CmdSelectPhoneThemeScRsp = 5189, + CmdUnlockPhoneThemeScNotify = 5120, + CmdSelectChatBubbleCsReq = 5138, + CmdGetPhoneDataScRsp = 5109, + CmdSelectPhoneThemeCsReq = 5111, + CmdSelectChatBubbleScRsp = 5117, + CmdGetPhoneDataCsReq = 5147, + CmdSelectPhoneCaseCsReq = 5195, + CmdUnlockPhoneCaseScNotify = 5161, + CmdUnlockChatBubbleScNotify = 5151, } impl CmdPhoneType { /// String value of the enum field names used in the ProtoBuf definition. @@ -77543,35 +76675,35 @@ impl CmdPhoneType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPhoneTypeNone", + Self::FmhejabnmmmAlocmfakbkp => "FMHEJABNMMM_ALOCMFAKBKP", Self::CmdSelectPhoneCaseScRsp => "CmdSelectPhoneCaseScRsp", - Self::CmdSelectPhoneThemeCsReq => "CmdSelectPhoneThemeCsReq", - Self::CmdSelectChatBubbleCsReq => "CmdSelectChatBubbleCsReq", + Self::CmdSelectPhoneThemeScRsp => "CmdSelectPhoneThemeScRsp", Self::CmdUnlockPhoneThemeScNotify => "CmdUnlockPhoneThemeScNotify", - Self::CmdSelectChatBubbleScRsp => "CmdSelectChatBubbleScRsp", - Self::CmdUnlockChatBubbleScNotify => "CmdUnlockChatBubbleScNotify", + Self::CmdSelectChatBubbleCsReq => "CmdSelectChatBubbleCsReq", Self::CmdGetPhoneDataScRsp => "CmdGetPhoneDataScRsp", + Self::CmdSelectPhoneThemeCsReq => "CmdSelectPhoneThemeCsReq", + Self::CmdSelectChatBubbleScRsp => "CmdSelectChatBubbleScRsp", Self::CmdGetPhoneDataCsReq => "CmdGetPhoneDataCsReq", Self::CmdSelectPhoneCaseCsReq => "CmdSelectPhoneCaseCsReq", Self::CmdUnlockPhoneCaseScNotify => "CmdUnlockPhoneCaseScNotify", - Self::CmdSelectPhoneThemeScRsp => "CmdSelectPhoneThemeScRsp", + Self::CmdUnlockChatBubbleScNotify => "CmdUnlockChatBubbleScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPhoneTypeNone" => Some(Self::None), + "FMHEJABNMMM_ALOCMFAKBKP" => Some(Self::FmhejabnmmmAlocmfakbkp), "CmdSelectPhoneCaseScRsp" => Some(Self::CmdSelectPhoneCaseScRsp), - "CmdSelectPhoneThemeCsReq" => Some(Self::CmdSelectPhoneThemeCsReq), - "CmdSelectChatBubbleCsReq" => Some(Self::CmdSelectChatBubbleCsReq), + "CmdSelectPhoneThemeScRsp" => Some(Self::CmdSelectPhoneThemeScRsp), "CmdUnlockPhoneThemeScNotify" => Some(Self::CmdUnlockPhoneThemeScNotify), - "CmdSelectChatBubbleScRsp" => Some(Self::CmdSelectChatBubbleScRsp), - "CmdUnlockChatBubbleScNotify" => Some(Self::CmdUnlockChatBubbleScNotify), + "CmdSelectChatBubbleCsReq" => Some(Self::CmdSelectChatBubbleCsReq), "CmdGetPhoneDataScRsp" => Some(Self::CmdGetPhoneDataScRsp), + "CmdSelectPhoneThemeCsReq" => Some(Self::CmdSelectPhoneThemeCsReq), + "CmdSelectChatBubbleScRsp" => Some(Self::CmdSelectChatBubbleScRsp), "CmdGetPhoneDataCsReq" => Some(Self::CmdGetPhoneDataCsReq), "CmdSelectPhoneCaseCsReq" => Some(Self::CmdSelectPhoneCaseCsReq), "CmdUnlockPhoneCaseScNotify" => Some(Self::CmdUnlockPhoneCaseScNotify), - "CmdSelectPhoneThemeScRsp" => Some(Self::CmdSelectPhoneThemeScRsp), + "CmdUnlockChatBubbleScNotify" => Some(Self::CmdUnlockChatBubbleScNotify), _ => None, } } @@ -77580,57 +76712,57 @@ impl CmdPhoneType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPlanetFesType { - None = 0, - CmdPlanetFesBuyLandCsReq = 8244, - CmdPlanetFesDoGachaScRsp = 8247, - CmdPlanetFesGetAvatarStatCsReq = 8217, - CmdPlanetFesBuyLandScRsp = 8201, - CmdPlanetFesCollectIncomeScRsp = 8205, - CmdPlanetFesDeliverPamCargoScRsp = 8202, - CmdPlanetFesTakeQuestRewardCsReq = 8211, - CmdPlanetFesBusinessDayRefreshEventScRsp = 8231, - CmdPlanetFesClientStatusScRsp = 8243, - CmdPlanetFesGetFriendRankingInfoListCsReq = 8246, - CmdGetPlanetFesDataCsReq = 8226, - CmdPlanetFesStartMiniGameScRsp = 8216, - CmdPlanetFesSetCustomKeyValueCsReq = 8204, - CmdPlanetFesAvatarLevelUpCsReq = 8233, - CmdPlanetFesTakeRegionPhaseRewardScRsp = 8209, - CmdPlanetFesUpgradeFesLevelScRsp = 8239, - CmdPlanetFesChooseAvatarEventOptionCsReq = 8234, - CmdPlanetFesDeliverPamCargoCsReq = 8208, - CmdPlanetFesClientStatusCsReq = 8245, - CmdPlanetFesGetFriendRankingInfoListScRsp = 8214, - CmdPlanetFesGameBingoFlipCsReq = 8241, - CmdPlanetFesTakeQuestRewardScRsp = 8229, - CmdPlanetFesDealAvatarEventOptionItemCsReq = 8249, - CmdPlanetFesGetBusinessDayInfoScRsp = 8212, - CmdPlanetFesBusinessDayRefreshEventCsReq = 8215, - CmdPlanetFesChooseAvatarEventOptionScRsp = 8206, - CmdPlanetFesBonusEventInteractScRsp = 8218, - CmdPlanetFesUpgradeSkillLevelScRsp = 8248, - CmdPlanetFesAvatarLevelUpScRsp = 8230, - CmdPlanetFesGameBingoFlipScRsp = 8240, - CmdPlanetFesSetCustomKeyValueScRsp = 8224, - CmdPlanetFesSyncChangeScNotify = 8221, - CmdPlanetFesUpgradeSkillLevelCsReq = 8225, - CmdPlanetFesStartMiniGameCsReq = 8222, - CmdPlanetFesSetAvatarWorkScRsp = 8220, - CmdPlanetFesGetBusinessDayInfoCsReq = 8235, - CmdPlanetFesDoGachaCsReq = 8219, - CmdGetPlanetFesDataScRsp = 8228, - CmdPlanetFesUseItemScRsp = 8237, - CmdPlanetFesGetAvatarStatScRsp = 8207, - CmdPlanetFesFriendRankingInfoChangeScNotify = 8213, - CmdPlanetFesSetAvatarWorkCsReq = 8227, - CmdPlanetFesBonusEventInteractCsReq = 8250, - CmdPlanetFesUseItemCsReq = 8242, - CmdPlanetFesCollectIncomeCsReq = 8238, - CmdPlanetFesCollectAllIncomeScRsp = 8223, - CmdPlanetFesTakeRegionPhaseRewardCsReq = 8236, - CmdPlanetFesDealAvatarEventOptionItemScRsp = 8232, - CmdPlanetFesUpgradeFesLevelCsReq = 8210, - CmdPlanetFesCollectAllIncomeCsReq = 8203, + GmgkbpamindAlocmfakbkp = 0, + CmdHojlkbmhnph = 8204, + CmdCifahbdlded = 8225, + CmdKfdeifmmhic = 8211, + CmdHfajldkameo = 8221, + CmdMjoinjmahbi = 8213, + CmdHmknnajkage = 8228, + CmdOgkfhingnlc = 8218, + CmdDjllaepebhe = 8206, + CmdFooldoeifoc = 8230, + CmdPlbfhopecgi = 8250, + CmdEhldjkjgncn = 8201, + CmdOlboenjmcnl = 8245, + CmdFdbdpjjpdho = 8215, + CmdKihdmhncaal = 8243, + CmdOlhnbgklkdl = 8249, + CmdFcecphkchgk = 8216, + CmdKlilcfenabp = 8242, + CmdNdcaphobakc = 8222, + CmdAaianpmcibg = 8227, + CmdOghkdpjinak = 8203, + CmdKkmkkbdbmnb = 8226, + CmdHeedapeoihg = 8247, + CmdLgnmijkjkjc = 8219, + CmdJfjglmkbafd = 8217, + CmdJagijpgibhf = 8246, + CmdAajfbjhmaon = 8235, + CmdJbhlhnkjkof = 8210, + CmdDjbmcjgolbc = 8208, + CmdFmlcdnjjlmc = 8209, + CmdBcpcenakcjk = 8233, + CmdDocfadpcgio = 8240, + CmdMifinmnpmbp = 8224, + CmdFinkjpooikg = 8212, + CmdChoippboanf = 8202, + CmdLpamfamafep = 8232, + CmdDkeoicabnfp = 8220, + CmdBnoiljlcioe = 8223, + CmdHdmehmjlnab = 8237, + CmdDancjeecpmn = 8231, + CmdHebmhdinmip = 8238, + CmdDgkofijehlh = 8244, + CmdPfhhighedjk = 8234, + CmdOkpijhjgafj = 8241, + CmdDndejbmdcmj = 8205, + CmdLnolpaeglgi = 8236, + CmdPoklknjfjjp = 8248, + CmdMpkeeimnghi = 8207, + CmdLklamdjopce = 8239, + CmdHfdhgmdbejf = 8214, + CmdDkijnklpbff = 8229, } impl CmdPlanetFesType { /// String value of the enum field names used in the ProtoBuf definition. @@ -77639,235 +76771,113 @@ impl CmdPlanetFesType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPlanetFesTypeNone", - Self::CmdPlanetFesBuyLandCsReq => "CmdPlanetFesBuyLandCsReq", - Self::CmdPlanetFesDoGachaScRsp => "CmdPlanetFesDoGachaScRsp", - Self::CmdPlanetFesGetAvatarStatCsReq => "CmdPlanetFesGetAvatarStatCsReq", - Self::CmdPlanetFesBuyLandScRsp => "CmdPlanetFesBuyLandScRsp", - Self::CmdPlanetFesCollectIncomeScRsp => "CmdPlanetFesCollectIncomeScRsp", - Self::CmdPlanetFesDeliverPamCargoScRsp => "CmdPlanetFesDeliverPamCargoScRsp", - Self::CmdPlanetFesTakeQuestRewardCsReq => "CmdPlanetFesTakeQuestRewardCsReq", - Self::CmdPlanetFesBusinessDayRefreshEventScRsp => { - "CmdPlanetFesBusinessDayRefreshEventScRsp" - } - Self::CmdPlanetFesClientStatusScRsp => "CmdPlanetFesClientStatusScRsp", - Self::CmdPlanetFesGetFriendRankingInfoListCsReq => { - "CmdPlanetFesGetFriendRankingInfoListCsReq" - } - Self::CmdGetPlanetFesDataCsReq => "CmdGetPlanetFesDataCsReq", - Self::CmdPlanetFesStartMiniGameScRsp => "CmdPlanetFesStartMiniGameScRsp", - Self::CmdPlanetFesSetCustomKeyValueCsReq => { - "CmdPlanetFesSetCustomKeyValueCsReq" - } - Self::CmdPlanetFesAvatarLevelUpCsReq => "CmdPlanetFesAvatarLevelUpCsReq", - Self::CmdPlanetFesTakeRegionPhaseRewardScRsp => { - "CmdPlanetFesTakeRegionPhaseRewardScRsp" - } - Self::CmdPlanetFesUpgradeFesLevelScRsp => "CmdPlanetFesUpgradeFesLevelScRsp", - Self::CmdPlanetFesChooseAvatarEventOptionCsReq => { - "CmdPlanetFesChooseAvatarEventOptionCsReq" - } - Self::CmdPlanetFesDeliverPamCargoCsReq => "CmdPlanetFesDeliverPamCargoCsReq", - Self::CmdPlanetFesClientStatusCsReq => "CmdPlanetFesClientStatusCsReq", - Self::CmdPlanetFesGetFriendRankingInfoListScRsp => { - "CmdPlanetFesGetFriendRankingInfoListScRsp" - } - Self::CmdPlanetFesGameBingoFlipCsReq => "CmdPlanetFesGameBingoFlipCsReq", - Self::CmdPlanetFesTakeQuestRewardScRsp => "CmdPlanetFesTakeQuestRewardScRsp", - Self::CmdPlanetFesDealAvatarEventOptionItemCsReq => { - "CmdPlanetFesDealAvatarEventOptionItemCsReq" - } - Self::CmdPlanetFesGetBusinessDayInfoScRsp => { - "CmdPlanetFesGetBusinessDayInfoScRsp" - } - Self::CmdPlanetFesBusinessDayRefreshEventCsReq => { - "CmdPlanetFesBusinessDayRefreshEventCsReq" - } - Self::CmdPlanetFesChooseAvatarEventOptionScRsp => { - "CmdPlanetFesChooseAvatarEventOptionScRsp" - } - Self::CmdPlanetFesBonusEventInteractScRsp => { - "CmdPlanetFesBonusEventInteractScRsp" - } - Self::CmdPlanetFesUpgradeSkillLevelScRsp => { - "CmdPlanetFesUpgradeSkillLevelScRsp" - } - Self::CmdPlanetFesAvatarLevelUpScRsp => "CmdPlanetFesAvatarLevelUpScRsp", - Self::CmdPlanetFesGameBingoFlipScRsp => "CmdPlanetFesGameBingoFlipScRsp", - Self::CmdPlanetFesSetCustomKeyValueScRsp => { - "CmdPlanetFesSetCustomKeyValueScRsp" - } - Self::CmdPlanetFesSyncChangeScNotify => "CmdPlanetFesSyncChangeScNotify", - Self::CmdPlanetFesUpgradeSkillLevelCsReq => { - "CmdPlanetFesUpgradeSkillLevelCsReq" - } - Self::CmdPlanetFesStartMiniGameCsReq => "CmdPlanetFesStartMiniGameCsReq", - Self::CmdPlanetFesSetAvatarWorkScRsp => "CmdPlanetFesSetAvatarWorkScRsp", - Self::CmdPlanetFesGetBusinessDayInfoCsReq => { - "CmdPlanetFesGetBusinessDayInfoCsReq" - } - Self::CmdPlanetFesDoGachaCsReq => "CmdPlanetFesDoGachaCsReq", - Self::CmdGetPlanetFesDataScRsp => "CmdGetPlanetFesDataScRsp", - Self::CmdPlanetFesUseItemScRsp => "CmdPlanetFesUseItemScRsp", - Self::CmdPlanetFesGetAvatarStatScRsp => "CmdPlanetFesGetAvatarStatScRsp", - Self::CmdPlanetFesFriendRankingInfoChangeScNotify => { - "CmdPlanetFesFriendRankingInfoChangeScNotify" - } - Self::CmdPlanetFesSetAvatarWorkCsReq => "CmdPlanetFesSetAvatarWorkCsReq", - Self::CmdPlanetFesBonusEventInteractCsReq => { - "CmdPlanetFesBonusEventInteractCsReq" - } - Self::CmdPlanetFesUseItemCsReq => "CmdPlanetFesUseItemCsReq", - Self::CmdPlanetFesCollectIncomeCsReq => "CmdPlanetFesCollectIncomeCsReq", - Self::CmdPlanetFesCollectAllIncomeScRsp => { - "CmdPlanetFesCollectAllIncomeScRsp" - } - Self::CmdPlanetFesTakeRegionPhaseRewardCsReq => { - "CmdPlanetFesTakeRegionPhaseRewardCsReq" - } - Self::CmdPlanetFesDealAvatarEventOptionItemScRsp => { - "CmdPlanetFesDealAvatarEventOptionItemScRsp" - } - Self::CmdPlanetFesUpgradeFesLevelCsReq => "CmdPlanetFesUpgradeFesLevelCsReq", - Self::CmdPlanetFesCollectAllIncomeCsReq => { - "CmdPlanetFesCollectAllIncomeCsReq" - } + Self::GmgkbpamindAlocmfakbkp => "GMGKBPAMIND_ALOCMFAKBKP", + Self::CmdHojlkbmhnph => "CmdHOJLKBMHNPH", + Self::CmdCifahbdlded => "CmdCIFAHBDLDED", + Self::CmdKfdeifmmhic => "CmdKFDEIFMMHIC", + Self::CmdHfajldkameo => "CmdHFAJLDKAMEO", + Self::CmdMjoinjmahbi => "CmdMJOINJMAHBI", + Self::CmdHmknnajkage => "CmdHMKNNAJKAGE", + Self::CmdOgkfhingnlc => "CmdOGKFHINGNLC", + Self::CmdDjllaepebhe => "CmdDJLLAEPEBHE", + Self::CmdFooldoeifoc => "CmdFOOLDOEIFOC", + Self::CmdPlbfhopecgi => "CmdPLBFHOPECGI", + Self::CmdEhldjkjgncn => "CmdEHLDJKJGNCN", + Self::CmdOlboenjmcnl => "CmdOLBOENJMCNL", + Self::CmdFdbdpjjpdho => "CmdFDBDPJJPDHO", + Self::CmdKihdmhncaal => "CmdKIHDMHNCAAL", + Self::CmdOlhnbgklkdl => "CmdOLHNBGKLKDL", + Self::CmdFcecphkchgk => "CmdFCECPHKCHGK", + Self::CmdKlilcfenabp => "CmdKLILCFENABP", + Self::CmdNdcaphobakc => "CmdNDCAPHOBAKC", + Self::CmdAaianpmcibg => "CmdAAIANPMCIBG", + Self::CmdOghkdpjinak => "CmdOGHKDPJINAK", + Self::CmdKkmkkbdbmnb => "CmdKKMKKBDBMNB", + Self::CmdHeedapeoihg => "CmdHEEDAPEOIHG", + Self::CmdLgnmijkjkjc => "CmdLGNMIJKJKJC", + Self::CmdJfjglmkbafd => "CmdJFJGLMKBAFD", + Self::CmdJagijpgibhf => "CmdJAGIJPGIBHF", + Self::CmdAajfbjhmaon => "CmdAAJFBJHMAON", + Self::CmdJbhlhnkjkof => "CmdJBHLHNKJKOF", + Self::CmdDjbmcjgolbc => "CmdDJBMCJGOLBC", + Self::CmdFmlcdnjjlmc => "CmdFMLCDNJJLMC", + Self::CmdBcpcenakcjk => "CmdBCPCENAKCJK", + Self::CmdDocfadpcgio => "CmdDOCFADPCGIO", + Self::CmdMifinmnpmbp => "CmdMIFINMNPMBP", + Self::CmdFinkjpooikg => "CmdFINKJPOOIKG", + Self::CmdChoippboanf => "CmdCHOIPPBOANF", + Self::CmdLpamfamafep => "CmdLPAMFAMAFEP", + Self::CmdDkeoicabnfp => "CmdDKEOICABNFP", + Self::CmdBnoiljlcioe => "CmdBNOILJLCIOE", + Self::CmdHdmehmjlnab => "CmdHDMEHMJLNAB", + Self::CmdDancjeecpmn => "CmdDANCJEECPMN", + Self::CmdHebmhdinmip => "CmdHEBMHDINMIP", + Self::CmdDgkofijehlh => "CmdDGKOFIJEHLH", + Self::CmdPfhhighedjk => "CmdPFHHIGHEDJK", + Self::CmdOkpijhjgafj => "CmdOKPIJHJGAFJ", + Self::CmdDndejbmdcmj => "CmdDNDEJBMDCMJ", + Self::CmdLnolpaeglgi => "CmdLNOLPAEGLGI", + Self::CmdPoklknjfjjp => "CmdPOKLKNJFJJP", + Self::CmdMpkeeimnghi => "CmdMPKEEIMNGHI", + Self::CmdLklamdjopce => "CmdLKLAMDJOPCE", + Self::CmdHfdhgmdbejf => "CmdHFDHGMDBEJF", + Self::CmdDkijnklpbff => "CmdDKIJNKLPBFF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPlanetFesTypeNone" => Some(Self::None), - "CmdPlanetFesBuyLandCsReq" => Some(Self::CmdPlanetFesBuyLandCsReq), - "CmdPlanetFesDoGachaScRsp" => Some(Self::CmdPlanetFesDoGachaScRsp), - "CmdPlanetFesGetAvatarStatCsReq" => { - Some(Self::CmdPlanetFesGetAvatarStatCsReq) - } - "CmdPlanetFesBuyLandScRsp" => Some(Self::CmdPlanetFesBuyLandScRsp), - "CmdPlanetFesCollectIncomeScRsp" => { - Some(Self::CmdPlanetFesCollectIncomeScRsp) - } - "CmdPlanetFesDeliverPamCargoScRsp" => { - Some(Self::CmdPlanetFesDeliverPamCargoScRsp) - } - "CmdPlanetFesTakeQuestRewardCsReq" => { - Some(Self::CmdPlanetFesTakeQuestRewardCsReq) - } - "CmdPlanetFesBusinessDayRefreshEventScRsp" => { - Some(Self::CmdPlanetFesBusinessDayRefreshEventScRsp) - } - "CmdPlanetFesClientStatusScRsp" => Some(Self::CmdPlanetFesClientStatusScRsp), - "CmdPlanetFesGetFriendRankingInfoListCsReq" => { - Some(Self::CmdPlanetFesGetFriendRankingInfoListCsReq) - } - "CmdGetPlanetFesDataCsReq" => Some(Self::CmdGetPlanetFesDataCsReq), - "CmdPlanetFesStartMiniGameScRsp" => { - Some(Self::CmdPlanetFesStartMiniGameScRsp) - } - "CmdPlanetFesSetCustomKeyValueCsReq" => { - Some(Self::CmdPlanetFesSetCustomKeyValueCsReq) - } - "CmdPlanetFesAvatarLevelUpCsReq" => { - Some(Self::CmdPlanetFesAvatarLevelUpCsReq) - } - "CmdPlanetFesTakeRegionPhaseRewardScRsp" => { - Some(Self::CmdPlanetFesTakeRegionPhaseRewardScRsp) - } - "CmdPlanetFesUpgradeFesLevelScRsp" => { - Some(Self::CmdPlanetFesUpgradeFesLevelScRsp) - } - "CmdPlanetFesChooseAvatarEventOptionCsReq" => { - Some(Self::CmdPlanetFesChooseAvatarEventOptionCsReq) - } - "CmdPlanetFesDeliverPamCargoCsReq" => { - Some(Self::CmdPlanetFesDeliverPamCargoCsReq) - } - "CmdPlanetFesClientStatusCsReq" => Some(Self::CmdPlanetFesClientStatusCsReq), - "CmdPlanetFesGetFriendRankingInfoListScRsp" => { - Some(Self::CmdPlanetFesGetFriendRankingInfoListScRsp) - } - "CmdPlanetFesGameBingoFlipCsReq" => { - Some(Self::CmdPlanetFesGameBingoFlipCsReq) - } - "CmdPlanetFesTakeQuestRewardScRsp" => { - Some(Self::CmdPlanetFesTakeQuestRewardScRsp) - } - "CmdPlanetFesDealAvatarEventOptionItemCsReq" => { - Some(Self::CmdPlanetFesDealAvatarEventOptionItemCsReq) - } - "CmdPlanetFesGetBusinessDayInfoScRsp" => { - Some(Self::CmdPlanetFesGetBusinessDayInfoScRsp) - } - "CmdPlanetFesBusinessDayRefreshEventCsReq" => { - Some(Self::CmdPlanetFesBusinessDayRefreshEventCsReq) - } - "CmdPlanetFesChooseAvatarEventOptionScRsp" => { - Some(Self::CmdPlanetFesChooseAvatarEventOptionScRsp) - } - "CmdPlanetFesBonusEventInteractScRsp" => { - Some(Self::CmdPlanetFesBonusEventInteractScRsp) - } - "CmdPlanetFesUpgradeSkillLevelScRsp" => { - Some(Self::CmdPlanetFesUpgradeSkillLevelScRsp) - } - "CmdPlanetFesAvatarLevelUpScRsp" => { - Some(Self::CmdPlanetFesAvatarLevelUpScRsp) - } - "CmdPlanetFesGameBingoFlipScRsp" => { - Some(Self::CmdPlanetFesGameBingoFlipScRsp) - } - "CmdPlanetFesSetCustomKeyValueScRsp" => { - Some(Self::CmdPlanetFesSetCustomKeyValueScRsp) - } - "CmdPlanetFesSyncChangeScNotify" => { - Some(Self::CmdPlanetFesSyncChangeScNotify) - } - "CmdPlanetFesUpgradeSkillLevelCsReq" => { - Some(Self::CmdPlanetFesUpgradeSkillLevelCsReq) - } - "CmdPlanetFesStartMiniGameCsReq" => { - Some(Self::CmdPlanetFesStartMiniGameCsReq) - } - "CmdPlanetFesSetAvatarWorkScRsp" => { - Some(Self::CmdPlanetFesSetAvatarWorkScRsp) - } - "CmdPlanetFesGetBusinessDayInfoCsReq" => { - Some(Self::CmdPlanetFesGetBusinessDayInfoCsReq) - } - "CmdPlanetFesDoGachaCsReq" => Some(Self::CmdPlanetFesDoGachaCsReq), - "CmdGetPlanetFesDataScRsp" => Some(Self::CmdGetPlanetFesDataScRsp), - "CmdPlanetFesUseItemScRsp" => Some(Self::CmdPlanetFesUseItemScRsp), - "CmdPlanetFesGetAvatarStatScRsp" => { - Some(Self::CmdPlanetFesGetAvatarStatScRsp) - } - "CmdPlanetFesFriendRankingInfoChangeScNotify" => { - Some(Self::CmdPlanetFesFriendRankingInfoChangeScNotify) - } - "CmdPlanetFesSetAvatarWorkCsReq" => { - Some(Self::CmdPlanetFesSetAvatarWorkCsReq) - } - "CmdPlanetFesBonusEventInteractCsReq" => { - Some(Self::CmdPlanetFesBonusEventInteractCsReq) - } - "CmdPlanetFesUseItemCsReq" => Some(Self::CmdPlanetFesUseItemCsReq), - "CmdPlanetFesCollectIncomeCsReq" => { - Some(Self::CmdPlanetFesCollectIncomeCsReq) - } - "CmdPlanetFesCollectAllIncomeScRsp" => { - Some(Self::CmdPlanetFesCollectAllIncomeScRsp) - } - "CmdPlanetFesTakeRegionPhaseRewardCsReq" => { - Some(Self::CmdPlanetFesTakeRegionPhaseRewardCsReq) - } - "CmdPlanetFesDealAvatarEventOptionItemScRsp" => { - Some(Self::CmdPlanetFesDealAvatarEventOptionItemScRsp) - } - "CmdPlanetFesUpgradeFesLevelCsReq" => { - Some(Self::CmdPlanetFesUpgradeFesLevelCsReq) - } - "CmdPlanetFesCollectAllIncomeCsReq" => { - Some(Self::CmdPlanetFesCollectAllIncomeCsReq) - } + "GMGKBPAMIND_ALOCMFAKBKP" => Some(Self::GmgkbpamindAlocmfakbkp), + "CmdHOJLKBMHNPH" => Some(Self::CmdHojlkbmhnph), + "CmdCIFAHBDLDED" => Some(Self::CmdCifahbdlded), + "CmdKFDEIFMMHIC" => Some(Self::CmdKfdeifmmhic), + "CmdHFAJLDKAMEO" => Some(Self::CmdHfajldkameo), + "CmdMJOINJMAHBI" => Some(Self::CmdMjoinjmahbi), + "CmdHMKNNAJKAGE" => Some(Self::CmdHmknnajkage), + "CmdOGKFHINGNLC" => Some(Self::CmdOgkfhingnlc), + "CmdDJLLAEPEBHE" => Some(Self::CmdDjllaepebhe), + "CmdFOOLDOEIFOC" => Some(Self::CmdFooldoeifoc), + "CmdPLBFHOPECGI" => Some(Self::CmdPlbfhopecgi), + "CmdEHLDJKJGNCN" => Some(Self::CmdEhldjkjgncn), + "CmdOLBOENJMCNL" => Some(Self::CmdOlboenjmcnl), + "CmdFDBDPJJPDHO" => Some(Self::CmdFdbdpjjpdho), + "CmdKIHDMHNCAAL" => Some(Self::CmdKihdmhncaal), + "CmdOLHNBGKLKDL" => Some(Self::CmdOlhnbgklkdl), + "CmdFCECPHKCHGK" => Some(Self::CmdFcecphkchgk), + "CmdKLILCFENABP" => Some(Self::CmdKlilcfenabp), + "CmdNDCAPHOBAKC" => Some(Self::CmdNdcaphobakc), + "CmdAAIANPMCIBG" => Some(Self::CmdAaianpmcibg), + "CmdOGHKDPJINAK" => Some(Self::CmdOghkdpjinak), + "CmdKKMKKBDBMNB" => Some(Self::CmdKkmkkbdbmnb), + "CmdHEEDAPEOIHG" => Some(Self::CmdHeedapeoihg), + "CmdLGNMIJKJKJC" => Some(Self::CmdLgnmijkjkjc), + "CmdJFJGLMKBAFD" => Some(Self::CmdJfjglmkbafd), + "CmdJAGIJPGIBHF" => Some(Self::CmdJagijpgibhf), + "CmdAAJFBJHMAON" => Some(Self::CmdAajfbjhmaon), + "CmdJBHLHNKJKOF" => Some(Self::CmdJbhlhnkjkof), + "CmdDJBMCJGOLBC" => Some(Self::CmdDjbmcjgolbc), + "CmdFMLCDNJJLMC" => Some(Self::CmdFmlcdnjjlmc), + "CmdBCPCENAKCJK" => Some(Self::CmdBcpcenakcjk), + "CmdDOCFADPCGIO" => Some(Self::CmdDocfadpcgio), + "CmdMIFINMNPMBP" => Some(Self::CmdMifinmnpmbp), + "CmdFINKJPOOIKG" => Some(Self::CmdFinkjpooikg), + "CmdCHOIPPBOANF" => Some(Self::CmdChoippboanf), + "CmdLPAMFAMAFEP" => Some(Self::CmdLpamfamafep), + "CmdDKEOICABNFP" => Some(Self::CmdDkeoicabnfp), + "CmdBNOILJLCIOE" => Some(Self::CmdBnoiljlcioe), + "CmdHDMEHMJLNAB" => Some(Self::CmdHdmehmjlnab), + "CmdDANCJEECPMN" => Some(Self::CmdDancjeecpmn), + "CmdHEBMHDINMIP" => Some(Self::CmdHebmhdinmip), + "CmdDGKOFIJEHLH" => Some(Self::CmdDgkofijehlh), + "CmdPFHHIGHEDJK" => Some(Self::CmdPfhhighedjk), + "CmdOKPIJHJGAFJ" => Some(Self::CmdOkpijhjgafj), + "CmdDNDEJBMDCMJ" => Some(Self::CmdDndejbmdcmj), + "CmdLNOLPAEGLGI" => Some(Self::CmdLnolpaeglgi), + "CmdPOKLKNJFJJP" => Some(Self::CmdPoklknjfjjp), + "CmdMPKEEIMNGHI" => Some(Self::CmdMpkeeimnghi), + "CmdLKLAMDJOPCE" => Some(Self::CmdLklamdjopce), + "CmdHFDHGMDBEJF" => Some(Self::CmdHfdhgmdbejf), + "CmdDKIJNKLPBFF" => Some(Self::CmdDkijnklpbff), _ => None, } } @@ -77875,32 +76885,32 @@ impl CmdPlanetFesType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Gmfejefibbi { - PlanetFesQuestNone = 0, - PlanetFesQuestDoing = 1, - PlanetFesQuestFinish = 2, - PlanetFesQuestClose = 3, +pub enum Lnjagpaanof { + Mphkjoaefal = 0, + Dkbbdmliegp = 1, + Fmmbjdholfg = 2, + Kmofkpcodgp = 3, } -impl Gmfejefibbi { +impl Lnjagpaanof { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlanetFesQuestNone => "PLANET_FES_QUEST_NONE", - Self::PlanetFesQuestDoing => "PLANET_FES_QUEST_DOING", - Self::PlanetFesQuestFinish => "PLANET_FES_QUEST_FINISH", - Self::PlanetFesQuestClose => "PLANET_FES_QUEST_CLOSE", + Self::Mphkjoaefal => "LNJAGPAANOF_MPHKJOAEFAL", + Self::Dkbbdmliegp => "LNJAGPAANOF_DKBBDMLIEGP", + Self::Fmmbjdholfg => "LNJAGPAANOF_FMMBJDHOLFG", + Self::Kmofkpcodgp => "LNJAGPAANOF_KMOFKPCODGP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLANET_FES_QUEST_NONE" => Some(Self::PlanetFesQuestNone), - "PLANET_FES_QUEST_DOING" => Some(Self::PlanetFesQuestDoing), - "PLANET_FES_QUEST_FINISH" => Some(Self::PlanetFesQuestFinish), - "PLANET_FES_QUEST_CLOSE" => Some(Self::PlanetFesQuestClose), + "LNJAGPAANOF_MPHKJOAEFAL" => Some(Self::Mphkjoaefal), + "LNJAGPAANOF_DKBBDMLIEGP" => Some(Self::Dkbbdmliegp), + "LNJAGPAANOF_FMMBJDHOLFG" => Some(Self::Fmmbjdholfg), + "LNJAGPAANOF_KMOFKPCODGP" => Some(Self::Kmofkpcodgp), _ => None, } } @@ -77908,41 +76918,29 @@ impl Gmfejefibbi { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dfhejcijbej { - PlanetFesBusinessEventChangeReasonNone = 0, - PlanetFesBusinessEventAvatarChange = 1, - PlanetFesBusinessEventFinishGame = 2, +pub enum Gchoemhejbn { + Alocmfakbkp = 0, + Kdmelhmolaf = 1, + Mbacdcpjngj = 2, } -impl Dfhejcijbej { +impl Gchoemhejbn { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlanetFesBusinessEventChangeReasonNone => { - "PLANET_FES_BUSINESS_EVENT_CHANGE_REASON_NONE" - } - Self::PlanetFesBusinessEventAvatarChange => { - "PLANET_FES_BUSINESS_EVENT_AVATAR_CHANGE" - } - Self::PlanetFesBusinessEventFinishGame => { - "PLANET_FES_BUSINESS_EVENT_FINISH_GAME" - } + Self::Alocmfakbkp => "GCHOEMHEJBN_ALOCMFAKBKP", + Self::Kdmelhmolaf => "GCHOEMHEJBN_KDMELHMOLAF", + Self::Mbacdcpjngj => "GCHOEMHEJBN_MBACDCPJNGJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLANET_FES_BUSINESS_EVENT_CHANGE_REASON_NONE" => { - Some(Self::PlanetFesBusinessEventChangeReasonNone) - } - "PLANET_FES_BUSINESS_EVENT_AVATAR_CHANGE" => { - Some(Self::PlanetFesBusinessEventAvatarChange) - } - "PLANET_FES_BUSINESS_EVENT_FINISH_GAME" => { - Some(Self::PlanetFesBusinessEventFinishGame) - } + "GCHOEMHEJBN_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "GCHOEMHEJBN_KDMELHMOLAF" => Some(Self::Kdmelhmolaf), + "GCHOEMHEJBN_MBACDCPJNGJ" => Some(Self::Mbacdcpjngj), _ => None, } } @@ -77950,49 +76948,35 @@ impl Dfhejcijbej { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Iocpjfkgkdg { - PlanetFesCustomKeyNone = 0, - PlanetFesCustomKeyUnlockInfiniteBusinessDayPerformance = 1, - PlanetFesCustomKeyBusinessDayStartPerformanceLastSeenDay = 2, - PlanetFesCustomKeyBusinessDayUnlockPerformanceLastSeenDay = 3, - PlanetFesCustomKeySummaryShow = 4, +pub enum Pcacgacnjab { + Alocmfakbkp = 0, + Gcghlkkkjbc = 1, + Bgcblhlfojk = 2, + Pcggdlgkcfl = 3, + Lifkoimbhol = 4, } -impl Iocpjfkgkdg { +impl Pcacgacnjab { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlanetFesCustomKeyNone => "PLANET_FES_CUSTOM_KEY_NONE", - Self::PlanetFesCustomKeyUnlockInfiniteBusinessDayPerformance => { - "PLANET_FES_CUSTOM_KEY_UNLOCK_INFINITE_BUSINESS_DAY_PERFORMANCE" - } - Self::PlanetFesCustomKeyBusinessDayStartPerformanceLastSeenDay => { - "PLANET_FES_CUSTOM_KEY_BUSINESS_DAY_START_PERFORMANCE_LAST_SEEN_DAY" - } - Self::PlanetFesCustomKeyBusinessDayUnlockPerformanceLastSeenDay => { - "PLANET_FES_CUSTOM_KEY_BUSINESS_DAY_UNLOCK_PERFORMANCE_LAST_SEEN_DAY" - } - Self::PlanetFesCustomKeySummaryShow => "PLANET_FES_CUSTOM_KEY_SUMMARY_SHOW", + Self::Alocmfakbkp => "PCACGACNJAB_ALOCMFAKBKP", + Self::Gcghlkkkjbc => "PCACGACNJAB_GCGHLKKKJBC", + Self::Bgcblhlfojk => "PCACGACNJAB_BGCBLHLFOJK", + Self::Pcggdlgkcfl => "PCACGACNJAB_PCGGDLGKCFL", + Self::Lifkoimbhol => "PCACGACNJAB_LIFKOIMBHOL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLANET_FES_CUSTOM_KEY_NONE" => Some(Self::PlanetFesCustomKeyNone), - "PLANET_FES_CUSTOM_KEY_UNLOCK_INFINITE_BUSINESS_DAY_PERFORMANCE" => { - Some(Self::PlanetFesCustomKeyUnlockInfiniteBusinessDayPerformance) - } - "PLANET_FES_CUSTOM_KEY_BUSINESS_DAY_START_PERFORMANCE_LAST_SEEN_DAY" => { - Some(Self::PlanetFesCustomKeyBusinessDayStartPerformanceLastSeenDay) - } - "PLANET_FES_CUSTOM_KEY_BUSINESS_DAY_UNLOCK_PERFORMANCE_LAST_SEEN_DAY" => { - Some(Self::PlanetFesCustomKeyBusinessDayUnlockPerformanceLastSeenDay) - } - "PLANET_FES_CUSTOM_KEY_SUMMARY_SHOW" => { - Some(Self::PlanetFesCustomKeySummaryShow) - } + "PCACGACNJAB_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "PCACGACNJAB_GCGHLKKKJBC" => Some(Self::Gcghlkkkjbc), + "PCACGACNJAB_BGCBLHLFOJK" => Some(Self::Bgcblhlfojk), + "PCACGACNJAB_PCGGDLGKCFL" => Some(Self::Pcggdlgkcfl), + "PCACGACNJAB_LIFKOIMBHOL" => Some(Self::Lifkoimbhol), _ => None, } } @@ -78001,25 +76985,25 @@ impl Iocpjfkgkdg { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPlanetFesExtType { - None = 0, - CmdPlanetFesApplyCardPieceScRsp = 8334, - CmdPlanetFesGetFriendCardPieceCsReq = 8311, - CmdPlanetFesHandleCardPieceApplyScRsp = 8335, - CmdPlanetFesApplyCardPieceCsReq = 8310, - CmdPlanetFesHandleCardPieceApplyCsReq = 8291, - CmdPlanetFesGetExtraCardPieceInfoCsReq = 8316, - CmdPlanetFesLargeBonusInteractScRsp = 8323, - CmdPlanetFesGiveCardPieceCsReq = 8313, - CmdPlanetFesGetExtraCardPieceInfoScRsp = 8318, - CmdPlanetFesEnterNextBusinessDayCsReq = 8320, - CmdPlanetFesChangeCardPieceApplyPermissionCsReq = 8295, - CmdPlanetFesChangeCardPieceApplyPermissionScRsp = 8317, - CmdPlanetFesGiveCardPieceScRsp = 8309, - CmdPlanetFesEnterNextBusinessDayScRsp = 8301, - CmdPlanetFesGetOfferedCardPieceScRsp = 8293, - CmdPlanetFesGetOfferedCardPieceCsReq = 8333, - CmdPlanetFesGetFriendCardPieceScRsp = 8328, - CmdPlanetFesLargeBonusInteractCsReq = 8337, + NiamjokpjipAlocmfakbkp = 0, + CmdHmafhkaekfg = 8324, + CmdClipnnjbnfi = 8323, + CmdEbkejljcmop = 8333, + CmdEopbcngdodj = 8309, + CmdBjocihicccm = 8317, + CmdJlhcaehnbej = 8325, + CmdJcbdekigmgc = 8338, + CmdHcbgbmkmaaa = 8315, + CmdCaogkpdkpid = 8295, + CmdFndnkaacbhd = 8310, + CmdFiamcglojde = 8307, + CmdBdfnnpapboj = 8297, + CmdFjbfebjnbhk = 8302, + CmdEjobjpjiemf = 8303, + CmdKncijneplhn = 8336, + CmdIpjepogidfl = 8321, + CmdGegjiocoobi = 8299, + CmdIagejnpihjg = 8292, } impl CmdPlanetFesExtType { /// String value of the enum field names used in the ProtoBuf definition. @@ -78028,113 +77012,49 @@ impl CmdPlanetFesExtType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPlanetFesExtTypeNone", - Self::CmdPlanetFesApplyCardPieceScRsp => "CmdPlanetFesApplyCardPieceScRsp", - Self::CmdPlanetFesGetFriendCardPieceCsReq => { - "CmdPlanetFesGetFriendCardPieceCsReq" - } - Self::CmdPlanetFesHandleCardPieceApplyScRsp => { - "CmdPlanetFesHandleCardPieceApplyScRsp" - } - Self::CmdPlanetFesApplyCardPieceCsReq => "CmdPlanetFesApplyCardPieceCsReq", - Self::CmdPlanetFesHandleCardPieceApplyCsReq => { - "CmdPlanetFesHandleCardPieceApplyCsReq" - } - Self::CmdPlanetFesGetExtraCardPieceInfoCsReq => { - "CmdPlanetFesGetExtraCardPieceInfoCsReq" - } - Self::CmdPlanetFesLargeBonusInteractScRsp => { - "CmdPlanetFesLargeBonusInteractScRsp" - } - Self::CmdPlanetFesGiveCardPieceCsReq => "CmdPlanetFesGiveCardPieceCsReq", - Self::CmdPlanetFesGetExtraCardPieceInfoScRsp => { - "CmdPlanetFesGetExtraCardPieceInfoScRsp" - } - Self::CmdPlanetFesEnterNextBusinessDayCsReq => { - "CmdPlanetFesEnterNextBusinessDayCsReq" - } - Self::CmdPlanetFesChangeCardPieceApplyPermissionCsReq => { - "CmdPlanetFesChangeCardPieceApplyPermissionCsReq" - } - Self::CmdPlanetFesChangeCardPieceApplyPermissionScRsp => { - "CmdPlanetFesChangeCardPieceApplyPermissionScRsp" - } - Self::CmdPlanetFesGiveCardPieceScRsp => "CmdPlanetFesGiveCardPieceScRsp", - Self::CmdPlanetFesEnterNextBusinessDayScRsp => { - "CmdPlanetFesEnterNextBusinessDayScRsp" - } - Self::CmdPlanetFesGetOfferedCardPieceScRsp => { - "CmdPlanetFesGetOfferedCardPieceScRsp" - } - Self::CmdPlanetFesGetOfferedCardPieceCsReq => { - "CmdPlanetFesGetOfferedCardPieceCsReq" - } - Self::CmdPlanetFesGetFriendCardPieceScRsp => { - "CmdPlanetFesGetFriendCardPieceScRsp" - } - Self::CmdPlanetFesLargeBonusInteractCsReq => { - "CmdPlanetFesLargeBonusInteractCsReq" - } + Self::NiamjokpjipAlocmfakbkp => "NIAMJOKPJIP_ALOCMFAKBKP", + Self::CmdHmafhkaekfg => "CmdHMAFHKAEKFG", + Self::CmdClipnnjbnfi => "CmdCLIPNNJBNFI", + Self::CmdEbkejljcmop => "CmdEBKEJLJCMOP", + Self::CmdEopbcngdodj => "CmdEOPBCNGDODJ", + Self::CmdBjocihicccm => "CmdBJOCIHICCCM", + Self::CmdJlhcaehnbej => "CmdJLHCAEHNBEJ", + Self::CmdJcbdekigmgc => "CmdJCBDEKIGMGC", + Self::CmdHcbgbmkmaaa => "CmdHCBGBMKMAAA", + Self::CmdCaogkpdkpid => "CmdCAOGKPDKPID", + Self::CmdFndnkaacbhd => "CmdFNDNKAACBHD", + Self::CmdFiamcglojde => "CmdFIAMCGLOJDE", + Self::CmdBdfnnpapboj => "CmdBDFNNPAPBOJ", + Self::CmdFjbfebjnbhk => "CmdFJBFEBJNBHK", + Self::CmdEjobjpjiemf => "CmdEJOBJPJIEMF", + Self::CmdKncijneplhn => "CmdKNCIJNEPLHN", + Self::CmdIpjepogidfl => "CmdIPJEPOGIDFL", + Self::CmdGegjiocoobi => "CmdGEGJIOCOOBI", + Self::CmdIagejnpihjg => "CmdIAGEJNPIHJG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPlanetFesExtTypeNone" => Some(Self::None), - "CmdPlanetFesApplyCardPieceScRsp" => { - Some(Self::CmdPlanetFesApplyCardPieceScRsp) - } - "CmdPlanetFesGetFriendCardPieceCsReq" => { - Some(Self::CmdPlanetFesGetFriendCardPieceCsReq) - } - "CmdPlanetFesHandleCardPieceApplyScRsp" => { - Some(Self::CmdPlanetFesHandleCardPieceApplyScRsp) - } - "CmdPlanetFesApplyCardPieceCsReq" => { - Some(Self::CmdPlanetFesApplyCardPieceCsReq) - } - "CmdPlanetFesHandleCardPieceApplyCsReq" => { - Some(Self::CmdPlanetFesHandleCardPieceApplyCsReq) - } - "CmdPlanetFesGetExtraCardPieceInfoCsReq" => { - Some(Self::CmdPlanetFesGetExtraCardPieceInfoCsReq) - } - "CmdPlanetFesLargeBonusInteractScRsp" => { - Some(Self::CmdPlanetFesLargeBonusInteractScRsp) - } - "CmdPlanetFesGiveCardPieceCsReq" => { - Some(Self::CmdPlanetFesGiveCardPieceCsReq) - } - "CmdPlanetFesGetExtraCardPieceInfoScRsp" => { - Some(Self::CmdPlanetFesGetExtraCardPieceInfoScRsp) - } - "CmdPlanetFesEnterNextBusinessDayCsReq" => { - Some(Self::CmdPlanetFesEnterNextBusinessDayCsReq) - } - "CmdPlanetFesChangeCardPieceApplyPermissionCsReq" => { - Some(Self::CmdPlanetFesChangeCardPieceApplyPermissionCsReq) - } - "CmdPlanetFesChangeCardPieceApplyPermissionScRsp" => { - Some(Self::CmdPlanetFesChangeCardPieceApplyPermissionScRsp) - } - "CmdPlanetFesGiveCardPieceScRsp" => { - Some(Self::CmdPlanetFesGiveCardPieceScRsp) - } - "CmdPlanetFesEnterNextBusinessDayScRsp" => { - Some(Self::CmdPlanetFesEnterNextBusinessDayScRsp) - } - "CmdPlanetFesGetOfferedCardPieceScRsp" => { - Some(Self::CmdPlanetFesGetOfferedCardPieceScRsp) - } - "CmdPlanetFesGetOfferedCardPieceCsReq" => { - Some(Self::CmdPlanetFesGetOfferedCardPieceCsReq) - } - "CmdPlanetFesGetFriendCardPieceScRsp" => { - Some(Self::CmdPlanetFesGetFriendCardPieceScRsp) - } - "CmdPlanetFesLargeBonusInteractCsReq" => { - Some(Self::CmdPlanetFesLargeBonusInteractCsReq) - } + "NIAMJOKPJIP_ALOCMFAKBKP" => Some(Self::NiamjokpjipAlocmfakbkp), + "CmdHMAFHKAEKFG" => Some(Self::CmdHmafhkaekfg), + "CmdCLIPNNJBNFI" => Some(Self::CmdClipnnjbnfi), + "CmdEBKEJLJCMOP" => Some(Self::CmdEbkejljcmop), + "CmdEOPBCNGDODJ" => Some(Self::CmdEopbcngdodj), + "CmdBJOCIHICCCM" => Some(Self::CmdBjocihicccm), + "CmdJLHCAEHNBEJ" => Some(Self::CmdJlhcaehnbej), + "CmdJCBDEKIGMGC" => Some(Self::CmdJcbdekigmgc), + "CmdHCBGBMKMAAA" => Some(Self::CmdHcbgbmkmaaa), + "CmdCAOGKPDKPID" => Some(Self::CmdCaogkpdkpid), + "CmdFNDNKAACBHD" => Some(Self::CmdFndnkaacbhd), + "CmdFIAMCGLOJDE" => Some(Self::CmdFiamcglojde), + "CmdBDFNNPAPBOJ" => Some(Self::CmdBdfnnpapboj), + "CmdFJBFEBJNBHK" => Some(Self::CmdFjbfebjnbhk), + "CmdEJOBJPJIEMF" => Some(Self::CmdEjobjpjiemf), + "CmdKNCIJNEPLHN" => Some(Self::CmdKncijneplhn), + "CmdIPJEPOGIDFL" => Some(Self::CmdIpjepogidfl), + "CmdGEGJIOCOOBI" => Some(Self::CmdGegjiocoobi), + "CmdIAGEJNPIHJG" => Some(Self::CmdIagejnpihjg), _ => None, } } @@ -78142,41 +77062,29 @@ impl CmdPlanetFesExtType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Aopkifdmadi { - PlanetFesLargeBonusInteractStart = 0, - PlanetFesLargeBonusInteractReport = 1, - PlanetFesLargeBonusInteractFinish = 2, +pub enum Eepfkkjnppg { + Eikecpbpmea = 0, + Gepeoejmeph = 1, + Pmjehimnpcc = 2, } -impl Aopkifdmadi { +impl Eepfkkjnppg { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlanetFesLargeBonusInteractStart => { - "PLANET_FES_LARGE_BONUS_INTERACT_START" - } - Self::PlanetFesLargeBonusInteractReport => { - "PLANET_FES_LARGE_BONUS_INTERACT_REPORT" - } - Self::PlanetFesLargeBonusInteractFinish => { - "PLANET_FES_LARGE_BONUS_INTERACT_FINISH" - } + Self::Eikecpbpmea => "EEPFKKJNPPG_EIKECPBPMEA", + Self::Gepeoejmeph => "EEPFKKJNPPG_GEPEOEJMEPH", + Self::Pmjehimnpcc => "EEPFKKJNPPG_PMJEHIMNPCC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLANET_FES_LARGE_BONUS_INTERACT_START" => { - Some(Self::PlanetFesLargeBonusInteractStart) - } - "PLANET_FES_LARGE_BONUS_INTERACT_REPORT" => { - Some(Self::PlanetFesLargeBonusInteractReport) - } - "PLANET_FES_LARGE_BONUS_INTERACT_FINISH" => { - Some(Self::PlanetFesLargeBonusInteractFinish) - } + "EEPFKKJNPPG_EIKECPBPMEA" => Some(Self::Eikecpbpmea), + "EEPFKKJNPPG_GEPEOEJMEPH" => Some(Self::Gepeoejmeph), + "EEPFKKJNPPG_PMJEHIMNPCC" => Some(Self::Pmjehimnpcc), _ => None, } } @@ -78185,76 +77093,76 @@ impl Aopkifdmadi { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPlayerType { - None = 0, - CmdAceAntiCheaterCsReq = 25, - CmdUpdateFeatureSwitchScNotify = 6, - CmdFeatureSwitchClosedScNotify = 95, - CmdGetLevelRewardTakenListCsReq = 51, - CmdPlayerLoginFinishCsReq = 18, - CmdStaminaInfoScNotify = 58, - CmdGetBasicInfoCsReq = 63, - CmdPlayerLoginCsReq = 99, - CmdSetPlayerInfoCsReq = 10, - CmdUseReserveAndFuelExchangeStaminaScRsp = 20, - CmdAntiAddictScNotify = 80, - CmdSetGameplayBirthdayScRsp = 96, - CmdQueryProductInfoScRsp = 41, - CmdGmTalkScNotify = 52, - CmdPlayerLogoutCsReq = 98, - CmdPlayerKickOutScNotify = 19, - CmdGetSecretKeyInfoCsReq = 88, + IfnpbdkeialAlocmfakbkp = 0, + CmdDailyRefreshNotify = 97, + CmdSetLanguageCsReq = 57, + CmdPlayerLoginFinishCsReq = 83, + CmdSetGameplayBirthdayScRsp = 100, + CmdGetSecretKeyInfoCsReq = 18, + CmdGetAuthkeyCsReq = 81, + CmdAntiAddictScNotify = 10, + CmdExchangeStaminaScRsp = 50, + CmdGetBasicInfoCsReq = 25, + CmdSetGenderCsReq = 6, + CmdSetRedPointStatusScNotify = 86, + CmdUpdateFeatureSwitchScNotify = 85, + CmdReserveStaminaExchangeScRsp = 59, + CmdSetGenderScRsp = 88, + CmdPlayerKickOutScNotify = 95, + CmdSetNicknameCsReq = 67, + CmdPlayerLoginFinishScRsp = 53, + CmdGetSecretKeyInfoScRsp = 80, + CmdUpdatePlayerSettingScRsp = 99, + CmdPlayerLoginCsReq = 47, + CmdUpdatePsnSettingsInfoCsReq = 4, CmdMonthCardRewardNotify = 72, - CmdPlayerHeartBeatScRsp = 39, - CmdUpdatePsnSettingsInfoScRsp = 84, - CmdPlayerLogoutScRsp = 65, - CmdSetGameplayBirthdayCsReq = 1, - CmdDailyRefreshNotify = 11, - CmdQueryProductInfoCsReq = 70, - CmdGetLevelRewardTakenListScRsp = 29, - CmdGetSecretKeyInfoScRsp = 30, - CmdReserveStaminaExchangeScRsp = 46, - CmdRegionStopScNotify = 49, - CmdPlayerGetTokenCsReq = 83, - CmdClientObjDownloadDataScNotify = 8, - CmdGetBasicInfoScRsp = 4, - CmdGetVideoVersionKeyScRsp = 33, - CmdPlayerLoginScRsp = 23, - CmdSetLanguageScRsp = 22, - CmdSetNicknameCsReq = 77, - CmdExchangeStaminaScRsp = 92, - CmdGetLevelRewardCsReq = 38, - CmdPlayerForceSyncGameStateFinishScRsp = 7, - CmdSetGenderScRsp = 21, - CmdRetcodeNotify = 40, - CmdGetLevelRewardScRsp = 3, - CmdClientDownloadDataScNotify = 12, - CmdAceAntiCheaterScRsp = 85, - CmdGetAuthkeyCsReq = 37, - CmdServerAnnounceNotify = 97, - CmdUpdatePlayerSettingCsReq = 27, - CmdGmTalkCsReq = 44, - CmdGetAuthkeyScRsp = 68, - CmdReserveStaminaExchangeCsReq = 64, - CmdGetGameStateServiceConfigScRsp = 26, - CmdGateServerScNotify = 45, - CmdUpdatePlayerSettingScRsp = 31, - CmdUseReserveAndFuelExchangeStaminaCsReq = 47, - CmdPlayerGetTokenScRsp = 86, - CmdGetGameStateServiceConfigCsReq = 28, - CmdPlayerHeartBeatCsReq = 66, - CmdUpdatePsnSettingsInfoCsReq = 93, - CmdGetVideoVersionKeyCsReq = 61, - CmdSetLanguageCsReq = 59, - CmdPlayerLoginFinishScRsp = 54, - CmdExchangeStaminaCsReq = 15, - CmdSetNicknameScRsp = 5, - CmdSetGenderCsReq = 56, - CmdPlayerForceSyncGameStateFinishCsReq = 89, - CmdGmTalkScRsp = 81, - CmdSetPlayerInfoScRsp = 53, - CmdClientObjUploadCsReq = 24, - CmdSetRedPointStatusScNotify = 76, - CmdClientObjUploadScRsp = 67, + CmdAceAntiCheaterScRsp = 68, + CmdSetLanguageScRsp = 15, + CmdPlayerLoginScRsp = 9, + CmdPlayerGetTokenCsReq = 51, + CmdGetVideoVersionKeyScRsp = 48, + CmdGmTalkScNotify = 20, + CmdExchangeStaminaCsReq = 52, + CmdSetPlayerInfoScRsp = 55, + CmdKdjebhagjip = 38, + CmdUseReserveAndFuelExchangeStaminaScRsp = 74, + CmdGateServerScNotify = 27, + CmdPlayerHeartBeatCsReq = 39, + CmdQueryProductInfoScRsp = 66, + CmdClientObjUploadScRsp = 44, + CmdGetLevelRewardCsReq = 46, + IfnpbdkeialBddbodhcimp = 12, + CmdClientObjDownloadDataScNotify = 23, + CmdServerAnnounceNotify = 73, + CmdStaminaInfoScNotify = 78, + CmdClientObjUploadCsReq = 90, + CmdUpdatePsnSettingsInfoScRsp = 24, + CmdRegionStopScNotify = 37, + CmdRetcodeNotify = 65, + CmdReserveStaminaExchangeCsReq = 40, + CmdGetAuthkeyScRsp = 93, + IfnpbdkeialIpkdnbanlhb = 82, + CmdPlayerForceSyncGameStateFinishCsReq = 43, + CmdGetBasicInfoScRsp = 7, + CmdSetNicknameScRsp = 62, + CmdPlayerGetTokenScRsp = 11, + CmdFeatureSwitchClosedScNotify = 31, + CmdGetGameStateServiceConfigScRsp = 5, + CmdPlayerHeartBeatScRsp = 79, + CmdUpdatePlayerSettingCsReq = 22, + CmdClientDownloadDataScNotify = 36, + CmdGetLevelRewardTakenListCsReq = 35, + CmdPlayerForceSyncGameStateFinishScRsp = 84, + CmdGetLevelRewardTakenListScRsp = 98, + CmdGmTalkScRsp = 61, + CmdGetVideoVersionKeyCsReq = 96, + CmdSetPlayerInfoCsReq = 3, + CmdAceAntiCheaterCsReq = 34, + IfnpbdkeialJeijcdjcoka = 17, + CmdGetLevelRewardScRsp = 92, + CmdGmTalkCsReq = 91, + CmdSetGameplayBirthdayCsReq = 32, + CmdQueryProductInfoCsReq = 33, } impl CmdPlayerType { /// String value of the enum field names used in the ProtoBuf definition. @@ -78263,189 +77171,181 @@ impl CmdPlayerType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPlayerTypeNone", - Self::CmdAceAntiCheaterCsReq => "CmdAceAntiCheaterCsReq", - Self::CmdUpdateFeatureSwitchScNotify => "CmdUpdateFeatureSwitchScNotify", - Self::CmdFeatureSwitchClosedScNotify => "CmdFeatureSwitchClosedScNotify", - Self::CmdGetLevelRewardTakenListCsReq => "CmdGetLevelRewardTakenListCsReq", + Self::IfnpbdkeialAlocmfakbkp => "IFNPBDKEIAL_ALOCMFAKBKP", + Self::CmdDailyRefreshNotify => "CmdDailyRefreshNotify", + Self::CmdSetLanguageCsReq => "CmdSetLanguageCsReq", Self::CmdPlayerLoginFinishCsReq => "CmdPlayerLoginFinishCsReq", - Self::CmdStaminaInfoScNotify => "CmdStaminaInfoScNotify", + Self::CmdSetGameplayBirthdayScRsp => "CmdSetGameplayBirthdayScRsp", + Self::CmdGetSecretKeyInfoCsReq => "CmdGetSecretKeyInfoCsReq", + Self::CmdGetAuthkeyCsReq => "CmdGetAuthkeyCsReq", + Self::CmdAntiAddictScNotify => "CmdAntiAddictScNotify", + Self::CmdExchangeStaminaScRsp => "CmdExchangeStaminaScRsp", Self::CmdGetBasicInfoCsReq => "CmdGetBasicInfoCsReq", + Self::CmdSetGenderCsReq => "CmdSetGenderCsReq", + Self::CmdSetRedPointStatusScNotify => "CmdSetRedPointStatusScNotify", + Self::CmdUpdateFeatureSwitchScNotify => "CmdUpdateFeatureSwitchScNotify", + Self::CmdReserveStaminaExchangeScRsp => "CmdReserveStaminaExchangeScRsp", + Self::CmdSetGenderScRsp => "CmdSetGenderScRsp", + Self::CmdPlayerKickOutScNotify => "CmdPlayerKickOutScNotify", + Self::CmdSetNicknameCsReq => "CmdSetNicknameCsReq", + Self::CmdPlayerLoginFinishScRsp => "CmdPlayerLoginFinishScRsp", + Self::CmdGetSecretKeyInfoScRsp => "CmdGetSecretKeyInfoScRsp", + Self::CmdUpdatePlayerSettingScRsp => "CmdUpdatePlayerSettingScRsp", Self::CmdPlayerLoginCsReq => "CmdPlayerLoginCsReq", - Self::CmdSetPlayerInfoCsReq => "CmdSetPlayerInfoCsReq", + Self::CmdUpdatePsnSettingsInfoCsReq => "CmdUpdatePsnSettingsInfoCsReq", + Self::CmdMonthCardRewardNotify => "CmdMonthCardRewardNotify", + Self::CmdAceAntiCheaterScRsp => "CmdAceAntiCheaterScRsp", + Self::CmdSetLanguageScRsp => "CmdSetLanguageScRsp", + Self::CmdPlayerLoginScRsp => "CmdPlayerLoginScRsp", + Self::CmdPlayerGetTokenCsReq => "CmdPlayerGetTokenCsReq", + Self::CmdGetVideoVersionKeyScRsp => "CmdGetVideoVersionKeyScRsp", + Self::CmdGmTalkScNotify => "CmdGmTalkScNotify", + Self::CmdExchangeStaminaCsReq => "CmdExchangeStaminaCsReq", + Self::CmdSetPlayerInfoScRsp => "CmdSetPlayerInfoScRsp", + Self::CmdKdjebhagjip => "CmdKDJEBHAGJIP", Self::CmdUseReserveAndFuelExchangeStaminaScRsp => { "CmdUseReserveAndFuelExchangeStaminaScRsp" } - Self::CmdAntiAddictScNotify => "CmdAntiAddictScNotify", - Self::CmdSetGameplayBirthdayScRsp => "CmdSetGameplayBirthdayScRsp", - Self::CmdQueryProductInfoScRsp => "CmdQueryProductInfoScRsp", - Self::CmdGmTalkScNotify => "CmdGmTalkScNotify", - Self::CmdPlayerLogoutCsReq => "CmdPlayerLogoutCsReq", - Self::CmdPlayerKickOutScNotify => "CmdPlayerKickOutScNotify", - Self::CmdGetSecretKeyInfoCsReq => "CmdGetSecretKeyInfoCsReq", - Self::CmdMonthCardRewardNotify => "CmdMonthCardRewardNotify", - Self::CmdPlayerHeartBeatScRsp => "CmdPlayerHeartBeatScRsp", - Self::CmdUpdatePsnSettingsInfoScRsp => "CmdUpdatePsnSettingsInfoScRsp", - Self::CmdPlayerLogoutScRsp => "CmdPlayerLogoutScRsp", - Self::CmdSetGameplayBirthdayCsReq => "CmdSetGameplayBirthdayCsReq", - Self::CmdDailyRefreshNotify => "CmdDailyRefreshNotify", - Self::CmdQueryProductInfoCsReq => "CmdQueryProductInfoCsReq", - Self::CmdGetLevelRewardTakenListScRsp => "CmdGetLevelRewardTakenListScRsp", - Self::CmdGetSecretKeyInfoScRsp => "CmdGetSecretKeyInfoScRsp", - Self::CmdReserveStaminaExchangeScRsp => "CmdReserveStaminaExchangeScRsp", - Self::CmdRegionStopScNotify => "CmdRegionStopScNotify", - Self::CmdPlayerGetTokenCsReq => "CmdPlayerGetTokenCsReq", - Self::CmdClientObjDownloadDataScNotify => "CmdClientObjDownloadDataScNotify", - Self::CmdGetBasicInfoScRsp => "CmdGetBasicInfoScRsp", - Self::CmdGetVideoVersionKeyScRsp => "CmdGetVideoVersionKeyScRsp", - Self::CmdPlayerLoginScRsp => "CmdPlayerLoginScRsp", - Self::CmdSetLanguageScRsp => "CmdSetLanguageScRsp", - Self::CmdSetNicknameCsReq => "CmdSetNicknameCsReq", - Self::CmdExchangeStaminaScRsp => "CmdExchangeStaminaScRsp", - Self::CmdGetLevelRewardCsReq => "CmdGetLevelRewardCsReq", - Self::CmdPlayerForceSyncGameStateFinishScRsp => { - "CmdPlayerForceSyncGameStateFinishScRsp" - } - Self::CmdSetGenderScRsp => "CmdSetGenderScRsp", - Self::CmdRetcodeNotify => "CmdRetcodeNotify", - Self::CmdGetLevelRewardScRsp => "CmdGetLevelRewardScRsp", - Self::CmdClientDownloadDataScNotify => "CmdClientDownloadDataScNotify", - Self::CmdAceAntiCheaterScRsp => "CmdAceAntiCheaterScRsp", - Self::CmdGetAuthkeyCsReq => "CmdGetAuthkeyCsReq", - Self::CmdServerAnnounceNotify => "CmdServerAnnounceNotify", - Self::CmdUpdatePlayerSettingCsReq => "CmdUpdatePlayerSettingCsReq", - Self::CmdGmTalkCsReq => "CmdGmTalkCsReq", - Self::CmdGetAuthkeyScRsp => "CmdGetAuthkeyScRsp", - Self::CmdReserveStaminaExchangeCsReq => "CmdReserveStaminaExchangeCsReq", - Self::CmdGetGameStateServiceConfigScRsp => { - "CmdGetGameStateServiceConfigScRsp" - } Self::CmdGateServerScNotify => "CmdGateServerScNotify", - Self::CmdUpdatePlayerSettingScRsp => "CmdUpdatePlayerSettingScRsp", - Self::CmdUseReserveAndFuelExchangeStaminaCsReq => { - "CmdUseReserveAndFuelExchangeStaminaCsReq" - } - Self::CmdPlayerGetTokenScRsp => "CmdPlayerGetTokenScRsp", - Self::CmdGetGameStateServiceConfigCsReq => { - "CmdGetGameStateServiceConfigCsReq" - } Self::CmdPlayerHeartBeatCsReq => "CmdPlayerHeartBeatCsReq", - Self::CmdUpdatePsnSettingsInfoCsReq => "CmdUpdatePsnSettingsInfoCsReq", - Self::CmdGetVideoVersionKeyCsReq => "CmdGetVideoVersionKeyCsReq", - Self::CmdSetLanguageCsReq => "CmdSetLanguageCsReq", - Self::CmdPlayerLoginFinishScRsp => "CmdPlayerLoginFinishScRsp", - Self::CmdExchangeStaminaCsReq => "CmdExchangeStaminaCsReq", - Self::CmdSetNicknameScRsp => "CmdSetNicknameScRsp", - Self::CmdSetGenderCsReq => "CmdSetGenderCsReq", + Self::CmdQueryProductInfoScRsp => "CmdQueryProductInfoScRsp", + Self::CmdClientObjUploadScRsp => "CmdClientObjUploadScRsp", + Self::CmdGetLevelRewardCsReq => "CmdGetLevelRewardCsReq", + Self::IfnpbdkeialBddbodhcimp => "IFNPBDKEIAL_BDDBODHCIMP", + Self::CmdClientObjDownloadDataScNotify => "CmdClientObjDownloadDataScNotify", + Self::CmdServerAnnounceNotify => "CmdServerAnnounceNotify", + Self::CmdStaminaInfoScNotify => "CmdStaminaInfoScNotify", + Self::CmdClientObjUploadCsReq => "CmdClientObjUploadCsReq", + Self::CmdUpdatePsnSettingsInfoScRsp => "CmdUpdatePsnSettingsInfoScRsp", + Self::CmdRegionStopScNotify => "CmdRegionStopScNotify", + Self::CmdRetcodeNotify => "CmdRetcodeNotify", + Self::CmdReserveStaminaExchangeCsReq => "CmdReserveStaminaExchangeCsReq", + Self::CmdGetAuthkeyScRsp => "CmdGetAuthkeyScRsp", + Self::IfnpbdkeialIpkdnbanlhb => "IFNPBDKEIAL_IPKDNBANLHB", Self::CmdPlayerForceSyncGameStateFinishCsReq => { "CmdPlayerForceSyncGameStateFinishCsReq" } + Self::CmdGetBasicInfoScRsp => "CmdGetBasicInfoScRsp", + Self::CmdSetNicknameScRsp => "CmdSetNicknameScRsp", + Self::CmdPlayerGetTokenScRsp => "CmdPlayerGetTokenScRsp", + Self::CmdFeatureSwitchClosedScNotify => "CmdFeatureSwitchClosedScNotify", + Self::CmdGetGameStateServiceConfigScRsp => { + "CmdGetGameStateServiceConfigScRsp" + } + Self::CmdPlayerHeartBeatScRsp => "CmdPlayerHeartBeatScRsp", + Self::CmdUpdatePlayerSettingCsReq => "CmdUpdatePlayerSettingCsReq", + Self::CmdClientDownloadDataScNotify => "CmdClientDownloadDataScNotify", + Self::CmdGetLevelRewardTakenListCsReq => "CmdGetLevelRewardTakenListCsReq", + Self::CmdPlayerForceSyncGameStateFinishScRsp => { + "CmdPlayerForceSyncGameStateFinishScRsp" + } + Self::CmdGetLevelRewardTakenListScRsp => "CmdGetLevelRewardTakenListScRsp", Self::CmdGmTalkScRsp => "CmdGmTalkScRsp", - Self::CmdSetPlayerInfoScRsp => "CmdSetPlayerInfoScRsp", - Self::CmdClientObjUploadCsReq => "CmdClientObjUploadCsReq", - Self::CmdSetRedPointStatusScNotify => "CmdSetRedPointStatusScNotify", - Self::CmdClientObjUploadScRsp => "CmdClientObjUploadScRsp", + Self::CmdGetVideoVersionKeyCsReq => "CmdGetVideoVersionKeyCsReq", + Self::CmdSetPlayerInfoCsReq => "CmdSetPlayerInfoCsReq", + Self::CmdAceAntiCheaterCsReq => "CmdAceAntiCheaterCsReq", + Self::IfnpbdkeialJeijcdjcoka => "IFNPBDKEIAL_JEIJCDJCOKA", + Self::CmdGetLevelRewardScRsp => "CmdGetLevelRewardScRsp", + Self::CmdGmTalkCsReq => "CmdGmTalkCsReq", + Self::CmdSetGameplayBirthdayCsReq => "CmdSetGameplayBirthdayCsReq", + Self::CmdQueryProductInfoCsReq => "CmdQueryProductInfoCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPlayerTypeNone" => Some(Self::None), - "CmdAceAntiCheaterCsReq" => Some(Self::CmdAceAntiCheaterCsReq), + "IFNPBDKEIAL_ALOCMFAKBKP" => Some(Self::IfnpbdkeialAlocmfakbkp), + "CmdDailyRefreshNotify" => Some(Self::CmdDailyRefreshNotify), + "CmdSetLanguageCsReq" => Some(Self::CmdSetLanguageCsReq), + "CmdPlayerLoginFinishCsReq" => Some(Self::CmdPlayerLoginFinishCsReq), + "CmdSetGameplayBirthdayScRsp" => Some(Self::CmdSetGameplayBirthdayScRsp), + "CmdGetSecretKeyInfoCsReq" => Some(Self::CmdGetSecretKeyInfoCsReq), + "CmdGetAuthkeyCsReq" => Some(Self::CmdGetAuthkeyCsReq), + "CmdAntiAddictScNotify" => Some(Self::CmdAntiAddictScNotify), + "CmdExchangeStaminaScRsp" => Some(Self::CmdExchangeStaminaScRsp), + "CmdGetBasicInfoCsReq" => Some(Self::CmdGetBasicInfoCsReq), + "CmdSetGenderCsReq" => Some(Self::CmdSetGenderCsReq), + "CmdSetRedPointStatusScNotify" => Some(Self::CmdSetRedPointStatusScNotify), "CmdUpdateFeatureSwitchScNotify" => { Some(Self::CmdUpdateFeatureSwitchScNotify) } - "CmdFeatureSwitchClosedScNotify" => { - Some(Self::CmdFeatureSwitchClosedScNotify) - } - "CmdGetLevelRewardTakenListCsReq" => { - Some(Self::CmdGetLevelRewardTakenListCsReq) - } - "CmdPlayerLoginFinishCsReq" => Some(Self::CmdPlayerLoginFinishCsReq), - "CmdStaminaInfoScNotify" => Some(Self::CmdStaminaInfoScNotify), - "CmdGetBasicInfoCsReq" => Some(Self::CmdGetBasicInfoCsReq), - "CmdPlayerLoginCsReq" => Some(Self::CmdPlayerLoginCsReq), - "CmdSetPlayerInfoCsReq" => Some(Self::CmdSetPlayerInfoCsReq), - "CmdUseReserveAndFuelExchangeStaminaScRsp" => { - Some(Self::CmdUseReserveAndFuelExchangeStaminaScRsp) - } - "CmdAntiAddictScNotify" => Some(Self::CmdAntiAddictScNotify), - "CmdSetGameplayBirthdayScRsp" => Some(Self::CmdSetGameplayBirthdayScRsp), - "CmdQueryProductInfoScRsp" => Some(Self::CmdQueryProductInfoScRsp), - "CmdGmTalkScNotify" => Some(Self::CmdGmTalkScNotify), - "CmdPlayerLogoutCsReq" => Some(Self::CmdPlayerLogoutCsReq), - "CmdPlayerKickOutScNotify" => Some(Self::CmdPlayerKickOutScNotify), - "CmdGetSecretKeyInfoCsReq" => Some(Self::CmdGetSecretKeyInfoCsReq), - "CmdMonthCardRewardNotify" => Some(Self::CmdMonthCardRewardNotify), - "CmdPlayerHeartBeatScRsp" => Some(Self::CmdPlayerHeartBeatScRsp), - "CmdUpdatePsnSettingsInfoScRsp" => Some(Self::CmdUpdatePsnSettingsInfoScRsp), - "CmdPlayerLogoutScRsp" => Some(Self::CmdPlayerLogoutScRsp), - "CmdSetGameplayBirthdayCsReq" => Some(Self::CmdSetGameplayBirthdayCsReq), - "CmdDailyRefreshNotify" => Some(Self::CmdDailyRefreshNotify), - "CmdQueryProductInfoCsReq" => Some(Self::CmdQueryProductInfoCsReq), - "CmdGetLevelRewardTakenListScRsp" => { - Some(Self::CmdGetLevelRewardTakenListScRsp) - } - "CmdGetSecretKeyInfoScRsp" => Some(Self::CmdGetSecretKeyInfoScRsp), "CmdReserveStaminaExchangeScRsp" => { Some(Self::CmdReserveStaminaExchangeScRsp) } - "CmdRegionStopScNotify" => Some(Self::CmdRegionStopScNotify), + "CmdSetGenderScRsp" => Some(Self::CmdSetGenderScRsp), + "CmdPlayerKickOutScNotify" => Some(Self::CmdPlayerKickOutScNotify), + "CmdSetNicknameCsReq" => Some(Self::CmdSetNicknameCsReq), + "CmdPlayerLoginFinishScRsp" => Some(Self::CmdPlayerLoginFinishScRsp), + "CmdGetSecretKeyInfoScRsp" => Some(Self::CmdGetSecretKeyInfoScRsp), + "CmdUpdatePlayerSettingScRsp" => Some(Self::CmdUpdatePlayerSettingScRsp), + "CmdPlayerLoginCsReq" => Some(Self::CmdPlayerLoginCsReq), + "CmdUpdatePsnSettingsInfoCsReq" => Some(Self::CmdUpdatePsnSettingsInfoCsReq), + "CmdMonthCardRewardNotify" => Some(Self::CmdMonthCardRewardNotify), + "CmdAceAntiCheaterScRsp" => Some(Self::CmdAceAntiCheaterScRsp), + "CmdSetLanguageScRsp" => Some(Self::CmdSetLanguageScRsp), + "CmdPlayerLoginScRsp" => Some(Self::CmdPlayerLoginScRsp), "CmdPlayerGetTokenCsReq" => Some(Self::CmdPlayerGetTokenCsReq), + "CmdGetVideoVersionKeyScRsp" => Some(Self::CmdGetVideoVersionKeyScRsp), + "CmdGmTalkScNotify" => Some(Self::CmdGmTalkScNotify), + "CmdExchangeStaminaCsReq" => Some(Self::CmdExchangeStaminaCsReq), + "CmdSetPlayerInfoScRsp" => Some(Self::CmdSetPlayerInfoScRsp), + "CmdKDJEBHAGJIP" => Some(Self::CmdKdjebhagjip), + "CmdUseReserveAndFuelExchangeStaminaScRsp" => { + Some(Self::CmdUseReserveAndFuelExchangeStaminaScRsp) + } + "CmdGateServerScNotify" => Some(Self::CmdGateServerScNotify), + "CmdPlayerHeartBeatCsReq" => Some(Self::CmdPlayerHeartBeatCsReq), + "CmdQueryProductInfoScRsp" => Some(Self::CmdQueryProductInfoScRsp), + "CmdClientObjUploadScRsp" => Some(Self::CmdClientObjUploadScRsp), + "CmdGetLevelRewardCsReq" => Some(Self::CmdGetLevelRewardCsReq), + "IFNPBDKEIAL_BDDBODHCIMP" => Some(Self::IfnpbdkeialBddbodhcimp), "CmdClientObjDownloadDataScNotify" => { Some(Self::CmdClientObjDownloadDataScNotify) } - "CmdGetBasicInfoScRsp" => Some(Self::CmdGetBasicInfoScRsp), - "CmdGetVideoVersionKeyScRsp" => Some(Self::CmdGetVideoVersionKeyScRsp), - "CmdPlayerLoginScRsp" => Some(Self::CmdPlayerLoginScRsp), - "CmdSetLanguageScRsp" => Some(Self::CmdSetLanguageScRsp), - "CmdSetNicknameCsReq" => Some(Self::CmdSetNicknameCsReq), - "CmdExchangeStaminaScRsp" => Some(Self::CmdExchangeStaminaScRsp), - "CmdGetLevelRewardCsReq" => Some(Self::CmdGetLevelRewardCsReq), - "CmdPlayerForceSyncGameStateFinishScRsp" => { - Some(Self::CmdPlayerForceSyncGameStateFinishScRsp) - } - "CmdSetGenderScRsp" => Some(Self::CmdSetGenderScRsp), - "CmdRetcodeNotify" => Some(Self::CmdRetcodeNotify), - "CmdGetLevelRewardScRsp" => Some(Self::CmdGetLevelRewardScRsp), - "CmdClientDownloadDataScNotify" => Some(Self::CmdClientDownloadDataScNotify), - "CmdAceAntiCheaterScRsp" => Some(Self::CmdAceAntiCheaterScRsp), - "CmdGetAuthkeyCsReq" => Some(Self::CmdGetAuthkeyCsReq), "CmdServerAnnounceNotify" => Some(Self::CmdServerAnnounceNotify), - "CmdUpdatePlayerSettingCsReq" => Some(Self::CmdUpdatePlayerSettingCsReq), - "CmdGmTalkCsReq" => Some(Self::CmdGmTalkCsReq), - "CmdGetAuthkeyScRsp" => Some(Self::CmdGetAuthkeyScRsp), + "CmdStaminaInfoScNotify" => Some(Self::CmdStaminaInfoScNotify), + "CmdClientObjUploadCsReq" => Some(Self::CmdClientObjUploadCsReq), + "CmdUpdatePsnSettingsInfoScRsp" => Some(Self::CmdUpdatePsnSettingsInfoScRsp), + "CmdRegionStopScNotify" => Some(Self::CmdRegionStopScNotify), + "CmdRetcodeNotify" => Some(Self::CmdRetcodeNotify), "CmdReserveStaminaExchangeCsReq" => { Some(Self::CmdReserveStaminaExchangeCsReq) } + "CmdGetAuthkeyScRsp" => Some(Self::CmdGetAuthkeyScRsp), + "IFNPBDKEIAL_IPKDNBANLHB" => Some(Self::IfnpbdkeialIpkdnbanlhb), + "CmdPlayerForceSyncGameStateFinishCsReq" => { + Some(Self::CmdPlayerForceSyncGameStateFinishCsReq) + } + "CmdGetBasicInfoScRsp" => Some(Self::CmdGetBasicInfoScRsp), + "CmdSetNicknameScRsp" => Some(Self::CmdSetNicknameScRsp), + "CmdPlayerGetTokenScRsp" => Some(Self::CmdPlayerGetTokenScRsp), + "CmdFeatureSwitchClosedScNotify" => { + Some(Self::CmdFeatureSwitchClosedScNotify) + } "CmdGetGameStateServiceConfigScRsp" => { Some(Self::CmdGetGameStateServiceConfigScRsp) } - "CmdGateServerScNotify" => Some(Self::CmdGateServerScNotify), - "CmdUpdatePlayerSettingScRsp" => Some(Self::CmdUpdatePlayerSettingScRsp), - "CmdUseReserveAndFuelExchangeStaminaCsReq" => { - Some(Self::CmdUseReserveAndFuelExchangeStaminaCsReq) + "CmdPlayerHeartBeatScRsp" => Some(Self::CmdPlayerHeartBeatScRsp), + "CmdUpdatePlayerSettingCsReq" => Some(Self::CmdUpdatePlayerSettingCsReq), + "CmdClientDownloadDataScNotify" => Some(Self::CmdClientDownloadDataScNotify), + "CmdGetLevelRewardTakenListCsReq" => { + Some(Self::CmdGetLevelRewardTakenListCsReq) } - "CmdPlayerGetTokenScRsp" => Some(Self::CmdPlayerGetTokenScRsp), - "CmdGetGameStateServiceConfigCsReq" => { - Some(Self::CmdGetGameStateServiceConfigCsReq) + "CmdPlayerForceSyncGameStateFinishScRsp" => { + Some(Self::CmdPlayerForceSyncGameStateFinishScRsp) } - "CmdPlayerHeartBeatCsReq" => Some(Self::CmdPlayerHeartBeatCsReq), - "CmdUpdatePsnSettingsInfoCsReq" => Some(Self::CmdUpdatePsnSettingsInfoCsReq), - "CmdGetVideoVersionKeyCsReq" => Some(Self::CmdGetVideoVersionKeyCsReq), - "CmdSetLanguageCsReq" => Some(Self::CmdSetLanguageCsReq), - "CmdPlayerLoginFinishScRsp" => Some(Self::CmdPlayerLoginFinishScRsp), - "CmdExchangeStaminaCsReq" => Some(Self::CmdExchangeStaminaCsReq), - "CmdSetNicknameScRsp" => Some(Self::CmdSetNicknameScRsp), - "CmdSetGenderCsReq" => Some(Self::CmdSetGenderCsReq), - "CmdPlayerForceSyncGameStateFinishCsReq" => { - Some(Self::CmdPlayerForceSyncGameStateFinishCsReq) + "CmdGetLevelRewardTakenListScRsp" => { + Some(Self::CmdGetLevelRewardTakenListScRsp) } "CmdGmTalkScRsp" => Some(Self::CmdGmTalkScRsp), - "CmdSetPlayerInfoScRsp" => Some(Self::CmdSetPlayerInfoScRsp), - "CmdClientObjUploadCsReq" => Some(Self::CmdClientObjUploadCsReq), - "CmdSetRedPointStatusScNotify" => Some(Self::CmdSetRedPointStatusScNotify), - "CmdClientObjUploadScRsp" => Some(Self::CmdClientObjUploadScRsp), + "CmdGetVideoVersionKeyCsReq" => Some(Self::CmdGetVideoVersionKeyCsReq), + "CmdSetPlayerInfoCsReq" => Some(Self::CmdSetPlayerInfoCsReq), + "CmdAceAntiCheaterCsReq" => Some(Self::CmdAceAntiCheaterCsReq), + "IFNPBDKEIAL_JEIJCDJCOKA" => Some(Self::IfnpbdkeialJeijcdjcoka), + "CmdGetLevelRewardScRsp" => Some(Self::CmdGetLevelRewardScRsp), + "CmdGmTalkCsReq" => Some(Self::CmdGmTalkCsReq), + "CmdSetGameplayBirthdayCsReq" => Some(Self::CmdSetGameplayBirthdayCsReq), + "CmdQueryProductInfoCsReq" => Some(Self::CmdQueryProductInfoCsReq), _ => None, } } @@ -78453,29 +77353,29 @@ impl CmdPlayerType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ilpmnldgeak { - AuthkeySignTypeNone = 0, - AuthkeySignTypeDefault = 1, - AuthkeySignTypeRsa = 2, +pub enum Kdlaaejngmn { + Alocmfakbkp = 0, + Aclopoimglj = 1, + Miiedkblmfc = 2, } -impl Ilpmnldgeak { +impl Kdlaaejngmn { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::AuthkeySignTypeNone => "AUTHKEY_SIGN_TYPE_NONE", - Self::AuthkeySignTypeDefault => "AUTHKEY_SIGN_TYPE_DEFAULT", - Self::AuthkeySignTypeRsa => "AUTHKEY_SIGN_TYPE_RSA", + Self::Alocmfakbkp => "KDLAAEJNGMN_ALOCMFAKBKP", + Self::Aclopoimglj => "KDLAAEJNGMN_ACLOPOIMGLJ", + Self::Miiedkblmfc => "KDLAAEJNGMN_MIIEDKBLMFC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "AUTHKEY_SIGN_TYPE_NONE" => Some(Self::AuthkeySignTypeNone), - "AUTHKEY_SIGN_TYPE_DEFAULT" => Some(Self::AuthkeySignTypeDefault), - "AUTHKEY_SIGN_TYPE_RSA" => Some(Self::AuthkeySignTypeRsa), + "KDLAAEJNGMN_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "KDLAAEJNGMN_ACLOPOIMGLJ" => Some(Self::Aclopoimglj), + "KDLAAEJNGMN_MIIEDKBLMFC" => Some(Self::Miiedkblmfc), _ => None, } } @@ -78483,26 +77383,26 @@ impl Ilpmnldgeak { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jidiecghkgk { - ObjContentJson = 0, - ObjContentPb = 1, +pub enum Ejlbonkelao { + Fkpfinlbgcd = 0, + Bhebndojcha = 1, } -impl Jidiecghkgk { +impl Ejlbonkelao { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ObjContentJson => "OBJ_CONTENT_JSON", - Self::ObjContentPb => "OBJ_CONTENT_PB", + Self::Fkpfinlbgcd => "EJLBONKELAO_FKPFINLBGCD", + Self::Bhebndojcha => "EJLBONKELAO_BHEBNDOJCHA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "OBJ_CONTENT_JSON" => Some(Self::ObjContentJson), - "OBJ_CONTENT_PB" => Some(Self::ObjContentPb), + "EJLBONKELAO_FKPFINLBGCD" => Some(Self::Fkpfinlbgcd), + "EJLBONKELAO_BHEBNDOJCHA" => Some(Self::Bhebndojcha), _ => None, } } @@ -78511,22 +77411,22 @@ impl Jidiecghkgk { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPlayerBoardType { - None = 0, - CmdSetDisplayAvatarCsReq = 2883, - CmdSetAssistAvatarCsReq = 2869, - CmdUnlockHeadIconScNotify = 2819, - CmdSetSignatureCsReq = 2844, - CmdGetPlayerBoardDataCsReq = 2899, - CmdSetAssistAvatarScRsp = 2857, - CmdSetSignatureScRsp = 2881, - CmdSetHeadIconCsReq = 2898, - CmdSetPersonalCardScRsp = 2892, - CmdSetPersonalCardCsReq = 2815, - CmdSetHeadIconScRsp = 2865, - CmdSetIsDisplayAvatarInfoScRsp = 2852, - CmdSetIsDisplayAvatarInfoCsReq = 2894, - CmdGetPlayerBoardDataScRsp = 2823, - CmdSetDisplayAvatarScRsp = 2886, + EjhambhekjkAlocmfakbkp = 0, + CmdSetIsDisplayAvatarInfoScRsp = 2820, + CmdSetHeadIconCsReq = 2838, + CmdSetDisplayAvatarCsReq = 2851, + CmdSetSignatureScRsp = 2861, + CmdSetSignatureCsReq = 2891, + CmdGetPlayerBoardDataScRsp = 2809, + CmdSetPersonalCardCsReq = 2852, + CmdSetAssistAvatarScRsp = 2876, + EjhambhekjkNgffcolmcmi = 2895, + CmdGetPlayerBoardDataCsReq = 2847, + CmdSetPersonalCardScRsp = 2850, + CmdSetDisplayAvatarScRsp = 2811, + CmdSetAssistAvatarCsReq = 2845, + CmdSetHeadIconScRsp = 2817, + CmdSetIsDisplayAvatarInfoCsReq = 2889, } impl CmdPlayerBoardType { /// String value of the enum field names used in the ProtoBuf definition. @@ -78535,47 +77435,47 @@ impl CmdPlayerBoardType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPlayerBoardTypeNone", - Self::CmdSetDisplayAvatarCsReq => "CmdSetDisplayAvatarCsReq", - Self::CmdSetAssistAvatarCsReq => "CmdSetAssistAvatarCsReq", - Self::CmdUnlockHeadIconScNotify => "CmdUnlockHeadIconScNotify", - Self::CmdSetSignatureCsReq => "CmdSetSignatureCsReq", - Self::CmdGetPlayerBoardDataCsReq => "CmdGetPlayerBoardDataCsReq", - Self::CmdSetAssistAvatarScRsp => "CmdSetAssistAvatarScRsp", - Self::CmdSetSignatureScRsp => "CmdSetSignatureScRsp", - Self::CmdSetHeadIconCsReq => "CmdSetHeadIconCsReq", - Self::CmdSetPersonalCardScRsp => "CmdSetPersonalCardScRsp", - Self::CmdSetPersonalCardCsReq => "CmdSetPersonalCardCsReq", - Self::CmdSetHeadIconScRsp => "CmdSetHeadIconScRsp", + Self::EjhambhekjkAlocmfakbkp => "EJHAMBHEKJK_ALOCMFAKBKP", Self::CmdSetIsDisplayAvatarInfoScRsp => "CmdSetIsDisplayAvatarInfoScRsp", - Self::CmdSetIsDisplayAvatarInfoCsReq => "CmdSetIsDisplayAvatarInfoCsReq", + Self::CmdSetHeadIconCsReq => "CmdSetHeadIconCsReq", + Self::CmdSetDisplayAvatarCsReq => "CmdSetDisplayAvatarCsReq", + Self::CmdSetSignatureScRsp => "CmdSetSignatureScRsp", + Self::CmdSetSignatureCsReq => "CmdSetSignatureCsReq", Self::CmdGetPlayerBoardDataScRsp => "CmdGetPlayerBoardDataScRsp", + Self::CmdSetPersonalCardCsReq => "CmdSetPersonalCardCsReq", + Self::CmdSetAssistAvatarScRsp => "CmdSetAssistAvatarScRsp", + Self::EjhambhekjkNgffcolmcmi => "EJHAMBHEKJK_NGFFCOLMCMI", + Self::CmdGetPlayerBoardDataCsReq => "CmdGetPlayerBoardDataCsReq", + Self::CmdSetPersonalCardScRsp => "CmdSetPersonalCardScRsp", Self::CmdSetDisplayAvatarScRsp => "CmdSetDisplayAvatarScRsp", + Self::CmdSetAssistAvatarCsReq => "CmdSetAssistAvatarCsReq", + Self::CmdSetHeadIconScRsp => "CmdSetHeadIconScRsp", + Self::CmdSetIsDisplayAvatarInfoCsReq => "CmdSetIsDisplayAvatarInfoCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPlayerBoardTypeNone" => Some(Self::None), - "CmdSetDisplayAvatarCsReq" => Some(Self::CmdSetDisplayAvatarCsReq), - "CmdSetAssistAvatarCsReq" => Some(Self::CmdSetAssistAvatarCsReq), - "CmdUnlockHeadIconScNotify" => Some(Self::CmdUnlockHeadIconScNotify), - "CmdSetSignatureCsReq" => Some(Self::CmdSetSignatureCsReq), - "CmdGetPlayerBoardDataCsReq" => Some(Self::CmdGetPlayerBoardDataCsReq), - "CmdSetAssistAvatarScRsp" => Some(Self::CmdSetAssistAvatarScRsp), - "CmdSetSignatureScRsp" => Some(Self::CmdSetSignatureScRsp), - "CmdSetHeadIconCsReq" => Some(Self::CmdSetHeadIconCsReq), - "CmdSetPersonalCardScRsp" => Some(Self::CmdSetPersonalCardScRsp), - "CmdSetPersonalCardCsReq" => Some(Self::CmdSetPersonalCardCsReq), - "CmdSetHeadIconScRsp" => Some(Self::CmdSetHeadIconScRsp), + "EJHAMBHEKJK_ALOCMFAKBKP" => Some(Self::EjhambhekjkAlocmfakbkp), "CmdSetIsDisplayAvatarInfoScRsp" => { Some(Self::CmdSetIsDisplayAvatarInfoScRsp) } + "CmdSetHeadIconCsReq" => Some(Self::CmdSetHeadIconCsReq), + "CmdSetDisplayAvatarCsReq" => Some(Self::CmdSetDisplayAvatarCsReq), + "CmdSetSignatureScRsp" => Some(Self::CmdSetSignatureScRsp), + "CmdSetSignatureCsReq" => Some(Self::CmdSetSignatureCsReq), + "CmdGetPlayerBoardDataScRsp" => Some(Self::CmdGetPlayerBoardDataScRsp), + "CmdSetPersonalCardCsReq" => Some(Self::CmdSetPersonalCardCsReq), + "CmdSetAssistAvatarScRsp" => Some(Self::CmdSetAssistAvatarScRsp), + "EJHAMBHEKJK_NGFFCOLMCMI" => Some(Self::EjhambhekjkNgffcolmcmi), + "CmdGetPlayerBoardDataCsReq" => Some(Self::CmdGetPlayerBoardDataCsReq), + "CmdSetPersonalCardScRsp" => Some(Self::CmdSetPersonalCardScRsp), + "CmdSetDisplayAvatarScRsp" => Some(Self::CmdSetDisplayAvatarScRsp), + "CmdSetAssistAvatarCsReq" => Some(Self::CmdSetAssistAvatarCsReq), + "CmdSetHeadIconScRsp" => Some(Self::CmdSetHeadIconScRsp), "CmdSetIsDisplayAvatarInfoCsReq" => { Some(Self::CmdSetIsDisplayAvatarInfoCsReq) } - "CmdGetPlayerBoardDataScRsp" => Some(Self::CmdGetPlayerBoardDataScRsp), - "CmdSetDisplayAvatarScRsp" => Some(Self::CmdSetDisplayAvatarScRsp), _ => None, } } @@ -78584,21 +77484,21 @@ impl CmdPlayerBoardType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPlayerReturnType { - None = 0, - CmdPlayerReturnTakeRelicCsReq = 4569, - CmdPlayerReturnPointChangeScNotify = 4565, - CmdPlayerReturnTakeRewardCsReq = 4594, - CmdPlayerReturnTakeRewardScRsp = 4552, - CmdPlayerReturnTakeExtraHcoinScNotify = 4515, - CmdPlayerReturnTakeRelicScRsp = 4557, - CmdPlayerReturnSignCsReq = 4523, - CmdPlayerReturnStartScNotify = 4599, - CmdPlayerReturnTakePointRewardCsReq = 4583, - CmdPlayerReturnForceFinishScNotify = 4581, - CmdPlayerReturnSignScRsp = 4598, - CmdPlayerReturnInfoQueryScRsp = 4544, - CmdPlayerReturnInfoQueryCsReq = 4519, - CmdPlayerReturnTakePointRewardScRsp = 4586, + NljkedpkekiAlocmfakbkp = 0, + CmdJllfeeobfib = 4595, + CmdEoenaeachig = 4517, + CmdPbomomdnpnc = 4545, + CmdDfhmnekalkp = 4547, + CmdHmhoklipden = 4552, + CmdIfngoohfdnf = 4551, + CmdIpalimdicel = 4520, + CmdFndiillenpf = 4576, + CmdBciedhokljn = 4589, + CmdCdlhhednjpo = 4509, + CmdNgdgknlhdbb = 4511, + CmdAdlcnmfdmhh = 4561, + CmdPegnhmlbkjk = 4591, + CmdBjjlcbbdhof = 4538, } impl CmdPlayerReturnType { /// String value of the enum field names used in the ProtoBuf definition. @@ -78607,65 +77507,41 @@ impl CmdPlayerReturnType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPlayerReturnTypeNone", - Self::CmdPlayerReturnTakeRelicCsReq => "CmdPlayerReturnTakeRelicCsReq", - Self::CmdPlayerReturnPointChangeScNotify => { - "CmdPlayerReturnPointChangeScNotify" - } - Self::CmdPlayerReturnTakeRewardCsReq => "CmdPlayerReturnTakeRewardCsReq", - Self::CmdPlayerReturnTakeRewardScRsp => "CmdPlayerReturnTakeRewardScRsp", - Self::CmdPlayerReturnTakeExtraHcoinScNotify => { - "CmdPlayerReturnTakeExtraHcoinScNotify" - } - Self::CmdPlayerReturnTakeRelicScRsp => "CmdPlayerReturnTakeRelicScRsp", - Self::CmdPlayerReturnSignCsReq => "CmdPlayerReturnSignCsReq", - Self::CmdPlayerReturnStartScNotify => "CmdPlayerReturnStartScNotify", - Self::CmdPlayerReturnTakePointRewardCsReq => { - "CmdPlayerReturnTakePointRewardCsReq" - } - Self::CmdPlayerReturnForceFinishScNotify => { - "CmdPlayerReturnForceFinishScNotify" - } - Self::CmdPlayerReturnSignScRsp => "CmdPlayerReturnSignScRsp", - Self::CmdPlayerReturnInfoQueryScRsp => "CmdPlayerReturnInfoQueryScRsp", - Self::CmdPlayerReturnInfoQueryCsReq => "CmdPlayerReturnInfoQueryCsReq", - Self::CmdPlayerReturnTakePointRewardScRsp => { - "CmdPlayerReturnTakePointRewardScRsp" - } + Self::NljkedpkekiAlocmfakbkp => "NLJKEDPKEKI_ALOCMFAKBKP", + Self::CmdJllfeeobfib => "CmdJLLFEEOBFIB", + Self::CmdEoenaeachig => "CmdEOENAEACHIG", + Self::CmdPbomomdnpnc => "CmdPBOMOMDNPNC", + Self::CmdDfhmnekalkp => "CmdDFHMNEKALKP", + Self::CmdHmhoklipden => "CmdHMHOKLIPDEN", + Self::CmdIfngoohfdnf => "CmdIFNGOOHFDNF", + Self::CmdIpalimdicel => "CmdIPALIMDICEL", + Self::CmdFndiillenpf => "CmdFNDIILLENPF", + Self::CmdBciedhokljn => "CmdBCIEDHOKLJN", + Self::CmdCdlhhednjpo => "CmdCDLHHEDNJPO", + Self::CmdNgdgknlhdbb => "CmdNGDGKNLHDBB", + Self::CmdAdlcnmfdmhh => "CmdADLCNMFDMHH", + Self::CmdPegnhmlbkjk => "CmdPEGNHMLBKJK", + Self::CmdBjjlcbbdhof => "CmdBJJLCBBDHOF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPlayerReturnTypeNone" => Some(Self::None), - "CmdPlayerReturnTakeRelicCsReq" => Some(Self::CmdPlayerReturnTakeRelicCsReq), - "CmdPlayerReturnPointChangeScNotify" => { - Some(Self::CmdPlayerReturnPointChangeScNotify) - } - "CmdPlayerReturnTakeRewardCsReq" => { - Some(Self::CmdPlayerReturnTakeRewardCsReq) - } - "CmdPlayerReturnTakeRewardScRsp" => { - Some(Self::CmdPlayerReturnTakeRewardScRsp) - } - "CmdPlayerReturnTakeExtraHcoinScNotify" => { - Some(Self::CmdPlayerReturnTakeExtraHcoinScNotify) - } - "CmdPlayerReturnTakeRelicScRsp" => Some(Self::CmdPlayerReturnTakeRelicScRsp), - "CmdPlayerReturnSignCsReq" => Some(Self::CmdPlayerReturnSignCsReq), - "CmdPlayerReturnStartScNotify" => Some(Self::CmdPlayerReturnStartScNotify), - "CmdPlayerReturnTakePointRewardCsReq" => { - Some(Self::CmdPlayerReturnTakePointRewardCsReq) - } - "CmdPlayerReturnForceFinishScNotify" => { - Some(Self::CmdPlayerReturnForceFinishScNotify) - } - "CmdPlayerReturnSignScRsp" => Some(Self::CmdPlayerReturnSignScRsp), - "CmdPlayerReturnInfoQueryScRsp" => Some(Self::CmdPlayerReturnInfoQueryScRsp), - "CmdPlayerReturnInfoQueryCsReq" => Some(Self::CmdPlayerReturnInfoQueryCsReq), - "CmdPlayerReturnTakePointRewardScRsp" => { - Some(Self::CmdPlayerReturnTakePointRewardScRsp) - } + "NLJKEDPKEKI_ALOCMFAKBKP" => Some(Self::NljkedpkekiAlocmfakbkp), + "CmdJLLFEEOBFIB" => Some(Self::CmdJllfeeobfib), + "CmdEOENAEACHIG" => Some(Self::CmdEoenaeachig), + "CmdPBOMOMDNPNC" => Some(Self::CmdPbomomdnpnc), + "CmdDFHMNEKALKP" => Some(Self::CmdDfhmnekalkp), + "CmdHMHOKLIPDEN" => Some(Self::CmdHmhoklipden), + "CmdIFNGOOHFDNF" => Some(Self::CmdIfngoohfdnf), + "CmdIPALIMDICEL" => Some(Self::CmdIpalimdicel), + "CmdFNDIILLENPF" => Some(Self::CmdFndiillenpf), + "CmdBCIEDHOKLJN" => Some(Self::CmdBciedhokljn), + "CmdCDLHHEDNJPO" => Some(Self::CmdCdlhhednjpo), + "CmdNGDGKNLHDBB" => Some(Self::CmdNgdgknlhdbb), + "CmdADLCNMFDMHH" => Some(Self::CmdAdlcnmfdmhh), + "CmdPEGNHMLBKJK" => Some(Self::CmdPegnhmlbkjk), + "CmdBJJLCBBDHOF" => Some(Self::CmdBjjlcbbdhof), _ => None, } } @@ -78673,29 +77549,29 @@ impl CmdPlayerReturnType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nobpmmnfenj { - PlayerReturnNone = 0, - PlayerReturnProcessing = 1, - PlayerReturnFinish = 2, +pub enum Aljfgadejej { + Mldnljgodnd = 0, + Alhikekofkg = 1, + Amocehbklid = 2, } -impl Nobpmmnfenj { +impl Aljfgadejej { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlayerReturnNone => "PLAYER_RETURN_NONE", - Self::PlayerReturnProcessing => "PLAYER_RETURN_PROCESSING", - Self::PlayerReturnFinish => "PLAYER_RETURN_FINISH", + Self::Mldnljgodnd => "ALJFGADEJEJ_MLDNLJGODND", + Self::Alhikekofkg => "ALJFGADEJEJ_ALHIKEKOFKG", + Self::Amocehbklid => "ALJFGADEJEJ_AMOCEHBKLID", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLAYER_RETURN_NONE" => Some(Self::PlayerReturnNone), - "PLAYER_RETURN_PROCESSING" => Some(Self::PlayerReturnProcessing), - "PLAYER_RETURN_FINISH" => Some(Self::PlayerReturnFinish), + "ALJFGADEJEJ_MLDNLJGODND" => Some(Self::Mldnljgodnd), + "ALJFGADEJEJ_ALHIKEKOFKG" => Some(Self::Alhikekofkg), + "ALJFGADEJEJ_AMOCEHBKLID" => Some(Self::Amocehbklid), _ => None, } } @@ -78703,33 +77579,29 @@ impl Nobpmmnfenj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Fcekmeohllg { - PlayerReturnSignTypeNone = 0, - PlayerReturnSignTypeReward = 1, - PlayerReturnSignTypeOptionalGift = 2, +pub enum Midmankmolm { + Alocmfakbkp = 0, + Npkfjmjfhoh = 1, + Djhgcgiamem = 2, } -impl Fcekmeohllg { +impl Midmankmolm { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PlayerReturnSignTypeNone => "PLAYER_RETURN_SIGN_TYPE_NONE", - Self::PlayerReturnSignTypeReward => "PLAYER_RETURN_SIGN_TYPE_REWARD", - Self::PlayerReturnSignTypeOptionalGift => { - "PLAYER_RETURN_SIGN_TYPE_OPTIONAL_GIFT" - } + Self::Alocmfakbkp => "MIDMANKMOLM_ALOCMFAKBKP", + Self::Npkfjmjfhoh => "MIDMANKMOLM_NPKFJMJFHOH", + Self::Djhgcgiamem => "MIDMANKMOLM_DJHGCGIAMEM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PLAYER_RETURN_SIGN_TYPE_NONE" => Some(Self::PlayerReturnSignTypeNone), - "PLAYER_RETURN_SIGN_TYPE_REWARD" => Some(Self::PlayerReturnSignTypeReward), - "PLAYER_RETURN_SIGN_TYPE_OPTIONAL_GIFT" => { - Some(Self::PlayerReturnSignTypeOptionalGift) - } + "MIDMANKMOLM_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "MIDMANKMOLM_NPKFJMJFHOH" => Some(Self::Npkfjmjfhoh), + "MIDMANKMOLM_DJHGCGIAMEM" => Some(Self::Djhgcgiamem), _ => None, } } @@ -78737,29 +77609,29 @@ impl Fcekmeohllg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum CmdPlotType { - None = 0, - CmdFinishPlotCsReq = 1199, - CmdFinishPlotScRsp = 1123, +pub enum Fbejehokcoa { + Alocmfakbkp = 0, + Bkpkjiiflhd = 1109, + Emhlnlmombb = 1147, } -impl CmdPlotType { +impl Fbejehokcoa { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPlotTypeNone", - Self::CmdFinishPlotCsReq => "CmdFinishPlotCsReq", - Self::CmdFinishPlotScRsp => "CmdFinishPlotScRsp", + Self::Alocmfakbkp => "FBEJEHOKCOA_ALOCMFAKBKP", + Self::Bkpkjiiflhd => "FBEJEHOKCOA_BKPKJIIFLHD", + Self::Emhlnlmombb => "FBEJEHOKCOA_EMHLNLMOMBB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPlotTypeNone" => Some(Self::None), - "CmdFinishPlotCsReq" => Some(Self::CmdFinishPlotCsReq), - "CmdFinishPlotScRsp" => Some(Self::CmdFinishPlotScRsp), + "FBEJEHOKCOA_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "FBEJEHOKCOA_BKPKJIIFLHD" => Some(Self::Bkpkjiiflhd), + "FBEJEHOKCOA_EMHLNLMOMBB" => Some(Self::Emhlnlmombb), _ => None, } } @@ -78768,30 +77640,30 @@ impl CmdPlotType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPunkLordType { - None = 0, - CmdTakePunkLordPointRewardScRsp = 3215, - CmdPunkLordRaidTimeOutScNotify = 3280, - CmdGetPunkLordDataScRsp = 3268, - CmdTakePunkLordPointRewardCsReq = 3257, - CmdGetPunkLordBattleRecordScRsp = 3260, - CmdPunkLordBattleResultScNotify = 3229, - CmdGetPunkLordMonsterDataScRsp = 3223, - CmdPunkLordDataChangeNotify = 3255, - CmdGetPunkLordMonsterDataCsReq = 3299, - CmdGetPunkLordBattleRecordCsReq = 3250, - CmdSummonPunkLordMonsterCsReq = 3294, - CmdTakeKilledPunkLordMonsterScoreScRsp = 3297, - CmdGetPunkLordDataCsReq = 3237, - CmdStartPunkLordRaidCsReq = 3298, - CmdSummonPunkLordMonsterScRsp = 3252, - CmdGetKilledPunkLordMonsterDataScRsp = 3203, - CmdSharePunkLordMonsterScRsp = 3286, - CmdStartPunkLordRaidScRsp = 3265, - CmdSharePunkLordMonsterCsReq = 3283, - CmdGetKilledPunkLordMonsterDataCsReq = 3238, - CmdTakeKilledPunkLordMonsterScoreCsReq = 3222, - CmdPunkLordMonsterInfoScNotify = 3292, - CmdPunkLordMonsterKilledNotify = 3259, + EhclbbfojehAlocmfakbkp = 0, + CmdDakjpchpdne = 3217, + CmdOfdjckncnjj = 3210, + CmdGhblgnmmckj = 3298, + CmdGobecklnbki = 3213, + CmdLkndaionpdk = 3211, + CmdDijoaokeogn = 3257, + CmdBbalcndahag = 3273, + CmdNcjnacmogdg = 3293, + CmdDplfmidinfm = 3276, + CmdDmbfmikofjp = 3252, + CmdMhahkddgbmg = 3270, + CmdNfhonpnfgfc = 3220, + CmdHhoefafidkf = 3201, + CmdPbinmhdelne = 3215, + CmdFpllndgmcel = 3251, + CmdDcpmedcnfni = 3281, + CmdNfabohbkkpm = 3246, + CmdMcalehfbcni = 3292, + CmdHdfnbaecdli = 3250, + CmdGkejeijhobm = 3209, + CmdNknilcnpogj = 3247, + CmdNgcknkilnkh = 3238, + CmdNmnbbakgbco = 3289, } impl CmdPunkLordType { /// String value of the enum field names used in the ProtoBuf definition. @@ -78800,95 +77672,59 @@ impl CmdPunkLordType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPunkLordTypeNone", - Self::CmdTakePunkLordPointRewardScRsp => "CmdTakePunkLordPointRewardScRsp", - Self::CmdPunkLordRaidTimeOutScNotify => "CmdPunkLordRaidTimeOutScNotify", - Self::CmdGetPunkLordDataScRsp => "CmdGetPunkLordDataScRsp", - Self::CmdTakePunkLordPointRewardCsReq => "CmdTakePunkLordPointRewardCsReq", - Self::CmdGetPunkLordBattleRecordScRsp => "CmdGetPunkLordBattleRecordScRsp", - Self::CmdPunkLordBattleResultScNotify => "CmdPunkLordBattleResultScNotify", - Self::CmdGetPunkLordMonsterDataScRsp => "CmdGetPunkLordMonsterDataScRsp", - Self::CmdPunkLordDataChangeNotify => "CmdPunkLordDataChangeNotify", - Self::CmdGetPunkLordMonsterDataCsReq => "CmdGetPunkLordMonsterDataCsReq", - Self::CmdGetPunkLordBattleRecordCsReq => "CmdGetPunkLordBattleRecordCsReq", - Self::CmdSummonPunkLordMonsterCsReq => "CmdSummonPunkLordMonsterCsReq", - Self::CmdTakeKilledPunkLordMonsterScoreScRsp => { - "CmdTakeKilledPunkLordMonsterScoreScRsp" - } - Self::CmdGetPunkLordDataCsReq => "CmdGetPunkLordDataCsReq", - Self::CmdStartPunkLordRaidCsReq => "CmdStartPunkLordRaidCsReq", - Self::CmdSummonPunkLordMonsterScRsp => "CmdSummonPunkLordMonsterScRsp", - Self::CmdGetKilledPunkLordMonsterDataScRsp => { - "CmdGetKilledPunkLordMonsterDataScRsp" - } - Self::CmdSharePunkLordMonsterScRsp => "CmdSharePunkLordMonsterScRsp", - Self::CmdStartPunkLordRaidScRsp => "CmdStartPunkLordRaidScRsp", - Self::CmdSharePunkLordMonsterCsReq => "CmdSharePunkLordMonsterCsReq", - Self::CmdGetKilledPunkLordMonsterDataCsReq => { - "CmdGetKilledPunkLordMonsterDataCsReq" - } - Self::CmdTakeKilledPunkLordMonsterScoreCsReq => { - "CmdTakeKilledPunkLordMonsterScoreCsReq" - } - Self::CmdPunkLordMonsterInfoScNotify => "CmdPunkLordMonsterInfoScNotify", - Self::CmdPunkLordMonsterKilledNotify => "CmdPunkLordMonsterKilledNotify", + Self::EhclbbfojehAlocmfakbkp => "EHCLBBFOJEH_ALOCMFAKBKP", + Self::CmdDakjpchpdne => "CmdDAKJPCHPDNE", + Self::CmdOfdjckncnjj => "CmdOFDJCKNCNJJ", + Self::CmdGhblgnmmckj => "CmdGHBLGNMMCKJ", + Self::CmdGobecklnbki => "CmdGOBECKLNBKI", + Self::CmdLkndaionpdk => "CmdLKNDAIONPDK", + Self::CmdDijoaokeogn => "CmdDIJOAOKEOGN", + Self::CmdBbalcndahag => "CmdBBALCNDAHAG", + Self::CmdNcjnacmogdg => "CmdNCJNACMOGDG", + Self::CmdDplfmidinfm => "CmdDPLFMIDINFM", + Self::CmdDmbfmikofjp => "CmdDMBFMIKOFJP", + Self::CmdMhahkddgbmg => "CmdMHAHKDDGBMG", + Self::CmdNfhonpnfgfc => "CmdNFHONPNFGFC", + Self::CmdHhoefafidkf => "CmdHHOEFAFIDKF", + Self::CmdPbinmhdelne => "CmdPBINMHDELNE", + Self::CmdFpllndgmcel => "CmdFPLLNDGMCEL", + Self::CmdDcpmedcnfni => "CmdDCPMEDCNFNI", + Self::CmdNfabohbkkpm => "CmdNFABOHBKKPM", + Self::CmdMcalehfbcni => "CmdMCALEHFBCNI", + Self::CmdHdfnbaecdli => "CmdHDFNBAECDLI", + Self::CmdGkejeijhobm => "CmdGKEJEIJHOBM", + Self::CmdNknilcnpogj => "CmdNKNILCNPOGJ", + Self::CmdNgcknkilnkh => "CmdNGCKNKILNKH", + Self::CmdNmnbbakgbco => "CmdNMNBBAKGBCO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPunkLordTypeNone" => Some(Self::None), - "CmdTakePunkLordPointRewardScRsp" => { - Some(Self::CmdTakePunkLordPointRewardScRsp) - } - "CmdPunkLordRaidTimeOutScNotify" => { - Some(Self::CmdPunkLordRaidTimeOutScNotify) - } - "CmdGetPunkLordDataScRsp" => Some(Self::CmdGetPunkLordDataScRsp), - "CmdTakePunkLordPointRewardCsReq" => { - Some(Self::CmdTakePunkLordPointRewardCsReq) - } - "CmdGetPunkLordBattleRecordScRsp" => { - Some(Self::CmdGetPunkLordBattleRecordScRsp) - } - "CmdPunkLordBattleResultScNotify" => { - Some(Self::CmdPunkLordBattleResultScNotify) - } - "CmdGetPunkLordMonsterDataScRsp" => { - Some(Self::CmdGetPunkLordMonsterDataScRsp) - } - "CmdPunkLordDataChangeNotify" => Some(Self::CmdPunkLordDataChangeNotify), - "CmdGetPunkLordMonsterDataCsReq" => { - Some(Self::CmdGetPunkLordMonsterDataCsReq) - } - "CmdGetPunkLordBattleRecordCsReq" => { - Some(Self::CmdGetPunkLordBattleRecordCsReq) - } - "CmdSummonPunkLordMonsterCsReq" => Some(Self::CmdSummonPunkLordMonsterCsReq), - "CmdTakeKilledPunkLordMonsterScoreScRsp" => { - Some(Self::CmdTakeKilledPunkLordMonsterScoreScRsp) - } - "CmdGetPunkLordDataCsReq" => Some(Self::CmdGetPunkLordDataCsReq), - "CmdStartPunkLordRaidCsReq" => Some(Self::CmdStartPunkLordRaidCsReq), - "CmdSummonPunkLordMonsterScRsp" => Some(Self::CmdSummonPunkLordMonsterScRsp), - "CmdGetKilledPunkLordMonsterDataScRsp" => { - Some(Self::CmdGetKilledPunkLordMonsterDataScRsp) - } - "CmdSharePunkLordMonsterScRsp" => Some(Self::CmdSharePunkLordMonsterScRsp), - "CmdStartPunkLordRaidScRsp" => Some(Self::CmdStartPunkLordRaidScRsp), - "CmdSharePunkLordMonsterCsReq" => Some(Self::CmdSharePunkLordMonsterCsReq), - "CmdGetKilledPunkLordMonsterDataCsReq" => { - Some(Self::CmdGetKilledPunkLordMonsterDataCsReq) - } - "CmdTakeKilledPunkLordMonsterScoreCsReq" => { - Some(Self::CmdTakeKilledPunkLordMonsterScoreCsReq) - } - "CmdPunkLordMonsterInfoScNotify" => { - Some(Self::CmdPunkLordMonsterInfoScNotify) - } - "CmdPunkLordMonsterKilledNotify" => { - Some(Self::CmdPunkLordMonsterKilledNotify) - } + "EHCLBBFOJEH_ALOCMFAKBKP" => Some(Self::EhclbbfojehAlocmfakbkp), + "CmdDAKJPCHPDNE" => Some(Self::CmdDakjpchpdne), + "CmdOFDJCKNCNJJ" => Some(Self::CmdOfdjckncnjj), + "CmdGHBLGNMMCKJ" => Some(Self::CmdGhblgnmmckj), + "CmdGOBECKLNBKI" => Some(Self::CmdGobecklnbki), + "CmdLKNDAIONPDK" => Some(Self::CmdLkndaionpdk), + "CmdDIJOAOKEOGN" => Some(Self::CmdDijoaokeogn), + "CmdBBALCNDAHAG" => Some(Self::CmdBbalcndahag), + "CmdNCJNACMOGDG" => Some(Self::CmdNcjnacmogdg), + "CmdDPLFMIDINFM" => Some(Self::CmdDplfmidinfm), + "CmdDMBFMIKOFJP" => Some(Self::CmdDmbfmikofjp), + "CmdMHAHKDDGBMG" => Some(Self::CmdMhahkddgbmg), + "CmdNFHONPNFGFC" => Some(Self::CmdNfhonpnfgfc), + "CmdHHOEFAFIDKF" => Some(Self::CmdHhoefafidkf), + "CmdPBINMHDELNE" => Some(Self::CmdPbinmhdelne), + "CmdFPLLNDGMCEL" => Some(Self::CmdFpllndgmcel), + "CmdDCPMEDCNFNI" => Some(Self::CmdDcpmedcnfni), + "CmdNFABOHBKKPM" => Some(Self::CmdNfabohbkkpm), + "CmdMCALEHFBCNI" => Some(Self::CmdMcalehfbcni), + "CmdHDFNBAECDLI" => Some(Self::CmdHdfnbaecdli), + "CmdGKEJEIJHOBM" => Some(Self::CmdGkejeijhobm), + "CmdNKNILCNPOGJ" => Some(Self::CmdNknilcnpogj), + "CmdNGCKNKILNKH" => Some(Self::CmdNgcknkilnkh), + "CmdNMNBBAKGBCO" => Some(Self::CmdNmnbbakgbco), _ => None, } } @@ -78896,39 +77732,35 @@ impl CmdPunkLordType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nlefpbicecn { - PunkLordOperationNone = 0, - PunkLordOperationRefresh = 1, - PunkLordOperationShare = 2, - PunkLordOperationStartRaid = 3, - PunkLordOperationGetBattleRecord = 4, +pub enum Dahoiahfccn { + Alocmfakbkp = 0, + Cpfpimafbna = 1, + Cilndblaagf = 2, + Bpjggkmndln = 3, + Cpfaaigjdmk = 4, } -impl Nlefpbicecn { +impl Dahoiahfccn { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PunkLordOperationNone => "PUNK_LORD_OPERATION_NONE", - Self::PunkLordOperationRefresh => "PUNK_LORD_OPERATION_REFRESH", - Self::PunkLordOperationShare => "PUNK_LORD_OPERATION_SHARE", - Self::PunkLordOperationStartRaid => "PUNK_LORD_OPERATION_START_RAID", - Self::PunkLordOperationGetBattleRecord => { - "PUNK_LORD_OPERATION_GET_BATTLE_RECORD" - } + Self::Alocmfakbkp => "DAHOIAHFCCN_ALOCMFAKBKP", + Self::Cpfpimafbna => "DAHOIAHFCCN_CPFPIMAFBNA", + Self::Cilndblaagf => "DAHOIAHFCCN_CILNDBLAAGF", + Self::Bpjggkmndln => "DAHOIAHFCCN_BPJGGKMNDLN", + Self::Cpfaaigjdmk => "DAHOIAHFCCN_CPFAAIGJDMK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PUNK_LORD_OPERATION_NONE" => Some(Self::PunkLordOperationNone), - "PUNK_LORD_OPERATION_REFRESH" => Some(Self::PunkLordOperationRefresh), - "PUNK_LORD_OPERATION_SHARE" => Some(Self::PunkLordOperationShare), - "PUNK_LORD_OPERATION_START_RAID" => Some(Self::PunkLordOperationStartRaid), - "PUNK_LORD_OPERATION_GET_BATTLE_RECORD" => { - Some(Self::PunkLordOperationGetBattleRecord) - } + "DAHOIAHFCCN_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "DAHOIAHFCCN_CPFPIMAFBNA" => Some(Self::Cpfpimafbna), + "DAHOIAHFCCN_CILNDBLAAGF" => Some(Self::Cilndblaagf), + "DAHOIAHFCCN_BPJGGKMNDLN" => Some(Self::Bpjggkmndln), + "DAHOIAHFCCN_CPFAAIGJDMK" => Some(Self::Cpfaaigjdmk), _ => None, } } @@ -78937,20 +77769,20 @@ impl Nlefpbicecn { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdQuestType { - None = 0, - CmdBatchGetQuestDataCsReq = 992, - CmdGetQuestRecordCsReq = 994, - CmdGetQuestDataCsReq = 999, - CmdQuestRecordScNotify = 919, - CmdTakeQuestOptionalRewardCsReq = 969, - CmdFinishQuestScRsp = 981, - CmdBatchGetQuestDataScRsp = 937, - CmdTakeQuestRewardScRsp = 965, - CmdFinishQuestCsReq = 944, - CmdGetQuestRecordScRsp = 952, - CmdGetQuestDataScRsp = 923, - CmdTakeQuestOptionalRewardScRsp = 957, - CmdTakeQuestRewardCsReq = 998, + KbamomoofgjAlocmfakbkp = 0, + CmdTakeQuestRewardScRsp = 917, + CmdFinishQuestScRsp = 961, + CmdTakeQuestRewardCsReq = 938, + CmdGetQuestDataScRsp = 909, + CmdTakeQuestOptionalRewardScRsp = 976, + CmdTakeQuestOptionalRewardCsReq = 945, + CmdFinishQuestCsReq = 991, + CmdGetQuestRecordCsReq = 989, + CmdQuestRecordScNotify = 995, + CmdGetQuestRecordScRsp = 920, + KbamomoofgjKbbaejmaaej = 950, + CmdGetQuestDataCsReq = 947, + CmdBatchGetQuestDataScRsp = 981, } impl CmdQuestType { /// String value of the enum field names used in the ProtoBuf definition. @@ -78959,43 +77791,43 @@ impl CmdQuestType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdQuestTypeNone", - Self::CmdBatchGetQuestDataCsReq => "CmdBatchGetQuestDataCsReq", - Self::CmdGetQuestRecordCsReq => "CmdGetQuestRecordCsReq", - Self::CmdGetQuestDataCsReq => "CmdGetQuestDataCsReq", - Self::CmdQuestRecordScNotify => "CmdQuestRecordScNotify", - Self::CmdTakeQuestOptionalRewardCsReq => "CmdTakeQuestOptionalRewardCsReq", - Self::CmdFinishQuestScRsp => "CmdFinishQuestScRsp", - Self::CmdBatchGetQuestDataScRsp => "CmdBatchGetQuestDataScRsp", + Self::KbamomoofgjAlocmfakbkp => "KBAMOMOOFGJ_ALOCMFAKBKP", Self::CmdTakeQuestRewardScRsp => "CmdTakeQuestRewardScRsp", - Self::CmdFinishQuestCsReq => "CmdFinishQuestCsReq", - Self::CmdGetQuestRecordScRsp => "CmdGetQuestRecordScRsp", + Self::CmdFinishQuestScRsp => "CmdFinishQuestScRsp", + Self::CmdTakeQuestRewardCsReq => "CmdTakeQuestRewardCsReq", Self::CmdGetQuestDataScRsp => "CmdGetQuestDataScRsp", Self::CmdTakeQuestOptionalRewardScRsp => "CmdTakeQuestOptionalRewardScRsp", - Self::CmdTakeQuestRewardCsReq => "CmdTakeQuestRewardCsReq", + Self::CmdTakeQuestOptionalRewardCsReq => "CmdTakeQuestOptionalRewardCsReq", + Self::CmdFinishQuestCsReq => "CmdFinishQuestCsReq", + Self::CmdGetQuestRecordCsReq => "CmdGetQuestRecordCsReq", + Self::CmdQuestRecordScNotify => "CmdQuestRecordScNotify", + Self::CmdGetQuestRecordScRsp => "CmdGetQuestRecordScRsp", + Self::KbamomoofgjKbbaejmaaej => "KBAMOMOOFGJ_KBBAEJMAAEJ", + Self::CmdGetQuestDataCsReq => "CmdGetQuestDataCsReq", + Self::CmdBatchGetQuestDataScRsp => "CmdBatchGetQuestDataScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdQuestTypeNone" => Some(Self::None), - "CmdBatchGetQuestDataCsReq" => Some(Self::CmdBatchGetQuestDataCsReq), - "CmdGetQuestRecordCsReq" => Some(Self::CmdGetQuestRecordCsReq), - "CmdGetQuestDataCsReq" => Some(Self::CmdGetQuestDataCsReq), - "CmdQuestRecordScNotify" => Some(Self::CmdQuestRecordScNotify), - "CmdTakeQuestOptionalRewardCsReq" => { - Some(Self::CmdTakeQuestOptionalRewardCsReq) - } - "CmdFinishQuestScRsp" => Some(Self::CmdFinishQuestScRsp), - "CmdBatchGetQuestDataScRsp" => Some(Self::CmdBatchGetQuestDataScRsp), + "KBAMOMOOFGJ_ALOCMFAKBKP" => Some(Self::KbamomoofgjAlocmfakbkp), "CmdTakeQuestRewardScRsp" => Some(Self::CmdTakeQuestRewardScRsp), - "CmdFinishQuestCsReq" => Some(Self::CmdFinishQuestCsReq), - "CmdGetQuestRecordScRsp" => Some(Self::CmdGetQuestRecordScRsp), + "CmdFinishQuestScRsp" => Some(Self::CmdFinishQuestScRsp), + "CmdTakeQuestRewardCsReq" => Some(Self::CmdTakeQuestRewardCsReq), "CmdGetQuestDataScRsp" => Some(Self::CmdGetQuestDataScRsp), "CmdTakeQuestOptionalRewardScRsp" => { Some(Self::CmdTakeQuestOptionalRewardScRsp) } - "CmdTakeQuestRewardCsReq" => Some(Self::CmdTakeQuestRewardCsReq), + "CmdTakeQuestOptionalRewardCsReq" => { + Some(Self::CmdTakeQuestOptionalRewardCsReq) + } + "CmdFinishQuestCsReq" => Some(Self::CmdFinishQuestCsReq), + "CmdGetQuestRecordCsReq" => Some(Self::CmdGetQuestRecordCsReq), + "CmdQuestRecordScNotify" => Some(Self::CmdQuestRecordScNotify), + "CmdGetQuestRecordScRsp" => Some(Self::CmdGetQuestRecordScRsp), + "KBAMOMOOFGJ_KBBAEJMAAEJ" => Some(Self::KbamomoofgjKbbaejmaaej), + "CmdGetQuestDataCsReq" => Some(Self::CmdGetQuestDataCsReq), + "CmdBatchGetQuestDataScRsp" => Some(Self::CmdBatchGetQuestDataScRsp), _ => None, } } @@ -79004,11 +77836,11 @@ impl CmdQuestType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum QuestStatus { - QuestNone = 0, - QuestDoing = 1, - QuestFinish = 2, - QuestClose = 3, - QuestDelete = 4, + NnmkfpbgnclNihphecakon = 0, + NnmkfpbgnclFhaegejnego = 1, + NnmkfpbgnclHjjpmjkmggk = 2, + NnmkfpbgnclMeafdllddjl = 3, + NnmkfpbgnclGomjankmiai = 4, } impl QuestStatus { /// String value of the enum field names used in the ProtoBuf definition. @@ -79017,21 +77849,21 @@ impl QuestStatus { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::QuestNone => "QUEST_NONE", - Self::QuestDoing => "QUEST_DOING", - Self::QuestFinish => "QUEST_FINISH", - Self::QuestClose => "QUEST_CLOSE", - Self::QuestDelete => "QUEST_DELETE", + Self::NnmkfpbgnclNihphecakon => "NNMKFPBGNCL_NIHPHECAKON", + Self::NnmkfpbgnclFhaegejnego => "NNMKFPBGNCL_FHAEGEJNEGO", + Self::NnmkfpbgnclHjjpmjkmggk => "NNMKFPBGNCL_HJJPMJKMGGK", + Self::NnmkfpbgnclMeafdllddjl => "NNMKFPBGNCL_MEAFDLLDDJL", + Self::NnmkfpbgnclGomjankmiai => "NNMKFPBGNCL_GOMJANKMIAI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "QUEST_NONE" => Some(Self::QuestNone), - "QUEST_DOING" => Some(Self::QuestDoing), - "QUEST_FINISH" => Some(Self::QuestFinish), - "QUEST_CLOSE" => Some(Self::QuestClose), - "QUEST_DELETE" => Some(Self::QuestDelete), + "NNMKFPBGNCL_NIHPHECAKON" => Some(Self::NnmkfpbgnclNihphecakon), + "NNMKFPBGNCL_FHAEGEJNEGO" => Some(Self::NnmkfpbgnclFhaegejnego), + "NNMKFPBGNCL_HJJPMJKMGGK" => Some(Self::NnmkfpbgnclHjjpmjkmggk), + "NNMKFPBGNCL_MEAFDLLDDJL" => Some(Self::NnmkfpbgnclMeafdllddjl), + "NNMKFPBGNCL_GOMJANKMIAI" => Some(Self::NnmkfpbgnclGomjankmiai), _ => None, } } @@ -79040,27 +77872,27 @@ impl QuestStatus { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRaidType { - None = 0, - CmdDelSaveRaidScNotify = 2280, - CmdGetAllSaveRaidCsReq = 2268, - CmdTakeChallengeRaidRewardScRsp = 2219, - CmdGetRaidInfoCsReq = 2281, - CmdGetChallengeRaidInfoScRsp = 2294, - CmdSetClientRaidTargetCountScRsp = 2215, - CmdGetAllSaveRaidScRsp = 2249, - CmdChallengeRaidNotify = 2244, - CmdRaidInfoNotify = 2283, - CmdGetRaidInfoScRsp = 2269, - CmdSetClientRaidTargetCountCsReq = 2257, - CmdLeaveRaidScRsp = 2265, - CmdGetSaveRaidScRsp = 2237, - CmdStartRaidCsReq = 2299, - CmdGetChallengeRaidInfoCsReq = 2286, - CmdLeaveRaidCsReq = 2298, - CmdGetSaveRaidCsReq = 2292, - CmdStartRaidScRsp = 2223, - CmdRaidKickByServerScNotify = 2277, - CmdTakeChallengeRaidRewardCsReq = 2252, + ImllilkhhbbAlocmfakbkp = 0, + CmdSetClientRaidTargetCountScRsp = 2252, + CmdTakeChallengeRaidRewardScRsp = 2295, + CmdGetRaidInfoCsReq = 2261, + CmdGetSaveRaidScRsp = 2281, + CmdDelSaveRaidScNotify = 2210, + CmdGetRaidInfoScRsp = 2245, + CmdChallengeRaidNotify = 2291, + CmdGetAllSaveRaidCsReq = 2293, + CmdGetSaveRaidCsReq = 2250, + CmdLeaveRaidCsReq = 2238, + CmdSetClientRaidTargetCountCsReq = 2276, + ImllilkhhbbKenndomhfmh = 2211, + CmdTakeChallengeRaidRewardCsReq = 2220, + CmdGetChallengeRaidInfoScRsp = 2289, + CmdGetAllSaveRaidScRsp = 2237, + CmdLeaveRaidScRsp = 2217, + CmdRaidKickByServerScNotify = 2267, + CmdRaidInfoNotify = 2251, + CmdStartRaidScRsp = 2209, + CmdStartRaidCsReq = 2247, } impl CmdRaidType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79069,61 +77901,61 @@ impl CmdRaidType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRaidTypeNone", - Self::CmdDelSaveRaidScNotify => "CmdDelSaveRaidScNotify", - Self::CmdGetAllSaveRaidCsReq => "CmdGetAllSaveRaidCsReq", + Self::ImllilkhhbbAlocmfakbkp => "IMLLILKHHBB_ALOCMFAKBKP", + Self::CmdSetClientRaidTargetCountScRsp => "CmdSetClientRaidTargetCountScRsp", Self::CmdTakeChallengeRaidRewardScRsp => "CmdTakeChallengeRaidRewardScRsp", Self::CmdGetRaidInfoCsReq => "CmdGetRaidInfoCsReq", - Self::CmdGetChallengeRaidInfoScRsp => "CmdGetChallengeRaidInfoScRsp", - Self::CmdSetClientRaidTargetCountScRsp => "CmdSetClientRaidTargetCountScRsp", - Self::CmdGetAllSaveRaidScRsp => "CmdGetAllSaveRaidScRsp", - Self::CmdChallengeRaidNotify => "CmdChallengeRaidNotify", - Self::CmdRaidInfoNotify => "CmdRaidInfoNotify", - Self::CmdGetRaidInfoScRsp => "CmdGetRaidInfoScRsp", - Self::CmdSetClientRaidTargetCountCsReq => "CmdSetClientRaidTargetCountCsReq", - Self::CmdLeaveRaidScRsp => "CmdLeaveRaidScRsp", Self::CmdGetSaveRaidScRsp => "CmdGetSaveRaidScRsp", - Self::CmdStartRaidCsReq => "CmdStartRaidCsReq", - Self::CmdGetChallengeRaidInfoCsReq => "CmdGetChallengeRaidInfoCsReq", - Self::CmdLeaveRaidCsReq => "CmdLeaveRaidCsReq", + Self::CmdDelSaveRaidScNotify => "CmdDelSaveRaidScNotify", + Self::CmdGetRaidInfoScRsp => "CmdGetRaidInfoScRsp", + Self::CmdChallengeRaidNotify => "CmdChallengeRaidNotify", + Self::CmdGetAllSaveRaidCsReq => "CmdGetAllSaveRaidCsReq", Self::CmdGetSaveRaidCsReq => "CmdGetSaveRaidCsReq", - Self::CmdStartRaidScRsp => "CmdStartRaidScRsp", - Self::CmdRaidKickByServerScNotify => "CmdRaidKickByServerScNotify", + Self::CmdLeaveRaidCsReq => "CmdLeaveRaidCsReq", + Self::CmdSetClientRaidTargetCountCsReq => "CmdSetClientRaidTargetCountCsReq", + Self::ImllilkhhbbKenndomhfmh => "IMLLILKHHBB_KENNDOMHFMH", Self::CmdTakeChallengeRaidRewardCsReq => "CmdTakeChallengeRaidRewardCsReq", + Self::CmdGetChallengeRaidInfoScRsp => "CmdGetChallengeRaidInfoScRsp", + Self::CmdGetAllSaveRaidScRsp => "CmdGetAllSaveRaidScRsp", + Self::CmdLeaveRaidScRsp => "CmdLeaveRaidScRsp", + Self::CmdRaidKickByServerScNotify => "CmdRaidKickByServerScNotify", + Self::CmdRaidInfoNotify => "CmdRaidInfoNotify", + Self::CmdStartRaidScRsp => "CmdStartRaidScRsp", + Self::CmdStartRaidCsReq => "CmdStartRaidCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRaidTypeNone" => Some(Self::None), - "CmdDelSaveRaidScNotify" => Some(Self::CmdDelSaveRaidScNotify), - "CmdGetAllSaveRaidCsReq" => Some(Self::CmdGetAllSaveRaidCsReq), + "IMLLILKHHBB_ALOCMFAKBKP" => Some(Self::ImllilkhhbbAlocmfakbkp), + "CmdSetClientRaidTargetCountScRsp" => { + Some(Self::CmdSetClientRaidTargetCountScRsp) + } "CmdTakeChallengeRaidRewardScRsp" => { Some(Self::CmdTakeChallengeRaidRewardScRsp) } "CmdGetRaidInfoCsReq" => Some(Self::CmdGetRaidInfoCsReq), - "CmdGetChallengeRaidInfoScRsp" => Some(Self::CmdGetChallengeRaidInfoScRsp), - "CmdSetClientRaidTargetCountScRsp" => { - Some(Self::CmdSetClientRaidTargetCountScRsp) - } - "CmdGetAllSaveRaidScRsp" => Some(Self::CmdGetAllSaveRaidScRsp), - "CmdChallengeRaidNotify" => Some(Self::CmdChallengeRaidNotify), - "CmdRaidInfoNotify" => Some(Self::CmdRaidInfoNotify), + "CmdGetSaveRaidScRsp" => Some(Self::CmdGetSaveRaidScRsp), + "CmdDelSaveRaidScNotify" => Some(Self::CmdDelSaveRaidScNotify), "CmdGetRaidInfoScRsp" => Some(Self::CmdGetRaidInfoScRsp), + "CmdChallengeRaidNotify" => Some(Self::CmdChallengeRaidNotify), + "CmdGetAllSaveRaidCsReq" => Some(Self::CmdGetAllSaveRaidCsReq), + "CmdGetSaveRaidCsReq" => Some(Self::CmdGetSaveRaidCsReq), + "CmdLeaveRaidCsReq" => Some(Self::CmdLeaveRaidCsReq), "CmdSetClientRaidTargetCountCsReq" => { Some(Self::CmdSetClientRaidTargetCountCsReq) } - "CmdLeaveRaidScRsp" => Some(Self::CmdLeaveRaidScRsp), - "CmdGetSaveRaidScRsp" => Some(Self::CmdGetSaveRaidScRsp), - "CmdStartRaidCsReq" => Some(Self::CmdStartRaidCsReq), - "CmdGetChallengeRaidInfoCsReq" => Some(Self::CmdGetChallengeRaidInfoCsReq), - "CmdLeaveRaidCsReq" => Some(Self::CmdLeaveRaidCsReq), - "CmdGetSaveRaidCsReq" => Some(Self::CmdGetSaveRaidCsReq), - "CmdStartRaidScRsp" => Some(Self::CmdStartRaidScRsp), - "CmdRaidKickByServerScNotify" => Some(Self::CmdRaidKickByServerScNotify), + "IMLLILKHHBB_KENNDOMHFMH" => Some(Self::ImllilkhhbbKenndomhfmh), "CmdTakeChallengeRaidRewardCsReq" => { Some(Self::CmdTakeChallengeRaidRewardCsReq) } + "CmdGetChallengeRaidInfoScRsp" => Some(Self::CmdGetChallengeRaidInfoScRsp), + "CmdGetAllSaveRaidScRsp" => Some(Self::CmdGetAllSaveRaidScRsp), + "CmdLeaveRaidScRsp" => Some(Self::CmdLeaveRaidScRsp), + "CmdRaidKickByServerScNotify" => Some(Self::CmdRaidKickByServerScNotify), + "CmdRaidInfoNotify" => Some(Self::CmdRaidInfoNotify), + "CmdStartRaidScRsp" => Some(Self::CmdStartRaidScRsp), + "CmdStartRaidCsReq" => Some(Self::CmdStartRaidCsReq), _ => None, } } @@ -79131,32 +77963,32 @@ impl CmdRaidType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jldfakdkmjj { - RaidStatusNone = 0, - RaidStatusDoing = 1, - RaidStatusFinish = 2, - RaidStatusFailed = 3, +pub enum RaidStatus { + OohikcmphihAlocmfakbkp = 0, + OohikcmphihMklgfbpopmb = 1, + OohikcmphihEddpgfacjae = 2, + OohikcmphihMdophomncjl = 3, } -impl Jldfakdkmjj { +impl RaidStatus { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RaidStatusNone => "RAID_STATUS_NONE", - Self::RaidStatusDoing => "RAID_STATUS_DOING", - Self::RaidStatusFinish => "RAID_STATUS_FINISH", - Self::RaidStatusFailed => "RAID_STATUS_FAILED", + Self::OohikcmphihAlocmfakbkp => "OOHIKCMPHIH_ALOCMFAKBKP", + Self::OohikcmphihMklgfbpopmb => "OOHIKCMPHIH_MKLGFBPOPMB", + Self::OohikcmphihEddpgfacjae => "OOHIKCMPHIH_EDDPGFACJAE", + Self::OohikcmphihMdophomncjl => "OOHIKCMPHIH_MDOPHOMNCJL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "RAID_STATUS_NONE" => Some(Self::RaidStatusNone), - "RAID_STATUS_DOING" => Some(Self::RaidStatusDoing), - "RAID_STATUS_FINISH" => Some(Self::RaidStatusFinish), - "RAID_STATUS_FAILED" => Some(Self::RaidStatusFailed), + "OOHIKCMPHIH_ALOCMFAKBKP" => Some(Self::OohikcmphihAlocmfakbkp), + "OOHIKCMPHIH_MKLGFBPOPMB" => Some(Self::OohikcmphihMklgfbpopmb), + "OOHIKCMPHIH_EDDPGFACJAE" => Some(Self::OohikcmphihEddpgfacjae), + "OOHIKCMPHIH_MDOPHOMNCJL" => Some(Self::OohikcmphihMdophomncjl), _ => None, } } @@ -79164,29 +77996,29 @@ impl Jldfakdkmjj { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Fochdfjanpc { - RaidTargetStatusNone = 0, - RaidTargetStatusDoing = 1, - RaidTargetStatusFinish = 2, +pub enum Aeikbajjblh { + Alocmfakbkp = 0, + Mklgfbpopmb = 1, + Eddpgfacjae = 2, } -impl Fochdfjanpc { +impl Aeikbajjblh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RaidTargetStatusNone => "RAID_TARGET_STATUS_NONE", - Self::RaidTargetStatusDoing => "RAID_TARGET_STATUS_DOING", - Self::RaidTargetStatusFinish => "RAID_TARGET_STATUS_FINISH", + Self::Alocmfakbkp => "AEIKBAJJBLH_ALOCMFAKBKP", + Self::Mklgfbpopmb => "AEIKBAJJBLH_MKLGFBPOPMB", + Self::Eddpgfacjae => "AEIKBAJJBLH_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "RAID_TARGET_STATUS_NONE" => Some(Self::RaidTargetStatusNone), - "RAID_TARGET_STATUS_DOING" => Some(Self::RaidTargetStatusDoing), - "RAID_TARGET_STATUS_FINISH" => Some(Self::RaidTargetStatusFinish), + "AEIKBAJJBLH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "AEIKBAJJBLH_MKLGFBPOPMB" => Some(Self::Mklgfbpopmb), + "AEIKBAJJBLH_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -79194,30 +78026,26 @@ impl Fochdfjanpc { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Egkfndoopnn { - RaidKickReasonNone = 0, - RaidKickReasonActivityScheduleFinish = 1, +pub enum Fdacnihfblh { + Alocmfakbkp = 0, + Lpikabmblfd = 1, } -impl Egkfndoopnn { +impl Fdacnihfblh { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RaidKickReasonNone => "RAID_KICK_REASON_NONE", - Self::RaidKickReasonActivityScheduleFinish => { - "RAID_KICK_REASON_ACTIVITY_SCHEDULE_FINISH" - } + Self::Alocmfakbkp => "FDACNIHFBLH_ALOCMFAKBKP", + Self::Lpikabmblfd => "FDACNIHFBLH_LPIKABMBLFD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "RAID_KICK_REASON_NONE" => Some(Self::RaidKickReasonNone), - "RAID_KICK_REASON_ACTIVITY_SCHEDULE_FINISH" => { - Some(Self::RaidKickReasonActivityScheduleFinish) - } + "FDACNIHFBLH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "FDACNIHFBLH_LPIKABMBLFD" => Some(Self::Lpikabmblfd), _ => None, } } @@ -79226,12 +78054,12 @@ impl Egkfndoopnn { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRaidCollectionType { - None = 0, - CmdRaidCollectionEnterNextRaidScRsp = 6943, - CmdRaidCollectionDataCsReq = 6947, - CmdRaidCollectionDataScRsp = 6941, - CmdRaidCollectionDataScNotify = 6953, - CmdRaidCollectionEnterNextRaidCsReq = 6959, + GpfllcjmojhAlocmfakbkp = 0, + CmdRaidCollectionDataScRsp = 6946, + CmdRaidCollectionDataCsReq = 6953, + CmdFbnkkfnmlom = 6945, + CmdOoibelogdia = 6949, + CmdIikbhnkpjfo = 6954, } impl CmdRaidCollectionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79240,31 +78068,23 @@ impl CmdRaidCollectionType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRaidCollectionTypeNone", - Self::CmdRaidCollectionEnterNextRaidScRsp => { - "CmdRaidCollectionEnterNextRaidScRsp" - } - Self::CmdRaidCollectionDataCsReq => "CmdRaidCollectionDataCsReq", + Self::GpfllcjmojhAlocmfakbkp => "GPFLLCJMOJH_ALOCMFAKBKP", Self::CmdRaidCollectionDataScRsp => "CmdRaidCollectionDataScRsp", - Self::CmdRaidCollectionDataScNotify => "CmdRaidCollectionDataScNotify", - Self::CmdRaidCollectionEnterNextRaidCsReq => { - "CmdRaidCollectionEnterNextRaidCsReq" - } + Self::CmdRaidCollectionDataCsReq => "CmdRaidCollectionDataCsReq", + Self::CmdFbnkkfnmlom => "CmdFBNKKFNMLOM", + Self::CmdOoibelogdia => "CmdOOIBELOGDIA", + Self::CmdIikbhnkpjfo => "CmdIIKBHNKPJFO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRaidCollectionTypeNone" => Some(Self::None), - "CmdRaidCollectionEnterNextRaidScRsp" => { - Some(Self::CmdRaidCollectionEnterNextRaidScRsp) - } - "CmdRaidCollectionDataCsReq" => Some(Self::CmdRaidCollectionDataCsReq), + "GPFLLCJMOJH_ALOCMFAKBKP" => Some(Self::GpfllcjmojhAlocmfakbkp), "CmdRaidCollectionDataScRsp" => Some(Self::CmdRaidCollectionDataScRsp), - "CmdRaidCollectionDataScNotify" => Some(Self::CmdRaidCollectionDataScNotify), - "CmdRaidCollectionEnterNextRaidCsReq" => { - Some(Self::CmdRaidCollectionEnterNextRaidCsReq) - } + "CmdRaidCollectionDataCsReq" => Some(Self::CmdRaidCollectionDataCsReq), + "CmdFBNKKFNMLOM" => Some(Self::CmdFbnkkfnmlom), + "CmdOOIBELOGDIA" => Some(Self::CmdOoibelogdia), + "CmdIIKBHNKPJFO" => Some(Self::CmdIikbhnkpjfo), _ => None, } } @@ -79273,16 +78093,16 @@ impl CmdRaidCollectionType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRechargeGiftType { - None = 0, - CmdTakeRechargeGiftRewardScRsp = 8379, - CmdSyncRechargeBenefitInfoScNotify = 8368, - CmdGetRechargeGiftInfoCsReq = 8367, - CmdGetRechargeBenefitInfoCsReq = 8363, - CmdGetRechargeBenefitInfoScRsp = 8375, - CmdGetRechargeGiftInfoScRsp = 8361, - CmdTakeRechargeBenefitRewardScRsp = 8370, - CmdTakeRechargeBenefitRewardCsReq = 8371, - CmdTakeRechargeGiftRewardCsReq = 8373, + MjaidaojmnmAlocmfakbkp = 0, + CmdBnpdepohhob = 8377, + CmdGetRechargeGiftInfoCsReq = 8373, + CmdJfmggckepkb = 8374, + CmdGetRechargeGiftInfoScRsp = 8366, + CmdKccfibnfflo = 8372, + CmdKgbnoiidcie = 8369, + CmdCfkjalcbgbp = 8364, + CmdGcjkhialnhm = 8365, + CmdKommegmmdji = 8363, } impl CmdRechargeGiftType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79291,51 +78111,31 @@ impl CmdRechargeGiftType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRechargeGiftTypeNone", - Self::CmdTakeRechargeGiftRewardScRsp => "CmdTakeRechargeGiftRewardScRsp", - Self::CmdSyncRechargeBenefitInfoScNotify => { - "CmdSyncRechargeBenefitInfoScNotify" - } + Self::MjaidaojmnmAlocmfakbkp => "MJAIDAOJMNM_ALOCMFAKBKP", + Self::CmdBnpdepohhob => "CmdBNPDEPOHHOB", Self::CmdGetRechargeGiftInfoCsReq => "CmdGetRechargeGiftInfoCsReq", - Self::CmdGetRechargeBenefitInfoCsReq => "CmdGetRechargeBenefitInfoCsReq", - Self::CmdGetRechargeBenefitInfoScRsp => "CmdGetRechargeBenefitInfoScRsp", + Self::CmdJfmggckepkb => "CmdJFMGGCKEPKB", Self::CmdGetRechargeGiftInfoScRsp => "CmdGetRechargeGiftInfoScRsp", - Self::CmdTakeRechargeBenefitRewardScRsp => { - "CmdTakeRechargeBenefitRewardScRsp" - } - Self::CmdTakeRechargeBenefitRewardCsReq => { - "CmdTakeRechargeBenefitRewardCsReq" - } - Self::CmdTakeRechargeGiftRewardCsReq => "CmdTakeRechargeGiftRewardCsReq", + Self::CmdKccfibnfflo => "CmdKCCFIBNFFLO", + Self::CmdKgbnoiidcie => "CmdKGBNOIIDCIE", + Self::CmdCfkjalcbgbp => "CmdCFKJALCBGBP", + Self::CmdGcjkhialnhm => "CmdGCJKHIALNHM", + Self::CmdKommegmmdji => "CmdKOMMEGMMDJI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRechargeGiftTypeNone" => Some(Self::None), - "CmdTakeRechargeGiftRewardScRsp" => { - Some(Self::CmdTakeRechargeGiftRewardScRsp) - } - "CmdSyncRechargeBenefitInfoScNotify" => { - Some(Self::CmdSyncRechargeBenefitInfoScNotify) - } + "MJAIDAOJMNM_ALOCMFAKBKP" => Some(Self::MjaidaojmnmAlocmfakbkp), + "CmdBNPDEPOHHOB" => Some(Self::CmdBnpdepohhob), "CmdGetRechargeGiftInfoCsReq" => Some(Self::CmdGetRechargeGiftInfoCsReq), - "CmdGetRechargeBenefitInfoCsReq" => { - Some(Self::CmdGetRechargeBenefitInfoCsReq) - } - "CmdGetRechargeBenefitInfoScRsp" => { - Some(Self::CmdGetRechargeBenefitInfoScRsp) - } + "CmdJFMGGCKEPKB" => Some(Self::CmdJfmggckepkb), "CmdGetRechargeGiftInfoScRsp" => Some(Self::CmdGetRechargeGiftInfoScRsp), - "CmdTakeRechargeBenefitRewardScRsp" => { - Some(Self::CmdTakeRechargeBenefitRewardScRsp) - } - "CmdTakeRechargeBenefitRewardCsReq" => { - Some(Self::CmdTakeRechargeBenefitRewardCsReq) - } - "CmdTakeRechargeGiftRewardCsReq" => { - Some(Self::CmdTakeRechargeGiftRewardCsReq) - } + "CmdKCCFIBNFFLO" => Some(Self::CmdKccfibnfflo), + "CmdKGBNOIIDCIE" => Some(Self::CmdKgbnoiidcie), + "CmdCFKJALCBGBP" => Some(Self::CmdCfkjalcbgbp), + "CmdGCJKHIALNHM" => Some(Self::CmdGcjkhialnhm), + "CmdKOMMEGMMDJI" => Some(Self::CmdKommegmmdji), _ => None, } } @@ -79344,11 +78144,11 @@ impl CmdRechargeGiftType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRecommendType { - None = 0, - CmdGetBigDataAllRecommendCsReq = 2401, - CmdGetBigDataRecommendCsReq = 2420, - CmdGetBigDataRecommendScRsp = 2444, - CmdGetBigDataAllRecommendScRsp = 2445, + BklbblakgomAlocmfakbkp = 0, + CmdGetBigDataRecommendScRsp = 2425, + CmdGetBigDataAllRecommendScRsp = 2417, + CmdGetBigDataAllRecommendCsReq = 2446, + CmdGetBigDataRecommendCsReq = 2431, } impl CmdRecommendType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79357,25 +78157,25 @@ impl CmdRecommendType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CMD_RECOMMEND_TYPE_NONE", - Self::CmdGetBigDataAllRecommendCsReq => "CmdGetBigDataAllRecommendCsReq", - Self::CmdGetBigDataRecommendCsReq => "CmdGetBigDataRecommendCsReq", + Self::BklbblakgomAlocmfakbkp => "BKLBBLAKGOM_ALOCMFAKBKP", Self::CmdGetBigDataRecommendScRsp => "CmdGetBigDataRecommendScRsp", Self::CmdGetBigDataAllRecommendScRsp => "CmdGetBigDataAllRecommendScRsp", + Self::CmdGetBigDataAllRecommendCsReq => "CmdGetBigDataAllRecommendCsReq", + Self::CmdGetBigDataRecommendCsReq => "CmdGetBigDataRecommendCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CMD_RECOMMEND_TYPE_NONE" => Some(Self::None), - "CmdGetBigDataAllRecommendCsReq" => { - Some(Self::CmdGetBigDataAllRecommendCsReq) - } - "CmdGetBigDataRecommendCsReq" => Some(Self::CmdGetBigDataRecommendCsReq), + "BKLBBLAKGOM_ALOCMFAKBKP" => Some(Self::BklbblakgomAlocmfakbkp), "CmdGetBigDataRecommendScRsp" => Some(Self::CmdGetBigDataRecommendScRsp), "CmdGetBigDataAllRecommendScRsp" => { Some(Self::CmdGetBigDataAllRecommendScRsp) } + "CmdGetBigDataAllRecommendCsReq" => { + Some(Self::CmdGetBigDataAllRecommendCsReq) + } + "CmdGetBigDataRecommendCsReq" => Some(Self::CmdGetBigDataRecommendCsReq), _ => None, } } @@ -79434,13 +78234,13 @@ impl BigDataRecommendType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRedDotType { - None = 0, - CmdGetSingleRedDotParamGroupCsReq = 5905, - CmdGetSingleRedDotParamGroupScRsp = 5927, - CmdUpdateRedDotDataScRsp = 5938, - CmdGetAllRedDotDataScRsp = 5928, - CmdGetAllRedDotDataCsReq = 5926, - CmdUpdateRedDotDataCsReq = 5921, + OhcbajbomjmAlocmfakbkp = 0, + OhcbajbomjmIlkaejpkbhh = 5935, + CmdDemgaooofgj = 5902, + CmdNpgompidmfj = 5933, + CmdJdfghddlnje = 5919, + OhcbajbomjmIohdcepmeka = 5948, + CmdIdogdchcomj = 5905, } impl CmdRedDotType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79449,33 +78249,25 @@ impl CmdRedDotType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRedDotTypeNone", - Self::CmdGetSingleRedDotParamGroupCsReq => { - "CmdGetSingleRedDotParamGroupCsReq" - } - Self::CmdGetSingleRedDotParamGroupScRsp => { - "CmdGetSingleRedDotParamGroupScRsp" - } - Self::CmdUpdateRedDotDataScRsp => "CmdUpdateRedDotDataScRsp", - Self::CmdGetAllRedDotDataScRsp => "CmdGetAllRedDotDataScRsp", - Self::CmdGetAllRedDotDataCsReq => "CmdGetAllRedDotDataCsReq", - Self::CmdUpdateRedDotDataCsReq => "CmdUpdateRedDotDataCsReq", + Self::OhcbajbomjmAlocmfakbkp => "OHCBAJBOMJM_ALOCMFAKBKP", + Self::OhcbajbomjmIlkaejpkbhh => "OHCBAJBOMJM_ILKAEJPKBHH", + Self::CmdDemgaooofgj => "CmdDEMGAOOOFGJ", + Self::CmdNpgompidmfj => "CmdNPGOMPIDMFJ", + Self::CmdJdfghddlnje => "CmdJDFGHDDLNJE", + Self::OhcbajbomjmIohdcepmeka => "OHCBAJBOMJM_IOHDCEPMEKA", + Self::CmdIdogdchcomj => "CmdIDOGDCHCOMJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRedDotTypeNone" => Some(Self::None), - "CmdGetSingleRedDotParamGroupCsReq" => { - Some(Self::CmdGetSingleRedDotParamGroupCsReq) - } - "CmdGetSingleRedDotParamGroupScRsp" => { - Some(Self::CmdGetSingleRedDotParamGroupScRsp) - } - "CmdUpdateRedDotDataScRsp" => Some(Self::CmdUpdateRedDotDataScRsp), - "CmdGetAllRedDotDataScRsp" => Some(Self::CmdGetAllRedDotDataScRsp), - "CmdGetAllRedDotDataCsReq" => Some(Self::CmdGetAllRedDotDataCsReq), - "CmdUpdateRedDotDataCsReq" => Some(Self::CmdUpdateRedDotDataCsReq), + "OHCBAJBOMJM_ALOCMFAKBKP" => Some(Self::OhcbajbomjmAlocmfakbkp), + "OHCBAJBOMJM_ILKAEJPKBHH" => Some(Self::OhcbajbomjmIlkaejpkbhh), + "CmdDEMGAOOOFGJ" => Some(Self::CmdDemgaooofgj), + "CmdNPGOMPIDMFJ" => Some(Self::CmdNpgompidmfj), + "CmdJDFGHDDLNJE" => Some(Self::CmdJdfghddlnje), + "OHCBAJBOMJM_IOHDCEPMEKA" => Some(Self::OhcbajbomjmIohdcepmeka), + "CmdIDOGDCHCOMJ" => Some(Self::CmdIdogdchcomj), _ => None, } } @@ -79483,29 +78275,29 @@ impl CmdRedDotType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ojljhfnfdkp { - UpdateReddotNone = 0, - UpdateReddotAdd = 1, - UpdateReddotReplace = 2, +pub enum Pjeaihhopno { + Cbfjkgodmdl = 0, + Fomecicbeki = 1, + Hehbblbegla = 2, } -impl Ojljhfnfdkp { +impl Pjeaihhopno { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::UpdateReddotNone => "UPDATE_REDDOT_NONE", - Self::UpdateReddotAdd => "UPDATE_REDDOT_ADD", - Self::UpdateReddotReplace => "UPDATE_REDDOT_REPLACE", + Self::Cbfjkgodmdl => "PJEAIHHOPNO_CBFJKGODMDL", + Self::Fomecicbeki => "PJEAIHHOPNO_FOMECICBEKI", + Self::Hehbblbegla => "PJEAIHHOPNO_HEHBBLBEGLA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "UPDATE_REDDOT_NONE" => Some(Self::UpdateReddotNone), - "UPDATE_REDDOT_ADD" => Some(Self::UpdateReddotAdd), - "UPDATE_REDDOT_REPLACE" => Some(Self::UpdateReddotReplace), + "PJEAIHHOPNO_CBFJKGODMDL" => Some(Self::Cbfjkgodmdl), + "PJEAIHHOPNO_FOMECICBEKI" => Some(Self::Fomecicbeki), + "PJEAIHHOPNO_HEHBBLBEGLA" => Some(Self::Hehbblbegla), _ => None, } } @@ -79514,22 +78306,19 @@ impl Ojljhfnfdkp { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRelicBoxType { - None = 0, - CmdSetRelicBoxShieldScRsp = 8961, - CmdOpenRelicBoxScRsp = 8966, - CmdSetRelicBoxTargetCsReq = 8953, - CmdGetRelicBoxDataScRsp = 8951, - CmdSetRelicBoxCustomScRsp = 8969, - CmdConfirmRelicBoxCsReq = 8968, - CmdRelicBoxChangeScNotify = 8964, - CmdOpenRelicBoxCsReq = 8960, - CmdSetRelicBoxCustomCsReq = 8963, - CmdSetRelicBoxShieldCsReq = 8958, - CmdSetRelicBoxTargetScRsp = 8965, - CmdConfirmRelicBoxScRsp = 8956, - CmdGetRelicBoxDataCsReq = 8957, - CmdReportRelicBoxActionScRsp = 8967, - CmdReportRelicBoxActionCsReq = 8970, + GjaccnnjcnjAlocmfakbkp = 0, + GjaccnnjcnjPbonbemjkal = 8956, + GjaccnnjcnjJeicldnklei = 8965, + GjaccnnjcnjNdildjglgka = 8959, + GjaccnnjcnjNfpmpichenm = 8951, + GjaccnnjcnjGnljmijifnp = 8955, + GjaccnnjcnjAdfebobfhlg = 8962, + GjaccnnjcnjOeebibdmaoj = 8960, + GjaccnnjcnjHmfkdkclbad = 8963, + GjaccnnjcnjIjamepgncao = 8964, + GjaccnnjcnjNmbbkmmhbik = 8969, + GjaccnnjcnjLegnpffjcmn = 8954, + GjaccnnjcnjGjchbejleng = 8970, } impl CmdRelicBoxType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79538,43 +78327,37 @@ impl CmdRelicBoxType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRelicBoxTypeNone", - Self::CmdSetRelicBoxShieldScRsp => "CmdSetRelicBoxShieldScRsp", - Self::CmdOpenRelicBoxScRsp => "CmdOpenRelicBoxScRsp", - Self::CmdSetRelicBoxTargetCsReq => "CmdSetRelicBoxTargetCsReq", - Self::CmdGetRelicBoxDataScRsp => "CmdGetRelicBoxDataScRsp", - Self::CmdSetRelicBoxCustomScRsp => "CmdSetRelicBoxCustomScRsp", - Self::CmdConfirmRelicBoxCsReq => "CmdConfirmRelicBoxCsReq", - Self::CmdRelicBoxChangeScNotify => "CmdRelicBoxChangeScNotify", - Self::CmdOpenRelicBoxCsReq => "CmdOpenRelicBoxCsReq", - Self::CmdSetRelicBoxCustomCsReq => "CmdSetRelicBoxCustomCsReq", - Self::CmdSetRelicBoxShieldCsReq => "CmdSetRelicBoxShieldCsReq", - Self::CmdSetRelicBoxTargetScRsp => "CmdSetRelicBoxTargetScRsp", - Self::CmdConfirmRelicBoxScRsp => "CmdConfirmRelicBoxScRsp", - Self::CmdGetRelicBoxDataCsReq => "CmdGetRelicBoxDataCsReq", - Self::CmdReportRelicBoxActionScRsp => "CmdReportRelicBoxActionScRsp", - Self::CmdReportRelicBoxActionCsReq => "CmdReportRelicBoxActionCsReq", + Self::GjaccnnjcnjAlocmfakbkp => "GJACCNNJCNJ_ALOCMFAKBKP", + Self::GjaccnnjcnjPbonbemjkal => "GJACCNNJCNJ_PBONBEMJKAL", + Self::GjaccnnjcnjJeicldnklei => "GJACCNNJCNJ_JEICLDNKLEI", + Self::GjaccnnjcnjNdildjglgka => "GJACCNNJCNJ_NDILDJGLGKA", + Self::GjaccnnjcnjNfpmpichenm => "GJACCNNJCNJ_NFPMPICHENM", + Self::GjaccnnjcnjGnljmijifnp => "GJACCNNJCNJ_GNLJMIJIFNP", + Self::GjaccnnjcnjAdfebobfhlg => "GJACCNNJCNJ_ADFEBOBFHLG", + Self::GjaccnnjcnjOeebibdmaoj => "GJACCNNJCNJ_OEEBIBDMAOJ", + Self::GjaccnnjcnjHmfkdkclbad => "GJACCNNJCNJ_HMFKDKCLBAD", + Self::GjaccnnjcnjIjamepgncao => "GJACCNNJCNJ_IJAMEPGNCAO", + Self::GjaccnnjcnjNmbbkmmhbik => "GJACCNNJCNJ_NMBBKMMHBIK", + Self::GjaccnnjcnjLegnpffjcmn => "GJACCNNJCNJ_LEGNPFFJCMN", + Self::GjaccnnjcnjGjchbejleng => "GJACCNNJCNJ_GJCHBEJLENG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRelicBoxTypeNone" => Some(Self::None), - "CmdSetRelicBoxShieldScRsp" => Some(Self::CmdSetRelicBoxShieldScRsp), - "CmdOpenRelicBoxScRsp" => Some(Self::CmdOpenRelicBoxScRsp), - "CmdSetRelicBoxTargetCsReq" => Some(Self::CmdSetRelicBoxTargetCsReq), - "CmdGetRelicBoxDataScRsp" => Some(Self::CmdGetRelicBoxDataScRsp), - "CmdSetRelicBoxCustomScRsp" => Some(Self::CmdSetRelicBoxCustomScRsp), - "CmdConfirmRelicBoxCsReq" => Some(Self::CmdConfirmRelicBoxCsReq), - "CmdRelicBoxChangeScNotify" => Some(Self::CmdRelicBoxChangeScNotify), - "CmdOpenRelicBoxCsReq" => Some(Self::CmdOpenRelicBoxCsReq), - "CmdSetRelicBoxCustomCsReq" => Some(Self::CmdSetRelicBoxCustomCsReq), - "CmdSetRelicBoxShieldCsReq" => Some(Self::CmdSetRelicBoxShieldCsReq), - "CmdSetRelicBoxTargetScRsp" => Some(Self::CmdSetRelicBoxTargetScRsp), - "CmdConfirmRelicBoxScRsp" => Some(Self::CmdConfirmRelicBoxScRsp), - "CmdGetRelicBoxDataCsReq" => Some(Self::CmdGetRelicBoxDataCsReq), - "CmdReportRelicBoxActionScRsp" => Some(Self::CmdReportRelicBoxActionScRsp), - "CmdReportRelicBoxActionCsReq" => Some(Self::CmdReportRelicBoxActionCsReq), + "GJACCNNJCNJ_ALOCMFAKBKP" => Some(Self::GjaccnnjcnjAlocmfakbkp), + "GJACCNNJCNJ_PBONBEMJKAL" => Some(Self::GjaccnnjcnjPbonbemjkal), + "GJACCNNJCNJ_JEICLDNKLEI" => Some(Self::GjaccnnjcnjJeicldnklei), + "GJACCNNJCNJ_NDILDJGLGKA" => Some(Self::GjaccnnjcnjNdildjglgka), + "GJACCNNJCNJ_NFPMPICHENM" => Some(Self::GjaccnnjcnjNfpmpichenm), + "GJACCNNJCNJ_GNLJMIJIFNP" => Some(Self::GjaccnnjcnjGnljmijifnp), + "GJACCNNJCNJ_ADFEBOBFHLG" => Some(Self::GjaccnnjcnjAdfebobfhlg), + "GJACCNNJCNJ_OEEBIBDMAOJ" => Some(Self::GjaccnnjcnjOeebibdmaoj), + "GJACCNNJCNJ_HMFKDKCLBAD" => Some(Self::GjaccnnjcnjHmfkdkclbad), + "GJACCNNJCNJ_IJAMEPGNCAO" => Some(Self::GjaccnnjcnjIjamepgncao), + "GJACCNNJCNJ_NMBBKMMHBIK" => Some(Self::GjaccnnjcnjNmbbkmmhbik), + "GJACCNNJCNJ_LEGNPFFJCMN" => Some(Self::GjaccnnjcnjLegnpffjcmn), + "GJACCNNJCNJ_GJCHBEJLENG" => Some(Self::GjaccnnjcnjGjchbejleng), _ => None, } } @@ -79582,29 +78365,29 @@ impl CmdRelicBoxType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Oodomplalee { - RelicBoxStateClose = 0, - RelicBoxStateClosePopup = 1, - RelicBoxStateOpen = 2, +pub enum Bhohmbfaioo { + Pbdkboacjbh = 0, + Klhkfhdipna = 1, + Affmpobfjik = 2, } -impl Oodomplalee { +impl Bhohmbfaioo { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RelicBoxStateClose => "RELIC_BOX_STATE_CLOSE", - Self::RelicBoxStateClosePopup => "RELIC_BOX_STATE_CLOSE_POPUP", - Self::RelicBoxStateOpen => "RELIC_BOX_STATE_OPEN", + Self::Pbdkboacjbh => "BHOHMBFAIOO_PBDKBOACJBH", + Self::Klhkfhdipna => "BHOHMBFAIOO_KLHKFHDIPNA", + Self::Affmpobfjik => "BHOHMBFAIOO_AFFMPOBFJIK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "RELIC_BOX_STATE_CLOSE" => Some(Self::RelicBoxStateClose), - "RELIC_BOX_STATE_CLOSE_POPUP" => Some(Self::RelicBoxStateClosePopup), - "RELIC_BOX_STATE_OPEN" => Some(Self::RelicBoxStateOpen), + "BHOHMBFAIOO_PBDKBOACJBH" => Some(Self::Pbdkboacjbh), + "BHOHMBFAIOO_KLHKFHDIPNA" => Some(Self::Klhkfhdipna), + "BHOHMBFAIOO_AFFMPOBFJIK" => Some(Self::Affmpobfjik), _ => None, } } @@ -79612,26 +78395,26 @@ impl Oodomplalee { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jhbpcmijgni { - RelicBoxTargetSetRecommend = 0, - RelicBoxTargetSetCustom = 1, +pub enum Olmahnldmob { + Ckkeehehjef = 0, + Neeneddadmf = 1, } -impl Jhbpcmijgni { +impl Olmahnldmob { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RelicBoxTargetSetRecommend => "RELIC_BOX_TARGET_SET_RECOMMEND", - Self::RelicBoxTargetSetCustom => "RELIC_BOX_TARGET_SET_CUSTOM", + Self::Ckkeehehjef => "OLMAHNLDMOB_CKKEEHEHJEF", + Self::Neeneddadmf => "OLMAHNLDMOB_NEENEDDADMF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "RELIC_BOX_TARGET_SET_RECOMMEND" => Some(Self::RelicBoxTargetSetRecommend), - "RELIC_BOX_TARGET_SET_CUSTOM" => Some(Self::RelicBoxTargetSetCustom), + "OLMAHNLDMOB_CKKEEHEHJEF" => Some(Self::Ckkeehehjef), + "OLMAHNLDMOB_NEENEDDADMF" => Some(Self::Neeneddadmf), _ => None, } } @@ -79640,22 +78423,22 @@ impl Jhbpcmijgni { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRelicSmartWearType { - None = 0, - CmdRelicSmartWearGetPlanScRsp = 8251, - CmdRelicSmartWearDeletePlanScRsp = 8261, - CmdRelicSmartWearUpdatePlanCsReq = 8253, - CmdRelicSmartWearGetPinRelicCsReq = 8268, - CmdRelicSmartWearGetPlanCsReq = 8257, - CmdRelicSmartWearAddPlanScRsp = 8269, - CmdRelicSmartWearDeletePinRelicScRsp = 8259, - CmdRelicSmartWearUpdatePinRelicScNotify = 8264, - CmdRelicSmartWearDeletePinRelicCsReq = 8255, - CmdRelicSmartWearGetPinRelicScRsp = 8256, + FpomlifmfjlAlocmfakbkp = 0, + CmdRelicSmartWearDeletePlanCsReq = 8253, + CmdRelicSmartWearGetPlanScRsp = 8256, + CmdRelicSmartWearGetPinRelicScRsp = 8270, + CmdRelicSmartWearGetPinRelicCsReq = 8260, + CmdRelicSmartWearUpdatePinRelicScNotify = 8257, + CmdRelicSmartWearGetPlanCsReq = 8263, + CmdRelicSmartWearDeletePlanScRsp = 8267, + CmdRelicSmartWearUpdatePlanCsReq = 8264, + CmdRelicSmartWearAddPlanCsReq = 8259, + CmdRelicSmartWearDeletePinRelicCsReq = 8261, + CmdRelicSmartWearUpdatePlanScRsp = 8254, + CmdRelicSmartWearDeletePinRelicScRsp = 8266, + CmdRelicSmartWearUpdatePinRelicScRsp = 8268, + CmdRelicSmartWearAddPlanScRsp = 8255, CmdRelicSmartWearUpdatePinRelicCsReq = 8252, - CmdRelicSmartWearUpdatePlanScRsp = 8265, - CmdRelicSmartWearAddPlanCsReq = 8263, - CmdRelicSmartWearDeletePlanCsReq = 8258, - CmdRelicSmartWearUpdatePinRelicScRsp = 8262, } impl CmdRelicSmartWearType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79664,79 +78447,79 @@ impl CmdRelicSmartWearType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRelicSmartWearTypeNone", + Self::FpomlifmfjlAlocmfakbkp => "FPOMLIFMFJL_ALOCMFAKBKP", + Self::CmdRelicSmartWearDeletePlanCsReq => "CmdRelicSmartWearDeletePlanCsReq", Self::CmdRelicSmartWearGetPlanScRsp => "CmdRelicSmartWearGetPlanScRsp", - Self::CmdRelicSmartWearDeletePlanScRsp => "CmdRelicSmartWearDeletePlanScRsp", - Self::CmdRelicSmartWearUpdatePlanCsReq => "CmdRelicSmartWearUpdatePlanCsReq", + Self::CmdRelicSmartWearGetPinRelicScRsp => { + "CmdRelicSmartWearGetPinRelicScRsp" + } Self::CmdRelicSmartWearGetPinRelicCsReq => { "CmdRelicSmartWearGetPinRelicCsReq" } - Self::CmdRelicSmartWearGetPlanCsReq => "CmdRelicSmartWearGetPlanCsReq", - Self::CmdRelicSmartWearAddPlanScRsp => "CmdRelicSmartWearAddPlanScRsp", - Self::CmdRelicSmartWearDeletePinRelicScRsp => { - "CmdRelicSmartWearDeletePinRelicScRsp" - } Self::CmdRelicSmartWearUpdatePinRelicScNotify => { "CmdRelicSmartWearUpdatePinRelicScNotify" } + Self::CmdRelicSmartWearGetPlanCsReq => "CmdRelicSmartWearGetPlanCsReq", + Self::CmdRelicSmartWearDeletePlanScRsp => "CmdRelicSmartWearDeletePlanScRsp", + Self::CmdRelicSmartWearUpdatePlanCsReq => "CmdRelicSmartWearUpdatePlanCsReq", + Self::CmdRelicSmartWearAddPlanCsReq => "CmdRelicSmartWearAddPlanCsReq", Self::CmdRelicSmartWearDeletePinRelicCsReq => { "CmdRelicSmartWearDeletePinRelicCsReq" } - Self::CmdRelicSmartWearGetPinRelicScRsp => { - "CmdRelicSmartWearGetPinRelicScRsp" - } - Self::CmdRelicSmartWearUpdatePinRelicCsReq => { - "CmdRelicSmartWearUpdatePinRelicCsReq" - } Self::CmdRelicSmartWearUpdatePlanScRsp => "CmdRelicSmartWearUpdatePlanScRsp", - Self::CmdRelicSmartWearAddPlanCsReq => "CmdRelicSmartWearAddPlanCsReq", - Self::CmdRelicSmartWearDeletePlanCsReq => "CmdRelicSmartWearDeletePlanCsReq", + Self::CmdRelicSmartWearDeletePinRelicScRsp => { + "CmdRelicSmartWearDeletePinRelicScRsp" + } Self::CmdRelicSmartWearUpdatePinRelicScRsp => { "CmdRelicSmartWearUpdatePinRelicScRsp" } + Self::CmdRelicSmartWearAddPlanScRsp => "CmdRelicSmartWearAddPlanScRsp", + Self::CmdRelicSmartWearUpdatePinRelicCsReq => { + "CmdRelicSmartWearUpdatePinRelicCsReq" + } } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRelicSmartWearTypeNone" => Some(Self::None), + "FPOMLIFMFJL_ALOCMFAKBKP" => Some(Self::FpomlifmfjlAlocmfakbkp), + "CmdRelicSmartWearDeletePlanCsReq" => { + Some(Self::CmdRelicSmartWearDeletePlanCsReq) + } "CmdRelicSmartWearGetPlanScRsp" => Some(Self::CmdRelicSmartWearGetPlanScRsp), + "CmdRelicSmartWearGetPinRelicScRsp" => { + Some(Self::CmdRelicSmartWearGetPinRelicScRsp) + } + "CmdRelicSmartWearGetPinRelicCsReq" => { + Some(Self::CmdRelicSmartWearGetPinRelicCsReq) + } + "CmdRelicSmartWearUpdatePinRelicScNotify" => { + Some(Self::CmdRelicSmartWearUpdatePinRelicScNotify) + } + "CmdRelicSmartWearGetPlanCsReq" => Some(Self::CmdRelicSmartWearGetPlanCsReq), "CmdRelicSmartWearDeletePlanScRsp" => { Some(Self::CmdRelicSmartWearDeletePlanScRsp) } "CmdRelicSmartWearUpdatePlanCsReq" => { Some(Self::CmdRelicSmartWearUpdatePlanCsReq) } - "CmdRelicSmartWearGetPinRelicCsReq" => { - Some(Self::CmdRelicSmartWearGetPinRelicCsReq) - } - "CmdRelicSmartWearGetPlanCsReq" => Some(Self::CmdRelicSmartWearGetPlanCsReq), - "CmdRelicSmartWearAddPlanScRsp" => Some(Self::CmdRelicSmartWearAddPlanScRsp), - "CmdRelicSmartWearDeletePinRelicScRsp" => { - Some(Self::CmdRelicSmartWearDeletePinRelicScRsp) - } - "CmdRelicSmartWearUpdatePinRelicScNotify" => { - Some(Self::CmdRelicSmartWearUpdatePinRelicScNotify) - } + "CmdRelicSmartWearAddPlanCsReq" => Some(Self::CmdRelicSmartWearAddPlanCsReq), "CmdRelicSmartWearDeletePinRelicCsReq" => { Some(Self::CmdRelicSmartWearDeletePinRelicCsReq) } - "CmdRelicSmartWearGetPinRelicScRsp" => { - Some(Self::CmdRelicSmartWearGetPinRelicScRsp) - } - "CmdRelicSmartWearUpdatePinRelicCsReq" => { - Some(Self::CmdRelicSmartWearUpdatePinRelicCsReq) - } "CmdRelicSmartWearUpdatePlanScRsp" => { Some(Self::CmdRelicSmartWearUpdatePlanScRsp) } - "CmdRelicSmartWearAddPlanCsReq" => Some(Self::CmdRelicSmartWearAddPlanCsReq), - "CmdRelicSmartWearDeletePlanCsReq" => { - Some(Self::CmdRelicSmartWearDeletePlanCsReq) + "CmdRelicSmartWearDeletePinRelicScRsp" => { + Some(Self::CmdRelicSmartWearDeletePinRelicScRsp) } "CmdRelicSmartWearUpdatePinRelicScRsp" => { Some(Self::CmdRelicSmartWearUpdatePinRelicScRsp) } + "CmdRelicSmartWearAddPlanScRsp" => Some(Self::CmdRelicSmartWearAddPlanScRsp), + "CmdRelicSmartWearUpdatePinRelicCsReq" => { + Some(Self::CmdRelicSmartWearUpdatePinRelicCsReq) + } _ => None, } } @@ -79744,38 +78527,32 @@ impl CmdRelicSmartWearType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Anccglmmdjj { - RelicSmartWearPlanTypeNone = 0, - RelicSmartWearPlanTypeBigData = 1, - RelicSmartWearPlanTypeSystem = 2, - RelicSmartWearPlanTypeCustom = 3, +pub enum Ooomngfbofk { + Alocmfakbkp = 0, + Ogdfofkmhpb = 1, + Nibnpdgjdfc = 2, + Obpnlopoofd = 3, } -impl Anccglmmdjj { +impl Ooomngfbofk { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RelicSmartWearPlanTypeNone => "RELIC_SMART_WEAR_PLAN_TYPE_NONE", - Self::RelicSmartWearPlanTypeBigData => "RELIC_SMART_WEAR_PLAN_TYPE_BIG_DATA", - Self::RelicSmartWearPlanTypeSystem => "RELIC_SMART_WEAR_PLAN_TYPE_SYSTEM", - Self::RelicSmartWearPlanTypeCustom => "RELIC_SMART_WEAR_PLAN_TYPE_CUSTOM", + Self::Alocmfakbkp => "OOOMNGFBOFK_ALOCMFAKBKP", + Self::Ogdfofkmhpb => "OOOMNGFBOFK_OGDFOFKMHPB", + Self::Nibnpdgjdfc => "OOOMNGFBOFK_NIBNPDGJDFC", + Self::Obpnlopoofd => "OOOMNGFBOFK_OBPNLOPOOFD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "RELIC_SMART_WEAR_PLAN_TYPE_NONE" => Some(Self::RelicSmartWearPlanTypeNone), - "RELIC_SMART_WEAR_PLAN_TYPE_BIG_DATA" => { - Some(Self::RelicSmartWearPlanTypeBigData) - } - "RELIC_SMART_WEAR_PLAN_TYPE_SYSTEM" => { - Some(Self::RelicSmartWearPlanTypeSystem) - } - "RELIC_SMART_WEAR_PLAN_TYPE_CUSTOM" => { - Some(Self::RelicSmartWearPlanTypeCustom) - } + "OOOMNGFBOFK_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "OOOMNGFBOFK_OGDFOFKMHPB" => Some(Self::Ogdfofkmhpb), + "OOOMNGFBOFK_NIBNPDGJDFC" => Some(Self::Nibnpdgjdfc), + "OOOMNGFBOFK_OBPNLOPOOFD" => Some(Self::Obpnlopoofd), _ => None, } } @@ -79784,11 +78561,11 @@ impl Anccglmmdjj { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdReplayType { - None = 0, - CmdGetReplayTokenScRsp = 3523, - CmdGetPlayerReplayInfoScRsp = 3565, - CmdGetPlayerReplayInfoCsReq = 3598, - CmdGetReplayTokenCsReq = 3599, + GijaaaifbimAlocmfakbkp = 0, + GijaaaifbimHefeggilbjp = 3538, + CmdIalbbbdemen = 3547, + CmdCbncnbmahhg = 3509, + CmdPicnbmnmick = 3517, } impl CmdReplayType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79797,21 +78574,21 @@ impl CmdReplayType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdReplayTypeNone", - Self::CmdGetReplayTokenScRsp => "CmdGetReplayTokenScRsp", - Self::CmdGetPlayerReplayInfoScRsp => "CmdGetPlayerReplayInfoScRsp", - Self::CmdGetPlayerReplayInfoCsReq => "CmdGetPlayerReplayInfoCsReq", - Self::CmdGetReplayTokenCsReq => "CmdGetReplayTokenCsReq", + Self::GijaaaifbimAlocmfakbkp => "GIJAAAIFBIM_ALOCMFAKBKP", + Self::GijaaaifbimHefeggilbjp => "GIJAAAIFBIM_HEFEGGILBJP", + Self::CmdIalbbbdemen => "CmdIALBBBDEMEN", + Self::CmdCbncnbmahhg => "CmdCBNCNBMAHHG", + Self::CmdPicnbmnmick => "CmdPICNBMNMICK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdReplayTypeNone" => Some(Self::None), - "CmdGetReplayTokenScRsp" => Some(Self::CmdGetReplayTokenScRsp), - "CmdGetPlayerReplayInfoScRsp" => Some(Self::CmdGetPlayerReplayInfoScRsp), - "CmdGetPlayerReplayInfoCsReq" => Some(Self::CmdGetPlayerReplayInfoCsReq), - "CmdGetReplayTokenCsReq" => Some(Self::CmdGetReplayTokenCsReq), + "GIJAAAIFBIM_ALOCMFAKBKP" => Some(Self::GijaaaifbimAlocmfakbkp), + "GIJAAAIFBIM_HEFEGGILBJP" => Some(Self::GijaaaifbimHefeggilbjp), + "CmdIALBBBDEMEN" => Some(Self::CmdIalbbbdemen), + "CmdCBNCNBMAHHG" => Some(Self::CmdCbncnbmahhg), + "CmdPICNBMNMICK" => Some(Self::CmdPicnbmnmick), _ => None, } } @@ -79820,11 +78597,11 @@ impl CmdReplayType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRndOptionType { - None = 0, - CmdGetRndOptionCsReq = 3499, - CmdDailyFirstMeetPamCsReq = 3498, - CmdGetRndOptionScRsp = 3423, - CmdDailyFirstMeetPamScRsp = 3465, + BhdhnijhejoAlocmfakbkp = 0, + CmdGlialigklih = 3417, + CmdNbamiehdfmp = 3447, + CmdLimnkhlnjcg = 3438, + CmdHealhmjoofl = 3409, } impl CmdRndOptionType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79833,21 +78610,21 @@ impl CmdRndOptionType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRndOptionTypeNone", - Self::CmdGetRndOptionCsReq => "CmdGetRndOptionCsReq", - Self::CmdDailyFirstMeetPamCsReq => "CmdDailyFirstMeetPamCsReq", - Self::CmdGetRndOptionScRsp => "CmdGetRndOptionScRsp", - Self::CmdDailyFirstMeetPamScRsp => "CmdDailyFirstMeetPamScRsp", + Self::BhdhnijhejoAlocmfakbkp => "BHDHNIJHEJO_ALOCMFAKBKP", + Self::CmdGlialigklih => "CmdGLIALIGKLIH", + Self::CmdNbamiehdfmp => "CmdNBAMIEHDFMP", + Self::CmdLimnkhlnjcg => "CmdLIMNKHLNJCG", + Self::CmdHealhmjoofl => "CmdHEALHMJOOFL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRndOptionTypeNone" => Some(Self::None), - "CmdGetRndOptionCsReq" => Some(Self::CmdGetRndOptionCsReq), - "CmdDailyFirstMeetPamCsReq" => Some(Self::CmdDailyFirstMeetPamCsReq), - "CmdGetRndOptionScRsp" => Some(Self::CmdGetRndOptionScRsp), - "CmdDailyFirstMeetPamScRsp" => Some(Self::CmdDailyFirstMeetPamScRsp), + "BHDHNIJHEJO_ALOCMFAKBKP" => Some(Self::BhdhnijhejoAlocmfakbkp), + "CmdGLIALIGKLIH" => Some(Self::CmdGlialigklih), + "CmdNBAMIEHDFMP" => Some(Self::CmdNbamiehdfmp), + "CmdLIMNKHLNJCG" => Some(Self::CmdLimnkhlnjcg), + "CmdHEALHMJOOFL" => Some(Self::CmdHealhmjoofl), _ => None, } } @@ -79856,60 +78633,60 @@ impl CmdRndOptionType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRogueType { - None = 0, - CmdQuitRogueScRsp = 1860, - CmdGetRogueBuffEnhanceInfoScRsp = 1838, - CmdStartRogueCsReq = 1898, - CmdGetRogueAeonInfoCsReq = 1891, - CmdGetRogueScoreRewardInfoScRsp = 1824, - CmdPickRogueAvatarScRsp = 1868, - CmdOpenRogueChestScRsp = 1840, - CmdSyncRoguePickAvatarInfoScNotify = 1834, - CmdEnterRogueCsReq = 1883, - CmdSyncRogueRewardInfoScNotify = 1878, - CmdSyncRogueSeasonFinishScNotify = 1874, - CmdSyncRogueAeonLevelUpRewardScNotify = 1831, - CmdTakeRogueAeonLevelRewardScRsp = 1864, - CmdSyncRogueExploreWinScNotify = 1835, - CmdGetRogueTalentInfoCsReq = 1887, - CmdEnterRogueMapRoomScRsp = 1810, - CmdReviveRogueAvatarCsReq = 1880, - CmdEnableRogueTalentCsReq = 1836, - CmdGetRogueScoreRewardInfoCsReq = 1808, - CmdQuitRogueCsReq = 1850, - CmdFinishAeonDialogueGroupScRsp = 1813, - CmdPickRogueAvatarCsReq = 1837, - CmdEnterRogueMapRoomCsReq = 1821, - CmdTakeRogueScoreRewardCsReq = 1805, - CmdExchangeRogueRewardKeyCsReq = 1866, - CmdEnableRogueTalentScRsp = 1848, - CmdGetRogueTalentInfoScRsp = 1900, - CmdEnterRogueScRsp = 1886, - CmdSyncRogueStatusScNotify = 1820, - CmdEnhanceRogueBuffScRsp = 1809, - CmdFinishAeonDialogueGroupCsReq = 1890, - CmdSyncRogueMapRoomScNotify = 1870, - CmdGetRogueInfoCsReq = 1899, - CmdOpenRogueChestCsReq = 1872, - CmdSyncRogueReviveInfoScNotify = 1855, - CmdSyncRogueAreaUnlockScNotify = 1876, - CmdExchangeRogueRewardKeyScRsp = 1839, - CmdLeaveRogueScRsp = 1852, - CmdGetRogueInfoScRsp = 1823, - CmdLeaveRogueCsReq = 1894, - CmdGetRogueAeonInfoScRsp = 1873, - CmdSyncRogueGetItemScNotify = 1882, - CmdTakeRogueAeonLevelRewardCsReq = 1875, - CmdReviveRogueAvatarScRsp = 1877, - CmdStartRogueScRsp = 1865, - CmdTakeRogueScoreRewardScRsp = 1851, - CmdGetRogueInitialScoreCsReq = 1853, - CmdSyncRogueVirtualItemInfoScNotify = 1847, - CmdSyncRogueAeonScNotify = 1833, - CmdEnhanceRogueBuffCsReq = 1803, - CmdSyncRogueFinishScNotify = 1892, - CmdGetRogueBuffEnhanceInfoCsReq = 1829, - CmdGetRogueInitialScoreScRsp = 1842, + CkmnhmkofnnAlocmfakbkp = 0, + CmdDfeopehibpm = 1893, + CmdFlmkdfpnlnn = 1838, + CmdPfifbakbdjf = 1860, + CmdNijglmiefig = 1850, + CmdCfcmngnhgfb = 1888, + CmdMjmmoiainak = 1882, + CmdAhifjegegbh = 1823, + CmdIjfgbbjndmp = 1881, + CmdLokbanidppg = 1867, + CmdHgjjmekhjab = 1847, + CmdNjkdjfmnkhg = 1810, + CmdLkhcffgaekf = 1863, + CmdBfkhhonbnmb = 1864, + CmdJgmgpjbilhj = 1890, + CmdKamdnpbkkel = 1840, + CmdLoebiphoohn = 1848, + CmdBodkpnefbbp = 1894, + CmdNnafacgkdob = 1875, + CmdNggmfnpnken = 1846, + CmdIhcjajgpjkk = 1842, + CmdIejdcckfgec = 1830, + CmdFddecgpjdkd = 1889, + CmdLmbfknbbian = 1817, + CmdGhpmfebldam = 1833, + CmdNoohanihdob = 1801, + CmdEjbimmpcpio = 1809, + CmdKdhbfohebpd = 1870, + CmdJkgandlbmdp = 1828, + CmdMbcomibjkid = 1877, + CmdEdefmjmjhdg = 1820, + CmdDncmgmkkehp = 1819, + CmdEkcdcnhjibc = 1874, + CmdBkhjbhhfibe = 1854, + CmdPmjflccjgnb = 1886, + CmdIkiokkgfneg = 1816, + CmdAimeohgggph = 1835, + CmdEbmighofadn = 1814, + CmdDdeocjjmgea = 1855, + CmdAajkbeebdam = 1811, + CmdMilmmefnlnj = 1803, + CmdLaflmchdlme = 1862, + CmdKbhgegnhgpd = 1898, + CmdHgilbkeaann = 1813, + CmdPiiijlcpaml = 1865, + CmdGmahmmhhmab = 1879, + CmdCbeddknmndo = 1892, + CmdIpfidhaanhm = 1872, + CmdDfnehaihgkk = 1899, + CmdCelpbbfekop = 1856, + CmdKgaecmdgbnh = 1851, + CmdJdigbedafak = 1887, + CmdBobpimeikni = 1808, + CmdDjhjnjikkpi = 1839, } impl CmdRogueType { /// String value of the enum field names used in the ProtoBuf definition. @@ -79918,161 +78695,119 @@ impl CmdRogueType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRogueTypeNone", - Self::CmdQuitRogueScRsp => "CmdQuitRogueScRsp", - Self::CmdGetRogueBuffEnhanceInfoScRsp => "CmdGetRogueBuffEnhanceInfoScRsp", - Self::CmdStartRogueCsReq => "CmdStartRogueCsReq", - Self::CmdGetRogueAeonInfoCsReq => "CmdGetRogueAeonInfoCsReq", - Self::CmdGetRogueScoreRewardInfoScRsp => "CmdGetRogueScoreRewardInfoScRsp", - Self::CmdPickRogueAvatarScRsp => "CmdPickRogueAvatarScRsp", - Self::CmdOpenRogueChestScRsp => "CmdOpenRogueChestScRsp", - Self::CmdSyncRoguePickAvatarInfoScNotify => { - "CmdSyncRoguePickAvatarInfoScNotify" - } - Self::CmdEnterRogueCsReq => "CmdEnterRogueCsReq", - Self::CmdSyncRogueRewardInfoScNotify => "CmdSyncRogueRewardInfoScNotify", - Self::CmdSyncRogueSeasonFinishScNotify => "CmdSyncRogueSeasonFinishScNotify", - Self::CmdSyncRogueAeonLevelUpRewardScNotify => { - "CmdSyncRogueAeonLevelUpRewardScNotify" - } - Self::CmdTakeRogueAeonLevelRewardScRsp => "CmdTakeRogueAeonLevelRewardScRsp", - Self::CmdSyncRogueExploreWinScNotify => "CmdSyncRogueExploreWinScNotify", - Self::CmdGetRogueTalentInfoCsReq => "CmdGetRogueTalentInfoCsReq", - Self::CmdEnterRogueMapRoomScRsp => "CmdEnterRogueMapRoomScRsp", - Self::CmdReviveRogueAvatarCsReq => "CmdReviveRogueAvatarCsReq", - Self::CmdEnableRogueTalentCsReq => "CmdEnableRogueTalentCsReq", - Self::CmdGetRogueScoreRewardInfoCsReq => "CmdGetRogueScoreRewardInfoCsReq", - Self::CmdQuitRogueCsReq => "CmdQuitRogueCsReq", - Self::CmdFinishAeonDialogueGroupScRsp => "CmdFinishAeonDialogueGroupScRsp", - Self::CmdPickRogueAvatarCsReq => "CmdPickRogueAvatarCsReq", - Self::CmdEnterRogueMapRoomCsReq => "CmdEnterRogueMapRoomCsReq", - Self::CmdTakeRogueScoreRewardCsReq => "CmdTakeRogueScoreRewardCsReq", - Self::CmdExchangeRogueRewardKeyCsReq => "CmdExchangeRogueRewardKeyCsReq", - Self::CmdEnableRogueTalentScRsp => "CmdEnableRogueTalentScRsp", - Self::CmdGetRogueTalentInfoScRsp => "CmdGetRogueTalentInfoScRsp", - Self::CmdEnterRogueScRsp => "CmdEnterRogueScRsp", - Self::CmdSyncRogueStatusScNotify => "CmdSyncRogueStatusScNotify", - Self::CmdEnhanceRogueBuffScRsp => "CmdEnhanceRogueBuffScRsp", - Self::CmdFinishAeonDialogueGroupCsReq => "CmdFinishAeonDialogueGroupCsReq", - Self::CmdSyncRogueMapRoomScNotify => "CmdSyncRogueMapRoomScNotify", - Self::CmdGetRogueInfoCsReq => "CmdGetRogueInfoCsReq", - Self::CmdOpenRogueChestCsReq => "CmdOpenRogueChestCsReq", - Self::CmdSyncRogueReviveInfoScNotify => "CmdSyncRogueReviveInfoScNotify", - Self::CmdSyncRogueAreaUnlockScNotify => "CmdSyncRogueAreaUnlockScNotify", - Self::CmdExchangeRogueRewardKeyScRsp => "CmdExchangeRogueRewardKeyScRsp", - Self::CmdLeaveRogueScRsp => "CmdLeaveRogueScRsp", - Self::CmdGetRogueInfoScRsp => "CmdGetRogueInfoScRsp", - Self::CmdLeaveRogueCsReq => "CmdLeaveRogueCsReq", - Self::CmdGetRogueAeonInfoScRsp => "CmdGetRogueAeonInfoScRsp", - Self::CmdSyncRogueGetItemScNotify => "CmdSyncRogueGetItemScNotify", - Self::CmdTakeRogueAeonLevelRewardCsReq => "CmdTakeRogueAeonLevelRewardCsReq", - Self::CmdReviveRogueAvatarScRsp => "CmdReviveRogueAvatarScRsp", - Self::CmdStartRogueScRsp => "CmdStartRogueScRsp", - Self::CmdTakeRogueScoreRewardScRsp => "CmdTakeRogueScoreRewardScRsp", - Self::CmdGetRogueInitialScoreCsReq => "CmdGetRogueInitialScoreCsReq", - Self::CmdSyncRogueVirtualItemInfoScNotify => { - "CmdSyncRogueVirtualItemInfoScNotify" - } - Self::CmdSyncRogueAeonScNotify => "CmdSyncRogueAeonScNotify", - Self::CmdEnhanceRogueBuffCsReq => "CmdEnhanceRogueBuffCsReq", - Self::CmdSyncRogueFinishScNotify => "CmdSyncRogueFinishScNotify", - Self::CmdGetRogueBuffEnhanceInfoCsReq => "CmdGetRogueBuffEnhanceInfoCsReq", - Self::CmdGetRogueInitialScoreScRsp => "CmdGetRogueInitialScoreScRsp", + Self::CkmnhmkofnnAlocmfakbkp => "CKMNHMKOFNN_ALOCMFAKBKP", + Self::CmdDfeopehibpm => "CmdDFEOPEHIBPM", + Self::CmdFlmkdfpnlnn => "CmdFLMKDFPNLNN", + Self::CmdPfifbakbdjf => "CmdPFIFBAKBDJF", + Self::CmdNijglmiefig => "CmdNIJGLMIEFIG", + Self::CmdCfcmngnhgfb => "CmdCFCMNGNHGFB", + Self::CmdMjmmoiainak => "CmdMJMMOIAINAK", + Self::CmdAhifjegegbh => "CmdAHIFJEGEGBH", + Self::CmdIjfgbbjndmp => "CmdIJFGBBJNDMP", + Self::CmdLokbanidppg => "CmdLOKBANIDPPG", + Self::CmdHgjjmekhjab => "CmdHGJJMEKHJAB", + Self::CmdNjkdjfmnkhg => "CmdNJKDJFMNKHG", + Self::CmdLkhcffgaekf => "CmdLKHCFFGAEKF", + Self::CmdBfkhhonbnmb => "CmdBFKHHONBNMB", + Self::CmdJgmgpjbilhj => "CmdJGMGPJBILHJ", + Self::CmdKamdnpbkkel => "CmdKAMDNPBKKEL", + Self::CmdLoebiphoohn => "CmdLOEBIPHOOHN", + Self::CmdBodkpnefbbp => "CmdBODKPNEFBBP", + Self::CmdNnafacgkdob => "CmdNNAFACGKDOB", + Self::CmdNggmfnpnken => "CmdNGGMFNPNKEN", + Self::CmdIhcjajgpjkk => "CmdIHCJAJGPJKK", + Self::CmdIejdcckfgec => "CmdIEJDCCKFGEC", + Self::CmdFddecgpjdkd => "CmdFDDECGPJDKD", + Self::CmdLmbfknbbian => "CmdLMBFKNBBIAN", + Self::CmdGhpmfebldam => "CmdGHPMFEBLDAM", + Self::CmdNoohanihdob => "CmdNOOHANIHDOB", + Self::CmdEjbimmpcpio => "CmdEJBIMMPCPIO", + Self::CmdKdhbfohebpd => "CmdKDHBFOHEBPD", + Self::CmdJkgandlbmdp => "CmdJKGANDLBMDP", + Self::CmdMbcomibjkid => "CmdMBCOMIBJKID", + Self::CmdEdefmjmjhdg => "CmdEDEFMJMJHDG", + Self::CmdDncmgmkkehp => "CmdDNCMGMKKEHP", + Self::CmdEkcdcnhjibc => "CmdEKCDCNHJIBC", + Self::CmdBkhjbhhfibe => "CmdBKHJBHHFIBE", + Self::CmdPmjflccjgnb => "CmdPMJFLCCJGNB", + Self::CmdIkiokkgfneg => "CmdIKIOKKGFNEG", + Self::CmdAimeohgggph => "CmdAIMEOHGGGPH", + Self::CmdEbmighofadn => "CmdEBMIGHOFADN", + Self::CmdDdeocjjmgea => "CmdDDEOCJJMGEA", + Self::CmdAajkbeebdam => "CmdAAJKBEEBDAM", + Self::CmdMilmmefnlnj => "CmdMILMMEFNLNJ", + Self::CmdLaflmchdlme => "CmdLAFLMCHDLME", + Self::CmdKbhgegnhgpd => "CmdKBHGEGNHGPD", + Self::CmdHgilbkeaann => "CmdHGILBKEAANN", + Self::CmdPiiijlcpaml => "CmdPIIIJLCPAML", + Self::CmdGmahmmhhmab => "CmdGMAHMMHHMAB", + Self::CmdCbeddknmndo => "CmdCBEDDKNMNDO", + Self::CmdIpfidhaanhm => "CmdIPFIDHAANHM", + Self::CmdDfnehaihgkk => "CmdDFNEHAIHGKK", + Self::CmdCelpbbfekop => "CmdCELPBBFEKOP", + Self::CmdKgaecmdgbnh => "CmdKGAECMDGBNH", + Self::CmdJdigbedafak => "CmdJDIGBEDAFAK", + Self::CmdBobpimeikni => "CmdBOBPIMEIKNI", + Self::CmdDjhjnjikkpi => "CmdDJHJNJIKKPI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRogueTypeNone" => Some(Self::None), - "CmdQuitRogueScRsp" => Some(Self::CmdQuitRogueScRsp), - "CmdGetRogueBuffEnhanceInfoScRsp" => { - Some(Self::CmdGetRogueBuffEnhanceInfoScRsp) - } - "CmdStartRogueCsReq" => Some(Self::CmdStartRogueCsReq), - "CmdGetRogueAeonInfoCsReq" => Some(Self::CmdGetRogueAeonInfoCsReq), - "CmdGetRogueScoreRewardInfoScRsp" => { - Some(Self::CmdGetRogueScoreRewardInfoScRsp) - } - "CmdPickRogueAvatarScRsp" => Some(Self::CmdPickRogueAvatarScRsp), - "CmdOpenRogueChestScRsp" => Some(Self::CmdOpenRogueChestScRsp), - "CmdSyncRoguePickAvatarInfoScNotify" => { - Some(Self::CmdSyncRoguePickAvatarInfoScNotify) - } - "CmdEnterRogueCsReq" => Some(Self::CmdEnterRogueCsReq), - "CmdSyncRogueRewardInfoScNotify" => { - Some(Self::CmdSyncRogueRewardInfoScNotify) - } - "CmdSyncRogueSeasonFinishScNotify" => { - Some(Self::CmdSyncRogueSeasonFinishScNotify) - } - "CmdSyncRogueAeonLevelUpRewardScNotify" => { - Some(Self::CmdSyncRogueAeonLevelUpRewardScNotify) - } - "CmdTakeRogueAeonLevelRewardScRsp" => { - Some(Self::CmdTakeRogueAeonLevelRewardScRsp) - } - "CmdSyncRogueExploreWinScNotify" => { - Some(Self::CmdSyncRogueExploreWinScNotify) - } - "CmdGetRogueTalentInfoCsReq" => Some(Self::CmdGetRogueTalentInfoCsReq), - "CmdEnterRogueMapRoomScRsp" => Some(Self::CmdEnterRogueMapRoomScRsp), - "CmdReviveRogueAvatarCsReq" => Some(Self::CmdReviveRogueAvatarCsReq), - "CmdEnableRogueTalentCsReq" => Some(Self::CmdEnableRogueTalentCsReq), - "CmdGetRogueScoreRewardInfoCsReq" => { - Some(Self::CmdGetRogueScoreRewardInfoCsReq) - } - "CmdQuitRogueCsReq" => Some(Self::CmdQuitRogueCsReq), - "CmdFinishAeonDialogueGroupScRsp" => { - Some(Self::CmdFinishAeonDialogueGroupScRsp) - } - "CmdPickRogueAvatarCsReq" => Some(Self::CmdPickRogueAvatarCsReq), - "CmdEnterRogueMapRoomCsReq" => Some(Self::CmdEnterRogueMapRoomCsReq), - "CmdTakeRogueScoreRewardCsReq" => Some(Self::CmdTakeRogueScoreRewardCsReq), - "CmdExchangeRogueRewardKeyCsReq" => { - Some(Self::CmdExchangeRogueRewardKeyCsReq) - } - "CmdEnableRogueTalentScRsp" => Some(Self::CmdEnableRogueTalentScRsp), - "CmdGetRogueTalentInfoScRsp" => Some(Self::CmdGetRogueTalentInfoScRsp), - "CmdEnterRogueScRsp" => Some(Self::CmdEnterRogueScRsp), - "CmdSyncRogueStatusScNotify" => Some(Self::CmdSyncRogueStatusScNotify), - "CmdEnhanceRogueBuffScRsp" => Some(Self::CmdEnhanceRogueBuffScRsp), - "CmdFinishAeonDialogueGroupCsReq" => { - Some(Self::CmdFinishAeonDialogueGroupCsReq) - } - "CmdSyncRogueMapRoomScNotify" => Some(Self::CmdSyncRogueMapRoomScNotify), - "CmdGetRogueInfoCsReq" => Some(Self::CmdGetRogueInfoCsReq), - "CmdOpenRogueChestCsReq" => Some(Self::CmdOpenRogueChestCsReq), - "CmdSyncRogueReviveInfoScNotify" => { - Some(Self::CmdSyncRogueReviveInfoScNotify) - } - "CmdSyncRogueAreaUnlockScNotify" => { - Some(Self::CmdSyncRogueAreaUnlockScNotify) - } - "CmdExchangeRogueRewardKeyScRsp" => { - Some(Self::CmdExchangeRogueRewardKeyScRsp) - } - "CmdLeaveRogueScRsp" => Some(Self::CmdLeaveRogueScRsp), - "CmdGetRogueInfoScRsp" => Some(Self::CmdGetRogueInfoScRsp), - "CmdLeaveRogueCsReq" => Some(Self::CmdLeaveRogueCsReq), - "CmdGetRogueAeonInfoScRsp" => Some(Self::CmdGetRogueAeonInfoScRsp), - "CmdSyncRogueGetItemScNotify" => Some(Self::CmdSyncRogueGetItemScNotify), - "CmdTakeRogueAeonLevelRewardCsReq" => { - Some(Self::CmdTakeRogueAeonLevelRewardCsReq) - } - "CmdReviveRogueAvatarScRsp" => Some(Self::CmdReviveRogueAvatarScRsp), - "CmdStartRogueScRsp" => Some(Self::CmdStartRogueScRsp), - "CmdTakeRogueScoreRewardScRsp" => Some(Self::CmdTakeRogueScoreRewardScRsp), - "CmdGetRogueInitialScoreCsReq" => Some(Self::CmdGetRogueInitialScoreCsReq), - "CmdSyncRogueVirtualItemInfoScNotify" => { - Some(Self::CmdSyncRogueVirtualItemInfoScNotify) - } - "CmdSyncRogueAeonScNotify" => Some(Self::CmdSyncRogueAeonScNotify), - "CmdEnhanceRogueBuffCsReq" => Some(Self::CmdEnhanceRogueBuffCsReq), - "CmdSyncRogueFinishScNotify" => Some(Self::CmdSyncRogueFinishScNotify), - "CmdGetRogueBuffEnhanceInfoCsReq" => { - Some(Self::CmdGetRogueBuffEnhanceInfoCsReq) - } - "CmdGetRogueInitialScoreScRsp" => Some(Self::CmdGetRogueInitialScoreScRsp), + "CKMNHMKOFNN_ALOCMFAKBKP" => Some(Self::CkmnhmkofnnAlocmfakbkp), + "CmdDFEOPEHIBPM" => Some(Self::CmdDfeopehibpm), + "CmdFLMKDFPNLNN" => Some(Self::CmdFlmkdfpnlnn), + "CmdPFIFBAKBDJF" => Some(Self::CmdPfifbakbdjf), + "CmdNIJGLMIEFIG" => Some(Self::CmdNijglmiefig), + "CmdCFCMNGNHGFB" => Some(Self::CmdCfcmngnhgfb), + "CmdMJMMOIAINAK" => Some(Self::CmdMjmmoiainak), + "CmdAHIFJEGEGBH" => Some(Self::CmdAhifjegegbh), + "CmdIJFGBBJNDMP" => Some(Self::CmdIjfgbbjndmp), + "CmdLOKBANIDPPG" => Some(Self::CmdLokbanidppg), + "CmdHGJJMEKHJAB" => Some(Self::CmdHgjjmekhjab), + "CmdNJKDJFMNKHG" => Some(Self::CmdNjkdjfmnkhg), + "CmdLKHCFFGAEKF" => Some(Self::CmdLkhcffgaekf), + "CmdBFKHHONBNMB" => Some(Self::CmdBfkhhonbnmb), + "CmdJGMGPJBILHJ" => Some(Self::CmdJgmgpjbilhj), + "CmdKAMDNPBKKEL" => Some(Self::CmdKamdnpbkkel), + "CmdLOEBIPHOOHN" => Some(Self::CmdLoebiphoohn), + "CmdBODKPNEFBBP" => Some(Self::CmdBodkpnefbbp), + "CmdNNAFACGKDOB" => Some(Self::CmdNnafacgkdob), + "CmdNGGMFNPNKEN" => Some(Self::CmdNggmfnpnken), + "CmdIHCJAJGPJKK" => Some(Self::CmdIhcjajgpjkk), + "CmdIEJDCCKFGEC" => Some(Self::CmdIejdcckfgec), + "CmdFDDECGPJDKD" => Some(Self::CmdFddecgpjdkd), + "CmdLMBFKNBBIAN" => Some(Self::CmdLmbfknbbian), + "CmdGHPMFEBLDAM" => Some(Self::CmdGhpmfebldam), + "CmdNOOHANIHDOB" => Some(Self::CmdNoohanihdob), + "CmdEJBIMMPCPIO" => Some(Self::CmdEjbimmpcpio), + "CmdKDHBFOHEBPD" => Some(Self::CmdKdhbfohebpd), + "CmdJKGANDLBMDP" => Some(Self::CmdJkgandlbmdp), + "CmdMBCOMIBJKID" => Some(Self::CmdMbcomibjkid), + "CmdEDEFMJMJHDG" => Some(Self::CmdEdefmjmjhdg), + "CmdDNCMGMKKEHP" => Some(Self::CmdDncmgmkkehp), + "CmdEKCDCNHJIBC" => Some(Self::CmdEkcdcnhjibc), + "CmdBKHJBHHFIBE" => Some(Self::CmdBkhjbhhfibe), + "CmdPMJFLCCJGNB" => Some(Self::CmdPmjflccjgnb), + "CmdIKIOKKGFNEG" => Some(Self::CmdIkiokkgfneg), + "CmdAIMEOHGGGPH" => Some(Self::CmdAimeohgggph), + "CmdEBMIGHOFADN" => Some(Self::CmdEbmighofadn), + "CmdDDEOCJJMGEA" => Some(Self::CmdDdeocjjmgea), + "CmdAAJKBEEBDAM" => Some(Self::CmdAajkbeebdam), + "CmdMILMMEFNLNJ" => Some(Self::CmdMilmmefnlnj), + "CmdLAFLMCHDLME" => Some(Self::CmdLaflmchdlme), + "CmdKBHGEGNHGPD" => Some(Self::CmdKbhgegnhgpd), + "CmdHGILBKEAANN" => Some(Self::CmdHgilbkeaann), + "CmdPIIIJLCPAML" => Some(Self::CmdPiiijlcpaml), + "CmdGMAHMMHHMAB" => Some(Self::CmdGmahmmhhmab), + "CmdCBEDDKNMNDO" => Some(Self::CmdCbeddknmndo), + "CmdIPFIDHAANHM" => Some(Self::CmdIpfidhaanhm), + "CmdDFNEHAIHGKK" => Some(Self::CmdDfnehaihgkk), + "CmdCELPBBFEKOP" => Some(Self::CmdCelpbbfekop), + "CmdKGAECMDGBNH" => Some(Self::CmdKgaecmdgbnh), + "CmdJDIGBEDAFAK" => Some(Self::CmdJdigbedafak), + "CmdBOBPIMEIKNI" => Some(Self::CmdBobpimeikni), + "CmdDJHJNJIKKPI" => Some(Self::CmdDjhjnjikkpi), _ => None, } } @@ -80080,35 +78815,35 @@ impl CmdRogueType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum RogueStatus { - None = 0, - Doing = 1, - Pending = 2, - Endless = 3, - Finish = 4, +pub enum Ffmgdehfoai { + Alocmfakbkp = 0, + Mklgfbpopmb = 1, + Bpmbjnebkmi = 2, + Ilekcjngpmg = 3, + Eddpgfacjae = 4, } -impl RogueStatus { +impl Ffmgdehfoai { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "ROGUE_STATUS_NONE", - Self::Doing => "ROGUE_STATUS_DOING", - Self::Pending => "ROGUE_STATUS_PENDING", - Self::Endless => "ROGUE_STATUS_ENDLESS", - Self::Finish => "ROGUE_STATUS_FINISH", + Self::Alocmfakbkp => "FFMGDEHFOAI_ALOCMFAKBKP", + Self::Mklgfbpopmb => "FFMGDEHFOAI_MKLGFBPOPMB", + Self::Bpmbjnebkmi => "FFMGDEHFOAI_BPMBJNEBKMI", + Self::Ilekcjngpmg => "FFMGDEHFOAI_ILEKCJNGPMG", + Self::Eddpgfacjae => "FFMGDEHFOAI_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_STATUS_NONE" => Some(Self::None), - "ROGUE_STATUS_DOING" => Some(Self::Doing), - "ROGUE_STATUS_PENDING" => Some(Self::Pending), - "ROGUE_STATUS_ENDLESS" => Some(Self::Endless), - "ROGUE_STATUS_FINISH" => Some(Self::Finish), + "FFMGDEHFOAI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "FFMGDEHFOAI_MKLGFBPOPMB" => Some(Self::Mklgfbpopmb), + "FFMGDEHFOAI_BPMBJNEBKMI" => Some(Self::Bpmbjnebkmi), + "FFMGDEHFOAI_ILEKCJNGPMG" => Some(Self::Ilekcjngpmg), + "FFMGDEHFOAI_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -80116,35 +78851,35 @@ impl RogueStatus { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ilnpbecoepl { - RogueRoomStatusNone = 0, - RogueRoomStatusLock = 1, - RogueRoomStatusUnlock = 2, - RogueRoomStatusPlay = 3, - RogueRoomStatusFinish = 4, +pub enum Fcbocleekga { + Alocmfakbkp = 0, + Gbcmpododmc = 1, + Dicadjmaife = 2, + Jkpkepgajao = 3, + Eddpgfacjae = 4, } -impl Ilnpbecoepl { +impl Fcbocleekga { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueRoomStatusNone => "ROGUE_ROOM_STATUS_NONE", - Self::RogueRoomStatusLock => "ROGUE_ROOM_STATUS_LOCK", - Self::RogueRoomStatusUnlock => "ROGUE_ROOM_STATUS_UNLOCK", - Self::RogueRoomStatusPlay => "ROGUE_ROOM_STATUS_PLAY", - Self::RogueRoomStatusFinish => "ROGUE_ROOM_STATUS_FINISH", + Self::Alocmfakbkp => "FCBOCLEEKGA_ALOCMFAKBKP", + Self::Gbcmpododmc => "FCBOCLEEKGA_GBCMPODODMC", + Self::Dicadjmaife => "FCBOCLEEKGA_DICADJMAIFE", + Self::Jkpkepgajao => "FCBOCLEEKGA_JKPKEPGAJAO", + Self::Eddpgfacjae => "FCBOCLEEKGA_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_ROOM_STATUS_NONE" => Some(Self::RogueRoomStatusNone), - "ROGUE_ROOM_STATUS_LOCK" => Some(Self::RogueRoomStatusLock), - "ROGUE_ROOM_STATUS_UNLOCK" => Some(Self::RogueRoomStatusUnlock), - "ROGUE_ROOM_STATUS_PLAY" => Some(Self::RogueRoomStatusPlay), - "ROGUE_ROOM_STATUS_FINISH" => Some(Self::RogueRoomStatusFinish), + "FCBOCLEEKGA_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "FCBOCLEEKGA_GBCMPODODMC" => Some(Self::Gbcmpododmc), + "FCBOCLEEKGA_DICADJMAIFE" => Some(Self::Dicadjmaife), + "FCBOCLEEKGA_JKPKEPGAJAO" => Some(Self::Jkpkepgajao), + "FCBOCLEEKGA_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -80152,32 +78887,32 @@ impl Ilnpbecoepl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jdakamigkhf { - RogueAreaStatusLock = 0, - RogueAreaStatusUnlock = 1, - RogueAreaStatusFirstPass = 2, - RogueAreaStatusClose = 3, +pub enum Nkelooeellp { + Gbcmpododmc = 0, + Dicadjmaife = 1, + Agjaojeadoc = 2, + Pbdkboacjbh = 3, } -impl Jdakamigkhf { +impl Nkelooeellp { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueAreaStatusLock => "ROGUE_AREA_STATUS_LOCK", - Self::RogueAreaStatusUnlock => "ROGUE_AREA_STATUS_UNLOCK", - Self::RogueAreaStatusFirstPass => "ROGUE_AREA_STATUS_FIRST_PASS", - Self::RogueAreaStatusClose => "ROGUE_AREA_STATUS_CLOSE", + Self::Gbcmpododmc => "NKELOOEELLP_GBCMPODODMC", + Self::Dicadjmaife => "NKELOOEELLP_DICADJMAIFE", + Self::Agjaojeadoc => "NKELOOEELLP_AGJAOJEADOC", + Self::Pbdkboacjbh => "NKELOOEELLP_PBDKBOACJBH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_AREA_STATUS_LOCK" => Some(Self::RogueAreaStatusLock), - "ROGUE_AREA_STATUS_UNLOCK" => Some(Self::RogueAreaStatusUnlock), - "ROGUE_AREA_STATUS_FIRST_PASS" => Some(Self::RogueAreaStatusFirstPass), - "ROGUE_AREA_STATUS_CLOSE" => Some(Self::RogueAreaStatusClose), + "NKELOOEELLP_GBCMPODODMC" => Some(Self::Gbcmpododmc), + "NKELOOEELLP_DICADJMAIFE" => Some(Self::Dicadjmaife), + "NKELOOEELLP_AGJAOJEADOC" => Some(Self::Agjaojeadoc), + "NKELOOEELLP_PBDKBOACJBH" => Some(Self::Pbdkboacjbh), _ => None, } } @@ -80185,60 +78920,50 @@ impl Jdakamigkhf { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jjeikcobdlp { - RogueBuffSourceTypeNone = 0, - RogueBuffSourceTypeSelect = 1, - RogueBuffSourceTypeEnhance = 2, - RogueBuffSourceTypeMiracle = 3, - RogueBuffSourceTypeDialogue = 4, - RogueBuffSourceTypeBonus = 5, - RogueBuffSourceTypeMazeSkill = 6, - RogueBuffSourceTypeShop = 7, - RogueBuffSourceTypeLevelMechanism = 8, - RogueBuffSourceTypeEndlessLevelStart = 9, +pub enum Ankjpjacime { + Alocmfakbkp = 0, + Dhbelffggfl = 1, + Lajbfahekhe = 2, + Haejgohgfdk = 3, + Bchklgifekh = 4, + Hmeciphapfm = 5, + Fkallllpjof = 6, + Elhkkabfjgf = 7, + Indophddgdf = 8, + Obphanececf = 9, } -impl Jjeikcobdlp { +impl Ankjpjacime { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueBuffSourceTypeNone => "ROGUE_BUFF_SOURCE_TYPE_NONE", - Self::RogueBuffSourceTypeSelect => "ROGUE_BUFF_SOURCE_TYPE_SELECT", - Self::RogueBuffSourceTypeEnhance => "ROGUE_BUFF_SOURCE_TYPE_ENHANCE", - Self::RogueBuffSourceTypeMiracle => "ROGUE_BUFF_SOURCE_TYPE_MIRACLE", - Self::RogueBuffSourceTypeDialogue => "ROGUE_BUFF_SOURCE_TYPE_DIALOGUE", - Self::RogueBuffSourceTypeBonus => "ROGUE_BUFF_SOURCE_TYPE_BONUS", - Self::RogueBuffSourceTypeMazeSkill => "ROGUE_BUFF_SOURCE_TYPE_MAZE_SKILL", - Self::RogueBuffSourceTypeShop => "ROGUE_BUFF_SOURCE_TYPE_SHOP", - Self::RogueBuffSourceTypeLevelMechanism => { - "ROGUE_BUFF_SOURCE_TYPE_LEVEL_MECHANISM" - } - Self::RogueBuffSourceTypeEndlessLevelStart => { - "ROGUE_BUFF_SOURCE_TYPE_ENDLESS_LEVEL_START" - } + Self::Alocmfakbkp => "ANKJPJACIME_ALOCMFAKBKP", + Self::Dhbelffggfl => "ANKJPJACIME_DHBELFFGGFL", + Self::Lajbfahekhe => "ANKJPJACIME_LAJBFAHEKHE", + Self::Haejgohgfdk => "ANKJPJACIME_HAEJGOHGFDK", + Self::Bchklgifekh => "ANKJPJACIME_BCHKLGIFEKH", + Self::Hmeciphapfm => "ANKJPJACIME_HMECIPHAPFM", + Self::Fkallllpjof => "ANKJPJACIME_FKALLLLPJOF", + Self::Elhkkabfjgf => "ANKJPJACIME_ELHKKABFJGF", + Self::Indophddgdf => "ANKJPJACIME_INDOPHDDGDF", + Self::Obphanececf => "ANKJPJACIME_OBPHANECECF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_BUFF_SOURCE_TYPE_NONE" => Some(Self::RogueBuffSourceTypeNone), - "ROGUE_BUFF_SOURCE_TYPE_SELECT" => Some(Self::RogueBuffSourceTypeSelect), - "ROGUE_BUFF_SOURCE_TYPE_ENHANCE" => Some(Self::RogueBuffSourceTypeEnhance), - "ROGUE_BUFF_SOURCE_TYPE_MIRACLE" => Some(Self::RogueBuffSourceTypeMiracle), - "ROGUE_BUFF_SOURCE_TYPE_DIALOGUE" => Some(Self::RogueBuffSourceTypeDialogue), - "ROGUE_BUFF_SOURCE_TYPE_BONUS" => Some(Self::RogueBuffSourceTypeBonus), - "ROGUE_BUFF_SOURCE_TYPE_MAZE_SKILL" => { - Some(Self::RogueBuffSourceTypeMazeSkill) - } - "ROGUE_BUFF_SOURCE_TYPE_SHOP" => Some(Self::RogueBuffSourceTypeShop), - "ROGUE_BUFF_SOURCE_TYPE_LEVEL_MECHANISM" => { - Some(Self::RogueBuffSourceTypeLevelMechanism) - } - "ROGUE_BUFF_SOURCE_TYPE_ENDLESS_LEVEL_START" => { - Some(Self::RogueBuffSourceTypeEndlessLevelStart) - } + "ANKJPJACIME_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "ANKJPJACIME_DHBELFFGGFL" => Some(Self::Dhbelffggfl), + "ANKJPJACIME_LAJBFAHEKHE" => Some(Self::Lajbfahekhe), + "ANKJPJACIME_HAEJGOHGFDK" => Some(Self::Haejgohgfdk), + "ANKJPJACIME_BCHKLGIFEKH" => Some(Self::Bchklgifekh), + "ANKJPJACIME_HMECIPHAPFM" => Some(Self::Hmeciphapfm), + "ANKJPJACIME_FKALLLLPJOF" => Some(Self::Fkallllpjof), + "ANKJPJACIME_ELHKKABFJGF" => Some(Self::Elhkkabfjgf), + "ANKJPJACIME_INDOPHDDGDF" => Some(Self::Indophddgdf), + "ANKJPJACIME_OBPHANECECF" => Some(Self::Obphanececf), _ => None, } } @@ -80246,77 +78971,59 @@ impl Jjeikcobdlp { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Eohhhddahkl { - RogueMiracleSourceTypeNone = 0, - RogueMiracleSourceTypeSelect = 1, - RogueMiracleSourceTypeDialogue = 2, - RogueMiracleSourceTypeBonus = 3, - RogueMiracleSourceTypeUse = 4, - RogueMiracleSourceTypeReset = 5, - RogueMiracleSourceTypeReplace = 6, - RogueMiracleSourceTypeTrade = 7, - RogueMiracleSourceTypeGet = 8, - RogueMiracleSourceTypeShop = 9, - RogueMiracleSourceTypeMazeSkill = 10, - RogueMiracleSourceTypeLevelMechanism = 11, - RogueMiracleSourceTypeEndlessLevelStart = 12, +pub enum Agppneglffl { + Alocmfakbkp = 0, + Dhbelffggfl = 1, + Bchklgifekh = 2, + Hmeciphapfm = 3, + Phlfhdcdoia = 4, + Bakdcbjahlf = 5, + Hcglimkpdpb = 6, + Pcfmmfbgbok = 7, + Aobbfcgnmio = 8, + Elhkkabfjgf = 9, + Fkallllpjof = 10, + Indophddgdf = 11, + Obphanececf = 12, } -impl Eohhhddahkl { +impl Agppneglffl { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueMiracleSourceTypeNone => "ROGUE_MIRACLE_SOURCE_TYPE_NONE", - Self::RogueMiracleSourceTypeSelect => "ROGUE_MIRACLE_SOURCE_TYPE_SELECT", - Self::RogueMiracleSourceTypeDialogue => "ROGUE_MIRACLE_SOURCE_TYPE_DIALOGUE", - Self::RogueMiracleSourceTypeBonus => "ROGUE_MIRACLE_SOURCE_TYPE_BONUS", - Self::RogueMiracleSourceTypeUse => "ROGUE_MIRACLE_SOURCE_TYPE_USE", - Self::RogueMiracleSourceTypeReset => "ROGUE_MIRACLE_SOURCE_TYPE_RESET", - Self::RogueMiracleSourceTypeReplace => "ROGUE_MIRACLE_SOURCE_TYPE_REPLACE", - Self::RogueMiracleSourceTypeTrade => "ROGUE_MIRACLE_SOURCE_TYPE_TRADE", - Self::RogueMiracleSourceTypeGet => "ROGUE_MIRACLE_SOURCE_TYPE_GET", - Self::RogueMiracleSourceTypeShop => "ROGUE_MIRACLE_SOURCE_TYPE_SHOP", - Self::RogueMiracleSourceTypeMazeSkill => { - "ROGUE_MIRACLE_SOURCE_TYPE_MAZE_SKILL" - } - Self::RogueMiracleSourceTypeLevelMechanism => { - "ROGUE_MIRACLE_SOURCE_TYPE_LEVEL_MECHANISM" - } - Self::RogueMiracleSourceTypeEndlessLevelStart => { - "ROGUE_MIRACLE_SOURCE_TYPE_ENDLESS_LEVEL_START" - } + Self::Alocmfakbkp => "AGPPNEGLFFL_ALOCMFAKBKP", + Self::Dhbelffggfl => "AGPPNEGLFFL_DHBELFFGGFL", + Self::Bchklgifekh => "AGPPNEGLFFL_BCHKLGIFEKH", + Self::Hmeciphapfm => "AGPPNEGLFFL_HMECIPHAPFM", + Self::Phlfhdcdoia => "AGPPNEGLFFL_PHLFHDCDOIA", + Self::Bakdcbjahlf => "AGPPNEGLFFL_BAKDCBJAHLF", + Self::Hcglimkpdpb => "AGPPNEGLFFL_HCGLIMKPDPB", + Self::Pcfmmfbgbok => "AGPPNEGLFFL_PCFMMFBGBOK", + Self::Aobbfcgnmio => "AGPPNEGLFFL_AOBBFCGNMIO", + Self::Elhkkabfjgf => "AGPPNEGLFFL_ELHKKABFJGF", + Self::Fkallllpjof => "AGPPNEGLFFL_FKALLLLPJOF", + Self::Indophddgdf => "AGPPNEGLFFL_INDOPHDDGDF", + Self::Obphanececf => "AGPPNEGLFFL_OBPHANECECF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_MIRACLE_SOURCE_TYPE_NONE" => Some(Self::RogueMiracleSourceTypeNone), - "ROGUE_MIRACLE_SOURCE_TYPE_SELECT" => { - Some(Self::RogueMiracleSourceTypeSelect) - } - "ROGUE_MIRACLE_SOURCE_TYPE_DIALOGUE" => { - Some(Self::RogueMiracleSourceTypeDialogue) - } - "ROGUE_MIRACLE_SOURCE_TYPE_BONUS" => Some(Self::RogueMiracleSourceTypeBonus), - "ROGUE_MIRACLE_SOURCE_TYPE_USE" => Some(Self::RogueMiracleSourceTypeUse), - "ROGUE_MIRACLE_SOURCE_TYPE_RESET" => Some(Self::RogueMiracleSourceTypeReset), - "ROGUE_MIRACLE_SOURCE_TYPE_REPLACE" => { - Some(Self::RogueMiracleSourceTypeReplace) - } - "ROGUE_MIRACLE_SOURCE_TYPE_TRADE" => Some(Self::RogueMiracleSourceTypeTrade), - "ROGUE_MIRACLE_SOURCE_TYPE_GET" => Some(Self::RogueMiracleSourceTypeGet), - "ROGUE_MIRACLE_SOURCE_TYPE_SHOP" => Some(Self::RogueMiracleSourceTypeShop), - "ROGUE_MIRACLE_SOURCE_TYPE_MAZE_SKILL" => { - Some(Self::RogueMiracleSourceTypeMazeSkill) - } - "ROGUE_MIRACLE_SOURCE_TYPE_LEVEL_MECHANISM" => { - Some(Self::RogueMiracleSourceTypeLevelMechanism) - } - "ROGUE_MIRACLE_SOURCE_TYPE_ENDLESS_LEVEL_START" => { - Some(Self::RogueMiracleSourceTypeEndlessLevelStart) - } + "AGPPNEGLFFL_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "AGPPNEGLFFL_DHBELFFGGFL" => Some(Self::Dhbelffggfl), + "AGPPNEGLFFL_BCHKLGIFEKH" => Some(Self::Bchklgifekh), + "AGPPNEGLFFL_HMECIPHAPFM" => Some(Self::Hmeciphapfm), + "AGPPNEGLFFL_PHLFHDCDOIA" => Some(Self::Phlfhdcdoia), + "AGPPNEGLFFL_BAKDCBJAHLF" => Some(Self::Bakdcbjahlf), + "AGPPNEGLFFL_HCGLIMKPDPB" => Some(Self::Hcglimkpdpb), + "AGPPNEGLFFL_PCFMMFBGBOK" => Some(Self::Pcfmmfbgbok), + "AGPPNEGLFFL_AOBBFCGNMIO" => Some(Self::Aobbfcgnmio), + "AGPPNEGLFFL_ELHKKABFJGF" => Some(Self::Elhkkabfjgf), + "AGPPNEGLFFL_FKALLLLPJOF" => Some(Self::Fkallllpjof), + "AGPPNEGLFFL_INDOPHDDGDF" => Some(Self::Indophddgdf), + "AGPPNEGLFFL_OBPHANECECF" => Some(Self::Obphanececf), _ => None, } } @@ -80324,26 +79031,26 @@ impl Eohhhddahkl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ffnedmegpjd { - RogueDialogueResultSucc = 0, - RogueDialogueResultFail = 1, +pub enum Idjghokmlbo { + Lnlbgbapapa = 0, + Gkoinlahefa = 1, } -impl Ffnedmegpjd { +impl Idjghokmlbo { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueDialogueResultSucc => "ROGUE_DIALOGUE_RESULT_SUCC", - Self::RogueDialogueResultFail => "ROGUE_DIALOGUE_RESULT_FAIL", + Self::Lnlbgbapapa => "IDJGHOKMLBO_LNLBGBAPAPA", + Self::Gkoinlahefa => "IDJGHOKMLBO_GKOINLAHEFA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_DIALOGUE_RESULT_SUCC" => Some(Self::RogueDialogueResultSucc), - "ROGUE_DIALOGUE_RESULT_FAIL" => Some(Self::RogueDialogueResultFail), + "IDJGHOKMLBO_LNLBGBAPAPA" => Some(Self::Lnlbgbapapa), + "IDJGHOKMLBO_GKOINLAHEFA" => Some(Self::Gkoinlahefa), _ => None, } } @@ -80352,15 +79059,15 @@ impl Ffnedmegpjd { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRogueArcadeType { - None = 0, - CmdRogueArcadeGetInfoScRsp = 7694, - CmdRogueArcadeRestartCsReq = 7655, - CmdRogueArcadeLeaveScRsp = 7688, - CmdRogueArcadeGetInfoCsReq = 7670, - CmdRogueArcadeStartScRsp = 7678, - CmdRogueArcadeRestartScRsp = 7677, - CmdRogueArcadeLeaveCsReq = 7671, - CmdRogueArcadeStartCsReq = 7676, + KodgcoocgfbAlocmfakbkp = 0, + CmdKgchihceink = 7698, + CmdPkklllanpfg = 7669, + CmdPgfgeeadljp = 7675, + CmdLmaheglkojj = 7655, + CmdFkdebaicaao = 7681, + CmdPbnfegelhpb = 7683, + CmdLcamcnofpmp = 7652, + CmdBaeodimmfge = 7685, } impl CmdRogueArcadeType { /// String value of the enum field names used in the ProtoBuf definition. @@ -80369,29 +79076,29 @@ impl CmdRogueArcadeType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRogueArcadeTypeNone", - Self::CmdRogueArcadeGetInfoScRsp => "CmdRogueArcadeGetInfoScRsp", - Self::CmdRogueArcadeRestartCsReq => "CmdRogueArcadeRestartCsReq", - Self::CmdRogueArcadeLeaveScRsp => "CmdRogueArcadeLeaveScRsp", - Self::CmdRogueArcadeGetInfoCsReq => "CmdRogueArcadeGetInfoCsReq", - Self::CmdRogueArcadeStartScRsp => "CmdRogueArcadeStartScRsp", - Self::CmdRogueArcadeRestartScRsp => "CmdRogueArcadeRestartScRsp", - Self::CmdRogueArcadeLeaveCsReq => "CmdRogueArcadeLeaveCsReq", - Self::CmdRogueArcadeStartCsReq => "CmdRogueArcadeStartCsReq", + Self::KodgcoocgfbAlocmfakbkp => "KODGCOOCGFB_ALOCMFAKBKP", + Self::CmdKgchihceink => "CmdKGCHIHCEINK", + Self::CmdPkklllanpfg => "CmdPKKLLLANPFG", + Self::CmdPgfgeeadljp => "CmdPGFGEEADLJP", + Self::CmdLmaheglkojj => "CmdLMAHEGLKOJJ", + Self::CmdFkdebaicaao => "CmdFKDEBAICAAO", + Self::CmdPbnfegelhpb => "CmdPBNFEGELHPB", + Self::CmdLcamcnofpmp => "CmdLCAMCNOFPMP", + Self::CmdBaeodimmfge => "CmdBAEODIMMFGE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRogueArcadeTypeNone" => Some(Self::None), - "CmdRogueArcadeGetInfoScRsp" => Some(Self::CmdRogueArcadeGetInfoScRsp), - "CmdRogueArcadeRestartCsReq" => Some(Self::CmdRogueArcadeRestartCsReq), - "CmdRogueArcadeLeaveScRsp" => Some(Self::CmdRogueArcadeLeaveScRsp), - "CmdRogueArcadeGetInfoCsReq" => Some(Self::CmdRogueArcadeGetInfoCsReq), - "CmdRogueArcadeStartScRsp" => Some(Self::CmdRogueArcadeStartScRsp), - "CmdRogueArcadeRestartScRsp" => Some(Self::CmdRogueArcadeRestartScRsp), - "CmdRogueArcadeLeaveCsReq" => Some(Self::CmdRogueArcadeLeaveCsReq), - "CmdRogueArcadeStartCsReq" => Some(Self::CmdRogueArcadeStartCsReq), + "KODGCOOCGFB_ALOCMFAKBKP" => Some(Self::KodgcoocgfbAlocmfakbkp), + "CmdKGCHIHCEINK" => Some(Self::CmdKgchihceink), + "CmdPKKLLLANPFG" => Some(Self::CmdPkklllanpfg), + "CmdPGFGEEADLJP" => Some(Self::CmdPgfgeeadljp), + "CmdLMAHEGLKOJJ" => Some(Self::CmdLmaheglkojj), + "CmdFKDEBAICAAO" => Some(Self::CmdFkdebaicaao), + "CmdPBNFEGELHPB" => Some(Self::CmdPbnfegelhpb), + "CmdLCAMCNOFPMP" => Some(Self::CmdLcamcnofpmp), + "CmdBAEODIMMFGE" => Some(Self::CmdBaeodimmfge), _ => None, } } @@ -80400,75 +79107,71 @@ impl CmdRogueArcadeType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRogueCommonType { - None = 0, - CmdGetRogueExhibitionScRsp = 5631, - CmdUpdateRogueAdventureRoomScoreCsReq = 5606, - CmdGetRogueHandbookDataCsReq = 5616, - CmdGetEnhanceCommonRogueBuffInfoCsReq = 5605, - CmdGetRogueAdventureRoomInfoCsReq = 5615, - CmdGetRogueShopFormulaInfoCsReq = 5636, - CmdGetRogueCollectionCsReq = 5675, - CmdRogueGetGambleInfoCsReq = 5643, - CmdRogueDoGambleScRsp = 5673, - CmdGetRogueCommonDialogueDataScRsp = 5645, - CmdSyncRogueCommonDialogueOptionFinishScNotify = 5618, - CmdTakeRogueEventHandbookRewardCsReq = 5642, - CmdGetRogueCommonDialogueDataCsReq = 5639, - CmdSelectRogueCommonDialogueOptionCsReq = 5695, - CmdBuyRogueShopBuffScRsp = 5681, - CmdRogueWorkbenchHandleFuncCsReq = 5676, - CmdSetRogueCollectionCsReq = 5646, - CmdEnhanceCommonRogueBuffCsReq = 5629, - CmdTakeRogueEventHandbookRewardScRsp = 5670, - CmdGetRogueHandbookDataScRsp = 5656, - CmdSyncRogueCommonVirtualItemInfoScNotify = 5604, - CmdBuyRogueShopBuffCsReq = 5644, - CmdBuyRogueShopFormulaScRsp = 5626, - CmdSelectRogueCommonDialogueOptionScRsp = 5679, - CmdGetRogueExhibitionCsReq = 5627, - CmdStopRogueAdventureRoomCsReq = 5603, - CmdRogueNpcDisappearCsReq = 5669, - CmdTakeRogueMiracleHandbookRewardScRsp = 5653, - CmdRogueNpcDisappearScRsp = 5657, - CmdUpdateRogueAdventureRoomScoreScRsp = 5663, - CmdSyncRogueAdventureRoomInfoScNotify = 5699, - CmdFinishRogueCommonDialogueScRsp = 5688, - CmdGetEnhanceCommonRogueBuffInfoScRsp = 5651, - CmdRogueWorkbenchGetInfoCsReq = 5661, - CmdBuyRogueShopMiracleScRsp = 5619, - CmdPrepareRogueAdventureRoomScRsp = 5698, - CmdCommonRogueQueryCsReq = 5672, - CmdGetRogueShopBuffInfoScRsp = 5694, - CmdFinishRogueCommonDialogueCsReq = 5602, - CmdCommonRogueUpdateScNotify = 5666, - CmdGetRogueCollectionScRsp = 5664, - CmdRogueShopBeginBattleCsReq = 5689, - CmdHandleRogueCommonPendingActionCsReq = 5625, - CmdBuyRogueShopMiracleCsReq = 5652, - CmdRogueDoGambleCsReq = 5691, - CmdBuyRogueShopFormulaCsReq = 5628, - CmdStopRogueAdventureRoomScRsp = 5609, - CmdGetRogueShopFormulaInfoScRsp = 5648, - CmdSetRogueCollectionScRsp = 5658, - CmdSyncRogueCommonActionResultScNotify = 5641, - CmdRogueWorkbenchHandleFuncScRsp = 5682, - CmdGetRogueShopMiracleInfoCsReq = 5665, - CmdHandleRogueCommonPendingActionScRsp = 5685, - CmdGetRogueAdventureRoomInfoScRsp = 5692, - CmdEnhanceCommonRogueBuffScRsp = 5638, - CmdRogueGetGambleInfoScRsp = 5632, - CmdGetRogueShopMiracleInfoScRsp = 5683, - CmdGetRogueShopBuffInfoCsReq = 5686, - CmdTakeRogueMiracleHandbookRewardCsReq = 5610, - CmdPrepareRogueAdventureRoomCsReq = 5623, - CmdCommonRogueQueryScRsp = 5640, - CmdRogueWorkbenchGetInfoScRsp = 5633, - CmdSetRogueExhibitionScRsp = 5624, - CmdSetRogueExhibitionCsReq = 5608, - CmdSyncRogueCommonDialogueDataScNotify = 5630, - CmdSyncRogueCommonPendingActionScNotify = 5612, - CmdRogueShopBeginBattleScRsp = 5607, - CmdSyncRogueHandbookDataUpdateScNotify = 5621, + JokjgagcjenMknkhobhgpk = 0, + JokjgagcjenEadjfoceila = 5668, + JokjgagcjenAoekildmpfo = 5621, + JokjgagcjenJcdplfnmhmj = 5636, + JokjgagcjenKhfboiienco = 5648, + JokjgagcjenGficfpljngc = 5616, + JokjgagcjenMbploigmnhc = 5627, + JokjgagcjenNgfdppkipnf = 5641, + JokjgagcjenKiikpdajfac = 5698, + JokjgagcjenJpelgpncace = 5625, + JokjgagcjenMaalpnmpnag = 5672, + JokjgagcjenLahdelbbojb = 5620, + JokjgagcjenEhcnbfaapgh = 5640, + JokjgagcjenJajlklgdgnp = 5638, + JokjgagcjenGfcgleokofd = 5684, + JokjgagcjenGemmejgjild = 5679, + JokjgagcjenFneoickkoio = 5665, + JokjgagcjenMiomemnjalp = 5650, + JokjgagcjenNlejdlddgla = 5692, + JokjgagcjenIohedipkmjj = 5628, + JokjgagcjenOdeanjjknbk = 5631, + JokjgagcjenHnoppdndjap = 5676, + JokjgagcjenNlocmagemhh = 5685, + JokjgagcjenCofhmegchae = 5686, + JokjgagcjenNnlcfdeoghf = 5614, + JokjgagcjenDmcekgidmlo = 5661, + JokjgagcjenCnlhdhionfn = 5611, + JokjgagcjenPahbjlnoabk = 5689, + JokjgagcjenFhlelchpplj = 5605, + JokjgagcjenHdnndddoikh = 5645, + JokjgagcjenEnhbicefpaa = 5691, + JokjgagcjenEoojgnkbapk = 5687, + JokjgagcjenFcdfkaefbef = 5635, + JokjgagcjenElbeicddoje = 5696, + JokjgagcjenDkdideeabgj = 5607, + JokjgagcjenPflebanfcnk = 5643, + JokjgagcjenHjhlannlbdp = 5612, + JokjgagcjenFlcchpkdkee = 5669, + JokjgagcjenIdlieombilb = 5618, + JokjgagcjenMblghedpghe = 5654, + JokjgagcjenNgbekidppec = 5683, + JokjgagcjenLfldhgaoikk = 5606, + JokjgagcjenObofdgfbahl = 5694, + JokjgagcjenGjdaokhgihl = 5695, + JokjgagcjenAnmkpipmlih = 5639, + JokjgagcjenDahphkdckel = 5602, + JokjgagcjenCbkgmgalmje = 5647, + JokjgagcjenCleaoeplijd = 5680, + JokjgagcjenFjcmilalklh = 5630, + JokjgagcjenChalbimecpm = 5678, + JokjgagcjenGfmflhdnccg = 5634, + JokjgagcjenGafffaogmkb = 5656, + JokjgagcjenKpegkmdijbj = 5651, + JokjgagcjenGeblnicidap = 5655, + JokjgagcjenJbmhaknnima = 5633, + JokjgagcjenMemghfclkfc = 5609, + JokjgagcjenGegkecglljf = 5659, + JokjgagcjenPcnokihehkn = 5652, + JokjgagcjenDkghcibbccc = 5662, + JokjgagcjenMonpkhbmkhh = 5617, + JokjgagcjenHejcdenobfh = 5658, + JokjgagcjenFiecgcjjfoj = 5666, + JokjgagcjenOjfgkgpogpe = 5603, + JokjgagcjenGnaaaalmhek = 5688, + JokjgagcjenBmchpgapmfg = 5646, } impl CmdRogueCommonType { /// String value of the enum field names used in the ProtoBuf definition. @@ -80477,277 +79180,141 @@ impl CmdRogueCommonType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRogueCommonTypeNone", - Self::CmdGetRogueExhibitionScRsp => "CmdGetRogueExhibitionScRsp", - Self::CmdUpdateRogueAdventureRoomScoreCsReq => { - "CmdUpdateRogueAdventureRoomScoreCsReq" - } - Self::CmdGetRogueHandbookDataCsReq => "CmdGetRogueHandbookDataCsReq", - Self::CmdGetEnhanceCommonRogueBuffInfoCsReq => { - "CmdGetEnhanceCommonRogueBuffInfoCsReq" - } - Self::CmdGetRogueAdventureRoomInfoCsReq => { - "CmdGetRogueAdventureRoomInfoCsReq" - } - Self::CmdGetRogueShopFormulaInfoCsReq => "CmdGetRogueShopFormulaInfoCsReq", - Self::CmdGetRogueCollectionCsReq => "CmdGetRogueCollectionCsReq", - Self::CmdRogueGetGambleInfoCsReq => "CmdRogueGetGambleInfoCsReq", - Self::CmdRogueDoGambleScRsp => "CmdRogueDoGambleScRsp", - Self::CmdGetRogueCommonDialogueDataScRsp => { - "CmdGetRogueCommonDialogueDataScRsp" - } - Self::CmdSyncRogueCommonDialogueOptionFinishScNotify => { - "CmdSyncRogueCommonDialogueOptionFinishScNotify" - } - Self::CmdTakeRogueEventHandbookRewardCsReq => { - "CmdTakeRogueEventHandbookRewardCsReq" - } - Self::CmdGetRogueCommonDialogueDataCsReq => { - "CmdGetRogueCommonDialogueDataCsReq" - } - Self::CmdSelectRogueCommonDialogueOptionCsReq => { - "CmdSelectRogueCommonDialogueOptionCsReq" - } - Self::CmdBuyRogueShopBuffScRsp => "CmdBuyRogueShopBuffScRsp", - Self::CmdRogueWorkbenchHandleFuncCsReq => "CmdRogueWorkbenchHandleFuncCsReq", - Self::CmdSetRogueCollectionCsReq => "CmdSetRogueCollectionCsReq", - Self::CmdEnhanceCommonRogueBuffCsReq => "CmdEnhanceCommonRogueBuffCsReq", - Self::CmdTakeRogueEventHandbookRewardScRsp => { - "CmdTakeRogueEventHandbookRewardScRsp" - } - Self::CmdGetRogueHandbookDataScRsp => "CmdGetRogueHandbookDataScRsp", - Self::CmdSyncRogueCommonVirtualItemInfoScNotify => { - "CmdSyncRogueCommonVirtualItemInfoScNotify" - } - Self::CmdBuyRogueShopBuffCsReq => "CmdBuyRogueShopBuffCsReq", - Self::CmdBuyRogueShopFormulaScRsp => "CmdBuyRogueShopFormulaScRsp", - Self::CmdSelectRogueCommonDialogueOptionScRsp => { - "CmdSelectRogueCommonDialogueOptionScRsp" - } - Self::CmdGetRogueExhibitionCsReq => "CmdGetRogueExhibitionCsReq", - Self::CmdStopRogueAdventureRoomCsReq => "CmdStopRogueAdventureRoomCsReq", - Self::CmdRogueNpcDisappearCsReq => "CmdRogueNpcDisappearCsReq", - Self::CmdTakeRogueMiracleHandbookRewardScRsp => { - "CmdTakeRogueMiracleHandbookRewardScRsp" - } - Self::CmdRogueNpcDisappearScRsp => "CmdRogueNpcDisappearScRsp", - Self::CmdUpdateRogueAdventureRoomScoreScRsp => { - "CmdUpdateRogueAdventureRoomScoreScRsp" - } - Self::CmdSyncRogueAdventureRoomInfoScNotify => { - "CmdSyncRogueAdventureRoomInfoScNotify" - } - Self::CmdFinishRogueCommonDialogueScRsp => { - "CmdFinishRogueCommonDialogueScRsp" - } - Self::CmdGetEnhanceCommonRogueBuffInfoScRsp => { - "CmdGetEnhanceCommonRogueBuffInfoScRsp" - } - Self::CmdRogueWorkbenchGetInfoCsReq => "CmdRogueWorkbenchGetInfoCsReq", - Self::CmdBuyRogueShopMiracleScRsp => "CmdBuyRogueShopMiracleScRsp", - Self::CmdPrepareRogueAdventureRoomScRsp => { - "CmdPrepareRogueAdventureRoomScRsp" - } - Self::CmdCommonRogueQueryCsReq => "CmdCommonRogueQueryCsReq", - Self::CmdGetRogueShopBuffInfoScRsp => "CmdGetRogueShopBuffInfoScRsp", - Self::CmdFinishRogueCommonDialogueCsReq => { - "CmdFinishRogueCommonDialogueCsReq" - } - Self::CmdCommonRogueUpdateScNotify => "CmdCommonRogueUpdateScNotify", - Self::CmdGetRogueCollectionScRsp => "CmdGetRogueCollectionScRsp", - Self::CmdRogueShopBeginBattleCsReq => "CmdRogueShopBeginBattleCsReq", - Self::CmdHandleRogueCommonPendingActionCsReq => { - "CmdHandleRogueCommonPendingActionCsReq" - } - Self::CmdBuyRogueShopMiracleCsReq => "CmdBuyRogueShopMiracleCsReq", - Self::CmdRogueDoGambleCsReq => "CmdRogueDoGambleCsReq", - Self::CmdBuyRogueShopFormulaCsReq => "CmdBuyRogueShopFormulaCsReq", - Self::CmdStopRogueAdventureRoomScRsp => "CmdStopRogueAdventureRoomScRsp", - Self::CmdGetRogueShopFormulaInfoScRsp => "CmdGetRogueShopFormulaInfoScRsp", - Self::CmdSetRogueCollectionScRsp => "CmdSetRogueCollectionScRsp", - Self::CmdSyncRogueCommonActionResultScNotify => { - "CmdSyncRogueCommonActionResultScNotify" - } - Self::CmdRogueWorkbenchHandleFuncScRsp => "CmdRogueWorkbenchHandleFuncScRsp", - Self::CmdGetRogueShopMiracleInfoCsReq => "CmdGetRogueShopMiracleInfoCsReq", - Self::CmdHandleRogueCommonPendingActionScRsp => { - "CmdHandleRogueCommonPendingActionScRsp" - } - Self::CmdGetRogueAdventureRoomInfoScRsp => { - "CmdGetRogueAdventureRoomInfoScRsp" - } - Self::CmdEnhanceCommonRogueBuffScRsp => "CmdEnhanceCommonRogueBuffScRsp", - Self::CmdRogueGetGambleInfoScRsp => "CmdRogueGetGambleInfoScRsp", - Self::CmdGetRogueShopMiracleInfoScRsp => "CmdGetRogueShopMiracleInfoScRsp", - Self::CmdGetRogueShopBuffInfoCsReq => "CmdGetRogueShopBuffInfoCsReq", - Self::CmdTakeRogueMiracleHandbookRewardCsReq => { - "CmdTakeRogueMiracleHandbookRewardCsReq" - } - Self::CmdPrepareRogueAdventureRoomCsReq => { - "CmdPrepareRogueAdventureRoomCsReq" - } - Self::CmdCommonRogueQueryScRsp => "CmdCommonRogueQueryScRsp", - Self::CmdRogueWorkbenchGetInfoScRsp => "CmdRogueWorkbenchGetInfoScRsp", - Self::CmdSetRogueExhibitionScRsp => "CmdSetRogueExhibitionScRsp", - Self::CmdSetRogueExhibitionCsReq => "CmdSetRogueExhibitionCsReq", - Self::CmdSyncRogueCommonDialogueDataScNotify => { - "CmdSyncRogueCommonDialogueDataScNotify" - } - Self::CmdSyncRogueCommonPendingActionScNotify => { - "CmdSyncRogueCommonPendingActionScNotify" - } - Self::CmdRogueShopBeginBattleScRsp => "CmdRogueShopBeginBattleScRsp", - Self::CmdSyncRogueHandbookDataUpdateScNotify => { - "CmdSyncRogueHandbookDataUpdateScNotify" - } + Self::JokjgagcjenMknkhobhgpk => "JOKJGAGCJEN_MKNKHOBHGPK", + Self::JokjgagcjenEadjfoceila => "JOKJGAGCJEN_EADJFOCEILA", + Self::JokjgagcjenAoekildmpfo => "JOKJGAGCJEN_AOEKILDMPFO", + Self::JokjgagcjenJcdplfnmhmj => "JOKJGAGCJEN_JCDPLFNMHMJ", + Self::JokjgagcjenKhfboiienco => "JOKJGAGCJEN_KHFBOIIENCO", + Self::JokjgagcjenGficfpljngc => "JOKJGAGCJEN_GFICFPLJNGC", + Self::JokjgagcjenMbploigmnhc => "JOKJGAGCJEN_MBPLOIGMNHC", + Self::JokjgagcjenNgfdppkipnf => "JOKJGAGCJEN_NGFDPPKIPNF", + Self::JokjgagcjenKiikpdajfac => "JOKJGAGCJEN_KIIKPDAJFAC", + Self::JokjgagcjenJpelgpncace => "JOKJGAGCJEN_JPELGPNCACE", + Self::JokjgagcjenMaalpnmpnag => "JOKJGAGCJEN_MAALPNMPNAG", + Self::JokjgagcjenLahdelbbojb => "JOKJGAGCJEN_LAHDELBBOJB", + Self::JokjgagcjenEhcnbfaapgh => "JOKJGAGCJEN_EHCNBFAAPGH", + Self::JokjgagcjenJajlklgdgnp => "JOKJGAGCJEN_JAJLKLGDGNP", + Self::JokjgagcjenGfcgleokofd => "JOKJGAGCJEN_GFCGLEOKOFD", + Self::JokjgagcjenGemmejgjild => "JOKJGAGCJEN_GEMMEJGJILD", + Self::JokjgagcjenFneoickkoio => "JOKJGAGCJEN_FNEOICKKOIO", + Self::JokjgagcjenMiomemnjalp => "JOKJGAGCJEN_MIOMEMNJALP", + Self::JokjgagcjenNlejdlddgla => "JOKJGAGCJEN_NLEJDLDDGLA", + Self::JokjgagcjenIohedipkmjj => "JOKJGAGCJEN_IOHEDIPKMJJ", + Self::JokjgagcjenOdeanjjknbk => "JOKJGAGCJEN_ODEANJJKNBK", + Self::JokjgagcjenHnoppdndjap => "JOKJGAGCJEN_HNOPPDNDJAP", + Self::JokjgagcjenNlocmagemhh => "JOKJGAGCJEN_NLOCMAGEMHH", + Self::JokjgagcjenCofhmegchae => "JOKJGAGCJEN_COFHMEGCHAE", + Self::JokjgagcjenNnlcfdeoghf => "JOKJGAGCJEN_NNLCFDEOGHF", + Self::JokjgagcjenDmcekgidmlo => "JOKJGAGCJEN_DMCEKGIDMLO", + Self::JokjgagcjenCnlhdhionfn => "JOKJGAGCJEN_CNLHDHIONFN", + Self::JokjgagcjenPahbjlnoabk => "JOKJGAGCJEN_PAHBJLNOABK", + Self::JokjgagcjenFhlelchpplj => "JOKJGAGCJEN_FHLELCHPPLJ", + Self::JokjgagcjenHdnndddoikh => "JOKJGAGCJEN_HDNNDDDOIKH", + Self::JokjgagcjenEnhbicefpaa => "JOKJGAGCJEN_ENHBICEFPAA", + Self::JokjgagcjenEoojgnkbapk => "JOKJGAGCJEN_EOOJGNKBAPK", + Self::JokjgagcjenFcdfkaefbef => "JOKJGAGCJEN_FCDFKAEFBEF", + Self::JokjgagcjenElbeicddoje => "JOKJGAGCJEN_ELBEICDDOJE", + Self::JokjgagcjenDkdideeabgj => "JOKJGAGCJEN_DKDIDEEABGJ", + Self::JokjgagcjenPflebanfcnk => "JOKJGAGCJEN_PFLEBANFCNK", + Self::JokjgagcjenHjhlannlbdp => "JOKJGAGCJEN_HJHLANNLBDP", + Self::JokjgagcjenFlcchpkdkee => "JOKJGAGCJEN_FLCCHPKDKEE", + Self::JokjgagcjenIdlieombilb => "JOKJGAGCJEN_IDLIEOMBILB", + Self::JokjgagcjenMblghedpghe => "JOKJGAGCJEN_MBLGHEDPGHE", + Self::JokjgagcjenNgbekidppec => "JOKJGAGCJEN_NGBEKIDPPEC", + Self::JokjgagcjenLfldhgaoikk => "JOKJGAGCJEN_LFLDHGAOIKK", + Self::JokjgagcjenObofdgfbahl => "JOKJGAGCJEN_OBOFDGFBAHL", + Self::JokjgagcjenGjdaokhgihl => "JOKJGAGCJEN_GJDAOKHGIHL", + Self::JokjgagcjenAnmkpipmlih => "JOKJGAGCJEN_ANMKPIPMLIH", + Self::JokjgagcjenDahphkdckel => "JOKJGAGCJEN_DAHPHKDCKEL", + Self::JokjgagcjenCbkgmgalmje => "JOKJGAGCJEN_CBKGMGALMJE", + Self::JokjgagcjenCleaoeplijd => "JOKJGAGCJEN_CLEAOEPLIJD", + Self::JokjgagcjenFjcmilalklh => "JOKJGAGCJEN_FJCMILALKLH", + Self::JokjgagcjenChalbimecpm => "JOKJGAGCJEN_CHALBIMECPM", + Self::JokjgagcjenGfmflhdnccg => "JOKJGAGCJEN_GFMFLHDNCCG", + Self::JokjgagcjenGafffaogmkb => "JOKJGAGCJEN_GAFFFAOGMKB", + Self::JokjgagcjenKpegkmdijbj => "JOKJGAGCJEN_KPEGKMDIJBJ", + Self::JokjgagcjenGeblnicidap => "JOKJGAGCJEN_GEBLNICIDAP", + Self::JokjgagcjenJbmhaknnima => "JOKJGAGCJEN_JBMHAKNNIMA", + Self::JokjgagcjenMemghfclkfc => "JOKJGAGCJEN_MEMGHFCLKFC", + Self::JokjgagcjenGegkecglljf => "JOKJGAGCJEN_GEGKECGLLJF", + Self::JokjgagcjenPcnokihehkn => "JOKJGAGCJEN_PCNOKIHEHKN", + Self::JokjgagcjenDkghcibbccc => "JOKJGAGCJEN_DKGHCIBBCCC", + Self::JokjgagcjenMonpkhbmkhh => "JOKJGAGCJEN_MONPKHBMKHH", + Self::JokjgagcjenHejcdenobfh => "JOKJGAGCJEN_HEJCDENOBFH", + Self::JokjgagcjenFiecgcjjfoj => "JOKJGAGCJEN_FIECGCJJFOJ", + Self::JokjgagcjenOjfgkgpogpe => "JOKJGAGCJEN_OJFGKGPOGPE", + Self::JokjgagcjenGnaaaalmhek => "JOKJGAGCJEN_GNAAAALMHEK", + Self::JokjgagcjenBmchpgapmfg => "JOKJGAGCJEN_BMCHPGAPMFG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRogueCommonTypeNone" => Some(Self::None), - "CmdGetRogueExhibitionScRsp" => Some(Self::CmdGetRogueExhibitionScRsp), - "CmdUpdateRogueAdventureRoomScoreCsReq" => { - Some(Self::CmdUpdateRogueAdventureRoomScoreCsReq) - } - "CmdGetRogueHandbookDataCsReq" => Some(Self::CmdGetRogueHandbookDataCsReq), - "CmdGetEnhanceCommonRogueBuffInfoCsReq" => { - Some(Self::CmdGetEnhanceCommonRogueBuffInfoCsReq) - } - "CmdGetRogueAdventureRoomInfoCsReq" => { - Some(Self::CmdGetRogueAdventureRoomInfoCsReq) - } - "CmdGetRogueShopFormulaInfoCsReq" => { - Some(Self::CmdGetRogueShopFormulaInfoCsReq) - } - "CmdGetRogueCollectionCsReq" => Some(Self::CmdGetRogueCollectionCsReq), - "CmdRogueGetGambleInfoCsReq" => Some(Self::CmdRogueGetGambleInfoCsReq), - "CmdRogueDoGambleScRsp" => Some(Self::CmdRogueDoGambleScRsp), - "CmdGetRogueCommonDialogueDataScRsp" => { - Some(Self::CmdGetRogueCommonDialogueDataScRsp) - } - "CmdSyncRogueCommonDialogueOptionFinishScNotify" => { - Some(Self::CmdSyncRogueCommonDialogueOptionFinishScNotify) - } - "CmdTakeRogueEventHandbookRewardCsReq" => { - Some(Self::CmdTakeRogueEventHandbookRewardCsReq) - } - "CmdGetRogueCommonDialogueDataCsReq" => { - Some(Self::CmdGetRogueCommonDialogueDataCsReq) - } - "CmdSelectRogueCommonDialogueOptionCsReq" => { - Some(Self::CmdSelectRogueCommonDialogueOptionCsReq) - } - "CmdBuyRogueShopBuffScRsp" => Some(Self::CmdBuyRogueShopBuffScRsp), - "CmdRogueWorkbenchHandleFuncCsReq" => { - Some(Self::CmdRogueWorkbenchHandleFuncCsReq) - } - "CmdSetRogueCollectionCsReq" => Some(Self::CmdSetRogueCollectionCsReq), - "CmdEnhanceCommonRogueBuffCsReq" => { - Some(Self::CmdEnhanceCommonRogueBuffCsReq) - } - "CmdTakeRogueEventHandbookRewardScRsp" => { - Some(Self::CmdTakeRogueEventHandbookRewardScRsp) - } - "CmdGetRogueHandbookDataScRsp" => Some(Self::CmdGetRogueHandbookDataScRsp), - "CmdSyncRogueCommonVirtualItemInfoScNotify" => { - Some(Self::CmdSyncRogueCommonVirtualItemInfoScNotify) - } - "CmdBuyRogueShopBuffCsReq" => Some(Self::CmdBuyRogueShopBuffCsReq), - "CmdBuyRogueShopFormulaScRsp" => Some(Self::CmdBuyRogueShopFormulaScRsp), - "CmdSelectRogueCommonDialogueOptionScRsp" => { - Some(Self::CmdSelectRogueCommonDialogueOptionScRsp) - } - "CmdGetRogueExhibitionCsReq" => Some(Self::CmdGetRogueExhibitionCsReq), - "CmdStopRogueAdventureRoomCsReq" => { - Some(Self::CmdStopRogueAdventureRoomCsReq) - } - "CmdRogueNpcDisappearCsReq" => Some(Self::CmdRogueNpcDisappearCsReq), - "CmdTakeRogueMiracleHandbookRewardScRsp" => { - Some(Self::CmdTakeRogueMiracleHandbookRewardScRsp) - } - "CmdRogueNpcDisappearScRsp" => Some(Self::CmdRogueNpcDisappearScRsp), - "CmdUpdateRogueAdventureRoomScoreScRsp" => { - Some(Self::CmdUpdateRogueAdventureRoomScoreScRsp) - } - "CmdSyncRogueAdventureRoomInfoScNotify" => { - Some(Self::CmdSyncRogueAdventureRoomInfoScNotify) - } - "CmdFinishRogueCommonDialogueScRsp" => { - Some(Self::CmdFinishRogueCommonDialogueScRsp) - } - "CmdGetEnhanceCommonRogueBuffInfoScRsp" => { - Some(Self::CmdGetEnhanceCommonRogueBuffInfoScRsp) - } - "CmdRogueWorkbenchGetInfoCsReq" => Some(Self::CmdRogueWorkbenchGetInfoCsReq), - "CmdBuyRogueShopMiracleScRsp" => Some(Self::CmdBuyRogueShopMiracleScRsp), - "CmdPrepareRogueAdventureRoomScRsp" => { - Some(Self::CmdPrepareRogueAdventureRoomScRsp) - } - "CmdCommonRogueQueryCsReq" => Some(Self::CmdCommonRogueQueryCsReq), - "CmdGetRogueShopBuffInfoScRsp" => Some(Self::CmdGetRogueShopBuffInfoScRsp), - "CmdFinishRogueCommonDialogueCsReq" => { - Some(Self::CmdFinishRogueCommonDialogueCsReq) - } - "CmdCommonRogueUpdateScNotify" => Some(Self::CmdCommonRogueUpdateScNotify), - "CmdGetRogueCollectionScRsp" => Some(Self::CmdGetRogueCollectionScRsp), - "CmdRogueShopBeginBattleCsReq" => Some(Self::CmdRogueShopBeginBattleCsReq), - "CmdHandleRogueCommonPendingActionCsReq" => { - Some(Self::CmdHandleRogueCommonPendingActionCsReq) - } - "CmdBuyRogueShopMiracleCsReq" => Some(Self::CmdBuyRogueShopMiracleCsReq), - "CmdRogueDoGambleCsReq" => Some(Self::CmdRogueDoGambleCsReq), - "CmdBuyRogueShopFormulaCsReq" => Some(Self::CmdBuyRogueShopFormulaCsReq), - "CmdStopRogueAdventureRoomScRsp" => { - Some(Self::CmdStopRogueAdventureRoomScRsp) - } - "CmdGetRogueShopFormulaInfoScRsp" => { - Some(Self::CmdGetRogueShopFormulaInfoScRsp) - } - "CmdSetRogueCollectionScRsp" => Some(Self::CmdSetRogueCollectionScRsp), - "CmdSyncRogueCommonActionResultScNotify" => { - Some(Self::CmdSyncRogueCommonActionResultScNotify) - } - "CmdRogueWorkbenchHandleFuncScRsp" => { - Some(Self::CmdRogueWorkbenchHandleFuncScRsp) - } - "CmdGetRogueShopMiracleInfoCsReq" => { - Some(Self::CmdGetRogueShopMiracleInfoCsReq) - } - "CmdHandleRogueCommonPendingActionScRsp" => { - Some(Self::CmdHandleRogueCommonPendingActionScRsp) - } - "CmdGetRogueAdventureRoomInfoScRsp" => { - Some(Self::CmdGetRogueAdventureRoomInfoScRsp) - } - "CmdEnhanceCommonRogueBuffScRsp" => { - Some(Self::CmdEnhanceCommonRogueBuffScRsp) - } - "CmdRogueGetGambleInfoScRsp" => Some(Self::CmdRogueGetGambleInfoScRsp), - "CmdGetRogueShopMiracleInfoScRsp" => { - Some(Self::CmdGetRogueShopMiracleInfoScRsp) - } - "CmdGetRogueShopBuffInfoCsReq" => Some(Self::CmdGetRogueShopBuffInfoCsReq), - "CmdTakeRogueMiracleHandbookRewardCsReq" => { - Some(Self::CmdTakeRogueMiracleHandbookRewardCsReq) - } - "CmdPrepareRogueAdventureRoomCsReq" => { - Some(Self::CmdPrepareRogueAdventureRoomCsReq) - } - "CmdCommonRogueQueryScRsp" => Some(Self::CmdCommonRogueQueryScRsp), - "CmdRogueWorkbenchGetInfoScRsp" => Some(Self::CmdRogueWorkbenchGetInfoScRsp), - "CmdSetRogueExhibitionScRsp" => Some(Self::CmdSetRogueExhibitionScRsp), - "CmdSetRogueExhibitionCsReq" => Some(Self::CmdSetRogueExhibitionCsReq), - "CmdSyncRogueCommonDialogueDataScNotify" => { - Some(Self::CmdSyncRogueCommonDialogueDataScNotify) - } - "CmdSyncRogueCommonPendingActionScNotify" => { - Some(Self::CmdSyncRogueCommonPendingActionScNotify) - } - "CmdRogueShopBeginBattleScRsp" => Some(Self::CmdRogueShopBeginBattleScRsp), - "CmdSyncRogueHandbookDataUpdateScNotify" => { - Some(Self::CmdSyncRogueHandbookDataUpdateScNotify) - } + "JOKJGAGCJEN_MKNKHOBHGPK" => Some(Self::JokjgagcjenMknkhobhgpk), + "JOKJGAGCJEN_EADJFOCEILA" => Some(Self::JokjgagcjenEadjfoceila), + "JOKJGAGCJEN_AOEKILDMPFO" => Some(Self::JokjgagcjenAoekildmpfo), + "JOKJGAGCJEN_JCDPLFNMHMJ" => Some(Self::JokjgagcjenJcdplfnmhmj), + "JOKJGAGCJEN_KHFBOIIENCO" => Some(Self::JokjgagcjenKhfboiienco), + "JOKJGAGCJEN_GFICFPLJNGC" => Some(Self::JokjgagcjenGficfpljngc), + "JOKJGAGCJEN_MBPLOIGMNHC" => Some(Self::JokjgagcjenMbploigmnhc), + "JOKJGAGCJEN_NGFDPPKIPNF" => Some(Self::JokjgagcjenNgfdppkipnf), + "JOKJGAGCJEN_KIIKPDAJFAC" => Some(Self::JokjgagcjenKiikpdajfac), + "JOKJGAGCJEN_JPELGPNCACE" => Some(Self::JokjgagcjenJpelgpncace), + "JOKJGAGCJEN_MAALPNMPNAG" => Some(Self::JokjgagcjenMaalpnmpnag), + "JOKJGAGCJEN_LAHDELBBOJB" => Some(Self::JokjgagcjenLahdelbbojb), + "JOKJGAGCJEN_EHCNBFAAPGH" => Some(Self::JokjgagcjenEhcnbfaapgh), + "JOKJGAGCJEN_JAJLKLGDGNP" => Some(Self::JokjgagcjenJajlklgdgnp), + "JOKJGAGCJEN_GFCGLEOKOFD" => Some(Self::JokjgagcjenGfcgleokofd), + "JOKJGAGCJEN_GEMMEJGJILD" => Some(Self::JokjgagcjenGemmejgjild), + "JOKJGAGCJEN_FNEOICKKOIO" => Some(Self::JokjgagcjenFneoickkoio), + "JOKJGAGCJEN_MIOMEMNJALP" => Some(Self::JokjgagcjenMiomemnjalp), + "JOKJGAGCJEN_NLEJDLDDGLA" => Some(Self::JokjgagcjenNlejdlddgla), + "JOKJGAGCJEN_IOHEDIPKMJJ" => Some(Self::JokjgagcjenIohedipkmjj), + "JOKJGAGCJEN_ODEANJJKNBK" => Some(Self::JokjgagcjenOdeanjjknbk), + "JOKJGAGCJEN_HNOPPDNDJAP" => Some(Self::JokjgagcjenHnoppdndjap), + "JOKJGAGCJEN_NLOCMAGEMHH" => Some(Self::JokjgagcjenNlocmagemhh), + "JOKJGAGCJEN_COFHMEGCHAE" => Some(Self::JokjgagcjenCofhmegchae), + "JOKJGAGCJEN_NNLCFDEOGHF" => Some(Self::JokjgagcjenNnlcfdeoghf), + "JOKJGAGCJEN_DMCEKGIDMLO" => Some(Self::JokjgagcjenDmcekgidmlo), + "JOKJGAGCJEN_CNLHDHIONFN" => Some(Self::JokjgagcjenCnlhdhionfn), + "JOKJGAGCJEN_PAHBJLNOABK" => Some(Self::JokjgagcjenPahbjlnoabk), + "JOKJGAGCJEN_FHLELCHPPLJ" => Some(Self::JokjgagcjenFhlelchpplj), + "JOKJGAGCJEN_HDNNDDDOIKH" => Some(Self::JokjgagcjenHdnndddoikh), + "JOKJGAGCJEN_ENHBICEFPAA" => Some(Self::JokjgagcjenEnhbicefpaa), + "JOKJGAGCJEN_EOOJGNKBAPK" => Some(Self::JokjgagcjenEoojgnkbapk), + "JOKJGAGCJEN_FCDFKAEFBEF" => Some(Self::JokjgagcjenFcdfkaefbef), + "JOKJGAGCJEN_ELBEICDDOJE" => Some(Self::JokjgagcjenElbeicddoje), + "JOKJGAGCJEN_DKDIDEEABGJ" => Some(Self::JokjgagcjenDkdideeabgj), + "JOKJGAGCJEN_PFLEBANFCNK" => Some(Self::JokjgagcjenPflebanfcnk), + "JOKJGAGCJEN_HJHLANNLBDP" => Some(Self::JokjgagcjenHjhlannlbdp), + "JOKJGAGCJEN_FLCCHPKDKEE" => Some(Self::JokjgagcjenFlcchpkdkee), + "JOKJGAGCJEN_IDLIEOMBILB" => Some(Self::JokjgagcjenIdlieombilb), + "JOKJGAGCJEN_MBLGHEDPGHE" => Some(Self::JokjgagcjenMblghedpghe), + "JOKJGAGCJEN_NGBEKIDPPEC" => Some(Self::JokjgagcjenNgbekidppec), + "JOKJGAGCJEN_LFLDHGAOIKK" => Some(Self::JokjgagcjenLfldhgaoikk), + "JOKJGAGCJEN_OBOFDGFBAHL" => Some(Self::JokjgagcjenObofdgfbahl), + "JOKJGAGCJEN_GJDAOKHGIHL" => Some(Self::JokjgagcjenGjdaokhgihl), + "JOKJGAGCJEN_ANMKPIPMLIH" => Some(Self::JokjgagcjenAnmkpipmlih), + "JOKJGAGCJEN_DAHPHKDCKEL" => Some(Self::JokjgagcjenDahphkdckel), + "JOKJGAGCJEN_CBKGMGALMJE" => Some(Self::JokjgagcjenCbkgmgalmje), + "JOKJGAGCJEN_CLEAOEPLIJD" => Some(Self::JokjgagcjenCleaoeplijd), + "JOKJGAGCJEN_FJCMILALKLH" => Some(Self::JokjgagcjenFjcmilalklh), + "JOKJGAGCJEN_CHALBIMECPM" => Some(Self::JokjgagcjenChalbimecpm), + "JOKJGAGCJEN_GFMFLHDNCCG" => Some(Self::JokjgagcjenGfmflhdnccg), + "JOKJGAGCJEN_GAFFFAOGMKB" => Some(Self::JokjgagcjenGafffaogmkb), + "JOKJGAGCJEN_KPEGKMDIJBJ" => Some(Self::JokjgagcjenKpegkmdijbj), + "JOKJGAGCJEN_GEBLNICIDAP" => Some(Self::JokjgagcjenGeblnicidap), + "JOKJGAGCJEN_JBMHAKNNIMA" => Some(Self::JokjgagcjenJbmhaknnima), + "JOKJGAGCJEN_MEMGHFCLKFC" => Some(Self::JokjgagcjenMemghfclkfc), + "JOKJGAGCJEN_GEGKECGLLJF" => Some(Self::JokjgagcjenGegkecglljf), + "JOKJGAGCJEN_PCNOKIHEHKN" => Some(Self::JokjgagcjenPcnokihehkn), + "JOKJGAGCJEN_DKGHCIBBCCC" => Some(Self::JokjgagcjenDkghcibbccc), + "JOKJGAGCJEN_MONPKHBMKHH" => Some(Self::JokjgagcjenMonpkhbmkhh), + "JOKJGAGCJEN_HEJCDENOBFH" => Some(Self::JokjgagcjenHejcdenobfh), + "JOKJGAGCJEN_FIECGCJJFOJ" => Some(Self::JokjgagcjenFiecgcjjfoj), + "JOKJGAGCJEN_OJFGKGPOGPE" => Some(Self::JokjgagcjenOjfgkgpogpe), + "JOKJGAGCJEN_GNAAAALMHEK" => Some(Self::JokjgagcjenGnaaaalmhek), + "JOKJGAGCJEN_BMCHPGAPMFG" => Some(Self::JokjgagcjenBmchpgapmfg), _ => None, } } @@ -80755,46 +79322,32 @@ impl CmdRogueCommonType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jaocjomenin { - RogueAdventureRoomStatusNone = 0, - RogueAdventureRoomStatusPrepare = 1, - RogueAdventureRoomStatusStarted = 2, - RogueAdventureRoomStatusStopped = 3, +pub enum Ebdjgofpbih { + Alocmfakbkp = 0, + Badjdmafoek = 1, + Imhapbjdbjo = 2, + Ioanpbepecg = 3, } -impl Jaocjomenin { +impl Ebdjgofpbih { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueAdventureRoomStatusNone => "ROGUE_ADVENTURE_ROOM_STATUS_NONE", - Self::RogueAdventureRoomStatusPrepare => { - "ROGUE_ADVENTURE_ROOM_STATUS_PREPARE" - } - Self::RogueAdventureRoomStatusStarted => { - "ROGUE_ADVENTURE_ROOM_STATUS_STARTED" - } - Self::RogueAdventureRoomStatusStopped => { - "ROGUE_ADVENTURE_ROOM_STATUS_STOPPED" - } + Self::Alocmfakbkp => "EBDJGOFPBIH_ALOCMFAKBKP", + Self::Badjdmafoek => "EBDJGOFPBIH_BADJDMAFOEK", + Self::Imhapbjdbjo => "EBDJGOFPBIH_IMHAPBJDBJO", + Self::Ioanpbepecg => "EBDJGOFPBIH_IOANPBEPECG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_ADVENTURE_ROOM_STATUS_NONE" => { - Some(Self::RogueAdventureRoomStatusNone) - } - "ROGUE_ADVENTURE_ROOM_STATUS_PREPARE" => { - Some(Self::RogueAdventureRoomStatusPrepare) - } - "ROGUE_ADVENTURE_ROOM_STATUS_STARTED" => { - Some(Self::RogueAdventureRoomStatusStarted) - } - "ROGUE_ADVENTURE_ROOM_STATUS_STOPPED" => { - Some(Self::RogueAdventureRoomStatusStopped) - } + "EBDJGOFPBIH_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "EBDJGOFPBIH_BADJDMAFOEK" => Some(Self::Badjdmafoek), + "EBDJGOFPBIH_IMHAPBJDBJO" => Some(Self::Imhapbjdbjo), + "EBDJGOFPBIH_IOANPBEPECG" => Some(Self::Ioanpbepecg), _ => None, } } @@ -80802,55 +79355,35 @@ impl Jaocjomenin { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Nniohhmjghg { - RogueCommonBuffSelectSourceTypeNone = 0, - RogueCommonBuffSelectSourceTypeDiceRoll = 1, - RogueCommonBuffSelectSourceTypeAeon = 2, - RogueCommonBuffSelectSourceTypeBoardEvent = 3, - RogueCommonBuffSelectSourceTypeLevelMechanism = 4, +pub enum Mddkplgkfgn { + Alocmfakbkp = 0, + Jnobaphgiid = 1, + Gckfakeiidg = 2, + Ennmnnojmnk = 3, + Indophddgdf = 4, } -impl Nniohhmjghg { +impl Mddkplgkfgn { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCommonBuffSelectSourceTypeNone => { - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_NONE" - } - Self::RogueCommonBuffSelectSourceTypeDiceRoll => { - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_DICE_ROLL" - } - Self::RogueCommonBuffSelectSourceTypeAeon => { - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_AEON" - } - Self::RogueCommonBuffSelectSourceTypeBoardEvent => { - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_BOARD_EVENT" - } - Self::RogueCommonBuffSelectSourceTypeLevelMechanism => { - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_LEVEL_MECHANISM" - } + Self::Alocmfakbkp => "MDDKPLGKFGN_ALOCMFAKBKP", + Self::Jnobaphgiid => "MDDKPLGKFGN_JNOBAPHGIID", + Self::Gckfakeiidg => "MDDKPLGKFGN_GCKFAKEIIDG", + Self::Ennmnnojmnk => "MDDKPLGKFGN_ENNMNNOJMNK", + Self::Indophddgdf => "MDDKPLGKFGN_INDOPHDDGDF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_NONE" => { - Some(Self::RogueCommonBuffSelectSourceTypeNone) - } - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_DICE_ROLL" => { - Some(Self::RogueCommonBuffSelectSourceTypeDiceRoll) - } - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_AEON" => { - Some(Self::RogueCommonBuffSelectSourceTypeAeon) - } - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_BOARD_EVENT" => { - Some(Self::RogueCommonBuffSelectSourceTypeBoardEvent) - } - "ROGUE_COMMON_BUFF_SELECT_SOURCE_TYPE_LEVEL_MECHANISM" => { - Some(Self::RogueCommonBuffSelectSourceTypeLevelMechanism) - } + "MDDKPLGKFGN_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "MDDKPLGKFGN_JNOBAPHGIID" => Some(Self::Jnobaphgiid), + "MDDKPLGKFGN_GCKFAKEIIDG" => Some(Self::Gckfakeiidg), + "MDDKPLGKFGN_ENNMNNOJMNK" => Some(Self::Ennmnnojmnk), + "MDDKPLGKFGN_INDOPHDDGDF" => Some(Self::Indophddgdf), _ => None, } } @@ -80858,60 +79391,38 @@ impl Nniohhmjghg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Odopdkelaeb { - RogueUnlockFunctionTypeMiracle = 0, - RogueUnlockFunctionTypeShowHint = 1, - RogueUnlockFunctionTypeCosmosBanAeon = 2, - RogueUnlockFuntionTypeExhibition = 3, - RogueUnlockFuntionTypeCollection = 4, - RogueUnlockFuntionTypeTournGodMode = 5, +pub enum Pehiobhjgce { + Haejgohgfdk = 0, + Nacdahccoed = 1, + Lalegophokd = 2, + Liliknnephf = 3, + Fabncbddkib = 4, + Bnfmnchnddd = 5, } -impl Odopdkelaeb { +impl Pehiobhjgce { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueUnlockFunctionTypeMiracle => "ROGUE_UNLOCK_FUNCTION_TYPE_MIRACLE", - Self::RogueUnlockFunctionTypeShowHint => { - "ROGUE_UNLOCK_FUNCTION_TYPE_SHOW_HINT" - } - Self::RogueUnlockFunctionTypeCosmosBanAeon => { - "ROGUE_UNLOCK_FUNCTION_TYPE_COSMOS_BAN_AEON" - } - Self::RogueUnlockFuntionTypeExhibition => { - "ROGUE_UNLOCK_FUNTION_TYPE_EXHIBITION" - } - Self::RogueUnlockFuntionTypeCollection => { - "ROGUE_UNLOCK_FUNTION_TYPE_COLLECTION" - } - Self::RogueUnlockFuntionTypeTournGodMode => { - "ROGUE_UNLOCK_FUNTION_TYPE_TOURN_GOD_MODE" - } + Self::Haejgohgfdk => "PEHIOBHJGCE_HAEJGOHGFDK", + Self::Nacdahccoed => "PEHIOBHJGCE_NACDAHCCOED", + Self::Lalegophokd => "PEHIOBHJGCE_LALEGOPHOKD", + Self::Liliknnephf => "PEHIOBHJGCE_LILIKNNEPHF", + Self::Fabncbddkib => "PEHIOBHJGCE_FABNCBDDKIB", + Self::Bnfmnchnddd => "PEHIOBHJGCE_BNFMNCHNDDD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_UNLOCK_FUNCTION_TYPE_MIRACLE" => { - Some(Self::RogueUnlockFunctionTypeMiracle) - } - "ROGUE_UNLOCK_FUNCTION_TYPE_SHOW_HINT" => { - Some(Self::RogueUnlockFunctionTypeShowHint) - } - "ROGUE_UNLOCK_FUNCTION_TYPE_COSMOS_BAN_AEON" => { - Some(Self::RogueUnlockFunctionTypeCosmosBanAeon) - } - "ROGUE_UNLOCK_FUNTION_TYPE_EXHIBITION" => { - Some(Self::RogueUnlockFuntionTypeExhibition) - } - "ROGUE_UNLOCK_FUNTION_TYPE_COLLECTION" => { - Some(Self::RogueUnlockFuntionTypeCollection) - } - "ROGUE_UNLOCK_FUNTION_TYPE_TOURN_GOD_MODE" => { - Some(Self::RogueUnlockFuntionTypeTournGodMode) - } + "PEHIOBHJGCE_HAEJGOHGFDK" => Some(Self::Haejgohgfdk), + "PEHIOBHJGCE_NACDAHCCOED" => Some(Self::Nacdahccoed), + "PEHIOBHJGCE_LALEGOPHOKD" => Some(Self::Lalegophokd), + "PEHIOBHJGCE_LILIKNNEPHF" => Some(Self::Liliknnephf), + "PEHIOBHJGCE_FABNCBDDKIB" => Some(Self::Fabncbddkib), + "PEHIOBHJGCE_BNFMNCHNDDD" => Some(Self::Bnfmnchnddd), _ => None, } } @@ -80919,55 +79430,35 @@ impl Odopdkelaeb { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pmpcbalmneo { - RogueCommonMiracleSelectSourceTypeNone = 0, - RogueCommonMiracleSelectSourceTypeDiceRoll = 1, - RogueCommonMiracleSelectSourceTypeAeon = 2, - RogueCommonMiracleSelectSourceTypeBoardEvent = 3, - RogueCommonMiracleSelectSourceTypeLevelMechanism = 4, +pub enum Lcoljkgkegk { + Alocmfakbkp = 0, + Jnobaphgiid = 1, + Gckfakeiidg = 2, + Ennmnnojmnk = 3, + Indophddgdf = 4, } -impl Pmpcbalmneo { +impl Lcoljkgkegk { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCommonMiracleSelectSourceTypeNone => { - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_NONE" - } - Self::RogueCommonMiracleSelectSourceTypeDiceRoll => { - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_DICE_ROLL" - } - Self::RogueCommonMiracleSelectSourceTypeAeon => { - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_AEON" - } - Self::RogueCommonMiracleSelectSourceTypeBoardEvent => { - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_BOARD_EVENT" - } - Self::RogueCommonMiracleSelectSourceTypeLevelMechanism => { - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_LEVEL_MECHANISM" - } + Self::Alocmfakbkp => "LCOLJKGKEGK_ALOCMFAKBKP", + Self::Jnobaphgiid => "LCOLJKGKEGK_JNOBAPHGIID", + Self::Gckfakeiidg => "LCOLJKGKEGK_GCKFAKEIIDG", + Self::Ennmnnojmnk => "LCOLJKGKEGK_ENNMNNOJMNK", + Self::Indophddgdf => "LCOLJKGKEGK_INDOPHDDGDF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_NONE" => { - Some(Self::RogueCommonMiracleSelectSourceTypeNone) - } - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_DICE_ROLL" => { - Some(Self::RogueCommonMiracleSelectSourceTypeDiceRoll) - } - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_AEON" => { - Some(Self::RogueCommonMiracleSelectSourceTypeAeon) - } - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_BOARD_EVENT" => { - Some(Self::RogueCommonMiracleSelectSourceTypeBoardEvent) - } - "ROGUE_COMMON_MIRACLE_SELECT_SOURCE_TYPE_LEVEL_MECHANISM" => { - Some(Self::RogueCommonMiracleSelectSourceTypeLevelMechanism) - } + "LCOLJKGKEGK_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "LCOLJKGKEGK_JNOBAPHGIID" => Some(Self::Jnobaphgiid), + "LCOLJKGKEGK_GCKFAKEIIDG" => Some(Self::Gckfakeiidg), + "LCOLJKGKEGK_ENNMNNOJMNK" => Some(Self::Ennmnnojmnk), + "LCOLJKGKEGK_INDOPHDDGDF" => Some(Self::Indophddgdf), _ => None, } } @@ -80975,37 +79466,29 @@ impl Pmpcbalmneo { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ojeigiekjeh { - RogueCommonBuffDisplayTypeNone = 0, - RogueCommonBuffDisplayTypeAdd = 1, - RogueCommonBuffDisplayTypeRemove = 2, +pub enum Eneilmejjic { + Alocmfakbkp = 0, + Icdfkfgbmjd = 1, + Jmacaagbebm = 2, } -impl Ojeigiekjeh { +impl Eneilmejjic { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCommonBuffDisplayTypeNone => "ROGUE_COMMON_BUFF_DISPLAY_TYPE_NONE", - Self::RogueCommonBuffDisplayTypeAdd => "ROGUE_COMMON_BUFF_DISPLAY_TYPE_ADD", - Self::RogueCommonBuffDisplayTypeRemove => { - "ROGUE_COMMON_BUFF_DISPLAY_TYPE_REMOVE" - } + Self::Alocmfakbkp => "ENEILMEJJIC_ALOCMFAKBKP", + Self::Icdfkfgbmjd => "ENEILMEJJIC_ICDFKFGBMJD", + Self::Jmacaagbebm => "ENEILMEJJIC_JMACAAGBEBM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COMMON_BUFF_DISPLAY_TYPE_NONE" => { - Some(Self::RogueCommonBuffDisplayTypeNone) - } - "ROGUE_COMMON_BUFF_DISPLAY_TYPE_ADD" => { - Some(Self::RogueCommonBuffDisplayTypeAdd) - } - "ROGUE_COMMON_BUFF_DISPLAY_TYPE_REMOVE" => { - Some(Self::RogueCommonBuffDisplayTypeRemove) - } + "ENEILMEJJIC_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "ENEILMEJJIC_ICDFKFGBMJD" => Some(Self::Icdfkfgbmjd), + "ENEILMEJJIC_JMACAAGBEBM" => Some(Self::Jmacaagbebm), _ => None, } } @@ -81013,48 +79496,32 @@ impl Ojeigiekjeh { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Laiapkndbph { - RogueCommonMiracleDisplayTypeNone = 0, - RogueCommonMiracleDisplayTypeAdd = 1, - RogueCommonMiracleDisplayTypeRemove = 2, - RogueCommonMiracleDisplayTypeRepair = 3, +pub enum Mbjididnlpb { + Alocmfakbkp = 0, + Icdfkfgbmjd = 1, + Jmacaagbebm = 2, + Nhomkkioclg = 3, } -impl Laiapkndbph { +impl Mbjididnlpb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCommonMiracleDisplayTypeNone => { - "ROGUE_COMMON_MIRACLE_DISPLAY_TYPE_NONE" - } - Self::RogueCommonMiracleDisplayTypeAdd => { - "ROGUE_COMMON_MIRACLE_DISPLAY_TYPE_ADD" - } - Self::RogueCommonMiracleDisplayTypeRemove => { - "ROGUE_COMMON_MIRACLE_DISPLAY_TYPE_REMOVE" - } - Self::RogueCommonMiracleDisplayTypeRepair => { - "ROGUE_COMMON_MIRACLE_DISPLAY_TYPE_REPAIR" - } + Self::Alocmfakbkp => "MBJIDIDNLPB_ALOCMFAKBKP", + Self::Icdfkfgbmjd => "MBJIDIDNLPB_ICDFKFGBMJD", + Self::Jmacaagbebm => "MBJIDIDNLPB_JMACAAGBEBM", + Self::Nhomkkioclg => "MBJIDIDNLPB_NHOMKKIOCLG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COMMON_MIRACLE_DISPLAY_TYPE_NONE" => { - Some(Self::RogueCommonMiracleDisplayTypeNone) - } - "ROGUE_COMMON_MIRACLE_DISPLAY_TYPE_ADD" => { - Some(Self::RogueCommonMiracleDisplayTypeAdd) - } - "ROGUE_COMMON_MIRACLE_DISPLAY_TYPE_REMOVE" => { - Some(Self::RogueCommonMiracleDisplayTypeRemove) - } - "ROGUE_COMMON_MIRACLE_DISPLAY_TYPE_REPAIR" => { - Some(Self::RogueCommonMiracleDisplayTypeRepair) - } + "MBJIDIDNLPB_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "MBJIDIDNLPB_ICDFKFGBMJD" => Some(Self::Icdfkfgbmjd), + "MBJIDIDNLPB_JMACAAGBEBM" => Some(Self::Jmacaagbebm), + "MBJIDIDNLPB_NHOMKKIOCLG" => Some(Self::Nhomkkioclg), _ => None, } } @@ -81062,37 +79529,29 @@ impl Laiapkndbph { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Paickpmogdg { - RogueCommonItemDisplayTypeNone = 0, - RogueCommonItemDisplayTypeAdd = 1, - RogueCommonItemDisplayTypeRemove = 2, +pub enum Bckjejhndei { + Alocmfakbkp = 0, + Icdfkfgbmjd = 1, + Jmacaagbebm = 2, } -impl Paickpmogdg { +impl Bckjejhndei { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCommonItemDisplayTypeNone => "ROGUE_COMMON_ITEM_DISPLAY_TYPE_NONE", - Self::RogueCommonItemDisplayTypeAdd => "ROGUE_COMMON_ITEM_DISPLAY_TYPE_ADD", - Self::RogueCommonItemDisplayTypeRemove => { - "ROGUE_COMMON_ITEM_DISPLAY_TYPE_REMOVE" - } + Self::Alocmfakbkp => "BCKJEJHNDEI_ALOCMFAKBKP", + Self::Icdfkfgbmjd => "BCKJEJHNDEI_ICDFKFGBMJD", + Self::Jmacaagbebm => "BCKJEJHNDEI_JMACAAGBEBM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COMMON_ITEM_DISPLAY_TYPE_NONE" => { - Some(Self::RogueCommonItemDisplayTypeNone) - } - "ROGUE_COMMON_ITEM_DISPLAY_TYPE_ADD" => { - Some(Self::RogueCommonItemDisplayTypeAdd) - } - "ROGUE_COMMON_ITEM_DISPLAY_TYPE_REMOVE" => { - Some(Self::RogueCommonItemDisplayTypeRemove) - } + "BCKJEJHNDEI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "BCKJEJHNDEI_ICDFKFGBMJD" => Some(Self::Icdfkfgbmjd), + "BCKJEJHNDEI_JMACAAGBEBM" => Some(Self::Jmacaagbebm), _ => None, } } @@ -81100,29 +79559,29 @@ impl Paickpmogdg { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum RogueCommonActionResultDisplayType { - None = 0, - Single = 1, - Multi = 2, +pub enum Jadbemoicgc { + Alocmfakbkp = 0, + Nlibiefcjgn = 1, + Ffnpcgonbfg = 2, } -impl RogueCommonActionResultDisplayType { +impl Jadbemoicgc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_NONE", - Self::Single => "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_SINGLE", - Self::Multi => "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_MULTI", + Self::Alocmfakbkp => "JADBEMOICGC_ALOCMFAKBKP", + Self::Nlibiefcjgn => "JADBEMOICGC_NLIBIEFCJGN", + Self::Ffnpcgonbfg => "JADBEMOICGC_FFNPCGONBFG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_NONE" => Some(Self::None), - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_SINGLE" => Some(Self::Single), - "ROGUE_COMMON_ACTION_RESULT_DISPLAY_TYPE_MULTI" => Some(Self::Multi), + "JADBEMOICGC_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "JADBEMOICGC_NLIBIEFCJGN" => Some(Self::Nlibiefcjgn), + "JADBEMOICGC_FFNPCGONBFG" => Some(Self::Ffnpcgonbfg), _ => None, } } @@ -81130,132 +79589,68 @@ impl RogueCommonActionResultDisplayType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Cfjgpifiool { - RogueCommonActionResultSourceTypeNone = 0, - RogueCommonActionResultSourceTypeSelect = 1, - RogueCommonActionResultSourceTypeEnhance = 2, - RogueCommonActionResultSourceTypeMiracle = 3, - RogueCommonActionResultSourceTypeDialogue = 4, - RogueCommonActionResultSourceTypeBonus = 5, - RogueCommonActionResultSourceTypeShop = 6, - RogueCommonActionResultSourceTypeDice = 7, - RogueCommonActionResultSourceTypeAeon = 8, - RogueCommonActionResultSourceTypeBoardEvent = 9, - RogueCommonActionResultSourceTypeMazeSkill = 10, - RogueCommonActionResultSourceTypeLevelMechanism = 11, - RogueCommonActionResultSourceTypeBuff = 12, - RogueCommonActionResultSourceTypeReforge = 13, - RogueCommonActionResultSourceTypeMagicUnitCompose = 14, - RogueCommonActionResultSourceTypeMagicUnitReforge = 15, +pub enum Jjmpgnedhhj { + Alocmfakbkp = 0, + Dhbelffggfl = 1, + Lajbfahekhe = 2, + Haejgohgfdk = 3, + Bchklgifekh = 4, + Hmeciphapfm = 5, + Elhkkabfjgf = 6, + Flhmifkejne = 7, + Gckfakeiidg = 8, + Ennmnnojmnk = 9, + Fkallllpjof = 10, + Indophddgdf = 11, + Lmjalhjpjpj = 12, + Imldjpgpdhj = 13, + Egbdoonifpe = 14, + Bkfbolmmcdc = 15, } -impl Cfjgpifiool { +impl Jjmpgnedhhj { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCommonActionResultSourceTypeNone => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_NONE" - } - Self::RogueCommonActionResultSourceTypeSelect => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_SELECT" - } - Self::RogueCommonActionResultSourceTypeEnhance => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_ENHANCE" - } - Self::RogueCommonActionResultSourceTypeMiracle => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_MIRACLE" - } - Self::RogueCommonActionResultSourceTypeDialogue => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_DIALOGUE" - } - Self::RogueCommonActionResultSourceTypeBonus => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_BONUS" - } - Self::RogueCommonActionResultSourceTypeShop => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_SHOP" - } - Self::RogueCommonActionResultSourceTypeDice => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_DICE" - } - Self::RogueCommonActionResultSourceTypeAeon => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_AEON" - } - Self::RogueCommonActionResultSourceTypeBoardEvent => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_BOARD_EVENT" - } - Self::RogueCommonActionResultSourceTypeMazeSkill => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_MAZE_SKILL" - } - Self::RogueCommonActionResultSourceTypeLevelMechanism => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_LEVEL_MECHANISM" - } - Self::RogueCommonActionResultSourceTypeBuff => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_BUFF" - } - Self::RogueCommonActionResultSourceTypeReforge => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_REFORGE" - } - Self::RogueCommonActionResultSourceTypeMagicUnitCompose => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_MAGIC_UNIT_COMPOSE" - } - Self::RogueCommonActionResultSourceTypeMagicUnitReforge => { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_MAGIC_UNIT_REFORGE" - } + Self::Alocmfakbkp => "JJMPGNEDHHJ_ALOCMFAKBKP", + Self::Dhbelffggfl => "JJMPGNEDHHJ_DHBELFFGGFL", + Self::Lajbfahekhe => "JJMPGNEDHHJ_LAJBFAHEKHE", + Self::Haejgohgfdk => "JJMPGNEDHHJ_HAEJGOHGFDK", + Self::Bchklgifekh => "JJMPGNEDHHJ_BCHKLGIFEKH", + Self::Hmeciphapfm => "JJMPGNEDHHJ_HMECIPHAPFM", + Self::Elhkkabfjgf => "JJMPGNEDHHJ_ELHKKABFJGF", + Self::Flhmifkejne => "JJMPGNEDHHJ_FLHMIFKEJNE", + Self::Gckfakeiidg => "JJMPGNEDHHJ_GCKFAKEIIDG", + Self::Ennmnnojmnk => "JJMPGNEDHHJ_ENNMNNOJMNK", + Self::Fkallllpjof => "JJMPGNEDHHJ_FKALLLLPJOF", + Self::Indophddgdf => "JJMPGNEDHHJ_INDOPHDDGDF", + Self::Lmjalhjpjpj => "JJMPGNEDHHJ_LMJALHJPJPJ", + Self::Imldjpgpdhj => "JJMPGNEDHHJ_IMLDJPGPDHJ", + Self::Egbdoonifpe => "JJMPGNEDHHJ_EGBDOONIFPE", + Self::Bkfbolmmcdc => "JJMPGNEDHHJ_BKFBOLMMCDC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_NONE" => { - Some(Self::RogueCommonActionResultSourceTypeNone) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_SELECT" => { - Some(Self::RogueCommonActionResultSourceTypeSelect) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_ENHANCE" => { - Some(Self::RogueCommonActionResultSourceTypeEnhance) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_MIRACLE" => { - Some(Self::RogueCommonActionResultSourceTypeMiracle) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_DIALOGUE" => { - Some(Self::RogueCommonActionResultSourceTypeDialogue) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_BONUS" => { - Some(Self::RogueCommonActionResultSourceTypeBonus) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_SHOP" => { - Some(Self::RogueCommonActionResultSourceTypeShop) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_DICE" => { - Some(Self::RogueCommonActionResultSourceTypeDice) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_AEON" => { - Some(Self::RogueCommonActionResultSourceTypeAeon) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_BOARD_EVENT" => { - Some(Self::RogueCommonActionResultSourceTypeBoardEvent) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_MAZE_SKILL" => { - Some(Self::RogueCommonActionResultSourceTypeMazeSkill) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_LEVEL_MECHANISM" => { - Some(Self::RogueCommonActionResultSourceTypeLevelMechanism) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_BUFF" => { - Some(Self::RogueCommonActionResultSourceTypeBuff) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_REFORGE" => { - Some(Self::RogueCommonActionResultSourceTypeReforge) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_MAGIC_UNIT_COMPOSE" => { - Some(Self::RogueCommonActionResultSourceTypeMagicUnitCompose) - } - "ROGUE_COMMON_ACTION_RESULT_SOURCE_TYPE_MAGIC_UNIT_REFORGE" => { - Some(Self::RogueCommonActionResultSourceTypeMagicUnitReforge) - } + "JJMPGNEDHHJ_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "JJMPGNEDHHJ_DHBELFFGGFL" => Some(Self::Dhbelffggfl), + "JJMPGNEDHHJ_LAJBFAHEKHE" => Some(Self::Lajbfahekhe), + "JJMPGNEDHHJ_HAEJGOHGFDK" => Some(Self::Haejgohgfdk), + "JJMPGNEDHHJ_BCHKLGIFEKH" => Some(Self::Bchklgifekh), + "JJMPGNEDHHJ_HMECIPHAPFM" => Some(Self::Hmeciphapfm), + "JJMPGNEDHHJ_ELHKKABFJGF" => Some(Self::Elhkkabfjgf), + "JJMPGNEDHHJ_FLHMIFKEJNE" => Some(Self::Flhmifkejne), + "JJMPGNEDHHJ_GCKFAKEIIDG" => Some(Self::Gckfakeiidg), + "JJMPGNEDHHJ_ENNMNNOJMNK" => Some(Self::Ennmnnojmnk), + "JJMPGNEDHHJ_FKALLLLPJOF" => Some(Self::Fkallllpjof), + "JJMPGNEDHHJ_INDOPHDDGDF" => Some(Self::Indophddgdf), + "JJMPGNEDHHJ_LMJALHJPJPJ" => Some(Self::Lmjalhjpjpj), + "JJMPGNEDHHJ_IMLDJPGPDHJ" => Some(Self::Imldjpgpdhj), + "JJMPGNEDHHJ_EGBDOONIFPE" => Some(Self::Egbdoonifpe), + "JJMPGNEDHHJ_BKFBOLMMCDC" => Some(Self::Bkfbolmmcdc), _ => None, } } @@ -81263,29 +79658,29 @@ impl Cfjgpifiool { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ndkljjiimgm { - KTitanBlessSelectNone = 0, - KSelectTitanBlessType = 1, - KSelectTitanBlessEnhance = 2, +pub enum Kfnelpppknc { + Ghonbacclip = 0, + Gmangdcpifi = 1, + Dgcnpndjddc = 2, } -impl Ndkljjiimgm { +impl Kfnelpppknc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KTitanBlessSelectNone => "kTitanBlessSelectNone", - Self::KSelectTitanBlessType => "kSelectTitanBlessType", - Self::KSelectTitanBlessEnhance => "kSelectTitanBlessEnhance", + Self::Ghonbacclip => "KFNELPPPKNC_GHONBACCLIP", + Self::Gmangdcpifi => "KFNELPPPKNC_GMANGDCPIFI", + Self::Dgcnpndjddc => "KFNELPPPKNC_DGCNPNDJDDC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kTitanBlessSelectNone" => Some(Self::KTitanBlessSelectNone), - "kSelectTitanBlessType" => Some(Self::KSelectTitanBlessType), - "kSelectTitanBlessEnhance" => Some(Self::KSelectTitanBlessEnhance), + "KFNELPPPKNC_GHONBACCLIP" => Some(Self::Ghonbacclip), + "KFNELPPPKNC_GMANGDCPIFI" => Some(Self::Gmangdcpifi), + "KFNELPPPKNC_DGCNPNDJDDC" => Some(Self::Dgcnpndjddc), _ => None, } } @@ -81293,29 +79688,29 @@ impl Ndkljjiimgm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Kpabffanjbk { - RogueTalentStatusLock = 0, - RogueTalentStatusUnlock = 1, - RogueTalentStatusEnable = 2, +pub enum Ikgnljigkpb { + Gbcmpododmc = 0, + Dicadjmaife = 1, + Mofcaheafem = 2, } -impl Kpabffanjbk { +impl Ikgnljigkpb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueTalentStatusLock => "ROGUE_TALENT_STATUS_LOCK", - Self::RogueTalentStatusUnlock => "ROGUE_TALENT_STATUS_UNLOCK", - Self::RogueTalentStatusEnable => "ROGUE_TALENT_STATUS_ENABLE", + Self::Gbcmpododmc => "IKGNLJIGKPB_GBCMPODODMC", + Self::Dicadjmaife => "IKGNLJIGKPB_DICADJMAIFE", + Self::Mofcaheafem => "IKGNLJIGKPB_MOFCAHEAFEM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_TALENT_STATUS_LOCK" => Some(Self::RogueTalentStatusLock), - "ROGUE_TALENT_STATUS_UNLOCK" => Some(Self::RogueTalentStatusUnlock), - "ROGUE_TALENT_STATUS_ENABLE" => Some(Self::RogueTalentStatusEnable), + "IKGNLJIGKPB_GBCMPODODMC" => Some(Self::Gbcmpododmc), + "IKGNLJIGKPB_DICADJMAIFE" => Some(Self::Dicadjmaife), + "IKGNLJIGKPB_MOFCAHEAFEM" => Some(Self::Mofcaheafem), _ => None, } } @@ -81323,29 +79718,29 @@ impl Kpabffanjbk { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mhkmpgabbpl { - RogueCollectionOperateNone = 0, - RogueCollectionOperateSet = 1, - RogueCollectionOperateUnset = 2, +pub enum Bbojhkheipd { + Oknjfdblldb = 0, + Hmappoahkdb = 1, + Libjbmbgefp = 2, } -impl Mhkmpgabbpl { +impl Bbojhkheipd { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCollectionOperateNone => "ROGUE_COLLECTION_OPERATE_NONE", - Self::RogueCollectionOperateSet => "ROGUE_COLLECTION_OPERATE_SET", - Self::RogueCollectionOperateUnset => "ROGUE_COLLECTION_OPERATE_UNSET", + Self::Oknjfdblldb => "BBOJHKHEIPD_OKNJFDBLLDB", + Self::Hmappoahkdb => "BBOJHKHEIPD_HMAPPOAHKDB", + Self::Libjbmbgefp => "BBOJHKHEIPD_LIBJBMBGEFP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COLLECTION_OPERATE_NONE" => Some(Self::RogueCollectionOperateNone), - "ROGUE_COLLECTION_OPERATE_SET" => Some(Self::RogueCollectionOperateSet), - "ROGUE_COLLECTION_OPERATE_UNSET" => Some(Self::RogueCollectionOperateUnset), + "BBOJHKHEIPD_OKNJFDBLLDB" => Some(Self::Oknjfdblldb), + "BBOJHKHEIPD_HMAPPOAHKDB" => Some(Self::Hmappoahkdb), + "BBOJHKHEIPD_LIBJBMBGEFP" => Some(Self::Libjbmbgefp), _ => None, } } @@ -81353,29 +79748,29 @@ impl Mhkmpgabbpl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hhiclpljnco { - RogueBoothNone = 0, - RogueBoothEmpty = 1, - RogueBoothDisplay = 2, +pub enum Kckffkdfbed { + Abikgkjhbfn = 0, + Bhppjgahece = 1, + Phglhccefhp = 2, } -impl Hhiclpljnco { +impl Kckffkdfbed { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueBoothNone => "ROGUE_BOOTH_NONE", - Self::RogueBoothEmpty => "ROGUE_BOOTH_EMPTY", - Self::RogueBoothDisplay => "ROGUE_BOOTH_DISPLAY", + Self::Abikgkjhbfn => "KCKFFKDFBED_ABIKGKJHBFN", + Self::Bhppjgahece => "KCKFFKDFBED_BHPPJGAHECE", + Self::Phglhccefhp => "KCKFFKDFBED_PHGLHCCEFHP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_BOOTH_NONE" => Some(Self::RogueBoothNone), - "ROGUE_BOOTH_EMPTY" => Some(Self::RogueBoothEmpty), - "ROGUE_BOOTH_DISPLAY" => Some(Self::RogueBoothDisplay), + "KCKFFKDFBED_ABIKGKJHBFN" => Some(Self::Abikgkjhbfn), + "KCKFFKDFBED_BHPPJGAHECE" => Some(Self::Bhppjgahece), + "KCKFFKDFBED_PHGLHCCEFHP" => Some(Self::Phglhccefhp), _ => None, } } @@ -81383,29 +79778,29 @@ impl Hhiclpljnco { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hgpokmdgknn { - RogueCollectionNone = 0, - RogueCollectionUnlocked = 1, - RogueCollectionDisplay = 2, +pub enum Amanahodmcf { + Ibbideldkkm = 0, + Kfjpbohgkjk = 1, + Lmijikcpado = 2, } -impl Hgpokmdgknn { +impl Amanahodmcf { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueCollectionNone => "ROGUE_COLLECTION_NONE", - Self::RogueCollectionUnlocked => "ROGUE_COLLECTION_UNLOCKED", - Self::RogueCollectionDisplay => "ROGUE_COLLECTION_DISPLAY", + Self::Ibbideldkkm => "AMANAHODMCF_IBBIDELDKKM", + Self::Kfjpbohgkjk => "AMANAHODMCF_KFJPBOHGKJK", + Self::Lmijikcpado => "AMANAHODMCF_LMIJIKCPADO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_COLLECTION_NONE" => Some(Self::RogueCollectionNone), - "ROGUE_COLLECTION_UNLOCKED" => Some(Self::RogueCollectionUnlocked), - "ROGUE_COLLECTION_DISPLAY" => Some(Self::RogueCollectionDisplay), + "AMANAHODMCF_IBBIDELDKKM" => Some(Self::Ibbideldkkm), + "AMANAHODMCF_KFJPBOHGKJK" => Some(Self::Kfjpbohgkjk), + "AMANAHODMCF_LMIJIKCPADO" => Some(Self::Lmijikcpado), _ => None, } } @@ -81413,29 +79808,29 @@ impl Hgpokmdgknn { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ehcobodeeje { - RogueExhibitionNone = 0, - RogueExhibitionUnlocked = 1, - RogueExhibitionDisplay = 2, +pub enum Pabpdenlbjl { + Lnfigbkcofi = 0, + Dhmodnbngei = 1, + Feahakfbhhl = 2, } -impl Ehcobodeeje { +impl Pabpdenlbjl { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueExhibitionNone => "ROGUE_EXHIBITION_NONE", - Self::RogueExhibitionUnlocked => "ROGUE_EXHIBITION_UNLOCKED", - Self::RogueExhibitionDisplay => "ROGUE_EXHIBITION_DISPLAY", + Self::Lnfigbkcofi => "PABPDENLBJL_LNFIGBKCOFI", + Self::Dhmodnbngei => "PABPDENLBJL_DHMODNBNGEI", + Self::Feahakfbhhl => "PABPDENLBJL_FEAHAKFBHHL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_EXHIBITION_NONE" => Some(Self::RogueExhibitionNone), - "ROGUE_EXHIBITION_UNLOCKED" => Some(Self::RogueExhibitionUnlocked), - "ROGUE_EXHIBITION_DISPLAY" => Some(Self::RogueExhibitionDisplay), + "PABPDENLBJL_LNFIGBKCOFI" => Some(Self::Lnfigbkcofi), + "PABPDENLBJL_DHMODNBNGEI" => Some(Self::Dhmodnbngei), + "PABPDENLBJL_FEAHAKFBHHL" => Some(Self::Feahakfbhhl), _ => None, } } @@ -81444,16 +79839,16 @@ impl Ehcobodeeje { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRogueEndless { - None = 0, - CmdTakeRogueEndlessActivityAllBonusRewardScRsp = 6005, - ActivityBattleEndScNotify = 6010, - CmdTakeRogueEndlessActivityPointRewardCsReq = 6001, - CmdGetRogueEndlessActivityDataScRsp = 6007, - CmdEnterRogueEndlessActivityStageCsReq = 6004, - CmdTakeRogueEndlessActivityAllBonusRewardCsReq = 6003, - CmdGetRogueEndlessActivityDataCsReq = 6006, - CmdEnterRogueEndlessActivityStageScRsp = 6009, - CmdTakeRogueEndlessActivityPointRewardScRsp = 6008, + JndabjdhdoiNnejghimoko = 0, + CmdDdjjoeoeafe = 6009, + CmdMkibjdigcoj = 6008, + CmdNdbcpoekmap = 6001, + CmdPgpkfjmbnbg = 6006, + CmdJaacipebefb = 6010, + CmdCcfkephjeci = 6002, + CmdJnafhocceoa = 6007, + CmdCknfindgjon = 6005, + CmdAacagdmndia = 6003, } impl CmdRogueEndless { /// String value of the enum field names used in the ProtoBuf definition. @@ -81462,65 +79857,31 @@ impl CmdRogueEndless { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRogueEndlessNone", - Self::CmdTakeRogueEndlessActivityAllBonusRewardScRsp => { - "CmdTakeRogueEndlessActivityAllBonusRewardScRsp" - } - Self::ActivityBattleEndScNotify => "CmdRogueEndlessActivityBattleEndScNotify", - Self::CmdTakeRogueEndlessActivityPointRewardCsReq => { - "CmdTakeRogueEndlessActivityPointRewardCsReq" - } - Self::CmdGetRogueEndlessActivityDataScRsp => { - "CmdGetRogueEndlessActivityDataScRsp" - } - Self::CmdEnterRogueEndlessActivityStageCsReq => { - "CmdEnterRogueEndlessActivityStageCsReq" - } - Self::CmdTakeRogueEndlessActivityAllBonusRewardCsReq => { - "CmdTakeRogueEndlessActivityAllBonusRewardCsReq" - } - Self::CmdGetRogueEndlessActivityDataCsReq => { - "CmdGetRogueEndlessActivityDataCsReq" - } - Self::CmdEnterRogueEndlessActivityStageScRsp => { - "CmdEnterRogueEndlessActivityStageScRsp" - } - Self::CmdTakeRogueEndlessActivityPointRewardScRsp => { - "CmdTakeRogueEndlessActivityPointRewardScRsp" - } + Self::JndabjdhdoiNnejghimoko => "JNDABJDHDOI_NNEJGHIMOKO", + Self::CmdDdjjoeoeafe => "CmdDDJJOEOEAFE", + Self::CmdMkibjdigcoj => "CmdMKIBJDIGCOJ", + Self::CmdNdbcpoekmap => "CmdNDBCPOEKMAP", + Self::CmdPgpkfjmbnbg => "CmdPGPKFJMBNBG", + Self::CmdJaacipebefb => "CmdJAACIPEBEFB", + Self::CmdCcfkephjeci => "CmdCCFKEPHJECI", + Self::CmdJnafhocceoa => "CmdJNAFHOCCEOA", + Self::CmdCknfindgjon => "CmdCKNFINDGJON", + Self::CmdAacagdmndia => "CmdAACAGDMNDIA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRogueEndlessNone" => Some(Self::None), - "CmdTakeRogueEndlessActivityAllBonusRewardScRsp" => { - Some(Self::CmdTakeRogueEndlessActivityAllBonusRewardScRsp) - } - "CmdRogueEndlessActivityBattleEndScNotify" => { - Some(Self::ActivityBattleEndScNotify) - } - "CmdTakeRogueEndlessActivityPointRewardCsReq" => { - Some(Self::CmdTakeRogueEndlessActivityPointRewardCsReq) - } - "CmdGetRogueEndlessActivityDataScRsp" => { - Some(Self::CmdGetRogueEndlessActivityDataScRsp) - } - "CmdEnterRogueEndlessActivityStageCsReq" => { - Some(Self::CmdEnterRogueEndlessActivityStageCsReq) - } - "CmdTakeRogueEndlessActivityAllBonusRewardCsReq" => { - Some(Self::CmdTakeRogueEndlessActivityAllBonusRewardCsReq) - } - "CmdGetRogueEndlessActivityDataCsReq" => { - Some(Self::CmdGetRogueEndlessActivityDataCsReq) - } - "CmdEnterRogueEndlessActivityStageScRsp" => { - Some(Self::CmdEnterRogueEndlessActivityStageScRsp) - } - "CmdTakeRogueEndlessActivityPointRewardScRsp" => { - Some(Self::CmdTakeRogueEndlessActivityPointRewardScRsp) - } + "JNDABJDHDOI_NNEJGHIMOKO" => Some(Self::JndabjdhdoiNnejghimoko), + "CmdDDJJOEOEAFE" => Some(Self::CmdDdjjoeoeafe), + "CmdMKIBJDIGCOJ" => Some(Self::CmdMkibjdigcoj), + "CmdNDBCPOEKMAP" => Some(Self::CmdNdbcpoekmap), + "CmdPGPKFJMBNBG" => Some(Self::CmdPgpkfjmbnbg), + "CmdJAACIPEBEFB" => Some(Self::CmdJaacipebefb), + "CmdCCFKEPHJECI" => Some(Self::CmdCcfkephjeci), + "CmdJNAFHOCCEOA" => Some(Self::CmdJnafhocceoa), + "CmdCKNFINDGJON" => Some(Self::CmdCknfindgjon), + "CmdAACAGDMNDIA" => Some(Self::CmdAacagdmndia), _ => None, } } @@ -81529,47 +79890,47 @@ impl CmdRogueEndless { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRogueMagic { - None = 0, - ScepterTakeOffUnitScRsp = 7759, - GetMiscRealTimeDataCsReq = 7721, - EnterRoomScRsp = 7744, - LevelInfoUpdateScNotify = 7757, - EnableTalentScRsp = 7774, - QueryScRsp = 7729, - ReviveAvatarCsReq = 7777, - SetAutoDressInMagicUnitScRsp = 7756, - EnableTalentCsReq = 7735, - EnterLayerScRsp = 7769, - ReviveCostUpdateScNotify = 7780, - UnitComposeCsReq = 7722, - ScepterTakeOffUnitCsReq = 7762, - QueryCsReq = 7751, - SetAutoDressInMagicUnitCsReq = 7716, - EnterRoomCsReq = 7719, - UnitComposeScRsp = 7797, - AutoDressInUnitScRsp = 7742, - EnterScRsp = 7765, - StartCsReq = 7799, - SettleScRsp = 7752, - GetTalentInfoCsReq = 7760, - UnitReforgeCsReq = 7755, - EnterLayerCsReq = 7781, - EnterCsReq = 7798, - SettleCsReq = 7794, - StartScRsp = 7723, - AutoDressInMagicUnitChangeScNotify = 7741, - UnitReforgeScRsp = 7750, - ReviveAvatarScRsp = 7705, - AutoDressInUnitCsReq = 7753, - GetTalentInfoScRsp = 7771, - BattleFailSettleInfoScNotify = 7749, - LeaveCsReq = 7783, - LeaveScRsp = 7786, - ScepterDressInUnitCsReq = 7703, - GetMiscRealTimeDataScRsp = 7710, - AreaUpdateScNotify = 7715, - StoryInfoUpdateScNotify = 7770, - ScepterDressInUnitScRsp = 7709, + DmipefbfadaBplokjahgmo = 0, + CmdLamfnnncnnl = 7752, + CmdFbkgccfalgg = 7737, + CmdNkpddcnpjpe = 7745, + DmipefbfadaGhbicpnelcd = 7701, + CmdFbaijoopecg = 7762, + CmdDfaklhgpbcj = 7719, + CmdFfbnnemnaig = 7791, + CmdGoileimindk = 7738, + CmdGedkmficaba = 7788, + CmdAmnpfhhpmgb = 7767, + CmdDmpainjegcd = 7717, + CmdLlaagpngdai = 7710, + CmdApegfhbbgdd = 7715, + CmdDmkhejinbhi = 7720, + DmipefbfadaEfebclepjgn = 7770, + CmdPbcfogeglmb = 7711, + CmdMnebhgmaggd = 7714, + CmdFkeocmndhan = 7776, + CmdOfmjlfkgbea = 7749, + CmdAlmeajgadbp = 7730, + CmdBbnojffapcp = 7713, + CmdCfghhomofjf = 7777, + CmdFogjmokndcl = 7795, + CmdGifknbfopdp = 7792, + CmdPofmbilcpmk = 7773, + CmdGlopkobpoib = 7751, + CmdCnnonaoenkl = 7798, + CmdIghonomdlhl = 7706, + CmdEkgpblkocfh = 7757, + CmdOkhkbmnllil = 7761, + CmdLhgoakjkpdf = 7735, + CmdPaofaehlgej = 7726, + CmdDpoeejjblec = 7769, + CmdAmejihnhfid = 7755, + CmdOkfnccgbhhi = 7766, + CmdJdofcfelemh = 7733, + CmdPnjnighfnda = 7789, + CmdBafecpjffjj = 7747, + CmdPlpobhliklc = 7709, + CmdCloaafapkpg = 7703, } impl CmdRogueMagic { /// String value of the enum field names used in the ProtoBuf definition. @@ -81578,115 +79939,93 @@ impl CmdRogueMagic { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRogueMagicNone", - Self::ScepterTakeOffUnitScRsp => "CmdRogueMagicScepterTakeOffUnitScRsp", - Self::GetMiscRealTimeDataCsReq => "CmdRogueMagicGetMiscRealTimeDataCsReq", - Self::EnterRoomScRsp => "CmdRogueMagicEnterRoomScRsp", - Self::LevelInfoUpdateScNotify => "CmdRogueMagicLevelInfoUpdateScNotify", - Self::EnableTalentScRsp => "CmdRogueMagicEnableTalentScRsp", - Self::QueryScRsp => "CmdRogueMagicQueryScRsp", - Self::ReviveAvatarCsReq => "CmdRogueMagicReviveAvatarCsReq", - Self::SetAutoDressInMagicUnitScRsp => { - "CmdRogueMagicSetAutoDressInMagicUnitScRsp" - } - Self::EnableTalentCsReq => "CmdRogueMagicEnableTalentCsReq", - Self::EnterLayerScRsp => "CmdRogueMagicEnterLayerScRsp", - Self::ReviveCostUpdateScNotify => "CmdRogueMagicReviveCostUpdateScNotify", - Self::UnitComposeCsReq => "CmdRogueMagicUnitComposeCsReq", - Self::ScepterTakeOffUnitCsReq => "CmdRogueMagicScepterTakeOffUnitCsReq", - Self::QueryCsReq => "CmdRogueMagicQueryCsReq", - Self::SetAutoDressInMagicUnitCsReq => { - "CmdRogueMagicSetAutoDressInMagicUnitCsReq" - } - Self::EnterRoomCsReq => "CmdRogueMagicEnterRoomCsReq", - Self::UnitComposeScRsp => "CmdRogueMagicUnitComposeScRsp", - Self::AutoDressInUnitScRsp => "CmdRogueMagicAutoDressInUnitScRsp", - Self::EnterScRsp => "CmdRogueMagicEnterScRsp", - Self::StartCsReq => "CmdRogueMagicStartCsReq", - Self::SettleScRsp => "CmdRogueMagicSettleScRsp", - Self::GetTalentInfoCsReq => "CmdRogueMagicGetTalentInfoCsReq", - Self::UnitReforgeCsReq => "CmdRogueMagicUnitReforgeCsReq", - Self::EnterLayerCsReq => "CmdRogueMagicEnterLayerCsReq", - Self::EnterCsReq => "CmdRogueMagicEnterCsReq", - Self::SettleCsReq => "CmdRogueMagicSettleCsReq", - Self::StartScRsp => "CmdRogueMagicStartScRsp", - Self::AutoDressInMagicUnitChangeScNotify => { - "CmdRogueMagicAutoDressInMagicUnitChangeScNotify" - } - Self::UnitReforgeScRsp => "CmdRogueMagicUnitReforgeScRsp", - Self::ReviveAvatarScRsp => "CmdRogueMagicReviveAvatarScRsp", - Self::AutoDressInUnitCsReq => "CmdRogueMagicAutoDressInUnitCsReq", - Self::GetTalentInfoScRsp => "CmdRogueMagicGetTalentInfoScRsp", - Self::BattleFailSettleInfoScNotify => { - "CmdRogueMagicBattleFailSettleInfoScNotify" - } - Self::LeaveCsReq => "CmdRogueMagicLeaveCsReq", - Self::LeaveScRsp => "CmdRogueMagicLeaveScRsp", - Self::ScepterDressInUnitCsReq => "CmdRogueMagicScepterDressInUnitCsReq", - Self::GetMiscRealTimeDataScRsp => "CmdRogueMagicGetMiscRealTimeDataScRsp", - Self::AreaUpdateScNotify => "CmdRogueMagicAreaUpdateScNotify", - Self::StoryInfoUpdateScNotify => "CmdRogueMagicStoryInfoUpdateScNotify", - Self::ScepterDressInUnitScRsp => "CmdRogueMagicScepterDressInUnitScRsp", + Self::DmipefbfadaBplokjahgmo => "DMIPEFBFADA_BPLOKJAHGMO", + Self::CmdLamfnnncnnl => "CmdLAMFNNNCNNL", + Self::CmdFbkgccfalgg => "CmdFBKGCCFALGG", + Self::CmdNkpddcnpjpe => "CmdNKPDDCNPJPE", + Self::DmipefbfadaGhbicpnelcd => "DMIPEFBFADA_GHBICPNELCD", + Self::CmdFbaijoopecg => "CmdFBAIJOOPECG", + Self::CmdDfaklhgpbcj => "CmdDFAKLHGPBCJ", + Self::CmdFfbnnemnaig => "CmdFFBNNEMNAIG", + Self::CmdGoileimindk => "CmdGOILEIMINDK", + Self::CmdGedkmficaba => "CmdGEDKMFICABA", + Self::CmdAmnpfhhpmgb => "CmdAMNPFHHPMGB", + Self::CmdDmpainjegcd => "CmdDMPAINJEGCD", + Self::CmdLlaagpngdai => "CmdLLAAGPNGDAI", + Self::CmdApegfhbbgdd => "CmdAPEGFHBBGDD", + Self::CmdDmkhejinbhi => "CmdDMKHEJINBHI", + Self::DmipefbfadaEfebclepjgn => "DMIPEFBFADA_EFEBCLEPJGN", + Self::CmdPbcfogeglmb => "CmdPBCFOGEGLMB", + Self::CmdMnebhgmaggd => "CmdMNEBHGMAGGD", + Self::CmdFkeocmndhan => "CmdFKEOCMNDHAN", + Self::CmdOfmjlfkgbea => "CmdOFMJLFKGBEA", + Self::CmdAlmeajgadbp => "CmdALMEAJGADBP", + Self::CmdBbnojffapcp => "CmdBBNOJFFAPCP", + Self::CmdCfghhomofjf => "CmdCFGHHOMOFJF", + Self::CmdFogjmokndcl => "CmdFOGJMOKNDCL", + Self::CmdGifknbfopdp => "CmdGIFKNBFOPDP", + Self::CmdPofmbilcpmk => "CmdPOFMBILCPMK", + Self::CmdGlopkobpoib => "CmdGLOPKOBPOIB", + Self::CmdCnnonaoenkl => "CmdCNNONAOENKL", + Self::CmdIghonomdlhl => "CmdIGHONOMDLHL", + Self::CmdEkgpblkocfh => "CmdEKGPBLKOCFH", + Self::CmdOkhkbmnllil => "CmdOKHKBMNLLIL", + Self::CmdLhgoakjkpdf => "CmdLHGOAKJKPDF", + Self::CmdPaofaehlgej => "CmdPAOFAEHLGEJ", + Self::CmdDpoeejjblec => "CmdDPOEEJJBLEC", + Self::CmdAmejihnhfid => "CmdAMEJIHNHFID", + Self::CmdOkfnccgbhhi => "CmdOKFNCCGBHHI", + Self::CmdJdofcfelemh => "CmdJDOFCFELEMH", + Self::CmdPnjnighfnda => "CmdPNJNIGHFNDA", + Self::CmdBafecpjffjj => "CmdBAFECPJFFJJ", + Self::CmdPlpobhliklc => "CmdPLPOBHLIKLC", + Self::CmdCloaafapkpg => "CmdCLOAAFAPKPG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRogueMagicNone" => Some(Self::None), - "CmdRogueMagicScepterTakeOffUnitScRsp" => Some(Self::ScepterTakeOffUnitScRsp), - "CmdRogueMagicGetMiscRealTimeDataCsReq" => { - Some(Self::GetMiscRealTimeDataCsReq) - } - "CmdRogueMagicEnterRoomScRsp" => Some(Self::EnterRoomScRsp), - "CmdRogueMagicLevelInfoUpdateScNotify" => Some(Self::LevelInfoUpdateScNotify), - "CmdRogueMagicEnableTalentScRsp" => Some(Self::EnableTalentScRsp), - "CmdRogueMagicQueryScRsp" => Some(Self::QueryScRsp), - "CmdRogueMagicReviveAvatarCsReq" => Some(Self::ReviveAvatarCsReq), - "CmdRogueMagicSetAutoDressInMagicUnitScRsp" => { - Some(Self::SetAutoDressInMagicUnitScRsp) - } - "CmdRogueMagicEnableTalentCsReq" => Some(Self::EnableTalentCsReq), - "CmdRogueMagicEnterLayerScRsp" => Some(Self::EnterLayerScRsp), - "CmdRogueMagicReviveCostUpdateScNotify" => { - Some(Self::ReviveCostUpdateScNotify) - } - "CmdRogueMagicUnitComposeCsReq" => Some(Self::UnitComposeCsReq), - "CmdRogueMagicScepterTakeOffUnitCsReq" => Some(Self::ScepterTakeOffUnitCsReq), - "CmdRogueMagicQueryCsReq" => Some(Self::QueryCsReq), - "CmdRogueMagicSetAutoDressInMagicUnitCsReq" => { - Some(Self::SetAutoDressInMagicUnitCsReq) - } - "CmdRogueMagicEnterRoomCsReq" => Some(Self::EnterRoomCsReq), - "CmdRogueMagicUnitComposeScRsp" => Some(Self::UnitComposeScRsp), - "CmdRogueMagicAutoDressInUnitScRsp" => Some(Self::AutoDressInUnitScRsp), - "CmdRogueMagicEnterScRsp" => Some(Self::EnterScRsp), - "CmdRogueMagicStartCsReq" => Some(Self::StartCsReq), - "CmdRogueMagicSettleScRsp" => Some(Self::SettleScRsp), - "CmdRogueMagicGetTalentInfoCsReq" => Some(Self::GetTalentInfoCsReq), - "CmdRogueMagicUnitReforgeCsReq" => Some(Self::UnitReforgeCsReq), - "CmdRogueMagicEnterLayerCsReq" => Some(Self::EnterLayerCsReq), - "CmdRogueMagicEnterCsReq" => Some(Self::EnterCsReq), - "CmdRogueMagicSettleCsReq" => Some(Self::SettleCsReq), - "CmdRogueMagicStartScRsp" => Some(Self::StartScRsp), - "CmdRogueMagicAutoDressInMagicUnitChangeScNotify" => { - Some(Self::AutoDressInMagicUnitChangeScNotify) - } - "CmdRogueMagicUnitReforgeScRsp" => Some(Self::UnitReforgeScRsp), - "CmdRogueMagicReviveAvatarScRsp" => Some(Self::ReviveAvatarScRsp), - "CmdRogueMagicAutoDressInUnitCsReq" => Some(Self::AutoDressInUnitCsReq), - "CmdRogueMagicGetTalentInfoScRsp" => Some(Self::GetTalentInfoScRsp), - "CmdRogueMagicBattleFailSettleInfoScNotify" => { - Some(Self::BattleFailSettleInfoScNotify) - } - "CmdRogueMagicLeaveCsReq" => Some(Self::LeaveCsReq), - "CmdRogueMagicLeaveScRsp" => Some(Self::LeaveScRsp), - "CmdRogueMagicScepterDressInUnitCsReq" => Some(Self::ScepterDressInUnitCsReq), - "CmdRogueMagicGetMiscRealTimeDataScRsp" => { - Some(Self::GetMiscRealTimeDataScRsp) - } - "CmdRogueMagicAreaUpdateScNotify" => Some(Self::AreaUpdateScNotify), - "CmdRogueMagicStoryInfoUpdateScNotify" => Some(Self::StoryInfoUpdateScNotify), - "CmdRogueMagicScepterDressInUnitScRsp" => Some(Self::ScepterDressInUnitScRsp), + "DMIPEFBFADA_BPLOKJAHGMO" => Some(Self::DmipefbfadaBplokjahgmo), + "CmdLAMFNNNCNNL" => Some(Self::CmdLamfnnncnnl), + "CmdFBKGCCFALGG" => Some(Self::CmdFbkgccfalgg), + "CmdNKPDDCNPJPE" => Some(Self::CmdNkpddcnpjpe), + "DMIPEFBFADA_GHBICPNELCD" => Some(Self::DmipefbfadaGhbicpnelcd), + "CmdFBAIJOOPECG" => Some(Self::CmdFbaijoopecg), + "CmdDFAKLHGPBCJ" => Some(Self::CmdDfaklhgpbcj), + "CmdFFBNNEMNAIG" => Some(Self::CmdFfbnnemnaig), + "CmdGOILEIMINDK" => Some(Self::CmdGoileimindk), + "CmdGEDKMFICABA" => Some(Self::CmdGedkmficaba), + "CmdAMNPFHHPMGB" => Some(Self::CmdAmnpfhhpmgb), + "CmdDMPAINJEGCD" => Some(Self::CmdDmpainjegcd), + "CmdLLAAGPNGDAI" => Some(Self::CmdLlaagpngdai), + "CmdAPEGFHBBGDD" => Some(Self::CmdApegfhbbgdd), + "CmdDMKHEJINBHI" => Some(Self::CmdDmkhejinbhi), + "DMIPEFBFADA_EFEBCLEPJGN" => Some(Self::DmipefbfadaEfebclepjgn), + "CmdPBCFOGEGLMB" => Some(Self::CmdPbcfogeglmb), + "CmdMNEBHGMAGGD" => Some(Self::CmdMnebhgmaggd), + "CmdFKEOCMNDHAN" => Some(Self::CmdFkeocmndhan), + "CmdOFMJLFKGBEA" => Some(Self::CmdOfmjlfkgbea), + "CmdALMEAJGADBP" => Some(Self::CmdAlmeajgadbp), + "CmdBBNOJFFAPCP" => Some(Self::CmdBbnojffapcp), + "CmdCFGHHOMOFJF" => Some(Self::CmdCfghhomofjf), + "CmdFOGJMOKNDCL" => Some(Self::CmdFogjmokndcl), + "CmdGIFKNBFOPDP" => Some(Self::CmdGifknbfopdp), + "CmdPOFMBILCPMK" => Some(Self::CmdPofmbilcpmk), + "CmdGLOPKOBPOIB" => Some(Self::CmdGlopkobpoib), + "CmdCNNONAOENKL" => Some(Self::CmdCnnonaoenkl), + "CmdIGHONOMDLHL" => Some(Self::CmdIghonomdlhl), + "CmdEKGPBLKOCFH" => Some(Self::CmdEkgpblkocfh), + "CmdOKHKBMNLLIL" => Some(Self::CmdOkhkbmnllil), + "CmdLHGOAKJKPDF" => Some(Self::CmdLhgoakjkpdf), + "CmdPAOFAEHLGEJ" => Some(Self::CmdPaofaehlgej), + "CmdDPOEEJJBLEC" => Some(Self::CmdDpoeejjblec), + "CmdAMEJIHNHFID" => Some(Self::CmdAmejihnhfid), + "CmdOKFNCCGBHHI" => Some(Self::CmdOkfnccgbhhi), + "CmdJDOFCFELEMH" => Some(Self::CmdJdofcfelemh), + "CmdPNJNIGHFNDA" => Some(Self::CmdPnjnighfnda), + "CmdBAFECPJFFJJ" => Some(Self::CmdBafecpjffjj), + "CmdPLPOBHLIKLC" => Some(Self::CmdPlpobhliklc), + "CmdCLOAAFAPKPG" => Some(Self::CmdCloaafapkpg), _ => None, } } @@ -81694,40 +80033,32 @@ impl CmdRogueMagic { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Behfnmkdomk { - RogueMagicLevelStatusNone = 0, - RogueMagicLevelStatusProcessing = 1, - RogueMagicLevelStatusFinished = 2, - RogueMagicLevelStatusSettled = 3, +pub enum Adicbhfaipb { + Alocmfakbkp = 0, + Egnpknbehej = 1, + Gconmakmpbh = 2, + Jehfndmlinn = 3, } -impl Behfnmkdomk { +impl Adicbhfaipb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueMagicLevelStatusNone => "ROGUE_MAGIC_LEVEL_STATUS_NONE", - Self::RogueMagicLevelStatusProcessing => { - "ROGUE_MAGIC_LEVEL_STATUS_PROCESSING" - } - Self::RogueMagicLevelStatusFinished => "ROGUE_MAGIC_LEVEL_STATUS_FINISHED", - Self::RogueMagicLevelStatusSettled => "ROGUE_MAGIC_LEVEL_STATUS_SETTLED", + Self::Alocmfakbkp => "ADICBHFAIPB_ALOCMFAKBKP", + Self::Egnpknbehej => "ADICBHFAIPB_EGNPKNBEHEJ", + Self::Gconmakmpbh => "ADICBHFAIPB_GCONMAKMPBH", + Self::Jehfndmlinn => "ADICBHFAIPB_JEHFNDMLINN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_MAGIC_LEVEL_STATUS_NONE" => Some(Self::RogueMagicLevelStatusNone), - "ROGUE_MAGIC_LEVEL_STATUS_PROCESSING" => { - Some(Self::RogueMagicLevelStatusProcessing) - } - "ROGUE_MAGIC_LEVEL_STATUS_FINISHED" => { - Some(Self::RogueMagicLevelStatusFinished) - } - "ROGUE_MAGIC_LEVEL_STATUS_SETTLED" => { - Some(Self::RogueMagicLevelStatusSettled) - } + "ADICBHFAIPB_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "ADICBHFAIPB_EGNPKNBEHEJ" => Some(Self::Egnpknbehej), + "ADICBHFAIPB_GCONMAKMPBH" => Some(Self::Gconmakmpbh), + "ADICBHFAIPB_JEHFNDMLINN" => Some(Self::Jehfndmlinn), _ => None, } } @@ -81735,33 +80066,29 @@ impl Behfnmkdomk { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jlcbbkkgoej { - RogueMagicLayerStatusNone = 0, - RogueMagicLayerStatusProcessing = 1, - RogueMagicLayerStatusFinish = 2, +pub enum Lidhppdfmni { + Alocmfakbkp = 0, + Egnpknbehej = 1, + Eddpgfacjae = 2, } -impl Jlcbbkkgoej { +impl Lidhppdfmni { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueMagicLayerStatusNone => "ROGUE_MAGIC_LAYER_STATUS_NONE", - Self::RogueMagicLayerStatusProcessing => { - "ROGUE_MAGIC_LAYER_STATUS_PROCESSING" - } - Self::RogueMagicLayerStatusFinish => "ROGUE_MAGIC_LAYER_STATUS_FINISH", + Self::Alocmfakbkp => "LIDHPPDFMNI_ALOCMFAKBKP", + Self::Egnpknbehej => "LIDHPPDFMNI_EGNPKNBEHEJ", + Self::Eddpgfacjae => "LIDHPPDFMNI_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_MAGIC_LAYER_STATUS_NONE" => Some(Self::RogueMagicLayerStatusNone), - "ROGUE_MAGIC_LAYER_STATUS_PROCESSING" => { - Some(Self::RogueMagicLayerStatusProcessing) - } - "ROGUE_MAGIC_LAYER_STATUS_FINISH" => Some(Self::RogueMagicLayerStatusFinish), + "LIDHPPDFMNI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "LIDHPPDFMNI_EGNPKNBEHEJ" => Some(Self::Egnpknbehej), + "LIDHPPDFMNI_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -81769,34 +80096,32 @@ impl Jlcbbkkgoej { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jiokhlhgeod { - RogueMagicRoomStatusNone = 0, - RogueMagicRoomStatusInited = 1, - RogueMagicRoomStatusProcessing = 2, - RogueMagicRoomStatusFinish = 3, +pub enum Ejpbbfefkmf { + Alocmfakbkp = 0, + Okllngedeld = 1, + Egnpknbehej = 2, + Eddpgfacjae = 3, } -impl Jiokhlhgeod { +impl Ejpbbfefkmf { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueMagicRoomStatusNone => "ROGUE_MAGIC_ROOM_STATUS_NONE", - Self::RogueMagicRoomStatusInited => "ROGUE_MAGIC_ROOM_STATUS_INITED", - Self::RogueMagicRoomStatusProcessing => "ROGUE_MAGIC_ROOM_STATUS_PROCESSING", - Self::RogueMagicRoomStatusFinish => "ROGUE_MAGIC_ROOM_STATUS_FINISH", + Self::Alocmfakbkp => "EJPBBFEFKMF_ALOCMFAKBKP", + Self::Okllngedeld => "EJPBBFEFKMF_OKLLNGEDELD", + Self::Egnpknbehej => "EJPBBFEFKMF_EGNPKNBEHEJ", + Self::Eddpgfacjae => "EJPBBFEFKMF_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_MAGIC_ROOM_STATUS_NONE" => Some(Self::RogueMagicRoomStatusNone), - "ROGUE_MAGIC_ROOM_STATUS_INITED" => Some(Self::RogueMagicRoomStatusInited), - "ROGUE_MAGIC_ROOM_STATUS_PROCESSING" => { - Some(Self::RogueMagicRoomStatusProcessing) - } - "ROGUE_MAGIC_ROOM_STATUS_FINISH" => Some(Self::RogueMagicRoomStatusFinish), + "EJPBBFEFKMF_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "EJPBBFEFKMF_OKLLNGEDELD" => Some(Self::Okllngedeld), + "EJPBBFEFKMF_EGNPKNBEHEJ" => Some(Self::Egnpknbehej), + "EJPBBFEFKMF_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -81804,36 +80129,32 @@ impl Jiokhlhgeod { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jmpphgigffi { - RogueMagicSettleReasonNone = 0, - RogueMagicSettleReasonWin = 1, - RogueMagicSettleReasonFail = 2, - RogueMagicSettleReasonInterrupt = 3, +pub enum Lcdcpmbbipb { + Alocmfakbkp = 0, + Bbobmpgblao = 1, + Lpjembccgpd = 2, + Bgiccmgambm = 3, } -impl Jmpphgigffi { +impl Lcdcpmbbipb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueMagicSettleReasonNone => "ROGUE_MAGIC_SETTLE_REASON_NONE", - Self::RogueMagicSettleReasonWin => "ROGUE_MAGIC_SETTLE_REASON_WIN", - Self::RogueMagicSettleReasonFail => "ROGUE_MAGIC_SETTLE_REASON_FAIL", - Self::RogueMagicSettleReasonInterrupt => { - "ROGUE_MAGIC_SETTLE_REASON_INTERRUPT" - } + Self::Alocmfakbkp => "LCDCPMBBIPB_ALOCMFAKBKP", + Self::Bbobmpgblao => "LCDCPMBBIPB_BBOBMPGBLAO", + Self::Lpjembccgpd => "LCDCPMBBIPB_LPJEMBCCGPD", + Self::Bgiccmgambm => "LCDCPMBBIPB_BGICCMGAMBM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_MAGIC_SETTLE_REASON_NONE" => Some(Self::RogueMagicSettleReasonNone), - "ROGUE_MAGIC_SETTLE_REASON_WIN" => Some(Self::RogueMagicSettleReasonWin), - "ROGUE_MAGIC_SETTLE_REASON_FAIL" => Some(Self::RogueMagicSettleReasonFail), - "ROGUE_MAGIC_SETTLE_REASON_INTERRUPT" => { - Some(Self::RogueMagicSettleReasonInterrupt) - } + "LCDCPMBBIPB_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "LCDCPMBBIPB_BBOBMPGBLAO" => Some(Self::Bbobmpgblao), + "LCDCPMBBIPB_LPJEMBCCGPD" => Some(Self::Lpjembccgpd), + "LCDCPMBBIPB_BGICCMGAMBM" => Some(Self::Bgiccmgambm), _ => None, } } @@ -81842,13 +80163,13 @@ impl Jmpphgigffi { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRogueModifierType { - None = 0, - CmdRogueModifierSelectCellScRsp = 5383, - CmdRogueModifierAddNotify = 5398, - CmdRogueModifierStageStartNotify = 5344, - CmdRogueModifierSelectCellCsReq = 5365, - CmdRogueModifierDelNotify = 5319, - CmdRogueModifierUpdateNotify = 5352, + BenmmncpojcAlocmfakbkp = 0, + CmdOljnkmloaai = 5395, + CmdJnakjhbcegk = 5351, + CmdKncfbdfldfe = 5320, + CmdFfoofohoobd = 5338, + CmdCckkhnghajm = 5317, + CmdPflkckjcdnp = 5391, } impl CmdRogueModifierType { /// String value of the enum field names used in the ProtoBuf definition. @@ -81857,31 +80178,25 @@ impl CmdRogueModifierType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRogueModifierTypeNone", - Self::CmdRogueModifierSelectCellScRsp => "CmdRogueModifierSelectCellScRsp", - Self::CmdRogueModifierAddNotify => "CmdRogueModifierAddNotify", - Self::CmdRogueModifierStageStartNotify => "CmdRogueModifierStageStartNotify", - Self::CmdRogueModifierSelectCellCsReq => "CmdRogueModifierSelectCellCsReq", - Self::CmdRogueModifierDelNotify => "CmdRogueModifierDelNotify", - Self::CmdRogueModifierUpdateNotify => "CmdRogueModifierUpdateNotify", + Self::BenmmncpojcAlocmfakbkp => "BENMMNCPOJC_ALOCMFAKBKP", + Self::CmdOljnkmloaai => "CmdOLJNKMLOAAI", + Self::CmdJnakjhbcegk => "CmdJNAKJHBCEGK", + Self::CmdKncfbdfldfe => "CmdKNCFBDFLDFE", + Self::CmdFfoofohoobd => "CmdFFOOFOHOOBD", + Self::CmdCckkhnghajm => "CmdCCKKHNGHAJM", + Self::CmdPflkckjcdnp => "CmdPFLKCKJCDNP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRogueModifierTypeNone" => Some(Self::None), - "CmdRogueModifierSelectCellScRsp" => { - Some(Self::CmdRogueModifierSelectCellScRsp) - } - "CmdRogueModifierAddNotify" => Some(Self::CmdRogueModifierAddNotify), - "CmdRogueModifierStageStartNotify" => { - Some(Self::CmdRogueModifierStageStartNotify) - } - "CmdRogueModifierSelectCellCsReq" => { - Some(Self::CmdRogueModifierSelectCellCsReq) - } - "CmdRogueModifierDelNotify" => Some(Self::CmdRogueModifierDelNotify), - "CmdRogueModifierUpdateNotify" => Some(Self::CmdRogueModifierUpdateNotify), + "BENMMNCPOJC_ALOCMFAKBKP" => Some(Self::BenmmncpojcAlocmfakbkp), + "CmdOLJNKMLOAAI" => Some(Self::CmdOljnkmloaai), + "CmdJNAKJHBCEGK" => Some(Self::CmdJnakjhbcegk), + "CmdKNCFBDFLDFE" => Some(Self::CmdKncfbdfldfe), + "CmdFFOOFOHOOBD" => Some(Self::CmdFfoofohoobd), + "CmdCCKKHNGHAJM" => Some(Self::CmdCckkhnghajm), + "CmdPFLKCKJCDNP" => Some(Self::CmdPflkckjcdnp), _ => None, } } @@ -81889,60 +80204,50 @@ impl CmdRogueModifierType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Lgmdbcffjof { - RogueModifierSourceNone = 0, - RogueModifierSourceDiceRoll = 1, - RogueModifierSourceAeon = 2, - RogueModifierSourceBoardEvent = 3, - RogueModifierSourceDialogEvent = 4, - RogueModifierSourceMiracle = 5, - RogueModifierSourceCellMark = 6, - RogueModifierSourceAeonTalent = 7, - RogueModifierSourceBossDecay = 8, - RogueModifierSourceDiceBranch = 9, +pub enum Dgpmdefdmke { + Dfmcpkdnecb = 0, + Gomiekhpeam = 1, + Amffgjkonnk = 2, + Caogahdjcoe = 3, + Omajcmfdncc = 4, + Mcmlfofdmil = 5, + Fjmnfagccch = 6, + Kjnedpmffid = 7, + Gpojhcopldo = 8, + Bfndmgidlig = 9, } -impl Lgmdbcffjof { +impl Dgpmdefdmke { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueModifierSourceNone => "ROGUE_MODIFIER_SOURCE_NONE", - Self::RogueModifierSourceDiceRoll => "ROGUE_MODIFIER_SOURCE_DICE_ROLL", - Self::RogueModifierSourceAeon => "ROGUE_MODIFIER_SOURCE_AEON", - Self::RogueModifierSourceBoardEvent => "ROGUE_MODIFIER_SOURCE_BOARD_EVENT", - Self::RogueModifierSourceDialogEvent => "ROGUE_MODIFIER_SOURCE_DIALOG_EVENT", - Self::RogueModifierSourceMiracle => "ROGUE_MODIFIER_SOURCE_MIRACLE", - Self::RogueModifierSourceCellMark => "ROGUE_MODIFIER_SOURCE_CELL_MARK", - Self::RogueModifierSourceAeonTalent => "ROGUE_MODIFIER_SOURCE_AEON_TALENT", - Self::RogueModifierSourceBossDecay => "ROGUE_MODIFIER_SOURCE_BOSS_DECAY", - Self::RogueModifierSourceDiceBranch => "ROGUE_MODIFIER_SOURCE_DICE_BRANCH", + Self::Dfmcpkdnecb => "DGPMDEFDMKE_DFMCPKDNECB", + Self::Gomiekhpeam => "DGPMDEFDMKE_GOMIEKHPEAM", + Self::Amffgjkonnk => "DGPMDEFDMKE_AMFFGJKONNK", + Self::Caogahdjcoe => "DGPMDEFDMKE_CAOGAHDJCOE", + Self::Omajcmfdncc => "DGPMDEFDMKE_OMAJCMFDNCC", + Self::Mcmlfofdmil => "DGPMDEFDMKE_MCMLFOFDMIL", + Self::Fjmnfagccch => "DGPMDEFDMKE_FJMNFAGCCCH", + Self::Kjnedpmffid => "DGPMDEFDMKE_KJNEDPMFFID", + Self::Gpojhcopldo => "DGPMDEFDMKE_GPOJHCOPLDO", + Self::Bfndmgidlig => "DGPMDEFDMKE_BFNDMGIDLIG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_MODIFIER_SOURCE_NONE" => Some(Self::RogueModifierSourceNone), - "ROGUE_MODIFIER_SOURCE_DICE_ROLL" => Some(Self::RogueModifierSourceDiceRoll), - "ROGUE_MODIFIER_SOURCE_AEON" => Some(Self::RogueModifierSourceAeon), - "ROGUE_MODIFIER_SOURCE_BOARD_EVENT" => { - Some(Self::RogueModifierSourceBoardEvent) - } - "ROGUE_MODIFIER_SOURCE_DIALOG_EVENT" => { - Some(Self::RogueModifierSourceDialogEvent) - } - "ROGUE_MODIFIER_SOURCE_MIRACLE" => Some(Self::RogueModifierSourceMiracle), - "ROGUE_MODIFIER_SOURCE_CELL_MARK" => Some(Self::RogueModifierSourceCellMark), - "ROGUE_MODIFIER_SOURCE_AEON_TALENT" => { - Some(Self::RogueModifierSourceAeonTalent) - } - "ROGUE_MODIFIER_SOURCE_BOSS_DECAY" => { - Some(Self::RogueModifierSourceBossDecay) - } - "ROGUE_MODIFIER_SOURCE_DICE_BRANCH" => { - Some(Self::RogueModifierSourceDiceBranch) - } + "DGPMDEFDMKE_DFMCPKDNECB" => Some(Self::Dfmcpkdnecb), + "DGPMDEFDMKE_GOMIEKHPEAM" => Some(Self::Gomiekhpeam), + "DGPMDEFDMKE_AMFFGJKONNK" => Some(Self::Amffgjkonnk), + "DGPMDEFDMKE_CAOGAHDJCOE" => Some(Self::Caogahdjcoe), + "DGPMDEFDMKE_OMAJCMFDNCC" => Some(Self::Omajcmfdncc), + "DGPMDEFDMKE_MCMLFOFDMIL" => Some(Self::Mcmlfofdmil), + "DGPMDEFDMKE_FJMNFAGCCCH" => Some(Self::Fjmnfagccch), + "DGPMDEFDMKE_KJNEDPMFFID" => Some(Self::Kjnedpmffid), + "DGPMDEFDMKE_GPOJHCOPLDO" => Some(Self::Gpojhcopldo), + "DGPMDEFDMKE_BFNDMGIDLIG" => Some(Self::Bfndmgidlig), _ => None, } } @@ -81950,26 +80255,26 @@ impl Lgmdbcffjof { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Njchljfiodm { - RogueModifierContentDefinite = 0, - RogueModifierContentRandom = 1, +pub enum Ckdmdlpddbb { + Ghmgdfoecck = 0, + Mjhbnkjbppp = 1, } -impl Njchljfiodm { +impl Ckdmdlpddbb { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueModifierContentDefinite => "ROGUE_MODIFIER_CONTENT_DEFINITE", - Self::RogueModifierContentRandom => "ROGUE_MODIFIER_CONTENT_RANDOM", + Self::Ghmgdfoecck => "CKDMDLPDDBB_GHMGDFOECCK", + Self::Mjhbnkjbppp => "CKDMDLPDDBB_MJHBNKJBPPP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_MODIFIER_CONTENT_DEFINITE" => Some(Self::RogueModifierContentDefinite), - "ROGUE_MODIFIER_CONTENT_RANDOM" => Some(Self::RogueModifierContentRandom), + "CKDMDLPDDBB_GHMGDFOECCK" => Some(Self::Ghmgdfoecck), + "CKDMDLPDDBB_MJHBNKJBPPP" => Some(Self::Mjhbnkjbppp), _ => None, } } @@ -81978,77 +80283,77 @@ impl Njchljfiodm { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRogueTournType { - None = 0, - CmdRogueTournGetSettleInfoScRsp = 6012, - CmdRogueTournEnterLayerCsReq = 6013, - CmdRogueTournConfirmSettleScRsp = 6040, - CmdRogueTournGetSettleInfoCsReq = 6081, - CmdRogueTournEnableSeasonTalentCsReq = 6066, - CmdRogueTournReviveAvatarScRsp = 6047, - CmdRogueTournEnableSeasonTalentScRsp = 6048, - CmdRogueTournStartScRsp = 6062, - CmdRogueTournTakeExpRewardCsReq = 6071, - CmdRogueTournLeaveRogueCocoonSceneCsReq = 6075, - CmdRogueTournReEnterRogueCocoonStageScRsp = 6011, - CmdRogueTournSaveBuildRefCsReq = 6069, - CmdRogueTournQueryScRsp = 6067, - CmdRogueTournDifficultyCompNotify = 6035, - CmdRogueTournLeaveScRsp = 6098, - CmdRogueTournEnterCsReq = 6033, - CmdRogueTournLeaveRogueCocoonSceneScRsp = 6065, - CmdRogueTournBattleFailSettleInfoScNotify = 6014, - CmdRogueTournEnterRogueCocoonSceneScRsp = 6016, - CmdRogueTournGetSeasonTalentInfoScRsp = 6032, - CmdRogueTournEnterRogueCocoonSceneCsReq = 6022, - CmdRogueTournGetAllBuildRefCsReq = 6085, - CmdRogueTournLeaveCsReq = 6052, - CmdRogueTournReEnterRogueCocoonStageCsReq = 6021, - CmdRogueTournGetPermanentTalentInfoScRsp = 6020, - CmdRogueTournRenameBuildRefScRsp = 6018, - CmdRogueTournGetAllBuildRefScRsp = 6060, - CmdRogueTournClearArchiveNameScNotify = 6049, - CmdRogueTournResetPermanentTalentCsReq = 6082, - CmdRogueTournEnablePermanentTalentCsReq = 6054, - CmdRogueTournUseSuperRewardKeyScRsp = 6077, - CmdRogueTournRenameArchiveScRsp = 6072, - CmdRogueTournConfirmSettleCsReq = 6089, - CmdRogueTournDeleteArchiveScRsp = 6031, - CmdRogueTournRenameBuildRefCsReq = 6041, - CmdRogueTournGetMiscRealTimeDataCsReq = 6076, - CmdRogueTournResetPermanentTalentScRsp = 6028, - CmdRogueTournGetCurRogueCocoonInfoCsReq = 6063, - CmdRogueTournSettleScRsp = 6039, - CmdRogueTournStartCsReq = 6043, - CmdRogueTournQueryCsReq = 6051, - CmdRogueTournGetArchiveRepositoryCsReq = 6050, - CmdRogueTournGetCurRogueCocoonInfoScRsp = 6095, - CmdRogueTournEnterScRsp = 6093, - CmdRogueTournDeleteBuildRefCsReq = 6068, - CmdRogueTournWeekChallengeUpdateScNotify = 6019, - CmdRogueTournTitanUpdateTitanBlessProgressScNotify = 6026, - CmdRogueTournExpNotify = 6055, - CmdRogueTournLevelInfoUpdateScNotify = 6015, - CmdRogueTournGetSeasonTalentInfoCsReq = 6096, - CmdRogueTournGetAllArchiveScRsp = 6078, - CmdRogueTournDeleteArchiveCsReq = 6099, - CmdRogueTournGetAllArchiveCsReq = 6090, - CmdRogueTournReviveCostUpdateScNotify = 6045, - CmdRogueTournEnterRoomScRsp = 6079, - CmdRogueTournReviveAvatarCsReq = 6073, - CmdRogueTournEnterLayerScRsp = 6029, - CmdRogueTournAreaUpdateScNotify = 6064, - CmdRogueTournGetMiscRealTimeDataScRsp = 6080, - CmdRogueTournHandBookNotify = 6061, - CmdRogueTournGetPermanentTalentInfoCsReq = 6084, - CmdRogueTournDeleteBuildRefScRsp = 6037, - CmdRogueTournUseSuperRewardKeyCsReq = 6034, - CmdRogueTournEnterRoomCsReq = 6025, - CmdRogueTournSaveBuildRefScRsp = 6056, - CmdRogueTournEnablePermanentTalentScRsp = 6074, - CmdRogueTournTakeExpRewardScRsp = 6097, - CmdRogueTournRenameArchiveCsReq = 6059, - CmdRogueTournGetArchiveRepositoryScRsp = 6087, - CmdRogueTournSettleCsReq = 6070, + DifmhhjdfgiAlocmfakbkp = 0, + CmdPdbeebmjjdb = 6089, + CmdMmbhmgmadnp = 6051, + CmdMdnbeppchcj = 6063, + CmdAoocnhidgnn = 6021, + CmdPaobpiidbdb = 6058, + CmdNleojeleadf = 6029, + CmdEfkcppclini = 6060, + CmdCemephafben = 6023, + CmdKfapghfpoam = 6035, + CmdBoaolfbjagj = 6099, + CmdMlmdeciboeb = 6076, + CmdLnldmfoffnm = 6069, + CmdCfhddaajfio = 6056, + CmdAkbjcjbihlc = 6054, + CmdHpbokbbjohd = 6034, + CmdOakpnpekjff = 6042, + CmdDlifnclekhl = 6062, + CmdHjpiibcmggc = 6077, + CmdKcejgcbbppe = 6038, + CmdGgbhohnphbo = 6011, + CmdBfdadnaehbg = 6086, + CmdJbjblddkcff = 6016, + CmdBnlfghmpgll = 6032, + CmdBokjmagofga = 6072, + CmdPibakijceol = 6055, + CmdFchbliekdio = 6050, + CmdHiecgaojihm = 6043, + CmdKlpkpgepopl = 6059, + CmdKpfialiihlk = 6036, + CmdIdjkknkjgfp = 6098, + CmdJbagbppihfc = 6013, + CmdBngdjiddhnf = 6067, + CmdPcffaipodfi = 6012, + CmdPfpfobgpfbk = 6079, + CmdPchhlgnhfjl = 6024, + CmdMbajjfbegmi = 6080, + CmdDgjojaefenj = 6046, + CmdDnjfhohbeih = 6044, + CmdIhakooagohf = 6014, + CmdOoacpalgdlj = 6061, + CmdHlbdhklbfkl = 6017, + CmdFpbfpjjheaa = 6041, + CmdLongmllnjhj = 6020, + CmdOmmpognonll = 6028, + CmdOjlehapcalo = 6057, + CmdOhcimebnooa = 6030, + CmdEabgbgmmpkn = 6088, + CmdCccjdjcbjlo = 6091, + CmdKaadnhdenpi = 6082, + CmdLkcmnaaimmm = 6071, + CmdCmmafjgoebo = 6045, + CmdKapjnakmkob = 6083, + CmdGopcelblmek = 6027, + CmdOoilnieoehe = 6065, + CmdJifgeagmfgg = 6075, + CmdBebcpibjnoi = 6033, + CmdLlohgkbapoe = 6047, + CmdKblgbokeije = 6048, + CmdHplhfaiideo = 6093, + CmdKpbbmanacic = 6078, + CmdGiemcfehcii = 6037, + CmdIegimehhlkh = 6096, + CmdIkaiofpbhjm = 6019, + CmdOfhdplmjpca = 6100, + CmdKmmnpgmbiah = 6049, + CmdGbkeefddelm = 6064, + CmdOgbgkdnmjjn = 6025, + CmdDpffeelfabm = 6090, + CmdDdpefjcmljl = 6097, + CmdOmlibkjmkkc = 6040, } impl CmdRogueTournType { /// String value of the enum field names used in the ProtoBuf definition. @@ -82057,323 +80362,153 @@ impl CmdRogueTournType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRogueTournTypeNone", - Self::CmdRogueTournGetSettleInfoScRsp => "CmdRogueTournGetSettleInfoScRsp", - Self::CmdRogueTournEnterLayerCsReq => "CmdRogueTournEnterLayerCsReq", - Self::CmdRogueTournConfirmSettleScRsp => "CmdRogueTournConfirmSettleScRsp", - Self::CmdRogueTournGetSettleInfoCsReq => "CmdRogueTournGetSettleInfoCsReq", - Self::CmdRogueTournEnableSeasonTalentCsReq => { - "CmdRogueTournEnableSeasonTalentCsReq" - } - Self::CmdRogueTournReviveAvatarScRsp => "CmdRogueTournReviveAvatarScRsp", - Self::CmdRogueTournEnableSeasonTalentScRsp => { - "CmdRogueTournEnableSeasonTalentScRsp" - } - Self::CmdRogueTournStartScRsp => "CmdRogueTournStartScRsp", - Self::CmdRogueTournTakeExpRewardCsReq => "CmdRogueTournTakeExpRewardCsReq", - Self::CmdRogueTournLeaveRogueCocoonSceneCsReq => { - "CmdRogueTournLeaveRogueCocoonSceneCsReq" - } - Self::CmdRogueTournReEnterRogueCocoonStageScRsp => { - "CmdRogueTournReEnterRogueCocoonStageScRsp" - } - Self::CmdRogueTournSaveBuildRefCsReq => "CmdRogueTournSaveBuildRefCsReq", - Self::CmdRogueTournQueryScRsp => "CmdRogueTournQueryScRsp", - Self::CmdRogueTournDifficultyCompNotify => { - "CmdRogueTournDifficultyCompNotify" - } - Self::CmdRogueTournLeaveScRsp => "CmdRogueTournLeaveScRsp", - Self::CmdRogueTournEnterCsReq => "CmdRogueTournEnterCsReq", - Self::CmdRogueTournLeaveRogueCocoonSceneScRsp => { - "CmdRogueTournLeaveRogueCocoonSceneScRsp" - } - Self::CmdRogueTournBattleFailSettleInfoScNotify => { - "CmdRogueTournBattleFailSettleInfoScNotify" - } - Self::CmdRogueTournEnterRogueCocoonSceneScRsp => { - "CmdRogueTournEnterRogueCocoonSceneScRsp" - } - Self::CmdRogueTournGetSeasonTalentInfoScRsp => { - "CmdRogueTournGetSeasonTalentInfoScRsp" - } - Self::CmdRogueTournEnterRogueCocoonSceneCsReq => { - "CmdRogueTournEnterRogueCocoonSceneCsReq" - } - Self::CmdRogueTournGetAllBuildRefCsReq => "CmdRogueTournGetAllBuildRefCsReq", - Self::CmdRogueTournLeaveCsReq => "CmdRogueTournLeaveCsReq", - Self::CmdRogueTournReEnterRogueCocoonStageCsReq => { - "CmdRogueTournReEnterRogueCocoonStageCsReq" - } - Self::CmdRogueTournGetPermanentTalentInfoScRsp => { - "CmdRogueTournGetPermanentTalentInfoScRsp" - } - Self::CmdRogueTournRenameBuildRefScRsp => "CmdRogueTournRenameBuildRefScRsp", - Self::CmdRogueTournGetAllBuildRefScRsp => "CmdRogueTournGetAllBuildRefScRsp", - Self::CmdRogueTournClearArchiveNameScNotify => { - "CmdRogueTournClearArchiveNameScNotify" - } - Self::CmdRogueTournResetPermanentTalentCsReq => { - "CmdRogueTournResetPermanentTalentCsReq" - } - Self::CmdRogueTournEnablePermanentTalentCsReq => { - "CmdRogueTournEnablePermanentTalentCsReq" - } - Self::CmdRogueTournUseSuperRewardKeyScRsp => { - "CmdRogueTournUseSuperRewardKeyScRsp" - } - Self::CmdRogueTournRenameArchiveScRsp => "CmdRogueTournRenameArchiveScRsp", - Self::CmdRogueTournConfirmSettleCsReq => "CmdRogueTournConfirmSettleCsReq", - Self::CmdRogueTournDeleteArchiveScRsp => "CmdRogueTournDeleteArchiveScRsp", - Self::CmdRogueTournRenameBuildRefCsReq => "CmdRogueTournRenameBuildRefCsReq", - Self::CmdRogueTournGetMiscRealTimeDataCsReq => { - "CmdRogueTournGetMiscRealTimeDataCsReq" - } - Self::CmdRogueTournResetPermanentTalentScRsp => { - "CmdRogueTournResetPermanentTalentScRsp" - } - Self::CmdRogueTournGetCurRogueCocoonInfoCsReq => { - "CmdRogueTournGetCurRogueCocoonInfoCsReq" - } - Self::CmdRogueTournSettleScRsp => "CmdRogueTournSettleScRsp", - Self::CmdRogueTournStartCsReq => "CmdRogueTournStartCsReq", - Self::CmdRogueTournQueryCsReq => "CmdRogueTournQueryCsReq", - Self::CmdRogueTournGetArchiveRepositoryCsReq => { - "CmdRogueTournGetArchiveRepositoryCsReq" - } - Self::CmdRogueTournGetCurRogueCocoonInfoScRsp => { - "CmdRogueTournGetCurRogueCocoonInfoScRsp" - } - Self::CmdRogueTournEnterScRsp => "CmdRogueTournEnterScRsp", - Self::CmdRogueTournDeleteBuildRefCsReq => "CmdRogueTournDeleteBuildRefCsReq", - Self::CmdRogueTournWeekChallengeUpdateScNotify => { - "CmdRogueTournWeekChallengeUpdateScNotify" - } - Self::CmdRogueTournTitanUpdateTitanBlessProgressScNotify => { - "CmdRogueTournTitanUpdateTitanBlessProgressScNotify" - } - Self::CmdRogueTournExpNotify => "CmdRogueTournExpNotify", - Self::CmdRogueTournLevelInfoUpdateScNotify => { - "CmdRogueTournLevelInfoUpdateScNotify" - } - Self::CmdRogueTournGetSeasonTalentInfoCsReq => { - "CmdRogueTournGetSeasonTalentInfoCsReq" - } - Self::CmdRogueTournGetAllArchiveScRsp => "CmdRogueTournGetAllArchiveScRsp", - Self::CmdRogueTournDeleteArchiveCsReq => "CmdRogueTournDeleteArchiveCsReq", - Self::CmdRogueTournGetAllArchiveCsReq => "CmdRogueTournGetAllArchiveCsReq", - Self::CmdRogueTournReviveCostUpdateScNotify => { - "CmdRogueTournReviveCostUpdateScNotify" - } - Self::CmdRogueTournEnterRoomScRsp => "CmdRogueTournEnterRoomScRsp", - Self::CmdRogueTournReviveAvatarCsReq => "CmdRogueTournReviveAvatarCsReq", - Self::CmdRogueTournEnterLayerScRsp => "CmdRogueTournEnterLayerScRsp", - Self::CmdRogueTournAreaUpdateScNotify => "CmdRogueTournAreaUpdateScNotify", - Self::CmdRogueTournGetMiscRealTimeDataScRsp => { - "CmdRogueTournGetMiscRealTimeDataScRsp" - } - Self::CmdRogueTournHandBookNotify => "CmdRogueTournHandBookNotify", - Self::CmdRogueTournGetPermanentTalentInfoCsReq => { - "CmdRogueTournGetPermanentTalentInfoCsReq" - } - Self::CmdRogueTournDeleteBuildRefScRsp => "CmdRogueTournDeleteBuildRefScRsp", - Self::CmdRogueTournUseSuperRewardKeyCsReq => { - "CmdRogueTournUseSuperRewardKeyCsReq" - } - Self::CmdRogueTournEnterRoomCsReq => "CmdRogueTournEnterRoomCsReq", - Self::CmdRogueTournSaveBuildRefScRsp => "CmdRogueTournSaveBuildRefScRsp", - Self::CmdRogueTournEnablePermanentTalentScRsp => { - "CmdRogueTournEnablePermanentTalentScRsp" - } - Self::CmdRogueTournTakeExpRewardScRsp => "CmdRogueTournTakeExpRewardScRsp", - Self::CmdRogueTournRenameArchiveCsReq => "CmdRogueTournRenameArchiveCsReq", - Self::CmdRogueTournGetArchiveRepositoryScRsp => { - "CmdRogueTournGetArchiveRepositoryScRsp" - } - Self::CmdRogueTournSettleCsReq => "CmdRogueTournSettleCsReq", + Self::DifmhhjdfgiAlocmfakbkp => "DIFMHHJDFGI_ALOCMFAKBKP", + Self::CmdPdbeebmjjdb => "CmdPDBEEBMJJDB", + Self::CmdMmbhmgmadnp => "CmdMMBHMGMADNP", + Self::CmdMdnbeppchcj => "CmdMDNBEPPCHCJ", + Self::CmdAoocnhidgnn => "CmdAOOCNHIDGNN", + Self::CmdPaobpiidbdb => "CmdPAOBPIIDBDB", + Self::CmdNleojeleadf => "CmdNLEOJELEADF", + Self::CmdEfkcppclini => "CmdEFKCPPCLINI", + Self::CmdCemephafben => "CmdCEMEPHAFBEN", + Self::CmdKfapghfpoam => "CmdKFAPGHFPOAM", + Self::CmdBoaolfbjagj => "CmdBOAOLFBJAGJ", + Self::CmdMlmdeciboeb => "CmdMLMDECIBOEB", + Self::CmdLnldmfoffnm => "CmdLNLDMFOFFNM", + Self::CmdCfhddaajfio => "CmdCFHDDAAJFIO", + Self::CmdAkbjcjbihlc => "CmdAKBJCJBIHLC", + Self::CmdHpbokbbjohd => "CmdHPBOKBBJOHD", + Self::CmdOakpnpekjff => "CmdOAKPNPEKJFF", + Self::CmdDlifnclekhl => "CmdDLIFNCLEKHL", + Self::CmdHjpiibcmggc => "CmdHJPIIBCMGGC", + Self::CmdKcejgcbbppe => "CmdKCEJGCBBPPE", + Self::CmdGgbhohnphbo => "CmdGGBHOHNPHBO", + Self::CmdBfdadnaehbg => "CmdBFDADNAEHBG", + Self::CmdJbjblddkcff => "CmdJBJBLDDKCFF", + Self::CmdBnlfghmpgll => "CmdBNLFGHMPGLL", + Self::CmdBokjmagofga => "CmdBOKJMAGOFGA", + Self::CmdPibakijceol => "CmdPIBAKIJCEOL", + Self::CmdFchbliekdio => "CmdFCHBLIEKDIO", + Self::CmdHiecgaojihm => "CmdHIECGAOJIHM", + Self::CmdKlpkpgepopl => "CmdKLPKPGEPOPL", + Self::CmdKpfialiihlk => "CmdKPFIALIIHLK", + Self::CmdIdjkknkjgfp => "CmdIDJKKNKJGFP", + Self::CmdJbagbppihfc => "CmdJBAGBPPIHFC", + Self::CmdBngdjiddhnf => "CmdBNGDJIDDHNF", + Self::CmdPcffaipodfi => "CmdPCFFAIPODFI", + Self::CmdPfpfobgpfbk => "CmdPFPFOBGPFBK", + Self::CmdPchhlgnhfjl => "CmdPCHHLGNHFJL", + Self::CmdMbajjfbegmi => "CmdMBAJJFBEGMI", + Self::CmdDgjojaefenj => "CmdDGJOJAEFENJ", + Self::CmdDnjfhohbeih => "CmdDNJFHOHBEIH", + Self::CmdIhakooagohf => "CmdIHAKOOAGOHF", + Self::CmdOoacpalgdlj => "CmdOOACPALGDLJ", + Self::CmdHlbdhklbfkl => "CmdHLBDHKLBFKL", + Self::CmdFpbfpjjheaa => "CmdFPBFPJJHEAA", + Self::CmdLongmllnjhj => "CmdLONGMLLNJHJ", + Self::CmdOmmpognonll => "CmdOMMPOGNONLL", + Self::CmdOjlehapcalo => "CmdOJLEHAPCALO", + Self::CmdOhcimebnooa => "CmdOHCIMEBNOOA", + Self::CmdEabgbgmmpkn => "CmdEABGBGMMPKN", + Self::CmdCccjdjcbjlo => "CmdCCCJDJCBJLO", + Self::CmdKaadnhdenpi => "CmdKAADNHDENPI", + Self::CmdLkcmnaaimmm => "CmdLKCMNAAIMMM", + Self::CmdCmmafjgoebo => "CmdCMMAFJGOEBO", + Self::CmdKapjnakmkob => "CmdKAPJNAKMKOB", + Self::CmdGopcelblmek => "CmdGOPCELBLMEK", + Self::CmdOoilnieoehe => "CmdOOILNIEOEHE", + Self::CmdJifgeagmfgg => "CmdJIFGEAGMFGG", + Self::CmdBebcpibjnoi => "CmdBEBCPIBJNOI", + Self::CmdLlohgkbapoe => "CmdLLOHGKBAPOE", + Self::CmdKblgbokeije => "CmdKBLGBOKEIJE", + Self::CmdHplhfaiideo => "CmdHPLHFAIIDEO", + Self::CmdKpbbmanacic => "CmdKPBBMANACIC", + Self::CmdGiemcfehcii => "CmdGIEMCFEHCII", + Self::CmdIegimehhlkh => "CmdIEGIMEHHLKH", + Self::CmdIkaiofpbhjm => "CmdIKAIOFPBHJM", + Self::CmdOfhdplmjpca => "CmdOFHDPLMJPCA", + Self::CmdKmmnpgmbiah => "CmdKMMNPGMBIAH", + Self::CmdGbkeefddelm => "CmdGBKEEFDDELM", + Self::CmdOgbgkdnmjjn => "CmdOGBGKDNMJJN", + Self::CmdDpffeelfabm => "CmdDPFFEELFABM", + Self::CmdDdpefjcmljl => "CmdDDPEFJCMLJL", + Self::CmdOmlibkjmkkc => "CmdOMLIBKJMKKC", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRogueTournTypeNone" => Some(Self::None), - "CmdRogueTournGetSettleInfoScRsp" => { - Some(Self::CmdRogueTournGetSettleInfoScRsp) - } - "CmdRogueTournEnterLayerCsReq" => Some(Self::CmdRogueTournEnterLayerCsReq), - "CmdRogueTournConfirmSettleScRsp" => { - Some(Self::CmdRogueTournConfirmSettleScRsp) - } - "CmdRogueTournGetSettleInfoCsReq" => { - Some(Self::CmdRogueTournGetSettleInfoCsReq) - } - "CmdRogueTournEnableSeasonTalentCsReq" => { - Some(Self::CmdRogueTournEnableSeasonTalentCsReq) - } - "CmdRogueTournReviveAvatarScRsp" => { - Some(Self::CmdRogueTournReviveAvatarScRsp) - } - "CmdRogueTournEnableSeasonTalentScRsp" => { - Some(Self::CmdRogueTournEnableSeasonTalentScRsp) - } - "CmdRogueTournStartScRsp" => Some(Self::CmdRogueTournStartScRsp), - "CmdRogueTournTakeExpRewardCsReq" => { - Some(Self::CmdRogueTournTakeExpRewardCsReq) - } - "CmdRogueTournLeaveRogueCocoonSceneCsReq" => { - Some(Self::CmdRogueTournLeaveRogueCocoonSceneCsReq) - } - "CmdRogueTournReEnterRogueCocoonStageScRsp" => { - Some(Self::CmdRogueTournReEnterRogueCocoonStageScRsp) - } - "CmdRogueTournSaveBuildRefCsReq" => { - Some(Self::CmdRogueTournSaveBuildRefCsReq) - } - "CmdRogueTournQueryScRsp" => Some(Self::CmdRogueTournQueryScRsp), - "CmdRogueTournDifficultyCompNotify" => { - Some(Self::CmdRogueTournDifficultyCompNotify) - } - "CmdRogueTournLeaveScRsp" => Some(Self::CmdRogueTournLeaveScRsp), - "CmdRogueTournEnterCsReq" => Some(Self::CmdRogueTournEnterCsReq), - "CmdRogueTournLeaveRogueCocoonSceneScRsp" => { - Some(Self::CmdRogueTournLeaveRogueCocoonSceneScRsp) - } - "CmdRogueTournBattleFailSettleInfoScNotify" => { - Some(Self::CmdRogueTournBattleFailSettleInfoScNotify) - } - "CmdRogueTournEnterRogueCocoonSceneScRsp" => { - Some(Self::CmdRogueTournEnterRogueCocoonSceneScRsp) - } - "CmdRogueTournGetSeasonTalentInfoScRsp" => { - Some(Self::CmdRogueTournGetSeasonTalentInfoScRsp) - } - "CmdRogueTournEnterRogueCocoonSceneCsReq" => { - Some(Self::CmdRogueTournEnterRogueCocoonSceneCsReq) - } - "CmdRogueTournGetAllBuildRefCsReq" => { - Some(Self::CmdRogueTournGetAllBuildRefCsReq) - } - "CmdRogueTournLeaveCsReq" => Some(Self::CmdRogueTournLeaveCsReq), - "CmdRogueTournReEnterRogueCocoonStageCsReq" => { - Some(Self::CmdRogueTournReEnterRogueCocoonStageCsReq) - } - "CmdRogueTournGetPermanentTalentInfoScRsp" => { - Some(Self::CmdRogueTournGetPermanentTalentInfoScRsp) - } - "CmdRogueTournRenameBuildRefScRsp" => { - Some(Self::CmdRogueTournRenameBuildRefScRsp) - } - "CmdRogueTournGetAllBuildRefScRsp" => { - Some(Self::CmdRogueTournGetAllBuildRefScRsp) - } - "CmdRogueTournClearArchiveNameScNotify" => { - Some(Self::CmdRogueTournClearArchiveNameScNotify) - } - "CmdRogueTournResetPermanentTalentCsReq" => { - Some(Self::CmdRogueTournResetPermanentTalentCsReq) - } - "CmdRogueTournEnablePermanentTalentCsReq" => { - Some(Self::CmdRogueTournEnablePermanentTalentCsReq) - } - "CmdRogueTournUseSuperRewardKeyScRsp" => { - Some(Self::CmdRogueTournUseSuperRewardKeyScRsp) - } - "CmdRogueTournRenameArchiveScRsp" => { - Some(Self::CmdRogueTournRenameArchiveScRsp) - } - "CmdRogueTournConfirmSettleCsReq" => { - Some(Self::CmdRogueTournConfirmSettleCsReq) - } - "CmdRogueTournDeleteArchiveScRsp" => { - Some(Self::CmdRogueTournDeleteArchiveScRsp) - } - "CmdRogueTournRenameBuildRefCsReq" => { - Some(Self::CmdRogueTournRenameBuildRefCsReq) - } - "CmdRogueTournGetMiscRealTimeDataCsReq" => { - Some(Self::CmdRogueTournGetMiscRealTimeDataCsReq) - } - "CmdRogueTournResetPermanentTalentScRsp" => { - Some(Self::CmdRogueTournResetPermanentTalentScRsp) - } - "CmdRogueTournGetCurRogueCocoonInfoCsReq" => { - Some(Self::CmdRogueTournGetCurRogueCocoonInfoCsReq) - } - "CmdRogueTournSettleScRsp" => Some(Self::CmdRogueTournSettleScRsp), - "CmdRogueTournStartCsReq" => Some(Self::CmdRogueTournStartCsReq), - "CmdRogueTournQueryCsReq" => Some(Self::CmdRogueTournQueryCsReq), - "CmdRogueTournGetArchiveRepositoryCsReq" => { - Some(Self::CmdRogueTournGetArchiveRepositoryCsReq) - } - "CmdRogueTournGetCurRogueCocoonInfoScRsp" => { - Some(Self::CmdRogueTournGetCurRogueCocoonInfoScRsp) - } - "CmdRogueTournEnterScRsp" => Some(Self::CmdRogueTournEnterScRsp), - "CmdRogueTournDeleteBuildRefCsReq" => { - Some(Self::CmdRogueTournDeleteBuildRefCsReq) - } - "CmdRogueTournWeekChallengeUpdateScNotify" => { - Some(Self::CmdRogueTournWeekChallengeUpdateScNotify) - } - "CmdRogueTournTitanUpdateTitanBlessProgressScNotify" => { - Some(Self::CmdRogueTournTitanUpdateTitanBlessProgressScNotify) - } - "CmdRogueTournExpNotify" => Some(Self::CmdRogueTournExpNotify), - "CmdRogueTournLevelInfoUpdateScNotify" => { - Some(Self::CmdRogueTournLevelInfoUpdateScNotify) - } - "CmdRogueTournGetSeasonTalentInfoCsReq" => { - Some(Self::CmdRogueTournGetSeasonTalentInfoCsReq) - } - "CmdRogueTournGetAllArchiveScRsp" => { - Some(Self::CmdRogueTournGetAllArchiveScRsp) - } - "CmdRogueTournDeleteArchiveCsReq" => { - Some(Self::CmdRogueTournDeleteArchiveCsReq) - } - "CmdRogueTournGetAllArchiveCsReq" => { - Some(Self::CmdRogueTournGetAllArchiveCsReq) - } - "CmdRogueTournReviveCostUpdateScNotify" => { - Some(Self::CmdRogueTournReviveCostUpdateScNotify) - } - "CmdRogueTournEnterRoomScRsp" => Some(Self::CmdRogueTournEnterRoomScRsp), - "CmdRogueTournReviveAvatarCsReq" => { - Some(Self::CmdRogueTournReviveAvatarCsReq) - } - "CmdRogueTournEnterLayerScRsp" => Some(Self::CmdRogueTournEnterLayerScRsp), - "CmdRogueTournAreaUpdateScNotify" => { - Some(Self::CmdRogueTournAreaUpdateScNotify) - } - "CmdRogueTournGetMiscRealTimeDataScRsp" => { - Some(Self::CmdRogueTournGetMiscRealTimeDataScRsp) - } - "CmdRogueTournHandBookNotify" => Some(Self::CmdRogueTournHandBookNotify), - "CmdRogueTournGetPermanentTalentInfoCsReq" => { - Some(Self::CmdRogueTournGetPermanentTalentInfoCsReq) - } - "CmdRogueTournDeleteBuildRefScRsp" => { - Some(Self::CmdRogueTournDeleteBuildRefScRsp) - } - "CmdRogueTournUseSuperRewardKeyCsReq" => { - Some(Self::CmdRogueTournUseSuperRewardKeyCsReq) - } - "CmdRogueTournEnterRoomCsReq" => Some(Self::CmdRogueTournEnterRoomCsReq), - "CmdRogueTournSaveBuildRefScRsp" => { - Some(Self::CmdRogueTournSaveBuildRefScRsp) - } - "CmdRogueTournEnablePermanentTalentScRsp" => { - Some(Self::CmdRogueTournEnablePermanentTalentScRsp) - } - "CmdRogueTournTakeExpRewardScRsp" => { - Some(Self::CmdRogueTournTakeExpRewardScRsp) - } - "CmdRogueTournRenameArchiveCsReq" => { - Some(Self::CmdRogueTournRenameArchiveCsReq) - } - "CmdRogueTournGetArchiveRepositoryScRsp" => { - Some(Self::CmdRogueTournGetArchiveRepositoryScRsp) - } - "CmdRogueTournSettleCsReq" => Some(Self::CmdRogueTournSettleCsReq), + "DIFMHHJDFGI_ALOCMFAKBKP" => Some(Self::DifmhhjdfgiAlocmfakbkp), + "CmdPDBEEBMJJDB" => Some(Self::CmdPdbeebmjjdb), + "CmdMMBHMGMADNP" => Some(Self::CmdMmbhmgmadnp), + "CmdMDNBEPPCHCJ" => Some(Self::CmdMdnbeppchcj), + "CmdAOOCNHIDGNN" => Some(Self::CmdAoocnhidgnn), + "CmdPAOBPIIDBDB" => Some(Self::CmdPaobpiidbdb), + "CmdNLEOJELEADF" => Some(Self::CmdNleojeleadf), + "CmdEFKCPPCLINI" => Some(Self::CmdEfkcppclini), + "CmdCEMEPHAFBEN" => Some(Self::CmdCemephafben), + "CmdKFAPGHFPOAM" => Some(Self::CmdKfapghfpoam), + "CmdBOAOLFBJAGJ" => Some(Self::CmdBoaolfbjagj), + "CmdMLMDECIBOEB" => Some(Self::CmdMlmdeciboeb), + "CmdLNLDMFOFFNM" => Some(Self::CmdLnldmfoffnm), + "CmdCFHDDAAJFIO" => Some(Self::CmdCfhddaajfio), + "CmdAKBJCJBIHLC" => Some(Self::CmdAkbjcjbihlc), + "CmdHPBOKBBJOHD" => Some(Self::CmdHpbokbbjohd), + "CmdOAKPNPEKJFF" => Some(Self::CmdOakpnpekjff), + "CmdDLIFNCLEKHL" => Some(Self::CmdDlifnclekhl), + "CmdHJPIIBCMGGC" => Some(Self::CmdHjpiibcmggc), + "CmdKCEJGCBBPPE" => Some(Self::CmdKcejgcbbppe), + "CmdGGBHOHNPHBO" => Some(Self::CmdGgbhohnphbo), + "CmdBFDADNAEHBG" => Some(Self::CmdBfdadnaehbg), + "CmdJBJBLDDKCFF" => Some(Self::CmdJbjblddkcff), + "CmdBNLFGHMPGLL" => Some(Self::CmdBnlfghmpgll), + "CmdBOKJMAGOFGA" => Some(Self::CmdBokjmagofga), + "CmdPIBAKIJCEOL" => Some(Self::CmdPibakijceol), + "CmdFCHBLIEKDIO" => Some(Self::CmdFchbliekdio), + "CmdHIECGAOJIHM" => Some(Self::CmdHiecgaojihm), + "CmdKLPKPGEPOPL" => Some(Self::CmdKlpkpgepopl), + "CmdKPFIALIIHLK" => Some(Self::CmdKpfialiihlk), + "CmdIDJKKNKJGFP" => Some(Self::CmdIdjkknkjgfp), + "CmdJBAGBPPIHFC" => Some(Self::CmdJbagbppihfc), + "CmdBNGDJIDDHNF" => Some(Self::CmdBngdjiddhnf), + "CmdPCFFAIPODFI" => Some(Self::CmdPcffaipodfi), + "CmdPFPFOBGPFBK" => Some(Self::CmdPfpfobgpfbk), + "CmdPCHHLGNHFJL" => Some(Self::CmdPchhlgnhfjl), + "CmdMBAJJFBEGMI" => Some(Self::CmdMbajjfbegmi), + "CmdDGJOJAEFENJ" => Some(Self::CmdDgjojaefenj), + "CmdDNJFHOHBEIH" => Some(Self::CmdDnjfhohbeih), + "CmdIHAKOOAGOHF" => Some(Self::CmdIhakooagohf), + "CmdOOACPALGDLJ" => Some(Self::CmdOoacpalgdlj), + "CmdHLBDHKLBFKL" => Some(Self::CmdHlbdhklbfkl), + "CmdFPBFPJJHEAA" => Some(Self::CmdFpbfpjjheaa), + "CmdLONGMLLNJHJ" => Some(Self::CmdLongmllnjhj), + "CmdOMMPOGNONLL" => Some(Self::CmdOmmpognonll), + "CmdOJLEHAPCALO" => Some(Self::CmdOjlehapcalo), + "CmdOHCIMEBNOOA" => Some(Self::CmdOhcimebnooa), + "CmdEABGBGMMPKN" => Some(Self::CmdEabgbgmmpkn), + "CmdCCCJDJCBJLO" => Some(Self::CmdCccjdjcbjlo), + "CmdKAADNHDENPI" => Some(Self::CmdKaadnhdenpi), + "CmdLKCMNAAIMMM" => Some(Self::CmdLkcmnaaimmm), + "CmdCMMAFJGOEBO" => Some(Self::CmdCmmafjgoebo), + "CmdKAPJNAKMKOB" => Some(Self::CmdKapjnakmkob), + "CmdGOPCELBLMEK" => Some(Self::CmdGopcelblmek), + "CmdOOILNIEOEHE" => Some(Self::CmdOoilnieoehe), + "CmdJIFGEAGMFGG" => Some(Self::CmdJifgeagmfgg), + "CmdBEBCPIBJNOI" => Some(Self::CmdBebcpibjnoi), + "CmdLLOHGKBAPOE" => Some(Self::CmdLlohgkbapoe), + "CmdKBLGBOKEIJE" => Some(Self::CmdKblgbokeije), + "CmdHPLHFAIIDEO" => Some(Self::CmdHplhfaiideo), + "CmdKPBBMANACIC" => Some(Self::CmdKpbbmanacic), + "CmdGIEMCFEHCII" => Some(Self::CmdGiemcfehcii), + "CmdIEGIMEHHLKH" => Some(Self::CmdIegimehhlkh), + "CmdIKAIOFPBHJM" => Some(Self::CmdIkaiofpbhjm), + "CmdOFHDPLMJPCA" => Some(Self::CmdOfhdplmjpca), + "CmdKMMNPGMBIAH" => Some(Self::CmdKmmnpgmbiah), + "CmdGBKEEFDDELM" => Some(Self::CmdGbkeefddelm), + "CmdOGBGKDNMJJN" => Some(Self::CmdOgbgkdnmjjn), + "CmdDPFFEELFABM" => Some(Self::CmdDpffeelfabm), + "CmdDDPEFJCMLJL" => Some(Self::CmdDdpefjcmljl), + "CmdOMLIBKJMKKC" => Some(Self::CmdOmlibkjmkkc), _ => None, } } @@ -82381,40 +80516,32 @@ impl CmdRogueTournType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ogadimmljhn { - RogueTournLevelStatusNone = 0, - RogueTournLevelStatusProcessing = 1, - RogueTournLevelStatusFinished = 2, - RogueTournLevelStatusSettled = 3, +pub enum Pnkleigcdme { + Alocmfakbkp = 0, + Egnpknbehej = 1, + Gconmakmpbh = 2, + Jehfndmlinn = 3, } -impl Ogadimmljhn { +impl Pnkleigcdme { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueTournLevelStatusNone => "ROGUE_TOURN_LEVEL_STATUS_NONE", - Self::RogueTournLevelStatusProcessing => { - "ROGUE_TOURN_LEVEL_STATUS_PROCESSING" - } - Self::RogueTournLevelStatusFinished => "ROGUE_TOURN_LEVEL_STATUS_FINISHED", - Self::RogueTournLevelStatusSettled => "ROGUE_TOURN_LEVEL_STATUS_SETTLED", + Self::Alocmfakbkp => "PNKLEIGCDME_ALOCMFAKBKP", + Self::Egnpknbehej => "PNKLEIGCDME_EGNPKNBEHEJ", + Self::Gconmakmpbh => "PNKLEIGCDME_GCONMAKMPBH", + Self::Jehfndmlinn => "PNKLEIGCDME_JEHFNDMLINN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_TOURN_LEVEL_STATUS_NONE" => Some(Self::RogueTournLevelStatusNone), - "ROGUE_TOURN_LEVEL_STATUS_PROCESSING" => { - Some(Self::RogueTournLevelStatusProcessing) - } - "ROGUE_TOURN_LEVEL_STATUS_FINISHED" => { - Some(Self::RogueTournLevelStatusFinished) - } - "ROGUE_TOURN_LEVEL_STATUS_SETTLED" => { - Some(Self::RogueTournLevelStatusSettled) - } + "PNKLEIGCDME_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "PNKLEIGCDME_EGNPKNBEHEJ" => Some(Self::Egnpknbehej), + "PNKLEIGCDME_GCONMAKMPBH" => Some(Self::Gconmakmpbh), + "PNKLEIGCDME_JEHFNDMLINN" => Some(Self::Jehfndmlinn), _ => None, } } @@ -82422,33 +80549,29 @@ impl Ogadimmljhn { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Odbnigdlncf { - RogueTournLayerStatusNone = 0, - RogueTournLayerStatusProcessing = 1, - RogueTournLayerStatusFinish = 2, +pub enum Dponalildcj { + Alocmfakbkp = 0, + Egnpknbehej = 1, + Eddpgfacjae = 2, } -impl Odbnigdlncf { +impl Dponalildcj { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueTournLayerStatusNone => "ROGUE_TOURN_LAYER_STATUS_NONE", - Self::RogueTournLayerStatusProcessing => { - "ROGUE_TOURN_LAYER_STATUS_PROCESSING" - } - Self::RogueTournLayerStatusFinish => "ROGUE_TOURN_LAYER_STATUS_FINISH", + Self::Alocmfakbkp => "DPONALILDCJ_ALOCMFAKBKP", + Self::Egnpknbehej => "DPONALILDCJ_EGNPKNBEHEJ", + Self::Eddpgfacjae => "DPONALILDCJ_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_TOURN_LAYER_STATUS_NONE" => Some(Self::RogueTournLayerStatusNone), - "ROGUE_TOURN_LAYER_STATUS_PROCESSING" => { - Some(Self::RogueTournLayerStatusProcessing) - } - "ROGUE_TOURN_LAYER_STATUS_FINISH" => Some(Self::RogueTournLayerStatusFinish), + "DPONALILDCJ_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "DPONALILDCJ_EGNPKNBEHEJ" => Some(Self::Egnpknbehej), + "DPONALILDCJ_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -82456,34 +80579,32 @@ impl Odbnigdlncf { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Lmiknfdlffo { - RogueTournRoomStatusNone = 0, - RogueTournRoomStatusInited = 1, - RogueTournRoomStatusProcessing = 2, - RogueTournRoomStatusFinish = 3, +pub enum Glokafollok { + Alocmfakbkp = 0, + Okllngedeld = 1, + Egnpknbehej = 2, + Eddpgfacjae = 3, } -impl Lmiknfdlffo { +impl Glokafollok { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueTournRoomStatusNone => "ROGUE_TOURN_ROOM_STATUS_NONE", - Self::RogueTournRoomStatusInited => "ROGUE_TOURN_ROOM_STATUS_INITED", - Self::RogueTournRoomStatusProcessing => "ROGUE_TOURN_ROOM_STATUS_PROCESSING", - Self::RogueTournRoomStatusFinish => "ROGUE_TOURN_ROOM_STATUS_FINISH", + Self::Alocmfakbkp => "GLOKAFOLLOK_ALOCMFAKBKP", + Self::Okllngedeld => "GLOKAFOLLOK_OKLLNGEDELD", + Self::Egnpknbehej => "GLOKAFOLLOK_EGNPKNBEHEJ", + Self::Eddpgfacjae => "GLOKAFOLLOK_EDDPGFACJAE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_TOURN_ROOM_STATUS_NONE" => Some(Self::RogueTournRoomStatusNone), - "ROGUE_TOURN_ROOM_STATUS_INITED" => Some(Self::RogueTournRoomStatusInited), - "ROGUE_TOURN_ROOM_STATUS_PROCESSING" => { - Some(Self::RogueTournRoomStatusProcessing) - } - "ROGUE_TOURN_ROOM_STATUS_FINISH" => Some(Self::RogueTournRoomStatusFinish), + "GLOKAFOLLOK_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "GLOKAFOLLOK_OKLLNGEDELD" => Some(Self::Okllngedeld), + "GLOKAFOLLOK_EGNPKNBEHEJ" => Some(Self::Egnpknbehej), + "GLOKAFOLLOK_EDDPGFACJAE" => Some(Self::Eddpgfacjae), _ => None, } } @@ -82491,36 +80612,32 @@ impl Lmiknfdlffo { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Akkhkmecafl { - RogueTournSettleReasonNone = 0, - RogueTournSettleReasonWin = 1, - RogueTournSettleReasonFail = 2, - RogueTournSettleReasonInterrupt = 3, +pub enum Acoioppidho { + Alocmfakbkp = 0, + Bbobmpgblao = 1, + Lpjembccgpd = 2, + Bgiccmgambm = 3, } -impl Akkhkmecafl { +impl Acoioppidho { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueTournSettleReasonNone => "ROGUE_TOURN_SETTLE_REASON_NONE", - Self::RogueTournSettleReasonWin => "ROGUE_TOURN_SETTLE_REASON_WIN", - Self::RogueTournSettleReasonFail => "ROGUE_TOURN_SETTLE_REASON_FAIL", - Self::RogueTournSettleReasonInterrupt => { - "ROGUE_TOURN_SETTLE_REASON_INTERRUPT" - } + Self::Alocmfakbkp => "ACOIOPPIDHO_ALOCMFAKBKP", + Self::Bbobmpgblao => "ACOIOPPIDHO_BBOBMPGBLAO", + Self::Lpjembccgpd => "ACOIOPPIDHO_LPJEMBCCGPD", + Self::Bgiccmgambm => "ACOIOPPIDHO_BGICCMGAMBM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_TOURN_SETTLE_REASON_NONE" => Some(Self::RogueTournSettleReasonNone), - "ROGUE_TOURN_SETTLE_REASON_WIN" => Some(Self::RogueTournSettleReasonWin), - "ROGUE_TOURN_SETTLE_REASON_FAIL" => Some(Self::RogueTournSettleReasonFail), - "ROGUE_TOURN_SETTLE_REASON_INTERRUPT" => { - Some(Self::RogueTournSettleReasonInterrupt) - } + "ACOIOPPIDHO_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "ACOIOPPIDHO_BBOBMPGBLAO" => Some(Self::Bbobmpgblao), + "ACOIOPPIDHO_LPJEMBCCGPD" => Some(Self::Lpjembccgpd), + "ACOIOPPIDHO_BGICCMGAMBM" => Some(Self::Bgiccmgambm), _ => None, } } @@ -82528,49 +80645,41 @@ impl Akkhkmecafl { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ollchpfkhaa { - RogueTournHandbookNone = 0, - RogueTournHandbookSimpleMiracle = 1, - RogueTournHandbookHexMiracle = 2, - RogueTournHandbookBuff = 3, - RogueTournHandbookEvent = 4, - RogueTournHandbookFormula = 5, - RogueTournHandbookTitanBless = 6, +pub enum Hnbndhjfpfm { + Fhklajknfea = 0, + Pgeminbhfjn = 1, + Fijdahojmml = 2, + Efgbcbifhgk = 3, + Nfiioeodagd = 4, + Pjodgdffakg = 5, + Hhjhioikkim = 6, } -impl Ollchpfkhaa { +impl Hnbndhjfpfm { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::RogueTournHandbookNone => "ROGUE_TOURN_HANDBOOK_NONE", - Self::RogueTournHandbookSimpleMiracle => { - "ROGUE_TOURN_HANDBOOK_SIMPLE_MIRACLE" - } - Self::RogueTournHandbookHexMiracle => "ROGUE_TOURN_HANDBOOK_HEX_MIRACLE", - Self::RogueTournHandbookBuff => "ROGUE_TOURN_HANDBOOK_BUFF", - Self::RogueTournHandbookEvent => "ROGUE_TOURN_HANDBOOK_EVENT", - Self::RogueTournHandbookFormula => "ROGUE_TOURN_HANDBOOK_FORMULA", - Self::RogueTournHandbookTitanBless => "ROGUE_TOURN_HANDBOOK_TITAN_BLESS", + Self::Fhklajknfea => "HNBNDHJFPFM_FHKLAJKNFEA", + Self::Pgeminbhfjn => "HNBNDHJFPFM_PGEMINBHFJN", + Self::Fijdahojmml => "HNBNDHJFPFM_FIJDAHOJMML", + Self::Efgbcbifhgk => "HNBNDHJFPFM_EFGBCBIFHGK", + Self::Nfiioeodagd => "HNBNDHJFPFM_NFIIOEODAGD", + Self::Pjodgdffakg => "HNBNDHJFPFM_PJODGDFFAKG", + Self::Hhjhioikkim => "HNBNDHJFPFM_HHJHIOIKKIM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ROGUE_TOURN_HANDBOOK_NONE" => Some(Self::RogueTournHandbookNone), - "ROGUE_TOURN_HANDBOOK_SIMPLE_MIRACLE" => { - Some(Self::RogueTournHandbookSimpleMiracle) - } - "ROGUE_TOURN_HANDBOOK_HEX_MIRACLE" => { - Some(Self::RogueTournHandbookHexMiracle) - } - "ROGUE_TOURN_HANDBOOK_BUFF" => Some(Self::RogueTournHandbookBuff), - "ROGUE_TOURN_HANDBOOK_EVENT" => Some(Self::RogueTournHandbookEvent), - "ROGUE_TOURN_HANDBOOK_FORMULA" => Some(Self::RogueTournHandbookFormula), - "ROGUE_TOURN_HANDBOOK_TITAN_BLESS" => { - Some(Self::RogueTournHandbookTitanBless) - } + "HNBNDHJFPFM_FHKLAJKNFEA" => Some(Self::Fhklajknfea), + "HNBNDHJFPFM_PGEMINBHFJN" => Some(Self::Pgeminbhfjn), + "HNBNDHJFPFM_FIJDAHOJMML" => Some(Self::Fijdahojmml), + "HNBNDHJFPFM_EFGBCBIFHGK" => Some(Self::Efgbcbifhgk), + "HNBNDHJFPFM_NFIIOEODAGD" => Some(Self::Nfiioeodagd), + "HNBNDHJFPFM_PJODGDFFAKG" => Some(Self::Pjodgdffakg), + "HNBNDHJFPFM_HHJHIOIKKIM" => Some(Self::Hhjhioikkim), _ => None, } } @@ -82579,13 +80688,13 @@ impl Ollchpfkhaa { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdRollShopType { - None = 0, - CmdGetRollShopInfoCsReq = 6907, - CmdGetRollShopInfoScRsp = 6901, - CmdDoGachaInRollShopScRsp = 6919, - CmdDoGachaInRollShopCsReq = 6913, - CmdTakeRollShopRewardScRsp = 6915, - CmdTakeRollShopRewardCsReq = 6903, + OofjnpidkfnAlocmfakbkp = 0, + CmdDoGachaInRollShopScRsp = 6905, + CmdGetRollShopInfoCsReq = 6913, + CmdDoGachaInRollShopCsReq = 6909, + CmdGetRollShopInfoScRsp = 6906, + CmdTakeRollShopRewardScRsp = 6904, + CmdTakeRollShopRewardCsReq = 6914, } impl CmdRollShopType { /// String value of the enum field names used in the ProtoBuf definition. @@ -82594,11 +80703,11 @@ impl CmdRollShopType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdRollShopTypeNone", - Self::CmdGetRollShopInfoCsReq => "CmdGetRollShopInfoCsReq", - Self::CmdGetRollShopInfoScRsp => "CmdGetRollShopInfoScRsp", + Self::OofjnpidkfnAlocmfakbkp => "OOFJNPIDKFN_ALOCMFAKBKP", Self::CmdDoGachaInRollShopScRsp => "CmdDoGachaInRollShopScRsp", + Self::CmdGetRollShopInfoCsReq => "CmdGetRollShopInfoCsReq", Self::CmdDoGachaInRollShopCsReq => "CmdDoGachaInRollShopCsReq", + Self::CmdGetRollShopInfoScRsp => "CmdGetRollShopInfoScRsp", Self::CmdTakeRollShopRewardScRsp => "CmdTakeRollShopRewardScRsp", Self::CmdTakeRollShopRewardCsReq => "CmdTakeRollShopRewardCsReq", } @@ -82606,11 +80715,11 @@ impl CmdRollShopType { /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdRollShopTypeNone" => Some(Self::None), - "CmdGetRollShopInfoCsReq" => Some(Self::CmdGetRollShopInfoCsReq), - "CmdGetRollShopInfoScRsp" => Some(Self::CmdGetRollShopInfoScRsp), + "OOFJNPIDKFN_ALOCMFAKBKP" => Some(Self::OofjnpidkfnAlocmfakbkp), "CmdDoGachaInRollShopScRsp" => Some(Self::CmdDoGachaInRollShopScRsp), + "CmdGetRollShopInfoCsReq" => Some(Self::CmdGetRollShopInfoCsReq), "CmdDoGachaInRollShopCsReq" => Some(Self::CmdDoGachaInRollShopCsReq), + "CmdGetRollShopInfoScRsp" => Some(Self::CmdGetRollShopInfoScRsp), "CmdTakeRollShopRewardScRsp" => Some(Self::CmdTakeRollShopRewardScRsp), "CmdTakeRollShopRewardCsReq" => Some(Self::CmdTakeRollShopRewardCsReq), _ => None, @@ -82621,91 +80730,91 @@ impl CmdRollShopType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdSceneType { - None = 0, - CmdSceneEntityMoveScNotify = 1481, - CmdRefreshTriggerByClientScRsp = 1500, - CmdSpringRefreshCsReq = 1449, - CmdReturnLastTownScRsp = 1451, - CmdSetClientPausedCsReq = 1410, - CmdSceneCastSkillMpUpdateScNotify = 1437, - CmdEnteredSceneChangeScNotify = 1413, - CmdGroupStateChangeScRsp = 1432, - CmdEnterSceneByServerScNotify = 1433, - CmdSceneEntityMoveCsReq = 1499, - CmdActivateFarmElementScRsp = 1406, - CmdDeleteSummonUnitScRsp = 1428, - CmdDeactivateFarmElementCsReq = 1470, - CmdGroupStateChangeScNotify = 1491, - CmdReturnLastTownCsReq = 1405, - CmdSceneReviveAfterRebattleCsReq = 1403, - CmdSceneEntityTeleportScRsp = 1418, - CmdOpenChestScNotify = 1427, - CmdSpringRefreshScRsp = 1480, - CmdLastSpringRefreshTimeNotify = 1477, - CmdSyncEntityBuffChangeListScNotify = 1457, - CmdGetEnteredSceneScRsp = 1490, - CmdGameplayCounterUpdateScNotify = 1467, - CmdSetGroupCustomSaveDataCsReq = 1439, + KcihffcodfnAlocmfakbkp = 0, + CmdEnteredSceneChangeScNotify = 1408, + CmdChangePropTimelineInfoScRsp = 1491, + CmdGetSceneMapInfoScRsp = 1454, + CmdGameplayCounterCountDownCsReq = 1423, + CmdSetClientPausedCsReq = 1403, + KcihffcodfnEfdkpdnfpgg = 1406, + CmdSceneEntityMoveCsReq = 1447, + CmdDeleteSummonUnitScRsp = 1412, + CmdRefreshTriggerByClientScRsp = 1464, + CmdGroupStateChangeScNotify = 1494, + CmdSceneCastSkillMpUpdateScNotify = 1481, + CmdActivateFarmElementScRsp = 1485, + CmdSceneReviveAfterRebattleCsReq = 1492, + CmdSceneEntityTeleportScRsp = 1483, + CmdUnlockTeleportNotify = 1442, + CmdSceneEntityTeleportCsReq = 1480, + KcihffcodfnGfpjhicieod = 1470, + CmdStartCocoonStageCsReq = 1419, + CmdGameplayCounterRecoverCsReq = 1424, + CmdRecoverAllLineupCsReq = 1401, + CmdSetCurInteractEntityScRsp = 1413, + CmdEnterSectionScRsp = 1457, + CmdSceneUpdatePositionVersionNotify = 1445, + CmdGameplayCounterRecoverScRsp = 1471, + CmdSceneGroupRefreshScNotify = 1404, + CmdUnlockedAreaMapScNotify = 1405, + CmdChangePropTimelineInfoCsReq = 1495, + CmdReEnterLastElementStageScRsp = 1418, + CmdSceneReviveAfterRebattleScRsp = 1414, + CmdGameplayCounterCountDownScRsp = 1490, + CmdSceneCastSkillCsReq = 1451, + CmdSceneCastSkillCostMpScRsp = 1450, + KcihffcodfnJmbajclechb = 1479, + CmdSyncEntityBuffChangeListScNotify = 1476, + CmdSceneEntityMoveScRsp = 1409, + CmdUpdateGroupPropertyScRsp = 1429, + CmdSyncServerSceneChangeNotify = 1440, + CmdGroupStateChangeScRsp = 1458, + CmdDeactivateFarmElementScRsp = 1466, + CmdSpringRefreshScRsp = 1410, + CmdEnterSectionCsReq = 1426, + CmdEnterSceneCsReq = 1453, + CmdLastSpringRefreshTimeNotify = 1467, + CmdSetClientPausedScRsp = 1455, + CmdInteractPropScRsp = 1417, + CmdUpdateMechanismBarScNotify = 1439, CmdReEnterLastElementStageCsReq = 1402, - CmdSetTrainWorldIdScRsp = 1447, - CmdStartCocoonStageCsReq = 1474, - CmdInteractPropCsReq = 1498, - CmdSetClientPausedScRsp = 1453, - CmdSavePointsInfoNotify = 1435, - CmdEntityBindPropCsReq = 1456, - CmdGroupStateChangeCsReq = 1443, - CmdChangePropTimelineInfoScRsp = 1444, - CmdSceneUpdatePositionVersionNotify = 1469, - CmdGameplayCounterRecoverCsReq = 1484, - CmdSceneCastSkillCsReq = 1483, - CmdRecoverAllLineupCsReq = 1460, - CmdSceneReviveAfterRebattleScRsp = 1409, - CmdSceneEntityMoveScRsp = 1423, - CmdRecoverAllLineupScRsp = 1471, - CmdEntityBindPropScRsp = 1421, - CmdGameplayCounterCountDownCsReq = 1408, - CmdGetSceneMapInfoCsReq = 1482, - CmdGetCurSceneInfoCsReq = 1494, - CmdSceneEnterStageCsReq = 1429, - CmdSetCurInteractEntityScRsp = 1450, - CmdStartCocoonStageScRsp = 1416, - CmdGetUnlockTeleportScRsp = 1458, - CmdScenePlaneEventScNotify = 1476, - CmdGetUnlockTeleportCsReq = 1446, - CmdRefreshTriggerByClientCsReq = 1487, - CmdDeactivateFarmElementScRsp = 1441, - CmdGetEnteredSceneCsReq = 1473, - CmdActivateFarmElementCsReq = 1412, - CmdChangePropTimelineInfoCsReq = 1419, - CmdUpdateGroupPropertyScRsp = 1414, - CmdSetTrainWorldIdCsReq = 1407, - CmdEnterSectionCsReq = 1462, - CmdSceneCastSkillCostMpScRsp = 1492, - CmdSyncServerSceneChangeNotify = 1464, - CmdEnterSectionScRsp = 1459, - CmdDeleteSummonUnitCsReq = 1448, - CmdSceneEntityTeleportCsReq = 1430, - CmdGameplayCounterRecoverScRsp = 1417, - CmdSceneGroupRefreshScNotify = 1493, - CmdTrainWorldIdChangeScNotify = 1489, - CmdUpdateFloorSavedValueNotify = 1431, - CmdGameplayCounterCountDownScRsp = 1424, - CmdUpdateGroupPropertyCsReq = 1434, - CmdSceneEnterStageScRsp = 1438, - CmdReEnterLastElementStageScRsp = 1488, - CmdUnlockTeleportNotify = 1478, - CmdEnterSceneCsReq = 1454, - CmdGetCurSceneInfoScRsp = 1452, - CmdGetSceneMapInfoScRsp = 1475, - CmdRefreshTriggerByClientScNotify = 1436, - CmdUpdateMechanismBarScNotify = 1466, - CmdSceneCastSkillCostMpCsReq = 1415, - CmdSceneCastSkillScRsp = 1486, - CmdSetCurInteractEntityCsReq = 1455, - CmdSetGroupCustomSaveDataScRsp = 1445, - CmdUnlockedAreaMapScNotify = 1426, - CmdEnterSceneScRsp = 1461, - CmdInteractPropScRsp = 1465, + CmdStartCocoonStageScRsp = 1469, + CmdDeleteSummonUnitCsReq = 1416, + CmdActivateFarmElementCsReq = 1436, + CmdUpdateGroupPropertyCsReq = 1463, + CmdInteractPropCsReq = 1438, + CmdUpdateFloorSavedValueNotify = 1499, + CmdSetTrainWorldIdCsReq = 1484, + CmdSceneEntityMoveScNotify = 1461, + CmdReturnLastTownScRsp = 1435, + CmdSceneEnterStageCsReq = 1498, + CmdTrainWorldIdChangeScNotify = 1443, + CmdRefreshTriggerByClientScNotify = 1456, + CmdGetCurSceneInfoCsReq = 1489, + CmdSetTrainWorldIdScRsp = 1482, + CmdSetGroupCustomSaveDataScRsp = 1427, + CmdSavePointsInfoNotify = 1477, + CmdEnterSceneByServerScNotify = 1448, + CmdSceneCastSkillCostMpCsReq = 1452, + CmdRefreshTriggerByClientCsReq = 1475, + CmdRecoverAllLineupScRsp = 1449, + CmdSceneEnterStageScRsp = 1446, + CmdGetCurSceneInfoScRsp = 1420, + CmdGetEnteredSceneScRsp = 1460, + CmdGameplayCounterUpdateScNotify = 1444, + CmdOpenChestScNotify = 1422, + CmdGetUnlockTeleportScRsp = 1478, + CmdGetSceneMapInfoCsReq = 1428, + CmdSceneCastSkillScRsp = 1411, + KcihffcodfnOilpligkhak = 1462, + CmdEntityBindPropScRsp = 1488, + CmdDeactivateFarmElementCsReq = 1433, + CmdGroupStateChangeCsReq = 1421, + CmdSpringRefreshCsReq = 1437, + CmdEnterSceneScRsp = 1496, + CmdGetEnteredSceneCsReq = 1487, + CmdScenePlaneEventScNotify = 1486, + CmdGetUnlockTeleportCsReq = 1459, } impl CmdSceneType { /// String value of the enum field names used in the ProtoBuf definition. @@ -82714,233 +80823,231 @@ impl CmdSceneType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdSceneTypeNone", - Self::CmdSceneEntityMoveScNotify => "CmdSceneEntityMoveScNotify", - Self::CmdRefreshTriggerByClientScRsp => "CmdRefreshTriggerByClientScRsp", - Self::CmdSpringRefreshCsReq => "CmdSpringRefreshCsReq", - Self::CmdReturnLastTownScRsp => "CmdReturnLastTownScRsp", + Self::KcihffcodfnAlocmfakbkp => "KCIHFFCODFN_ALOCMFAKBKP", + Self::CmdEnteredSceneChangeScNotify => "CmdEnteredSceneChangeScNotify", + Self::CmdChangePropTimelineInfoScRsp => "CmdChangePropTimelineInfoScRsp", + Self::CmdGetSceneMapInfoScRsp => "CmdGetSceneMapInfoScRsp", + Self::CmdGameplayCounterCountDownCsReq => "CmdGameplayCounterCountDownCsReq", Self::CmdSetClientPausedCsReq => "CmdSetClientPausedCsReq", + Self::KcihffcodfnEfdkpdnfpgg => "KCIHFFCODFN_EFDKPDNFPGG", + Self::CmdSceneEntityMoveCsReq => "CmdSceneEntityMoveCsReq", + Self::CmdDeleteSummonUnitScRsp => "CmdDeleteSummonUnitScRsp", + Self::CmdRefreshTriggerByClientScRsp => "CmdRefreshTriggerByClientScRsp", + Self::CmdGroupStateChangeScNotify => "CmdGroupStateChangeScNotify", Self::CmdSceneCastSkillMpUpdateScNotify => { "CmdSceneCastSkillMpUpdateScNotify" } - Self::CmdEnteredSceneChangeScNotify => "CmdEnteredSceneChangeScNotify", - Self::CmdGroupStateChangeScRsp => "CmdGroupStateChangeScRsp", - Self::CmdEnterSceneByServerScNotify => "CmdEnterSceneByServerScNotify", - Self::CmdSceneEntityMoveCsReq => "CmdSceneEntityMoveCsReq", Self::CmdActivateFarmElementScRsp => "CmdActivateFarmElementScRsp", - Self::CmdDeleteSummonUnitScRsp => "CmdDeleteSummonUnitScRsp", - Self::CmdDeactivateFarmElementCsReq => "CmdDeactivateFarmElementCsReq", - Self::CmdGroupStateChangeScNotify => "CmdGroupStateChangeScNotify", - Self::CmdReturnLastTownCsReq => "CmdReturnLastTownCsReq", Self::CmdSceneReviveAfterRebattleCsReq => "CmdSceneReviveAfterRebattleCsReq", Self::CmdSceneEntityTeleportScRsp => "CmdSceneEntityTeleportScRsp", - Self::CmdOpenChestScNotify => "CmdOpenChestScNotify", - Self::CmdSpringRefreshScRsp => "CmdSpringRefreshScRsp", - Self::CmdLastSpringRefreshTimeNotify => "CmdLastSpringRefreshTimeNotify", - Self::CmdSyncEntityBuffChangeListScNotify => { - "CmdSyncEntityBuffChangeListScNotify" - } - Self::CmdGetEnteredSceneScRsp => "CmdGetEnteredSceneScRsp", - Self::CmdGameplayCounterUpdateScNotify => "CmdGameplayCounterUpdateScNotify", - Self::CmdSetGroupCustomSaveDataCsReq => "CmdSetGroupCustomSaveDataCsReq", - Self::CmdReEnterLastElementStageCsReq => "CmdReEnterLastElementStageCsReq", - Self::CmdSetTrainWorldIdScRsp => "CmdSetTrainWorldIdScRsp", + Self::CmdUnlockTeleportNotify => "CmdUnlockTeleportNotify", + Self::CmdSceneEntityTeleportCsReq => "CmdSceneEntityTeleportCsReq", + Self::KcihffcodfnGfpjhicieod => "KCIHFFCODFN_GFPJHICIEOD", Self::CmdStartCocoonStageCsReq => "CmdStartCocoonStageCsReq", - Self::CmdInteractPropCsReq => "CmdInteractPropCsReq", - Self::CmdSetClientPausedScRsp => "CmdSetClientPausedScRsp", - Self::CmdSavePointsInfoNotify => "CmdSavePointsInfoNotify", - Self::CmdEntityBindPropCsReq => "CmdEntityBindPropCsReq", - Self::CmdGroupStateChangeCsReq => "CmdGroupStateChangeCsReq", - Self::CmdChangePropTimelineInfoScRsp => "CmdChangePropTimelineInfoScRsp", + Self::CmdGameplayCounterRecoverCsReq => "CmdGameplayCounterRecoverCsReq", + Self::CmdRecoverAllLineupCsReq => "CmdRecoverAllLineupCsReq", + Self::CmdSetCurInteractEntityScRsp => "CmdSetCurInteractEntityScRsp", + Self::CmdEnterSectionScRsp => "CmdEnterSectionScRsp", Self::CmdSceneUpdatePositionVersionNotify => { "CmdSceneUpdatePositionVersionNotify" } - Self::CmdGameplayCounterRecoverCsReq => "CmdGameplayCounterRecoverCsReq", - Self::CmdSceneCastSkillCsReq => "CmdSceneCastSkillCsReq", - Self::CmdRecoverAllLineupCsReq => "CmdRecoverAllLineupCsReq", - Self::CmdSceneReviveAfterRebattleScRsp => "CmdSceneReviveAfterRebattleScRsp", - Self::CmdSceneEntityMoveScRsp => "CmdSceneEntityMoveScRsp", - Self::CmdRecoverAllLineupScRsp => "CmdRecoverAllLineupScRsp", - Self::CmdEntityBindPropScRsp => "CmdEntityBindPropScRsp", - Self::CmdGameplayCounterCountDownCsReq => "CmdGameplayCounterCountDownCsReq", - Self::CmdGetSceneMapInfoCsReq => "CmdGetSceneMapInfoCsReq", - Self::CmdGetCurSceneInfoCsReq => "CmdGetCurSceneInfoCsReq", - Self::CmdSceneEnterStageCsReq => "CmdSceneEnterStageCsReq", - Self::CmdSetCurInteractEntityScRsp => "CmdSetCurInteractEntityScRsp", - Self::CmdStartCocoonStageScRsp => "CmdStartCocoonStageScRsp", - Self::CmdGetUnlockTeleportScRsp => "CmdGetUnlockTeleportScRsp", - Self::CmdScenePlaneEventScNotify => "CmdScenePlaneEventScNotify", - Self::CmdGetUnlockTeleportCsReq => "CmdGetUnlockTeleportCsReq", - Self::CmdRefreshTriggerByClientCsReq => "CmdRefreshTriggerByClientCsReq", - Self::CmdDeactivateFarmElementScRsp => "CmdDeactivateFarmElementScRsp", - Self::CmdGetEnteredSceneCsReq => "CmdGetEnteredSceneCsReq", - Self::CmdActivateFarmElementCsReq => "CmdActivateFarmElementCsReq", - Self::CmdChangePropTimelineInfoCsReq => "CmdChangePropTimelineInfoCsReq", - Self::CmdUpdateGroupPropertyScRsp => "CmdUpdateGroupPropertyScRsp", - Self::CmdSetTrainWorldIdCsReq => "CmdSetTrainWorldIdCsReq", - Self::CmdEnterSectionCsReq => "CmdEnterSectionCsReq", - Self::CmdSceneCastSkillCostMpScRsp => "CmdSceneCastSkillCostMpScRsp", - Self::CmdSyncServerSceneChangeNotify => "CmdSyncServerSceneChangeNotify", - Self::CmdEnterSectionScRsp => "CmdEnterSectionScRsp", - Self::CmdDeleteSummonUnitCsReq => "CmdDeleteSummonUnitCsReq", - Self::CmdSceneEntityTeleportCsReq => "CmdSceneEntityTeleportCsReq", Self::CmdGameplayCounterRecoverScRsp => "CmdGameplayCounterRecoverScRsp", Self::CmdSceneGroupRefreshScNotify => "CmdSceneGroupRefreshScNotify", - Self::CmdTrainWorldIdChangeScNotify => "CmdTrainWorldIdChangeScNotify", - Self::CmdUpdateFloorSavedValueNotify => "CmdUpdateFloorSavedValueNotify", - Self::CmdGameplayCounterCountDownScRsp => "CmdGameplayCounterCountDownScRsp", - Self::CmdUpdateGroupPropertyCsReq => "CmdUpdateGroupPropertyCsReq", - Self::CmdSceneEnterStageScRsp => "CmdSceneEnterStageScRsp", + Self::CmdUnlockedAreaMapScNotify => "CmdUnlockedAreaMapScNotify", + Self::CmdChangePropTimelineInfoCsReq => "CmdChangePropTimelineInfoCsReq", Self::CmdReEnterLastElementStageScRsp => "CmdReEnterLastElementStageScRsp", - Self::CmdUnlockTeleportNotify => "CmdUnlockTeleportNotify", + Self::CmdSceneReviveAfterRebattleScRsp => "CmdSceneReviveAfterRebattleScRsp", + Self::CmdGameplayCounterCountDownScRsp => "CmdGameplayCounterCountDownScRsp", + Self::CmdSceneCastSkillCsReq => "CmdSceneCastSkillCsReq", + Self::CmdSceneCastSkillCostMpScRsp => "CmdSceneCastSkillCostMpScRsp", + Self::KcihffcodfnJmbajclechb => "KCIHFFCODFN_JMBAJCLECHB", + Self::CmdSyncEntityBuffChangeListScNotify => { + "CmdSyncEntityBuffChangeListScNotify" + } + Self::CmdSceneEntityMoveScRsp => "CmdSceneEntityMoveScRsp", + Self::CmdUpdateGroupPropertyScRsp => "CmdUpdateGroupPropertyScRsp", + Self::CmdSyncServerSceneChangeNotify => "CmdSyncServerSceneChangeNotify", + Self::CmdGroupStateChangeScRsp => "CmdGroupStateChangeScRsp", + Self::CmdDeactivateFarmElementScRsp => "CmdDeactivateFarmElementScRsp", + Self::CmdSpringRefreshScRsp => "CmdSpringRefreshScRsp", + Self::CmdEnterSectionCsReq => "CmdEnterSectionCsReq", Self::CmdEnterSceneCsReq => "CmdEnterSceneCsReq", - Self::CmdGetCurSceneInfoScRsp => "CmdGetCurSceneInfoScRsp", - Self::CmdGetSceneMapInfoScRsp => "CmdGetSceneMapInfoScRsp", + Self::CmdLastSpringRefreshTimeNotify => "CmdLastSpringRefreshTimeNotify", + Self::CmdSetClientPausedScRsp => "CmdSetClientPausedScRsp", + Self::CmdInteractPropScRsp => "CmdInteractPropScRsp", + Self::CmdUpdateMechanismBarScNotify => "CmdUpdateMechanismBarScNotify", + Self::CmdReEnterLastElementStageCsReq => "CmdReEnterLastElementStageCsReq", + Self::CmdStartCocoonStageScRsp => "CmdStartCocoonStageScRsp", + Self::CmdDeleteSummonUnitCsReq => "CmdDeleteSummonUnitCsReq", + Self::CmdActivateFarmElementCsReq => "CmdActivateFarmElementCsReq", + Self::CmdUpdateGroupPropertyCsReq => "CmdUpdateGroupPropertyCsReq", + Self::CmdInteractPropCsReq => "CmdInteractPropCsReq", + Self::CmdUpdateFloorSavedValueNotify => "CmdUpdateFloorSavedValueNotify", + Self::CmdSetTrainWorldIdCsReq => "CmdSetTrainWorldIdCsReq", + Self::CmdSceneEntityMoveScNotify => "CmdSceneEntityMoveScNotify", + Self::CmdReturnLastTownScRsp => "CmdReturnLastTownScRsp", + Self::CmdSceneEnterStageCsReq => "CmdSceneEnterStageCsReq", + Self::CmdTrainWorldIdChangeScNotify => "CmdTrainWorldIdChangeScNotify", Self::CmdRefreshTriggerByClientScNotify => { "CmdRefreshTriggerByClientScNotify" } - Self::CmdUpdateMechanismBarScNotify => "CmdUpdateMechanismBarScNotify", - Self::CmdSceneCastSkillCostMpCsReq => "CmdSceneCastSkillCostMpCsReq", - Self::CmdSceneCastSkillScRsp => "CmdSceneCastSkillScRsp", - Self::CmdSetCurInteractEntityCsReq => "CmdSetCurInteractEntityCsReq", + Self::CmdGetCurSceneInfoCsReq => "CmdGetCurSceneInfoCsReq", + Self::CmdSetTrainWorldIdScRsp => "CmdSetTrainWorldIdScRsp", Self::CmdSetGroupCustomSaveDataScRsp => "CmdSetGroupCustomSaveDataScRsp", - Self::CmdUnlockedAreaMapScNotify => "CmdUnlockedAreaMapScNotify", + Self::CmdSavePointsInfoNotify => "CmdSavePointsInfoNotify", + Self::CmdEnterSceneByServerScNotify => "CmdEnterSceneByServerScNotify", + Self::CmdSceneCastSkillCostMpCsReq => "CmdSceneCastSkillCostMpCsReq", + Self::CmdRefreshTriggerByClientCsReq => "CmdRefreshTriggerByClientCsReq", + Self::CmdRecoverAllLineupScRsp => "CmdRecoverAllLineupScRsp", + Self::CmdSceneEnterStageScRsp => "CmdSceneEnterStageScRsp", + Self::CmdGetCurSceneInfoScRsp => "CmdGetCurSceneInfoScRsp", + Self::CmdGetEnteredSceneScRsp => "CmdGetEnteredSceneScRsp", + Self::CmdGameplayCounterUpdateScNotify => "CmdGameplayCounterUpdateScNotify", + Self::CmdOpenChestScNotify => "CmdOpenChestScNotify", + Self::CmdGetUnlockTeleportScRsp => "CmdGetUnlockTeleportScRsp", + Self::CmdGetSceneMapInfoCsReq => "CmdGetSceneMapInfoCsReq", + Self::CmdSceneCastSkillScRsp => "CmdSceneCastSkillScRsp", + Self::KcihffcodfnOilpligkhak => "KCIHFFCODFN_OILPLIGKHAK", + Self::CmdEntityBindPropScRsp => "CmdEntityBindPropScRsp", + Self::CmdDeactivateFarmElementCsReq => "CmdDeactivateFarmElementCsReq", + Self::CmdGroupStateChangeCsReq => "CmdGroupStateChangeCsReq", + Self::CmdSpringRefreshCsReq => "CmdSpringRefreshCsReq", Self::CmdEnterSceneScRsp => "CmdEnterSceneScRsp", - Self::CmdInteractPropScRsp => "CmdInteractPropScRsp", + Self::CmdGetEnteredSceneCsReq => "CmdGetEnteredSceneCsReq", + Self::CmdScenePlaneEventScNotify => "CmdScenePlaneEventScNotify", + Self::CmdGetUnlockTeleportCsReq => "CmdGetUnlockTeleportCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdSceneTypeNone" => Some(Self::None), - "CmdSceneEntityMoveScNotify" => Some(Self::CmdSceneEntityMoveScNotify), + "KCIHFFCODFN_ALOCMFAKBKP" => Some(Self::KcihffcodfnAlocmfakbkp), + "CmdEnteredSceneChangeScNotify" => Some(Self::CmdEnteredSceneChangeScNotify), + "CmdChangePropTimelineInfoScRsp" => { + Some(Self::CmdChangePropTimelineInfoScRsp) + } + "CmdGetSceneMapInfoScRsp" => Some(Self::CmdGetSceneMapInfoScRsp), + "CmdGameplayCounterCountDownCsReq" => { + Some(Self::CmdGameplayCounterCountDownCsReq) + } + "CmdSetClientPausedCsReq" => Some(Self::CmdSetClientPausedCsReq), + "KCIHFFCODFN_EFDKPDNFPGG" => Some(Self::KcihffcodfnEfdkpdnfpgg), + "CmdSceneEntityMoveCsReq" => Some(Self::CmdSceneEntityMoveCsReq), + "CmdDeleteSummonUnitScRsp" => Some(Self::CmdDeleteSummonUnitScRsp), "CmdRefreshTriggerByClientScRsp" => { Some(Self::CmdRefreshTriggerByClientScRsp) } - "CmdSpringRefreshCsReq" => Some(Self::CmdSpringRefreshCsReq), - "CmdReturnLastTownScRsp" => Some(Self::CmdReturnLastTownScRsp), - "CmdSetClientPausedCsReq" => Some(Self::CmdSetClientPausedCsReq), + "CmdGroupStateChangeScNotify" => Some(Self::CmdGroupStateChangeScNotify), "CmdSceneCastSkillMpUpdateScNotify" => { Some(Self::CmdSceneCastSkillMpUpdateScNotify) } - "CmdEnteredSceneChangeScNotify" => Some(Self::CmdEnteredSceneChangeScNotify), - "CmdGroupStateChangeScRsp" => Some(Self::CmdGroupStateChangeScRsp), - "CmdEnterSceneByServerScNotify" => Some(Self::CmdEnterSceneByServerScNotify), - "CmdSceneEntityMoveCsReq" => Some(Self::CmdSceneEntityMoveCsReq), "CmdActivateFarmElementScRsp" => Some(Self::CmdActivateFarmElementScRsp), - "CmdDeleteSummonUnitScRsp" => Some(Self::CmdDeleteSummonUnitScRsp), - "CmdDeactivateFarmElementCsReq" => Some(Self::CmdDeactivateFarmElementCsReq), - "CmdGroupStateChangeScNotify" => Some(Self::CmdGroupStateChangeScNotify), - "CmdReturnLastTownCsReq" => Some(Self::CmdReturnLastTownCsReq), "CmdSceneReviveAfterRebattleCsReq" => { Some(Self::CmdSceneReviveAfterRebattleCsReq) } "CmdSceneEntityTeleportScRsp" => Some(Self::CmdSceneEntityTeleportScRsp), - "CmdOpenChestScNotify" => Some(Self::CmdOpenChestScNotify), - "CmdSpringRefreshScRsp" => Some(Self::CmdSpringRefreshScRsp), - "CmdLastSpringRefreshTimeNotify" => { - Some(Self::CmdLastSpringRefreshTimeNotify) - } - "CmdSyncEntityBuffChangeListScNotify" => { - Some(Self::CmdSyncEntityBuffChangeListScNotify) - } - "CmdGetEnteredSceneScRsp" => Some(Self::CmdGetEnteredSceneScRsp), - "CmdGameplayCounterUpdateScNotify" => { - Some(Self::CmdGameplayCounterUpdateScNotify) - } - "CmdSetGroupCustomSaveDataCsReq" => { - Some(Self::CmdSetGroupCustomSaveDataCsReq) - } - "CmdReEnterLastElementStageCsReq" => { - Some(Self::CmdReEnterLastElementStageCsReq) - } - "CmdSetTrainWorldIdScRsp" => Some(Self::CmdSetTrainWorldIdScRsp), + "CmdUnlockTeleportNotify" => Some(Self::CmdUnlockTeleportNotify), + "CmdSceneEntityTeleportCsReq" => Some(Self::CmdSceneEntityTeleportCsReq), + "KCIHFFCODFN_GFPJHICIEOD" => Some(Self::KcihffcodfnGfpjhicieod), "CmdStartCocoonStageCsReq" => Some(Self::CmdStartCocoonStageCsReq), - "CmdInteractPropCsReq" => Some(Self::CmdInteractPropCsReq), - "CmdSetClientPausedScRsp" => Some(Self::CmdSetClientPausedScRsp), - "CmdSavePointsInfoNotify" => Some(Self::CmdSavePointsInfoNotify), - "CmdEntityBindPropCsReq" => Some(Self::CmdEntityBindPropCsReq), - "CmdGroupStateChangeCsReq" => Some(Self::CmdGroupStateChangeCsReq), - "CmdChangePropTimelineInfoScRsp" => { - Some(Self::CmdChangePropTimelineInfoScRsp) - } - "CmdSceneUpdatePositionVersionNotify" => { - Some(Self::CmdSceneUpdatePositionVersionNotify) - } "CmdGameplayCounterRecoverCsReq" => { Some(Self::CmdGameplayCounterRecoverCsReq) } - "CmdSceneCastSkillCsReq" => Some(Self::CmdSceneCastSkillCsReq), "CmdRecoverAllLineupCsReq" => Some(Self::CmdRecoverAllLineupCsReq), - "CmdSceneReviveAfterRebattleScRsp" => { - Some(Self::CmdSceneReviveAfterRebattleScRsp) - } - "CmdSceneEntityMoveScRsp" => Some(Self::CmdSceneEntityMoveScRsp), - "CmdRecoverAllLineupScRsp" => Some(Self::CmdRecoverAllLineupScRsp), - "CmdEntityBindPropScRsp" => Some(Self::CmdEntityBindPropScRsp), - "CmdGameplayCounterCountDownCsReq" => { - Some(Self::CmdGameplayCounterCountDownCsReq) - } - "CmdGetSceneMapInfoCsReq" => Some(Self::CmdGetSceneMapInfoCsReq), - "CmdGetCurSceneInfoCsReq" => Some(Self::CmdGetCurSceneInfoCsReq), - "CmdSceneEnterStageCsReq" => Some(Self::CmdSceneEnterStageCsReq), "CmdSetCurInteractEntityScRsp" => Some(Self::CmdSetCurInteractEntityScRsp), - "CmdStartCocoonStageScRsp" => Some(Self::CmdStartCocoonStageScRsp), - "CmdGetUnlockTeleportScRsp" => Some(Self::CmdGetUnlockTeleportScRsp), - "CmdScenePlaneEventScNotify" => Some(Self::CmdScenePlaneEventScNotify), - "CmdGetUnlockTeleportCsReq" => Some(Self::CmdGetUnlockTeleportCsReq), - "CmdRefreshTriggerByClientCsReq" => { - Some(Self::CmdRefreshTriggerByClientCsReq) - } - "CmdDeactivateFarmElementScRsp" => Some(Self::CmdDeactivateFarmElementScRsp), - "CmdGetEnteredSceneCsReq" => Some(Self::CmdGetEnteredSceneCsReq), - "CmdActivateFarmElementCsReq" => Some(Self::CmdActivateFarmElementCsReq), - "CmdChangePropTimelineInfoCsReq" => { - Some(Self::CmdChangePropTimelineInfoCsReq) - } - "CmdUpdateGroupPropertyScRsp" => Some(Self::CmdUpdateGroupPropertyScRsp), - "CmdSetTrainWorldIdCsReq" => Some(Self::CmdSetTrainWorldIdCsReq), - "CmdEnterSectionCsReq" => Some(Self::CmdEnterSectionCsReq), - "CmdSceneCastSkillCostMpScRsp" => Some(Self::CmdSceneCastSkillCostMpScRsp), - "CmdSyncServerSceneChangeNotify" => { - Some(Self::CmdSyncServerSceneChangeNotify) - } "CmdEnterSectionScRsp" => Some(Self::CmdEnterSectionScRsp), - "CmdDeleteSummonUnitCsReq" => Some(Self::CmdDeleteSummonUnitCsReq), - "CmdSceneEntityTeleportCsReq" => Some(Self::CmdSceneEntityTeleportCsReq), + "CmdSceneUpdatePositionVersionNotify" => { + Some(Self::CmdSceneUpdatePositionVersionNotify) + } "CmdGameplayCounterRecoverScRsp" => { Some(Self::CmdGameplayCounterRecoverScRsp) } "CmdSceneGroupRefreshScNotify" => Some(Self::CmdSceneGroupRefreshScNotify), - "CmdTrainWorldIdChangeScNotify" => Some(Self::CmdTrainWorldIdChangeScNotify), - "CmdUpdateFloorSavedValueNotify" => { - Some(Self::CmdUpdateFloorSavedValueNotify) + "CmdUnlockedAreaMapScNotify" => Some(Self::CmdUnlockedAreaMapScNotify), + "CmdChangePropTimelineInfoCsReq" => { + Some(Self::CmdChangePropTimelineInfoCsReq) + } + "CmdReEnterLastElementStageScRsp" => { + Some(Self::CmdReEnterLastElementStageScRsp) + } + "CmdSceneReviveAfterRebattleScRsp" => { + Some(Self::CmdSceneReviveAfterRebattleScRsp) } "CmdGameplayCounterCountDownScRsp" => { Some(Self::CmdGameplayCounterCountDownScRsp) } - "CmdUpdateGroupPropertyCsReq" => Some(Self::CmdUpdateGroupPropertyCsReq), - "CmdSceneEnterStageScRsp" => Some(Self::CmdSceneEnterStageScRsp), - "CmdReEnterLastElementStageScRsp" => { - Some(Self::CmdReEnterLastElementStageScRsp) + "CmdSceneCastSkillCsReq" => Some(Self::CmdSceneCastSkillCsReq), + "CmdSceneCastSkillCostMpScRsp" => Some(Self::CmdSceneCastSkillCostMpScRsp), + "KCIHFFCODFN_JMBAJCLECHB" => Some(Self::KcihffcodfnJmbajclechb), + "CmdSyncEntityBuffChangeListScNotify" => { + Some(Self::CmdSyncEntityBuffChangeListScNotify) } - "CmdUnlockTeleportNotify" => Some(Self::CmdUnlockTeleportNotify), + "CmdSceneEntityMoveScRsp" => Some(Self::CmdSceneEntityMoveScRsp), + "CmdUpdateGroupPropertyScRsp" => Some(Self::CmdUpdateGroupPropertyScRsp), + "CmdSyncServerSceneChangeNotify" => { + Some(Self::CmdSyncServerSceneChangeNotify) + } + "CmdGroupStateChangeScRsp" => Some(Self::CmdGroupStateChangeScRsp), + "CmdDeactivateFarmElementScRsp" => Some(Self::CmdDeactivateFarmElementScRsp), + "CmdSpringRefreshScRsp" => Some(Self::CmdSpringRefreshScRsp), + "CmdEnterSectionCsReq" => Some(Self::CmdEnterSectionCsReq), "CmdEnterSceneCsReq" => Some(Self::CmdEnterSceneCsReq), - "CmdGetCurSceneInfoScRsp" => Some(Self::CmdGetCurSceneInfoScRsp), - "CmdGetSceneMapInfoScRsp" => Some(Self::CmdGetSceneMapInfoScRsp), + "CmdLastSpringRefreshTimeNotify" => { + Some(Self::CmdLastSpringRefreshTimeNotify) + } + "CmdSetClientPausedScRsp" => Some(Self::CmdSetClientPausedScRsp), + "CmdInteractPropScRsp" => Some(Self::CmdInteractPropScRsp), + "CmdUpdateMechanismBarScNotify" => Some(Self::CmdUpdateMechanismBarScNotify), + "CmdReEnterLastElementStageCsReq" => { + Some(Self::CmdReEnterLastElementStageCsReq) + } + "CmdStartCocoonStageScRsp" => Some(Self::CmdStartCocoonStageScRsp), + "CmdDeleteSummonUnitCsReq" => Some(Self::CmdDeleteSummonUnitCsReq), + "CmdActivateFarmElementCsReq" => Some(Self::CmdActivateFarmElementCsReq), + "CmdUpdateGroupPropertyCsReq" => Some(Self::CmdUpdateGroupPropertyCsReq), + "CmdInteractPropCsReq" => Some(Self::CmdInteractPropCsReq), + "CmdUpdateFloorSavedValueNotify" => { + Some(Self::CmdUpdateFloorSavedValueNotify) + } + "CmdSetTrainWorldIdCsReq" => Some(Self::CmdSetTrainWorldIdCsReq), + "CmdSceneEntityMoveScNotify" => Some(Self::CmdSceneEntityMoveScNotify), + "CmdReturnLastTownScRsp" => Some(Self::CmdReturnLastTownScRsp), + "CmdSceneEnterStageCsReq" => Some(Self::CmdSceneEnterStageCsReq), + "CmdTrainWorldIdChangeScNotify" => Some(Self::CmdTrainWorldIdChangeScNotify), "CmdRefreshTriggerByClientScNotify" => { Some(Self::CmdRefreshTriggerByClientScNotify) } - "CmdUpdateMechanismBarScNotify" => Some(Self::CmdUpdateMechanismBarScNotify), - "CmdSceneCastSkillCostMpCsReq" => Some(Self::CmdSceneCastSkillCostMpCsReq), - "CmdSceneCastSkillScRsp" => Some(Self::CmdSceneCastSkillScRsp), - "CmdSetCurInteractEntityCsReq" => Some(Self::CmdSetCurInteractEntityCsReq), + "CmdGetCurSceneInfoCsReq" => Some(Self::CmdGetCurSceneInfoCsReq), + "CmdSetTrainWorldIdScRsp" => Some(Self::CmdSetTrainWorldIdScRsp), "CmdSetGroupCustomSaveDataScRsp" => { Some(Self::CmdSetGroupCustomSaveDataScRsp) } - "CmdUnlockedAreaMapScNotify" => Some(Self::CmdUnlockedAreaMapScNotify), + "CmdSavePointsInfoNotify" => Some(Self::CmdSavePointsInfoNotify), + "CmdEnterSceneByServerScNotify" => Some(Self::CmdEnterSceneByServerScNotify), + "CmdSceneCastSkillCostMpCsReq" => Some(Self::CmdSceneCastSkillCostMpCsReq), + "CmdRefreshTriggerByClientCsReq" => { + Some(Self::CmdRefreshTriggerByClientCsReq) + } + "CmdRecoverAllLineupScRsp" => Some(Self::CmdRecoverAllLineupScRsp), + "CmdSceneEnterStageScRsp" => Some(Self::CmdSceneEnterStageScRsp), + "CmdGetCurSceneInfoScRsp" => Some(Self::CmdGetCurSceneInfoScRsp), + "CmdGetEnteredSceneScRsp" => Some(Self::CmdGetEnteredSceneScRsp), + "CmdGameplayCounterUpdateScNotify" => { + Some(Self::CmdGameplayCounterUpdateScNotify) + } + "CmdOpenChestScNotify" => Some(Self::CmdOpenChestScNotify), + "CmdGetUnlockTeleportScRsp" => Some(Self::CmdGetUnlockTeleportScRsp), + "CmdGetSceneMapInfoCsReq" => Some(Self::CmdGetSceneMapInfoCsReq), + "CmdSceneCastSkillScRsp" => Some(Self::CmdSceneCastSkillScRsp), + "KCIHFFCODFN_OILPLIGKHAK" => Some(Self::KcihffcodfnOilpligkhak), + "CmdEntityBindPropScRsp" => Some(Self::CmdEntityBindPropScRsp), + "CmdDeactivateFarmElementCsReq" => Some(Self::CmdDeactivateFarmElementCsReq), + "CmdGroupStateChangeCsReq" => Some(Self::CmdGroupStateChangeCsReq), + "CmdSpringRefreshCsReq" => Some(Self::CmdSpringRefreshCsReq), "CmdEnterSceneScRsp" => Some(Self::CmdEnterSceneScRsp), - "CmdInteractPropScRsp" => Some(Self::CmdInteractPropScRsp), + "CmdGetEnteredSceneCsReq" => Some(Self::CmdGetEnteredSceneCsReq), + "CmdScenePlaneEventScNotify" => Some(Self::CmdScenePlaneEventScNotify), + "CmdGetUnlockTeleportCsReq" => Some(Self::CmdGetUnlockTeleportCsReq), _ => None, } } @@ -82948,33 +81055,29 @@ impl CmdSceneType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum SceneCastSkillType { - SceneCastSkillNone = 0, - SceneCastSkillProjectileHit = 1, - SceneCastSkillProjectileLifetimeFinish = 2, +pub enum SkillExtraTag { + ClheclpkbniIcblpcgjhcc = 0, + ClheclpkbniEgbceoaikjf = 1, + ClheclpkbniEdemkcconhm = 2, } -impl SceneCastSkillType { +impl SkillExtraTag { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::SceneCastSkillNone => "SCENE_CAST_SKILL_NONE", - Self::SceneCastSkillProjectileHit => "SCENE_CAST_SKILL_PROJECTILE_HIT", - Self::SceneCastSkillProjectileLifetimeFinish => { - "SCENE_CAST_SKILL_PROJECTILE_LIFETIME_FINISH" - } + Self::ClheclpkbniIcblpcgjhcc => "CLHECLPKBNI_ICBLPCGJHCC", + Self::ClheclpkbniEgbceoaikjf => "CLHECLPKBNI_EGBCEOAIKJF", + Self::ClheclpkbniEdemkcconhm => "CLHECLPKBNI_EDEMKCCONHM", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SCENE_CAST_SKILL_NONE" => Some(Self::SceneCastSkillNone), - "SCENE_CAST_SKILL_PROJECTILE_HIT" => Some(Self::SceneCastSkillProjectileHit), - "SCENE_CAST_SKILL_PROJECTILE_LIFETIME_FINISH" => { - Some(Self::SceneCastSkillProjectileLifetimeFinish) - } + "CLHECLPKBNI_ICBLPCGJHCC" => Some(Self::ClheclpkbniIcblpcgjhcc), + "CLHECLPKBNI_EGBCEOAIKJF" => Some(Self::ClheclpkbniEgbceoaikjf), + "CLHECLPKBNI_EDEMKCCONHM" => Some(Self::ClheclpkbniEdemkcconhm), _ => None, } } @@ -82983,11 +81086,11 @@ impl SceneCastSkillType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MonsterBattleType { - None = 0, - TriggerBattle = 1, - DirectDieSimulateBattle = 2, - DirectDieSkipBattle = 3, - NoBattle = 4, + ApipfpdcinfIpmcpgogpae = 0, + ApipfpdcinfDojaemoaiag = 1, + ApipfpdcinfIfbcpgelnjl = 2, + ApipfpdcinfDaaipcadaom = 3, + ApipfpdcinfNcijoienjfi = 4, } impl MonsterBattleType { /// String value of the enum field names used in the ProtoBuf definition. @@ -82996,27 +81099,21 @@ impl MonsterBattleType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "MONSTER_BATTLE_TYPE_NONE", - Self::TriggerBattle => "MONSTER_BATTLE_TYPE_TRIGGER_BATTLE", - Self::DirectDieSimulateBattle => { - "MONSTER_BATTLE_TYPE_DIRECT_DIE_SIMULATE_BATTLE" - } - Self::DirectDieSkipBattle => "MONSTER_BATTLE_TYPE_DIRECT_DIE_SKIP_BATTLE", - Self::NoBattle => "MONSTER_BATTLE_TYPE_NO_BATTLE", + Self::ApipfpdcinfIpmcpgogpae => "APIPFPDCINF_IPMCPGOGPAE", + Self::ApipfpdcinfDojaemoaiag => "APIPFPDCINF_DOJAEMOAIAG", + Self::ApipfpdcinfIfbcpgelnjl => "APIPFPDCINF_IFBCPGELNJL", + Self::ApipfpdcinfDaaipcadaom => "APIPFPDCINF_DAAIPCADAOM", + Self::ApipfpdcinfNcijoienjfi => "APIPFPDCINF_NCIJOIENJFI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MONSTER_BATTLE_TYPE_NONE" => Some(Self::None), - "MONSTER_BATTLE_TYPE_TRIGGER_BATTLE" => Some(Self::TriggerBattle), - "MONSTER_BATTLE_TYPE_DIRECT_DIE_SIMULATE_BATTLE" => { - Some(Self::DirectDieSimulateBattle) - } - "MONSTER_BATTLE_TYPE_DIRECT_DIE_SKIP_BATTLE" => { - Some(Self::DirectDieSkipBattle) - } - "MONSTER_BATTLE_TYPE_NO_BATTLE" => Some(Self::NoBattle), + "APIPFPDCINF_IPMCPGOGPAE" => Some(Self::ApipfpdcinfIpmcpgogpae), + "APIPFPDCINF_DOJAEMOAIAG" => Some(Self::ApipfpdcinfDojaemoaiag), + "APIPFPDCINF_IFBCPGELNJL" => Some(Self::ApipfpdcinfIfbcpgelnjl), + "APIPFPDCINF_DAAIPCADAOM" => Some(Self::ApipfpdcinfDaaipcadaom), + "APIPFPDCINF_NCIJOIENJFI" => Some(Self::ApipfpdcinfNcijoienjfi), _ => None, } } @@ -83024,41 +81121,29 @@ impl MonsterBattleType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum EntityBuffChangeType { - SceneEntityBuffChangeTypeDefault = 0, - SceneEntityBuffChangeTypeAddMazebuff = 1, - SceneEntityBuffChangeTypeAddAdvModifier = 2, +pub enum SceneEntityBuffChangeType { + IljhkabppalAclopoimglj = 0, + IljhkabppalKfbcggimnpc = 1, + IljhkabppalIcbfcjifcdf = 2, } -impl EntityBuffChangeType { +impl SceneEntityBuffChangeType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::SceneEntityBuffChangeTypeDefault => { - "SCENE_ENTITY_BUFF_CHANGE_TYPE_DEFAULT" - } - Self::SceneEntityBuffChangeTypeAddMazebuff => { - "SCENE_ENTITY_BUFF_CHANGE_TYPE_ADD_MAZEBUFF" - } - Self::SceneEntityBuffChangeTypeAddAdvModifier => { - "SCENE_ENTITY_BUFF_CHANGE_TYPE_ADD_ADV_MODIFIER" - } + Self::IljhkabppalAclopoimglj => "ILJHKABPPAL_ACLOPOIMGLJ", + Self::IljhkabppalKfbcggimnpc => "ILJHKABPPAL_KFBCGGIMNPC", + Self::IljhkabppalIcbfcjifcdf => "ILJHKABPPAL_ICBFCJIFCDF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SCENE_ENTITY_BUFF_CHANGE_TYPE_DEFAULT" => { - Some(Self::SceneEntityBuffChangeTypeDefault) - } - "SCENE_ENTITY_BUFF_CHANGE_TYPE_ADD_MAZEBUFF" => { - Some(Self::SceneEntityBuffChangeTypeAddMazebuff) - } - "SCENE_ENTITY_BUFF_CHANGE_TYPE_ADD_ADV_MODIFIER" => { - Some(Self::SceneEntityBuffChangeTypeAddAdvModifier) - } + "ILJHKABPPAL_ACLOPOIMGLJ" => Some(Self::IljhkabppalAclopoimglj), + "ILJHKABPPAL_KFBCGGIMNPC" => Some(Self::IljhkabppalKfbcggimnpc), + "ILJHKABPPAL_ICBFCJIFCDF" => Some(Self::IljhkabppalIcbfcjifcdf), _ => None, } } @@ -83067,11 +81152,11 @@ impl EntityBuffChangeType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum EnterSceneReason { - None = 0, - ChallengeTimeout = 1, - RogueTimeout = 2, - ChangeStoryline = 3, - DimensionMerge = 4, + AiiaijfcpgpAlocmfakbkp = 0, + AiiaijfcpgpAikbjcchoan = 1, + AiiaijfcpgpNbgkajfoicc = 2, + AiiaijfcpgpNbmkipjiooo = 3, + AiiaijfcpgpEfacnbnlghg = 4, } impl EnterSceneReason { /// String value of the enum field names used in the ProtoBuf definition. @@ -83080,21 +81165,21 @@ impl EnterSceneReason { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "ENTER_SCENE_REASON_NONE", - Self::ChallengeTimeout => "ENTER_SCENE_REASON_CHALLENGE_TIMEOUT", - Self::RogueTimeout => "ENTER_SCENE_REASON_ROGUE_TIMEOUT", - Self::ChangeStoryline => "ENTER_SCENE_REASON_CHANGE_STORYLINE", - Self::DimensionMerge => "ENTER_SCENE_REASON_DIMENSION_MERGE", + Self::AiiaijfcpgpAlocmfakbkp => "AIIAIJFCPGP_ALOCMFAKBKP", + Self::AiiaijfcpgpAikbjcchoan => "AIIAIJFCPGP_AIKBJCCHOAN", + Self::AiiaijfcpgpNbgkajfoicc => "AIIAIJFCPGP_NBGKAJFOICC", + Self::AiiaijfcpgpNbmkipjiooo => "AIIAIJFCPGP_NBMKIPJIOOO", + Self::AiiaijfcpgpEfacnbnlghg => "AIIAIJFCPGP_EFACNBNLGHG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ENTER_SCENE_REASON_NONE" => Some(Self::None), - "ENTER_SCENE_REASON_CHALLENGE_TIMEOUT" => Some(Self::ChallengeTimeout), - "ENTER_SCENE_REASON_ROGUE_TIMEOUT" => Some(Self::RogueTimeout), - "ENTER_SCENE_REASON_CHANGE_STORYLINE" => Some(Self::ChangeStoryline), - "ENTER_SCENE_REASON_DIMENSION_MERGE" => Some(Self::DimensionMerge), + "AIIAIJFCPGP_ALOCMFAKBKP" => Some(Self::AiiaijfcpgpAlocmfakbkp), + "AIIAIJFCPGP_AIKBJCCHOAN" => Some(Self::AiiaijfcpgpAikbjcchoan), + "AIIAIJFCPGP_NBGKAJFOICC" => Some(Self::AiiaijfcpgpNbgkajfoicc), + "AIIAIJFCPGP_NBMKIPJIOOO" => Some(Self::AiiaijfcpgpNbmkipjiooo), + "AIIAIJFCPGP_EFACNBNLGHG" => Some(Self::AiiaijfcpgpEfacnbnlghg), _ => None, } } @@ -83102,32 +81187,32 @@ impl EnterSceneReason { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum MapInfoChestType { - None = 0, - Normal = 101, - Challenge = 102, - Puzzle = 104, +pub enum ChestType { + GplfenldcldAlocmfakbkp = 0, + GplfenldcldGmbghbpibml = 101, + GplfenldcldFammakbffnl = 102, + GplfenldcldHbekfdkolkp = 104, } -impl MapInfoChestType { +impl ChestType { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "MAP_INFO_CHEST_TYPE_NONE", - Self::Normal => "MAP_INFO_CHEST_TYPE_NORMAL", - Self::Challenge => "MAP_INFO_CHEST_TYPE_CHALLENGE", - Self::Puzzle => "MAP_INFO_CHEST_TYPE_PUZZLE", + Self::GplfenldcldAlocmfakbkp => "GPLFENLDCLD_ALOCMFAKBKP", + Self::GplfenldcldGmbghbpibml => "GPLFENLDCLD_GMBGHBPIBML", + Self::GplfenldcldFammakbffnl => "GPLFENLDCLD_FAMMAKBFFNL", + Self::GplfenldcldHbekfdkolkp => "GPLFENLDCLD_HBEKFDKOLKP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "MAP_INFO_CHEST_TYPE_NONE" => Some(Self::None), - "MAP_INFO_CHEST_TYPE_NORMAL" => Some(Self::Normal), - "MAP_INFO_CHEST_TYPE_CHALLENGE" => Some(Self::Challenge), - "MAP_INFO_CHEST_TYPE_PUZZLE" => Some(Self::Puzzle), + "GPLFENLDCLD_ALOCMFAKBKP" => Some(Self::GplfenldcldAlocmfakbkp), + "GPLFENLDCLD_GMBGHBPIBML" => Some(Self::GplfenldcldGmbghbpibml), + "GPLFENLDCLD_FAMMAKBFFNL" => Some(Self::GplfenldcldFammakbffnl), + "GPLFENLDCLD_HBEKFDKOLKP" => Some(Self::GplfenldcldHbekfdkolkp), _ => None, } } @@ -83135,48 +81220,32 @@ impl MapInfoChestType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Cnppaammffd { - GameplayCounterUpdateReasonNone = 0, - GameplayCounterUpdateReasonActivate = 1, - GameplayCounterUpdateReasonDeactivate = 2, - GameplayCounterUpdateReasonChange = 3, +pub enum GameplayCounterUpdateReason { + JoomfmjkdbdAlocmfakbkp = 0, + JoomfmjkdbdPcldpaopjbn = 1, + JoomfmjkdbdLakhnfdggib = 2, + JoomfmjkdbdEfoapaelhen = 3, } -impl Cnppaammffd { +impl GameplayCounterUpdateReason { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::GameplayCounterUpdateReasonNone => { - "GAMEPLAY_COUNTER_UPDATE_REASON_NONE" - } - Self::GameplayCounterUpdateReasonActivate => { - "GAMEPLAY_COUNTER_UPDATE_REASON_ACTIVATE" - } - Self::GameplayCounterUpdateReasonDeactivate => { - "GAMEPLAY_COUNTER_UPDATE_REASON_DEACTIVATE" - } - Self::GameplayCounterUpdateReasonChange => { - "GAMEPLAY_COUNTER_UPDATE_REASON_CHANGE" - } + Self::JoomfmjkdbdAlocmfakbkp => "JOOMFMJKDBD_ALOCMFAKBKP", + Self::JoomfmjkdbdPcldpaopjbn => "JOOMFMJKDBD_PCLDPAOPJBN", + Self::JoomfmjkdbdLakhnfdggib => "JOOMFMJKDBD_LAKHNFDGGIB", + Self::JoomfmjkdbdEfoapaelhen => "JOOMFMJKDBD_EFOAPAELHEN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "GAMEPLAY_COUNTER_UPDATE_REASON_NONE" => { - Some(Self::GameplayCounterUpdateReasonNone) - } - "GAMEPLAY_COUNTER_UPDATE_REASON_ACTIVATE" => { - Some(Self::GameplayCounterUpdateReasonActivate) - } - "GAMEPLAY_COUNTER_UPDATE_REASON_DEACTIVATE" => { - Some(Self::GameplayCounterUpdateReasonDeactivate) - } - "GAMEPLAY_COUNTER_UPDATE_REASON_CHANGE" => { - Some(Self::GameplayCounterUpdateReasonChange) - } + "JOOMFMJKDBD_ALOCMFAKBKP" => Some(Self::JoomfmjkdbdAlocmfakbkp), + "JOOMFMJKDBD_PCLDPAOPJBN" => Some(Self::JoomfmjkdbdPcldpaopjbn), + "JOOMFMJKDBD_LAKHNFDGGIB" => Some(Self::JoomfmjkdbdLakhnfdggib), + "JOOMFMJKDBD_EFOAPAELHEN" => Some(Self::JoomfmjkdbdEfoapaelhen), _ => None, } } @@ -83188,6 +81257,7 @@ pub enum SceneGroupRefreshType { None = 0, Loaded = 1, Unload = 2, + JnjoegaacnmAjjeacfimno = 3, } impl SceneGroupRefreshType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83199,6 +81269,7 @@ impl SceneGroupRefreshType { Self::None => "SCENE_GROUP_REFRESH_TYPE_NONE", Self::Loaded => "SCENE_GROUP_REFRESH_TYPE_LOADED", Self::Unload => "SCENE_GROUP_REFRESH_TYPE_UNLOAD", + Self::JnjoegaacnmAjjeacfimno => "JNJOEGAACNM_AJJEACFIMNO", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -83207,6 +81278,7 @@ impl SceneGroupRefreshType { "SCENE_GROUP_REFRESH_TYPE_NONE" => Some(Self::None), "SCENE_GROUP_REFRESH_TYPE_LOADED" => Some(Self::Loaded), "SCENE_GROUP_REFRESH_TYPE_UNLOAD" => Some(Self::Unload), + "JNJOEGAACNM_AJJEACFIMNO" => Some(Self::JnjoegaacnmAjjeacfimno), _ => None, } } @@ -83215,13 +81287,13 @@ impl SceneGroupRefreshType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdServerPrefsType { - None = 0, - CmdGetServerPrefsDataCsReq = 6198, - CmdUpdateServerPrefsDataCsReq = 6183, - CmdGetAllServerPrefsDataCsReq = 6199, - CmdGetAllServerPrefsDataScRsp = 6123, - CmdUpdateServerPrefsDataScRsp = 6186, - CmdGetServerPrefsDataScRsp = 6165, + DhnfenhpeklAlocmfakbkp = 0, + CmdGetServerPrefsDataScRsp = 6117, + CmdGetAllServerPrefsDataCsReq = 6147, + CmdUpdateServerPrefsDataScRsp = 6111, + DhnfenhpeklFdeeplnpocg = 6138, + CmdUpdateServerPrefsDataCsReq = 6151, + CmdGetAllServerPrefsDataScRsp = 6109, } impl CmdServerPrefsType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83230,25 +81302,25 @@ impl CmdServerPrefsType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdServerPrefsTypeNone", - Self::CmdGetServerPrefsDataCsReq => "CmdGetServerPrefsDataCsReq", - Self::CmdUpdateServerPrefsDataCsReq => "CmdUpdateServerPrefsDataCsReq", - Self::CmdGetAllServerPrefsDataCsReq => "CmdGetAllServerPrefsDataCsReq", - Self::CmdGetAllServerPrefsDataScRsp => "CmdGetAllServerPrefsDataScRsp", - Self::CmdUpdateServerPrefsDataScRsp => "CmdUpdateServerPrefsDataScRsp", + Self::DhnfenhpeklAlocmfakbkp => "DHNFENHPEKL_ALOCMFAKBKP", Self::CmdGetServerPrefsDataScRsp => "CmdGetServerPrefsDataScRsp", + Self::CmdGetAllServerPrefsDataCsReq => "CmdGetAllServerPrefsDataCsReq", + Self::CmdUpdateServerPrefsDataScRsp => "CmdUpdateServerPrefsDataScRsp", + Self::DhnfenhpeklFdeeplnpocg => "DHNFENHPEKL_FDEEPLNPOCG", + Self::CmdUpdateServerPrefsDataCsReq => "CmdUpdateServerPrefsDataCsReq", + Self::CmdGetAllServerPrefsDataScRsp => "CmdGetAllServerPrefsDataScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdServerPrefsTypeNone" => Some(Self::None), - "CmdGetServerPrefsDataCsReq" => Some(Self::CmdGetServerPrefsDataCsReq), - "CmdUpdateServerPrefsDataCsReq" => Some(Self::CmdUpdateServerPrefsDataCsReq), - "CmdGetAllServerPrefsDataCsReq" => Some(Self::CmdGetAllServerPrefsDataCsReq), - "CmdGetAllServerPrefsDataScRsp" => Some(Self::CmdGetAllServerPrefsDataScRsp), - "CmdUpdateServerPrefsDataScRsp" => Some(Self::CmdUpdateServerPrefsDataScRsp), + "DHNFENHPEKL_ALOCMFAKBKP" => Some(Self::DhnfenhpeklAlocmfakbkp), "CmdGetServerPrefsDataScRsp" => Some(Self::CmdGetServerPrefsDataScRsp), + "CmdGetAllServerPrefsDataCsReq" => Some(Self::CmdGetAllServerPrefsDataCsReq), + "CmdUpdateServerPrefsDataScRsp" => Some(Self::CmdUpdateServerPrefsDataScRsp), + "DHNFENHPEKL_FDEEPLNPOCG" => Some(Self::DhnfenhpeklFdeeplnpocg), + "CmdUpdateServerPrefsDataCsReq" => Some(Self::CmdUpdateServerPrefsDataCsReq), + "CmdGetAllServerPrefsDataScRsp" => Some(Self::CmdGetAllServerPrefsDataScRsp), _ => None, } } @@ -83257,14 +81329,14 @@ impl CmdServerPrefsType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdShopType { - None = 0, - CmdCityShopInfoScNotify = 1594, - CmdGetShopListScRsp = 1523, - CmdBuyGoodsCsReq = 1598, - CmdGetShopListCsReq = 1599, - CmdTakeCityShopRewardCsReq = 1583, - CmdTakeCityShopRewardScRsp = 1586, - CmdBuyGoodsScRsp = 1565, + PplbkncomppAlocmfakbkp = 0, + CmdGetShopListScRsp = 1509, + CmdTakeCityShopRewardScRsp = 1511, + CmdTakeCityShopRewardCsReq = 1551, + CmdBuyGoodsCsReq = 1538, + CmdCityShopInfoScNotify = 1589, + CmdGetShopListCsReq = 1547, + CmdBuyGoodsScRsp = 1517, } impl CmdShopType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83273,26 +81345,26 @@ impl CmdShopType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdShopTypeNone", - Self::CmdCityShopInfoScNotify => "CmdCityShopInfoScNotify", + Self::PplbkncomppAlocmfakbkp => "PPLBKNCOMPP_ALOCMFAKBKP", Self::CmdGetShopListScRsp => "CmdGetShopListScRsp", - Self::CmdBuyGoodsCsReq => "CmdBuyGoodsCsReq", - Self::CmdGetShopListCsReq => "CmdGetShopListCsReq", - Self::CmdTakeCityShopRewardCsReq => "CmdTakeCityShopRewardCsReq", Self::CmdTakeCityShopRewardScRsp => "CmdTakeCityShopRewardScRsp", + Self::CmdTakeCityShopRewardCsReq => "CmdTakeCityShopRewardCsReq", + Self::CmdBuyGoodsCsReq => "CmdBuyGoodsCsReq", + Self::CmdCityShopInfoScNotify => "CmdCityShopInfoScNotify", + Self::CmdGetShopListCsReq => "CmdGetShopListCsReq", Self::CmdBuyGoodsScRsp => "CmdBuyGoodsScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdShopTypeNone" => Some(Self::None), - "CmdCityShopInfoScNotify" => Some(Self::CmdCityShopInfoScNotify), + "PPLBKNCOMPP_ALOCMFAKBKP" => Some(Self::PplbkncomppAlocmfakbkp), "CmdGetShopListScRsp" => Some(Self::CmdGetShopListScRsp), - "CmdBuyGoodsCsReq" => Some(Self::CmdBuyGoodsCsReq), - "CmdGetShopListCsReq" => Some(Self::CmdGetShopListCsReq), - "CmdTakeCityShopRewardCsReq" => Some(Self::CmdTakeCityShopRewardCsReq), "CmdTakeCityShopRewardScRsp" => Some(Self::CmdTakeCityShopRewardScRsp), + "CmdTakeCityShopRewardCsReq" => Some(Self::CmdTakeCityShopRewardCsReq), + "CmdBuyGoodsCsReq" => Some(Self::CmdBuyGoodsCsReq), + "CmdCityShopInfoScNotify" => Some(Self::CmdCityShopInfoScNotify), + "CmdGetShopListCsReq" => Some(Self::CmdGetShopListCsReq), "CmdBuyGoodsScRsp" => Some(Self::CmdBuyGoodsScRsp), _ => None, } @@ -83302,22 +81374,22 @@ impl CmdShopType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdSpaceZooType { - None = 0, - CmdSpaceZooDataScRsp = 6723, - CmdSpaceZooTakeScRsp = 6792, - CmdSpaceZooBornCsReq = 6798, - CmdSpaceZooCatUpdateNotify = 6781, - CmdSpaceZooExchangeItemCsReq = 6769, - CmdSpaceZooDeleteCatCsReq = 6719, - CmdSpaceZooMutateScRsp = 6786, - CmdSpaceZooTakeCsReq = 6715, - CmdSpaceZooOpCatteryScRsp = 6752, - CmdSpaceZooExchangeItemScRsp = 6757, - CmdSpaceZooDataCsReq = 6799, - CmdSpaceZooMutateCsReq = 6783, - CmdSpaceZooBornScRsp = 6765, - CmdSpaceZooDeleteCatScRsp = 6744, - CmdSpaceZooOpCatteryCsReq = 6794, + NhcefhfolfiAlocmfakbkp = 0, + NhcefhfolfiBhckaklhijb = 6752, + NhcefhfolfiLmcdeodnkjg = 6761, + NhcefhfolfiAdgdaljojhj = 6720, + NhcefhfolfiFkodajlfifa = 6751, + NhcefhfolfiFjbocopbpfm = 6789, + NhcefhfolfiGnajfnbabgh = 6747, + NhcefhfolfiIbfdnnegnig = 6745, + NhcefhfolfiHkfijjdfdmp = 6750, + NhcefhfolfiAedejjgmicp = 6738, + NhcefhfolfiGhljfgdkjhi = 6795, + NhcefhfolfiKmhegphdfce = 6711, + NhcefhfolfiPpcomigheeb = 6776, + NhcefhfolfiAceeocnlbeg = 6709, + NhcefhfolfiBnodjnodibc = 6717, + NhcefhfolfiGiccfohcbpl = 6791, } impl CmdSpaceZooType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83326,43 +81398,43 @@ impl CmdSpaceZooType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdSpaceZooTypeNone", - Self::CmdSpaceZooDataScRsp => "CmdSpaceZooDataScRsp", - Self::CmdSpaceZooTakeScRsp => "CmdSpaceZooTakeScRsp", - Self::CmdSpaceZooBornCsReq => "CmdSpaceZooBornCsReq", - Self::CmdSpaceZooCatUpdateNotify => "CmdSpaceZooCatUpdateNotify", - Self::CmdSpaceZooExchangeItemCsReq => "CmdSpaceZooExchangeItemCsReq", - Self::CmdSpaceZooDeleteCatCsReq => "CmdSpaceZooDeleteCatCsReq", - Self::CmdSpaceZooMutateScRsp => "CmdSpaceZooMutateScRsp", - Self::CmdSpaceZooTakeCsReq => "CmdSpaceZooTakeCsReq", - Self::CmdSpaceZooOpCatteryScRsp => "CmdSpaceZooOpCatteryScRsp", - Self::CmdSpaceZooExchangeItemScRsp => "CmdSpaceZooExchangeItemScRsp", - Self::CmdSpaceZooDataCsReq => "CmdSpaceZooDataCsReq", - Self::CmdSpaceZooMutateCsReq => "CmdSpaceZooMutateCsReq", - Self::CmdSpaceZooBornScRsp => "CmdSpaceZooBornScRsp", - Self::CmdSpaceZooDeleteCatScRsp => "CmdSpaceZooDeleteCatScRsp", - Self::CmdSpaceZooOpCatteryCsReq => "CmdSpaceZooOpCatteryCsReq", + Self::NhcefhfolfiAlocmfakbkp => "NHCEFHFOLFI_ALOCMFAKBKP", + Self::NhcefhfolfiBhckaklhijb => "NHCEFHFOLFI_BHCKAKLHIJB", + Self::NhcefhfolfiLmcdeodnkjg => "NHCEFHFOLFI_LMCDEODNKJG", + Self::NhcefhfolfiAdgdaljojhj => "NHCEFHFOLFI_ADGDALJOJHJ", + Self::NhcefhfolfiFkodajlfifa => "NHCEFHFOLFI_FKODAJLFIFA", + Self::NhcefhfolfiFjbocopbpfm => "NHCEFHFOLFI_FJBOCOPBPFM", + Self::NhcefhfolfiGnajfnbabgh => "NHCEFHFOLFI_GNAJFNBABGH", + Self::NhcefhfolfiIbfdnnegnig => "NHCEFHFOLFI_IBFDNNEGNIG", + Self::NhcefhfolfiHkfijjdfdmp => "NHCEFHFOLFI_HKFIJJDFDMP", + Self::NhcefhfolfiAedejjgmicp => "NHCEFHFOLFI_AEDEJJGMICP", + Self::NhcefhfolfiGhljfgdkjhi => "NHCEFHFOLFI_GHLJFGDKJHI", + Self::NhcefhfolfiKmhegphdfce => "NHCEFHFOLFI_KMHEGPHDFCE", + Self::NhcefhfolfiPpcomigheeb => "NHCEFHFOLFI_PPCOMIGHEEB", + Self::NhcefhfolfiAceeocnlbeg => "NHCEFHFOLFI_ACEEOCNLBEG", + Self::NhcefhfolfiBnodjnodibc => "NHCEFHFOLFI_BNODJNODIBC", + Self::NhcefhfolfiGiccfohcbpl => "NHCEFHFOLFI_GICCFOHCBPL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdSpaceZooTypeNone" => Some(Self::None), - "CmdSpaceZooDataScRsp" => Some(Self::CmdSpaceZooDataScRsp), - "CmdSpaceZooTakeScRsp" => Some(Self::CmdSpaceZooTakeScRsp), - "CmdSpaceZooBornCsReq" => Some(Self::CmdSpaceZooBornCsReq), - "CmdSpaceZooCatUpdateNotify" => Some(Self::CmdSpaceZooCatUpdateNotify), - "CmdSpaceZooExchangeItemCsReq" => Some(Self::CmdSpaceZooExchangeItemCsReq), - "CmdSpaceZooDeleteCatCsReq" => Some(Self::CmdSpaceZooDeleteCatCsReq), - "CmdSpaceZooMutateScRsp" => Some(Self::CmdSpaceZooMutateScRsp), - "CmdSpaceZooTakeCsReq" => Some(Self::CmdSpaceZooTakeCsReq), - "CmdSpaceZooOpCatteryScRsp" => Some(Self::CmdSpaceZooOpCatteryScRsp), - "CmdSpaceZooExchangeItemScRsp" => Some(Self::CmdSpaceZooExchangeItemScRsp), - "CmdSpaceZooDataCsReq" => Some(Self::CmdSpaceZooDataCsReq), - "CmdSpaceZooMutateCsReq" => Some(Self::CmdSpaceZooMutateCsReq), - "CmdSpaceZooBornScRsp" => Some(Self::CmdSpaceZooBornScRsp), - "CmdSpaceZooDeleteCatScRsp" => Some(Self::CmdSpaceZooDeleteCatScRsp), - "CmdSpaceZooOpCatteryCsReq" => Some(Self::CmdSpaceZooOpCatteryCsReq), + "NHCEFHFOLFI_ALOCMFAKBKP" => Some(Self::NhcefhfolfiAlocmfakbkp), + "NHCEFHFOLFI_BHCKAKLHIJB" => Some(Self::NhcefhfolfiBhckaklhijb), + "NHCEFHFOLFI_LMCDEODNKJG" => Some(Self::NhcefhfolfiLmcdeodnkjg), + "NHCEFHFOLFI_ADGDALJOJHJ" => Some(Self::NhcefhfolfiAdgdaljojhj), + "NHCEFHFOLFI_FKODAJLFIFA" => Some(Self::NhcefhfolfiFkodajlfifa), + "NHCEFHFOLFI_FJBOCOPBPFM" => Some(Self::NhcefhfolfiFjbocopbpfm), + "NHCEFHFOLFI_GNAJFNBABGH" => Some(Self::NhcefhfolfiGnajfnbabgh), + "NHCEFHFOLFI_IBFDNNEGNIG" => Some(Self::NhcefhfolfiIbfdnnegnig), + "NHCEFHFOLFI_HKFIJJDFDMP" => Some(Self::NhcefhfolfiHkfijjdfdmp), + "NHCEFHFOLFI_AEDEJJGMICP" => Some(Self::NhcefhfolfiAedejjgmicp), + "NHCEFHFOLFI_GHLJFGDKJHI" => Some(Self::NhcefhfolfiGhljfgdkjhi), + "NHCEFHFOLFI_KMHEGPHDFCE" => Some(Self::NhcefhfolfiKmhegphdfce), + "NHCEFHFOLFI_PPCOMIGHEEB" => Some(Self::NhcefhfolfiPpcomigheeb), + "NHCEFHFOLFI_ACEEOCNLBEG" => Some(Self::NhcefhfolfiAceeocnlbeg), + "NHCEFHFOLFI_BNODJNODIBC" => Some(Self::NhcefhfolfiBnodjnodibc), + "NHCEFHFOLFI_GICCFOHCBPL" => Some(Self::NhcefhfolfiGiccfohcbpl), _ => None, } } @@ -83371,12 +81443,12 @@ impl CmdSpaceZooType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdStarFightType { - None = 0, - CmdGetStarFightDataScRsp = 7167, - CmdStartStarFightLevelScRsp = 7169, - CmdGetStarFightDataCsReq = 7166, - CmdStarFightDataChangeNotify = 7170, - CmdStartStarFightLevelCsReq = 7164, + HcjmnjfflniAlocmfakbkp = 0, + HcjmnjfflniNmddjpljieh = 7162, + HcjmnjfflniJknhhknaaof = 7163, + HcjmnjfflniNkjejkhaaip = 7170, + HcjmnjfflniModondjjacn = 7167, + HcjmnjfflniInhghflilof = 7161, } impl CmdStarFightType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83385,23 +81457,23 @@ impl CmdStarFightType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdStarFightTypeNone", - Self::CmdGetStarFightDataScRsp => "CmdGetStarFightDataScRsp", - Self::CmdStartStarFightLevelScRsp => "CmdStartStarFightLevelScRsp", - Self::CmdGetStarFightDataCsReq => "CmdGetStarFightDataCsReq", - Self::CmdStarFightDataChangeNotify => "CmdStarFightDataChangeNotify", - Self::CmdStartStarFightLevelCsReq => "CmdStartStarFightLevelCsReq", + Self::HcjmnjfflniAlocmfakbkp => "HCJMNJFFLNI_ALOCMFAKBKP", + Self::HcjmnjfflniNmddjpljieh => "HCJMNJFFLNI_NMDDJPLJIEH", + Self::HcjmnjfflniJknhhknaaof => "HCJMNJFFLNI_JKNHHKNAAOF", + Self::HcjmnjfflniNkjejkhaaip => "HCJMNJFFLNI_NKJEJKHAAIP", + Self::HcjmnjfflniModondjjacn => "HCJMNJFFLNI_MODONDJJACN", + Self::HcjmnjfflniInhghflilof => "HCJMNJFFLNI_INHGHFLILOF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdStarFightTypeNone" => Some(Self::None), - "CmdGetStarFightDataScRsp" => Some(Self::CmdGetStarFightDataScRsp), - "CmdStartStarFightLevelScRsp" => Some(Self::CmdStartStarFightLevelScRsp), - "CmdGetStarFightDataCsReq" => Some(Self::CmdGetStarFightDataCsReq), - "CmdStarFightDataChangeNotify" => Some(Self::CmdStarFightDataChangeNotify), - "CmdStartStarFightLevelCsReq" => Some(Self::CmdStartStarFightLevelCsReq), + "HCJMNJFFLNI_ALOCMFAKBKP" => Some(Self::HcjmnjfflniAlocmfakbkp), + "HCJMNJFFLNI_NMDDJPLJIEH" => Some(Self::HcjmnjfflniNmddjpljieh), + "HCJMNJFFLNI_JKNHHKNAAOF" => Some(Self::HcjmnjfflniJknhhknaaof), + "HCJMNJFFLNI_NKJEJKHAAIP" => Some(Self::HcjmnjfflniNkjejkhaaip), + "HCJMNJFFLNI_MODONDJJACN" => Some(Self::HcjmnjfflniModondjjacn), + "HCJMNJFFLNI_INHGHFLILOF" => Some(Self::HcjmnjfflniInhghflilof), _ => None, } } @@ -83410,12 +81482,12 @@ impl CmdStarFightType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdStoryLineType { - None = 0, - CmdStoryLineTrialAvatarChangeScNotify = 6294, - CmdGetStoryLineInfoCsReq = 6299, - CmdChangeStoryLineFinishScNotify = 6286, - CmdStoryLineInfoScNotify = 6298, - CmdGetStoryLineInfoScRsp = 6223, + ModggghinadAlocmfakbkp = 0, + CmdStoryLineInfoScNotify = 6238, + CmdGetStoryLineInfoCsReq = 6247, + CmdStoryLineTrialAvatarChangeScNotify = 6289, + CmdGetStoryLineInfoScRsp = 6209, + CmdChangeStoryLineFinishScNotify = 6211, } impl CmdStoryLineType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83424,29 +81496,29 @@ impl CmdStoryLineType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdStoryLineTypeNone", + Self::ModggghinadAlocmfakbkp => "MODGGGHINAD_ALOCMFAKBKP", + Self::CmdStoryLineInfoScNotify => "CmdStoryLineInfoScNotify", + Self::CmdGetStoryLineInfoCsReq => "CmdGetStoryLineInfoCsReq", Self::CmdStoryLineTrialAvatarChangeScNotify => { "CmdStoryLineTrialAvatarChangeScNotify" } - Self::CmdGetStoryLineInfoCsReq => "CmdGetStoryLineInfoCsReq", - Self::CmdChangeStoryLineFinishScNotify => "CmdChangeStoryLineFinishScNotify", - Self::CmdStoryLineInfoScNotify => "CmdStoryLineInfoScNotify", Self::CmdGetStoryLineInfoScRsp => "CmdGetStoryLineInfoScRsp", + Self::CmdChangeStoryLineFinishScNotify => "CmdChangeStoryLineFinishScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdStoryLineTypeNone" => Some(Self::None), + "MODGGGHINAD_ALOCMFAKBKP" => Some(Self::ModggghinadAlocmfakbkp), + "CmdStoryLineInfoScNotify" => Some(Self::CmdStoryLineInfoScNotify), + "CmdGetStoryLineInfoCsReq" => Some(Self::CmdGetStoryLineInfoCsReq), "CmdStoryLineTrialAvatarChangeScNotify" => { Some(Self::CmdStoryLineTrialAvatarChangeScNotify) } - "CmdGetStoryLineInfoCsReq" => Some(Self::CmdGetStoryLineInfoCsReq), + "CmdGetStoryLineInfoScRsp" => Some(Self::CmdGetStoryLineInfoScRsp), "CmdChangeStoryLineFinishScNotify" => { Some(Self::CmdChangeStoryLineFinishScNotify) } - "CmdStoryLineInfoScNotify" => Some(Self::CmdStoryLineInfoScNotify), - "CmdGetStoryLineInfoScRsp" => Some(Self::CmdGetStoryLineInfoScRsp), _ => None, } } @@ -83454,39 +81526,35 @@ impl CmdStoryLineType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Amjocdiaphf { - ChangeStoryLineActionNone = 0, - ChangeStoryLineActionFinishAction = 1, - ChangeStoryLineActionClient = 2, - ChangeStoryLineActionCustomOp = 3, - ChangeStoryLineActionRaid = 4, +pub enum ChangeStoryLineAction { + DcoedannkdcAlocmfakbkp = 0, + DcoedannkdcIeincjekffp = 1, + DcoedannkdcCpdkfllgdhe = 2, + DcoedannkdcIefaniockpf = 3, + DcoedannkdcEjlfgieobhn = 4, } -impl Amjocdiaphf { +impl ChangeStoryLineAction { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::ChangeStoryLineActionNone => "ChangeStoryLineAction_None", - Self::ChangeStoryLineActionFinishAction => { - "ChangeStoryLineAction_FinishAction" - } - Self::ChangeStoryLineActionClient => "ChangeStoryLineAction_Client", - Self::ChangeStoryLineActionCustomOp => "ChangeStoryLineAction_CustomOP", - Self::ChangeStoryLineActionRaid => "ChangeStoryLineAction_Raid", + Self::DcoedannkdcAlocmfakbkp => "DCOEDANNKDC_ALOCMFAKBKP", + Self::DcoedannkdcIeincjekffp => "DCOEDANNKDC_IEINCJEKFFP", + Self::DcoedannkdcCpdkfllgdhe => "DCOEDANNKDC_CPDKFLLGDHE", + Self::DcoedannkdcIefaniockpf => "DCOEDANNKDC_IEFANIOCKPF", + Self::DcoedannkdcEjlfgieobhn => "DCOEDANNKDC_EJLFGIEOBHN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "ChangeStoryLineAction_None" => Some(Self::ChangeStoryLineActionNone), - "ChangeStoryLineAction_FinishAction" => { - Some(Self::ChangeStoryLineActionFinishAction) - } - "ChangeStoryLineAction_Client" => Some(Self::ChangeStoryLineActionClient), - "ChangeStoryLineAction_CustomOP" => Some(Self::ChangeStoryLineActionCustomOp), - "ChangeStoryLineAction_Raid" => Some(Self::ChangeStoryLineActionRaid), + "DCOEDANNKDC_ALOCMFAKBKP" => Some(Self::DcoedannkdcAlocmfakbkp), + "DCOEDANNKDC_IEINCJEKFFP" => Some(Self::DcoedannkdcIeincjekffp), + "DCOEDANNKDC_CPDKFLLGDHE" => Some(Self::DcoedannkdcCpdkfllgdhe), + "DCOEDANNKDC_IEFANIOCKPF" => Some(Self::DcoedannkdcIefaniockpf), + "DCOEDANNKDC_EJLFGIEOBHN" => Some(Self::DcoedannkdcEjlfgieobhn), _ => None, } } @@ -83495,12 +81563,12 @@ impl Amjocdiaphf { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdStrongChallengeActivityType { - None = 0, - CmdStrongChallengeActivityBattleEndScNotify = 6683, - CmdGetStrongChallengeActivityDataScRsp = 6623, - CmdEnterStrongChallengeActivityStageScRsp = 6665, - CmdEnterStrongChallengeActivityStageCsReq = 6698, - CmdGetStrongChallengeActivityDataCsReq = 6699, + DjdelokejfkAlocmfakbkp = 0, + DjdelokejfkDjnpdhenmki = 6638, + DjdelokejfkDefghjaajbc = 6651, + DjdelokejfkFpkldghikne = 6609, + DjdelokejfkEppppmjhion = 6647, + DjdelokejfkGnfjfnojahf = 6617, } impl CmdStrongChallengeActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83509,43 +81577,23 @@ impl CmdStrongChallengeActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdStrongChallengeActivityTypeNone", - Self::CmdStrongChallengeActivityBattleEndScNotify => { - "CmdStrongChallengeActivityBattleEndScNotify" - } - Self::CmdGetStrongChallengeActivityDataScRsp => { - "CmdGetStrongChallengeActivityDataScRsp" - } - Self::CmdEnterStrongChallengeActivityStageScRsp => { - "CmdEnterStrongChallengeActivityStageScRsp" - } - Self::CmdEnterStrongChallengeActivityStageCsReq => { - "CmdEnterStrongChallengeActivityStageCsReq" - } - Self::CmdGetStrongChallengeActivityDataCsReq => { - "CmdGetStrongChallengeActivityDataCsReq" - } + Self::DjdelokejfkAlocmfakbkp => "DJDELOKEJFK_ALOCMFAKBKP", + Self::DjdelokejfkDjnpdhenmki => "DJDELOKEJFK_DJNPDHENMKI", + Self::DjdelokejfkDefghjaajbc => "DJDELOKEJFK_DEFGHJAAJBC", + Self::DjdelokejfkFpkldghikne => "DJDELOKEJFK_FPKLDGHIKNE", + Self::DjdelokejfkEppppmjhion => "DJDELOKEJFK_EPPPPMJHION", + Self::DjdelokejfkGnfjfnojahf => "DJDELOKEJFK_GNFJFNOJAHF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdStrongChallengeActivityTypeNone" => Some(Self::None), - "CmdStrongChallengeActivityBattleEndScNotify" => { - Some(Self::CmdStrongChallengeActivityBattleEndScNotify) - } - "CmdGetStrongChallengeActivityDataScRsp" => { - Some(Self::CmdGetStrongChallengeActivityDataScRsp) - } - "CmdEnterStrongChallengeActivityStageScRsp" => { - Some(Self::CmdEnterStrongChallengeActivityStageScRsp) - } - "CmdEnterStrongChallengeActivityStageCsReq" => { - Some(Self::CmdEnterStrongChallengeActivityStageCsReq) - } - "CmdGetStrongChallengeActivityDataCsReq" => { - Some(Self::CmdGetStrongChallengeActivityDataCsReq) - } + "DJDELOKEJFK_ALOCMFAKBKP" => Some(Self::DjdelokejfkAlocmfakbkp), + "DJDELOKEJFK_DJNPDHENMKI" => Some(Self::DjdelokejfkDjnpdhenmki), + "DJDELOKEJFK_DEFGHJAAJBC" => Some(Self::DjdelokejfkDefghjaajbc), + "DJDELOKEJFK_FPKLDGHIKNE" => Some(Self::DjdelokejfkFpkldghikne), + "DJDELOKEJFK_EPPPPMJHION" => Some(Self::DjdelokejfkEppppmjhion), + "DJDELOKEJFK_GNFJFNOJAHF" => Some(Self::DjdelokejfkGnfjfnojahf), _ => None, } } @@ -83554,12 +81602,12 @@ impl CmdStrongChallengeActivityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdSummonActivityType { - None = 0, - CmdEnterSummonActivityStageCsReq = 7564, - CmdSummonActivityBattleEndScNotify = 7570, - CmdEnterSummonActivityStageScRsp = 7569, - CmdGetSummonActivityDataScRsp = 7567, - CmdGetSummonActivityDataCsReq = 7566, + HpjeinejajoAlocmfakbkp = 0, + HpjeinejajoFbkhnnbhcoj = 7561, + HpjeinejajoDceflibabfi = 7567, + HpjeinejajoOiddfpeiilb = 7562, + HpjeinejajoMhkmbmbigln = 7570, + HpjeinejajoHjpkmlgccdf = 7563, } impl CmdSummonActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83568,31 +81616,23 @@ impl CmdSummonActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdSummonActivityTypeNone", - Self::CmdEnterSummonActivityStageCsReq => "CmdEnterSummonActivityStageCsReq", - Self::CmdSummonActivityBattleEndScNotify => { - "CmdSummonActivityBattleEndScNotify" - } - Self::CmdEnterSummonActivityStageScRsp => "CmdEnterSummonActivityStageScRsp", - Self::CmdGetSummonActivityDataScRsp => "CmdGetSummonActivityDataScRsp", - Self::CmdGetSummonActivityDataCsReq => "CmdGetSummonActivityDataCsReq", + Self::HpjeinejajoAlocmfakbkp => "HPJEINEJAJO_ALOCMFAKBKP", + Self::HpjeinejajoFbkhnnbhcoj => "HPJEINEJAJO_FBKHNNBHCOJ", + Self::HpjeinejajoDceflibabfi => "HPJEINEJAJO_DCEFLIBABFI", + Self::HpjeinejajoOiddfpeiilb => "HPJEINEJAJO_OIDDFPEIILB", + Self::HpjeinejajoMhkmbmbigln => "HPJEINEJAJO_MHKMBMBIGLN", + Self::HpjeinejajoHjpkmlgccdf => "HPJEINEJAJO_HJPKMLGCCDF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdSummonActivityTypeNone" => Some(Self::None), - "CmdEnterSummonActivityStageCsReq" => { - Some(Self::CmdEnterSummonActivityStageCsReq) - } - "CmdSummonActivityBattleEndScNotify" => { - Some(Self::CmdSummonActivityBattleEndScNotify) - } - "CmdEnterSummonActivityStageScRsp" => { - Some(Self::CmdEnterSummonActivityStageScRsp) - } - "CmdGetSummonActivityDataScRsp" => Some(Self::CmdGetSummonActivityDataScRsp), - "CmdGetSummonActivityDataCsReq" => Some(Self::CmdGetSummonActivityDataCsReq), + "HPJEINEJAJO_ALOCMFAKBKP" => Some(Self::HpjeinejajoAlocmfakbkp), + "HPJEINEJAJO_FBKHNNBHCOJ" => Some(Self::HpjeinejajoFbkhnnbhcoj), + "HPJEINEJAJO_DCEFLIBABFI" => Some(Self::HpjeinejajoDceflibabfi), + "HPJEINEJAJO_OIDDFPEIILB" => Some(Self::HpjeinejajoOiddfpeiilb), + "HPJEINEJAJO_MHKMBMBIGLN" => Some(Self::HpjeinejajoMhkmbmbigln), + "HPJEINEJAJO_HJPKMLGCCDF" => Some(Self::HpjeinejajoHjpkmlgccdf), _ => None, } } @@ -83601,21 +81641,21 @@ impl CmdSummonActivityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdSwitchHandType { - None = 0, - CmdSwitchHandUpdateCsReq = 8108, - CmdSwitchHandFinishCsReq = 8103, - CmdSwitchHandResetGameScRsp = 8120, - CmdSwitchHandResetHandPosCsReq = 8118, - CmdSwitchHandResetHandPosScRsp = 8106, - CmdSwitchHandFinishScRsp = 8115, - CmdSwitchHandUpdateScRsp = 8111, - CmdSwitchHandStartCsReq = 8113, - CmdSwitchHandCoinUpdateScRsp = 8116, - CmdSwitchHandDataScRsp = 8101, - CmdSwitchHandCoinUpdateCsReq = 8110, - CmdSwitchHandDataCsReq = 8107, - CmdSwitchHandResetGameCsReq = 8114, - CmdSwitchHandStartScRsp = 8119, + IpjajhmggmiAlocmfakbkp = 0, + IpjajhmggmiFdgokiiakje = 8112, + IpjajhmggmiBlmiccfddlb = 8117, + IpjajhmggmiDkjlbpihfno = 8104, + IpjajhmggmiPnncfnaioal = 8113, + IpjajhmggmiKobafbpjifd = 8114, + IpjajhmggmiCijhgllkefh = 8101, + IpjajhmggmiLnfighhgapo = 8107, + IpjajhmggmiGehmoehnnpa = 8115, + IpjajhmggmiEpbfbkjcpka = 8103, + IpjajhmggmiAelafhmjnfe = 8110, + IpjajhmggmiIblfoigekfg = 8109, + IpjajhmggmiHbefdbidbhi = 8105, + IpjajhmggmiLbmppgakkao = 8120, + IpjajhmggmiIaamipeajei = 8106, } impl CmdSwitchHandType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83624,45 +81664,41 @@ impl CmdSwitchHandType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdSwitchHandTypeNone", - Self::CmdSwitchHandUpdateCsReq => "CmdSwitchHandUpdateCsReq", - Self::CmdSwitchHandFinishCsReq => "CmdSwitchHandFinishCsReq", - Self::CmdSwitchHandResetGameScRsp => "CmdSwitchHandResetGameScRsp", - Self::CmdSwitchHandResetHandPosCsReq => "CmdSwitchHandResetHandPosCsReq", - Self::CmdSwitchHandResetHandPosScRsp => "CmdSwitchHandResetHandPosScRsp", - Self::CmdSwitchHandFinishScRsp => "CmdSwitchHandFinishScRsp", - Self::CmdSwitchHandUpdateScRsp => "CmdSwitchHandUpdateScRsp", - Self::CmdSwitchHandStartCsReq => "CmdSwitchHandStartCsReq", - Self::CmdSwitchHandCoinUpdateScRsp => "CmdSwitchHandCoinUpdateScRsp", - Self::CmdSwitchHandDataScRsp => "CmdSwitchHandDataScRsp", - Self::CmdSwitchHandCoinUpdateCsReq => "CmdSwitchHandCoinUpdateCsReq", - Self::CmdSwitchHandDataCsReq => "CmdSwitchHandDataCsReq", - Self::CmdSwitchHandResetGameCsReq => "CmdSwitchHandResetGameCsReq", - Self::CmdSwitchHandStartScRsp => "CmdSwitchHandStartScRsp", + Self::IpjajhmggmiAlocmfakbkp => "IPJAJHMGGMI_ALOCMFAKBKP", + Self::IpjajhmggmiFdgokiiakje => "IPJAJHMGGMI_FDGOKIIAKJE", + Self::IpjajhmggmiBlmiccfddlb => "IPJAJHMGGMI_BLMICCFDDLB", + Self::IpjajhmggmiDkjlbpihfno => "IPJAJHMGGMI_DKJLBPIHFNO", + Self::IpjajhmggmiPnncfnaioal => "IPJAJHMGGMI_PNNCFNAIOAL", + Self::IpjajhmggmiKobafbpjifd => "IPJAJHMGGMI_KOBAFBPJIFD", + Self::IpjajhmggmiCijhgllkefh => "IPJAJHMGGMI_CIJHGLLKEFH", + Self::IpjajhmggmiLnfighhgapo => "IPJAJHMGGMI_LNFIGHHGAPO", + Self::IpjajhmggmiGehmoehnnpa => "IPJAJHMGGMI_GEHMOEHNNPA", + Self::IpjajhmggmiEpbfbkjcpka => "IPJAJHMGGMI_EPBFBKJCPKA", + Self::IpjajhmggmiAelafhmjnfe => "IPJAJHMGGMI_AELAFHMJNFE", + Self::IpjajhmggmiIblfoigekfg => "IPJAJHMGGMI_IBLFOIGEKFG", + Self::IpjajhmggmiHbefdbidbhi => "IPJAJHMGGMI_HBEFDBIDBHI", + Self::IpjajhmggmiLbmppgakkao => "IPJAJHMGGMI_LBMPPGAKKAO", + Self::IpjajhmggmiIaamipeajei => "IPJAJHMGGMI_IAAMIPEAJEI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdSwitchHandTypeNone" => Some(Self::None), - "CmdSwitchHandUpdateCsReq" => Some(Self::CmdSwitchHandUpdateCsReq), - "CmdSwitchHandFinishCsReq" => Some(Self::CmdSwitchHandFinishCsReq), - "CmdSwitchHandResetGameScRsp" => Some(Self::CmdSwitchHandResetGameScRsp), - "CmdSwitchHandResetHandPosCsReq" => { - Some(Self::CmdSwitchHandResetHandPosCsReq) - } - "CmdSwitchHandResetHandPosScRsp" => { - Some(Self::CmdSwitchHandResetHandPosScRsp) - } - "CmdSwitchHandFinishScRsp" => Some(Self::CmdSwitchHandFinishScRsp), - "CmdSwitchHandUpdateScRsp" => Some(Self::CmdSwitchHandUpdateScRsp), - "CmdSwitchHandStartCsReq" => Some(Self::CmdSwitchHandStartCsReq), - "CmdSwitchHandCoinUpdateScRsp" => Some(Self::CmdSwitchHandCoinUpdateScRsp), - "CmdSwitchHandDataScRsp" => Some(Self::CmdSwitchHandDataScRsp), - "CmdSwitchHandCoinUpdateCsReq" => Some(Self::CmdSwitchHandCoinUpdateCsReq), - "CmdSwitchHandDataCsReq" => Some(Self::CmdSwitchHandDataCsReq), - "CmdSwitchHandResetGameCsReq" => Some(Self::CmdSwitchHandResetGameCsReq), - "CmdSwitchHandStartScRsp" => Some(Self::CmdSwitchHandStartScRsp), + "IPJAJHMGGMI_ALOCMFAKBKP" => Some(Self::IpjajhmggmiAlocmfakbkp), + "IPJAJHMGGMI_FDGOKIIAKJE" => Some(Self::IpjajhmggmiFdgokiiakje), + "IPJAJHMGGMI_BLMICCFDDLB" => Some(Self::IpjajhmggmiBlmiccfddlb), + "IPJAJHMGGMI_DKJLBPIHFNO" => Some(Self::IpjajhmggmiDkjlbpihfno), + "IPJAJHMGGMI_PNNCFNAIOAL" => Some(Self::IpjajhmggmiPnncfnaioal), + "IPJAJHMGGMI_KOBAFBPJIFD" => Some(Self::IpjajhmggmiKobafbpjifd), + "IPJAJHMGGMI_CIJHGLLKEFH" => Some(Self::IpjajhmggmiCijhgllkefh), + "IPJAJHMGGMI_LNFIGHHGAPO" => Some(Self::IpjajhmggmiLnfighhgapo), + "IPJAJHMGGMI_GEHMOEHNNPA" => Some(Self::IpjajhmggmiGehmoehnnpa), + "IPJAJHMGGMI_EPBFBKJCPKA" => Some(Self::IpjajhmggmiEpbfbkjcpka), + "IPJAJHMGGMI_AELAFHMJNFE" => Some(Self::IpjajhmggmiAelafhmjnfe), + "IPJAJHMGGMI_IBLFOIGEKFG" => Some(Self::IpjajhmggmiIblfoigekfg), + "IPJAJHMGGMI_HBEFDBIDBHI" => Some(Self::IpjajhmggmiHbefdbidbhi), + "IPJAJHMGGMI_LBMPPGAKKAO" => Some(Self::IpjajhmggmiLbmppgakkao), + "IPJAJHMGGMI_IAAMIPEAJEI" => Some(Self::IpjajhmggmiIaamipeajei), _ => None, } } @@ -83670,29 +81706,29 @@ impl CmdSwitchHandType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Leglgdjopkc { - SwitchHandOpPropTypeNone = 0, - SwitchHandOpPropTypeCatch = 1, - SwitchHandOpPropTypeLift = 2, +pub enum Kkkjgmbcbgp { + Alocmfakbkp = 0, + Iimdmlcjpcd = 1, + Olelopoemkk = 2, } -impl Leglgdjopkc { +impl Kkkjgmbcbgp { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::SwitchHandOpPropTypeNone => "SWITCH_HAND_OP_PROP_TYPE_NONE", - Self::SwitchHandOpPropTypeCatch => "SWITCH_HAND_OP_PROP_TYPE_CATCH", - Self::SwitchHandOpPropTypeLift => "SWITCH_HAND_OP_PROP_TYPE_LIFT", + Self::Alocmfakbkp => "KKKJGMBCBGP_ALOCMFAKBKP", + Self::Iimdmlcjpcd => "KKKJGMBCBGP_IIMDMLCJPCD", + Self::Olelopoemkk => "KKKJGMBCBGP_OLELOPOEMKK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SWITCH_HAND_OP_PROP_TYPE_NONE" => Some(Self::SwitchHandOpPropTypeNone), - "SWITCH_HAND_OP_PROP_TYPE_CATCH" => Some(Self::SwitchHandOpPropTypeCatch), - "SWITCH_HAND_OP_PROP_TYPE_LIFT" => Some(Self::SwitchHandOpPropTypeLift), + "KKKJGMBCBGP_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "KKKJGMBCBGP_IIMDMLCJPCD" => Some(Self::Iimdmlcjpcd), + "KKKJGMBCBGP_OLELOPOEMKK" => Some(Self::Olelopoemkk), _ => None, } } @@ -83701,43 +81737,43 @@ impl Leglgdjopkc { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdSwordTrainingType { - None = 0, - CmdSwordTrainingExamResultConfirmCsReq = 7492, - CmdSwordTrainingStoryConfirmScRsp = 7462, - CmdSwordTrainingUnlockSyncScNotify = 7484, - CmdSwordTrainingRestoreGameCsReq = 7459, - CmdSwordTrainingActionTurnSettleScNotify = 7466, - CmdSwordTrainingGameSettleScNotify = 7452, - CmdSwordTrainingStartGameCsReq = 7461, - CmdSwordTrainingSetSkillTraceCsReq = 7474, - CmdGetSwordTrainingDataCsReq = 7478, - CmdSwordTrainingLearnSkillScRsp = 7480, - CmdSwordTrainingResumeGameCsReq = 7496, - CmdSwordTrainingExamResultConfirmScRsp = 7487, - CmdSwordTrainingLearnSkillCsReq = 7483, - CmdSwordTrainingStoryConfirmCsReq = 7485, - CmdSwordTrainingSetSkillTraceScRsp = 7460, - CmdSwordTrainingDialogueSelectOptionCsReq = 7494, - CmdSwordTrainingSelectEndingScRsp = 7475, - CmdSwordTrainingRestoreGameScRsp = 7472, - CmdSwordTrainingStoryBattleCsReq = 7500, - CmdSwordTrainingDailyPhaseConfirmScRsp = 7470, - CmdSwordTrainingMarkEndingViewedCsReq = 7489, - CmdSwordTrainingStoryBattleScRsp = 7468, - CmdSwordTrainingTurnActionCsReq = 7488, - CmdSwordTrainingStartGameScRsp = 7479, - CmdSwordTrainingGiveUpGameScRsp = 7481, - CmdEnterSwordTrainingExamCsReq = 7469, - CmdSwordTrainingGiveUpGameCsReq = 7465, - CmdEnterSwordTrainingExamScRsp = 7497, - CmdGetSwordTrainingDataScRsp = 7471, - CmdSwordTrainingDialogueSelectOptionScRsp = 7451, - CmdSwordTrainingSelectEndingCsReq = 7482, - CmdSwordTrainingResumeGameScRsp = 7464, - CmdSwordTrainingGameSyncChangeScNotify = 7476, - CmdSwordTrainingTurnActionScRsp = 7455, - CmdSwordTrainingMarkEndingViewedScRsp = 7467, - CmdSwordTrainingDailyPhaseConfirmCsReq = 7477, + HladhllgcbmAlocmfakbkp = 0, + HladhllgcbmBfdpogekjib = 7474, + HladhllgcbmIphobiamegn = 7457, + HladhllgcbmNinffiomnkf = 7477, + HladhllgcbmGobkdmapgcl = 7471, + HladhllgcbmBmgkcclhcod = 7487, + HladhllgcbmGalihaggfjp = 7496, + HladhllgcbmCehcbliljpj = 7454, + HladhllgcbmClbpnhgpoob = 7490, + HladhllgcbmGphmoamkkla = 7480, + HladhllgcbmGiaklcljcjl = 7483, + HladhllgcbmMondoclcpae = 7478, + HladhllgcbmFdgbjogpjbp = 7473, + HladhllgcbmMpkincghikf = 7481, + HladhllgcbmEfcfdpjgmon = 7486, + HladhllgcbmGgmececphmg = 7497, + HladhllgcbmFcdklpmbchd = 7455, + HladhllgcbmNoalpkmilbg = 7485, + HladhllgcbmNlidniealbd = 7453, + HladhllgcbmNogdglgalef = 7476, + HladhllgcbmPblcokmgdpi = 7495, + HladhllgcbmPccdpcokfcj = 7498, + HladhllgcbmNbakfggkogc = 7470, + HladhllgcbmIihabpjdeaj = 7482, + HladhllgcbmEalbcmciooi = 7484, + HladhllgcbmMkaanoioape = 7458, + HladhllgcbmClkpidcihga = 7451, + HladhllgcbmGdbhonbfooe = 7500, + HladhllgcbmNfgkejpdioj = 7491, + HladhllgcbmBlhmdmekack = 7475, + HladhllgcbmNeechjflgeh = 7479, + HladhllgcbmMigedgmemci = 7460, + HladhllgcbmPoamlppfheo = 7494, + HladhllgcbmIhbpmpdnjfb = 7493, + HladhllgcbmIgphookdcgj = 7452, + HladhllgcbmElldpgheegg = 7456, + HladhllgcbmObbbkbaagie = 7469, } impl CmdSwordTrainingType { /// String value of the enum field names used in the ProtoBuf definition. @@ -83746,189 +81782,85 @@ impl CmdSwordTrainingType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdSwordTrainingTypeNone", - Self::CmdSwordTrainingExamResultConfirmCsReq => { - "CmdSwordTrainingExamResultConfirmCsReq" - } - Self::CmdSwordTrainingStoryConfirmScRsp => { - "CmdSwordTrainingStoryConfirmScRsp" - } - Self::CmdSwordTrainingUnlockSyncScNotify => { - "CmdSwordTrainingUnlockSyncScNotify" - } - Self::CmdSwordTrainingRestoreGameCsReq => "CmdSwordTrainingRestoreGameCsReq", - Self::CmdSwordTrainingActionTurnSettleScNotify => { - "CmdSwordTrainingActionTurnSettleScNotify" - } - Self::CmdSwordTrainingGameSettleScNotify => { - "CmdSwordTrainingGameSettleScNotify" - } - Self::CmdSwordTrainingStartGameCsReq => "CmdSwordTrainingStartGameCsReq", - Self::CmdSwordTrainingSetSkillTraceCsReq => { - "CmdSwordTrainingSetSkillTraceCsReq" - } - Self::CmdGetSwordTrainingDataCsReq => "CmdGetSwordTrainingDataCsReq", - Self::CmdSwordTrainingLearnSkillScRsp => "CmdSwordTrainingLearnSkillScRsp", - Self::CmdSwordTrainingResumeGameCsReq => "CmdSwordTrainingResumeGameCsReq", - Self::CmdSwordTrainingExamResultConfirmScRsp => { - "CmdSwordTrainingExamResultConfirmScRsp" - } - Self::CmdSwordTrainingLearnSkillCsReq => "CmdSwordTrainingLearnSkillCsReq", - Self::CmdSwordTrainingStoryConfirmCsReq => { - "CmdSwordTrainingStoryConfirmCsReq" - } - Self::CmdSwordTrainingSetSkillTraceScRsp => { - "CmdSwordTrainingSetSkillTraceScRsp" - } - Self::CmdSwordTrainingDialogueSelectOptionCsReq => { - "CmdSwordTrainingDialogueSelectOptionCsReq" - } - Self::CmdSwordTrainingSelectEndingScRsp => { - "CmdSwordTrainingSelectEndingScRsp" - } - Self::CmdSwordTrainingRestoreGameScRsp => "CmdSwordTrainingRestoreGameScRsp", - Self::CmdSwordTrainingStoryBattleCsReq => "CmdSwordTrainingStoryBattleCsReq", - Self::CmdSwordTrainingDailyPhaseConfirmScRsp => { - "CmdSwordTrainingDailyPhaseConfirmScRsp" - } - Self::CmdSwordTrainingMarkEndingViewedCsReq => { - "CmdSwordTrainingMarkEndingViewedCsReq" - } - Self::CmdSwordTrainingStoryBattleScRsp => "CmdSwordTrainingStoryBattleScRsp", - Self::CmdSwordTrainingTurnActionCsReq => "CmdSwordTrainingTurnActionCsReq", - Self::CmdSwordTrainingStartGameScRsp => "CmdSwordTrainingStartGameScRsp", - Self::CmdSwordTrainingGiveUpGameScRsp => "CmdSwordTrainingGiveUpGameScRsp", - Self::CmdEnterSwordTrainingExamCsReq => "CmdEnterSwordTrainingExamCsReq", - Self::CmdSwordTrainingGiveUpGameCsReq => "CmdSwordTrainingGiveUpGameCsReq", - Self::CmdEnterSwordTrainingExamScRsp => "CmdEnterSwordTrainingExamScRsp", - Self::CmdGetSwordTrainingDataScRsp => "CmdGetSwordTrainingDataScRsp", - Self::CmdSwordTrainingDialogueSelectOptionScRsp => { - "CmdSwordTrainingDialogueSelectOptionScRsp" - } - Self::CmdSwordTrainingSelectEndingCsReq => { - "CmdSwordTrainingSelectEndingCsReq" - } - Self::CmdSwordTrainingResumeGameScRsp => "CmdSwordTrainingResumeGameScRsp", - Self::CmdSwordTrainingGameSyncChangeScNotify => { - "CmdSwordTrainingGameSyncChangeScNotify" - } - Self::CmdSwordTrainingTurnActionScRsp => "CmdSwordTrainingTurnActionScRsp", - Self::CmdSwordTrainingMarkEndingViewedScRsp => { - "CmdSwordTrainingMarkEndingViewedScRsp" - } - Self::CmdSwordTrainingDailyPhaseConfirmCsReq => { - "CmdSwordTrainingDailyPhaseConfirmCsReq" - } + Self::HladhllgcbmAlocmfakbkp => "HLADHLLGCBM_ALOCMFAKBKP", + Self::HladhllgcbmBfdpogekjib => "HLADHLLGCBM_BFDPOGEKJIB", + Self::HladhllgcbmIphobiamegn => "HLADHLLGCBM_IPHOBIAMEGN", + Self::HladhllgcbmNinffiomnkf => "HLADHLLGCBM_NINFFIOMNKF", + Self::HladhllgcbmGobkdmapgcl => "HLADHLLGCBM_GOBKDMAPGCL", + Self::HladhllgcbmBmgkcclhcod => "HLADHLLGCBM_BMGKCCLHCOD", + Self::HladhllgcbmGalihaggfjp => "HLADHLLGCBM_GALIHAGGFJP", + Self::HladhllgcbmCehcbliljpj => "HLADHLLGCBM_CEHCBLILJPJ", + Self::HladhllgcbmClbpnhgpoob => "HLADHLLGCBM_CLBPNHGPOOB", + Self::HladhllgcbmGphmoamkkla => "HLADHLLGCBM_GPHMOAMKKLA", + Self::HladhllgcbmGiaklcljcjl => "HLADHLLGCBM_GIAKLCLJCJL", + Self::HladhllgcbmMondoclcpae => "HLADHLLGCBM_MONDOCLCPAE", + Self::HladhllgcbmFdgbjogpjbp => "HLADHLLGCBM_FDGBJOGPJBP", + Self::HladhllgcbmMpkincghikf => "HLADHLLGCBM_MPKINCGHIKF", + Self::HladhllgcbmEfcfdpjgmon => "HLADHLLGCBM_EFCFDPJGMON", + Self::HladhllgcbmGgmececphmg => "HLADHLLGCBM_GGMECECPHMG", + Self::HladhllgcbmFcdklpmbchd => "HLADHLLGCBM_FCDKLPMBCHD", + Self::HladhllgcbmNoalpkmilbg => "HLADHLLGCBM_NOALPKMILBG", + Self::HladhllgcbmNlidniealbd => "HLADHLLGCBM_NLIDNIEALBD", + Self::HladhllgcbmNogdglgalef => "HLADHLLGCBM_NOGDGLGALEF", + Self::HladhllgcbmPblcokmgdpi => "HLADHLLGCBM_PBLCOKMGDPI", + Self::HladhllgcbmPccdpcokfcj => "HLADHLLGCBM_PCCDPCOKFCJ", + Self::HladhllgcbmNbakfggkogc => "HLADHLLGCBM_NBAKFGGKOGC", + Self::HladhllgcbmIihabpjdeaj => "HLADHLLGCBM_IIHABPJDEAJ", + Self::HladhllgcbmEalbcmciooi => "HLADHLLGCBM_EALBCMCIOOI", + Self::HladhllgcbmMkaanoioape => "HLADHLLGCBM_MKAANOIOAPE", + Self::HladhllgcbmClkpidcihga => "HLADHLLGCBM_CLKPIDCIHGA", + Self::HladhllgcbmGdbhonbfooe => "HLADHLLGCBM_GDBHONBFOOE", + Self::HladhllgcbmNfgkejpdioj => "HLADHLLGCBM_NFGKEJPDIOJ", + Self::HladhllgcbmBlhmdmekack => "HLADHLLGCBM_BLHMDMEKACK", + Self::HladhllgcbmNeechjflgeh => "HLADHLLGCBM_NEECHJFLGEH", + Self::HladhllgcbmMigedgmemci => "HLADHLLGCBM_MIGEDGMEMCI", + Self::HladhllgcbmPoamlppfheo => "HLADHLLGCBM_POAMLPPFHEO", + Self::HladhllgcbmIhbpmpdnjfb => "HLADHLLGCBM_IHBPMPDNJFB", + Self::HladhllgcbmIgphookdcgj => "HLADHLLGCBM_IGPHOOKDCGJ", + Self::HladhllgcbmElldpgheegg => "HLADHLLGCBM_ELLDPGHEEGG", + Self::HladhllgcbmObbbkbaagie => "HLADHLLGCBM_OBBBKBAAGIE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdSwordTrainingTypeNone" => Some(Self::None), - "CmdSwordTrainingExamResultConfirmCsReq" => { - Some(Self::CmdSwordTrainingExamResultConfirmCsReq) - } - "CmdSwordTrainingStoryConfirmScRsp" => { - Some(Self::CmdSwordTrainingStoryConfirmScRsp) - } - "CmdSwordTrainingUnlockSyncScNotify" => { - Some(Self::CmdSwordTrainingUnlockSyncScNotify) - } - "CmdSwordTrainingRestoreGameCsReq" => { - Some(Self::CmdSwordTrainingRestoreGameCsReq) - } - "CmdSwordTrainingActionTurnSettleScNotify" => { - Some(Self::CmdSwordTrainingActionTurnSettleScNotify) - } - "CmdSwordTrainingGameSettleScNotify" => { - Some(Self::CmdSwordTrainingGameSettleScNotify) - } - "CmdSwordTrainingStartGameCsReq" => { - Some(Self::CmdSwordTrainingStartGameCsReq) - } - "CmdSwordTrainingSetSkillTraceCsReq" => { - Some(Self::CmdSwordTrainingSetSkillTraceCsReq) - } - "CmdGetSwordTrainingDataCsReq" => Some(Self::CmdGetSwordTrainingDataCsReq), - "CmdSwordTrainingLearnSkillScRsp" => { - Some(Self::CmdSwordTrainingLearnSkillScRsp) - } - "CmdSwordTrainingResumeGameCsReq" => { - Some(Self::CmdSwordTrainingResumeGameCsReq) - } - "CmdSwordTrainingExamResultConfirmScRsp" => { - Some(Self::CmdSwordTrainingExamResultConfirmScRsp) - } - "CmdSwordTrainingLearnSkillCsReq" => { - Some(Self::CmdSwordTrainingLearnSkillCsReq) - } - "CmdSwordTrainingStoryConfirmCsReq" => { - Some(Self::CmdSwordTrainingStoryConfirmCsReq) - } - "CmdSwordTrainingSetSkillTraceScRsp" => { - Some(Self::CmdSwordTrainingSetSkillTraceScRsp) - } - "CmdSwordTrainingDialogueSelectOptionCsReq" => { - Some(Self::CmdSwordTrainingDialogueSelectOptionCsReq) - } - "CmdSwordTrainingSelectEndingScRsp" => { - Some(Self::CmdSwordTrainingSelectEndingScRsp) - } - "CmdSwordTrainingRestoreGameScRsp" => { - Some(Self::CmdSwordTrainingRestoreGameScRsp) - } - "CmdSwordTrainingStoryBattleCsReq" => { - Some(Self::CmdSwordTrainingStoryBattleCsReq) - } - "CmdSwordTrainingDailyPhaseConfirmScRsp" => { - Some(Self::CmdSwordTrainingDailyPhaseConfirmScRsp) - } - "CmdSwordTrainingMarkEndingViewedCsReq" => { - Some(Self::CmdSwordTrainingMarkEndingViewedCsReq) - } - "CmdSwordTrainingStoryBattleScRsp" => { - Some(Self::CmdSwordTrainingStoryBattleScRsp) - } - "CmdSwordTrainingTurnActionCsReq" => { - Some(Self::CmdSwordTrainingTurnActionCsReq) - } - "CmdSwordTrainingStartGameScRsp" => { - Some(Self::CmdSwordTrainingStartGameScRsp) - } - "CmdSwordTrainingGiveUpGameScRsp" => { - Some(Self::CmdSwordTrainingGiveUpGameScRsp) - } - "CmdEnterSwordTrainingExamCsReq" => { - Some(Self::CmdEnterSwordTrainingExamCsReq) - } - "CmdSwordTrainingGiveUpGameCsReq" => { - Some(Self::CmdSwordTrainingGiveUpGameCsReq) - } - "CmdEnterSwordTrainingExamScRsp" => { - Some(Self::CmdEnterSwordTrainingExamScRsp) - } - "CmdGetSwordTrainingDataScRsp" => Some(Self::CmdGetSwordTrainingDataScRsp), - "CmdSwordTrainingDialogueSelectOptionScRsp" => { - Some(Self::CmdSwordTrainingDialogueSelectOptionScRsp) - } - "CmdSwordTrainingSelectEndingCsReq" => { - Some(Self::CmdSwordTrainingSelectEndingCsReq) - } - "CmdSwordTrainingResumeGameScRsp" => { - Some(Self::CmdSwordTrainingResumeGameScRsp) - } - "CmdSwordTrainingGameSyncChangeScNotify" => { - Some(Self::CmdSwordTrainingGameSyncChangeScNotify) - } - "CmdSwordTrainingTurnActionScRsp" => { - Some(Self::CmdSwordTrainingTurnActionScRsp) - } - "CmdSwordTrainingMarkEndingViewedScRsp" => { - Some(Self::CmdSwordTrainingMarkEndingViewedScRsp) - } - "CmdSwordTrainingDailyPhaseConfirmCsReq" => { - Some(Self::CmdSwordTrainingDailyPhaseConfirmCsReq) - } + "HLADHLLGCBM_ALOCMFAKBKP" => Some(Self::HladhllgcbmAlocmfakbkp), + "HLADHLLGCBM_BFDPOGEKJIB" => Some(Self::HladhllgcbmBfdpogekjib), + "HLADHLLGCBM_IPHOBIAMEGN" => Some(Self::HladhllgcbmIphobiamegn), + "HLADHLLGCBM_NINFFIOMNKF" => Some(Self::HladhllgcbmNinffiomnkf), + "HLADHLLGCBM_GOBKDMAPGCL" => Some(Self::HladhllgcbmGobkdmapgcl), + "HLADHLLGCBM_BMGKCCLHCOD" => Some(Self::HladhllgcbmBmgkcclhcod), + "HLADHLLGCBM_GALIHAGGFJP" => Some(Self::HladhllgcbmGalihaggfjp), + "HLADHLLGCBM_CEHCBLILJPJ" => Some(Self::HladhllgcbmCehcbliljpj), + "HLADHLLGCBM_CLBPNHGPOOB" => Some(Self::HladhllgcbmClbpnhgpoob), + "HLADHLLGCBM_GPHMOAMKKLA" => Some(Self::HladhllgcbmGphmoamkkla), + "HLADHLLGCBM_GIAKLCLJCJL" => Some(Self::HladhllgcbmGiaklcljcjl), + "HLADHLLGCBM_MONDOCLCPAE" => Some(Self::HladhllgcbmMondoclcpae), + "HLADHLLGCBM_FDGBJOGPJBP" => Some(Self::HladhllgcbmFdgbjogpjbp), + "HLADHLLGCBM_MPKINCGHIKF" => Some(Self::HladhllgcbmMpkincghikf), + "HLADHLLGCBM_EFCFDPJGMON" => Some(Self::HladhllgcbmEfcfdpjgmon), + "HLADHLLGCBM_GGMECECPHMG" => Some(Self::HladhllgcbmGgmececphmg), + "HLADHLLGCBM_FCDKLPMBCHD" => Some(Self::HladhllgcbmFcdklpmbchd), + "HLADHLLGCBM_NOALPKMILBG" => Some(Self::HladhllgcbmNoalpkmilbg), + "HLADHLLGCBM_NLIDNIEALBD" => Some(Self::HladhllgcbmNlidniealbd), + "HLADHLLGCBM_NOGDGLGALEF" => Some(Self::HladhllgcbmNogdglgalef), + "HLADHLLGCBM_PBLCOKMGDPI" => Some(Self::HladhllgcbmPblcokmgdpi), + "HLADHLLGCBM_PCCDPCOKFCJ" => Some(Self::HladhllgcbmPccdpcokfcj), + "HLADHLLGCBM_NBAKFGGKOGC" => Some(Self::HladhllgcbmNbakfggkogc), + "HLADHLLGCBM_IIHABPJDEAJ" => Some(Self::HladhllgcbmIihabpjdeaj), + "HLADHLLGCBM_EALBCMCIOOI" => Some(Self::HladhllgcbmEalbcmciooi), + "HLADHLLGCBM_MKAANOIOAPE" => Some(Self::HladhllgcbmMkaanoioape), + "HLADHLLGCBM_CLKPIDCIHGA" => Some(Self::HladhllgcbmClkpidcihga), + "HLADHLLGCBM_GDBHONBFOOE" => Some(Self::HladhllgcbmGdbhonbfooe), + "HLADHLLGCBM_NFGKEJPDIOJ" => Some(Self::HladhllgcbmNfgkejpdioj), + "HLADHLLGCBM_BLHMDMEKACK" => Some(Self::HladhllgcbmBlhmdmekack), + "HLADHLLGCBM_NEECHJFLGEH" => Some(Self::HladhllgcbmNeechjflgeh), + "HLADHLLGCBM_MIGEDGMEMCI" => Some(Self::HladhllgcbmMigedgmemci), + "HLADHLLGCBM_POAMLPPFHEO" => Some(Self::HladhllgcbmPoamlppfheo), + "HLADHLLGCBM_IHBPMPDNJFB" => Some(Self::HladhllgcbmIhbpmpdnjfb), + "HLADHLLGCBM_IGPHOOKDCGJ" => Some(Self::HladhllgcbmIgphookdcgj), + "HLADHLLGCBM_ELLDPGHEEGG" => Some(Self::HladhllgcbmElldpgheegg), + "HLADHLLGCBM_OBBBKBAAGIE" => Some(Self::HladhllgcbmObbbkbaagie), _ => None, } } @@ -83936,70 +81868,44 @@ impl CmdSwordTrainingType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Pkhjbpmibba { - SwordTrainGameSourceTypeNone = 0, - SwordTrainGameSourceTypeTurnSettle = 1, - SwordTrainGameSourceTypeStatusUpgrade = 2, - SwordTrainGameSourceTypeAction = 3, - SwordTrainGameSourceTypeActionHint = 4, - SwordTrainGameSourceTypeStory = 5, - SwordTrainGameSourceTypeExamBonus = 6, - SwordTrainGameSourceTypeDialogue = 7, +pub enum Bagpjfogcge { + Alocmfakbkp = 0, + Alhnpbfdiof = 1, + Bhlgaiodcen = 2, + Ajjnebloolc = 3, + Jgnmpmpmeil = 4, + Babdaphhefm = 5, + Bkejioeibng = 6, + Bchklgifekh = 7, } -impl Pkhjbpmibba { +impl Bagpjfogcge { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::SwordTrainGameSourceTypeNone => "SWORD_TRAIN_GAME_SOURCE_TYPE_NONE", - Self::SwordTrainGameSourceTypeTurnSettle => { - "SWORD_TRAIN_GAME_SOURCE_TYPE_TURN_SETTLE" - } - Self::SwordTrainGameSourceTypeStatusUpgrade => { - "SWORD_TRAIN_GAME_SOURCE_TYPE_STATUS_UPGRADE" - } - Self::SwordTrainGameSourceTypeAction => "SWORD_TRAIN_GAME_SOURCE_TYPE_ACTION", - Self::SwordTrainGameSourceTypeActionHint => { - "SWORD_TRAIN_GAME_SOURCE_TYPE_ACTION_HINT" - } - Self::SwordTrainGameSourceTypeStory => "SWORD_TRAIN_GAME_SOURCE_TYPE_STORY", - Self::SwordTrainGameSourceTypeExamBonus => { - "SWORD_TRAIN_GAME_SOURCE_TYPE_EXAM_BONUS" - } - Self::SwordTrainGameSourceTypeDialogue => { - "SWORD_TRAIN_GAME_SOURCE_TYPE_DIALOGUE" - } + Self::Alocmfakbkp => "BAGPJFOGCGE_ALOCMFAKBKP", + Self::Alhnpbfdiof => "BAGPJFOGCGE_ALHNPBFDIOF", + Self::Bhlgaiodcen => "BAGPJFOGCGE_BHLGAIODCEN", + Self::Ajjnebloolc => "BAGPJFOGCGE_AJJNEBLOOLC", + Self::Jgnmpmpmeil => "BAGPJFOGCGE_JGNMPMPMEIL", + Self::Babdaphhefm => "BAGPJFOGCGE_BABDAPHHEFM", + Self::Bkejioeibng => "BAGPJFOGCGE_BKEJIOEIBNG", + Self::Bchklgifekh => "BAGPJFOGCGE_BCHKLGIFEKH", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SWORD_TRAIN_GAME_SOURCE_TYPE_NONE" => { - Some(Self::SwordTrainGameSourceTypeNone) - } - "SWORD_TRAIN_GAME_SOURCE_TYPE_TURN_SETTLE" => { - Some(Self::SwordTrainGameSourceTypeTurnSettle) - } - "SWORD_TRAIN_GAME_SOURCE_TYPE_STATUS_UPGRADE" => { - Some(Self::SwordTrainGameSourceTypeStatusUpgrade) - } - "SWORD_TRAIN_GAME_SOURCE_TYPE_ACTION" => { - Some(Self::SwordTrainGameSourceTypeAction) - } - "SWORD_TRAIN_GAME_SOURCE_TYPE_ACTION_HINT" => { - Some(Self::SwordTrainGameSourceTypeActionHint) - } - "SWORD_TRAIN_GAME_SOURCE_TYPE_STORY" => { - Some(Self::SwordTrainGameSourceTypeStory) - } - "SWORD_TRAIN_GAME_SOURCE_TYPE_EXAM_BONUS" => { - Some(Self::SwordTrainGameSourceTypeExamBonus) - } - "SWORD_TRAIN_GAME_SOURCE_TYPE_DIALOGUE" => { - Some(Self::SwordTrainGameSourceTypeDialogue) - } + "BAGPJFOGCGE_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "BAGPJFOGCGE_ALHNPBFDIOF" => Some(Self::Alhnpbfdiof), + "BAGPJFOGCGE_BHLGAIODCEN" => Some(Self::Bhlgaiodcen), + "BAGPJFOGCGE_AJJNEBLOOLC" => Some(Self::Ajjnebloolc), + "BAGPJFOGCGE_JGNMPMPMEIL" => Some(Self::Jgnmpmpmeil), + "BAGPJFOGCGE_BABDAPHHEFM" => Some(Self::Babdaphhefm), + "BAGPJFOGCGE_BKEJIOEIBNG" => Some(Self::Bkejioeibng), + "BAGPJFOGCGE_BCHKLGIFEKH" => Some(Self::Bchklgifekh), _ => None, } } @@ -84007,55 +81913,35 @@ impl Pkhjbpmibba { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Bjncdefeeji { - SwordTrainingDailyPhaseTypeNone = 0, - SwordTrainingDailyPhaseTypeMorning = 1, - SwordTrainingDailyPhaseTypeNoon = 2, - SwordTrainingDailyPhaseTypeAfternoon = 3, - SwordTrainingDailyPhaseTypeEvening = 4, +pub enum Bjmbjngaefi { + Alocmfakbkp = 0, + Cgfddgbfpoi = 1, + Afnolohfbod = 2, + Apfgkgpopkc = 3, + Pdppflionkf = 4, } -impl Bjncdefeeji { +impl Bjmbjngaefi { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::SwordTrainingDailyPhaseTypeNone => { - "SWORD_TRAINING_DAILY_PHASE_TYPE_NONE" - } - Self::SwordTrainingDailyPhaseTypeMorning => { - "SWORD_TRAINING_DAILY_PHASE_TYPE_MORNING" - } - Self::SwordTrainingDailyPhaseTypeNoon => { - "SWORD_TRAINING_DAILY_PHASE_TYPE_NOON" - } - Self::SwordTrainingDailyPhaseTypeAfternoon => { - "SWORD_TRAINING_DAILY_PHASE_TYPE_AFTERNOON" - } - Self::SwordTrainingDailyPhaseTypeEvening => { - "SWORD_TRAINING_DAILY_PHASE_TYPE_EVENING" - } + Self::Alocmfakbkp => "BJMBJNGAEFI_ALOCMFAKBKP", + Self::Cgfddgbfpoi => "BJMBJNGAEFI_CGFDDGBFPOI", + Self::Afnolohfbod => "BJMBJNGAEFI_AFNOLOHFBOD", + Self::Apfgkgpopkc => "BJMBJNGAEFI_APFGKGPOPKC", + Self::Pdppflionkf => "BJMBJNGAEFI_PDPPFLIONKF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SWORD_TRAINING_DAILY_PHASE_TYPE_NONE" => { - Some(Self::SwordTrainingDailyPhaseTypeNone) - } - "SWORD_TRAINING_DAILY_PHASE_TYPE_MORNING" => { - Some(Self::SwordTrainingDailyPhaseTypeMorning) - } - "SWORD_TRAINING_DAILY_PHASE_TYPE_NOON" => { - Some(Self::SwordTrainingDailyPhaseTypeNoon) - } - "SWORD_TRAINING_DAILY_PHASE_TYPE_AFTERNOON" => { - Some(Self::SwordTrainingDailyPhaseTypeAfternoon) - } - "SWORD_TRAINING_DAILY_PHASE_TYPE_EVENING" => { - Some(Self::SwordTrainingDailyPhaseTypeEvening) - } + "BJMBJNGAEFI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "BJMBJNGAEFI_CGFDDGBFPOI" => Some(Self::Cgfddgbfpoi), + "BJMBJNGAEFI_AFNOLOHFBOD" => Some(Self::Afnolohfbod), + "BJMBJNGAEFI_APFGKGPOPKC" => Some(Self::Apfgkgpopkc), + "BJMBJNGAEFI_PDPPFLIONKF" => Some(Self::Pdppflionkf), _ => None, } } @@ -84063,50 +81949,38 @@ impl Bjncdefeeji { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hdijjmdpile { - SwordTrainingStatusTypeNone = 0, - SwordTrainingStatusTypePower = 1, - SwordTrainingStatusTypeAgility = 2, - SwordTrainingStatusTypeToughness = 3, - SwordTrainingStatusTypePerception = 4, - SwordTrainingStatusTypeMax = 5, +pub enum Pfgnkjdlfna { + Alocmfakbkp = 0, + Ohdlcjmnhcd = 1, + Pkcmllinpfo = 2, + Edcgdbfjnpg = 3, + Kocpfibfiec = 4, + Dmamhdffjoi = 5, } -impl Hdijjmdpile { +impl Pfgnkjdlfna { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::SwordTrainingStatusTypeNone => "SWORD_TRAINING_STATUS_TYPE_NONE", - Self::SwordTrainingStatusTypePower => "SWORD_TRAINING_STATUS_TYPE_POWER", - Self::SwordTrainingStatusTypeAgility => "SWORD_TRAINING_STATUS_TYPE_AGILITY", - Self::SwordTrainingStatusTypeToughness => { - "SWORD_TRAINING_STATUS_TYPE_TOUGHNESS" - } - Self::SwordTrainingStatusTypePerception => { - "SWORD_TRAINING_STATUS_TYPE_PERCEPTION" - } - Self::SwordTrainingStatusTypeMax => "_SWORD_TRAINING_STATUS_TYPE_MAX", + Self::Alocmfakbkp => "PFGNKJDLFNA_ALOCMFAKBKP", + Self::Ohdlcjmnhcd => "PFGNKJDLFNA_OHDLCJMNHCD", + Self::Pkcmllinpfo => "PFGNKJDLFNA_PKCMLLINPFO", + Self::Edcgdbfjnpg => "PFGNKJDLFNA_EDCGDBFJNPG", + Self::Kocpfibfiec => "PFGNKJDLFNA_KOCPFIBFIEC", + Self::Dmamhdffjoi => "PFGNKJDLFNA_DMAMHDFFJOI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SWORD_TRAINING_STATUS_TYPE_NONE" => Some(Self::SwordTrainingStatusTypeNone), - "SWORD_TRAINING_STATUS_TYPE_POWER" => { - Some(Self::SwordTrainingStatusTypePower) - } - "SWORD_TRAINING_STATUS_TYPE_AGILITY" => { - Some(Self::SwordTrainingStatusTypeAgility) - } - "SWORD_TRAINING_STATUS_TYPE_TOUGHNESS" => { - Some(Self::SwordTrainingStatusTypeToughness) - } - "SWORD_TRAINING_STATUS_TYPE_PERCEPTION" => { - Some(Self::SwordTrainingStatusTypePerception) - } - "_SWORD_TRAINING_STATUS_TYPE_MAX" => Some(Self::SwordTrainingStatusTypeMax), + "PFGNKJDLFNA_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "PFGNKJDLFNA_OHDLCJMNHCD" => Some(Self::Ohdlcjmnhcd), + "PFGNKJDLFNA_PKCMLLINPFO" => Some(Self::Pkcmllinpfo), + "PFGNKJDLFNA_EDCGDBFJNPG" => Some(Self::Edcgdbfjnpg), + "PFGNKJDLFNA_KOCPFIBFIEC" => Some(Self::Kocpfibfiec), + "PFGNKJDLFNA_DMAMHDFFJOI" => Some(Self::Dmamhdffjoi), _ => None, } } @@ -84114,52 +81988,38 @@ impl Hdijjmdpile { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hdmkphalalg { - SwordTrainingGameSettleNone = 0, - SwordTrainingGameSettleFinish = 1, - SwordTrainingGameSettleGiveUp = 2, - SwordTrainingGameSettleBattleFailed = 3, - SwordTrainingGameSettleForce = 4, - SwordTrainingGameSettleByRestore = 5, +pub enum Lmbfmoifefi { + Dfnanpiconk = 0, + Fmmniiflppd = 1, + Nihndkihook = 2, + Dhhjnmedfoi = 3, + Ngmckfnccdm = 4, + Ohdcfhfidoa = 5, } -impl Hdmkphalalg { +impl Lmbfmoifefi { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::SwordTrainingGameSettleNone => "SWORD_TRAINING_GAME_SETTLE_NONE", - Self::SwordTrainingGameSettleFinish => "SWORD_TRAINING_GAME_SETTLE_FINISH", - Self::SwordTrainingGameSettleGiveUp => "SWORD_TRAINING_GAME_SETTLE_GIVE_UP", - Self::SwordTrainingGameSettleBattleFailed => { - "SWORD_TRAINING_GAME_SETTLE_BATTLE_FAILED" - } - Self::SwordTrainingGameSettleForce => "SWORD_TRAINING_GAME_SETTLE_FORCE", - Self::SwordTrainingGameSettleByRestore => { - "SWORD_TRAINING_GAME_SETTLE_BY_RESTORE" - } + Self::Dfnanpiconk => "LMBFMOIFEFI_DFNANPICONK", + Self::Fmmniiflppd => "LMBFMOIFEFI_FMMNIIFLPPD", + Self::Nihndkihook => "LMBFMOIFEFI_NIHNDKIHOOK", + Self::Dhhjnmedfoi => "LMBFMOIFEFI_DHHJNMEDFOI", + Self::Ngmckfnccdm => "LMBFMOIFEFI_NGMCKFNCCDM", + Self::Ohdcfhfidoa => "LMBFMOIFEFI_OHDCFHFIDOA", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "SWORD_TRAINING_GAME_SETTLE_NONE" => Some(Self::SwordTrainingGameSettleNone), - "SWORD_TRAINING_GAME_SETTLE_FINISH" => { - Some(Self::SwordTrainingGameSettleFinish) - } - "SWORD_TRAINING_GAME_SETTLE_GIVE_UP" => { - Some(Self::SwordTrainingGameSettleGiveUp) - } - "SWORD_TRAINING_GAME_SETTLE_BATTLE_FAILED" => { - Some(Self::SwordTrainingGameSettleBattleFailed) - } - "SWORD_TRAINING_GAME_SETTLE_FORCE" => { - Some(Self::SwordTrainingGameSettleForce) - } - "SWORD_TRAINING_GAME_SETTLE_BY_RESTORE" => { - Some(Self::SwordTrainingGameSettleByRestore) - } + "LMBFMOIFEFI_DFNANPICONK" => Some(Self::Dfnanpiconk), + "LMBFMOIFEFI_FMMNIIFLPPD" => Some(Self::Fmmniiflppd), + "LMBFMOIFEFI_NIHNDKIHOOK" => Some(Self::Nihndkihook), + "LMBFMOIFEFI_DHHJNMEDFOI" => Some(Self::Dhhjnmedfoi), + "LMBFMOIFEFI_NGMCKFNCCDM" => Some(Self::Ngmckfnccdm), + "LMBFMOIFEFI_OHDCFHFIDOA" => Some(Self::Ohdcfhfidoa), _ => None, } } @@ -84168,8 +82028,8 @@ impl Hdmkphalalg { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdPlayerSync { - None = 0, - ScNotify = 699, + LjenoligfepLaimannjjoj = 0, + ScNotify = 647, } impl CmdPlayerSync { /// String value of the enum field names used in the ProtoBuf definition. @@ -84178,14 +82038,14 @@ impl CmdPlayerSync { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdPlayerSyncNone", + Self::LjenoligfepLaimannjjoj => "LJENOLIGFEP_LAIMANNJJOJ", Self::ScNotify => "CmdPlayerSyncScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdPlayerSyncNone" => Some(Self::None), + "LJENOLIGFEP_LAIMANNJJOJ" => Some(Self::LjenoligfepLaimannjjoj), "CmdPlayerSyncScNotify" => Some(Self::ScNotify), _ => None, } @@ -84195,21 +82055,21 @@ impl CmdPlayerSync { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTalkRewardType { - None = 0, - CmdFinishFirstTalkNpcCsReq = 2194, - CmdGetNpcTakenRewardCsReq = 2199, - CmdFinishFirstTalkByPerformanceNpcCsReq = 2157, - CmdGetFirstTalkByPerformanceNpcCsReq = 2181, - CmdTakeTalkRewardCsReq = 2198, - CmdFinishFirstTalkByPerformanceNpcScRsp = 2115, - CmdSelectInclinationTextScRsp = 2144, - CmdFinishFirstTalkNpcScRsp = 2152, - CmdTakeTalkRewardScRsp = 2165, - CmdGetNpcTakenRewardScRsp = 2123, - CmdGetFirstTalkNpcScRsp = 2186, - CmdSelectInclinationTextCsReq = 2119, - CmdGetFirstTalkByPerformanceNpcScRsp = 2169, - CmdGetFirstTalkNpcCsReq = 2183, + BnddigglkgaDnolbmepdjm = 0, + CmdGetNpcTakenRewardCsReq = 2147, + CmdGetFirstTalkNpcScRsp = 2111, + CmdSelectInclinationTextScRsp = 2191, + CmdFinishFirstTalkByPerformanceNpcScRsp = 2152, + CmdTakeTalkRewardCsReq = 2138, + CmdFinishFirstTalkNpcScRsp = 2120, + CmdTakeTalkRewardScRsp = 2117, + CmdSelectInclinationTextCsReq = 2195, + CmdGetNpcTakenRewardScRsp = 2109, + CmdFinishFirstTalkByPerformanceNpcCsReq = 2176, + CmdGetFirstTalkByPerformanceNpcCsReq = 2161, + CmdGetFirstTalkNpcCsReq = 2151, + CmdFinishFirstTalkNpcCsReq = 2189, + CmdGetFirstTalkByPerformanceNpcScRsp = 2145, } impl CmdTalkRewardType { /// String value of the enum field names used in the ProtoBuf definition. @@ -84218,57 +82078,57 @@ impl CmdTalkRewardType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTalkRewardTypeNone", - Self::CmdFinishFirstTalkNpcCsReq => "CmdFinishFirstTalkNpcCsReq", + Self::BnddigglkgaDnolbmepdjm => "BNDDIGGLKGA_DNOLBMEPDJM", Self::CmdGetNpcTakenRewardCsReq => "CmdGetNpcTakenRewardCsReq", + Self::CmdGetFirstTalkNpcScRsp => "CmdGetFirstTalkNpcScRsp", + Self::CmdSelectInclinationTextScRsp => "CmdSelectInclinationTextScRsp", + Self::CmdFinishFirstTalkByPerformanceNpcScRsp => { + "CmdFinishFirstTalkByPerformanceNpcScRsp" + } + Self::CmdTakeTalkRewardCsReq => "CmdTakeTalkRewardCsReq", + Self::CmdFinishFirstTalkNpcScRsp => "CmdFinishFirstTalkNpcScRsp", + Self::CmdTakeTalkRewardScRsp => "CmdTakeTalkRewardScRsp", + Self::CmdSelectInclinationTextCsReq => "CmdSelectInclinationTextCsReq", + Self::CmdGetNpcTakenRewardScRsp => "CmdGetNpcTakenRewardScRsp", Self::CmdFinishFirstTalkByPerformanceNpcCsReq => { "CmdFinishFirstTalkByPerformanceNpcCsReq" } Self::CmdGetFirstTalkByPerformanceNpcCsReq => { "CmdGetFirstTalkByPerformanceNpcCsReq" } - Self::CmdTakeTalkRewardCsReq => "CmdTakeTalkRewardCsReq", - Self::CmdFinishFirstTalkByPerformanceNpcScRsp => { - "CmdFinishFirstTalkByPerformanceNpcScRsp" - } - Self::CmdSelectInclinationTextScRsp => "CmdSelectInclinationTextScRsp", - Self::CmdFinishFirstTalkNpcScRsp => "CmdFinishFirstTalkNpcScRsp", - Self::CmdTakeTalkRewardScRsp => "CmdTakeTalkRewardScRsp", - Self::CmdGetNpcTakenRewardScRsp => "CmdGetNpcTakenRewardScRsp", - Self::CmdGetFirstTalkNpcScRsp => "CmdGetFirstTalkNpcScRsp", - Self::CmdSelectInclinationTextCsReq => "CmdSelectInclinationTextCsReq", + Self::CmdGetFirstTalkNpcCsReq => "CmdGetFirstTalkNpcCsReq", + Self::CmdFinishFirstTalkNpcCsReq => "CmdFinishFirstTalkNpcCsReq", Self::CmdGetFirstTalkByPerformanceNpcScRsp => { "CmdGetFirstTalkByPerformanceNpcScRsp" } - Self::CmdGetFirstTalkNpcCsReq => "CmdGetFirstTalkNpcCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTalkRewardTypeNone" => Some(Self::None), - "CmdFinishFirstTalkNpcCsReq" => Some(Self::CmdFinishFirstTalkNpcCsReq), + "BNDDIGGLKGA_DNOLBMEPDJM" => Some(Self::BnddigglkgaDnolbmepdjm), "CmdGetNpcTakenRewardCsReq" => Some(Self::CmdGetNpcTakenRewardCsReq), + "CmdGetFirstTalkNpcScRsp" => Some(Self::CmdGetFirstTalkNpcScRsp), + "CmdSelectInclinationTextScRsp" => Some(Self::CmdSelectInclinationTextScRsp), + "CmdFinishFirstTalkByPerformanceNpcScRsp" => { + Some(Self::CmdFinishFirstTalkByPerformanceNpcScRsp) + } + "CmdTakeTalkRewardCsReq" => Some(Self::CmdTakeTalkRewardCsReq), + "CmdFinishFirstTalkNpcScRsp" => Some(Self::CmdFinishFirstTalkNpcScRsp), + "CmdTakeTalkRewardScRsp" => Some(Self::CmdTakeTalkRewardScRsp), + "CmdSelectInclinationTextCsReq" => Some(Self::CmdSelectInclinationTextCsReq), + "CmdGetNpcTakenRewardScRsp" => Some(Self::CmdGetNpcTakenRewardScRsp), "CmdFinishFirstTalkByPerformanceNpcCsReq" => { Some(Self::CmdFinishFirstTalkByPerformanceNpcCsReq) } "CmdGetFirstTalkByPerformanceNpcCsReq" => { Some(Self::CmdGetFirstTalkByPerformanceNpcCsReq) } - "CmdTakeTalkRewardCsReq" => Some(Self::CmdTakeTalkRewardCsReq), - "CmdFinishFirstTalkByPerformanceNpcScRsp" => { - Some(Self::CmdFinishFirstTalkByPerformanceNpcScRsp) - } - "CmdSelectInclinationTextScRsp" => Some(Self::CmdSelectInclinationTextScRsp), - "CmdFinishFirstTalkNpcScRsp" => Some(Self::CmdFinishFirstTalkNpcScRsp), - "CmdTakeTalkRewardScRsp" => Some(Self::CmdTakeTalkRewardScRsp), - "CmdGetNpcTakenRewardScRsp" => Some(Self::CmdGetNpcTakenRewardScRsp), - "CmdGetFirstTalkNpcScRsp" => Some(Self::CmdGetFirstTalkNpcScRsp), - "CmdSelectInclinationTextCsReq" => Some(Self::CmdSelectInclinationTextCsReq), + "CmdGetFirstTalkNpcCsReq" => Some(Self::CmdGetFirstTalkNpcCsReq), + "CmdFinishFirstTalkNpcCsReq" => Some(Self::CmdFinishFirstTalkNpcCsReq), "CmdGetFirstTalkByPerformanceNpcScRsp" => { Some(Self::CmdGetFirstTalkByPerformanceNpcScRsp) } - "CmdGetFirstTalkNpcCsReq" => Some(Self::CmdGetFirstTalkNpcCsReq), _ => None, } } @@ -84277,23 +82137,23 @@ impl CmdTalkRewardType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTarotBookType { - None = 0, - CmdTarotBookUnlockInteractionCsReq = 8146, - CmdTarotBookFinishInteractionCsReq = 8156, - CmdTarotBookFinishInteractionScRsp = 8158, - CmdTarotBookGetDataScRsp = 8141, - CmdTarotBookSyncDataScNotify = 8160, - CmdTarotBookMultiOpenPackAndUnlockStoryCsReq = 8157, - CmdTarotBookGetDataCsReq = 8147, - CmdTarotBookModifyEnergyScNotify = 8150, - CmdTarotBookUnlockInteractionScRsp = 8154, - CmdTarotBookOpenPackScRsp = 8159, - CmdTarotBookFinishStoryCsReq = 8148, - CmdTarotBookOpenPackCsReq = 8153, - CmdTarotBookFinishStoryScRsp = 8151, - CmdTarotBookMultiOpenPackAndUnlockStoryScRsp = 8142, - CmdTarotBookUnlockStoryScRsp = 8155, - CmdTarotBookUnlockStoryCsReq = 8143, + HdonjmdnhfgAlocmfakbkp = 0, + HdonjmdnhfgCdeaifoeacl = 8147, + HdonjmdnhfgFgpkbfoagip = 8145, + HdonjmdnhfgOfeefoffkpl = 8154, + HdonjmdnhfgMgoadlfehdc = 8159, + HdonjmdnhfgIbleeajjcoh = 8141, + HdonjmdnhfgMlcfjgohepg = 8153, + HdonjmdnhfgEegcjpbeode = 8160, + HdonjmdnhfgMohppnnpfde = 8144, + HdonjmdnhfgGlmmacekkmp = 8152, + HdonjmdnhfgJcogabelgci = 8143, + HdonjmdnhfgFpimpibpiie = 8146, + HdonjmdnhfgBojjfoofkid = 8155, + HdonjmdnhfgMlpaphjlpof = 8150, + HdonjmdnhfgKbbmiakfhbf = 8149, + HdonjmdnhfgPkiflbddene = 8142, + HdonjmdnhfgGfccpaeghhn = 8157, } impl CmdTarotBookType { /// String value of the enum field names used in the ProtoBuf definition. @@ -84302,71 +82162,45 @@ impl CmdTarotBookType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTarotBookTypeNone", - Self::CmdTarotBookUnlockInteractionCsReq => { - "CmdTarotBookUnlockInteractionCsReq" - } - Self::CmdTarotBookFinishInteractionCsReq => { - "CmdTarotBookFinishInteractionCsReq" - } - Self::CmdTarotBookFinishInteractionScRsp => { - "CmdTarotBookFinishInteractionScRsp" - } - Self::CmdTarotBookGetDataScRsp => "CmdTarotBookGetDataScRsp", - Self::CmdTarotBookSyncDataScNotify => "CmdTarotBookSyncDataScNotify", - Self::CmdTarotBookMultiOpenPackAndUnlockStoryCsReq => { - "CmdTarotBookMultiOpenPackAndUnlockStoryCsReq" - } - Self::CmdTarotBookGetDataCsReq => "CmdTarotBookGetDataCsReq", - Self::CmdTarotBookModifyEnergyScNotify => "CmdTarotBookModifyEnergyScNotify", - Self::CmdTarotBookUnlockInteractionScRsp => { - "CmdTarotBookUnlockInteractionScRsp" - } - Self::CmdTarotBookOpenPackScRsp => "CmdTarotBookOpenPackScRsp", - Self::CmdTarotBookFinishStoryCsReq => "CmdTarotBookFinishStoryCsReq", - Self::CmdTarotBookOpenPackCsReq => "CmdTarotBookOpenPackCsReq", - Self::CmdTarotBookFinishStoryScRsp => "CmdTarotBookFinishStoryScRsp", - Self::CmdTarotBookMultiOpenPackAndUnlockStoryScRsp => { - "CmdTarotBookMultiOpenPackAndUnlockStoryScRsp" - } - Self::CmdTarotBookUnlockStoryScRsp => "CmdTarotBookUnlockStoryScRsp", - Self::CmdTarotBookUnlockStoryCsReq => "CmdTarotBookUnlockStoryCsReq", + Self::HdonjmdnhfgAlocmfakbkp => "HDONJMDNHFG_ALOCMFAKBKP", + Self::HdonjmdnhfgCdeaifoeacl => "HDONJMDNHFG_CDEAIFOEACL", + Self::HdonjmdnhfgFgpkbfoagip => "HDONJMDNHFG_FGPKBFOAGIP", + Self::HdonjmdnhfgOfeefoffkpl => "HDONJMDNHFG_OFEEFOFFKPL", + Self::HdonjmdnhfgMgoadlfehdc => "HDONJMDNHFG_MGOADLFEHDC", + Self::HdonjmdnhfgIbleeajjcoh => "HDONJMDNHFG_IBLEEAJJCOH", + Self::HdonjmdnhfgMlcfjgohepg => "HDONJMDNHFG_MLCFJGOHEPG", + Self::HdonjmdnhfgEegcjpbeode => "HDONJMDNHFG_EEGCJPBEODE", + Self::HdonjmdnhfgMohppnnpfde => "HDONJMDNHFG_MOHPPNNPFDE", + Self::HdonjmdnhfgGlmmacekkmp => "HDONJMDNHFG_GLMMACEKKMP", + Self::HdonjmdnhfgJcogabelgci => "HDONJMDNHFG_JCOGABELGCI", + Self::HdonjmdnhfgFpimpibpiie => "HDONJMDNHFG_FPIMPIBPIIE", + Self::HdonjmdnhfgBojjfoofkid => "HDONJMDNHFG_BOJJFOOFKID", + Self::HdonjmdnhfgMlpaphjlpof => "HDONJMDNHFG_MLPAPHJLPOF", + Self::HdonjmdnhfgKbbmiakfhbf => "HDONJMDNHFG_KBBMIAKFHBF", + Self::HdonjmdnhfgPkiflbddene => "HDONJMDNHFG_PKIFLBDDENE", + Self::HdonjmdnhfgGfccpaeghhn => "HDONJMDNHFG_GFCCPAEGHHN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTarotBookTypeNone" => Some(Self::None), - "CmdTarotBookUnlockInteractionCsReq" => { - Some(Self::CmdTarotBookUnlockInteractionCsReq) - } - "CmdTarotBookFinishInteractionCsReq" => { - Some(Self::CmdTarotBookFinishInteractionCsReq) - } - "CmdTarotBookFinishInteractionScRsp" => { - Some(Self::CmdTarotBookFinishInteractionScRsp) - } - "CmdTarotBookGetDataScRsp" => Some(Self::CmdTarotBookGetDataScRsp), - "CmdTarotBookSyncDataScNotify" => Some(Self::CmdTarotBookSyncDataScNotify), - "CmdTarotBookMultiOpenPackAndUnlockStoryCsReq" => { - Some(Self::CmdTarotBookMultiOpenPackAndUnlockStoryCsReq) - } - "CmdTarotBookGetDataCsReq" => Some(Self::CmdTarotBookGetDataCsReq), - "CmdTarotBookModifyEnergyScNotify" => { - Some(Self::CmdTarotBookModifyEnergyScNotify) - } - "CmdTarotBookUnlockInteractionScRsp" => { - Some(Self::CmdTarotBookUnlockInteractionScRsp) - } - "CmdTarotBookOpenPackScRsp" => Some(Self::CmdTarotBookOpenPackScRsp), - "CmdTarotBookFinishStoryCsReq" => Some(Self::CmdTarotBookFinishStoryCsReq), - "CmdTarotBookOpenPackCsReq" => Some(Self::CmdTarotBookOpenPackCsReq), - "CmdTarotBookFinishStoryScRsp" => Some(Self::CmdTarotBookFinishStoryScRsp), - "CmdTarotBookMultiOpenPackAndUnlockStoryScRsp" => { - Some(Self::CmdTarotBookMultiOpenPackAndUnlockStoryScRsp) - } - "CmdTarotBookUnlockStoryScRsp" => Some(Self::CmdTarotBookUnlockStoryScRsp), - "CmdTarotBookUnlockStoryCsReq" => Some(Self::CmdTarotBookUnlockStoryCsReq), + "HDONJMDNHFG_ALOCMFAKBKP" => Some(Self::HdonjmdnhfgAlocmfakbkp), + "HDONJMDNHFG_CDEAIFOEACL" => Some(Self::HdonjmdnhfgCdeaifoeacl), + "HDONJMDNHFG_FGPKBFOAGIP" => Some(Self::HdonjmdnhfgFgpkbfoagip), + "HDONJMDNHFG_OFEEFOFFKPL" => Some(Self::HdonjmdnhfgOfeefoffkpl), + "HDONJMDNHFG_MGOADLFEHDC" => Some(Self::HdonjmdnhfgMgoadlfehdc), + "HDONJMDNHFG_IBLEEAJJCOH" => Some(Self::HdonjmdnhfgIbleeajjcoh), + "HDONJMDNHFG_MLCFJGOHEPG" => Some(Self::HdonjmdnhfgMlcfjgohepg), + "HDONJMDNHFG_EEGCJPBEODE" => Some(Self::HdonjmdnhfgEegcjpbeode), + "HDONJMDNHFG_MOHPPNNPFDE" => Some(Self::HdonjmdnhfgMohppnnpfde), + "HDONJMDNHFG_GLMMACEKKMP" => Some(Self::HdonjmdnhfgGlmmacekkmp), + "HDONJMDNHFG_JCOGABELGCI" => Some(Self::HdonjmdnhfgJcogabelgci), + "HDONJMDNHFG_FPIMPIBPIIE" => Some(Self::HdonjmdnhfgFpimpibpiie), + "HDONJMDNHFG_BOJJFOOFKID" => Some(Self::HdonjmdnhfgBojjfoofkid), + "HDONJMDNHFG_MLPAPHJLPOF" => Some(Self::HdonjmdnhfgMlpaphjlpof), + "HDONJMDNHFG_KBBMIAKFHBF" => Some(Self::HdonjmdnhfgKbbmiakfhbf), + "HDONJMDNHFG_PKIFLBDDENE" => Some(Self::HdonjmdnhfgPkiflbddene), + "HDONJMDNHFG_GFCCPAEGHHN" => Some(Self::HdonjmdnhfgGfccpaeghhn), _ => None, } } @@ -84375,13 +82209,13 @@ impl CmdTarotBookType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTelevisionActivityType { - None = 0, - CmdTelevisionActivityDataChangeScNotify = 6973, - CmdGetTelevisionActivityDataCsReq = 6967, - CmdEnterTelevisionActivityStageScRsp = 6963, - CmdEnterTelevisionActivityStageCsReq = 6979, - CmdGetTelevisionActivityDataScRsp = 6961, - CmdTelevisionActivityBattleEndScNotify = 6975, + FlamfochheoAlocmfakbkp = 0, + FlamfochheoOiljmnbljni = 6974, + FlamfochheoHlphajpngnd = 6969, + FlamfochheoFfnkedmejdk = 6964, + FlamfochheoKdbiiopopgb = 6965, + FlamfochheoBmhlahnpnmh = 6966, + FlamfochheoJimlogbbjnf = 6973, } impl CmdTelevisionActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -84390,49 +82224,25 @@ impl CmdTelevisionActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTelevisionActivityTypeNone", - Self::CmdTelevisionActivityDataChangeScNotify => { - "CmdTelevisionActivityDataChangeScNotify" - } - Self::CmdGetTelevisionActivityDataCsReq => { - "CmdGetTelevisionActivityDataCsReq" - } - Self::CmdEnterTelevisionActivityStageScRsp => { - "CmdEnterTelevisionActivityStageScRsp" - } - Self::CmdEnterTelevisionActivityStageCsReq => { - "CmdEnterTelevisionActivityStageCsReq" - } - Self::CmdGetTelevisionActivityDataScRsp => { - "CmdGetTelevisionActivityDataScRsp" - } - Self::CmdTelevisionActivityBattleEndScNotify => { - "CmdTelevisionActivityBattleEndScNotify" - } + Self::FlamfochheoAlocmfakbkp => "FLAMFOCHHEO_ALOCMFAKBKP", + Self::FlamfochheoOiljmnbljni => "FLAMFOCHHEO_OILJMNBLJNI", + Self::FlamfochheoHlphajpngnd => "FLAMFOCHHEO_HLPHAJPNGND", + Self::FlamfochheoFfnkedmejdk => "FLAMFOCHHEO_FFNKEDMEJDK", + Self::FlamfochheoKdbiiopopgb => "FLAMFOCHHEO_KDBIIOPOPGB", + Self::FlamfochheoBmhlahnpnmh => "FLAMFOCHHEO_BMHLAHNPNMH", + Self::FlamfochheoJimlogbbjnf => "FLAMFOCHHEO_JIMLOGBBJNF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTelevisionActivityTypeNone" => Some(Self::None), - "CmdTelevisionActivityDataChangeScNotify" => { - Some(Self::CmdTelevisionActivityDataChangeScNotify) - } - "CmdGetTelevisionActivityDataCsReq" => { - Some(Self::CmdGetTelevisionActivityDataCsReq) - } - "CmdEnterTelevisionActivityStageScRsp" => { - Some(Self::CmdEnterTelevisionActivityStageScRsp) - } - "CmdEnterTelevisionActivityStageCsReq" => { - Some(Self::CmdEnterTelevisionActivityStageCsReq) - } - "CmdGetTelevisionActivityDataScRsp" => { - Some(Self::CmdGetTelevisionActivityDataScRsp) - } - "CmdTelevisionActivityBattleEndScNotify" => { - Some(Self::CmdTelevisionActivityBattleEndScNotify) - } + "FLAMFOCHHEO_ALOCMFAKBKP" => Some(Self::FlamfochheoAlocmfakbkp), + "FLAMFOCHHEO_OILJMNBLJNI" => Some(Self::FlamfochheoOiljmnbljni), + "FLAMFOCHHEO_HLPHAJPNGND" => Some(Self::FlamfochheoHlphajpngnd), + "FLAMFOCHHEO_FFNKEDMEJDK" => Some(Self::FlamfochheoFfnkedmejdk), + "FLAMFOCHHEO_KDBIIOPOPGB" => Some(Self::FlamfochheoKdbiiopopgb), + "FLAMFOCHHEO_BMHLAHNPNMH" => Some(Self::FlamfochheoBmhlahnpnmh), + "FLAMFOCHHEO_JIMLOGBBJNF" => Some(Self::FlamfochheoJimlogbbjnf), _ => None, } } @@ -84441,13 +82251,13 @@ impl CmdTelevisionActivityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTextJoinType { - None = 0, - CmdTextJoinSaveCsReq = 3899, - CmdTextJoinQueryCsReq = 3898, - CmdTextJoinBatchSaveCsReq = 3883, - CmdTextJoinQueryScRsp = 3865, - CmdTextJoinSaveScRsp = 3823, - CmdTextJoinBatchSaveScRsp = 3886, + ClehgllkbkoAlocmfakbkp = 0, + ClehgllkbkoHndgnkmedle = 3811, + ClehgllkbkoBnenbeebmak = 3847, + ClehgllkbkoIepedbondpj = 3851, + ClehgllkbkoAbomjfebcjd = 3838, + ClehgllkbkoKgdpcpbmlpm = 3809, + ClehgllkbkoAogldnjpmnb = 3817, } impl CmdTextJoinType { /// String value of the enum field names used in the ProtoBuf definition. @@ -84456,25 +82266,25 @@ impl CmdTextJoinType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTextJoinTypeNone", - Self::CmdTextJoinSaveCsReq => "CmdTextJoinSaveCsReq", - Self::CmdTextJoinQueryCsReq => "CmdTextJoinQueryCsReq", - Self::CmdTextJoinBatchSaveCsReq => "CmdTextJoinBatchSaveCsReq", - Self::CmdTextJoinQueryScRsp => "CmdTextJoinQueryScRsp", - Self::CmdTextJoinSaveScRsp => "CmdTextJoinSaveScRsp", - Self::CmdTextJoinBatchSaveScRsp => "CmdTextJoinBatchSaveScRsp", + Self::ClehgllkbkoAlocmfakbkp => "CLEHGLLKBKO_ALOCMFAKBKP", + Self::ClehgllkbkoHndgnkmedle => "CLEHGLLKBKO_HNDGNKMEDLE", + Self::ClehgllkbkoBnenbeebmak => "CLEHGLLKBKO_BNENBEEBMAK", + Self::ClehgllkbkoIepedbondpj => "CLEHGLLKBKO_IEPEDBONDPJ", + Self::ClehgllkbkoAbomjfebcjd => "CLEHGLLKBKO_ABOMJFEBCJD", + Self::ClehgllkbkoKgdpcpbmlpm => "CLEHGLLKBKO_KGDPCPBMLPM", + Self::ClehgllkbkoAogldnjpmnb => "CLEHGLLKBKO_AOGLDNJPMNB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTextJoinTypeNone" => Some(Self::None), - "CmdTextJoinSaveCsReq" => Some(Self::CmdTextJoinSaveCsReq), - "CmdTextJoinQueryCsReq" => Some(Self::CmdTextJoinQueryCsReq), - "CmdTextJoinBatchSaveCsReq" => Some(Self::CmdTextJoinBatchSaveCsReq), - "CmdTextJoinQueryScRsp" => Some(Self::CmdTextJoinQueryScRsp), - "CmdTextJoinSaveScRsp" => Some(Self::CmdTextJoinSaveScRsp), - "CmdTextJoinBatchSaveScRsp" => Some(Self::CmdTextJoinBatchSaveScRsp), + "CLEHGLLKBKO_ALOCMFAKBKP" => Some(Self::ClehgllkbkoAlocmfakbkp), + "CLEHGLLKBKO_HNDGNKMEDLE" => Some(Self::ClehgllkbkoHndgnkmedle), + "CLEHGLLKBKO_BNENBEEBMAK" => Some(Self::ClehgllkbkoBnenbeebmak), + "CLEHGLLKBKO_IEPEDBONDPJ" => Some(Self::ClehgllkbkoIepedbondpj), + "CLEHGLLKBKO_ABOMJFEBCJD" => Some(Self::ClehgllkbkoAbomjfebcjd), + "CLEHGLLKBKO_KGDPCPBMLPM" => Some(Self::ClehgllkbkoKgdpcpbmlpm), + "CLEHGLLKBKO_AOGLDNJPMNB" => Some(Self::ClehgllkbkoAogldnjpmnb), _ => None, } } @@ -84483,15 +82293,15 @@ impl CmdTextJoinType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTrackPhotoActivityType { - None = 0, - CmdQuitTrackPhotoStageScRsp = 7553, - CmdGetTrackPhotoActivityDataCsReq = 7556, - CmdQuitTrackPhotoStageCsReq = 7558, - CmdStartTrackPhotoStageCsReq = 7560, - CmdGetTrackPhotoActivityDataScRsp = 7557, - CmdSettleTrackPhotoStageScRsp = 7559, - CmdStartTrackPhotoStageScRsp = 7551, - CmdSettleTrackPhotoStageCsReq = 7554, + OccaodgpbdaAlocmfakbkp = 0, + OccaodgpbdaFapkkkiimlg = 7555, + OccaodgpbdaNdminmicoji = 7552, + OccaodgpbdaAemjfedglie = 7551, + OccaodgpbdaPbjfkhkilop = 7553, + OccaodgpbdaHnjmpmidgop = 7559, + OccaodgpbdaEniaehafplp = 7556, + OccaodgpbdaEgpdjgfmopo = 7560, + OccaodgpbdaMjpkjjhjphp = 7557, } impl CmdTrackPhotoActivityType { /// String value of the enum field names used in the ProtoBuf definition. @@ -84500,37 +82310,29 @@ impl CmdTrackPhotoActivityType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTrackPhotoActivityTypeNone", - Self::CmdQuitTrackPhotoStageScRsp => "CmdQuitTrackPhotoStageScRsp", - Self::CmdGetTrackPhotoActivityDataCsReq => { - "CmdGetTrackPhotoActivityDataCsReq" - } - Self::CmdQuitTrackPhotoStageCsReq => "CmdQuitTrackPhotoStageCsReq", - Self::CmdStartTrackPhotoStageCsReq => "CmdStartTrackPhotoStageCsReq", - Self::CmdGetTrackPhotoActivityDataScRsp => { - "CmdGetTrackPhotoActivityDataScRsp" - } - Self::CmdSettleTrackPhotoStageScRsp => "CmdSettleTrackPhotoStageScRsp", - Self::CmdStartTrackPhotoStageScRsp => "CmdStartTrackPhotoStageScRsp", - Self::CmdSettleTrackPhotoStageCsReq => "CmdSettleTrackPhotoStageCsReq", + Self::OccaodgpbdaAlocmfakbkp => "OCCAODGPBDA_ALOCMFAKBKP", + Self::OccaodgpbdaFapkkkiimlg => "OCCAODGPBDA_FAPKKKIIMLG", + Self::OccaodgpbdaNdminmicoji => "OCCAODGPBDA_NDMINMICOJI", + Self::OccaodgpbdaAemjfedglie => "OCCAODGPBDA_AEMJFEDGLIE", + Self::OccaodgpbdaPbjfkhkilop => "OCCAODGPBDA_PBJFKHKILOP", + Self::OccaodgpbdaHnjmpmidgop => "OCCAODGPBDA_HNJMPMIDGOP", + Self::OccaodgpbdaEniaehafplp => "OCCAODGPBDA_ENIAEHAFPLP", + Self::OccaodgpbdaEgpdjgfmopo => "OCCAODGPBDA_EGPDJGFMOPO", + Self::OccaodgpbdaMjpkjjhjphp => "OCCAODGPBDA_MJPKJJHJPHP", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTrackPhotoActivityTypeNone" => Some(Self::None), - "CmdQuitTrackPhotoStageScRsp" => Some(Self::CmdQuitTrackPhotoStageScRsp), - "CmdGetTrackPhotoActivityDataCsReq" => { - Some(Self::CmdGetTrackPhotoActivityDataCsReq) - } - "CmdQuitTrackPhotoStageCsReq" => Some(Self::CmdQuitTrackPhotoStageCsReq), - "CmdStartTrackPhotoStageCsReq" => Some(Self::CmdStartTrackPhotoStageCsReq), - "CmdGetTrackPhotoActivityDataScRsp" => { - Some(Self::CmdGetTrackPhotoActivityDataScRsp) - } - "CmdSettleTrackPhotoStageScRsp" => Some(Self::CmdSettleTrackPhotoStageScRsp), - "CmdStartTrackPhotoStageScRsp" => Some(Self::CmdStartTrackPhotoStageScRsp), - "CmdSettleTrackPhotoStageCsReq" => Some(Self::CmdSettleTrackPhotoStageCsReq), + "OCCAODGPBDA_ALOCMFAKBKP" => Some(Self::OccaodgpbdaAlocmfakbkp), + "OCCAODGPBDA_FAPKKKIIMLG" => Some(Self::OccaodgpbdaFapkkkiimlg), + "OCCAODGPBDA_NDMINMICOJI" => Some(Self::OccaodgpbdaNdminmicoji), + "OCCAODGPBDA_AEMJFEDGLIE" => Some(Self::OccaodgpbdaAemjfedglie), + "OCCAODGPBDA_PBJFKHKILOP" => Some(Self::OccaodgpbdaPbjfkhkilop), + "OCCAODGPBDA_HNJMPMIDGOP" => Some(Self::OccaodgpbdaHnjmpmidgop), + "OCCAODGPBDA_ENIAEHAFPLP" => Some(Self::OccaodgpbdaEniaehafplp), + "OCCAODGPBDA_EGPDJGFMOPO" => Some(Self::OccaodgpbdaEgpdjgfmopo), + "OCCAODGPBDA_MJPKJJHJPHP" => Some(Self::OccaodgpbdaMjpkjjhjphp), _ => None, } } @@ -84539,37 +82341,37 @@ impl CmdTrackPhotoActivityType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTrainPartyType { - None = 0, - CmdTrainPartyBuildingUpdateNotify = 8068, - CmdTrainPartySkipUnlockSelfRoomScRsp = 8042, - CmdTrainPartyBuildStartStepCsReq = 8057, - CmdTrainPartyLeaveScRsp = 8051, - CmdTrainPartyHandlePendingActionCsReq = 8081, - CmdTrainPartyGetDataCsReq = 8099, - CmdTrainPartyAddBuildDynamicBuffScRsp = 8074, - CmdTrainPartyAddBuildDynamicBuffCsReq = 8035, - CmdTrainPartyUpdatePosEnvCsReq = 8055, - CmdTrainPartyMoveScNotify = 8083, - CmdTrainPartyTakeBuildLevelAwardCsReq = 8060, - CmdTrainPartySettleNotify = 8094, - CmdTrainPartyHandlePendingActionScRsp = 8069, - CmdTrainPartyUseCardCsReq = 8098, - CmdTrainPartyBuildRoomScNotify = 8016, - CmdTrainPartySyncUpdateScNotify = 8019, - CmdTrainPartyBuildDiyCsReq = 8092, - CmdTrainPartyGetDataScRsp = 8023, - CmdTrainPartyBuildStartStepScRsp = 8015, - CmdTrainPartyGamePlayStartScRsp = 8059, - CmdTrainPartyTakeBuildLevelAwardScRsp = 8071, - CmdTrainPartyLeaveCsReq = 8005, - CmdTrainPartyUpdatePosEnvScRsp = 8050, - CmdTrainPartyBuildDiyScRsp = 8037, - CmdTrainPartyEnterScRsp = 8077, - CmdTrainPartyGamePlaySettleNotify = 8022, - CmdTrainPartyGamePlayStartCsReq = 8062, - CmdTrainPartyEnterCsReq = 8080, - CmdTrainPartySkipUnlockSelfRoomCsReq = 8053, - CmdTrainPartyUseCardScRsp = 8065, + OeencmhhgajAlocmfakbkp = 0, + CmdTrainPartyUseCardScRsp = 8017, + CmdTrainPartyHandlePendingActionCsReq = 8061, + CmdMoccjfohaab = 8055, + CmdTrainPartyEnterScRsp = 8067, + CmdTrainPartyLeaveCsReq = 8062, + CmdTrainPartySettleNotify = 8089, + CmdTrainPartyLeaveScRsp = 8035, + OeencmhhgajDbkjdhjkjhe = 8070, + CmdTrainPartyBuildStartStepCsReq = 8076, + CmdTrainPartyEnterCsReq = 8010, + CmdAknpofcgaea = 8001, + CmdHanhhjnhlem = 8026, + CmdIfpjkddmgep = 8049, + CmdTrainPartyBuildDiyCsReq = 8050, + CmdTrainPartyBuildDiyScRsp = 8081, + CmdTrainPartyHandlePendingActionScRsp = 8045, + CmdTrainPartyUseCardCsReq = 8038, + CmdTrainPartySyncUpdateScNotify = 8095, + CmdTrainPartyGetDataCsReq = 8047, + CmdLkogdoiabbe = 8057, + CmdBpahalhphjb = 8030, + OeencmhhgajIicjancjbko = 8013, + CmdMjnlnbfaoga = 8077, + CmdTrainPartyBuildingUpdateNotify = 8093, + CmdTrainPartyGetDataScRsp = 8009, + CmdTrainPartyGamePlaySettleNotify = 8015, + CmdTrainPartyBuildStartStepScRsp = 8052, + CmdTrainPartyMoveScNotify = 8051, + CmdMffcohokbhd = 8019, + CmdTrainPartyBuildRoomScNotify = 8069, } impl CmdTrainPartyType { /// String value of the enum field names used in the ProtoBuf definition. @@ -84578,129 +82380,97 @@ impl CmdTrainPartyType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTrainPartyTypeNone", - Self::CmdTrainPartyBuildingUpdateNotify => { - "CmdTrainPartyBuildingUpdateNotify" - } - Self::CmdTrainPartySkipUnlockSelfRoomScRsp => { - "CmdTrainPartySkipUnlockSelfRoomScRsp" - } - Self::CmdTrainPartyBuildStartStepCsReq => "CmdTrainPartyBuildStartStepCsReq", - Self::CmdTrainPartyLeaveScRsp => "CmdTrainPartyLeaveScRsp", + Self::OeencmhhgajAlocmfakbkp => "OEENCMHHGAJ_ALOCMFAKBKP", + Self::CmdTrainPartyUseCardScRsp => "CmdTrainPartyUseCardScRsp", Self::CmdTrainPartyHandlePendingActionCsReq => { "CmdTrainPartyHandlePendingActionCsReq" } - Self::CmdTrainPartyGetDataCsReq => "CmdTrainPartyGetDataCsReq", - Self::CmdTrainPartyAddBuildDynamicBuffScRsp => { - "CmdTrainPartyAddBuildDynamicBuffScRsp" - } - Self::CmdTrainPartyAddBuildDynamicBuffCsReq => { - "CmdTrainPartyAddBuildDynamicBuffCsReq" - } - Self::CmdTrainPartyUpdatePosEnvCsReq => "CmdTrainPartyUpdatePosEnvCsReq", - Self::CmdTrainPartyMoveScNotify => "CmdTrainPartyMoveScNotify", - Self::CmdTrainPartyTakeBuildLevelAwardCsReq => { - "CmdTrainPartyTakeBuildLevelAwardCsReq" - } + Self::CmdMoccjfohaab => "CmdMOCCJFOHAAB", + Self::CmdTrainPartyEnterScRsp => "CmdTrainPartyEnterScRsp", + Self::CmdTrainPartyLeaveCsReq => "CmdTrainPartyLeaveCsReq", Self::CmdTrainPartySettleNotify => "CmdTrainPartySettleNotify", + Self::CmdTrainPartyLeaveScRsp => "CmdTrainPartyLeaveScRsp", + Self::OeencmhhgajDbkjdhjkjhe => "OEENCMHHGAJ_DBKJDHJKJHE", + Self::CmdTrainPartyBuildStartStepCsReq => "CmdTrainPartyBuildStartStepCsReq", + Self::CmdTrainPartyEnterCsReq => "CmdTrainPartyEnterCsReq", + Self::CmdAknpofcgaea => "CmdAKNPOFCGAEA", + Self::CmdHanhhjnhlem => "CmdHANHHJNHLEM", + Self::CmdIfpjkddmgep => "CmdIFPJKDDMGEP", + Self::CmdTrainPartyBuildDiyCsReq => "CmdTrainPartyBuildDiyCsReq", + Self::CmdTrainPartyBuildDiyScRsp => "CmdTrainPartyBuildDiyScRsp", Self::CmdTrainPartyHandlePendingActionScRsp => { "CmdTrainPartyHandlePendingActionScRsp" } Self::CmdTrainPartyUseCardCsReq => "CmdTrainPartyUseCardCsReq", - Self::CmdTrainPartyBuildRoomScNotify => "CmdTrainPartyBuildRoomScNotify", Self::CmdTrainPartySyncUpdateScNotify => "CmdTrainPartySyncUpdateScNotify", - Self::CmdTrainPartyBuildDiyCsReq => "CmdTrainPartyBuildDiyCsReq", - Self::CmdTrainPartyGetDataScRsp => "CmdTrainPartyGetDataScRsp", - Self::CmdTrainPartyBuildStartStepScRsp => "CmdTrainPartyBuildStartStepScRsp", - Self::CmdTrainPartyGamePlayStartScRsp => "CmdTrainPartyGamePlayStartScRsp", - Self::CmdTrainPartyTakeBuildLevelAwardScRsp => { - "CmdTrainPartyTakeBuildLevelAwardScRsp" + Self::CmdTrainPartyGetDataCsReq => "CmdTrainPartyGetDataCsReq", + Self::CmdLkogdoiabbe => "CmdLKOGDOIABBE", + Self::CmdBpahalhphjb => "CmdBPAHALHPHJB", + Self::OeencmhhgajIicjancjbko => "OEENCMHHGAJ_IICJANCJBKO", + Self::CmdMjnlnbfaoga => "CmdMJNLNBFAOGA", + Self::CmdTrainPartyBuildingUpdateNotify => { + "CmdTrainPartyBuildingUpdateNotify" } - Self::CmdTrainPartyLeaveCsReq => "CmdTrainPartyLeaveCsReq", - Self::CmdTrainPartyUpdatePosEnvScRsp => "CmdTrainPartyUpdatePosEnvScRsp", - Self::CmdTrainPartyBuildDiyScRsp => "CmdTrainPartyBuildDiyScRsp", - Self::CmdTrainPartyEnterScRsp => "CmdTrainPartyEnterScRsp", + Self::CmdTrainPartyGetDataScRsp => "CmdTrainPartyGetDataScRsp", Self::CmdTrainPartyGamePlaySettleNotify => { "CmdTrainPartyGamePlaySettleNotify" } - Self::CmdTrainPartyGamePlayStartCsReq => "CmdTrainPartyGamePlayStartCsReq", - Self::CmdTrainPartyEnterCsReq => "CmdTrainPartyEnterCsReq", - Self::CmdTrainPartySkipUnlockSelfRoomCsReq => { - "CmdTrainPartySkipUnlockSelfRoomCsReq" - } - Self::CmdTrainPartyUseCardScRsp => "CmdTrainPartyUseCardScRsp", + Self::CmdTrainPartyBuildStartStepScRsp => "CmdTrainPartyBuildStartStepScRsp", + Self::CmdTrainPartyMoveScNotify => "CmdTrainPartyMoveScNotify", + Self::CmdMffcohokbhd => "CmdMFFCOHOKBHD", + Self::CmdTrainPartyBuildRoomScNotify => "CmdTrainPartyBuildRoomScNotify", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTrainPartyTypeNone" => Some(Self::None), - "CmdTrainPartyBuildingUpdateNotify" => { - Some(Self::CmdTrainPartyBuildingUpdateNotify) - } - "CmdTrainPartySkipUnlockSelfRoomScRsp" => { - Some(Self::CmdTrainPartySkipUnlockSelfRoomScRsp) - } - "CmdTrainPartyBuildStartStepCsReq" => { - Some(Self::CmdTrainPartyBuildStartStepCsReq) - } - "CmdTrainPartyLeaveScRsp" => Some(Self::CmdTrainPartyLeaveScRsp), + "OEENCMHHGAJ_ALOCMFAKBKP" => Some(Self::OeencmhhgajAlocmfakbkp), + "CmdTrainPartyUseCardScRsp" => Some(Self::CmdTrainPartyUseCardScRsp), "CmdTrainPartyHandlePendingActionCsReq" => { Some(Self::CmdTrainPartyHandlePendingActionCsReq) } - "CmdTrainPartyGetDataCsReq" => Some(Self::CmdTrainPartyGetDataCsReq), - "CmdTrainPartyAddBuildDynamicBuffScRsp" => { - Some(Self::CmdTrainPartyAddBuildDynamicBuffScRsp) - } - "CmdTrainPartyAddBuildDynamicBuffCsReq" => { - Some(Self::CmdTrainPartyAddBuildDynamicBuffCsReq) - } - "CmdTrainPartyUpdatePosEnvCsReq" => { - Some(Self::CmdTrainPartyUpdatePosEnvCsReq) - } - "CmdTrainPartyMoveScNotify" => Some(Self::CmdTrainPartyMoveScNotify), - "CmdTrainPartyTakeBuildLevelAwardCsReq" => { - Some(Self::CmdTrainPartyTakeBuildLevelAwardCsReq) - } + "CmdMOCCJFOHAAB" => Some(Self::CmdMoccjfohaab), + "CmdTrainPartyEnterScRsp" => Some(Self::CmdTrainPartyEnterScRsp), + "CmdTrainPartyLeaveCsReq" => Some(Self::CmdTrainPartyLeaveCsReq), "CmdTrainPartySettleNotify" => Some(Self::CmdTrainPartySettleNotify), + "CmdTrainPartyLeaveScRsp" => Some(Self::CmdTrainPartyLeaveScRsp), + "OEENCMHHGAJ_DBKJDHJKJHE" => Some(Self::OeencmhhgajDbkjdhjkjhe), + "CmdTrainPartyBuildStartStepCsReq" => { + Some(Self::CmdTrainPartyBuildStartStepCsReq) + } + "CmdTrainPartyEnterCsReq" => Some(Self::CmdTrainPartyEnterCsReq), + "CmdAKNPOFCGAEA" => Some(Self::CmdAknpofcgaea), + "CmdHANHHJNHLEM" => Some(Self::CmdHanhhjnhlem), + "CmdIFPJKDDMGEP" => Some(Self::CmdIfpjkddmgep), + "CmdTrainPartyBuildDiyCsReq" => Some(Self::CmdTrainPartyBuildDiyCsReq), + "CmdTrainPartyBuildDiyScRsp" => Some(Self::CmdTrainPartyBuildDiyScRsp), "CmdTrainPartyHandlePendingActionScRsp" => { Some(Self::CmdTrainPartyHandlePendingActionScRsp) } "CmdTrainPartyUseCardCsReq" => Some(Self::CmdTrainPartyUseCardCsReq), - "CmdTrainPartyBuildRoomScNotify" => { - Some(Self::CmdTrainPartyBuildRoomScNotify) - } "CmdTrainPartySyncUpdateScNotify" => { Some(Self::CmdTrainPartySyncUpdateScNotify) } - "CmdTrainPartyBuildDiyCsReq" => Some(Self::CmdTrainPartyBuildDiyCsReq), + "CmdTrainPartyGetDataCsReq" => Some(Self::CmdTrainPartyGetDataCsReq), + "CmdLKOGDOIABBE" => Some(Self::CmdLkogdoiabbe), + "CmdBPAHALHPHJB" => Some(Self::CmdBpahalhphjb), + "OEENCMHHGAJ_IICJANCJBKO" => Some(Self::OeencmhhgajIicjancjbko), + "CmdMJNLNBFAOGA" => Some(Self::CmdMjnlnbfaoga), + "CmdTrainPartyBuildingUpdateNotify" => { + Some(Self::CmdTrainPartyBuildingUpdateNotify) + } "CmdTrainPartyGetDataScRsp" => Some(Self::CmdTrainPartyGetDataScRsp), - "CmdTrainPartyBuildStartStepScRsp" => { - Some(Self::CmdTrainPartyBuildStartStepScRsp) - } - "CmdTrainPartyGamePlayStartScRsp" => { - Some(Self::CmdTrainPartyGamePlayStartScRsp) - } - "CmdTrainPartyTakeBuildLevelAwardScRsp" => { - Some(Self::CmdTrainPartyTakeBuildLevelAwardScRsp) - } - "CmdTrainPartyLeaveCsReq" => Some(Self::CmdTrainPartyLeaveCsReq), - "CmdTrainPartyUpdatePosEnvScRsp" => { - Some(Self::CmdTrainPartyUpdatePosEnvScRsp) - } - "CmdTrainPartyBuildDiyScRsp" => Some(Self::CmdTrainPartyBuildDiyScRsp), - "CmdTrainPartyEnterScRsp" => Some(Self::CmdTrainPartyEnterScRsp), "CmdTrainPartyGamePlaySettleNotify" => { Some(Self::CmdTrainPartyGamePlaySettleNotify) } - "CmdTrainPartyGamePlayStartCsReq" => { - Some(Self::CmdTrainPartyGamePlayStartCsReq) + "CmdTrainPartyBuildStartStepScRsp" => { + Some(Self::CmdTrainPartyBuildStartStepScRsp) } - "CmdTrainPartyEnterCsReq" => Some(Self::CmdTrainPartyEnterCsReq), - "CmdTrainPartySkipUnlockSelfRoomCsReq" => { - Some(Self::CmdTrainPartySkipUnlockSelfRoomCsReq) + "CmdTrainPartyMoveScNotify" => Some(Self::CmdTrainPartyMoveScNotify), + "CmdMFFCOHOKBHD" => Some(Self::CmdMffcohokbhd), + "CmdTrainPartyBuildRoomScNotify" => { + Some(Self::CmdTrainPartyBuildRoomScNotify) } - "CmdTrainPartyUseCardScRsp" => Some(Self::CmdTrainPartyUseCardScRsp), _ => None, } } @@ -84708,32 +82478,32 @@ impl CmdTrainPartyType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum TrainPartyBuildStatus { - BuildGoalStepNone = 0, - BuildGoalStepIdle = 1, - BuildGoalStepStart = 2, - BuildGoalStepFinish = 3, +pub enum Ecmaeaadifa { + Eiadpdgchjo = 0, + Ichdpehafbg = 1, + Eobloibbkpb = 2, + Pbjacbopngd = 3, } -impl TrainPartyBuildStatus { +impl Ecmaeaadifa { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::BuildGoalStepNone => "BuildGoalStepNone", - Self::BuildGoalStepIdle => "BuildGoalStepIdle", - Self::BuildGoalStepStart => "BuildGoalStepStart", - Self::BuildGoalStepFinish => "BuildGoalStepFinish", + Self::Eiadpdgchjo => "ECMAEAADIFA_EIADPDGCHJO", + Self::Ichdpehafbg => "ECMAEAADIFA_ICHDPEHAFBG", + Self::Eobloibbkpb => "ECMAEAADIFA_EOBLOIBBKPB", + Self::Pbjacbopngd => "ECMAEAADIFA_PBJACBOPNGD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "BuildGoalStepNone" => Some(Self::BuildGoalStepNone), - "BuildGoalStepIdle" => Some(Self::BuildGoalStepIdle), - "BuildGoalStepStart" => Some(Self::BuildGoalStepStart), - "BuildGoalStepFinish" => Some(Self::BuildGoalStepFinish), + "ECMAEAADIFA_EIADPDGCHJO" => Some(Self::Eiadpdgchjo), + "ECMAEAADIFA_ICHDPEHAFBG" => Some(Self::Ichdpehafbg), + "ECMAEAADIFA_EOBLOIBBKPB" => Some(Self::Eobloibbkpb), + "ECMAEAADIFA_PBJACBOPNGD" => Some(Self::Pbjacbopngd), _ => None, } } @@ -84741,38 +82511,38 @@ impl TrainPartyBuildStatus { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum TrainPartyUpdateSrc { - KTrainPartySrcNone = 0, - KTrainPartySrcCard = 1, - KTrainPartySrcGrid = 2, - KTrainPartySrcPam = 3, - KTrainPartySrcPassenger = 4, - KTrainPartySrcBuilding = 5, +pub enum Kbggpblhkho { + Gjgadblafge = 0, + Nohnknbdcda = 1, + Piomdfeldcn = 2, + Ghoabbhiogl = 3, + Dgckfajblin = 4, + Cclknopmomi = 5, } -impl TrainPartyUpdateSrc { +impl Kbggpblhkho { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KTrainPartySrcNone => "kTrainPartySrcNone", - Self::KTrainPartySrcCard => "kTrainPartySrcCard", - Self::KTrainPartySrcGrid => "kTrainPartySrcGrid", - Self::KTrainPartySrcPam => "kTrainPartySrcPam", - Self::KTrainPartySrcPassenger => "kTrainPartySrcPassenger", - Self::KTrainPartySrcBuilding => "kTrainPartySrcBuilding", + Self::Gjgadblafge => "KBGGPBLHKHO_GJGADBLAFGE", + Self::Nohnknbdcda => "KBGGPBLHKHO_NOHNKNBDCDA", + Self::Piomdfeldcn => "KBGGPBLHKHO_PIOMDFELDCN", + Self::Ghoabbhiogl => "KBGGPBLHKHO_GHOABBHIOGL", + Self::Dgckfajblin => "KBGGPBLHKHO_DGCKFAJBLIN", + Self::Cclknopmomi => "KBGGPBLHKHO_CCLKNOPMOMI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kTrainPartySrcNone" => Some(Self::KTrainPartySrcNone), - "kTrainPartySrcCard" => Some(Self::KTrainPartySrcCard), - "kTrainPartySrcGrid" => Some(Self::KTrainPartySrcGrid), - "kTrainPartySrcPam" => Some(Self::KTrainPartySrcPam), - "kTrainPartySrcPassenger" => Some(Self::KTrainPartySrcPassenger), - "kTrainPartySrcBuilding" => Some(Self::KTrainPartySrcBuilding), + "KBGGPBLHKHO_GJGADBLAFGE" => Some(Self::Gjgadblafge), + "KBGGPBLHKHO_NOHNKNBDCDA" => Some(Self::Nohnknbdcda), + "KBGGPBLHKHO_PIOMDFELDCN" => Some(Self::Piomdfeldcn), + "KBGGPBLHKHO_GHOABBHIOGL" => Some(Self::Ghoabbhiogl), + "KBGGPBLHKHO_DGCKFAJBLIN" => Some(Self::Dgckfajblin), + "KBGGPBLHKHO_CCLKNOPMOMI" => Some(Self::Cclknopmomi), _ => None, } } @@ -84780,32 +82550,32 @@ impl TrainPartyUpdateSrc { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Ijdnojemian { - KDialogueEventNone = 0, - KGamePlayStartDialogueEvent = 1, - KGridDialogueEvent = 2, - KAfterMeetingDialogueEvent = 3, +pub enum Aoedkmhhlak { + Jkjndfecbfc = 0, + Igmhpcliehc = 1, + Ggemnbcljap = 2, + Ncdelghedjl = 3, } -impl Ijdnojemian { +impl Aoedkmhhlak { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KDialogueEventNone => "kDialogueEventNone", - Self::KGamePlayStartDialogueEvent => "kGamePlayStartDialogueEvent", - Self::KGridDialogueEvent => "kGridDialogueEvent", - Self::KAfterMeetingDialogueEvent => "kAfterMeetingDialogueEvent", + Self::Jkjndfecbfc => "AOEDKMHHLAK_JKJNDFECBFC", + Self::Igmhpcliehc => "AOEDKMHHLAK_IGMHPCLIEHC", + Self::Ggemnbcljap => "AOEDKMHHLAK_GGEMNBCLJAP", + Self::Ncdelghedjl => "AOEDKMHHLAK_NCDELGHEDJL", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kDialogueEventNone" => Some(Self::KDialogueEventNone), - "kGamePlayStartDialogueEvent" => Some(Self::KGamePlayStartDialogueEvent), - "kGridDialogueEvent" => Some(Self::KGridDialogueEvent), - "kAfterMeetingDialogueEvent" => Some(Self::KAfterMeetingDialogueEvent), + "AOEDKMHHLAK_JKJNDFECBFC" => Some(Self::Jkjndfecbfc), + "AOEDKMHHLAK_IGMHPCLIEHC" => Some(Self::Igmhpcliehc), + "AOEDKMHHLAK_GGEMNBCLJAP" => Some(Self::Ggemnbcljap), + "AOEDKMHHLAK_NCDELGHEDJL" => Some(Self::Ncdelghedjl), _ => None, } } @@ -84813,35 +82583,35 @@ impl Ijdnojemian { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Lcdemgacekd { - KMtSkillNone = 0, - KMtSkillModifyBase = 1, - KMtSkillModifyRatio = 2, - KMtSkillMultiplyRatio = 3, - KMtSkillSelfDestroy = 4, +pub enum Gjfefelpaad { + Pkmdldafelh = 0, + Ninlhndmijl = 1, + Jlbigkfhnop = 2, + Nmejainoabh = 3, + Kcaajacljce = 4, } -impl Lcdemgacekd { +impl Gjfefelpaad { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::KMtSkillNone => "kMtSkillNone", - Self::KMtSkillModifyBase => "kMtSkillModifyBase", - Self::KMtSkillModifyRatio => "kMtSkillModifyRatio", - Self::KMtSkillMultiplyRatio => "kMtSkillMultiplyRatio", - Self::KMtSkillSelfDestroy => "kMtSkillSelfDestroy", + Self::Pkmdldafelh => "GJFEFELPAAD_PKMDLDAFELH", + Self::Ninlhndmijl => "GJFEFELPAAD_NINLHNDMIJL", + Self::Jlbigkfhnop => "GJFEFELPAAD_JLBIGKFHNOP", + Self::Nmejainoabh => "GJFEFELPAAD_NMEJAINOABH", + Self::Kcaajacljce => "GJFEFELPAAD_KCAAJACLJCE", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "kMtSkillNone" => Some(Self::KMtSkillNone), - "kMtSkillModifyBase" => Some(Self::KMtSkillModifyBase), - "kMtSkillModifyRatio" => Some(Self::KMtSkillModifyRatio), - "kMtSkillMultiplyRatio" => Some(Self::KMtSkillMultiplyRatio), - "kMtSkillSelfDestroy" => Some(Self::KMtSkillSelfDestroy), + "GJFEFELPAAD_PKMDLDAFELH" => Some(Self::Pkmdldafelh), + "GJFEFELPAAD_NINLHNDMIJL" => Some(Self::Ninlhndmijl), + "GJFEFELPAAD_JLBIGKFHNOP" => Some(Self::Jlbigkfhnop), + "GJFEFELPAAD_NMEJAINOABH" => Some(Self::Nmejainoabh), + "GJFEFELPAAD_KCAAJACLJCE" => Some(Self::Kcaajacljce), _ => None, } } @@ -84849,47 +82619,47 @@ impl Lcdemgacekd { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum TrainPartyMtSkillType { - TrainPartyMtCategoryNone = 0, - TrainPartyMtCategoryS = 1, - TrainPartyMtCategoryA = 2, - TrainPartyMtCategoryB = 3, - TrainPartyMtCategoryC = 4, - TrainPartyMtCategoryD = 5, - TrainPartyMtCategoryE = 6, - TrainPartyMtCategoryF = 7, - TrainPartyMtCategoryG = 8, +pub enum Ipcdfmaamdo { + Djlfgibgelj = 0, + Okgiapdmimm = 1, + Pledmogcmmd = 2, + Pkifgigcpio = 3, + Jdkgbklmlfm = 4, + Lcjhnagaelp = 5, + Aljpnmdhjfd = 6, + Caoehpjdaam = 7, + Onmclpnkoof = 8, } -impl TrainPartyMtSkillType { +impl Ipcdfmaamdo { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TrainPartyMtCategoryNone => "TRAIN_PARTY_MT_CATEGORY_NONE", - Self::TrainPartyMtCategoryS => "TRAIN_PARTY_MT_CATEGORY_S", - Self::TrainPartyMtCategoryA => "TRAIN_PARTY_MT_CATEGORY_A", - Self::TrainPartyMtCategoryB => "TRAIN_PARTY_MT_CATEGORY_B", - Self::TrainPartyMtCategoryC => "TRAIN_PARTY_MT_CATEGORY_C", - Self::TrainPartyMtCategoryD => "TRAIN_PARTY_MT_CATEGORY_D", - Self::TrainPartyMtCategoryE => "TRAIN_PARTY_MT_CATEGORY_E", - Self::TrainPartyMtCategoryF => "TRAIN_PARTY_MT_CATEGORY_F", - Self::TrainPartyMtCategoryG => "TRAIN_PARTY_MT_CATEGORY_G", + Self::Djlfgibgelj => "IPCDFMAAMDO_DJLFGIBGELJ", + Self::Okgiapdmimm => "IPCDFMAAMDO_OKGIAPDMIMM", + Self::Pledmogcmmd => "IPCDFMAAMDO_PLEDMOGCMMD", + Self::Pkifgigcpio => "IPCDFMAAMDO_PKIFGIGCPIO", + Self::Jdkgbklmlfm => "IPCDFMAAMDO_JDKGBKLMLFM", + Self::Lcjhnagaelp => "IPCDFMAAMDO_LCJHNAGAELP", + Self::Aljpnmdhjfd => "IPCDFMAAMDO_ALJPNMDHJFD", + Self::Caoehpjdaam => "IPCDFMAAMDO_CAOEHPJDAAM", + Self::Onmclpnkoof => "IPCDFMAAMDO_ONMCLPNKOOF", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TRAIN_PARTY_MT_CATEGORY_NONE" => Some(Self::TrainPartyMtCategoryNone), - "TRAIN_PARTY_MT_CATEGORY_S" => Some(Self::TrainPartyMtCategoryS), - "TRAIN_PARTY_MT_CATEGORY_A" => Some(Self::TrainPartyMtCategoryA), - "TRAIN_PARTY_MT_CATEGORY_B" => Some(Self::TrainPartyMtCategoryB), - "TRAIN_PARTY_MT_CATEGORY_C" => Some(Self::TrainPartyMtCategoryC), - "TRAIN_PARTY_MT_CATEGORY_D" => Some(Self::TrainPartyMtCategoryD), - "TRAIN_PARTY_MT_CATEGORY_E" => Some(Self::TrainPartyMtCategoryE), - "TRAIN_PARTY_MT_CATEGORY_F" => Some(Self::TrainPartyMtCategoryF), - "TRAIN_PARTY_MT_CATEGORY_G" => Some(Self::TrainPartyMtCategoryG), + "IPCDFMAAMDO_DJLFGIBGELJ" => Some(Self::Djlfgibgelj), + "IPCDFMAAMDO_OKGIAPDMIMM" => Some(Self::Okgiapdmimm), + "IPCDFMAAMDO_PLEDMOGCMMD" => Some(Self::Pledmogcmmd), + "IPCDFMAAMDO_PKIFGIGCPIO" => Some(Self::Pkifgigcpio), + "IPCDFMAAMDO_JDKGBKLMLFM" => Some(Self::Jdkgbklmlfm), + "IPCDFMAAMDO_LCJHNAGAELP" => Some(Self::Lcjhnagaelp), + "IPCDFMAAMDO_ALJPNMDHJFD" => Some(Self::Aljpnmdhjfd), + "IPCDFMAAMDO_CAOEHPJDAAM" => Some(Self::Caoehpjdaam), + "IPCDFMAAMDO_ONMCLPNKOOF" => Some(Self::Onmclpnkoof), _ => None, } } @@ -84898,19 +82668,19 @@ impl TrainPartyMtSkillType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTrainVisitorType { - None = 0, - CmdTakeTrainVisitorUntakenBehaviorRewardScRsp = 3744, - CmdGetTrainVisitorBehaviorScRsp = 3765, - CmdShowNewSupplementVisitorScRsp = 3769, - CmdTakeTrainVisitorUntakenBehaviorRewardCsReq = 3719, - CmdTrainRefreshTimeNotify = 3783, - CmdTrainVisitorBehaviorFinishCsReq = 3799, - CmdGetTrainVisitorRegisterScRsp = 3752, - CmdGetTrainVisitorBehaviorCsReq = 3798, - CmdTrainVisitorRewardSendNotify = 3786, - CmdGetTrainVisitorRegisterCsReq = 3794, - CmdTrainVisitorBehaviorFinishScRsp = 3723, - CmdShowNewSupplementVisitorCsReq = 3781, + HmfppdhlfkkAlocmfakbkp = 0, + HmfppdhlfkkEngjnmhldke = 3795, + HmfppdhlfkkEmcefnnecaj = 3751, + HmfppdhlfkkNlbmmlacnhf = 3738, + HmfppdhlfkkNkllnjnabch = 3720, + HmfppdhlfkkLofeghjdhfl = 3791, + HmfppdhlfkkHlecnjopcgm = 3789, + HmfppdhlfkkGgchbcpampj = 3761, + HmfppdhlfkkKdjdnhemfaj = 3747, + HmfppdhlfkkIgndmjhkhle = 3745, + HmfppdhlfkkGgehhdohgnk = 3711, + HmfppdhlfkkBcofenkmall = 3709, + HmfppdhlfkkIikhadmaged = 3717, } impl CmdTrainVisitorType { /// String value of the enum field names used in the ProtoBuf definition. @@ -84919,67 +82689,37 @@ impl CmdTrainVisitorType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTrainVisitorTypeNone", - Self::CmdTakeTrainVisitorUntakenBehaviorRewardScRsp => { - "CmdTakeTrainVisitorUntakenBehaviorRewardScRsp" - } - Self::CmdGetTrainVisitorBehaviorScRsp => "CmdGetTrainVisitorBehaviorScRsp", - Self::CmdShowNewSupplementVisitorScRsp => "CmdShowNewSupplementVisitorScRsp", - Self::CmdTakeTrainVisitorUntakenBehaviorRewardCsReq => { - "CmdTakeTrainVisitorUntakenBehaviorRewardCsReq" - } - Self::CmdTrainRefreshTimeNotify => "CmdTrainRefreshTimeNotify", - Self::CmdTrainVisitorBehaviorFinishCsReq => { - "CmdTrainVisitorBehaviorFinishCsReq" - } - Self::CmdGetTrainVisitorRegisterScRsp => "CmdGetTrainVisitorRegisterScRsp", - Self::CmdGetTrainVisitorBehaviorCsReq => "CmdGetTrainVisitorBehaviorCsReq", - Self::CmdTrainVisitorRewardSendNotify => "CmdTrainVisitorRewardSendNotify", - Self::CmdGetTrainVisitorRegisterCsReq => "CmdGetTrainVisitorRegisterCsReq", - Self::CmdTrainVisitorBehaviorFinishScRsp => { - "CmdTrainVisitorBehaviorFinishScRsp" - } - Self::CmdShowNewSupplementVisitorCsReq => "CmdShowNewSupplementVisitorCsReq", + Self::HmfppdhlfkkAlocmfakbkp => "HMFPPDHLFKK_ALOCMFAKBKP", + Self::HmfppdhlfkkEngjnmhldke => "HMFPPDHLFKK_ENGJNMHLDKE", + Self::HmfppdhlfkkEmcefnnecaj => "HMFPPDHLFKK_EMCEFNNECAJ", + Self::HmfppdhlfkkNlbmmlacnhf => "HMFPPDHLFKK_NLBMMLACNHF", + Self::HmfppdhlfkkNkllnjnabch => "HMFPPDHLFKK_NKLLNJNABCH", + Self::HmfppdhlfkkLofeghjdhfl => "HMFPPDHLFKK_LOFEGHJDHFL", + Self::HmfppdhlfkkHlecnjopcgm => "HMFPPDHLFKK_HLECNJOPCGM", + Self::HmfppdhlfkkGgchbcpampj => "HMFPPDHLFKK_GGCHBCPAMPJ", + Self::HmfppdhlfkkKdjdnhemfaj => "HMFPPDHLFKK_KDJDNHEMFAJ", + Self::HmfppdhlfkkIgndmjhkhle => "HMFPPDHLFKK_IGNDMJHKHLE", + Self::HmfppdhlfkkGgehhdohgnk => "HMFPPDHLFKK_GGEHHDOHGNK", + Self::HmfppdhlfkkBcofenkmall => "HMFPPDHLFKK_BCOFENKMALL", + Self::HmfppdhlfkkIikhadmaged => "HMFPPDHLFKK_IIKHADMAGED", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTrainVisitorTypeNone" => Some(Self::None), - "CmdTakeTrainVisitorUntakenBehaviorRewardScRsp" => { - Some(Self::CmdTakeTrainVisitorUntakenBehaviorRewardScRsp) - } - "CmdGetTrainVisitorBehaviorScRsp" => { - Some(Self::CmdGetTrainVisitorBehaviorScRsp) - } - "CmdShowNewSupplementVisitorScRsp" => { - Some(Self::CmdShowNewSupplementVisitorScRsp) - } - "CmdTakeTrainVisitorUntakenBehaviorRewardCsReq" => { - Some(Self::CmdTakeTrainVisitorUntakenBehaviorRewardCsReq) - } - "CmdTrainRefreshTimeNotify" => Some(Self::CmdTrainRefreshTimeNotify), - "CmdTrainVisitorBehaviorFinishCsReq" => { - Some(Self::CmdTrainVisitorBehaviorFinishCsReq) - } - "CmdGetTrainVisitorRegisterScRsp" => { - Some(Self::CmdGetTrainVisitorRegisterScRsp) - } - "CmdGetTrainVisitorBehaviorCsReq" => { - Some(Self::CmdGetTrainVisitorBehaviorCsReq) - } - "CmdTrainVisitorRewardSendNotify" => { - Some(Self::CmdTrainVisitorRewardSendNotify) - } - "CmdGetTrainVisitorRegisterCsReq" => { - Some(Self::CmdGetTrainVisitorRegisterCsReq) - } - "CmdTrainVisitorBehaviorFinishScRsp" => { - Some(Self::CmdTrainVisitorBehaviorFinishScRsp) - } - "CmdShowNewSupplementVisitorCsReq" => { - Some(Self::CmdShowNewSupplementVisitorCsReq) - } + "HMFPPDHLFKK_ALOCMFAKBKP" => Some(Self::HmfppdhlfkkAlocmfakbkp), + "HMFPPDHLFKK_ENGJNMHLDKE" => Some(Self::HmfppdhlfkkEngjnmhldke), + "HMFPPDHLFKK_EMCEFNNECAJ" => Some(Self::HmfppdhlfkkEmcefnnecaj), + "HMFPPDHLFKK_NLBMMLACNHF" => Some(Self::HmfppdhlfkkNlbmmlacnhf), + "HMFPPDHLFKK_NKLLNJNABCH" => Some(Self::HmfppdhlfkkNkllnjnabch), + "HMFPPDHLFKK_LOFEGHJDHFL" => Some(Self::HmfppdhlfkkLofeghjdhfl), + "HMFPPDHLFKK_HLECNJOPCGM" => Some(Self::HmfppdhlfkkHlecnjopcgm), + "HMFPPDHLFKK_GGCHBCPAMPJ" => Some(Self::HmfppdhlfkkGgchbcpampj), + "HMFPPDHLFKK_KDJDNHEMFAJ" => Some(Self::HmfppdhlfkkKdjdnhemfaj), + "HMFPPDHLFKK_IGNDMJHKHLE" => Some(Self::HmfppdhlfkkIgndmjhkhle), + "HMFPPDHLFKK_GGEHHDOHGNK" => Some(Self::HmfppdhlfkkGgehhdohgnk), + "HMFPPDHLFKK_BCOFENKMALL" => Some(Self::HmfppdhlfkkBcofenkmall), + "HMFPPDHLFKK_IIKHADMAGED" => Some(Self::HmfppdhlfkkIikhadmaged), _ => None, } } @@ -84987,33 +82727,29 @@ impl CmdTrainVisitorType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Iippjkhmpch { - TrainVisitorRewardSendNone = 0, - TrainVisitorRewardSendRegister = 1, - TrainVisitorRewardSendMission = 2, +pub enum Lnijgligfje { + Jalnjkinnfo = 0, + Oepmkecohda = 1, + Afcfabogddi = 2, } -impl Iippjkhmpch { +impl Lnijgligfje { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TrainVisitorRewardSendNone => "TRAIN_VISITOR_REWARD_SEND_NONE", - Self::TrainVisitorRewardSendRegister => "TRAIN_VISITOR_REWARD_SEND_REGISTER", - Self::TrainVisitorRewardSendMission => "TRAIN_VISITOR_REWARD_SEND_MISSION", + Self::Jalnjkinnfo => "LNIJGLIGFJE_JALNJKINNFO", + Self::Oepmkecohda => "LNIJGLIGFJE_OEPMKECOHDA", + Self::Afcfabogddi => "LNIJGLIGFJE_AFCFABOGDDI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TRAIN_VISITOR_REWARD_SEND_NONE" => Some(Self::TrainVisitorRewardSendNone), - "TRAIN_VISITOR_REWARD_SEND_REGISTER" => { - Some(Self::TrainVisitorRewardSendRegister) - } - "TRAIN_VISITOR_REWARD_SEND_MISSION" => { - Some(Self::TrainVisitorRewardSendMission) - } + "LNIJGLIGFJE_JALNJKINNFO" => Some(Self::Jalnjkinnfo), + "LNIJGLIGFJE_OEPMKECOHDA" => Some(Self::Oepmkecohda), + "LNIJGLIGFJE_AFCFABOGDDI" => Some(Self::Afcfabogddi), _ => None, } } @@ -85021,39 +82757,35 @@ impl Iippjkhmpch { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Llmibdpfjnd { - TrainVisitorStatusNone = 0, - TrainVisitorStatusInit = 1, - TrainVisitorStatusGetOn = 2, - TrainVisitorStatusGetOff = 3, - TrainVisitorStatusBeTrainMember = 4, +pub enum Gfiinmhfgia { + Alocmfakbkp = 0, + Hjmbccgnnkf = 1, + Idanocgbkab = 2, + Ifpnedhagah = 3, + Fbggbhdpcme = 4, } -impl Llmibdpfjnd { +impl Gfiinmhfgia { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TrainVisitorStatusNone => "TRAIN_VISITOR_STATUS_NONE", - Self::TrainVisitorStatusInit => "TRAIN_VISITOR_STATUS_INIT", - Self::TrainVisitorStatusGetOn => "TRAIN_VISITOR_STATUS_GET_ON", - Self::TrainVisitorStatusGetOff => "TRAIN_VISITOR_STATUS_GET_OFF", - Self::TrainVisitorStatusBeTrainMember => { - "TRAIN_VISITOR_STATUS_BE_TRAIN_MEMBER" - } + Self::Alocmfakbkp => "GFIINMHFGIA_ALOCMFAKBKP", + Self::Hjmbccgnnkf => "GFIINMHFGIA_HJMBCCGNNKF", + Self::Idanocgbkab => "GFIINMHFGIA_IDANOCGBKAB", + Self::Ifpnedhagah => "GFIINMHFGIA_IFPNEDHAGAH", + Self::Fbggbhdpcme => "GFIINMHFGIA_FBGGBHDPCME", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TRAIN_VISITOR_STATUS_NONE" => Some(Self::TrainVisitorStatusNone), - "TRAIN_VISITOR_STATUS_INIT" => Some(Self::TrainVisitorStatusInit), - "TRAIN_VISITOR_STATUS_GET_ON" => Some(Self::TrainVisitorStatusGetOn), - "TRAIN_VISITOR_STATUS_GET_OFF" => Some(Self::TrainVisitorStatusGetOff), - "TRAIN_VISITOR_STATUS_BE_TRAIN_MEMBER" => { - Some(Self::TrainVisitorStatusBeTrainMember) - } + "GFIINMHFGIA_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "GFIINMHFGIA_HJMBCCGNNKF" => Some(Self::Hjmbccgnnkf), + "GFIINMHFGIA_IDANOCGBKAB" => Some(Self::Idanocgbkab), + "GFIINMHFGIA_IFPNEDHAGAH" => Some(Self::Ifpnedhagah), + "GFIINMHFGIA_FBGGBHDPCME" => Some(Self::Fbggbhdpcme), _ => None, } } @@ -85061,41 +82793,29 @@ impl Llmibdpfjnd { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Jfjjfgaeoab { - TrainVisitorRegisterGetTypeNone = 0, - TrainVisitorRegisterGetTypeAuto = 1, - TrainVisitorRegisterGetTypeManual = 2, +pub enum Ockdidopgck { + Alocmfakbkp = 0, + Lpipnojdmbd = 1, + Hokpfjcdicb = 2, } -impl Jfjjfgaeoab { +impl Ockdidopgck { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TrainVisitorRegisterGetTypeNone => { - "TRAIN_VISITOR_REGISTER_GET_TYPE_NONE" - } - Self::TrainVisitorRegisterGetTypeAuto => { - "TRAIN_VISITOR_REGISTER_GET_TYPE_AUTO" - } - Self::TrainVisitorRegisterGetTypeManual => { - "TRAIN_VISITOR_REGISTER_GET_TYPE_MANUAL" - } + Self::Alocmfakbkp => "OCKDIDOPGCK_ALOCMFAKBKP", + Self::Lpipnojdmbd => "OCKDIDOPGCK_LPIPNOJDMBD", + Self::Hokpfjcdicb => "OCKDIDOPGCK_HOKPFJCDICB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TRAIN_VISITOR_REGISTER_GET_TYPE_NONE" => { - Some(Self::TrainVisitorRegisterGetTypeNone) - } - "TRAIN_VISITOR_REGISTER_GET_TYPE_AUTO" => { - Some(Self::TrainVisitorRegisterGetTypeAuto) - } - "TRAIN_VISITOR_REGISTER_GET_TYPE_MANUAL" => { - Some(Self::TrainVisitorRegisterGetTypeManual) - } + "OCKDIDOPGCK_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "OCKDIDOPGCK_LPIPNOJDMBD" => Some(Self::Lpipnojdmbd), + "OCKDIDOPGCK_HOKPFJCDICB" => Some(Self::Hokpfjcdicb), _ => None, } } @@ -85104,27 +82824,27 @@ impl Jfjjfgaeoab { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTravelBrochure { - None = 0, - PageResetScRsp = 6477, - GetDataScRsp = 6423, - ApplyPasterListCsReq = 6405, - PageResetCsReq = 6480, - SelectMessageCsReq = 6483, - PageUnlockScNotify = 6498, - UpdatePasterPosScRsp = 6469, - SetPageDescStatusCsReq = 6468, - SetCustomValueScRsp = 6437, - ApplyPasterListScRsp = 6451, - RemovePasterScRsp = 6444, - SetPageDescStatusScRsp = 6449, - SetCustomValueCsReq = 6492, - ApplyPasterCsReq = 6494, - SelectMessageScRsp = 6486, - UpdatePasterPosCsReq = 6481, - ApplyPasterScRsp = 6452, - GetDataCsReq = 6499, - GetPasterScNotify = 6457, - RemovePasterCsReq = 6419, + KogenifkcgoMboocbojdkc = 0, + KogenifkcgoEdfcmokkpfb = 6467, + KogenifkcgoPmggcanipej = 6481, + KogenifkcgoPojhoiodkii = 6493, + KogenifkcgoIffknencgjh = 6476, + KogenifkcgoCohhfjehlje = 6447, + KogenifkcgoGgpfomkopkg = 6491, + KogenifkcgoGhgddibloeb = 6495, + KogenifkcgoImlghbpicfp = 6437, + KogenifkcgoKaddpgfgolg = 6435, + KogenifkcgoCbpbikmelel = 6489, + KogenifkcgoHkdbmhkbpme = 6438, + KogenifkcgoLpedgdmbmph = 6420, + KogenifkcgoEcknadnfmjh = 6410, + KogenifkcgoFcjgmhhjfnl = 6409, + KogenifkcgoFgfpedobhnd = 6461, + KogenifkcgoGlokhdkhhgp = 6411, + KogenifkcgoAgfkobdheho = 6451, + KogenifkcgoDieghjgfmml = 6450, + KogenifkcgoIjppmehjjna = 6462, + KogenifkcgoDcomgfdbbpj = 6445, } impl CmdTravelBrochure { /// String value of the enum field names used in the ProtoBuf definition. @@ -85133,57 +82853,53 @@ impl CmdTravelBrochure { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTravelBrochureNone", - Self::PageResetScRsp => "CmdTravelBrochurePageResetScRsp", - Self::GetDataScRsp => "CmdTravelBrochureGetDataScRsp", - Self::ApplyPasterListCsReq => "CmdTravelBrochureApplyPasterListCsReq", - Self::PageResetCsReq => "CmdTravelBrochurePageResetCsReq", - Self::SelectMessageCsReq => "CmdTravelBrochureSelectMessageCsReq", - Self::PageUnlockScNotify => "CmdTravelBrochurePageUnlockScNotify", - Self::UpdatePasterPosScRsp => "CmdTravelBrochureUpdatePasterPosScRsp", - Self::SetPageDescStatusCsReq => "CmdTravelBrochureSetPageDescStatusCsReq", - Self::SetCustomValueScRsp => "CmdTravelBrochureSetCustomValueScRsp", - Self::ApplyPasterListScRsp => "CmdTravelBrochureApplyPasterListScRsp", - Self::RemovePasterScRsp => "CmdTravelBrochureRemovePasterScRsp", - Self::SetPageDescStatusScRsp => "CmdTravelBrochureSetPageDescStatusScRsp", - Self::SetCustomValueCsReq => "CmdTravelBrochureSetCustomValueCsReq", - Self::ApplyPasterCsReq => "CmdTravelBrochureApplyPasterCsReq", - Self::SelectMessageScRsp => "CmdTravelBrochureSelectMessageScRsp", - Self::UpdatePasterPosCsReq => "CmdTravelBrochureUpdatePasterPosCsReq", - Self::ApplyPasterScRsp => "CmdTravelBrochureApplyPasterScRsp", - Self::GetDataCsReq => "CmdTravelBrochureGetDataCsReq", - Self::GetPasterScNotify => "CmdTravelBrochureGetPasterScNotify", - Self::RemovePasterCsReq => "CmdTravelBrochureRemovePasterCsReq", + Self::KogenifkcgoMboocbojdkc => "KOGENIFKCGO_MBOOCBOJDKC", + Self::KogenifkcgoEdfcmokkpfb => "KOGENIFKCGO_EDFCMOKKPFB", + Self::KogenifkcgoPmggcanipej => "KOGENIFKCGO_PMGGCANIPEJ", + Self::KogenifkcgoPojhoiodkii => "KOGENIFKCGO_POJHOIODKII", + Self::KogenifkcgoIffknencgjh => "KOGENIFKCGO_IFFKNENCGJH", + Self::KogenifkcgoCohhfjehlje => "KOGENIFKCGO_COHHFJEHLJE", + Self::KogenifkcgoGgpfomkopkg => "KOGENIFKCGO_GGPFOMKOPKG", + Self::KogenifkcgoGhgddibloeb => "KOGENIFKCGO_GHGDDIBLOEB", + Self::KogenifkcgoImlghbpicfp => "KOGENIFKCGO_IMLGHBPICFP", + Self::KogenifkcgoKaddpgfgolg => "KOGENIFKCGO_KADDPGFGOLG", + Self::KogenifkcgoCbpbikmelel => "KOGENIFKCGO_CBPBIKMELEL", + Self::KogenifkcgoHkdbmhkbpme => "KOGENIFKCGO_HKDBMHKBPME", + Self::KogenifkcgoLpedgdmbmph => "KOGENIFKCGO_LPEDGDMBMPH", + Self::KogenifkcgoEcknadnfmjh => "KOGENIFKCGO_ECKNADNFMJH", + Self::KogenifkcgoFcjgmhhjfnl => "KOGENIFKCGO_FCJGMHHJFNL", + Self::KogenifkcgoFgfpedobhnd => "KOGENIFKCGO_FGFPEDOBHND", + Self::KogenifkcgoGlokhdkhhgp => "KOGENIFKCGO_GLOKHDKHHGP", + Self::KogenifkcgoAgfkobdheho => "KOGENIFKCGO_AGFKOBDHEHO", + Self::KogenifkcgoDieghjgfmml => "KOGENIFKCGO_DIEGHJGFMML", + Self::KogenifkcgoIjppmehjjna => "KOGENIFKCGO_IJPPMEHJJNA", + Self::KogenifkcgoDcomgfdbbpj => "KOGENIFKCGO_DCOMGFDBBPJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTravelBrochureNone" => Some(Self::None), - "CmdTravelBrochurePageResetScRsp" => Some(Self::PageResetScRsp), - "CmdTravelBrochureGetDataScRsp" => Some(Self::GetDataScRsp), - "CmdTravelBrochureApplyPasterListCsReq" => Some(Self::ApplyPasterListCsReq), - "CmdTravelBrochurePageResetCsReq" => Some(Self::PageResetCsReq), - "CmdTravelBrochureSelectMessageCsReq" => Some(Self::SelectMessageCsReq), - "CmdTravelBrochurePageUnlockScNotify" => Some(Self::PageUnlockScNotify), - "CmdTravelBrochureUpdatePasterPosScRsp" => Some(Self::UpdatePasterPosScRsp), - "CmdTravelBrochureSetPageDescStatusCsReq" => { - Some(Self::SetPageDescStatusCsReq) - } - "CmdTravelBrochureSetCustomValueScRsp" => Some(Self::SetCustomValueScRsp), - "CmdTravelBrochureApplyPasterListScRsp" => Some(Self::ApplyPasterListScRsp), - "CmdTravelBrochureRemovePasterScRsp" => Some(Self::RemovePasterScRsp), - "CmdTravelBrochureSetPageDescStatusScRsp" => { - Some(Self::SetPageDescStatusScRsp) - } - "CmdTravelBrochureSetCustomValueCsReq" => Some(Self::SetCustomValueCsReq), - "CmdTravelBrochureApplyPasterCsReq" => Some(Self::ApplyPasterCsReq), - "CmdTravelBrochureSelectMessageScRsp" => Some(Self::SelectMessageScRsp), - "CmdTravelBrochureUpdatePasterPosCsReq" => Some(Self::UpdatePasterPosCsReq), - "CmdTravelBrochureApplyPasterScRsp" => Some(Self::ApplyPasterScRsp), - "CmdTravelBrochureGetDataCsReq" => Some(Self::GetDataCsReq), - "CmdTravelBrochureGetPasterScNotify" => Some(Self::GetPasterScNotify), - "CmdTravelBrochureRemovePasterCsReq" => Some(Self::RemovePasterCsReq), + "KOGENIFKCGO_MBOOCBOJDKC" => Some(Self::KogenifkcgoMboocbojdkc), + "KOGENIFKCGO_EDFCMOKKPFB" => Some(Self::KogenifkcgoEdfcmokkpfb), + "KOGENIFKCGO_PMGGCANIPEJ" => Some(Self::KogenifkcgoPmggcanipej), + "KOGENIFKCGO_POJHOIODKII" => Some(Self::KogenifkcgoPojhoiodkii), + "KOGENIFKCGO_IFFKNENCGJH" => Some(Self::KogenifkcgoIffknencgjh), + "KOGENIFKCGO_COHHFJEHLJE" => Some(Self::KogenifkcgoCohhfjehlje), + "KOGENIFKCGO_GGPFOMKOPKG" => Some(Self::KogenifkcgoGgpfomkopkg), + "KOGENIFKCGO_GHGDDIBLOEB" => Some(Self::KogenifkcgoGhgddibloeb), + "KOGENIFKCGO_IMLGHBPICFP" => Some(Self::KogenifkcgoImlghbpicfp), + "KOGENIFKCGO_KADDPGFGOLG" => Some(Self::KogenifkcgoKaddpgfgolg), + "KOGENIFKCGO_CBPBIKMELEL" => Some(Self::KogenifkcgoCbpbikmelel), + "KOGENIFKCGO_HKDBMHKBPME" => Some(Self::KogenifkcgoHkdbmhkbpme), + "KOGENIFKCGO_LPEDGDMBMPH" => Some(Self::KogenifkcgoLpedgdmbmph), + "KOGENIFKCGO_ECKNADNFMJH" => Some(Self::KogenifkcgoEcknadnfmjh), + "KOGENIFKCGO_FCJGMHHJFNL" => Some(Self::KogenifkcgoFcjgmhhjfnl), + "KOGENIFKCGO_FGFPEDOBHND" => Some(Self::KogenifkcgoFgfpedobhnd), + "KOGENIFKCGO_GLOKHDKHHGP" => Some(Self::KogenifkcgoGlokhdkhhgp), + "KOGENIFKCGO_AGFKOBDHEHO" => Some(Self::KogenifkcgoAgfkobdheho), + "KOGENIFKCGO_DIEGHJGFMML" => Some(Self::KogenifkcgoDieghjgfmml), + "KOGENIFKCGO_IJPPMEHJJNA" => Some(Self::KogenifkcgoIjppmehjjna), + "KOGENIFKCGO_DCOMGFDBBPJ" => Some(Self::KogenifkcgoDcomgfdbbpj), _ => None, } } @@ -85191,29 +82907,29 @@ impl CmdTravelBrochure { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Hgkkppljboi { - PageNone = 0, - PageUnlocked = 1, - PageInteracted = 2, +pub enum Bgenplbpied { + Njeigopjcja = 0, + Mmgbbcefcha = 1, + Fhfjpeieicn = 2, } -impl Hgkkppljboi { +impl Bgenplbpied { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PageNone => "PAGE_NONE", - Self::PageUnlocked => "PAGE_UNLOCKED", - Self::PageInteracted => "PAGE_INTERACTED", + Self::Njeigopjcja => "BGENPLBPIED_NJEIGOPJCJA", + Self::Mmgbbcefcha => "BGENPLBPIED_MMGBBCEFCHA", + Self::Fhfjpeieicn => "BGENPLBPIED_FHFJPEIEICN", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PAGE_NONE" => Some(Self::PageNone), - "PAGE_UNLOCKED" => Some(Self::PageUnlocked), - "PAGE_INTERACTED" => Some(Self::PageInteracted), + "BGENPLBPIED_NJEIGOPJCJA" => Some(Self::Njeigopjcja), + "BGENPLBPIED_MMGBBCEFCHA" => Some(Self::Mmgbbcefcha), + "BGENPLBPIED_FHFJPEIEICN" => Some(Self::Fhfjpeieicn), _ => None, } } @@ -85221,29 +82937,29 @@ impl Hgkkppljboi { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Dcjaopdinoi { - PageDescNone = 0, - PageDescShowDetail = 1, - PageDescCollapse = 2, +pub enum Ekibcbilkoc { + Fbkfmlcbbbp = 0, + Ackndmlofle = 1, + Dagjchijdcd = 2, } -impl Dcjaopdinoi { +impl Ekibcbilkoc { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::PageDescNone => "PAGE_DESC_NONE", - Self::PageDescShowDetail => "PAGE_DESC_SHOW_DETAIL", - Self::PageDescCollapse => "PAGE_DESC_COLLAPSE", + Self::Fbkfmlcbbbp => "EKIBCBILKOC_FBKFMLCBBBP", + Self::Ackndmlofle => "EKIBCBILKOC_ACKNDMLOFLE", + Self::Dagjchijdcd => "EKIBCBILKOC_DAGJCHIJDCD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "PAGE_DESC_NONE" => Some(Self::PageDescNone), - "PAGE_DESC_SHOW_DETAIL" => Some(Self::PageDescShowDetail), - "PAGE_DESC_COLLAPSE" => Some(Self::PageDescCollapse), + "EKIBCBILKOC_FBKFMLCBBBP" => Some(Self::Fbkfmlcbbbp), + "EKIBCBILKOC_ACKNDMLOFLE" => Some(Self::Ackndmlofle), + "EKIBCBILKOC_DAGJCHIJDCD" => Some(Self::Dagjchijdcd), _ => None, } } @@ -85252,23 +82968,23 @@ impl Dcjaopdinoi { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTreasureDungeonType { - None = 0, - CmdInteractTreasureDungeonGridCsReq = 4480, - CmdUseTreasureDungeonItemScRsp = 4451, - CmdUseTreasureDungeonItemCsReq = 4405, - CmdEnterTreasureDungeonScRsp = 4415, - CmdFightTreasureDungeonMonsterScRsp = 4449, - CmdQuitTreasureDungeonCsReq = 4429, - CmdGetTreasureDungeonActivityDataCsReq = 4481, - CmdQuitTreasureDungeonScRsp = 4438, - CmdTreasureDungeonFinishScNotify = 4423, - CmdGetTreasureDungeonActivityDataScRsp = 4469, - CmdFightTreasureDungeonMonsterCsReq = 4468, - CmdInteractTreasureDungeonGridScRsp = 4477, - CmdOpenTreasureDungeonGridCsReq = 4492, - CmdEnterTreasureDungeonCsReq = 4457, - CmdOpenTreasureDungeonGridScRsp = 4437, - CmdTreasureDungeonDataScNotify = 4499, + LehbpgkpkmhAlocmfakbkp = 0, + LehbpgkpkmhOaonmkfiihh = 4493, + LehbpgkpkmhPgkflcggdgd = 4462, + LehbpgkpkmhEkhhfhjahgj = 4461, + LehbpgkpkmhKcpmcddgpcl = 4410, + LehbpgkpkmhIgoihakicgf = 4450, + LehbpgkpkmhGheallnmbhg = 4445, + LehbpgkpkmhEgpdiccjnnn = 4467, + LehbpgkpkmhGliohbpeedk = 4446, + LehbpgkpkmhPjbakcagccn = 4409, + LehbpgkpkmhGmmpchjcaih = 4452, + LehbpgkpkmhGhpleebncai = 4476, + LehbpgkpkmhMbnjpahbknp = 4437, + LehbpgkpkmhInobjngbgeo = 4435, + LehbpgkpkmhDmblnjdjenc = 4481, + LehbpgkpkmhFpcccaagajo = 4498, + LehbpgkpkmhDoamellceao = 4447, } impl CmdTreasureDungeonType { /// String value of the enum field names used in the ProtoBuf definition. @@ -85277,81 +82993,45 @@ impl CmdTreasureDungeonType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTreasureDungeonTypeNone", - Self::CmdInteractTreasureDungeonGridCsReq => { - "CmdInteractTreasureDungeonGridCsReq" - } - Self::CmdUseTreasureDungeonItemScRsp => "CmdUseTreasureDungeonItemScRsp", - Self::CmdUseTreasureDungeonItemCsReq => "CmdUseTreasureDungeonItemCsReq", - Self::CmdEnterTreasureDungeonScRsp => "CmdEnterTreasureDungeonScRsp", - Self::CmdFightTreasureDungeonMonsterScRsp => { - "CmdFightTreasureDungeonMonsterScRsp" - } - Self::CmdQuitTreasureDungeonCsReq => "CmdQuitTreasureDungeonCsReq", - Self::CmdGetTreasureDungeonActivityDataCsReq => { - "CmdGetTreasureDungeonActivityDataCsReq" - } - Self::CmdQuitTreasureDungeonScRsp => "CmdQuitTreasureDungeonScRsp", - Self::CmdTreasureDungeonFinishScNotify => "CmdTreasureDungeonFinishScNotify", - Self::CmdGetTreasureDungeonActivityDataScRsp => { - "CmdGetTreasureDungeonActivityDataScRsp" - } - Self::CmdFightTreasureDungeonMonsterCsReq => { - "CmdFightTreasureDungeonMonsterCsReq" - } - Self::CmdInteractTreasureDungeonGridScRsp => { - "CmdInteractTreasureDungeonGridScRsp" - } - Self::CmdOpenTreasureDungeonGridCsReq => "CmdOpenTreasureDungeonGridCsReq", - Self::CmdEnterTreasureDungeonCsReq => "CmdEnterTreasureDungeonCsReq", - Self::CmdOpenTreasureDungeonGridScRsp => "CmdOpenTreasureDungeonGridScRsp", - Self::CmdTreasureDungeonDataScNotify => "CmdTreasureDungeonDataScNotify", + Self::LehbpgkpkmhAlocmfakbkp => "LEHBPGKPKMH_ALOCMFAKBKP", + Self::LehbpgkpkmhOaonmkfiihh => "LEHBPGKPKMH_OAONMKFIIHH", + Self::LehbpgkpkmhPgkflcggdgd => "LEHBPGKPKMH_PGKFLCGGDGD", + Self::LehbpgkpkmhEkhhfhjahgj => "LEHBPGKPKMH_EKHHFHJAHGJ", + Self::LehbpgkpkmhKcpmcddgpcl => "LEHBPGKPKMH_KCPMCDDGPCL", + Self::LehbpgkpkmhIgoihakicgf => "LEHBPGKPKMH_IGOIHAKICGF", + Self::LehbpgkpkmhGheallnmbhg => "LEHBPGKPKMH_GHEALLNMBHG", + Self::LehbpgkpkmhEgpdiccjnnn => "LEHBPGKPKMH_EGPDICCJNNN", + Self::LehbpgkpkmhGliohbpeedk => "LEHBPGKPKMH_GLIOHBPEEDK", + Self::LehbpgkpkmhPjbakcagccn => "LEHBPGKPKMH_PJBAKCAGCCN", + Self::LehbpgkpkmhGmmpchjcaih => "LEHBPGKPKMH_GMMPCHJCAIH", + Self::LehbpgkpkmhGhpleebncai => "LEHBPGKPKMH_GHPLEEBNCAI", + Self::LehbpgkpkmhMbnjpahbknp => "LEHBPGKPKMH_MBNJPAHBKNP", + Self::LehbpgkpkmhInobjngbgeo => "LEHBPGKPKMH_INOBJNGBGEO", + Self::LehbpgkpkmhDmblnjdjenc => "LEHBPGKPKMH_DMBLNJDJENC", + Self::LehbpgkpkmhFpcccaagajo => "LEHBPGKPKMH_FPCCCAAGAJO", + Self::LehbpgkpkmhDoamellceao => "LEHBPGKPKMH_DOAMELLCEAO", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTreasureDungeonTypeNone" => Some(Self::None), - "CmdInteractTreasureDungeonGridCsReq" => { - Some(Self::CmdInteractTreasureDungeonGridCsReq) - } - "CmdUseTreasureDungeonItemScRsp" => { - Some(Self::CmdUseTreasureDungeonItemScRsp) - } - "CmdUseTreasureDungeonItemCsReq" => { - Some(Self::CmdUseTreasureDungeonItemCsReq) - } - "CmdEnterTreasureDungeonScRsp" => Some(Self::CmdEnterTreasureDungeonScRsp), - "CmdFightTreasureDungeonMonsterScRsp" => { - Some(Self::CmdFightTreasureDungeonMonsterScRsp) - } - "CmdQuitTreasureDungeonCsReq" => Some(Self::CmdQuitTreasureDungeonCsReq), - "CmdGetTreasureDungeonActivityDataCsReq" => { - Some(Self::CmdGetTreasureDungeonActivityDataCsReq) - } - "CmdQuitTreasureDungeonScRsp" => Some(Self::CmdQuitTreasureDungeonScRsp), - "CmdTreasureDungeonFinishScNotify" => { - Some(Self::CmdTreasureDungeonFinishScNotify) - } - "CmdGetTreasureDungeonActivityDataScRsp" => { - Some(Self::CmdGetTreasureDungeonActivityDataScRsp) - } - "CmdFightTreasureDungeonMonsterCsReq" => { - Some(Self::CmdFightTreasureDungeonMonsterCsReq) - } - "CmdInteractTreasureDungeonGridScRsp" => { - Some(Self::CmdInteractTreasureDungeonGridScRsp) - } - "CmdOpenTreasureDungeonGridCsReq" => { - Some(Self::CmdOpenTreasureDungeonGridCsReq) - } - "CmdEnterTreasureDungeonCsReq" => Some(Self::CmdEnterTreasureDungeonCsReq), - "CmdOpenTreasureDungeonGridScRsp" => { - Some(Self::CmdOpenTreasureDungeonGridScRsp) - } - "CmdTreasureDungeonDataScNotify" => { - Some(Self::CmdTreasureDungeonDataScNotify) - } + "LEHBPGKPKMH_ALOCMFAKBKP" => Some(Self::LehbpgkpkmhAlocmfakbkp), + "LEHBPGKPKMH_OAONMKFIIHH" => Some(Self::LehbpgkpkmhOaonmkfiihh), + "LEHBPGKPKMH_PGKFLCGGDGD" => Some(Self::LehbpgkpkmhPgkflcggdgd), + "LEHBPGKPKMH_EKHHFHJAHGJ" => Some(Self::LehbpgkpkmhEkhhfhjahgj), + "LEHBPGKPKMH_KCPMCDDGPCL" => Some(Self::LehbpgkpkmhKcpmcddgpcl), + "LEHBPGKPKMH_IGOIHAKICGF" => Some(Self::LehbpgkpkmhIgoihakicgf), + "LEHBPGKPKMH_GHEALLNMBHG" => Some(Self::LehbpgkpkmhGheallnmbhg), + "LEHBPGKPKMH_EGPDICCJNNN" => Some(Self::LehbpgkpkmhEgpdiccjnnn), + "LEHBPGKPKMH_GLIOHBPEEDK" => Some(Self::LehbpgkpkmhGliohbpeedk), + "LEHBPGKPKMH_PJBAKCAGCCN" => Some(Self::LehbpgkpkmhPjbakcagccn), + "LEHBPGKPKMH_GMMPCHJCAIH" => Some(Self::LehbpgkpkmhGmmpchjcaih), + "LEHBPGKPKMH_GHPLEEBNCAI" => Some(Self::LehbpgkpkmhGhpleebncai), + "LEHBPGKPKMH_MBNJPAHBKNP" => Some(Self::LehbpgkpkmhMbnjpahbknp), + "LEHBPGKPKMH_INOBJNGBGEO" => Some(Self::LehbpgkpkmhInobjngbgeo), + "LEHBPGKPKMH_DMBLNJDJENC" => Some(Self::LehbpgkpkmhDmblnjdjenc), + "LEHBPGKPKMH_FPCCCAAGAJO" => Some(Self::LehbpgkpkmhFpcccaagajo), + "LEHBPGKPKMH_DOAMELLCEAO" => Some(Self::LehbpgkpkmhDoamellceao), _ => None, } } @@ -85359,192 +83039,104 @@ impl CmdTreasureDungeonType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Imknbjcoiop { - TreasureDungeonRecordNone = 0, - TreasureDungeonRecordAddHp = 1, - TreasureDungeonRecordSubHp = 2, - TreasureDungeonRecordSubHpNoExplore = 3, - TreasureDungeonRecordAddAttack = 5, - TreasureDungeonRecordAddDefence = 6, - TreasureDungeonRecordAddExplore = 9, - TreasureDungeonRecordSubExplore = 10, - TreasureDungeonRecordAddExploreOverflow = 11, - TreasureDungeonRecordSummon = 15, - TreasureDungeonRecordKill = 16, - TreasureDungeonRecordAddTrialAvatar = 20, - TreasureDungeonRecordAddBuff = 24, - TreasureDungeonRecordUnlockDoor = 25, - TreasureDungeonRecordEnemyEnhance = 27, - TreasureDungeonRecordEnemyWeaken = 28, - TreasureDungeonRecordEnemyAuraRemove = 29, - TreasureDungeonRecordSpecialMonsterRun = 30, - TreasureDungeonRecordSpecialMonsterKill = 31, - TreasureDungeonRecordBattleBuffTriggerSuccess = 33, - TreasureDungeonRecordBattleBuffTriggerFail = 34, - TreasureDungeonRecordBattleBuffAddExplore = 35, - TreasureDungeonRecordBattleBuffOpenGrid = 36, - TreasureDungeonRecordBattleBuffAddItem = 37, - TreasureDungeonRecordAvatarDead = 40, - TreasureDungeonRecordTrialAvatarDead = 41, - TreasureDungeonRecordAllAvatarDead = 42, - TreasureDungeonRecordOpenItemChest = 43, +pub enum Nllakaobhdf { + Naebaemaghc = 0, + Enialdoanjn = 1, + Ofgopncgcbd = 2, + Lfhadodnmcc = 3, + Geajhbcnjma = 5, + Pfeapiidgfp = 6, + Gipjddgffda = 9, + Ljmfcmfkjdk = 10, + Gelfbehgfhe = 11, + Bjicncmaebl = 15, + Gfdfpkkpfgh = 16, + Efhhcmlecgp = 20, + Gfkljpddhed = 24, + Heobmamlfhd = 25, + Nhgjafljape = 27, + Glfjknadfka = 28, + Oecbkhoaieo = 29, + Plfaogoijim = 30, + Hkcolglnkbk = 31, + Daeiamdkjmo = 33, + Ejhmlecokgf = 34, + Fagmpjgpmgf = 35, + Hompmepafed = 36, + Pfgnbfjdego = 37, + Aoppbdjigjk = 40, + Elgdckeoodj = 41, + Docopkiiged = 42, + Macognpomjb = 43, } -impl Imknbjcoiop { +impl Nllakaobhdf { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TreasureDungeonRecordNone => "TREASURE_DUNGEON_RECORD_NONE", - Self::TreasureDungeonRecordAddHp => "TREASURE_DUNGEON_RECORD_ADD_HP", - Self::TreasureDungeonRecordSubHp => "TREASURE_DUNGEON_RECORD_SUB_HP", - Self::TreasureDungeonRecordSubHpNoExplore => { - "TREASURE_DUNGEON_RECORD_SUB_HP_NO_EXPLORE" - } - Self::TreasureDungeonRecordAddAttack => "TREASURE_DUNGEON_RECORD_ADD_ATTACK", - Self::TreasureDungeonRecordAddDefence => { - "TREASURE_DUNGEON_RECORD_ADD_DEFENCE" - } - Self::TreasureDungeonRecordAddExplore => { - "TREASURE_DUNGEON_RECORD_ADD_EXPLORE" - } - Self::TreasureDungeonRecordSubExplore => { - "TREASURE_DUNGEON_RECORD_SUB_EXPLORE" - } - Self::TreasureDungeonRecordAddExploreOverflow => { - "TREASURE_DUNGEON_RECORD_ADD_EXPLORE_OVERFLOW" - } - Self::TreasureDungeonRecordSummon => "TREASURE_DUNGEON_RECORD_SUMMON", - Self::TreasureDungeonRecordKill => "TREASURE_DUNGEON_RECORD_KILL", - Self::TreasureDungeonRecordAddTrialAvatar => { - "TREASURE_DUNGEON_RECORD_ADD_TRIAL_AVATAR" - } - Self::TreasureDungeonRecordAddBuff => "TREASURE_DUNGEON_RECORD_ADD_BUFF", - Self::TreasureDungeonRecordUnlockDoor => { - "TREASURE_DUNGEON_RECORD_UNLOCK_DOOR" - } - Self::TreasureDungeonRecordEnemyEnhance => { - "TREASURE_DUNGEON_RECORD_ENEMY_ENHANCE" - } - Self::TreasureDungeonRecordEnemyWeaken => { - "TREASURE_DUNGEON_RECORD_ENEMY_WEAKEN" - } - Self::TreasureDungeonRecordEnemyAuraRemove => { - "TREASURE_DUNGEON_RECORD_ENEMY_AURA_REMOVE" - } - Self::TreasureDungeonRecordSpecialMonsterRun => { - "TREASURE_DUNGEON_RECORD_SPECIAL_MONSTER_RUN" - } - Self::TreasureDungeonRecordSpecialMonsterKill => { - "TREASURE_DUNGEON_RECORD_SPECIAL_MONSTER_KILL" - } - Self::TreasureDungeonRecordBattleBuffTriggerSuccess => { - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_TRIGGER_SUCCESS" - } - Self::TreasureDungeonRecordBattleBuffTriggerFail => { - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_TRIGGER_FAIL" - } - Self::TreasureDungeonRecordBattleBuffAddExplore => { - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_ADD_EXPLORE" - } - Self::TreasureDungeonRecordBattleBuffOpenGrid => { - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_OPEN_GRID" - } - Self::TreasureDungeonRecordBattleBuffAddItem => { - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_ADD_ITEM" - } - Self::TreasureDungeonRecordAvatarDead => { - "TREASURE_DUNGEON_RECORD_AVATAR_DEAD" - } - Self::TreasureDungeonRecordTrialAvatarDead => { - "TREASURE_DUNGEON_RECORD_TRIAL_AVATAR_DEAD" - } - Self::TreasureDungeonRecordAllAvatarDead => { - "TREASURE_DUNGEON_RECORD_ALL_AVATAR_DEAD" - } - Self::TreasureDungeonRecordOpenItemChest => { - "TREASURE_DUNGEON_RECORD_OPEN_ITEM_CHEST" - } + Self::Naebaemaghc => "NLLAKAOBHDF_NAEBAEMAGHC", + Self::Enialdoanjn => "NLLAKAOBHDF_ENIALDOANJN", + Self::Ofgopncgcbd => "NLLAKAOBHDF_OFGOPNCGCBD", + Self::Lfhadodnmcc => "NLLAKAOBHDF_LFHADODNMCC", + Self::Geajhbcnjma => "NLLAKAOBHDF_GEAJHBCNJMA", + Self::Pfeapiidgfp => "NLLAKAOBHDF_PFEAPIIDGFP", + Self::Gipjddgffda => "NLLAKAOBHDF_GIPJDDGFFDA", + Self::Ljmfcmfkjdk => "NLLAKAOBHDF_LJMFCMFKJDK", + Self::Gelfbehgfhe => "NLLAKAOBHDF_GELFBEHGFHE", + Self::Bjicncmaebl => "NLLAKAOBHDF_BJICNCMAEBL", + Self::Gfdfpkkpfgh => "NLLAKAOBHDF_GFDFPKKPFGH", + Self::Efhhcmlecgp => "NLLAKAOBHDF_EFHHCMLECGP", + Self::Gfkljpddhed => "NLLAKAOBHDF_GFKLJPDDHED", + Self::Heobmamlfhd => "NLLAKAOBHDF_HEOBMAMLFHD", + Self::Nhgjafljape => "NLLAKAOBHDF_NHGJAFLJAPE", + Self::Glfjknadfka => "NLLAKAOBHDF_GLFJKNADFKA", + Self::Oecbkhoaieo => "NLLAKAOBHDF_OECBKHOAIEO", + Self::Plfaogoijim => "NLLAKAOBHDF_PLFAOGOIJIM", + Self::Hkcolglnkbk => "NLLAKAOBHDF_HKCOLGLNKBK", + Self::Daeiamdkjmo => "NLLAKAOBHDF_DAEIAMDKJMO", + Self::Ejhmlecokgf => "NLLAKAOBHDF_EJHMLECOKGF", + Self::Fagmpjgpmgf => "NLLAKAOBHDF_FAGMPJGPMGF", + Self::Hompmepafed => "NLLAKAOBHDF_HOMPMEPAFED", + Self::Pfgnbfjdego => "NLLAKAOBHDF_PFGNBFJDEGO", + Self::Aoppbdjigjk => "NLLAKAOBHDF_AOPPBDJIGJK", + Self::Elgdckeoodj => "NLLAKAOBHDF_ELGDCKEOODJ", + Self::Docopkiiged => "NLLAKAOBHDF_DOCOPKIIGED", + Self::Macognpomjb => "NLLAKAOBHDF_MACOGNPOMJB", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TREASURE_DUNGEON_RECORD_NONE" => Some(Self::TreasureDungeonRecordNone), - "TREASURE_DUNGEON_RECORD_ADD_HP" => Some(Self::TreasureDungeonRecordAddHp), - "TREASURE_DUNGEON_RECORD_SUB_HP" => Some(Self::TreasureDungeonRecordSubHp), - "TREASURE_DUNGEON_RECORD_SUB_HP_NO_EXPLORE" => { - Some(Self::TreasureDungeonRecordSubHpNoExplore) - } - "TREASURE_DUNGEON_RECORD_ADD_ATTACK" => { - Some(Self::TreasureDungeonRecordAddAttack) - } - "TREASURE_DUNGEON_RECORD_ADD_DEFENCE" => { - Some(Self::TreasureDungeonRecordAddDefence) - } - "TREASURE_DUNGEON_RECORD_ADD_EXPLORE" => { - Some(Self::TreasureDungeonRecordAddExplore) - } - "TREASURE_DUNGEON_RECORD_SUB_EXPLORE" => { - Some(Self::TreasureDungeonRecordSubExplore) - } - "TREASURE_DUNGEON_RECORD_ADD_EXPLORE_OVERFLOW" => { - Some(Self::TreasureDungeonRecordAddExploreOverflow) - } - "TREASURE_DUNGEON_RECORD_SUMMON" => Some(Self::TreasureDungeonRecordSummon), - "TREASURE_DUNGEON_RECORD_KILL" => Some(Self::TreasureDungeonRecordKill), - "TREASURE_DUNGEON_RECORD_ADD_TRIAL_AVATAR" => { - Some(Self::TreasureDungeonRecordAddTrialAvatar) - } - "TREASURE_DUNGEON_RECORD_ADD_BUFF" => { - Some(Self::TreasureDungeonRecordAddBuff) - } - "TREASURE_DUNGEON_RECORD_UNLOCK_DOOR" => { - Some(Self::TreasureDungeonRecordUnlockDoor) - } - "TREASURE_DUNGEON_RECORD_ENEMY_ENHANCE" => { - Some(Self::TreasureDungeonRecordEnemyEnhance) - } - "TREASURE_DUNGEON_RECORD_ENEMY_WEAKEN" => { - Some(Self::TreasureDungeonRecordEnemyWeaken) - } - "TREASURE_DUNGEON_RECORD_ENEMY_AURA_REMOVE" => { - Some(Self::TreasureDungeonRecordEnemyAuraRemove) - } - "TREASURE_DUNGEON_RECORD_SPECIAL_MONSTER_RUN" => { - Some(Self::TreasureDungeonRecordSpecialMonsterRun) - } - "TREASURE_DUNGEON_RECORD_SPECIAL_MONSTER_KILL" => { - Some(Self::TreasureDungeonRecordSpecialMonsterKill) - } - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_TRIGGER_SUCCESS" => { - Some(Self::TreasureDungeonRecordBattleBuffTriggerSuccess) - } - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_TRIGGER_FAIL" => { - Some(Self::TreasureDungeonRecordBattleBuffTriggerFail) - } - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_ADD_EXPLORE" => { - Some(Self::TreasureDungeonRecordBattleBuffAddExplore) - } - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_OPEN_GRID" => { - Some(Self::TreasureDungeonRecordBattleBuffOpenGrid) - } - "TREASURE_DUNGEON_RECORD_BATTLE_BUFF_ADD_ITEM" => { - Some(Self::TreasureDungeonRecordBattleBuffAddItem) - } - "TREASURE_DUNGEON_RECORD_AVATAR_DEAD" => { - Some(Self::TreasureDungeonRecordAvatarDead) - } - "TREASURE_DUNGEON_RECORD_TRIAL_AVATAR_DEAD" => { - Some(Self::TreasureDungeonRecordTrialAvatarDead) - } - "TREASURE_DUNGEON_RECORD_ALL_AVATAR_DEAD" => { - Some(Self::TreasureDungeonRecordAllAvatarDead) - } - "TREASURE_DUNGEON_RECORD_OPEN_ITEM_CHEST" => { - Some(Self::TreasureDungeonRecordOpenItemChest) - } + "NLLAKAOBHDF_NAEBAEMAGHC" => Some(Self::Naebaemaghc), + "NLLAKAOBHDF_ENIALDOANJN" => Some(Self::Enialdoanjn), + "NLLAKAOBHDF_OFGOPNCGCBD" => Some(Self::Ofgopncgcbd), + "NLLAKAOBHDF_LFHADODNMCC" => Some(Self::Lfhadodnmcc), + "NLLAKAOBHDF_GEAJHBCNJMA" => Some(Self::Geajhbcnjma), + "NLLAKAOBHDF_PFEAPIIDGFP" => Some(Self::Pfeapiidgfp), + "NLLAKAOBHDF_GIPJDDGFFDA" => Some(Self::Gipjddgffda), + "NLLAKAOBHDF_LJMFCMFKJDK" => Some(Self::Ljmfcmfkjdk), + "NLLAKAOBHDF_GELFBEHGFHE" => Some(Self::Gelfbehgfhe), + "NLLAKAOBHDF_BJICNCMAEBL" => Some(Self::Bjicncmaebl), + "NLLAKAOBHDF_GFDFPKKPFGH" => Some(Self::Gfdfpkkpfgh), + "NLLAKAOBHDF_EFHHCMLECGP" => Some(Self::Efhhcmlecgp), + "NLLAKAOBHDF_GFKLJPDDHED" => Some(Self::Gfkljpddhed), + "NLLAKAOBHDF_HEOBMAMLFHD" => Some(Self::Heobmamlfhd), + "NLLAKAOBHDF_NHGJAFLJAPE" => Some(Self::Nhgjafljape), + "NLLAKAOBHDF_GLFJKNADFKA" => Some(Self::Glfjknadfka), + "NLLAKAOBHDF_OECBKHOAIEO" => Some(Self::Oecbkhoaieo), + "NLLAKAOBHDF_PLFAOGOIJIM" => Some(Self::Plfaogoijim), + "NLLAKAOBHDF_HKCOLGLNKBK" => Some(Self::Hkcolglnkbk), + "NLLAKAOBHDF_DAEIAMDKJMO" => Some(Self::Daeiamdkjmo), + "NLLAKAOBHDF_EJHMLECOKGF" => Some(Self::Ejhmlecokgf), + "NLLAKAOBHDF_FAGMPJGPMGF" => Some(Self::Fagmpjgpmgf), + "NLLAKAOBHDF_HOMPMEPAFED" => Some(Self::Hompmepafed), + "NLLAKAOBHDF_PFGNBFJDEGO" => Some(Self::Pfgnbfjdego), + "NLLAKAOBHDF_AOPPBDJIGJK" => Some(Self::Aoppbdjigjk), + "NLLAKAOBHDF_ELGDCKEOODJ" => Some(Self::Elgdckeoodj), + "NLLAKAOBHDF_DOCOPKIIGED" => Some(Self::Docopkiiged), + "NLLAKAOBHDF_MACOGNPOMJB" => Some(Self::Macognpomjb), _ => None, } } @@ -85553,19 +83145,19 @@ impl Imknbjcoiop { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdTutorialType { - None = 0, - CmdGetTutorialGuideScRsp = 1665, - CmdUnlockTutorialGuideCsReq = 1694, - CmdGetTutorialGuideCsReq = 1698, - CmdFinishTutorialGuideScRsp = 1669, - CmdUnlockTutorialGuideScRsp = 1652, - CmdGetTutorialCsReq = 1699, - CmdFinishTutorialCsReq = 1619, - CmdUnlockTutorialCsReq = 1683, - CmdFinishTutorialScRsp = 1644, - CmdGetTutorialScRsp = 1623, - CmdUnlockTutorialScRsp = 1686, - CmdFinishTutorialGuideCsReq = 1681, + KhpabifhecnAlocmfakbkp = 0, + CmdGetTutorialGuideCsReq = 1638, + CmdFinishTutorialScRsp = 1691, + CmdFinishTutorialGuideScRsp = 1645, + CmdFinishTutorialGuideCsReq = 1661, + CmdUnlockTutorialScRsp = 1611, + CmdGetTutorialScRsp = 1609, + CmdUnlockTutorialGuideCsReq = 1689, + CmdGetTutorialCsReq = 1647, + CmdFinishTutorialCsReq = 1695, + CmdUnlockTutorialGuideScRsp = 1620, + CmdGetTutorialGuideScRsp = 1617, + CmdUnlockTutorialCsReq = 1651, } impl CmdTutorialType { /// String value of the enum field names used in the ProtoBuf definition. @@ -85574,37 +83166,37 @@ impl CmdTutorialType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdTutorialTypeNone", - Self::CmdGetTutorialGuideScRsp => "CmdGetTutorialGuideScRsp", - Self::CmdUnlockTutorialGuideCsReq => "CmdUnlockTutorialGuideCsReq", + Self::KhpabifhecnAlocmfakbkp => "KHPABIFHECN_ALOCMFAKBKP", Self::CmdGetTutorialGuideCsReq => "CmdGetTutorialGuideCsReq", + Self::CmdFinishTutorialScRsp => "CmdFinishTutorialScRsp", Self::CmdFinishTutorialGuideScRsp => "CmdFinishTutorialGuideScRsp", - Self::CmdUnlockTutorialGuideScRsp => "CmdUnlockTutorialGuideScRsp", + Self::CmdFinishTutorialGuideCsReq => "CmdFinishTutorialGuideCsReq", + Self::CmdUnlockTutorialScRsp => "CmdUnlockTutorialScRsp", + Self::CmdGetTutorialScRsp => "CmdGetTutorialScRsp", + Self::CmdUnlockTutorialGuideCsReq => "CmdUnlockTutorialGuideCsReq", Self::CmdGetTutorialCsReq => "CmdGetTutorialCsReq", Self::CmdFinishTutorialCsReq => "CmdFinishTutorialCsReq", + Self::CmdUnlockTutorialGuideScRsp => "CmdUnlockTutorialGuideScRsp", + Self::CmdGetTutorialGuideScRsp => "CmdGetTutorialGuideScRsp", Self::CmdUnlockTutorialCsReq => "CmdUnlockTutorialCsReq", - Self::CmdFinishTutorialScRsp => "CmdFinishTutorialScRsp", - Self::CmdGetTutorialScRsp => "CmdGetTutorialScRsp", - Self::CmdUnlockTutorialScRsp => "CmdUnlockTutorialScRsp", - Self::CmdFinishTutorialGuideCsReq => "CmdFinishTutorialGuideCsReq", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdTutorialTypeNone" => Some(Self::None), - "CmdGetTutorialGuideScRsp" => Some(Self::CmdGetTutorialGuideScRsp), - "CmdUnlockTutorialGuideCsReq" => Some(Self::CmdUnlockTutorialGuideCsReq), + "KHPABIFHECN_ALOCMFAKBKP" => Some(Self::KhpabifhecnAlocmfakbkp), "CmdGetTutorialGuideCsReq" => Some(Self::CmdGetTutorialGuideCsReq), + "CmdFinishTutorialScRsp" => Some(Self::CmdFinishTutorialScRsp), "CmdFinishTutorialGuideScRsp" => Some(Self::CmdFinishTutorialGuideScRsp), - "CmdUnlockTutorialGuideScRsp" => Some(Self::CmdUnlockTutorialGuideScRsp), + "CmdFinishTutorialGuideCsReq" => Some(Self::CmdFinishTutorialGuideCsReq), + "CmdUnlockTutorialScRsp" => Some(Self::CmdUnlockTutorialScRsp), + "CmdGetTutorialScRsp" => Some(Self::CmdGetTutorialScRsp), + "CmdUnlockTutorialGuideCsReq" => Some(Self::CmdUnlockTutorialGuideCsReq), "CmdGetTutorialCsReq" => Some(Self::CmdGetTutorialCsReq), "CmdFinishTutorialCsReq" => Some(Self::CmdFinishTutorialCsReq), + "CmdUnlockTutorialGuideScRsp" => Some(Self::CmdUnlockTutorialGuideScRsp), + "CmdGetTutorialGuideScRsp" => Some(Self::CmdGetTutorialGuideScRsp), "CmdUnlockTutorialCsReq" => Some(Self::CmdUnlockTutorialCsReq), - "CmdFinishTutorialScRsp" => Some(Self::CmdFinishTutorialScRsp), - "CmdGetTutorialScRsp" => Some(Self::CmdGetTutorialScRsp), - "CmdUnlockTutorialScRsp" => Some(Self::CmdUnlockTutorialScRsp), - "CmdFinishTutorialGuideCsReq" => Some(Self::CmdFinishTutorialGuideCsReq), _ => None, } } @@ -85613,9 +83205,9 @@ impl CmdTutorialType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TutorialStatus { - TutorialNone = 0, - TutorialUnlock = 1, - TutorialFinish = 2, + AgiialecjebBeenppbjehk = 0, + AgiialecjebNdanpdifofe = 1, + AgiialecjebAkgnpignkmk = 2, } impl TutorialStatus { /// String value of the enum field names used in the ProtoBuf definition. @@ -85624,17 +83216,17 @@ impl TutorialStatus { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TutorialNone => "TUTORIAL_NONE", - Self::TutorialUnlock => "TUTORIAL_UNLOCK", - Self::TutorialFinish => "TUTORIAL_FINISH", + Self::AgiialecjebBeenppbjehk => "AGIIALECJEB_BEENPPBJEHK", + Self::AgiialecjebNdanpdifofe => "AGIIALECJEB_NDANPDIFOFE", + Self::AgiialecjebAkgnpignkmk => "AGIIALECJEB_AKGNPIGNKMK", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TUTORIAL_NONE" => Some(Self::TutorialNone), - "TUTORIAL_UNLOCK" => Some(Self::TutorialUnlock), - "TUTORIAL_FINISH" => Some(Self::TutorialFinish), + "AGIIALECJEB_BEENPPBJEHK" => Some(Self::AgiialecjebBeenppbjehk), + "AGIIALECJEB_NDANPDIFOFE" => Some(Self::AgiialecjebNdanpdifofe), + "AGIIALECJEB_AKGNPIGNKMK" => Some(Self::AgiialecjebAkgnpignkmk), _ => None, } } @@ -85642,29 +83234,29 @@ impl TutorialStatus { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mpjppghfheh { - TutorialFinishTypeNone = 0, - TutorialFinishTypeManual = 1, - TutorialFinishTypeAutomatic = 2, +pub enum Kniklalgadk { + Alocmfakbkp = 0, + Hokpfjcdicb = 1, + Ppnlcidjkaj = 2, } -impl Mpjppghfheh { +impl Kniklalgadk { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::TutorialFinishTypeNone => "TUTORIAL_FINISH_TYPE_NONE", - Self::TutorialFinishTypeManual => "TUTORIAL_FINISH_TYPE_MANUAL", - Self::TutorialFinishTypeAutomatic => "TUTORIAL_FINISH_TYPE_AUTOMATIC", + Self::Alocmfakbkp => "KNIKLALGADK_ALOCMFAKBKP", + Self::Hokpfjcdicb => "KNIKLALGADK_HOKPFJCDICB", + Self::Ppnlcidjkaj => "KNIKLALGADK_PPNLCIDJKAJ", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "TUTORIAL_FINISH_TYPE_NONE" => Some(Self::TutorialFinishTypeNone), - "TUTORIAL_FINISH_TYPE_MANUAL" => Some(Self::TutorialFinishTypeManual), - "TUTORIAL_FINISH_TYPE_AUTOMATIC" => Some(Self::TutorialFinishTypeAutomatic), + "KNIKLALGADK_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "KNIKLALGADK_HOKPFJCDICB" => Some(Self::Hokpfjcdicb), + "KNIKLALGADK_PPNLCIDJKAJ" => Some(Self::Ppnlcidjkaj), _ => None, } } @@ -85673,16 +83265,16 @@ impl Mpjppghfheh { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdWaypointType { - None = 0, - CmdGetChapterScRsp = 486, - CmdGetWaypointCsReq = 499, - CmdGetChapterCsReq = 483, - CmdWaypointShowNewCsNotify = 494, - CmdTakeChapterRewardScRsp = 419, - CmdSetCurWaypointScRsp = 465, - CmdTakeChapterRewardCsReq = 452, - CmdGetWaypointScRsp = 423, - CmdSetCurWaypointCsReq = 498, + BkmkcnajihoAlocmfakbkp = 0, + CmdNfomijjigfa = 495, + CmdBnjckfmedcc = 489, + CmdGetWaypointScRsp = 409, + CmdSetCurWaypointScRsp = 417, + BkmkcnajihoPknnapcijgh = 451, + BkmkcnajihoGcphpkmfmna = 420, + CmdGetChapterScRsp = 411, + BkmkcnajihoNjnbmfgommc = 447, + BkmkcnajihoAhjencfecgd = 438, } impl CmdWaypointType { /// String value of the enum field names used in the ProtoBuf definition. @@ -85691,31 +83283,31 @@ impl CmdWaypointType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdWaypointTypeNone", - Self::CmdGetChapterScRsp => "CmdGetChapterScRsp", - Self::CmdGetWaypointCsReq => "CmdGetWaypointCsReq", - Self::CmdGetChapterCsReq => "CmdGetChapterCsReq", - Self::CmdWaypointShowNewCsNotify => "CmdWaypointShowNewCsNotify", - Self::CmdTakeChapterRewardScRsp => "CmdTakeChapterRewardScRsp", - Self::CmdSetCurWaypointScRsp => "CmdSetCurWaypointScRsp", - Self::CmdTakeChapterRewardCsReq => "CmdTakeChapterRewardCsReq", + Self::BkmkcnajihoAlocmfakbkp => "BKMKCNAJIHO_ALOCMFAKBKP", + Self::CmdNfomijjigfa => "CmdNFOMIJJIGFA", + Self::CmdBnjckfmedcc => "CmdBNJCKFMEDCC", Self::CmdGetWaypointScRsp => "CmdGetWaypointScRsp", - Self::CmdSetCurWaypointCsReq => "CmdSetCurWaypointCsReq", + Self::CmdSetCurWaypointScRsp => "CmdSetCurWaypointScRsp", + Self::BkmkcnajihoPknnapcijgh => "BKMKCNAJIHO_PKNNAPCIJGH", + Self::BkmkcnajihoGcphpkmfmna => "BKMKCNAJIHO_GCPHPKMFMNA", + Self::CmdGetChapterScRsp => "CmdGetChapterScRsp", + Self::BkmkcnajihoNjnbmfgommc => "BKMKCNAJIHO_NJNBMFGOMMC", + Self::BkmkcnajihoAhjencfecgd => "BKMKCNAJIHO_AHJENCFECGD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdWaypointTypeNone" => Some(Self::None), - "CmdGetChapterScRsp" => Some(Self::CmdGetChapterScRsp), - "CmdGetWaypointCsReq" => Some(Self::CmdGetWaypointCsReq), - "CmdGetChapterCsReq" => Some(Self::CmdGetChapterCsReq), - "CmdWaypointShowNewCsNotify" => Some(Self::CmdWaypointShowNewCsNotify), - "CmdTakeChapterRewardScRsp" => Some(Self::CmdTakeChapterRewardScRsp), - "CmdSetCurWaypointScRsp" => Some(Self::CmdSetCurWaypointScRsp), - "CmdTakeChapterRewardCsReq" => Some(Self::CmdTakeChapterRewardCsReq), + "BKMKCNAJIHO_ALOCMFAKBKP" => Some(Self::BkmkcnajihoAlocmfakbkp), + "CmdNFOMIJJIGFA" => Some(Self::CmdNfomijjigfa), + "CmdBNJCKFMEDCC" => Some(Self::CmdBnjckfmedcc), "CmdGetWaypointScRsp" => Some(Self::CmdGetWaypointScRsp), - "CmdSetCurWaypointCsReq" => Some(Self::CmdSetCurWaypointCsReq), + "CmdSetCurWaypointScRsp" => Some(Self::CmdSetCurWaypointScRsp), + "BKMKCNAJIHO_PKNNAPCIJGH" => Some(Self::BkmkcnajihoPknnapcijgh), + "BKMKCNAJIHO_GCPHPKMFMNA" => Some(Self::BkmkcnajihoGcphpkmfmna), + "CmdGetChapterScRsp" => Some(Self::CmdGetChapterScRsp), + "BKMKCNAJIHO_NJNBMFGOMMC" => Some(Self::BkmkcnajihoNjnbmfgommc), + "BKMKCNAJIHO_AHJENCFECGD" => Some(Self::BkmkcnajihoAhjencfecgd), _ => None, } } @@ -85723,29 +83315,29 @@ impl CmdWaypointType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Mhhljfejgnm { - WaypointTypeNone = 0, - WaypointTypeStage = 1, - WaypointTypePlot = 2, +pub enum Lldbfnmlhei { + Alocmfakbkp = 0, + Fiakannmfmc = 1, + Cjafbcomdkd = 2, } -impl Mhhljfejgnm { +impl Lldbfnmlhei { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::WaypointTypeNone => "WAYPOINT_TYPE_NONE", - Self::WaypointTypeStage => "WAYPOINT_TYPE_STAGE", - Self::WaypointTypePlot => "WAYPOINT_TYPE_PLOT", + Self::Alocmfakbkp => "LLDBFNMLHEI_ALOCMFAKBKP", + Self::Fiakannmfmc => "LLDBFNMLHEI_FIAKANNMFMC", + Self::Cjafbcomdkd => "LLDBFNMLHEI_CJAFBCOMDKD", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "WAYPOINT_TYPE_NONE" => Some(Self::WaypointTypeNone), - "WAYPOINT_TYPE_STAGE" => Some(Self::WaypointTypeStage), - "WAYPOINT_TYPE_PLOT" => Some(Self::WaypointTypePlot), + "LLDBFNMLHEI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "LLDBFNMLHEI_FIAKANNMFMC" => Some(Self::Fiakannmfmc), + "LLDBFNMLHEI_CJAFBCOMDKD" => Some(Self::Cjafbcomdkd), _ => None, } } @@ -85753,29 +83345,29 @@ impl Mhhljfejgnm { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Obfaicfogmp { - WaypointUnlockNone = 0, - WaypointUnlockPre = 1, - WaypointUnlockLevel = 2, +pub enum Gfknmedcogj { + Cfpmomphmnn = 0, + Lplbmldnjim = 1, + Haepcnheghg = 2, } -impl Obfaicfogmp { +impl Gfknmedcogj { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::WaypointUnlockNone => "WAYPOINT_UNLOCK_NONE", - Self::WaypointUnlockPre => "WAYPOINT_UNLOCK_PRE", - Self::WaypointUnlockLevel => "WAYPOINT_UNLOCK_LEVEL", + Self::Cfpmomphmnn => "GFKNMEDCOGJ_CFPMOMPHMNN", + Self::Lplbmldnjim => "GFKNMEDCOGJ_LPLBMLDNJIM", + Self::Haepcnheghg => "GFKNMEDCOGJ_HAEPCNHEGHG", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "WAYPOINT_UNLOCK_NONE" => Some(Self::WaypointUnlockNone), - "WAYPOINT_UNLOCK_PRE" => Some(Self::WaypointUnlockPre), - "WAYPOINT_UNLOCK_LEVEL" => Some(Self::WaypointUnlockLevel), + "GFKNMEDCOGJ_CFPMOMPHMNN" => Some(Self::Cfpmomphmnn), + "GFKNMEDCOGJ_LPLBMLDNJIM" => Some(Self::Lplbmldnjim), + "GFKNMEDCOGJ_HAEPCNHEGHG" => Some(Self::Haepcnheghg), _ => None, } } @@ -85784,26 +83376,26 @@ impl Obfaicfogmp { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdWolfBroType { - None = 0, - CmdWolfBroGamePickupBulletCsReq = 6519, - CmdStartWolfBroGameCsReq = 6526, - CmdQuitWolfBroGameScRsp = 6544, - CmdWolfBroGamePickupBulletScRsp = 6547, - CmdWolfBroGameUseBulletCsReq = 6503, - CmdWolfBroGameActivateBulletScRsp = 6530, - CmdArchiveWolfBroGameCsReq = 6521, - CmdStartWolfBroGameScRsp = 6528, - CmdRestoreWolfBroGameArchiveCsReq = 6505, - CmdWolfBroGameUseBulletScRsp = 6523, - CmdGetWolfBroGameDataScRsp = 6545, - CmdRestoreWolfBroGameArchiveScRsp = 6527, - CmdGetWolfBroGameDataCsReq = 6501, - CmdArchiveWolfBroGameScRsp = 6538, - CmdWolfBroGameDataChangeScNotify = 6543, - CmdWolfBroGameActivateBulletCsReq = 6533, - CmdQuitWolfBroGameCsReq = 6520, - CmdWolfBroGameExplodeMonsterCsReq = 6511, - CmdWolfBroGameExplodeMonsterScRsp = 6529, + LngfbpfjejgAlocmfakbkp = 0, + LngfbpfjejgAlljmimfceo = 6509, + LngfbpfjejgOknmdjpifod = 6513, + LngfbpfjejgKhfnoghjonh = 6531, + LngfbpfjejgBgneojdncdo = 6517, + LngfbpfjejgJikppbilmmo = 6548, + LngfbpfjejgCabnhjbnanf = 6543, + LngfbpfjejgGnnbklaljgd = 6527, + LngfbpfjejgLbbmomdflif = 6512, + LngfbpfjejgPhiaheeahih = 6535, + LngfbpfjejgCinlpegheae = 6519, + LngfbpfjejgPgbfdheoclg = 6525, + LngfbpfjejgJpkfblkgcjg = 6533, + LngfbpfjejgFehkaipnooi = 6505, + LngfbpfjejgJbamaoldhjh = 6546, + LngfbpfjejgKidphamddlb = 6534, + LngfbpfjejgCdljbgkglde = 6510, + LngfbpfjejgHabeoeoklfk = 6520, + LngfbpfjejgOffdpodkiok = 6502, + LngfbpfjejgKkeinmeahii = 6507, } impl CmdWolfBroType { /// String value of the enum field names used in the ProtoBuf definition. @@ -85812,81 +83404,51 @@ impl CmdWolfBroType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdWolfBroTypeNone", - Self::CmdWolfBroGamePickupBulletCsReq => "CmdWolfBroGamePickupBulletCsReq", - Self::CmdStartWolfBroGameCsReq => "CmdStartWolfBroGameCsReq", - Self::CmdQuitWolfBroGameScRsp => "CmdQuitWolfBroGameScRsp", - Self::CmdWolfBroGamePickupBulletScRsp => "CmdWolfBroGamePickupBulletScRsp", - Self::CmdWolfBroGameUseBulletCsReq => "CmdWolfBroGameUseBulletCsReq", - Self::CmdWolfBroGameActivateBulletScRsp => { - "CmdWolfBroGameActivateBulletScRsp" - } - Self::CmdArchiveWolfBroGameCsReq => "CmdArchiveWolfBroGameCsReq", - Self::CmdStartWolfBroGameScRsp => "CmdStartWolfBroGameScRsp", - Self::CmdRestoreWolfBroGameArchiveCsReq => { - "CmdRestoreWolfBroGameArchiveCsReq" - } - Self::CmdWolfBroGameUseBulletScRsp => "CmdWolfBroGameUseBulletScRsp", - Self::CmdGetWolfBroGameDataScRsp => "CmdGetWolfBroGameDataScRsp", - Self::CmdRestoreWolfBroGameArchiveScRsp => { - "CmdRestoreWolfBroGameArchiveScRsp" - } - Self::CmdGetWolfBroGameDataCsReq => "CmdGetWolfBroGameDataCsReq", - Self::CmdArchiveWolfBroGameScRsp => "CmdArchiveWolfBroGameScRsp", - Self::CmdWolfBroGameDataChangeScNotify => "CmdWolfBroGameDataChangeScNotify", - Self::CmdWolfBroGameActivateBulletCsReq => { - "CmdWolfBroGameActivateBulletCsReq" - } - Self::CmdQuitWolfBroGameCsReq => "CmdQuitWolfBroGameCsReq", - Self::CmdWolfBroGameExplodeMonsterCsReq => { - "CmdWolfBroGameExplodeMonsterCsReq" - } - Self::CmdWolfBroGameExplodeMonsterScRsp => { - "CmdWolfBroGameExplodeMonsterScRsp" - } + Self::LngfbpfjejgAlocmfakbkp => "LNGFBPFJEJG_ALOCMFAKBKP", + Self::LngfbpfjejgAlljmimfceo => "LNGFBPFJEJG_ALLJMIMFCEO", + Self::LngfbpfjejgOknmdjpifod => "LNGFBPFJEJG_OKNMDJPIFOD", + Self::LngfbpfjejgKhfnoghjonh => "LNGFBPFJEJG_KHFNOGHJONH", + Self::LngfbpfjejgBgneojdncdo => "LNGFBPFJEJG_BGNEOJDNCDO", + Self::LngfbpfjejgJikppbilmmo => "LNGFBPFJEJG_JIKPPBILMMO", + Self::LngfbpfjejgCabnhjbnanf => "LNGFBPFJEJG_CABNHJBNANF", + Self::LngfbpfjejgGnnbklaljgd => "LNGFBPFJEJG_GNNBKLALJGD", + Self::LngfbpfjejgLbbmomdflif => "LNGFBPFJEJG_LBBMOMDFLIF", + Self::LngfbpfjejgPhiaheeahih => "LNGFBPFJEJG_PHIAHEEAHIH", + Self::LngfbpfjejgCinlpegheae => "LNGFBPFJEJG_CINLPEGHEAE", + Self::LngfbpfjejgPgbfdheoclg => "LNGFBPFJEJG_PGBFDHEOCLG", + Self::LngfbpfjejgJpkfblkgcjg => "LNGFBPFJEJG_JPKFBLKGCJG", + Self::LngfbpfjejgFehkaipnooi => "LNGFBPFJEJG_FEHKAIPNOOI", + Self::LngfbpfjejgJbamaoldhjh => "LNGFBPFJEJG_JBAMAOLDHJH", + Self::LngfbpfjejgKidphamddlb => "LNGFBPFJEJG_KIDPHAMDDLB", + Self::LngfbpfjejgCdljbgkglde => "LNGFBPFJEJG_CDLJBGKGLDE", + Self::LngfbpfjejgHabeoeoklfk => "LNGFBPFJEJG_HABEOEOKLFK", + Self::LngfbpfjejgOffdpodkiok => "LNGFBPFJEJG_OFFDPODKIOK", + Self::LngfbpfjejgKkeinmeahii => "LNGFBPFJEJG_KKEINMEAHII", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdWolfBroTypeNone" => Some(Self::None), - "CmdWolfBroGamePickupBulletCsReq" => { - Some(Self::CmdWolfBroGamePickupBulletCsReq) - } - "CmdStartWolfBroGameCsReq" => Some(Self::CmdStartWolfBroGameCsReq), - "CmdQuitWolfBroGameScRsp" => Some(Self::CmdQuitWolfBroGameScRsp), - "CmdWolfBroGamePickupBulletScRsp" => { - Some(Self::CmdWolfBroGamePickupBulletScRsp) - } - "CmdWolfBroGameUseBulletCsReq" => Some(Self::CmdWolfBroGameUseBulletCsReq), - "CmdWolfBroGameActivateBulletScRsp" => { - Some(Self::CmdWolfBroGameActivateBulletScRsp) - } - "CmdArchiveWolfBroGameCsReq" => Some(Self::CmdArchiveWolfBroGameCsReq), - "CmdStartWolfBroGameScRsp" => Some(Self::CmdStartWolfBroGameScRsp), - "CmdRestoreWolfBroGameArchiveCsReq" => { - Some(Self::CmdRestoreWolfBroGameArchiveCsReq) - } - "CmdWolfBroGameUseBulletScRsp" => Some(Self::CmdWolfBroGameUseBulletScRsp), - "CmdGetWolfBroGameDataScRsp" => Some(Self::CmdGetWolfBroGameDataScRsp), - "CmdRestoreWolfBroGameArchiveScRsp" => { - Some(Self::CmdRestoreWolfBroGameArchiveScRsp) - } - "CmdGetWolfBroGameDataCsReq" => Some(Self::CmdGetWolfBroGameDataCsReq), - "CmdArchiveWolfBroGameScRsp" => Some(Self::CmdArchiveWolfBroGameScRsp), - "CmdWolfBroGameDataChangeScNotify" => { - Some(Self::CmdWolfBroGameDataChangeScNotify) - } - "CmdWolfBroGameActivateBulletCsReq" => { - Some(Self::CmdWolfBroGameActivateBulletCsReq) - } - "CmdQuitWolfBroGameCsReq" => Some(Self::CmdQuitWolfBroGameCsReq), - "CmdWolfBroGameExplodeMonsterCsReq" => { - Some(Self::CmdWolfBroGameExplodeMonsterCsReq) - } - "CmdWolfBroGameExplodeMonsterScRsp" => { - Some(Self::CmdWolfBroGameExplodeMonsterScRsp) - } + "LNGFBPFJEJG_ALOCMFAKBKP" => Some(Self::LngfbpfjejgAlocmfakbkp), + "LNGFBPFJEJG_ALLJMIMFCEO" => Some(Self::LngfbpfjejgAlljmimfceo), + "LNGFBPFJEJG_OKNMDJPIFOD" => Some(Self::LngfbpfjejgOknmdjpifod), + "LNGFBPFJEJG_KHFNOGHJONH" => Some(Self::LngfbpfjejgKhfnoghjonh), + "LNGFBPFJEJG_BGNEOJDNCDO" => Some(Self::LngfbpfjejgBgneojdncdo), + "LNGFBPFJEJG_JIKPPBILMMO" => Some(Self::LngfbpfjejgJikppbilmmo), + "LNGFBPFJEJG_CABNHJBNANF" => Some(Self::LngfbpfjejgCabnhjbnanf), + "LNGFBPFJEJG_GNNBKLALJGD" => Some(Self::LngfbpfjejgGnnbklaljgd), + "LNGFBPFJEJG_LBBMOMDFLIF" => Some(Self::LngfbpfjejgLbbmomdflif), + "LNGFBPFJEJG_PHIAHEEAHIH" => Some(Self::LngfbpfjejgPhiaheeahih), + "LNGFBPFJEJG_CINLPEGHEAE" => Some(Self::LngfbpfjejgCinlpegheae), + "LNGFBPFJEJG_PGBFDHEOCLG" => Some(Self::LngfbpfjejgPgbfdheoclg), + "LNGFBPFJEJG_JPKFBLKGCJG" => Some(Self::LngfbpfjejgJpkfblkgcjg), + "LNGFBPFJEJG_FEHKAIPNOOI" => Some(Self::LngfbpfjejgFehkaipnooi), + "LNGFBPFJEJG_JBAMAOLDHJH" => Some(Self::LngfbpfjejgJbamaoldhjh), + "LNGFBPFJEJG_KIDPHAMDDLB" => Some(Self::LngfbpfjejgKidphamddlb), + "LNGFBPFJEJG_CDLJBGKGLDE" => Some(Self::LngfbpfjejgCdljbgkglde), + "LNGFBPFJEJG_HABEOEOKLFK" => Some(Self::LngfbpfjejgHabeoeoklfk), + "LNGFBPFJEJG_OFFDPODKIOK" => Some(Self::LngfbpfjejgOffdpodkiok), + "LNGFBPFJEJG_KKEINMEAHII" => Some(Self::LngfbpfjejgKkeinmeahii), _ => None, } } @@ -85895,9 +83457,9 @@ impl CmdWolfBroType { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CmdWorldUnlockType { - None = 0, - CmdWorldUnlockScRsp = 7626, + HhdefobejgbAlocmfakbkp = 0, CmdWorldUnlockCsReq = 7627, + CmdWorldUnlockScRsp = 7626, } impl CmdWorldUnlockType { /// String value of the enum field names used in the ProtoBuf definition. @@ -85906,17 +83468,17 @@ impl CmdWorldUnlockType { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::None => "CmdWorldUnlockTypeNone", - Self::CmdWorldUnlockScRsp => "CmdWorldUnlockScRsp", + Self::HhdefobejgbAlocmfakbkp => "HHDEFOBEJGB_ALOCMFAKBKP", Self::CmdWorldUnlockCsReq => "CmdWorldUnlockCsReq", + Self::CmdWorldUnlockScRsp => "CmdWorldUnlockScRsp", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "CmdWorldUnlockTypeNone" => Some(Self::None), - "CmdWorldUnlockScRsp" => Some(Self::CmdWorldUnlockScRsp), + "HHDEFOBEJGB_ALOCMFAKBKP" => Some(Self::HhdefobejgbAlocmfakbkp), "CmdWorldUnlockCsReq" => Some(Self::CmdWorldUnlockCsReq), + "CmdWorldUnlockScRsp" => Some(Self::CmdWorldUnlockScRsp), _ => None, } } @@ -85924,41 +83486,41 @@ impl CmdWorldUnlockType { #[derive(proto_derive::CmdID)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] -pub enum Djebimhnpbm { - DispatchTypeNone = 0, - DispatchTypeByAddr = 1, - DispatchTypeByMod = 2, - DispatchTypeByRand = 3, - DispatchTypeByChash = 4, - DispatchTypeByStickySession = 5, - DispatchTypeByObject = 6, +pub enum Iihikmknjhi { + Alocmfakbkp = 0, + Efhacpgegeh = 1, + Hghmbfdbeje = 2, + Ginmhdoogod = 3, + Bjdofdodppi = 4, + Galdcldfjod = 5, + Nagpfpjcfni = 6, } -impl Djebimhnpbm { +impl Iihikmknjhi { /// String value of the enum field names used in the ProtoBuf definition. /// /// The values are not transformed in any way and thus are considered stable /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - Self::DispatchTypeNone => "DISPATCH_TYPE_NONE", - Self::DispatchTypeByAddr => "DISPATCH_TYPE_BY_ADDR", - Self::DispatchTypeByMod => "DISPATCH_TYPE_BY_MOD", - Self::DispatchTypeByRand => "DISPATCH_TYPE_BY_RAND", - Self::DispatchTypeByChash => "DISPATCH_TYPE_BY_CHASH", - Self::DispatchTypeByStickySession => "DISPATCH_TYPE_BY_STICKY_SESSION", - Self::DispatchTypeByObject => "DISPATCH_TYPE_BY_OBJECT", + Self::Alocmfakbkp => "IIHIKMKNJHI_ALOCMFAKBKP", + Self::Efhacpgegeh => "IIHIKMKNJHI_EFHACPGEGEH", + Self::Hghmbfdbeje => "IIHIKMKNJHI_HGHMBFDBEJE", + Self::Ginmhdoogod => "IIHIKMKNJHI_GINMHDOOGOD", + Self::Bjdofdodppi => "IIHIKMKNJHI_BJDOFDODPPI", + Self::Galdcldfjod => "IIHIKMKNJHI_GALDCLDFJOD", + Self::Nagpfpjcfni => "IIHIKMKNJHI_NAGPFPJCFNI", } } /// Creates an enum from field names used in the ProtoBuf definition. pub fn from_str_name(value: &str) -> ::core::option::Option { match value { - "DISPATCH_TYPE_NONE" => Some(Self::DispatchTypeNone), - "DISPATCH_TYPE_BY_ADDR" => Some(Self::DispatchTypeByAddr), - "DISPATCH_TYPE_BY_MOD" => Some(Self::DispatchTypeByMod), - "DISPATCH_TYPE_BY_RAND" => Some(Self::DispatchTypeByRand), - "DISPATCH_TYPE_BY_CHASH" => Some(Self::DispatchTypeByChash), - "DISPATCH_TYPE_BY_STICKY_SESSION" => Some(Self::DispatchTypeByStickySession), - "DISPATCH_TYPE_BY_OBJECT" => Some(Self::DispatchTypeByObject), + "IIHIKMKNJHI_ALOCMFAKBKP" => Some(Self::Alocmfakbkp), + "IIHIKMKNJHI_EFHACPGEGEH" => Some(Self::Efhacpgegeh), + "IIHIKMKNJHI_HGHMBFDBEJE" => Some(Self::Hghmbfdbeje), + "IIHIKMKNJHI_GINMHDOOGOD" => Some(Self::Ginmhdoogod), + "IIHIKMKNJHI_BJDOFDODPPI" => Some(Self::Bjdofdodppi), + "IIHIKMKNJHI_GALDCLDFJOD" => Some(Self::Galdcldfjod), + "IIHIKMKNJHI_NAGPFPJCFNI" => Some(Self::Nagpfpjcfni), _ => None, } } diff --git a/sdkserver/src/services/dispatch.rs b/sdkserver/src/services/dispatch.rs index 5d6c772..5455a37 100644 --- a/sdkserver/src/services/dispatch.rs +++ b/sdkserver/src/services/dispatch.rs @@ -3,7 +3,7 @@ use std::sync::Arc; use crate::AppState; use axum::extract::{Query, State}; use prost::Message; -use proto::{DispatchRegionData, Gateserver, RegionEntry}; +use proto::{Dispatch, Gateserver, RegionInfo}; use serde::Deserialize; use tokio::sync::RwLock; use tracing::instrument; @@ -13,12 +13,12 @@ pub const QUERY_GATEWAY_ENDPOINT: &str = "/query_gateway"; #[tracing::instrument] pub async fn query_dispatch() -> String { - let rsp = DispatchRegionData { + let rsp = Dispatch { retcode: 0, - region_list: vec![RegionEntry { + region_list: vec![RegionInfo { name: String::from("RobinSR"), title: String::from("RobinSR"), - env_type: String::from("21"), + env_type: String::from("9"), dispatch_url: String::from("http://127.0.0.1:21000/query_gateway"), ..Default::default() }], @@ -48,23 +48,23 @@ pub async fn query_gateway( .await; let rsp = Gateserver { - retcode: 0, ip: String::from("127.0.0.1"), port: 23301, asset_bundle_url: config.asset_bundle_url.clone(), + asset_bundle_url_android: config.asset_bundle_url.clone(), ex_resource_url: config.ex_resource_url.clone(), lua_url: config.lua_url.clone(), ifix_version: String::from("0"), - enable_design_data_version_update: true, - enable_version_update: true, - enable_upload_battle_log: true, - network_diagnostic: true, - close_redeem_code: true, - enable_android_middle_package: true, - enable_watermark: true, - event_tracking_open: true, - enable_cdn_ipv6: 1, - enable_save_replay_file: true, + unk1: true, + unk2: true, + unk3: true, + unk4: true, + unk5: true, + unk6: true, + unk7: true, + unk8: true, + unk9: true, + unk10: true, ..Default::default() };