├── .gitignore ├── instagram ├── index_files │ ├── c4ca4238a0b9.js │ ├── c4ca4238a0b9_1.js │ ├── 3rhSv5V8j3o.gif │ ├── Cou7n-nqK52.gif │ ├── IE9JII6Z1Ys.png │ ├── jKEcVPZFk-2.gif │ ├── t-wz8gw1xG1.png │ ├── 180ae7a0bcf7.png │ ├── 1dc085cdb87d.png │ ├── 32f0a4f27407.png │ ├── 36b3ee2d91ed.ico │ ├── 4985e31c9100.png │ ├── 4d62acb667fb.png │ ├── 666282be8229.png │ ├── 68193576ffc5.png │ ├── 68d99ba29cc8.png │ ├── 7a252de00b20.png │ ├── 8a5bd3f267b1.png │ ├── 94edb770accf.png │ ├── a4fd825e3d49.png │ ├── c06fdb2357bd.png │ ├── e9cd846dc748.png │ ├── fdfe239b7c9f.png │ └── sdk_1.js ├── preview.png └── post.php ├── gmail ├── preview.png └── post.php ├── facebook ├── preview.png ├── facebook_files │ ├── hsts-pixel.gif │ ├── sczXDyPA0UL.js.download │ ├── nG7XmC3cZWM.css │ ├── dF5SId3UHWd.svg │ ├── XRBIW2_mxwG.js.download │ ├── B1QkyGvU3pd.js.download │ ├── fARQz3e8huT.css │ ├── FDRfgBZR4fg.js.download │ ├── 7JaG8yRCUqE.css │ ├── UQc13wnoWNb.js.download │ ├── 9r8JqCgJvpo.js.download │ ├── c6s2T6ddsvt.css │ ├── 8gjIqkUnBC6.js.download │ ├── ahHlrk9HMHV.css │ ├── pslzeMSEB_a.js.download │ └── JgyEeZA6YIr.css └── post.php ├── tiktok ├── preview.png ├── index_files │ ├── logo_144c91a.png │ ├── sofiapro-bold.otf │ ├── sofiapro-bold.woff │ ├── Proxima-Nova-Bold.otf │ ├── logo_144c91a (1).png │ ├── sofiapro-medium.otf │ ├── sofiapro-medium.woff │ ├── sofiapro-regular.otf │ ├── sofiapro-regular.woff │ ├── sofiapro-semibold.otf │ ├── Proxima-Nova-Bold.woff │ ├── Proxima-Nova-Regular.otf │ ├── Proxima-Nova-Regular.woff │ ├── Proxima-Nova-Regular.woff2 │ ├── ProximaNova-Semibold.otf │ ├── ProximaNova-Semibold.woff2 │ ├── resource.1.1.0.maliva.js │ ├── sample.1.1.0.maliva.js │ ├── runtime.86d6c1f04725548464ff.js │ ├── error.1.1.0.maliva.js │ ├── perf.1.1.0.maliva.js │ ├── init.js │ ├── browser-nocookie.lite.1.1.0.maliva.js │ ├── report.1.1.0.maliva.js │ └── common-monitors.1.0.1.js └── post.php ├── old_versions ├── gmail_2019-06-01 │ ├── preview.png │ ├── Gmail1_files │ │ ├── glogo.png │ │ ├── grayImg.png │ │ ├── arrow_back_grey600_24dp.png │ │ └── universal_language_settings-21.png │ ├── Gmail2_files │ │ ├── img1.png │ │ ├── arrow_back_grey600_24dp.png │ │ └── universal_language_settings-21.png │ └── redirect.php └── facebook_2019-06-01 │ ├── preview.png │ ├── facebook_files │ ├── 80Toi9Z6PPm.png │ ├── GsNJNwuI-UM.gif │ ├── GwFs3_KxNjS.png │ ├── referer_frame.html │ ├── 8YuB-x8HZc3.js │ └── 7sdIDAs33zG.js │ └── post.php ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | credentials.txt 2 | -------------------------------------------------------------------------------- /instagram/index_files/c4ca4238a0b9.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instagram/index_files/c4ca4238a0b9_1.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gmail/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/gmail/preview.png -------------------------------------------------------------------------------- /facebook/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/facebook/preview.png -------------------------------------------------------------------------------- /tiktok/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/preview.png -------------------------------------------------------------------------------- /instagram/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/preview.png -------------------------------------------------------------------------------- /tiktok/index_files/logo_144c91a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/logo_144c91a.png -------------------------------------------------------------------------------- /instagram/index_files/3rhSv5V8j3o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/3rhSv5V8j3o.gif -------------------------------------------------------------------------------- /instagram/index_files/Cou7n-nqK52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/Cou7n-nqK52.gif -------------------------------------------------------------------------------- /instagram/index_files/IE9JII6Z1Ys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/IE9JII6Z1Ys.png -------------------------------------------------------------------------------- /instagram/index_files/jKEcVPZFk-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/jKEcVPZFk-2.gif -------------------------------------------------------------------------------- /instagram/index_files/t-wz8gw1xG1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/t-wz8gw1xG1.png -------------------------------------------------------------------------------- /tiktok/index_files/sofiapro-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/sofiapro-bold.otf -------------------------------------------------------------------------------- /tiktok/index_files/sofiapro-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/sofiapro-bold.woff -------------------------------------------------------------------------------- /facebook/facebook_files/hsts-pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/facebook/facebook_files/hsts-pixel.gif -------------------------------------------------------------------------------- /instagram/index_files/180ae7a0bcf7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/180ae7a0bcf7.png -------------------------------------------------------------------------------- /instagram/index_files/1dc085cdb87d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/1dc085cdb87d.png -------------------------------------------------------------------------------- /instagram/index_files/32f0a4f27407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/32f0a4f27407.png -------------------------------------------------------------------------------- /instagram/index_files/36b3ee2d91ed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/36b3ee2d91ed.ico -------------------------------------------------------------------------------- /instagram/index_files/4985e31c9100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/4985e31c9100.png -------------------------------------------------------------------------------- /instagram/index_files/4d62acb667fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/4d62acb667fb.png -------------------------------------------------------------------------------- /instagram/index_files/666282be8229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/666282be8229.png -------------------------------------------------------------------------------- /instagram/index_files/68193576ffc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/68193576ffc5.png -------------------------------------------------------------------------------- /instagram/index_files/68d99ba29cc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/68d99ba29cc8.png -------------------------------------------------------------------------------- /instagram/index_files/7a252de00b20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/7a252de00b20.png -------------------------------------------------------------------------------- /instagram/index_files/8a5bd3f267b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/8a5bd3f267b1.png -------------------------------------------------------------------------------- /instagram/index_files/94edb770accf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/94edb770accf.png -------------------------------------------------------------------------------- /instagram/index_files/a4fd825e3d49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/a4fd825e3d49.png -------------------------------------------------------------------------------- /instagram/index_files/c06fdb2357bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/c06fdb2357bd.png -------------------------------------------------------------------------------- /instagram/index_files/e9cd846dc748.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/e9cd846dc748.png -------------------------------------------------------------------------------- /instagram/index_files/fdfe239b7c9f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/instagram/index_files/fdfe239b7c9f.png -------------------------------------------------------------------------------- /tiktok/index_files/Proxima-Nova-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/Proxima-Nova-Bold.otf -------------------------------------------------------------------------------- /tiktok/index_files/logo_144c91a (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/logo_144c91a (1).png -------------------------------------------------------------------------------- /tiktok/index_files/sofiapro-medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/sofiapro-medium.otf -------------------------------------------------------------------------------- /tiktok/index_files/sofiapro-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/sofiapro-medium.woff -------------------------------------------------------------------------------- /tiktok/index_files/sofiapro-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/sofiapro-regular.otf -------------------------------------------------------------------------------- /tiktok/index_files/sofiapro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/sofiapro-regular.woff -------------------------------------------------------------------------------- /tiktok/index_files/sofiapro-semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/sofiapro-semibold.otf -------------------------------------------------------------------------------- /old_versions/gmail_2019-06-01/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/gmail_2019-06-01/preview.png -------------------------------------------------------------------------------- /tiktok/index_files/Proxima-Nova-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/Proxima-Nova-Bold.woff -------------------------------------------------------------------------------- /old_versions/facebook_2019-06-01/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/facebook_2019-06-01/preview.png -------------------------------------------------------------------------------- /tiktok/index_files/Proxima-Nova-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/Proxima-Nova-Regular.otf -------------------------------------------------------------------------------- /tiktok/index_files/Proxima-Nova-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/Proxima-Nova-Regular.woff -------------------------------------------------------------------------------- /tiktok/index_files/Proxima-Nova-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/Proxima-Nova-Regular.woff2 -------------------------------------------------------------------------------- /tiktok/index_files/ProximaNova-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/ProximaNova-Semibold.otf -------------------------------------------------------------------------------- /tiktok/index_files/ProximaNova-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/tiktok/index_files/ProximaNova-Semibold.woff2 -------------------------------------------------------------------------------- /old_versions/gmail_2019-06-01/Gmail1_files/glogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/gmail_2019-06-01/Gmail1_files/glogo.png -------------------------------------------------------------------------------- /old_versions/gmail_2019-06-01/Gmail2_files/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/gmail_2019-06-01/Gmail2_files/img1.png -------------------------------------------------------------------------------- /old_versions/gmail_2019-06-01/Gmail1_files/grayImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/gmail_2019-06-01/Gmail1_files/grayImg.png -------------------------------------------------------------------------------- /old_versions/facebook_2019-06-01/facebook_files/80Toi9Z6PPm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/facebook_2019-06-01/facebook_files/80Toi9Z6PPm.png -------------------------------------------------------------------------------- /old_versions/facebook_2019-06-01/facebook_files/GsNJNwuI-UM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/facebook_2019-06-01/facebook_files/GsNJNwuI-UM.gif -------------------------------------------------------------------------------- /old_versions/facebook_2019-06-01/facebook_files/GwFs3_KxNjS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/facebook_2019-06-01/facebook_files/GwFs3_KxNjS.png -------------------------------------------------------------------------------- /old_versions/gmail_2019-06-01/Gmail1_files/arrow_back_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/gmail_2019-06-01/Gmail1_files/arrow_back_grey600_24dp.png -------------------------------------------------------------------------------- /old_versions/gmail_2019-06-01/Gmail2_files/arrow_back_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/gmail_2019-06-01/Gmail2_files/arrow_back_grey600_24dp.png -------------------------------------------------------------------------------- /old_versions/gmail_2019-06-01/Gmail1_files/universal_language_settings-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/gmail_2019-06-01/Gmail1_files/universal_language_settings-21.png -------------------------------------------------------------------------------- /old_versions/gmail_2019-06-01/Gmail2_files/universal_language_settings-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tassoneroberto/phishing-websites/HEAD/old_versions/gmail_2019-06-01/Gmail2_files/universal_language_settings-21.png -------------------------------------------------------------------------------- /old_versions/facebook_2019-06-01/facebook_files/referer_frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
-------------------------------------------------------------------------------- /facebook/post.php: -------------------------------------------------------------------------------- 1 |>>1;eq(i,d))j q(k,i)?(b[e]=k,b[j]=d,e=j):(b[e]=i,b[h]=d,e=h);else if(j q(k,d))b[e]=k,b[j]=d,e=j;else break a}}return c}function q(b,c){var d=b.sortIndex-c.sortIndex;return 0!==d?d:b.id-c.id}var r=0,s=0,t=0,u=null,v=null,w=0;function x(b){if(null!==v){var c=w;w+=b.length;if(w+1>t){t*=2;if(524288 b&&(!c||X()));){var d=E.callback;if("function"===typeof d){E.callback=null;F=E.priorityLevel;var e=E.expirationTime<=b;if(j){var f=E;j&&(r++,null!==v&&x([5,1e3*b,f.id,r]))}d=d(e);b=g.unstable_now();"function"===typeof d?(E.callback=d,j&&j&&null!==v&&x([6,1e3*b,E.id,r])):(j&&(j&&null!==v&&x([2,1e3*b,E.id]),E.isQueued=!1),E===o(B)&&p(B));N(b)}else p(B);E=o(B)}if(null!==E)return!0;c=o(C);null!==c&&aa(O,c.startTime-b);return!1}var R=!1,S=null,T=-1,U=k,V=-1,W=!1;function X(){var b=g.unstable_now()-V;if(bb||125e?(b.sortIndex=d,n(C,b),null===o(B)&&b===o(C)&&(I?(K(T),T=-1):I=!0,aa(O,d-e))):(b.sortIndex=f,n(B,b),j&&(j&&null!==v&&x([1,1e3*e,b.id,b.priorityLevel]),b.isQueued=!0),H||G||(H=!0,$(P)));return b};g.unstable_shouldYield=X;g.unstable_wrapCallback=function(b){var c=F;return function(){var d=F;F=c;try{return b.apply(this,arguments)}finally{F=d}}};typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error())}),null); 11 | __d("SchedulerFb-Internals_DO_NOT_USE",["Scheduler-dev.classic","Scheduler-profiling.classic","ifRequireable","requestAnimationFramePolyfill"],(function(a,b,c,d,e,f){"use strict";a.requestAnimationFrame===void 0&&(a.requestAnimationFrame=b("requestAnimationFramePolyfill"));var g;g=b("Scheduler-profiling.classic");e.exports={unstable_ImmediatePriority:g.unstable_ImmediatePriority,unstable_UserBlockingPriority:g.unstable_UserBlockingPriority,unstable_NormalPriority:g.unstable_NormalPriority,unstable_LowPriority:g.unstable_LowPriority,unstable_IdlePriority:g.unstable_IdlePriority,unstable_getCurrentPriorityLevel:g.unstable_getCurrentPriorityLevel,unstable_runWithPriority:g.unstable_runWithPriority,unstable_now:g.unstable_now,unstable_scheduleCallback:function(a,c,d){var e=b("ifRequireable")("TimeSlice",function(a){return a.guard(c,"unstable_scheduleCallback",{propagationType:a.PropagationType.CONTINUATION,registerCallStack:!0})},function(){return c});a=g.unstable_scheduleCallback(a,e,d);return a},unstable_cancelCallback:function(a){return g.unstable_cancelCallback(a)},unstable_wrapCallback:function(a){var c=b("ifRequireable")("TimeSlice",function(b){return b.guard(a,"unstable_wrapCallback",{propagationType:b.PropagationType.CONTINUATION,registerCallStack:!0})},function(){return a});return g.unstable_wrapCallback(c)},unstable_pauseExecution:function(){return g.unstable_pauseExecution()},unstable_continueExecution:function(){return g.unstable_continueExecution()},unstable_shouldYield:g.unstable_shouldYield,unstable_requestPaint:g.unstable_requestPaint,unstable_forceFrameRate:g.unstable_forceFrameRate,unstable_Profiling:g.unstable_Profiling}}),null); 12 | __d("JSScheduler",["SchedulerFb-Internals_DO_NOT_USE"],(function(a,b,c,d,e,f){"use strict";var g={unstable_Immediate:(c=b("SchedulerFb-Internals_DO_NOT_USE")).unstable_ImmediatePriority,unstable_UserBlocking:c.unstable_UserBlockingPriority,unstable_Normal:c.unstable_NormalPriority,unstable_Low:c.unstable_LowPriority,unstable_Idle:c.unstable_IdlePriority},h=!1,i=c.unstable_scheduleCallback,j=c.unstable_cancelCallback;a.__fbNativeSetTimeout||a.setTimeout;a.__fbNativeClearTimeout||a.clearTimeout;var k={priorities:g,shouldYield:b("SchedulerFb-Internals_DO_NOT_USE").unstable_shouldYield,getCurrentPriorityLevel:b("SchedulerFb-Internals_DO_NOT_USE").unstable_getCurrentPriorityLevel,runWithPriority:b("SchedulerFb-Internals_DO_NOT_USE").unstable_runWithPriority,runWithPriority_DO_NOT_USE:b("SchedulerFb-Internals_DO_NOT_USE").unstable_runWithPriority,defer:function(a){var b=k.getCurrentPriorityLevel();return i(b,a)},getCallbackScheduler:function(){var a=k.getCurrentPriorityLevel();return function(b){return i(a,b)}},getUserBlockingRunAtCurrentPriCallbackScheduler_DO_NOT_USE:function(){var a=k.getCurrentPriorityLevel();return function(c){return i(g.unstable_UserBlocking,function(){b("SchedulerFb-Internals_DO_NOT_USE").unstable_runWithPriority(a,c)})}},deferUserBlockingRunAtCurrentPri_DO_NOT_USE:function(a){var c=k.getCurrentPriorityLevel();return i(g.unstable_UserBlocking,function(){b("SchedulerFb-Internals_DO_NOT_USE").unstable_runWithPriority(c,a)})},scheduleImmediatePriCallback:function(a){return i(g.unstable_Immediate,a)},scheduleUserBlockingPriCallback:function(a){return i(g.unstable_UserBlocking,a)},scheduleNormalPriCallback:function(a){return i(g.unstable_Normal,a)},scheduleLoggingPriCallback:function(a){return i(g.unstable_Low,a)},scheduleSpeculativeCallback:function(a){return i(g.unstable_Idle,a)},cancelCallback:function(a){j(a)},scheduleDelayedCallback_DO_NOT_USE:function(a,b,c){a=i(a,c,{delay:b});return a},cancelDelayedCallback_DO_NOT_USE:function(a){a=a;return j(a)},startEventProfiling:function(){var a;a=(a=b("SchedulerFb-Internals_DO_NOT_USE").unstable_Profiling)==null?void 0:a.startLoggingProfilingEvents;typeof a=="function"&&a()},stopEventProfiling:function(){var a;a=(a=b("SchedulerFb-Internals_DO_NOT_USE").unstable_Profiling)==null?void 0:a.stopLoggingProfilingEvents;return typeof a=="function"?a():null},makeSchedulerGlobalEntry:function(c,d){c===void 0&&(c=null),d===void 0&&(d=!1),c!==null&&c!==void 0&&b("SchedulerFb-Internals_DO_NOT_USE").unstable_forceFrameRate(c),d&&k.startEventProfiling(),a.ScheduleJSWork=function(a){return function(){for(var b=arguments.length,c=new Array(b),d=0;d= s)) return e.unshift(o), v(t.parentNode, n, r + o.length, e) 58 | } return e.join(i) 59 | } function h(t, n) { 60 | return t = t.config.plugins[n], "object" != typeof (n = t) || null === n || a(n) ? { 61 | } : t 62 | } function y(n, t) { 63 | return n && t && t.some(function (t) { 64 | return n.match(t) 65 | }) 66 | } function b(t) { 67 | 68 | var n = document.createElement("a"); 69 | return n.href = t, { 70 | url: n.href, protocol: n.protocol, domain: n.hostname, query: n.search, hash: n.hash, path: n.pathname 71 | } 72 | } function m(t) { 73 | return JSON.stringify({ 74 | ev_type: "batch", list: t 75 | }) 76 | } var d = 10, g = 1e3; 77 | function n() { 78 | 79 | if ("object" == typeof window && ("object" == typeof (t = window) && null !== t)) return window; 80 | var t 81 | } function r() { 82 | 83 | var t = n() && n() && window.location; 84 | return null == t ? void 0 : t.href 85 | } function e(o) { 86 | 87 | var t, n, r, e, i, u, a, c, f = j(o.config.domain || w, _), s = (n = (t = { 88 | endpoint: f, transport: T 89 | }).transport, r = t.endpoint, e = t.size, i = void 0 === e ? d : e, u = void 0 === (t = t.wait) ? g : t, a = [], c = 0, { 90 | getSize: function () { 91 | return i 92 | }, getWait: function () { 93 | return u 94 | }, setSize: function (t) { 95 | i = t 96 | }, setWait: function (t) { 97 | u = t 98 | }, getEndpoint: function () { 99 | return r 100 | }, setEndpoint: function (t) { 101 | r = t 102 | }, send: function (t) { 103 | a.push(t), a.length >= i && v.call(this), clearTimeout(c), c = setTimeout(v.bind(this), u) 104 | }, flush: function () { 105 | clearTimeout(c), v.call(this) 106 | }, getBatchData: function () { 107 | return a.length ? m(a) : "" 108 | }, clear: function () { 109 | clearTimeout(c), a = [] 110 | } 111 | }); 112 | function v() { 113 | a.length && (n.post({ 114 | url: r, data: this.getBatchData() 115 | }), a = []) 116 | } return addEventListener("beforeunload", function () { 117 | 118 | var t = s.getBatchData(); 119 | t && navigator.sendBeacon(f, t) 120 | }), o.m = f, function (t, n) { 121 | 122 | var r, e; 123 | void 0 === n && (n = o), (t = o.bs && t ? o.bs(t) : t) && (r = S(x(O(k(t)), n), n), e = function () { 124 | return s.send(E.build(r)) 125 | }, t.ev_type ? e() : t.p = function (t) { 126 | 127 | var n = l(t, 2), t = n[0], n = n[1]; 128 | r.ev_type = t, r.payload = n, e() 129 | }) 130 | } 131 | } var w = "./", _ = "/", k = function (t) { 132 | 133 | var n = { 134 | url: r(), timestamp: Date.now(), sdk_version: "1.1.0", sdk_name: "SDK_LITE" 135 | }; 136 | return p(p({ 137 | }, t), { 138 | extra: p(p({ 139 | }, n), t.extra || { 140 | }) 141 | }) 142 | }, j = function (t, n) { 143 | return void 0 === n && (n = _), (t && 0 <= t.indexOf("//") ? "" : location.protocol + "//" + location.host) 144 | }, E = { 145 | build: function (t) { 146 | return { 147 | ev_type: t.ev_type, payload: t.payload, common: p(p({ 148 | }, t.extra || { 149 | }), t.overrides || { 150 | }) 151 | } 152 | } 153 | }, S = function (t, n) { 154 | 155 | var r = n.config, n = { 156 | }; 157 | return n.bid = r.bid, n.pid = r.pid, n.view_id = r.viewId, n.user_id = r.userId, n.device_id = r.deviceId, n.session_id = r.sessionId, n.release = r.release, n.env = r.env, p(p({ 158 | }, t), { 159 | extra: p(p({ 160 | }, n), t.extra || { 161 | }) 162 | }) 163 | }, x = function (t, n) { 164 | 165 | var r = n.ctx, n = n.config.context, n = void 0 === n ? { 166 | } : n; 167 | return t.extra.context = r ? p(p({ 168 | }, n), r.toString()) : n, t 169 | }, O = function (t) { 170 | 171 | var n = navigator.connection; 172 | return n && (t.extra.network_type = n.effectiveType), t 173 | }, T = { 174 | 175 | post: function (t) { 176 | 177 | var n = new XMLHttpRequest; 178 | n.open("POST", t.url), n.send(t.data) 179 | }, get: function () { 180 | } 181 | }, o = /(cookie|auth|jwt|token|key|ticket|secret|credential|session|password|x-tt-token)/i, q = /(bearer|session)/i, N = function (t, n) { 182 | return !(!t || !n) && (o.test(t) || q.test(n)) 183 | }; 184 | function D(t) { 185 | 186 | return t.split("\r\n").reduce(function (t, n) { 187 | return t.concat([n.split(": ")]) 188 | }, []).reduce(function (t, n) { 189 | 190 | var r = l(n, 2), e = r[0], n = r[1], r = void 0 === n ? "" : n; 191 | return e && !N(e, r) ? p(p({ 192 | }, t), ((n = { 193 | })[e] = r, n)) : t 194 | }, { 195 | }) 196 | } function L(t) { 197 | 198 | var n = (r = l(t, 2))[0], t = r[1], r = " "; 199 | try { 200 | r = v(t.target || t) 201 | } catch (t) { 202 | } return { 203 | category: "ui." + (0 === n ? "click" : "keypress"), message: r, type: "dom", timestamp: t.timeStamp 204 | } 205 | } var M, z = "performance_longtask"; 206 | function B() { 207 | 208 | for (var t = [], n = 0; 209 | n < arguments.length; 210 | n++)t[n] = arguments[n]; 211 | return t.reduce(function (r, t) { 212 | return new Headers(t).forEach(function (t, n) { 213 | return !N(n, t) && (r[n] = t) 214 | }), r 215 | }, { 216 | }) 217 | } var H = ["xmlhttprequest", "fetch", "beacon"]; 218 | return function () { 219 | 220 | for (var n = [], t = 0; 221 | t < arguments.length; 222 | t++)n[t] = arguments[t]; 223 | return function (r, t) { 224 | return n.reduce(function (t, n) { 225 | return n(r, t) 226 | }, t) 227 | } 228 | }(function () { 229 | 230 | for (var n = [], t = 0; 231 | t < arguments.length; 232 | t++)n[t] = arguments[t]; 233 | return function (i, t) { 234 | 235 | return t && i.s(function (r) { 236 | 237 | function e(t) { 238 | 239 | var t = (n = l(t, 2))[0], n = n[1]; 240 | return (t = o[t]) && t(n, i) 241 | } var o = n.reduce(function (t, n) { 242 | 243 | var r = l(n, 2), n = r[0], r = r[1]; 244 | return t[n] = r, t 245 | }, { 246 | }); 247 | t.u(function (n) { 248 | 249 | if (!a(n)) return r(n), void (n.c = function (t) { 250 | 251 | t = e(t); 252 | t && (n.p || r)(t) 253 | }); 254 | var t = e(n); 255 | t && r({ 256 | ev_type: t[0], payload: t[1] 257 | }) 258 | }) 259 | }) 260 | } 261 | }([1, function (t, n) { 262 | 263 | var r = l(t, 4), e = r[0], o = r[1], i = r[2], u = r[3], a = e.a, c = e.e, f = void 0 === c ? { 264 | } : c, s = e.v, v = e.r, m = e.status, t = e.response, r = h(n, "ajax"), c = r.ignoreUrls, r = r.collectBodyOnError; 265 | if (n.m !== s && !y(s, c)) { 266 | 267 | s = b(s), r = r && 400 <= m || void 0; 268 | return ["http", { 269 | api: "ajax", request: p(p({ 270 | headers: f, method: a 271 | }, s), { 272 | timestamp: o, body: r && "" + v 273 | }), response: { 274 | status: m || 0, timing: u, timestamp: o + i, is_custom_error: !1, headers: D(e.getAllResponseHeaders()), body: r && "" + t 275 | }, duration: i 276 | }] 277 | } 278 | }], [3, function (t) { 279 | return ["performance", p({ 280 | type: "perf" 281 | }, t)] 282 | }], [2, function (t, n) { 283 | 284 | var r = l(t, 2), e = r[0], t = r[1], o = (r = e).reason || r.detail && r.detail.reason || r.error; 285 | r = o, /\[object (Error|Exception|DOMException)\]/.test(u(r)) || r instanceof Error || "string" == typeof (o = "[object Object]" === u(o) ? { 286 | message: JSON.stringify(o) 287 | } : o) && (o = { 288 | message: o 289 | }); 290 | var i, r = h(n, "jsError"), n = r.ignoreErrors, r = r.dedupe; 291 | if (o && !y(o.message, n)) return i = o, o = ["message", "name", "fileName", "lineNumber", "columnNumber", "stack", "stacktrace", "framesToPop"].reduce(function (t, n) { 292 | return t[n] = i[n], t 293 | }, { 294 | }), !1 === r || !M || ["stack", "message"].some(function (t) { 295 | return o[t] !== M[t] 296 | }) ? ["js_error", { 297 | error: M = o, timestamp: e.timeStamp, breadcrumbs: t && t.map(L) || [] 298 | }] : void 0 299 | }], [0, function (t, n) { 300 | 301 | var r = l(t, 4), e = r[0], o = r[1], i = r[2], u = r[3], t = b(i), r = h(n, "resourceError"), n = r.ignoreUrls, r = r.includeUrls; 302 | if (!(r && !y(i, r) || y(i, n))) return ["resource_error", p(p({ 303 | type: e 304 | }, t), { 305 | url: i, timing: u, timestamp: o 306 | })] 307 | }], [4, function (t) { 308 | 309 | t = l(t, 2); 310 | return ["pageview", { 311 | pid: t[0], source: t[1] 312 | }] 313 | }], [5, function (t) { 314 | 315 | t = l(t, 1)[0]; 316 | return ["performance_timing", { 317 | timing: performance.timing, navigation_timing: performance.getEntriesByType("navigation")[0], isBounced: t 318 | }] 319 | }], [6, function (t, n) { 320 | 321 | n = n.config.sample; 322 | return !((!n || !n.rules[z]) && Math.random() < .01) && [z, { 323 | type: "perf", longtasks: t 324 | }] 325 | }], [7, function (t, n) { 326 | 327 | var r = l(t, 6), e = r[0], o = r[1], i = r[2], u = r[3], a = r[4], c = r[5], f = (d = e).url || d, s = o || { 328 | }, v = s.method, m = s.headers, t = s.body, r = a || { 329 | }, d = r.headers, o = r.status, s = void 0 === o ? 0 : o, a = r.body, o = h(n, "fetch"), r = o.ignoreUrls, o = o.collectBodyOnError; 330 | if (f.match(/^(https?:|\/)/) && n.m !== f && !y(f, r)) { 331 | 332 | f = b(f), o = o && 400 <= s || void 0, t = o && "" + (e.body || t), a = o && "" + a; 333 | return ["http", { 334 | api: "fetch", request: p(p({ 335 | headers: B(e.headers, m), method: (e.method || v || "get").toLowerCase() 336 | }, f), { 337 | timestamp: i, body: t 338 | }), response: { 339 | status: s, timing: c, timestamp: i + u, is_custom_error: !1, headers: B(d), body: a 340 | }, duration: u 341 | }] 342 | } 343 | }], [8, function (t, n) { 344 | return !H.includes(t.initiatorType) && !y(t.name, h(n, "resource").ignoreUrls) && ["resource", t] 345 | }], [9, function (t) { 346 | 347 | t = l(t, 3); 348 | return ["blank_screen", { 349 | timestamp: t[0], score: t[1], screenshot: t[2] 350 | }] 351 | }]), function (o, t) { 352 | 353 | var n = o.plugin.sample; 354 | return n ? n(o, t) : t && o.s(function (n) { 355 | 356 | var r = new o.$, e = 0; 357 | t.u(function (t) { 358 | e || (o.h("sample", !!o.config.sample)(o, r).u(n), e = 1), r.n(t) 359 | }) 360 | }) 361 | }, function (t, n) { 362 | 363 | var r = e(t); 364 | t.sender = r, n && n.u(r) 365 | }) 366 | }(); 367 | 368 | -------------------------------------------------------------------------------- /facebook/facebook_files/ahHlrk9HMHV.css: -------------------------------------------------------------------------------- 1 | ._9ai5{background-color:#ebedf0;border-radius:50%;height:36px;text-align:center;width:36px}._9ai5:hover{background-color:#dadde1}._9ai5:active{background-color:#bec3c9;transform:scale(.96)}._9ai6{margin-top:8px}#facebook ._9ai7{cursor:pointer;display:block;padding-left:32px;position:relative;text-align:left}._9ai7 input{cursor:pointer;height:0;opacity:0;position:absolute;width:0}._9ai8{border:1px solid #d7dade;border-radius:4px;height:18px;left:0;position:absolute;top:0;width:18px}._9ai7:hover ._9ai8{background-color:#f0f2f5}._9ai7 input:checked~._9ai8{background-color:#1877f2}._9ai8:after{content:'';display:none;position:absolute}._9ai7 input:checked~._9ai8:after{display:block}._9ai7 ._9ai8:after{border:solid #fff;border-width:0 2px 2px 0;height:8px;left:7px;top:3px;transform:rotate(45deg);width:3px}._9ol3{height:56px} 2 | .fbIndex .uiWashLayoutBlueWash{background-color:#c4d2e7}.fbIndex .contentContainer{margin:0 auto 0 auto;width:980px}.fbIndex .bodyWash{margin-bottom:0}.fbIndex .locales{margin:10px auto 0;width:980px}.fbIndex .gradient{background:url(/rsrc.php/v3/yB/r/TwAHgQi2ZPB.png) 0 bottom repeat-x;background:linear-gradient(white, #D3D8E8)}.fbIndex .gradient{min-width:980px}.fbIndex .gradient .gradientContent{margin:0 auto;position:relative;width:980px} 3 | ._8esj{background:#edf0f5}._95k9{background:#f0f2f5;min-width:500px}._8ien{background-color:transparent;overflow:visible;padding:0;width:432px}._8esf._8fgk ._8esl{width:548px}._8esf._8fgk._8ilg ._8esl{width:580px}._8fgk._8idq ._3ixn{background-color:rgba(255, 255, 255, .8)}._8ien ._8idr{position:absolute;right:10px;top:12px;z-index:2}._8esf.gradient{background:#edf0f5}._8icx{padding-top:82px}._8op_{padding-bottom:40px;padding-top:62px}._95ka{padding-bottom:112px;padding-top:72px}._95kb{padding-bottom:132px;padding-top:92px}._8op_._8fgk{padding-bottom:20px}._8fgk._8fgk,._8esj._8fgk,._8fgk.gradient{background:#fff}._8idq._8fgk,._8idq._8esj._8fgk,._8idq._8fgk.gradient{background:transparent}._8esk{margin:0 auto;padding:20px 0;position:relative;width:980px}._8esl{display:inline-block;margin-right:15.999px;vertical-align:top;width:565px}._8esf ._8esl{box-sizing:border-box;margin-right:0;padding-right:32px;width:580px}._8esm{display:inline-block;vertical-align:top;width:399px}._8fgk ._8esm{width:432px}._8esn{display:inline-block;vertical-align:top}#facebook ._8esj ._8eso{color:#333;display:inline-block;font-family:'Freight Sans Bold', Helvetica, Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:normal;line-height:36px;padding:42px 0 24px;text-rendering:optimizelegibility;width:456px}#facebook ._8esj._8esf._8ilg ._8eso{font-size:24px;line-height:32px;padding:60px 0 20px}#facebook ._8esj._8esf._8icx ._8eso{font-size:24px;line-height:32px;padding:0 0 20px}#facebook ._8esj._8esf._8icx ._8icy ._8eso{padding-bottom:12px}#facebook ._8esj._8icx ._8eso{padding-top:0}#facebook ._8icx ._8ice{padding:0 0 24px}#facebook ._8icx._8opv ._8ice{padding:112px 0 16px}#facebook ._95kc._8icx ._8ice{padding:8px 0 16px 0}#facebook ._8esj._8esf ._8eso{color:#1c1e21;font-family:SFProDisplay-Bold, Helvetica, Arial, sans-serif;font-size:32px;font-weight:bold;line-height:38px;width:471px}#facebook ._8esj._8esf._8icx._8opv ._8eso{font-family:SFProDisplay-Regular, Helvetica, Arial, sans-serif;font-size:28px;font-weight:normal;line-height:32px;width:500px}._8icx ._8ilh{height:70px;margin:-20px}._8icx._8opv ._8ilh{height:106px;margin:-28px}._8fgk ._8fgn{align-items:center;border-radius:8px 8px 0 0;box-sizing:border-box;padding:10px 16px;position:relative;width:432px;z-index:1}#facebook ._8esj ._8est{color:#333;font-family:'Freight Sans Bold', Helvetica, Arial, sans-serif;font-size:36px;font-weight:bold;line-height:1.2;margin-bottom:5px}#facebook ._8esj._8esf ._8est{color:#1c1e21;font-family:SFProDisplay-Bold, Helvetica, Arial, sans-serif;font-size:32px;line-height:38px;margin-bottom:0}#facebook ._8esj ._8esu{color:#333;font-family:'Freight Sans', Helvetica, Arial, sans-serif;font-size:19px;line-height:1.26;margin-bottom:20px}#facebook ._8esj._8esf ._8esu{color:#606770;font-family:SFProText-Regular, Helvetica, Arial, sans-serif;font-size:15px;line-height:24px;margin-bottom:12px}#facebook ._8esj._8esf._8esj._8fgk ._8esu{margin-bottom:0}._95ke #pageFooterChildren a,._95ke .localeSelectorList a{color:#8a8d91}._8opy{padding-top:20px}._9bq7{display:inline}._9bq8{background-color:#fff;padding-top:30px}._8esf._8fgk,._8esf._9bpz{padding-top:25px}._8esf._9bq9{padding-top:5px}@media only screen and (max-width: 1075px){._8esk{height:496px;margin:0 40px;width:auto}._8esf ._8esl{width:400px}#facebook ._8esj._8esf._8icx._8opv ._8eso{font-size:24px;line-height:28px;width:auto}._8esn{float:right}#facebook ._8opy #pageFooter{margin:0 40px;width:auto}}@media only screen and (max-width: 900px){._8esk{display:flex;flex-direction:column;text-align:center}._8esf ._8esl{margin:0 auto;padding:0}#facebook ._8icx._8opv ._8ice{padding:0 0 20px 0}#facebook ._8esj._8esf._8icx._8opv ._8eso{padding:0}._8esn{float:none;margin:0 auto}._95ka{padding-bottom:164px;padding-top:20px}._95kb{padding-bottom:80px;padding-top:20px}} 4 | .login_page .title_header{margin:0 0 10px 0;padding:0 0 10px 0}.login_page .title_header h2.no_icon{background:transparent none repeat scroll 0%;margin:0;padding:0}.login_page #loginform{clear:left;margin:auto;padding:15px 0;text-align:left;width:380px}.login_page #signup_area{clear:left;margin:auto;width:380px}.login_page .signup_button{float:left}.login_page .signup_text{float:left;width:200px;margin:0 0 20px 10px}.login_page hr{width:280px;margin-left:0}.login_page #loginform p{line-height:16px;margin:10px 0;text-align:left}.login_page #loginform p.reset_password{margin-bottom:0;padding-bottom:0}.login_page .apinote{margin:10px auto;width:450px;background:#fff}.login_page .apinote h2{font-size:12px;margin-bottom:6px}.login_page .login_form_container .dialog_buttons{background-color:#f5f6f7;border-top:1px solid #ccc;bottom:0;left:0;margin:0;padding:8px 10px;position:absolute;right:0;text-align:right}.login_page .dialog_buttons .logged_in_as{float:left;width:240px;margin-top:3px;text-align:left}.login_page .dialog_buttons .register_link{float:left;text-align:left;margin-top:4px;font-weight:bold}.login_page #email{direction:ltr}.login_page #error{margin-top:20px}div.login_page_interstitial{margin-bottom:0;margin-top:0;width:640px}.login_page .login_message{margin:auto;width:640px}.login_page #booklet #content{float:none;margin-bottom:46px;padding:15px 30px 20px 30px;width:auto}.login_page #booklet #loginform{margin-top:20px;padding-top:0}.login_page #booklet #dialog_buttons input{margin:0}.form_row{padding:0 0 8px 0;text-align:left}.form_row .login_form_label{display:block;float:left;padding:3px 0;width:100px}.form_row input{margin:0}.form_row .inputtext,.inputpassword{width:175px}.form_row .checkbox{float:left;width:15px;margin:5px 4px 2px 0}.persistent{padding:3px 0 3px 100px;text-align:left}#login_button_inline{float:left;margin-bottom:5px;margin-right:5px}#register_link{margin-top:5px;float:left}#buttons{padding:5px 0 0 100px;text-align:left}#buttons .uiButton{margin-right:2px}#buttons label{float:none;width:auto}.reset_password,.not_me_link{padding-left:100px}.reset_password label{float:none;font-weight:normal;width:auto}.reset #content{padding:20px}.login_error_box{margin-top:10px}::-ms-reveal{display:none} 5 | ._6luv{align-items:center;background-color:#fff;border:none;border-radius:8px;box-shadow:0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);box-sizing:border-box;margin:40px 0 0;padding:20px 0 28px;width:396px}._8icy ._6luv{padding-bottom:24px;padding-top:10px}._8iep{height:456px;width:396px}#facebook ._8iep ._8opt{font-family:SFProDisplay-Semibold, Helvetica, Arial, sans-serif;font-size:15px;line-height:20px;padding-bottom:4px;text-align:left}._6lux{display:inline-block;font-size:14px;margin:auto;padding:6px 0;width:302px}._6lux ::-ms-reveal{display:none}._8icy ._6lux{font-size:17px;width:364px}._9aha ._6lux{font-size:17px;width:368px}._6lux ._6luy{font-size:14px;padding:5px 8px;width:284px}._8icy ._6lux ._6luy{font-size:17px;padding:14px 16px;width:330px}._9aha ._6lux ._6luy{font-size:17px;padding:14px 16px;width:334px}._8icy._9ahz ._6lux ._6luy:focus,._9aha ._6lux ._6luy:focus{border-color:#1877f2;box-shadow:0 0 0 2px #e7f3ff;caret-color:#1877f2}._8icy ._6lux ._6luy,._9aha ._6lux ._6luy{border-radius:6px}._6ltg{padding-top:6px}._6lth{font-size:14px;width:252px}._8icy ._6lth{background-color:#1877f2;border:none;border-radius:6px;font-size:20px;line-height:48px;padding:0 16px;width:332px}._8icy._9ah- ._6lth:hover{background-color:#166fe5}._6lti{font-size:14px}._8icy ._6lti{border:none;border-radius:6px;font-size:17px;line-height:48px;padding:0 16px}._6ltj{margin-top:12px}._8icy ._6ltj{margin-top:16px}._8icy ._6ltj a{color:#1877f2;font-size:14px;font-weight:500}._8icy ._8icz{align-items:center;border-bottom:1px solid #dadde1;display:flex;margin:20px 16px;text-align:center}@media only screen and (max-width: 900px){._95kb ._6luv{margin-top:4px}} 6 | ._39il.login_page #loginform{padding:0;text-align:center}._39il.login_page .persistent{padding:18px 0;text-align:center}._97vu{margin:-44px 0 -4px 0;width:240px}._97vy{text-align:center}._97vz ._1w1t{border-radius:8px;box-shadow:0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);margin:auto;padding:0 0 14px 0;width:396px}._97v- ._5466{width:364px}._39il._97v_ ._52e0{background-color:#1877f2;border:none;border-radius:6px;font-size:20px;line-height:48px;padding:0 16px;width:332px}#facebook ._39il._97v_ ._52e0:hover{background-color:#166fe5}._1w1t{margin:auto;padding:22px 108px 26px;width:396px}._41-v ._1w1t{margin-top:88px;padding:22px 8px 26px}._1uxu{margin:auto;width:612px}._39il ._xkt ._82gm{bottom:10px;height:20px;left:10px;position:absolute;width:20px}._39il ._82go{background-color:#fff;border-radius:2px;font-size:14px;width:314px}._39il ._52e0{font-size:14px;width:252px}._xkt{padding:6px 0}._39il ._82gv{color:#606770;font-size:12px;line-height:16px;padding:2px 40px}._16jx{font-size:14px}._97v_ ._16jx{border:none;border-radius:6px;font-size:17px;line-height:48px;padding:0 16px}._xku{padding:18px 0}._85el{padding:18px 0 16px 0}._97w0 ._xku{padding:24px 0 16px 0}._97w0 ._85el{padding:12px 0 18px 0}#facebook ._97w0 ._97w1{font-family:SFProDisplay-Regular, Helvetica, Arial, sans-serif}._9axy._97w0 ._xku{padding-left:16px;padding-right:16px}._9axy._97w0 ._9axz{font-size:25px;font-weight:bold;line-height:28px}._85em{padding-top:6px}._5466{margin:auto}._xkv{padding:6px 0}._97w2 ._xkv{padding:12px 0 18px}._97w3{padding:6px 0}._97w2 ._97w3{padding:10px 0 2px}._97w2 ._85em ._97w3{padding:6px 0 18px}._97w2 ._97w4,._97w2 ._97w5{color:#1877f2;font-size:14px;font-weight:500}._97w2 #not_me_link{color:#1877f2}._97w2 ._97w6{color:#1877f2;font-weight:500}._1rf5{display:block;margin-bottom:10px;margin-left:10.5%;margin-right:10.5%;margin-top:10px;overflow:hidden;text-align:center;white-space:nowrap;width:79%}._97vz ._1rf5{margin-left:8px;margin-right:8px;width:auto}._82qp ._82qq{margin-bottom:16px;margin-top:16px}._1rf5>span{display:inline-block;position:relative}._1rf5>span:before,._1rf5>span:after{background:#ccd0d5;content:'';height:1px;position:absolute;top:50%;width:9999px}._9ax- ._1rf5>span:before,._9ax- ._1rf5>span:after{background:#d7dade}._1rf5>span:before{margin-right:15px;right:100%}._1rf5>span:after{left:100%;margin-left:15px}._1rf8{color:#4b4f56}._9ax- ._1rf8{color:#96999e}._9ax_ ._9ay0{border:1px solid rgba(0, 0, 0, .1)}._9ay1 ._9ay2,._9ay1 ._9ay3{margin:4px 16px 6px 16px}._9ay1 ._9ay2 a,._9ay1 ._9ay3 a{color:#1877f2} 7 | ._58mf{margin:0 auto 0 auto;padding-bottom:30px}._8ien ._58mf{padding-bottom:0}.timelineSignUpDialog ._58mf{padding-bottom:0}._58mf ._6o{font-size:19px}._58mf ._6p{font-size:17px}._2_68{color:#90949c;font-size:16px;font-weight:bold}#facebook ._58mf ._9hk6{-webkit-appearance:none;background-image:url(/rsrc.php/v3/yP/r/Yrq8Y9PlN02.png);background-position:right 5px center;background-repeat:no-repeat;background-size:14px;padding:0 8px;padding-right:20px}#facebook ._58mf ._9hk6._9m5o{background-position:right 7px center;padding-right:8px}#facebook ._8esf ._2_68{color:#606770;font-family:SFProText-Medium, Helvetica, Arial, sans-serif;font-size:12px;font-weight:normal;line-height:20px;margin-bottom:0;margin-top:2px}#facebook ._8esf._9bpz ._2_68{margin-bottom:4px}._58mi{min-width:194px;padding:7px 20px;text-align:center}#facebook ._8esf ._58mi{font-family:SFProDisplay-Bold, Helvetica, Arial, sans-serif!important;font-weight:bold}._8esf ._58mi{background:none;background-color:#00a400;border:none;border-radius:6px;box-shadow:none;color:#fff;font-size:18px;font-weight:600;height:36px;overflow:hidden;padding:0 32px;text-shadow:none}._8f3m ._1lch{text-align:center}._8esf ._58mi:after{content:'';display:inline-block;height:36px;left:0;position:absolute;right:0;top:0;vertical-align:middle}._8esf ._58mi:hover:after{background-color:rgba(115, 129, 150, .15)}#facebook ._8esf ._58mi{font-family:SFProDisplay-Bold, Helvetica, Arial, sans-serif!important;font-weight:bold}#facebook ._8esf ._9bq4{padding:10px 0;position:relative;text-align:center}#facebook ._8esf ._9bq4 ._9bq5{color:#1877f2;font-family:SFProText-Semibold, Helvetica, Arial, sans-serif;font-size:17px;line-height:20px}#facebook ._8esf ._9bq4 ._9bq5:hover{text-decoration:none}._58mj{font-size:16px}._58mk{border-top:1px solid #dddfe2;color:#666;font-size:13px;font-weight:bold;margin-top:10px;padding-top:15px}#facebook ._8esf ._58mk{border-top:none;color:#1c1e21;font-family:SFProText-Regular, Helvetica, Arial, sans-serif;font-size:14px;font-weight:normal;padding-top:0}._8f3m ._58mk{margin-top:42px;text-align:center}._8ilg ._58mk,._8icx ._58mk{margin-top:28px;text-align:center}._8fgk ._8fgl,._9bpz ._8fgl{background-color:#fff;border-radius:0 0 8px 8px;border-top:1px solid #dadde1;box-sizing:border-box;padding:16px;position:relative;width:432px}._8fgk ._8fgl:before,._9bpz ._8fgl:before{background:transparent;border-radius:8px;bottom:0;box-shadow:0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);content:'';left:0;position:absolute;right:0;top:-77px;width:432px;z-index:0}._9l2p:before{pointer-events:none}#facebook ._8esf ._8esh{font-family:SFProText-Semibold, Helvetica, Arial, sans-serif;font-size:14px;font-weight:600}._8f3m ._8esh{color:inherit}._58ml{margin-left:10px;position:relative;top:3px}._58mm{float:left}._58mn{background:#ffebe8;border:1px solid #dd3c10;line-height:15px;margin:12px 0 12px 0;overflow:hidden;text-align:center}._58mo{padding:7px 3px}._2rs6 ._2rs9{font-weight:bold}._2rs6 ._2rsa{min-width:50px}._a4y{display:inline-block;position:relative}._a4y ._a4z{background-color:#fff;border:1px solid #1c1e21;border-radius:6px;box-shadow:0 3px 8px rgba(0, 0, 0, .3);color:#1c1e21;font-size:14px;opacity:0;padding:12px;position:absolute;right:105%;text-align:left;top:-5px;transition:opacity 1s;visibility:hidden;width:200px;z-index:1}._a4y ._a4z::before{border-color:transparent transparent transparent #1c1e21;border-style:solid;border-width:6px;content:' ';left:100%;margin-top:-6px;position:absolute;top:20%}._a4y ._a4z::after{border-color:transparent transparent transparent #fff;border-style:solid;border-width:5px;content:' ';left:100%;margin-top:-5px;position:absolute;top:20%}/*FB_PKG_DELIM*/ 8 | 9 | #bootloader_cq9toiK{height:42px;}.bootloader_cq9toiK{display:block!important;} -------------------------------------------------------------------------------- /facebook/facebook_files/pslzeMSEB_a.js.download: -------------------------------------------------------------------------------- 1 | if (self.CavalryLogger) { CavalryLogger.start_js_script(document.currentScript); }/*FB_PKG_DELIM*/ 2 | 3 | /** 4 | * License: https://www.facebook.com/legal/license/MDzNl_j9yvg/ 5 | */ 6 | __d("javascript-blowfish-1.0.5",[],(function(a,b,c,d,e,f){"use strict";b={};var g={exports:b};function h(){var a=function(b,c){this.key=b,(c==="ecb"||c==="cbc")&&(this.mode=c),this.sBox0=a.sBox0.slice(),this.sBox1=a.sBox1.slice(),this.sBox2=a.sBox2.slice(),this.sBox3=a.sBox3.slice(),this.pArray=a.pArray.slice(),this.generateSubkeys(b)};a.prototype={sBox0:null,sBox1:null,sBox2:null,sBox3:null,pArray:null,key:null,mode:"ecb",iv:"abc12345",keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encrypt:function(a,b){if(this.mode==="ecb")return this.encryptECB(a);if(this.mode==="cbc")return this.encryptCBC(a,b);throw new Error("\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f.")},decrypt:function(a,b){if(this.mode==="ecb")return this.decryptECB(a);if(this.mode==="cbc")return this.decryptCBC(a,b);throw new Error("\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f.")},encryptECB:function(a){a=this.utf8Decode(a);var b=Math.ceil(a.length/8),c="";for(var d=0;d>>24,c=a<<8>>>24,d=a<<16>>>24;a=a<<24>>>24;b=this.addMod32(this.sBox0[b],this.sBox1[c]);b=this.xor(b,this.sBox2[d]);b=this.addMod32(b,this.sBox3[a]);return b},encipher:function(a,b){var c;for(var d=0;d<16;d++)a=this.xor(a,this.pArray[d]),b=this.xor(this.F(a),b),c=a,a=b,b=c;c=a;a=b;b=c;b=this.xor(b,this.pArray[16]);a=this.xor(a,this.pArray[17]);return[a,b]},decipher:function(a,b){var c;a=this.xor(a,this.pArray[17]);b=this.xor(b,this.pArray[16]);c=a;a=b;b=c;for(var d=15;d>=0;d--)c=a,a=b,b=c,b=this.xor(this.F(a),b),a=this.xor(a,this.pArray[d]);return[a,b]},generateSubkeys:function(a){var b=0,c=0,d,e;for(d=0;d<18;d++){for(e=4;e>0;e--)b=this.fixNegative(b<<8|a.charCodeAt(c)),c=(c+1)%a.length;this.pArray[d]=this.xor(this.pArray[d],b);b=0}e=[0,0];for(d=0;d<18;d+=2)e=this.encipher(e[0],e[1]),this.pArray[d]=e[0],this.pArray[d+1]=e[1];for(d=0;d<256;d+=2)e=this.encipher(e[0],e[1]),this.sBox0[d]=e[0],this.sBox0[d+1]=e[1];for(d=0;d<256;d+=2)e=this.encipher(e[0],e[1]),this.sBox1[d]=e[0],this.sBox1[d+1]=e[1];for(d=0;d<256;d+=2)e=this.encipher(e[0],e[1]),this.sBox2[d]=e[0],this.sBox2[d+1]=e[1];for(d=0;d<256;d+=2)e=this.encipher(e[0],e[1]),this.sBox3[d]=e[0],this.sBox3[d+1]=e[1]},block32toNum:function(a){return this.fixNegative(a.charCodeAt(0)<<24|a.charCodeAt(1)<<16|a.charCodeAt(2)<<8|a.charCodeAt(3))},num2block32:function(a){return String.fromCharCode(a>>>24)+String.fromCharCode(a<<8>>>24)+String.fromCharCode(a<<16>>>24)+String.fromCharCode(a<<24>>>24)},xor:function(a,b){return this.fixNegative(a^b)},addMod32:function(a,b){return this.fixNegative(a+b|0)},fixNegative:function(a){return a>>>0},split64by32:function(a){var b=a.substring(0,4);a=a.substring(4,8);return[this.block32toNum(b),this.block32toNum(a)]},utf8Decode:function(a){var b="";for(var c=0;c 127&&d<2048?(b+=String.fromCharCode(d>>6|192),b+=String.fromCharCode(d&63|128)):(b+=String.fromCharCode(d>>12|224),b+=String.fromCharCode(d>>6&63|128),b+=String.fromCharCode(d&63|128))}return b},utf8Encode:function(a){var b="",c=0,d=0,e=0,f;while(c 191&&d<224?(e=a.charCodeAt(c+1),b+=String.fromCharCode((d&31)<<6|e&63),c+=2):(e=a.charCodeAt(c+1),f=a.charCodeAt(c+2),b+=String.fromCharCode((d&15)<<12|(e&63)<<6|f&63),c+=3);return b},base64Encode:function(a){var b="",c,d,e,f,g,h,i=0;while(i >2,c=(c&3)<<4|d>>4,g=(d&15)<<2|e>>6,h=e&63,isNaN(d)?g=h=64:isNaN(e)&&(h=64),b=b+this.keyStr.charAt(f)+this.keyStr.charAt(c)+this.keyStr.charAt(g)+this.keyStr.charAt(h);return b},base64Decode:function(a){var b="",c,d,e,f,g,h=0;a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(h >4,e=(e&15)<<4|f>>2,c=(f&3)<<6|g,b=b+String.fromCharCode(d),f!=64&&(b=b+String.fromCharCode(e)),g!=64&&(b=b+String.fromCharCode(c));return b},trimZeros:function(a){return a.replace(/\0+$/g,"")}};a.pArray=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731];a.sBox0=[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946];a.sBox1=[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055];a.sBox2=[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504];a.sBox3=[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462];g.exports=a}var i=!1;function j(){i||(i=!0,h());return g.exports}function a(a){switch(a){case void 0:return j()}}e.exports=a}),null); 7 | __d("javascript-blowfish",["javascript-blowfish-1.0.5"],(function(a,b,c,d,e,f){e.exports=b("javascript-blowfish-1.0.5")()}),null); -------------------------------------------------------------------------------- /tiktok/index_files/common-monitors.1.0.1.js: -------------------------------------------------------------------------------- 1 | !function(){"use strict";var l=function(){return(l=Object.assign||function(n){for(var t,e=1,r=arguments.length;e ".length;e&&o++<5&&!("html"===(t=function(n){var t,e,r,o,i=n,u=[];if(!i||!i.tagName)return"";u.push(i.tagName.toLowerCase()),i.id&&u.push("#"+i.id);n=i.className;if(n&&s(n))for(t=n.split(/\s+/),o=0;o ")}catch(n){return T}}var j=function(o){function i(t,e){var r;return function(n){u=void 0,n&&r!==n&&e({event:r=n,name:t})}}var u;return[i,function(r){return function(n){var t;try{t=n.target}catch(n){return}var e=t&&t.tagName;e&&("INPUT"===e||"TEXTAREA"===e||t.isContentEditable)&&(u||i("input",r)(n),clearTimeout(u),u=window.setTimeout(function(){u=void 0},o))}}]},R=function(t,e){return function(n){if(e)try{t(n)}catch(n){}}},k=function(e){return function(n){var t;try{t=n.event.target?L(n.event.target):L(n.event)}catch(n){t=" "}0!==t.length&&e({type:"dom",category:"ui."+n.name,message:t})}};function A(n){var t=h(),e=r();t&&e&&("complete"!==e.readyState?t.addEventListener("load",function(){setTimeout(function(){n()},0)},!1):n())}function x(n){var t;"hidden"!==document.visibilityState?(t=function(){"hidden"===document.visibilityState&&(n(),removeEventListener("visibilitychange",t,!0))},addEventListener("visibilitychange",t,!0)):n()}var D=function(t){var e=!1;return[function(n){e||(e=!0,t&&t(n))}]},N=function(n){var t=p(D(n),1)[0];["unload","beforeunload","pagehide"].forEach(function(n){addEventListener(n,t)})};function I(n,t,e){t=null===(n=n.config())||void 0===n?void 0:n.plugins[t];return o(t)?l(l({},e),t):!!t&&e}function O(a){if(a=void 0===a?r():a)return function(n,t){var e=n.maxBreadcrumbs,r=n.onAddBreadcrumb,o=n.onMaxBreadcrumbs,i=n.dom,u=p(j(100),2),n=u[0],u=u[1],e=p(B(e,r,o),2),r=e[0],o=e[1],e=k(o),c=[];i&&(c.push(n("click",R(e,"dom"))),c.push(u(R(e,"dom"))),a.addEventListener("click",c[0]),a.addEventListener("keypress",c[1]));return[r,o,function(){a.removeEventListener("click",c[0]),a.removeEventListener("keypress",c[1])}]}}var B=function(t,e,r){void 0===t&&(t=20),void 0===e&&(e=n),void 0===r&&(r=function(n,t){return n.slice(-t)});var o=[];return[function(){return o},function(n){e(n)&&(n=l(l({},n),{timestamp:n.timestamp||Date.now()}),o=0<=t&&o.length+1>t?r(c(c([],p(o),!1),[n],!1),t):c(c([],p(o),!1),[n],!1))}]},C="breadcrumb",q={maxBreadcrumbs:20,dom:!0};function P(n){var t,e,r;return!function(n){switch(Object.prototype.toString.call(n)){case"[object Error]":case"[object Exception]":case"[object DOMError]":case"[object DOMException]":return 1;default:return n instanceof Error}}(n)?(function(n){if(o(n)){if("function"!=typeof Object.getPrototypeOf)return"[object Object]"===i.toString.call(n);n=Object.getPrototypeOf(n);return n===i||null===n}}(n)||u(n)||s(n))&&(t={message:function(n){try{return s(n)?n:JSON.stringify(n)}catch(n){return"[FAILED_TO_STRINGIFY]:"+String(n)}}(n)}):(r=G,t=(e=n)&&o(e)?r.reduce(function(n,t){return n[t]=e[t],n},{}):e),t}function M(n,t){return n&&t&&n===t}function U(v){if(v=void 0===v?h():v)return function(n,r){var t,e,o=n.ignoreErrors,i=n.onerror,u=n.onunhandledrejection,c=n.dedupe,n=n.captureGlobalAsync,a=m(o),f=[],s=V(),l=function(n,t,e){n=c?s(n):n;r&&n&&(a&&a.test(n.message)||r({ev_type:K,payload:{error:n,breadcrumbs:[],extra:t,react:e}}))};i&&(v.addEventListener("error",t=function(n){return l(H(n))}),f.push(function(){return v.removeEventListener("error",t)})),u&&(v.addEventListener("unhandledrejection",e=function(n){return l(X(n))}),f.push(function(){return v.removeEventListener("unhandledrejection",e)})),n&&f.push(J(l));return[function(n,t,e){return l(F(n),t,e)},function(){f.forEach(function(n){return n()})}]}}var G=["name","message","stack","filename","lineno","colno"],H=function(n){return P(n.error)},X=function(n){var t;try{var e=void 0;if("reason"in n?e=n.reason:"detail"in n&&"reason"in n.detail&&(e=n.detail.reason),e){var r=P(e);return l(l({},r),{name:null!==(t=r&&r.name)&&void 0!==t?t:"UnhandledRejection"})}}catch(n){}},F=function(n){return"[object ErrorEvent]"===Object.prototype.toString.call(n)?H(n):("[object PromiseRejectionEvent]"===Object.prototype.toString.call(n)?X:P)(n)},Y=["EventTarget","Window","Node","ApplicationCache","ChannelMergerNode","EventSource","FileReader","HTMLUnknownElement","IDBDatabase","IDBRequest","IDBTransaction","MessagePort","Notification","SVGElementInstance","Screen","TextTrack","TextTrackCue","TextTrackList","WebSocket","Worker","XMLHttpRequest","XMLHttpRequestEventTarget","XMLHttpRequestUpload"],W=["setTimeout","setInterval","requestAnimationFrame","requestIdleCallback"],z=["onload","onerror","onprogress","onreadystatechange"],$="addEventListener",J=function(t){function i(n){return f(n)?n._w_||(n._w_=function(){try{return(n.handleEvent||n).apply(this,[].map.call(arguments,i))}catch(n){throw e&&t(P(n)),n}}):n}var e=!0;return W.forEach(function(n){return window[n]&&d(window,n,function(r){return function(n){for(var t=[],e=1;e a,.__tw li>.anchorContainer>a{outline:none}.__tw .uiScrollableAreaWithShadow.contentAfter:after{content:none}.__tw li.jewelItemResponded{background:#fff9d7;color:#1d2129}.__tw .jewelLoading{display:block;margin:10px auto}.__tw .uiScrollableAreaContent>.jewelLoading:only-child{margin-bottom:9px}.__tw .jewelFooter .seeMoreCount{display:none;font-weight:600;padding:2px 0 0}.__tw .x_div{position:absolute;right:10px;top:58%;transition:margin-right 250ms;z-index:2}.__tw .jewelItemList{padding:0}.__tw .uiScrollableAreaContent{padding-bottom:1px}.__tw .beeperNub{background-image:url(/rsrc.php/v3/yF/r/UT__Kk2I4Uh.png);background-repeat:no-repeat;background-size:auto;background-position:-213px -251px;height:11px;position:absolute;top:-11px;width:20px}.__tw div.jewelHeader{background-clip:padding-box;background-color:#fff;border-bottom:solid 1px #dddfe2;border-top-left-radius:3px;border-top-right-radius:3px;padding:8px 12px 6px;position:relative;z-index:100}.__tw .jewelHeader h3>a,.__tw .jewelHeader h4>a{color:inherit;text-decoration:none}.__tw .jewelFooter a{background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-top:1px solid #dddfe2;display:block;font-weight:600;padding:8px 12px;position:relative;text-align:center;z-index:100}.__tw .jewelFooter a:hover,.__tw .jewelFooter a:active,.__tw .jewelFooter a:focus{color:#365899;outline:none;text-decoration:underline}.__tw .jewelFooter a:hover .seeMoreCount,.__tw .jewelFooter a:active .seeMoreCount,.__tw .jewelFooter a:focus .seeMoreCount{color:gray}.__tw .jewelItemList{padding:0} 13 | ._cqp{font-size:18px;line-height:22px;padding:18px 0;text-align:center}._cqq{background-color:#fff;padding:22px 108px 26px;text-align:center}._cqq ._cqr{font-size:14px;height:36px;line-height:34px;margin:10px;margin-top:18px;text-align:center;width:150px}._cqs{margin:0 auto;width:612px}.fbx ._cqt#globalContainer{width:100%}._cqu{margin:0 auto;text-align:left;width:981px} 14 | ._30ny{padding:80px 0}._97vt ._30ny{background:#f0f2f5}._30ny .infoRevealReason{font-size:13px;margin:auto;padding:16px 0 20px 0;text-align:left;width:500px} 15 | html ._44mg{padding:6px 0;width:302px}html ._1kbt._1kbt{font-size:14px;padding:5px 8px;width:284px}#facebook ._97v- ._1kbt{border-radius:6px;font-size:17px;padding:14px 16px;width:330px}#facebook ._9ay4{border:1px solid #f02849}._9ay5{position:relative}._9ay6{bottom:16px;position:absolute;right:10px}#facebook ._9npi{background:none;border:0;box-shadow:none;float:left;font-size:17px;padding:0;width:300px}#facebook ._44mg ._9ay7{color:#f02849;font-family:SFProText-Regular, Helvetica, Arial, sans-serif;font-size:13px;line-height:16px;margin-top:8px;text-align:left}._9nyg{border:1px solid #dddfe2;color:#1d2129;height:22px;line-height:16px;vertical-align:middle;width:330px}._9nyh{border-color:#dddfe2;box-shadow:none;caret-color:none}#facebook ._9nyi{border-color:#1877f2;box-shadow:0 0 0 2px #e7f3ff;caret-color:#1877f2}._44mg ._9ay7 a{color:#f02849;font-weight:bold}._9ls7{position:relative}._9ls8{background:url(/rsrc.php/v3/yZ/r/je5FEJkU1_K.png)}._9ls9{background:url(/rsrc.php/v3/yk/r/swFqSxKYa5M.png)}._9lsa{border-radius:50%;bottom:-25px;height:28px;position:absolute;right:-8px;width:28px}._9lsa:hover{background-color:rgba(0, 0, 0, .05)}._9lsa:active{background-color:rgba(0, 0, 0, .15)}._9lsb{bottom:6px;height:16px;position:absolute;right:6px;width:16px} 16 | ._lwx{position:relative} 17 | ._52ju{text-align:left}._52jv{text-align:center}._52jw{text-align:right} 18 | 19 | .uiBoxGray{background-color:#f2f2f2;border:1px solid #ccc}.uiBoxDarkgray{color:#ccc;background-color:#333;border:1px solid #666}.uiBoxGreen{background-color:#d1e6b9;border:1px solid #629824}.uiBoxLightblue{background-color:#edeff4;border:1px solid #d8dfea}.uiBoxRed{background-color:#ffebe8;border:1px solid #dd3c10}.uiBoxWhite{background-color:#fff;border:1px solid #ccc}.uiBoxYellow{background-color:#fff9d7;border:1px solid #e2c822}.uiBoxOverlay{background:rgba(255, 255, 255, .85);border:1px solid #3b5998;border:1px solid rgba(59, 89, 153, .65);zoom:1}.noborder{border:none}.topborder{border-bottom:none;border-left:none;border-right:none}.bottomborder{border-left:none;border-right:none;border-top:none}.dashedborder{border-style:dashed} 20 | .pas{padding:5px}.pa8{padding:8px}.pam{padding:10px}.pa16{padding:16px}.pal{padding:20px}.pts{padding-top:5px}.pt8{padding-top:8px}.ptm{padding-top:10px}.pt16{padding-top:16px}.ptl{padding-top:20px}.prs{padding-right:5px}.pr8{padding-right:8px}.prm{padding-right:10px}.pr16{padding-right:16px}.prl{padding-right:20px}.pbs{padding-bottom:5px}.pb8{padding-bottom:8px}.pbm{padding-bottom:10px}.pb16{padding-bottom:16px}.pbl{padding-bottom:20px}.pls{padding-left:5px}.pl8{padding-left:8px}.plm{padding-left:10px}.pl16{padding-left:16px}.pll{padding-left:20px}.phs{padding-left:5px;padding-right:5px}.ph8{padding-left:8px;padding-right:8px}.phm{padding-left:10px;padding-right:10px}.ph16{padding-left:16px;padding-right:16px}.phl{padding-left:20px;padding-right:20px}.pvs{padding-top:5px;padding-bottom:5px}.pv8{padding-bottom:8px;padding-top:8px}.pvm{padding-top:10px;padding-bottom:10px}.pv16{padding-bottom:16px;padding-top:16px}.pvl{padding-top:20px;padding-bottom:20px}.mas{margin:5px}.ma8{margin:8px}.mam{margin:10px}.ma16{margin:16px}.mal{margin:20px}.mts{margin-top:5px}.mt8{margin-top:8px}.mtm{margin-top:10px}.mt16{margin-top:16px}.mtl{margin-top:20px}.mrs{margin-right:5px}.mr8{margin-right:8px}.mrm{margin-right:10px}.mr16{margin-right:16px}.mrl{margin-right:20px}.mbs{margin-bottom:5px}.mb8{margin-bottom:8px}.mbm{margin-bottom:10px}.mb16{margin-bottom:16px}.mbl{margin-bottom:20px}.mls{margin-left:5px}.ml8{margin-left:8px}.mlm{margin-left:10px}.ml16{margin-left:16px}.mll{margin-left:20px}.mhs{margin-left:5px;margin-right:5px}.mh8{margin-left:8px;margin-right:8px}.mhm{margin-left:10px;margin-right:10px}.mh16{margin-left:16px;margin-right:16px}.mhl{margin-left:20px;margin-right:20px}.mvs{margin-top:5px;margin-bottom:5px}.mv8{margin-bottom:8px;margin-top:8px}.mvm{margin-top:10px;margin-bottom:10px}.mv16{margin-bottom:16px;margin-top:16px}.mvl{margin-top:20px;margin-bottom:20px} 21 | .fss{font-size:9px}.fsm{font-size:12px}.fsl{font-size:14px}.fsxl{font-size:16px}.fsxxl{font-size:18px}.fwn{font-weight:normal}.fwb{font-weight:600}.fcb{color:#333}.fcg{color:#90949c}.fcw{color:#fff} 22 | .uiStickyPlaceholderInput{display:inline-block;position:relative}.uiStickyPlaceholderInput input,.uiStickyPlaceholderInput textarea{background-color:transparent;position:relative}.uiStickyPlaceholderInput .placeholder{color:#999;cursor:text;display:none;height:100%;left:0;padding:4px 0 0 5px;position:absolute;top:0;width:100%}.uiTypeahead .uiStickyPlaceholderInput .placeholder{padding:3px 0 0 4px}div.uiStickyPlaceholderTextarea .placeholder{padding:6px 0 0 6px}div.uiStickyPlaceholderEmptyInput .placeholder{display:block}.uiTypeahead .uiStickyPlaceholderInput{width:100%}.uiClearableTypeahead .selected .uiStickyPlaceholderInput{margin-right:16px} 23 | a._p{display:block} 24 | ._4-u2{border:1px solid #dddfe2;border-radius:3px}._4-u2>._4-u3{border-top:1px solid #e5e5e5}._4-u2>._2f27{border-top:none}._4-u2>._4-u3:first-child{border-top:none;border-top-left-radius:3px;border-top-right-radius:3px}._4-u2>._4-u3:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}._2yq ._4-u2{border-color:transparent;border-left-width:0;border-right-width:0;position:relative}._2yq ._4-u2::before{border:1px solid #dddfe2;border-radius:4px;bottom:-1px;content:'';left:-1px;pointer-events:none;position:absolute;right:-1px;top:-1px} 25 | ._45mq{margin-top:12px}#pagelet_rhc_footer:first-child>._45mq,div:empty+#pagelet_rhc_footer>._45mq{margin-top:0}._26z1{color:#616770;padding:0 12px 2px}._26z1 a{color:inherit}._45mr .img{margin-left:3px;vertical-align:middle} 26 | ._585n{background-color:#3578e5;border:1px solid #3578e5;border-radius:3px;overflow:hidden;padding:0 0 0 40px}._585o{background-color:#fa3e3e;border-color:#fa3e3e}._3qh4{background-color:#42b72a;border-color:#42b72a}._1wpa{background-color:#f79c2d;border-color:#f79c2d}._5d83{background-color:#ccd0d5;border-color:#ccd0d5}._585p{float:left;margin:8px 0 0 -30px}._585r{background:#fff;margin:0;padding:9px 10px}._2i-a{padding-right:30px}._585q{float:right;margin:12px 12px 0 0}._585n a{font-weight:bold} 27 | ._86k6{color:#1c1e21;font-family:SFProText-Regular, Segoe UI, Arial, sans-serif!important;font-size:13px;line-height:16px;white-space:nowrap}@media only screen and (max-width: 768px){._86k6{display:none}} 28 | ._86k9{box-sizing:border-box;display:block;margin-left:auto;margin-right:auto;margin-top:16px;max-width:1200px}._8e0v{padding:32px 0}._8e0w{align-items:flex-start;border-top:1px solid #ccd0d5;display:flex;justify-content:space-between;padding:32px 0}@media only screen and (max-width: 768px){._86k9{padding:16px;width:100%}._8e0v{display:none}} 29 | ._86k7{color:#8d949e;display:inline-block;padding-right:20px;padding-top:0}._86k7 li>a{color:#1c1e21;font-family:SFProText-Semibold, Segoe UI, Arial!important;font-size:13px}._86k8.localeSelectorList.uiList{padding-top:0}@media only screen and (max-width: 768px){._86k7{display:block;margin-bottom:0;max-width:100%;padding-right:0;width:100%}._86k8.localeSelectorList.uiList>li{display:inline-block;font-size:12px;font-weight:bold;padding-left:0;text-align:center;width:50%}._86k8>li>a{color:#8d8b8a;font-weight:normal}._86jz{border:1px solid #365899;border-radius:3px;color:#1479fb;display:block;font-size:large;height:18px;line-height:17px;margin:0 auto;text-align:center;width:18px}} 30 | ._86jx{display:inline-block;font-family:SFProText-Semibold, Segoe UI, Arial!important;font-size:13px;line-height:16px;padding-right:16px}._86jx:last-child{padding-right:0}._86jx>a{color:#1c1e21}@media only screen and (max-device-width: 768px){._86jy{display:none}} 31 | ._4b21{background-color:#fff;height:60px;margin:0 auto;padding-bottom:16px;position:relative;width:980px}@media only screen and (max-width: 500px){._4b21{width:100%}}._40q1{background-color:#fff}._5wct{color:#000;display:inline;font-family:HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:24px;line-height:32px;max-width:900px;position:absolute;top:16px}._4b23{margin-right:12px;margin-top:10px}._2084{display:inline;float:right;font-size:14px;line-height:87px}#facebook ._1m39._1m3f{background:white;border:1px solid #4778ff;color:#4778ff}#facebook ._1m39._1m3f:active{background-color:#f5f6f7} 32 | .Work_UIPage_LoggedOut{background-color:#fff} 33 | ._4ki>li{border-width:0 0 0 1px;display:inline-block}._4kg>li{border-width:1px 0 0 0}._509->li{vertical-align:top}._509_>li{vertical-align:middle}._50a0>li{vertical-align:bottom}.uiList>li:first-child{border-width:0}._4ks>li{border-color:#ebedf0;border-style:solid}._4kt>li{border-color:#ccc;border-style:solid}._4ku>li{border-color:#aaa;border-style:solid}._4of{color:#365899;list-style-type:square;margin-left:12px}._7lda{list-style-type:disc;margin-left:16px}._7lda>._7ldb{text-indent:-2px}._4ki._703>li{padding-left:20px;padding-right:20px}._4ki._704>li{padding-left:5px;padding-right:5px}._4ki._6-j>li{padding-left:10px;padding-right:10px}._4ki._6-i>li{padding-right:0}._4kg._704>li{padding-top:5px;padding-bottom:5px}._4kg._6-j>li{padding-top:10px;padding-bottom:10px}._4kg._703>li{padding-top:20px;padding-bottom:20px}._4kg._6-i>li{padding-bottom:0}._4kg._6-h>li:first-child{padding-top:0}._4kg._6-h>li:last-child{padding-bottom:0}._4ki._6-h>li:first-child{padding-left:0}._4ki._6-h>li:last-child{padding-right:0} 34 | ._50f3{font-size:12px;line-height:16px}._50f4{font-size:14px;line-height:18px}._50f5{font-size:16px;line-height:20px}._50f6{font-size:18px;line-height:22px}._2iei{font-size:40px;line-height:48px}._2iej{font-size:24px;line-height:28px}._2iek{font-size:20px;line-height:24px}._2iel{font-size:16px;line-height:20px}._2iem{font-size:14px;line-height:18px}._2ien{font-size:14px;line-height:18px}._2ieo{font-size:13px;line-height:17px}._2iep{font-size:12px;line-height:16px}._2ieq{font-size:12px;line-height:16px}._50f7{font-weight:600}._5kx5{font-weight:normal}._50f8{color:#90949c}._c24{color:#4b4f56}._50f9{color:#1d2129}._2iev{color:#1c1e21}._2iex{color:#606770}._2iey{color:#bec3c9}._rzx{color:#385898}._rzy{color:#8d949e}._2ier{color:#fff}._1hk0{color:#1877f2}._2iet{color:#00a400}._2ieu{color:#fa383e}._2iez{color:#ccc}._2ie-{color:#4a4a4a}._2ie_{color:#373737}#facebook ._5s6c._5s6c,._5s6c{font-family:Georgia, serif;letter-spacing:normal}#facebook ._6mv-._6mv-,._6mv-{font-family:'Open Dyslexic';letter-spacing:normal}.CometSettingsPage ._2iep,.CometSettingsPage ._2ieq,.CometSettingsPage ._50f4{font-size:15px;line-height:20px}.CometSettingsPage ._50f4{font-weight:500} 35 | ._8tm{padding:0}._2phz{padding:4px}._2ph-{padding:8px}._2ph_{padding:12px}._2pi0{padding:16px}._2pi1{padding:20px}._40c7{padding:24px}._2o1j{padding:36px}._6buq{padding-bottom:0;padding-top:0}._2pi2{padding-bottom:4px;padding-top:4px}._2pi3{padding-bottom:8px;padding-top:8px}._2pi4{padding-bottom:12px;padding-top:12px}._2pi5{padding-bottom:16px;padding-top:16px}._2pi6{padding-bottom:20px;padding-top:20px}._2o1k{padding-bottom:24px;padding-top:24px}._2o1l{padding-bottom:36px;padding-top:36px}._6bua{padding-left:0;padding-right:0}._2pi7{padding-left:4px;padding-right:4px}._2pi8{padding-left:8px;padding-right:8px}._2pi9{padding-left:12px;padding-right:12px}._2pia{padding-left:16px;padding-right:16px}._2pib{padding-left:20px;padding-right:20px}._2o1m{padding-left:24px;padding-right:24px}._2o1n{padding-left:36px;padding-right:36px}._iky{padding-top:0}._2pic{padding-top:4px}._2pid{padding-top:8px}._2pie{padding-top:12px}._2pif{padding-top:16px}._2pig{padding-top:20px}._2owm{padding-top:24px}._div{padding-right:0}._2pih{padding-right:4px}._2pii{padding-right:8px}._2pij{padding-right:12px}._2pik{padding-right:16px}._2pil{padding-right:20px}._31wk{padding-right:24px}._2phb{padding-right:32px}._au-{padding-bottom:0}._2pim{padding-bottom:4px}._2pin{padding-bottom:8px}._2pio{padding-bottom:12px}._2pip{padding-bottom:16px}._2piq{padding-bottom:20px}._2o1p{padding-bottom:24px}._4gao{padding-bottom:32px}._1cvx{padding-left:0}._2pir{padding-left:4px}._2pis{padding-left:8px}._2pit{padding-left:12px}._2piu{padding-left:16px}._2piv{padding-left:20px}._2o1q{padding-left:24px}._2o1r{padding-left:36px} 36 | .sp_tnbg9_DduAu{background-image:url(/rsrc.php/v3/yp/r/B4BHOLqGTZ1.png);background-size:auto;background-repeat:no-repeat;display:inline-block;height:12px;width:12px}.sp_tnbg9_DduAu.sx_3d6769{width:20px;height:20px;background-position:0 0}.sp_tnbg9_DduAu.sx_9aceb2{background-position:0 -190px}.sp_tnbg9_DduAu.sx_4dcf84{background-position:0 -203px}.sp_tnbg9_DduAu.sx_743298{background-position:0 -216px}.sp_tnbg9_DduAu.sx_8e1f2d{background-position:0 -229px}.sp_tnbg9_DduAu.sx_7a4859{background-position:0 -242px}.sp_tnbg9_DduAu.sx_c75d15{width:16px;height:16px;background-position:0 -105px}.sp_tnbg9_DduAu.sx_ef0a47{width:16px;height:16px;background-position:0 -122px}.sp_tnbg9_DduAu.sx_a0ef5d{width:16px;height:16px;background-position:0 -139px}.sp_tnbg9_DduAu.sx_900a82{width:16px;height:16px;background-position:0 -156px}.sp_tnbg9_DduAu.sx_5d56de{width:20px;height:20px;background-position:0 -21px}.sp_tnbg9_DduAu.sx_700d38{width:20px;height:20px;background-position:0 -42px}.sp_tnbg9_DduAu.sx_e0cae2{width:20px;height:20px;background-position:0 -63px}.sp_tnbg9_DduAu.sx_ed4c1a{width:20px;height:20px;background-position:0 -84px}.sp_tnbg9_DduAu.sx_e709a7{width:16px;height:16px;background-position:0 -173px}.sp_tnbg9_DduAu.sx_1af031{width:9px;height:5px;background-position:0 -268px}.sp_tnbg9_DduAu.sx_c008d5{width:5px;height:4px;background-position:-13px -190px}.sp_tnbg9_DduAu.sx_5b8dc8{background-position:0 -255px}/*FB_PKG_DELIM*/ 37 | 38 | #bootloader_rs_j_Ae{height:42px;}.bootloader_rs_j_Ae{display:block!important;} --------------------------------------------------------------------------------