-
Notifications
You must be signed in to change notification settings - Fork 13
/
mapping.js
executable file
·68 lines (68 loc) · 1.51 KB
/
mapping.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
(function (mapping) {
var lookup = mapping[SIG];
if (!lookup) return;
for (var obfuscated in lookup) {
if(!lookup.hasOwnProperty(obfuscated)) continue;
var actual = lookup[obfuscated];
Object.defineProperty(window, actual, {
get: function () { return window[obfuscated]; },
set: function (value) { return window[obfuscated] = value; }
});
}
}({
3419680276: {
'g': 'window',
'v': 'jQuery',
'ea': 'refreshRegionInfo',
'Q': '_canvas',
'A': 'canvas',
'd': 'ctx',
'R': 'mouseX',
'S': 'mouseY',
'ga': 'onResize',
'U': 'draw',
'G': 'sendTargetUpdate',
'ua': 'think',
'n': 'canvasWidth',
'p': 'canvasHeight',
'ba': 'blackTheme',
's': 'zoom',
'B': 'renderedScoreboard',
'oa': 'Cell',
'N': 'SizeCache',
'fa': 'isMobile',
'Fa': 'skinsNames',
'Ea': 'getSkin',
'ra': 'skinsEnabled',
'O': 'hardMode',
'da': 'namesEnabled',
'sa': 'massEnabled',
'ta': 'init',
'Aa': 'calculateZoom'
},
2486293568: {
'g': 'window',
'v': 'jQuery',
'ea': 'refreshRegionInfo',
'Q': '_canvas',
'B': 'canvas',
'd': 'ctx',
'R': 'mouseX',
'S': 'mouseY',
'ga': 'onResize',
'U': 'draw',
'G': 'sendTargetUpdate',
'ua': 'think',
'n': 'canvasWidth',
'p': 'canvasHeight',
'ba': 'blackTheme',
's': 'zoom',
'A': 'renderedScoreboard',
'oa': 'Cell',
'N': 'SizeCache',
'fa': 'isMobile',
'da': 'hardMode',
'ta': 'init',
'Aa': 'calculateZoom'
}
}));