-
Notifications
You must be signed in to change notification settings - Fork 3
/
LangManager.lua
2525 lines (2520 loc) · 87.3 KB
/
LangManager.lua
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
-- This file is generated by program!
-- Don't change it manaully.
-- Author: zerospace007@163.com NormanYang
-- Source file: LangManager.xlsx
-- Created at: Apr 2019
LangManager = {}
local this = LangManager
this["TxtStory1000"] = "二十年%s都是%d梦啊 Start"
this["TxtStory1001"] = "二十年都是梦啊 "
this["TxtStory1002"] = "二十年都是梦啊 "
this["TxtStory1003"] = "二十年都是梦啊 "
this["TxtStory1004"] = "二十年都是梦啊 "
this["TxtStory1005"] = "二十年都是梦啊 "
this["TxtStory1006"] = "二十年都是梦啊 "
this["TxtStory1007"] = "二十年都是梦啊 "
this["TxtStory1008"] = "二十年都是梦啊 "
this["TxtStory1009"] = "二十年都是梦啊 "
this["TxtStory1010"] = "二十年都是梦啊 "
this["TxtStory1011"] = "二十年都是梦啊 "
this["TxtStory1012"] = "二十年都是梦啊 "
this["TxtStory1013"] = "二十年都是梦啊 "
this["TxtStory1014"] = "二十年都是梦啊 "
this["TxtStory1015"] = "二十年都是梦啊 "
this["TxtStory1016"] = "二十年都是梦啊 "
this["TxtStory1017"] = "二十年都是梦啊 "
this["TxtStory1018"] = "二十年都是梦啊 "
this["TxtStory1019"] = "二十年都是梦啊 "
this["TxtStory1020"] = "二十年都是梦啊 "
this["TxtStory1021"] = "二十年都是梦啊 "
this["TxtStory1022"] = "二十年都是梦啊 "
this["TxtStory1023"] = "二十年都是梦啊 "
this["TxtStory1024"] = "二十年都是梦啊 "
this["TxtStory1025"] = "二十年都是梦啊 "
this["TxtStory1026"] = "二十年都是梦啊 "
this["TxtStory1027"] = "二十年都是梦啊 "
this["TxtStory1028"] = "二十年都是梦啊 "
this["TxtStory1029"] = "二十年都是梦啊 "
this["TxtStory1030"] = "二十年都是梦啊 "
this["TxtStory1031"] = "二十年都是梦啊 "
this["TxtStory1032"] = "二十年都是梦啊 "
this["TxtStory1033"] = "二十年都是梦啊 End"
this["TxtUI1000"] = "是什么东东 Start"
this["TxtUI1001"] = "是什么东东"
this["TxtUI1002"] = "是什么东东"
this["TxtUI1003"] = "是什么东东"
this["TxtUI1004"] = "是什么东东"
this["TxtUI1005"] = "是什么东东"
this["TxtUI1006"] = "是什么东东"
this["TxtUI1007"] = "是什么东东"
this["TxtUI1008"] = "是什么东东"
this["TxtUI1009"] = "是什么东东"
this["TxtUI1010"] = "是什么东东"
this["TxtUI1011"] = "是什么东东"
this["TxtUI1012"] = "是什么东东"
this["TxtUI1013"] = "是什么东东"
this["TxtUI1014"] = "是什么东东"
this["TxtUI1015"] = "是什么东东"
this["TxtUI1016"] = "是什么东东"
this["TxtUI1017"] = "是什么东东"
this["TxtUI1018"] = "是什么东东"
this["TxtUI1019"] = "是什么东东"
this["TxtUI1020"] = "是什么东东"
this["TxtUI1021"] = "是什么东东"
this["TxtUI1022"] = "是什么东东"
this["TxtUI1023"] = "是什么东东"
this["TxtUI1024"] = "是什么东东"
this["TxtUI1025"] = "是什么东东"
this["TxtUI1026"] = "是什么东东"
this["TxtUI1027"] = "是什么东东"
this["TxtUI1028"] = "是什么东东"
this["TxtUI1029"] = "是什么东东"
this["TxtUI1030"] = "是什么东东"
this["TxtUI1031"] = "是什么东东"
this["TxtUI1032"] = "是什么东东"
this["TxtUI1033"] = "是什么东东 End"
this["TxtTitle1000"] = "创建磁卡是不可借此撒 Start"
this["TxtTitle1001"] = "创建磁卡是不可借此撒"
this["TxtTitle1002"] = "创建磁卡是不可借此撒"
this["TxtTitle1003"] = "创建磁卡是不可借此撒"
this["TxtTitle1004"] = "创建磁卡是不可借此撒"
this["TxtTitle1005"] = "创建磁卡是不可借此撒"
this["TxtTitle1006"] = "创建磁卡是不可借此撒"
this["TxtTitle1007"] = "创建磁卡是不可借此撒"
this["TxtTitle1008"] = "创建磁卡是不可借此撒"
this["TxtTitle1009"] = "创建磁卡是不可借此撒"
this["TxtTitle1010"] = "创建磁卡是不可借此撒"
this["TxtTitle1011"] = "创建磁卡是不可借此撒"
this["TxtTitle1012"] = "创建磁卡是不可借此撒"
this["TxtTitle1013"] = "创建磁卡是不可借此撒"
this["TxtTitle1014"] = "创建磁卡是不可借此撒"
this["TxtTitle1015"] = "创建磁卡是不可借此撒"
this["TxtTitle1016"] = "创建磁卡是不可借此撒"
this["TxtTitle1017"] = "创建磁卡是不可借此撒"
this["TxtTitle1018"] = "创建磁卡是不可借此撒"
this["TxtTitle1019"] = "创建磁卡是不可借此撒"
this["TxtTitle1020"] = "创建磁卡是不可借此撒"
this["TxtTitle1021"] = "创建磁卡是不可借此撒"
this["TxtTitle1022"] = "创建磁卡是不可借此撒"
this["TxtTitle1023"] = "创建磁卡是不可借此撒"
this["TxtTitle1024"] = "创建磁卡是不可借此撒"
this["TxtTitle1025"] = "创建磁卡是不可借此撒"
this["TxtTitle1026"] = "创建磁卡是不可借此撒"
this["TxtTitle1027"] = "创建磁卡是不可借此撒"
this["TxtTitle1028"] = "创建磁卡是不可借此撒"
this["TxtTitle1029"] = "创建磁卡是不可借此撒"
this["TxtTitle1030"] = "创建磁卡是不可借此撒"
this["TxtTitle1031"] = "创建磁卡是不可借此撒"
this["TxtTitle1032"] = "创建磁卡是不可借此撒"
this["TxtTitle1033"] = "创建磁卡是不可借此撒 End"
this["TxtErrorCode0"] = "默认错误"
this["TxtErrorCode100"] = "登录关键字错误"
this["TxtErrorCode101"] = "账号在其他位置登录"
this["TxtErrorCode102"] = "账号在其他位置登录"
this["TxtErrorCode103"] = "账号在其他位置登录"
this["TxtErrorCode104"] = "账号在其他位置登录"
this["TxtErrorCode105"] = "账号在其他位置登录"
this["TxtErrorCode106"] = "账号在其他位置登录"
this["TxtShield0"] = "毛泽东"
this["TxtShield1"] = "周恩来"
this["TxtShield2"] = "刘少奇"
this["TxtShield3"] = "朱德"
this["TxtShield4"] = "彭德怀"
this["TxtShield5"] = "林彪"
this["TxtShield6"] = "刘伯承"
this["TxtShield7"] = "陈毅"
this["TxtShield8"] = "贺龙"
this["TxtShield9"] = "聂荣臻"
this["TxtShield10"] = "徐向前"
this["TxtShield11"] = "罗荣桓"
this["TxtShield12"] = "叶剑英"
this["TxtShield13"] = "李大钊"
this["TxtShield14"] = "陈独秀"
this["TxtShield15"] = "爆菊"
this["TxtShield16"] = "孙中山"
this["TxtShield17"] = "孙文"
this["TxtShield18"] = "孙逸仙"
this["TxtShield19"] = "邓小平"
this["TxtShield20"] = "陈云"
this["TxtShield21"] = "江泽民"
this["TxtShield22"] = "李鹏"
this["TxtShield23"] = "朱镕基"
this["TxtShield24"] = "李瑞环"
this["TxtShield25"] = "尉健行"
this["TxtShield26"] = "李岚清"
this["TxtShield27"] = "胡锦涛"
this["TxtShield28"] = "罗干"
this["TxtShield29"] = "温家宝"
this["TxtShield30"] = "吴邦国"
this["TxtShield31"] = "曾庆红"
this["TxtShield32"] = "贾庆林"
this["TxtShield33"] = "黄菊"
this["TxtShield34"] = "吴官正"
this["TxtShield35"] = "李长春"
this["TxtShield36"] = "吴仪"
this["TxtShield37"] = "回良玉"
this["TxtShield38"] = "曾培炎"
this["TxtShield39"] = "周永康"
this["TxtShield40"] = "曹刚川"
this["TxtShield41"] = "唐家璇"
this["TxtShield42"] = "华建敏"
this["TxtShield43"] = "陈至立"
this["TxtShield44"] = "陈良宇"
this["TxtShield45"] = "张德江"
this["TxtShield46"] = "张立昌"
this["TxtShield47"] = "俞正声"
this["TxtShield48"] = "王乐泉"
this["TxtShield49"] = "刘云山"
this["TxtShield50"] = "王刚"
this["TxtShield51"] = "王兆国"
this["TxtShield52"] = "刘淇"
this["TxtShield53"] = "贺国强"
this["TxtShield54"] = "郭伯雄"
this["TxtShield55"] = "胡耀邦"
this["TxtShield56"] = "王乐泉"
this["TxtShield57"] = "王兆国"
this["TxtShield58"] = "周永康"
this["TxtShield59"] = "李登辉"
this["TxtShield60"] = "连战"
this["TxtShield61"] = "陈水扁"
this["TxtShield62"] = "宋楚瑜"
this["TxtShield63"] = "吕秀莲"
this["TxtShield64"] = "郁慕明"
this["TxtShield65"] = "蒋介石"
this["TxtShield66"] = "蒋中正"
this["TxtShield67"] = "蒋经国"
this["TxtShield68"] = "马英九"
this["TxtShield69"] = "习近平"
this["TxtShield70"] = "李克强"
this["TxtShield71"] = "吴帮国"
this["TxtShield72"] = "无帮国"
this["TxtShield73"] = "无邦国"
this["TxtShield74"] = "无帮过"
this["TxtShield75"] = "瘟家宝"
this["TxtShield76"] = "假庆林"
this["TxtShield77"] = "甲庆林"
this["TxtShield78"] = "假青林"
this["TxtShield79"] = "离长春"
this["TxtShield80"] = "习远平"
this["TxtShield81"] = "袭近平"
this["TxtShield82"] = "李磕墙"
this["TxtShield83"] = "贺过墙"
this["TxtShield84"] = "和锅枪"
this["TxtShield85"] = "粥永康"
this["TxtShield86"] = "轴永康"
this["TxtShield87"] = "肘永康"
this["TxtShield88"] = "周健康"
this["TxtShield89"] = "粥健康"
this["TxtShield90"] = "周小康"
this["TxtShield91"] = "布什"
this["TxtShield92"] = "布莱尔"
this["TxtShield93"] = "小泉"
this["TxtShield94"] = "纯一郎"
this["TxtShield95"] = "萨马兰奇"
this["TxtShield96"] = "安南"
this["TxtShield97"] = "阿拉法特"
this["TxtShield98"] = "普京"
this["TxtShield99"] = "默克尔"
this["TxtShield100"] = "克林顿"
this["TxtShield101"] = "里根"
this["TxtShield102"] = "尼克松"
this["TxtShield103"] = "林肯"
this["TxtShield104"] = "杜鲁门"
this["TxtShield105"] = "赫鲁晓夫"
this["TxtShield106"] = "列宁"
this["TxtShield107"] = "斯大林"
this["TxtShield108"] = "马克思"
this["TxtShield109"] = "恩格斯"
this["TxtShield110"] = "金正日"
this["TxtShield111"] = "金日成"
this["TxtShield112"] = "萨达姆"
this["TxtShield113"] = "胡志明"
this["TxtShield114"] = "西哈努克"
this["TxtShield115"] = "希拉克"
this["TxtShield116"] = "撒切尔"
this["TxtShield117"] = "阿罗约"
this["TxtShield118"] = "曼德拉"
this["TxtShield119"] = "卡斯特罗"
this["TxtShield120"] = "富兰克林"
this["TxtShield121"] = "华盛顿"
this["TxtShield122"] = "艾森豪威尔"
this["TxtShield123"] = "拿破仑"
this["TxtShield124"] = "亚历山大"
this["TxtShield125"] = "路易"
this["TxtShield126"] = "拉姆斯菲尔德"
this["TxtShield127"] = "劳拉"
this["TxtShield128"] = "鲍威尔"
this["TxtShield129"] = "奥巴马"
this["TxtShield130"] = "本拉登"
this["TxtShield131"] = "奥马尔"
this["TxtShield132"] = "柴玲"
this["TxtShield133"] = "达赖喇嘛"
this["TxtShield134"] = "江青"
this["TxtShield135"] = "张春桥"
this["TxtShield136"] = "姚文元"
this["TxtShield137"] = "王洪文"
this["TxtShield138"] = "东条英机"
this["TxtShield139"] = "希特勒"
this["TxtShield140"] = "墨索里尼"
this["TxtShield141"] = "冈村秀树"
this["TxtShield142"] = "冈村宁次"
this["TxtShield143"] = "高丽朴"
this["TxtShield144"] = "赵紫阳"
this["TxtShield145"] = "王丹"
this["TxtShield146"] = "沃尔开西"
this["TxtShield147"] = "李洪志"
this["TxtShield148"] = "李大师"
this["TxtShield149"] = "赖昌星"
this["TxtShield150"] = "马加爵"
this["TxtShield151"] = "班禅"
this["TxtShield152"] = "额尔德尼"
this["TxtShield153"] = "山本五十六"
this["TxtShield154"] = "阿扁"
this["TxtShield155"] = "阿扁万岁"
this["TxtShield156"] = "热那亚"
this["TxtShield157"] = "热比娅 "
this["TxtShield158"] = "六四"
this["TxtShield159"] = "六四运动"
this["TxtShield160"] = "美国之音"
this["TxtShield161"] = "密宗"
this["TxtShield162"] = "民国"
this["TxtShield163"] = "民进党"
this["TxtShield164"] = "民运"
this["TxtShield165"] = "民主"
this["TxtShield166"] = "民主潮"
this["TxtShield167"] = "摩门教"
this["TxtShield168"] = "纳粹"
this["TxtShield169"] = "南华早报"
this["TxtShield170"] = "南蛮"
this["TxtShield171"] = "明慧网"
this["TxtShield172"] = "起义"
this["TxtShield173"] = "亲民党"
this["TxtShield174"] = "瘸腿帮"
this["TxtShield175"] = "人民报"
this["TxtShield176"] = "法轮功"
this["TxtShield177"] = "法轮大法"
this["TxtShield178"] = "打倒共产党"
this["TxtShield179"] = "台独万岁"
this["TxtShield180"] = "圣战"
this["TxtShield181"] = "示威"
this["TxtShield182"] = "台独"
this["TxtShield183"] = "台独分子"
this["TxtShield184"] = "台联"
this["TxtShield185"] = "台湾民国"
this["TxtShield186"] = "台湾岛国"
this["TxtShield187"] = "台湾国"
this["TxtShield188"] = "台湾独立"
this["TxtShield189"] = "太子党"
this["TxtShield190"] = "天安门事件"
this["TxtShield191"] = "屠杀"
this["TxtShield192"] = "小泉"
this["TxtShield193"] = "新党"
this["TxtShield194"] = "新疆独立"
this["TxtShield195"] = "新疆分裂"
this["TxtShield196"] = "新疆国"
this["TxtShield197"] = "疆独"
this["TxtShield198"] = "西藏独立"
this["TxtShield199"] = "西藏分裂"
this["TxtShield200"] = "西藏国"
this["TxtShield201"] = "藏独"
this["TxtShield202"] = "藏青会"
this["TxtShield203"] = "藏妇会"
this["TxtShield204"] = "学潮"
this["TxtShield205"] = "学运"
this["TxtShield206"] = "一党专政"
this["TxtShield207"] = "一中一台"
this["TxtShield208"] = "两个中国"
this["TxtShield209"] = "一贯道"
this["TxtShield210"] = "游行"
this["TxtShield211"] = "造反"
this["TxtShield212"] = "真善忍"
this["TxtShield213"] = "镇压"
this["TxtShield214"] = "政变"
this["TxtShield215"] = "政治"
this["TxtShield216"] = "政治反对派"
this["TxtShield217"] = "政治犯"
this["TxtShield218"] = "中共"
this["TxtShield219"] = "共产党"
this["TxtShield220"] = "反党"
this["TxtShield221"] = "反共"
this["TxtShield222"] = "政府"
this["TxtShield223"] = "民主党"
this["TxtShield224"] = "中国之春"
this["TxtShield225"] = "转法轮"
this["TxtShield226"] = "自焚"
this["TxtShield227"] = "共党"
this["TxtShield228"] = "共匪"
this["TxtShield229"] = "苏家屯"
this["TxtShield230"] = "基地组织"
this["TxtShield231"] = "塔利班"
this["TxtShield232"] = "东亚病夫"
this["TxtShield233"] = "支那"
this["TxtShield234"] = "高治联"
this["TxtShield235"] = "高自联"
this["TxtShield236"] = "专政"
this["TxtShield237"] = "专制"
this["TxtShield238"] = "世界维吾尔大会"
this["TxtShield239"] = "占中"
this["TxtShield240"] = "ISIS"
this["TxtShield241"] = "呼喊派"
this["TxtShield242"] = "徒弟会"
this["TxtShield243"] = "全范围教会"
this["TxtShield244"] = "灵灵教"
this["TxtShield245"] = "新约教会"
this["TxtShield246"] = "主神教"
this["TxtShield247"] = "被立王"
this["TxtShield248"] = "同一教"
this["TxtShield249"] = "三班仆人派"
this["TxtShield250"] = "灵仙真佛宗"
this["TxtShield251"] = "天父的儿女"
this["TxtShield252"] = "达米宣教会"
this["TxtShield253"] = "常受教"
this["TxtShield254"] = "中华大陆行政执事站"
this["TxtShield255"] = "实际神"
this["TxtShield256"] = "ISIL"
this["TxtShield257"] = "默罕默德 "
this["TxtShield258"] = "占领中环 "
this["TxtShield259"] = "核工业基地"
this["TxtShield260"] = "核武器"
this["TxtShield261"] = "铀"
this["TxtShield262"] = "原子弹"
this["TxtShield263"] = "氢弹"
this["TxtShield264"] = "导弹"
this["TxtShield265"] = "核潜艇"
this["TxtShield266"] = "大参考"
this["TxtShield267"] = "小参考"
this["TxtShield268"] = "国内动态清样"
this["TxtShield269"] = "多维"
this["TxtShield270"] = "河殇"
this["TxtShield271"] = "摩门教"
this["TxtShield272"] = "穆罕默德"
this["TxtShield273"] = "圣战"
this["TxtShield274"] = "耶和华"
this["TxtShield275"] = "耶稣"
this["TxtShield276"] = "伊斯兰"
this["TxtShield277"] = "真主安拉"
this["TxtShield278"] = "白莲教"
this["TxtShield279"] = "天主教"
this["TxtShield280"] = "基督教"
this["TxtShield281"] = "东正教"
this["TxtShield282"] = "大法"
this["TxtShield283"] = "法轮"
this["TxtShield284"] = "法轮功"
this["TxtShield285"] = "瘸腿帮"
this["TxtShield286"] = "真理教"
this["TxtShield287"] = "真善忍"
this["TxtShield288"] = "转法轮"
this["TxtShield289"] = "自焚"
this["TxtShield290"] = "走向圆满"
this["TxtShield291"] = "黄大仙"
this["TxtShield292"] = "跳大神"
this["TxtShield293"] = "神汉"
this["TxtShield294"] = "神婆"
this["TxtShield295"] = "真理教"
this["TxtShield296"] = "大卫教"
this["TxtShield297"] = "阎王"
this["TxtShield298"] = "藏独"
this["TxtShield299"] = "高丽棒子"
this["TxtShield300"] = "疆独"
this["TxtShield301"] = "蒙古鞑子"
this["TxtShield302"] = "台独"
this["TxtShield303"] = "台独分子"
this["TxtShield304"] = "台联"
this["TxtShield305"] = "台湾民国"
this["TxtShield306"] = "西藏独立"
this["TxtShield307"] = "新疆独立"
this["TxtShield308"] = "南蛮"
this["TxtShield309"] = "老毛子"
this["TxtShield310"] = "回民吃猪肉"
this["TxtShield311"] = "谋杀"
this["TxtShield312"] = "杀人"
this["TxtShield313"] = "吸毒"
this["TxtShield314"] = "贩毒"
this["TxtShield315"] = "赌博"
this["TxtShield316"] = "拐卖"
this["TxtShield317"] = "走私"
this["TxtShield318"] = "卖淫"
this["TxtShield319"] = "造反"
this["TxtShield320"] = "强奸"
this["TxtShield321"] = "轮奸"
this["TxtShield322"] = "抢劫"
this["TxtShield323"] = "先奸后杀"
this["TxtShield324"] = "下注"
this["TxtShield325"] = "抽头"
this["TxtShield326"] = "坐庄"
this["TxtShield327"] = "赌马"
this["TxtShield328"] = "赌球"
this["TxtShield329"] = "筹码"
this["TxtShield330"] = "老虎机"
this["TxtShield331"] = "轮盘赌"
this["TxtShield332"] = "安非他命"
this["TxtShield333"] = "大麻"
this["TxtShield334"] = "可卡因"
this["TxtShield335"] = "海洛因"
this["TxtShield336"] = "冰毒"
this["TxtShield337"] = "摇头丸"
this["TxtShield338"] = "杜冷丁"
this["TxtShield339"] = "鸦片"
this["TxtShield340"] = "罂粟"
this["TxtShield341"] = "迷幻药"
this["TxtShield342"] = "白粉"
this["TxtShield343"] = "嗑药"
this["TxtShield344"] = "吸毒"
this["TxtShield345"] = "AIDS"
this["TxtShield346"] = "aids"
this["TxtShield347"] = "Aids"
this["TxtShield348"] = "DICK"
this["TxtShield349"] = "dick"
this["TxtShield350"] = "Dick"
this["TxtShield351"] = "penis"
this["TxtShield352"] = "sex"
this["TxtShield353"] = "SM"
this["TxtShield354"] = "屙"
this["TxtShield355"] = "爱滋"
this["TxtShield356"] = "淋病"
this["TxtShield357"] = "梅毒"
this["TxtShield358"] = "爱液"
this["TxtShield359"] = "屄"
this["TxtShield360"] = "逼"
this["TxtShield361"] = "臭机八"
this["TxtShield362"] = "臭鸡巴"
this["TxtShield363"] = "吹喇叭"
this["TxtShield364"] = "吹箫"
this["TxtShield365"] = "催情药"
this["TxtShield366"] = "屌"
this["TxtShield367"] = "肛交"
this["TxtShield368"] = "肛门"
this["TxtShield369"] = "龟头"
this["TxtShield370"] = "黄色"
this["TxtShield371"] = "机八"
this["TxtShield372"] = "机巴"
this["TxtShield373"] = "鸡八"
this["TxtShield374"] = "鸡巴"
this["TxtShield375"] = "机掰"
this["TxtShield376"] = "机巴"
this["TxtShield377"] = "鸡叭"
this["TxtShield378"] = "鸡鸡"
this["TxtShield379"] = "鸡掰"
this["TxtShield380"] = "鸡奸"
this["TxtShield381"] = "妓女"
this["TxtShield382"] = "奸"
this["TxtShield383"] = "茎"
this["TxtShield384"] = "精液"
this["TxtShield385"] = "精子"
this["TxtShield386"] = "尻"
this["TxtShield387"] = "口交"
this["TxtShield388"] = "滥交"
this["TxtShield389"] = "乱交"
this["TxtShield390"] = "轮奸"
this["TxtShield391"] = "卖淫"
this["TxtShield392"] = "屁眼"
this["TxtShield393"] = "嫖娼"
this["TxtShield394"] = "强奸"
this["TxtShield395"] = "强奸犯"
this["TxtShield396"] = "情色"
this["TxtShield397"] = "肉棒"
this["TxtShield398"] = "乳房"
this["TxtShield399"] = "乳峰"
this["TxtShield400"] = "乳交"
this["TxtShield401"] = "乳头"
this["TxtShield402"] = "乳晕"
this["TxtShield403"] = "三陪"
this["TxtShield404"] = "色情"
this["TxtShield405"] = "射精"
this["TxtShield406"] = "手淫"
this["TxtShield407"] = "威而钢"
this["TxtShield408"] = "威而柔"
this["TxtShield409"] = "伟哥"
this["TxtShield410"] = "性高潮"
this["TxtShield411"] = "性交"
this["TxtShield412"] = "性虐"
this["TxtShield413"] = "性欲"
this["TxtShield414"] = "穴"
this["TxtShield415"] = "颜射"
this["TxtShield416"] = "阳物"
this["TxtShield417"] = "一夜情"
this["TxtShield418"] = "阴部"
this["TxtShield419"] = "阴唇"
this["TxtShield420"] = "阴道"
this["TxtShield421"] = "阴蒂"
this["TxtShield422"] = "阴核"
this["TxtShield423"] = "阴户"
this["TxtShield424"] = "阴茎"
this["TxtShield425"] = "阴门"
this["TxtShield426"] = "淫"
this["TxtShield427"] = "淫秽"
this["TxtShield428"] = "淫乱"
this["TxtShield429"] = "淫水"
this["TxtShield430"] = "淫娃"
this["TxtShield431"] = "淫液"
this["TxtShield432"] = "淫汁"
this["TxtShield433"] = "淫穴"
this["TxtShield434"] = "淫洞"
this["TxtShield435"] = "援交妹"
this["TxtShield436"] = "做爱"
this["TxtShield437"] = "梦遗"
this["TxtShield438"] = "阳痿"
this["TxtShield439"] = "早泄"
this["TxtShield440"] = "奸淫"
this["TxtShield441"] = "性欲"
this["TxtShield442"] = "性交"
this["TxtShield443"] = "Bitch"
this["TxtShield444"] = "bt"
this["TxtShield445"] = "cao"
this["TxtShield446"] = "FUCK"
this["TxtShield447"] = "Fuck"
this["TxtShield448"] = "fuck"
this["TxtShield449"] = "kao"
this["TxtShield450"] = "NMD"
this["TxtShield451"] = "NND"
this["TxtShield452"] = "sb"
this["TxtShield453"] = "shit"
this["TxtShield454"] = "SHIT"
this["TxtShield455"] = "SUCK"
this["TxtShield456"] = "Suck"
this["TxtShield457"] = "tmd"
this["TxtShield458"] = "TMD"
this["TxtShield459"] = "tnnd"
this["TxtShield460"] = "K他命"
this["TxtShield461"] = "白痴"
this["TxtShield462"] = "笨蛋"
this["TxtShield463"] = "屄"
this["TxtShield464"] = "变态"
this["TxtShield465"] = "婊子"
this["TxtShield466"] = "操她妈"
this["TxtShield467"] = "操妳妈"
this["TxtShield468"] = "操你"
this["TxtShield469"] = "操你妈"
this["TxtShield470"] = "操他妈"
this["TxtShield471"] = "草你"
this["TxtShield472"] = "肏"
this["TxtShield473"] = "册那"
this["TxtShield474"] = "侧那"
this["TxtShield475"] = "测拿"
this["TxtShield476"] = "插"
this["TxtShield477"] = "蠢猪"
this["TxtShield478"] = "荡妇"
this["TxtShield479"] = "发骚"
this["TxtShield480"] = "废物"
this["TxtShield481"] = "干她妈"
this["TxtShield482"] = "干妳"
this["TxtShield483"] = "干妳娘"
this["TxtShield484"] = "干你"
this["TxtShield485"] = "干你妈"
this["TxtShield486"] = "干你妈B"
this["TxtShield487"] = "干你妈b"
this["TxtShield488"] = "干你妈逼"
this["TxtShield489"] = "干你娘"
this["TxtShield490"] = "干他妈"
this["TxtShield491"] = "狗娘养的"
this["TxtShield492"] = "滚"
this["TxtShield493"] = "鸡奸"
this["TxtShield494"] = "贱货"
this["TxtShield495"] = "贱人"
this["TxtShield496"] = "烂人"
this["TxtShield497"] = "老母"
this["TxtShield498"] = "老土"
this["TxtShield499"] = "妈比"
this["TxtShield500"] = "妈的"
this["TxtShield501"] = "马的"
this["TxtShield502"] = "妳老母的"
this["TxtShield503"] = "妳娘的"
this["TxtShield504"] = "你妈逼"
this["TxtShield505"] = "破鞋"
this["TxtShield506"] = "仆街"
this["TxtShield507"] = "去她妈"
this["TxtShield508"] = "去妳的"
this["TxtShield509"] = "去妳妈"
this["TxtShield510"] = "去你的"
this["TxtShield511"] = "去你妈"
this["TxtShield512"] = "去死"
this["TxtShield513"] = "去他妈"
this["TxtShield514"] = "日"
this["TxtShield515"] = "日你"
this["TxtShield516"] = "赛她娘"
this["TxtShield517"] = "赛妳娘"
this["TxtShield518"] = "赛你娘"
this["TxtShield519"] = "赛他娘"
this["TxtShield520"] = "骚货"
this["TxtShield521"] = "傻B"
this["TxtShield522"] = "傻比"
this["TxtShield523"] = "傻子"
this["TxtShield524"] = "上妳"
this["TxtShield525"] = "上你"
this["TxtShield526"] = "神经病"
this["TxtShield527"] = "屎"
this["TxtShield528"] = "屎妳娘"
this["TxtShield529"] = "屎你娘"
this["TxtShield530"] = "他妈的"
this["TxtShield531"] = "王八蛋"
this["TxtShield532"] = "我操"
this["TxtShield533"] = "我日"
this["TxtShield534"] = "乡巴佬"
this["TxtShield535"] = "猪猡"
this["TxtShield536"] = "屙"
this["TxtShield537"] = "干"
this["TxtShield538"] = "尿"
this["TxtShield539"] = "掯"
this["TxtShield540"] = "屌"
this["TxtShield541"] = "操"
this["TxtShield542"] = "骑你"
this["TxtShield543"] = "湿了"
this["TxtShield544"] = "操你"
this["TxtShield545"] = "操他"
this["TxtShield546"] = "操她"
this["TxtShield547"] = "骑你"
this["TxtShield548"] = "骑他"
this["TxtShield549"] = "骑她"
this["TxtShield550"] = "欠骑"
this["TxtShield551"] = "欠人骑"
this["TxtShield552"] = "来爽我"
this["TxtShield553"] = "来插我"
this["TxtShield554"] = "干你"
this["TxtShield555"] = "干他"
this["TxtShield556"] = "干她"
this["TxtShield557"] = "干死"
this["TxtShield558"] = "干爆"
this["TxtShield559"] = "干机"
this["TxtShield560"] = "FUCK"
this["TxtShield561"] = "机叭"
this["TxtShield562"] = "臭鸡"
this["TxtShield563"] = "臭机"
this["TxtShield564"] = "烂鸟"
this["TxtShield565"] = "览叫"
this["TxtShield566"] = "阳具"
this["TxtShield567"] = "肉棒"
this["TxtShield568"] = "肉壶"
this["TxtShield569"] = "奶子"
this["TxtShield570"] = "摸咪咪"
this["TxtShield571"] = "干鸡"
this["TxtShield572"] = "干入"
this["TxtShield573"] = "小穴"
this["TxtShield574"] = "强奸"
this["TxtShield575"] = "插你"
this["TxtShield576"] = "插你"
this["TxtShield577"] = "爽你"
this["TxtShield578"] = "爽你"
this["TxtShield579"] = "干干"
this["TxtShield580"] = "干X"
this["TxtShield581"] = "我操"
this["TxtShield582"] = "他干"
this["TxtShield583"] = "干它"
this["TxtShield584"] = "干牠"
this["TxtShield585"] = "干您"
this["TxtShield586"] = "干汝"
this["TxtShield587"] = "干林"
this["TxtShield588"] = "操林"
this["TxtShield589"] = "干尼"
this["TxtShield590"] = "操尼"
this["TxtShield591"] = "我咧干"
this["TxtShield592"] = "干勒"
this["TxtShield593"] = "干我"
this["TxtShield594"] = "干到"
this["TxtShield595"] = "干啦"
this["TxtShield596"] = "干爽"
this["TxtShield597"] = "欠干"
this["TxtShield598"] = "狗干"
this["TxtShield599"] = "我干"
this["TxtShield600"] = "来干"
this["TxtShield601"] = "轮干"
this["TxtShield602"] = "轮流干"
this["TxtShield603"] = "干一干"
this["TxtShield604"] = "援交"
this["TxtShield605"] = "骑你"
this["TxtShield606"] = "我操"
this["TxtShield607"] = "轮奸"
this["TxtShield608"] = "鸡奸"
this["TxtShield609"] = "奸暴"
this["TxtShield610"] = "再奸"
this["TxtShield611"] = "我奸"
this["TxtShield612"] = "奸你"
this["TxtShield613"] = "奸你"
this["TxtShield614"] = "奸他"
this["TxtShield615"] = "奸她"
this["TxtShield616"] = "奸一奸"
this["TxtShield617"] = "淫水"
this["TxtShield618"] = "淫湿"
this["TxtShield619"] = "鸡歪"
this["TxtShield620"] = "仆街"
this["TxtShield621"] = "臭西"
this["TxtShield622"] = "尻"
this["TxtShield623"] = "遗精"
this["TxtShield624"] = "烂逼"
this["TxtShield625"] = "大血比"
this["TxtShield626"] = "叼你妈"
this["TxtShield627"] = "靠你妈"
this["TxtShield628"] = "草你"
this["TxtShield629"] = "干你"
this["TxtShield630"] = "日你"
this["TxtShield631"] = "插你"
this["TxtShield632"] = "奸你"
this["TxtShield633"] = "戳你"
this["TxtShield634"] = "逼你老母"
this["TxtShield635"] = "挨球"
this["TxtShield636"] = "我日你"
this["TxtShield637"] = "草拟妈"
this["TxtShield638"] = "卖逼"
this["TxtShield639"] = "狗操卖逼"
this["TxtShield640"] = "奸淫"
this["TxtShield641"] = "日死"
this["TxtShield642"] = "奶子"
this["TxtShield643"] = "阴茎"
this["TxtShield644"] = "奶娘"
this["TxtShield645"] = "他娘"
this["TxtShield646"] = "她娘"
this["TxtShield647"] = "骚B"
this["TxtShield648"] = "你妈了妹"
this["TxtShield649"] = "逼毛"
this["TxtShield650"] = "插你妈"
this["TxtShield651"] = "叼你"
this["TxtShield652"] = "渣波波"
this["TxtShield653"] = "嫩b"
this["TxtShield654"] = "weelaa"
this["TxtShield655"] = "缔顺"
this["TxtShield656"] = "帝顺"
this["TxtShield657"] = "蒂顺"
this["TxtShield658"] = "系统消息"
this["TxtShield659"] = "午夜"
this["TxtShield660"] = "看下"
this["TxtShield661"] = "草泥马"
this["TxtShield662"] = "法克鱿"
this["TxtShield663"] = "雅蠛蝶"
this["TxtShield664"] = "潜烈蟹"
this["TxtShield665"] = "菊花蚕"
this["TxtShield666"] = "尾申鲸"
this["TxtShield667"] = "吉跋猫"
this["TxtShield668"] = "搞栗棒"
this["TxtShield669"] = "吟稻雁"
this["TxtShield670"] = "达菲鸡"
this["TxtShield671"] = "SM"
this["TxtShield672"] = "ML"
this["TxtShield673"] = "3P"
this["TxtShield674"] = "群P"
this["TxtShield675"] = "马勒戈壁"
this["TxtShield676"] = "双飞"
this["TxtShield677"] = "fuck"
this["TxtShield678"] = "共产党"
this["TxtShield679"] = "urban"
this["TxtShield680"] = "我操"
this["TxtShield681"] = "cao"
this["TxtShield682"] = "他妈的"
this["TxtShield683"] = "TMD"
this["TxtShield684"] = "鸡巴"
this["TxtShield685"] = "煞笔"
this["TxtShield686"] = "傻B"
this["TxtShield687"] = "法轮功"
this["TxtShield688"] = "江泽民"
this["TxtShield689"] = "胡锦涛"
this["TxtShield690"] = "温家宝"
this["TxtShield691"] = "urban-rivals"
this["TxtShield692"] = "rivals"
this["TxtShield693"] = "我日"
this["TxtShield694"] = "UR"
this["TxtShield695"] = "ur"
this["TxtShield696"] = "性交"
this["TxtShield697"] = "口交"
this["TxtShield698"] = "婊子"
this["TxtShield699"] = "妓女"
this["TxtShield700"] = "她妈"
this["TxtShield701"] = "牛逼"
this["TxtShield702"] = "牛B,牛比"
this["TxtShield703"] = "煞笔"
this["TxtShield704"] = "傻逼"
this["TxtShield705"] = "傻B"
this["TxtShield706"] = "操你妈"
this["TxtShield707"] = "装逼"
this["TxtShield708"] = "装B"
this["TxtShield709"] = "日你妈"
this["TxtShield710"] = "不玩了"
this["TxtShield711"] = "删号"
this["TxtShield712"] = "卖号 "
this["TxtShield713"] = "删 号"
this["TxtShield714"] = "妈的"
this["TxtShield715"] = "妈逼"
this["TxtShield716"] = "草你妈"
this["TxtShield717"] = "T.M.D"
this["TxtShield718"] = "JB"
this["TxtShield719"] = "jb"
this["TxtShield720"] = "出售账号"
this["TxtShield721"] = "出售此号"
this["TxtShield722"] = "卖号"
this["TxtShield723"] = "U/R"
this["TxtShield724"] = "U-R"
this["TxtShield725"] = "j8"
this["TxtShield726"] = "吗的"
this["TxtShield727"] = "8仙"
this["TxtShield728"] = "狗日"
this["TxtShield729"] = "出售神符"
this["TxtShield730"] = "色情"
this["TxtShield731"] = "黄色"
this["TxtShield732"] = "藏独"
this["TxtShield733"] = "台独"
this["TxtShield734"] = "法轮大法"
this["TxtShield735"] = "鸡巴"
this["TxtShield736"] = "毛泽东"
this["TxtShield737"] = "NPC"
this["TxtShield738"] = "*法*轮*功*"
this["TxtShield739"] = "*李*洪*志*阿扁"
this["TxtShield740"] = "阿扁万岁"
this["TxtShield741"] = "阿拉"
this["TxtShield742"] = "阿拉法特"
this["TxtShield743"] = "挨球"
this["TxtShield744"] = "安南"
this["TxtShield745"] = "安全局"
this["TxtShield746"] = "澳洲光明网"
this["TxtShield747"] = "八九"
this["TxtShield748"] = "八九风波"
this["TxtShield749"] = "办理文凭"
this["TxtShield750"] = "办理证件"
this["TxtShield751"] = "包皮"
this["TxtShield752"] = "保钓"
this["TxtShield753"] = "保监会"
this["TxtShield754"] = "保密局"
this["TxtShield755"] = "鸨"
this["TxtShield756"] = "鲍岳桥"
this["TxtShield757"] = "暴动"
this["TxtShield758"] = "暴乱"
this["TxtShield759"] = "暴徒"
this["TxtShield760"] = "北京之春"
this["TxtShield761"] = "贝肉"
this["TxtShield762"] = "本拉登"
this["TxtShield763"] = "本?拉登"
this["TxtShield764"] = "苯比"
this["TxtShield765"] = "笨屄"
this["TxtShield766"] = "笨逼"
this["TxtShield767"] = "屄"
this["TxtShield768"] = "屄毛"
this["TxtShield769"] = "逼毛"
this["TxtShield770"] = "逼你老母"
this["TxtShield771"] = "逼样"
this["TxtShield772"] = "比毛"
this["TxtShield773"] = "婊"
this["TxtShield774"] = "婊子"
this["TxtShield775"] = "宾周"
this["TxtShield776"] = "冰毒"
this["TxtShield777"] = "波霸"
this["TxtShield778"] = "博讯"
this["TxtShield779"] = "薄一波"
this["TxtShield780"] = "布莱尔"
this["TxtShield781"] = "布雷尔"
this["TxtShield782"] = "布什"
this["TxtShield783"] = "布什"
this["TxtShield784"] = "财政部"
this["TxtShield785"] = "参事室"
this["TxtShield786"] = "藏独"
this["TxtShield787"] = "藏独"
this["TxtShield788"] = "藏独"
this["TxtShield789"] = "操"
this["TxtShield790"] = "操GM"
this["TxtShield791"] = "操Gm"
this["TxtShield792"] = "操gM"
this["TxtShield793"] = "操gm"
this["TxtShield794"] = "操XX"
this["TxtShield795"] = "操逼"
this["TxtShield796"] = "操比"
this["TxtShield797"] = "操蛋"
this["TxtShield798"] = "操你"
this["TxtShield799"] = "操你八辈祖宗"
this["TxtShield800"] = "操你妈"
this["TxtShield801"] = "操你妈屄"
this["TxtShield802"] = "操他"
this["TxtShield803"] = "曹刚川"
this["TxtShield804"] = "草的你妈"
this["TxtShield805"] = "草妈"
this["TxtShield806"] = "草你妈"
this["TxtShield807"] = "草拟妈"
this["TxtShield808"] = "肏"
this["TxtShield809"] = "测绘局"
this["TxtShield810"] = "插GM"
this["TxtShield811"] = "插Gm"
this["TxtShield812"] = "插gM"
this["TxtShield813"] = "插gm"
this["TxtShield814"] = "插妳"
this["TxtShield815"] = "插你"
this["TxtShield816"] = "插你妈"
this["TxtShield817"] = "插深些"
this["TxtShield818"] = "产权局"
this["TxtShield819"] = "朝鲜"
this["TxtShield820"] = "车臣"
this["TxtShield821"] = "车仑"
this["TxtShield822"] = "陈功"
this["TxtShield823"] = "陈良宇"
this["TxtShield824"] = "陈水扁"
this["TxtShield825"] = "陈希同"
this["TxtShield826"] = "陈晓宁"
this["TxtShield827"] = "陈毅"
this["TxtShield828"] = "陈至立"
this["TxtShield829"] = "成人电影"
this["TxtShield830"] = "成人片"
this["TxtShield831"] = "吃大便"
this["TxtShield832"] = "吃屎"
this["TxtShield833"] = "迟浩田"
this["TxtShield834"] = "赤匪"
this["TxtShield835"] = "抽插"
this["TxtShield836"] = "抽你丫的"
this["TxtShield837"] = "臭化西"
this["TxtShield838"] = "出售假币"
this["TxtShield839"] = "出售枪支"
this["TxtShield840"] = "出售手枪"
this["TxtShield841"] = "吹喇叭"
this["TxtShield842"] = "吹箫"
this["TxtShield843"] = "春药"
this["TxtShield844"] = "蠢猪"
this["TxtShield845"] = "戳你"
this["TxtShield846"] = "粗制吗啡"
this["TxtShield847"] = "催情药"
this["TxtShield848"] = "达赖"
this["TxtShield849"] = "达赖喇嘛"
this["TxtShield850"] = "打炮"
this["TxtShield851"] = "大B"
this["TxtShield852"] = "大逼"
this["TxtShield853"] = "大便"
this["TxtShield854"] = "大波波"
this["TxtShield855"] = "大麻"
this["TxtShield856"] = "大麻树脂"
this["TxtShield857"] = "大麻油"
this["TxtShield858"] = "大师"
this["TxtShield859"] = "戴维教"
this["TxtShield860"] = "大学骚乱"
this["TxtShield861"] = "大血B"
this["TxtShield862"] = "大血比"
this["TxtShield863"] = "呆卵"
this["TxtShield864"] = "戴海静"
this["TxtShield865"] = "戴红"
this["TxtShield866"] = "戴晶"
this["TxtShield867"] = "戴维教"
this["TxtShield868"] = "党主席"
this["TxtShield869"] = "荡妇"
this["TxtShield870"] = "档案局"
this["TxtShield871"] = "盗窃犯"
this["TxtShield872"] = "盗窃犯"
this["TxtShield873"] = "道教"
this["TxtShield874"] = "邓小平"
this["TxtShield875"] = "帝国主义"
this["TxtShield876"] = "电监会"
this["TxtShield877"] = "叼你"
this["TxtShield878"] = "叼你妈"
this["TxtShield879"] = "屌"