-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy path12.js
4251 lines (4251 loc) · 282 KB
/
12.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(self.__LOADABLE_LOADED_CHUNKS__ = self.__LOADABLE_LOADED_CHUNKS__ || []).push([[6112], {
95119: function (t, e, a) {
var r = a(47865), o = r, i = function () {
return this ? this : "undefined" != typeof window ? window : void 0 !== i ? i : "undefined" != typeof self ? self : Function("return this")()
}.call(null), s = a(8411);
o.object.extend(proto, s);
var n = a(64925);
o.object.extend(proto, n), o.exportSymbol("proto.webcast.data.OrderAuditStatus", null, i), o.exportSymbol("proto.webcast.data.PlayConfigInfo", null, i), o.exportSymbol("proto.webcast.data.PlayGameInfo", null, i), o.exportSymbol("proto.webcast.data.PlayMemberStatus", null, i), o.exportSymbol("proto.webcast.data.PlayMetaInfo", null, i), o.exportSymbol("proto.webcast.data.PlayRecord", null, i), o.exportSymbol("proto.webcast.data.PlayReportTag", null, i), o.exportSymbol("proto.webcast.data.PlayServiceType", null, i), o.exportSymbol("proto.webcast.data.PlayStatus", null, i), o.exportSymbol("proto.webcast.data.PlayTeamMember", null, i), proto.webcast.data.PlayGameInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.PlayGameInfo, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.PlayGameInfo.displayName = "proto.webcast.data.PlayGameInfo"), proto.webcast.data.PlayConfigInfo = function (t) {
r.Message.initialize(this, t, 0, -1, proto.webcast.data.PlayConfigInfo.repeatedFields_, null)
}, o.inherits(proto.webcast.data.PlayConfigInfo, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.PlayConfigInfo.displayName = "proto.webcast.data.PlayConfigInfo"), proto.webcast.data.PlayMetaInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.PlayMetaInfo, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.PlayMetaInfo.displayName = "proto.webcast.data.PlayMetaInfo"), proto.webcast.data.PlayRecord = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.PlayRecord, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.PlayRecord.displayName = "proto.webcast.data.PlayRecord"), proto.webcast.data.PlayTeamMember = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.PlayTeamMember, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.PlayTeamMember.displayName = "proto.webcast.data.PlayTeamMember"), proto.webcast.data.PlayReportTag = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.PlayReportTag, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.PlayReportTag.displayName = "proto.webcast.data.PlayReportTag"), r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.PlayGameInfo.prototype.toObject = function (t) {
return proto.webcast.data.PlayGameInfo.toObject(t, this)
}, proto.webcast.data.PlayGameInfo.toObject = function (t, e) {
var a, o = {
gameId: r.Message.getFieldWithDefault(e, 1, ""),
gameStoreSchema: r.Message.getFieldWithDefault(e, 2, ""),
gameCheckAuthoritySchema: r.Message.getFieldWithDefault(e, 3, ""),
gameName: r.Message.getFieldWithDefault(e, 4, ""),
gameIcon: (a = e.getGameIcon()) && s.Image.toObject(t, a),
gameDesc: r.Message.getFieldWithDefault(e, 6, ""),
gamePackageNameAndroid: r.Message.getFieldWithDefault(e, 7, ""),
gamePackageNameIos: r.Message.getFieldWithDefault(e, 8, ""),
gameLauncherSchema: r.Message.getFieldWithDefault(e, 9, ""),
clientKey: r.Message.getFieldWithDefault(e, 10, "")
};
return t && (o.$jspbMessageInstance = e), o
}), proto.webcast.data.PlayGameInfo.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.PlayGameInfo;
return proto.webcast.data.PlayGameInfo.deserializeBinaryFromReader(a, e)
}, proto.webcast.data.PlayGameInfo.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = e.readString();
t.setGameId(a);
break;
case 2:
a = e.readString();
t.setGameStoreSchema(a);
break;
case 3:
a = e.readString();
t.setGameCheckAuthoritySchema(a);
break;
case 4:
a = e.readString();
t.setGameName(a);
break;
case 5:
a = new s.Image;
e.readMessage(a, s.Image.deserializeBinaryFromReader), t.setGameIcon(a);
break;
case 6:
a = e.readString();
t.setGameDesc(a);
break;
case 7:
a = e.readString();
t.setGamePackageNameAndroid(a);
break;
case 8:
a = e.readString();
t.setGamePackageNameIos(a);
break;
case 9:
a = e.readString();
t.setGameLauncherSchema(a);
break;
case 10:
a = e.readString();
t.setClientKey(a);
break;
default:
e.skipField()
}
}
return t
}, proto.webcast.data.PlayGameInfo.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.PlayGameInfo.serializeBinaryToWriter(this, t), t.getResultBuffer()
}, proto.webcast.data.PlayGameInfo.serializeBinaryToWriter = function (t, e) {
var a = undefined;
(a = t.getGameId()).length > 0 && e.writeString(1, a), (a = t.getGameStoreSchema()).length > 0 && e.writeString(2, a), (a = t.getGameCheckAuthoritySchema()).length > 0 && e.writeString(3, a), (a = t.getGameName()).length > 0 && e.writeString(4, a), null != (a = t.getGameIcon()) && e.writeMessage(5, a, s.Image.serializeBinaryToWriter), (a = t.getGameDesc()).length > 0 && e.writeString(6, a), (a = t.getGamePackageNameAndroid()).length > 0 && e.writeString(7, a), (a = t.getGamePackageNameIos()).length > 0 && e.writeString(8, a), (a = t.getGameLauncherSchema()).length > 0 && e.writeString(9, a), (a = t.getClientKey()).length > 0 && e.writeString(10, a)
}, proto.webcast.data.PlayGameInfo.prototype.getGameId = function () {
return r.Message.getFieldWithDefault(this, 1, "")
}, proto.webcast.data.PlayGameInfo.prototype.setGameId = function (t) {
return r.Message.setProto3StringField(this, 1, t)
}, proto.webcast.data.PlayGameInfo.prototype.getGameStoreSchema = function () {
return r.Message.getFieldWithDefault(this, 2, "")
}, proto.webcast.data.PlayGameInfo.prototype.setGameStoreSchema = function (t) {
return r.Message.setProto3StringField(this, 2, t)
}, proto.webcast.data.PlayGameInfo.prototype.getGameCheckAuthoritySchema = function () {
return r.Message.getFieldWithDefault(this, 3, "")
}, proto.webcast.data.PlayGameInfo.prototype.setGameCheckAuthoritySchema = function (t) {
return r.Message.setProto3StringField(this, 3, t)
}, proto.webcast.data.PlayGameInfo.prototype.getGameName = function () {
return r.Message.getFieldWithDefault(this, 4, "")
}, proto.webcast.data.PlayGameInfo.prototype.setGameName = function (t) {
return r.Message.setProto3StringField(this, 4, t)
}, proto.webcast.data.PlayGameInfo.prototype.getGameIcon = function () {
return r.Message.getWrapperField(this, s.Image, 5)
}, proto.webcast.data.PlayGameInfo.prototype.setGameIcon = function (t) {
return r.Message.setWrapperField(this, 5, t)
}, proto.webcast.data.PlayGameInfo.prototype.clearGameIcon = function () {
return this.setGameIcon(undefined)
}, proto.webcast.data.PlayGameInfo.prototype.hasGameIcon = function () {
return null != r.Message.getField(this, 5)
}, proto.webcast.data.PlayGameInfo.prototype.getGameDesc = function () {
return r.Message.getFieldWithDefault(this, 6, "")
}, proto.webcast.data.PlayGameInfo.prototype.setGameDesc = function (t) {
return r.Message.setProto3StringField(this, 6, t)
}, proto.webcast.data.PlayGameInfo.prototype.getGamePackageNameAndroid = function () {
return r.Message.getFieldWithDefault(this, 7, "")
}, proto.webcast.data.PlayGameInfo.prototype.setGamePackageNameAndroid = function (t) {
return r.Message.setProto3StringField(this, 7, t)
}, proto.webcast.data.PlayGameInfo.prototype.getGamePackageNameIos = function () {
return r.Message.getFieldWithDefault(this, 8, "")
}, proto.webcast.data.PlayGameInfo.prototype.setGamePackageNameIos = function (t) {
return r.Message.setProto3StringField(this, 8, t)
}, proto.webcast.data.PlayGameInfo.prototype.getGameLauncherSchema = function () {
return r.Message.getFieldWithDefault(this, 9, "")
}, proto.webcast.data.PlayGameInfo.prototype.setGameLauncherSchema = function (t) {
return r.Message.setProto3StringField(this, 9, t)
}, proto.webcast.data.PlayGameInfo.prototype.getClientKey = function () {
return r.Message.getFieldWithDefault(this, 10, "")
}, proto.webcast.data.PlayGameInfo.prototype.setClientKey = function (t) {
return r.Message.setProto3StringField(this, 10, t)
}, proto.webcast.data.PlayConfigInfo.repeatedFields_ = [1, 4], r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.PlayConfigInfo.prototype.toObject = function (t) {
return proto.webcast.data.PlayConfigInfo.toObject(t, this)
}, proto.webcast.data.PlayConfigInfo.toObject = function (t, e) {
var a, o = {
supportGameIdsList: null == (a = r.Message.getRepeatedField(e, 1)) ? undefined : a,
descHint: r.Message.getFieldWithDefault(e, 2, ""),
descLimit: r.Message.getFieldWithDefault(e, 3, 0),
peopleCountOptionList: null == (a = r.Message.getRepeatedField(e, 4)) ? undefined : a,
fareMax: r.Message.getFieldWithDefault(e, 5, 0),
fareMin: r.Message.getFieldWithDefault(e, 6, 0),
fareDescHint: r.Message.getFieldWithDefault(e, 7, ""),
fareDescLimit: r.Message.getFieldWithDefault(e, 8, 0),
fareCountHint: r.Message.getFieldWithDefault(e, 9, "")
};
return t && (o.$jspbMessageInstance = e), o
}), proto.webcast.data.PlayConfigInfo.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.PlayConfigInfo;
return proto.webcast.data.PlayConfigInfo.deserializeBinaryFromReader(a, e)
}, proto.webcast.data.PlayConfigInfo.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = e.readString();
t.addSupportGameIds(a);
break;
case 2:
a = e.readString();
t.setDescHint(a);
break;
case 3:
a = e.readInt32();
t.setDescLimit(a);
break;
case 4:
for (var r = e.isDelimited() ? e.readPackedInt32() : [e.readInt32()], o = 0; o < r.length; o++) t.addPeopleCountOption(r[o]);
break;
case 5:
a = e.readInt32();
t.setFareMax(a);
break;
case 6:
a = e.readInt32();
t.setFareMin(a);
break;
case 7:
a = e.readString();
t.setFareDescHint(a);
break;
case 8:
a = e.readInt32();
t.setFareDescLimit(a);
break;
case 9:
a = e.readString();
t.setFareCountHint(a);
break;
default:
e.skipField()
}
}
return t
}, proto.webcast.data.PlayConfigInfo.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.PlayConfigInfo.serializeBinaryToWriter(this, t), t.getResultBuffer()
}, proto.webcast.data.PlayConfigInfo.serializeBinaryToWriter = function (t, e) {
var a = undefined;
(a = t.getSupportGameIdsList()).length > 0 && e.writeRepeatedString(1, a), (a = t.getDescHint()).length > 0 && e.writeString(2, a), 0 !== (a = t.getDescLimit()) && e.writeInt32(3, a), (a = t.getPeopleCountOptionList()).length > 0 && e.writePackedInt32(4, a), 0 !== (a = t.getFareMax()) && e.writeInt32(5, a), 0 !== (a = t.getFareMin()) && e.writeInt32(6, a), (a = t.getFareDescHint()).length > 0 && e.writeString(7, a), 0 !== (a = t.getFareDescLimit()) && e.writeInt32(8, a), (a = t.getFareCountHint()).length > 0 && e.writeString(9, a)
}, proto.webcast.data.PlayConfigInfo.prototype.getSupportGameIdsList = function () {
return r.Message.getRepeatedField(this, 1)
}, proto.webcast.data.PlayConfigInfo.prototype.setSupportGameIdsList = function (t) {
return r.Message.setField(this, 1, t || [])
}, proto.webcast.data.PlayConfigInfo.prototype.addSupportGameIds = function (t, e) {
return r.Message.addToRepeatedField(this, 1, t, e)
}, proto.webcast.data.PlayConfigInfo.prototype.clearSupportGameIdsList = function () {
return this.setSupportGameIdsList([])
}, proto.webcast.data.PlayConfigInfo.prototype.getDescHint = function () {
return r.Message.getFieldWithDefault(this, 2, "")
}, proto.webcast.data.PlayConfigInfo.prototype.setDescHint = function (t) {
return r.Message.setProto3StringField(this, 2, t)
}, proto.webcast.data.PlayConfigInfo.prototype.getDescLimit = function () {
return r.Message.getFieldWithDefault(this, 3, 0)
}, proto.webcast.data.PlayConfigInfo.prototype.setDescLimit = function (t) {
return r.Message.setProto3IntField(this, 3, t)
}, proto.webcast.data.PlayConfigInfo.prototype.getPeopleCountOptionList = function () {
return r.Message.getRepeatedField(this, 4)
}, proto.webcast.data.PlayConfigInfo.prototype.setPeopleCountOptionList = function (t) {
return r.Message.setField(this, 4, t || [])
}, proto.webcast.data.PlayConfigInfo.prototype.addPeopleCountOption = function (t, e) {
return r.Message.addToRepeatedField(this, 4, t, e)
}, proto.webcast.data.PlayConfigInfo.prototype.clearPeopleCountOptionList = function () {
return this.setPeopleCountOptionList([])
}, proto.webcast.data.PlayConfigInfo.prototype.getFareMax = function () {
return r.Message.getFieldWithDefault(this, 5, 0)
}, proto.webcast.data.PlayConfigInfo.prototype.setFareMax = function (t) {
return r.Message.setProto3IntField(this, 5, t)
}, proto.webcast.data.PlayConfigInfo.prototype.getFareMin = function () {
return r.Message.getFieldWithDefault(this, 6, 0)
}, proto.webcast.data.PlayConfigInfo.prototype.setFareMin = function (t) {
return r.Message.setProto3IntField(this, 6, t)
}, proto.webcast.data.PlayConfigInfo.prototype.getFareDescHint = function () {
return r.Message.getFieldWithDefault(this, 7, "")
}, proto.webcast.data.PlayConfigInfo.prototype.setFareDescHint = function (t) {
return r.Message.setProto3StringField(this, 7, t)
}, proto.webcast.data.PlayConfigInfo.prototype.getFareDescLimit = function () {
return r.Message.getFieldWithDefault(this, 8, 0)
}, proto.webcast.data.PlayConfigInfo.prototype.setFareDescLimit = function (t) {
return r.Message.setProto3IntField(this, 8, t)
}, proto.webcast.data.PlayConfigInfo.prototype.getFareCountHint = function () {
return r.Message.getFieldWithDefault(this, 9, "")
}, proto.webcast.data.PlayConfigInfo.prototype.setFareCountHint = function (t) {
return r.Message.setProto3StringField(this, 9, t)
}, r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.PlayMetaInfo.prototype.toObject = function (t) {
return proto.webcast.data.PlayMetaInfo.toObject(t, this)
}, proto.webcast.data.PlayMetaInfo.toObject = function (t, e) {
var a = {
type: r.Message.getFieldWithDefault(e, 1, 0),
name: r.Message.getFieldWithDefault(e, 2, ""),
playDescSchema: r.Message.getFieldWithDefault(e, 3, ""),
playLicenseSchema: r.Message.getFieldWithDefault(e, 4, ""),
featureSchema: r.Message.getFieldWithDefault(e, 5, ""),
exchangeRate: r.Message.getFieldWithDefault(e, 6, 0)
};
return t && (a.$jspbMessageInstance = e), a
}), proto.webcast.data.PlayMetaInfo.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.PlayMetaInfo;
return proto.webcast.data.PlayMetaInfo.deserializeBinaryFromReader(a, e)
}, proto.webcast.data.PlayMetaInfo.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = e.readEnum();
t.setType(a);
break;
case 2:
a = e.readString();
t.setName(a);
break;
case 3:
a = e.readString();
t.setPlayDescSchema(a);
break;
case 4:
a = e.readString();
t.setPlayLicenseSchema(a);
break;
case 5:
a = e.readString();
t.setFeatureSchema(a);
break;
case 6:
a = e.readInt32();
t.setExchangeRate(a);
break;
default:
e.skipField()
}
}
return t
}, proto.webcast.data.PlayMetaInfo.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.PlayMetaInfo.serializeBinaryToWriter(this, t), t.getResultBuffer()
}, proto.webcast.data.PlayMetaInfo.serializeBinaryToWriter = function (t, e) {
var a = undefined;
0 !== (a = t.getType()) && e.writeEnum(1, a), (a = t.getName()).length > 0 && e.writeString(2, a), (a = t.getPlayDescSchema()).length > 0 && e.writeString(3, a), (a = t.getPlayLicenseSchema()).length > 0 && e.writeString(4, a), (a = t.getFeatureSchema()).length > 0 && e.writeString(5, a), 0 !== (a = t.getExchangeRate()) && e.writeInt32(6, a)
}, proto.webcast.data.PlayMetaInfo.prototype.getType = function () {
return r.Message.getFieldWithDefault(this, 1, 0)
}, proto.webcast.data.PlayMetaInfo.prototype.setType = function (t) {
return r.Message.setProto3EnumField(this, 1, t)
}, proto.webcast.data.PlayMetaInfo.prototype.getName = function () {
return r.Message.getFieldWithDefault(this, 2, "")
}, proto.webcast.data.PlayMetaInfo.prototype.setName = function (t) {
return r.Message.setProto3StringField(this, 2, t)
}, proto.webcast.data.PlayMetaInfo.prototype.getPlayDescSchema = function () {
return r.Message.getFieldWithDefault(this, 3, "")
}, proto.webcast.data.PlayMetaInfo.prototype.setPlayDescSchema = function (t) {
return r.Message.setProto3StringField(this, 3, t)
}, proto.webcast.data.PlayMetaInfo.prototype.getPlayLicenseSchema = function () {
return r.Message.getFieldWithDefault(this, 4, "")
}, proto.webcast.data.PlayMetaInfo.prototype.setPlayLicenseSchema = function (t) {
return r.Message.setProto3StringField(this, 4, t)
}, proto.webcast.data.PlayMetaInfo.prototype.getFeatureSchema = function () {
return r.Message.getFieldWithDefault(this, 5, "")
}, proto.webcast.data.PlayMetaInfo.prototype.setFeatureSchema = function (t) {
return r.Message.setProto3StringField(this, 5, t)
}, proto.webcast.data.PlayMetaInfo.prototype.getExchangeRate = function () {
return r.Message.getFieldWithDefault(this, 6, 0)
}, proto.webcast.data.PlayMetaInfo.prototype.setExchangeRate = function (t) {
return r.Message.setProto3IntField(this, 6, t)
},r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.PlayRecord.prototype.toObject = function (t) {
return proto.webcast.data.PlayRecord.toObject(t, this)
}, proto.webcast.data.PlayRecord.toObject = function (t, e) {
var a, o = {
playId: r.Message.getFieldWithDefault(e, 1, "0"),
playIdStr: r.Message.getFieldWithDefault(e, 2, ""),
type: r.Message.getFieldWithDefault(e, 3, 0),
gameId: r.Message.getFieldWithDefault(e, 4, ""),
ownerUid: r.Message.getFieldWithDefault(e, 5, "0"),
roomId: r.Message.getFieldWithDefault(e, 6, "0"),
roomIdStr: r.Message.getFieldWithDefault(e, 7, ""),
desc: r.Message.getFieldWithDefault(e, 8, ""),
fare: r.Message.getFieldWithDefault(e, 9, 0),
fareDesc: r.Message.getFieldWithDefault(e, 10, ""),
peopleCount: r.Message.getFieldWithDefault(e, 11, 0),
status: r.Message.getFieldWithDefault(e, 12, 0),
createTime: r.Message.getFieldWithDefault(e, 13, ""),
updateTime: r.Message.getFieldWithDefault(e, 14, ""),
extra: r.Message.getFieldWithDefault(e, 15, ""),
diamonds: r.Message.getFieldWithDefault(e, 16, 0),
gameIcon: (a = e.getGameIcon()) && s.Image.toObject(t, a),
realPeopleCount: r.Message.getFieldWithDefault(e, 18, 0),
auditDenyReason: r.Message.getFieldWithDefault(e, 19, ""),
finishTime: r.Message.getFieldWithDefault(e, 20, "")
};
return t && (o.$jspbMessageInstance = e), o
}),proto.webcast.data.PlayRecord.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.PlayRecord;
return proto.webcast.data.PlayRecord.deserializeBinaryFromReader(a, e)
},proto.webcast.data.PlayRecord.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = e.readInt64String();
t.setPlayId(a);
break;
case 2:
a = e.readString();
t.setPlayIdStr(a);
break;
case 3:
a = e.readEnum();
t.setType(a);
break;
case 4:
a = e.readString();
t.setGameId(a);
break;
case 5:
a = e.readInt64String();
t.setOwnerUid(a);
break;
case 6:
a = e.readInt64String();
t.setRoomId(a);
break;
case 7:
a = e.readString();
t.setRoomIdStr(a);
break;
case 8:
a = e.readString();
t.setDesc(a);
break;
case 9:
a = e.readInt32();
t.setFare(a);
break;
case 10:
a = e.readString();
t.setFareDesc(a);
break;
case 11:
a = e.readInt32();
t.setPeopleCount(a);
break;
case 12:
a = e.readEnum();
t.setStatus(a);
break;
case 13:
a = e.readString();
t.setCreateTime(a);
break;
case 14:
a = e.readString();
t.setUpdateTime(a);
break;
case 15:
a = e.readString();
t.setExtra(a);
break;
case 16:
a = e.readInt32();
t.setDiamonds(a);
break;
case 17:
a = new s.Image;
e.readMessage(a, s.Image.deserializeBinaryFromReader), t.setGameIcon(a);
break;
case 18:
a = e.readInt32();
t.setRealPeopleCount(a);
break;
case 19:
a = e.readString();
t.setAuditDenyReason(a);
break;
case 20:
a = e.readString();
t.setFinishTime(a);
break;
default:
e.skipField()
}
}
return t
},proto.webcast.data.PlayRecord.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.PlayRecord.serializeBinaryToWriter(this, t), t.getResultBuffer()
},proto.webcast.data.PlayRecord.serializeBinaryToWriter = function (t, e) {
var a = undefined;
a = t.getPlayId(), 0 !== parseInt(a, 10) && e.writeInt64String(1, a), (a = t.getPlayIdStr()).length > 0 && e.writeString(2, a), 0 !== (a = t.getType()) && e.writeEnum(3, a), (a = t.getGameId()).length > 0 && e.writeString(4, a), a = t.getOwnerUid(), 0 !== parseInt(a, 10) && e.writeInt64String(5, a), a = t.getRoomId(), 0 !== parseInt(a, 10) && e.writeInt64String(6, a), (a = t.getRoomIdStr()).length > 0 && e.writeString(7, a), (a = t.getDesc()).length > 0 && e.writeString(8, a), 0 !== (a = t.getFare()) && e.writeInt32(9, a), (a = t.getFareDesc()).length > 0 && e.writeString(10, a), 0 !== (a = t.getPeopleCount()) && e.writeInt32(11, a), 0 !== (a = t.getStatus()) && e.writeEnum(12, a), (a = t.getCreateTime()).length > 0 && e.writeString(13, a), (a = t.getUpdateTime()).length > 0 && e.writeString(14, a), (a = t.getExtra()).length > 0 && e.writeString(15, a), 0 !== (a = t.getDiamonds()) && e.writeInt32(16, a), null != (a = t.getGameIcon()) && e.writeMessage(17, a, s.Image.serializeBinaryToWriter), 0 !== (a = t.getRealPeopleCount()) && e.writeInt32(18, a), (a = t.getAuditDenyReason()).length > 0 && e.writeString(19, a), (a = t.getFinishTime()).length > 0 && e.writeString(20, a)
},proto.webcast.data.PlayRecord.prototype.getPlayId = function () {
return r.Message.getFieldWithDefault(this, 1, "0")
},proto.webcast.data.PlayRecord.prototype.setPlayId = function (t) {
return r.Message.setProto3StringIntField(this, 1, t)
},proto.webcast.data.PlayRecord.prototype.getPlayIdStr = function () {
return r.Message.getFieldWithDefault(this, 2, "")
},proto.webcast.data.PlayRecord.prototype.setPlayIdStr = function (t) {
return r.Message.setProto3StringField(this, 2, t)
},proto.webcast.data.PlayRecord.prototype.getType = function () {
return r.Message.getFieldWithDefault(this, 3, 0)
},proto.webcast.data.PlayRecord.prototype.setType = function (t) {
return r.Message.setProto3EnumField(this, 3, t)
},proto.webcast.data.PlayRecord.prototype.getGameId = function () {
return r.Message.getFieldWithDefault(this, 4, "")
},proto.webcast.data.PlayRecord.prototype.setGameId = function (t) {
return r.Message.setProto3StringField(this, 4, t)
},proto.webcast.data.PlayRecord.prototype.getOwnerUid = function () {
return r.Message.getFieldWithDefault(this, 5, "0")
},proto.webcast.data.PlayRecord.prototype.setOwnerUid = function (t) {
return r.Message.setProto3StringIntField(this, 5, t)
},proto.webcast.data.PlayRecord.prototype.getRoomId = function () {
return r.Message.getFieldWithDefault(this, 6, "0")
},proto.webcast.data.PlayRecord.prototype.setRoomId = function (t) {
return r.Message.setProto3StringIntField(this, 6, t)
},proto.webcast.data.PlayRecord.prototype.getRoomIdStr = function () {
return r.Message.getFieldWithDefault(this, 7, "")
},proto.webcast.data.PlayRecord.prototype.setRoomIdStr = function (t) {
return r.Message.setProto3StringField(this, 7, t)
},proto.webcast.data.PlayRecord.prototype.getDesc = function () {
return r.Message.getFieldWithDefault(this, 8, "")
},proto.webcast.data.PlayRecord.prototype.setDesc = function (t) {
return r.Message.setProto3StringField(this, 8, t)
},proto.webcast.data.PlayRecord.prototype.getFare = function () {
return r.Message.getFieldWithDefault(this, 9, 0)
},proto.webcast.data.PlayRecord.prototype.setFare = function (t) {
return r.Message.setProto3IntField(this, 9, t)
},proto.webcast.data.PlayRecord.prototype.getFareDesc = function () {
return r.Message.getFieldWithDefault(this, 10, "")
},proto.webcast.data.PlayRecord.prototype.setFareDesc = function (t) {
return r.Message.setProto3StringField(this, 10, t)
},proto.webcast.data.PlayRecord.prototype.getPeopleCount = function () {
return r.Message.getFieldWithDefault(this, 11, 0)
},proto.webcast.data.PlayRecord.prototype.setPeopleCount = function (t) {
return r.Message.setProto3IntField(this, 11, t)
},proto.webcast.data.PlayRecord.prototype.getStatus = function () {
return r.Message.getFieldWithDefault(this, 12, 0)
},proto.webcast.data.PlayRecord.prototype.setStatus = function (t) {
return r.Message.setProto3EnumField(this, 12, t)
},proto.webcast.data.PlayRecord.prototype.getCreateTime = function () {
return r.Message.getFieldWithDefault(this, 13, "")
},proto.webcast.data.PlayRecord.prototype.setCreateTime = function (t) {
return r.Message.setProto3StringField(this, 13, t)
},proto.webcast.data.PlayRecord.prototype.getUpdateTime = function () {
return r.Message.getFieldWithDefault(this, 14, "")
},proto.webcast.data.PlayRecord.prototype.setUpdateTime = function (t) {
return r.Message.setProto3StringField(this, 14, t)
},proto.webcast.data.PlayRecord.prototype.getExtra = function () {
return r.Message.getFieldWithDefault(this, 15, "")
},proto.webcast.data.PlayRecord.prototype.setExtra = function (t) {
return r.Message.setProto3StringField(this, 15, t)
},proto.webcast.data.PlayRecord.prototype.getDiamonds = function () {
return r.Message.getFieldWithDefault(this, 16, 0)
},proto.webcast.data.PlayRecord.prototype.setDiamonds = function (t) {
return r.Message.setProto3IntField(this, 16, t)
},proto.webcast.data.PlayRecord.prototype.getGameIcon = function () {
return r.Message.getWrapperField(this, s.Image, 17)
},proto.webcast.data.PlayRecord.prototype.setGameIcon = function (t) {
return r.Message.setWrapperField(this, 17, t)
},proto.webcast.data.PlayRecord.prototype.clearGameIcon = function () {
return this.setGameIcon(undefined)
},proto.webcast.data.PlayRecord.prototype.hasGameIcon = function () {
return null != r.Message.getField(this, 17)
},proto.webcast.data.PlayRecord.prototype.getRealPeopleCount = function () {
return r.Message.getFieldWithDefault(this, 18, 0)
},proto.webcast.data.PlayRecord.prototype.setRealPeopleCount = function (t) {
return r.Message.setProto3IntField(this, 18, t)
},proto.webcast.data.PlayRecord.prototype.getAuditDenyReason = function () {
return r.Message.getFieldWithDefault(this, 19, "")
},proto.webcast.data.PlayRecord.prototype.setAuditDenyReason = function (t) {
return r.Message.setProto3StringField(this, 19, t)
},proto.webcast.data.PlayRecord.prototype.getFinishTime = function () {
return r.Message.getFieldWithDefault(this, 20, "")
},proto.webcast.data.PlayRecord.prototype.setFinishTime = function (t) {
return r.Message.setProto3StringField(this, 20, t)
},r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.PlayTeamMember.prototype.toObject = function (t) {
return proto.webcast.data.PlayTeamMember.toObject(t, this)
}, proto.webcast.data.PlayTeamMember.toObject = function (t, e) {
var a,
o = {user: (a = e.getUser()) && n.User.toObject(t, a), status: r.Message.getFieldWithDefault(e, 2, 0)};
return t && (o.$jspbMessageInstance = e), o
}),proto.webcast.data.PlayTeamMember.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.PlayTeamMember;
return proto.webcast.data.PlayTeamMember.deserializeBinaryFromReader(a, e)
},proto.webcast.data.PlayTeamMember.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = new n.User;
e.readMessage(a, n.User.deserializeBinaryFromReader), t.setUser(a);
break;
case 2:
a = e.readEnum();
t.setStatus(a);
break;
default:
e.skipField()
}
}
return t
},proto.webcast.data.PlayTeamMember.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.PlayTeamMember.serializeBinaryToWriter(this, t), t.getResultBuffer()
},proto.webcast.data.PlayTeamMember.serializeBinaryToWriter = function (t, e) {
var a = undefined;
null != (a = t.getUser()) && e.writeMessage(1, a, n.User.serializeBinaryToWriter), 0 !== (a = t.getStatus()) && e.writeEnum(2, a)
},proto.webcast.data.PlayTeamMember.prototype.getUser = function () {
return r.Message.getWrapperField(this, n.User, 1)
},proto.webcast.data.PlayTeamMember.prototype.setUser = function (t) {
return r.Message.setWrapperField(this, 1, t)
},proto.webcast.data.PlayTeamMember.prototype.clearUser = function () {
return this.setUser(undefined)
},proto.webcast.data.PlayTeamMember.prototype.hasUser = function () {
return null != r.Message.getField(this, 1)
},proto.webcast.data.PlayTeamMember.prototype.getStatus = function () {
return r.Message.getFieldWithDefault(this, 2, 0)
},proto.webcast.data.PlayTeamMember.prototype.setStatus = function (t) {
return r.Message.setProto3EnumField(this, 2, t)
},r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.PlayReportTag.prototype.toObject = function (t) {
return proto.webcast.data.PlayReportTag.toObject(t, this)
}, proto.webcast.data.PlayReportTag.toObject = function (t, e) {
var a = {
serialId: r.Message.getFieldWithDefault(e, 1, "0"),
serialStr: r.Message.getFieldWithDefault(e, 2, "")
};
return t && (a.$jspbMessageInstance = e), a
}),proto.webcast.data.PlayReportTag.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.PlayReportTag;
return proto.webcast.data.PlayReportTag.deserializeBinaryFromReader(a, e)
},proto.webcast.data.PlayReportTag.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = e.readInt64String();
t.setSerialId(a);
break;
case 2:
a = e.readString();
t.setSerialStr(a);
break;
default:
e.skipField()
}
}
return t
},proto.webcast.data.PlayReportTag.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.PlayReportTag.serializeBinaryToWriter(this, t), t.getResultBuffer()
},proto.webcast.data.PlayReportTag.serializeBinaryToWriter = function (t, e) {
var a = undefined;
a = t.getSerialId(), 0 !== parseInt(a, 10) && e.writeInt64String(1, a), (a = t.getSerialStr()).length > 0 && e.writeString(2, a)
},proto.webcast.data.PlayReportTag.prototype.getSerialId = function () {
return r.Message.getFieldWithDefault(this, 1, "0")
},proto.webcast.data.PlayReportTag.prototype.setSerialId = function (t) {
return r.Message.setProto3StringIntField(this, 1, t)
},proto.webcast.data.PlayReportTag.prototype.getSerialStr = function () {
return r.Message.getFieldWithDefault(this, 2, "")
},proto.webcast.data.PlayReportTag.prototype.setSerialStr = function (t) {
return r.Message.setProto3StringField(this, 2, t)
},proto.webcast.data.PlayServiceType = {
TYPEUNKNOWN: 0,
TEAM: 1
},proto.webcast.data.PlayStatus = {
PLAYSTATUSALL: 0,
PLAYSTATUSAUDITING: 1,
PLAYSTATUSAUDITDENY: 2,
PLAYSTATUSSTARTED: 3,
PLAYSTATUSCLOSED: 4,
PLAYSTATUSINTERNALERROR: 5,
PLAYSTATUSWAITINGCONFIRM: 6,
PLAYSTATUSFINISHED: 7
},proto.webcast.data.PlayMemberStatus = {
STATUSUNKNOWN: 0,
READY: 1,
INVITED: 2,
JOINEDGAME: 3
},proto.webcast.data.OrderAuditStatus = {
ORDERAUDITSTATUSUNKNOWN: 0,
UNSUBMITTED: 1,
INTHEAUDIT: 2,
AUDITPASSED: 3,
AUDITNOTPASSED: 4
},o.object.extend(e, proto.webcast.data)
}, 36973: function (t, e, a) {
var r = a(47865), o = r, i = function () {
return this ? this : "undefined" != typeof window ? window : void 0 !== i ? i : "undefined" != typeof self ? self : Function("return this")()
}.call(null), s = a(8411);
o.object.extend(proto, s);
var n = a(64925);
o.object.extend(proto, n);
var d = a(99222);
o.object.extend(proto, d);
var c = a(91057);
o.object.extend(proto, c), o.exportSymbol("proto.webcast.data.AfterSendAction", null, i), o.exportSymbol("proto.webcast.data.AnchorGiftData", null, i), o.exportSymbol("proto.webcast.data.AssetEffectMixInfo", null, i), o.exportSymbol("proto.webcast.data.BuffLevel", null, i), o.exportSymbol("proto.webcast.data.CardLockInfo", null, i), o.exportSymbol("proto.webcast.data.CardLockStatus", null, i), o.exportSymbol("proto.webcast.data.DIYGiftCardInfo", null, i), o.exportSymbol("proto.webcast.data.DIYGiftToolbarInfo", null, i), o.exportSymbol("proto.webcast.data.DIYItemInfo", null, i), o.exportSymbol("proto.webcast.data.DIYPageEnterButton", null, i), o.exportSymbol("proto.webcast.data.DoodleTemplate", null, i), o.exportSymbol("proto.webcast.data.EffectMixImageInfo", null, i), o.exportSymbol("proto.webcast.data.FreeCellData", null, i), o.exportSymbol("proto.webcast.data.FreeGift", null, i), o.exportSymbol("proto.webcast.data.GameGiftData", null, i), o.exportSymbol("proto.webcast.data.GameGiftData.MonkeyData", null, i), o.exportSymbol("proto.webcast.data.GameGiftData.MonkeyData.Range", null, i), o.exportSymbol("proto.webcast.data.GiftBanner", null, i), o.exportSymbol("proto.webcast.data.GiftBuffInfo", null, i), o.exportSymbol("proto.webcast.data.GiftExtra", null, i), o.exportSymbol("proto.webcast.data.GiftGroupInfo", null, i), o.exportSymbol("proto.webcast.data.GiftLockStatus", null, i), o.exportSymbol("proto.webcast.data.GiftPanelOperation", null, i), o.exportSymbol("proto.webcast.data.GiftPreviewInfo", null, i), o.exportSymbol("proto.webcast.data.GiftStruct", null, i), o.exportSymbol("proto.webcast.data.GiftStruct.GiftMsgBoard", null, i), o.exportSymbol("proto.webcast.data.GiftStruct.GiftStructFansClubInfo", null, i), o.exportSymbol("proto.webcast.data.GiftTip", null, i), o.exportSymbol("proto.webcast.data.GiftTrayInfo", null, i), o.exportSymbol("proto.webcast.data.LuckyMoneyGiftMeta", null, i), o.exportSymbol("proto.webcast.data.MonkeyDataRedis", null, i), o.exportSymbol("proto.webcast.data.MonkeyGiftRankData", null, i), o.exportSymbol("proto.webcast.data.MonkeyGiftRankData.Rank", null, i), o.exportSymbol("proto.webcast.data.MysteryShopStatus", null, i), o.exportSymbol("proto.webcast.data.PluginInfo", null, i), o.exportSymbol("proto.webcast.data.ReqExtraType", null, i), o.exportSymbol("proto.webcast.data.SubscribeGiftPackInfo", null, i), proto.webcast.data.GiftPreviewInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GiftPreviewInfo, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftPreviewInfo.displayName = "proto.webcast.data.GiftPreviewInfo"), proto.webcast.data.GiftBuffInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GiftBuffInfo, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftBuffInfo.displayName = "proto.webcast.data.GiftBuffInfo"), proto.webcast.data.GiftTip = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GiftTip, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftTip.displayName = "proto.webcast.data.GiftTip"), proto.webcast.data.SubscribeGiftPackInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.SubscribeGiftPackInfo, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.SubscribeGiftPackInfo.displayName = "proto.webcast.data.SubscribeGiftPackInfo"), proto.webcast.data.GiftStruct = function (t) {
r.Message.initialize(this, t, 0, -1, proto.webcast.data.GiftStruct.repeatedFields_, null)
}, o.inherits(proto.webcast.data.GiftStruct, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftStruct.displayName = "proto.webcast.data.GiftStruct"), proto.webcast.data.GiftStruct.GiftStructFansClubInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GiftStruct.GiftStructFansClubInfo, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftStruct.GiftStructFansClubInfo.displayName = "proto.webcast.data.GiftStruct.GiftStructFansClubInfo"), proto.webcast.data.GiftStruct.GiftMsgBoard = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GiftStruct.GiftMsgBoard, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftStruct.GiftMsgBoard.displayName = "proto.webcast.data.GiftStruct.GiftMsgBoard"), proto.webcast.data.GiftGroupInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GiftGroupInfo, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftGroupInfo.displayName = "proto.webcast.data.GiftGroupInfo"), proto.webcast.data.GiftPanelOperation = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GiftPanelOperation, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftPanelOperation.displayName = "proto.webcast.data.GiftPanelOperation"), proto.webcast.data.FreeGift = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.FreeGift, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.FreeGift.displayName = "proto.webcast.data.FreeGift"), proto.webcast.data.LuckyMoneyGiftMeta = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.LuckyMoneyGiftMeta, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.LuckyMoneyGiftMeta.displayName = "proto.webcast.data.LuckyMoneyGiftMeta"), proto.webcast.data.FreeCellData = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.FreeCellData, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.FreeCellData.displayName = "proto.webcast.data.FreeCellData"), proto.webcast.data.GameGiftData = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GameGiftData, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GameGiftData.displayName = "proto.webcast.data.GameGiftData"), proto.webcast.data.GameGiftData.MonkeyData = function (t) {
r.Message.initialize(this, t, 0, -1, proto.webcast.data.GameGiftData.MonkeyData.repeatedFields_, null)
}, o.inherits(proto.webcast.data.GameGiftData.MonkeyData, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GameGiftData.MonkeyData.displayName = "proto.webcast.data.GameGiftData.MonkeyData"), proto.webcast.data.GameGiftData.MonkeyData.Range = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GameGiftData.MonkeyData.Range, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GameGiftData.MonkeyData.Range.displayName = "proto.webcast.data.GameGiftData.MonkeyData.Range"), proto.webcast.data.AnchorGiftData = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.AnchorGiftData, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.AnchorGiftData.displayName = "proto.webcast.data.AnchorGiftData"), proto.webcast.data.MonkeyDataRedis = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.MonkeyDataRedis, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.MonkeyDataRedis.displayName = "proto.webcast.data.MonkeyDataRedis"), proto.webcast.data.MonkeyGiftRankData = function (t) {
r.Message.initialize(this, t, 0, -1, proto.webcast.data.MonkeyGiftRankData.repeatedFields_, null)
}, o.inherits(proto.webcast.data.MonkeyGiftRankData, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.MonkeyGiftRankData.displayName = "proto.webcast.data.MonkeyGiftRankData"), proto.webcast.data.MonkeyGiftRankData.Rank = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.MonkeyGiftRankData.Rank, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.MonkeyGiftRankData.Rank.displayName = "proto.webcast.data.MonkeyGiftRankData.Rank"), proto.webcast.data.DoodleTemplate = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.DoodleTemplate, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.DoodleTemplate.displayName = "proto.webcast.data.DoodleTemplate"), proto.webcast.data.GiftBanner = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
}, o.inherits(proto.webcast.data.GiftBanner, r.Message), o.DEBUG && !COMPILED && (proto.webcast.data.GiftBanner.displayName = "proto.webcast.data.GiftBanner"),proto.webcast.data.EffectMixImageInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
},o.inherits(proto.webcast.data.EffectMixImageInfo, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.EffectMixImageInfo.displayName = "proto.webcast.data.EffectMixImageInfo"),proto.webcast.data.AssetEffectMixInfo = function (t) {
r.Message.initialize(this, t, 0, -1, proto.webcast.data.AssetEffectMixInfo.repeatedFields_, null)
},o.inherits(proto.webcast.data.AssetEffectMixInfo, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.AssetEffectMixInfo.displayName = "proto.webcast.data.AssetEffectMixInfo"),proto.webcast.data.GiftTrayInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
},o.inherits(proto.webcast.data.GiftTrayInfo, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.GiftTrayInfo.displayName = "proto.webcast.data.GiftTrayInfo"),proto.webcast.data.GiftExtra = function (t) {
r.Message.initialize(this, t, 0, -1, proto.webcast.data.GiftExtra.repeatedFields_, null)
},o.inherits(proto.webcast.data.GiftExtra, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.GiftExtra.displayName = "proto.webcast.data.GiftExtra"),proto.webcast.data.DIYGiftToolbarInfo = function (t) {
r.Message.initialize(this, t, 0, -1, proto.webcast.data.DIYGiftToolbarInfo.repeatedFields_, null)
},o.inherits(proto.webcast.data.DIYGiftToolbarInfo, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.DIYGiftToolbarInfo.displayName = "proto.webcast.data.DIYGiftToolbarInfo"),proto.webcast.data.DIYPageEnterButton = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
},o.inherits(proto.webcast.data.DIYPageEnterButton, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.DIYPageEnterButton.displayName = "proto.webcast.data.DIYPageEnterButton"),proto.webcast.data.PluginInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
},o.inherits(proto.webcast.data.PluginInfo, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.PluginInfo.displayName = "proto.webcast.data.PluginInfo"),proto.webcast.data.DIYItemInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
},o.inherits(proto.webcast.data.DIYItemInfo, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.DIYItemInfo.displayName = "proto.webcast.data.DIYItemInfo"),proto.webcast.data.CardLockInfo = function (t) {
r.Message.initialize(this, t, 0, -1, null, null)
},o.inherits(proto.webcast.data.CardLockInfo, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.CardLockInfo.displayName = "proto.webcast.data.CardLockInfo"),proto.webcast.data.DIYGiftCardInfo = function (t) {
r.Message.initialize(this, t, 0, -1, proto.webcast.data.DIYGiftCardInfo.repeatedFields_, null)
},o.inherits(proto.webcast.data.DIYGiftCardInfo, r.Message),o.DEBUG && !COMPILED && (proto.webcast.data.DIYGiftCardInfo.displayName = "proto.webcast.data.DIYGiftCardInfo"),r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.GiftPreviewInfo.prototype.toObject = function (t) {
return proto.webcast.data.GiftPreviewInfo.toObject(t, this)
}, proto.webcast.data.GiftPreviewInfo.toObject = function (t, e) {
var a = {
lockStatus: r.Message.getFieldWithDefault(e, 1, "0"),
clientBlockUseSchemeUrl: r.Message.getBooleanFieldWithDefault(e, 2, !1),
blockSchemeUrl: r.Message.getFieldWithDefault(e, 3, ""),
clientCheckLeftDiamond: r.Message.getBooleanFieldWithDefault(e, 4, !1),
blockToast: r.Message.getFieldWithDefault(e, 5, "")
};
return t && (a.$jspbMessageInstance = e), a
}),proto.webcast.data.GiftPreviewInfo.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.GiftPreviewInfo;
return proto.webcast.data.GiftPreviewInfo.deserializeBinaryFromReader(a, e)
},proto.webcast.data.GiftPreviewInfo.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = e.readInt64String();
t.setLockStatus(a);
break;
case 2:
a = e.readBool();
t.setClientBlockUseSchemeUrl(a);
break;
case 3:
a = e.readString();
t.setBlockSchemeUrl(a);
break;
case 4:
a = e.readBool();
t.setClientCheckLeftDiamond(a);
break;
case 5:
a = e.readString();
t.setBlockToast(a);
break;
default:
e.skipField()
}
}
return t
},proto.webcast.data.GiftPreviewInfo.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.GiftPreviewInfo.serializeBinaryToWriter(this, t), t.getResultBuffer()
},proto.webcast.data.GiftPreviewInfo.serializeBinaryToWriter = function (t, e) {
var a = undefined;
a = t.getLockStatus(), 0 !== parseInt(a, 10) && e.writeInt64String(1, a), (a = t.getClientBlockUseSchemeUrl()) && e.writeBool(2, a), (a = t.getBlockSchemeUrl()).length > 0 && e.writeString(3, a), (a = t.getClientCheckLeftDiamond()) && e.writeBool(4, a), (a = t.getBlockToast()).length > 0 && e.writeString(5, a)
},proto.webcast.data.GiftPreviewInfo.prototype.getLockStatus = function () {
return r.Message.getFieldWithDefault(this, 1, "0")
},proto.webcast.data.GiftPreviewInfo.prototype.setLockStatus = function (t) {
return r.Message.setProto3StringIntField(this, 1, t)
},proto.webcast.data.GiftPreviewInfo.prototype.getClientBlockUseSchemeUrl = function () {
return r.Message.getBooleanFieldWithDefault(this, 2, !1)
},proto.webcast.data.GiftPreviewInfo.prototype.setClientBlockUseSchemeUrl = function (t) {
return r.Message.setProto3BooleanField(this, 2, t)
},proto.webcast.data.GiftPreviewInfo.prototype.getBlockSchemeUrl = function () {
return r.Message.getFieldWithDefault(this, 3, "")
},proto.webcast.data.GiftPreviewInfo.prototype.setBlockSchemeUrl = function (t) {
return r.Message.setProto3StringField(this, 3, t)
},proto.webcast.data.GiftPreviewInfo.prototype.getClientCheckLeftDiamond = function () {
return r.Message.getBooleanFieldWithDefault(this, 4, !1)
},proto.webcast.data.GiftPreviewInfo.prototype.setClientCheckLeftDiamond = function (t) {
return r.Message.setProto3BooleanField(this, 4, t)
},proto.webcast.data.GiftPreviewInfo.prototype.getBlockToast = function () {
return r.Message.getFieldWithDefault(this, 5, "")
},proto.webcast.data.GiftPreviewInfo.prototype.setBlockToast = function (t) {
return r.Message.setProto3StringField(this, 5, t)
},r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.GiftBuffInfo.prototype.toObject = function (t) {
return proto.webcast.data.GiftBuffInfo.toObject(t, this)
}, proto.webcast.data.GiftBuffInfo.toObject = function (t, e) {
var a, o = {
text: r.Message.getFieldWithDefault(e, 1, ""),
textColor: r.Message.getFieldWithDefault(e, 2, ""),
bgImg: (a = e.getBgImg()) && s.Image.toObject(t, a),
sweepLightImg: (a = e.getSweepLightImg()) && s.Image.toObject(t, a),
buffGiftDescribeImg: (a = e.getBuffGiftDescribeImg()) && s.Image.toObject(t, a),
buffGiftId: r.Message.getFieldWithDefault(e, 6, "0"),
buffLevel: r.Message.getFieldWithDefault(e, 7, 0),
buffCanSend: r.Message.getBooleanFieldWithDefault(e, 8, !1),
buffDiamondCount: r.Message.getFieldWithDefault(e, 9, "0"),
lockToast: r.Message.getFieldWithDefault(e, 10, "")
};
return t && (o.$jspbMessageInstance = e), o
}),proto.webcast.data.GiftBuffInfo.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.GiftBuffInfo;
return proto.webcast.data.GiftBuffInfo.deserializeBinaryFromReader(a, e)
},proto.webcast.data.GiftBuffInfo.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = e.readString();
t.setText(a);
break;
case 2:
a = e.readString();
t.setTextColor(a);
break;
case 3:
a = new s.Image;
e.readMessage(a, s.Image.deserializeBinaryFromReader), t.setBgImg(a);
break;
case 4:
a = new s.Image;
e.readMessage(a, s.Image.deserializeBinaryFromReader), t.setSweepLightImg(a);
break;
case 5:
a = new s.Image;
e.readMessage(a, s.Image.deserializeBinaryFromReader), t.setBuffGiftDescribeImg(a);
break;
case 6:
a = e.readInt64String();
t.setBuffGiftId(a);
break;
case 7:
a = e.readInt32();
t.setBuffLevel(a);
break;
case 8:
a = e.readBool();
t.setBuffCanSend(a);
break;
case 9:
a = e.readInt64String();
t.setBuffDiamondCount(a);
break;
case 10:
a = e.readString();
t.setLockToast(a);
break;
default:
e.skipField()
}
}
return t
},proto.webcast.data.GiftBuffInfo.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.GiftBuffInfo.serializeBinaryToWriter(this, t), t.getResultBuffer()
},proto.webcast.data.GiftBuffInfo.serializeBinaryToWriter = function (t, e) {
var a = undefined;
(a = t.getText()).length > 0 && e.writeString(1, a), (a = t.getTextColor()).length > 0 && e.writeString(2, a), null != (a = t.getBgImg()) && e.writeMessage(3, a, s.Image.serializeBinaryToWriter), null != (a = t.getSweepLightImg()) && e.writeMessage(4, a, s.Image.serializeBinaryToWriter), null != (a = t.getBuffGiftDescribeImg()) && e.writeMessage(5, a, s.Image.serializeBinaryToWriter), a = t.getBuffGiftId(), 0 !== parseInt(a, 10) && e.writeInt64String(6, a), 0 !== (a = t.getBuffLevel()) && e.writeInt32(7, a), (a = t.getBuffCanSend()) && e.writeBool(8, a), a = t.getBuffDiamondCount(), 0 !== parseInt(a, 10) && e.writeInt64String(9, a), (a = t.getLockToast()).length > 0 && e.writeString(10, a)
},proto.webcast.data.GiftBuffInfo.prototype.getText = function () {
return r.Message.getFieldWithDefault(this, 1, "")
},proto.webcast.data.GiftBuffInfo.prototype.setText = function (t) {
return r.Message.setProto3StringField(this, 1, t)
},proto.webcast.data.GiftBuffInfo.prototype.getTextColor = function () {
return r.Message.getFieldWithDefault(this, 2, "")
},proto.webcast.data.GiftBuffInfo.prototype.setTextColor = function (t) {
return r.Message.setProto3StringField(this, 2, t)
},proto.webcast.data.GiftBuffInfo.prototype.getBgImg = function () {
return r.Message.getWrapperField(this, s.Image, 3)
},proto.webcast.data.GiftBuffInfo.prototype.setBgImg = function (t) {
return r.Message.setWrapperField(this, 3, t)
},proto.webcast.data.GiftBuffInfo.prototype.clearBgImg = function () {
return this.setBgImg(undefined)
},proto.webcast.data.GiftBuffInfo.prototype.hasBgImg = function () {
return null != r.Message.getField(this, 3)
},proto.webcast.data.GiftBuffInfo.prototype.getSweepLightImg = function () {
return r.Message.getWrapperField(this, s.Image, 4)
},proto.webcast.data.GiftBuffInfo.prototype.setSweepLightImg = function (t) {
return r.Message.setWrapperField(this, 4, t)
},proto.webcast.data.GiftBuffInfo.prototype.clearSweepLightImg = function () {
return this.setSweepLightImg(undefined)
},proto.webcast.data.GiftBuffInfo.prototype.hasSweepLightImg = function () {
return null != r.Message.getField(this, 4)
},proto.webcast.data.GiftBuffInfo.prototype.getBuffGiftDescribeImg = function () {
return r.Message.getWrapperField(this, s.Image, 5)
},proto.webcast.data.GiftBuffInfo.prototype.setBuffGiftDescribeImg = function (t) {
return r.Message.setWrapperField(this, 5, t)
},proto.webcast.data.GiftBuffInfo.prototype.clearBuffGiftDescribeImg = function () {
return this.setBuffGiftDescribeImg(undefined)
},proto.webcast.data.GiftBuffInfo.prototype.hasBuffGiftDescribeImg = function () {
return null != r.Message.getField(this, 5)
},proto.webcast.data.GiftBuffInfo.prototype.getBuffGiftId = function () {
return r.Message.getFieldWithDefault(this, 6, "0")
},proto.webcast.data.GiftBuffInfo.prototype.setBuffGiftId = function (t) {
return r.Message.setProto3StringIntField(this, 6, t)
},proto.webcast.data.GiftBuffInfo.prototype.getBuffLevel = function () {
return r.Message.getFieldWithDefault(this, 7, 0)
},proto.webcast.data.GiftBuffInfo.prototype.setBuffLevel = function (t) {
return r.Message.setProto3IntField(this, 7, t)
},proto.webcast.data.GiftBuffInfo.prototype.getBuffCanSend = function () {
return r.Message.getBooleanFieldWithDefault(this, 8, !1)
},proto.webcast.data.GiftBuffInfo.prototype.setBuffCanSend = function (t) {
return r.Message.setProto3BooleanField(this, 8, t)
},proto.webcast.data.GiftBuffInfo.prototype.getBuffDiamondCount = function () {
return r.Message.getFieldWithDefault(this, 9, "0")
},proto.webcast.data.GiftBuffInfo.prototype.setBuffDiamondCount = function (t) {
return r.Message.setProto3StringIntField(this, 9, t)
},proto.webcast.data.GiftBuffInfo.prototype.getLockToast = function () {
return r.Message.getFieldWithDefault(this, 10, "")
},proto.webcast.data.GiftBuffInfo.prototype.setLockToast = function (t) {
return r.Message.setProto3StringField(this, 10, t)
},r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.GiftTip.prototype.toObject = function (t) {
return proto.webcast.data.GiftTip.toObject(t, this)
}, proto.webcast.data.GiftTip.toObject = function (t, e) {
var a, o = {
displayText: (a = e.getDisplayText()) && d.Text.toObject(t, a),
backgroundColor: r.Message.getFieldWithDefault(e, 2, ""),
prefixImage: (a = e.getPrefixImage()) && s.Image.toObject(t, a)
};
return t && (o.$jspbMessageInstance = e), o
}),proto.webcast.data.GiftTip.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.GiftTip;
return proto.webcast.data.GiftTip.deserializeBinaryFromReader(a, e)
},proto.webcast.data.GiftTip.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = new d.Text;
e.readMessage(a, d.Text.deserializeBinaryFromReader), t.setDisplayText(a);
break;
case 2:
a = e.readString();
t.setBackgroundColor(a);
break;
case 3:
a = new s.Image;
e.readMessage(a, s.Image.deserializeBinaryFromReader), t.setPrefixImage(a);
break;
default:
e.skipField()
}
}
return t
},proto.webcast.data.GiftTip.prototype.serializeBinary = function () {
var t = new r.BinaryWriter;
return proto.webcast.data.GiftTip.serializeBinaryToWriter(this, t), t.getResultBuffer()
},proto.webcast.data.GiftTip.serializeBinaryToWriter = function (t, e) {
var a = undefined;
null != (a = t.getDisplayText()) && e.writeMessage(1, a, d.Text.serializeBinaryToWriter), (a = t.getBackgroundColor()).length > 0 && e.writeString(2, a), null != (a = t.getPrefixImage()) && e.writeMessage(3, a, s.Image.serializeBinaryToWriter)
},proto.webcast.data.GiftTip.prototype.getDisplayText = function () {
return r.Message.getWrapperField(this, d.Text, 1)
},proto.webcast.data.GiftTip.prototype.setDisplayText = function (t) {
return r.Message.setWrapperField(this, 1, t)
},proto.webcast.data.GiftTip.prototype.clearDisplayText = function () {
return this.setDisplayText(undefined)
},proto.webcast.data.GiftTip.prototype.hasDisplayText = function () {
return null != r.Message.getField(this, 1)
},proto.webcast.data.GiftTip.prototype.getBackgroundColor = function () {
return r.Message.getFieldWithDefault(this, 2, "")
},proto.webcast.data.GiftTip.prototype.setBackgroundColor = function (t) {
return r.Message.setProto3StringField(this, 2, t)
},proto.webcast.data.GiftTip.prototype.getPrefixImage = function () {
return r.Message.getWrapperField(this, s.Image, 3)
},proto.webcast.data.GiftTip.prototype.setPrefixImage = function (t) {
return r.Message.setWrapperField(this, 3, t)
},proto.webcast.data.GiftTip.prototype.clearPrefixImage = function () {
return this.setPrefixImage(undefined)
},proto.webcast.data.GiftTip.prototype.hasPrefixImage = function () {
return null != r.Message.getField(this, 3)
},r.Message.GENERATE_TO_OBJECT && (proto.webcast.data.SubscribeGiftPackInfo.prototype.toObject = function (t) {
return proto.webcast.data.SubscribeGiftPackInfo.toObject(t, this)
}, proto.webcast.data.SubscribeGiftPackInfo.toObject = function (t, e) {
var a = {
relatedGiftId: r.Message.getFieldWithDefault(e, 1, "0"),
offlineTimeSecond: r.Message.getFieldWithDefault(e, 2, "0"),
leftScores: r.Message.getFieldWithDefault(e, 4, 0),
entranceSchemeUrl: r.Message.getFieldWithDefault(e, 5, ""),
entranceSchemeUrlQueryParams: r.Message.getFieldWithDefault(e, 6, "")
};
return t && (a.$jspbMessageInstance = e), a
}),proto.webcast.data.SubscribeGiftPackInfo.deserializeBinary = function (t) {
var e = new r.BinaryReader(t), a = new proto.webcast.data.SubscribeGiftPackInfo;
return proto.webcast.data.SubscribeGiftPackInfo.deserializeBinaryFromReader(a, e)
},proto.webcast.data.SubscribeGiftPackInfo.deserializeBinaryFromReader = function (t, e) {
for (; e.nextField() && !e.isEndGroup();) {
switch (e.getFieldNumber()) {
case 1:
var a = e.readInt64String();
t.setRelatedGiftId(a);
break;
case 2:
a = e.readInt64String();
t.setOfflineTimeSecond(a);
break;
case 4:
a = e.readInt32();
t.setLeftScores(a);
break;
case 5:
a = e.readString();
t.setEntranceSchemeUrl(a);
break;
case 6:
a = e.readString();
t.setEntranceSchemeUrlQueryParams(a);
break;
default: