devicely 2.2.5 → 2.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/devicely.js +1 -105
- package/config/devices.conf +6 -22
- package/lib/androidDeviceDetection.js +1 -276
- package/lib/appMappings.js +1 -337
- package/lib/deviceDetection.js +1 -394
- package/lib/devices.js +1 -54
- package/lib/doctor.js +1 -94
- package/lib/encryption.js +1 -88
- package/lib/executor.js +1 -104
- package/lib/frontend/asset-manifest.json +3 -3
- package/lib/frontend/index.html +1 -1
- package/lib/frontend/static/css/main.23bd35c0.css.map +1 -0
- package/lib/frontend/static/js/{main.26a24c5c.js → main.81eae090.js} +3 -3
- package/lib/frontend/static/js/main.81eae090.js.map +1 -0
- package/lib/logger.js +1 -47
- package/lib/package-lock.json +1678 -0
- package/lib/package.json +30 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260205_225900.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260205_225942.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260205_231101.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260205_232911.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260208_095103.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260208_095720.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115040.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115047.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115118.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115125.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115143.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_120107.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_120118.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_120137.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_120201.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_134529.png +0 -0
- package/lib/scriptLoader.js +1 -13
- package/lib/server.js +1 -3546
- package/package.json +14 -3
- package/scripts/shell/android_device_control.enc +1 -1
- package/scripts/shell/connect_android_usb_multi_final.enc +1 -1
- package/scripts/shell/connect_android_wireless.enc +1 -1
- package/scripts/shell/connect_android_wireless_multi_final.enc +1 -1
- package/scripts/shell/connect_ios_usb_multi_final.enc +1 -1
- package/scripts/shell/connect_ios_wireless_multi_final.enc +1 -1
- package/scripts/shell/ios_device_control.enc +1 -1
- package/scripts/compile-shell-scripts.js +0 -208
- package/scripts/encrypt-shell-simple.js +0 -58
- package/scripts/obfuscate-shell.js +0 -160
- package/scripts/shell/apps_presets.conf +0 -271
- package/scripts/shell/devices.conf +0 -24
- /package/lib/frontend/static/js/{main.26a24c5c.js.LICENSE.txt → main.81eae090.js.LICENSE.txt} +0 -0
package/lib/appMappings.js
CHANGED
|
@@ -1,337 +1 @@
|
|
|
1
|
-
// Platform-specific app package mappings
|
|
2
|
-
// Maps common app names to their actual package IDs for iOS and Android
|
|
3
|
-
|
|
4
|
-
const APP_MAPPINGS = {
|
|
5
|
-
// Browsers
|
|
6
|
-
safari: {
|
|
7
|
-
ios: 'com.apple.mobilesafari',
|
|
8
|
-
android: null
|
|
9
|
-
},
|
|
10
|
-
chrome: {
|
|
11
|
-
ios: 'com.google.chrome.ios',
|
|
12
|
-
android: 'com.android.chrome'
|
|
13
|
-
},
|
|
14
|
-
firefox: {
|
|
15
|
-
ios: 'org.mozilla.ios.Firefox',
|
|
16
|
-
android: 'org.mozilla.firefox'
|
|
17
|
-
},
|
|
18
|
-
edge: {
|
|
19
|
-
ios: 'com.microsoft.msedge',
|
|
20
|
-
android: 'com.microsoft.emmx'
|
|
21
|
-
},
|
|
22
|
-
brave: {
|
|
23
|
-
ios: 'com.brave.ios.browser',
|
|
24
|
-
android: 'com.brave.browser'
|
|
25
|
-
},
|
|
26
|
-
opera: {
|
|
27
|
-
ios: 'com.opera.OperaTouch',
|
|
28
|
-
android: 'com.opera.browser'
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
// System Apps
|
|
32
|
-
settings: {
|
|
33
|
-
ios: 'com.apple.Preferences',
|
|
34
|
-
android: 'com.android.settings'
|
|
35
|
-
},
|
|
36
|
-
camera: {
|
|
37
|
-
ios: 'com.apple.camera',
|
|
38
|
-
android: 'com.android.camera2'
|
|
39
|
-
},
|
|
40
|
-
photos: {
|
|
41
|
-
ios: 'com.apple.mobileslideshow',
|
|
42
|
-
android: 'com.google.android.apps.photos'
|
|
43
|
-
},
|
|
44
|
-
gallery: {
|
|
45
|
-
ios: 'com.apple.mobileslideshow',
|
|
46
|
-
android: 'com.google.android.apps.photos'
|
|
47
|
-
},
|
|
48
|
-
messages: {
|
|
49
|
-
ios: 'com.apple.MobileSMS',
|
|
50
|
-
android: 'com.google.android.apps.messaging'
|
|
51
|
-
},
|
|
52
|
-
phone: {
|
|
53
|
-
ios: 'com.apple.mobilephone',
|
|
54
|
-
android: 'com.google.android.dialer'
|
|
55
|
-
},
|
|
56
|
-
contacts: {
|
|
57
|
-
ios: 'com.apple.MobileAddressBook',
|
|
58
|
-
android: 'com.google.android.contacts'
|
|
59
|
-
},
|
|
60
|
-
calendar: {
|
|
61
|
-
ios: 'com.apple.mobilecal',
|
|
62
|
-
android: 'com.google.android.calendar'
|
|
63
|
-
},
|
|
64
|
-
clock: {
|
|
65
|
-
ios: 'com.apple.mobiletimer',
|
|
66
|
-
android: 'com.google.android.deskclock'
|
|
67
|
-
},
|
|
68
|
-
calculator: {
|
|
69
|
-
ios: 'com.apple.calculator',
|
|
70
|
-
android: 'com.google.android.calculator'
|
|
71
|
-
},
|
|
72
|
-
notes: {
|
|
73
|
-
ios: 'com.apple.mobilenotes',
|
|
74
|
-
android: 'com.google.android.keep'
|
|
75
|
-
},
|
|
76
|
-
mail: {
|
|
77
|
-
ios: 'com.apple.mobilemail',
|
|
78
|
-
android: 'com.google.android.gm'
|
|
79
|
-
},
|
|
80
|
-
gmail: {
|
|
81
|
-
ios: 'com.google.Gmail',
|
|
82
|
-
android: 'com.google.android.gm'
|
|
83
|
-
},
|
|
84
|
-
maps: {
|
|
85
|
-
ios: 'com.apple.Maps',
|
|
86
|
-
android: 'com.google.android.apps.maps'
|
|
87
|
-
},
|
|
88
|
-
|
|
89
|
-
// Social Media
|
|
90
|
-
facebook: {
|
|
91
|
-
ios: 'com.facebook.Facebook',
|
|
92
|
-
android: 'com.facebook.katana'
|
|
93
|
-
},
|
|
94
|
-
instagram: {
|
|
95
|
-
ios: 'com.burbn.instagram',
|
|
96
|
-
android: 'com.instagram.android'
|
|
97
|
-
},
|
|
98
|
-
twitter: {
|
|
99
|
-
ios: 'com.atebits.Tweetie2',
|
|
100
|
-
android: 'com.twitter.android'
|
|
101
|
-
},
|
|
102
|
-
x: {
|
|
103
|
-
ios: 'com.atebits.Tweetie2',
|
|
104
|
-
android: 'com.twitter.android'
|
|
105
|
-
},
|
|
106
|
-
whatsapp: {
|
|
107
|
-
ios: 'net.whatsapp.WhatsApp',
|
|
108
|
-
android: 'com.whatsapp'
|
|
109
|
-
},
|
|
110
|
-
telegram: {
|
|
111
|
-
ios: 'ph.telegra.Telegraph',
|
|
112
|
-
android: 'org.telegram.messenger'
|
|
113
|
-
},
|
|
114
|
-
snapchat: {
|
|
115
|
-
ios: 'com.toyopagroup.picaboo',
|
|
116
|
-
android: 'com.snapchat.android'
|
|
117
|
-
},
|
|
118
|
-
tiktok: {
|
|
119
|
-
ios: 'com.zhiliaoapp.musically',
|
|
120
|
-
android: 'com.zhiliaoapp.musically'
|
|
121
|
-
},
|
|
122
|
-
linkedin: {
|
|
123
|
-
ios: 'com.linkedin.LinkedIn',
|
|
124
|
-
android: 'com.linkedin.android'
|
|
125
|
-
},
|
|
126
|
-
reddit: {
|
|
127
|
-
ios: 'com.reddit.Reddit',
|
|
128
|
-
android: 'com.reddit.frontpage'
|
|
129
|
-
},
|
|
130
|
-
|
|
131
|
-
// Entertainment
|
|
132
|
-
youtube: {
|
|
133
|
-
ios: 'com.google.ios.youtube',
|
|
134
|
-
android: 'com.google.android.youtube'
|
|
135
|
-
},
|
|
136
|
-
netflix: {
|
|
137
|
-
ios: 'com.netflix.Netflix',
|
|
138
|
-
android: 'com.netflix.mediaclient'
|
|
139
|
-
},
|
|
140
|
-
spotify: {
|
|
141
|
-
ios: 'com.spotify.client',
|
|
142
|
-
android: 'com.spotify.music'
|
|
143
|
-
},
|
|
144
|
-
amazonmusic: {
|
|
145
|
-
ios: 'com.amazon.mp3',
|
|
146
|
-
android: 'com.amazon.mp3'
|
|
147
|
-
},
|
|
148
|
-
applemusic: {
|
|
149
|
-
ios: 'com.apple.Music',
|
|
150
|
-
android: 'com.apple.android.music'
|
|
151
|
-
},
|
|
152
|
-
hulu: {
|
|
153
|
-
ios: 'com.hulu.plus',
|
|
154
|
-
android: 'com.hulu.plus'
|
|
155
|
-
},
|
|
156
|
-
disneyplus: {
|
|
157
|
-
ios: 'com.disney.disneyplus',
|
|
158
|
-
android: 'com.disney.disneyplus'
|
|
159
|
-
},
|
|
160
|
-
primevideo: {
|
|
161
|
-
ios: 'com.amazon.aiv.AIVApp',
|
|
162
|
-
android: 'com.amazon.avod.thirdpartyclient'
|
|
163
|
-
},
|
|
164
|
-
|
|
165
|
-
// Communication
|
|
166
|
-
zoom: {
|
|
167
|
-
ios: 'us.zoom.videomeetings',
|
|
168
|
-
android: 'us.zoom.videomeetings'
|
|
169
|
-
},
|
|
170
|
-
skype: {
|
|
171
|
-
ios: 'com.skype.skype',
|
|
172
|
-
android: 'com.skype.raider'
|
|
173
|
-
},
|
|
174
|
-
teams: {
|
|
175
|
-
ios: 'com.microsoft.skype.teams',
|
|
176
|
-
android: 'com.microsoft.teams'
|
|
177
|
-
},
|
|
178
|
-
slack: {
|
|
179
|
-
ios: 'com.tinyspeck.chatlyio',
|
|
180
|
-
android: 'com.Slack'
|
|
181
|
-
},
|
|
182
|
-
discord: {
|
|
183
|
-
ios: 'com.hammerandchisel.discord',
|
|
184
|
-
android: 'com.discord'
|
|
185
|
-
},
|
|
186
|
-
|
|
187
|
-
// Productivity
|
|
188
|
-
gmail: {
|
|
189
|
-
ios: 'com.google.Gmail',
|
|
190
|
-
android: 'com.google.android.gm'
|
|
191
|
-
},
|
|
192
|
-
outlook: {
|
|
193
|
-
ios: 'com.microsoft.Office.Outlook',
|
|
194
|
-
android: 'com.microsoft.office.outlook'
|
|
195
|
-
},
|
|
196
|
-
googledrive: {
|
|
197
|
-
ios: 'com.google.Drive',
|
|
198
|
-
android: 'com.google.android.apps.docs'
|
|
199
|
-
},
|
|
200
|
-
dropbox: {
|
|
201
|
-
ios: 'com.getdropbox.Dropbox',
|
|
202
|
-
android: 'com.dropbox.android'
|
|
203
|
-
},
|
|
204
|
-
onedrive: {
|
|
205
|
-
ios: 'com.microsoft.skydrive',
|
|
206
|
-
android: 'com.microsoft.skydrive'
|
|
207
|
-
},
|
|
208
|
-
notion: {
|
|
209
|
-
ios: 'notion.id',
|
|
210
|
-
android: 'notion.id'
|
|
211
|
-
},
|
|
212
|
-
evernote: {
|
|
213
|
-
ios: 'com.evernote.iPhone.Evernote',
|
|
214
|
-
android: 'com.evernote'
|
|
215
|
-
},
|
|
216
|
-
|
|
217
|
-
// Shopping
|
|
218
|
-
amazon: {
|
|
219
|
-
ios: 'com.amazon.Amazon',
|
|
220
|
-
android: 'com.amazon.mShop.android.shopping'
|
|
221
|
-
},
|
|
222
|
-
ebay: {
|
|
223
|
-
ios: 'com.ebay.iphone',
|
|
224
|
-
android: 'com.ebay.mobile'
|
|
225
|
-
},
|
|
226
|
-
walmart: {
|
|
227
|
-
ios: 'com.walmart.groceries',
|
|
228
|
-
android: 'com.walmart.android'
|
|
229
|
-
},
|
|
230
|
-
target: {
|
|
231
|
-
ios: 'com.target.mobile',
|
|
232
|
-
android: 'com.target.ui'
|
|
233
|
-
},
|
|
234
|
-
|
|
235
|
-
// Travel
|
|
236
|
-
uber: {
|
|
237
|
-
ios: 'com.ubercab.UberClient',
|
|
238
|
-
android: 'com.ubercab'
|
|
239
|
-
},
|
|
240
|
-
lyft: {
|
|
241
|
-
ios: 'com.ubercab.Lyft',
|
|
242
|
-
android: 'me.lyft.android'
|
|
243
|
-
},
|
|
244
|
-
airbnb: {
|
|
245
|
-
ios: 'com.airbnb.app',
|
|
246
|
-
android: 'com.airbnb.android'
|
|
247
|
-
},
|
|
248
|
-
booking: {
|
|
249
|
-
ios: 'com.booking.BookingApp',
|
|
250
|
-
android: 'com.booking'
|
|
251
|
-
},
|
|
252
|
-
|
|
253
|
-
// Finance
|
|
254
|
-
paypal: {
|
|
255
|
-
ios: 'com.yourcompany.PPClient',
|
|
256
|
-
android: 'com.paypal.android.p2pmobile'
|
|
257
|
-
},
|
|
258
|
-
venmo: {
|
|
259
|
-
ios: 'com.venmo.touch.Venmo',
|
|
260
|
-
android: 'com.venmo'
|
|
261
|
-
},
|
|
262
|
-
cashapp: {
|
|
263
|
-
ios: 'com.squareup.cash',
|
|
264
|
-
android: 'com.squareup.cash'
|
|
265
|
-
}
|
|
266
|
-
};
|
|
267
|
-
|
|
268
|
-
/**
|
|
269
|
-
* Get package ID for an app based on platform
|
|
270
|
-
* @param {string} appName - Common name of the app (e.g., 'chrome', 'settings')
|
|
271
|
-
* @param {string} platform - 'ios' or 'android'
|
|
272
|
-
* @returns {string|null} - Package ID or null if not found
|
|
273
|
-
*/
|
|
274
|
-
function getPackageId(appName, platform) {
|
|
275
|
-
const normalizedName = appName.toLowerCase().trim();
|
|
276
|
-
const mapping = APP_MAPPINGS[normalizedName];
|
|
277
|
-
|
|
278
|
-
if (!mapping) {
|
|
279
|
-
return null;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
return mapping[platform] || null;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
/**
|
|
286
|
-
* Get all available apps for a platform
|
|
287
|
-
* @param {string} platform - 'ios' or 'android'
|
|
288
|
-
* @returns {Array} - Array of app objects with name and packageId
|
|
289
|
-
*/
|
|
290
|
-
function getAvailableApps(platform) {
|
|
291
|
-
const apps = [];
|
|
292
|
-
|
|
293
|
-
for (const [appName, mapping] of Object.entries(APP_MAPPINGS)) {
|
|
294
|
-
if (mapping[platform]) {
|
|
295
|
-
apps.push({
|
|
296
|
-
name: appName,
|
|
297
|
-
packageId: mapping[platform]
|
|
298
|
-
});
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
return apps;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
/**
|
|
306
|
-
* Check if an app is available for a platform
|
|
307
|
-
* @param {string} appName - Common name of the app
|
|
308
|
-
* @param {string} platform - 'ios' or 'android'
|
|
309
|
-
* @returns {boolean}
|
|
310
|
-
*/
|
|
311
|
-
function isAppAvailable(appName, platform) {
|
|
312
|
-
return getPackageId(appName, platform) !== null;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
/**
|
|
316
|
-
* Get platform-specific launch command
|
|
317
|
-
* @param {string} appName - Common name of the app
|
|
318
|
-
* @param {string} platform - 'ios' or 'android'
|
|
319
|
-
* @returns {string|null} - Launch command or null if not found
|
|
320
|
-
*/
|
|
321
|
-
function getLaunchCommand(appName, platform) {
|
|
322
|
-
const packageId = getPackageId(appName, platform);
|
|
323
|
-
|
|
324
|
-
if (!packageId) {
|
|
325
|
-
return null;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
return `launch ${packageId}`;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
module.exports = {
|
|
332
|
-
APP_MAPPINGS,
|
|
333
|
-
getPackageId,
|
|
334
|
-
getAvailableApps,
|
|
335
|
-
isAppAvailable,
|
|
336
|
-
getLaunchCommand
|
|
337
|
-
};
|
|
1
|
+
const _0x2c2ca0=_0x40bd;(function(_0x10c6b5,_0x1a25cc){const _0x5e8e20=_0x40bd,_0x4d0970=_0x10c6b5();while(!![]){try{const _0x2007a4=parseInt(_0x5e8e20(0x1a0))/0x1*(-parseInt(_0x5e8e20(0x189))/0x2)+parseInt(_0x5e8e20(0x1a4))/0x3+-parseInt(_0x5e8e20(0x174))/0x4+-parseInt(_0x5e8e20(0x1ab))/0x5*(-parseInt(_0x5e8e20(0x188))/0x6)+-parseInt(_0x5e8e20(0x19c))/0x7*(parseInt(_0x5e8e20(0x15f))/0x8)+parseInt(_0x5e8e20(0x145))/0x9*(parseInt(_0x5e8e20(0x149))/0xa)+-parseInt(_0x5e8e20(0x17a))/0xb;if(_0x2007a4===_0x1a25cc)break;else _0x4d0970['push'](_0x4d0970['shift']());}catch(_0x24c4d4){_0x4d0970['push'](_0x4d0970['shift']());}}}(_0x2817,0x27b9c));const _0x14b051={};_0x14b051['ios']=_0x2c2ca0(0x150),_0x14b051['android']=null;const _0x1741fb={};_0x1741fb[_0x2c2ca0(0x144)]=_0x2c2ca0(0x1aa),_0x1741fb[_0x2c2ca0(0x183)]=_0x2c2ca0(0x152);const _0x22b123={};_0x22b123['ios']='org.mozilla.ios.Firefox',_0x22b123[_0x2c2ca0(0x183)]=_0x2c2ca0(0x137);const _0x16c981={};_0x16c981[_0x2c2ca0(0x144)]=_0x2c2ca0(0x17f),_0x16c981['android']=_0x2c2ca0(0x127);const _0x1be4a1={};_0x1be4a1[_0x2c2ca0(0x144)]='com.brave.ios.browser',_0x1be4a1[_0x2c2ca0(0x183)]='com.brave.browser';const _0x3a01e0={};_0x3a01e0[_0x2c2ca0(0x144)]=_0x2c2ca0(0x19e),_0x3a01e0[_0x2c2ca0(0x183)]=_0x2c2ca0(0x12d);const _0x330b51={};_0x330b51[_0x2c2ca0(0x144)]=_0x2c2ca0(0x1a3),_0x330b51[_0x2c2ca0(0x183)]=_0x2c2ca0(0x142);const _0x4725e2={};_0x4725e2['ios']=_0x2c2ca0(0x1ae),_0x4725e2['android']=_0x2c2ca0(0x13b);const _0x52d8e7={};_0x52d8e7[_0x2c2ca0(0x144)]='com.apple.mobileslideshow',_0x52d8e7[_0x2c2ca0(0x183)]='com.google.android.apps.photos';const _0x2d377c={};_0x2d377c['ios']=_0x2c2ca0(0x16e),_0x2d377c['android']=_0x2c2ca0(0x143);const _0x11e797={};_0x11e797[_0x2c2ca0(0x144)]=_0x2c2ca0(0x1a6),_0x11e797[_0x2c2ca0(0x183)]=_0x2c2ca0(0x164);const _0x278c47={};_0x278c47[_0x2c2ca0(0x144)]='com.apple.mobilephone',_0x278c47[_0x2c2ca0(0x183)]=_0x2c2ca0(0x18d);const _0xbfa204={};_0xbfa204['ios']=_0x2c2ca0(0x14a),_0xbfa204[_0x2c2ca0(0x183)]='com.google.android.contacts';const _0xeeb5f7={};_0xeeb5f7['ios']=_0x2c2ca0(0x14b),_0xeeb5f7['android']=_0x2c2ca0(0x13d);const _0x49d361={};_0x49d361['ios']=_0x2c2ca0(0x17d),_0x49d361[_0x2c2ca0(0x183)]=_0x2c2ca0(0x161);const _0x40379b={};_0x40379b[_0x2c2ca0(0x144)]='com.apple.calculator',_0x40379b['android']=_0x2c2ca0(0x181);const _0x5562a6={};_0x5562a6[_0x2c2ca0(0x144)]=_0x2c2ca0(0x16b),_0x5562a6[_0x2c2ca0(0x183)]=_0x2c2ca0(0x16f);const _0x3f0ff3={};_0x3f0ff3[_0x2c2ca0(0x144)]='com.apple.mobilemail',_0x3f0ff3['android']='com.google.android.gm';const _0x411ef3={};_0x411ef3['ios']=_0x2c2ca0(0x12c),_0x411ef3[_0x2c2ca0(0x183)]=_0x2c2ca0(0x18f);const _0x1e2260={};_0x1e2260[_0x2c2ca0(0x144)]='com.apple.Maps',_0x1e2260[_0x2c2ca0(0x183)]=_0x2c2ca0(0x1a9);const _0x1fbf1d={};_0x1fbf1d[_0x2c2ca0(0x144)]=_0x2c2ca0(0x146),_0x1fbf1d[_0x2c2ca0(0x183)]=_0x2c2ca0(0x151);const _0x112802={};_0x112802[_0x2c2ca0(0x144)]='com.burbn.instagram',_0x112802[_0x2c2ca0(0x183)]=_0x2c2ca0(0x154);const _0xf02713={};_0xf02713[_0x2c2ca0(0x144)]=_0x2c2ca0(0x14c),_0xf02713['android']=_0x2c2ca0(0x193);const _0x5b2011={};_0x5b2011[_0x2c2ca0(0x144)]=_0x2c2ca0(0x14c),_0x5b2011[_0x2c2ca0(0x183)]=_0x2c2ca0(0x193);const _0x2d01bb={};_0x2d01bb[_0x2c2ca0(0x144)]='net.whatsapp.WhatsApp',_0x2d01bb[_0x2c2ca0(0x183)]='com.whatsapp';const _0x2fa2c6={};_0x2fa2c6[_0x2c2ca0(0x144)]=_0x2c2ca0(0x157),_0x2fa2c6[_0x2c2ca0(0x183)]=_0x2c2ca0(0x190);const _0x33f499={};_0x33f499[_0x2c2ca0(0x144)]=_0x2c2ca0(0x14e),_0x33f499[_0x2c2ca0(0x183)]=_0x2c2ca0(0x1a7);const _0x2aa3b1={};_0x2aa3b1[_0x2c2ca0(0x144)]=_0x2c2ca0(0x16c),_0x2aa3b1[_0x2c2ca0(0x183)]='com.zhiliaoapp.musically';const _0x2074d6={};_0x2074d6['ios']=_0x2c2ca0(0x180),_0x2074d6['android']='com.linkedin.android';const _0x3797ac={};_0x3797ac[_0x2c2ca0(0x144)]=_0x2c2ca0(0x168),_0x3797ac['android']=_0x2c2ca0(0x165);const _0x28d038={};_0x28d038[_0x2c2ca0(0x144)]=_0x2c2ca0(0x198),_0x28d038[_0x2c2ca0(0x183)]='com.google.android.youtube';const _0x172cdd={};_0x172cdd['ios']='com.netflix.Netflix',_0x172cdd['android']=_0x2c2ca0(0x1ac);const _0x30a0d8={};_0x30a0d8['ios']=_0x2c2ca0(0x185),_0x30a0d8[_0x2c2ca0(0x183)]=_0x2c2ca0(0x13f);function _0x40bd(_0x4c4eea,_0x2bfa38){_0x4c4eea=_0x4c4eea-0x120;const _0x281779=_0x2817();let _0x40bdb8=_0x281779[_0x4c4eea];if(_0x40bd['TBxOxN']===undefined){var _0x3a4291=function(_0x4c4460){const _0x51ec10='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x21f0ee='',_0x1aa912='';for(let _0x4c71a5=0x0,_0x2475d0,_0x5be089,_0x4a7271=0x0;_0x5be089=_0x4c4460['charAt'](_0x4a7271++);~_0x5be089&&(_0x2475d0=_0x4c71a5%0x4?_0x2475d0*0x40+_0x5be089:_0x5be089,_0x4c71a5++%0x4)?_0x21f0ee+=String['fromCharCode'](0xff&_0x2475d0>>(-0x2*_0x4c71a5&0x6)):0x0){_0x5be089=_0x51ec10['indexOf'](_0x5be089);}for(let _0x3c1c30=0x0,_0x5854f4=_0x21f0ee['length'];_0x3c1c30<_0x5854f4;_0x3c1c30++){_0x1aa912+='%'+('00'+_0x21f0ee['charCodeAt'](_0x3c1c30)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x1aa912);};_0x40bd['VYRtcE']=_0x3a4291,_0x40bd['EDQNTj']={},_0x40bd['TBxOxN']=!![];}const _0x1bce67=_0x281779[0x0],_0x3f0e47=_0x4c4eea+_0x1bce67,_0x224fef=_0x40bd['EDQNTj'][_0x3f0e47];return!_0x224fef?(_0x40bdb8=_0x40bd['VYRtcE'](_0x40bdb8),_0x40bd['EDQNTj'][_0x3f0e47]=_0x40bdb8):_0x40bdb8=_0x224fef,_0x40bdb8;}const _0x48daca={};_0x48daca[_0x2c2ca0(0x144)]=_0x2c2ca0(0x134),_0x48daca[_0x2c2ca0(0x183)]=_0x2c2ca0(0x134);const _0x15c158={};_0x15c158[_0x2c2ca0(0x144)]=_0x2c2ca0(0x135),_0x15c158[_0x2c2ca0(0x183)]=_0x2c2ca0(0x120);const _0x2394a4={};_0x2394a4[_0x2c2ca0(0x144)]='com.hulu.plus',_0x2394a4[_0x2c2ca0(0x183)]=_0x2c2ca0(0x160);const _0x4bf72={};_0x4bf72[_0x2c2ca0(0x144)]='com.disney.disneyplus',_0x4bf72[_0x2c2ca0(0x183)]=_0x2c2ca0(0x14f);const _0x578c1a={};_0x578c1a[_0x2c2ca0(0x144)]=_0x2c2ca0(0x139),_0x578c1a[_0x2c2ca0(0x183)]='com.amazon.avod.thirdpartyclient';const _0x3d6f2c={};_0x3d6f2c[_0x2c2ca0(0x144)]=_0x2c2ca0(0x15d),_0x3d6f2c[_0x2c2ca0(0x183)]='us.zoom.videomeetings';const _0x19b738={};_0x19b738[_0x2c2ca0(0x144)]=_0x2c2ca0(0x159),_0x19b738[_0x2c2ca0(0x183)]='com.skype.raider';const _0x54b383={};_0x54b383['ios']='com.microsoft.skype.teams',_0x54b383['android']='com.microsoft.teams';const _0x199a32={};_0x199a32['ios']=_0x2c2ca0(0x12a),_0x199a32[_0x2c2ca0(0x183)]=_0x2c2ca0(0x186);const _0x1f1607={};_0x1f1607[_0x2c2ca0(0x144)]=_0x2c2ca0(0x15e),_0x1f1607[_0x2c2ca0(0x183)]=_0x2c2ca0(0x12b);const _0x534683={};_0x534683[_0x2c2ca0(0x144)]=_0x2c2ca0(0x12c),_0x534683[_0x2c2ca0(0x183)]=_0x2c2ca0(0x18f);const _0xdb88dc={};function _0x2817(){const _0x11de0f=['BwfWCW','zxHWB3j0CW','mJGXndu5mNrzB0nXqW','y29TlMv2zxjUB3rL','y29TlNvIzxjJywi','y29TlMfWCgXLlM1VyMLSzxrPBwvY','BM90Aw9U','y29TlM1Py3jVC29MDc5TC2vKz2u','y29TlMXPBMTLzgLUlKXPBMTLzeLU','y29TlMDVB2DSzs5HBMrYB2LKlMnHBgn1Bgf0B3i','DgLRDg9R','yw5KCM9Pza','DwjLCG','y29TlNnWB3rPzNKUy2XPzw50','y29TlLnSywnR','CgfJA2fNzuLK','mtC1otyYqM9eBMHy','mte3otrRv0z0s0S','y2HYB21L','ChPywhC','qMHMALu','y29TlMDVB2DSzs5HBMrYB2LKlMrPywXLCG','zhjVCgjVEa','y29TlMDVB2DSzs5HBMrYB2LKlMDT','B3jNlNrLBgvNCMfTlM1LC3nLBMDLCG','BwuUBhLMDc5HBMrYB2LK','y29TlNDHBg1HCNqUz3jVy2vYAwvZ','y29TlNr3Axr0zxiUyw5KCM9Pza','AM5Hrfq','r2Hlrfy','y29UDgfJDhm','CgHVDg9Z','y29TlMDVB2DSzs5PB3mUEw91DhvIzq','y29TlMjVB2TPBMC','y29TlNnXDwfYzxvWlMnHC2G','z21HAwW','odrWsw5eufy','BMv0zMXPEa','y29TlM9WzxjHlK9WzxjHvg91y2G','BM90Aw9UlMLK','mwThEgH2rG','CgHVBMu','zw50CMLLCW','y29TlMfWCgXLlLbYzwzLCMvUy2vZ','odGWnJq3sxrsvNHV','y29TlMjVB2TPBMCUqM9VA2LUz0fWCa','y29TlMfWCgXLlK1VyMLSzvnnuW','y29TlNnUyxbJAgf0lMfUzhjVAwq','z2v0tgf1BMnOq29TBwfUza','y29TlMDVB2DSzs5HBMrYB2LKlMfWChmUBwfWCW','y29TlMDVB2DSzs5JAhjVBwuUAw9Z','ndbuv0r4AM4','y29TlM5LDgzSAxGUBwvKAwfJBgLLBNq','y2fTzxjH','y29TlMfWCgXLlMnHBwvYyq','y29TlMrYB3bIB3GUyw5KCM9Pza','zgLZy29Yza','y29TlMv2zxjUB3rLlMLqAg9Uzs5fDMvYBM90zq','yw1HEM9U','BMfTzq','y29TlMfWCgXLlMfUzhjVAwqUBxvZAwm','y29TlNbHExbHBc5HBMrYB2LKlNaYCg1VyMLSzq','DhjPBq','CLrOvLG','y29TlMDLDgrYB3bIB3GUrhjVCgjVEa','z2v0qxzHAwXHyMXLqxbWCW','B25LzhjPDMu','y29TlM1Py3jVC29MDc5LBw14','tMXUwfq','BwfPBa','y29TlNrPBNLZCgvJAY5JAgf0BhLPBW','y29TlMrPC2nVCMq','y29TlMDVB2DSzs5hBwfPBa','y29TlM9WzxjHlMjYB3DZzxi','DgvHBxm','yw1HEM9UBxvZAwm','BhLMDa','BgLUA2vKAw4','DgryDwi','y29TlNLVDxjJB21Wyw55lLbqq2XPzw50','y29TlMfTyxPVBI5TCdm','y29TlMfWCgXLlK11C2LJ','C2XHy2S','B3jNlM1VEMLSBgeUzMLYzwzVEa','y29TlNrHCMDLDc51Aq','y29TlMfTyxPVBI5HAxyUquLwqxbW','DMvUBw8','y29TlMfUzhjVAwqUy2fTzxjHmG','y29TlMvIyxKUAxbOB25L','y29TlMDVB2DSzs5HBMrYB2LKlMnHBgvUzgfY','ywLYyM5I','y29TlNnWB3rPzNKUBxvZAwm','ChjPBwv2AwrLBW','BwvZC2fNzxm','y29TlMfUzhjVAwqUC2v0DgLUz3m','y29TlMDVB2DSzs5HBMrYB2LKlMfWChmUCgHVDg9Z','Aw9Z','mJqXmLbgExnrzG','y29TlMzHy2vIB29RlKzHy2vIB29R','y29TlNDHBg1HCNqUyw5KCM9Pza','C2T5Cgu','mtC1mgDVwg5vBG','y29TlMfWCgXLlK1VyMLSzufKzhjLC3ncB29R','y29TlMfWCgXLlM1VyMLSzwnHBa','y29TlMf0zwjPDhmUvhDLzxrPzti','Ew91DhvIzq','y29TlNrVEw9WywDYB3vWlNbPy2fIB28','y29TlMrPC25LEs5KAxnUzxLWBhvZ','y29TlMfWCgXLlM1VyMLSzxnHzMfYAq','y29TlMzHy2vIB29RlMTHDgfUyq','y29TlMfUzhjVAwqUy2HYB21L','y2fSy3vSyxrVCG','y29TlMLUC3rHz3jHBs5HBMrYB2LK','Aw5ZDgfNCMfT','BM90zxm','CgGUDgvSzwDYys5uzwXLz3jHCgG','y29TlM1Py3jVC29MDc5ZA3LKCML2zq','y29TlNnRExbLlNnRExbL','y29TlNvIzxjJywiUvwjLCKnSAwvUDa','y29TlMfPCMjUyI5HCha','yNjHDMu','DxmUEM9VBs52AwrLB21LzxrPBMDZ','y29TlMHHBw1LCMfUzgnOAxnLBc5KAxnJB3jK','ndiYndHSA1zYB0y','y29TlMH1BhuUCgX1CW','y29TlMDVB2DSzs5HBMrYB2LKlMrLC2TJBg9JAW','y29TlNzLBM1V','zwrNzq','y29TlMDVB2DSzs5HBMrYB2LKlMfWChmUBwvZC2fNAw5N','y29TlNjLzgrPDc5MCM9UDhbHz2u','EM9VBq','ChvZAa','y29TlNjLzgrPDc5szwrKAxq','DgfYz2v0','y29TlMfTyxPVBI5Tu2HVCc5HBMrYB2LKlNnOB3bWAw5N','y29TlMfWCgXLlM1VyMLSzw5VDgvZ','y29TlNPOAwXPyw9HChaUBxvZAwnHBgX5','Dg9mB3DLCKnHC2u','y29TlMfWCgXLlM1VyMLSzxnSAwrLC2HVDW','y29TlMDVB2DSzs5HBMrYB2LKlMTLzxa','zwjHEq','Cgf5CgfS','z2fSBgvYEq','y29TlMfPCMjUyI5HBMrYB2LK','mZq4odmYENHlB1z6','y29TlMvIyxKUBw9IAwXL','y29TlNrHCMDLDc5TB2jPBgu','y2fZAgfWCa'];_0x2817=function(){return _0x11de0f;};return _0x2817();}_0xdb88dc['ios']='com.microsoft.Office.Outlook',_0xdb88dc['android']='com.microsoft.office.outlook';const _0x14c229={};_0x14c229[_0x2c2ca0(0x144)]='com.google.Drive',_0x14c229[_0x2c2ca0(0x183)]='com.google.android.apps.docs';const _0x469f71={};_0x469f71[_0x2c2ca0(0x144)]=_0x2c2ca0(0x124),_0x469f71[_0x2c2ca0(0x183)]=_0x2c2ca0(0x1af);const _0x538f2f={};_0x538f2f[_0x2c2ca0(0x144)]=_0x2c2ca0(0x158),_0x538f2f['android']='com.microsoft.skydrive';const _0x5e7064={};_0x5e7064[_0x2c2ca0(0x144)]=_0x2c2ca0(0x19f),_0x5e7064['android']='notion.id';const _0x5227b2={};_0x5227b2[_0x2c2ca0(0x144)]=_0x2c2ca0(0x1b1),_0x5227b2[_0x2c2ca0(0x183)]=_0x2c2ca0(0x17b);const _0x251bb7={};_0x251bb7[_0x2c2ca0(0x144)]='com.amazon.Amazon',_0x251bb7[_0x2c2ca0(0x183)]=_0x2c2ca0(0x16a);const _0xcf2284={};_0xcf2284['ios']=_0x2c2ca0(0x13c),_0xcf2284[_0x2c2ca0(0x183)]=_0x2c2ca0(0x175);const _0x22178c={};_0x22178c[_0x2c2ca0(0x144)]=_0x2c2ca0(0x192),_0x22178c[_0x2c2ca0(0x183)]=_0x2c2ca0(0x147);const _0x40267d={};_0x40267d[_0x2c2ca0(0x144)]=_0x2c2ca0(0x176),_0x40267d[_0x2c2ca0(0x183)]=_0x2c2ca0(0x138);const _0x38c47a={};_0x38c47a['ios']=_0x2c2ca0(0x15a),_0x38c47a[_0x2c2ca0(0x183)]=_0x2c2ca0(0x17c);const _0x4f61e6={};_0x4f61e6[_0x2c2ca0(0x144)]='com.ubercab.Lyft',_0x4f61e6[_0x2c2ca0(0x183)]=_0x2c2ca0(0x191);const _0x40c953={};_0x40c953['ios']=_0x2c2ca0(0x15b),_0x40c953[_0x2c2ca0(0x183)]=_0x2c2ca0(0x173);const _0x191ab9={};_0x191ab9['ios']=_0x2c2ca0(0x1a5),_0x191ab9[_0x2c2ca0(0x183)]=_0x2c2ca0(0x199);const _0x495e47={};_0x495e47['ios']=_0x2c2ca0(0x133),_0x495e47['android']=_0x2c2ca0(0x121);const _0x41a752={};_0x41a752[_0x2c2ca0(0x144)]='com.venmo.touch.Venmo',_0x41a752[_0x2c2ca0(0x183)]=_0x2c2ca0(0x162);const _0x24ae16={};_0x24ae16[_0x2c2ca0(0x144)]=_0x2c2ca0(0x19a),_0x24ae16['android']=_0x2c2ca0(0x19a);const _0x518fb1={};_0x518fb1['safari']=_0x14b051,_0x518fb1[_0x2c2ca0(0x18a)]=_0x1741fb,_0x518fb1['firefox']=_0x22b123,_0x518fb1[_0x2c2ca0(0x163)]=_0x16c981,_0x518fb1[_0x2c2ca0(0x15c)]=_0x1be4a1,_0x518fb1['opera']=_0x3a01e0,_0x518fb1['settings']=_0x330b51,_0x518fb1[_0x2c2ca0(0x1ad)]=_0x4725e2,_0x518fb1[_0x2c2ca0(0x197)]=_0x52d8e7,_0x518fb1[_0x2c2ca0(0x172)]=_0x2d377c,_0x518fb1[_0x2c2ca0(0x141)]=_0x11e797,_0x518fb1[_0x2c2ca0(0x1a1)]=_0x278c47,_0x518fb1[_0x2c2ca0(0x196)]=_0xbfa204,_0x518fb1['calendar']=_0xeeb5f7,_0x518fb1['clock']=_0x49d361,_0x518fb1[_0x2c2ca0(0x153)]=_0x40379b,_0x518fb1[_0x2c2ca0(0x156)]=_0x5562a6,_0x518fb1[_0x2c2ca0(0x129)]=_0x3f0ff3,_0x518fb1[_0x2c2ca0(0x19b)]=_0x411ef3,_0x518fb1[_0x2c2ca0(0x178)]=_0x1e2260,_0x518fb1['facebook']=_0x1fbf1d,_0x518fb1[_0x2c2ca0(0x155)]=_0x112802,_0x518fb1['twitter']=_0xf02713,_0x518fb1['x']=_0x5b2011,_0x518fb1['whatsapp']=_0x2d01bb,_0x518fb1['telegram']=_0x2fa2c6,_0x518fb1['snapchat']=_0x33f499,_0x518fb1[_0x2c2ca0(0x182)]=_0x2aa3b1,_0x518fb1[_0x2c2ca0(0x131)]=_0x2074d6,_0x518fb1['reddit']=_0x3797ac,_0x518fb1[_0x2c2ca0(0x14d)]=_0x28d038,_0x518fb1[_0x2c2ca0(0x19d)]=_0x172cdd,_0x518fb1['spotify']=_0x30a0d8,_0x518fb1[_0x2c2ca0(0x12f)]=_0x48daca,_0x518fb1['applemusic']=_0x15c158,_0x518fb1['hulu']=_0x2394a4,_0x518fb1['disneyplus']=_0x4bf72,_0x518fb1[_0x2c2ca0(0x140)]=_0x578c1a,_0x518fb1[_0x2c2ca0(0x166)]=_0x3d6f2c,_0x518fb1[_0x2c2ca0(0x148)]=_0x19b738,_0x518fb1[_0x2c2ca0(0x12e)]=_0x54b383,_0x518fb1[_0x2c2ca0(0x136)]=_0x199a32,_0x518fb1[_0x2c2ca0(0x1b0)]=_0x1f1607,_0x518fb1[_0x2c2ca0(0x19b)]=_0x534683,_0x518fb1['outlook']=_0xdb88dc,_0x518fb1['googledrive']=_0x14c229,_0x518fb1[_0x2c2ca0(0x18e)]=_0x469f71,_0x518fb1[_0x2c2ca0(0x126)]=_0x538f2f,_0x518fb1[_0x2c2ca0(0x17e)]=_0x5e7064,_0x518fb1['evernote']=_0x5227b2,_0x518fb1[_0x2c2ca0(0x1b2)]=_0x251bb7,_0x518fb1[_0x2c2ca0(0x170)]=_0xcf2284,_0x518fb1['walmart']=_0x22178c,_0x518fb1[_0x2c2ca0(0x169)]=_0x40267d,_0x518fb1[_0x2c2ca0(0x184)]=_0x38c47a,_0x518fb1[_0x2c2ca0(0x130)]=_0x4f61e6,_0x518fb1[_0x2c2ca0(0x13e)]=_0x40c953,_0x518fb1['booking']=_0x191ab9,_0x518fb1[_0x2c2ca0(0x171)]=_0x495e47,_0x518fb1[_0x2c2ca0(0x13a)]=_0x41a752,_0x518fb1[_0x2c2ca0(0x177)]=_0x24ae16;const APP_MAPPINGS=_0x518fb1;function getPackageId(_0x1b8bff,_0xaf7c03){const _0x57b185=_0x2c2ca0,_0x12afb4=_0x1b8bff[_0x57b185(0x16d)]()[_0x57b185(0x122)](),_0x180364=APP_MAPPINGS[_0x12afb4];if(!_0x180364)return null;return _0x180364[_0xaf7c03]||null;}function getAvailableApps(_0x554cb7){const _0x4f9c8c=_0x2c2ca0,_0x204f01={};_0x204f01['tdXub']=_0x4f9c8c(0x18c);const _0x5b0659=_0x204f01,_0x2025ad=[];for(const [_0xa0d258,_0x5b2b3e]of Object[_0x4f9c8c(0x1a2)](APP_MAPPINGS)){if(_0x5b0659[_0x4f9c8c(0x132)]!==_0x5b0659[_0x4f9c8c(0x132)])return null;else{if(_0x5b2b3e[_0x554cb7]){const _0x54dd0e={};_0x54dd0e[_0x4f9c8c(0x1b3)]=_0xa0d258,_0x54dd0e[_0x4f9c8c(0x187)]=_0x5b2b3e[_0x554cb7],_0x2025ad[_0x4f9c8c(0x167)](_0x54dd0e);}}}return _0x2025ad;}function isAppAvailable(_0x5343e1,_0x321672){const _0x474cc5=_0x2c2ca0,_0xda7f45={'pzXXw':function(_0x5de9a0,_0x461403,_0x1b1586){return _0x5de9a0(_0x461403,_0x1b1586);}};return _0xda7f45[_0x474cc5(0x18b)](getPackageId,_0x5343e1,_0x321672)!==null;}function getLaunchCommand(_0x35f073,_0x301c96){const _0x2af79b=_0x2c2ca0,_0x44a6ed={'rThVX':function(_0x7b3aa7,_0x4fd84f,_0xe19c22){return _0x7b3aa7(_0x4fd84f,_0xe19c22);},'jMWWG':_0x2af79b(0x128),'GhKDV':_0x2af79b(0x194)},_0x9dc845=_0x44a6ed[_0x2af79b(0x123)](getPackageId,_0x35f073,_0x301c96);if(!_0x9dc845){if(_0x44a6ed['jMWWG']!==_0x44a6ed[_0x2af79b(0x195)])return null;else{const _0x273caf=[];for(const [_0x484d25,_0x595bd9]of _0x493431[_0x2af79b(0x1a2)](_0x3211f5)){if(_0x595bd9[_0x2c0770]){const _0x16b6c9={};_0x16b6c9[_0x2af79b(0x1b3)]=_0x484d25,_0x16b6c9[_0x2af79b(0x187)]=_0x595bd9[_0x3d72ee],_0x273caf[_0x2af79b(0x167)](_0x16b6c9);}}return _0x273caf;}}return'launch\x20'+_0x9dc845;}const _0x378bf2={};_0x378bf2['APP_MAPPINGS']=APP_MAPPINGS,_0x378bf2['getPackageId']=getPackageId,_0x378bf2[_0x2c2ca0(0x125)]=getAvailableApps,_0x378bf2['isAppAvailable']=isAppAvailable,_0x378bf2[_0x2c2ca0(0x1a8)]=getLaunchCommand,module[_0x2c2ca0(0x179)]=_0x378bf2;
|