-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathenums_clientserver.proto
1532 lines (1528 loc) · 57.2 KB
/
enums_clientserver.proto
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
syntax = "proto2";
option optimize_for = SPEED;
option py_generic_services = false;
enum EMsg {
option allow_alias = true;
k_EMsgInvalid = 0;
k_EMsgMulti = 1;
k_EMsgProtobufWrapped = 2;
k_EMsgBaseGeneral = 100;
k_EMsgGenericReply = 100;
k_EMsgDestJobFailed = 113;
k_EMsgAlert = 115;
k_EMsgSCIDRequest = 120;
k_EMsgSCIDResponse = 121;
k_EMsgJobHeartbeat = 123;
k_EMsgHubConnect = 124;
k_EMsgSubscribe = 126;
k_EMRouteMessage = 127;
k_EMsgWGRequest = 130;
k_EMsgWGResponse = 131;
k_EMsgKeepAlive = 132;
k_EMsgWebAPIJobRequest = 133;
k_EMsgWebAPIJobResponse = 134;
k_EMsgClientSessionStart = 135;
k_EMsgClientSessionEnd = 136;
k_EMsgClientSessionUpdate = 137;
k_EMsgStatsDeprecated = 138;
k_EMsgPing = 139;
k_EMsgPingResponse = 140;
k_EMsgStats = 141;
k_EMsgRequestFullStatsBlock = 142;
k_EMsgLoadDBOCacheItem = 143;
k_EMsgLoadDBOCacheItemResponse = 144;
k_EMsgInvalidateDBOCacheItems = 145;
k_EMsgServiceMethod = 146;
k_EMsgServiceMethodResponse = 147;
k_EMsgClientPackageVersions = 148;
k_EMsgTimestampRequest = 149;
k_EMsgTimestampResponse = 150;
k_EMsgServiceMethodCallFromClient = 151;
k_EMsgServiceMethodSendToClient = 152;
k_EMsgBaseShell = 200;
k_EMsgAssignSysID = 200;
k_EMsgExit = 201;
k_EMsgDirRequest = 202;
k_EMsgDirResponse = 203;
k_EMsgZipRequest = 204;
k_EMsgZipResponse = 205;
k_EMsgUpdateRecordResponse = 215;
k_EMsgUpdateCreditCardRequest = 221;
k_EMsgUpdateUserBanResponse = 225;
k_EMsgPrepareToExit = 226;
k_EMsgContentDescriptionUpdate = 227;
k_EMsgTestResetServer = 228;
k_EMsgUniverseChanged = 229;
k_EMsgShellConfigInfoUpdate = 230;
k_EMsgRequestWindowsEventLogEntries = 233;
k_EMsgProvideWindowsEventLogEntries = 234;
k_EMsgShellSearchLogs = 235;
k_EMsgShellSearchLogsResponse = 236;
k_EMsgShellCheckWindowsUpdates = 237;
k_EMsgShellCheckWindowsUpdatesResponse = 238;
k_EMsgTestFlushDelayedSQL = 240;
k_EMsgTestFlushDelayedSQLResponse = 241;
k_EMsgEnsureExecuteScheduledTask_TEST = 242;
k_EMsgEnsureExecuteScheduledTaskResponse_TEST = 243;
k_EMsgUpdateScheduledTaskEnableState_TEST = 244;
k_EMsgUpdateScheduledTaskEnableStateResponse_TEST = 245;
k_EMsgContentDescriptionDeltaUpdate = 246;
k_EMsgGMShellAndServerAddressUpdates = 247;
k_EMsgBaseGM = 300;
k_EMsgHeartbeat = 300;
k_EMsgShellFailed = 301;
k_EMsgExitShells = 307;
k_EMsgExitShell = 308;
k_EMsgGracefulExitShell = 309;
k_EMsgLicenseProcessingComplete = 316;
k_EMsgSetTestFlag = 317;
k_EMsgQueuedEmailsComplete = 318;
k_EMsgGMReportPHPError = 319;
k_EMsgGMDRMSync = 320;
k_EMsgPhysicalBoxInventory = 321;
k_EMsgUpdateConfigFile = 322;
k_EMsgTestInitDB = 323;
k_EMsgGMWriteConfigToSQL = 324;
k_EMsgGMLoadActivationCodes = 325;
k_EMsgGMQueueForFBS = 326;
k_EMsgGMSchemaConversionResults = 327;
k_EMsgGMWriteShellFailureToSQL = 329;
k_EMsgGMWriteStatsToSOS = 330;
k_EMsgGMGetServiceMethodRouting = 331;
k_EMsgGMGetServiceMethodRoutingResponse = 332;
k_EMsgGMTestNextBuildSchemaConversion = 334;
k_EMsgGMTestNextBuildSchemaConversionResponse = 335;
k_EMsgExpectShellRestart = 336;
k_EMsgHotFixProgress = 337;
k_EMsgGMStatsForwardToAdminConnections = 338;
k_EMsgBaseAIS = 400;
k_EMsgAISRequestContentDescription = 402;
k_EMsgAISUpdateAppInfo = 403;
k_EMsgAISGetPackageChangeNumber = 405;
k_EMsgAISGetPackageChangeNumberResponse = 406;
k_EMsgAIGetAppGCFlags = 423;
k_EMsgAIGetAppGCFlagsResponse = 424;
k_EMsgAIGetAppList = 425;
k_EMsgAIGetAppListResponse = 426;
k_EMsgAISGetCouponDefinition = 429;
k_EMsgAISGetCouponDefinitionResponse = 430;
k_EMsgAISUpdateSubordinateContentDescription = 431;
k_EMsgAISUpdateSubordinateContentDescriptionResponse = 432;
k_EMsgAISTestEnableGC = 433;
k_EMsgBaseAM = 500;
k_EMsgAMUpdateUserBanRequest = 504;
k_EMsgAMAddLicense = 505;
k_EMsgAMSendSystemIMToUser = 508;
k_EMsgAMExtendLicense = 509;
k_EMsgAMAddMinutesToLicense = 510;
k_EMsgAMCancelLicense = 511;
k_EMsgAMInitPurchase = 512;
k_EMsgAMPurchaseResponse = 513;
k_EMsgAMGetFinalPrice = 514;
k_EMsgAMGetFinalPriceResponse = 515;
k_EMsgAMGetLegacyGameKey = 516;
k_EMsgAMGetLegacyGameKeyResponse = 517;
k_EMsgAMFindHungTransactions = 518;
k_EMsgAMSetAccountTrustedRequest = 519;
k_EMsgAMCancelPurchase = 522;
k_EMsgAMNewChallenge = 523;
k_EMsgAMLoadOEMTickets = 524;
k_EMsgAMFixPendingPurchase = 525;
k_EMsgAMFixPendingPurchaseResponse = 526;
k_EMsgAMIsUserBanned = 527;
k_EMsgAMRegisterKey = 528;
k_EMsgAMLoadActivationCodes = 529;
k_EMsgAMLoadActivationCodesResponse = 530;
k_EMsgAMLookupKeyResponse = 531;
k_EMsgAMLookupKey = 532;
k_EMsgAMChatCleanup = 533;
k_EMsgAMClanCleanup = 534;
k_EMsgAMFixPendingRefund = 535;
k_EMsgAMReverseChargeback = 536;
k_EMsgAMReverseChargebackResponse = 537;
k_EMsgAMClanCleanupList = 538;
k_EMsgAMGetLicenses = 539;
k_EMsgAMGetLicensesResponse = 540;
k_EMsgAMSendCartRepurchase = 541;
k_EMsgAMSendCartRepurchaseResponse = 542;
k_EMsgAllowUserToPlayQuery = 550;
k_EMsgAllowUserToPlayResponse = 551;
k_EMsgAMVerfiyUser = 552;
k_EMsgAMClientNotPlaying = 553;
k_EMsgAMClientRequestFriendship = 554;
k_EMsgAMRelayPublishStatus = 555;
k_EMsgAMInitPurchaseResponse = 560;
k_EMsgAMRevokePurchaseResponse = 561;
k_EMsgAMRefreshGuestPasses = 563;
k_EMsgAMGrantGuestPasses = 566;
k_EMsgAMClanDataUpdated = 567;
k_EMsgAMReloadAccount = 568;
k_EMsgAMClientChatMsgRelay = 569;
k_EMsgAMChatMulti = 570;
k_EMsgAMClientChatInviteRelay = 571;
k_EMsgAMChatInvite = 572;
k_EMsgAMClientJoinChatRelay = 573;
k_EMsgAMClientChatMemberInfoRelay = 574;
k_EMsgAMPublishChatMemberInfo = 575;
k_EMsgAMClientAcceptFriendInvite = 576;
k_EMsgAMChatEnter = 577;
k_EMsgAMClientPublishRemovalFromSource = 578;
k_EMsgAMChatActionResult = 579;
k_EMsgAMFindAccounts = 580;
k_EMsgAMFindAccountsResponse = 581;
k_EMsgAMIsAccountNameInUse = 582;
k_EMsgAMIsAccountNameInUseResponse = 583;
k_EMsgAMSetAccountFlags = 584;
k_EMsgAMCreateClan = 586;
k_EMsgAMCreateClanResponse = 587;
k_EMsgAMGetClanDetails = 588;
k_EMsgAMGetClanDetailsResponse = 589;
k_EMsgAMSetPersonaName = 590;
k_EMsgAMSetAvatar = 591;
k_EMsgAMAuthenticateUser = 592;
k_EMsgAMAuthenticateUserResponse = 593;
k_EMsgAMP2PIntroducerMessage = 596;
k_EMsgClientChatAction = 597;
k_EMsgAMClientChatActionRelay = 598;
k_EMsgBaseVS = 600;
k_EMsgReqChallenge = 600;
k_EMsgVACResponse = 601;
k_EMsgReqChallengeTest = 602;
k_EMsgVSMarkCheat = 604;
k_EMsgVSAddCheat = 605;
k_EMsgVSPurgeCodeModDB = 606;
k_EMsgVSGetChallengeResults = 607;
k_EMsgVSChallengeResultText = 608;
k_EMsgVSReportLingerer = 609;
k_EMsgVSRequestManagedChallenge = 610;
k_EMsgVSLoadDBFinished = 611;
k_EMsgBaseDRMS = 625;
k_EMsgDRMBuildBlobRequest = 628;
k_EMsgDRMBuildBlobResponse = 629;
k_EMsgDRMResolveGuidRequest = 630;
k_EMsgDRMResolveGuidResponse = 631;
k_EMsgDRMVariabilityReport = 633;
k_EMsgDRMVariabilityReportResponse = 634;
k_EMsgDRMStabilityReport = 635;
k_EMsgDRMStabilityReportResponse = 636;
k_EMsgDRMDetailsReportRequest = 637;
k_EMsgDRMDetailsReportResponse = 638;
k_EMsgDRMProcessFile = 639;
k_EMsgDRMAdminUpdate = 640;
k_EMsgDRMAdminUpdateResponse = 641;
k_EMsgDRMSync = 642;
k_EMsgDRMSyncResponse = 643;
k_EMsgDRMProcessFileResponse = 644;
k_EMsgDRMEmptyGuidCache = 645;
k_EMsgDRMEmptyGuidCacheResponse = 646;
k_EMsgBaseCS = 650;
k_EMsgBaseClient = 700;
k_EMsgClientLogOn_Deprecated = 701;
k_EMsgClientAnonLogOn_Deprecated = 702;
k_EMsgClientHeartBeat = 703;
k_EMsgClientVACResponse = 704;
k_EMsgClientGamesPlayed_obsolete = 705;
k_EMsgClientLogOff = 706;
k_EMsgClientNoUDPConnectivity = 707;
k_EMsgClientConnectionStats = 710;
k_EMsgClientPingResponse = 712;
k_EMsgClientRemoveFriend = 714;
k_EMsgClientGamesPlayedNoDataBlob = 715;
k_EMsgClientChangeStatus = 716;
k_EMsgClientVacStatusResponse = 717;
k_EMsgClientFriendMsg = 718;
k_EMsgClientGameConnect_obsolete = 719;
k_EMsgClientGamesPlayed2_obsolete = 720;
k_EMsgClientGameEnded_obsolete = 721;
k_EMsgClientSystemIM = 726;
k_EMsgClientSystemIMAck = 727;
k_EMsgClientGetLicenses = 728;
k_EMsgClientGetLegacyGameKey = 730;
k_EMsgClientContentServerLogOn_Deprecated = 731;
k_EMsgClientAckVACBan2 = 732;
k_EMsgClientGetPurchaseReceipts = 736;
k_EMsgClientGamesPlayed3_obsolete = 738;
k_EMsgClientAckGuestPass = 740;
k_EMsgClientRedeemGuestPass = 741;
k_EMsgClientGamesPlayed = 742;
k_EMsgClientRegisterKey = 743;
k_EMsgClientInviteUserToClan = 744;
k_EMsgClientAcknowledgeClanInvite = 745;
k_EMsgClientPurchaseWithMachineID = 746;
k_EMsgClientAppUsageEvent = 747;
k_EMsgClientLogOnResponse = 751;
k_EMsgClientSetHeartbeatRate = 755;
k_EMsgClientNotLoggedOnDeprecated = 756;
k_EMsgClientLoggedOff = 757;
k_EMsgGSApprove = 758;
k_EMsgGSDeny = 759;
k_EMsgGSKick = 760;
k_EMsgClientPurchaseResponse = 763;
k_EMsgClientPing = 764;
k_EMsgClientNOP = 765;
k_EMsgClientPersonaState = 766;
k_EMsgClientFriendsList = 767;
k_EMsgClientAccountInfo = 768;
k_EMsgClientNewsUpdate = 771;
k_EMsgClientGameConnectDeny = 773;
k_EMsgGSStatusReply = 774;
k_EMsgClientGameConnectTokens = 779;
k_EMsgClientLicenseList = 780;
k_EMsgClientVACBanStatus = 782;
k_EMsgClientCMList = 783;
k_EMsgClientEncryptPct = 784;
k_EMsgClientGetLegacyGameKeyResponse = 785;
k_EMsgClientAddFriend = 791;
k_EMsgClientAddFriendResponse = 792;
k_EMsgClientAckGuestPassResponse = 796;
k_EMsgClientRedeemGuestPassResponse = 797;
k_EMsgClientUpdateGuestPassesList = 798;
k_EMsgClientChatMsg = 799;
k_EMsgClientChatInvite = 800;
k_EMsgClientJoinChat = 801;
k_EMsgClientChatMemberInfo = 802;
k_EMsgClientLogOnWithCredentials_Deprecated = 803;
k_EMsgClientPasswordChangeResponse = 805;
k_EMsgClientChatEnter = 807;
k_EMsgClientFriendRemovedFromSource = 808;
k_EMsgClientCreateChat = 809;
k_EMsgClientCreateChatResponse = 810;
k_EMsgClientP2PIntroducerMessage = 813;
k_EMsgClientChatActionResult = 814;
k_EMsgClientRequestFriendData = 815;
k_EMsgClientGetUserStats = 818;
k_EMsgClientGetUserStatsResponse = 819;
k_EMsgClientStoreUserStats = 820;
k_EMsgClientStoreUserStatsResponse = 821;
k_EMsgClientClanState = 822;
k_EMsgClientServiceModule = 830;
k_EMsgClientServiceCall = 831;
k_EMsgClientServiceCallResponse = 832;
k_EMsgClientNatTraversalStatEvent = 839;
k_EMsgClientSteamUsageEvent = 842;
k_EMsgClientCheckPassword = 845;
k_EMsgClientResetPassword = 846;
k_EMsgClientCheckPasswordResponse = 848;
k_EMsgClientResetPasswordResponse = 849;
k_EMsgClientSessionToken = 850;
k_EMsgClientDRMProblemReport = 851;
k_EMsgClientSetIgnoreFriend = 855;
k_EMsgClientSetIgnoreFriendResponse = 856;
k_EMsgClientGetAppOwnershipTicket = 857;
k_EMsgClientGetAppOwnershipTicketResponse = 858;
k_EMsgClientGetLobbyListResponse = 860;
k_EMsgClientServerList = 880;
k_EMsgClientDRMBlobRequest = 896;
k_EMsgClientDRMBlobResponse = 897;
k_EMsgBaseGameServer = 900;
k_EMsgGSDisconnectNotice = 901;
k_EMsgGSStatus = 903;
k_EMsgGSUserPlaying = 905;
k_EMsgGSStatus2 = 906;
k_EMsgGSStatusUpdate_Unused = 907;
k_EMsgGSServerType = 908;
k_EMsgGSPlayerList = 909;
k_EMsgGSGetUserAchievementStatus = 910;
k_EMsgGSGetUserAchievementStatusResponse = 911;
k_EMsgGSGetPlayStats = 918;
k_EMsgGSGetPlayStatsResponse = 919;
k_EMsgGSGetUserGroupStatus = 920;
k_EMsgAMGetUserGroupStatus = 921;
k_EMsgAMGetUserGroupStatusResponse = 922;
k_EMsgGSGetUserGroupStatusResponse = 923;
k_EMsgGSGetReputation = 936;
k_EMsgGSGetReputationResponse = 937;
k_EMsgGSAssociateWithClan = 938;
k_EMsgGSAssociateWithClanResponse = 939;
k_EMsgGSComputeNewPlayerCompatibility = 940;
k_EMsgGSComputeNewPlayerCompatibilityResponse = 941;
k_EMsgBaseAdmin = 1000;
k_EMsgAdminCmd = 1000;
k_EMsgAdminCmdResponse = 1004;
k_EMsgAdminLogListenRequest = 1005;
k_EMsgAdminLogEvent = 1006;
k_EMsgUniverseData = 1010;
k_EMsgAdminSpew = 1019;
k_EMsgAdminConsoleTitle = 1020;
k_EMsgAdminGCSpew = 1023;
k_EMsgAdminGCCommand = 1024;
k_EMsgAdminGCGetCommandList = 1025;
k_EMsgAdminGCGetCommandListResponse = 1026;
k_EMsgFBSConnectionData = 1027;
k_EMsgAdminMsgSpew = 1028;
k_EMsgBaseFBS = 1100;
k_EMsgFBSReqVersion = 1100;
k_EMsgFBSVersionInfo = 1101;
k_EMsgFBSForceRefresh = 1102;
k_EMsgFBSForceBounce = 1103;
k_EMsgFBSDeployPackage = 1104;
k_EMsgFBSDeployResponse = 1105;
k_EMsgFBSUpdateBootstrapper = 1106;
k_EMsgFBSSetState = 1107;
k_EMsgFBSApplyOSUpdates = 1108;
k_EMsgFBSRunCMDScript = 1109;
k_EMsgFBSRebootBox = 1110;
k_EMsgFBSSetBigBrotherMode = 1111;
k_EMsgFBSMinidumpServer = 1112;
k_EMsgFBSDeployHotFixPackage = 1114;
k_EMsgFBSDeployHotFixResponse = 1115;
k_EMsgFBSDownloadHotFix = 1116;
k_EMsgFBSDownloadHotFixResponse = 1117;
k_EMsgFBSUpdateTargetConfigFile = 1118;
k_EMsgFBSApplyAccountCred = 1119;
k_EMsgFBSApplyAccountCredResponse = 1120;
k_EMsgFBSSetShellCount = 1121;
k_EMsgFBSTerminateShell = 1122;
k_EMsgFBSQueryGMForRequest = 1123;
k_EMsgFBSQueryGMResponse = 1124;
k_EMsgFBSTerminateZombies = 1125;
k_EMsgFBSInfoFromBootstrapper = 1126;
k_EMsgFBSRebootBoxResponse = 1127;
k_EMsgFBSBootstrapperPackageRequest = 1128;
k_EMsgFBSBootstrapperPackageResponse = 1129;
k_EMsgFBSBootstrapperGetPackageChunk = 1130;
k_EMsgFBSBootstrapperGetPackageChunkResponse = 1131;
k_EMsgFBSBootstrapperPackageTransferProgress = 1132;
k_EMsgFBSRestartBootstrapper = 1133;
k_EMsgFBSPauseFrozenDumps = 1134;
k_EMsgBaseFileXfer = 1200;
k_EMsgFileXferRequest = 1200;
k_EMsgFileXferResponse = 1201;
k_EMsgFileXferData = 1202;
k_EMsgFileXferEnd = 1203;
k_EMsgFileXferDataAck = 1204;
k_EMsgBaseChannelAuth = 1300;
k_EMsgChannelAuthChallenge = 1300;
k_EMsgChannelAuthResponse = 1301;
k_EMsgChannelAuthResult = 1302;
k_EMsgChannelEncryptRequest = 1303;
k_EMsgChannelEncryptResponse = 1304;
k_EMsgChannelEncryptResult = 1305;
k_EMsgBaseBS = 1400;
k_EMsgBSPurchaseStart = 1401;
k_EMsgBSPurchaseResponse = 1402;
k_EMsgBSAuthenticateCCTrans = 1403;
k_EMsgBSAuthenticateCCTransResponse = 1404;
k_EMsgBSSettleComplete = 1406;
k_EMsgBSInitPayPalTxn = 1408;
k_EMsgBSInitPayPalTxnResponse = 1409;
k_EMsgBSGetPayPalUserInfo = 1410;
k_EMsgBSGetPayPalUserInfoResponse = 1411;
k_EMsgBSPaymentInstrBan = 1417;
k_EMsgBSPaymentInstrBanResponse = 1418;
k_EMsgBSInitGCBankXferTxn = 1421;
k_EMsgBSInitGCBankXferTxnResponse = 1422;
k_EMsgBSCommitGCTxn = 1425;
k_EMsgBSQueryTransactionStatus = 1426;
k_EMsgBSQueryTransactionStatusResponse = 1427;
k_EMsgBSQueryTxnExtendedInfo = 1433;
k_EMsgBSQueryTxnExtendedInfoResponse = 1434;
k_EMsgBSUpdateConversionRates = 1435;
k_EMsgBSPurchaseRunFraudChecks = 1437;
k_EMsgBSPurchaseRunFraudChecksResponse = 1438;
k_EMsgBSQueryBankInformation = 1440;
k_EMsgBSQueryBankInformationResponse = 1441;
k_EMsgBSValidateXsollaSignature = 1445;
k_EMsgBSValidateXsollaSignatureResponse = 1446;
k_EMsgBSQiwiWalletInvoice = 1448;
k_EMsgBSQiwiWalletInvoiceResponse = 1449;
k_EMsgBSUpdateInventoryFromProPack = 1450;
k_EMsgBSUpdateInventoryFromProPackResponse = 1451;
k_EMsgBSSendShippingRequest = 1452;
k_EMsgBSSendShippingRequestResponse = 1453;
k_EMsgBSGetProPackOrderStatus = 1454;
k_EMsgBSGetProPackOrderStatusResponse = 1455;
k_EMsgBSCheckJobRunning = 1456;
k_EMsgBSCheckJobRunningResponse = 1457;
k_EMsgBSResetPackagePurchaseRateLimit = 1458;
k_EMsgBSResetPackagePurchaseRateLimitResponse = 1459;
k_EMsgBSUpdatePaymentData = 1460;
k_EMsgBSUpdatePaymentDataResponse = 1461;
k_EMsgBSGetBillingAddress = 1462;
k_EMsgBSGetBillingAddressResponse = 1463;
k_EMsgBSGetCreditCardInfo = 1464;
k_EMsgBSGetCreditCardInfoResponse = 1465;
k_EMsgBSRemoveExpiredPaymentData = 1468;
k_EMsgBSRemoveExpiredPaymentDataResponse = 1469;
k_EMsgBSConvertToCurrentKeys = 1470;
k_EMsgBSConvertToCurrentKeysResponse = 1471;
k_EMsgBSInitPurchase = 1472;
k_EMsgBSInitPurchaseResponse = 1473;
k_EMsgBSCompletePurchase = 1474;
k_EMsgBSCompletePurchaseResponse = 1475;
k_EMsgBSPruneCardUsageStats = 1476;
k_EMsgBSPruneCardUsageStatsResponse = 1477;
k_EMsgBSStoreBankInformation = 1478;
k_EMsgBSStoreBankInformationResponse = 1479;
k_EMsgBSVerifyPOSAKey = 1480;
k_EMsgBSVerifyPOSAKeyResponse = 1481;
k_EMsgBSReverseRedeemPOSAKey = 1482;
k_EMsgBSReverseRedeemPOSAKeyResponse = 1483;
k_EMsgBSQueryFindCreditCard = 1484;
k_EMsgBSQueryFindCreditCardResponse = 1485;
k_EMsgBSStatusInquiryPOSAKey = 1486;
k_EMsgBSStatusInquiryPOSAKeyResponse = 1487;
k_EMsgBSBoaCompraConfirmProductDelivery = 1494;
k_EMsgBSBoaCompraConfirmProductDeliveryResponse = 1495;
k_EMsgBSGenerateBoaCompraMD5 = 1496;
k_EMsgBSGenerateBoaCompraMD5Response = 1497;
k_EMsgBSCommitWPTxn = 1498;
k_EMsgBSCommitAdyenTxn = 1499;
k_EMsgBaseATS = 1500;
k_EMsgATSStartStressTest = 1501;
k_EMsgATSStopStressTest = 1502;
k_EMsgATSRunFailServerTest = 1503;
k_EMsgATSUFSPerfTestTask = 1504;
k_EMsgATSUFSPerfTestResponse = 1505;
k_EMsgATSCycleTCM = 1506;
k_EMsgATSInitDRMSStressTest = 1507;
k_EMsgATSCallTest = 1508;
k_EMsgATSCallTestReply = 1509;
k_EMsgATSStartExternalStress = 1510;
k_EMsgATSExternalStressJobStart = 1511;
k_EMsgATSExternalStressJobQueued = 1512;
k_EMsgATSExternalStressJobRunning = 1513;
k_EMsgATSExternalStressJobStopped = 1514;
k_EMsgATSExternalStressJobStopAll = 1515;
k_EMsgATSExternalStressActionResult = 1516;
k_EMsgATSStarted = 1517;
k_EMsgATSCSPerfTestTask = 1518;
k_EMsgATSCSPerfTestResponse = 1519;
k_EMsgBaseDP = 1600;
k_EMsgDPSetPublishingState = 1601;
k_EMsgDPUniquePlayersStat = 1603;
k_EMsgDPStreamingUniquePlayersStat = 1604;
k_EMsgDPBlockingStats = 1607;
k_EMsgDPNatTraversalStats = 1608;
k_EMsgDPCloudStats = 1612;
k_EMsgDPGetPlayerCount = 1615;
k_EMsgDPGetPlayerCountResponse = 1616;
k_EMsgDPGameServersPlayersStats = 1617;
k_EMsgClientDPCheckSpecialSurvey = 1620;
k_EMsgClientDPCheckSpecialSurveyResponse = 1621;
k_EMsgClientDPSendSpecialSurveyResponse = 1622;
k_EMsgClientDPSendSpecialSurveyResponseReply = 1623;
k_EMsgDPStoreSaleStatistics = 1624;
k_EMsgClientDPUpdateAppJobReport = 1625;
k_EMsgClientDPUnsignedInstallScript = 1627;
k_EMsgDPPartnerMicroTxns = 1628;
k_EMsgDPPartnerMicroTxnsResponse = 1629;
k_EMsgClientDPContentStatsReport = 1630;
k_EMsgDPVRUniquePlayersStat = 1631;
k_EMsgBaseCM = 1700;
k_EMsgCMSetAllowState = 1701;
k_EMsgCMSpewAllowState = 1702;
k_EMsgCMSessionRejected = 1703;
k_EMsgCMSetSecrets = 1704;
k_EMsgCMGetSecrets = 1705;
k_EMsgBaseGC = 2200;
k_EMsgGCCmdRevive = 2203;
k_EMsgGCCmdDown = 2206;
k_EMsgGCCmdDeploy = 2207;
k_EMsgGCCmdDeployResponse = 2208;
k_EMsgGCCmdSwitch = 2209;
k_EMsgAMRefreshSessions = 2210;
k_EMsgGCAchievementAwarded = 2212;
k_EMsgGCSystemMessage = 2213;
k_EMsgGCCmdStatus = 2216;
k_EMsgGCRegisterWebInterfaces_Deprecated = 2217;
k_EMsgGCGetAccountDetails_DEPRECATED = 2218;
k_EMsgGCInterAppMessage = 2219;
k_EMsgGCGetEmailTemplate = 2220;
k_EMsgGCGetEmailTemplateResponse = 2221;
k_EMsgGCHRelay = 2222;
k_EMsgGCHRelayToClient = 2223;
k_EMsgGCHUpdateSession = 2224;
k_EMsgGCHRequestUpdateSession = 2225;
k_EMsgGCHRequestStatus = 2226;
k_EMsgGCHRequestStatusResponse = 2227;
k_EMsgGCHAccountVacStatusChange = 2228;
k_EMsgGCHSpawnGC = 2229;
k_EMsgGCHSpawnGCResponse = 2230;
k_EMsgGCHKillGC = 2231;
k_EMsgGCHKillGCResponse = 2232;
k_EMsgGCHAccountTradeBanStatusChange = 2233;
k_EMsgGCHAccountLockStatusChange = 2234;
k_EMsgGCHVacVerificationChange = 2235;
k_EMsgGCHAccountPhoneNumberChange = 2236;
k_EMsgGCHAccountTwoFactorChange = 2237;
k_EMsgGCHInviteUserToLobby = 2238;
k_EMsgGCHUpdateMultipleSessions = 2239;
k_EMsgGCHMarkAppSessionsAuthoritative = 2240;
k_EMsgGCHRecurringSubscriptionStatusChange = 2241;
k_EMsgGCHAppCheersReceived = 2242;
k_EMsgGCHAppCheersGetAllowedTypes = 2243;
k_EMsgGCHAppCheersGetAllowedTypesResponse = 2244;
k_EMsgBaseP2P = 2500;
k_EMsgP2PIntroducerMessage = 2502;
k_EMsgBaseSM = 2900;
k_EMsgSMExpensiveReport = 2902;
k_EMsgSMHourlyReport = 2903;
k_EMsgSMPartitionRenames = 2905;
k_EMsgSMMonitorSpace = 2906;
k_EMsgSMTestNextBuildSchemaConversion = 2907;
k_EMsgSMTestNextBuildSchemaConversionResponse = 2908;
k_EMsgBaseTest = 3000;
k_EMsgFailServer = 3000;
k_EMsgJobHeartbeatTest = 3001;
k_EMsgJobHeartbeatTestResponse = 3002;
k_EMsgBaseFTSRange = 3100;
k_EMsgBaseCCSRange = 3150;
k_EMsgCCSDeleteAllCommentsByAuthor = 3161;
k_EMsgCCSDeleteAllCommentsByAuthorResponse = 3162;
k_EMsgBaseLBSRange = 3200;
k_EMsgLBSSetScore = 3201;
k_EMsgLBSSetScoreResponse = 3202;
k_EMsgLBSFindOrCreateLB = 3203;
k_EMsgLBSFindOrCreateLBResponse = 3204;
k_EMsgLBSGetLBEntries = 3205;
k_EMsgLBSGetLBEntriesResponse = 3206;
k_EMsgLBSGetLBList = 3207;
k_EMsgLBSGetLBListResponse = 3208;
k_EMsgLBSSetLBDetails = 3209;
k_EMsgLBSDeleteLB = 3210;
k_EMsgLBSDeleteLBEntry = 3211;
k_EMsgLBSResetLB = 3212;
k_EMsgLBSResetLBResponse = 3213;
k_EMsgLBSDeleteLBResponse = 3214;
k_EMsgBaseOGS = 3400;
k_EMsgOGSBeginSession = 3401;
k_EMsgOGSBeginSessionResponse = 3402;
k_EMsgOGSEndSession = 3403;
k_EMsgOGSEndSessionResponse = 3404;
k_EMsgOGSWriteAppSessionRow = 3406;
k_EMsgBaseBRP = 3600;
k_EMsgBRPPostTransactionTax = 3629;
k_EMsgBRPPostTransactionTaxResponse = 3630;
k_EMsgBaseAMRange2 = 4000;
k_EMsgAMCreateChat = 4001;
k_EMsgAMCreateChatResponse = 4002;
k_EMsgAMSetProfileURL = 4005;
k_EMsgAMGetAccountEmailAddress = 4006;
k_EMsgAMGetAccountEmailAddressResponse = 4007;
k_EMsgAMRequestClanData = 4008;
k_EMsgAMRouteToClients = 4009;
k_EMsgAMLeaveClan = 4010;
k_EMsgAMClanPermissions = 4011;
k_EMsgAMClanPermissionsResponse = 4012;
k_EMsgAMCreateClanEventDummyForRateLimiting = 4013;
k_EMsgAMUpdateClanEventDummyForRateLimiting = 4015;
k_EMsgAMSetClanPermissionSettings = 4021;
k_EMsgAMSetClanPermissionSettingsResponse = 4022;
k_EMsgAMGetClanPermissionSettings = 4023;
k_EMsgAMGetClanPermissionSettingsResponse = 4024;
k_EMsgAMPublishChatRoomInfo = 4025;
k_EMsgClientChatRoomInfo = 4026;
k_EMsgAMGetClanHistory = 4039;
k_EMsgAMGetClanHistoryResponse = 4040;
k_EMsgAMGetClanPermissionBits = 4041;
k_EMsgAMGetClanPermissionBitsResponse = 4042;
k_EMsgAMSetClanPermissionBits = 4043;
k_EMsgAMSetClanPermissionBitsResponse = 4044;
k_EMsgAMSessionInfoRequest = 4045;
k_EMsgAMSessionInfoResponse = 4046;
k_EMsgAMValidateWGToken = 4047;
k_EMsgAMGetClanRank = 4050;
k_EMsgAMGetClanRankResponse = 4051;
k_EMsgAMSetClanRank = 4052;
k_EMsgAMSetClanRankResponse = 4053;
k_EMsgAMGetClanPOTW = 4054;
k_EMsgAMGetClanPOTWResponse = 4055;
k_EMsgAMSetClanPOTW = 4056;
k_EMsgAMSetClanPOTWResponse = 4057;
k_EMsgAMDumpUser = 4059;
k_EMsgAMKickUserFromClan = 4060;
k_EMsgAMAddFounderToClan = 4061;
k_EMsgAMValidateWGTokenResponse = 4062;
k_EMsgAMSetAccountDetails = 4064;
k_EMsgAMGetChatBanList = 4065;
k_EMsgAMGetChatBanListResponse = 4066;
k_EMsgAMUnBanFromChat = 4067;
k_EMsgAMSetClanDetails = 4068;
k_EMsgUGSGetUserGameStats = 4073;
k_EMsgUGSGetUserGameStatsResponse = 4074;
k_EMsgAMCheckClanMembership = 4075;
k_EMsgAMGetClanMembers = 4076;
k_EMsgAMGetClanMembersResponse = 4077;
k_EMsgAMNotifyChatOfClanChange = 4079;
k_EMsgAMResubmitPurchase = 4080;
k_EMsgAMAddFriend = 4081;
k_EMsgAMAddFriendResponse = 4082;
k_EMsgAMRemoveFriend = 4083;
k_EMsgAMDumpClan = 4084;
k_EMsgAMChangeClanOwner = 4085;
k_EMsgAMCancelEasyCollect = 4086;
k_EMsgAMCancelEasyCollectResponse = 4087;
k_EMsgAMClansInCommon = 4090;
k_EMsgAMClansInCommonResponse = 4091;
k_EMsgAMIsValidAccountID = 4092;
k_EMsgAMWipeFriendsList = 4095;
k_EMsgAMSetIgnored = 4096;
k_EMsgAMClansInCommonCountResponse = 4097;
k_EMsgAMFriendsList = 4098;
k_EMsgAMFriendsListResponse = 4099;
k_EMsgAMFriendsInCommon = 4100;
k_EMsgAMFriendsInCommonResponse = 4101;
k_EMsgAMFriendsInCommonCountResponse = 4102;
k_EMsgAMClansInCommonCount = 4103;
k_EMsgAMChallengeVerdict = 4104;
k_EMsgAMChallengeNotification = 4105;
k_EMsgAMFindGSByIP = 4106;
k_EMsgAMFoundGSByIP = 4107;
k_EMsgAMGiftRevoked = 4108;
k_EMsgAMUserClanList = 4110;
k_EMsgAMUserClanListResponse = 4111;
k_EMsgAMGetAccountDetails2 = 4112;
k_EMsgAMGetAccountDetailsResponse2 = 4113;
k_EMsgAMSetCommunityProfileSettings = 4114;
k_EMsgAMSetCommunityProfileSettingsResponse = 4115;
k_EMsgAMGetCommunityPrivacyState = 4116;
k_EMsgAMGetCommunityPrivacyStateResponse = 4117;
k_EMsgAMCheckClanInviteRateLimiting = 4118;
k_EMsgUGSGetUserAchievementStatus = 4119;
k_EMsgAMGetIgnored = 4120;
k_EMsgAMGetIgnoredResponse = 4121;
k_EMsgAMSetIgnoredResponse = 4122;
k_EMsgAMSetFriendRelationshipNone = 4123;
k_EMsgAMGetFriendRelationship = 4124;
k_EMsgAMGetFriendRelationshipResponse = 4125;
k_EMsgAMServiceModulesCache = 4126;
k_EMsgAMServiceModulesCall = 4127;
k_EMsgAMServiceModulesCallResponse = 4128;
k_EMsgCommunityAddFriendNews = 4140;
k_EMsgAMFindClanUser = 4143;
k_EMsgAMFindClanUserResponse = 4144;
k_EMsgAMBanFromChat = 4145;
k_EMsgAMGetUserNewsSubscriptions = 4147;
k_EMsgAMGetUserNewsSubscriptionsResponse = 4148;
k_EMsgAMSetUserNewsSubscriptions = 4149;
k_EMsgAMSendQueuedEmails = 4152;
k_EMsgAMSetLicenseFlags = 4153;
k_EMsgCommunityDeleteUserNews = 4155;
k_EMsgAMAllowUserFilesRequest = 4156;
k_EMsgAMAllowUserFilesResponse = 4157;
k_EMsgAMGetAccountStatus = 4158;
k_EMsgAMGetAccountStatusResponse = 4159;
k_EMsgAMEditBanReason = 4160;
k_EMsgAMCheckClanMembershipResponse = 4161;
k_EMsgAMProbeClanMembershipList = 4162;
k_EMsgAMProbeClanMembershipListResponse = 4163;
k_EMsgUGSGetUserAchievementStatusResponse = 4164;
k_EMsgAMGetFriendsLobbies = 4165;
k_EMsgAMGetFriendsLobbiesResponse = 4166;
k_EMsgAMGetUserFriendNewsResponse = 4172;
k_EMsgCommunityGetUserFriendNews = 4173;
k_EMsgAMGetUserClansNewsResponse = 4174;
k_EMsgAMGetUserClansNews = 4175;
k_EMsgAMGetPreviousCBAccount = 4184;
k_EMsgAMGetPreviousCBAccountResponse = 4185;
k_EMsgAMGetUserLicenseHistory = 4190;
k_EMsgAMGetUserLicenseHistoryResponse = 4191;
k_EMsgAMSupportChangePassword = 4194;
k_EMsgAMSupportChangeEmail = 4195;
k_EMsgAMResetUserVerificationGSByIP = 4197;
k_EMsgAMUpdateGSPlayStats = 4198;
k_EMsgAMSupportEnableOrDisable = 4199;
k_EMsgAMGetPurchaseStatus = 4206;
k_EMsgAMSupportIsAccountEnabled = 4209;
k_EMsgAMSupportIsAccountEnabledResponse = 4210;
k_EMsgUGSGetUserStats = 4211;
k_EMsgAMGSSearch = 4213;
k_EMsgMarketingMessageUpdate = 4216;
k_EMsgChatServerRouteFriendMsg = 4219;
k_EMsgAMTicketAuthRequestOrResponse = 4220;
k_EMsgAMAddFreeLicense = 4224;
k_EMsgAMValidateEmailLink = 4231;
k_EMsgAMValidateEmailLinkResponse = 4232;
k_EMsgUGSStoreUserStats = 4236;
k_EMsgAMDeleteStoredCard = 4241;
k_EMsgAMRevokeLegacyGameKeys = 4242;
k_EMsgAMGetWalletDetails = 4244;
k_EMsgAMGetWalletDetailsResponse = 4245;
k_EMsgAMDeleteStoredPaymentInfo = 4246;
k_EMsgAMGetStoredPaymentSummary = 4247;
k_EMsgAMGetStoredPaymentSummaryResponse = 4248;
k_EMsgAMGetWalletConversionRate = 4249;
k_EMsgAMGetWalletConversionRateResponse = 4250;
k_EMsgAMConvertWallet = 4251;
k_EMsgAMConvertWalletResponse = 4252;
k_EMsgAMSetPreApproval = 4255;
k_EMsgAMSetPreApprovalResponse = 4256;
k_EMsgAMCreateRefund = 4258;
k_EMsgAMCreateChargeback = 4260;
k_EMsgAMCreateDispute = 4262;
k_EMsgAMClearDispute = 4264;
k_EMsgAMCreateFinancialAdjustment = 4265;
k_EMsgAMPlayerNicknameList = 4266;
k_EMsgAMPlayerNicknameListResponse = 4267;
k_EMsgAMSetDRMTestConfig = 4268;
k_EMsgAMGetUserCurrentGameInfo = 4269;
k_EMsgAMGetUserCurrentGameInfoResponse = 4270;
k_EMsgAMGetGSPlayerList = 4271;
k_EMsgAMGetGSPlayerListResponse = 4272;
k_EMsgAMGetSteamIDForMicroTxn = 4278;
k_EMsgAMGetSteamIDForMicroTxnResponse = 4279;
k_EMsgAMSetPartnerMember = 4280;
k_EMsgAMRemovePublisherUser = 4281;
k_EMsgAMGetUserLicenseList = 4282;
k_EMsgAMGetUserLicenseListResponse = 4283;
k_EMsgAMReloadGameGroupPolicy = 4284;
k_EMsgAMAddFreeLicenseResponse = 4285;
k_EMsgAMVACStatusUpdate = 4286;
k_EMsgAMGetAccountDetails = 4287;
k_EMsgAMGetAccountDetailsResponse = 4288;
k_EMsgAMGetPlayerLinkDetails = 4289;
k_EMsgAMGetPlayerLinkDetailsResponse = 4290;
k_EMsgAMGetAccountFlagsForWGSpoofing = 4294;
k_EMsgAMGetAccountFlagsForWGSpoofingResponse = 4295;
k_EMsgAMGetClanOfficers = 4298;
k_EMsgAMGetClanOfficersResponse = 4299;
k_EMsgAMNameChange = 4300;
k_EMsgAMGetNameHistory = 4301;
k_EMsgAMGetNameHistoryResponse = 4302;
k_EMsgAMUpdateProviderStatus = 4305;
k_EMsgAMSupportRemoveAccountSecurity = 4307;
k_EMsgAMIsAccountInCaptchaGracePeriod = 4308;
k_EMsgAMIsAccountInCaptchaGracePeriodResponse = 4309;
k_EMsgAMAccountPS3Unlink = 4310;
k_EMsgAMAccountPS3UnlinkResponse = 4311;
k_EMsgUGSStoreUserStatsResponse = 4312;
k_EMsgAMGetAccountPSNInfo = 4313;
k_EMsgAMGetAccountPSNInfoResponse = 4314;
k_EMsgAMAuthenticatedPlayerList = 4315;
k_EMsgAMGetUserGifts = 4316;
k_EMsgAMGetUserGiftsResponse = 4317;
k_EMsgAMTransferLockedGifts = 4320;
k_EMsgAMTransferLockedGiftsResponse = 4321;
k_EMsgAMPlayerHostedOnGameServer = 4322;
k_EMsgAMGetAccountBanInfo = 4323;
k_EMsgAMGetAccountBanInfoResponse = 4324;
k_EMsgAMRecordBanEnforcement = 4325;
k_EMsgAMRollbackGiftTransfer = 4326;
k_EMsgAMRollbackGiftTransferResponse = 4327;
k_EMsgAMHandlePendingTransaction = 4328;
k_EMsgAMRequestClanDetails = 4329;
k_EMsgAMDeleteStoredPaypalAgreement = 4330;
k_EMsgAMGameServerUpdate = 4331;
k_EMsgAMGameServerRemove = 4332;
k_EMsgAMGetPaypalAgreements = 4333;
k_EMsgAMGetPaypalAgreementsResponse = 4334;
k_EMsgAMGameServerPlayerCompatibilityCheck = 4335;
k_EMsgAMGameServerPlayerCompatibilityCheckResponse = 4336;
k_EMsgAMRenewLicense = 4337;
k_EMsgAMGetAccountCommunityBanInfo = 4338;
k_EMsgAMGetAccountCommunityBanInfoResponse = 4339;
k_EMsgAMGameServerAccountChangePassword = 4340;
k_EMsgAMGameServerAccountDeleteAccount = 4341;
k_EMsgAMRenewAgreement = 4342;
k_EMsgAMXsollaPayment = 4344;
k_EMsgAMXsollaPaymentResponse = 4345;
k_EMsgAMAcctAllowedToPurchase = 4346;
k_EMsgAMAcctAllowedToPurchaseResponse = 4347;
k_EMsgAMSwapKioskDeposit = 4348;
k_EMsgAMSwapKioskDepositResponse = 4349;
k_EMsgAMSetUserGiftUnowned = 4350;
k_EMsgAMSetUserGiftUnownedResponse = 4351;
k_EMsgAMClaimUnownedUserGift = 4352;
k_EMsgAMClaimUnownedUserGiftResponse = 4353;
k_EMsgAMSetClanName = 4354;
k_EMsgAMSetClanNameResponse = 4355;
k_EMsgAMGrantCoupon = 4356;
k_EMsgAMGrantCouponResponse = 4357;
k_EMsgAMIsPackageRestrictedInUserCountry = 4358;
k_EMsgAMIsPackageRestrictedInUserCountryResponse = 4359;
k_EMsgAMHandlePendingTransactionResponse = 4360;
k_EMsgAMGrantGuestPasses2 = 4361;
k_EMsgAMGrantGuestPasses2Response = 4362;
k_EMsgAMGetPlayerBanDetails = 4365;
k_EMsgAMGetPlayerBanDetailsResponse = 4366;
k_EMsgAMFinalizePurchase = 4367;
k_EMsgAMFinalizePurchaseResponse = 4368;
k_EMsgAMPersonaChangeResponse = 4372;
k_EMsgAMGetClanDetailsForForumCreation = 4373;
k_EMsgAMGetClanDetailsForForumCreationResponse = 4374;
k_EMsgAMGetPendingNotificationCount = 4375;
k_EMsgAMGetPendingNotificationCountResponse = 4376;
k_EMsgAMPasswordHashUpgrade = 4377;
k_EMsgAMBoaCompraPayment = 4380;
k_EMsgAMBoaCompraPaymentResponse = 4381;
k_EMsgAMCompleteExternalPurchase = 4383;
k_EMsgAMCompleteExternalPurchaseResponse = 4384;
k_EMsgAMResolveNegativeWalletCredits = 4385;
k_EMsgAMResolveNegativeWalletCreditsResponse = 4386;
k_EMsgAMPlayerGetClanBasicDetails = 4389;
k_EMsgAMPlayerGetClanBasicDetailsResponse = 4390;
k_EMsgAMMOLPayment = 4391;
k_EMsgAMMOLPaymentResponse = 4392;
k_EMsgGetUserIPCountry = 4393;
k_EMsgGetUserIPCountryResponse = 4394;
k_EMsgNotificationOfSuspiciousActivity = 4395;
k_EMsgAMDegicaPayment = 4396;
k_EMsgAMDegicaPaymentResponse = 4397;
k_EMsgAMEClubPayment = 4398;
k_EMsgAMEClubPaymentResponse = 4399;
k_EMsgAMPayPalPaymentsHubPayment = 4400;
k_EMsgAMPayPalPaymentsHubPaymentResponse = 4401;
k_EMsgAMTwoFactorRecoverAuthenticatorRequest = 4402;
k_EMsgAMTwoFactorRecoverAuthenticatorResponse = 4403;
k_EMsgAMSmart2PayPayment = 4404;
k_EMsgAMSmart2PayPaymentResponse = 4405;
k_EMsgAMValidatePasswordResetCodeAndSendSmsRequest = 4406;
k_EMsgAMValidatePasswordResetCodeAndSendSmsResponse = 4407;
k_EMsgAMGetAccountResetDetailsRequest = 4408;
k_EMsgAMGetAccountResetDetailsResponse = 4409;
k_EMsgAMBitPayPayment = 4410;
k_EMsgAMBitPayPaymentResponse = 4411;
k_EMsgAMSendAccountInfoUpdate = 4412;
k_EMsgAMSendScheduledGift = 4413;
k_EMsgAMNodwinPayment = 4414;
k_EMsgAMNodwinPaymentResponse = 4415;
k_EMsgAMResolveWalletRevoke = 4416;
k_EMsgAMResolveWalletReverseRevoke = 4417;
k_EMsgAMFundedPayment = 4418;
k_EMsgAMFundedPaymentResponse = 4419;
k_EMsgAMRequestPersonaUpdateForChatServer = 4420;
k_EMsgAMPerfectWorldPayment = 4421;
k_EMsgAMPerfectWorldPaymentResponse = 4422;
k_EMsgAMECommPayPayment = 4423;
k_EMsgAMECommPayPaymentResponse = 4424;
k_EMsgBasePSRange = 5000;
k_EMsgPSCreateShoppingCart = 5001;
k_EMsgPSCreateShoppingCartResponse = 5002;
k_EMsgPSIsValidShoppingCart = 5003;
k_EMsgPSIsValidShoppingCartResponse = 5004;
k_EMsgPSRemoveLineItemFromShoppingCart = 5007;
k_EMsgPSRemoveLineItemFromShoppingCartResponse = 5008;
k_EMsgPSGetShoppingCartContents = 5009;
k_EMsgPSGetShoppingCartContentsResponse = 5010;
k_EMsgPSAddWalletCreditToShoppingCart = 5011;
k_EMsgPSAddWalletCreditToShoppingCartResponse = 5012;
k_EMsgBaseUFSRange = 5200;
k_EMsgClientUFSUploadFileRequest = 5202;
k_EMsgClientUFSUploadFileResponse = 5203;
k_EMsgClientUFSUploadFileChunk = 5204;
k_EMsgClientUFSUploadFileFinished = 5205;
k_EMsgClientUFSGetFileListForApp = 5206;
k_EMsgClientUFSGetFileListForAppResponse = 5207;
k_EMsgClientUFSDownloadRequest = 5210;
k_EMsgClientUFSDownloadResponse = 5211;
k_EMsgClientUFSDownloadChunk = 5212;
k_EMsgClientUFSLoginRequest = 5213;
k_EMsgClientUFSLoginResponse = 5214;
k_EMsgUFSReloadPartitionInfo = 5215;
k_EMsgClientUFSTransferHeartbeat = 5216;
k_EMsgUFSSynchronizeFile = 5217;
k_EMsgUFSSynchronizeFileResponse = 5218;
k_EMsgClientUFSDeleteFileRequest = 5219;
k_EMsgClientUFSDeleteFileResponse = 5220;
k_EMsgClientUFSGetUGCDetails = 5226;
k_EMsgClientUFSGetUGCDetailsResponse = 5227;
k_EMsgUFSUpdateFileFlags = 5228;
k_EMsgUFSUpdateFileFlagsResponse = 5229;
k_EMsgClientUFSGetSingleFileInfo = 5230;
k_EMsgClientUFSGetSingleFileInfoResponse = 5231;
k_EMsgClientUFSShareFile = 5232;
k_EMsgClientUFSShareFileResponse = 5233;
k_EMsgUFSReloadAccount = 5234;
k_EMsgUFSReloadAccountResponse = 5235;
k_EMsgUFSUpdateRecordBatched = 5236;
k_EMsgUFSUpdateRecordBatchedResponse = 5237;
k_EMsgUFSMigrateFile = 5238;
k_EMsgUFSMigrateFileResponse = 5239;
k_EMsgUFSGetUGCURLs = 5240;
k_EMsgUFSGetUGCURLsResponse = 5241;
k_EMsgUFSHttpUploadFileFinishRequest = 5242;
k_EMsgUFSHttpUploadFileFinishResponse = 5243;
k_EMsgUFSDownloadStartRequest = 5244;
k_EMsgUFSDownloadStartResponse = 5245;
k_EMsgUFSDownloadChunkRequest = 5246;
k_EMsgUFSDownloadChunkResponse = 5247;
k_EMsgUFSDownloadFinishRequest = 5248;
k_EMsgUFSDownloadFinishResponse = 5249;
k_EMsgUFSFlushURLCache = 5250;
k_EMsgClientUFSUploadCommit = 5251;
k_EMsgClientUFSUploadCommitResponse = 5252;
k_EMsgUFSMigrateFileAppID = 5253;
k_EMsgUFSMigrateFileAppIDResponse = 5254;
k_EMsgBaseClient2 = 5400;
k_EMsgClientRequestForgottenPasswordEmail = 5401;
k_EMsgClientRequestForgottenPasswordEmailResponse = 5402;
k_EMsgClientCreateAccountResponse = 5403;
k_EMsgClientResetForgottenPassword = 5404;
k_EMsgClientResetForgottenPasswordResponse = 5405;
k_EMsgClientInformOfResetForgottenPassword = 5407;
k_EMsgClientInformOfResetForgottenPasswordResponse = 5408;
k_EMsgClientAnonUserLogOn_Deprecated = 5409;
k_EMsgClientGamesPlayedWithDataBlob = 5410;
k_EMsgClientUpdateUserGameInfo = 5411;
k_EMsgClientFileToDownload = 5412;
k_EMsgClientFileToDownloadResponse = 5413;
k_EMsgClientLBSSetScore = 5414;
k_EMsgClientLBSSetScoreResponse = 5415;
k_EMsgClientLBSFindOrCreateLB = 5416;
k_EMsgClientLBSFindOrCreateLBResponse = 5417;
k_EMsgClientLBSGetLBEntries = 5418;
k_EMsgClientLBSGetLBEntriesResponse = 5419;
k_EMsgClientChatDeclined = 5426;
k_EMsgClientFriendMsgIncoming = 5427;
k_EMsgClientAuthList_Deprecated = 5428;
k_EMsgClientTicketAuthComplete = 5429;
k_EMsgClientIsLimitedAccount = 5430;
k_EMsgClientRequestAuthList = 5431;
k_EMsgClientAuthList = 5432;
k_EMsgClientStat = 5433;
k_EMsgClientP2PConnectionInfo = 5434;
k_EMsgClientP2PConnectionFailInfo = 5435;
k_EMsgClientGetDepotDecryptionKey = 5438;
k_EMsgClientGetDepotDecryptionKeyResponse = 5439;
k_EMsgGSPerformHardwareSurvey = 5440;
k_EMsgClientEnableTestLicense = 5443;
k_EMsgClientEnableTestLicenseResponse = 5444;
k_EMsgClientDisableTestLicense = 5445;
k_EMsgClientDisableTestLicenseResponse = 5446;
k_EMsgClientRequestValidationMail = 5448;
k_EMsgClientRequestValidationMailResponse = 5449;
k_EMsgClientCheckAppBetaPassword = 5450;
k_EMsgClientCheckAppBetaPasswordResponse = 5451;
k_EMsgClientToGC = 5452;
k_EMsgClientFromGC = 5453;
k_EMsgClientEmailAddrInfo = 5456;
k_EMsgClientPasswordChange3 = 5457;
k_EMsgClientEmailChange3 = 5458;
k_EMsgClientPersonalQAChange3 = 5459;
k_EMsgClientResetForgottenPassword3 = 5460;
k_EMsgClientRequestForgottenPasswordEmail3 = 5461;
k_EMsgClientNewLoginKey = 5463;
k_EMsgClientNewLoginKeyAccepted = 5464;
k_EMsgClientLogOnWithHash_Deprecated = 5465;
k_EMsgClientStoreUserStats2 = 5466;
k_EMsgClientStatsUpdated = 5467;