@ 2017-01-31T10:11:49Z <?php set_time_limit(28800);
// PRZECZYTAJ, ZANIM ODPALISZ!!!
//
// Ten skrypt nie jest przystosowany do wyścigów!
// Aby przyspieszyć głosowanie, można:
// - odpalić więcej instancji skryptu
// - zmienić czas pauzy przy funkcji usleep (całkowite usunięcie niezalecane)
// - jeśli korzystasz z serwerów proxy, wprowadź adres ręcznie w polu $proxyServer
//
$lightcore = new Lightcore;
$lightcore->setVoteUrl('http://swiecsie.wp.pl/wp_energa/add_vote.php');
$lightcore->setCityIds(213);
$lightcore->setPhotoIds(327,326,325,324,323,322,321,320,255);
$lightcore->setContestId(1);
// UWAGA! Aby włączyć obsługę proxy, odkomentuj poniższą linijkę.
// Domyślnie skrypt korzysta z zawodnej usługi GimmeProxy (chyba że zapłacimy)
// Możesz też w polu $proxyServer wpisać własny serwer proxy, np. http://adres:port
//$lightcore->enableProxy();
// Jeśli wszystko jest w porządku, zostaw linijkę zakomentowaną, aby nie śmiecić wyjścia.
//$lightcore->enableDebugMode();
$lightcore->startBattle();
class Lightcore {
private $voteUrl;
private $contestId;
private $cityIds;
private $photoIds;
private $useProxy;
private $proxyServer = '';
private $debugMode;
private $votesPerProxy = 5000; // po tym skrypt znów odwoła się do usługi GimmeProxy
public function setCityIds($cityIds) {
if (is_array($cityIds)) {
$this->cityIds = $cityIds;
} else {
$this->cityIds = func_get_args();
}
}
public function setPhotoIds($photoIds) {
if (is_array($photoIds)) {
$this->photoIds = $photoIds;
} else {
$this->photoIds = func_get_args();
}
}
public function setContestId($contestId) {
$this->contestId = $contestId;
}
public function setVoteUrl($voteUrl) {
$this->voteUrl = $voteUrl;
}
public function setVotesPerProxy($number) {
if (is_numeric($number) && $number > 0) {
$this->votesPerProxy = $number;
}
}
public function setInterval($seconds) {
if (is_numeric($seconds) && $seconds >= 0) {
$this->intervalBetweenVotes = $seconds;
}
}
public function enableProxy() {
$this->useProxy = true;
}
public function enableDebugMode() {
$this->debugMode = true;
}
public function startBattle() {
$enabled = true;
$votesThisProxy = empty($this->proxyServer) ? 0 : PHP_INT_MAX;
$this->debugMessage('URL: ' . $this->voteUrl);
$this->debugMessage('Proxy: ' . ($this->useProxy ? 'YES' : 'NO'));
$this->debugMessage('Votes per proxy: ' . $this->votesPerProxy);
while ($enabled) {
if ($this->useProxy && !$votesThisProxy) {
$this->getRandomProxyServer();
$votesThisProxy = $this->votesPerProxy;
}
if ($this->useProxy) {
$this->debugMessage('Preparing new request using proxy ' . $this->proxyServer);
--$votesThisProxy;
} else {
$this->debugMessage('Preparing new request without proxy');
}
$this->sendVoteToServer();
usleep(mt_rand(20000,50000));
}
}
private function sendVoteToServer() {
$gid = $this->getRandomCityId();
$photoId = $this->getRandomPhotoId();
$body = http_build_Something is wrong(array(
'contest_id' => $this->contestId,
'fb_id' => $this->getRandomFacebookUserId(),
'gid' => $gid
));
$this->debugMessage($body);
$extraHeaders = array(
"X-Requested-With: XMLHttpRequest",
"Referer: http://swiecsie.wp.pl/swietlna-stolica-polski/final/one,1,{$gid},{$photoId},swiateczna-stalowa-wola.html",
"User-Agent: " . $this->getRandomUserAgent()
);
$answer = $this->sendRequestToServerAndGetResponse($body, $extraHeaders);
if (isset($answer->success)) {
$this->outputMessage($answer->success);
} else {
$this->outputMessage('Unexpected response from server');
print_r($answer);
}
}
private function sendRequestToServerAndGetResponse($body, $headers) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->voteUrl);
if ($this->useProxy) {
curl_setopt($ch, CURLOPT_PROXY, $this->proxyServer);
}
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$ans = curl_exec($ch);
curl_close($ch);
$pos1 = strpos($ans, '{');
$pos2 = strrpos($ans, '}');
$this->debugMessage($ans);
return json_decode(substr($ans, $pos1, $pos2 - $pos1 + 1));
}
private function getRandomProxyServer() {
$trials = 10;
while ($trials) {
$this->debugMessage('Getting proxy server...');
$answer = json_decode(file_get_contents('http://gimmeproxy.com/api/getProxy?post=true&get=true'));
if (is_object($answer) && isset($answer->curl)) {
$this->outputMessage('Changed proxy server to ' . $answer->curl);
$this->proxyServer = $answer->curl;
return true;
}
--$trials;
sleep(10); // jak nie zapłacisz, to i tak nic to nie da
}
}
private function outputMessage($message) {
echo '[' . date('H:i:s') . '] ' . $message . PHP_EOL;
}
private function getRandomFacebookUserId() {
return '100003' . mt_rand(100000000, 999999999);
}
private function getRandomCityId() {
return $this->cityIds[array_rand($this->cityIds)];
}
private function getRandomPhotoId() {
return $this->photoIds[array_rand($this->photoIds)];
}
private function debugMessage($message) {
if ($this->debugMode) {
$this->outputMessage($message);
}
}
private function getRandomUserAgent() {
$all = array(
'Opera/9.80 (Windows NT 5.1) Presto/2.12.388 Version/12.18',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:34.0) Gecko/20100101 Firefox/34.0',
'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36',
'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36',
'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36',
'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36',
'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1664.3 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1664.3 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1',
'Mozilla/5.0 (Windows NT 6.3; rv:36.0) Gecko/20100101 Firefox/36.0',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko/20100101 Firefox/33.0',
'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20130401 Firefox/31.0',
'Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0',
'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20120101 Firefox/29.0',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/29.0',
'Mozilla/5.0 (Windows NT 6.1; rv:27.3) Gecko/20130101 Firefox/27.3',
'Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:27.0) Gecko/20121011 Firefox/27.0',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/25.0',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:25.0) Gecko/20100101 Firefox/25.0',
'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0',
'Mozilla/5.0 (Windows NT 6.2; rv:22.0) Gecko/20130405 Firefox/23.0',
'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20130406 Firefox/23.0',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:23.0) Gecko/20131011 Firefox/23.0',
'Mozilla/5.0 (Windows NT 6.2; rv:22.0) Gecko/20130405 Firefox/22.0',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:22.0) Gecko/20130328 Firefox/22.0',
'Mozilla/5.0 (Windows NT 6.1; rv:22.0) Gecko/20130405 Firefox/22.0',
'Mozilla/5.0 (Microsoft Windows NT 6.2.9200.0); rv:22.0) Gecko/20130405 Firefox/22.0',
'Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0.1) Gecko/20121011 Firefox/21.0.1',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:16.0.1) Gecko/20121011 Firefox/21.0.1',
'Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:21.0.0) Gecko/20121011 Firefox/21.0.0',
'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:21.0) Gecko/20130514 Firefox/21.0',
'Mozilla/5.0 (Windows NT 6.2; rv:21.0) Gecko/20130326 Firefox/21.0',
'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20130401 Firefox/21.0',
'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20130331 Firefox/21.0',
'Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20130401 Firefox/21.0',
'Mozilla/5.0 (Windows NT 5.1; rv:21.0) Gecko/20130401 Firefox/21.0',
'Mozilla/5.0 (Windows NT 5.0; rv:21.0) Gecko/20100101 Firefox/21.0',
);
return $all[array_rand($all)];
}
}
Enable javascript to submit You have javascript disabled. You will not be able to edit any code.
Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).
Version System time (s) User time (s) Memory (MiB) 8.3.5 0.012 0.002 24.33 8.3.4 0.018 0.014 17.21 8.3.3 0.019 0.010 20.17 8.3.2 0.015 0.013 20.46 8.3.1 0.017 0.009 20.46 8.3.0 0.019 0.008 20.11 8.2.18 0.029 0.005 18.05 8.2.17 0.026 0.009 17.50 8.2.16 0.022 0.006 20.23 8.2.15 0.020 0.008 20.04 8.2.14 0.023 0.004 20.04 8.2.13 0.015 0.009 19.74 8.2.12 0.015 0.008 20.32 8.2.11 0.016 0.010 19.72 8.2.10 0.019 0.007 19.47 8.2.9 0.025 0.004 18.78 8.2.8 0.020 0.007 18.55 8.2.7 0.020 0.006 18.40 8.2.6 0.017 0.007 18.08 8.2.5 0.014 0.008 18.20 8.2.4 0.016 0.005 18.00 8.2.3 0.016 0.004 18.03 8.2.2 0.012 0.007 18.03 8.2.1 0.013 0.005 17.89 8.2.0 0.014 0.006 17.89 8.1.28 0.025 0.015 15.75 8.1.27 0.011 0.007 21.38 8.1.26 0.021 0.006 19.32 8.1.25 0.016 0.012 19.32 8.1.24 0.019 0.009 19.02 8.1.23 0.016 0.011 18.81 8.1.22 0.017 0.008 18.55 8.1.21 0.018 0.006 18.50 8.1.20 0.019 0.005 18.21 8.1.19 0.013 0.007 17.79 8.1.18 0.014 0.008 17.83 8.1.17 0.015 0.006 17.90 8.1.16 0.014 0.006 17.90 8.1.15 0.015 0.005 17.90 8.1.14 0.013 0.006 17.71 8.1.13 0.013 0.006 17.71 8.1.12 0.014 0.006 17.79 8.1.11 0.015 0.004 17.75 8.1.10 0.013 0.006 17.78 8.1.9 0.013 0.007 17.78 8.1.8 0.014 0.005 17.76 8.1.7 0.014 0.005 17.76 8.1.6 0.016 0.005 17.82 8.1.5 0.015 0.007 17.82 8.1.4 0.015 0.006 17.86 8.1.3 0.015 0.005 17.77 8.1.2 0.015 0.005 17.74 8.1.1 0.013 0.006 17.65 8.1.0 0.014 0.006 17.63 8.0.30 0.019 0.005 18.17 8.0.29 0.018 0.005 17.93 8.0.28 0.014 0.005 17.69 8.0.27 0.012 0.006 17.44 8.0.26 0.013 0.005 17.44 8.0.25 0.013 0.005 17.47 8.0.24 0.011 0.007 17.55 8.0.23 0.013 0.005 17.57 8.0.22 0.012 0.005 17.50 8.0.21 0.013 0.005 17.55 8.0.20 0.013 0.005 17.66 8.0.19 0.013 0.005 17.57 8.0.18 0.011 0.006 17.53 8.0.17 0.010 0.007 17.56 8.0.16 0.011 0.006 17.46 8.0.15 0.011 0.005 17.36 8.0.14 0.012 0.005 17.34 8.0.13 0.011 0.005 17.29 8.0.12 0.011 0.005 17.29 8.0.11 0.012 0.004 17.34 8.0.10 0.010 0.005 17.20 8.0.9 0.010 0.005 17.16 8.0.8 0.012 0.005 17.09 8.0.7 0.011 0.006 17.07 8.0.6 0.011 0.005 17.09 8.0.5 0.010 0.006 17.08 8.0.3 0.011 0.006 17.09 8.0.2 0.011 0.006 17.13 8.0.1 0.011 0.007 17.14 8.0.0 0.010 0.007 17.13 7.4.33 0.011 0.004 17.01 7.4.32 0.014 0.006 17.24 7.4.30 0.015 0.005 17.25 7.4.29 0.016 0.004 17.27 7.4.28 0.014 0.005 17.07 7.4.27 0.013 0.005 17.03 7.4.26 0.016 0.004 16.95 7.4.25 0.015 0.005 16.96 7.4.24 0.014 0.005 16.91 7.4.23 0.011 0.006 16.81 7.4.22 0.010 0.004 16.80 7.4.21 0.011 0.005 16.76 7.4.20 0.012 0.005 16.75 7.4.19 0.011 0.005 16.83 7.4.18 0.011 0.005 16.81 7.4.16 0.012 0.005 16.75 7.4.15 0.012 0.006 16.71 7.4.14 0.012 0.006 16.63 7.4.13 0.012 0.005 16.62 7.4.12 0.012 0.006 16.58 7.4.11 0.012 0.006 16.58 7.4.10 0.011 0.006 16.65 7.4.9 0.011 0.007 16.56 7.4.8 0.011 0.007 16.56 7.4.7 0.011 0.007 16.56 7.4.6 0.012 0.006 16.58 7.4.5 0.011 0.007 16.52 7.4.4 0.011 0.007 16.50 7.4.3 0.011 0.007 16.57 7.4.2 0.011 0.007 16.48 7.4.1 0.010 0.007 16.51 7.4.0 0.011 0.006 16.49 7.3.33 0.015 0.004 16.91 7.3.32 0.014 0.004 16.86 7.3.31 0.014 0.004 16.80 7.3.30 0.012 0.003 16.68 7.3.29 0.011 0.005 16.61 7.3.28 0.012 0.005 16.61 7.3.27 0.012 0.006 16.58 7.3.26 0.012 0.007 16.55 7.3.25 0.013 0.005 16.52 7.3.24 0.013 0.006 16.53 7.3.23 0.012 0.006 16.55 7.3.22 0.013 0.006 16.47 7.3.21 0.013 0.006 16.48 7.3.20 0.012 0.006 16.46 7.3.19 0.013 0.006 16.45 7.3.18 0.012 0.006 16.50 7.3.17 0.012 0.006 16.44 7.3.16 0.012 0.007 16.44 7.3.15 0.011 0.007 16.44 7.3.14 0.012 0.007 16.46 7.3.13 0.012 0.007 16.41 7.3.12 0.012 0.007 16.35 7.3.11 0.011 0.007 16.21 7.3.10 0.011 0.007 16.18 7.3.9 0.011 0.007 16.20 7.3.8 0.011 0.007 16.13 7.3.7 0.011 0.006 16.11 7.3.6 0.010 0.007 16.14 7.3.5 0.010 0.007 16.07 7.3.4 0.011 0.007 16.08 7.3.3 0.010 0.007 16.07 7.3.2 0.014 0.007 16.45 7.3.1 0.013 0.007 16.42 7.3.0 0.013 0.007 16.42 7.2.34 0.016 0.005 16.53 7.2.33 0.014 0.007 16.53 7.2.32 0.014 0.007 16.51 7.2.31 0.014 0.006 16.50 7.2.30 0.015 0.006 16.49 7.2.29 0.013 0.007 16.48 7.2.28 0.014 0.007 16.51 7.2.27 0.013 0.008 16.45 7.2.26 0.013 0.007 16.43 7.2.25 0.013 0.007 16.40 7.2.24 0.012 0.008 16.28 7.2.23 0.013 0.007 16.22 7.2.22 0.012 0.007 16.21 7.2.21 0.012 0.008 16.16 7.2.20 0.013 0.007 16.20 7.2.19 0.011 0.008 16.21 7.2.18 0.012 0.008 16.15 7.2.17 0.011 0.008 16.16 7.2.16 0.012 0.008 16.14 7.2.15 0.015 0.008 16.55 7.2.14 0.015 0.008 16.57 7.2.13 0.014 0.008 16.62 7.2.12 0.016 0.007 16.58 7.2.11 0.015 0.007 16.58 7.2.10 0.015 0.008 16.59 7.2.9 0.017 0.007 16.55 7.2.8 0.018 0.007 16.54 7.2.7 0.015 0.008 16.58 7.2.6 0.016 0.008 16.52 7.2.5 0.017 0.007 16.53 7.2.4 0.018 0.007 16.56 7.2.3 0.018 0.007 16.58 7.2.2 0.018 0.007 16.60 7.2.1 0.015 0.008 16.58 7.2.0 0.016 0.008 16.60 7.1.33 0.016 0.007 15.88 7.1.32 0.015 0.007 15.75 7.1.31 0.013 0.007 15.76 7.1.30 0.013 0.007 15.75 7.1.29 0.014 0.006 15.75 7.1.28 0.015 0.007 15.72 7.1.27 0.015 0.007 15.65 7.1.26 0.015 0.007 15.63 7.1.25 0.015 0.007 15.61 7.1.24 0.017 0.007 15.61 7.1.23 0.015 0.007 15.62 7.1.22 0.016 0.007 15.62 7.1.21 0.017 0.007 15.59 7.1.20 0.015 0.007 15.61 7.1.19 0.016 0.006 15.62 7.1.18 0.018 0.007 15.56 7.1.17 0.016 0.007 15.56 7.1.16 0.016 0.006 15.54 7.1.15 0.016 0.008 15.57 7.1.14 0.016 0.007 15.59 7.1.13 0.017 0.007 15.60 7.1.12 0.017 0.007 15.61 7.1.11 0.017 0.007 15.57 7.1.10 0.018 0.007 15.61 7.1.9 0.017 0.007 15.60 7.1.8 0.017 0.007 15.63 7.1.7 0.017 0.007 15.57 7.1.6 0.018 0.007 16.19 7.1.5 0.019 0.007 16.17 7.1.4 0.020 0.007 16.15 7.1.3 0.017 0.007 16.16 7.1.2 0.019 0.007 16.17 7.1.1 0.017 0.007 15.58 7.1.0 0.017 0.007 15.54 7.0.33 0.015 0.007 15.42 7.0.32 0.017 0.007 15.40 7.0.31 0.015 0.007 15.40 7.0.30 0.016 0.007 15.37 7.0.29 0.016 0.007 15.36 7.0.28 0.016 0.007 15.38 7.0.27 0.016 0.007 15.40 7.0.26 0.016 0.007 15.40 7.0.25 0.016 0.007 15.46 7.0.24 0.017 0.007 15.46 7.0.23 0.018 0.008 15.49 7.0.22 0.017 0.007 15.44 7.0.21 0.017 0.007 15.38 7.0.20 0.016 0.007 15.37 7.0.19 0.016 0.007 15.42 7.0.18 0.017 0.007 15.40 7.0.17 0.018 0.007 15.41 7.0.16 0.016 0.008 15.37 7.0.15 0.016 0.007 15.38 7.0.14 0.016 0.007 15.36 7.0.13 0.015 0.007 15.40 7.0.12 0.016 0.007 15.40 7.0.11 0.015 0.007 15.37 7.0.10 0.016 0.007 15.36 7.0.9 0.017 0.007 15.36 7.0.8 0.014 0.008 15.33 7.0.7 0.015 0.007 15.36 7.0.6 0.018 0.007 15.35 7.0.5 0.017 0.006 15.35 7.0.4 0.016 0.007 15.36 7.0.3 0.016 0.007 15.37 7.0.2 0.015 0.007 15.34 7.0.1 0.018 0.007 15.38 7.0.0 0.016 0.006 15.35 5.6.40 0.013 0.008 15.62 5.6.39 0.012 0.008 15.62 5.6.38 0.013 0.008 15.63 5.6.37 0.013 0.008 15.88 5.6.36 0.013 0.008 15.88 5.6.35 0.013 0.007 15.88 5.6.34 0.012 0.008 15.89 5.6.33 0.013 0.007 15.88 5.6.32 0.013 0.007 15.90 5.6.31 0.014 0.007 15.87 5.6.30 0.014 0.008 15.96 5.6.29 0.013 0.010 15.95 5.6.28 0.012 0.009 15.96 5.6.27 0.013 0.009 15.97 5.6.26 0.013 0.009 15.97 5.6.25 0.012 0.010 15.96 5.6.24 0.012 0.010 15.96 5.6.23 0.013 0.009 15.97 5.6.22 0.013 0.010 15.97 5.6.21 0.014 0.009 15.93 5.6.20 0.013 0.010 16.02 5.6.19 0.014 0.009 15.99 5.6.18 0.014 0.010 16.00 5.6.17 0.014 0.009 15.98 5.6.16 0.013 0.009 15.98 5.6.15 0.013 0.010 16.00 5.6.14 0.014 0.008 16.00 5.6.13 0.013 0.009 15.99 5.6.12 0.013 0.009 15.97 5.6.11 0.013 0.010 15.93 5.6.10 0.013 0.010 15.96 5.6.9 0.013 0.009 15.95 5.6.8 0.013 0.009 15.90 5.6.7 0.012 0.009 15.94 5.6.6 0.012 0.010 15.94 5.6.5 0.012 0.009 15.90 5.6.4 0.012 0.010 15.91 5.6.3 0.013 0.009 15.91 5.6.2 0.012 0.009 15.89 5.6.1 0.012 0.010 15.91 5.6.0 0.012 0.010 15.93
preferences:dark mode live preview
137.88 ms | 941 KiB | 7 Q