socket通讯协议.txt 163 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513
  1. t[e[10] = "TO01_ROOM_STATE_SettlePair"] = 10;
  2. t[e[11] = "TO01_ROOM_STATE_BLackJack_Take"] = 11;
  3. t[e[12] = "TO01_ROOM_STATE_Dissolved"] = 12;
  4. t[e[10] = "TO01_Action_No_Safe"] = 10;
  5. t[e[11] = "TO01_Action_All_Safe"] = 11;
  6. t[e[12] = "TO01_Action_All_No_Safe"] = 12;
  7. t[e[13] = "TO01_Action_Clear_Bet"] = 13;
  8. t[e[14] = "TO01_Action_BET_Pair"] = 14;
  9. t[e[15] = "TO01_Action_BlackJack_Take"] = 15;
  10. t[e[16] = "TO01_Action_BlackJack_No_Take"] = 16;
  11. t[e[17] = "TO01_Action_TO01_Action_Repeat_Last_Bet"] = 17;
  12. t[e[18] = "TO01_Action_TO01_Action_Repeat_And_Double_Last_Bet"] = 18;
  13. t[e[19] = "TO01_Action_Dissolve_Level"] = 19;
  14. t[e[20] = "TO01_PlayerState_WAITING"] = 20;
  15. t[e[50001] = "INVALID_TOKEN"] = 50001;
  16. t[e[50002] = "INVALID_ROOM"] = 50002;
  17. t[e[50003] = "INVALID_PARAM"] = 50003;
  18. t[e[50004] = "INVALID_STATE"] = 50004;
  19. t[e[50005] = "INVALID_ACTION"] = 50005;
  20. t[e[50006] = "INVALID_TAKEIN"] = 50006;
  21. t[e[50007] = "OVER_TURN"] = 50007;
  22. t[e[50008] = "ROOM_DISSOLVED"] = 50008;
  23. t[e[50051] = "TIMEOUT"] = 50051;
  24. t[e[50052] = "PLAYING"] = 50052;
  25. t[e[50053] = "LESS_COIN"] = 50053;
  26. t[e[50054] = "NEAR_GPS"] = 50054;
  27. t[e[50055] = "SAME_IP"] = 50055;
  28. t[e[50071] = "NO_SEAT"] = 50071;
  29. t[e[50072] = "NO_ROOM"] = 50072;
  30. t[e[50073] = "NO_LOGIN"] = 50073;
  31. t[e[50074] = "CAN_LEAVE"] = 50074;
  32. t[e[50075] = "OTHER_ROOM"] = 50075;
  33. t[e[56001] = "UP_LIMIT"] = 56001;
  34. t[e[50080] = "BYSTANDER_ROOM_CHANGE"] = 50080;
  35. t[e[50081] = "NOT_ENOUGH_COIN"] = 50081;
  36. t[e[50082] = "NO_Sit_Down"] = 50082;
  37. t[e[50083] = "Forbid_Voice"] = 50083;
  38. t[e[50084] = "MainTain_Open"] = 50084;
  39. t[e[50001] = "UserTokenReq"] = 50001;
  40. t[e[50002] = "UserTokenRes"] = 50002;
  41. t[e[50003] = "EnterRoomReq"] = 50003;
  42. t[e[50004] = "EnterRoomRes"] = 50004;
  43. t[e[50013] = "SitDownReq"] = 50013;
  44. t[e[50014] = "SitDownRes"] = 50014;
  45. t[e[50029] = "LeaveRoomReq"] = 50029;
  46. t[e[50030] = "LeaveRoomRes"] = 50030;
  47. t[e[50032] = "SeatOccupiedMsg"] = 50032;
  48. t[e[50034] = "SeatEmptyMsg"] = 50034;
  49. t[e[50038] = "PlayerLeaveMsg"] = 50038;
  50. t[e[50119] = "RoomReleaseMsg"] = 50119;
  51. t[e[50127] = "StandbyReq"] = 50127;
  52. t[e[50128] = "StandbyRes"] = 50128;
  53. t[e[50163] = "EmojiReq"] = 50163;
  54. t[e[50167] = "EmojiRes"] = 50167;
  55. t[e[50168] = "EmojiMsg"] = 50168;
  56. t[e[50169] = "VoiceReq"] = 50169;
  57. t[e[50170] = "VoiceRes"] = 50170;
  58. t[e[50171] = "VoiceMsg"] = 50171;
  59. t[e[50176] = "UserCoinMsg"] = 50176;
  60. t[e[50177] = "UserNeedRecharge"] = 50177;
  61. t[e[60001] = "TO01_NeedActionMsg"] = 60001;
  62. t[e[60002] = "TO01_ActionReq"] = 60002;
  63. t[e[60003] = "TO01_ActionRes"] = 60003;
  64. t[e[60004] = "TO01_PlayerActionMsg"] = 60004;
  65. t[e[60005] = "TO01_HandCardsMsg"] = 60005;
  66. t[e[60006] = "TO01_CardsMsg"] = 60006;
  67. t[e[60007] = "TO01_RoomSnapshotMsg"] = 60007;
  68. t[e[60008] = "TO01_ResultMsg"] = 60008;
  69. t[e[60009] = "TO01_LeaveMsg"] = 60009;
  70. t[e[60010] = "TO01_EnterGameLevelReq"] = 60010;
  71. t[e[60011] = "TO01_EnterGameLevelRes"] = 60011;
  72. t[e[60012] = "TO01_SetCardReq"] = 60012;
  73. t[e[60013] = "TO01_SetCardRes"] = 60013;
  74. t[e[60014] = "TO01_MultBetReq"] = 60014;
  75. t[e[60015] = "TO01_MultBetRes"] = 60015;
  76. t[e[60016] = "TO01_OTHER_LEVEL"] = 60016;
  77. t[e[60017] = "TO01_PairResultMsg"] = 60017;
  78. t[e[60020] = "TO01_ChangeRoomReq"] = 60020;
  79. t[e[60021] = "TO01_ChangeRoomRes"] = 60021;
  80. t[e[60022] = "TO01_OpenDealerSecondCardMsg"] = 60022;
  81. t[e[60023] = "TO01_RoomLastBetMsg"] = 60023;
  82. t[e[60024] = "TO01_GameFinishedMsg"] = 60024;
  83. t[e[60025] = "TO01_UserPlayInfoReq"] = 60025;
  84. t[e[60026] = "TO01_UserPlayInfoRes"] = 60026;
  85. t[e[60027] = "UserTO01SetVoiceForbidReq"] = 60027;
  86. t[e[60028] = "UserTO01SetVoiceForbidRes"] = 60028;
  87. t[e[60029] = "UserTO01GetVoiceForbidReq"] = 60029;
  88. t[e[60030] = "UserTO01GetVoiceForbidRes"] = 60030;
  89. t[e[60031] = "TO01_TakeCoinReq"] = 60031;
  90. t[e[60032] = "TO01_TakeCoinRes"] = 60032;
  91. t[e[60033] = "TO01_UserMatchMsg"] = 60033;
  92. t[e[60034] = "TO01_UserWaitingMsg"] = 60034;
  93. t[e[60035] = "TO01_BuyTimeReq"] = 60035;
  94. t[e[60036] = "TO01_BuyTimeRes"] = 60036;
  95. t[e[60037] = "TO01_SettleReq"] = 60037;
  96. t[e[60038] = "TO01_SettleRes"] = 60038;
  97. t[e[60039] = "TO01_GameInfoReq"] = 60039;
  98. t[e[60040] = "TO01_GameInfoRes"] = 60040;
  99. t[e[60041] = "TO01_ResultInfoReq"] = 60041;
  100. t[e[60042] = "TO01_ResultInfoRes"] = 60042;
  101. t[e[60043] = "TO01_LevelReq"] = 60043;
  102. t[e[60044] = "TO01_LevelRes"] = 60044;
  103. t[e[60045] = "TO01_MaintainMsg"] = 60045;
  104. t[e[100] = "BLACK_JACK"] = 100;
  105. t[e[101] = "BLACK_JACK_PVP"] = 101;
  106. t[e[11] = "MiniGameRankListRequest"] = 11;
  107. t[e[12] = "MiniGameRankListResponse"] = 12;
  108. t[e[13] = "GetUserAvatarsRequest"] = 13;
  109. t[e[14] = "GetUserAvatarsResponse"] = 14;
  110. t[e[15] = "MiniGameInfoListRequest"] = 15;
  111. t[e[16] = "MiniGameInfoList"] = 16;
  112. t[e[100] = "UserUpdated"] = 100;
  113. t[e[200] = "UserTO01PlayInfoReq"] = 200;
  114. t[e[201] = "UserTO01PlayInfoRes"] = 201;
  115. t[e[202] = "UserTO01SetRemarkInfoReq"] = 202;
  116. t[e[203] = "UserTO01SetRemarkInfoRes"] = 203;
  117. t[e[204] = "UserTO01GetRemarkInfoReq"] = 204;
  118. t[e[205] = "UserTO01GetRemarkInfoRes"] = 205;
  119. t[e[1043] = "TO01_LevelReq"] = 1043;
  120. t[e[1044] = "TO01_LevelRes"] = 1044;
  121. t[e[98] = "DB_Record_Not_Found"] = 98;
  122. t[e[99] = "DB_Query_Failed"] = 99;
  123. t[e[100] = "DB_Write_Failed"] = 100;
  124. t[e[101] = "JSON_Parse_Failed"] = 101;
  125. t[e[403] = "Forbidden"] = 403;
  126. t[e[404] = "Not_Found"] = 404;
  127. t[e[500] = "Internal_Error"] = 500;
  128. t[e[5001] = "Gold_Not_Valid"] = 5001;
  129. t[e[5002] = "Gold_Not_Valid2"] = 5002;
  130. t[e[10] = "SERVER_EXITING"] = 10;
  131. t[e[20] = "SERVER_MAINTENANCE"] = 20;
  132. t[e[98] = "DB_Record_Not_Found"] = 98;
  133. t[e[99] = "DB_Query_Failed"] = 99;
  134. t[e[100] = "DB_Write_Failed"] = 100;
  135. t[e[101] = "JSON_Parse_Failed"] = 101;
  136. t[e[102] = "DB_Record_Already_Exist"] = 102;
  137. t[e[307] = "Temporary_Disabled"] = 307;
  138. t[e[400] = "Bad_Request"] = 400;
  139. t[e[401] = "Unauthorized"] = 401;
  140. t[e[403] = "Forbidden"] = 403;
  141. t[e[404] = "Not_Found"] = 404;
  142. t[e[422] = "Unprocessable"] = 422;
  143. t[e[5001] = "GOLD_NOT_VALID"] = 5001;
  144. t[e[6002] = "GuessCard_Forbidden"] = 6002;
  145. t[e[9001] = "Admin_Operate_Abnormal"] = 9001;
  146. t[e[10001] = "User_Login_Invalid"] = 10001;
  147. t[e[10002] = "User_Mobile_Not_Sent"] = 10002;
  148. t[e[10003] = "User_Mobile_Too_Frequent"] = 10003;
  149. t[e[10004] = "User_Mobile_Sms_In_Valid"] = 10004;
  150. t[e[10005] = "User_Login_Too_Frequent"] = 10005;
  151. t[e[10007] = "User_Login_Again"] = 10007;
  152. t[e[10008] = "User_Not_Exist"] = 10008;
  153. t[e[10009] = "User_Not_Online"] = 10009;
  154. t[e[10010] = "User_Account_Locked"] = 10010;
  155. t[e[10011] = "User_Device_Locked"] = 10011;
  156. t[e[10014] = "User_Account_Forbidden"] = 10014;
  157. t[e[10015] = "User_External_Token_Invalid"] = 10015;
  158. t[e[10100] = "User_Update_Failed"] = 10100;
  159. t[e[10101] = "User_Nickname_Already_Exists"] = 10101;
  160. t[e[10012] = "User_Account_Forbid"] = 10012;
  161. t[e[10200] = "User_Client_Need_Update"] = 10200;
  162. t[e[10500] = "User_No_Agent"] = 10500;
  163. t[e[10600] = "User_Login_Password_Fail_0"] = 10600;
  164. t[e[10601] = "User_Login_Password_Fail_1"] = 10601;
  165. t[e[10602] = "User_Login_Password_Fail_2"] = 10602;
  166. t[e[10603] = "User_Login_Password_Fail_3"] = 10603;
  167. t[e[10610] = "User_Login_Password_Fail_Impoker"] = 10610;
  168. t[e[10700] = "User_Account_Locked_For_Password"] = 10700;
  169. t[e[10800] = "User_Operating"] = 10800;
  170. t[e[10900] = "User_Withdraw_Password_Fail_0"] = 10900;
  171. t[e[10901] = "User_Withdraw_Password_Fail_1"] = 10901;
  172. t[e[10902] = "User_Withdraw_Password_Fail_2"] = 10902;
  173. t[e[10903] = "User_Withdraw_Password_Fail_3"] = 10903;
  174. t[e[10904] = "User_Withdraw_Password_Fail_4"] = 10904;
  175. t[e[10910] = "User_Operate_Frequent"] = 10910;
  176. t[e[10911] = "User_Note_Too_Long"] = 10911;
  177. t[e[10950] = "User_Favourite_Record_Limit_Reach"] = 10950;
  178. t[e[11001] = "Tool_In_Backpack_Expired"] = 11001;
  179. t[e[11002] = "Tool_Not_Exists"] = 11002;
  180. t[e[11003] = "Tool_Value_Not_Match"] = 11003;
  181. t[e[11004] = "Tool_In_Backpack_Ownership_Invalid"] = 11004;
  182. t[e[11005] = "Tool_Expired"] = 11005;
  183. t[e[11006] = "Tool_Currency_Not_Match"] = 11006;
  184. t[e[11007] = "Tool_Type_Not_Match"] = 11007;
  185. t[e[11008] = "Tool_Rate_Invalid"] = 11008;
  186. t[e[13001] = "Impoker_User_Migration_Failed"] = 13001;
  187. t[e[13002] = "Impoker_User_Need_To_Choose_User"] = 13002;
  188. t[e[20100] = "Association_Not_Member"] = 20100;
  189. t[e[20101] = "Association_Not_Admin"] = 20101;
  190. t[e[20501] = "Association_Invalid_Rate"] = 20501;
  191. t[e[21001] = "Association_Out_Of_Withdraw_Quota"] = 21001;
  192. t[e[210010] = "Association_Reward_Withdraw_Ration"] = 210010;
  193. t[e[210011] = "Association_Reward_Withdraw_Already_Draw"] = 210011;
  194. t[e[210012] = "Association_Reward_Withdraw_Pending_For_Review"] = 210012;
  195. t[e[30001] = "Mtt_Player_Already_SignUp"] = 30001;
  196. t[e[30002] = "Mtt_Player_Eliminated"] = 30002;
  197. t[e[30003] = "Mtt_Player_Rebuy_Limit_Exceeded"] = 30003;
  198. t[e[30004] = "Mtt_Player_Not_Eliminated"] = 30004;
  199. t[e[30005] = "Mtt_Player_Reenter_Limit_Exceeded"] = 30005;
  200. t[e[30006] = "Mtt_Player_Get_Redis_Fail"] = 30006;
  201. t[e[30007] = "Mtt_Get_DB_Fail"] = 30007;
  202. t[e[30008] = "Mtt_Update_DB_Fail"] = 30008;
  203. t[e[30009] = "Mtt_Timeout"] = 30009;
  204. t[e[30010] = "Mtt_Player_Delete_Redis_Fail"] = 30010;
  205. t[e[31001] = "Mtt_Tournament_Ended"] = 31001;
  206. t[e[31002] = "Mtt_Tournament_Signup_Limit_Reached"] = 31002;
  207. t[e[31003] = "Mtt_Tournament_Started"] = 31003;
  208. t[e[31004] = "Mtt_Tournament_Canceled"] = 31004;
  209. t[e[31005] = "Tournament_Ticket_Not_Exists"] = 31005;
  210. t[e[31006] = "Tournament_Not_A_Ticket"] = 31006;
  211. t[e[31007] = "Tournament_Ticket_Category_Not_Match"] = 31007;
  212. t[e[31008] = "Tournament_Ticket_Tournament_Id_Not_Match"] = 31008;
  213. t[e[31009] = "Mtt_Tournament_Paused"] = 31009;
  214. t[e[31010] = "Mtt_Tournament_Signup_Gold_Prohibited"] = 31010;
  215. t[e[31011] = "Mtt_Tournament_Signup_Ticket_Prohibited"] = 31011;
  216. t[e[31012] = "Mtt_Tournament_Signup_USDT_Prohibited"] = 31012;
  217. t[e[31100] = "Mtt_Tournament_Preparing"] = 31100;
  218. t[e[31101] = "Mtt_Tournament_Not_Started"] = 31101;
  219. t[e[31102] = "Mtt_Tournament_Not_Exist"] = 31102;
  220. t[e[33001] = "Mtt_Tournament_Max_Limit_Join"] = 33001;
  221. t[e[33002] = "Mtt_Multi_Flight_Final_NotAllow_Signup"] = 33002;
  222. t[e[33003] = "Mtt_Multi_Flight_Already_Signup"] = 33003;
  223. t[e[33004] = "Mtt_Multi_Flight_Not_Allow_Signup_Mul_Flight"] = 33004;
  224. t[e[33005] = "Mtt_Multi_Flight_Param"] = 33005;
  225. t[e[330050] = "Mtt_Multi_Flight_Param_NST_INVALID"] = 330050;
  226. t[e[330051] = "Mtt_Multi_Flight_Param_PAUSE_MISSING"] = 330051;
  227. t[e[33006] = "Mtt_Multi_Flight_Enter_Final"] = 33006;
  228. t[e[33007] = "Mtt_Multi_Flight_Final_Exist"] = 33007;
  229. t[e[33100] = "Mtt_Private_Pwd_Err"] = 33100;
  230. t[e[33101] = "Mtt_Private_Pwd_Err_Forbid"] = 33101;
  231. t[e[33102] = "Mtt_GeoComplianceToken_Check_Fail"] = 33102;
  232. t[e[33112] = "Mtt_Block_Robot"] = 33112;
  233. t[e[33113] = "Mtt_AutoFeed_NotAllowCancel"] = 33113;
  234. t[e[40001] = "Platform_Send_Error"] = 40001;
  235. t[e[40002] = "Platform_Response_Empty"] = 40002;
  236. t[e[40003] = "Platform_Response_Invalid"] = 40003;
  237. t[e[40004] = "Platform_Response_Error"] = 40004;
  238. t[e[60001] = "Mini_Game_User_Not_Taken_Out"] = 60001;
  239. t[e[60002] = "Mini_Game_Bet_Amount_Fewer_Than_Tool_Value"] = 60002;
  240. t[e[60501] = "User_Point_Insufficient"] = 60501;
  241. t[e[60600] = "WorldCupGuess_Ended"] = 60600;
  242. t[e[1001] = "ASSO_APPLICATION_REQ"] = 1001;
  243. t[e[1002] = "OUT_GAME_NOTICE"] = 1002;
  244. t[e[1003] = "MTT_STATUS_CHANGED_NOTICE"] = 1003;
  245. t[e[1004] = "END_GAME_NOTICE"] = 1004;
  246. t[e[1005] = "CANCEL_GAME_NOTICE"] = 1005;
  247. t[e[3001] = "RED_POCKET_CAROUSEL"] = 3001;
  248. t[e[3500] = "GOT_TOOL"] = 3500;
  249. t[e[4500] = "PUSH_CAROUSEL"] = 4500;
  250. t[e[4501] = "Aipt_Trade"] = 4501;
  251. t[e[4502] = "MTT_Reaward_Notice"] = 4502;
  252. t[e[4503] = "MT_BlockRobot_Start_NOTICE"] = 4503;
  253. t[e[4504] = "MT_BlockRobot_Stop_NOTICE"] = 4504;
  254. t[e[4505] = "MTT_AutoFeed_Notice"] = 4505;
  255. t[e[4506] = "Offline_Register_Audit_Notice"] = 4506;
  256. t[e[4507] = "Spins_Maintenance_Refund_Notice"] = 4507;
  257. t[e[4508] = "MTT_Start_GAME_NOTICE"] = 4508;
  258. t[e[10] = "ADMIN_UNLOCK_FROM_BACKEND"] = 10;
  259. t[e[11] = "NICKNAME_UPDATE_REJECTED"] = 11;
  260. t[e[12] = "AVATAR_CHANGED"] = 12;
  261. t[e[13] = "BROADCAST_CHANGED"] = 13;
  262. t[e[14] = "ADMIN_FORBIDDEN_FROM_BACKEND"] = 14;
  263. t[e[10] = "TO_IMPOKER"] = 10;
  264. t[e[11] = "USER_PAYMENT"] = 11;
  265. t[e[12] = "USER_WITHDRAW"] = 12;
  266. t[e[13] = "USER_REFUND"] = 13;
  267. t[e[14] = "USER_NICKNAME_UPDATE"] = 14;
  268. t[e[15] = "JACKPOT"] = 15;
  269. t[e[16] = "COMMISSION"] = 16;
  270. t[e[17] = "GAME_REFUND"] = 17;
  271. t[e[50] = "EVENT_RED_POCKET"] = 50;
  272. t[e[100] = "GAME_END_COMMISSION"] = 100;
  273. t[e[101] = "MTT_COMMISSION"] = 101;
  274. t[e[102] = "SNG_COMMISSION"] = 102;
  275. t[e[103] = "TOOL_REDEMPTION"] = 103;
  276. t[e[104] = "SNG_END_COMMISSION"] = 104;
  277. t[e[105] = "MINIGAME_GUESS_CARDS_COMMISSION"] = 105;
  278. t[e[106] = "MINIGAME_COMMISSION"] = 106;
  279. t[e[200] = "ASSOCIATION_WITHDRAW"] = 200;
  280. t[e[201] = "EMOJI_PAY"] = 201;
  281. t[e[202] = "SEND_GIFT"] = 202;
  282. t[e[203] = "RECEIVE_GIFT"] = 203;
  283. t[e[204] = "IN_GAME_PURCHASE"] = 204;
  284. t[e[210] = "CONSUME_TICKET"] = 210;
  285. t[e[211] = "CONSUME_COUPON"] = 211;
  286. t[e[212] = "RETURN_TICKET"] = 212;
  287. t[e[213] = "RETURN_COUPON"] = 213;
  288. t[e[214] = "MINIGAME_GUESS_CARDS_COST"] = 214;
  289. t[e[215] = "MINIGAME_GUESS_CARDS_GAIN"] = 215;
  290. t[e[300] = "PRIZE_BASE"] = 300;
  291. t[e[301] = "MINIGAME_TAKEIN"] = 301;
  292. t[e[302] = "MINIGAME_REFUND"] = 302;
  293. t[e[303] = "MINIGAME_REWARD"] = 303;
  294. t[e[304] = "MINIGAME_TRANSFER"] = 304;
  295. t[e[305] = "MINIGAME_ACTIVITY_REWARD"] = 305;
  296. t[e[400] = "TRANSFER_TO_COFFER"] = 400;
  297. t[e[401] = "TRANSFER_FROM_COFFER"] = 401;
  298. t[e[402] = "GOLD_UPDATE_TYPE_ASSOCIATION_Reward_WithDraw"] = 402;
  299. t[e[501] = "TRANSFER_AIPT_TICKET"] = 501;
  300. t[e[502] = "TRANSFER_AIPT_HOTEL"] = 502;
  301. t[e[503] = "TRANSFER_AIPT_TRADE_TICKET"] = 503;
  302. t[e[504] = "GOLD_UPDATE_TYPE_Aipt_Asso_WithDraw"] = 504;
  303. t[e[510] = "LOTTERY_TICKET"] = 510;
  304. t[e[100] = "BLACK_JACK"] = 100;
  305. t[e[200] = "COW_BOY"] = 200;
  306. t[e[300] = "AIPT"] = 300;
  307. t[e[11] = "Game_Room_List"] = 11;
  308. t[e[12] = "Game_Levels_Request"] = 12;
  309. t[e[13] = "Game_Level_List"] = 13;
  310. t[e[14] = "Tool_Info_Request"] = 14;
  311. t[e[15] = "Tool_Info_Response"] = 15;
  312. t[e[16] = "Joined_Games_Request"] = 16;
  313. t[e[17] = "Joined_Games_Response"] = 17;
  314. t[e[18] = "Game_State_Request"] = 18;
  315. t[e[19] = "Game_State_Response"] = 19;
  316. t[e[600] = "Broadcast_Message_Envelope"] = 600;
  317. t[e[10005] = "User_Login_Request"] = 10005;
  318. t[e[10006] = "User_Login_Response"] = 10006;
  319. t[e[10007] = "User_Logout_Response"] = 10007;
  320. t[e[10011] = "User_Login_Frequently_Msg"] = 10011;
  321. t[e[10008] = "Legacy_Impoker_Login_Request"] = 10008;
  322. t[e[10009] = "Legacy_Impoker_Login_Response"] = 10009;
  323. t[e[10010] = "User_Banner_Event_Msg"] = 10010;
  324. t[e[10021] = "User_Info_Request"] = 10021;
  325. t[e[10022] = "User_Info_Response"] = 10022;
  326. t[e[10101] = "User_Update_Request"] = 10101;
  327. t[e[10102] = "User_Update_Response"] = 10102;
  328. t[e[10103] = "User_Nickname_Update_Request"] = 10103;
  329. t[e[10104] = "User_Nickname_Update_Response"] = 10104;
  330. t[e[10105] = "User_Update_Language_Request"] = 10105;
  331. t[e[10106] = "User_Update_Language_Response"] = 10106;
  332. t[e[10110] = "User_Info_Updated"] = 10110;
  333. t[e[10200] = "User_Notices"] = 10200;
  334. t[e[10201] = "User_Notice"] = 10201;
  335. t[e[10301] = "User_Tool_In_Backpacks_Request"] = 10301;
  336. t[e[10302] = "User_Tool_In_Backpacks_Response"] = 10302;
  337. t[e[10311] = "Tool_In_Backpack_Redeem_Request"] = 10311;
  338. t[e[10312] = "Tool_In_Backpack_Redeem_Response"] = 10312;
  339. t[e[10401] = "Tool_In_Backpack_Gift_Request"] = 10401;
  340. t[e[10402] = "Tool_In_Backpack_Gift_Response"] = 10402;
  341. t[e[10403] = "Tool_Admin_Gift_Msg"] = 10403;
  342. t[e[10501] = "User_Point_Request"] = 10501;
  343. t[e[10502] = "User_Point_Response"] = 10502;
  344. t[e[10503] = "User_Point_Tools_Set_Request"] = 10503;
  345. t[e[10504] = "User_Point_Tools_Set_Response"] = 10504;
  346. t[e[10505] = "User_Point_Tools_Change_Request"] = 10505;
  347. t[e[10506] = "User_Point_Tools_Change_Response"] = 10506;
  348. t[e[10507] = "User_Point_Tools_Change_List_Request"] = 10507;
  349. t[e[10508] = "User_Point_Tools_Change_List_Response"] = 10508;
  350. t[e[11001] = "Transfer_From_Impoker_Response"] = 11001;
  351. t[e[11101] = "Nickname_Check_Request"] = 11101;
  352. t[e[11102] = "Nickname_Check_Response"] = 11102;
  353. t[e[11201] = "Game_Results_Request"] = 11201;
  354. t[e[11202] = "Game_Results_Response"] = 11202;
  355. t[e[11203] = "Game_Result_Detail_Request"] = 11203;
  356. t[e[11204] = "Game_Result_Detail_Response"] = 11204;
  357. t[e[11205] = "Game_Result_Rounds_Request"] = 11205;
  358. t[e[11206] = "Game_Result_Rounds_Response"] = 11206;
  359. t[e[11207] = "Add_User_Favourite_Round_Request"] = 11207;
  360. t[e[11208] = "Add_User_Favourite_Round_Response"] = 11208;
  361. t[e[11209] = "Remove_User_Favourite_Round_Request"] = 11209;
  362. t[e[11210] = "Remove_User_Favourite_Round_Response"] = 11210;
  363. t[e[11211] = "List_User_Favourite_Rounds_Request"] = 11211;
  364. t[e[11212] = "List_User_Favourite_Rounds_Response"] = 11212;
  365. t[e[11221] = "List_User_Gifts_Request"] = 11221;
  366. t[e[11222] = "List_User_Gifts_Response"] = 11222;
  367. t[e[11223] = "User_Gift_Request"] = 11223;
  368. t[e[11224] = "User_Gift_Response"] = 11224;
  369. t[e[11225] = "Game_Result_Detail_List_Request"] = 11225;
  370. t[e[11226] = "Game_Result_Detail_List_Response"] = 11226;
  371. t[e[11230] = "Lottery_Info_List_Msg"] = 11230;
  372. t[e[11231] = "Lottery_Info_Del"] = 11231;
  373. t[e[11232] = "Lottery_Hit"] = 11232;
  374. t[e[11233] = "Lottery_Info_Add_Msg"] = 11233;
  375. t[e[11301] = "User_Withdraw_Password_Verification_Request"] = 11301;
  376. t[e[11302] = "User_Withdraw_Password_Verification_Response"] = 11302;
  377. t[e[11303] = "User_Withdraw_Password_Forget_Request"] = 11303;
  378. t[e[11304] = "User_Withdraw_Password_Forget_Response"] = 11304;
  379. t[e[11305] = "User_Withdraw_Password_Reset_Request"] = 11305;
  380. t[e[11306] = "User_Withdraw_Password_Reset_Response"] = 11306;
  381. t[e[11401] = "Transfer_To_Coffer_Request"] = 11401;
  382. t[e[11402] = "Transfer_To_Coffer_Response"] = 11402;
  383. t[e[11403] = "Transfer_Coffer_Log_Request"] = 11403;
  384. t[e[11404] = "Transfer_Coffer_Log_Response"] = 11404;
  385. t[e[11501] = "User_Search_Request"] = 11501;
  386. t[e[11502] = "User_Search_Response"] = 11502;
  387. t[e[20001] = "Association_Create_Request"] = 20001;
  388. t[e[20002] = "Association_Create_Response"] = 20002;
  389. t[e[20003] = "Association_Apply_Request"] = 20003;
  390. t[e[20004] = "Association_Apply_Response"] = 20004;
  391. t[e[20005] = "Association_Update_Request"] = 20005;
  392. t[e[20006] = "Association_Update_Response"] = 20006;
  393. t[e[20007] = "Association_Update_Rate_Request"] = 20007;
  394. t[e[20008] = "Association_Update_Rate_Response"] = 20008;
  395. t[e[20009] = "Association_Detail_Request"] = 20009;
  396. t[e[20010] = "Association_Detail_Response"] = 20010;
  397. t[e[20011] = "Association_Statistic_Request"] = 20011;
  398. t[e[20012] = "Association_Statistic_Response"] = 20012;
  399. t[e[20013] = "Association_Withdraw_Request"] = 20013;
  400. t[e[20014] = "Association_Withdraw_Response"] = 20014;
  401. t[e[20015] = "Association_Withdraw_Records_Request"] = 20015;
  402. t[e[20016] = "Association_Withdraw_Records_Response"] = 20016;
  403. t[e[20017] = "Association_Member_List_Request"] = 20017;
  404. t[e[20018] = "Association_Member_List_Response"] = 20018;
  405. t[e[20019] = "Association_Member_Detail_Request"] = 20019;
  406. t[e[20020] = "Association_Member_Detail_Response"] = 20020;
  407. t[e[20021] = "Association_Downline_List_Request"] = 20021;
  408. t[e[20022] = "Association_Downline_List_Response"] = 20022;
  409. t[e[20023] = "Association_Reward_Withdraw_Request"] = 20023;
  410. t[e[20024] = "Association_Reward_Withdraw_Response"] = 20024;
  411. t[e[20101] = "Association_Application_Handle_Request"] = 20101;
  412. t[e[20102] = "Association_Application_Handle_Response"] = 20102;
  413. t[e[20103] = "Association_Share_Rate_Modify_Request"] = 20103;
  414. t[e[20104] = "Association_Share_Rate_Modify_Response"] = 20104;
  415. t[e[20105] = "Association_Member_Game_Detail_Request"] = 20105;
  416. t[e[20106] = "Association_Member_Game_Detail_Response"] = 20106;
  417. t[e[20201] = "Impoker_User_Choose_Agent_Request"] = 20201;
  418. t[e[60001] = "MttEnterGameReq"] = 60001;
  419. t[e[60002] = "MttEnterGameRes"] = 60002;
  420. t[e[60101] = "BLMiniGameEnterReq"] = 60101;
  421. t[e[60102] = "BLMiniGameEnterRes"] = 60102;
  422. t[e[60201] = "BLMiniGameExitReq"] = 60201;
  423. t[e[60202] = "BLMiniGameExitRes"] = 60202;
  424. t[e[60301] = "BLMiniGamesNotTakenOutRequest"] = 60301;
  425. t[e[60302] = "BLMiniGamesNotTakenOutResponse"] = 60302;
  426. t[e[60303] = "BLMiniGameActivityRewardsRequest"] = 60303;
  427. t[e[60304] = "BLMiniGameActivityRewardsResponse"] = 60304;
  428. t[e[60305] = "BLMiniGameReceiveActivityRewardRequest"] = 60305;
  429. t[e[60306] = "BLMiniGameReceiveActivityRewardResponse"] = 60306;
  430. t[e[60307] = "BLMiniGameTakeInStatusRequest"] = 60307;
  431. t[e[60308] = "BLMiniGameTakeInStatusResponse"] = 60308;
  432. t[e[10] = "WIN"] = 10;
  433. t[e[20] = "HOLE_CARD"] = 20;
  434. t[e[30] = "FIVE_CARD"] = 30;
  435. t[e[100] = "WIN_BEGIN"] = 100;
  436. t[e[101] = "RED_WIN"] = 101;
  437. t[e[102] = "BLUE_WIN"] = 102;
  438. t[e[103] = "EQUAL"] = 103;
  439. t[e[199] = "WIN_END"] = 199;
  440. t[e[200] = "HOLE_BEGIN"] = 200;
  441. t[e[203] = "HOLE_SAME"] = 203;
  442. t[e[205] = "HOLE_A"] = 205;
  443. t[e[206] = "HOLE_3_TONG_SAME_SHUN"] = 206;
  444. t[e[299] = "HOLE_END"] = 299;
  445. t[e[300] = "FIVE_BEGIN"] = 300;
  446. t[e[301] = "FIVE_NONE_1DUI"] = 301;
  447. t[e[302] = "FIVE_2DUI"] = 302;
  448. t[e[303] = "FIVE_3_SHUN_TONG_HUA"] = 303;
  449. t[e[304] = "FIVE_3_2"] = 304;
  450. t[e[305] = "FIVE_KING_TONG_HUA_SHUN_4"] = 305;
  451. t[e[399] = "FIVE_END"] = 399;
  452. t[e[30001] = "LOGIN_GAME_RESP"] = 30001;
  453. t[e[30004] = "HEART_BEAT_REQ"] = 30004;
  454. t[e[30005] = "HEART_BEAT_RESP"] = 30005;
  455. t[e[30007] = "JOIN_ROOM_REQ"] = 30007;
  456. t[e[30008] = "JOIN_ROOM_RESP"] = 30008;
  457. t[e[30009] = "GAME_LIST_REQ"] = 30009;
  458. t[e[30010] = "GAME_LIST_RESP"] = 30010;
  459. t[e[30011] = "GAME_DATA_SYN"] = 30011;
  460. t[e[30012] = "DEAL_NOTIFY"] = 30012;
  461. t[e[30013] = "BET_REQ"] = 30013;
  462. t[e[30014] = "BET_RESP"] = 30014;
  463. t[e[30015] = "BET_NOTIFY"] = 30015;
  464. t[e[30016] = "GAME_ROUND_END_NOTIFY"] = 30016;
  465. t[e[30018] = "LEAVE_ROOM_REQ"] = 30018;
  466. t[e[30019] = "LEAVE_ROOM_RESP"] = 30019;
  467. t[e[30020] = "LEAVE_ROOM_NOTIFY"] = 30020;
  468. t[e[30022] = "CONN_CLOSE_REQ"] = 30022;
  469. t[e[30023] = "ROOM_TREND_REQ"] = 30023;
  470. t[e[30024] = "ROOM_TREND_RSP"] = 30024;
  471. t[e[30025] = "ROOM_TREND_NOTICE"] = 30025;
  472. t[e[30026] = "START_BET_NOTIFY"] = 30026;
  473. t[e[30029] = "AUTO_BET_REQ"] = 30029;
  474. t[e[30030] = "AUTO_BET_RESP"] = 30030;
  475. t[e[30031] = "AUTO_BET_NOTIFY"] = 30031;
  476. t[e[30032] = "PLAYER_LIST_REQ"] = 30032;
  477. t[e[30033] = "PLAYER_LIST_RESP"] = 30033;
  478. t[e[30036] = "MERGE_AUTO_BET_NOTIFY"] = 30036;
  479. t[e[30037] = "KICK_NOTIFY"] = 30037;
  480. t[e[30038] = "ROOM_TREND_ROAD_REQ"] = 30038;
  481. t[e[30039] = "ROOM_TREND_ROAD_RSP"] = 30039;
  482. t[e[30040] = "ROOM_TREND_ROAD_NOTICE"] = 30040;
  483. t[e[30041] = "AUTO_OPEN_ROADS_REQ"] = 30041;
  484. t[e[30042] = "AUTO_OPEN_ROADS_RSP"] = 30042;
  485. t[e[30044] = "SET_GAME_OPTION_REQ"] = 30044;
  486. t[e[30045] = "SET_GAME_OPTION_RSP"] = 30045;
  487. t[e[30047] = "START_SETTLEMENT_NOTIFY"] = 30047;
  488. t[e[30050] = "ADVANCE_AUTO_BET_REQ"] = 30050;
  489. t[e[30051] = "ADVANCE_AUTO_BET_RSP"] = 30051;
  490. t[e[30052] = "CANCEL_ADVANCE_AUTO_BET_REQ"] = 30052;
  491. t[e[30053] = "CANCEL_ADVANCE_AUTO_BET_RSP"] = 30053;
  492. t[e[30054] = "ADVANCE_AUTO_BET_SET_REQ"] = 30054;
  493. t[e[30055] = "ADVANCE_AUTO_BET_SET_RSP"] = 30055;
  494. t[e[30057] = "ROOM_LIST_REQ"] = 30057;
  495. t[e[30058] = "ROOM_LIST_RSP"] = 30058;
  496. t[e[30063] = "ADD_GOLD_NUM_NOTICE"] = 30063;
  497. t[e[30066] = "GLOBAL_MESSAGE_NOTICE"] = 30066;
  498. t[e[30067] = "GAME_STATUS_REQ"] = 30067;
  499. t[e[30068] = "GAME_STATUS_RSP"] = 30068;
  500. t[e[30071] = "GET_RANK_DATA_REQ"] = 30071;
  501. t[e[30072] = "GET_RANK_DATA_RSP"] = 30072;
  502. t[e[30076] = "REWARD_NOTICE"] = 30076;
  503. t[e[30099] = "DUP_LOGIN_NOTICE"] = 30099;
  504. t[e[30100] = "USER_POINTS_CHANGE_NOTICE"] = 30100;
  505. t[e[31001] = "LOW_VERSION"] = 31001;
  506. t[e[31002] = "INVALID_TOKEN"] = 31002;
  507. t[e[31003] = "SERVER_BUSY"] = 31003;
  508. t[e[31004] = "WITHOUT_LOGIN"] = 31004;
  509. t[e[31005] = "ROOM_NOT_MATCH"] = 31005;
  510. t[e[31006] = "ROOM_NOT_EXIST"] = 31006;
  511. t[e[31007] = "BET_EXCEED_LIMIT"] = 31007;
  512. t[e[31008] = "ROOM_PLAYER_LIMIT"] = 31008;
  513. t[e[31009] = "NO_BET"] = 31009;
  514. t[e[31010] = "BET_AMOUNT_NOT_MATCH"] = 31010;
  515. t[e[31011] = "NO_MONEY"] = 31011;
  516. t[e[31012] = "BET_BAD_PARAM"] = 31012;
  517. t[e[31013] = "STOP_SERVICE"] = 31013;
  518. t[e[31014] = "NOT_BET_WHEN_AUTO_BET"] = 31014;
  519. t[e[31015] = "BET_TOO_SMALL"] = 31015;
  520. t[e[31016] = "BET_COUNT_LIMIT"] = 31016;
  521. t[e[31017] = "AUTO_BET_LIMIT"] = 31017;
  522. t[e[31018] = "TOO_MANY_PEOPLE"] = 31018;
  523. t[e[31019] = "BAD_REQ_PARAM"] = 31019;
  524. t[e[31020] = "NO_SET_ADVANCE_AUTO_BET"] = 31020;
  525. t[e[31021] = "AUTO_BET_COUNT_LIMIT"] = 31021;
  526. t[e[31022] = "AUTO_BET_NO_MONEY"] = 31022;
  527. t[e[31023] = "AUTO_BET_EXCEED_LIMIT"] = 31023;
  528. t[e[31024] = "CAN_NOT_LEAVE_WITH_BETS"] = 31024;
  529. t[e[10] = "WIN"] = 10;
  530. t[e[20] = "HOLE_CARD"] = 20;
  531. t[e[30] = "FIVE_CARD"] = 30;
  532. t[e[100] = "WIN_BEGIN"] = 100;
  533. t[e[101] = "RED_WIN"] = 101;
  534. t[e[102] = "BLUE_WIN"] = 102;
  535. t[e[103] = "EQUAL"] = 103;
  536. t[e[199] = "WIN_END"] = 199;
  537. t[e[200] = "HOLE_BEGIN"] = 200;
  538. t[e[203] = "HOLE_SAME"] = 203;
  539. t[e[205] = "HOLE_A"] = 205;
  540. t[e[206] = "HOLE_3_TONG_SAME_SHUN"] = 206;
  541. t[e[299] = "HOLE_END"] = 299;
  542. t[e[300] = "FIVE_BEGIN"] = 300;
  543. t[e[301] = "FIVE_NONE_1DUI"] = 301;
  544. t[e[302] = "FIVE_2DUI"] = 302;
  545. t[e[303] = "FIVE_3_SHUN_TONG_HUA"] = 303;
  546. t[e[304] = "FIVE_3_2"] = 304;
  547. t[e[305] = "FIVE_KING_TONG_HUA_SHUN_4"] = 305;
  548. t[e[399] = "FIVE_END"] = 399;
  549. t[e[30001] = "LOGIN_GAME_RESP"] = 30001;
  550. t[e[30004] = "HEART_BEAT_REQ"] = 30004;
  551. t[e[30005] = "HEART_BEAT_RESP"] = 30005;
  552. t[e[30007] = "JOIN_ROOM_REQ"] = 30007;
  553. t[e[30008] = "JOIN_ROOM_RESP"] = 30008;
  554. t[e[30009] = "GAME_LIST_REQ"] = 30009;
  555. t[e[30010] = "GAME_LIST_RESP"] = 30010;
  556. t[e[30011] = "GAME_DATA_SYN"] = 30011;
  557. t[e[30012] = "DEAL_NOTIFY"] = 30012;
  558. t[e[30013] = "BET_REQ"] = 30013;
  559. t[e[30014] = "BET_RESP"] = 30014;
  560. t[e[30015] = "BET_NOTIFY"] = 30015;
  561. t[e[30016] = "GAME_ROUND_END_NOTIFY"] = 30016;
  562. t[e[30018] = "LEAVE_ROOM_REQ"] = 30018;
  563. t[e[30019] = "LEAVE_ROOM_RESP"] = 30019;
  564. t[e[30020] = "LEAVE_ROOM_NOTIFY"] = 30020;
  565. t[e[30022] = "CONN_CLOSE_REQ"] = 30022;
  566. t[e[30023] = "ROOM_TREND_REQ"] = 30023;
  567. t[e[30024] = "ROOM_TREND_RSP"] = 30024;
  568. t[e[30025] = "ROOM_TREND_NOTICE"] = 30025;
  569. t[e[30026] = "START_BET_NOTIFY"] = 30026;
  570. t[e[30029] = "AUTO_BET_REQ"] = 30029;
  571. t[e[30030] = "AUTO_BET_RESP"] = 30030;
  572. t[e[30031] = "AUTO_BET_NOTIFY"] = 30031;
  573. t[e[30032] = "PLAYER_LIST_REQ"] = 30032;
  574. t[e[30033] = "PLAYER_LIST_RESP"] = 30033;
  575. t[e[30036] = "MERGE_AUTO_BET_NOTIFY"] = 30036;
  576. t[e[30037] = "KICK_NOTIFY"] = 30037;
  577. t[e[30038] = "ROOM_TREND_ROAD_REQ"] = 30038;
  578. t[e[30039] = "ROOM_TREND_ROAD_RSP"] = 30039;
  579. t[e[30040] = "ROOM_TREND_ROAD_NOTICE"] = 30040;
  580. t[e[30041] = "AUTO_OPEN_ROADS_REQ"] = 30041;
  581. t[e[30042] = "AUTO_OPEN_ROADS_RSP"] = 30042;
  582. t[e[30044] = "SET_GAME_OPTION_REQ"] = 30044;
  583. t[e[30045] = "SET_GAME_OPTION_RSP"] = 30045;
  584. t[e[30047] = "START_SETTLEMENT_NOTIFY"] = 30047;
  585. t[e[30050] = "ADVANCE_AUTO_BET_REQ"] = 30050;
  586. t[e[30051] = "ADVANCE_AUTO_BET_RSP"] = 30051;
  587. t[e[30052] = "CANCEL_ADVANCE_AUTO_BET_REQ"] = 30052;
  588. t[e[30053] = "CANCEL_ADVANCE_AUTO_BET_RSP"] = 30053;
  589. t[e[30054] = "ADVANCE_AUTO_BET_SET_REQ"] = 30054;
  590. t[e[30055] = "ADVANCE_AUTO_BET_SET_RSP"] = 30055;
  591. t[e[30056] = "USER_POINTS_CHANGE_NOTICE"] = 30056;
  592. t[e[30057] = "ADVANCE_AUTO_BET_ADD_REQ"] = 30057;
  593. t[e[30058] = "ADVANCE_AUTO_BET_ADD_RSP"] = 30058;
  594. t[e[31001] = "LOW_VERSION"] = 31001;
  595. t[e[31002] = "INVALID_TOKEN"] = 31002;
  596. t[e[31003] = "SERVER_BUSY"] = 31003;
  597. t[e[31004] = "WITHOUT_LOGIN"] = 31004;
  598. t[e[31005] = "ROOM_NOT_MATCH"] = 31005;
  599. t[e[31006] = "ROOM_NOT_EXIST"] = 31006;
  600. t[e[31007] = "BET_EXCEED_LIMIT"] = 31007;
  601. t[e[31008] = "ROOM_PLAYER_LIMIT"] = 31008;
  602. t[e[31009] = "NO_BET"] = 31009;
  603. t[e[31010] = "BET_AMOUNT_NOT_MATCH"] = 31010;
  604. t[e[31011] = "NO_MONEY"] = 31011;
  605. t[e[31012] = "BET_BAD_PARAM"] = 31012;
  606. t[e[31013] = "STOP_SERVICE"] = 31013;
  607. t[e[31014] = "NOT_BET_WHEN_AUTO_BET"] = 31014;
  608. t[e[31015] = "BET_TOO_SMALL"] = 31015;
  609. t[e[31016] = "BET_COUNT_LIMIT"] = 31016;
  610. t[e[31017] = "AUTO_BET_LIMIT"] = 31017;
  611. t[e[31018] = "TOO_MANY_PEOPLE"] = 31018;
  612. t[e[31019] = "BAD_REQ_PARAM"] = 31019;
  613. t[e[31020] = "NO_SET_ADVANCE_AUTO_BET"] = 31020;
  614. t[e[31021] = "AUTO_BET_COUNT_LIMIT"] = 31021;
  615. t[e[31022] = "AUTO_BET_NO_MONEY"] = 31022;
  616. t[e[31023] = "AUTO_BET_EXCEED_LIMIT"] = 31023;
  617. t[e[31024] = "ROOM_SYSTEM_FORCE_CLOSED"] = 31024;
  618. t[e[31025] = "IN_CALM_DOWN"] = 31025;
  619. t[e[31026] = "REACH_LIMIT_BET"] = 31026;
  620. t[e[31117] = "C2CPAYMENT_LIST_GET_ERROR"] = 31117;
  621. t[e[31118] = "C2CPAYMENT_NOT_ALLOW"] = 31118;
  622. t[e[31119] = "CAN_NOT_LEAVE_IN_BETTING"] = 31119;
  623. t[e[10] = "H5Thailand"] = 10;
  624. t[e[11] = "H5WebThailand"] = 11;
  625. t[e[12] = "H5Arab"] = 12;
  626. t[e[13] = "H5Hindi"] = 13;
  627. t[e[14] = "H5Mempoker"] = 14;
  628. t[e[15] = "PC"] = 15;
  629. t[e[16] = "WPTG"] = 16;
  630. t[e[60001] = "GET_DATA_REQ"] = 60001;
  631. t[e[60002] = "GET_DATA_RESP"] = 60002;
  632. t[e[60004] = "GET_PUBLIC_DATA_REQ"] = 60004;
  633. t[e[60005] = "GET_PUBLIC_DATA_RESP"] = 60005;
  634. t[e[60007] = "HOME_REQ"] = 60007;
  635. t[e[60008] = "HOME_RESP"] = 60008;
  636. t[e[60011] = "ROOM_RECORDS_LIST_REQ"] = 60011;
  637. t[e[60012] = "ROOM_RECORDS_LIST_RESP"] = 60012;
  638. t[e[60014] = "ROOM_RECORD_REQ"] = 60014;
  639. t[e[60015] = "ROOM_RECORD_RESP"] = 60015;
  640. t[e[60017] = "GAME_HAND_REQ"] = 60017;
  641. t[e[60018] = "GAME_HAND_RESP"] = 60018;
  642. t[e[60021] = "GAME_HAND_TEST_REQ"] = 60021;
  643. t[e[60022] = "GAME_HAND_TEST_RESP"] = 60022;
  644. t[e[60024] = "DO_FAVORITE_REQ"] = 60024;
  645. t[e[60025] = "DO_FAVORITE_RESP"] = 60025;
  646. t[e[60027] = "FAVORITE_HAND_REQ"] = 60027;
  647. t[e[60028] = "FAVORITE_HAND_RESP"] = 60028;
  648. t[e[60031] = "FAVORITE_LIST_NEW_REQ"] = 60031;
  649. t[e[60032] = "FAVORITE_LIST_NEW_RESP"] = 60032;
  650. t[e[60034] = "GET_BIG_BLIND_REQ"] = 60034;
  651. t[e[60035] = "GET_BIG_BLIND_RESP"] = 60035;
  652. t[e[60037] = "GET_HAS_BUYIN_REQ"] = 60037;
  653. t[e[60038] = "GET_HAS_BUYIN_RESP"] = 60038;
  654. t[e[60041] = "GET_ROUND_INFO_REQ"] = 60041;
  655. t[e[60042] = "GET_ROUND_INFO_RESP"] = 60042;
  656. t[e[60044] = "GET_UID_HAND_COUNT_REQ"] = 60044;
  657. t[e[60045] = "GET_UID_HAND_COUNT_RESP"] = 60045;
  658. t[e[60047] = "GET_HAND_COUNT_REQ"] = 60047;
  659. t[e[60048] = "GET_HAND_COUNT_RESP"] = 60048;
  660. t[e[60051] = "GET_PLAYER_LATEST_REQ"] = 60051;
  661. t[e[60052] = "GET_PLAYER_LATEST_RESP"] = 60052;
  662. t[e[60055] = "JF_GAME_HAND_REQ"] = 60055;
  663. t[e[60056] = "JF_GAME_HAND_RESP"] = 60056;
  664. t[e[60057] = "JF_ROOM_LIST_REQ"] = 60057;
  665. t[e[60058] = "JF_ROOM_LIST_RESP"] = 60058;
  666. t[e[60060] = "JF_GAME_UUIDS_REQ"] = 60060;
  667. t[e[60061] = "JF_GAME_UUIDS_RESP"] = 60061;
  668. t[e[60062] = "JF_DATA_REQ"] = 60062;
  669. t[e[60063] = "JF_DATA_RESP"] = 60063;
  670. t[e[60064] = "GAME_REVIEW_LIST_REQ"] = 60064;
  671. t[e[60065] = "GAME_REVIEW_LIST_RESP"] = 60065;
  672. t[e[60068] = "DELETE_FAVORITE_LIST_REQ"] = 60068;
  673. t[e[60069] = "DELETE_FAVORITE_LIST_RESP"] = 60069;
  674. t[e[60071] = "FORCE_SHOW_CARD_REQ"] = 60071;
  675. t[e[60072] = "FORCE_SHOW_CARD_RSP"] = 60072;
  676. t[e[60074] = "SEND_CARD_FUN_REQ"] = 60074;
  677. t[e[60075] = "SEND_CARD_FUN_RSP"] = 60075;
  678. t[e[60077] = "GAME_UUIDS_REQ"] = 60077;
  679. t[e[60078] = "GAME_UUIDS_RESP"] = 60078;
  680. t[e[60080] = "GAME_BIG_POT_LIST_REQ"] = 60080;
  681. t[e[60081] = "GAME_BIG_POT_LIST_RSP"] = 60081;
  682. t[e[60082] = "SUBMIT_HAND_RECORD_REQ"] = 60082;
  683. t[e[60083] = "SUBMIT_HAND_RECORD_RSP"] = 60083;
  684. t[e[60088] = "SUBMIT_HAND_RECORD_MATCHED_RULE_REQ"] = 60088;
  685. t[e[60089] = "SUBMIT_HAND_RECORD_MATCHED_RULE_RSP"] = 60089;
  686. t[e[1003] = "CONNECT_SERVER_FAILED_NOTIFY"] = 1003;
  687. t[e[1006] = "SERVER_CLOSE_NOTIFY"] = 1006;
  688. t[e[1007] = "SERVER_EXCEPT_NOTIFY"] = 1007;
  689. t[e[10] = "MsgID_ConnClose_Notice"] = 10;
  690. t[e[20] = "MsgId_SysDestroyRoom_Request"] = 20;
  691. t[e[30] = "MsgId_SysRoom_Notice"] = 30;
  692. t[e[10001] = "MsgID_Logon_Response"] = 10001;
  693. t[e[10002] = "MsgID_CreateRoom_Request"] = 10002;
  694. t[e[10003] = "MsgID_CreateRoom_Response"] = 10003;
  695. t[e[10004] = "MsgID_CreateRoom_Notice"] = 10004;
  696. t[e[10005] = "MsgID_DestroyRoom_Request"] = 10005;
  697. t[e[10006] = "MsgID_DestroyRoom_Response"] = 10006;
  698. t[e[10007] = "MsgID_DestroyRoom_Notice"] = 10007;
  699. t[e[10008] = "MsgID_JoinRoom_Request"] = 10008;
  700. t[e[10009] = "MsgID_JoinRoom_Response"] = 10009;
  701. t[e[10010] = "MsgID_LeaveRoom_Request"] = 10010;
  702. t[e[10011] = "MsgID_LeaveRoom_Response"] = 10011;
  703. t[e[10012] = "MsgID_SitDown_Request"] = 10012;
  704. t[e[10013] = "MsgID_SitDown_Response"] = 10013;
  705. t[e[10014] = "MsgID_SitDown_Notice"] = 10014;
  706. t[e[10015] = "MsgID_Standup_Request"] = 10015;
  707. t[e[10016] = "MsgID_Standup_Response"] = 10016;
  708. t[e[10017] = "MsgID_Standup_Notice"] = 10017;
  709. t[e[10018] = "MsgID_Buyin_Request"] = 10018;
  710. t[e[10019] = "MsgID_Buyin_Response"] = 10019;
  711. t[e[10024] = "MsgID_StartGame_Request"] = 10024;
  712. t[e[10025] = "MsgID_StartGame_Response"] = 10025;
  713. t[e[10026] = "MsgID_StartGame_Notice"] = 10026;
  714. t[e[10027] = "MsgID_ResetGame_Notice"] = 10027;
  715. t[e[10028] = "MsgID_Game_Post_Notice"] = 10028;
  716. t[e[10029] = "MsgID_Game_Ante_Notice"] = 10029;
  717. t[e[10030] = "MsgID_Game_ElectDealer_Notice"] = 10030;
  718. t[e[10031] = "MsgID_Game_Blind_Notice"] = 10031;
  719. t[e[10032] = "MsgID_Game_HoleCard_Notice"] = 10032;
  720. t[e[10033] = "MsgID_PlayerActionTurn_Notice"] = 10033;
  721. t[e[10034] = "MsgID_Action_Request"] = 10034;
  722. t[e[10035] = "MsgID_Action_Response"] = 10035;
  723. t[e[10036] = "MsgID_PlayerAction_Notice"] = 10036;
  724. t[e[10037] = "MsgID_Game_RoundEnd_Notice"] = 10037;
  725. t[e[10038] = "MsgID_CommunityCards_Notice"] = 10038;
  726. t[e[10039] = "MsgID_Game_ShowCard_Notice"] = 10039;
  727. t[e[10040] = "MsgID_Game_Insurance_Notice"] = 10040;
  728. t[e[10041] = "MsgID_BuyInsurance_Request"] = 10041;
  729. t[e[10042] = "MsgID_BuyInsurance_Response"] = 10042;
  730. t[e[10043] = "MsgID_Game_Settlement_Notice"] = 10043;
  731. t[e[10044] = "MsgID_Game_Snapshot_Notice"] = 10044;
  732. t[e[10045] = "MsgID_Random_Seat_Notice"] = 10045;
  733. t[e[10046] = "MsgID_Game_ShowDown_Notice"] = 10046;
  734. t[e[10047] = "MsgID_Room_Situation_Request"] = 10047;
  735. t[e[10048] = "MsgID_Room_Situation_Response"] = 10048;
  736. t[e[10049] = "MsgID_Room_Situation_Notice"] = 10049;
  737. t[e[10050] = "MsgID_SendCard_Fun_Request"] = 10050;
  738. t[e[10051] = "MsgID_SendCard_Fun_Response"] = 10051;
  739. t[e[10052] = "MsgID_SendCard_Fun_Notice"] = 10052;
  740. t[e[10053] = "MsgID_SendChat_Request"] = 10053;
  741. t[e[10054] = "MsgID_SendChat_Response"] = 10054;
  742. t[e[10055] = "MsgID_SendChat_Notice"] = 10055;
  743. t[e[10056] = "MsgID_StayPosition_Request"] = 10056;
  744. t[e[10057] = "MsgID_StayPosition_Response"] = 10057;
  745. t[e[10058] = "MsgID_StayPosition_Notice"] = 10058;
  746. t[e[10059] = "MsgID_BackPosition_Request"] = 10059;
  747. t[e[10060] = "MsgID_BackPosition_Response"] = 10060;
  748. t[e[10061] = "MsgID_BackPosition_Notice"] = 10061;
  749. t[e[10062] = "MsgID_ShowCard_Request"] = 10062;
  750. t[e[10063] = "MsgID_ShowCard_Response"] = 10063;
  751. t[e[10064] = "MsgID_ShowCard_Notice"] = 10064;
  752. t[e[10065] = "MsgID_Login_Player_JoinRoom_Notice"] = 10065;
  753. t[e[10066] = "MsgID_Waiting_OtherPlayer_Notice"] = 10066;
  754. t[e[10067] = "MsgID_UpdateMoney_Request"] = 10067;
  755. t[e[10068] = "MsgID_UpdateMoney_Response"] = 10068;
  756. t[e[10069] = "MsgID_Buyin_Notice"] = 10069;
  757. t[e[10070] = "MsgID_GameRecords_Notice"] = 10070;
  758. t[e[10074] = "MsgID_BuyInsuranceResult_Notice"] = 10074;
  759. t[e[10075] = "MsgID_InsuranceToomanyLeader_Notice"] = 10075;
  760. t[e[10076] = "MsgID_InsuranceHitOuts_Notice"] = 10076;
  761. t[e[10077] = "MsgID_InsuranceMissOuts_Notice"] = 10077;
  762. t[e[10078] = "MsgID_NoNeedInsurance_Notice"] = 10078;
  763. t[e[10079] = "MsgID_Snapshot_Request"] = 10079;
  764. t[e[10080] = "MsgID_Snapshot_Response"] = 10080;
  765. t[e[10081] = "MsgID_Buyout_Request"] = 10081;
  766. t[e[10082] = "MsgID_Buyout_Response"] = 10082;
  767. t[e[10083] = "MsgID_Buyout_Notice"] = 10083;
  768. t[e[10084] = "MsgID_RealStart_Notice"] = 10084;
  769. t[e[10085] = "MsgID_AddActionTime_Notice"] = 10085;
  770. t[e[10086] = "MsgID_NotSupport_Insurance_Notice"] = 10086;
  771. t[e[10087] = "MsgID_HeartBeat_Request"] = 10087;
  772. t[e[10088] = "MsgID_HeartBeat_Response"] = 10088;
  773. t[e[10089] = "MsgID_InteractiveExpression_Request"] = 10089;
  774. t[e[10090] = "MsgID_InteractiveExpression_Response"] = 10090;
  775. t[e[10091] = "MsgID_InteractiveExpression_Notice"] = 10091;
  776. t[e[10092] = "MsgID_AddInsuranceTime_Request"] = 10092;
  777. t[e[10093] = "MsgID_AddInsuranceTime_Response"] = 10093;
  778. t[e[10094] = "MsgID_AddInsuranceTime_Notice"] = 10094;
  779. t[e[10095] = "MsgID_AddRoomTime_Request"] = 10095;
  780. t[e[10096] = "MsgID_AddRoomTime_Response"] = 10096;
  781. t[e[10097] = "MsgID_AddRoomTime_Notice"] = 10097;
  782. t[e[10098] = "MsgID_ProhibitSitdown_Request"] = 10098;
  783. t[e[10099] = "MsgID_ProhibitSitdown_Response"] = 10099;
  784. t[e[10100] = "MsgID_ProhibitSitdown_Notice"] = 10100;
  785. t[e[10101] = "MsgID_ForceStandup_Request"] = 10101;
  786. t[e[10102] = "MsgID_ForceStandup_Response"] = 10102;
  787. t[e[10103] = "MsgID_ForceStandup_Notice"] = 10103;
  788. t[e[10104] = "MsgID_PauseGame_Request"] = 10104;
  789. t[e[10105] = "MsgID_PauseGame_Response"] = 10105;
  790. t[e[10106] = "MsgID_PauseGame_Notice"] = 10106;
  791. t[e[10107] = "MsgID_InitiativeDestroyRoom_Notice"] = 10107;
  792. t[e[10108] = "MsgID_CheckOutAndLeave_Request"] = 10108;
  793. t[e[10109] = "MsgID_CheckOutAndLeave_Response"] = 10109;
  794. t[e[10110] = "MsgID_CheckOutAndLeave_Notice"] = 10110;
  795. t[e[10111] = "MsgID_DefaultFold_Request"] = 10111;
  796. t[e[10112] = "MsgID_DefaultFold_Response"] = 10112;
  797. t[e[10113] = "MsgID_OwnerSetBuyinLimit_Request"] = 10113;
  798. t[e[10114] = "MsgID_OwnerSetBuyinLimit_Response"] = 10114;
  799. t[e[10115] = "MsgID_OwnerSetBuyinLimit_Notice"] = 10115;
  800. t[e[10116] = "MsgID_PlayerBuyinsInfo_Request"] = 10116;
  801. t[e[10117] = "MsgID_PlayerBuyinsInfo_Response"] = 10117;
  802. t[e[10118] = "MsgID_PlayerBuyinsInfo_Notice"] = 10118;
  803. t[e[10119] = "MsgID_GameActionTurn_Request"] = 10119;
  804. t[e[10120] = "MsgID_GameActionTurn_Response"] = 10120;
  805. t[e[10121] = "MsgID_PhotoVerify_Request"] = 10121;
  806. t[e[10122] = "MsgID_PhotoVerify_Response"] = 10122;
  807. t[e[10123] = "MsgID_PhotoVerify_Notice"] = 10123;
  808. t[e[10124] = "MsgID_UploadVerifyPhotoSucc_Request"] = 10124;
  809. t[e[10125] = "MsgID_UploadVerifyPhotoSucc_Response"] = 10125;
  810. t[e[10126] = "MsgID_UploadVerifyPhotoSucc_Notice"] = 10126;
  811. t[e[10127] = "MsgID_GlobalMessage_Notice"] = 10127;
  812. t[e[10128] = "MsgID_FairGame_Notice"] = 10128;
  813. t[e[10129] = "MsgID_CheckAllianceRoomPriviledge_Request"] = 10129;
  814. t[e[10130] = "MsgID_CheckAllianceRoomPriviledge_Response"] = 10130;
  815. t[e[10131] = "MsgID_ForceShowCard_Request"] = 10131;
  816. t[e[10132] = "MsgID_ForceShowCard_Response"] = 10132;
  817. t[e[10133] = "MsgID_ForceShowCard_Notice"] = 10133;
  818. t[e[10134] = "MsgID_AddRommExTimeLeft_Notice"] = 10134;
  819. t[e[10135] = "MsgID_AddRoomTimeCount_Request"] = 10135;
  820. t[e[10136] = "MsgID_AddRoomTimeCount_response"] = 10136;
  821. t[e[10137] = "MsgID_RoomDisMiss_Notice"] = 10137;
  822. t[e[10138] = "MsgID_RequestJoinRoomWithPassword"] = 10138;
  823. t[e[10139] = "MsgID_ResponseJoinRoomWithPassword"] = 10139;
  824. t[e[10140] = "MsgID_RequestCheckBuyinPassword"] = 10140;
  825. t[e[10141] = "MsgID_ResponseCheckBuyinPassword"] = 10141;
  826. t[e[10142] = "MsgID_RequestCheckFirstTimeJoinRoomWithPassword"] = 10142;
  827. t[e[10143] = "MsgID_ResponseCheckFirstTimeJoinRoomWithPassword"] = 10143;
  828. t[e[10144] = "MsgID_RequestCheckFirstTimeBuyinWithPassword"] = 10144;
  829. t[e[10145] = "MsgID_ResponseCheckFirstTimeBuyinWithPassword"] = 10145;
  830. t[e[10146] = "MsgID_UpdateMoney_Notice"] = 10146;
  831. t[e[10147] = "MsgID_AutoCompleteChips_request"] = 10147;
  832. t[e[10148] = "MsgID_AutoCompleteChips_response"] = 10148;
  833. t[e[10150] = "MsgID_NotiPlayerHoleCard_Notice"] = 10150;
  834. t[e[10151] = "MsgID_CheckVpn_Notice"] = 10151;
  835. t[e[10152] = "MsgID_QuickLeave_Request"] = 10152;
  836. t[e[10153] = "MsgID_QuickLeave_Response"] = 10153;
  837. t[e[10154] = "MsgID_QuickLeave_Notice"] = 10154;
  838. t[e[10155] = "MsgID_QuickFold_Request"] = 10155;
  839. t[e[10156] = "MsgID_QuickFold_Response"] = 10156;
  840. t[e[10157] = "MsgID_TimeOut_QuickFold"] = 10157;
  841. t[e[10158] = "MsgID_LastRound_Win"] = 10158;
  842. t[e[10159] = "MsgId_KickOff_Request"] = 10159;
  843. t[e[10301] = "MsgId_GetGameUUIdsJs_Request"] = 10301;
  844. t[e[10302] = "MsgId_GetGameUUIdsJs_Response"] = 10302;
  845. t[e[10303] = "MsgId_GetGameUUIdsJs_Notice"] = 10303;
  846. t[e[10304] = "MsgId_GuessHandCard_BeginBet_Notice"] = 10304;
  847. t[e[10305] = "MsgId_GuessHandCard_Bet_Request"] = 10305;
  848. t[e[10306] = "MsgId_GuessHandCard_Bet_Response"] = 10306;
  849. t[e[10307] = "MsgId_GuessHandCard_SetBetOpt_Request"] = 10307;
  850. t[e[10308] = "MsgId_GuessHandCard_SetBetOpt_Response"] = 10308;
  851. t[e[10309] = "MsgId_GuessHandCard_Settle_Notice"] = 10309;
  852. t[e[10401] = "MsgId_GetRoomLimit_ID_Request"] = 10401;
  853. t[e[10402] = "MsgId_GetRoomLimit_ID_Response"] = 10402;
  854. t[e[10403] = "MsgId_CriticismStart_Notice"] = 10403;
  855. t[e[10404] = "MsgId_NotEnoughMoney2Crit_Notice"] = 10404;
  856. t[e[10405] = "MsgId_AutoWithdraw_Request"] = 10405;
  857. t[e[10406] = "MsgId_AutoWithdraw_Response"] = 10406;
  858. t[e[10407] = "MsgID_UploadGuessState_Request"] = 10407;
  859. t[e[10408] = "MsgID_ShowCritPrompt_Notice"] = 10408;
  860. t[e[10421] = "MsgId_SendBarrage_Request"] = 10421;
  861. t[e[10422] = "MsgId_SendBarrage_Response"] = 10422;
  862. t[e[10423] = "MsgId_SendBarrage_Notice"] = 10423;
  863. t[e[10424] = "MsgId_BarrageCount_Request"] = 10424;
  864. t[e[10425] = "MsgId_BarrageCount_Response"] = 10425;
  865. t[e[10426] = "MsgID_ReplayForceShowCard_Request"] = 10426;
  866. t[e[10427] = "MsgID_ReplayForceShowCard_Response"] = 10427;
  867. t[e[10428] = "MsgID_ReplayForceShowCard_Notice"] = 10428;
  868. t[e[10429] = "MsgID_ReplaySendCard_Request"] = 10429;
  869. t[e[10430] = "MsgID_ReplaySendCard_Response"] = 10430;
  870. t[e[10431] = "MsgID_ReplaySendCard_Notice"] = 10431;
  871. t[e[10432] = "MsgID_NotiGameUpdateThumb_Request"] = 10432;
  872. t[e[10433] = "MsgID_NotiGameUpdateThumb_Response"] = 10433;
  873. t[e[10434] = "MsgID_ChangeTable_Request"] = 10434;
  874. t[e[10435] = "MsgID_ChangeTable_Response"] = 10435;
  875. t[e[10528] = "MsgId_NotDisturb_Request"] = 10528;
  876. t[e[10529] = "MsgId_NotDisturb_Response"] = 10529;
  877. t[e[10530] = "MsgId_OpenLive_Request"] = 10530;
  878. t[e[10531] = "MsgId_OpenLive_Response"] = 10531;
  879. t[e[10532] = "MsgId_OpenMike_Request"] = 10532;
  880. t[e[10533] = "MsgId_OpenMike_Response"] = 10533;
  881. t[e[10544] = "MsgId_CloseStar_Notice"] = 10544;
  882. t[e[10545] = "MsgID_FavoriteHand_Request"] = 10545;
  883. t[e[10546] = "MsgID_FavoriteHand_Response"] = 10546;
  884. t[e[10551] = "MsgId_Like_Request"] = 10551;
  885. t[e[10552] = "MsgId_Like_Response"] = 10552;
  886. t[e[10553] = "MsgId_Like_Notice"] = 10553;
  887. t[e[10556] = "MsgId_GoodFriendJoinTable_Notice"] = 10556;
  888. t[e[10557] = "MsgId_IsEmojiFree_Request"] = 10557;
  889. t[e[10558] = "MsgId_IsEmojiFree_Response"] = 10558;
  890. t[e[10559] = "MsgId_IsEmojiFree_Notice"] = 10559;
  891. t[e[10563] = "MsgId_IntimacyUp_Notice"] = 10563;
  892. t[e[10564] = "MsgId_MikeMode_Request"] = 10564;
  893. t[e[10565] = "MsgId_MikeMode_Response"] = 10565;
  894. t[e[10566] = "MsgId_VoicePrivate_Notice"] = 10566;
  895. t[e[10567] = "MsgId_CanSpeak_Notice"] = 10567;
  896. t[e[10568] = "MsgId_InviterSeatFreed_Notice"] = 10568;
  897. t[e[10569] = "MsgId_StarCache_Notice"] = 10569;
  898. t[e[10570] = "MsgId_StarWillClose_Notice"] = 10570;
  899. t[e[10571] = "MsgId_Tip_Request"] = 10571;
  900. t[e[10572] = "MsgId_Tip_Response"] = 10572;
  901. t[e[10581] = "MsgId_Luck_StarSeat_Countdown_Notice"] = 10581;
  902. t[e[10582] = "MsgId_Luck_StarSeat_CloseActive_Notice"] = 10582;
  903. t[e[10583] = "MsgId_Luck_StarSeat_DrawResult_Notice"] = 10583;
  904. t[e[10584] = "MsgId_GetLuck_StarSeat_DrawList_Request"] = 10584;
  905. t[e[10585] = "MsgId_GetLuck_StarSeat_DrawList_Response"] = 10585;
  906. t[e[10586] = "MsgId_GetSelf_LuckStarSeat_ResultList_Request"] = 10586;
  907. t[e[10587] = "MsgId_GetSelf_LuckStarSeat_ResultList_Response"] = 10587;
  908. t[e[10576] = "MsgId_RoomNews_Notice"] = 10576;
  909. t[e[10577] = "MsgId_TipRank_Request"] = 10577;
  910. t[e[10578] = "MsgId_TipRank_Response"] = 10578;
  911. t[e[10591] = "MsgId_TipRecord_Request"] = 10591;
  912. t[e[10592] = "MsgId_TipRecord_Response"] = 10592;
  913. t[e[10594] = "MsgId_SendBarrageForbidden_Request"] = 10594;
  914. t[e[10595] = "MsgId_SendBarrageForbidden_Response"] = 10595;
  915. t[e[10596] = "MsgId_SendBarrageForbidden_Notice"] = 10596;
  916. t[e[10597] = "MsgId_SendBarrageForbiddenConfChange_Notice"] = 10597;
  917. t[e[10603] = "MsgId_TipForbidden_Notice"] = 10603;
  918. t[e[10604] = "MsgId_C2CPayment_Block_Notice"] = 10604;
  919. t[e[10605] = "MsgId_MagicEmoji_Request"] = 10605;
  920. t[e[10606] = "MsgId_MagicEmoji_Response"] = 10606;
  921. t[e[10607] = "MsgId_MagicEmoji_Notice"] = 10607;
  922. t[e[10608] = "MsgId_DynamicConfig_Notice"] = 10608;
  923. t[e[10] = "H5Thailand"] = 10;
  924. t[e[11] = "H5WebThailand"] = 11;
  925. t[e[12] = "H5Arab"] = 12;
  926. t[e[13] = "H5Hindi"] = 13;
  927. t[e[14] = "H5Mempoker"] = 14;
  928. t[e[15] = "PC"] = 15;
  929. t[e[10] = "Enum_Action_Send_HoleCards"] = 10;
  930. t[e[11] = "Enum_Action_Straddle"] = 11;
  931. t[e[12] = "Enum_Action_Post"] = 12;
  932. t[e[11] = "OPT_FIRST_CHECK"] = 11;
  933. t[e[20] = "WAITING"] = 20;
  934. t[e[21] = "FORCE_BLIND"] = 21;
  935. t[e[22] = "PAUSE"] = 22;
  936. t[e[23] = "FORCE_ANTE"] = 23;
  937. t[e[50001] = "INVALID_TOKEN"] = 50001;
  938. t[e[50002] = "INVALID_ROOM"] = 50002;
  939. t[e[50003] = "INVALID_PARAM"] = 50003;
  940. t[e[50004] = "INVALID_STATE"] = 50004;
  941. t[e[50005] = "INVALID_ACTION"] = 50005;
  942. t[e[50006] = "INVALID_TAKEIN"] = 50006;
  943. t[e[50007] = "OVER_TURN"] = 50007;
  944. t[e[50051] = "TIMEOUT"] = 50051;
  945. t[e[50052] = "PLAYING"] = 50052;
  946. t[e[50053] = "LESS_COIN"] = 50053;
  947. t[e[50054] = "NEAR_GPS"] = 50054;
  948. t[e[50055] = "SAME_IP"] = 50055;
  949. t[e[50071] = "NO_SEAT"] = 50071;
  950. t[e[50072] = "NO_ROOM"] = 50072;
  951. t[e[50073] = "NO_LOGIN"] = 50073;
  952. t[e[50074] = "CAN_LEAVE"] = 50074;
  953. t[e[50075] = "OTHER_ROOM"] = 50075;
  954. t[e[50085] = "FinalVoice"] = 50085;
  955. t[e[50001] = "UserTokenReq"] = 50001;
  956. t[e[50002] = "UserTokenRes"] = 50002;
  957. t[e[50003] = "EnterRoomReq"] = 50003;
  958. t[e[50004] = "EnterRoomRes"] = 50004;
  959. t[e[50005] = "RoomSnapshotReq"] = 50005;
  960. t[e[50006] = "RoomSnapshotMsg"] = 50006;
  961. t[e[50013] = "SitDownReq"] = 50013;
  962. t[e[50014] = "SitDownRes"] = 50014;
  963. t[e[50016] = "NeedMoreCoinMsg"] = 50016;
  964. t[e[50029] = "LeaveRoomReq"] = 50029;
  965. t[e[50030] = "LeaveRoomRes"] = 50030;
  966. t[e[50032] = "SeatOccupiedMsg"] = 50032;
  967. t[e[50034] = "SeatEmptyMsg"] = 50034;
  968. t[e[50036] = "PlayerActionMsg"] = 50036;
  969. t[e[50037] = "HoleCardListMsg"] = 50037;
  970. t[e[50038] = "PlayerLeaveMsg"] = 50038;
  971. t[e[50039] = "OtherRoomMsg"] = 50039;
  972. t[e[50040] = "HideHoleCardReq"] = 50040;
  973. t[e[50041] = "HideHoleCardRes"] = 50041;
  974. t[e[50042] = "RoomConfReq"] = 50042;
  975. t[e[50043] = "RoomConfRes"] = 50043;
  976. t[e[50063] = "Emoji"] = 50063;
  977. t[e[50067] = "EmojiRes"] = 50067;
  978. t[e[50064] = "AnimReq"] = 50064;
  979. t[e[50065] = "AnimRes"] = 50065;
  980. t[e[50066] = "AnimMsg"] = 50066;
  981. t[e[50069] = "VoiceReq"] = 50069;
  982. t[e[50070] = "VoiceRes"] = 50070;
  983. t[e[50071] = "VoiceMsg"] = 50071;
  984. t[e[50102] = "DealerPosMsg"] = 50102;
  985. t[e[50104] = "HoleCardsMsg"] = 50104;
  986. t[e[50106] = "BoardCardsMsg"] = 50106;
  987. t[e[50109] = "ActionReq"] = 50109;
  988. t[e[50110] = "ActionRes"] = 50110;
  989. t[e[50112] = "NeedActionMsg"] = 50112;
  990. t[e[50114] = "ShowdownMsg"] = 50114;
  991. t[e[50116] = "RoundResultMsg"] = 50116;
  992. t[e[50120] = "PotsMsg"] = 50120;
  993. t[e[50124] = "PlayerStateMsg"] = 50124;
  994. t[e[50125] = "PauseGameReq"] = 50125;
  995. t[e[50126] = "PauseGameRes"] = 50126;
  996. t[e[50127] = "StandbyReq"] = 50127;
  997. t[e[50128] = "StandbyRes"] = 50128;
  998. t[e[50129] = "ResumeGameReq"] = 50129;
  999. t[e[50130] = "ResumeGameRes"] = 50130;
  1000. t[e[50131] = "RoomBillReq"] = 50131;
  1001. t[e[50132] = "RoomBillRes"] = 50132;
  1002. t[e[50133] = "AutoPlayMsg"] = 50133;
  1003. t[e[50134] = "CancelAutoPlayReq"] = 50134;
  1004. t[e[50135] = "CancelAutoPlayRes"] = 50135;
  1005. t[e[50136] = "PlaybackReq"] = 50136;
  1006. t[e[50137] = "PlaybackRes"] = 50137;
  1007. t[e[50122] = "PlayerNickNameChangeMsg"] = 50122;
  1008. t[e[50501] = "ChangeBlindMsg"] = 50501;
  1009. t[e[50505] = "ReJoinMQ"] = 50505;
  1010. t[e[50506] = "SetCardReq"] = 50506;
  1011. t[e[50507] = "SetCardRes"] = 50507;
  1012. t[e[50510] = "ShowCardReq"] = 50510;
  1013. t[e[50511] = "ShowCardRes"] = 50511;
  1014. t[e[50512] = "RedPocketCarouseMsg"] = 50512;
  1015. t[e[50513] = "CelebrityBroadcastReq"] = 50513;
  1016. t[e[50514] = "CelebrityBroadcastRes"] = 50514;
  1017. t[e[50515] = "CelebrityBroadcastNotifyFullMsg"] = 50515;
  1018. t[e[50516] = "CelebrityBroadcastListMsg"] = 50516;
  1019. t[e[100] = "POS_LUCK"] = 100;
  1020. t[e[101] = "POS_LUCK_1"] = 101;
  1021. t[e[102] = "POS_LUCK_2"] = 102;
  1022. t[e[103] = "POS_LUCK_3"] = 103;
  1023. t[e[104] = "POS_LUCK_4"] = 104;
  1024. t[e[105] = "POS_LUCK_5"] = 105;
  1025. t[e[106] = "POS_LUCK_6"] = 106;
  1026. t[e[40001] = "LOGIN_GAME_RESP"] = 40001;
  1027. t[e[40004] = "HEART_BEAT_REQ"] = 40004;
  1028. t[e[40005] = "HEART_BEAT_RESP"] = 40005;
  1029. t[e[40007] = "JOIN_ROOM_REQ"] = 40007;
  1030. t[e[40008] = "JOIN_ROOM_RESP"] = 40008;
  1031. t[e[40009] = "GAME_LIST_REQ"] = 40009;
  1032. t[e[40010] = "GAME_LIST_RESP"] = 40010;
  1033. t[e[40011] = "GAME_DATA_SYN"] = 40011;
  1034. t[e[40012] = "DEAL_NOTIFY"] = 40012;
  1035. t[e[40013] = "BET_REQ"] = 40013;
  1036. t[e[40014] = "BET_RESP"] = 40014;
  1037. t[e[40015] = "BET_NOTIFY"] = 40015;
  1038. t[e[40016] = "GAME_ROUND_END_NOTIFY"] = 40016;
  1039. t[e[40018] = "LEAVE_ROOM_REQ"] = 40018;
  1040. t[e[40019] = "LEAVE_ROOM_RESP"] = 40019;
  1041. t[e[40020] = "LEAVE_ROOM_NOTIFY"] = 40020;
  1042. t[e[40022] = "CONN_CLOSE_REQ"] = 40022;
  1043. t[e[40023] = "ROOM_TREND_REQ"] = 40023;
  1044. t[e[40024] = "ROOM_TREND_RSP"] = 40024;
  1045. t[e[40025] = "ROOM_TREND_NOTICE"] = 40025;
  1046. t[e[40026] = "START_BET_NOTIFY"] = 40026;
  1047. t[e[40029] = "AUTO_BET_REQ"] = 40029;
  1048. t[e[40030] = "AUTO_BET_RESP"] = 40030;
  1049. t[e[40031] = "AUTO_BET_NOTIFY"] = 40031;
  1050. t[e[40032] = "PLAYER_LIST_REQ"] = 40032;
  1051. t[e[40033] = "PLAYER_LIST_RESP"] = 40033;
  1052. t[e[40036] = "MERGE_AUTO_BET_NOTIFY"] = 40036;
  1053. t[e[40037] = "KICK_NOTIFY"] = 40037;
  1054. t[e[40038] = "DOWN_DEALER_REQ"] = 40038;
  1055. t[e[40039] = "DOWN_DEALER_RSP"] = 40039;
  1056. t[e[40040] = "DOWN_DEALER_NOTIFY"] = 40040;
  1057. t[e[40041] = "UP_DEALER_REQ"] = 40041;
  1058. t[e[40042] = "UP_DEALER_RSP"] = 40042;
  1059. t[e[40043] = "UP_DEALER_NOTIFY"] = 40043;
  1060. t[e[40044] = "CANCEL_WAIT_REQ"] = 40044;
  1061. t[e[40045] = "CANCEL_WAIT_RSP"] = 40045;
  1062. t[e[40047] = "DEALER_LIST_REQ"] = 40047;
  1063. t[e[40048] = "DEALER_LIST_RSP"] = 40048;
  1064. t[e[40050] = "GET_BUY_STOCK_NUM_REQ"] = 40050;
  1065. t[e[40051] = "GET_BUY_STOCK_NUM_RSP"] = 40051;
  1066. t[e[40052] = "JACKPOT_DATA_REQ"] = 40052;
  1067. t[e[40053] = "JACKPOT_DATA_RSP"] = 40053;
  1068. t[e[40055] = "JACKPOT_AWARD_LIST_REQ"] = 40055;
  1069. t[e[40056] = "JACKPOT_AWARD_LIST_RSP"] = 40056;
  1070. t[e[40063] = "GAME_WILL_START_NOTIFY"] = 40063;
  1071. t[e[40066] = "KICK_DEALER_APPLY_NOTIFY"] = 40066;
  1072. t[e[40067] = "UPDATE_DEALER_LIST_REQ"] = 40067;
  1073. t[e[40068] = "UPDATE_DEALER_LIST_RSP"] = 40068;
  1074. t[e[40070] = "SET_GAME_OPTION_REQ"] = 40070;
  1075. t[e[40071] = "SET_GAME_OPTION_RSP"] = 40071;
  1076. t[e[40073] = "START_SETTLEMENT_NOTIFY"] = 40073;
  1077. t[e[40074] = "SEND_EXPRESSION_REQ"] = 40074;
  1078. t[e[40075] = "SEND_EXPRESSION_RSP"] = 40075;
  1079. t[e[40076] = "SEND_EXPRESSION_NOTIFY"] = 40076;
  1080. t[e[40080] = "ADVANCE_AUTO_BET_REQ"] = 40080;
  1081. t[e[40081] = "ADVANCE_AUTO_BET_RSP"] = 40081;
  1082. t[e[40082] = "CANCEL_ADVANCE_AUTO_BET_REQ"] = 40082;
  1083. t[e[40083] = "CANCEL_ADVANCE_AUTO_BET_RSP"] = 40083;
  1084. t[e[40084] = "ADVANCE_AUTO_BET_SET_REQ"] = 40084;
  1085. t[e[40085] = "ADVANCE_AUTO_BET_SET_RSP"] = 40085;
  1086. t[e[40086] = "USER_POINTS_CHANGE_NOTICE"] = 40086;
  1087. t[e[40087] = "ADVANCE_AUTO_BET_ADD_REQ"] = 40087;
  1088. t[e[40088] = "ADVANCE_AUTO_BET_ADD_RSP"] = 40088;
  1089. t[e[41001] = "LOW_VERSION"] = 41001;
  1090. t[e[41002] = "INVALID_TOKEN"] = 41002;
  1091. t[e[41003] = "SERVER_BUSY"] = 41003;
  1092. t[e[41004] = "WITHOUT_LOGIN"] = 41004;
  1093. t[e[41005] = "ROOM_NOT_MATCH"] = 41005;
  1094. t[e[41006] = "ROOM_NOT_EXIST"] = 41006;
  1095. t[e[41007] = "BET_EXCEED_LIMIT"] = 41007;
  1096. t[e[41008] = "ROOM_PLAYER_LIMIT"] = 41008;
  1097. t[e[41009] = "NO_BET"] = 41009;
  1098. t[e[41010] = "BET_AMOUNT_NOT_MATCH"] = 41010;
  1099. t[e[41011] = "NO_MONEY"] = 41011;
  1100. t[e[41012] = "BET_BAD_PARAM"] = 41012;
  1101. t[e[41013] = "STOP_SERVICE"] = 41013;
  1102. t[e[41014] = "NOT_BET_WHEN_AUTO_BET"] = 41014;
  1103. t[e[41015] = "BET_TOO_SMALL"] = 41015;
  1104. t[e[41016] = "BET_COUNT_LIMIT"] = 41016;
  1105. t[e[41017] = "AUTO_BET_LIMIT"] = 41017;
  1106. t[e[41018] = "TOO_MANY_PEOPLE"] = 41018;
  1107. t[e[41019] = "NO_UP_DEALER"] = 41019;
  1108. t[e[41020] = "STOCK_NUM_EXCEED"] = 41020;
  1109. t[e[41021] = "NO_MONEY_TO_DEALER"] = 41021;
  1110. t[e[41022] = "NOT_A_DEALER"] = 41022;
  1111. t[e[41023] = "NOT_IN_APPLY"] = 41023;
  1112. t[e[41024] = "DEALER_NO_BET"] = 41024;
  1113. t[e[41025] = "BAD_REQ_PARAM"] = 41025;
  1114. t[e[41026] = "NO_SET_ADVANCE_AUTO_BET"] = 41026;
  1115. t[e[41027] = "AUTO_BET_COUNT_LIMIT"] = 41027;
  1116. t[e[41028] = "AUTO_BET_NO_MONEY"] = 41028;
  1117. t[e[41029] = "AUTO_BET_EXCEED_LIMIT"] = 41029;
  1118. t[e[41030] = "ROOM_SYSTEM_FORCE_CLOSED"] = 41030;
  1119. t[e[41031] = "CAN_NOT_LEAVE_IN_BETTING"] = 41031;
  1120. t[e[41032] = "CAN_NOT_LEAVE_IN_DEALER"] = 41032;
  1121. t[e[41033] = "IN_CALM_DOWN"] = 41033;
  1122. t[e[41034] = "REACH_LIMIT_BET"] = 41034;
  1123. t[e[10] = "HUANG_TONG"] = 10;
  1124. t[e[10] = "H5Thailand"] = 10;
  1125. t[e[11] = "H5WebThailand"] = 11;
  1126. t[e[12] = "H5Arab"] = 12;
  1127. t[e[13] = "H5Hindi"] = 13;
  1128. t[e[14] = "H5Mempoker"] = 14;
  1129. t[e[15] = "PC"] = 15;
  1130. t[e[12001] = "LOGIN_GAME_REQ"] = 12001;
  1131. t[e[12002] = "LOGIN_GAME_RESP"] = 12002;
  1132. t[e[12004] = "JOIN_ROOM_REQ"] = 12004;
  1133. t[e[12005] = "JOIN_ROOM_RESP"] = 12005;
  1134. t[e[12114] = "GAME_DATA_SYNC_REQ"] = 12114;
  1135. t[e[12115] = "GAME_DATA_SYNC_RESP"] = 12115;
  1136. t[e[12007] = "HEART_BEAT_REQ"] = 12007;
  1137. t[e[12008] = "HEART_BEAT_RESP"] = 12008;
  1138. t[e[12011] = "SIT_DOWN_REQ"] = 12011;
  1139. t[e[12012] = "SIT_DOWN_RESP"] = 12012;
  1140. t[e[12013] = "SIT_DOWN_NOTIFY"] = 12013;
  1141. t[e[12014] = "PLACE_CARD_REQ"] = 12014;
  1142. t[e[12015] = "PLACE_CARD_RESP"] = 12015;
  1143. t[e[12017] = "PLACE_CARD_OVER_REQ"] = 12017;
  1144. t[e[12018] = "PLACE_CARD_OVER_RESP"] = 12018;
  1145. t[e[12019] = "PLACE_CARD_OVER_NOTIFY"] = 12019;
  1146. t[e[12021] = "STAND_UP_REQ"] = 12021;
  1147. t[e[12022] = "STAND_UP_RESP"] = 12022;
  1148. t[e[12023] = "STAND_UP_NOTIFY"] = 12023;
  1149. t[e[12024] = "READY_REQ"] = 12024;
  1150. t[e[12025] = "READY_RESP"] = 12025;
  1151. t[e[12026] = "READY_NOTIFY"] = 12026;
  1152. t[e[12027] = "GAME_RECORD_REQ"] = 12027;
  1153. t[e[12028] = "GAME_RECORD_RESP"] = 12028;
  1154. t[e[12031] = "SEND_CHAT_REQ"] = 12031;
  1155. t[e[12032] = "SEND_CHAT_RESP"] = 12032;
  1156. t[e[12033] = "SEND_CHAT_NOTIFY"] = 12033;
  1157. t[e[12034] = "BUY_IN_REQ"] = 12034;
  1158. t[e[12035] = "BUY_IN_RESP"] = 12035;
  1159. t[e[12036] = "BUY_IN_NOTIFY"] = 12036;
  1160. t[e[12037] = "LEAVE_REQ"] = 12037;
  1161. t[e[12038] = "LEAVE_RESP"] = 12038;
  1162. t[e[12041] = "SITUATION_REQ"] = 12041;
  1163. t[e[12042] = "SITUATION_RESP"] = 12042;
  1164. t[e[12044] = "ACTION_DELAY_REQ"] = 12044;
  1165. t[e[12045] = "ACTION_DELAY_RESP"] = 12045;
  1166. t[e[12046] = "ACTION_DELAY_NOTIFY"] = 12046;
  1167. t[e[12047] = "SEND_BARRAGE_REQ"] = 12047;
  1168. t[e[12048] = "SEND_BARRAGE_RESP"] = 12048;
  1169. t[e[12049] = "SEND_BARRAGE_NOTIFY"] = 12049;
  1170. t[e[12051] = "MsgId_BarrageCount_REQ"] = 12051;
  1171. t[e[12052] = "MsgId_BarrageCount_RESP"] = 12052;
  1172. t[e[12054] = "CHANGE_TABLE_REQ"] = 12054;
  1173. t[e[12055] = "CHANGE_TABLE_RESP"] = 12055;
  1174. t[e[12057] = "SETTLE_REQ"] = 12057;
  1175. t[e[12058] = "SETTLE_RESP"] = 12058;
  1176. t[e[12061] = "JACKPOT_DATA_REQ"] = 12061;
  1177. t[e[12062] = "JACKPOT_DATA_RESP"] = 12062;
  1178. t[e[12064] = "JACKPOT_AWARD_LIST_REQ"] = 12064;
  1179. t[e[12065] = "JACKPOT_AWARD_LIST_RESP"] = 12065;
  1180. t[e[12103] = "GAME_WILL_START_NOTIFY"] = 12103;
  1181. t[e[12106] = "DEAL_NOTIFY"] = 12106;
  1182. t[e[12109] = "SQUAT_CARDS_NOTIFY"] = 12109;
  1183. t[e[12113] = "GAME_ROUND_END_NOTIFY"] = 12113;
  1184. t[e[12116] = "DESTROY_ROOM_NOTIFY"] = 12116;
  1185. t[e[12119] = "CONFIRM_TO_CONTINUE"] = 12119;
  1186. t[e[12123] = "COMMUNITY_CARDS_NOTIFY"] = 12123;
  1187. t[e[12126] = "START_PLACE_CARDS"] = 12126;
  1188. t[e[12129] = "Show_PLACE_CARDS_NOTIFY"] = 12129;
  1189. t[e[12133] = "WAITING_OTHER_PLAYER_NOTIFY"] = 12133;
  1190. t[e[12136] = "CAN_OPERATION_NOTIFY"] = 12136;
  1191. t[e[12139] = "PLAYER_INFO_SYNC_NOTIFY"] = 12139;
  1192. t[e[12143] = "START_MATCH_NOTIFY"] = 12143;
  1193. t[e[12146] = "MATCH_RESULT_NOTIFY"] = 12146;
  1194. t[e[12147] = "GetGameUUIds_REQ"] = 12147;
  1195. t[e[12148] = "GetGameUUIds_RESP"] = 12148;
  1196. t[e[12149] = "BRAND_BARRAGE_NOTIFY"] = 12149;
  1197. t[e[12153] = "MODIFY_PLACE_CARDS_NOTIFY"] = 12153;
  1198. t[e[10528] = "NotDisturb_REQ"] = 10528;
  1199. t[e[10529] = "NotDisturb_RESP"] = 10529;
  1200. t[e[10557] = "IsEmojiFree_REQ"] = 10557;
  1201. t[e[10558] = "IsEmojiFree_RESP"] = 10558;
  1202. t[e[10559] = "IsEmojiFree_NOTIFY"] = 10559;
  1203. t[e[10563] = "IntimacyUp_NOTIFY"] = 10563;
  1204. t[e[10551] = "Like_REQ"] = 10551;
  1205. t[e[10552] = "Like_RESP"] = 10552;
  1206. t[e[10553] = "Like_NOTIFY"] = 10553;
  1207. t[e[10556] = "GoodFriendJoinTable_NOTIFY"] = 10556;
  1208. t[e[10605] = "MagicEmoji_Request"] = 10605;
  1209. t[e[10606] = "MagicEmoji_Response"] = 10606;
  1210. t[e[10607] = "MagicEmoji_Notice"] = 10607;
  1211. t[e[10608] = "DynamicConfig_Notice"] = 10608;
  1212. t[e[11] = "Wait"] = 11;
  1213. t[e[12] = "Deal"] = 12;
  1214. t[e[13] = "PlaceCards"] = 13;
  1215. t[e[14] = "Turn"] = 14;
  1216. t[e[18] = "River"] = 18;
  1217. t[e[20] = "Settlement"] = 20;
  1218. t[e[11] = "SWaitPlaceCards"] = 11;
  1219. t[e[13] = "SPlaceCards"] = 13;
  1220. t[e[14] = "SModifyPlaceCards"] = 14;
  1221. t[e[15] = "SConfirmsPlaceCards"] = 15;
  1222. t[e[20] = "SWaitResult"] = 20;
  1223. t[e[100] = "FAILED"] = 100;
  1224. t[e[13001] = "LOW_VERSION"] = 13001;
  1225. t[e[13002] = "INVALID_TOKEN"] = 13002;
  1226. t[e[13003] = "SERVER_BUSY"] = 13003;
  1227. t[e[13004] = "WITHOUT_LOGIN"] = 13004;
  1228. t[e[13005] = "ROOM_NOT_MATCH"] = 13005;
  1229. t[e[13006] = "ROOM_NOT_EXIST"] = 13006;
  1230. t[e[13007] = "ALREADY_IN_OTHER_GAME"] = 13007;
  1231. t[e[13008] = "ROOM_PLAYER_LIMIT"] = 13008;
  1232. t[e[13013] = "STOP_SERVICE"] = 13013;
  1233. t[e[13018] = "TOO_MANY_PEOPLE"] = 13018;
  1234. t[e[13022] = "SEAT_ALREADY_BUSY"] = 13022;
  1235. t[e[13023] = "NO_ENOUGH_MONEY"] = 13023;
  1236. t[e[13025] = "NOT_YET_COMPLETED_PLACE_CARDS"] = 13025;
  1237. t[e[13026] = "ALREADY_SIT_DOWN_THIS_SEAT"] = 13026;
  1238. t[e[13027] = "ALREADY_SIT_DOWN_Other_SEAT"] = 13027;
  1239. t[e[13028] = "SEAT_ID_NOT_EXIST"] = 13028;
  1240. t[e[13029] = "NO_PLACE_CARDS"] = 13029;
  1241. t[e[13030] = "BAD_REQ_PARAM"] = 13030;
  1242. t[e[13031] = "DISALLOWED_OPERATION"] = 13031;
  1243. t[e[13032] = "ALREADY_ADD_STAND_UP_LIST"] = 13032;
  1244. t[e[13033] = "CAN_NOT_LEAVE_IN_THE_GAME"] = 13033;
  1245. t[e[13034] = "Table_Player_Or_Owner_Can_Chat"] = 13034;
  1246. t[e[13035] = "Barrage_Sent_Too_Often"] = 13035;
  1247. t[e[13036] = "Action_Delay_Exhausted"] = 13036;
  1248. t[e[13037] = "Player_Limit_BuyIn"] = 13037;
  1249. t[e[13038] = "ALREADY_ADD_LEAVE_LIST"] = 13038;
  1250. t[e[13039] = "NOT_ENOUGH_STAKE"] = 13039;
  1251. t[e[13040] = "BUY_IN_AMOUNT_INVALID"] = 13040;
  1252. t[e[13041] = "CAN_NOT_CHANGE_TABLE"] = 13041;
  1253. t[e[13042] = "NOT_SETTLED_YET"] = 13042;
  1254. t[e[13043] = "BUY_IN_SEAT_WAS_SNATCHED"] = 13043;
  1255. t[e[13045] = "NO_JACKPOT"] = 13045;
  1256. t[e[1214] = "GameServer_Send_Barrage_Too_Fast"] = 1214;
  1257. t[e[22] = "GameServer_RoomID_Not_Found"] = 22;
  1258. t[e[1215] = "GameServer_Queue_Barrage_Full"] = 1215;
  1259. t[e[1260] = "NeedAuthVerify"] = 1260;
  1260. t[e[1261] = "WaitAuthRefreshCD"] = 1261;
  1261. t[e[1252] = "AlreadyLiked"] = 1252;
  1262. t[e[1253] = "Param_Validate"] = 1253;
  1263. t[e[116] = "IsEmojiFree"] = 116;
  1264. t[e[10] = "RoyalFlush"] = 10;
  1265. t[e[10] = "TO01_ROOM_STATE_SettlePair"] = 10;
  1266. t[e[11] = "TO01_ROOM_STATE_BLackJack_Take"] = 11;
  1267. t[e[12] = "TO01_ROOM_STATE_Dissolved"] = 12;
  1268. t[e[10] = "TO01_Action_No_Safe"] = 10;
  1269. t[e[11] = "TO01_Action_All_Safe"] = 11;
  1270. t[e[12] = "TO01_Action_All_No_Safe"] = 12;
  1271. t[e[13] = "TO01_Action_Clear_Bet"] = 13;
  1272. t[e[14] = "TO01_Action_BET_Pair"] = 14;
  1273. t[e[15] = "TO01_Action_BlackJack_Take"] = 15;
  1274. t[e[16] = "TO01_Action_BlackJack_No_Take"] = 16;
  1275. t[e[17] = "TO01_Action_TO01_Action_Repeat_Last_Bet"] = 17;
  1276. t[e[18] = "TO01_Action_TO01_Action_Repeat_And_Double_Last_Bet"] = 18;
  1277. t[e[19] = "TO01_Action_Dissolve_Level"] = 19;
  1278. t[e[20] = "TO01_PlayerState_WAITING"] = 20;
  1279. t[e[50001] = "INVALID_TOKEN"] = 50001;
  1280. t[e[50002] = "INVALID_ROOM"] = 50002;
  1281. t[e[50003] = "INVALID_PARAM"] = 50003;
  1282. t[e[50004] = "INVALID_STATE"] = 50004;
  1283. t[e[50005] = "INVALID_ACTION"] = 50005;
  1284. t[e[50006] = "INVALID_TAKEIN"] = 50006;
  1285. t[e[50007] = "OVER_TURN"] = 50007;
  1286. t[e[50008] = "ROOM_DISSOLVED"] = 50008;
  1287. t[e[50051] = "TIMEOUT"] = 50051;
  1288. t[e[50052] = "PLAYING"] = 50052;
  1289. t[e[50053] = "LESS_COIN"] = 50053;
  1290. t[e[50054] = "NEAR_GPS"] = 50054;
  1291. t[e[50055] = "SAME_IP"] = 50055;
  1292. t[e[50071] = "NO_SEAT"] = 50071;
  1293. t[e[50072] = "NO_ROOM"] = 50072;
  1294. t[e[50073] = "NO_LOGIN"] = 50073;
  1295. t[e[50074] = "CAN_LEAVE"] = 50074;
  1296. t[e[50075] = "OTHER_ROOM"] = 50075;
  1297. t[e[56001] = "UP_LIMIT"] = 56001;
  1298. t[e[50080] = "BYSTANDER_ROOM_CHANGE"] = 50080;
  1299. t[e[50081] = "NOT_ENOUGH_COIN"] = 50081;
  1300. t[e[50082] = "NO_Sit_Down"] = 50082;
  1301. t[e[50083] = "Forbid_Voice"] = 50083;
  1302. t[e[50001] = "UserTokenReq"] = 50001;
  1303. t[e[50002] = "UserTokenRes"] = 50002;
  1304. t[e[50003] = "EnterRoomReq"] = 50003;
  1305. t[e[50004] = "EnterRoomRes"] = 50004;
  1306. t[e[50013] = "SitDownReq"] = 50013;
  1307. t[e[50014] = "SitDownRes"] = 50014;
  1308. t[e[50029] = "LeaveRoomReq"] = 50029;
  1309. t[e[50030] = "LeaveRoomRes"] = 50030;
  1310. t[e[50032] = "SeatOccupiedMsg"] = 50032;
  1311. t[e[50034] = "SeatEmptyMsg"] = 50034;
  1312. t[e[50038] = "PlayerLeaveMsg"] = 50038;
  1313. t[e[50119] = "RoomReleaseMsg"] = 50119;
  1314. t[e[50127] = "StandbyReq"] = 50127;
  1315. t[e[50128] = "StandbyRes"] = 50128;
  1316. t[e[50163] = "EmojiReq"] = 50163;
  1317. t[e[50167] = "EmojiRes"] = 50167;
  1318. t[e[50168] = "EmojiMsg"] = 50168;
  1319. t[e[50169] = "VoiceReq"] = 50169;
  1320. t[e[50170] = "VoiceRes"] = 50170;
  1321. t[e[50171] = "VoiceMsg"] = 50171;
  1322. t[e[50176] = "UserCoinMsg"] = 50176;
  1323. t[e[60001] = "TO01_NeedActionMsg"] = 60001;
  1324. t[e[60002] = "TO01_ActionReq"] = 60002;
  1325. t[e[60003] = "TO01_ActionRes"] = 60003;
  1326. t[e[60004] = "TO01_PlayerActionMsg"] = 60004;
  1327. t[e[60005] = "TO01_HandCardsMsg"] = 60005;
  1328. t[e[60006] = "TO01_CardsMsg"] = 60006;
  1329. t[e[60007] = "TO01_RoomSnapshotMsg"] = 60007;
  1330. t[e[60008] = "TO01_ResultMsg"] = 60008;
  1331. t[e[60009] = "TO01_LeaveMsg"] = 60009;
  1332. t[e[60010] = "TO01_EnterGameLevelReq"] = 60010;
  1333. t[e[60011] = "TO01_EnterGameLevelRes"] = 60011;
  1334. t[e[60012] = "TO01_SetCardReq"] = 60012;
  1335. t[e[60013] = "TO01_SetCardRes"] = 60013;
  1336. t[e[60014] = "TO01_MultBetReq"] = 60014;
  1337. t[e[60015] = "TO01_MultBetRes"] = 60015;
  1338. t[e[60016] = "TO01_OTHER_LEVEL"] = 60016;
  1339. t[e[60017] = "TO01_PairResultMsg"] = 60017;
  1340. t[e[60020] = "TO01_ChangeRoomReq"] = 60020;
  1341. t[e[60021] = "TO01_ChangeRoomRes"] = 60021;
  1342. t[e[60022] = "TO01_OpenDealerSecondCardMsg"] = 60022;
  1343. t[e[60023] = "TO01_RoomLastBetMsg"] = 60023;
  1344. t[e[60024] = "TO01_GameFinishedMsg"] = 60024;
  1345. t[e[60025] = "TO01_UserPlayInfoReq"] = 60025;
  1346. t[e[60026] = "TO01_UserPlayInfoRes"] = 60026;
  1347. t[e[60027] = "UserTO01SetVoiceForbidReq"] = 60027;
  1348. t[e[60028] = "UserTO01SetVoiceForbidRes"] = 60028;
  1349. t[e[60029] = "UserTO01GetVoiceForbidReq"] = 60029;
  1350. t[e[60030] = "UserTO01GetVoiceForbidRes"] = 60030;
  1351. t[e[100] = "BLACK_JACK"] = 100;
  1352. t[e[11] = "MiniGameRankListRequest"] = 11;
  1353. t[e[12] = "MiniGameRankListResponse"] = 12;
  1354. t[e[13] = "GetUserAvatarsRequest"] = 13;
  1355. t[e[14] = "GetUserAvatarsResponse"] = 14;
  1356. t[e[15] = "MiniGameInfoListRequest"] = 15;
  1357. t[e[16] = "MiniGameInfoList"] = 16;
  1358. t[e[100] = "UserUpdated"] = 100;
  1359. t[e[200] = "UserTO01PlayInfoReq"] = 200;
  1360. t[e[201] = "UserTO01PlayInfoRes"] = 201;
  1361. t[e[202] = "UserTO01SetRemarkInfoReq"] = 202;
  1362. t[e[203] = "UserTO01SetRemarkInfoRes"] = 203;
  1363. t[e[204] = "UserTO01GetRemarkInfoReq"] = 204;
  1364. t[e[205] = "UserTO01GetRemarkInfoRes"] = 205;
  1365. t[e[98] = "DB_Record_Not_Found"] = 98;
  1366. t[e[99] = "DB_Query_Failed"] = 99;
  1367. t[e[100] = "DB_Write_Failed"] = 100;
  1368. t[e[101] = "JSON_Parse_Failed"] = 101;
  1369. t[e[403] = "Forbidden"] = 403;
  1370. t[e[404] = "Not_Found"] = 404;
  1371. t[e[500] = "Internal_Error"] = 500;
  1372. t[e[5001] = "Gold_Not_Valid"] = 5001;
  1373. t[e[60010] = "NOT_ALLOW_STANDUP"] = 60010;
  1374. t[e[60074] = "NOT_FIND_USER_EX_DATA"] = 60074;
  1375. t[e[60075] = "NOT_ALLOW_SIT"] = 60075;
  1376. t[e[60076] = "NO_MTT_ROOM"] = 60076;
  1377. t[e[60077] = "NOT_ALLOW_REJOING"] = 60077;
  1378. t[e[60078] = "NOT_ALLOW_ENTER"] = 60078;
  1379. t[e[60079] = "NOT_ALLOW_BUYTIME"] = 60079;
  1380. t[e[60080] = "Mtt_Param_Error"] = 60080;
  1381. t[e[60081] = "Mtt_Room_End"] = 60081;
  1382. t[e[60082] = "Mtt_End"] = 60082;
  1383. t[e[60083] = "Not_Allow_Bet"] = 60083;
  1384. t[e[60084] = "Not_Allow_Operate_Bullet"] = 60084;
  1385. t[e[60085] = "Not_Bullet_Zero"] = 60085;
  1386. t[e[60086] = "Enter_Room_Need_Wait"] = 60086;
  1387. t[e[60087] = "MTT_Prepare"] = 60087;
  1388. t[e[60088] = "Sng_Room_Not_Exists"] = 60088;
  1389. t[e[60089] = "Sng_Room_Exit_Fail"] = 60089;
  1390. t[e[60090] = "Sng_Max_Limit_Join"] = 60090;
  1391. t[e[60100] = "Sng_Not_Takein"] = 60100;
  1392. t[e[60101] = "Sng_Room_Dissolve"] = 60101;
  1393. t[e[60102] = "Sng_Room_Pause"] = 60102;
  1394. t[e[60103] = "Sng_Buy_Part_Fail"] = 60103;
  1395. t[e[60104] = "Sng_User_Match_Success"] = 60104;
  1396. t[e[60001] = "MttEnterGameReq"] = 60001;
  1397. t[e[60002] = "MttEnterGameRes"] = 60002;
  1398. t[e[60502] = "TimeBankMsg"] = 60502;
  1399. t[e[60503] = "ReJoinReq"] = 60503;
  1400. t[e[60504] = "ReJoinRes"] = 60504;
  1401. t[e[60507] = "EnterRewardMsg"] = 60507;
  1402. t[e[60508] = "RewardMsg"] = 60508;
  1403. t[e[60509] = "RiseBlindNotifyMsg"] = 60509;
  1404. t[e[60510] = "MttNotifyMsg"] = 60510;
  1405. t[e[60511] = "RiseCoinPerPointNotifyMsg"] = 60511;
  1406. t[e[60512] = "BuyTimeReq"] = 60512;
  1407. t[e[60513] = "BuyTimeRes"] = 60513;
  1408. t[e[60514] = "SngRoomSnapShotMsg"] = 60514;
  1409. t[e[60515] = "SngRoomRankNotifyMsg"] = 60515;
  1410. t[e[60516] = "MttRoomRankNotifyMsg"] = 60516;
  1411. t[e[60517] = "SngStartNotifyMsg"] = 60517;
  1412. t[e[60518] = "MttRestTimeNotifyMsg"] = 60518;
  1413. t[e[60519] = "MttRoomSnapshotReq"] = 60519;
  1414. t[e[60520] = "MttRoomSnapshotRes"] = 60520;
  1415. t[e[60521] = "MttRealTimeRecordReq"] = 60521;
  1416. t[e[60522] = "MttRealTimeRecordRes"] = 60522;
  1417. t[e[60523] = "SngReliveReq"] = 60523;
  1418. t[e[60524] = "SngReliveRes"] = 60524;
  1419. t[e[60525] = "MttCancelFantasyNotifyMsg"] = 60525;
  1420. t[e[60526] = "SngRealTimeRecordReq"] = 60526;
  1421. t[e[60527] = "SngRealTimeRecordRes"] = 60527;
  1422. t[e[60528] = "MttRoomEndNotifyMsg"] = 60528;
  1423. t[e[60529] = "MttStopReJoinNotifyMsg"] = 60529;
  1424. t[e[60530] = "MttUserRankMsg"] = 60530;
  1425. t[e[60531] = "MttUserOutMsg"] = 60531;
  1426. t[e[60532] = "SngRoomSnapShotReq"] = 60532;
  1427. t[e[60533] = "MttRoomChangeMsg"] = 60533;
  1428. t[e[60534] = "MttHoldemStadiumReq"] = 60534;
  1429. t[e[60535] = "MttHoldemStadiumRes"] = 60535;
  1430. t[e[60536] = "MttPineAppleStadiumReq"] = 60536;
  1431. t[e[60537] = "MttPineAppleStadiumRes"] = 60537;
  1432. t[e[60538] = "MttUserInfoReq"] = 60538;
  1433. t[e[60539] = "MttUserInfoRes"] = 60539;
  1434. t[e[60540] = "SngRewardInfoReq"] = 60540;
  1435. t[e[60541] = "SngRewardInfoRes"] = 60541;
  1436. t[e[60542] = "MttStateNotifyMsg"] = 60542;
  1437. t[e[60543] = "MttLastRoomNotifyMsg"] = 60543;
  1438. t[e[60544] = "GuessHandlePorkReq"] = 60544;
  1439. t[e[60545] = "GuessHandlePorkRes"] = 60545;
  1440. t[e[60546] = "GuessHandlePorkMsg"] = 60546;
  1441. t[e[60550] = "BulletExchangeReq"] = 60550;
  1442. t[e[60551] = "BulletExchangeRes"] = 60551;
  1443. t[e[60552] = "BulletExchangeMsg"] = 60552;
  1444. t[e[60553] = "MttExDataMsg"] = 60553;
  1445. t[e[60554] = "HunterCelebrityMsg"] = 60554;
  1446. t[e[60555] = "TimeBankFlagSetReq"] = 60555;
  1447. t[e[60556] = "TimeBankFlagSetRes"] = 60556;
  1448. t[e[60557] = "TimeBankDurationMsg"] = 60557;
  1449. t[e[60560] = "RewardMsgReq"] = 60560;
  1450. t[e[60561] = "RewardMsgRes"] = 60561;
  1451. t[e[60562] = "MttUserGameSumInfoReq"] = 60562;
  1452. t[e[60563] = "MttUserGameSumInfoRes"] = 60563;
  1453. t[e[60604] = "ExitSngRoomLevelReq"] = 60604;
  1454. t[e[60605] = "ExitSngRoomLevelRes"] = 60605;
  1455. t[e[60606] = "SngRoomExDataMsg"] = 60606;
  1456. t[e[60607] = "User_ForbidMsg"] = 60607;
  1457. t[e[10] = "Game_Sync_Poker_Out"] = 10;
  1458. t[e[101] = "Sng_Status_Pause"] = 101;
  1459. t[e[1004] = "Mtt_ROOM_STATE_REST"] = 1004;
  1460. t[e[1005] = "MttROOM_STATE_PAUSE"] = 1005;
  1461. t[e[10] = "SERVER_EXITING"] = 10;
  1462. t[e[50001] = "INVALID_TOKEN"] = 50001;
  1463. t[e[50002] = "INVALID_ROOM"] = 50002;
  1464. t[e[50003] = "INVALID_PARAM"] = 50003;
  1465. t[e[50004] = "INVALID_STATE"] = 50004;
  1466. t[e[50005] = "INVALID_SEAT_NUM"] = 50005;
  1467. t[e[50049] = "ALREADY_PLACED"] = 50049;
  1468. t[e[50050] = "CAN_LEAVE"] = 50050;
  1469. t[e[50051] = "TIMEOUT"] = 50051;
  1470. t[e[50052] = "PLAYING"] = 50052;
  1471. t[e[50053] = "ALREADY_SITTED"] = 50053;
  1472. t[e[50054] = "SEAT_OCCUPIED"] = 50054;
  1473. t[e[50055] = "NOT_IN_ROOM"] = 50055;
  1474. t[e[50056] = "NEAR_GPS"] = 50056;
  1475. t[e[50057] = "SAME_IP"] = 50057;
  1476. t[e[50058] = "OTHER_ROOM"] = 50058;
  1477. t[e[50059] = "NEED_TAKEIN"] = 50059;
  1478. t[e[50060] = "NEED_MORE_COIN"] = 50060;
  1479. t[e[50061] = "OTHER_LEVEL"] = 50061;
  1480. t[e[50062] = "ROOM_BROKEN"] = 50062;
  1481. t[e[50063] = "GAME_PAUSED"] = 50063;
  1482. t[e[50064] = "LESS_ONE_ROUND"] = 50064;
  1483. t[e[50065] = "ROOM_RELEASED"] = 50065;
  1484. t[e[50066] = "LESS_COIN"] = 50066;
  1485. t[e[50070] = "NO_LEVEL"] = 50070;
  1486. t[e[50071] = "NO_SEAT"] = 50071;
  1487. t[e[50073] = "NO_LOGIN"] = 50073;
  1488. t[e[50074] = "NO_MATCHING"] = 50074;
  1489. t[e[50075] = "Level_User_Matching"] = 50075;
  1490. t[e[50076] = "Level_User_Settled"] = 50076;
  1491. t[e[50077] = "Level_User_AutoPlay"] = 50077;
  1492. t[e[50085] = "FinalVoice"] = 50085;
  1493. t[e[10] = "ServerExiting"] = 10;
  1494. t[e[50001] = "UserTokenReq"] = 50001;
  1495. t[e[50002] = "UserTokenRes"] = 50002;
  1496. t[e[50003] = "EnterRoomReq"] = 50003;
  1497. t[e[50004] = "EnterRoomRes"] = 50004;
  1498. t[e[50005] = "ReadyReq"] = 50005;
  1499. t[e[50006] = "ReadyRes"] = 50006;
  1500. t[e[50007] = "PlaceCardsReq"] = 50007;
  1501. t[e[50008] = "PlaceCardsRes"] = 50008;
  1502. t[e[50010] = "RoundResultMsg"] = 50010;
  1503. t[e[50013] = "PlayerSitDownReq"] = 50013;
  1504. t[e[50014] = "PlayerSitDownRes"] = 50014;
  1505. t[e[50016] = "RequireMoreCoinMsg"] = 50016;
  1506. t[e[50018] = "GameFinishedMsg"] = 50018;
  1507. t[e[50022] = "DispatchCardsMsg"] = 50022;
  1508. t[e[50023] = "JackpotUpdateMsg"] = 50023;
  1509. t[e[50024] = "JackpotHitMsg"] = 50024;
  1510. t[e[50025] = "JackpotCarouseltMsg"] = 50025;
  1511. t[e[50026] = "CardsShowedMsg"] = 50026;
  1512. t[e[50028] = "CardsPlacedMsg"] = 50028;
  1513. t[e[50029] = "PlayerLeaveRoomReq"] = 50029;
  1514. t[e[50030] = "PlayerLeaveRoomRes"] = 50030;
  1515. t[e[50032] = "SeatOccupiedMsg"] = 50032;
  1516. t[e[50034] = "SeatEmptyMsg"] = 50034;
  1517. t[e[50036] = "RoomCoinChangedMsg"] = 50036;
  1518. t[e[50039] = "PlayerLeaveSeatReq"] = 50039;
  1519. t[e[50040] = "PlayerLeaveSeatRes"] = 50040;
  1520. t[e[50042] = "AllPlayersReadyMsg"] = 50042;
  1521. t[e[50044] = "QuitGameMsg"] = 50044;
  1522. t[e[50045] = "TakeInCoinReq"] = 50045;
  1523. t[e[50046] = "TakeInCoinRes"] = 50046;
  1524. t[e[50047] = "RoomListReq"] = 50047;
  1525. t[e[50048] = "RoomListRes"] = 50048;
  1526. t[e[50049] = "RoomSnapshotReq"] = 50049;
  1527. t[e[50051] = "RoomBillReq"] = 50051;
  1528. t[e[50052] = "RoomBillRes"] = 50052;
  1529. t[e[50054] = "RoomSnapshotMsg"] = 50054;
  1530. t[e[50057] = "PlaceTimeMsg"] = 50057;
  1531. t[e[50059] = "PlayerStateMsg"] = 50059;
  1532. t[e[50061] = "EnterLevelReq"] = 50061;
  1533. t[e[50062] = "EnterLevelRes"] = 50062;
  1534. t[e[50063] = "Emoji"] = 50063;
  1535. t[e[50064] = "AnimReq"] = 50064;
  1536. t[e[50065] = "AnimRes"] = 50065;
  1537. t[e[50066] = "AnimMsg"] = 50066;
  1538. t[e[50067] = "RoomConfReq"] = 50067;
  1539. t[e[50068] = "RoomConfRes"] = 50068;
  1540. t[e[50069] = "VoiceReq"] = 50069;
  1541. t[e[50070] = "VoiceRes"] = 50070;
  1542. t[e[50071] = "VoiceMsg"] = 50071;
  1543. t[e[50100] = "MatchingNewGameMsg"] = 50100;
  1544. t[e[50101] = "ExitMatchingQueueReq"] = 50101;
  1545. t[e[50102] = "ExitMatchingQueueRes"] = 50102;
  1546. t[e[50104] = "AutoPlayMsg"] = 50104;
  1547. t[e[50105] = "CancelAutoPlayReq"] = 50105;
  1548. t[e[50106] = "CancelAutoPlayRes"] = 50106;
  1549. t[e[50107] = "SettleNextReq"] = 50107;
  1550. t[e[50108] = "SettleNextRes"] = 50108;
  1551. t[e[50109] = "PlayerLeaveMsg"] = 50109;
  1552. t[e[50111] = "PlayerEnterMsg"] = 50111;
  1553. t[e[50113] = "CancelTakeInReq"] = 50113;
  1554. t[e[50114] = "CancelTakeInRes"] = 50114;
  1555. t[e[50116] = "OtherRoomMsg"] = 50116;
  1556. t[e[50117] = "OtherLoginMsg"] = 50117;
  1557. t[e[50118] = "MatchedNewGameMsg"] = 50118;
  1558. t[e[50119] = "RoomReleaseMsg"] = 50119;
  1559. t[e[50120] = "RoomPauseMsg"] = 50120;
  1560. t[e[50121] = "RoundStartMsg"] = 50121;
  1561. t[e[50122] = "PlayerNickNameChangeMsg"] = 50122;
  1562. t[e[50123] = "CancelTakeInMsg"] = 50123;
  1563. t[e[50124] = "JackpotEnableMsg"] = 50124;
  1564. t[e[50125] = "JackpotInfoReq"] = 50125;
  1565. t[e[50126] = "JackpotInfoRes"] = 50126;
  1566. t[e[50127] = "SetCardReq"] = 50127;
  1567. t[e[50128] = "SetCardRes"] = 50128;
  1568. t[e[50130] = "LevelStateMsg"] = 50130;
  1569. t[e[50131] = "RedPocketCarouseMsg"] = 50131;
  1570. t[e[50134] = "DealerPosMsg"] = 50134;
  1571. t[e[10] = "WAITFOR_NEXT"] = 10;
  1572. t[e[31] = "WAIT_TAKEIN"] = 31;
  1573. t[e[32] = "FINISH_TAKEIN"] = 32;
  1574. t[e[33] = "LESS_TAKEIN"] = 33;
  1575. t[e[34] = "RE_TAKEIN"] = 34;
  1576. t[e[35] = "STATE_FINISH"] = 35;
  1577. t[e[101] = "RECV_CARDS"] = 101;
  1578. t[e[102] = "RECV_CARDS2"] = 102;
  1579. t[e[103] = "RECV_CARDS3"] = 103;
  1580. t[e[104] = "RECV_CARDS4"] = 104;
  1581. t[e[105] = "RECV_CARDS5"] = 105;
  1582. t[e[106] = "RECV_CARDS_END"] = 106;
  1583. t[e[101] = "ROOM_STATE_SEND_CARDS_1"] = 101;
  1584. t[e[102] = "ROOM_STATE_SEND_CARDS_2"] = 102;
  1585. t[e[103] = "ROOM_STATE_SEND_CARDS_3"] = 103;
  1586. t[e[104] = "ROOM_STATE_SEND_CARDS_4"] = 104;
  1587. t[e[105] = "ROOM_STATE_SEND_CARDS_5"] = 105;
  1588. t[e[10] = "ROOM_STATE_ALL_READY"] = 10;
  1589. t[e[11] = "ROOM_STATE_WAIT_RE_TAKEIN"] = 11;
  1590. t[e[12] = "ROOM_STATE_SHOW_RESULT"] = 12;
  1591. t[e[98] = "DB_Record_Not_Found"] = 98;
  1592. t[e[99] = "DB_Query_Failed"] = 99;
  1593. t[e[100] = "DB_Write_Failed"] = 100;
  1594. t[e[101] = "JSON_Parse_Failed"] = 101;
  1595. t[e[102] = "Feature_Maintenance"] = 102;
  1596. t[e[403] = "Forbidden"] = 403;
  1597. t[e[404] = "Not_Found"] = 404;
  1598. t[e[500] = "Internal_Error"] = 500;
  1599. t[e[5001] = "Gold_Not_Valid"] = 5001;
  1600. t[e[5002] = "Gold_Not_Valid2"] = 5002;
  1601. t[e[100] = "BLACK_JACK"] = 100;
  1602. t[e[101] = "BLACK_JACK_PVP"] = 101;
  1603. t[e[200] = "BROADCAST_CHATROOM"] = 200;
  1604. t[e[11] = "MiniGameRankListRequest"] = 11;
  1605. t[e[12] = "MiniGameRankListResponse"] = 12;
  1606. t[e[13] = "GetUserAvatarsRequest"] = 13;
  1607. t[e[14] = "GetUserAvatarsResponse"] = 14;
  1608. t[e[15] = "MiniGameInfoListRequest"] = 15;
  1609. t[e[16] = "MiniGameInfoList"] = 16;
  1610. t[e[100] = "UserUpdated"] = 100;
  1611. t[e[200] = "UserTO01PlayInfoReq"] = 200;
  1612. t[e[201] = "UserTO01PlayInfoRes"] = 201;
  1613. t[e[202] = "UserTO01SetRemarkInfoReq"] = 202;
  1614. t[e[203] = "UserTO01SetRemarkInfoRes"] = 203;
  1615. t[e[204] = "UserTO01GetRemarkInfoReq"] = 204;
  1616. t[e[205] = "UserTO01GetRemarkInfoRes"] = 205;
  1617. t[e[1043] = "TO01_LevelReq"] = 1043;
  1618. t[e[1044] = "TO01_LevelRes"] = 1044;
  1619. t[e[2001] = "UserAccessBroadcastChatroomRequest"] = 2001;
  1620. t[e[2002] = "UserAccessBroadcastChatroomResponse"] = 2002;
  1621. t[e[2003] = "UserLeaveBroadcastChatroomRequest"] = 2003;
  1622. t[e[2004] = "UserLeaveBroadcastChatroomResponse"] = 2004;
  1623. t[e[2005] = "UserSendCommentRequest"] = 2005;
  1624. t[e[2006] = "UserSendCommentResponse"] = 2006;
  1625. t[e[2007] = "BroadcastChatroomCloseRequest"] = 2007;
  1626. t[e[2008] = "BroadcastChatroomCloseResponse"] = 2008;
  1627. t[e[2009] = "BroadcastChatroomHistoryUpdated"] = 2009;
  1628. t[e[2010] = "UserChatroomBlockStatusUpdated"] = 2010;
  1629. t[e[2011] = "GetChatroomHistoryRequest"] = 2011;
  1630. t[e[2012] = "GetChatroomHistoryResponse"] = 2012;
  1631. t[e[2013] = "BroadcastChatroomFeatureEnabled"] = 2013;
  1632. t[e[3001] = "SystemStatusCheck"] = 3001;
  1633. t[e[100] = "WIN_BEGIN"] = 100;
  1634. t[e[101] = "FISHER_WIN"] = 101;
  1635. t[e[102] = "SHARK_WIN"] = 102;
  1636. t[e[103] = "EQUAL"] = 103;
  1637. t[e[199] = "WIN_END"] = 199;
  1638. t[e[300] = "FIVE_BEGIN"] = 300;
  1639. t[e[301] = "FIVE_NONE_1DUI"] = 301;
  1640. t[e[302] = "FIVE_2DUI"] = 302;
  1641. t[e[303] = "FIVE_SAN_SHUN_TONG"] = 303;
  1642. t[e[304] = "FIVE_GOURD"] = 304;
  1643. t[e[305] = "FIVE_KING_TONG_HUA_SHUN_4"] = 305;
  1644. t[e[399] = "FIVE_END"] = 399;
  1645. t[e[30001] = "LOGIN_GAME_RESP"] = 30001;
  1646. t[e[30004] = "HEART_BEAT_REQ"] = 30004;
  1647. t[e[30005] = "HEART_BEAT_RESP"] = 30005;
  1648. t[e[30007] = "JOIN_ROOM_REQ"] = 30007;
  1649. t[e[30008] = "JOIN_ROOM_RESP"] = 30008;
  1650. t[e[30009] = "GAME_LIST_REQ"] = 30009;
  1651. t[e[30010] = "GAME_LIST_RESP"] = 30010;
  1652. t[e[30011] = "GAME_DATA_SYN"] = 30011;
  1653. t[e[30012] = "DEAL_NOTIFY"] = 30012;
  1654. t[e[30013] = "BET_REQ"] = 30013;
  1655. t[e[30014] = "BET_RESP"] = 30014;
  1656. t[e[30015] = "BET_NOTIFY"] = 30015;
  1657. t[e[30016] = "GAME_ROUND_END_NOTIFY"] = 30016;
  1658. t[e[30018] = "LEAVE_ROOM_REQ"] = 30018;
  1659. t[e[30019] = "LEAVE_ROOM_RESP"] = 30019;
  1660. t[e[30020] = "LEAVE_ROOM_NOTIFY"] = 30020;
  1661. t[e[30022] = "CONN_CLOSE_REQ"] = 30022;
  1662. t[e[30023] = "ROOM_TREND_REQ"] = 30023;
  1663. t[e[30024] = "ROOM_TREND_RSP"] = 30024;
  1664. t[e[30025] = "ROOM_TREND_NOTICE"] = 30025;
  1665. t[e[30026] = "START_BET_NOTIFY"] = 30026;
  1666. t[e[30029] = "AUTO_BET_REQ"] = 30029;
  1667. t[e[30030] = "AUTO_BET_RESP"] = 30030;
  1668. t[e[30031] = "AUTO_BET_NOTIFY"] = 30031;
  1669. t[e[30032] = "PLAYER_LIST_REQ"] = 30032;
  1670. t[e[30033] = "PLAYER_LIST_RESP"] = 30033;
  1671. t[e[30036] = "MERGE_AUTO_BET_NOTIFY"] = 30036;
  1672. t[e[30037] = "KICK_NOTIFY"] = 30037;
  1673. t[e[30038] = "ROOM_TREND_ROAD_REQ"] = 30038;
  1674. t[e[30039] = "ROOM_TREND_ROAD_RSP"] = 30039;
  1675. t[e[30040] = "ROOM_TREND_ROAD_NOTICE"] = 30040;
  1676. t[e[30041] = "AUTO_OPEN_ROADS_REQ"] = 30041;
  1677. t[e[30042] = "AUTO_OPEN_ROADS_RSP"] = 30042;
  1678. t[e[30044] = "SET_GAME_OPTION_REQ"] = 30044;
  1679. t[e[30045] = "SET_GAME_OPTION_RSP"] = 30045;
  1680. t[e[30047] = "START_SETTLEMENT_NOTIFY"] = 30047;
  1681. t[e[30050] = "ADVANCE_AUTO_BET_REQ"] = 30050;
  1682. t[e[30051] = "ADVANCE_AUTO_BET_RSP"] = 30051;
  1683. t[e[30052] = "CANCEL_ADVANCE_AUTO_BET_REQ"] = 30052;
  1684. t[e[30053] = "CANCEL_ADVANCE_AUTO_BET_RSP"] = 30053;
  1685. t[e[30054] = "ADVANCE_AUTO_BET_SET_REQ"] = 30054;
  1686. t[e[30055] = "ADVANCE_AUTO_BET_SET_RSP"] = 30055;
  1687. t[e[30056] = "SHOW_ODDS_NOTIFY"] = 30056;
  1688. t[e[30057] = "STOP_BET_NOTIFY"] = 30057;
  1689. t[e[30058] = "BET_REVIEW_REQ"] = 30058;
  1690. t[e[30059] = "BET_REVIEW_RSP"] = 30059;
  1691. t[e[30060] = "READY_GAME_NOTIFY"] = 30060;
  1692. t[e[30061] = "USER_POINTS_CHANGE_NOTICE"] = 30061;
  1693. t[e[51001] = "LOW_VERSION"] = 51001;
  1694. t[e[51002] = "INVALID_TOKEN"] = 51002;
  1695. t[e[51003] = "SERVER_BUSY"] = 51003;
  1696. t[e[51004] = "WITHOUT_LOGIN"] = 51004;
  1697. t[e[51005] = "ROOM_NOT_MATCH"] = 51005;
  1698. t[e[51006] = "ROOM_NOT_EXIST"] = 51006;
  1699. t[e[51007] = "BET_EXCEED_LIMIT"] = 51007;
  1700. t[e[51008] = "ROOM_PLAYER_LIMIT"] = 51008;
  1701. t[e[51009] = "NO_BET"] = 51009;
  1702. t[e[51010] = "BET_AMOUNT_NOT_MATCH"] = 51010;
  1703. t[e[51011] = "NO_MONEY"] = 51011;
  1704. t[e[51012] = "BET_BAD_PARAM"] = 51012;
  1705. t[e[51013] = "STOP_SERVICE"] = 51013;
  1706. t[e[51014] = "NOT_BET_WHEN_AUTO_BET"] = 51014;
  1707. t[e[51015] = "BET_TOO_SMALL"] = 51015;
  1708. t[e[51016] = "BET_COUNT_LIMIT"] = 51016;
  1709. t[e[51017] = "AUTO_BET_LIMIT"] = 51017;
  1710. t[e[51018] = "TOO_MANY_PEOPLE"] = 51018;
  1711. t[e[51019] = "BAD_REQ_PARAM"] = 51019;
  1712. t[e[51020] = "NO_SET_ADVANCE_AUTO_BET"] = 51020;
  1713. t[e[51021] = "AUTO_BET_COUNT_LIMIT"] = 51021;
  1714. t[e[51022] = "AUTO_BET_NO_MONEY"] = 51022;
  1715. t[e[51023] = "AUTO_BET_EXCEED_LIMIT"] = 51023;
  1716. t[e[51024] = "INNER_ERROR"] = 51024;
  1717. t[e[10] = "HAND_KING"] = 10;
  1718. t[e[100] = "WIN_BEGIN"] = 100;
  1719. t[e[101] = "FISHER_WIN"] = 101;
  1720. t[e[102] = "SHARK_WIN"] = 102;
  1721. t[e[103] = "EQUAL"] = 103;
  1722. t[e[199] = "WIN_END"] = 199;
  1723. t[e[300] = "FIVE_BEGIN"] = 300;
  1724. t[e[301] = "FIVE_NONE_1DUI"] = 301;
  1725. t[e[302] = "FIVE_2DUI"] = 302;
  1726. t[e[303] = "FIVE_SAN_SHUN_TONG"] = 303;
  1727. t[e[304] = "FIVE_GOURD"] = 304;
  1728. t[e[305] = "FIVE_KING_TONG_HUA_SHUN_4"] = 305;
  1729. t[e[399] = "FIVE_END"] = 399;
  1730. t[e[30001] = "LOGIN_GAME_RESP"] = 30001;
  1731. t[e[30004] = "HEART_BEAT_REQ"] = 30004;
  1732. t[e[30005] = "HEART_BEAT_RESP"] = 30005;
  1733. t[e[30007] = "JOIN_ROOM_REQ"] = 30007;
  1734. t[e[30008] = "JOIN_ROOM_RESP"] = 30008;
  1735. t[e[30009] = "GAME_LIST_REQ"] = 30009;
  1736. t[e[30010] = "GAME_LIST_RESP"] = 30010;
  1737. t[e[30011] = "GAME_DATA_SYN"] = 30011;
  1738. t[e[30012] = "DEAL_NOTIFY"] = 30012;
  1739. t[e[30013] = "BET_REQ"] = 30013;
  1740. t[e[30014] = "BET_RESP"] = 30014;
  1741. t[e[30015] = "BET_NOTIFY"] = 30015;
  1742. t[e[30016] = "GAME_ROUND_END_NOTIFY"] = 30016;
  1743. t[e[30018] = "LEAVE_ROOM_REQ"] = 30018;
  1744. t[e[30019] = "LEAVE_ROOM_RESP"] = 30019;
  1745. t[e[30020] = "LEAVE_ROOM_NOTIFY"] = 30020;
  1746. t[e[30022] = "CONN_CLOSE_REQ"] = 30022;
  1747. t[e[30023] = "ROOM_TREND_REQ"] = 30023;
  1748. t[e[30024] = "ROOM_TREND_RSP"] = 30024;
  1749. t[e[30025] = "ROOM_TREND_NOTICE"] = 30025;
  1750. t[e[30026] = "START_BET_NOTIFY"] = 30026;
  1751. t[e[30029] = "AUTO_BET_REQ"] = 30029;
  1752. t[e[30030] = "AUTO_BET_RESP"] = 30030;
  1753. t[e[30031] = "AUTO_BET_NOTIFY"] = 30031;
  1754. t[e[30032] = "PLAYER_LIST_REQ"] = 30032;
  1755. t[e[30033] = "PLAYER_LIST_RESP"] = 30033;
  1756. t[e[30036] = "MERGE_AUTO_BET_NOTIFY"] = 30036;
  1757. t[e[30037] = "KICK_NOTIFY"] = 30037;
  1758. t[e[30038] = "ROOM_TREND_ROAD_REQ"] = 30038;
  1759. t[e[30039] = "ROOM_TREND_ROAD_RSP"] = 30039;
  1760. t[e[30040] = "ROOM_TREND_ROAD_NOTICE"] = 30040;
  1761. t[e[30041] = "AUTO_OPEN_ROADS_REQ"] = 30041;
  1762. t[e[30042] = "AUTO_OPEN_ROADS_RSP"] = 30042;
  1763. t[e[30044] = "SET_GAME_OPTION_REQ"] = 30044;
  1764. t[e[30045] = "SET_GAME_OPTION_RSP"] = 30045;
  1765. t[e[30047] = "START_SETTLEMENT_NOTIFY"] = 30047;
  1766. t[e[30050] = "ADVANCE_AUTO_BET_REQ"] = 30050;
  1767. t[e[30051] = "ADVANCE_AUTO_BET_RSP"] = 30051;
  1768. t[e[30052] = "CANCEL_ADVANCE_AUTO_BET_REQ"] = 30052;
  1769. t[e[30053] = "CANCEL_ADVANCE_AUTO_BET_RSP"] = 30053;
  1770. t[e[30054] = "ADVANCE_AUTO_BET_SET_REQ"] = 30054;
  1771. t[e[30055] = "ADVANCE_AUTO_BET_SET_RSP"] = 30055;
  1772. t[e[30056] = "SHOW_ODDS_NOTIFY"] = 30056;
  1773. t[e[30057] = "STOP_BET_NOTIFY"] = 30057;
  1774. t[e[30058] = "BET_REVIEW_REQ"] = 30058;
  1775. t[e[30059] = "BET_REVIEW_RSP"] = 30059;
  1776. t[e[30060] = "READY_GAME_NOTIFY"] = 30060;
  1777. t[e[30061] = "USER_POINTS_CHANGE_NOTICE"] = 30061;
  1778. t[e[30062] = "ADVANCE_AUTO_BET_ADD_REQ"] = 30062;
  1779. t[e[30063] = "ADVANCE_AUTO_BET_ADD_RSP"] = 30063;
  1780. t[e[51001] = "LOW_VERSION"] = 51001;
  1781. t[e[51002] = "INVALID_TOKEN"] = 51002;
  1782. t[e[51003] = "SERVER_BUSY"] = 51003;
  1783. t[e[51004] = "WITHOUT_LOGIN"] = 51004;
  1784. t[e[51005] = "ROOM_NOT_MATCH"] = 51005;
  1785. t[e[51006] = "ROOM_NOT_EXIST"] = 51006;
  1786. t[e[51007] = "BET_EXCEED_LIMIT"] = 51007;
  1787. t[e[51008] = "ROOM_PLAYER_LIMIT"] = 51008;
  1788. t[e[51009] = "NO_BET"] = 51009;
  1789. t[e[51010] = "BET_AMOUNT_NOT_MATCH"] = 51010;
  1790. t[e[51011] = "NO_MONEY"] = 51011;
  1791. t[e[51012] = "BET_BAD_PARAM"] = 51012;
  1792. t[e[51013] = "STOP_SERVICE"] = 51013;
  1793. t[e[51014] = "NOT_BET_WHEN_AUTO_BET"] = 51014;
  1794. t[e[51015] = "BET_TOO_SMALL"] = 51015;
  1795. t[e[51016] = "BET_COUNT_LIMIT"] = 51016;
  1796. t[e[51017] = "AUTO_BET_LIMIT"] = 51017;
  1797. t[e[51018] = "TOO_MANY_PEOPLE"] = 51018;
  1798. t[e[51019] = "BAD_REQ_PARAM"] = 51019;
  1799. t[e[51020] = "NO_SET_ADVANCE_AUTO_BET"] = 51020;
  1800. t[e[51021] = "AUTO_BET_COUNT_LIMIT"] = 51021;
  1801. t[e[51022] = "AUTO_BET_NO_MONEY"] = 51022;
  1802. t[e[51023] = "AUTO_BET_EXCEED_LIMIT"] = 51023;
  1803. t[e[51024] = "INNER_ERROR"] = 51024;
  1804. t[e[51025] = "ROOM_SYSTEM_FORCE_CLOSED"] = 51025;
  1805. t[e[51026] = "IN_CALM_DOWN"] = 51026;
  1806. t[e[31117] = "C2CPAYMENT_LIST_GET_ERROR"] = 31117;
  1807. t[e[31118] = "C2CPAYMENT_NOT_ALLOW"] = 31118;
  1808. t[e[31119] = "CAN_NOT_LEAVE_IN_BETTING"] = 31119;
  1809. t[e[51027] = "REACH_LIMIT_BET"] = 51027;
  1810. t[e[10] = "H5Thailand"] = 10;
  1811. t[e[11] = "H5WebThailand"] = 11;
  1812. t[e[12] = "H5Arab"] = 12;
  1813. t[e[13] = "H5Hindi"] = 13;
  1814. t[e[14] = "H5Mempoker"] = 14;
  1815. t[e[15] = "PC"] = 15;
  1816. t[e[16] = "WPTG"] = 16;
  1817. t[e[10] = "HAND_KING"] = 10;
  1818. t[e[10] = "WIN"] = 10;
  1819. t[e[20] = "HOLE_CARD"] = 20;
  1820. t[e[30] = "FIVE_CARD"] = 30;
  1821. t[e[100] = "WIN_BEGIN"] = 100;
  1822. t[e[101] = "RED_WIN"] = 101;
  1823. t[e[102] = "BLUE_WIN"] = 102;
  1824. t[e[103] = "EQUAL"] = 103;
  1825. t[e[199] = "WIN_END"] = 199;
  1826. t[e[200] = "HOLE_BEGIN"] = 200;
  1827. t[e[201] = "HOLE_TONG_HUA"] = 201;
  1828. t[e[202] = "HOLE_SHUN"] = 202;
  1829. t[e[203] = "HOLE_SAME"] = 203;
  1830. t[e[204] = "HOLE_TONG_HUA_SHUN"] = 204;
  1831. t[e[205] = "HOLE_A"] = 205;
  1832. t[e[206] = "HOLE_3_TONG_SAME_SHUN"] = 206;
  1833. t[e[299] = "HOLE_END"] = 299;
  1834. t[e[300] = "FIVE_BEGIN"] = 300;
  1835. t[e[301] = "FIVE_NONE_1DUI"] = 301;
  1836. t[e[302] = "FIVE_2DUI"] = 302;
  1837. t[e[303] = "FIVE_3_SHUN_TONG_HUA"] = 303;
  1838. t[e[304] = "FIVE_3_2"] = 304;
  1839. t[e[305] = "FIVE_KING_TONG_HUA_SHUN_4"] = 305;
  1840. t[e[399] = "FIVE_END"] = 399;
  1841. t[e[30001] = "LOGIN_GAME_RESP"] = 30001;
  1842. t[e[30004] = "HEART_BEAT_REQ"] = 30004;
  1843. t[e[30005] = "HEART_BEAT_RESP"] = 30005;
  1844. t[e[30007] = "JOIN_ROOM_REQ"] = 30007;
  1845. t[e[30008] = "JOIN_ROOM_RESP"] = 30008;
  1846. t[e[30009] = "GAME_LIST_REQ"] = 30009;
  1847. t[e[30010] = "GAME_LIST_RESP"] = 30010;
  1848. t[e[30011] = "GAME_DATA_SYN"] = 30011;
  1849. t[e[30012] = "DEAL_NOTIFY"] = 30012;
  1850. t[e[30013] = "BET_REQ"] = 30013;
  1851. t[e[30014] = "BET_RESP"] = 30014;
  1852. t[e[30015] = "BET_NOTIFY"] = 30015;
  1853. t[e[30016] = "GAME_ROUND_END_NOTIFY"] = 30016;
  1854. t[e[30018] = "LEAVE_ROOM_REQ"] = 30018;
  1855. t[e[30019] = "LEAVE_ROOM_RESP"] = 30019;
  1856. t[e[30020] = "LEAVE_ROOM_NOTIFY"] = 30020;
  1857. t[e[30022] = "CONN_CLOSE_REQ"] = 30022;
  1858. t[e[30023] = "ROOM_TREND_REQ"] = 30023;
  1859. t[e[30024] = "ROOM_TREND_RSP"] = 30024;
  1860. t[e[30025] = "ROOM_TREND_NOTICE"] = 30025;
  1861. t[e[30026] = "START_BET_NOTIFY"] = 30026;
  1862. t[e[30029] = "AUTO_BET_REQ"] = 30029;
  1863. t[e[30030] = "AUTO_BET_RESP"] = 30030;
  1864. t[e[30031] = "AUTO_BET_NOTIFY"] = 30031;
  1865. t[e[30032] = "PLAYER_LIST_REQ"] = 30032;
  1866. t[e[30033] = "PLAYER_LIST_RESP"] = 30033;
  1867. t[e[30036] = "MERGE_AUTO_BET_NOTIFY"] = 30036;
  1868. t[e[30037] = "KICK_NOTIFY"] = 30037;
  1869. t[e[30038] = "ROOM_TREND_ROAD_REQ"] = 30038;
  1870. t[e[30039] = "ROOM_TREND_ROAD_RSP"] = 30039;
  1871. t[e[30040] = "ROOM_TREND_ROAD_NOTICE"] = 30040;
  1872. t[e[30041] = "AUTO_OPEN_ROADS_REQ"] = 30041;
  1873. t[e[30042] = "AUTO_OPEN_ROADS_RSP"] = 30042;
  1874. t[e[30044] = "SET_GAME_OPTION_REQ"] = 30044;
  1875. t[e[30045] = "SET_GAME_OPTION_RSP"] = 30045;
  1876. t[e[30047] = "START_SETTLEMENT_NOTIFY"] = 30047;
  1877. t[e[30050] = "ADVANCE_AUTO_BET_REQ"] = 30050;
  1878. t[e[30051] = "ADVANCE_AUTO_BET_RSP"] = 30051;
  1879. t[e[30052] = "CANCEL_ADVANCE_AUTO_BET_REQ"] = 30052;
  1880. t[e[30053] = "CANCEL_ADVANCE_AUTO_BET_RSP"] = 30053;
  1881. t[e[30054] = "ADVANCE_AUTO_BET_SET_REQ"] = 30054;
  1882. t[e[30055] = "ADVANCE_AUTO_BET_SET_RSP"] = 30055;
  1883. t[e[30056] = "SHOW_CARD_NOTIFY"] = 30056;
  1884. t[e[30057] = "STOP_BET_NOTIFY"] = 30057;
  1885. t[e[30058] = "CANCEL_ROUND_NOTIFY"] = 30058;
  1886. t[e[30059] = "SKIP_ROUND_NOTIFY"] = 30059;
  1887. t[e[30060] = "USER_POINTS_CHANGE_NOTICE"] = 30060;
  1888. t[e[31001] = "LOW_VERSION"] = 31001;
  1889. t[e[31002] = "INVALID_TOKEN"] = 31002;
  1890. t[e[31003] = "SERVER_BUSY"] = 31003;
  1891. t[e[31004] = "WITHOUT_LOGIN"] = 31004;
  1892. t[e[31005] = "ROOM_NOT_MATCH"] = 31005;
  1893. t[e[31006] = "ROOM_NOT_EXIST"] = 31006;
  1894. t[e[31007] = "BET_EXCEED_LIMIT"] = 31007;
  1895. t[e[31008] = "ROOM_PLAYER_LIMIT"] = 31008;
  1896. t[e[31009] = "NO_BET"] = 31009;
  1897. t[e[31010] = "BET_AMOUNT_NOT_MATCH"] = 31010;
  1898. t[e[31011] = "NO_MONEY"] = 31011;
  1899. t[e[31012] = "BET_BAD_PARAM"] = 31012;
  1900. t[e[31013] = "STOP_SERVICE"] = 31013;
  1901. t[e[31014] = "NOT_BET_WHEN_AUTO_BET"] = 31014;
  1902. t[e[31015] = "BET_TOO_SMALL"] = 31015;
  1903. t[e[31016] = "BET_COUNT_LIMIT"] = 31016;
  1904. t[e[31017] = "AUTO_BET_LIMIT"] = 31017;
  1905. t[e[31018] = "TOO_MANY_PEOPLE"] = 31018;
  1906. t[e[31019] = "BAD_REQ_PARAM"] = 31019;
  1907. t[e[31020] = "NO_SET_ADVANCE_AUTO_BET"] = 31020;
  1908. t[e[31021] = "AUTO_BET_COUNT_LIMIT"] = 31021;
  1909. t[e[31022] = "AUTO_BET_NO_MONEY"] = 31022;
  1910. t[e[31023] = "AUTO_BET_EXCEED_LIMIT"] = 31023;
  1911. t[e[31024] = "ROOM_SYSTEM_FORCE_CLOSED"] = 31024;
  1912. t[e[10] = "MsgID_ConnClose_Notice"] = 10;
  1913. t[e[99] = "MsgID_DupLogin_Notice"] = 99;
  1914. t[e[10001] = "MsgID_Logon_Response"] = 10001;
  1915. t[e[30010] = "MsgID_CreateClub_Request"] = 30010;
  1916. t[e[30011] = "MsgID_CreateClub_Response"] = 30011;
  1917. t[e[30012] = "MsgID_ClubSnapshotList_Request"] = 30012;
  1918. t[e[30013] = "MsgID_ClubSnapshotList_Response"] = 30013;
  1919. t[e[30014] = "MsgID_ClubSnapshotList_Notice"] = 30014;
  1920. t[e[30015] = "MsgID_JoinClub_Request"] = 30015;
  1921. t[e[30016] = "MsgID_JoinClub_Notice_To_Member"] = 30016;
  1922. t[e[30017] = "MsgID_JoinClub_Notice"] = 30017;
  1923. t[e[30018] = "MsgID_JoinClub_Reply"] = 30018;
  1924. t[e[30019] = "MsgID_JoinClub_Response_To_Member"] = 30019;
  1925. t[e[30020] = "MsgID_JoinClub_Response_To_Admin"] = 30020;
  1926. t[e[30021] = "MsgID_LeaveClub_Request"] = 30021;
  1927. t[e[30022] = "MsgID_LeaveClub_Response"] = 30022;
  1928. t[e[30023] = "MsgID_ClubCurrentBoard_Request"] = 30023;
  1929. t[e[30024] = "MsgID_ClubCurrentBoard_Response"] = 30024;
  1930. t[e[30025] = "MsgID_ClubCurrentBoard_Notice"] = 30025;
  1931. t[e[30026] = "MsgID_ClubMemberSnapshotList_Request"] = 30026;
  1932. t[e[30027] = "MsgID_ClubMemberSnapshotList_Response"] = 30027;
  1933. t[e[30028] = "MsgID_ClubMemberSnapshotList_Notice"] = 30028;
  1934. t[e[30029] = "MsgID_ModifyClubMember_Request"] = 30029;
  1935. t[e[30030] = "MsgID_ModifyClubMember_Response"] = 30030;
  1936. t[e[30031] = "MsgID_ModifyClubMember_Notice"] = 30031;
  1937. t[e[30032] = "MsgID_ModifyClubInfo_Request"] = 30032;
  1938. t[e[30033] = "MsgID_ModifyClubInfo_Response"] = 30033;
  1939. t[e[30034] = "MsgID_BoardVisibleSwitch_Request"] = 30034;
  1940. t[e[30035] = "MsgID_BoardVisibleSwitch_Response"] = 30035;
  1941. t[e[30036] = "MsgID_GrantClubFund_Request"] = 30036;
  1942. t[e[30037] = "MsgID_GrantClubFund_Response"] = 30037;
  1943. t[e[30038] = "MsgID_SearchClubInfo_Request"] = 30038;
  1944. t[e[30039] = "MsgID_SearchClubInfo_Response"] = 30039;
  1945. t[e[30040] = "MsgID_SearchClubInfo_Notice"] = 30040;
  1946. t[e[30041] = "MsgID_ClubCreaterInfo_Request"] = 30041;
  1947. t[e[30042] = "MsgID_ClubCreaterInfo_Response"] = 30042;
  1948. t[e[30043] = "MsgID_ClubCreaterInfo_Notice"] = 30043;
  1949. t[e[30047] = "MsgID_SendMsg_Request"] = 30047;
  1950. t[e[30048] = "MsgID_SendMsg_Response"] = 30048;
  1951. t[e[30049] = "MsgID_SendMsg_Notice"] = 30049;
  1952. t[e[30050] = "MsgID_GetUserData_Request"] = 30050;
  1953. t[e[30051] = "MsgID_GetUserData_Response"] = 30051;
  1954. t[e[30052] = "MsgID_GetUserData_Notice"] = 30052;
  1955. t[e[30053] = "MsgID_HeartBeat_Request"] = 30053;
  1956. t[e[30054] = "MsgID_HeartBeat_Response"] = 30054;
  1957. t[e[30055] = "MsgID_GetJackpotData_Request"] = 30055;
  1958. t[e[30056] = "MsgID_GetJackpotData_Response"] = 30056;
  1959. t[e[30057] = "MsgID_GetJackpotData_Notice"] = 30057;
  1960. t[e[30058] = "MsgID_JackpotSetting_Request"] = 30058;
  1961. t[e[30059] = "MsgID_JackpotSetting_Response"] = 30059;
  1962. t[e[30060] = "MsgID_JackpotSetting_Notice"] = 30060;
  1963. t[e[30061] = "MsgID_SetJackpot_Request"] = 30061;
  1964. t[e[30062] = "MsgID_SetJackpot_Response"] = 30062;
  1965. t[e[30063] = "MsgID_SetJackpot_Notice"] = 30063;
  1966. t[e[30064] = "MsgID_RecoverJackpotSetting_Request"] = 30064;
  1967. t[e[30065] = "MsgID_RecoverJackpotSetting_Response"] = 30065;
  1968. t[e[30066] = "MsgID_JackpotAmout_Notice"] = 30066;
  1969. t[e[30067] = "MsgID_CurrentRoomJackpot_Request"] = 30067;
  1970. t[e[30068] = "MsgID_CurrentRoomJackpot_Response"] = 30068;
  1971. t[e[30069] = "MsgID_CurrentRoomJackpot_Notice"] = 30069;
  1972. t[e[30070] = "MsgID_JackpotAwardRecord_Request"] = 30070;
  1973. t[e[30071] = "MsgID_JackpotAwardRecord_Response"] = 30071;
  1974. t[e[30072] = "MsgID_JackpotAwardRecord_Notice"] = 30072;
  1975. t[e[30073] = "MsgID_JackpotInjectAmount_Request"] = 30073;
  1976. t[e[30074] = "MsgID_JackpotInjectAmount_Response"] = 30074;
  1977. t[e[30075] = "MsgID_JackpotInjectAmount_Notice"] = 30075;
  1978. t[e[30079] = "MsgID_JackPotAwardInfo_Notice"] = 30079;
  1979. t[e[30080] = "MsgID_CreateAlliance_Request"] = 30080;
  1980. t[e[30081] = "MsgID_CreateAlliance_Response"] = 30081;
  1981. t[e[30082] = "MsgID_LeaveAlliance_Request"] = 30082;
  1982. t[e[30083] = "MsgID_LeaveAlliance_Response"] = 30083;
  1983. t[e[30084] = "MsgID_SearchAlliance_Request"] = 30084;
  1984. t[e[30085] = "MsgID_SearchAlliance_Response"] = 30085;
  1985. t[e[30086] = "MsgID_SearchAlliance_Notice"] = 30086;
  1986. t[e[30087] = "MsgID_KickoffAllianceMember_Request"] = 30087;
  1987. t[e[30088] = "MsgID_KickoffAllianceMember_Response"] = 30088;
  1988. t[e[30089] = "MsgID_KickoffAllianceMember_Notice"] = 30089;
  1989. t[e[30090] = "MsgID_AllianceList_Request"] = 30090;
  1990. t[e[30091] = "MsgID_AllianceList_Response"] = 30091;
  1991. t[e[30092] = "MsgID_AllianceList_Notice"] = 30092;
  1992. t[e[30093] = "MsgID_JoinAlliance_Request"] = 30093;
  1993. t[e[30094] = "MsgID_JoinAlliance_Notice_To_Member"] = 30094;
  1994. t[e[30095] = "MsgID_JoinAlliance_Notice_To_Admin"] = 30095;
  1995. t[e[30096] = "MsgID_JoinAllianceReply_To_World"] = 30096;
  1996. t[e[30097] = "MsgID_JoinAlliance_Response_To_Member"] = 30097;
  1997. t[e[30098] = "MsgID_JoinAlliance_Response_To_Admin"] = 30098;
  1998. t[e[30099] = "MsgID_AddRemarks_Request"] = 30099;
  1999. t[e[30100] = "MsgID_AddRemarks_Response"] = 30100;
  2000. t[e[30101] = "MsgID_AddRemarks_Notice"] = 30101;
  2001. t[e[30102] = "MsgID_GetAllRemarks_Request"] = 30102;
  2002. t[e[30103] = "MsgID_GetAllRemarks_Response"] = 30103;
  2003. t[e[30104] = "MsgID_GetAllRemarks_Notice"] = 30104;
  2004. t[e[30105] = "MsgID_LeaveAlliance_Notice"] = 30105;
  2005. t[e[30106] = "MsgID_ClearAllianceMaxBuyinLimit_Request"] = 30106;
  2006. t[e[30107] = "MsgID_ClearAllianceMaxBuyinLimit_Response"] = 30107;
  2007. t[e[30108] = "MsgID_SetAllianceMaxBuyinLimit_Request"] = 30108;
  2008. t[e[30109] = "MsgID_SetAllianceMaxBuyinLimit_Response"] = 30109;
  2009. t[e[30110] = "MsgID_SetAllianceControlBuyin_Request"] = 30110;
  2010. t[e[30111] = "MsgID_SetAllianceControlBuyin_Response"] = 30111;
  2011. t[e[30112] = "MsgID_FairPlay_Report_Request"] = 30112;
  2012. t[e[30113] = "MsgID_FairPlay_Report_Response"] = 30113;
  2013. t[e[30120] = "MsgID_DeviceInfo_Report_Request"] = 30120;
  2014. t[e[30121] = "MsgID_DeviceInfo_Report_Response"] = 30121;
  2015. t[e[30122] = "MsgID_ClubGrantFund_Notice"] = 30122;
  2016. t[e[30123] = "MsgID_GetIncome_Request"] = 30123;
  2017. t[e[30124] = "MsgID_GetIncome_Response"] = 30124;
  2018. t[e[30125] = "MsgID_GetIncome_Notice"] = 30125;
  2019. t[e[30126] = "MsgID_GetUserClubGrantInfo_Request"] = 30126;
  2020. t[e[30127] = "MsgID_GetUserClubGrantInfo_Response"] = 30127;
  2021. t[e[30128] = "MsgID_GetUserClubGrantInfo_Notice"] = 30128;
  2022. t[e[30129] = "MsgID_NotifyUserGoldNum_Notice"] = 30129;
  2023. t[e[30130] = "MsgID_GetUserMailListInfo_Request"] = 30130;
  2024. t[e[30131] = "MsgID_GetUserMailListInfo_Response"] = 30131;
  2025. t[e[30132] = "MsgID_GetUserMailListInfo_Notice"] = 30132;
  2026. t[e[30133] = "MsgID_ReadAndFetchOneMail_Request"] = 30133;
  2027. t[e[30134] = "MsgID_ReadAndFetchOneMail_Response"] = 30134;
  2028. t[e[30135] = "MsgID_ReadAndFetchOneMail_Notice"] = 30135;
  2029. t[e[30136] = "MsgID_NotifyUserMailNum"] = 30136;
  2030. t[e[30137] = "MsgID_NoticeCreateClub"] = 30137;
  2031. t[e[30138] = "MsgID_RequestAnounceList"] = 30138;
  2032. t[e[30139] = "MsgID_ResponseAnounceList"] = 30139;
  2033. t[e[30140] = "MsgID_NoticeAnounceList"] = 30140;
  2034. t[e[30141] = "MsgID_NoticeOneAnounce"] = 30141;
  2035. t[e[30142] = "MsgID_NoticeCreateAlliance"] = 30142;
  2036. t[e[30143] = "MsgID_AddCoinOrder_Pay_Request"] = 30143;
  2037. t[e[30144] = "MsgID_AddCoinOrder_Pay_Response"] = 30144;
  2038. t[e[30145] = "MsgID_AddCoinResult_Pay_Notice"] = 30145;
  2039. t[e[30146] = "MsgID_DelCoinOrder_Pay_Request"] = 30146;
  2040. t[e[30147] = "MsgID_DelCoinOrder_Pay_Response"] = 30147;
  2041. t[e[30148] = "MsgID_DelCoinResult_Pay_Notice"] = 30148;
  2042. t[e[30149] = "MsgID_SearchClubMember_Request"] = 30149;
  2043. t[e[30150] = "MsgID_SearchClubMember_Response"] = 30150;
  2044. t[e[30151] = "MsgID_SearchClubMember_Notice"] = 30151;
  2045. t[e[30152] = "MsgID_ReadAndFetchOneAnounce_Request"] = 30152;
  2046. t[e[30153] = "MsgID_ReadAndFetchOneAnounce_Response"] = 30153;
  2047. t[e[30154] = "MsgID_ReadAndFetchOneAnounce_Notice"] = 30154;
  2048. t[e[30155] = "MsgID_NoticeOneMail"] = 30155;
  2049. t[e[30156] = "MsgID_NoticeWithdrawMail"] = 30156;
  2050. t[e[30157] = "MsgID_NoticeWithdrawAnounce"] = 30157;
  2051. t[e[30158] = "MsgID_SetClubInvitePercent_Request"] = 30158;
  2052. t[e[30159] = "MsgID_SetClubInvitePercent_Response"] = 30159;
  2053. t[e[30160] = "MsgID_AutoAgreeClubReply_Request"] = 30160;
  2054. t[e[30161] = "MsgID_AutoAgreeClubReply_Response"] = 30161;
  2055. t[e[30162] = "MsgID_AutoAgreeClubReply_Notice"] = 30162;
  2056. t[e[30163] = "MsgID_QuerySendFairReport_Request"] = 30163;
  2057. t[e[30164] = "MsgID_QuerySendFairReport_Response"] = 30164;
  2058. t[e[30165] = "MsgID_Login_Notice"] = 30165;
  2059. t[e[30166] = "MsgID_GetWebToken_Request"] = 30166;
  2060. t[e[30167] = "MsgID_GetWebToken_Response"] = 30167;
  2061. t[e[30168] = "MsgID_CowBoy_List_Request"] = 30168;
  2062. t[e[30169] = "MsgID_CowBoy_List_Response"] = 30169;
  2063. t[e[30170] = "MsgID_GlobalMessage_Notice"] = 30170;
  2064. t[e[30171] = "MsgID_GameStatus_Request"] = 30171;
  2065. t[e[30172] = "MsgID_GameStatus_Response"] = 30172;
  2066. t[e[30173] = "MsgID_HumanBoy_List_Request"] = 30173;
  2067. t[e[30174] = "MsgID_HumanBoy_List_Response"] = 30174;
  2068. t[e[30175] = "MsgID_DepositInStrongbox_Request"] = 30175;
  2069. t[e[30176] = "MsgID_DepositInStrongbox_Response"] = 30176;
  2070. t[e[30178] = "MsgID_TakeoutStrongbox_Request"] = 30178;
  2071. t[e[30179] = "MsgID_TakeoutStrongbox_Response"] = 30179;
  2072. t[e[30181] = "MsgID_StrongboxDetail_Request"] = 30181;
  2073. t[e[30182] = "MsgID_StrongboxDetail_Response"] = 30182;
  2074. t[e[30184] = "MsgID_GetStrongboxInfo_Request"] = 30184;
  2075. t[e[30185] = "MsgID_GetStrongboxInfo_Response"] = 30185;
  2076. t[e[30187] = "MsgID_Luck_Draw_Done_Request"] = 30187;
  2077. t[e[30188] = "MsgID_Luck_Draw_Done_Response"] = 30188;
  2078. t[e[30189] = "MsgID_Luck_Draw_Notice"] = 30189;
  2079. t[e[30190] = "MsgID_Aof_JackPot_List_Request"] = 30190;
  2080. t[e[30191] = "MsgID_Aof_JackPot_List_Response"] = 30191;
  2081. t[e[30192] = "MsgID_Aof_Thouthand_Request"] = 30192;
  2082. t[e[30193] = "MsgID_Aof_Thouthand_response"] = 30193;
  2083. t[e[30194] = "MsgID_CheckSafe_Request"] = 30194;
  2084. t[e[30195] = "MsgID_CheckSafe_response"] = 30195;
  2085. t[e[30196] = "MsgID_Luck_Turntable_Draw_Notice"] = 30196;
  2086. t[e[30197] = "MsgID_Luck_Turntable_Result_Request"] = 30197;
  2087. t[e[30198] = "MsgID_Luck_Turntable_Result_Response"] = 30198;
  2088. t[e[30199] = "MsgID_Luck_Turntable_Ready_Notice"] = 30199;
  2089. t[e[30200] = "MsgID_Luck_Turntable_Over_Notice"] = 30200;
  2090. t[e[30201] = "MsgID_Luck_Turntable_StartTime_Notice"] = 30201;
  2091. t[e[30202] = "MsgID_Luck_Turntable_EndTime_Notice"] = 30202;
  2092. t[e[30203] = "MsgID_Luck_Turntable_Snaplist_Request"] = 30203;
  2093. t[e[30204] = "MsgID_Luck_Turntable_Snaplist_Response"] = 30204;
  2094. t[e[30205] = "MsgID_Luck_Turntable_Snaplist_Notice"] = 30205;
  2095. t[e[30206] = "MsgID_Luck_Turntable_Countdown_Notice"] = 30206;
  2096. t[e[30207] = "MsgID_Luck_Turntable_Result_Notice"] = 30207;
  2097. t[e[30211] = "MsgID_GameStatusV2_Request"] = 30211;
  2098. t[e[30212] = "MsgID_GameStatusV2_Response"] = 30212;
  2099. t[e[30300] = "MsgID_Banner_Request"] = 30300;
  2100. t[e[30301] = "MsgID_Banner_Response"] = 30301;
  2101. t[e[30302] = "MsgID_ZoomPlayerSettle_Notice"] = 30302;
  2102. t[e[30303] = "MsgID_SetThisAreaPlayer_Notice"] = 30303;
  2103. t[e[30400] = "MsgID_Create_RedBag_Request"] = 30400;
  2104. t[e[30401] = "MsgID_Create_RedBag_Response"] = 30401;
  2105. t[e[30402] = "MsgID_RedBag_Notice"] = 30402;
  2106. t[e[30403] = "MsgID_RedBag_Info_Request"] = 30403;
  2107. t[e[30404] = "MsgID_RedBag_Info_Response"] = 30404;
  2108. t[e[30405] = "MsgID_RedBag_Set_Amount_Request"] = 30405;
  2109. t[e[30406] = "MsgID_RedBag_Set_Amount_Response"] = 30406;
  2110. t[e[30407] = "MsgID_RedBag_Draw_Request"] = 30407;
  2111. t[e[30408] = "MsgID_RedBag_Draw_Response"] = 30408;
  2112. t[e[30409] = "MsgID_RedBag_Open_Notice"] = 30409;
  2113. t[e[30410] = "MsgID_RedBag_History_Request"] = 30410;
  2114. t[e[30411] = "MsgID_RedBag_History_Response"] = 30411;
  2115. t[e[30412] = "MsgID_RedBag_Boom2Creater_Notify"] = 30412;
  2116. t[e[30413] = "MsgID_RedBag_Status_Request"] = 30413;
  2117. t[e[30414] = "MsgID_RedBag_Status_Response"] = 30414;
  2118. t[e[30415] = "MsgID_RedBag_AutoDraw_Request"] = 30415;
  2119. t[e[30416] = "MsgID_RedBag_AutoDraw_Response"] = 30416;
  2120. t[e[30417] = "MsgID_RedBag_Drawed2Creator_Notice"] = 30417;
  2121. t[e[30418] = "MsgID_RedBag_LastInfo_Request"] = 30418;
  2122. t[e[30419] = "MsgID_RedBag_LastInfo_Response"] = 30419;
  2123. t[e[30420] = "MsgID_RedBag_JackpotInfo_Request"] = 30420;
  2124. t[e[30421] = "MsgID_RedBag_JackpotInfo_Response"] = 30421;
  2125. t[e[30422] = "MsgID_RedBag_StatisticsInfo_Request"] = 30422;
  2126. t[e[30423] = "MsgID_RedBag_StatisticsInfo_Response"] = 30423;
  2127. t[e[30424] = "MsgID_RedBag_JackpotUpdate_Notice"] = 30424;
  2128. t[e[30440] = "MsgID_Create_RedBagM_Request"] = 30440;
  2129. t[e[30441] = "MsgID_Create_RedBagM_Response"] = 30441;
  2130. t[e[30442] = "MsgID_RedBagM_Notice"] = 30442;
  2131. t[e[30443] = "MsgID_RedBagM_Info_Request"] = 30443;
  2132. t[e[30444] = "MsgID_RedBagM_Info_Response"] = 30444;
  2133. t[e[30445] = "MsgID_RedBagM_Set_Amount_Request"] = 30445;
  2134. t[e[30446] = "MsgID_RedBagM_Set_Amount_Response"] = 30446;
  2135. t[e[30447] = "MsgID_RedBagM_Draw_Request"] = 30447;
  2136. t[e[30448] = "MsgID_RedBagM_Draw_Response"] = 30448;
  2137. t[e[30449] = "MsgID_RedBagM_History_Request"] = 30449;
  2138. t[e[30450] = "MsgID_RedBagM_History_Response"] = 30450;
  2139. t[e[30451] = "MsgID_RedBagM_Boom2Creater_Notify"] = 30451;
  2140. t[e[30452] = "MsgID_RedBagM_Status_Request"] = 30452;
  2141. t[e[30453] = "MsgID_RedBagM_Status_Response"] = 30453;
  2142. t[e[30454] = "MsgID_RedBagM_Drawed2Creator_Notice"] = 30454;
  2143. t[e[30455] = "MsgID_RedBagM_LastInfo_Request"] = 30455;
  2144. t[e[30456] = "MsgID_RedBagM_LastInfo_Response"] = 30456;
  2145. t[e[30457] = "MsgID_RedBagM_StatisticsInfo_Request"] = 30457;
  2146. t[e[30458] = "MsgID_RedBagM_StatisticsInfo_Response"] = 30458;
  2147. t[e[30459] = "MsgID_RedBagM_ShowUI_Notify"] = 30459;
  2148. t[e[30480] = "MsgID_VideoCowboy_List_Request"] = 30480;
  2149. t[e[30481] = "MsgID_VideoCowboy_List_Response"] = 30481;
  2150. t[e[30482] = "MsgID_AutoExchange_Notice"] = 30482;
  2151. t[e[35001] = "MsgID_GetRank_Request"] = 35001;
  2152. t[e[35002] = "MsgID_GetRank_Response"] = 35002;
  2153. t[e[35101] = "MsgID_SetSecretKey_Request"] = 35101;
  2154. t[e[35102] = "MsgID_SetSecretKey_Response"] = 35102;
  2155. t[e[35103] = "MsgID_SetSecretKeyEx_Request"] = 35103;
  2156. t[e[35104] = "MsgID_SetSecretKeyEx_Response"] = 35104;
  2157. t[e[35110] = "MsgID_Referrals_Request"] = 35110;
  2158. t[e[35111] = "MsgID_Referrals_Response"] = 35111;
  2159. t[e[35201] = "MsgID_InviteSummary_Request"] = 35201;
  2160. t[e[35202] = "MsgID_InviteSummary_Response"] = 35202;
  2161. t[e[35203] = "MsgID_InviteIncomeRedeem_Request"] = 35203;
  2162. t[e[35204] = "MsgID_InviteIncomeRedeem_Response"] = 35204;
  2163. t[e[35301] = "MsgID_JoinAlliance_UserCancel_Request"] = 35301;
  2164. t[e[35302] = "MsgID_JoinAlliance_UserCancel_Response"] = 35302;
  2165. t[e[35205] = "MsgID_PokerMaster_List_Request"] = 35205;
  2166. t[e[35206] = "MsgID_PokerMaster_List_Response"] = 35206;
  2167. t[e[35207] = "MsgID_MiniGames_List_Request"] = 35207;
  2168. t[e[35208] = "MsgID_MiniGames_List_Response"] = 35208;
  2169. t[e[35401] = "MsgID_AuthApi_Request"] = 35401;
  2170. t[e[35402] = "MsgID_AuthApi_Notice"] = 35402;
  2171. t[e[35403] = "MsgID_AuthApi_Response"] = 35403;
  2172. t[e[35404] = "MsgID_GameMaintainStatus_Notice"] = 35404;
  2173. t[e[35405] = "MsgID_MttResult_Request"] = 35405;
  2174. t[e[35406] = "MsgID_MttResult_Notice"] = 35406;
  2175. t[e[35407] = "MsgID_MttResult_Response"] = 35407;
  2176. t[e[35408] = "MsgID_MttDetail_Request"] = 35408;
  2177. t[e[35409] = "MsgID_MttDetail_Notice"] = 35409;
  2178. t[e[35410] = "MsgID_MttDetail_Response"] = 35410;
  2179. t[e[35411] = "MsgID_MttGameSum_Request"] = 35411;
  2180. t[e[35412] = "MsgID_MttGameSum_Notice"] = 35412;
  2181. t[e[35413] = "MsgID_MttGameSum_Response"] = 35413;
  2182. t[e[35416] = "MsgID_SpinResult_Request"] = 35416;
  2183. t[e[35417] = "MsgID_SpinResult_Notice"] = 35417;
  2184. t[e[35418] = "MsgID_SpinResult_Response"] = 35418;
  2185. t[e[35419] = "MsgID_SpinDetail_Request"] = 35419;
  2186. t[e[35420] = "MsgID_SpinDetail_Notice"] = 35420;
  2187. t[e[35421] = "MsgID_SpinDetail_Response"] = 35421;
  2188. t[e[35422] = "MsgID_SpinGameSum_Request"] = 35422;
  2189. t[e[35423] = "MsgID_SpinGameSum_Notice"] = 35423;
  2190. t[e[35424] = "MsgID_SpinGameSum_Response"] = 35424;
  2191. t[e[35414] = "MsgID_EventReport_Request"] = 35414;
  2192. t[e[35415] = "MsgID_EventReport_Response"] = 35415;
  2193. t[e[35450] = "MsgID_Exchange_UserPoints_Request"] = 35450;
  2194. t[e[35451] = "MsgID_Exchange_UserPoints_Response"] = 35451;
  2195. t[e[35452] = "MsgID_Goods_List_Request"] = 35452;
  2196. t[e[35453] = "MsgID_Goods_List_Response"] = 35453;
  2197. t[e[35454] = "MsgID_Bank_Details_Query_Request"] = 35454;
  2198. t[e[35455] = "MsgID_Bank_Details_Query_Response"] = 35455;
  2199. t[e[35458] = "MsgID_StarInfo_Request"] = 35458;
  2200. t[e[35459] = "MsgID_StarInfo_Response"] = 35459;
  2201. t[e[35460] = "MsgID_ReceiveTools_Request"] = 35460;
  2202. t[e[35461] = "MsgID_ReceiveTools_Response"] = 35461;
  2203. t[e[35462] = "MsgID_ReceiveTools_Notice"] = 35462;
  2204. t[e[35463] = "MsgID_Get_Scaler_Quote_Request"] = 35463;
  2205. t[e[35464] = "MsgID_Get_Scaler_Quote_Response"] = 35464;
  2206. t[e[35465] = "MsgID_Exchange_Currency_Request"] = 35465;
  2207. t[e[35466] = "MsgID_Exchange_Currency_Response"] = 35466;
  2208. t[e[35467] = "MsgID_GetUserMarks_Request"] = 35467;
  2209. t[e[35468] = "MsgID_GetUserMarks_Response"] = 35468;
  2210. t[e[35469] = "MsgID_AuthVerify_Request"] = 35469;
  2211. t[e[35470] = "MsgID_AuthVerify_Response"] = 35470;
  2212. t[e[35471] = "MsgID_UpdateUserMarks_Request"] = 35471;
  2213. t[e[35472] = "MsgID_UpdateUserMarks_Reponse"] = 35472;
  2214. t[e[35473] = "MsgID_BuyinEvent_UsdtChanage_Notice"] = 35473;
  2215. t[e[35474] = "MsgID_QuickRaise_Request"] = 35474;
  2216. t[e[35475] = "MsgID_QuickRaise_Response"] = 35475;
  2217. t[e[35576] = "MsgID_DefaultSetting_Request"] = 35576;
  2218. t[e[35577] = "MsgID_DefaultSetting_Response"] = 35577;
  2219. t[e[35578] = "MsgID_StarAllow_Request"] = 35578;
  2220. t[e[35579] = "MsgID_StarAllow_Response"] = 35579;
  2221. t[e[35580] = "MsgID_StarWillBegin_Notice"] = 35580;
  2222. t[e[35581] = "MsgID_UsdtExchange_Config_Notice"] = 35581;
  2223. t[e[35582] = "MsgID_GetUsdtExchange_Config_Request"] = 35582;
  2224. t[e[35583] = "MsgID_GetUsdtExchange_Config_Response"] = 35583;
  2225. t[e[35600] = "MsgID_AddHelpWrap_Notice"] = 35600;
  2226. t[e[35601] = "MsgID_GetUserHelpWarpList_Request"] = 35601;
  2227. t[e[35602] = "MsgID_GetUserHelpWarpList_Response"] = 35602;
  2228. t[e[35603] = "MsgID_LeftHelpCountChange_Notice"] = 35603;
  2229. t[e[35605] = "MsgID_AddHelper_Request"] = 35605;
  2230. t[e[35606] = "MsgID_AddHelper_Response"] = 35606;
  2231. t[e[35607] = "MsgID_GetTotalHistoryAmount_Request"] = 35607;
  2232. t[e[35608] = "MsgID_GetTotalHistoryAmount_Response"] = 35608;
  2233. t[e[35609] = "MsgID_UserReceiveHelpWarp_Request"] = 35609;
  2234. t[e[35610] = "MsgID_UserReceiveHelpWarp_Response"] = 35610;
  2235. t[e[35611] = "MsgID_UserHelpWarpChange_Notice"] = 35611;
  2236. t[e[35621] = "MsgID_UserChangeLanguage_Request"] = 35621;
  2237. t[e[35622] = "MsgID_UserChangeLanguage_Response"] = 35622;
  2238. t[e[35623] = "MsgId_GetTexasTotalHands_Request"] = 35623;
  2239. t[e[35624] = "MsgId_GetTexasTotalHands_Response"] = 35624;
  2240. t[e[35700] = "MsgID_SportsLogin_Request"] = 35700;
  2241. t[e[35701] = "MsgID_SportsLogin_Response"] = 35701;
  2242. t[e[35702] = "MsgID_SportsLeave_Request"] = 35702;
  2243. t[e[35703] = "MsgID_SportsLeave_Response"] = 35703;
  2244. t[e[35704] = "MsgID_BatchDelRemarks_Request"] = 35704;
  2245. t[e[35705] = "MsgID_BatchDelRemarks_Response"] = 35705;
  2246. t[e[35706] = "MsgID_PgLogin_Request"] = 35706;
  2247. t[e[35707] = "MsgID_PgLogin_Response"] = 35707;
  2248. t[e[35708] = "MsgID_PgLeave_Request"] = 35708;
  2249. t[e[35709] = "MsgID_PgLeave_Response"] = 35709;
  2250. t[e[35710] = "MsgID_PgBonusAndFreeGames_Request"] = 35710;
  2251. t[e[35711] = "MsgID_PgBonusAndFreeGames_Response"] = 35711;
  2252. t[e[35721] = "MsgId_KYCVerificationStatus_Request"] = 35721;
  2253. t[e[35722] = "MsgId_KYCVerificationStatus_Response"] = 35722;
  2254. t[e[35712] = "MsgId_BlackJackLogin_Request"] = 35712;
  2255. t[e[35713] = "MsgId_BlackJackLogin_Response"] = 35713;
  2256. t[e[35726] = "MsgID_OpenCalmDownWindows_Notice"] = 35726;
  2257. t[e[35727] = "MsgID_CalmDownConfirm_Request"] = 35727;
  2258. t[e[35728] = "MsgID_CalmDownConfirm_Response"] = 35728;
  2259. t[e[35729] = "MsgID_CalmDownConfirmResult_Notice"] = 35729;
  2260. t[e[35801] = "MsgID_MemePoker_Rank_Request"] = 35801;
  2261. t[e[35802] = "MsgID_MemePoker_Rank_Response"] = 35802;
  2262. t[e[35804] = "MsgID_MemePoker_PropsList_Request"] = 35804;
  2263. t[e[35805] = "MsgID_MemePoker_PropsList_Response"] = 35805;
  2264. t[e[35807] = "MsgID_MemePoker_SearchUser_Request"] = 35807;
  2265. t[e[35808] = "MsgID_MemePoker_SearchUser_Response"] = 35808;
  2266. t[e[35814] = "MsgID_MemePoker_PropsLog_Request"] = 35814;
  2267. t[e[35815] = "MsgID_MemePoker_PropsLog_Response"] = 35815;
  2268. t[e[35817] = "MsgID_MemePoker_PropsAction_Request"] = 35817;
  2269. t[e[35818] = "MsgID_MemePoker_PropsAction_Response"] = 35818;
  2270. t[e[35821] = "MsgID_MemePoker_CoinExchangeShop_Request"] = 35821;
  2271. t[e[35822] = "MsgID_MemePoker_CoinExchangeShop_Response"] = 35822;
  2272. t[e[35824] = "MsgID_MemePoker_CoinExchange_Request"] = 35824;
  2273. t[e[35825] = "MsgID_MemePoker_CoinExchange_Response"] = 35825;
  2274. t[e[35827] = "MsgID_MemePoker_RechargeGoods_Request"] = 35827;
  2275. t[e[35828] = "MsgID_MemePoker_RechargeGoods_Response"] = 35828;
  2276. t[e[35831] = "MsgID_MemePoker_NewPayOrder_Request"] = 35831;
  2277. t[e[35832] = "MsgID_MemePoker_NewPayOrder_Response"] = 35832;
  2278. t[e[35833] = "MsgID_MemePoker_PayOrderConfirm_Request"] = 35833;
  2279. t[e[35834] = "MsgID_MemePoker_PayOrderConfirm_Response"] = 35834;
  2280. t[e[35902] = "MsgID_SportsQuickBet_Request"] = 35902;
  2281. t[e[35903] = "MsgID_SportsQuickBet_Response"] = 35903;
  2282. t[e[35904] = "MsgID_SportsMatchList_Request"] = 35904;
  2283. t[e[35905] = "MsgID_SportsMatchList_Response"] = 35905;
  2284. t[e[35906] = "MsgID_SportsTipTemplate_Request"] = 35906;
  2285. t[e[35907] = "MsgID_SportsTipTemplate_Response"] = 35907;
  2286. t[e[35908] = "MsgID_SportsQuickBetFeatureFlag_Notice"] = 35908;
  2287. t[e[36100] = "MsgId_Rebate_GetEventStatus_Request"] = 36100;
  2288. t[e[36101] = "MsgId_Rebate_GetEventStatus_Response"] = 36101;
  2289. t[e[36102] = "MsgId_Rebate_ReceiveReward_Request"] = 36102;
  2290. t[e[36103] = "MsgId_Rebate_ReceiveReward_Response"] = 36103;
  2291. t[e[36104] = "MsgId_Rebate_GetEventStatus_Notice"] = 36104;
  2292. t[e[36105] = "MsgId_Notice_Platform_Maintenance"] = 36105;
  2293. t[e[10101] = "DataServer"] = 10101;
  2294. t[e[10] = "CowBoy"] = 10;
  2295. t[e[20] = "Allin"] = 20;
  2296. t[e[30] = "HumanBoy"] = 30;
  2297. t[e[40] = "ZoomTexas"] = 40;
  2298. t[e[49] = "ZoomTexasMax"] = 49;
  2299. t[e[50] = "VideoCowboy"] = 50;
  2300. t[e[60] = "Bet"] = 60;
  2301. t[e[70] = "PokerMaster"] = 70;
  2302. t[e[80] = "Jackfruit"] = 80;
  2303. t[e[90] = "PLO"] = 90;
  2304. t[e[900] = "BlMtt"] = 900;
  2305. t[e[1001] = "TopMatches"] = 1001;
  2306. t[e[1010] = "PocketGames"] = 1010;
  2307. t[e[1020] = "BlackJack"] = 1020;
  2308. t[e[255] = "Cards_Zero"] = 255;
  2309. t[e[256] = "Cards_Back"] = 256;
  2310. t[e[10] = "H5Thailand"] = 10;
  2311. t[e[11] = "H5WebThailand"] = 11;
  2312. t[e[12] = "H5Arab"] = 12;
  2313. t[e[13] = "H5Hindi"] = 13;
  2314. t[e[14] = "H5Mempoker"] = 14;
  2315. t[e[15] = "PC"] = 15;
  2316. t[e[100] = "Favorite"] = 100;
  2317. t[e[300] = "JoinRoom"] = 300;
  2318. t[e[301] = "LeaveRoom"] = 301;
  2319. t[e[302] = "SitDown"] = 302;
  2320. t[e[303] = "StandUp"] = 303;
  2321. t[e[304] = "Buyin"] = 304;
  2322. t[e[305] = "Action"] = 305;
  2323. t[e[306] = "BuyInsure"] = 306;
  2324. t[e[307] = "Situation"] = 307;
  2325. t[e[308] = "SendCardsFun"] = 308;
  2326. t[e[309] = "SendChat"] = 309;
  2327. t[e[310] = "StayPosition"] = 310;
  2328. t[e[311] = "BackPosition"] = 311;
  2329. t[e[312] = "ShowCards"] = 312;
  2330. t[e[313] = "BuyOut"] = 313;
  2331. t[e[314] = "CheckoutAndLeave"] = 314;
  2332. t[e[315] = "DefaultFold"] = 315;
  2333. t[e[316] = "ForceShowCards"] = 316;
  2334. t[e[317] = "AutoWithDraw"] = 317;
  2335. t[e[318] = "QuickLeave"] = 318;
  2336. t[e[319] = "QuickFold"] = 319;
  2337. t[e[320] = "BetAction"] = 320;
  2338. t[e[321] = "AutoBet"] = 321;
  2339. t[e[322] = "AdvanceAutoBet"] = 322;
  2340. t[e[323] = "SendBarrage"] = 323;
  2341. t[e[100] = "mtt_NotifyGameDetail"] = 100;
  2342. t[e[303] = "star_big_tip"] = 303;
  2343. t[e[801] = "jackfruit_all_will"] = 801;
  2344. t[e[810] = "rebate_notify"] = 810;
  2345. t[e[811] = "rebate_top_notify"] = 811;
  2346. t[e[812] = "rebate_surpassed_notify"] = 812;
  2347. ProtoBuf.commonProto.GAME_CATEGORY.MTT: 38
  2348. ProtoBuf.commonProto.MTT_GAME_MODE.PP: 37
  2349. ProtoBuf.commonProto.PLATFORM.PKW: 36
  2350. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_BET: 35
  2351. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_BET: 30
  2352. ProtoBuf.commonProto.MTT_GAME_MODE.SHORT_DECK: 28
  2353. ProtoBuf.commonProto.MTT_GAME_MODE.NLH: 27
  2354. ProtoBuf.commonProto.GAME_CATEGORY.SNG: 24
  2355. ProtoBuf.commonProto.MTT_GAME_MODE.OMAHA: 23
  2356. ProtoBuf.commonProto.MTT_GAME_STATUS.NOT_STARTED: 22
  2357. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_READY: 18
  2358. ProtoBuf.commonProto.MTT_GAME_STATUS.ENDED: 18
  2359. ProtoBuf.mttPro: 18
  2360. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_NONE: 17
  2361. ProtoBuf.commonProto.TOURNAMENT_MODE.SUPER_HUNTER: 17
  2362. ProtoBuf.commonProto.GAME_CATEGORY.LOOP_PP: 16
  2363. ProtoBuf.commonProto.MTT_GAME_STATUS.STARTED: 16
  2364. ProtoBuf.commonProto.MTT_GAME_STATUS.STOP_SIGNUP: 16
  2365. ProtoBuf.commonProto.SocketMessageId.User_Login_Response: 16
  2366. ProtoBuf.commonProto.TOURNAMENT_MODE.HUNTER: 16
  2367. ProtoBuf.holdem: 16
  2368. ProtoBuf.commonProto: 15
  2369. ProtoBuf.commonProto.GAME_CATEGORY.GEN_PP: 15
  2370. ProtoBuf.holdem.Action.FOLD: 15
  2371. ProtoBuf.commonProto.TOOL_TYPE.WPT_Offline: 13
  2372. ProtoBuf.commonProto.TOOL_TYPE.WPT_Offline_Hotel: 13
  2373. ProtoBuf.holdem.MessageId.HoleCardsMsg: 13
  2374. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_NONE: 11
  2375. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_READY: 11
  2376. ProtoBuf.commonProto.GAME_CATEGORY.SNG_AOF: 11
  2377. ProtoBuf.commonProto.Holdem_Record.decode: 11
  2378. ProtoBuf.commonProto.TOOL_TYPE.coupon: 11
  2379. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_ShowResult: 10
  2380. ProtoBuf.commonProto.TOOL_TYPE.WPT_Offline_Hotel_Mall: 10
  2381. ProtoBuf.commonProto.TOURNAMENT_MODE.NORMAL: 10
  2382. ProtoBuf.holdem.MessageId.RoundResultMsg: 10
  2383. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_NextRound: 9
  2384. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Wantcard: 9
  2385. ProtoBuf.holdem.MessageId.BoardCardsMsg: 9
  2386. ProtoBuf.holdem.MessageId.HoleCardListMsg: 9
  2387. ProtoBuf.holdem.MessageId.PlayerActionMsg: 9
  2388. ProtoBuf.holdem.MessageId.RoomSnapshotMsg: 9
  2389. ProtoBuf.mttPro.RestTime_Type.RestTime_Type_FINALS: 9
  2390. ProtoBuf.mttPro.RestTime_Type.RestTime_Type_MIDFIELD: 9
  2391. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Safe: 8
  2392. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Settle: 8
  2393. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Safe: 8
  2394. ProtoBuf.commonProto.ErrorCode: 8
  2395. ProtoBuf.commonProto.Pineapple_Round_Record.decode: 8
  2396. ProtoBuf.holdem.MessageId.DealerPosMsg: 8
  2397. ProtoBuf.pineapple.ErrorCode: 8
  2398. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_ShowResult: 7
  2399. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_Safe: 7
  2400. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_SplitCard: 7
  2401. ProtoBuf.commonProto.ErrorCode.Bad_Request: 7
  2402. ProtoBuf.commonProto.ErrorCode.Platform_Connection_Error: 7
  2403. ProtoBuf.commonProto.ErrorCode.Platform_Response_Empty: 7
  2404. ProtoBuf.commonProto.ErrorCode.Platform_Response_Error: 7
  2405. ProtoBuf.commonProto.ErrorCode.Platform_Response_Invalid: 7
  2406. ProtoBuf.commonProto.ErrorCode.Platform_Send_Error: 7
  2407. ProtoBuf.commonProto.ErrorCode.User_Account_Locked: 7
  2408. ProtoBuf.commonProto.ErrorCode.User_External_Token_Invalid: 7
  2409. ProtoBuf.commonProto.SocketMessageId.Impoker_User_Choose_Agent_Request: 7
  2410. ProtoBuf.commonProto.SocketMessageId.Secure_Token_Check: 7
  2411. ProtoBuf.commonProto.SocketMessageId.User_Info_Response: 7
  2412. ProtoBuf.commonProto.SocketMessageId.User_Login_Request: 7
  2413. ProtoBuf.commonProto.TOOL_TYPE.ticket: 7
  2414. ProtoBuf.holdem.Action.NONE_ACTION: 7
  2415. ProtoBuf.modelProto.User.create: 7
  2416. ProtoBuf.mttPro.Tips_Type.Game_Final_Pause: 7
  2417. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_BlackJack_Take: 6
  2418. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Wantcard: 6
  2419. BJProtoBuf.blackjackProto.TO01_WinFlag.TO01_WinFlag_Win: 6
  2420. ProtoBuf.blackjackProto.Code.MainTain_Open: 6
  2421. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_Double_Bet: 6
  2422. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Settle: 6
  2423. ProtoBuf.commonProto.ErrorCode.Mtt_Tournament_Canceled: 6
  2424. ProtoBuf.commonProto.ErrorCode.Mtt_Tournament_Ended: 6
  2425. ProtoBuf.commonProto.ErrorCode.User_Client_Need_Update: 6
  2426. ProtoBuf.commonProto.GAME_CATEGORY.COW_BOY: 6
  2427. ProtoBuf.commonProto.MttTournamentPlayersRequest: 6
  2428. ProtoBuf.holdem.BoardCardsMsg.decode: 6
  2429. ProtoBuf.holdem.MessageId.NeedActionMsg: 6
  2430. ProtoBuf.holdem.MessageId.PlayerStateMsg: 6
  2431. ProtoBuf.holdem.MessageId.ShowdownMsg: 6
  2432. ProtoBuf.holdem.RoundResultMsg.decode: 6
  2433. ProtoBuf.mttPro.Tips_Type.Game_Pause: 6
  2434. ProtoBuf.mttPro.Tips_Type.Game_Sync_Pokering: 6
  2435. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_Safe: 5
  2436. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_SplitCard: 5
  2437. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_BET: 5
  2438. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_BlackJack_Take: 5
  2439. ProtoBuf.commonProto.Broadcast_Message_Enter_Game.decode: 5
  2440. ProtoBuf.commonProto.ErrorCode.User_Device_Locked: 5
  2441. ProtoBuf.commonProto.MttTournament: 5
  2442. ProtoBuf.commonProto.PLATFORM.TRIBAL_PIONEER: 5
  2443. ProtoBuf.commonProto.SocketMessageId.List_User_Gifts_Response: 5
  2444. ProtoBuf.holdem.Action: 5
  2445. ProtoBuf.holdem.Action.ALL_IN: 5
  2446. ProtoBuf.mttPro.Mtt_Status.Mtt_Status_final_pause: 5
  2447. ProtoBuf.mttPro.Mtt_Status.Mtt_Status_pause: 5
  2448. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_BET: 4
  2449. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_Double_Bet: 4
  2450. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Dispathcard: 4
  2451. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_NextRound: 4
  2452. BJProtoBuf.blackjackProto.TO01_WinFlag.TO01_WinFlag_Lose: 4
  2453. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_WantCard: 4
  2454. ProtoBuf.commonProto.CelebrityRole.Commentator: 4
  2455. ProtoBuf.commonProto.MttMultiTableRequest: 4
  2456. ProtoBuf.commonProto.MttMultiTableResponse: 4
  2457. ProtoBuf.commonProto.PP_Level: 4
  2458. ProtoBuf.commonProto.SngTournament: 4
  2459. ProtoBuf.commonProto.SocketMessageId.Transfer_Coffer_Log_Request: 4
  2460. ProtoBuf.commonProto.SocketMessageId.User_Withdraw_Password_Verification_Request: 4
  2461. ProtoBuf.commonProto.TOOL_TYPE.Satellite_Ticket: 4
  2462. ProtoBuf.commonProto.TOOL_TYPE.free_ticket: 4
  2463. ProtoBuf.holdem.HoleCardsMsg.decode: 4
  2464. ProtoBuf.holdem.MessageId.ActionReq: 4
  2465. ProtoBuf.holdem.MessageId.ActionRes: 4
  2466. ProtoBuf.holdem.MessageId.AnimMsg: 4
  2467. ProtoBuf.holdem.MessageId.AnimReq: 4
  2468. ProtoBuf.holdem.MessageId.AnimRes: 4
  2469. ProtoBuf.holdem.MessageId.AutoPlayMsg: 4
  2470. ProtoBuf.holdem.MessageId.CancelAutoPlayReq: 4
  2471. ProtoBuf.holdem.MessageId.CancelAutoPlayRes: 4
  2472. ProtoBuf.holdem.MessageId.Emoji: 4
  2473. ProtoBuf.holdem.MessageId.EnterRoomReq: 4
  2474. ProtoBuf.holdem.MessageId.EnterRoomRes: 4
  2475. ProtoBuf.holdem.MessageId.HideHoleCardReq: 4
  2476. ProtoBuf.holdem.MessageId.HideHoleCardRes: 4
  2477. ProtoBuf.holdem.MessageId.LeaveRoomReq: 4
  2478. ProtoBuf.holdem.MessageId.LeaveRoomRes: 4
  2479. ProtoBuf.holdem.MessageId.NeedMoreCoinMsg: 4
  2480. ProtoBuf.holdem.MessageId.OtherRoomMsg: 4
  2481. ProtoBuf.holdem.MessageId.PauseGameReq: 4
  2482. ProtoBuf.holdem.MessageId.PauseGameRes: 4
  2483. ProtoBuf.holdem.MessageId.PlayerLeaveMsg: 4
  2484. ProtoBuf.holdem.MessageId.PlayerNickNameChangeMsg: 4
  2485. ProtoBuf.holdem.MessageId.PotsMsg: 4
  2486. ProtoBuf.holdem.MessageId.ResumeGameReq: 4
  2487. ProtoBuf.holdem.MessageId.ResumeGameRes: 4
  2488. ProtoBuf.holdem.MessageId.RoomBillReq: 4
  2489. ProtoBuf.holdem.MessageId.RoomBillRes: 4
  2490. ProtoBuf.holdem.MessageId.RoomConfReq: 4
  2491. ProtoBuf.holdem.MessageId.RoomConfRes: 4
  2492. ProtoBuf.holdem.MessageId.RoomSnapshotReq: 4
  2493. ProtoBuf.holdem.MessageId.SeatEmptyMsg: 4
  2494. ProtoBuf.holdem.MessageId.SeatOccupiedMsg: 4
  2495. ProtoBuf.holdem.MessageId.SitDownReq: 4
  2496. ProtoBuf.holdem.MessageId.SitDownRes: 4
  2497. ProtoBuf.holdem.MessageId.StandbyReq: 4
  2498. ProtoBuf.holdem.MessageId.StandbyRes: 4
  2499. ProtoBuf.holdem.MessageId.UserTokenReq: 4
  2500. ProtoBuf.holdem.MessageId.UserTokenRes: 4
  2501. ProtoBuf.holdem.MessageId.VoiceMsg: 4
  2502. ProtoBuf.holdem.MessageId.VoiceReq: 4
  2503. ProtoBuf.holdem.MessageId.VoiceRes: 4
  2504. ProtoBuf.holdem.PlayerActionMsg.decode: 4
  2505. ProtoBuf.holdem.PlayerState.NONE_STATE: 4
  2506. ProtoBuf.modelProto.MttTournament: 4
  2507. ProtoBuf.modelProto.SngTournament: 4
  2508. ProtoBuf.mttPro.Tips_Type.Game_Sync_Poker_Enter: 4
  2509. ProtoBuf.mttPro.Tips_Type.Game_Sync_Poker_Out: 4
  2510. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_BET_Pair: 3
  2511. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_BlackJack_No_Take: 3
  2512. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_Clear_Bet: 3
  2513. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_WantCard: 3
  2514. BJProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Dispathcard_End: 3
  2515. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_BlackJack_No_Take: 3
  2516. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Dispathcard_End: 3
  2517. ProtoBuf.commonProto.Broadcast_Message_End_Game.decode: 3
  2518. ProtoBuf.commonProto.Broadcast_Message_Events_RED_POCKET_NOTICE.decode: 3
  2519. ProtoBuf.commonProto.Broadcast_Message_Out_Game.decode: 3
  2520. ProtoBuf.commonProto.ErrorCode.Temporary_Disabled: 3
  2521. ProtoBuf.commonProto.ErrorCode.User_Account_Locked_For_Password: 3
  2522. ProtoBuf.commonProto.Game_Level_List: 3
  2523. ProtoBuf.commonProto.PLATFORM.BL: 3
  2524. ProtoBuf.commonProto.SocketMessageId.Broadcast_Message_Envelope: 3
  2525. ProtoBuf.commonProto.SocketMessageId.Game_Level_List: 3
  2526. ProtoBuf.commonProto.SocketMessageId.Secure_Token_Error_Response: 3
  2527. ProtoBuf.commonProto.SocketMessageId.User_Banner_Event_Msg: 3
  2528. ProtoBuf.commonProto.SocketMessageId.User_Info_Updated: 3
  2529. ProtoBuf.commonProto.SocketMessageId.User_Logout_Response: 3
  2530. ProtoBuf.commonProto.TOOL_TYPE.gift: 3
  2531. ProtoBuf.commonProto.UserRegisterRequest: 3
  2532. ProtoBuf.commonProto.UserRegisterResponse: 3
  2533. ProtoBuf.commonProto.UserResetPasswordRequest: 3
  2534. ProtoBuf.commonProto.UserResetPasswordResponse: 3
  2535. ProtoBuf.holdem.UserTokenReq.create: 3
  2536. ProtoBuf.miniGameProto.ErrorCode.Feature_Maintenance: 3
  2537. ProtoBuf.miniGameProto.SocketMessageId.TO01_LevelRes: 3
  2538. ProtoBuf.mttPro.EnterSngRoomLevelReq.create: 3
  2539. ProtoBuf.mttPro.Mtt_Status.Mtt_Status_will_rest: 3
  2540. ProtoBuf.mttPro.Rank_Type.Rank_Type_Final: 3
  2541. ProtoBuf.mttPro.Rank_Type.Rank_Type_Reward: 3
  2542. ProtoBuf.mttPro.RestTime_Type.RestTime_Type_WILL_REST: 3
  2543. ProtoBuf.mttPro.Sng_Status.Sng_Status_Pause: 3
  2544. BJProtoBuf.blackjackProto.MessageId.EmojiMsg: 2
  2545. BJProtoBuf.blackjackProto.MessageId.EmojiRes: 2
  2546. BJProtoBuf.blackjackProto.MessageId.EnterRoomRes: 2
  2547. BJProtoBuf.blackjackProto.MessageId.LeaveRoomRes: 2
  2548. BJProtoBuf.blackjackProto.MessageId.SeatEmptyMsg: 2
  2549. BJProtoBuf.blackjackProto.MessageId.SeatOccupiedMsg: 2
  2550. BJProtoBuf.blackjackProto.MessageId.SitDownRes: 2
  2551. BJProtoBuf.blackjackProto.MessageId.TO01_ActionRes: 2
  2552. BJProtoBuf.blackjackProto.MessageId.TO01_CardsMsg: 2
  2553. BJProtoBuf.blackjackProto.MessageId.TO01_ChangeRoomRes: 2
  2554. BJProtoBuf.blackjackProto.MessageId.TO01_EnterGameLevelRes: 2
  2555. BJProtoBuf.blackjackProto.MessageId.TO01_GameFinishedMsg: 2
  2556. BJProtoBuf.blackjackProto.MessageId.TO01_HandCardsMsg: 2
  2557. BJProtoBuf.blackjackProto.MessageId.TO01_LeaveMsg: 2
  2558. BJProtoBuf.blackjackProto.MessageId.TO01_MultBetRes: 2
  2559. BJProtoBuf.blackjackProto.MessageId.TO01_NeedActionMsg: 2
  2560. BJProtoBuf.blackjackProto.MessageId.TO01_OpenDealerSecondCardMsg: 2
  2561. BJProtoBuf.blackjackProto.MessageId.TO01_PairResultMsg: 2
  2562. BJProtoBuf.blackjackProto.MessageId.TO01_PlayerActionMsg: 2
  2563. BJProtoBuf.blackjackProto.MessageId.TO01_ResultMsg: 2
  2564. BJProtoBuf.blackjackProto.MessageId.TO01_RoomLastBetMsg: 2
  2565. BJProtoBuf.blackjackProto.MessageId.TO01_RoomOperateMsg: 2
  2566. BJProtoBuf.blackjackProto.MessageId.TO01_RoomSnapshotMsg: 2
  2567. BJProtoBuf.blackjackProto.MessageId.UserTO01GetVoiceForbidRes: 2
  2568. BJProtoBuf.blackjackProto.MessageId.UserTO01SetVoiceForbidRes: 2
  2569. BJProtoBuf.blackjackProto.MessageId.VoiceMsg: 2
  2570. BJProtoBuf.blackjackProto.MessageId.VoiceRes: 2
  2571. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_All_No_Safe: 2
  2572. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_ApplyDispatch: 2
  2573. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_GiveUp: 2
  2574. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_No_Safe: 2
  2575. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_StopCard: 2
  2576. BJProtoBuf.miniGameProto.SocketMessageId.GetUserAvatarsResponse: 2
  2577. BJProtoBuf.miniGameProto.SocketMessageId.MiniGameRankListResponse: 2
  2578. BJProtoBuf.miniGameProto.SocketMessageId.UserTO01GetRemarkInfoRes: 2
  2579. BJProtoBuf.miniGameProto.SocketMessageId.UserTO01PlayInfoRes: 2
  2580. BJProtoBuf.miniGameProto.SocketMessageId.UserTO01SetRemarkInfoRes: 2
  2581. BJProtoBuf.miniGameProto.SocketMessageId.UserUpdated: 2
  2582. ProtoBuf.blackjackProto.Code.NO_ROOM: 2
  2583. ProtoBuf.blackjackProto.MessageId.EmojiMsg: 2
  2584. ProtoBuf.blackjackProto.MessageId.EmojiRes: 2
  2585. ProtoBuf.blackjackProto.MessageId.EnterRoomRes: 2
  2586. ProtoBuf.blackjackProto.MessageId.LeaveRoomRes: 2
  2587. ProtoBuf.blackjackProto.MessageId.SeatEmptyMsg: 2
  2588. ProtoBuf.blackjackProto.MessageId.SeatOccupiedMsg: 2
  2589. ProtoBuf.blackjackProto.MessageId.SitDownRes: 2
  2590. ProtoBuf.blackjackProto.MessageId.TO01_ActionRes: 2
  2591. ProtoBuf.blackjackProto.MessageId.TO01_BuyTimeRes: 2
  2592. ProtoBuf.blackjackProto.MessageId.TO01_CardsMsg: 2
  2593. ProtoBuf.blackjackProto.MessageId.TO01_ChangeRoomRes: 2
  2594. ProtoBuf.blackjackProto.MessageId.TO01_EnterGameLevelRes: 2
  2595. ProtoBuf.blackjackProto.MessageId.TO01_GameFinishedMsg: 2
  2596. ProtoBuf.blackjackProto.MessageId.TO01_GameInfoRes: 2
  2597. ProtoBuf.blackjackProto.MessageId.TO01_HandCardsMsg: 2
  2598. ProtoBuf.blackjackProto.MessageId.TO01_LeaveMsg: 2
  2599. ProtoBuf.blackjackProto.MessageId.TO01_MaintainMsg: 2
  2600. ProtoBuf.blackjackProto.MessageId.TO01_MultBetRes: 2
  2601. ProtoBuf.blackjackProto.MessageId.TO01_NeedActionMsg: 2
  2602. ProtoBuf.blackjackProto.MessageId.TO01_OpenDealerSecondCardMsg: 2
  2603. ProtoBuf.blackjackProto.MessageId.TO01_PairResultMsg: 2
  2604. ProtoBuf.blackjackProto.MessageId.TO01_PlayerActionMsg: 2
  2605. ProtoBuf.blackjackProto.MessageId.TO01_ResultInfoRes: 2
  2606. ProtoBuf.blackjackProto.MessageId.TO01_ResultMsg: 2
  2607. ProtoBuf.blackjackProto.MessageId.TO01_RoomLastBetMsg: 2
  2608. ProtoBuf.blackjackProto.MessageId.TO01_RoomOperateMsg: 2
  2609. ProtoBuf.blackjackProto.MessageId.TO01_RoomSnapshotMsg: 2
  2610. ProtoBuf.blackjackProto.MessageId.TO01_SettleRes: 2
  2611. ProtoBuf.blackjackProto.MessageId.TO01_TakeCoinRes: 2
  2612. ProtoBuf.blackjackProto.MessageId.TO01_UserMatchMsg: 2
  2613. ProtoBuf.blackjackProto.MessageId.TO01_UserWaitingMsg: 2
  2614. ProtoBuf.blackjackProto.MessageId.UserCoinMsg: 2
  2615. ProtoBuf.blackjackProto.MessageId.UserTO01GetVoiceForbidRes: 2
  2616. ProtoBuf.blackjackProto.MessageId.UserTO01SetVoiceForbidRes: 2
  2617. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_ApplyDispatch: 2
  2618. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_BET_Pair: 2
  2619. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_Clear_Bet: 2
  2620. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_GiveUp: 2
  2621. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_No_Safe: 2
  2622. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_StopCard: 2
  2623. ProtoBuf.blackjackProto.TO01_RoomState.TO01_ROOM_STATE_Dispathcard: 2
  2624. ProtoBuf.commonProto.Association_Member_List_Response.decode: 2
  2625. ProtoBuf.commonProto.Broadcast_Message_Events_RED_POCKET_CAROUSEL.decode: 2
  2626. ProtoBuf.commonProto.Broadcast_Message_Events_Updated.decode: 2
  2627. ProtoBuf.commonProto.Broadcast_Message_Got_Tool.decode: 2
  2628. ProtoBuf.commonProto.Broadcast_Message_Link.decode: 2
  2629. ProtoBuf.commonProto.Broadcast_Message_Mtt_Status_Changed_Notice.decode: 2
  2630. ProtoBuf.commonProto.Broadcast_Message_Plain.decode: 2
  2631. ProtoBuf.commonProto.Broadcast_Message_Push_Carousel.decode: 2
  2632. ProtoBuf.commonProto.CelebrityRole.Celebrity: 2
  2633. ProtoBuf.commonProto.CelebrityRole.LiveBroadcast: 2
  2634. ProtoBuf.commonProto.Check_User_WorldCupGuess_Request.create: 2
  2635. ProtoBuf.commonProto.Check_User_WorldCupGuess_Request.encode: 2
  2636. ProtoBuf.commonProto.Choice_WorldCupGuess_Team_Request.create: 2
  2637. ProtoBuf.commonProto.Choice_WorldCupGuess_Team_Request.encode: 2
  2638. ProtoBuf.commonProto.ErrorCode.GOLD_INSUFFICENT: 2
  2639. ProtoBuf.commonProto.ErrorCode.Mini_Game_User_Not_Taken_Out: 2
  2640. ProtoBuf.commonProto.ErrorCode.Not_Found: 2
  2641. ProtoBuf.commonProto.GAME_ROOM_STATE.PLAYING: 2
  2642. ProtoBuf.commonProto.GAME_ROOM_STATE.READY: 2
  2643. ProtoBuf.commonProto.Game_Result_Rounds_Response.decode: 2
  2644. ProtoBuf.commonProto.MTT_MODE.Hyper: 2
  2645. ProtoBuf.commonProto.MTT_MODE.Normal: 2
  2646. ProtoBuf.commonProto.MTT_MODE.Turbo: 2
  2647. ProtoBuf.commonProto.MttPlayerCancelSignUpRequest: 2
  2648. ProtoBuf.commonProto.MttPlayerCancelSignUpResponse: 2
  2649. ProtoBuf.commonProto.MttPlayerSignupRequest: 2
  2650. ProtoBuf.commonProto.MttPlayerSignupResponse: 2
  2651. ProtoBuf.commonProto.MttReenterRequest: 2
  2652. ProtoBuf.commonProto.MttReenterResponse: 2
  2653. ProtoBuf.commonProto.MttTournamentDetailRequest: 2
  2654. ProtoBuf.commonProto.MttTournamentDetailResponse: 2
  2655. ProtoBuf.commonProto.MttTournamentPlayersResponse: 2
  2656. ProtoBuf.commonProto.MttTournamentStatusRequest: 2
  2657. ProtoBuf.commonProto.MttTournamentStatusResponse: 2
  2658. ProtoBuf.commonProto.Mtt_Tournament_List_Request.create: 2
  2659. ProtoBuf.commonProto.Mtt_Tournament_List_Request.encode: 2
  2660. ProtoBuf.commonProto.PLATFORM.WPK: 2
  2661. ProtoBuf.commonProto.SNG_GAME_STATUS.SNG_NOT_STARTED: 2
  2662. ProtoBuf.commonProto.SNG_GAME_STATUS.SNG_STARTED: 2
  2663. ProtoBuf.commonProto.SocketMessageId.BLMiniGameEnterRes: 2
  2664. ProtoBuf.commonProto.SocketMessageId.BLMiniGameExitRes: 2
  2665. ProtoBuf.commonProto.SocketMessageId.Transfer_Coffer_Log_Response: 2
  2666. ProtoBuf.commonProto.SocketMessageId.Transfer_To_Coffer_Response: 2
  2667. ProtoBuf.commonProto.SocketMessageId.User_Gift_Response: 2
  2668. ProtoBuf.commonProto.SocketMessageId.User_Withdraw_Password_Verification_Response: 2
  2669. ProtoBuf.commonProto.TOOL_TYPE.redPocket: 2
  2670. ProtoBuf.commonProto.TOURNAMENT_MODE: 2
  2671. ProtoBuf.commonProto.Tool_Info_Response: 2
  2672. ProtoBuf.commonProto.Tool_WPT_Hotel_Request.create: 2
  2673. ProtoBuf.commonProto.Tool_WPT_Hotel_Request.encode: 2
  2674. ProtoBuf.commonProto.Tool_WPT_Register_Request.create: 2
  2675. ProtoBuf.commonProto.Tool_WPT_Register_Request.encode: 2
  2676. ProtoBuf.commonProto.UpdateUserNoteRequest.create: 2
  2677. ProtoBuf.commonProto.UpdateUserNoteRequest.encode: 2
  2678. ProtoBuf.commonProto.UserJoinWorldCupGuessState.Not_Joined: 2
  2679. ProtoBuf.commonProto.UserNoteRequest.create: 2
  2680. ProtoBuf.commonProto.UserNoteRequest.encode: 2
  2681. ProtoBuf.holdem.Code.LESS_COIN: 2
  2682. ProtoBuf.holdem.Code.NEAR_GPS: 2
  2683. ProtoBuf.holdem.Code.SAME_IP: 2
  2684. ProtoBuf.holdem.LeaveRoomReq.create: 2
  2685. ProtoBuf.holdem.RoomSnapshotMsg: 2
  2686. ProtoBuf.holdem.ShowdownMsg.decode: 2
  2687. ProtoBuf.holdem.SitDownReq.create: 2
  2688. ProtoBuf.holdem.VoiceReq.create: 2
  2689. ProtoBuf.miniGameProto: 2
  2690. ProtoBuf.miniGameProto.SocketMessageId.BroadcastChatroomFeatureEnabled: 2
  2691. ProtoBuf.miniGameProto.SocketMessageId.BroadcastChatroomHistoryUpdated: 2
  2692. ProtoBuf.miniGameProto.SocketMessageId.GetChatroomHistoryResponse: 2
  2693. ProtoBuf.miniGameProto.SocketMessageId.GetUserAvatarsResponse: 2
  2694. ProtoBuf.miniGameProto.SocketMessageId.MiniGameRankListResponse: 2
  2695. ProtoBuf.miniGameProto.SocketMessageId.SystemStatusCheck: 2
  2696. ProtoBuf.miniGameProto.SocketMessageId.TokenLoginResponse: 2
  2697. ProtoBuf.miniGameProto.SocketMessageId.UserAccessBroadcastChatroomResponse: 2
  2698. ProtoBuf.miniGameProto.SocketMessageId.UserChatroomBlockStatusUpdated: 2
  2699. ProtoBuf.miniGameProto.SocketMessageId.UserLeaveBroadcastChatroomResponse: 2
  2700. ProtoBuf.miniGameProto.SocketMessageId.UserSendCommentResponse: 2
  2701. ProtoBuf.miniGameProto.SocketMessageId.UserTO01PlayInfoRes: 2
  2702. ProtoBuf.miniGameProto.SocketMessageId.UserUpdated: 2
  2703. ProtoBuf.miniGameProto.TokenLoginRequest.create: 2
  2704. ProtoBuf.miniGameProto.USER_UPDATE_TYPE.GOLD_UPDATED: 2
  2705. ProtoBuf.miniGameProto.UserTO01PlayInfoReq.create: 2
  2706. ProtoBuf.mttPro.Code.Sng_Room_Exit_Fail: 2
  2707. ProtoBuf.mttPro.Code.Sng_User_Match_Success: 2
  2708. ProtoBuf.mttPro.MessageId: 2
  2709. ProtoBuf.mttPro.MttRealTimeRecordRes: 2
  2710. ProtoBuf.mttPro.Rank_Type.Rank_Type_No_Reward: 2
  2711. ProtoBuf.mttPro.RestTime_Type: 2
  2712. ProtoBuf.mttPro.SngRealTimeRecordRes: 2
  2713. ProtoBuf.mttPro.Sng_Status.Sng_Status_Playing: 2
  2714. ProtoBuf.pineapple: 2
  2715. ProtoBuf.pineapple.MessageId: 2
  2716. ProtoBuf.pineapple.VoiceReq.create: 2
  2717. BJProtoBuf.blackjackProto: 1
  2718. BJProtoBuf.blackjackProto.EmojiReq.create: 1
  2719. BJProtoBuf.blackjackProto.EnterRoomReq.create: 1
  2720. BJProtoBuf.blackjackProto.LeaveRoomReq.create: 1
  2721. BJProtoBuf.blackjackProto.MessageId.UserTokenRes: 1
  2722. BJProtoBuf.blackjackProto.SitDownReq.create: 1
  2723. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_All_Safe: 1
  2724. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_Dispatch: 1
  2725. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_Dissolve_Level: 1
  2726. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_TO01_Action_Repeat_And_Double_Last_Bet: 1
  2727. BJProtoBuf.blackjackProto.TO01_Action.TO01_Action_TO01_Action_Repeat_Last_Bet: 1
  2728. BJProtoBuf.blackjackProto.TO01_ActionReq.create: 1
  2729. BJProtoBuf.blackjackProto.TO01_ChangeRoomReq.create: 1
  2730. BJProtoBuf.blackjackProto.TO01_EnterGameLevelReq.create: 1
  2731. BJProtoBuf.blackjackProto.TO01_MultBetReq.create: 1
  2732. BJProtoBuf.blackjackProto.TO01_NeedActionMsg.create: 1
  2733. BJProtoBuf.blackjackProto.TO01_SetCardReq.create: 1
  2734. BJProtoBuf.blackjackProto.UserTO01GetVoiceForbidReq.create: 1
  2735. BJProtoBuf.blackjackProto.UserTO01SetVoiceForbidReq.create: 1
  2736. BJProtoBuf.blackjackProto.UserTokenReq.create: 1
  2737. BJProtoBuf.blackjackProto.VoiceReq.create: 1
  2738. BJProtoBuf.miniGameProto: 1
  2739. BJProtoBuf.miniGameProto.GetUserAvatarsRequest.create: 1
  2740. BJProtoBuf.miniGameProto.MiniGameRankListRequest.create: 1
  2741. BJProtoBuf.miniGameProto.SocketMessageId.TokenLoginResponse: 1
  2742. BJProtoBuf.miniGameProto.TokenLoginRequest.create: 1
  2743. BJProtoBuf.miniGameProto.USER_UPDATE_TYPE.GOLD_UPDATED: 1
  2744. BJProtoBuf.miniGameProto.UserTO01GetRemarkInfoReq.create: 1
  2745. BJProtoBuf.miniGameProto.UserTO01PlayInfoReq.create: 1
  2746. BJProtoBuf.miniGameProto.UserTO01SetRemarkInfoReq.create: 1
  2747. ProtoBuf.blackjackProto: 1
  2748. ProtoBuf.blackjackProto.Code.INVALID_TOKEN: 1
  2749. ProtoBuf.blackjackProto.EmojiReq.create: 1
  2750. ProtoBuf.blackjackProto.EnterRoomReq.create: 1
  2751. ProtoBuf.blackjackProto.LeaveRoomReq.create: 1
  2752. ProtoBuf.blackjackProto.MessageId.TO01_UserPlayInfoRes: 1
  2753. ProtoBuf.blackjackProto.MessageId.UserNeedRecharge: 1
  2754. ProtoBuf.blackjackProto.MessageId.UserTokenRes: 1
  2755. ProtoBuf.blackjackProto.SitDownReq.create: 1
  2756. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_All_No_Safe: 1
  2757. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_All_Safe: 1
  2758. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_Dispatch: 1
  2759. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_TO01_Action_Repeat_And_Double_Last_Bet: 1
  2760. ProtoBuf.blackjackProto.TO01_Action.TO01_Action_TO01_Action_Repeat_Last_Bet: 1
  2761. ProtoBuf.blackjackProto.TO01_ActionReq.create: 1
  2762. ProtoBuf.blackjackProto.TO01_BuyTimeReq.create: 1
  2763. ProtoBuf.blackjackProto.TO01_ChangeRoomReq.create: 1
  2764. ProtoBuf.blackjackProto.TO01_EnterGameLevelReq.create: 1
  2765. ProtoBuf.blackjackProto.TO01_GameInfoReq.create: 1
  2766. ProtoBuf.blackjackProto.TO01_MultBetReq.create: 1
  2767. ProtoBuf.blackjackProto.TO01_NeedActionMsg.create: 1
  2768. ProtoBuf.blackjackProto.TO01_ResultInfoReq.create: 1
  2769. ProtoBuf.blackjackProto.TO01_SettleReq.create: 1
  2770. ProtoBuf.blackjackProto.TO01_TakeCoinReq.create: 1
  2771. ProtoBuf.blackjackProto.TO01_WinFlag.TO01_WinFlag_Win: 1
  2772. ProtoBuf.blackjackProto.UserTokenReq.create: 1
  2773. ProtoBuf.commonProto.Add_User_Favourite_Round_Request.encode: 1
  2774. ProtoBuf.commonProto.Add_User_Favourite_Round_Response.decode: 1
  2775. ProtoBuf.commonProto.Association_Detail_Request.encode: 1
  2776. ProtoBuf.commonProto.Association_Detail_Response.decode: 1
  2777. ProtoBuf.commonProto.Association_Downline_List_Request.encode: 1
  2778. ProtoBuf.commonProto.Association_Downline_List_Response.decode: 1
  2779. ProtoBuf.commonProto.Association_Member_Detail_Request.encode: 1
  2780. ProtoBuf.commonProto.Association_Member_Detail_Response.decode: 1
  2781. ProtoBuf.commonProto.Association_Member_Game_Detail_Request.encode: 1
  2782. ProtoBuf.commonProto.Association_Member_Game_Detail_Response.decode: 1
  2783. ProtoBuf.commonProto.Association_Member_List_Request.encode: 1
  2784. ProtoBuf.commonProto.Association_Member_Short_List_Request.encode: 1
  2785. ProtoBuf.commonProto.Association_Statistic_Request.encode: 1
  2786. ProtoBuf.commonProto.Association_Statistic_Response.decode: 1
  2787. ProtoBuf.commonProto.Association_Withdraw_Records_Request.encode: 1
  2788. ProtoBuf.commonProto.Association_Withdraw_Records_Response.decode: 1
  2789. ProtoBuf.commonProto.BLMiniGameReceiveActivityRewardRequest: 1
  2790. ProtoBuf.commonProto.BLMiniGameTakeInStatusRequest: 1
  2791. ProtoBuf.commonProto.Broadcast_Message_Got_Tool_Type.FROM_BACKEND: 1
  2792. ProtoBuf.commonProto.Broadcast_Message_Push_Carousel: 1
  2793. ProtoBuf.commonProto.Check_User_WorldCupGuess_Response.decode: 1
  2794. ProtoBuf.commonProto.Choice_WorldCupGuess_Team_Response.decode: 1
  2795. ProtoBuf.commonProto.ErrorCode.Connection_Invalid: 1
  2796. ProtoBuf.commonProto.ErrorCode.Impoker_User_Need_To_Choose_User: 1
  2797. ProtoBuf.commonProto.ErrorCode.Mini_Game_Bet_Amount_Fewer_Than_Tool_Value: 1
  2798. ProtoBuf.commonProto.ErrorCode.Mtt_Block_Robot: 1
  2799. ProtoBuf.commonProto.ErrorCode.Mtt_Player_Already_SignUp: 1
  2800. ProtoBuf.commonProto.ErrorCode.Mtt_Tournament_Started: 1
  2801. ProtoBuf.commonProto.ErrorCode.Secure_Token_Invalid: 1
  2802. ProtoBuf.commonProto.ErrorCode.User_Mobile_Sms_In_Valid: 1
  2803. ProtoBuf.commonProto.ErrorCode.User_Not_Exist: 1
  2804. ProtoBuf.commonProto.ErrorCode.WorldCupGuess_Ended: 1
  2805. ProtoBuf.commonProto.GAME_CATEGORY.BLACK_JACK: 1
  2806. ProtoBuf.commonProto.GAME_CATEGORY.GUESS_CARD: 1
  2807. ProtoBuf.commonProto.GAME_ROOM_STATE.END: 1
  2808. ProtoBuf.commonProto.GameResultId_Request.encode: 1
  2809. ProtoBuf.commonProto.GameResultId_Response.decode: 1
  2810. ProtoBuf.commonProto.Game_Level_List.encode: 1
  2811. ProtoBuf.commonProto.Game_Result_Detail_List_Request.encode: 1
  2812. ProtoBuf.commonProto.Game_Result_Detail_List_Response.decode: 1
  2813. ProtoBuf.commonProto.Game_Result_Detail_Request.encode: 1
  2814. ProtoBuf.commonProto.Game_Result_Detail_Response.decode: 1
  2815. ProtoBuf.commonProto.Game_Result_Rounds_By_MttId_UserId_Request.encode: 1
  2816. ProtoBuf.commonProto.Game_Result_Rounds_Request.encode: 1
  2817. ProtoBuf.commonProto.Game_Results_Request.encode: 1
  2818. ProtoBuf.commonProto.Game_Results_Response.decode: 1
  2819. ProtoBuf.commonProto.Holdem_Rounds.decode: 1
  2820. ProtoBuf.commonProto.List_User_Favourite_Rounds_Request.encode: 1
  2821. ProtoBuf.commonProto.List_User_Favourite_Rounds_Response.decode: 1
  2822. ProtoBuf.commonProto.MTT_GAME_MODE: 1
  2823. ProtoBuf.commonProto.MTT_MODE: 1
  2824. ProtoBuf.commonProto.Mtt_Broadcast_List_Response.decode: 1
  2825. ProtoBuf.commonProto.Mtt_Player_Count_Response.decode: 1
  2826. ProtoBuf.commonProto.Mtt_Tournament_List_Response.decode: 1
  2827. ProtoBuf.commonProto.Remove_User_Favourite_Round_Request.encode: 1
  2828. ProtoBuf.commonProto.Remove_User_Favourite_Round_Response.decode: 1
  2829. ProtoBuf.commonProto.Secure_Token_Check.create: 1
  2830. ProtoBuf.commonProto.SocketMessageId: 1
  2831. ProtoBuf.commonProto.SocketMessageId.Association_Apply_Request: 1
  2832. ProtoBuf.commonProto.SocketMessageId.Association_Apply_Response: 1
  2833. ProtoBuf.commonProto.SocketMessageId.Association_Withdraw_Request: 1
  2834. ProtoBuf.commonProto.SocketMessageId.Association_Withdraw_Response: 1
  2835. ProtoBuf.commonProto.SocketMessageId.BLMiniGameActivityRewardsRequest: 1
  2836. ProtoBuf.commonProto.SocketMessageId.BLMiniGameActivityRewardsResponse: 1
  2837. ProtoBuf.commonProto.SocketMessageId.BLMiniGameEnterReq: 1
  2838. ProtoBuf.commonProto.SocketMessageId.BLMiniGameExitReq: 1
  2839. ProtoBuf.commonProto.SocketMessageId.BLMiniGameReceiveActivityRewardRequest: 1
  2840. ProtoBuf.commonProto.SocketMessageId.BLMiniGameReceiveActivityRewardResponse: 1
  2841. ProtoBuf.commonProto.SocketMessageId.BLMiniGameTakeInStatusRequest: 1
  2842. ProtoBuf.commonProto.SocketMessageId.BLMiniGameTakeInStatusResponse: 1
  2843. ProtoBuf.commonProto.SocketMessageId.BLMiniGamesNotTakenOutRequest: 1
  2844. ProtoBuf.commonProto.SocketMessageId.BLMiniGamesNotTakenOutResponse: 1
  2845. ProtoBuf.commonProto.SocketMessageId.Game_Levels_Request: 1
  2846. ProtoBuf.commonProto.SocketMessageId.Game_State_Request: 1
  2847. ProtoBuf.commonProto.SocketMessageId.Game_State_Response: 1
  2848. ProtoBuf.commonProto.SocketMessageId.Joined_Games_Request: 1
  2849. ProtoBuf.commonProto.SocketMessageId.Joined_Games_Response: 1
  2850. ProtoBuf.commonProto.SocketMessageId.Legacy_Impoker_Login_Request: 1
  2851. ProtoBuf.commonProto.SocketMessageId.Legacy_Impoker_Login_Response: 1
  2852. ProtoBuf.commonProto.SocketMessageId.List_User_Gifts_Request: 1
  2853. ProtoBuf.commonProto.SocketMessageId.Nickname_Check_Request: 1
  2854. ProtoBuf.commonProto.SocketMessageId.Nickname_Check_Response: 1
  2855. ProtoBuf.commonProto.SocketMessageId.Tool_In_Backpack_Gift_Request: 1
  2856. ProtoBuf.commonProto.SocketMessageId.Tool_In_Backpack_Gift_Response: 1
  2857. ProtoBuf.commonProto.SocketMessageId.Tool_In_Backpack_Redeem_Request: 1
  2858. ProtoBuf.commonProto.SocketMessageId.Tool_In_Backpack_Redeem_Response: 1
  2859. ProtoBuf.commonProto.SocketMessageId.Tool_Info_Request: 1
  2860. ProtoBuf.commonProto.SocketMessageId.Tool_Info_Response: 1
  2861. ProtoBuf.commonProto.SocketMessageId.Transfer_From_Impoker_Request: 1
  2862. ProtoBuf.commonProto.SocketMessageId.Transfer_From_Impoker_Response: 1
  2863. ProtoBuf.commonProto.SocketMessageId.Transfer_To_Coffer_Request: 1
  2864. ProtoBuf.commonProto.SocketMessageId.User_Gift_Request: 1
  2865. ProtoBuf.commonProto.SocketMessageId.User_Info_Request: 1
  2866. ProtoBuf.commonProto.SocketMessageId.User_Nickname_Update_Request: 1
  2867. ProtoBuf.commonProto.SocketMessageId.User_Nickname_Update_Response: 1
  2868. ProtoBuf.commonProto.SocketMessageId.User_Search_Request: 1
  2869. ProtoBuf.commonProto.SocketMessageId.User_Search_Response: 1
  2870. ProtoBuf.commonProto.SocketMessageId.User_Tool_In_Backpacks_Request: 1
  2871. ProtoBuf.commonProto.SocketMessageId.User_Tool_In_Backpacks_Response: 1
  2872. ProtoBuf.commonProto.SocketMessageId.User_Update_Request: 1
  2873. ProtoBuf.commonProto.SocketMessageId.User_Update_Response: 1
  2874. ProtoBuf.commonProto.SocketMessageId.User_Withdraw_Password_Forget_Request: 1
  2875. ProtoBuf.commonProto.SocketMessageId.User_Withdraw_Password_Forget_Response: 1
  2876. ProtoBuf.commonProto.SocketMessageId.User_Withdraw_Password_Reset_Request: 1
  2877. ProtoBuf.commonProto.SocketMessageId.User_Withdraw_Password_Reset_Response: 1
  2878. ProtoBuf.commonProto.Tool_In_Backpack_Gift_Request.encode: 1
  2879. ProtoBuf.commonProto.Tool_In_Backpack_Gift_Response.decode: 1
  2880. ProtoBuf.commonProto.Tool_Info_Request.encode: 1
  2881. ProtoBuf.commonProto.Tool_Info_Response.decode: 1
  2882. ProtoBuf.commonProto.Tool_WPT_Hotel_Response.decode: 1
  2883. ProtoBuf.commonProto.Tool_WPT_Register_Response.decode: 1
  2884. ProtoBuf.commonProto.UpdateUserNoteResponse.decode: 1
  2885. ProtoBuf.commonProto.UserBroadcastMessagesRequest: 1
  2886. ProtoBuf.commonProto.UserBroadcastMessagesRequest.encode: 1
  2887. ProtoBuf.commonProto.UserBroadcastMessagesResponse.decode: 1
  2888. ProtoBuf.commonProto.UserNoteResponse.decode: 1
  2889. ProtoBuf.commonProto.UserRegisterRequest.create: 1
  2890. ProtoBuf.commonProto.UserRegisterResponse.decode: 1
  2891. ProtoBuf.commonProto.UserUpdateBroadcastMsgRequest.encode: 1
  2892. ProtoBuf.commonProto.UserUpdateBroadcastMsgResponse.decode: 1
  2893. ProtoBuf.commonProto.User_Login_Request.create: 1
  2894. ProtoBuf.commonProto.User_Login_Response.encode: 1
  2895. ProtoBuf.commonProto.User_Mtt_Join_Info: 1
  2896. ProtoBuf.commonProto.User_Tool_In_Backpacks_Request: 1
  2897. ProtoBuf.commonProto.User_Tool_In_Backpacks_Request.encode: 1
  2898. ProtoBuf.commonProto.User_Tool_In_Backpacks_Response.decode: 1
  2899. ProtoBuf.holdem.Action.CALL: 1
  2900. ProtoBuf.holdem.Action.CHECK: 1
  2901. ProtoBuf.holdem.ActionReq.create: 1
  2902. ProtoBuf.holdem.ActionReq.decode: 1
  2903. ProtoBuf.holdem.ActionRes.decode: 1
  2904. ProtoBuf.holdem.AnimMsg.decode: 1
  2905. ProtoBuf.holdem.AnimReq.create: 1
  2906. ProtoBuf.holdem.AnimReq.decode: 1
  2907. ProtoBuf.holdem.AnimRes.decode: 1
  2908. ProtoBuf.holdem.AutoPlayMsg.decode: 1
  2909. ProtoBuf.holdem.CancelAutoPlayReq.create: 1
  2910. ProtoBuf.holdem.CancelAutoPlayReq.decode: 1
  2911. ProtoBuf.holdem.CancelAutoPlayRes.decode: 1
  2912. ProtoBuf.holdem.CelebrityBroadcastReq.create: 1
  2913. ProtoBuf.holdem.Code.FinalVoice: 1
  2914. ProtoBuf.holdem.Code.OTHER_ROOM: 1
  2915. ProtoBuf.holdem.DealerPosMsg.decode: 1
  2916. ProtoBuf.holdem.Emoji.create: 1
  2917. ProtoBuf.holdem.Emoji.decode: 1
  2918. ProtoBuf.holdem.EnterRoomReq.create: 1
  2919. ProtoBuf.holdem.EnterRoomReq.decode: 1
  2920. ProtoBuf.holdem.EnterRoomRes: 1
  2921. ProtoBuf.holdem.EnterRoomRes.decode: 1
  2922. ProtoBuf.holdem.HideHoleCardReq.create: 1
  2923. ProtoBuf.holdem.HideHoleCardReq.decode: 1
  2924. ProtoBuf.holdem.HideHoleCardRes.decode: 1
  2925. ProtoBuf.holdem.HoleCardListMsg: 1
  2926. ProtoBuf.holdem.HoleCardListMsg.decode: 1
  2927. ProtoBuf.holdem.LeaveRoomReq.decode: 1
  2928. ProtoBuf.holdem.LeaveRoomRes.decode: 1
  2929. ProtoBuf.holdem.MessageId: 1
  2930. ProtoBuf.holdem.NeedActionMsg: 1
  2931. ProtoBuf.holdem.NeedActionMsg.decode: 1
  2932. ProtoBuf.holdem.NeedMoreCoinMsg.decode: 1
  2933. ProtoBuf.holdem.OtherRoomMsg.decode: 1
  2934. ProtoBuf.holdem.PauseGameReq.create: 1
  2935. ProtoBuf.holdem.PauseGameReq.decode: 1
  2936. ProtoBuf.holdem.PauseGameRes.decode: 1
  2937. ProtoBuf.holdem.PlayerLeaveMsg.decode: 1
  2938. ProtoBuf.holdem.PlayerNickNameChangeMsg.decode: 1
  2939. ProtoBuf.holdem.PlayerState.WAITING: 1
  2940. ProtoBuf.holdem.PlayerStateMsg: 1
  2941. ProtoBuf.holdem.PlayerStateMsg.decode: 1
  2942. ProtoBuf.holdem.PotsMsg.decode: 1
  2943. ProtoBuf.holdem.ResumeGameReq.decode: 1
  2944. ProtoBuf.holdem.ResumeGameRes.decode: 1
  2945. ProtoBuf.holdem.RoomBillReq.create: 1
  2946. ProtoBuf.holdem.RoomBillReq.decode: 1
  2947. ProtoBuf.holdem.RoomConfReq.decode: 1
  2948. ProtoBuf.holdem.RoomConfRes.decode: 1
  2949. ProtoBuf.holdem.RoomFlags.ROOM_FLAG_CHECK_GPS: 1
  2950. ProtoBuf.holdem.RoomFlags.ROOM_FLAG_CHECK_IP: 1
  2951. ProtoBuf.holdem.RoomSnapshotMsg.decode: 1
  2952. ProtoBuf.holdem.RoomSnapshotReq.create: 1
  2953. ProtoBuf.holdem.RoomSnapshotReq.decode: 1
  2954. ProtoBuf.holdem.SeatEmptyMsg: 1
  2955. ProtoBuf.holdem.SeatEmptyMsg.decode: 1
  2956. ProtoBuf.holdem.SeatOccupiedMsg: 1
  2957. ProtoBuf.holdem.SeatOccupiedMsg.decode: 1
  2958. ProtoBuf.holdem.ShowCardReq.create: 1
  2959. ProtoBuf.holdem.SitDownReq.decode: 1
  2960. ProtoBuf.holdem.SitDownRes.decode: 1
  2961. ProtoBuf.holdem.StandbyReq.create: 1
  2962. ProtoBuf.holdem.StandbyReq.decode: 1
  2963. ProtoBuf.holdem.StandbyRes.decode: 1
  2964. ProtoBuf.holdem.UserTokenRes.decode: 1
  2965. ProtoBuf.holdem.VoiceMsg.decode: 1
  2966. ProtoBuf.holdem.VoiceReq.decode: 1
  2967. ProtoBuf.holdem.VoiceRes.decode: 1
  2968. ProtoBuf.miniGameProto.GetChatroomHistoryRequest.create: 1
  2969. ProtoBuf.miniGameProto.GetUserAvatarsRequest.create: 1
  2970. ProtoBuf.miniGameProto.MiniGameRankListRequest.create: 1
  2971. ProtoBuf.miniGameProto.TO01_LevelReq.create: 1
  2972. ProtoBuf.miniGameProto.UserAccessBroadcastChatroomRequest.create: 1
  2973. ProtoBuf.miniGameProto.UserLeaveBroadcastChatroomRequest.create: 1
  2974. ProtoBuf.miniGameProto.UserSendCommentRequest.create: 1
  2975. ProtoBuf.modelProto.User: 1
  2976. ProtoBuf.mttPro.BuyTimeReq.create: 1
  2977. ProtoBuf.mttPro.Code.MTT_Prepare: 1
  2978. ProtoBuf.mttPro.Code.Mtt_End: 1
  2979. ProtoBuf.mttPro.Code.Mtt_Room_End: 1
  2980. ProtoBuf.mttPro.Code.NOT_ALLOW_ENTER: 1
  2981. ProtoBuf.mttPro.Code.NO_MTT_ROOM: 1
  2982. ProtoBuf.mttPro.Code.Sng_Buy_Part_Fail: 1
  2983. ProtoBuf.mttPro.EnterSngRoomLevelReq.encode: 1
  2984. ProtoBuf.mttPro.EnterSngRoomLevelRes.decode: 1
  2985. ProtoBuf.mttPro.ExitSngRoomLevelReq.create: 1
  2986. ProtoBuf.mttPro.GuessHandlePorkReq.create: 1
  2987. ProtoBuf.mttPro.MessageId.MttEnterGameReq: 1
  2988. ProtoBuf.mttPro.MessageId.MttPineAppleStadiumReq: 1
  2989. ProtoBuf.mttPro.MessageId.MttRealTimeRecordReq: 1
  2990. ProtoBuf.mttPro.MessageId.MttRoomSnapshotReq: 1
  2991. ProtoBuf.mttPro.MessageId.MttUserInfoReq: 1
  2992. ProtoBuf.mttPro.MessageId.ReJoinReq: 1
  2993. ProtoBuf.mttPro.MttEnterGameReq.create: 1
  2994. ProtoBuf.mttPro.MttRealTimeRecordReq.create: 1
  2995. ProtoBuf.mttPro.MttRoomSnapshotReq.create: 1
  2996. ProtoBuf.mttPro.MttUserGameSumInfoReq.create: 1
  2997. ProtoBuf.mttPro.MttUserInfoReq.create: 1
  2998. ProtoBuf.mttPro.Rank_Type.Rank_Type_Not_Determined: 1
  2999. ProtoBuf.mttPro.RewardMsg.create: 1
  3000. ProtoBuf.mttPro.SngRealTimeRecordReq.create: 1
  3001. ProtoBuf.mttPro.SngReliveReq.create: 1
  3002. ProtoBuf.mttPro.SngRewardInfoReq.create: 1
  3003. ProtoBuf.mttPro.SngRoomLevelInfoRes.decode: 1
  3004. ProtoBuf.mttPro.SngRoomSnapShotReq.create: 1
  3005. ProtoBuf.mttPro.Sng_Relive_Type.Sng_Relive_Type_Cancel: 1
  3006. ProtoBuf.mttPro.Sng_Relive_Type.Sng_Relive_Type_Rejoin: 1
  3007. ProtoBuf.mttPro.Sng_Status: 1
  3008. ProtoBuf.mttPro.Sng_Status.Sng_Status_Not_Start: 1
  3009. ProtoBuf.mttPro.Sng_Status.Sng_Status_Release: 1
  3010. ProtoBuf.mttPro.TimeBankFlagSetReq.create: 1
  3011. ProtoBuf.mttPro.Tips_Type: 1
  3012. ProtoBuf.mttPro.Tips_Type.Game_ReStrart: 1
  3013. ProtoBuf.pineapple.MessageId.AnimReq: 1
  3014. ProtoBuf.pineapple.MessageId.CancelAutoPlayReq: 1
  3015. ProtoBuf.pineapple.MessageId.CancelTakeInReq: 1
  3016. ProtoBuf.pineapple.MessageId.Emoji: 1
  3017. ProtoBuf.pineapple.MessageId.EnterLevelReq: 1
  3018. ProtoBuf.pineapple.MessageId.EnterRoomReq: 1
  3019. ProtoBuf.pineapple.MessageId.JackpotInfoReq: 1
  3020. ProtoBuf.pineapple.MessageId.PlaceCardsReq: 1
  3021. ProtoBuf.pineapple.MessageId.PlayerLeaveRoomReq: 1
  3022. ProtoBuf.pineapple.MessageId.PlayerLeaveSeatReq: 1
  3023. ProtoBuf.pineapple.MessageId.ReadyReq: 1
  3024. ProtoBuf.pineapple.MessageId.RoomBillReq: 1
  3025. ProtoBuf.pineapple.MessageId.RoomConfReq: 1
  3026. ProtoBuf.pineapple.MessageId.RoomSnapshotReq: 1
  3027. ProtoBuf.pineapple.MessageId.SettleNextReq: 1
  3028. ProtoBuf.pineapple.MessageId.UserTokenReq: 1
  3029. ProtoBuf.pineapple.RoomMode.ROOM_MODE_BLOODINOUT: 1
  3030. ProtoBuf.pineapple.RoomMode.ROOM_MODE_BLOODWAR: 1
  3031. ProtoBuf.pineapple.RoomMode.ROOM_MODE_JOKERS: 1
  3032. ProtoBuf.pineapple.RoomMode.ROOM_MODE_NORMAL: 1
  3033. e.MSGID = function() {
  3034. var e = {}, t = Object.create(e);
  3035. t[e[0] = "MsgID_Min"] = 0;
  3036. t[e[10] = "MsgID_ConnClose_Notice"] = 10;
  3037. t[e[99] = "MsgID_DupLogin_Notice"] = 99;
  3038. t[e[1e4] = "MsgID_Logon_Request"] = 1e4;
  3039. t[e[10001] = "MsgID_Logon_Response"] = 10001;
  3040. t[e[30010] = "MsgID_CreateClub_Request"] = 30010;
  3041. t[e[30011] = "MsgID_CreateClub_Response"] = 30011;
  3042. t[e[30012] = "MsgID_ClubSnapshotList_Request"] = 30012;
  3043. t[e[30013] = "MsgID_ClubSnapshotList_Response"] = 30013;
  3044. t[e[30014] = "MsgID_ClubSnapshotList_Notice"] = 30014;
  3045. t[e[30015] = "MsgID_JoinClub_Request"] = 30015;
  3046. t[e[30016] = "MsgID_JoinClub_Notice_To_Member"] = 30016;
  3047. t[e[30017] = "MsgID_JoinClub_Notice"] = 30017;
  3048. t[e[30018] = "MsgID_JoinClub_Reply"] = 30018;
  3049. t[e[30019] = "MsgID_JoinClub_Response_To_Member"] = 30019;
  3050. t[e[30020] = "MsgID_JoinClub_Response_To_Admin"] = 30020;
  3051. t[e[30021] = "MsgID_LeaveClub_Request"] = 30021;
  3052. t[e[30022] = "MsgID_LeaveClub_Response"] = 30022;
  3053. t[e[30023] = "MsgID_ClubCurrentBoard_Request"] = 30023;
  3054. t[e[30024] = "MsgID_ClubCurrentBoard_Response"] = 30024;
  3055. t[e[30025] = "MsgID_ClubCurrentBoard_Notice"] = 30025;
  3056. t[e[30026] = "MsgID_ClubMemberSnapshotList_Request"] = 30026;
  3057. t[e[30027] = "MsgID_ClubMemberSnapshotList_Response"] = 30027;
  3058. t[e[30028] = "MsgID_ClubMemberSnapshotList_Notice"] = 30028;
  3059. t[e[30029] = "MsgID_ModifyClubMember_Request"] = 30029;
  3060. t[e[30030] = "MsgID_ModifyClubMember_Response"] = 30030;
  3061. t[e[30031] = "MsgID_ModifyClubMember_Notice"] = 30031;
  3062. t[e[30032] = "MsgID_ModifyClubInfo_Request"] = 30032;
  3063. t[e[30033] = "MsgID_ModifyClubInfo_Response"] = 30033;
  3064. t[e[30034] = "MsgID_BoardVisibleSwitch_Request"] = 30034;
  3065. t[e[30035] = "MsgID_BoardVisibleSwitch_Response"] = 30035;
  3066. t[e[30036] = "MsgID_GrantClubFund_Request"] = 30036;
  3067. t[e[30037] = "MsgID_GrantClubFund_Response"] = 30037;
  3068. t[e[30038] = "MsgID_SearchClubInfo_Request"] = 30038;
  3069. t[e[30039] = "MsgID_SearchClubInfo_Response"] = 30039;
  3070. t[e[30040] = "MsgID_SearchClubInfo_Notice"] = 30040;
  3071. t[e[30041] = "MsgID_ClubCreaterInfo_Request"] = 30041;
  3072. t[e[30042] = "MsgID_ClubCreaterInfo_Response"] = 30042;
  3073. t[e[30043] = "MsgID_ClubCreaterInfo_Notice"] = 30043;
  3074. t[e[30047] = "MsgID_SendMsg_Request"] = 30047;
  3075. t[e[30048] = "MsgID_SendMsg_Response"] = 30048;
  3076. t[e[30049] = "MsgID_SendMsg_Notice"] = 30049;
  3077. t[e[30050] = "MsgID_GetUserData_Request"] = 30050;
  3078. t[e[30051] = "MsgID_GetUserData_Response"] = 30051;
  3079. t[e[30052] = "MsgID_GetUserData_Notice"] = 30052;
  3080. t[e[30053] = "MsgID_HeartBeat_Request"] = 30053;
  3081. t[e[30054] = "MsgID_HeartBeat_Response"] = 30054;
  3082. t[e[30055] = "MsgID_GetJackpotData_Request"] = 30055;
  3083. t[e[30056] = "MsgID_GetJackpotData_Response"] = 30056;
  3084. t[e[30057] = "MsgID_GetJackpotData_Notice"] = 30057;
  3085. t[e[30058] = "MsgID_JackpotSetting_Request"] = 30058;
  3086. t[e[30059] = "MsgID_JackpotSetting_Response"] = 30059;
  3087. t[e[30060] = "MsgID_JackpotSetting_Notice"] = 30060;
  3088. t[e[30061] = "MsgID_SetJackpot_Request"] = 30061;
  3089. t[e[30062] = "MsgID_SetJackpot_Response"] = 30062;
  3090. t[e[30063] = "MsgID_SetJackpot_Notice"] = 30063;
  3091. t[e[30064] = "MsgID_RecoverJackpotSetting_Request"] = 30064;
  3092. t[e[30065] = "MsgID_RecoverJackpotSetting_Response"] = 30065;
  3093. t[e[30066] = "MsgID_JackpotAmout_Notice"] = 30066;
  3094. t[e[30067] = "MsgID_CurrentRoomJackpot_Request"] = 30067;
  3095. t[e[30068] = "MsgID_CurrentRoomJackpot_Response"] = 30068;
  3096. t[e[30069] = "MsgID_CurrentRoomJackpot_Notice"] = 30069;
  3097. t[e[30070] = "MsgID_JackpotAwardRecord_Request"] = 30070;
  3098. t[e[30071] = "MsgID_JackpotAwardRecord_Response"] = 30071;
  3099. t[e[30072] = "MsgID_JackpotAwardRecord_Notice"] = 30072;
  3100. t[e[30073] = "MsgID_JackpotInjectAmount_Request"] = 30073;
  3101. t[e[30074] = "MsgID_JackpotInjectAmount_Response"] = 30074;
  3102. t[e[30075] = "MsgID_JackpotInjectAmount_Notice"] = 30075;
  3103. t[e[30079] = "MsgID_JackPotAwardInfo_Notice"] = 30079;
  3104. t[e[30080] = "MsgID_CreateAlliance_Request"] = 30080;
  3105. t[e[30081] = "MsgID_CreateAlliance_Response"] = 30081;
  3106. t[e[30082] = "MsgID_LeaveAlliance_Request"] = 30082;
  3107. t[e[30083] = "MsgID_LeaveAlliance_Response"] = 30083;
  3108. t[e[30084] = "MsgID_SearchAlliance_Request"] = 30084;
  3109. t[e[30085] = "MsgID_SearchAlliance_Response"] = 30085;
  3110. t[e[30086] = "MsgID_SearchAlliance_Notice"] = 30086;
  3111. t[e[30087] = "MsgID_KickoffAllianceMember_Request"] = 30087;
  3112. t[e[30088] = "MsgID_KickoffAllianceMember_Response"] = 30088;
  3113. t[e[30089] = "MsgID_KickoffAllianceMember_Notice"] = 30089;
  3114. t[e[30090] = "MsgID_AllianceList_Request"] = 30090;
  3115. t[e[30091] = "MsgID_AllianceList_Response"] = 30091;
  3116. t[e[30092] = "MsgID_AllianceList_Notice"] = 30092;
  3117. t[e[30093] = "MsgID_JoinAlliance_Request"] = 30093;
  3118. t[e[30094] = "MsgID_JoinAlliance_Notice_To_Member"] = 30094;
  3119. t[e[30095] = "MsgID_JoinAlliance_Notice_To_Admin"] = 30095;
  3120. t[e[30096] = "MsgID_JoinAllianceReply_To_World"] = 30096;
  3121. t[e[30097] = "MsgID_JoinAlliance_Response_To_Member"] = 30097;
  3122. t[e[30098] = "MsgID_JoinAlliance_Response_To_Admin"] = 30098;
  3123. t[e[30099] = "MsgID_AddRemarks_Request"] = 30099;
  3124. t[e[30100] = "MsgID_AddRemarks_Response"] = 30100;
  3125. t[e[30101] = "MsgID_AddRemarks_Notice"] = 30101;
  3126. t[e[30102] = "MsgID_GetAllRemarks_Request"] = 30102;
  3127. t[e[30103] = "MsgID_GetAllRemarks_Response"] = 30103;
  3128. t[e[30104] = "MsgID_GetAllRemarks_Notice"] = 30104;
  3129. t[e[30105] = "MsgID_LeaveAlliance_Notice"] = 30105;
  3130. t[e[30106] = "MsgID_ClearAllianceMaxBuyinLimit_Request"] = 30106;
  3131. t[e[30107] = "MsgID_ClearAllianceMaxBuyinLimit_Response"] = 30107;
  3132. t[e[30108] = "MsgID_SetAllianceMaxBuyinLimit_Request"] = 30108;
  3133. t[e[30109] = "MsgID_SetAllianceMaxBuyinLimit_Response"] = 30109;
  3134. t[e[30110] = "MsgID_SetAllianceControlBuyin_Request"] = 30110;
  3135. t[e[30111] = "MsgID_SetAllianceControlBuyin_Response"] = 30111;
  3136. t[e[30112] = "MsgID_FairPlay_Report_Request"] = 30112;
  3137. t[e[30113] = "MsgID_FairPlay_Report_Response"] = 30113;
  3138. t[e[30120] = "MsgID_DeviceInfo_Report_Request"] = 30120;
  3139. t[e[30121] = "MsgID_DeviceInfo_Report_Response"] = 30121;
  3140. t[e[30122] = "MsgID_ClubGrantFund_Notice"] = 30122;
  3141. t[e[30123] = "MsgID_GetIncome_Request"] = 30123;
  3142. t[e[30124] = "MsgID_GetIncome_Response"] = 30124;
  3143. t[e[30125] = "MsgID_GetIncome_Notice"] = 30125;
  3144. t[e[30126] = "MsgID_GetUserClubGrantInfo_Request"] = 30126;
  3145. t[e[30127] = "MsgID_GetUserClubGrantInfo_Response"] = 30127;
  3146. t[e[30128] = "MsgID_GetUserClubGrantInfo_Notice"] = 30128;
  3147. t[e[30129] = "MsgID_NotifyUserGoldNum_Notice"] = 30129;
  3148. t[e[30130] = "MsgID_GetUserMailListInfo_Request"] = 30130;
  3149. t[e[30131] = "MsgID_GetUserMailListInfo_Response"] = 30131;
  3150. t[e[30132] = "MsgID_GetUserMailListInfo_Notice"] = 30132;
  3151. t[e[30133] = "MsgID_ReadAndFetchOneMail_Request"] = 30133;
  3152. t[e[30134] = "MsgID_ReadAndFetchOneMail_Response"] = 30134;
  3153. t[e[30135] = "MsgID_ReadAndFetchOneMail_Notice"] = 30135;
  3154. t[e[30136] = "MsgID_NotifyUserMailNum"] = 30136;
  3155. t[e[30137] = "MsgID_NoticeCreateClub"] = 30137;
  3156. t[e[30138] = "MsgID_RequestAnounceList"] = 30138;
  3157. t[e[30139] = "MsgID_ResponseAnounceList"] = 30139;
  3158. t[e[30140] = "MsgID_NoticeAnounceList"] = 30140;
  3159. t[e[30141] = "MsgID_NoticeOneAnounce"] = 30141;
  3160. t[e[30142] = "MsgID_NoticeCreateAlliance"] = 30142;
  3161. t[e[30143] = "MsgID_AddCoinOrder_Pay_Request"] = 30143;
  3162. t[e[30144] = "MsgID_AddCoinOrder_Pay_Response"] = 30144;
  3163. t[e[30145] = "MsgID_AddCoinResult_Pay_Notice"] = 30145;
  3164. t[e[30146] = "MsgID_DelCoinOrder_Pay_Request"] = 30146;
  3165. t[e[30147] = "MsgID_DelCoinOrder_Pay_Response"] = 30147;
  3166. t[e[30148] = "MsgID_DelCoinResult_Pay_Notice"] = 30148;
  3167. t[e[30149] = "MsgID_SearchClubMember_Request"] = 30149;
  3168. t[e[30150] = "MsgID_SearchClubMember_Response"] = 30150;
  3169. t[e[30151] = "MsgID_SearchClubMember_Notice"] = 30151;
  3170. t[e[30152] = "MsgID_ReadAndFetchOneAnounce_Request"] = 30152;
  3171. t[e[30153] = "MsgID_ReadAndFetchOneAnounce_Response"] = 30153;
  3172. t[e[30154] = "MsgID_ReadAndFetchOneAnounce_Notice"] = 30154;
  3173. t[e[30155] = "MsgID_NoticeOneMail"] = 30155;
  3174. t[e[30156] = "MsgID_NoticeWithdrawMail"] = 30156;
  3175. t[e[30157] = "MsgID_NoticeWithdrawAnounce"] = 30157;
  3176. t[e[30158] = "MsgID_SetClubInvitePercent_Request"] = 30158;
  3177. t[e[30159] = "MsgID_SetClubInvitePercent_Response"] = 30159;
  3178. t[e[30160] = "MsgID_AutoAgreeClubReply_Request"] = 30160;
  3179. t[e[30161] = "MsgID_AutoAgreeClubReply_Response"] = 30161;
  3180. t[e[30162] = "MsgID_AutoAgreeClubReply_Notice"] = 30162;
  3181. t[e[30163] = "MsgID_QuerySendFairReport_Request"] = 30163;
  3182. t[e[30164] = "MsgID_QuerySendFairReport_Response"] = 30164;
  3183. t[e[30165] = "MsgID_Login_Notice"] = 30165;
  3184. t[e[30166] = "MsgID_GetWebToken_Request"] = 30166;
  3185. t[e[30167] = "MsgID_GetWebToken_Response"] = 30167;
  3186. t[e[30168] = "MsgID_CowBoy_List_Request"] = 30168;
  3187. t[e[30169] = "MsgID_CowBoy_List_Response"] = 30169;
  3188. t[e[30170] = "MsgID_GlobalMessage_Notice"] = 30170;
  3189. t[e[30171] = "MsgID_GameStatus_Request"] = 30171;
  3190. t[e[30172] = "MsgID_GameStatus_Response"] = 30172;
  3191. t[e[30173] = "MsgID_HumanBoy_List_Request"] = 30173;
  3192. t[e[30174] = "MsgID_HumanBoy_List_Response"] = 30174;
  3193. t[e[30175] = "MsgID_DepositInStrongbox_Request"] = 30175;
  3194. t[e[30176] = "MsgID_DepositInStrongbox_Response"] = 30176;
  3195. t[e[30178] = "MsgID_TakeoutStrongbox_Request"] = 30178;
  3196. t[e[30179] = "MsgID_TakeoutStrongbox_Response"] = 30179;
  3197. t[e[30181] = "MsgID_StrongboxDetail_Request"] = 30181;
  3198. t[e[30182] = "MsgID_StrongboxDetail_Response"] = 30182;
  3199. t[e[30184] = "MsgID_GetStrongboxInfo_Request"] = 30184;
  3200. t[e[30185] = "MsgID_GetStrongboxInfo_Response"] = 30185;
  3201. t[e[30187] = "MsgID_Luck_Draw_Done_Request"] = 30187;
  3202. t[e[30188] = "MsgID_Luck_Draw_Done_Response"] = 30188;
  3203. t[e[30189] = "MsgID_Luck_Draw_Notice"] = 30189;
  3204. t[e[30190] = "MsgID_Aof_JackPot_List_Request"] = 30190;
  3205. t[e[30191] = "MsgID_Aof_JackPot_List_Response"] = 30191;
  3206. t[e[30192] = "MsgID_Aof_Thouthand_Request"] = 30192;
  3207. t[e[30193] = "MsgID_Aof_Thouthand_response"] = 30193;
  3208. t[e[30194] = "MsgID_CheckSafe_Request"] = 30194;
  3209. t[e[30195] = "MsgID_CheckSafe_response"] = 30195;
  3210. t[e[30196] = "MsgID_Luck_Turntable_Draw_Notice"] = 30196;
  3211. t[e[30197] = "MsgID_Luck_Turntable_Result_Request"] = 30197;
  3212. t[e[30198] = "MsgID_Luck_Turntable_Result_Response"] = 30198;
  3213. t[e[30199] = "MsgID_Luck_Turntable_Ready_Notice"] = 30199;
  3214. t[e[30200] = "MsgID_Luck_Turntable_Over_Notice"] = 30200;
  3215. t[e[30201] = "MsgID_Luck_Turntable_StartTime_Notice"] = 30201;
  3216. t[e[30202] = "MsgID_Luck_Turntable_EndTime_Notice"] = 30202;
  3217. t[e[30203] = "MsgID_Luck_Turntable_Snaplist_Request"] = 30203;
  3218. t[e[30204] = "MsgID_Luck_Turntable_Snaplist_Response"] = 30204;
  3219. t[e[30205] = "MsgID_Luck_Turntable_Snaplist_Notice"] = 30205;
  3220. t[e[30206] = "MsgID_Luck_Turntable_Countdown_Notice"] = 30206;
  3221. t[e[30207] = "MsgID_Luck_Turntable_Result_Notice"] = 30207;
  3222. t[e[30211] = "MsgID_GameStatusV2_Request"] = 30211;
  3223. t[e[30212] = "MsgID_GameStatusV2_Response"] = 30212;
  3224. t[e[30300] = "MsgID_Banner_Request"] = 30300;
  3225. t[e[30301] = "MsgID_Banner_Response"] = 30301;
  3226. t[e[30302] = "MsgID_ZoomPlayerSettle_Notice"] = 30302;
  3227. t[e[30303] = "MsgID_SetThisAreaPlayer_Notice"] = 30303;
  3228. t[e[30400] = "MsgID_Create_RedBag_Request"] = 30400;
  3229. t[e[30401] = "MsgID_Create_RedBag_Response"] = 30401;
  3230. t[e[30402] = "MsgID_RedBag_Notice"] = 30402;
  3231. t[e[30403] = "MsgID_RedBag_Info_Request"] = 30403;
  3232. t[e[30404] = "MsgID_RedBag_Info_Response"] = 30404;
  3233. t[e[30405] = "MsgID_RedBag_Set_Amount_Request"] = 30405;
  3234. t[e[30406] = "MsgID_RedBag_Set_Amount_Response"] = 30406;
  3235. t[e[30407] = "MsgID_RedBag_Draw_Request"] = 30407;
  3236. t[e[30408] = "MsgID_RedBag_Draw_Response"] = 30408;
  3237. t[e[30409] = "MsgID_RedBag_Open_Notice"] = 30409;
  3238. t[e[30410] = "MsgID_RedBag_History_Request"] = 30410;
  3239. t[e[30411] = "MsgID_RedBag_History_Response"] = 30411;
  3240. t[e[30412] = "MsgID_RedBag_Boom2Creater_Notify"] = 30412;
  3241. t[e[30413] = "MsgID_RedBag_Status_Request"] = 30413;
  3242. t[e[30414] = "MsgID_RedBag_Status_Response"] = 30414;
  3243. t[e[30415] = "MsgID_RedBag_AutoDraw_Request"] = 30415;
  3244. t[e[30416] = "MsgID_RedBag_AutoDraw_Response"] = 30416;
  3245. t[e[30417] = "MsgID_RedBag_Drawed2Creator_Notice"] = 30417;
  3246. t[e[30418] = "MsgID_RedBag_LastInfo_Request"] = 30418;
  3247. t[e[30419] = "MsgID_RedBag_LastInfo_Response"] = 30419;
  3248. t[e[30420] = "MsgID_RedBag_JackpotInfo_Request"] = 30420;
  3249. t[e[30421] = "MsgID_RedBag_JackpotInfo_Response"] = 30421;
  3250. t[e[30422] = "MsgID_RedBag_StatisticsInfo_Request"] = 30422;
  3251. t[e[30423] = "MsgID_RedBag_StatisticsInfo_Response"] = 30423;
  3252. t[e[30424] = "MsgID_RedBag_JackpotUpdate_Notice"] = 30424;
  3253. t[e[30440] = "MsgID_Create_RedBagM_Request"] = 30440;
  3254. t[e[30441] = "MsgID_Create_RedBagM_Response"] = 30441;
  3255. t[e[30442] = "MsgID_RedBagM_Notice"] = 30442;
  3256. t[e[30443] = "MsgID_RedBagM_Info_Request"] = 30443;
  3257. t[e[30444] = "MsgID_RedBagM_Info_Response"] = 30444;
  3258. t[e[30445] = "MsgID_RedBagM_Set_Amount_Request"] = 30445;
  3259. t[e[30446] = "MsgID_RedBagM_Set_Amount_Response"] = 30446;
  3260. t[e[30447] = "MsgID_RedBagM_Draw_Request"] = 30447;
  3261. t[e[30448] = "MsgID_RedBagM_Draw_Response"] = 30448;
  3262. t[e[30449] = "MsgID_RedBagM_History_Request"] = 30449;
  3263. t[e[30450] = "MsgID_RedBagM_History_Response"] = 30450;
  3264. t[e[30451] = "MsgID_RedBagM_Boom2Creater_Notify"] = 30451;
  3265. t[e[30452] = "MsgID_RedBagM_Status_Request"] = 30452;
  3266. t[e[30453] = "MsgID_RedBagM_Status_Response"] = 30453;
  3267. t[e[30454] = "MsgID_RedBagM_Drawed2Creator_Notice"] = 30454;
  3268. t[e[30455] = "MsgID_RedBagM_LastInfo_Request"] = 30455;
  3269. t[e[30456] = "MsgID_RedBagM_LastInfo_Response"] = 30456;
  3270. t[e[30457] = "MsgID_RedBagM_StatisticsInfo_Request"] = 30457;
  3271. t[e[30458] = "MsgID_RedBagM_StatisticsInfo_Response"] = 30458;
  3272. t[e[30459] = "MsgID_RedBagM_ShowUI_Notify"] = 30459;
  3273. t[e[30480] = "MsgID_VideoCowboy_List_Request"] = 30480;
  3274. t[e[30481] = "MsgID_VideoCowboy_List_Response"] = 30481;
  3275. t[e[30482] = "MsgID_AutoExchange_Notice"] = 30482;
  3276. t[e[35001] = "MsgID_GetRank_Request"] = 35001;
  3277. t[e[35002] = "MsgID_GetRank_Response"] = 35002;
  3278. t[e[35101] = "MsgID_SetSecretKey_Request"] = 35101;
  3279. t[e[35102] = "MsgID_SetSecretKey_Response"] = 35102;
  3280. t[e[35103] = "MsgID_SetSecretKeyEx_Request"] = 35103;
  3281. t[e[35104] = "MsgID_SetSecretKeyEx_Response"] = 35104;
  3282. t[e[35110] = "MsgID_Referrals_Request"] = 35110;
  3283. t[e[35111] = "MsgID_Referrals_Response"] = 35111;
  3284. t[e[35201] = "MsgID_InviteSummary_Request"] = 35201;
  3285. t[e[35202] = "MsgID_InviteSummary_Response"] = 35202;
  3286. t[e[35203] = "MsgID_InviteIncomeRedeem_Request"] = 35203;
  3287. t[e[35204] = "MsgID_InviteIncomeRedeem_Response"] = 35204;
  3288. t[e[35301] = "MsgID_JoinAlliance_UserCancel_Request"] = 35301;
  3289. t[e[35302] = "MsgID_JoinAlliance_UserCancel_Response"] = 35302;
  3290. t[e[35205] = "MsgID_PokerMaster_List_Request"] = 35205;
  3291. t[e[35206] = "MsgID_PokerMaster_List_Response"] = 35206;
  3292. t[e[35207] = "MsgID_MiniGames_List_Request"] = 35207;
  3293. t[e[35208] = "MsgID_MiniGames_List_Response"] = 35208;
  3294. t[e[35401] = "MsgID_AuthApi_Request"] = 35401;
  3295. t[e[35402] = "MsgID_AuthApi_Notice"] = 35402;
  3296. t[e[35403] = "MsgID_AuthApi_Response"] = 35403;
  3297. t[e[35404] = "MsgID_GameMaintainStatus_Notice"] = 35404;
  3298. t[e[35405] = "MsgID_MttResult_Request"] = 35405;
  3299. t[e[35406] = "MsgID_MttResult_Notice"] = 35406;
  3300. t[e[35407] = "MsgID_MttResult_Response"] = 35407;
  3301. t[e[35408] = "MsgID_MttDetail_Request"] = 35408;
  3302. t[e[35409] = "MsgID_MttDetail_Notice"] = 35409;
  3303. t[e[35410] = "MsgID_MttDetail_Response"] = 35410;
  3304. t[e[35411] = "MsgID_MttGameSum_Request"] = 35411;
  3305. t[e[35412] = "MsgID_MttGameSum_Notice"] = 35412;
  3306. t[e[35413] = "MsgID_MttGameSum_Response"] = 35413;
  3307. t[e[35416] = "MsgID_SpinResult_Request"] = 35416;
  3308. t[e[35417] = "MsgID_SpinResult_Notice"] = 35417;
  3309. t[e[35418] = "MsgID_SpinResult_Response"] = 35418;
  3310. t[e[35419] = "MsgID_SpinDetail_Request"] = 35419;
  3311. t[e[35420] = "MsgID_SpinDetail_Notice"] = 35420;
  3312. t[e[35421] = "MsgID_SpinDetail_Response"] = 35421;
  3313. t[e[35422] = "MsgID_SpinGameSum_Request"] = 35422;
  3314. t[e[35423] = "MsgID_SpinGameSum_Notice"] = 35423;
  3315. t[e[35424] = "MsgID_SpinGameSum_Response"] = 35424;
  3316. t[e[35414] = "MsgID_EventReport_Request"] = 35414;
  3317. t[e[35415] = "MsgID_EventReport_Response"] = 35415;
  3318. t[e[35450] = "MsgID_Exchange_UserPoints_Request"] = 35450;
  3319. t[e[35451] = "MsgID_Exchange_UserPoints_Response"] = 35451;
  3320. t[e[35452] = "MsgID_Goods_List_Request"] = 35452;
  3321. t[e[35453] = "MsgID_Goods_List_Response"] = 35453;
  3322. t[e[35454] = "MsgID_Bank_Details_Query_Request"] = 35454;
  3323. t[e[35455] = "MsgID_Bank_Details_Query_Response"] = 35455;
  3324. t[e[35458] = "MsgID_StarInfo_Request"] = 35458;
  3325. t[e[35459] = "MsgID_StarInfo_Response"] = 35459;
  3326. t[e[35460] = "MsgID_ReceiveTools_Request"] = 35460;
  3327. t[e[35461] = "MsgID_ReceiveTools_Response"] = 35461;
  3328. t[e[35462] = "MsgID_ReceiveTools_Notice"] = 35462;
  3329. t[e[35463] = "MsgID_Get_Scaler_Quote_Request"] = 35463;
  3330. t[e[35464] = "MsgID_Get_Scaler_Quote_Response"] = 35464;
  3331. t[e[35465] = "MsgID_Exchange_Currency_Request"] = 35465;
  3332. t[e[35466] = "MsgID_Exchange_Currency_Response"] = 35466;
  3333. t[e[35467] = "MsgID_GetUserMarks_Request"] = 35467;
  3334. t[e[35468] = "MsgID_GetUserMarks_Response"] = 35468;
  3335. t[e[35469] = "MsgID_AuthVerify_Request"] = 35469;
  3336. t[e[35470] = "MsgID_AuthVerify_Response"] = 35470;
  3337. t[e[35471] = "MsgID_UpdateUserMarks_Request"] = 35471;
  3338. t[e[35472] = "MsgID_UpdateUserMarks_Reponse"] = 35472;
  3339. t[e[35473] = "MsgID_BuyinEvent_UsdtChanage_Notice"] = 35473;
  3340. t[e[35474] = "MsgID_QuickRaise_Request"] = 35474;
  3341. t[e[35475] = "MsgID_QuickRaise_Response"] = 35475;
  3342. t[e[35576] = "MsgID_DefaultSetting_Request"] = 35576;
  3343. t[e[35577] = "MsgID_DefaultSetting_Response"] = 35577;
  3344. t[e[35578] = "MsgID_StarAllow_Request"] = 35578;
  3345. t[e[35579] = "MsgID_StarAllow_Response"] = 35579;
  3346. t[e[35580] = "MsgID_StarWillBegin_Notice"] = 35580;
  3347. t[e[35581] = "MsgID_UsdtExchange_Config_Notice"] = 35581;
  3348. t[e[35582] = "MsgID_GetUsdtExchange_Config_Request"] = 35582;
  3349. t[e[35583] = "MsgID_GetUsdtExchange_Config_Response"] = 35583;
  3350. t[e[35600] = "MsgID_AddHelpWrap_Notice"] = 35600;
  3351. t[e[35601] = "MsgID_GetUserHelpWarpList_Request"] = 35601;
  3352. t[e[35602] = "MsgID_GetUserHelpWarpList_Response"] = 35602;
  3353. t[e[35603] = "MsgID_LeftHelpCountChange_Notice"] = 35603;
  3354. t[e[35605] = "MsgID_AddHelper_Request"] = 35605;
  3355. t[e[35606] = "MsgID_AddHelper_Response"] = 35606;
  3356. t[e[35607] = "MsgID_GetTotalHistoryAmount_Request"] = 35607;
  3357. t[e[35608] = "MsgID_GetTotalHistoryAmount_Response"] = 35608;
  3358. t[e[35609] = "MsgID_UserReceiveHelpWarp_Request"] = 35609;
  3359. t[e[35610] = "MsgID_UserReceiveHelpWarp_Response"] = 35610;
  3360. t[e[35611] = "MsgID_UserHelpWarpChange_Notice"] = 35611;
  3361. t[e[35621] = "MsgID_UserChangeLanguage_Request"] = 35621;
  3362. t[e[35622] = "MsgID_UserChangeLanguage_Response"] = 35622;
  3363. t[e[35623] = "MsgId_GetTexasTotalHands_Request"] = 35623;
  3364. t[e[35624] = "MsgId_GetTexasTotalHands_Response"] = 35624;
  3365. t[e[35700] = "MsgID_SportsLogin_Request"] = 35700;
  3366. t[e[35701] = "MsgID_SportsLogin_Response"] = 35701;
  3367. t[e[35702] = "MsgID_SportsLeave_Request"] = 35702;
  3368. t[e[35703] = "MsgID_SportsLeave_Response"] = 35703;
  3369. t[e[35704] = "MsgID_BatchDelRemarks_Request"] = 35704;
  3370. t[e[35705] = "MsgID_BatchDelRemarks_Response"] = 35705;
  3371. t[e[35706] = "MsgID_PgLogin_Request"] = 35706;
  3372. t[e[35707] = "MsgID_PgLogin_Response"] = 35707;
  3373. t[e[35708] = "MsgID_PgLeave_Request"] = 35708;
  3374. t[e[35709] = "MsgID_PgLeave_Response"] = 35709;
  3375. t[e[35710] = "MsgID_PgBonusAndFreeGames_Request"] = 35710;
  3376. t[e[35711] = "MsgID_PgBonusAndFreeGames_Response"] = 35711;
  3377. t[e[35721] = "MsgId_KYCVerificationStatus_Request"] = 35721;
  3378. t[e[35722] = "MsgId_KYCVerificationStatus_Response"] = 35722;
  3379. t[e[35712] = "MsgId_BlackJackLogin_Request"] = 35712;
  3380. t[e[35713] = "MsgId_BlackJackLogin_Response"] = 35713;
  3381. t[e[35726] = "MsgID_OpenCalmDownWindows_Notice"] = 35726;
  3382. t[e[35727] = "MsgID_CalmDownConfirm_Request"] = 35727;
  3383. t[e[35728] = "MsgID_CalmDownConfirm_Response"] = 35728;
  3384. t[e[35729] = "MsgID_CalmDownConfirmResult_Notice"] = 35729;
  3385. t[e[35801] = "MsgID_MemePoker_Rank_Request"] = 35801;
  3386. t[e[35802] = "MsgID_MemePoker_Rank_Response"] = 35802;
  3387. t[e[35804] = "MsgID_MemePoker_PropsList_Request"] = 35804;
  3388. t[e[35805] = "MsgID_MemePoker_PropsList_Response"] = 35805;
  3389. t[e[35807] = "MsgID_MemePoker_SearchUser_Request"] = 35807;
  3390. t[e[35808] = "MsgID_MemePoker_SearchUser_Response"] = 35808;
  3391. t[e[35814] = "MsgID_MemePoker_PropsLog_Request"] = 35814;
  3392. t[e[35815] = "MsgID_MemePoker_PropsLog_Response"] = 35815;
  3393. t[e[35817] = "MsgID_MemePoker_PropsAction_Request"] = 35817;
  3394. t[e[35818] = "MsgID_MemePoker_PropsAction_Response"] = 35818;
  3395. t[e[35821] = "MsgID_MemePoker_CoinExchangeShop_Request"] = 35821;
  3396. t[e[35822] = "MsgID_MemePoker_CoinExchangeShop_Response"] = 35822;
  3397. t[e[35824] = "MsgID_MemePoker_CoinExchange_Request"] = 35824;
  3398. t[e[35825] = "MsgID_MemePoker_CoinExchange_Response"] = 35825;
  3399. t[e[35827] = "MsgID_MemePoker_RechargeGoods_Request"] = 35827;
  3400. t[e[35828] = "MsgID_MemePoker_RechargeGoods_Response"] = 35828;
  3401. t[e[35831] = "MsgID_MemePoker_NewPayOrder_Request"] = 35831;
  3402. t[e[35832] = "MsgID_MemePoker_NewPayOrder_Response"] = 35832;
  3403. t[e[35833] = "MsgID_MemePoker_PayOrderConfirm_Request"] = 35833;
  3404. t[e[35834] = "MsgID_MemePoker_PayOrderConfirm_Response"] = 35834;
  3405. t[e[35902] = "MsgID_SportsQuickBet_Request"] = 35902;
  3406. t[e[35903] = "MsgID_SportsQuickBet_Response"] = 35903;
  3407. t[e[35904] = "MsgID_SportsMatchList_Request"] = 35904;
  3408. t[e[35905] = "MsgID_SportsMatchList_Response"] = 35905;
  3409. t[e[35906] = "MsgID_SportsTipTemplate_Request"] = 35906;
  3410. t[e[35907] = "MsgID_SportsTipTemplate_Response"] = 35907;
  3411. t[e[35908] = "MsgID_SportsQuickBetFeatureFlag_Notice"] = 35908;
  3412. t[e[36100] = "MsgId_Rebate_GetEventStatus_Request"] = 36100;
  3413. t[e[36101] = "MsgId_Rebate_GetEventStatus_Response"] = 36101;
  3414. t[e[36102] = "MsgId_Rebate_ReceiveReward_Request"] = 36102;
  3415. t[e[36103] = "MsgId_Rebate_ReceiveReward_Response"] = 36103;
  3416. t[e[36104] = "MsgId_Rebate_GetEventStatus_Notice"] = 36104;
  3417. t[e[36105] = "MsgId_Notice_Platform_Maintenance"] = 36105;
  3418. return t;
  3419. }();
  3420. e.GameId = function() {
  3421. var e = {}, t = Object.create(e);
  3422. t[e[0] = "GameId_Dummy"] = 0;
  3423. t[e[1] = "World"] = 1;
  3424. t[e[2] = "Texas"] = 2;
  3425. t[e[3] = "StarSeat"] = 3;
  3426. t[e[10101] = "DataServer"] = 10101;
  3427. t[e[10] = "CowBoy"] = 10;
  3428. t[e[20] = "Allin"] = 20;
  3429. t[e[30] = "HumanBoy"] = 30;
  3430. t[e[40] = "ZoomTexas"] = 40;
  3431. t[e[49] = "ZoomTexasMax"] = 49;
  3432. t[e[50] = "VideoCowboy"] = 50;
  3433. t[e[60] = "Bet"] = 60;
  3434. t[e[70] = "PokerMaster"] = 70;
  3435. t[e[80] = "Jackfruit"] = 80;
  3436. t[e[90] = "PLO"] = 90;
  3437. t[e[900] = "BlMtt"] = 900;
  3438. t[e[1e3] = "Sports"] = 1e3;
  3439. t[e[1001] = "TopMatches"] = 1001;
  3440. t[e[1010] = "PocketGames"] = 1010;
  3441. t[e[1020] = "BlackJack"] = 1020;
  3442. return t;
  3443. }();
  3444. e.SpecialCards = function() {
  3445. var e = {}, t = Object.create(e);
  3446. t[e[0] = "Cards_Dummy"] = 0;
  3447. t[e[255] = "Cards_Zero"] = 255;
  3448. t[e[256] = "Cards_Back"] = 256;
  3449. return t;
  3450. }();
  3451. e.ClientType = function() {
  3452. var e = {}, t = Object.create(e);
  3453. t[e[0] = "Dummy"] = 0;
  3454. t[e[1] = "Normal"] = 1;
  3455. t[e[2] = "OverSeas"] = 2;
  3456. t[e[3] = "H5"] = 3;
  3457. t[e[4] = "H5OverSeas"] = 4;
  3458. t[e[5] = "H5Web"] = 5;
  3459. t[e[6] = "H5WebOverSeas"] = 6;
  3460. t[e[7] = "H5VietnamLasted"] = 7;
  3461. t[e[8] = "H5WebVietnamLasted"] = 8;
  3462. t[e[9] = "H5CowboyWeb"] = 9;
  3463. t[e[10] = "H5Thailand"] = 10;
  3464. t[e[11] = "H5WebThailand"] = 11;
  3465. t[e[12] = "H5Arab"] = 12;
  3466. t[e[13] = "H5Hindi"] = 13;
  3467. t[e[14] = "H5Mempoker"] = 14;
  3468. t[e[15] = "PC"] = 15;
  3469. return t;
  3470. }();
  3471. e.LanguageType = function() {
  3472. var e = {}, t = Object.create(e);
  3473. t[e[0] = "Chinese"] = 0;
  3474. t[e[1] = "English"] = 1;
  3475. t[e[2] = "VietNam"] = 2;
  3476. return t;
  3477. }();
  3478. e.EventType = function() {
  3479. var e = {}, t = Object.create(e);
  3480. t[e[0] = "EventType_Dummy"] = 0;
  3481. t[e[100] = "Favorite"] = 100;
  3482. t[e[300] = "JoinRoom"] = 300;
  3483. t[e[301] = "LeaveRoom"] = 301;
  3484. t[e[302] = "SitDown"] = 302;
  3485. t[e[303] = "StandUp"] = 303;
  3486. t[e[304] = "Buyin"] = 304;
  3487. t[e[305] = "Action"] = 305;
  3488. t[e[306] = "BuyInsure"] = 306;
  3489. t[e[307] = "Situation"] = 307;
  3490. t[e[308] = "SendCardsFun"] = 308;
  3491. t[e[309] = "SendChat"] = 309;
  3492. t[e[310] = "StayPosition"] = 310;
  3493. t[e[311] = "BackPosition"] = 311;
  3494. t[e[312] = "ShowCards"] = 312;
  3495. t[e[313] = "BuyOut"] = 313;
  3496. t[e[314] = "CheckoutAndLeave"] = 314;
  3497. t[e[315] = "DefaultFold"] = 315;
  3498. t[e[316] = "ForceShowCards"] = 316;
  3499. t[e[317] = "AutoWithDraw"] = 317;
  3500. t[e[318] = "QuickLeave"] = 318;
  3501. t[e[319] = "QuickFold"] = 319;
  3502. t[e[320] = "BetAction"] = 320;
  3503. t[e[321] = "AutoBet"] = 321;
  3504. t[e[322] = "AdvanceAutoBet"] = 322;
  3505. t[e[323] = "SendBarrage"] = 323;
  3506. return t;
  3507. }();