3v4l.org

run code in 300+ PHP versions simultaneously
<?php include("config.php"); if (get_magic_quotes_gpc()) { $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST); while (list($key, $val) = each($process)) { foreach ($val as $k => $v) { unset($process[$key][$k]); if (is_array($v)) { $process[$key][stripslashes($k)] = $v; $process[] = &$process[$key][stripslashes($k)]; } else { $process[$key][stripslashes($k)] = stripslashes($v); } } } unset($process); } $sql=mysql_query("SELECT * FROM `settings`") or die(mysql_error()); $settings=array(); while($line=mysql_fetch_assoc($sql)) { $settings[$line['setting']]=stripslashes($line['value']); } $settings['mailadress']=$settings['mailadress']; $servermail=$settings['mailadress']; $systemmail=$settings['mailadress']; $systemmailofferte=$settings['mailadress']; $systemmailorder=$settings['mailadress']; $mailname=$settings['mailname']; $cookiepath='/'; $cookiedomain=$site_url; date_default_timezone_set('Europe/Amsterdam'); setlocale(LC_ALL, 'nl_NL'); setlocale(LC_NUMERIC,""); $errmessg=''; $messg=''; if(is_file('./classes_files/config.php')){ include('./classes_files/config.php'); } $verzendkosten=$settings['shippingcosts']; $verzendkosten_rembours=$settings['costs_rembours']; $home = "home"; $homeId = "1"; $basistitle = $site_url; $basismeta = $site_url; function get_page_id() { global $basistitle,$site_url; $url_string = $_SERVER['REQUEST_URI']; if(strpos($url_string,"?")) $url_string=substr($url_string,0,strpos($url_string,"?")); $basestring = ""; $url_string = str_replace( $basestring, '', $url_string ); $substring = explode( '/', $url_string ); $i = 0; $next_id = 0; foreach( $substring as $title ) { if($title != '') { $i++; $query = "select Id, volg, url from pagina where url = '" . strtolower(addslashes($title)) . "' AND volg = '" . $next_id . "' LIMIT 0,1"; $sql = mysql_query($query) or die ( mysql_error() ); $aantal = mysql_num_rows($sql); if ( $aantal > 0 ) { $line = mysql_fetch_assoc( $sql ); $next_id = $line['Id']; } else { $query="SELECT redirect.volg,redirect.url,redirect.id_nieuw,pagina.title FROM `redirect`,pagina WHERE redirect.id_nieuw=pagina.Id AND `redirect`.`url`='".strtolower(addslashes($title))."' AND `redirect`.volg = '" . $next_id . "'"; $sql_redirect=mysql_query($query) or die (mysql_error()); if(mysql_num_rows($sql_redirect) > 0) { $row_redirect=mysql_fetch_assoc($sql_redirect); $new_id=$row_redirect['id_nieuw']; $location=id2url($new_id); header("Location: $site_url/301.php"); exit; }else{ header("Location: $site_url/404.php"); exit; } } } } return $next_id; } function get_cats($basisID=0) { $cat_array=array(); function cat_line($cat_line_id) { $query="SELECT Id,product FROM pagina WHERE volg='".$cat_line_id."'"; $sql=mysql_query($query); while($row=mysql_fetch_assoc($sql)) { if($row['product']) { return true; }elseif(cat_line($row['Id']) === true) { return true; } } } $sql=mysql_query("SELECT `Id`,`url`,`title`,`picture` FROM `pagina` WHERE `visible`='1' AND `volg`='$basisID' AND `product`='0' ORDER BY `sort`"); while($row=mysql_fetch_assoc($sql)) { if(cat_line($row['Id']) === true) { $cat_array[]=$row; } } return $cat_array; } function secondsToWords($seconds) { $ret = ""; $days = intval(intval($seconds) / (3600*24)); if($days> 0) { $ret .= "$days days "; } $hours = (intval($seconds) / 3600) % 24; if($hours > 0) { $ret .= "$hours hours "; } $minutes = (intval($seconds) / 60) % 60; if($minutes > 0) { $ret .= "$minutes minutes "; } $seconds = intval($seconds) % 60; if ($seconds > 0) { $ret .= "$seconds seconds"; } return $ret; }//print secondsToWords($time); function get_url($pos) { if ( $pos ) { $waardes = explode( "/", $_SERVER['REQUEST_URI'] ); if(strstr($waardes[$pos],'?')) { return ""; } else { return strtolower($waardes[$pos]); } } else { $error = "Geen waarde opgegeven"; return $error; } } function last_url() { $waardes = explode( "/", $_SERVER['REQUEST_URI'] ); foreach( $waardes as $key => $value ){ $laatste = $value; $last_key = $key; } if ( $laatste == "" ) { $nr = $last_key-1; $result = $waardes[$nr]; } else { $result = $laatste; } return $result; } function mkurl($input) { global $errmessg; $site_url = $input; $lettertekens=array('ü'=>'ue', 'ö'=>'oe', 'ä'=>'ae', 'ü'=>'ue', 'ë'=>'e', 'ï'=>'i', 'ÿ'=>'y', 'ij'=>'ij', 'ß'=>'ss', 'í'=>'i', 'é'=>'e', 'á'=>'a', 'ó'=>'o', 'ú'=>'u', 'ì'=>'i', 'è'=>'e', 'à'=>'a', 'ù'=>'u', 'ã'=>'a', 'õ'=>'o', 'ê'=>'e', 'â'=>'a', 'ô'=>'o', 'û'=>'u', 'ç'=>'c', 'æ'=>'ae', '&'=>'+' ); foreach($lettertekens as $origineel=>$nieuw) { $site_url=str_replace($origineel,$nieuw,$site_url); } $site_url = strtolower(trim($site_url)); $site_url = str_replace("%20", " ", $site_url); $site_url = str_replace(" ", "-", $site_url); $site_url = eregi_replace("[^-[:alnum:] +]","",$site_url); $site_url = eregi_replace("-+", "-", $site_url); return $site_url; } function check_img($img, $i) { $imagearray = getimagesize($img); if($i==1) { return $imagearray[0]; } elseif($i==2) { return $imagearray[1]; } } function is_valid_email_address($email){ $no_ws_ctl = "[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]"; $alpha = "[\\x41-\\x5a\\x61-\\x7a]"; $digit = "[\\x30-\\x39]"; $cr = "\\x0d"; $lf = "\\x0a"; $crlf = "($cr$lf)"; $obs_char = "[\\x00-\\x09\\x0b\\x0c\\x0e-\\x7f]"; $obs_text = "($lf*$cr*($obs_char$lf*$cr*)*)"; $text = "([\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f]|$obs_text)"; $obs_qp = "(\\x5c[\\x00-\\x7f])"; $quoted_pair = "(\\x5c$text|$obs_qp)"; $wsp = "[\\x20\\x09]"; $obs_fws = "($wsp+($crlf$wsp+)*)"; $fws = "((($wsp*$crlf)?$wsp+)|$obs_fws)"; $ctext = "($no_ws_ctl|[\\x21-\\x27\\x2A-\\x5b\\x5d-\\x7e])"; $ccontent = "($ctext|$quoted_pair)"; $comment = "(\\x28($fws?$ccontent)*$fws?\\x29)"; $cfws = "(($fws?$comment)*($fws?$comment|$fws))"; $cfws = "$fws*"; $atext = "($alpha|$digit|[\\x21\\x23-\\x27\\x2a\\x2b\\x2d\\x2f\\x3d\\x3f\\x5e\\x5f\\x60\\x7b-\\x7e])"; $atom = "($cfws?$atext+$cfws?)"; $qtext = "($no_ws_ctl|[\\x21\\x23-\\x5b\\x5d-\\x7e])"; $qcontent = "($qtext|$quoted_pair)"; $quoted_string = "($cfws?\\x22($fws?$qcontent)*$fws?\\x22$cfws?)"; $word = "($atom|$quoted_string)"; $obs_local_part = "($word(\\x2e$word)*)"; $obs_domain = "($atom(\\x2e$atom)*)"; $dot_atom_text = "($atext+(\\x2e$atext+)*)"; $dot_atom = "($cfws?$dot_atom_text$cfws?)"; $dtext = "($no_ws_ctl|[\\x21-\\x5a\\x5e-\\x7e])"; $dcontent = "($dtext|$quoted_pair)"; $domain_literal = "($cfws?\\x5b($fws?$dcontent)*$fws?\\x5d$cfws?)"; $local_part = "($dot_atom|$quoted_string|$obs_local_part)"; $domain = "($dot_atom|$domain_literal|$obs_domain)"; $addr_spec = "($local_part\\x40$domain)"; $done = 0; while(!$done){ $new = preg_replace("!$comment!", '', $email); if (strlen($new) == strlen($email)){ $done = 1; } $email = $new; } return preg_match("!^$addr_spec$!", $email) ? 1 : 0; } function id2url($paginaid){ $i=0; $zoek_url=''; while ($paginaid != 0 && $i<100) { $i++; $query1 = "SELECT `url`, `id`, `volg` FROM `pagina` WHERE `id` = '".$paginaid."' LIMIT 0,1"; $result1 = mysql_query($query1) or die (mysql_error()); while($row1 = mysql_fetch_array($result1)) { $zoek_url = $row1["url"] . "/" . $zoek_url; $paginaid = $row1["volg"]; } } return $zoek_url; } function url2id($url_string='') { global $site_url; if($url_string == '') { $url_string = $_SERVER['REQUEST_URI']; } if(substr($url_string,0,7) == 'http://') $basestring=$site_url; else $basestring = "/"; $substring1 = str_replace( $basestring, '/', $url_string ); if(strpos($substring1,'?')) $substring1 = substr($substring1,0,strpos($substring1,'?')); $substring = explode( '/', $substring1 ); $i = 0; $next_id = 0; foreach( $substring as $title ) { if($title != '') { $query = "SELECT id, volg, url from pagina where url = '".strtolower(addslashes($title))."' AND volg = '".$next_id."' LIMIT 0,1"; $sql = mysql_query($query) or die ( mysql_error() ); $aantal = mysql_num_rows($sql); if ( $aantal > 0 ) { $line = mysql_fetch_assoc($sql); $next_id = $line['id']; } else { return false; } } } return $next_id; } function discount($art_url) { $discount=0; $url_array=explode('/',$art_url); $i=count($url_array)-2; while($i>=0) { $werk_url=''; $c=$i; while($c>=0) { if($url_array[$c] != '') $werk_url=$url_array[$c].'/'.$werk_url; $c--; } $pagina_id=url2id('/'.$werk_url); $query="SELECT `discount` FROM `pagina` WHERE `id`='".$pagina_id."' LIMIT 0,1"; $sql=mysql_query($query); $line_pagina=mysql_fetch_assoc($sql); if(mysql_num_rows($sql) > 0) { if($line_pagina['discount'] > 0) { $discount=$line_pagina['discount']; break 1; } } $i--; } return $discount; } function clean_pages() { global $errmessg,$realpath; $sql=mysql_query("SELECT `id`,`product_id`,`product`,`volg`,`title`,`url` FROM `pagina`") or die(mysql_error()); $pages=array(); while($line = mysql_fetch_assoc($sql)) { $pages[$line['id']]=$line; } $sql=mysql_query("SELECT `id`,`picture` FROM `producten`") or die(mysql_error()); $producten=array(); while($line = mysql_fetch_assoc($sql)) { $producten[$line['id']]=$line; } $update_producten=false; $update_pages=false; foreach($pages as $page) { if($page['product'] == 0) { mysql_query("UPDATE `pagina` SET `product_id`='0' WHERE `id`='".$page['id']."'"); } if(!array_key_exists($page['volg'],$pages) && $page['volg']!= 0) { $query="DELETE FROM `pagina` WHERE `id`='".$page['id']."'"; $errmessg.='Verwijderen van pagina: '.$page['title'].'<br />'; mysql_query($query) or die(mysql_error()); $update_pages=true; } } foreach($producten as $product_line) { $found=false; $productid=$product_line['id']; foreach($pages as $page_line) { if($page_line['product_id'] == $productid && $page_line['product']=='1') { $found=true; } } if($found === false) { if($product_line['picture'] != '') { $pictures=explode(',',$product_line['picture']); foreach($pictures as $picture_line) { $image=$realpath.'images/product-module/'.$picture_line; $errmessg.='picture in database :'.$image.'<br />'; if(is_file($image)) { $errmessg.='picture verwijderd :'.$image.'<br />'; } $image=''; } } $query="DELETE FROM `producten` WHERE `id`='".$productid."'"; mysql_query($query) or die(mysql_error()); $errmessg.='Verwijderen van product '.$productid.'<br />'; $update_producten=true; } } if($update_pages) mysql_query("OPTIMIZE TABLE `pagina`"); if($update_producten) mysql_query("OPTIMIZE TABLE `producten`"); if($update_pages || $update_producten) return true; else return false; } function html2txt($document){ $search = array('@<script[^>]*?>.*?</script>@si', '@<[\\/\\!]*?[^<>]*?>@si', '@<style[^>]*?>.*?</style>@siU', '@<![\\s\\S]*?--[ \\t\\n\\r]*>@' ); $text = preg_replace($search, '', $document); return $text; } if( !function_exists('apache_request_headers') ) { function apache_request_headers() { $arh = array(); $rx_http = '/\AHTTP_/'; foreach($_SERVER as $key => $val) { if( preg_match($rx_http, $key) ) { $arh_key = preg_replace($rx_http, '', $key); $rx_matches = array(); $rx_matches = explode('_', $arh_key); if( count($rx_matches) > 0 and strlen($arh_key) > 2 ) { foreach($rx_matches as $ak_key => $ak_val) $rx_matches[$ak_key] = ucfirst($ak_val); $arh_key = implode('-', $rx_matches); } $arh[$arh_key] = $val; } } return( $arh ); } } function emptyImage($picture) { if ($picture == '') { return NO_IMAGE; } } function getpicture($db_pictures, $nbr = 1) { $pictures = array(); if ($db_pictures != '') { $db_picture = explode(',', $db_pictures); } for ($i=0;$i<$nbr;$i++){ if (is_file(IMAGE_PRODUCT_DIR . $pictures[$i])) { $pictures[$i] = $db_picture[$i]; } else { $pictures[$i] = GEEN_picture; } } return $pictures; } function smart_trim($text, $max_len, $trim_middle = false, $trim_chars = '...') { $text = trim($text); if (strlen($text) < $max_len) { return $text; } elseif ($trim_middle) { $hasSpace = strpos($text, ' '); if (!$hasSpace) { $first_half = substr($text, 0, $max_len / 2); $last_half = substr($text, -($max_len - strlen($first_half))); } else { $last_half = substr($text, -($max_len / 2)); $last_half = trim($last_half); $last_space = strrpos($last_half, ' '); if (!($last_space === false)) { $last_half = substr($last_half, $last_space + 1); } $first_half = substr($text, 0, $max_len - strlen($last_half)); $first_half = trim($first_half); if (substr($text, $max_len - strlen($last_half), 1) == ' ') { $first_space = $max_len - strlen($last_half); } else { $first_space = strrpos($first_half, ' '); } if (!($first_space === false)) { $first_half = substr($text, 0, $first_space); } } return $first_half.$trim_chars.$last_half; } else { $trimmed_text = substr($text, 0, $max_len); $trimmed_text = trim($trimmed_text); if (substr($text, $max_len, 1) == ' ') { $last_space = $max_len; } else { $last_space = strrpos($trimmed_text, ' '); } if (!($last_space === false)) { $trimmed_text = substr($trimmed_text, 0, $last_space); } return remove_trailing_punctuation($trimmed_text).$trim_chars; } } function remove_trailing_punctuation($text) { return preg_replace("'[^a-zA-Z_0-9]+$'s", '', $text); } function xmlspecialchars($text) { return str_replace('&#039;', '&apos;', htmlspecialchars($text, ENT_QUOTES)); } ?> NOWDOC; $new = preg_replace('/mysql_([a-zA-Z_]+)\(/', 'mysqli_$1($GLOBALS[\'link\'], ', $old); $new = str_replace('mysqli_connect($GLOBALS[\'link\'], ', 'mysqli_connect(', $new); $new = str_replace(', )', ')', $new); echo $new;

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).

VersionSystem time (s)User time (s)Memory (MiB)
8.3.60.0060.00918.68
8.3.50.0110.01021.99
8.3.40.0120.00319.04
8.3.30.0060.01019.34
8.3.20.0080.00020.59
8.3.10.0080.00021.96
8.3.00.0030.00622.48
8.2.180.0140.00717.00
8.2.170.0110.00722.96
8.2.160.0040.01120.60
8.2.150.0080.00024.18
8.2.140.0080.00024.66
8.2.130.0190.00026.16
8.2.120.0100.00017.75
8.2.110.0070.00322.10
8.2.100.0060.00619.57
8.2.90.0000.00819.32
8.2.80.0000.00918.05
8.2.70.0030.00617.63
8.2.60.0090.00018.15
8.2.50.0060.00318.07
8.2.40.0040.00418.47
8.2.30.0040.00718.24
8.2.20.0030.00617.93
8.2.10.0050.00317.94
8.2.00.0000.00817.94
8.1.280.0100.00725.92
8.1.270.0030.00622.25
8.1.260.0000.00826.35
8.1.250.0080.00028.09
8.1.240.0060.00323.97
8.1.230.0090.00319.34
8.1.220.0000.00818.02
8.1.210.0000.00818.77
8.1.200.0030.00617.61
8.1.190.0060.00317.54
8.1.180.0080.00018.10
8.1.170.0000.00918.75
8.1.160.0000.00822.32
8.1.150.0040.00418.83
8.1.140.0000.00817.51
8.1.130.0000.00818.11
8.1.120.0050.00317.71
8.1.110.0060.00317.67
8.1.100.0040.00417.66
8.1.90.0050.00617.58
8.1.80.0040.00417.68
8.1.70.0000.00817.55
8.1.60.0050.00517.74
8.1.50.0000.00817.67
8.1.40.0040.00417.71
8.1.30.0000.00817.76
8.1.20.0080.00017.93
8.1.10.0050.00317.73
8.1.00.0000.00817.82
8.0.300.0000.00818.77
8.0.290.0080.00017.53
8.0.280.0040.00418.84
8.0.270.0040.00417.46
8.0.260.0070.00017.09
8.0.250.0000.00717.32
8.0.240.0070.00317.24
8.0.230.0070.00017.41
8.0.220.0000.00817.29
8.0.210.0070.00017.25
8.0.200.0050.00317.34
8.0.190.0030.00517.37
8.0.180.0030.00517.19
8.0.170.0030.00617.21
8.0.160.0040.00417.16
8.0.150.0040.00417.22
8.0.140.0000.00817.21
8.0.130.0060.00013.74
8.0.120.0040.00417.29
8.0.110.0060.00317.36
8.0.100.0080.00017.16
8.0.90.0040.00417.29
8.0.80.0060.01917.22
8.0.70.0080.00017.30
8.0.60.0000.00917.29
8.0.50.0040.00417.09
8.0.30.0090.01117.51
8.0.20.0050.01517.50
8.0.10.0030.00617.30
8.0.00.0120.01516.99
7.4.330.0030.00315.13
7.4.320.0040.00416.85
7.4.300.0040.00416.88
7.4.290.0040.00416.86
7.4.280.0000.00716.77
7.4.270.0040.00416.71
7.4.260.0000.00816.86
7.4.250.0080.00016.84
7.4.240.0010.00616.84
7.4.230.0000.00716.68
7.4.220.0150.00316.80
7.4.210.0040.01216.85
7.4.200.0040.00416.88
7.4.190.0000.00716.75
7.4.160.0070.01016.63
7.4.150.0090.01017.40
7.4.140.0100.01017.86
7.4.130.0110.00816.81
7.4.120.0110.01016.94
7.4.110.0040.01416.67
7.4.100.0100.01316.75
7.4.90.0110.00816.78
7.4.80.0030.01819.39
7.4.70.0180.00016.91
7.4.60.0060.01416.56
7.4.50.0030.00316.85
7.4.40.0100.00722.77
7.4.30.0060.01216.85
7.4.00.0070.00915.31
7.3.330.0000.00713.62
7.3.320.0000.00613.60
7.3.310.0000.00816.54
7.3.300.0040.00416.50
7.3.290.0120.00916.67
7.3.280.0090.00816.65
7.3.270.0070.01017.40
7.3.260.0070.01116.55
7.3.250.0070.01116.73
7.3.240.0060.01316.58
7.3.230.0090.00916.78
7.3.210.0090.00916.72
7.3.200.0160.00819.39
7.3.190.0060.01216.56
7.3.180.0140.00416.64
7.3.170.0080.00816.63
7.3.160.0060.01816.75
7.3.120.0080.00915.04
7.3.110.0060.01215.20
7.3.100.0030.01615.05
7.3.90.0070.01015.02
7.3.80.0060.01015.20
7.3.70.0070.00715.20
7.3.60.0100.00615.08
7.3.50.0070.00714.88
7.3.40.0030.01315.12
7.3.30.0000.00915.09
7.3.20.0130.00316.59
7.3.10.0090.00916.67
7.3.00.0000.01416.43
7.2.330.0160.01016.85
7.2.320.0140.00316.84
7.2.310.0100.01316.91
7.2.300.0160.00616.85
7.2.290.0100.01616.58
7.2.250.0100.00715.46
7.2.240.0070.01415.42
7.2.230.0030.01615.19
7.2.220.0070.00715.36
7.2.210.0030.01315.04
7.2.200.0060.00615.28
7.2.190.0090.00915.34
7.2.180.0080.00815.29
7.2.170.0100.01015.35
7.2.60.0250.00416.55
7.2.00.0070.00719.42
7.1.330.0000.01215.54
7.1.320.0030.01015.73
7.1.310.0070.01015.90
7.1.300.0040.00815.69
7.1.290.0100.00615.88
7.1.280.0000.01515.82
7.1.270.0120.00615.78
7.1.260.0070.01015.53
7.1.200.0000.01515.91
7.1.100.0040.00718.24
7.1.70.0040.01417.17
7.1.60.0100.01419.82
7.1.50.0110.01417.00
7.1.00.0030.07722.33
7.0.200.0060.00616.79
7.0.140.0030.07021.96
7.0.110.0130.05020.23
7.0.100.0130.06320.36
7.0.90.0030.09020.16
7.0.80.0000.09320.22
7.0.70.0070.08020.29
7.0.60.0200.08020.17
7.0.50.0130.07020.25
7.0.40.0130.07719.79
7.0.30.0030.08319.80
7.0.20.0130.08019.78
7.0.10.0070.07319.72
7.0.00.0070.05019.79
5.6.280.0070.07021.28
5.6.260.0070.08020.83
5.6.250.0130.07720.84
5.6.240.0100.07721.01
5.6.230.0100.08320.71
5.6.220.0130.03720.76
5.6.210.0100.07020.54
5.6.200.0100.07720.81
5.6.190.0100.04020.74
5.6.180.0130.08020.77
5.6.170.0000.07720.84
5.6.160.0100.06721.00
5.6.150.0230.06720.76
5.6.140.0070.06020.71
5.6.130.0070.04020.80
5.6.120.0030.04320.79
5.6.110.0030.04320.73
5.6.100.0030.04320.84
5.6.90.0030.03720.69
5.6.80.0030.07020.18
5.6.70.0130.03720.14
5.6.60.0030.05020.22
5.6.50.0170.05320.17
5.6.40.0000.05320.07
5.6.30.0030.04720.13
5.6.20.0030.04720.15
5.6.10.0100.04020.16
5.6.00.0030.03719.96
5.5.380.0000.05317.79
5.5.370.0200.06717.86
5.5.360.0000.05317.75
5.5.350.0130.07317.87
5.5.340.0070.04318.16
5.5.330.0100.08017.98
5.5.320.0030.09018.09
5.5.310.0170.07718.28
5.5.300.0030.04318.29
5.5.290.0100.03718.25
5.5.280.0000.04318.25
5.5.270.0070.03718.18
5.5.260.0000.04318.28
5.5.250.0000.04318.03
5.5.240.0000.05317.68
5.5.230.0030.06317.63
5.5.220.0130.07017.54
5.5.210.0070.07317.69
5.5.200.0070.04717.61
5.5.190.0100.07317.44
5.5.180.0070.03717.56
5.5.160.0030.03717.64
5.5.150.0070.04017.41
5.5.140.0030.03717.59
5.5.130.0000.03317.53
5.5.120.0070.03317.60
5.5.110.0070.03017.63
5.5.100.0070.04717.32
5.5.90.0100.03317.46
5.5.80.0070.03317.23
5.5.70.0070.04717.55
5.5.60.0000.04017.55
5.5.50.0000.04017.42
5.5.40.0070.03317.37
5.5.30.0000.04017.45
5.5.20.0030.04017.55
5.5.10.0070.03317.52
5.5.00.0030.04017.22
5.4.450.0070.04319.67
5.4.440.0030.04019.39
5.4.430.0070.03019.38
5.4.420.0070.03719.43
5.4.410.0070.03319.25
5.4.400.0100.03019.27
5.4.390.0070.05019.27
5.4.380.0030.03719.43
5.4.370.0070.06019.25
5.4.360.0030.08319.15
5.4.350.0030.04019.27
5.4.340.0000.04319.34
5.4.320.0030.05019.06
5.4.310.0000.03719.06
5.4.300.0000.03719.33
5.4.290.0030.03719.24
5.4.280.0000.04319.02
5.4.270.0070.06019.25
5.4.260.0070.03319.18
5.4.250.0030.03719.25
5.4.240.0030.03719.18
5.4.230.0030.03719.03
5.4.220.0130.02719.42
5.4.210.0000.04019.05
5.4.200.0030.04019.08
5.4.190.0030.03719.24
5.4.180.0070.03719.14
5.4.170.0000.03319.33
5.4.160.0030.05319.42
5.4.150.0030.03319.21
5.4.140.0000.03716.66
5.4.130.0000.05016.57
5.4.120.0000.03716.44
5.4.110.0070.07716.49
5.4.100.0070.05716.48
5.4.90.0130.05716.63
5.4.80.0100.07016.61
5.4.70.0100.07016.64
5.4.60.0130.06016.55
5.4.50.0070.04716.45
5.4.40.0070.07716.63
5.4.30.0100.06716.59
5.4.20.0000.04016.45
5.4.10.0030.05716.63
5.4.00.0100.06315.85
5.3.290.0000.04314.73
5.3.280.0000.04014.76
5.3.270.0100.04714.82
5.3.260.0030.03314.82
5.3.250.0030.03014.95
5.3.240.0070.03314.80
5.3.230.0030.03714.76
5.3.220.0000.03714.75
5.3.210.0030.03315.00
5.3.200.0070.07314.86
5.3.190.0100.06714.75
5.3.180.0070.06014.77
5.3.170.0030.05314.74
5.3.160.0130.07314.79
5.3.150.0030.05014.85
5.3.140.0000.07314.62
5.3.130.0030.04714.86
5.3.120.0070.04314.79
5.3.110.0000.08014.88
5.3.100.0070.06314.55
5.3.90.0030.04714.55
5.3.80.0000.04314.55
5.3.70.0000.03714.55
5.3.60.0100.07014.55
5.3.50.0030.08014.55
5.3.40.0030.08314.55
5.3.30.0100.07014.55
5.3.20.0000.07314.55
5.3.10.0030.05714.55
5.3.00.0100.07314.55

preferences:
35.6 ms | 401 KiB | 5 Q