-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpacketIds.json
2560 lines (2560 loc) · 90.4 KB
/
packetIds.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"4864": "AbilityInvocationFixedNotify",
"26313": "AbilityInvocationsNotify",
"4046": "ClientAbilityInitBeginNotify",
"8666": "ClientAbilityInitFinishNotify",
"26730": "AbilityInvocationFailNotify",
"7505": "ClientAbilitiesInitFinishCombineNotify",
"28351": "WindSeedClientNotify",
"300": "AbilityChangeNotify",
"8174": "ClientAbilityChangeNotify",
"1181": "ServerUpdateGlobalValueNotify",
"28698": "ServerGlobalValueChangeNotify",
"6944": "ClientAIStateNotify",
"5895": "ServerCombatEndNotify",
"2142": "ClientRemoveCombatEndModifierNotify",
"373": "PerformOperationNotify",
"27422": "AchievementAllDataNotify",
"4460": "AchievementUpdateNotify",
"20624": "TakeAchievementRewardReq",
"23696": "TakeAchievementRewardRsp",
"249": "TakeAchievementGoalRewardReq",
"20302": "TakeAchievementGoalRewardRsp",
"885": "GetActivityScheduleReq",
"7421": "GetActivityScheduleRsp",
"25586": "GetActivityInfoReq",
"7972": "GetActivityInfoRsp",
"4102": "ActivityPlayOpenAnimNotify",
"1246": "ActivityInfoNotify",
"23970": "ActivityScheduleInfoNotify",
"23105": "ActivityTakeWatcherRewardReq",
"2165": "ActivityTakeWatcherRewardRsp",
"20400": "ActivityUpdateWatcherNotify",
"6953": "ActivitySelectAvatarCardReq",
"7203": "ActivitySelectAvatarCardRsp",
"27507": "ActivityCoinInfoNotify",
"283": "SeaLampFlyLampReq",
"1255": "SeaLampFlyLampRsp",
"4205": "SeaLampTakeContributionRewardReq",
"22558": "SeaLampTakeContributionRewardRsp",
"2574": "SeaLampTakePhaseRewardReq",
"7734": "SeaLampTakePhaseRewardRsp",
"6321": "SeaLampContributeItemReq",
"9989": "SeaLampContributeItemRsp",
"3489": "SeaLampFlyLampNotify",
"8079": "SeaLampCoinNotify",
"6421": "SeaLampPopularityNotify",
"5": "LoadActivityTerrainNotify",
"7548": "ServerAnnounceNotify",
"23231": "ServerAnnounceRevokeNotify",
"2777": "ActivityBannerNotify",
"3086": "ActivityBannerClearReq",
"24680": "ActivityBannerClearRsp",
"2062": "SalesmanDeliverItemReq",
"829": "SalesmanDeliverItemRsp",
"27922": "SalesmanTakeRewardReq",
"3724": "SalesmanTakeRewardRsp",
"8757": "ActivityCondStateChangeNotify",
"21248": "SalesmanTakeSpecialRewardReq",
"903": "SalesmanTakeSpecialRewardRsp",
"28580": "GetAuthSalesmanInfoReq",
"8294": "GetAuthSalesmanInfoRsp",
"7738": "EnterTrialAvatarActivityDungeonReq",
"8751": "EnterTrialAvatarActivityDungeonRsp",
"8615": "ReceivedTrialAvatarActivityRewardReq",
"9311": "ReceivedTrialAvatarActivityRewardRsp",
"6009": "TrialAvatarFirstPassDungeonNotify",
"25684": "TrialAvatarInDungeonIndexNotify",
"28022": "TakeDeliveryDailyRewardReq",
"22688": "TakeDeliveryDailyRewardRsp",
"2454": "FinishDeliveryNotify",
"971": "SelectAsterMidDifficultyReq",
"23097": "SelectAsterMidDifficultyRsp",
"26542": "AsterProgressInfoNotify",
"25815": "AsterLittleInfoNotify",
"6512": "AsterMidInfoNotify",
"7912": "AsterMiscInfoNotify",
"7641": "TakeAsterSpecialRewardReq",
"25347": "TakeAsterSpecialRewardRsp",
"8935": "AsterLargeInfoNotify",
"4885": "FlightActivitySettleNotify",
"25206": "FlightActivityRestartReq",
"4661": "FlightActivityRestartRsp",
"21139": "AsterMidCampInfoNotify",
"9487": "DragonSpineChapterOpenNotify",
"892": "DragonSpineChapterProgressChangeNotify",
"3871": "DragonSpineChapterFinishNotify",
"5502": "DragonSpineCoinChangeNotify",
"7366": "ActivitySaleChangeNotify",
"4800": "StartEffigyChallengeReq",
"28896": "StartEffigyChallengeRsp",
"25457": "EffigyChallengeInfoNotify",
"1233": "EffigyChallengeResultNotify",
"6014": "TakeEffigyFirstPassRewardReq",
"8293": "TakeEffigyFirstPassRewardRsp",
"28268": "TakeEffigyRewardReq",
"1345": "TakeEffigyRewardRsp",
"7159": "SelectEffigyChallengeConditionReq",
"3284": "SelectEffigyChallengeConditionRsp",
"8574": "RestartEffigyChallengeReq",
"8102": "RestartEffigyChallengeRsp",
"27963": "TreasureMapRegionInfoNotify",
"24210": "TreasureMapCurrencyNotify",
"20683": "TreasureMapRegionActiveNotify",
"8790": "TreasureMapMpChallengeNotify",
"23317": "TreasureMapBonusChallengeNotify",
"1567": "TreasureMapGuideTaskDoneNotify",
"20410": "TreasureMapPreTaskDoneNotify",
"21594": "BlessingScanReq",
"23837": "BlessingScanRsp",
"5045": "BlessingRedeemRewardReq",
"8663": "BlessingRedeemRewardRsp",
"26732": "BlessingGetFriendPicListReq",
"28112": "BlessingGetFriendPicListRsp",
"22587": "BlessingGiveFriendPicReq",
"28964": "BlessingGiveFriendPicRsp",
"1596": "BlessingAcceptGivePicReq",
"22770": "BlessingAcceptGivePicRsp",
"22820": "BlessingGetAllRecvPicRecordListReq",
"2869": "BlessingGetAllRecvPicRecordListRsp",
"5919": "BlessingRecvFriendPicNotify",
"4716": "BlessingAcceptAllGivePicReq",
"7340": "BlessingAcceptAllGivePicRsp",
"24051": "ExpeditionStartReq",
"23532": "ExpeditionStartRsp",
"24533": "ExpeditionRecallReq",
"4076": "ExpeditionRecallRsp",
"20264": "ExpeditionTakeRewardReq",
"20403": "ExpeditionTakeRewardRsp",
"2643": "GetExpeditionAssistInfoListReq",
"29625": "GetExpeditionAssistInfoListRsp",
"20340": "SetCurExpeditionChallengeIdReq",
"24543": "SetCurExpeditionChallengeIdRsp",
"29889": "ExpeditionChallengeEnterRegionNotify",
"7357": "ExpeditionChallengeFinishedNotify",
"4377": "FleurFairBalloonSettleNotify",
"2809": "FleurFairFallSettleNotify",
"22852": "FleurFairMusicGameSettleReq",
"23871": "FleurFairMusicGameSettleRsp",
"5303": "FleurFairMusicGameStartReq",
"21453": "FleurFairMusicGameStartRsp",
"23867": "FleurFairReplayMiniGameReq",
"29110": "FleurFairReplayMiniGameRsp",
"7114": "StartArenaChallengeLevelReq",
"27893": "StartArenaChallengeLevelRsp",
"20843": "ArenaChallengeFinishNotify",
"22107": "WaterSpritePhaseFinishNotify",
"26003": "ActivityTakeWatcherRewardBatchReq",
"6698": "ActivityTakeWatcherRewardBatchRsp",
"25106": "ChannelerSlabStageActiveChallengeIndexNotify",
"7389": "ChannelerSlabStageOneoffDungeonNotify",
"2514": "ChannellerSlabWearBuffReq",
"21705": "ChannellerSlabWearBuffRsp",
"6732": "ChannellerSlabTakeoffBuffReq",
"9897": "ChannellerSlabTakeoffBuffRsp",
"24047": "ChannellerSlabEnterLoopDungeonReq",
"28044": "ChannellerSlabEnterLoopDungeonRsp",
"8860": "ChannellerSlabLoopDungeonTakeFirstPassRewardReq",
"27441": "ChannellerSlabLoopDungeonTakeFirstPassRewardRsp",
"26903": "ChannellerSlabLoopDungeonTakeScoreRewardReq",
"23768": "ChannellerSlabLoopDungeonTakeScoreRewardRsp",
"9955": "ChannellerSlabLoopDungeonChallengeInfoNotify",
"21734": "ChannellerSlabLoopDungeonSelectConditionReq",
"7273": "ChannellerSlabLoopDungeonSelectConditionRsp",
"26360": "ChannellerSlabOneOffDungeonInfoReq",
"23158": "ChannellerSlabOneOffDungeonInfoRsp",
"8662": "ChannellerSlabOneOffDungeonInfoNotify",
"26691": "ChannellerSlabSaveAssistInfoReq",
"25405": "ChannellerSlabSaveAssistInfoRsp",
"29677": "MistTrialSelectAvatarAndEnterDungeonReq",
"24511": "MistTrialSelectAvatarAndEnterDungeonRsp",
"28736": "MistTrialGetChallengeMissionReq",
"23092": "MistTrialGetChallengeMissionRsp",
"9722": "MistTrialDunegonFailNotify",
"386": "ChannellerSlabCheckEnterLoopDungeonReq",
"3830": "ChannellerSlabCheckEnterLoopDungeonRsp",
"2859": "HideAndSeekSelectSkillReq",
"544": "HideAndSeekSelectSkillRsp",
"2048": "ActivityTakeScoreRewardReq",
"7860": "ActivityTakeScoreRewardRsp",
"3082": "ActivityTakeAllScoreRewardReq",
"1014": "ActivityTakeAllScoreRewardRsp",
"20570": "HideAndSeekChooseMapReq",
"7184": "HideAndSeekChooseMapRsp",
"27603": "CommonPlayerTipsNotify",
"900": "FindHilichurlFinishSecondQuestNotify",
"29747": "FindHilichurlAcceptQuestNotify",
"9015": "SummerTimeFloatSignalPositionNotify",
"22089": "SummerTimeFloatSignalUpdateNotify",
"20382": "SummerTimeSprintBoatSettleNotify",
"23353": "SummerTimeSprintBoatRestartReq",
"1588": "SummerTimeSprintBoatRestartRsp",
"103": "StartBuoyantCombatGalleryReq",
"2642": "StartBuoyantCombatGalleryRsp",
"25655": "BuoyantCombatSettleNotify",
"3723": "SetLimitOptimizationNotify",
"24688": "EchoShellUpdateNotify",
"855": "EchoShellTakeRewardReq",
"22695": "EchoShellTakeRewardRsp",
"26223": "BounceConjuringSettleNotify",
"6829": "BlitzRushParkourRestartReq",
"22318": "BlitzRushParkourRestartRsp",
"20080": "EnterChessDungeonReq",
"918": "EnterChessDungeonRsp",
"1895": "TreasureMapHostInfoNotify",
"26768": "SumoSaveTeamReq",
"24118": "SumoSaveTeamRsp",
"28230": "SumoSelectTeamAndEnterDungeonReq",
"28014": "SumoSelectTeamAndEnterDungeonRsp",
"23188": "SumoDungeonSettleNotify",
"9445": "SumoEnterDungeonNotify",
"21102": "SumoSwitchTeamReq",
"28038": "SumoSwitchTeamRsp",
"4886": "SumoLeaveDungeonNotify",
"23088": "SumoRestartDungeonReq",
"8491": "SumoRestartDungeonRsp",
"25185": "ActivityDisableTransferPointInteractionNotify",
"5911": "SumoSetNoSwitchPunishTimeNotify",
"3899": "FishingGallerySettleNotify",
"27967": "LunaRiteSacrificeReq",
"5864": "LunaRiteSacrificeRsp",
"23018": "LunaRiteTakeSacrificeRewardReq",
"24725": "LunaRiteTakeSacrificeRewardRsp",
"9947": "LunaRiteHintPointReq",
"853": "LunaRiteHintPointRsp",
"4154": "LunaRiteHintPointRemoveNotify",
"5030": "LunaRiteGroupBundleRegisterNotify",
"22632": "LunaRiteAreaFinishNotify",
"23803": "PlantFlowerGetSeedInfoReq",
"20942": "PlantFlowerGetSeedInfoRsp",
"23356": "PlantFlowerTakeSeedRewardReq",
"28953": "PlantFlowerTakeSeedRewardRsp",
"1934": "PlantFlowerSetFlowerWishReq",
"24250": "PlantFlowerSetFlowerWishRsp",
"21731": "PlantFlowerGetFriendFlowerWishListReq",
"24917": "PlantFlowerGetFriendFlowerWishListRsp",
"512": "PlantFlowerGiveFriendFlowerReq",
"24990": "PlantFlowerGiveFriendFlowerRsp",
"5568": "PlantFlowerGetRecvFlowerListReq",
"26967": "PlantFlowerGetRecvFlowerListRsp",
"7995": "PlantFlowerHaveRecvFlowerNotify",
"27522": "PlantFlowerAcceptGiveFlowerReq",
"26652": "PlantFlowerAcceptGiveFlowerRsp",
"27784": "PlantFlowerAcceptAllGiveFlowerReq",
"5535": "PlantFlowerAcceptAllGiveFlowerRsp",
"21688": "PlantFlowerGetCanGiveFriendFlowerReq",
"2946": "PlantFlowerGetCanGiveFriendFlowerRsp",
"25884": "PlantFlowerEditFlowerCombinationReq",
"5492": "PlantFlowerEditFlowerCombinationRsp",
"24309": "MusicGameSettleReq",
"7327": "MusicGameSettleRsp",
"2690": "MusicGameStartReq",
"6458": "MusicGameStartRsp",
"21709": "DoRoguelikeDungeonCardGachaReq",
"3293": "DoRoguelikeDungeonCardGachaRsp",
"23467": "RefreshRoguelikeDungeonCardReq",
"7915": "RefreshRoguelikeDungeonCardRsp",
"20123": "SelectRoguelikeDungeonCardReq",
"24868": "SelectRoguelikeDungeonCardRsp",
"5188": "EquipRoguelikeRuneReq",
"3632": "EquipRoguelikeRuneRsp",
"26666": "TriggerRoguelikeRuneReq",
"1039": "TriggerRoguelikeRuneRsp",
"26431": "TriggerRoguelikeCurseNotify",
"23123": "UpgradeRoguelikeShikigamiReq",
"1133": "UpgradeRoguelikeShikigamiRsp",
"8269": "RoguelikeSelectAvatarAndEnterDungeonReq",
"7229": "RoguelikeSelectAvatarAndEnterDungeonRsp",
"25469": "RoguelikeGiveUpReq",
"8629": "RoguelikeGiveUpRsp",
"6306": "RoguelikeTakeStageFirstPassRewardReq",
"9513": "RoguelikeTakeStageFirstPassRewardRsp",
"8630": "GiveUpRoguelikeDungeonCardReq",
"28045": "GiveUpRoguelikeDungeonCardRsp",
"8336": "EnterRoguelikeDungeonNotify",
"24719": "StartRogueEliteCellChallengeReq",
"9589": "StartRogueEliteCellChallengeRsp",
"27300": "StartRogueNormalCellChallengeReq",
"8056": "StartRogueNormalCellChallengeRsp",
"4597": "RogueCellUpdateNotify",
"6884": "RogueDungeonPlayerCellChangeNotify",
"7220": "RogueHealAvatarsReq",
"3917": "RogueHealAvatarsRsp",
"28359": "RogueResumeDungeonReq",
"22999": "RogueResumeDungeonRsp",
"4898": "ClearRoguelikeCurseNotify",
"20313": "RoguelikeCardGachaNotify",
"7818": "RogueSwitchAvatarReq",
"7922": "RogueSwitchAvatarRsp",
"1027": "DisableRoguelikeTrapNotify",
"1760": "RoguelikeRuneRecordUpdateNotify",
"27988": "RoguelikeMistClearNotify",
"920": "RoguelikeEffectDataNotify",
"24896": "RoguelikeEffectViewReq",
"26737": "RoguelikeEffectViewRsp",
"9873": "RoguelikeResourceBonusPropUpdateNotify",
"27478": "RoguelikeRefreshCardCostUpdateNotify",
"8406": "DigActivityMarkPointChangeNotify",
"6858": "DigActivityChangeGadgetStateReq",
"26496": "DigActivityChangeGadgetStateRsp",
"28290": "WinterCampStageInfoChangeNotify",
"20047": "WinterCampRaceScoreNotify",
"4625": "WinterCampGiveFriendItemReq",
"24904": "WinterCampGiveFriendItemRsp",
"20875": "WinterCampSetWishListReq",
"8424": "WinterCampSetWishListRsp",
"4914": "WinterCampGetFriendWishListReq",
"24739": "WinterCampGetFriendWishListRsp",
"23213": "WinterCampRecvItemNotify",
"4170": "WinterCampAcceptGiveItemReq",
"22048": "WinterCampAcceptGiveItemRsp",
"6397": "WinterCampAcceptAllGiveItemReq",
"4655": "WinterCampAcceptAllGiveItemRsp",
"130": "WinterCampGetCanGiveFriendItemReq",
"23821": "WinterCampGetCanGiveFriendItemRsp",
"25703": "WinterCampGetRecvItemListReq",
"2293": "WinterCampGetRecvItemListRsp",
"20265": "WinterCampEditSnowmanCombinationReq",
"27459": "WinterCampEditSnowmanCombinationRsp",
"3692": "WinterCampTriathlonSettleNotify",
"20823": "WinterCampTakeExploreRewardReq",
"5622": "WinterCampTakeExploreRewardRsp",
"28057": "WinterCampTakeBattleRewardReq",
"25618": "WinterCampTakeBattleRewardRsp",
"9024": "WinterCampTriathlonRestartReq",
"27534": "WinterCampTriathlonRestartRsp",
"28242": "MistTrialSettleNotify",
"29891": "MistTrialGetDungeonExhibitionDataReq",
"2046": "MistTrialGetDungeonExhibitionDataRsp",
"2937": "PotionResetChallengeReq",
"27694": "PotionResetChallengeRsp",
"4073": "PotionEnterDungeonReq",
"7418": "PotionEnterDungeonRsp",
"21097": "PotionEnterDungeonNotify",
"9617": "PotionSaveDungeonResultReq",
"4568": "PotionSaveDungeonResultRsp",
"465": "PotionRestartDungeonReq",
"4156": "PotionRestartDungeonRsp",
"29894": "TanukiTravelFinishGuideQuestNotify",
"9125": "FinishLanternProjectionReq",
"7181": "FinishLanternProjectionRsp",
"6221": "ViewLanternProjectionTipsReq",
"22183": "ViewLanternProjectionTipsRsp",
"29565": "ViewLanternProjectionLevelTipsReq",
"20141": "ViewLanternProjectionLevelTipsRsp",
"24588": "SalvagePreventSettleNotify",
"28329": "SalvageEscortSettleNotify",
"26440": "LanternRiteTakeSkinRewardReq",
"23147": "LanternRiteTakeSkinRewardRsp",
"22494": "SalvagePreventRestartReq",
"26886": "SalvagePreventRestartRsp",
"23742": "SalvageEscortRestartReq",
"8821": "SalvageEscortRestartRsp",
"20895": "LanternRiteStartFireworksReformReq",
"9926": "LanternRiteStartFireworksReformRsp",
"9217": "LanternRiteDoFireworksReformReq",
"24400": "LanternRiteDoFireworksReformRsp",
"24444": "LanternRiteEndFireworksReformReq",
"709": "LanternRiteEndFireworksReformRsp",
"20695": "UpdateSalvageBundleMarkReq",
"22649": "UpdateSalvageBundleMarkRsp",
"29941": "MichiaeMatsuriDarkPressureLevelUpdateNotify",
"25870": "MichiaeMatsuriInteractStatueReq",
"5402": "MichiaeMatsuriInteractStatueRsp",
"21288": "MichiaeMatsuriUnlockCrystalSkillReq",
"22931": "MichiaeMatsuriUnlockCrystalSkillRsp",
"4975": "MichiaeMatsuriStartBossChallengeReq",
"1225": "MichiaeMatsuriStartBossChallengeRsp",
"6647": "MichiaeMatsuriStartDarkChallengeReq",
"21313": "MichiaeMatsuriStartDarkChallengeRsp",
"7189": "MichiaeMatsuriRemoveChestMarkNotify",
"1360": "MichiaeMatsuriRemoveChallengeMarkNotify",
"8098": "MichiaeMatsuriGainCrystalExpUpdateNotify",
"25372": "BartenderCompleteOrderReq",
"26145": "BartenderCompleteOrderRsp",
"7877": "BartenderCancelOrderReq",
"1772": "BartenderCancelOrderRsp",
"5932": "BartenderGetFormulaReq",
"7404": "BartenderGetFormulaRsp",
"7285": "BartenderStartLevelReq",
"27218": "BartenderStartLevelRsp",
"22759": "BartenderCancelLevelReq",
"21002": "BartenderCancelLevelRsp",
"8176": "BartenderLevelProgressNotify",
"1905": "BartenderFinishLevelReq",
"4440": "BartenderFinishLevelRsp",
"26178": "CrystalLinkEnterDungeonReq",
"1502": "CrystalLinkEnterDungeonRsp",
"23068": "CrystalLinkDungeonInfoNotify",
"28616": "CrystalLinkRestartDungeonReq",
"28113": "CrystalLinkRestartDungeonRsp",
"3073": "QuickOpenActivityReq",
"7953": "QuickOpenActivityRsp",
"3931": "IrodoriEditFlowerCombinationReq",
"26271": "IrodoriEditFlowerCombinationRsp",
"1642": "IrodoriScanEntityReq",
"9957": "IrodoriScanEntityRsp",
"20277": "IrodoriFillPoetryReq",
"26146": "IrodoriFillPoetryRsp",
"3894": "IrodoriChessEquipCardReq",
"27067": "IrodoriChessEquipCardRsp",
"29261": "IrodoriChessUnequipCardReq",
"6523": "IrodoriChessUnequipCardRsp",
"2229": "EnterIrodoriChessDungeonReq",
"29492": "EnterIrodoriChessDungeonRsp",
"26974": "IrodoriMasterStartGalleryReq",
"6623": "IrodoriMasterStartGalleryRsp",
"23987": "IrodoriMasterGalleryCgEndNotify",
"9167": "IrodoriMasterGallerySettleNotify",
"26014": "PhotoActivityFinishReq",
"25296": "PhotoActivityFinishRsp",
"21878": "PhotoActivityClientViewReq",
"20737": "PhotoActivityClientViewRsp",
"8503": "SpiceActivityFinishMakeSpiceReq",
"4582": "SpiceActivityFinishMakeSpiceRsp",
"22981": "SpiceActivityProcessFoodReq",
"21724": "SpiceActivityProcessFoodRsp",
"5421": "SpiceActivityGivingRecordNotify",
"874": "GachaActivityPercentNotify",
"29407": "GachaActivityUpdateElemNotify",
"24297": "GachaActivityCreateRobotReq",
"7445": "GachaActivityCreateRobotRsp",
"5052": "GachaActivityTakeRewardReq",
"27406": "GachaActivityTakeRewardRsp",
"8921": "GachaActivityResetReq",
"9141": "GachaActivityResetRsp",
"28908": "GachaActivityNextStageReq",
"9626": "GachaActivityNextStageRsp",
"7798": "ActivityGiveFriendGiftReq",
"9446": "ActivityGiveFriendGiftRsp",
"20506": "ActivityGetRecvGiftListReq",
"2009": "ActivityGetRecvGiftListRsp",
"20546": "ActivityHaveRecvGiftNotify",
"25362": "ActivityAcceptGiveGiftReq",
"20446": "ActivityAcceptGiveGiftRsp",
"26297": "ActivityAcceptAllGiveGiftReq",
"26260": "ActivityAcceptAllGiveGiftRsp",
"27356": "ActivityGetCanGiveFriendGiftReq",
"23758": "ActivityGetCanGiveFriendGiftRsp",
"24397": "ActivitySetGiftWishReq",
"165": "ActivitySetGiftWishRsp",
"4453": "ActivityGetFriendGiftWishListReq",
"5014": "ActivityGetFriendGiftWishListRsp",
"22564": "LuminanceStoneChallengeSettleNotify",
"29988": "StartRogueDiaryPlayReq",
"3886": "StartRogueDiaryPlayRsp",
"3800": "ResetRogueDiaryPlayReq",
"28628": "ResetRogueDiaryPlayRsp",
"6423": "EnterRogueDiaryDungeonReq",
"26399": "EnterRogueDiaryDungeonRsp",
"24514": "ResumeRogueDiaryDungeonReq",
"21442": "ResumeRogueDiaryDungeonRsp",
"1309": "RogueDiaryDungeonInfoNotify",
"27081": "RogueDiaryDungeonSettleNotify",
"20500": "StartRogueDiaryRoomReq",
"24237": "StartRogueDiaryRoomRsp",
"24388": "RogueDiaryTiredAvatarNotify",
"7857": "ReserveRogueDiaryAvatarReq",
"24707": "ReserveRogueDiaryAvatarRsp",
"6887": "GetRogueDairyRepairInfoReq",
"133": "GetRogueDairyRepairInfoRsp",
"8823": "RefreshRogueDiaryCardReq",
"2711": "RefreshRogueDiaryCardRsp",
"21443": "RogueFinishRepairReq",
"9649": "RogueFinishRepairRsp",
"23223": "TryInterruptRogueDiaryDungeonReq",
"4919": "TryInterruptRogueDiaryDungeonRsp",
"9164": "RogueDiaryRepairInfoNotify",
"9419": "RetryCurRogueDiaryDungeonReq",
"20889": "RetryCurRogueDiaryDungeonRsp",
"26124": "RogueDiaryReviveAvatarReq",
"4056": "RogueDiaryReviveAvatarRsp",
"619": "TryEnterNextRogueDiaryDungeonReq",
"28661": "TryEnterNextRogueDiaryDungeonRsp",
"21318": "RogueDiaryCoinAddNotify",
"7571": "SummerTimeV2BoatSettleNotify",
"22464": "ActivityPushTipsInfoNotify",
"4848": "ActivityReadPushTipsReq",
"5363": "ActivityReadPushTipsRsp",
"164": "SummerTimeV2RestartBoatGalleryReq",
"22752": "SummerTimeV2RestartBoatGalleryRsp",
"212": "SummerTimeV2RestartDungeonReq",
"22741": "SummerTimeV2RestartDungeonRsp",
"23083": "IslandPartySettleNotify",
"7344": "GearActivityStartPlayGearReq",
"25975": "GearActivityStartPlayGearRsp",
"22818": "GearActivityFinishPlayGearReq",
"4312": "GearActivityFinishPlayGearRsp",
"440": "GearActivityStartPlayPictureReq",
"4894": "GearActivityStartPlayPictureRsp",
"3879": "GearActivityFinishPlayPictureReq",
"23830": "GearActivityFinishPlayPictureRsp",
"22442": "GravenInnocenceRaceSettleNotify",
"29239": "GravenInnocenceRaceRestartReq",
"1603": "GravenInnocenceRaceRestartRsp",
"8110": "GravenInnocenceEditCarveCombinationReq",
"28250": "GravenInnocenceEditCarveCombinationRsp",
"25179": "GravenInnocencePhotoFinishReq",
"20635": "GravenInnocencePhotoFinishRsp",
"3372": "GravenInnocencePhotoReminderNotify",
"23206": "InstableSprayEnterDungeonReq",
"25853": "InstableSprayEnterDungeonRsp",
"21079": "InstableSpraySwitchTeamReq",
"25633": "InstableSpraySwitchTeamRsp",
"5076": "InstableSprayLevelFinishNotify",
"3513": "InstableSprayRestartDungeonReq",
"2448": "InstableSprayRestartDungeonRsp",
"8771": "LECDLPCGPMM",
"21148": "DDPGLCPCIBC",
"24954": "MuqadasPotionActivityEnterDungeonReq",
"21120": "MuqadasPotionActivityEnterDungeonRsp",
"2813": "MuqadasPotionDungeonSettleNotify",
"7410": "MuqadasPotionRestartDungeonReq",
"7227": "MuqadasPotionRestartDungeonRsp",
"23385": "MuqadasPotionCaptureWeaknessReq",
"26902": "MuqadasPotionCaptureWeaknessRsp",
"23098": "HFNAODHEMHI",
"4157": "ONKDBNHDBIP",
"22341": "KOOBADKFONK",
"23826": "NOMKFFIKDMP",
"28836": "TreasureSeelieCollectOrbsNotify",
"27142": "VintageMarketDeliverItemReq",
"945": "VintageMarketDeliverItemRsp",
"5258": "SceneGalleryVintageHuntingSettleNotify",
"7068": "VintagePresentFinishNoify",
"4197": "VintageDecorateBoothReq",
"26648": "VintageDecorateBoothRsp",
"21081": "VintageHuntingStartGalleryReq",
"20765": "VintageHuntingStartGalleryRsp",
"21244": "VintageCampGroupBundleRegisterNotify",
"7506": "VintageCampStageFinishNotify",
"6681": "VintageMarketStartStorePlayReq",
"6794": "VintageMarketStartStorePlayRsp",
"26443": "VintageMarketFinishStorePlayReq",
"26589": "VintageMarketFinishStorePlayRsp",
"22871": "VintagePresentFinishNotify",
"7473": "VintageMarketStoreUnlockSlotReq",
"25104": "VintageMarketStoreUnlockSlotRsp",
"28932": "VintageMarketStoreChooseStrategyReq",
"2727": "VintageMarketStoreChooseStrategyRsp",
"27163": "VintageMarketStoreViewStrategyReq",
"26195": "VintageMarketStoreViewStrategyRsp",
"1158": "VintageMarketDividendFinishNotify",
"26218": "VintageMarketNpcEventFinishNotify",
"27756": "WindFieldRestartDungeonReq",
"816": "WindFieldRestartDungeonRsp",
"22446": "EnterFungusFighterPlotDungeonReq",
"8831": "EnterFungusFighterPlotDungeonRsp",
"2226": "FungusFighterPlotInfoNotify",
"2204": "FungusCultivateReq",
"29789": "FungusCultivateRsp",
"29655": "FungusRenameReq",
"5576": "FungusRenameRsp",
"9440": "EnterFungusFighterTrainingDungeonReq",
"28147": "EnterFungusFighterTrainingDungeonRsp",
"6287": "FungusFighterRuntimeDataNotify",
"5169": "FungusFighterTrainingSelectFungusReq",
"22849": "FungusFighterTrainingSelectFungusRsp",
"9469": "FungusFighterTrainingGallerySettleNotify",
"28420": "FungusFighterClearTrainingRuntimeDataReq",
"3102": "FungusFighterClearTrainingRuntimeDataRsp",
"3593": "FungusFighterUseBackupFungusReq",
"4572": "FungusFighterUseBackupFungusRsp",
"20911": "FungusFighterRestartTraningDungeonReq",
"5843": "FungusFighterRestartTraningDungeonRsp",
"7004": "CharAmusementSettleNotify",
"5216": "EffigyChallengeV2EnterDungeonReq",
"25032": "EffigyChallengeV2EnterDungeonRsp",
"3728": "EffigyChallengeV2RestartDungeonReq",
"22580": "EffigyChallengeV2RestartDungeonRsp",
"20097": "EffigyChallengeV2ChooseSkillReq",
"9225": "EffigyChallengeV2ChooseSkillRsp",
"25353": "EffigyChallengeV2DungeonInfoNotify",
"5314": "CoinCollectChooseSkillReq",
"8764": "CoinCollectChooseSkillRsp",
"1251": "RestartCoinCollectPlaySingleModeReq",
"1628": "RestartCoinCollectPlaySingleModeRsp",
"24718": "EndCoinCollectPlaySingleModeReq",
"24474": "EndCoinCollectPlaySingleModeRsp",
"21763": "CoinCollectPrepareReq",
"28970": "CoinCollectPrepareRsp",
"9799": "CoinCollectInterruptPlayReq",
"23959": "CoinCollectInterruptPlayRsp",
"29525": "CoinCollectCheckDoubleStartPlayReq",
"20610": "CoinCollectCheckDoubleStartPlayRsp",
"22511": "SingleStartBrickBreakerReq",
"20651": "SingleStartBrickBreakerRsp",
"25829": "SingleRestartBrickBreakerReq",
"22220": "SingleRestartBrickBreakerRsp",
"5789": "BrickBreakerSettleNotify",
"7000": "BrickBreakerTwiceStartReq",
"25873": "BrickBreakerTwiceStartRsp",
"2184": "BrickBreakerQuitReq",
"22313": "BrickBreakerQuitRsp",
"21038": "LanV3BoatGameStartSingleReq",
"21787": "LanV3BoatGameStartSingleRsp",
"20708": "LanV3BoatGameTransferFinishNotify",
"1020": "LanV3RaceSettleNotify",
"9782": "LanV3RaceRestartReq",
"7062": "LanV3RaceRestartRsp",
"24666": "LanV3BoatInterruptSettleStageReq",
"26971": "LanV3BoatInterruptSettleStageRsp",
"4911": "LanV3ShadowFinishLevelReq",
"5118": "LanV3ShadowFinishLevelRsp",
"26744": "DuelHeartEnterDungeonReq",
"21320": "DuelHeartEnterDungeonRsp",
"20474": "DuelHeartRestartDungeonReq",
"4810": "DuelHeartRestartDungeonRsp",
"29156": "DuelHeartSelectDifficultyReq",
"7396": "DuelHeartSelectDifficultyRsp",
"28003": "DuelHeartSettleNotify",
"509": "DuelHeartCgEndNotify",
"6755": "FPBEJMCHECL",
"6657": "TeamChainEnterDungeonReq",
"1959": "TeamChainEnterDungeonRsp",
"24770": "TeamChainRestartDungeonReq",
"6928": "TeamChainRestartDungeonRsp",
"22413": "TeamChainDungeonInfoNotify",
"24365": "TeamChainTakeCostumeRewardReq",
"568": "TeamChainTakeCostumeRewardRsp",
"809": "KJBJNDPDFCC",
"29308": "PBCODJKGDFD",
"3604": "WindSeedType1Notify",
"24421": "WindSeedType2Notify",
"5640": "WindSeedType3Notify",
"21706": "ElectroherculesBattleSelectDifficultyReq",
"2828": "ElectroherculesBattleSelectDifficultyRsp",
"6962": "ElectroherculesBattleSettleNotify",
"22178": "NFBGJIBFCEH",
"9992": "IGHNAGOKNBL",
"6721": "KHJHJNCDHEE",
"4599": "PDKMHGFFKHJ",
"20828": "AMMBHMNGBIH",
"26940": "LLKBDHNJGLL",
"20475": "BKOHLDCHKBL",
"4003": "CIADDPPKCOA",
"9773": "PFEBDJAPBMO",
"24802": "HFNIHCDJIFD",
"23899": "EGBBGCCNLAG",
"24266": "OGGDBLKGGKC",
"6736": "JEAPJLNHGDA",
"27135": "JBKGINOICMA",
"5539": "MJAOKDFGEGB",
"24601": "KBCKHPFELPB",
"1219": "AKEKAPHAIPN",
"20082": "DCGABIALAGF",
"27273": "CLPDDPGNEAF",
"1447": "LOAOLPIDGJF",
"1474": "FLNPBGMMBMD",
"22865": "LLHPKAAKOBI",
"7083": "CICHPMMMFLO",
"2672": "EGJCPABDNMD",
"3983": "FDNFMIDCFOL",
"24331": "OIPEIOLPFLF",
"20845": "NINBCGKEHON",
"21955": "OEAHHAEFCMI",
"29023": "LHGCGANIAOF",
"6760": "HLAHDPMIDCB",
"21047": "NEOJOMHHKBL",
"5126": "HOEJIJICACG",
"20784": "CEFOOIFIHMG",
"5545": "BGJBIIDKDBL",
"4000": "FDGBOPPDGPF",
"4872": "MMEJNJMCOHC",
"24713": "NPMPKBMCKKM",
"3314": "FFLGIBAFMLP",
"25158": "AOJPBFBPDNB",
"24031": "HEIPNKHGJIJ",
"7592": "NEBEJHAJFIP",
"1671": "LFGPAENKMHH",
"20872": "KMLGHHPJPNG",
"9111": "GOBMIGNKFNB",
"273": "BOFOFKKOBNO",
"6373": "JNKBIDLKOPK",
"5460": "PJEFHPONADB",
"23560": "CALEMNFCNMO",
"7979": "LAIAFIAKLGO",
"27352": "FCDJHJFAJPJ",
"22165": "JBEFNEEGLME",
"25568": "NLBAAIJOONF",
"23543": "KNFDGBHHPDD",
"6465": "ACOPFPFIJHN",
"4319": "DKOCBKNLOLK",
"4637": "DLPOOFICIAA",
"444": "NBLNIJDNFOH",
"5793": "DBPPJFBEBNG",
"29488": "IGOICIJJPPN",
"6459": "GKIGNHNKMBK",
"24385": "DOKNLFEAADL",
"7902": "GBDBJLKOGPI",
"22983": "DNEOEKMJMCD",
"20710": "CIOOHCBKMPO",
"2702": "HNICDKJKGNA",
"5920": "PFJJKNFPBEE",
"26203": "HKFFLADFDKJ",
"413": "MMEMEGNCJDI",
"3795": "JBNCCGJEGGF",
"20912": "OBEDAFIDGEE",
"28216": "LJMGEBIKHMN",
"29405": "NPFPCAOJIHF",
"5524": "FCNNCJMCABC",
"1762": "CKNDPMKOCJG",
"9278": "NIAEIFIIDLP",
"364": "NMCDCDNDENC",
"419": "IICFKNGMAJP",
"27993": "HFFMJPHDGDP",
"23308": "DHKMFNNAKIA",
"9609": "PIIADOAJGDF",
"7973": "GOFDKBJDKIK",
"6914": "NJENFOBFFOH",
"20672": "IICLEHIIMJE",
"9443": "KBEFCLEIPFB",
"6089": "HAPIGIKLLKJ",
"1441": "AMDBBLLFLHG",
"21924": "OMHCJJJOCMC",
"2498": "IFNPCPOEOCH",
"7018": "JOFKBKCIPFJ",
"24154": "CBJILHJLOMC",
"20304": "IJPKNMAJDCF",
"6811": "PEPKHLDBAMA",
"21730": "LHOPKHEKKCJ",
"2745": "MKACPHAGHMB",
"29215": "CLCJPBMMNCM",
"713": "KCLOHPFBPGJ",
"24452": "ONMIAIGDACA",
"24535": "CLPLPHLJMAN",
"24504": "KGHOCFKDEOJ",
"26830": "EEPAKEHEJIJ",
"2926": "JPKNJKAKLCI",
"28314": "BFECBNMGCJJ",
"6570": "JNNBPPEMMOJ",
"3017": "GDHNFCHHCAK",
"24173": "FCEDDGJPMLM",
"26609": "MPIEGBJMCII",
"22125": "CIDKAMOJHFG",
"1088": "GAHKMKNFFNJ",
"250": "JCIAFJKAFLK",
"25384": "FKCLPEOABII",
"23584": "JDLCLCMJMIB",
"27530": "JOGPJKFOGPG",
"22098": "GAMKOKMNMAL",
"1387": "HDEKEDJCDBN",
"7371": "IOGEKMFBNGK",
"20990": "LLAAGMIOGOM",
"2484": "MLBKCAJINOE",
"22686": "EKPMMIKBBAN",
"21499": "EHBPMANLCIK",
"7155": "EHMBAEDEBFG",
"20002": "BIOILPNCJNI",
"6228": "BPOLCGACIHE",
"28548": "CMACKCODIDM",
"27514": "BLDHOHDIBHB",
"5647": "EDFGFDEBPGM",
"1229": "HDFKAFDLNNC",
"24314": "AJKHEOFNGBA",
"4653": "FGBDDPEFMAG",
"23225": "NICEKLKDKKG",
"668": "JOHBAPLLNDO",
"25314": "NGLMGNCHAJA",
"4953": "FKEJFPBCIIF",
"5806": "IANJNPDOFCN",
"28108": "KDDJDIMKNMD",
"25246": "EMNFCLHMEDN",
"5881": "KDDHOBPBJHE",
"5249": "NNDBEOLHEJA",
"27536": "CIBJGFDGJIP",
"27678": "NNPFNALGPEF",
"9236": "IBKGCKMEKNM",
"22383": "NLJCDKEFBHJ",
"27613": "DHIEFEPGIFB",
"29929": "OLPBOGNBDOC",
"23399": "FMPJIGFCEIF",
"848": "HLOMJEPOLBD",
"2579": "PFHLJEPJHOG",
"26098": "LGNAPKHKOAC",
"23934": "PCMGLNPHKKG",
"8344": "KEKBIHIHKGI",
"6408": "FPEPLJDLDOM",
"3978": "DIHKEFDNDBL",
"25060": "LDPKIDAKNHB",
"9245": "FOHCJABNFED",
"27310": "HKOHFECJOFB",
"1557": "BKNAMDDEIKH",
"27002": "IENLBOHMOGH",
"7876": "GFAFMFOLOMK",
"6436": "NBNGOKEICFC",
"26519": "MADOEBJIOOC",
"25002": "LAAAMKNJIEH",
"20236": "IPCIKHMGALH",
"21685": "AranaraCollectionDataNotify",
"4632": "AddAranaraCollectionNotify",
"6277": "CataLogFinishedGlobalWatcherAllDataNotify",
"28630": "CataLogNewFinishedGlobalWatcherNotify",
"7458": "AvatarAddNotify",
"8219": "AvatarDelNotify",
"5889": "SetUpAvatarTeamReq",
"8572": "SetUpAvatarTeamRsp",
"9406": "ChooseCurAvatarTeamReq",
"4031": "ChooseCurAvatarTeamRsp",
"23169": "ChangeAvatarReq",
"22163": "ChangeAvatarRsp",
"23288": "AvatarPromoteReq",
"8592": "AvatarPromoteRsp",
"9537": "SpringUseReq",
"22687": "SpringUseRsp",
"29491": "RefreshBackgroundAvatarReq",
"5063": "RefreshBackgroundAvatarRsp",
"7828": "AvatarTeamUpdateNotify",
"29811": "AvatarDataNotify",
"28204": "AvatarUpgradeReq",
"24216": "AvatarUpgradeRsp",
"4506": "AvatarDieAnimationEndReq",
"24745": "AvatarDieAnimationEndRsp",
"3696": "AvatarChangeElementTypeReq",
"26227": "AvatarChangeElementTypeRsp",
"29004": "AvatarFetterDataNotify",
"26803": "AvatarExpeditionDataNotify",
"24160": "AvatarExpeditionAllDataReq",
"3990": "AvatarExpeditionAllDataRsp",
"751": "AvatarExpeditionStartReq",
"28415": "AvatarExpeditionStartRsp",
"22881": "AvatarExpeditionCallBackReq",
"22955": "AvatarExpeditionCallBackRsp",
"4847": "AvatarExpeditionGetRewardReq",
"25237": "AvatarExpeditionGetRewardRsp",
"29260": "ChangeMpTeamAvatarReq",
"352": "ChangeMpTeamAvatarRsp",
"24187": "ChangeTeamNameReq",
"29496": "ChangeTeamNameRsp",
"4509": "SceneTeamUpdateNotify",
"26656": "FocusAvatarReq",
"7821": "FocusAvatarRsp",
"704": "AvatarSatiationDataNotify",
"824": "AvatarWearFlycloakReq",
"21633": "AvatarWearFlycloakRsp",
"23578": "AvatarFlycloakChangeNotify",
"29528": "AvatarGainFlycloakNotify",
"21354": "AvatarEquipAffixStartNotify",
"28996": "AvatarFetterLevelRewardReq",
"3975": "AvatarFetterLevelRewardRsp",
"7037": "AddNoGachaAvatarCardNotify",
"993": "AvatarPromoteGetRewardReq",
"7336": "AvatarPromoteGetRewardRsp",
"8840": "AvatarChangeCostumeReq",
"9148": "AvatarChangeCostumeRsp",
"22376": "AvatarChangeCostumeNotify",
"24251": "AvatarGainCostumeNotify",
"4097": "AvatarChangeAnimHashReq",
"27826": "AvatarChangeAnimHashRsp",
"8425": "PersistentDungeonSwitchAvatarReq",
"7969": "PersistentDungeonSwitchAvatarRsp",
"22083": "AddBackupAvatarTeamReq",
"7930": "AddBackupAvatarTeamRsp",
"9455": "DelBackupAvatarTeamReq",
"3661": "DelBackupAvatarTeamRsp",
"9854": "AvatarTeamAllDataNotify",
"26468": "AvatarRenameInfoNotify",
"29042": "ItemRenameAvatarReq",
"27302": "ItemRenameAvatarRsp",
"6998": "DAILBGKEPIG",
"26222": "EAAGMGDBHHB",
"24983": "JOBPCPJHCJA",
"6470": "NHGGNAEFDKO",
"26261": "GBDFCJACBAL",
"9082": "GJONALLPFLJ",
"3474": "BattlePassAllDataNotify",
"24008": "BattlePassMissionUpdateNotify",
"21680": "BattlePassMissionDelNotify",
"27464": "BattlePassCurScheduleUpdateNotify",
"28914": "TakeBattlePassRewardReq",
"25609": "TakeBattlePassRewardRsp",
"20580": "TakeBattlePassMissionPointReq",
"9060": "TakeBattlePassMissionPointRsp",
"2201": "GetBattlePassProductReq",
"29703": "GetBattlePassProductRsp",
"7320": "SetBattlePassViewedReq",
"25281": "SetBattlePassViewedRsp",
"28080": "BattlePassBuySuccNotify",
"20824": "BuyBattlePassLevelReq",
"26570": "BuyBattlePassLevelRsp",
"29592": "GetBlossomBriefInfoListReq",
"8452": "GetBlossomBriefInfoListRsp",
"29177": "BlossomBriefInfoNotify",
"2494": "WorldOwnerBlossomBriefInfoNotify",
"7500": "WorldOwnerBlossomScheduleInfoNotify",
"2992": "BlossomChestCreateNotify",
"4362": "OpenBlossomCircleCampGuideNotify",
"8163": "PrivateChatReq",
"4033": "PrivateChatRsp",
"29471": "PrivateChatNotify",
"22346": "PullPrivateChatReq",
"4681": "PullPrivateChatRsp",
"23337": "PullRecentChatReq",
"308": "PullRecentChatRsp",
"5538": "ReadPrivateChatReq",
"9593": "ReadPrivateChatRsp",
"28285": "ChatChannelUpdateNotify",
"3323": "ChatChannelDataNotify",
"21066": "ChatChannelShieldNotify",
"5319": "ChatChannelInfoNotify",
"29256": "CodexDataFullNotify",
"6551": "CodexDataUpdateNotify",
"24690": "QueryCodexMonsterBeKilledNumReq",
"9121": "QueryCodexMonsterBeKilledNumRsp",
"25133": "ViewCodexReq",
"25216": "ViewCodexRsp",
"26795": "SetCodexPushtipsReadReq",
"20900": "SetCodexPushtipsReadRsp",
"2587": "AllCoopInfoNotify",
"1415": "MainCoopUpdateNotify",
"764": "SaveMainCoopReq",
"27766": "SaveMainCoopRsp",
"20482": "FinishMainCoopReq",
"23766": "FinishMainCoopRsp",
"21157": "CoopDataNotify",
"6932": "CoopChapterUpdateNotify",
"25026": "CoopCgUpdateNotify",
"1034": "CoopRewardUpdateNotify",
"27931": "UnlockCoopChapterReq",
"3122": "UnlockCoopChapterRsp",
"7401": "CoopPointUpdateNotify",
"22463": "StartCoopPointReq",
"1231": "StartCoopPointRsp",
"27925": "CancelCoopTaskReq",
"26816": "CancelCoopTaskRsp",
"23462": "TakeCoopRewardReq",
"22350": "TakeCoopRewardRsp",
"29927": "CoopProgressUpdateNotify",
"24551": "SaveCoopDialogReq",
"8107": "SaveCoopDialogRsp",
"26025": "CoopCgShowNotify",
"2879": "SetCoopChapterViewedReq",
"23389": "SetCoopChapterViewedRsp",
"2503": "MainCoopFailNotify",
"23624": "EnterCustomDungeonReq",
"22598": "EnterCustomDungeonRsp",
"7311": "SaveCustomDungeonRoomReq",
"6751": "SaveCustomDungeonRoomRsp",
"25611": "ChangeCustomDungeonRoomReq",
"23301": "ChangeCustomDungeonRoomRsp",
"24046": "RemoveCustomDungeonReq",
"28228": "RemoveCustomDungeonRsp",
"28599": "TryCustomDungeonReq",
"9741": "TryCustomDungeonRsp",
"21897": "PublishCustomDungeonReq",
"20498": "PublishCustomDungeonRsp",
"23043": "ExitCustomDungeonTryReq",
"28040": "ExitCustomDungeonTryRsp",
"8476": "CustomDungeonUpdateNotify",
"23034": "GetRecommendCustomDungeonReq",
"4300": "GetRecommendCustomDungeonRsp",
"8591": "GetStoreCustomDungeonReq",
"23536": "GetStoreCustomDungeonRsp",
"5413": "SearchCustomDungeonReq",
"20759": "SearchCustomDungeonRsp",
"24734": "StoreCustomDungeonReq",
"28706": "StoreCustomDungeonRsp",
"6450": "LikeCustomDungeonReq",
"9496": "LikeCustomDungeonRsp",
"24516": "GetCustomDungeonReq",
"5372": "GetCustomDungeonRsp",
"22043": "CustomDungeonRecoverNotify",
"368": "BackPlayCustomDungeonOfficialReq",
"329": "BackPlayCustomDungeonOfficialRsp",
"3645": "CustomDungeonOfficialNotify",
"1660": "ReplayCustomDungeonReq",
"25962": "ReplayCustomDungeonRsp",
"8284": "CustomDungeonBattleRecordNotify",
"8657": "OutStuckCustomDungeonReq",
"9580": "OutStuckCustomDungeonRsp",
"26294": "DraftOwnerStartInviteReq",
"23377": "DraftOwnerStartInviteRsp",
"25369": "DraftOwnerInviteNotify",
"2082": "DraftGuestReplyInviteReq",
"5277": "DraftGuestReplyInviteRsp",
"969": "DraftGuestReplyInviteNotify",
"8588": "DraftInviteResultNotify",
"8918": "DraftOwnerTwiceConfirmNotify",
"6974": "DraftGuestReplyTwiceConfirmReq",
"1114": "DraftGuestReplyTwiceConfirmRsp",
"24753": "DraftTwiceConfirmResultNotify",
"8578": "DraftGuestReplyTwiceConfirmNotify",
"782": "DungeonEntryInfoReq",
"28381": "DungeonEntryInfoRsp",
"28791": "PlayerEnterDungeonReq",
"24874": "PlayerEnterDungeonRsp",
"20980": "PlayerQuitDungeonReq",
"4431": "PlayerQuitDungeonRsp",
"27817": "DungeonWayPointNotify",
"7942": "DungeonWayPointActivateReq",
"21846": "DungeonWayPointActivateRsp",
"22323": "DungeonSettleNotify",
"28240": "DungeonPlayerDieNotify",
"3884": "DungeonDieOptionReq",
"28454": "DungeonDieOptionRsp",
"7524": "DungeonShowReminderNotify",
"3239": "DungeonPlayerDieReq",
"29888": "DungeonPlayerDieRsp",
"7011": "DungeonDataNotify",
"8891": "DungeonChallengeBeginNotify",
"5847": "DungeonChallengeFinishNotify",