summaryrefslogtreecommitdiffstats
path: root/chrome/tools/chromeactions.txt
blob: b1e73be997f6d62e108dc0831540a82d2b16e71b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
0x5d4affbdc9e636fe	AboutChrome
0x6c3fb8ca36f60394	AboutConflicts
0xe93a6d5909da6a5a	AboutFlags_StartupTick
0xbfdd432b8d9d4ad6	AboutFlags_background-webapps
0x439284a07fb851bb	AboutFlags_click-to-play
0x10ffe0a8b323b586	AboutFlags_cloud-print
0x4da52e00bdfac86a	AboutFlags_cloud-print-proxy
0xc5ec36aaa32ceff4	AboutFlags_confirm-to-quit
0x4e8fe1c674de45dd	AboutFlags_conflicting-modules-check
0xe9d2339d6b9225c7	AboutFlags_disable-outdated-plugins
0xf73b5212b48e2a75	AboutFlags_disable-print-preview
0xdddbf34cee2c636c	AboutFlags_dns-server
0x3add7fc42803849e	AboutFlags_downloads-new-ui
0x4eae5ccc2900dffa	AboutFlags_enable-nacl
0x1a3d598e2cd416a0	AboutFlags_enable-smooth-scrolling
0x79571e31c2dc4d3c	AboutFlags_experimental-location-features
0x307b8a127f85947e	AboutFlags_expose-for-tabs
0x2c97f94b6aca4a22	AboutFlags_extension-apis
0x3a73624e6d06ac2e	AboutFlags_focus-existing-tab-on-open
0x66a2e456dfe783d3	AboutFlags_gpu-canvas-2d
0x0a1b6a5d816fde03	AboutFlags_indexeddb-use-leveldb
0x6cb0582a680ffec6	AboutFlags_instant-autocomplete-immediately
0x67b7031bb00a6917	AboutFlags_instant-type
0x681dbf08b11af420	AboutFlags_match-preview
0x0156f26c1be32122	AboutFlags_my-special-feature
0xb41d9c886871e31a	AboutFlags_page-prerender
0x735ca25b198de8ab	AboutFlags_prerender-from-omnibox
0xb33861525ba727a4	AboutFlags_print-preview
0x75b933619fb87fec	AboutFlags_remoting
0xb9396e0515186060	AboutFlags_snap-start
0x4efbca63b3accd5f	AboutFlags_tabbed-options
0x2ec81fb90d9bed1e	AboutFlags_verbatim-instant
0x6e65ea1edca0f441	AboutFlags_vertical-tabs
0xb0140558fbb7c0bf	AboutFlags_xss-auditor
0x46299b11fb76c5d3	Accel_Back_Backspace
0x942956b3c704a9a2	Accel_Back_F1
0x651680cc43f0574d	Accel_Back_Left
0x9d53a3047a707543	Accel_BrightnessDown_F6
0xb05e783429d6cfac	Accel_BrightnessUp_F7
0x7f2c75700d286c16	Accel_FocusLocation_D
0xe566241731cecfbb	Accel_FocusLocation_L
0xb4f736d60280d914	Accel_FocusSearch_E
0xbe8f2bb497e569c3	Accel_FocusSearch_K
0x87886216ce3f147d	Accel_Forward_Backspace
0x5aa4a40eb4d92d0a	Accel_Forward_F2
0xad7e6131ff6f2528	Accel_Forward_Right
0x36adab865c373745	Accel_Fullscreen_F4
0x5e6bce93ecde1df8	Accel_NewTab_T
0x5a27559e6846a75e	Accel_NextWindow_F5
0xc217e3bb30e9a004	Accel_NextWindow_Tab
0x2e92845dc8edee91	Accel_PrevWindow_F5
0x49b33857117c4c43	Accel_PrevWindow_Tab
0xa2654c422408df28	Accel_Reload_F3
0x6db94baf96eb6cfd	Accel_Reload_R
0xe315330404ef14a8	Accel_Search_LWin
0x7974ffb673dd5475	Accel_VolumeDown_F9
0xbe6aee0aaab8ed8a	Accel_VolumeMute_F8
0x1cbd5b055dc9a3cc	Accel_VolumeUp_F10
0x649461e26c8e5796	AcceptedGeneratedKeyword
0x2b6ed5e3f78e1295	AcceptedKeyword
0xaa16d48a61361aa6	AcceptedKeywordHint
0x9ff9ef57d8d1d87c	AutoDetectChange
0x0557fa923dcee4d0	Back
0xc66d44d8107c5f5d	BackColor
0xcafd9c09ee856f4d	BackMenu_ChapterClick1
0x0f870d70d3ad63af	BackMenu_ChapterClick10
0xcc7f480485be490f	BackMenu_ChapterClick11
0x66df4c323616cc9c	BackMenu_ChapterClick12
0x6ec9591704e695aa	BackMenu_ChapterClick13
0x58c363a6b68f5ea5	BackMenu_ChapterClick14
0xce465328fcddd205	BackMenu_ChapterClick15
0x537f15b23c6f30fd	BackMenu_ChapterClick16
0x59fc3ff15b0285ce	BackMenu_ChapterClick17
0x76eff190094eeebd	BackMenu_ChapterClick18
0x612d4da6cc153fcb	BackMenu_ChapterClick19
0x0a2a978da163a692	BackMenu_ChapterClick2
0xaae08324262e26af	BackMenu_ChapterClick3
0x92f71dc4c198baa5	BackMenu_ChapterClick4
0xfbeb6fe82a534622	BackMenu_ChapterClick5
0x3b6f45a1f7eba171	BackMenu_ChapterClick6
0x0b70734d408d755b	BackMenu_ChapterClick7
0x119b707f7f07cefe	BackMenu_ChapterClick8
0xb74f7eb6d083cb24	BackMenu_ChapterClick9
0x8263388629c2ea39	BackMenu_HistoryClick1
0x3a4283b20c70c670	BackMenu_HistoryClick10
0xa283fd8a15a4e007	BackMenu_HistoryClick11
0xd183cc11491b8574	BackMenu_HistoryClick12
0x01409b3abb9faf3f	BackMenu_HistoryClick13
0x1cf609ef7031b464	BackMenu_HistoryClick14
0xbbf3b3884419f441	BackMenu_HistoryClick15
0x525beb7c7bf0b6c2	BackMenu_HistoryClick16
0x087081f30a41a309	BackMenu_HistoryClick17
0xe72486ef9669532b	BackMenu_HistoryClick18
0xd551fbd2fbcf39f3	BackMenu_HistoryClick19
0xb4d488c6dbd86f28	BackMenu_HistoryClick2
0xf3949ca015f2facd	BackMenu_HistoryClick3
0x314bb467b300d16f	BackMenu_HistoryClick4
0x2a8ce062be9f62c5	BackMenu_HistoryClick5
0x6fda0344ca038ae7	BackMenu_HistoryClick6
0x743a926f56fd079a	BackMenu_HistoryClick7
0xca86e954d3d40ec0	BackMenu_HistoryClick8
0x24dc0dd3b2471a22	BackMenu_HistoryClick9
0xd31dee084a5166e5	BackMenu_Popup
0x478e9b82a50ffea5	BackMenu_ShowFullHistory
0x048733a8c6205d00	BackgroundImageCache
0x554b7c860c749c2f	BadMessageTerminate_ACDH
0x878b28b309d1205e	BadMessageTerminate_AOF
0xec6518c4af50b7ac	BadMessageTerminate_BMF
0x5a858938e484c903	BadMessageTerminate_BRPH
0x6f41bf748eb54008	BadMessageTerminate_DBMF
0xd910b7f4e1b53c11	BadMessageTerminate_DSMF
0x6ebaa5e3651107fa	BadMessageTerminate_EFD
0xbecb3852be04c506	BadMessageTerminate_IDBMF
0xd7e4d61883121c76	BadMessageTerminate_NC
0x448f44d226b839b7	BadMessageTerminate_NC17
0xce2d3186346ab161	BadMessageTerminate_RVD
0xf845124429e7aa80	BadMessageTerminate_RVH
0xcb59a352ad13dc91	BadMessageTerminate_RWH
0xa47427921bd8233b	BadMessageTerminate_RWH1
0x1b40d08165319763	BadMessageTerminate_RWH2
0xb4074307cbcb96bd	BadMessageTerminate_RWH3
0xa00e08812a4284c2	BadMessageTerminate_RWH4
0xefc9deffa33ee67d	BadMessageTerminate_RWH5
0xc4874f0e8e8b60aa	BadMessageTerminate_WPH
0x1d145f0af708242c	BlockNonsandboxedPlugins_Disable
0xd80cc9291c9c82a9	BlockNonsandboxedPlugins_Enable
0xe0daa169d443430e	BlockedPluginInfobar.AllowThisTime
0xbc5f7815d41f0a0a	BlockedPluginInfobar.AlwaysAllow
0xa6092c47f7cd698b	BlockedPluginInfobar.Closed
0xf73bbd9fdcaeb1f9	BlockedPluginInfobar.Dismissed
0x4937bd47014fb3e0	BlockedPluginInfobar.LearnMore
0x127e30ad4cde6b00	BlockedPluginInfobar.Shown
0x4353c1e2880c75be	BlockedPluginInfobar.Shown.Java
0x84cc82257207df8d	BlockedPluginInfobar.Shown.QuickTime
0x819dbe166b094c47	BlockedPluginInfobar.Shown.RealPlayer
0x65add1afd150b840	BlockedPluginInfobar.Shown.Shockwave
0x0ef80834f3e539cc	BlockedPluginInfobar.Shown.WindowsMediaPlayer
0x114c3050111d8b8d	Bold
0x02f476e54c6d58bd	BookmarkBarFolder_CtxMenu
0x3012b56b98c28823	BookmarkBarFolder_DragEnd
0xe71c0ba72ca2f331	BookmarkBarFolder_DragStart
0x4213d5e4d5da1c0a	BookmarkBar_ContextMenu_Add
0x1ce97170a30f2fdd	BookmarkBar_ContextMenu_Edit
0xbe267767bb380a0d	BookmarkBar_ContextMenu_NewFolder
0x41b46cb5ee579e4a	BookmarkBar_ContextMenu_Open
0xc0b2c7f3e0cf1d69	BookmarkBar_ContextMenu_OpenAll
0xb6828d311b612fdd	BookmarkBar_ContextMenu_OpenAllInNewWindow
0x95a93ad59fa23f78	BookmarkBar_ContextMenu_OpenAllIncognito
0x798f8467fbe49e1e	BookmarkBar_ContextMenu_OpenInNewTab
0x14c4432cb3aca04b	BookmarkBar_ContextMenu_OpenInNewWindow
0xd8a39c089af645f1	BookmarkBar_ContextMenu_Remove
0xa90364ba80763db0	BookmarkBar_ContextMenu_RemoveFromBookmarkBar
0xa905159308ac6adc	BookmarkBar_ContextMenu_ShowInFolder
0x07801d0423d26682	BookmarkBar_CtxMenu
0x8623e5f54147dbe6	BookmarkBar_DragButton
0x4b37738130b32b3e	BookmarkBar_DragEnd
0x6c0fc567d362960e	BookmarkBar_DragFromFolder
0xeec5d4ade759d651	BookmarkBar_DragRecentlyBookmarked
0xeffa5b8ce7f96fd9	BookmarkBar_DragStart
0x949073bf8996b6c8	BookmarkBar_ShowOtherBookmarks
0xef415d0bbf795b32	BookmarkBar_ShowRecentlyBookmarked
0xd4d041fb05dcaebf	BookmarkBubble_ChangeParent
0x83076d556121e076	BookmarkBubble_ChangeTitleInBubble
0x4cc462516fa2889d	BookmarkBubble_Edit
0x58cace8d3ebf1abe	BookmarkBubble_EditFromCombobox
0xf7694a5980ded770	BookmarkBubble_Options
0x39ef6892d936d7a7	BookmarkBubble_RemoveFromBookmarkBar
0x75e42372b72c1861	BookmarkBubble_ShowOnBookmarkBar
0x30597ba5e2be6f6d	BookmarkBubble_Unstar
0x1671befd86500f4c	BookmarkManager_Export
0x2a8f60054baba3eb	BookmarkManager_Import
0xfc2f9e1efe0612ba	BookmarkManager_Sort
0xc7c989d7aa14f64d	BookmarkManager_Sync
0xec92650848f88dda	BookmarkMenu_clicked
0xd1cd299109c75a4c	Bookmarks_Search
0xea4788705e6873b4	Cancel
0x89394b102e55da81	ClearAuthenticationCache
0x6bd5f5b094096aa7	ClearBrowsingData_Autofill
0xae5b20986fb024db	ClearBrowsingData_Cache
0x6755e17f118c99d8	ClearBrowsingData_Cookies
0xea9b835bf0310f85	ClearBrowsingData_Downloads
0xe3c9686626019346	ClearBrowsingData_History
0x86678d0ede469c46	ClearBrowsingData_LSOData
0x82601d6a3aca0eb1	ClearBrowsingData_OriginBoundCerts
0x511e8366cdda3890	ClearBrowsingData_Passwords
0x6d69a061f7adf595	ClearBrowsingData_ShowDlg
0x9fd631c62234969a	ClearSelection
0x49c37636ddeb5a10	ClearSiteDataOnExitDisabled
0xf63362e0c7d7420d	ClearSiteDataOnExitEnabled
0xf2c974774a0fd57e	ClickToPlay_AllowAlways
0x3589e51b0b1bf730	ClickToPlay_Dismiss_Infobar
0xe1b2d67ea37c5ba0	ClickToPlay_InfobarShown
0xcfe5a8d495d7df34	ClickToPlay_LoadAll_Bubble
0xb30dcb1850e21bce	ClickToPlay_LoadAll_Infobar
0x55c851e7c3d9a792	ClickedBookmarkBarURLButton
0x4f667771b8f484b1	CloseAllSuppressedPopups
0x9436ccb9a5cc6a27	CloseTab
0x7596c9721c97c14c	CloseTab_Accelerator
0xd477cbce1681d404	CloseTab_Mouse
0x4b31de70a21d7903	CloseWebApp
0xdf8926d323575ff8	CloseWindow
0xa0ebbbdb0eca8d89	ConflictBadge
0x33056b44f816c204	CookieBlockingDisabledPerDefault
0xcc192d44d8f426c7	CookieBlockingEnabledPerDefault
0x5fb63579fc981698	Copy
0x89d1b3eda3d01e3a	CopyToFindPboard
0xb3d0f42456c6eaf6	CopyURLToClipBoard
0x2aeb39c03cc86464	CreateLink
0x1225d110ef7fba17	CreateProfile
0x30604f84327d0ae5	CreateShortcut
0x8b83a029888765ac	CriticalNotificationShown
0x3811e868a8b2639a	CriticalNotification_AutoRestart
0x74d29a646c3b335c	CriticalNotification_Ignore
0x417f35273c2e009b	CriticalNotification_Restart
0xfdf6ee64a0588855	Cryptohome.PKCS11InitFail
0xeb334dca00e390e0	Cut
0xb94d8a074eddd267	Debugger
0xf2a6c498fb90ee34	Delete
0xee9ce204f091eb10	DeleteBackward
0x77996bb1dd52320d	DeleteForward
0xef062a4139c5c9f7	DeleteSelection
0x7845bb87dfa671c5	DeleteToEndOfParagraph
0x6c02931afa83fea8	DeleteWordBackward
0x433dee161f756bb5	DeleteWordForward
0x6efd3c1be94b4370	Destination_Application_Edit
0x599586022e671645	Destination_Application_Launch
0x7311c4dcd9426448	Destination_Application_Uninstall
0x2caa887c60d0edea	Destination_Bookmarks
0x06fe9a0e5226b124	Destination_Bookmarks_OpenURL
0x215c802c8c94cbed	Destination_Downloads
0x0813fdaffe0ea8c3	Destination_History
0xdff1c6338f5f5371	Destination_History_OpenURL
0x9d2d922e923f97f9	Destination_MostVisited
0xee9739d40c3c4a7a	Destination_MostVisited_OpenURL
0x68b765b881701d50	Destination_Sessions
0xd3e90631d6d04d51	DevTools_InspectElement
0xbadaf91b6bdbbe68	DevTools_ToggleConsole
0xddaad2f5e9238157	DevTools_ToggleWindow
0xdad0f491267f672e	DockingWindow_Bottom
0x7ecb78846fadf9bf	DockingWindow_BottomHalf
0xc818526e20834ebf	DockingWindow_Left
0xf87264dd1cac30d9	DockingWindow_LeftHalf
0xa9f758a358041079	DockingWindow_Maximize
0xc68b578019349940	DockingWindow_Right
0xec44ad3c479571f4	DockingWindow_RightHalf
0x91991a7061775526	DockingWindow_Top
0xed75712b0eb1913c	Duplicate
0xae5fcc3ad3a00c19	EditApplicationSettings
0x0326e6132edca57b	EditKeywords
0x2e08637d43bc3450	EditSearchEngines
0x9a2fdef24427ff67	EmailPageLocation
0xfef46e5063ce3dc7	Exit
0xdf56dffe242f621a	Extensions.ExtensionInstalled
0x4f07c158c8047ab9	Extensions.ExtensionUninstalled
0x08566bf746b7f665	Extensions.IDChangedError
0xa295e3ad39bbacc0	Extensions.WebStoreLaunch
0xbea4c2c8eb82d058	Feedback
0x4268aeb48d5c0d1e	FileBrowser.CreateNewFolder
0x604a1468d08b7c7b	FileBrowser.PhotoEditor.Edit
0xca74d47b273dd801	FileBrowser.PhotoEditor.View
0x4cfa6c981549e990	Find
0x058404d575478e31	FindNext
0xca56592cf013fc40	FindPrevious
0xd9b084b400f26439	FindString
0x79f97bfa526b56ec	FirstRunDef_Accept
0x7ff73528feb7491b	FocusAppMenu
0x05804843ffe72695	FocusBookmarksToolbar
0x44c489e30171039c	FocusChromeOSStatus
0xff4066491e7794bc	FocusLocation
0x930bb978f3a88be2	FocusNextPane
0x5e6c303e567af436	FocusPageAndAppMenus
0x658708a96ac44ccc	FocusPreviousPane
0x5b7b952796f109ad	FocusSearch
0xc27e065ab57a01e7	FocusToolbar
0x12d7f80b419064fa	FontName
0x24b0296570b11c95	FontSize
0x3c2f5208ba19e684	FontSizeDelta
0xe45960835dd83532	ForeColor
0x674e7408732120dc	FormatBlock
0x67d2f6740a8eaebf	Forward
0x407c6f01fc926581	ForwardDelete
0x0659a6d28eeb3cdc	ForwardMenu_ChapterClick1
0x1cf8a9593dddd549	ForwardMenu_ChapterClick10
0x282fb4c4773f6091	ForwardMenu_ChapterClick11
0x7aaaba5ddf181715	ForwardMenu_ChapterClick12
0xbf183c3b27f4612a	ForwardMenu_ChapterClick13
0x7b457b6824846628	ForwardMenu_ChapterClick14
0xe7b6c76310cf28a0	ForwardMenu_ChapterClick15
0xf83ba97f2dc5eda7	ForwardMenu_ChapterClick16
0x9f7e9db5377a87fd	ForwardMenu_ChapterClick17
0x3b7969fdde988c47	ForwardMenu_ChapterClick18
0xe00eaa33028aef1e	ForwardMenu_ChapterClick19
0x22ae6afaebb88ede	ForwardMenu_ChapterClick2
0xeaf788ceb40b4c52	ForwardMenu_ChapterClick3
0xc36c2fcdcce64d3c	ForwardMenu_ChapterClick4
0xa4989f324b58fed9	ForwardMenu_ChapterClick5
0x0f52ae4eda2f03a2	ForwardMenu_ChapterClick6
0x50b4aac8ef09fad6	ForwardMenu_ChapterClick7
0x6ad416ed5bbe25c3	ForwardMenu_ChapterClick8
0xd636afb40773f667	ForwardMenu_ChapterClick9
0x80457994e5624cb9	ForwardMenu_HistoryClick1
0x4afed56ff6097552	ForwardMenu_HistoryClick10
0xdc2821e4b1e4f4a5	ForwardMenu_HistoryClick11
0x49d0080788fb2dcf	ForwardMenu_HistoryClick12
0x93c16e3dfa87e30e	ForwardMenu_HistoryClick13
0x73d941830a276551	ForwardMenu_HistoryClick14
0xe7579f3c29b77b5b	ForwardMenu_HistoryClick15
0xb9c4a0ec5f6fdce5	ForwardMenu_HistoryClick16
0x7c4fb0eac18dc2f7	ForwardMenu_HistoryClick17
0x3130d901f8b9c6fe	ForwardMenu_HistoryClick18
0x2255d4f02bee3df3	ForwardMenu_HistoryClick19
0xa975db997d781b24	ForwardMenu_HistoryClick2
0xc22f8eaba64014d3	ForwardMenu_HistoryClick3
0x4cadc0f6a99ba415	ForwardMenu_HistoryClick4
0xe2f627fd545952fb	ForwardMenu_HistoryClick5
0x41b16a28f2130885	ForwardMenu_HistoryClick6
0xf9a72fbc4c89c2b6	ForwardMenu_HistoryClick7
0x4787fdb9e4526676	ForwardMenu_HistoryClick8
0xb685d7994214aa1f	ForwardMenu_HistoryClick9
0xb8ea5cd4ac9a7a71	ForwardMenu_Popup
0x87bdcab6bfd481db	ForwardMenu_ShowFullHistory
0x5f075ae3e1f9d038	Go
0x696c3c52634726aa	HiliteColor
0x4869b7ac0caae3fe	History_DeleteHistory
0xddf00e6e13ebc7ab	History_DragIcon
0xca7db0b9cda2eecd	History_DragThumbnail
0xdf8379d1cab60cbf	History_Search
0x8cf04a9734132302	Home
0x3f8725913f9606e0	ImportLockDialogCocoa_Shown
0x10209a50a49ea88f	ImportLockDialogGtk_Shown
0x03154e02d9a7d1b0	ImportLockDialogView_Shown
0x2679e82f33d66fc0	Import_ShowDlg
0x497470e76a40fc53	Indent
0xddbd530e88f0baad	InputMethodOptions_Open_chewing
0xfe212a1637f75443	InputMethodOptions_Open_hangul
0x155fe2aa889c6475	InputMethodOptions_Open_m17n:ar:kbd
0x702d3712351014c9	InputMethodOptions_Open_m17n:fa:isiri
0xcd3d52a63eb9d19f	InputMethodOptions_Open_m17n:hi:itrans
0x84a453cc41b70ade	InputMethodOptions_Open_m17n:th:kesmanee
0x781cb9476ef74fb6	InputMethodOptions_Open_m17n:th:pattachote
0x7ed4a3c1dbbea563	InputMethodOptions_Open_m17n:th:tis820
0x515db9088433579e	InputMethodOptions_Open_m17n:vi:tcvn
0x28585f828d27064e	InputMethodOptions_Open_m17n:vi:telex
0xaa5bd22b752b2402	InputMethodOptions_Open_m17n:vi:viqr
0x32caeac9c52a0b3e	InputMethodOptions_Open_m17n:vi:vni
0x9b5fe154dcfed5fc	InputMethodOptions_Open_m17n:zh:cangjie
0x4b904484c5ae5ef9	InputMethodOptions_Open_m17n:zh:quick
0xd760683dc9d7524f	InputMethodOptions_Open_mozc
0xaf5b5ca01e17f82f	InputMethodOptions_Open_mozc-dv
0x560b367165104ca0	InputMethodOptions_Open_mozc-jp
0xfc8099598cc3d1e6	InputMethodOptions_Open_pinyin
0x08ac76684d7e7d26	InputMethodOptions_Open_xkb:be::fra
0x850b8ba271d39949	InputMethodOptions_Open_xkb:be::ger
0x0b947d8e36f5c932	InputMethodOptions_Open_xkb:be::nld
0x46a87a1ab952dc04	InputMethodOptions_Open_xkb:bg::bul
0xa46c41e1afe6014b	InputMethodOptions_Open_xkb:bg:phonetic:bul
0x822bf0422c6827cd	InputMethodOptions_Open_xkb:br::por
0xabf8d015035007d4	InputMethodOptions_Open_xkb:ca::fra
0x1c146e1accb26ba1	InputMethodOptions_Open_xkb:ca:eng:eng
0x1092170d80d1a97e	InputMethodOptions_Open_xkb:ch::ger
0xee168304fd52c6da	InputMethodOptions_Open_xkb:ch:fr:fra
0x310e1c8edd3124fd	InputMethodOptions_Open_xkb:cz::cze
0xe7c956d1a5fe18b8	InputMethodOptions_Open_xkb:de::ger
0x54fd79dcc2c5078e	InputMethodOptions_Open_xkb:dk::dan
0xaaa3e638c0277e5d	InputMethodOptions_Open_xkb:ee::est
0x10d646c96bb290b0	InputMethodOptions_Open_xkb:es::spa
0x9e9970f4b46c2945	InputMethodOptions_Open_xkb:es:cat:cat
0x365b92eea899e7e7	InputMethodOptions_Open_xkb:fi::fin
0xc81eae3dfb9e0b9d	InputMethodOptions_Open_xkb:fr::fra
0x526ffe2c52ecda24	InputMethodOptions_Open_xkb:gb:extd:eng
0x8030ee073cf7a3c6	InputMethodOptions_Open_xkb:gr::gre
0xd154dbf3bb7c8107	InputMethodOptions_Open_xkb:hr::scr
0x4f9eafd4473f6e19	InputMethodOptions_Open_xkb:hu::hun
0x33f2b9f6c8539fde	InputMethodOptions_Open_xkb:il::heb
0x36471978fb1b0bea	InputMethodOptions_Open_xkb:it::ita
0x22020a263d5795ed	InputMethodOptions_Open_xkb:jp::jpn
0xed01f2795c864acf	InputMethodOptions_Open_xkb:kr:kr104:kor
0xc165f3fd0b803830	InputMethodOptions_Open_xkb:lt::lit
0x18b9e4dbb8025455	InputMethodOptions_Open_xkb:lv::lav
0x34a05814ab58931d	InputMethodOptions_Open_xkb:nl::nld
0x25659d10deab047d	InputMethodOptions_Open_xkb:no::nor
0xe39db1a9105a1816	InputMethodOptions_Open_xkb:pl::pol
0x545654bd66e632ff	InputMethodOptions_Open_xkb:pt::por
0x0b2eb1ceb2af7e31	InputMethodOptions_Open_xkb:ro::rum
0x397d3a57fed5bbac	InputMethodOptions_Open_xkb:rs::srp
0xd6b7cc8f607a5d62	InputMethodOptions_Open_xkb:ru::rus
0xb6ded54d82c9c63d	InputMethodOptions_Open_xkb:ru:phonetic:rus
0xf18cf6b9c54bcd9e	InputMethodOptions_Open_xkb:se::swe
0x4fcae8c67666b3a4	InputMethodOptions_Open_xkb:si::slv
0x06425a2a094ed04f	InputMethodOptions_Open_xkb:sk::slo
0x0217ffe65d9240b7	InputMethodOptions_Open_xkb:tr::tur
0x029ef6d08daae227	InputMethodOptions_Open_xkb:ua::ukr
0x8242054ab1bd9fdf	InputMethodOptions_Open_xkb:us::eng
0x6f0ca0c3f941e7f3	InputMethodOptions_Open_xkb:us:altgr-intl:eng
0x8c4bc3c1ddaf086f	InputMethodOptions_Open_xkb:us:dvorak:eng
0x3f383d6272a64128	InsertBacktab
0x22d1980eb6def616	InsertHTML
0x0ff692418469f747	InsertHorizontalRule
0xd90a0bafb43b7937	InsertImage
0x6243f0401d9d1817	InsertLineBreak
0x819ce2a733068b4d	InsertNewline
0x05534baac660c1e0	InsertNewlineInQuotedContent
0xfe80e1819088136d	InsertOrderedList
0x876c542c54254736	InsertParagraph
0x883d075e3e6d670c	InsertTab
0xb8890ced118a58f6	InsertText
0x1342e1e52f335f69	InsertUnorderedList
0xb7c371f7dd19c6fd	InstallSite
0x1d874710ccdcd46b	Italic
0x5569092107ae9fb0	JustifyCenter
0xb2e54b8c7671e92e	JustifyLeft
0xcd362d0d3c2a301a	JustifyRight
0x54eeedf1d26e7698	KeywordEditor_AddKeyword
0x204aad0f4a1f0f22	KeywordEditor_AddKeywordJS
0x37ac83353fd9be1f	KeywordEditor_ModifiedKeyword
0x2d038477eb20483b	KeywordEditor_RemoveKeyword
0xab20f097361154dc	LanguageChange_Accept
0x98ee7b2a2893443f	LanguageChange_Revert
0xcce20fb4bce11250	LanguageConfigView_Open
0x6c9d4656451fe020	LanguageMenuButton_InputMethodChanged
0x9895b811fa1a2f7e	LanguageMenuButton_Open
0x4bef75db451d23fb	LanguageOptions_DisableInputMethod_chewing
0xf336ef307e081efe	LanguageOptions_DisableInputMethod_hangul
0x31f603e454ce9301	LanguageOptions_DisableInputMethod_m17n:ar:kbd
0x8d99e4c7475dbc4e	LanguageOptions_DisableInputMethod_m17n:fa:isiri
0x978a3702045ddd98	LanguageOptions_DisableInputMethod_m17n:hi:itrans
0x3bf8f7a682215755	LanguageOptions_DisableInputMethod_m17n:th:kesmanee
0x7ddb7bc2e25e4c86	LanguageOptions_DisableInputMethod_m17n:th:pattachote
0x7c79ba0a7ddc551f	LanguageOptions_DisableInputMethod_m17n:th:tis820
0x64a3fb231691a106	LanguageOptions_DisableInputMethod_m17n:vi:tcvn
0x25c742d3c23ff71e	LanguageOptions_DisableInputMethod_m17n:vi:telex
0x2282d16406d4149c	LanguageOptions_DisableInputMethod_m17n:vi:viqr
0xc46962be71e81a74	LanguageOptions_DisableInputMethod_m17n:vi:vni
0x6f8182b9533a7bf6	LanguageOptions_DisableInputMethod_m17n:zh:cangjie
0xdd214c6e6e223f2c	LanguageOptions_DisableInputMethod_m17n:zh:quick
0xe5b7a334a40a29b1	LanguageOptions_DisableInputMethod_mozc
0x34c0af16cc2283f8	LanguageOptions_DisableInputMethod_mozc-dv
0x1e33e194e43d85ff	LanguageOptions_DisableInputMethod_mozc-jp
0xfd89518df98afaf3	LanguageOptions_DisableInputMethod_pinyin
0x20108869230aba12	LanguageOptions_DisableInputMethod_xkb:be::fra
0x977dc3accf7e638b	LanguageOptions_DisableInputMethod_xkb:be::ger
0xcf0b649f9a1a59c7	LanguageOptions_DisableInputMethod_xkb:be::nld
0xde0ba68a4ea3a9bf	LanguageOptions_DisableInputMethod_xkb:bg::bul
0xdaacfedb410a091e	LanguageOptions_DisableInputMethod_xkb:bg:phonetic:bul
0x60f266cb898affd4	LanguageOptions_DisableInputMethod_xkb:br::por
0x4fecb3e04929aca2	LanguageOptions_DisableInputMethod_xkb:ca::fra
0x197d8fb2f176e036	LanguageOptions_DisableInputMethod_xkb:ca:eng:eng
0x64305300f1ffa8af	LanguageOptions_DisableInputMethod_xkb:ch::ger
0xb3517f39d893bc56	LanguageOptions_DisableInputMethod_xkb:ch:fr:fra
0xf407ba1d8f098570	LanguageOptions_DisableInputMethod_xkb:cz::cze
0x66ec7b7c518dab3c	LanguageOptions_DisableInputMethod_xkb:de::ger
0xaab2b2ab32b79eaf	LanguageOptions_DisableInputMethod_xkb:dk::dan
0x231800f9acc70b4f	LanguageOptions_DisableInputMethod_xkb:ee::est
0x55901fb5aa842097	LanguageOptions_DisableInputMethod_xkb:es::spa
0xec86a454fb80111e	LanguageOptions_DisableInputMethod_xkb:es:cat:cat
0x18ca64de485033c8	LanguageOptions_DisableInputMethod_xkb:fi::fin
0x6d236611b97a8f64	LanguageOptions_DisableInputMethod_xkb:fr::fra
0x13facbf7da2f7826	LanguageOptions_DisableInputMethod_xkb:gb:extd:eng
0x215d96a1bda18a53	LanguageOptions_DisableInputMethod_xkb:gr::gre
0x6e3d64f780b3424a	LanguageOptions_DisableInputMethod_xkb:hr::scr
0x625fbaee633b4e53	LanguageOptions_DisableInputMethod_xkb:hu::hun
0x14a66e0b221a13bb	LanguageOptions_DisableInputMethod_xkb:il::heb
0xf5dbc48f5bcfd65f	LanguageOptions_DisableInputMethod_xkb:it::ita
0x11cb89758a2d2606	LanguageOptions_DisableInputMethod_xkb:jp::jpn
0x02b207c3740c92db	LanguageOptions_DisableInputMethod_xkb:kr:kr104:kor
0xcafacab7d5bec6c3	LanguageOptions_DisableInputMethod_xkb:lt::lit
0xa310032375e1a775	LanguageOptions_DisableInputMethod_xkb:lv::lav
0xfb0bedc9f892abf2	LanguageOptions_DisableInputMethod_xkb:nl::nld
0xc7210bf937ebf4d1	LanguageOptions_DisableInputMethod_xkb:no::nor
0x4f7d52ae0938b86e	LanguageOptions_DisableInputMethod_xkb:pl::pol
0xc7123952f2b4bf52	LanguageOptions_DisableInputMethod_xkb:pt::por
0xbf5c339263965e41	LanguageOptions_DisableInputMethod_xkb:ro::rum
0xf4c88d1eb003f153	LanguageOptions_DisableInputMethod_xkb:rs::srp
0xddc77955cace9f69	LanguageOptions_DisableInputMethod_xkb:ru::rus
0xb6e2bdd72bc5ca1b	LanguageOptions_DisableInputMethod_xkb:ru:phonetic:rus
0xbdbbb828f1afce9f	LanguageOptions_DisableInputMethod_xkb:se::swe
0xe65a7b8f5c72a35b	LanguageOptions_DisableInputMethod_xkb:si::slv
0x8e05ca20d7d104fa	LanguageOptions_DisableInputMethod_xkb:sk::slo
0x83928dfd8c874fd0	LanguageOptions_DisableInputMethod_xkb:tr::tur
0x15f38552ce3ef440	LanguageOptions_DisableInputMethod_xkb:ua::ukr
0x40118f4b64720619	LanguageOptions_DisableInputMethod_xkb:us::eng
0x99b1530d498aa978	LanguageOptions_DisableInputMethod_xkb:us:altgr-intl:eng
0x28a17da0e5170d9c	LanguageOptions_DisableInputMethod_xkb:us:dvorak:eng
0xbf74d2491fd43546	LanguageOptions_EnableInputMethod_chewing
0xa3850d86987729e3	LanguageOptions_EnableInputMethod_hangul
0xbd41d816d8ffa4d0	LanguageOptions_EnableInputMethod_m17n:ar:kbd
0xba649d035929fcc7	LanguageOptions_EnableInputMethod_m17n:fa:isiri
0xd55995652310e97d	LanguageOptions_EnableInputMethod_m17n:hi:itrans
0xc9349a3c4ea64758	LanguageOptions_EnableInputMethod_m17n:th:kesmanee
0x8ebf5ecdd9403d86	LanguageOptions_EnableInputMethod_m17n:th:pattachote
0xc1771d7b829a738e	LanguageOptions_EnableInputMethod_m17n:th:tis820
0x094f24c724c35098	LanguageOptions_EnableInputMethod_m17n:vi:tcvn
0x8f062dc3fbc54bd6	LanguageOptions_EnableInputMethod_m17n:vi:telex
0xb31dc2cc3a8b46cd	LanguageOptions_EnableInputMethod_m17n:vi:viqr
0x905e70ae85a254d9	LanguageOptions_EnableInputMethod_m17n:vi:vni
0xfef5e66f81905f45	LanguageOptions_EnableInputMethod_m17n:zh:cangjie
0x707054c3cc12ba9b	LanguageOptions_EnableInputMethod_m17n:zh:quick
0xf757893b8f47d386	LanguageOptions_EnableInputMethod_mozc
0x5e800e2879b118e1	LanguageOptions_EnableInputMethod_mozc-dv
0x0876a103cad5d843	LanguageOptions_EnableInputMethod_mozc-jp
0x56da8023f0cbe550	LanguageOptions_EnableInputMethod_pinyin
0x7ddef14e3ae9ca9b	LanguageOptions_EnableInputMethod_xkb:be::fra
0xcd6ff3d5d0cc4817	LanguageOptions_EnableInputMethod_xkb:be::ger
0xcc82746494498dc4	LanguageOptions_EnableInputMethod_xkb:be::nld
0x0aa7853408b07074	LanguageOptions_EnableInputMethod_xkb:bg::bul
0x699564bdd5712be7	LanguageOptions_EnableInputMethod_xkb:bg:phonetic:bul
0xc644632c62aeb8ca	LanguageOptions_EnableInputMethod_xkb:br::por
0x3a2c133c17b2bc75	LanguageOptions_EnableInputMethod_xkb:ca::fra
0x20bc5b77deb279f8	LanguageOptions_EnableInputMethod_xkb:ca:eng:eng
0x6cb09a3c8026a7aa	LanguageOptions_EnableInputMethod_xkb:ch::ger
0x9ad6a4a9638b5782	LanguageOptions_EnableInputMethod_xkb:ch:fr:fra
0xa559566c8c6ea637	LanguageOptions_EnableInputMethod_xkb:cz::cze
0x98af6ef5e3f72fb2	LanguageOptions_EnableInputMethod_xkb:de::ger
0xd42956556814d1ac	LanguageOptions_EnableInputMethod_xkb:dk::dan
0x0a403824d4bf1af8	LanguageOptions_EnableInputMethod_xkb:ee::est
0x6c0a59356dde2eac	LanguageOptions_EnableInputMethod_xkb:es::spa
0x8f92752907a878f4	LanguageOptions_EnableInputMethod_xkb:es:cat:cat
0xcd068af26c3eeb04	LanguageOptions_EnableInputMethod_xkb:fi::fin
0x23e04c4b87b2ec4a	LanguageOptions_EnableInputMethod_xkb:fr::fra
0x61b45586224d5505	LanguageOptions_EnableInputMethod_xkb:gb:extd:eng
0xcf2286bdb20f63dd	LanguageOptions_EnableInputMethod_xkb:gr::gre
0xad8f3703500bedcc	LanguageOptions_EnableInputMethod_xkb:hr::scr
0xe37001b17655d436	LanguageOptions_EnableInputMethod_xkb:hu::hun
0x48ece720994692cd	LanguageOptions_EnableInputMethod_xkb:il::heb
0xfbce8fb375d0cb10	LanguageOptions_EnableInputMethod_xkb:it::ita
0xe86c32f284eaa235	LanguageOptions_EnableInputMethod_xkb:jp::jpn
0x75254f6c14869f23	LanguageOptions_EnableInputMethod_xkb:kr:kr104:kor
0x7e72cd1f5e56c8de	LanguageOptions_EnableInputMethod_xkb:lt::lit
0x7e55464b40755c35	LanguageOptions_EnableInputMethod_xkb:lv::lav
0x1a1ca3eb2d8f9b6d	LanguageOptions_EnableInputMethod_xkb:nl::nld
0x06d15353036ca947	LanguageOptions_EnableInputMethod_xkb:no::nor
0x1e7c51aa38eb9c65	LanguageOptions_EnableInputMethod_xkb:pl::pol
0xa7e387a15749319e	LanguageOptions_EnableInputMethod_xkb:pt::por
0x87a75b792f1d8ee1	LanguageOptions_EnableInputMethod_xkb:ro::rum
0x38e76dba9085fa94	LanguageOptions_EnableInputMethod_xkb:rs::srp
0x9c6ce402bd03337b	LanguageOptions_EnableInputMethod_xkb:ru::rus
0x6bb6082988e4cbea	LanguageOptions_EnableInputMethod_xkb:ru:phonetic:rus
0xf78f942da3223853	LanguageOptions_EnableInputMethod_xkb:se::swe
0x46d0c5799ae35ae7	LanguageOptions_EnableInputMethod_xkb:si::slv
0x00084283db086e29	LanguageOptions_EnableInputMethod_xkb:sk::slo
0xc079d20c400f3e61	LanguageOptions_EnableInputMethod_xkb:tr::tur
0xac38bf5ba676edfb	LanguageOptions_EnableInputMethod_xkb:ua::ukr
0x4ae7cbf387b2ee2c	LanguageOptions_EnableInputMethod_xkb:us::eng
0xfc019a30579d475d	LanguageOptions_EnableInputMethod_xkb:us:altgr-intl:eng
0xf6b8e8d4de66cf77	LanguageOptions_EnableInputMethod_xkb:us:dvorak:eng
0xfa78305d269c1ec1	LanguageOptions_Open
0xda947fb4440a66e7	LanguageOptions_Restart
0xb5f8e1034ebaab43	LanguageOptions_SignOut
0x3bdcb57ed74b6f2c	LanguageOptions_SpellCheckLanguageChange_af
0x0268501c247fa3e1	LanguageOptions_SpellCheckLanguageChange_am
0x9d68c5a82572b3a5	LanguageOptions_SpellCheckLanguageChange_ar
0x216ae3faf9f4fc61	LanguageOptions_SpellCheckLanguageChange_az
0x85bddda0d071875b	LanguageOptions_SpellCheckLanguageChange_be
0x552a4f4066bb456b	LanguageOptions_SpellCheckLanguageChange_bg
0xea6b28b89f3b1bc2	LanguageOptions_SpellCheckLanguageChange_bh
0x173c0736c9838394	LanguageOptions_SpellCheckLanguageChange_bn
0xa357a0df0b190220	LanguageOptions_SpellCheckLanguageChange_br
0x474752275567a519	LanguageOptions_SpellCheckLanguageChange_bs
0x77b12159bb08e0c0	LanguageOptions_SpellCheckLanguageChange_ca
0x6872456b4ea20026	LanguageOptions_SpellCheckLanguageChange_co
0x258da94c1135762c	LanguageOptions_SpellCheckLanguageChange_cs
0x29a8f1a61033a69a	LanguageOptions_SpellCheckLanguageChange_cy
0xb30aafb7259dcd76	LanguageOptions_SpellCheckLanguageChange_da
0xd4d51eee8ca53562	LanguageOptions_SpellCheckLanguageChange_de
0x8d90ebda20909ebe	LanguageOptions_SpellCheckLanguageChange_de-AT
0x2311311ecb5272c2	LanguageOptions_SpellCheckLanguageChange_de-CH
0xdc02d8c4e8b01766	LanguageOptions_SpellCheckLanguageChange_de-DE
0x7ee2af2c5a437e1a	LanguageOptions_SpellCheckLanguageChange_el
0x4fc6d56cdd72700e	LanguageOptions_SpellCheckLanguageChange_en
0x7a9875b0b8efb1ad	LanguageOptions_SpellCheckLanguageChange_en-AU
0x210830b65e90eedf	LanguageOptions_SpellCheckLanguageChange_en-CA
0x9c5ecf7ee4cd7fe6	LanguageOptions_SpellCheckLanguageChange_en-GB
0xa1ca46cc1bacf01e	LanguageOptions_SpellCheckLanguageChange_en-NZ
0xc2ef2ccd8a872da8	LanguageOptions_SpellCheckLanguageChange_en-US
0xfa49edbe6e1a8099	LanguageOptions_SpellCheckLanguageChange_en-ZA
0xb89148d2ec4d78eb	LanguageOptions_SpellCheckLanguageChange_eo
0x7a8a9928c6951178	LanguageOptions_SpellCheckLanguageChange_es
0x335c54f4600c0b06	LanguageOptions_SpellCheckLanguageChange_es-419
0x2be5d12ada80fe8c	LanguageOptions_SpellCheckLanguageChange_et
0x85fb3829228fcc2e	LanguageOptions_SpellCheckLanguageChange_eu
0x888c6e9da75bd6ea	LanguageOptions_SpellCheckLanguageChange_fa
0x6a71fe1235b65ea8	LanguageOptions_SpellCheckLanguageChange_fi
0x786510108f6bd621	LanguageOptions_SpellCheckLanguageChange_fil
0xb65b87a46bc6848a	LanguageOptions_SpellCheckLanguageChange_fo
0x350594ed486733ab	LanguageOptions_SpellCheckLanguageChange_fr
0x92b548bfe8dc3ae9	LanguageOptions_SpellCheckLanguageChange_fr-CA
0x22d8ce8d402861df	LanguageOptions_SpellCheckLanguageChange_fr-CH
0x04b12f0c336d715c	LanguageOptions_SpellCheckLanguageChange_fr-FR
0xedba3ba5ccd84adc	LanguageOptions_SpellCheckLanguageChange_fy
0xfc18bb1660a03b60	LanguageOptions_SpellCheckLanguageChange_ga
0x1b9c8352f74b0c82	LanguageOptions_SpellCheckLanguageChange_gd
0xfdfa4d8cd811f664	LanguageOptions_SpellCheckLanguageChange_gl
0xac52fce34c780009	LanguageOptions_SpellCheckLanguageChange_gn
0xd78744f6c3b943d5	LanguageOptions_SpellCheckLanguageChange_gu
0xd4bb24d5585722d5	LanguageOptions_SpellCheckLanguageChange_ha
0xa1df103387fe44eb	LanguageOptions_SpellCheckLanguageChange_haw
0xe6a740028864e54c	LanguageOptions_SpellCheckLanguageChange_he
0x4a5ac45c11294524	LanguageOptions_SpellCheckLanguageChange_hi
0x5634d2d630b62db7	LanguageOptions_SpellCheckLanguageChange_hr
0x0d9b2da08e908398	LanguageOptions_SpellCheckLanguageChange_hu
0x6235fe36d587a174	LanguageOptions_SpellCheckLanguageChange_hy
0x96a69530dcf9c952	LanguageOptions_SpellCheckLanguageChange_ia
0x33858a0f90601b99	LanguageOptions_SpellCheckLanguageChange_id
0x421fd3a986c9268a	LanguageOptions_SpellCheckLanguageChange_is
0x6963156dd2e5a8da	LanguageOptions_SpellCheckLanguageChange_it
0x0c579f6bc1d7eb3d	LanguageOptions_SpellCheckLanguageChange_it-CH
0x9415bc67e35d695b	LanguageOptions_SpellCheckLanguageChange_it-IT
0xc309312f7d87e667	LanguageOptions_SpellCheckLanguageChange_ja
0xa16e44ff1be39a3e	LanguageOptions_SpellCheckLanguageChange_jw
0x69a6884a3d26b3da	LanguageOptions_SpellCheckLanguageChange_ka
0xda7c858e99e65ef4	LanguageOptions_SpellCheckLanguageChange_kk
0x2ef0148c5104510b	LanguageOptions_SpellCheckLanguageChange_km
0x0c285764bac9c412	LanguageOptions_SpellCheckLanguageChange_kn
0xdf1b960c7c2cc1e7	LanguageOptions_SpellCheckLanguageChange_ko
0x5d128aa7040d29c6	LanguageOptions_SpellCheckLanguageChange_ku
0x535257816775f9f5	LanguageOptions_SpellCheckLanguageChange_ky
0x9c4079a6ebd99d4f	LanguageOptions_SpellCheckLanguageChange_la
0xbcdb116c72381903	LanguageOptions_SpellCheckLanguageChange_ln
0x188a55a79836e3ab	LanguageOptions_SpellCheckLanguageChange_lo
0x35c70c9a4d851dc6	LanguageOptions_SpellCheckLanguageChange_lt
0x8566b76a82e7fdeb	LanguageOptions_SpellCheckLanguageChange_lv
0xb21dc3c6409fb03b	LanguageOptions_SpellCheckLanguageChange_mk
0xbc1d9b51b30e674e	LanguageOptions_SpellCheckLanguageChange_ml
0xe184488215d31cff	LanguageOptions_SpellCheckLanguageChange_mn
0xb4048acd46620f9d	LanguageOptions_SpellCheckLanguageChange_mo
0x494852187a45238e	LanguageOptions_SpellCheckLanguageChange_mr
0x3252be13f227791e	LanguageOptions_SpellCheckLanguageChange_ms
0x47b98aa2c04db05a	LanguageOptions_SpellCheckLanguageChange_mt
0xd1019f3988676333	LanguageOptions_SpellCheckLanguageChange_nb
0xc7d80d5be9fd265a	LanguageOptions_SpellCheckLanguageChange_ne
0x0fe1fa4c9113cdca	LanguageOptions_SpellCheckLanguageChange_nl
0xbf2dc22115880d3d	LanguageOptions_SpellCheckLanguageChange_nn
0xcab46544f005c97a	LanguageOptions_SpellCheckLanguageChange_no
0x031c51747e109ed0	LanguageOptions_SpellCheckLanguageChange_oc
0x18148cc2641e2e75	LanguageOptions_SpellCheckLanguageChange_om
0x5af0c86bd4fbc6d4	LanguageOptions_SpellCheckLanguageChange_or
0xe9142e813c57d901	LanguageOptions_SpellCheckLanguageChange_pa
0x56f8dea08fc60dd0	LanguageOptions_SpellCheckLanguageChange_pl
0xcc46a9b43892cd17	LanguageOptions_SpellCheckLanguageChange_ps
0xa8e521739e3a8111	LanguageOptions_SpellCheckLanguageChange_pt
0x0965fa6496b7bc86	LanguageOptions_SpellCheckLanguageChange_pt-BR
0xa245fca6322289f1	LanguageOptions_SpellCheckLanguageChange_pt-PT
0x0c0249f8a5ddd2fd	LanguageOptions_SpellCheckLanguageChange_qu
0x1e4414f0c08e409b	LanguageOptions_SpellCheckLanguageChange_rm
0x9de3adae56cd4645	LanguageOptions_SpellCheckLanguageChange_ro
0xdf75477e7e9105c9	LanguageOptions_SpellCheckLanguageChange_ru
0xa5227b45669bf1d9	LanguageOptions_SpellCheckLanguageChange_sd
0x99ac10d69235bc19	LanguageOptions_SpellCheckLanguageChange_sh
0xb65301fe78a5f948	LanguageOptions_SpellCheckLanguageChange_si
0x4043d3a9b8a0b7d3	LanguageOptions_SpellCheckLanguageChange_sk
0xd48fd58efca4a848	LanguageOptions_SpellCheckLanguageChange_sl
0x4811fa57db8aba7b	LanguageOptions_SpellCheckLanguageChange_sn
0xb460c6a021ce30ce	LanguageOptions_SpellCheckLanguageChange_so
0xcf8fbb2f35d437f9	LanguageOptions_SpellCheckLanguageChange_sq
0x4266aeea5a172fed	LanguageOptions_SpellCheckLanguageChange_sr
0xb70d00fe5b60399f	LanguageOptions_SpellCheckLanguageChange_st
0x4f307c5e96126e39	LanguageOptions_SpellCheckLanguageChange_su
0x793f0539702106b3	LanguageOptions_SpellCheckLanguageChange_sv
0xd0683f1a88f2dcd9	LanguageOptions_SpellCheckLanguageChange_sw
0x4adb832cdfa82e95	LanguageOptions_SpellCheckLanguageChange_ta
0xe5e6f8a2c34dbf3f	LanguageOptions_SpellCheckLanguageChange_te
0xb56ca80c23e21e82	LanguageOptions_SpellCheckLanguageChange_tg
0xc31434dd30b37c79	LanguageOptions_SpellCheckLanguageChange_th
0xbf3ce64eb42276ce	LanguageOptions_SpellCheckLanguageChange_ti
0x9a7852d3d5a451dd	LanguageOptions_SpellCheckLanguageChange_tk
0x54a10166348130da	LanguageOptions_SpellCheckLanguageChange_to
0xceb028c8d98b6f69	LanguageOptions_SpellCheckLanguageChange_tr
0x6110f46e5d1d5ce3	LanguageOptions_SpellCheckLanguageChange_tt
0x9ed4a1802694e371	LanguageOptions_SpellCheckLanguageChange_tw
0xf2aa74178fae8737	LanguageOptions_SpellCheckLanguageChange_ug
0xeba4b1bfb148fe5c	LanguageOptions_SpellCheckLanguageChange_uk
0xdc2fbf10c4e3cc7e	LanguageOptions_SpellCheckLanguageChange_ur
0x7de2dd2191f8f3b5	LanguageOptions_SpellCheckLanguageChange_uz
0x20f26902bf2b0f7e	LanguageOptions_SpellCheckLanguageChange_vi
0x69a672e997291046	LanguageOptions_SpellCheckLanguageChange_xh
0xd95a13401430464b	LanguageOptions_SpellCheckLanguageChange_yi
0xdfa41d1e586edede	LanguageOptions_SpellCheckLanguageChange_yo
0xe464bee2f7b47f05	LanguageOptions_SpellCheckLanguageChange_zh
0x02feeb3c3fbb0e6d	LanguageOptions_SpellCheckLanguageChange_zh-CN
0x388861c5b05fcfd7	LanguageOptions_SpellCheckLanguageChange_zh-TW
0xa7832f7951587154	LanguageOptions_SpellCheckLanguageChange_zu
0x28f95708216c5f3f	LanguageOptions_UiLanguageChange_af
0x64bf99d3a3ae3c09	LanguageOptions_UiLanguageChange_am
0x37e45415ff188c83	LanguageOptions_UiLanguageChange_ar
0xc16e98ac284f7a2c	LanguageOptions_UiLanguageChange_az
0x86afaa8af655ec3a	LanguageOptions_UiLanguageChange_be
0xd3444f0a33415c12	LanguageOptions_UiLanguageChange_bg
0x2a970136519d8e05	LanguageOptions_UiLanguageChange_bh
0x373b5f9df58f10b1	LanguageOptions_UiLanguageChange_bn
0xaa60c4c46bab2840	LanguageOptions_UiLanguageChange_br
0x576186b20f58a62e	LanguageOptions_UiLanguageChange_bs
0x2ee7812d1d628187	LanguageOptions_UiLanguageChange_ca
0x0d39e71d36e3f98c	LanguageOptions_UiLanguageChange_co
0x009ad7b74dd6eead	LanguageOptions_UiLanguageChange_cs
0x9fc56d8b05719e95	LanguageOptions_UiLanguageChange_cy
0x71c22450bc774ac6	LanguageOptions_UiLanguageChange_da
0xdad8029db0738ca3	LanguageOptions_UiLanguageChange_de
0xe5f02b9f07d5c321	LanguageOptions_UiLanguageChange_de-AT
0x937082a0f96b339b	LanguageOptions_UiLanguageChange_de-CH
0x60067bef740b0cee	LanguageOptions_UiLanguageChange_de-DE
0x0598fe9cffcf7342	LanguageOptions_UiLanguageChange_el
0x20682c0970bf6c39	LanguageOptions_UiLanguageChange_en
0xb6b90d60aa7397dc	LanguageOptions_UiLanguageChange_en-AU
0x20ffa805c7cb2d11	LanguageOptions_UiLanguageChange_en-CA
0x0abeddf23bb637dd	LanguageOptions_UiLanguageChange_en-GB
0x8e377316a588ae05	LanguageOptions_UiLanguageChange_en-NZ
0x5e4314a4bd4d6ec1	LanguageOptions_UiLanguageChange_en-US
0xacb33ac957ca869b	LanguageOptions_UiLanguageChange_en-ZA
0xabb1750f364f3fdf	LanguageOptions_UiLanguageChange_eo
0x42ef1c985cf8dac3	LanguageOptions_UiLanguageChange_es
0x207a8d00a40289d5	LanguageOptions_UiLanguageChange_es-419
0x3396cd1cc34fcd6b	LanguageOptions_UiLanguageChange_et
0x1bc0603299c4c900	LanguageOptions_UiLanguageChange_eu
0x4f3e8052d630b9ef	LanguageOptions_UiLanguageChange_fa
0xef30a035ea67916e	LanguageOptions_UiLanguageChange_fi
0x6b0bf8c255f455c4	LanguageOptions_UiLanguageChange_fil
0xa43a6a0b854ffefd	LanguageOptions_UiLanguageChange_fo
0x3636182675a031c8	LanguageOptions_UiLanguageChange_fr
0x6f0bffdb3032caed	LanguageOptions_UiLanguageChange_fr-CA
0xd912f13c73979882	LanguageOptions_UiLanguageChange_fr-CH
0xe924dfbfd17a3242	LanguageOptions_UiLanguageChange_fr-FR
0x061bf0d19eeef81e	LanguageOptions_UiLanguageChange_fy
0x8251febc4083f54f	LanguageOptions_UiLanguageChange_ga
0xccd31a77ee4366bf	LanguageOptions_UiLanguageChange_gd
0x1f67f851b23ced0f	LanguageOptions_UiLanguageChange_gl
0xcc9859375f855961	LanguageOptions_UiLanguageChange_gn
0xd56c64f864957d91	LanguageOptions_UiLanguageChange_gu
0xd08b36368944e379	LanguageOptions_UiLanguageChange_ha
0xb3a6464f5fe71073	LanguageOptions_UiLanguageChange_haw
0xed8f4616b34e2185	LanguageOptions_UiLanguageChange_he
0x88ca2030cc3a49d9	LanguageOptions_UiLanguageChange_hi
0xb8bd533bdc898a53	LanguageOptions_UiLanguageChange_hr
0x746a1a0e63dd3f6d	LanguageOptions_UiLanguageChange_hu
0x48906875b3fd6c95	LanguageOptions_UiLanguageChange_hy
0x1366ee57f2aebfad	LanguageOptions_UiLanguageChange_ia
0xff1d8f2925f8463c	LanguageOptions_UiLanguageChange_id
0x915c19c85aed6a03	LanguageOptions_UiLanguageChange_is
0xd1abd6db369ab7ef	LanguageOptions_UiLanguageChange_it
0xe0c3a22acdd867b9	LanguageOptions_UiLanguageChange_it-CH
0x3090b03a3e46582b	LanguageOptions_UiLanguageChange_it-IT
0x60f4dd00cc06d874	LanguageOptions_UiLanguageChange_ja
0x86c8f166345df95e	LanguageOptions_UiLanguageChange_jw
0x670ea55ac2c8b062	LanguageOptions_UiLanguageChange_ka
0x5b57cde2d36ca8cd	LanguageOptions_UiLanguageChange_kk
0xbeb6576493ae6d05	LanguageOptions_UiLanguageChange_km
0xce996c9699b3168c	LanguageOptions_UiLanguageChange_kn
0xbd07adaea57b26f5	LanguageOptions_UiLanguageChange_ko
0x4f0a66f954fa580e	LanguageOptions_UiLanguageChange_ku
0xb87acb54b22131c8	LanguageOptions_UiLanguageChange_ky
0x8263585e1943372f	LanguageOptions_UiLanguageChange_la
0x6642ed654dd4aaa4	LanguageOptions_UiLanguageChange_ln
0x273efc98e31a51cd	LanguageOptions_UiLanguageChange_lo
0xd25cfe9ca78a31d7	LanguageOptions_UiLanguageChange_lt
0x794081adfcb1744c	LanguageOptions_UiLanguageChange_lv
0xf6ea1c5fc4dcafb8	LanguageOptions_UiLanguageChange_mk
0x2258884fcb94b3a3	LanguageOptions_UiLanguageChange_ml
0x00bdaddaf47561d1	LanguageOptions_UiLanguageChange_mn
0x3b0c2fa0b7b027db	LanguageOptions_UiLanguageChange_mo
0xfec577eb29f4b768	LanguageOptions_UiLanguageChange_mr
0x2d1ef24818ca5e4f	LanguageOptions_UiLanguageChange_ms
0x06ddcd11da46bb50	LanguageOptions_UiLanguageChange_mt
0x5683a40b0b8caa20	LanguageOptions_UiLanguageChange_nb
0x2ba4d49749d043fa	LanguageOptions_UiLanguageChange_ne
0x584a118482ee3a32	LanguageOptions_UiLanguageChange_nl
0x7ca178a2a1311c1e	LanguageOptions_UiLanguageChange_nn
0xcef3082674f7bfc0	LanguageOptions_UiLanguageChange_no
0x4ef5f77644dbfc68	LanguageOptions_UiLanguageChange_oc
0x648ba70088175e47	LanguageOptions_UiLanguageChange_om
0xb76df1c750016022	LanguageOptions_UiLanguageChange_or
0x4d3566c9fb39fde3	LanguageOptions_UiLanguageChange_pa
0xb2e1327766d055ad	LanguageOptions_UiLanguageChange_pl
0x9e562f625cfbb008	LanguageOptions_UiLanguageChange_ps
0xd970808d9c9448d1	LanguageOptions_UiLanguageChange_pt
0xf7b46f1138de06a9	LanguageOptions_UiLanguageChange_pt-BR
0x086ef991869ac783	LanguageOptions_UiLanguageChange_pt-PT
0x69a974172e5e9f73	LanguageOptions_UiLanguageChange_qu
0xdd1935e2579c1284	LanguageOptions_UiLanguageChange_rm
0xe5738c8e946ba1d0	LanguageOptions_UiLanguageChange_ro
0x125913fb14d47526	LanguageOptions_UiLanguageChange_ru
0x0f156a0f15f74bb8	LanguageOptions_UiLanguageChange_sd
0x9240b6a14cd35919	LanguageOptions_UiLanguageChange_sh
0x6763083d96429a61	LanguageOptions_UiLanguageChange_si
0x587831f4b9220eca	LanguageOptions_UiLanguageChange_sk
0x15a09e54aa1e9f4a	LanguageOptions_UiLanguageChange_sl
0x6a5ac197de560ec4	LanguageOptions_UiLanguageChange_sn
0x93472fab0fe3f061	LanguageOptions_UiLanguageChange_so
0x1bbc961a4eb4fb07	LanguageOptions_UiLanguageChange_sq
0xb1392f5ad48fe1a7	LanguageOptions_UiLanguageChange_sr
0x04e5f8326179901e	LanguageOptions_UiLanguageChange_st
0x5fef5745a2763b80	LanguageOptions_UiLanguageChange_su
0x8993a9d1df3ccc59	LanguageOptions_UiLanguageChange_sv
0xaedab7909dff790b	LanguageOptions_UiLanguageChange_sw
0x6c1f62315896ca95	LanguageOptions_UiLanguageChange_ta
0x762084c13a9a9b62	LanguageOptions_UiLanguageChange_te
0x0060f27c68e28c87	LanguageOptions_UiLanguageChange_tg
0x80b5fea53c9d6164	LanguageOptions_UiLanguageChange_th
0xeeb3bd273099c7d3	LanguageOptions_UiLanguageChange_ti
0xfa67fec49e23c547	LanguageOptions_UiLanguageChange_tk
0x052e8ac2c052128c	LanguageOptions_UiLanguageChange_to
0xaa97a95d0c9e20b5	LanguageOptions_UiLanguageChange_tr
0x8e949fbebe2126cf	LanguageOptions_UiLanguageChange_tt
0xe0fc96469f2d822f	LanguageOptions_UiLanguageChange_tw
0xa4a84a5651503494	LanguageOptions_UiLanguageChange_ug
0x0b0bcb0d93b5a367	LanguageOptions_UiLanguageChange_uk
0x2be9356bc4812c15	LanguageOptions_UiLanguageChange_ur
0xe0e1ece201b6889f	LanguageOptions_UiLanguageChange_uz
0x28a1a4b9dc5a83f1	LanguageOptions_UiLanguageChange_vi
0xf16ab2f1f9cfeaab	LanguageOptions_UiLanguageChange_xh
0x26561f9577c4d728	LanguageOptions_UiLanguageChange_yi
0x0d5d98b098d7429b	LanguageOptions_UiLanguageChange_yo
0xa9b1ee532cc5580b	LanguageOptions_UiLanguageChange_zh
0xbee911865b93d504	LanguageOptions_UiLanguageChange_zh-CN
0x03a61bc8bd6c791b	LanguageOptions_UiLanguageChange_zh-TW
0xd93d87f83683d666	LanguageOptions_UiLanguageChange_zu
0x384a6609143bbcae	LoadURL
0xe009e92f3909009c	LoadURLFromKeyword
0x795fc04747be6afa	LockScreen
0xfb40450c5de92998	Login_Failure
0x31374d163aec5a5e	Login_GuestLoginSuccess
0x47421e3d3406b4e1	Login_OffTheRecordLoginSuccess
0xc23fa875d14a7ddb	Login_Success
0x84ba0ed3cbdf3956	MediaContextMenu_Controls
0x7b82a108ac28a1ac	MediaContextMenu_Loop
0x458edb8f0451b9f5	MediaContextMenu_Mute
0xcbbec2e6e4bc9bc7	MediaContextMenu_Pause
0x8b5912c6a1d5add6	MediaContextMenu_Play
0xc2d04b65a8ff1f89	MediaContextMenu_Unmute
0x409a073e57298782	MostVisited0
0xaf4909be766297ab	MostVisited1
0x6028c57529e1608f	MostVisited2
0x3a94312581f33dde	MostVisited3
0xd8a6b50e524602b1	MostVisited4
0xa61f8bda87c26817	MostVisited5
0xaf2d6d86c5115610	MostVisited6
0x576b4b3570828783	MostVisited7
0x7e2c4d68af709827	MostVisited8
0x1b40c6b1b5dd7106	MostVisited9
0x245e4aa9fe5a8a3c	MostVisitedReordered
0x9c6a4ef293d946ca	MostVisited_BlacklistCleared
0x018c0ec301cb02ae	MostVisited_UrlBlacklisted
0x4cbb82140919fe65	MostVisited_UrlPinned
0xa90e38146e0a4399	MostVisited_UrlRemoved
0xe39ca5075f8cb467	MostVisited_UrlUnpinned
0xf812385dfcc1a683	MoveBackward
0xd5980f1362f718dd	MoveBackwardAndModifySelection
0x8c95fa949833ae3c	MoveDown
0x601512931eeb8aa3	MoveDownAndModifySelection
0x122077e11a3cc3a5	MoveForward
0x645ad0c708fc5558	MoveForwardAndModifySelection
0xe8a98c6fabdea857	MoveLeft
0xe7929afc55d64080	MoveLeftAndModifySelection
0xffee5f8627577124	MovePageDown
0x7c9e3f063ca16598	MovePageDownAndModifySelection
0x3f2197bd2a87175c	MovePageUp
0x2b0ce1185e0ee65d	MovePageUpAndModifySelection
0x78af9b7fcdf1574f	MoveRight
0x90177a63e4ab5878	MoveRightAndModifySelection
0x6c8c1cceb6be3172	MoveTabNext
0x56f311997d5f98ed	MoveTabPrevious
0xb57645f74f42e96c	MoveToBeginningOfDocument
0x3379b28a420f0c0e	MoveToBeginningOfLine
0xe9ba772da7cca699	MoveToBeginningOfLineAndModifySelection
0x02bb149b88f68e59	MoveToBeginningOfParagraph
0xfa68df5359bb8fdc	MoveToBeginningOfParagraphAndModifySelection
0x0d05f6fc5732a16d	MoveToEndOfDocument
0xd6b0cd02740d6118	MoveToEndOfLine
0x660cce052c15cd1c	MoveToEndOfLineAndModifySelection
0x925cca836b27299f	MoveToEndOfParagraph
0xafbef52070141639	MoveToEndOfParagraphAndModifySelection
0xa56a3ff692c679e3	MoveUp
0x5011c876151c1812	MoveUpAndModifySelection
0xccdc0bb665a92238	MoveWordBackward
0x9372bb835cd720fb	MoveWordForward
0x002e07cb5223cd33	MoveWordLeft
0xd55f7c4e520b18a4	MoveWordRight
0xfc8e40d96ab33f1b	NTPPromoClosed
0x0cdd043c5d63d234	NTPPromoShown
0xdcf1af37de1d8dd0	NativeUI_Applications
0x3c6e0d9310ba3a20	NewIncognitoWindow
0xeddaa38a10bf8374	NewProfileWindowByIndex
0x290eb683f96572f1	NewTab
0x95c990454684cb1d	NewTabPage_ReopenTab
0xab4d417c5ca44904	NewTab_Button
0xbdc9ec125e7a3ade	NewWindow
0xe7ff15c3f1043a26	Omnibox_DragString
0x1a18c36c737ec22b	Omnibox_DragURL
0xa00fbd8da8229c83	OpenAllBookmarks
0x7242962875070018	OpenAllBookmarksIncognitoWindow
0x5e3bd4e3535ecc38	OpenAllBookmarksNewWindow
0x4b858349a1b8bb15	OpenFile
0xedaa8487de2a33c6	OpenFileManager
0xb3c3e8d99702cf70	OpenFileSystemPersistent
0x1e6740b4b7fda686	OpenFileSystemTemporary
0x4928347f9423c013	OpenInternetOptionsDialog
0x83af6accb98b9954	OpenLanguageOptionsDialog
0xe7147544a7db079d	OpenSystemOptionsDialog
0xe4f08e5732cebbd3	OpenTabpose
0x7d3309f039cebdb1	Options_AppLanguage
0xaabae975f4a0bb66	Options_AskForSaveLocation_Disable
0x85464d6e64bbb505	Options_AskForSaveLocation_Enable
0x158f62ce172e002b	Options_AutoSpellCorrection_Disable
0xa19b903d23620d91	Options_AutoSpellCorrection_Enable
0xc77b497271ed97a4	Options_AutofillAuxiliaryProfiles_Disable
0xb23c25ac48557c58	Options_AutofillAuxiliaryProfiles_Enable
0x212dbab3096e37b2	Options_Autologin_Disable
0x73bafa15344565f3	Options_Autologin_Enable
0xbf4441a54e9b8e50	Options_BackgroundMode_Disable
0xc481e10b3ba27f8c	Options_BackgroundMode_Enable
0xc65558de1b0b2371	Options_BlockAllPopups_Disable
0x6886cd43bb132ac1	Options_BlockAllPopups_Enable
0xa64d82b58336f482	Options_ChangeDefaultZoomLevel
0x76cf57336cea96ff	Options_ChangeFixedFont
0xa198434035fd95dc	Options_ChangeFontEncoding
0xac4f01f24c2cad48	Options_ChangeProxies
0x279dd81ae1252131	Options_ChangeSansSerifFont
0xbbecdfd270d46408	Options_ChangeSerifFont
0x45f2145964c18350	Options_ChangeStandardFont
0x98ccc71c44973ca0	Options_CheckCertRevocation_Disable
0xc6599b9ffadec866	Options_CheckCertRevocation_Enable
0x67aa79d60894f3d7	Options_ClearData
0x2d5b58850046ac0a	Options_ContentSettings
0xe2fd858f8395432f	Options_CustomFrame_Disable
0x531823c36ca21da2	Options_CustomFrame_Enable
0x33e7b018e003c5b1	Options_DefaultCookieSettingChanged
0x3864ed1197ddceb8	Options_DefaultGeolocationSettingChanged
0x3f92cd6678d2f595	Options_DefaultHandlersSettingChanged
0x5dfe307474e6b526	Options_DefaultImagesSettingChanged
0x8ac0134529158dae	Options_DefaultJavaScriptSettingChanged
0xfca02a749fa0f811	Options_DefaultMouseLockSettingChanged
0xbc49f9107e7c7c7c	Options_DefaultNotificationsSettingChanged
0x6b91203aa4b5fb3c	Options_DefaultPluginsSettingChanged
0x8b20daa9a0c1a0a6	Options_DefaultPopupsSettingChanged
0x2d3b125fe15e828e	Options_DictionaryLanguage
0xc895ecf32a4970be	Options_DisableCloudPrintProxy
0x3c91497bc48f7456	Options_DnsPrefetchCheckbox_Disable
0xb1c929ead405f1a9	Options_DnsPrefetchCheckbox_Enable
0x24f63c90f4b05e70	Options_EnableCloudPrintProxy
0x7224f61ec49ec7ce	Options_FormAutofill_Disable
0xe88933ca2c819b4e	Options_FormAutofill_Enable
0xb186750fe61b8254	Options_GearsSettings
0x8e87d1b7048f4b2f	Options_GtkThemeSet
0xa8b432017c641f12	Options_Homepage_HideHomeButton
0xcf50dce927f3c8a8	Options_Homepage_HomeButton_Disable
0x9815eaa9d1b11198	Options_Homepage_HomeButton_Enable
0xb2391b14884e357a	Options_Homepage_IsNewTabPage_Disable
0x2e719fd1ab37b148	Options_Homepage_IsNewTabPage_Enable
0xc8faba7110ff04c3	Options_Homepage_ShowHomeButton
0x26cdb65b6a92b56a	Options_Homepage_UseNewTab
0xca6dd0b172e6df26	Options_Homepage_UseURL
0x3462530e3c04ab92	Options_ImagesCheckbox_Disable
0x3b55d5acba24ebad	Options_ImagesCheckbox_Enable
0x9e2677a81e8d73a3	Options_Internet_DataRoaming_Disable
0xce32dc47692c5927	Options_Internet_DataRoaming_Enable
0x386291531b93301b	Options_JavaCheckbox_Disable
0xe1d9dbcef8116c71	Options_JavaCheckbox_Enable
0x704c162610c6ffd5	Options_LinkDoctorCheckbox_Disable
0x64ea4cda15571db8	Options_LinkDoctorCheckbox_Enable
0xc8073584c5521315	Options_ManageCloudPrinters
0xd97025bbf470c3ba	Options_ManageSSLCertificates
0xfeb23e6946b41cdc	Options_ManageSearchEngines
0x84502179f3e2ae8c	Options_ManagerCerts
0x540bea8eaba24835	Options_MetricsReportingCheckbox_Disable
0x4aa2c70a745dbb49	Options_MetricsReportingCheckbox_Enable
0x224b0bf60dccdeda	Options_MousePrimaryRight_Disable
0xb23cd3cde814d929	Options_MousePrimaryRight_Enable
0xc5fbe9d9b3a165dd	Options_PasswordManager_Disable
0x59b4f208d9d9f648	Options_PasswordManager_Enable
0x6149925370ef4f47	Options_PluginsCheckbox_Disable
0x38a52a23bebcb35d	Options_PluginsCheckbox_Enable
0x4c8f0d80d0819583	Options_ResetAutoOpenFiles
0x0e3ea2998edfc23b	Options_ResetToDefaults
0xdad9014dcb04a1be	Options_SSL2_Disable
0xdacc44975593ad02	Options_SSL2_Enable
0x88e4d09541842432	Options_SSL3_Disable
0x6b2fbab68d97bb5b	Options_SSL3_Enable
0x08e75d386343cc27	Options_SafeBrowsingCheckbox_Disable
0xc951b246a33514ac	Options_SafeBrowsingCheckbox_Enable
0x7653dc09eac4e2bf	Options_SearchEngineChanged
0x47fd936f55f6abd4	Options_SensitivitySlider_Changed
0xb6e98e1635e14c7d	Options_SetAsDefaultBrowser
0x6268ba17ac147927	Options_SetDownloadDirectory
0xcbfeef35b3ad832e	Options_ShowAutoFillSettings
0xeaa21f7cf4791a0f	Options_ShowBookmarksBar_Disable
0x0e3c8e82d47db7c6	Options_ShowBookmarksBar_Enable
0x626c01f2ae5a9ba2	Options_ShowCookies
0x9b00328b8c542526	Options_ShowPasswordManager
0x1d4a5f924ea24d2c	Options_ShowPasswordsExceptions
0xc7fbc422d732eac5	Options_ShowProxySettings
0xc9362f32313889f1	Options_SpeedFactorSlider_Changed
0xc8fa104e4dd724e3	Options_SpellCheck_Disable
0x7470044370eb75f8	Options_SpellCheck_Enable
0xf9f1e5efda6f9978	Options_Startup_Custom
0xf8e60cd9af4e6187	Options_Startup_Homepage
0x1747b98bb0705d52	Options_Startup_LastSession
0x24301fc721f3f091	Options_TLS1_Disable
0x1c669fc919a6eccb	Options_TLS1_Enable
0x0e213ca8fa03d268	Options_TabsToLinks_Disable
0x60adcbc1d31d59a2	Options_TabsToLinks_Enable
0x01c2684695fc839e	Options_TapToClickCheckbox_Disable
0x6f37e83ce98b3082	Options_TapToClickCheckbox_Enable
0x73defd4825af2700	Options_ThemesGallery
0x60d52658d42b1593	Options_ThemesReset
0x4a469294c73f23e4	Options_TouchpadTapToClick_Disable
0x61a29472d343cf72	Options_TouchpadTapToClick_Enable
0xa35806253d8d8b30	Options_Translate_Disable
0x280bb55487be6eb4	Options_Translate_Enable
0x6f40a6712a19568a	Options_UseSuggestCheckbox_Disable
0x9abd34cb9a857b9e	Options_UseSuggestCheckbox_Enable
0x24604cce8816243c	Options_VertEdgeScrollCheckbox_Disable
0x8d45d4c781319d53	Options_VertEdgeScrollCheckbox_Enable
0x40a2640625760310	OutdatedPluginInfobar.AllowThisTime
0xa0361f9250c19197	OutdatedPluginInfobar.Closed
0xb4be73d2951aab5b	OutdatedPluginInfobar.Dismissed
0x883c4259bb3beddd	OutdatedPluginInfobar.LearnMore
0xaf62158873b29888	OutdatedPluginInfobar.Shown
0x3691471b03ca8103	OutdatedPluginInfobar.Shown.Java
0x25e1fc613aa70de4	OutdatedPluginInfobar.Shown.QuickTime
0x703e5cc7ad485d8f	OutdatedPluginInfobar.Shown.Reader
0x5c977c210e40986b	OutdatedPluginInfobar.Shown.RealPlayer
0xcc2c490fe5fc55ef	OutdatedPluginInfobar.Shown.Shockwave
0x0ef39278378fe05d	OutdatedPluginInfobar.Shown.Silverlight
0x7e7073691a152241	OutdatedPluginInfobar.Update
0x016839db155e0468	Outdent
0x69fae31849862d21	OverrideEncoding
0xdcb4676e49e95259	PDF.FitToHeightButton
0xac15a659a088ccc5	PDF.FitToPageButton
0x5f58a2db6428c1a0	PDF.FitToWidthButton
0xc3c876c4e5846f66	PDF.LoadFailure
0x9c67afdea49aa8c1	PDF.LoadSuccess
0xa0853d13a6382cb2	PDF.PreviewDocumentLoadFailure
0x715bc13f0a521ab7	PDF.PrintButton
0x95be082d470e41c9	PDF.PrintPage
0x5b2d6203fcccbfa9	PDF.SaveButton
0xf7d4dd6244747179	PDF.SavePage
0x99ed44568e5ff51a	PDF.ZoomFromBrowser
0x1d57434947820665	PDF.ZoomInButton
0x40ca10ced9d81d17	PDF.ZoomOutButton
0xcf6b6026dc11987b	PDF_EnableReaderInfoBarCancel
0x00a3a874d94e0ae5	PDF_EnableReaderInfoBarOK
0x8cae37cf015a06ba	PDF_EnableReaderInfoBarShown
0x1f8608be3f132d3f	PDF_InstallReaderInfoBarCancel
0x020d4194a7e4b5e1	PDF_InstallReaderInfoBarOK
0xe8d7c93dac04f552	PDF_InstallReaderInfoBarShown
0xbd058843faaa1507	PDF_ReaderInterstitialCancel
0x673c5fad6fc74eac	PDF_ReaderInterstitialIgnore
0xe1cd8e7ef514360d	PDF_ReaderInterstitialShown
0x4bde610f2543fbd7	PDF_ReaderInterstitialUpdate
0x0b951f22f9dff291	PDF_Unsupported_3D
0x3c012d5822815c63	PDF_Unsupported_Attachment
0x7322054dc4e9d451	PDF_Unsupported_Bookmarks
0x75035f67192c6952	PDF_Unsupported_Digital_Signature
0xc09901d647ad722f	PDF_Unsupported_Movie
0x282157da06d467b9	PDF_Unsupported_Portfolios
0xdb9aecef729fd680	PDF_Unsupported_Portfolios_Packages
0x74d8faa1b4e92791	PDF_Unsupported_Rights_Management
0x571f65a8518214ae	PDF_Unsupported_Screen
0xdf8b4231d4bd3f90	PDF_Unsupported_Shared_Form
0xb7474a7496f9a77e	PDF_Unsupported_Shared_Review
0x6efe497913838ea5	PDF_Unsupported_Sound
0x08640e2d5578cf94	PDF_Unsupported_XFA
0xde70e21d95b52c83	PDF_UseReaderInfoBarCancel
0xc35f4595bbf2a0fa	PDF_UseReaderInfoBarOK
0xb7334d4097ba87ef	PDF_UseReaderInfoBarShown
0xee3677bcca83ece9	PageDown
0x9b869c510c75c582	PageUp
0x9ba3ff80fde405cd	PasswordManager_Disabled
0x6cc1116fbd900ebf	PasswordManager_Enabled
0x36bb6559696dc912	Paste
0x5d0e6942f354a06c	PasteAndMatchStyle
0xca471265efb33961	PluginContextMenu_RotateClockwise
0xa260d9dde6e550c4	PluginContextMenu_RotateCounterclockwise
0x6f2cd84fa374c281	Plugin_Blocked
0xcecb82fcd8e64529	Plugin_ClickToPlay
0xc52b281d793adc6b	Plugin_Hide_Click
0x838019f901a8e405	Plugin_Hide_Menu
0x007757ef58e358af	Plugin_Load_Click
0xd84554ce585d6c63	Plugin_Load_Menu
0x116bd7e07524f140	Plugin_Load_UI
0x352f2d6315d52044	PrintNow
0xcb83fba9c48fd911	PrintPreview
0x89ad6a22de4ca850	PrintView_PrintDialog
0x77db2baef38a1efc	PrintView_PrintNow
0xf5105f4fc4c32476	PrintView_ZoomMinus
0xd432798852b5bdde	PrintView_ZoomPageFull
0x05bdd1f2f9628b7a	PrintView_ZoomPageWidth
0x89fa328f28747907	PrintView_ZoomPlus
0x5afeaba074ef570d	Redo
0x58d906ea1827983c	RegisterProtocolHandler.ContextMenu_Open
0x2f25b38028a24b10	RegisterProtocolHandler.ContextMenu_Settings
0x21fd8c0ce09e106a	RegisterProtocolHandler.InfoBar_Deny
0xb1d098583dc63173	RegisterProtocolHandler.InfoBar_LearnMore
0x1596504542ebc81d	RegisterProtocolHandler.InfoBar_Shown
0xee4b2f044de46f4b	RegisterProtocolHandler.Infobar_Accept
0x4d1c8263ba103675	Reload
0x4641db18f24b11e1	ReloadIgnoringCache
0xbcc54eb67cab2ae9	RemoveFormat
0xa728f2892204aabc	ReportBug
0x8f83bd601e845bc1	RestoreTab
0x665cc78aff3f37f5	SBInterstitialMalwareDontProceed
0xf02ed35cab0dcf4b	SBInterstitialMalwareProceed
0x09af23846e454261	SBInterstitialMalwareShow
0xc81645e63b16cb44	SBInterstitialMultipleDontProceed
0x866cc35d2bcdf71d	SBInterstitialMultipleProceed
0x6dbe9571062fcfde	SBInterstitialMultipleShow
0x60578de80374e115	SBInterstitialPhishingDontProceed
0x340331e81b86f933	SBInterstitialPhishingProceed
0xf8af4ff865669301	SBInterstitialPhishingShow
0xe1df5f4bee6d0e2f	SSL.DisplayedInsecureContent
0xba6bde79f10497a9	SSL.RanInsecureContent
0x12affa291e3d0146	SSL.RanInsecureContentGoogle
0xc9cc8cce247e49ba	Save
0xfc7723f7c10f79d5	SavePage
0xc849f604a9954989	ScreenLocker_OnLoginFailure
0x0b8efe82e35086c2	ScreenLocker_Show
0xe643aadfeec1d6fc	ScreenLocker_Signout
0x61ce545b97b3f1cd	ScreenLocker_StartScreenSaver
0x7a0c1d1c5392ec8e	SearchWithRLZ
0x2e17e73bd11af537	SearchWithoutRLZ
0x702bbdc91c8e399d	SelectAll
0xd016dafd5f0eca55	SelectLastTab
0x64658593002b74ad	SelectLine
0x25243a56d24dffd3	SelectNextTab
0x7ae303310d8cfc29	SelectNumberedTab
0x893981a84c5d0871	SelectPrevTab
0x4578941ed28b34dd	SelectProfile
0x5b166a78549ae371	SelectTab0
0x8fadb48c1fd4356e	SelectTab1
0xfa3cfe1e11999c78	SelectTab2
0x43382573b0490660	SelectTab3
0xcc1402f3ad4cae89	SelectTab4
0x2d9491c68a4ec635	SelectTab5
0x8fa9d8e88271c82d	SelectTab6
0xdaa611aa645914e5	SelectTab7
0x0d1d6961dd313b79	ShowAppMenu
0x9be2b265107318b8	ShowApplications
0x853927a304493ac7	ShowAsTab
0x1b93c35c19ff3600	ShowBookmarkManager
0xd1a227df4f361dbb	ShowBookmarks
0x1afb02b1f90b177e	ShowBookmarksBar
0xe8705f2d7890043e	ShowControlPanel
0x3d0170d09a816e7f	ShowDownloads
0xf530f742ba5b2683	ShowExtensions
0xa0118397d83c34d0	ShowFileBrowserFullTab
0xb1abf919e7eea1ad	ShowHelpTab
0x12391b25bf32b0de	ShowHelpTabViaF1
0xb2a3954e828f87c9	ShowHelpTabViaWrenchMenu
0xb04b2eea6e26ebef	ShowHistory
0x404c3c24f3091fd7	ShowJSConsole
0x658963e1a47a5018	ShowOptions
0x564171f658dcb78e	ShowPageMenu
0xecf70e5f5be34681	ShowRecentlyViewed
0xfd243b004d004e00	ShowSections_RecentSitesDisabled
0x3b86156dcf560cdb	ShowSections_RecentSitesEnabled
0x5118181c3ece5e84	ShowSessions
0x1a4ebb180ba59b06	Shutdown
0x26f93e6e68e28a69	Star
0x2fbe99005588ef01	StartupTick
0x11a755d598c0c417	Stop
0x926a51baad949d12	Strikethrough
0x4d56afb0a9837d41	TabContextMenu_BookmarkAllTabs
0x3712160bf3495979	TabContextMenu_CloseOtherTabs
0x417bd10a7c5e0210	TabContextMenu_CloseTab
0xa0965146c626cd18	TabContextMenu_CloseTabsOpenedBy
0x6adcbb467523c7d9	TabContextMenu_CloseTabsToRight
0xaadbb71a197d76ad	TabContextMenu_CompactNavigationBar
0x89e073e006a686d1	TabContextMenu_Duplicate
0x88aefc727559ebaf	TabContextMenu_NewTab
0x218d462d319b449c	TabContextMenu_OpenTabsLeftToRight
0x807b9158faa086ca	TabContextMenu_OpenTabsRightToLeft
0x1180c152ca336f5d	TabContextMenu_Reload
0x7c86965f80103b54	TabContextMenu_RestoreTab
0xdcc35326aa8a5aeb	TabContextMenu_TogglePinned
0xdd2b0058433af670	TabContextMenu_UseDestinationsTab_Off
0xe5f9f328f5d86b51	TabContextMenu_UseDestinationsTab_On
0x3fe88a1365e8dc47	TabContextMenu_UseVerticalTabs
0xb5ffa70ecb67b6f3	TabOverview_DetachCell
0x060f1f68f262b152	TabOverview_DragCell
0xad9c26360444768c	TabOverview_DragOverMiniWindow
0x1cdf073bd93d5346	TabOverview_DropOnMiniWindow
0x0d699bd1ec9da211	TabOverview_ExitMouse
0x0dffb74e62a90ad3	TabOverview_Keystroke
0x65b8a6d7098e4825	TabOverview_PressedCreateNewBrowserButton
0x552a7bf28446f0aa	Tab_DropURLBetweenTabs
0xc508d4d1583f51d6	Tab_DropURLOnTab
0xdad4668bc0b8e79c	TaskManager
0x23afdebb497957f4	Themes.Gone
0x07c710bf40f92990	Themes.Loaded
0x77ae5b6a7529d8b5	Themes.Migrated
0x0e6b2a071df7800e	Themes_Installed
0xf1b1f7db67f07b8c	Themes_Reset
0xc2c0c13f120b9c7c	ThirdPartyCookieBlockingDisabled
0x60aa171d4c36e576	ThirdPartyCookieBlockingEnabled
0x9e2832408b48e761	ToggleBold
0x303ce89ccac1592b	ToggleCompactNavigationBar
0x94122935e94b54f3	ToggleDevTools
0xb639f67713eed8ea	ToggleDevToolsConsole
0x887771883a8fbbae	ToggleExtensionShelf
0x5250f5caaff979ba	ToggleFullscreen
0xedf6e4b0b320885f	ToggleItalic
0x904d810f7dd68a8e	ToggleUnderline
0xb92bc75c64039682	Toolbar_DragStar
0xaf70b1ac863830a4	Transpose
0x852721aa5fc738df	Underline
0x1cdc076b28f70afa	Undo
0xc1a39b6a60f8b2f8	Unlink
0xbcd41ce97e3c5568	UpdateChrome
0x0746723e6884a2fb	Updater.ServerCertificateChanged
0x169dd0fd613963e8	Updater.ServerCertificateFailed
0x9b4b5afb2e791f23	UpgradeCheck_AlreadyUpToDate
0x27b72192736f904d	UpgradeCheck_AlreadyUpgraded
0x7a54d49f1f7db4ee	UpgradeCheck_Done
0x8bcf8b1b4f3c7451	UpgradeCheck_Error
0xe42c4b8d6cb9188f	UpgradeCheck_Started
0x7edc3598854d0ab1	UpgradeCheck_TimedOut
0x72714123f2bd0636	UpgradeCheck_UpgradeIsAvailable
0xcd4da03d7cbaeb84	UpgradeCheck_Upgraded
0x624ddd04836efdcd	Upgrade_Started
0xa909d722e2ae4285	ViewAboutConflicts
0xf3768ba285ebca7e	ViewAboutFlash
0xfb4a178539bac6bd	ViewSource
0x6932875212d36f57	WP_EditImage
0x34a770eb3bbf5632	WP_Gallery
0x554103fbf5582ee0	ZoomMinus
0x82d278b1f2e78bcd	ZoomMinus_AtMinimum
0x4344cd22d03f6800	ZoomNormal
0x860db3714d502e03	ZoomPlus
0x644dbac8a6242f3f	ZoomPlus_AtMaximum
0xbfb6af70a0626dcd	justifyFull
0x2768e36e23ebef80	mceAddControl
0xfe4c8898ac25e705	mceBeginUndoLevel
0x02650dd15c064422	mceEndUndoLevel
0x2e58ba22e02b06bb	mceInsertContent
0xd311c8d6ed1b9762	mceRepaint
0xf4c75cafe4330950	mceSave
0xfb7010f719b412c4	mceSetStyleInfo
0x7174576438022591	styleWithCSS