3v4l.org

run code in 300+ PHP versions simultaneously
<?php function MD($string){ $a = "67452301"; $b = "EFCDAB89"; $c = "98BADCFE"; $d = "10325476"; $words = init($string); for($i = 0; $i <= count($words)/16-1; $i++){ $A = $a; $B = $b; $C = $c; $D = $d; /* ROUND 1 */ FF ($A, $B, $C, $D, $words[0 + ($i * 16)], 7, "d76aa478"); FF ($D, $A, $B, $C, $words[1 + ($i * 16)], 12, "e8c7b756"); FF ($C, $D, $A, $B, $words[2 + ($i * 16)], 17, "242070db"); FF ($B, $C, $D, $A, $words[3 + ($i * 16)], 22, "c1bdceee"); FF ($A, $B, $C, $D, $words[4 + ($i * 16)], 7, "f57c0faf"); FF ($D, $A, $B, $C, $words[5 + ($i * 16)], 12, "4787c62a"); FF ($C, $D, $A, $B, $words[6 + ($i * 16)], 17, "a8304613"); FF ($B, $C, $D, $A, $words[7 + ($i * 16)], 22, "fd469501"); FF ($A, $B, $C, $D, $words[8 + ($i * 16)], 7, "698098d8"); FF ($D, $A, $B, $C, $words[9 + ($i * 16)], 12, "8b44f7af"); FF ($C, $D, $A, $B, $words[10 + ($i * 16)], 17, "ffff5bb1"); FF ($B, $C, $D, $A, $words[11 + ($i * 16)], 22, "895cd7be"); FF ($A, $B, $C, $D, $words[12 + ($i * 16)], 7, "6b901122"); FF ($D, $A, $B, $C, $words[13 + ($i * 16)], 12, "fd987193"); FF ($C, $D, $A, $B, $words[14 + ($i * 16)], 17, "a679438e"); FF ($B, $C, $D, $A, $words[15 + ($i * 16)], 22, "49b40821"); /* ROUND 2 */ GG ($A, $B, $C, $D, $words[1 + ($i * 16)], 5, "f61e2562"); GG ($D, $A, $B, $C, $words[6 + ($i * 16)], 9, "c040b340"); GG ($C, $D, $A, $B, $words[11 + ($i * 16)], 14, "265e5a51"); GG ($B, $C, $D, $A, $words[0 + ($i * 16)], 20, "e9b6c7aa"); GG ($A, $B, $C, $D, $words[5 + ($i * 16)], 5, "d62f105d"); GG ($D, $A, $B, $C, $words[10 + ($i * 16)], 9, "02441453"); GG ($C, $D, $A, $B, $words[15 + ($i * 16)], 14, "d8a1e681"); GG ($B, $C, $D, $A, $words[4 + ($i * 16)], 20, "e7d3fbc8"); GG ($A, $B, $C, $D, $words[9 + ($i * 16)], 5, "21e1cde6"); GG ($D, $A, $B, $C, $words[14 + ($i * 16)], 9, "c33707d6"); GG ($C, $D, $A, $B, $words[3 + ($i * 16)], 14, "f4d50d87"); GG ($B, $C, $D, $A, $words[8 + ($i * 16)], 20, "455a14ed"); GG ($A, $B, $C, $D, $words[13 + ($i * 16)], 5, "a9e3e905"); GG ($D, $A, $B, $C, $words[2 + ($i * 16)], 9, "fcefa3f8"); GG ($C, $D, $A, $B, $words[7 + ($i * 16)], 14, "676f02d9"); GG ($B, $C, $D, $A, $words[12 + ($i * 16)], 20, "8d2a4c8a"); /* ROUND 3 */ HH ($A, $B, $C, $D, $words[5 + ($i * 16)], 4, "fffa3942"); HH ($D, $A, $B, $C, $words[8 + ($i * 16)], 11, "8771f681"); HH ($C, $D, $A, $B, $words[11 + ($i * 16)], 16, "6d9d6122"); HH ($B, $C, $D, $A, $words[14 + ($i * 16)], 23, "fde5380c"); HH ($A, $B, $C, $D, $words[1 + ($i * 16)], 4, "a4beea44"); HH ($D, $A, $B, $C, $words[4 + ($i * 16)], 11, "4bdecfa9"); HH ($C, $D, $A, $B, $words[7 + ($i * 16)], 16, "f6bb4b60"); HH ($B, $C, $D, $A, $words[10 + ($i * 16)], 23, "bebfbc70"); HH ($A, $B, $C, $D, $words[13 + ($i * 16)], 4, "289b7ec6"); HH ($D, $A, $B, $C, $words[0 + ($i * 16)], 11, "eaa127fa"); HH ($C, $D, $A, $B, $words[3 + ($i * 16)], 16, "d4ef3085"); HH ($B, $C, $D, $A, $words[6 + ($i * 16)], 23, "04881d05"); HH ($A, $B, $C, $D, $words[9 + ($i * 16)], 4, "d9d4d039"); HH ($D, $A, $B, $C, $words[12 + ($i * 16)], 11, "e6db99e5"); HH ($C, $D, $A, $B, $words[15 + ($i * 16)], 16, "1fa27cf8"); HH ($B, $C, $D, $A, $words[2 + ($i * 16)], 23, "c4ac5665"); /* ROUND 4 */ II ($A, $B, $C, $D, $words[0 + ($i * 16)], 6, "f4292244"); II ($D, $A, $B, $C, $words[7 + ($i * 16)], 10, "432aff97"); II ($C, $D, $A, $B, $words[14 + ($i * 16)], 15, "ab9423a7"); II ($B, $C, $D, $A, $words[5 + ($i * 16)], 21, "fc93a039"); II ($A, $B, $C, $D, $words[12 + ($i * 16)], 6, "655b59c3"); II ($D, $A, $B, $C, $words[3 + ($i * 16)], 10, "8f0ccc92"); II ($C, $D, $A, $B, $words[10 + ($i * 16)], 15, "ffeff47d"); II ($B, $C, $D, $A, $words[1 + ($i * 16)], 21, "85845dd1"); II ($A, $B, $C, $D, $words[8 + ($i * 16)], 6, "6fa87e4f"); II ($D, $A, $B, $C, $words[15 + ($i * 16)], 10, "fe2ce6e0"); II ($C, $D, $A, $B, $words[6 + ($i * 16)], 15, "a3014314"); II ($B, $C, $D, $A, $words[13 + ($i * 16)], 21, "4e0811a1"); II ($A, $B, $C, $D, $words[4 + ($i * 16)], 6, "f7537e82"); II ($D, $A, $B, $C, $words[11 + ($i * 16)], 10, "bd3af235"); II ($C, $D, $A, $B, $words[2 + ($i * 16)], 15, "2ad7d2bb"); II ($B, $C, $D, $A, $words[9 + ($i * 16)], 21, "eb86d391"); addVars($a, $b, $c, $d, $A, $B, $C, $D); } $MD5 = $a.$b.$c.$d; return $MD5; } /* General functions */ function hexbin($str){ $hexbinmap = array("0" => "0000" , "1" => "0001" , "2" => "0010" , "3" => "0011" , "4" => "0100" , "5" => "0101" , "6" => "0110" , "7" => "0111" , "8" => "1000" , "9" => "1001" , "A" => "1010" , "a" => "1010" , "B" => "1011" , "b" => "1011" , "C" => "1100" , "c" => "1100" , "D" => "1101" , "d" => "1101" , "E" => "1110" , "e" => "1110" , "F" => "1111" , "f" => "1111"); $bin = ""; for ($i = 0; $i < strlen($str); $i++) { $bin .= $hexbinmap[$str[$i]]; } $bin = ltrim($bin, '0'); // echo "Original: ".$str." New: ".$bin."<br />"; return $bin; } function strhex($str){ $hex = ""; for ($i = 0; $i < strlen($str); $i++) { $hex = $hex.dechex(ord($str[$i])); } return $hex; } /* MD5-specific functions */ function init($string){ $len = strlen($string); $hex = strhex($string); // convert ascii string to hex $bin = hexbin($hex); // convert hex string to bin $padded = pad($bin); $padded = pad($padded, 1, $len); $block = str_split($padded, 32); return $block; } function pad($bin, $type=0, $len = 0){ if($type == 0){ $bin = $bin."1"; $buff = strlen($bin) % 512; if($buff != 448){ while(strlen($bin) % 512 != 448){ $bin = $bin."0"; } } } // append length (b) of string to latter 64 bits elseif($type == 1){ $bLen = decbin($len); if(strlen($bLen) > 64){ $words = truncate64($bLen); $bin .= $words[1].$words[0]; } else{ while(strlen($bLen) < 64){ $bLen .= "0"; } $words = str_split ($bLen, 32); $bin .= $words[1].$words[0]; } } return $bin; } function truncate64($string){ $trunc = substr($string, strlen($string) - 64, 64); $trunc = str_split ($trunc, 32); return $trunc; } /* MD5 base functions */ function F($X, $Y, $Z){ $X = hexbin($X); $Y = hexbin($Y); $Z = hexbin($Z); $calc = ($X & $Y) | ((~ $X) & $Z); // X AND Y OR NOT X AND Z $calc = bindec($calc); return $calc; } function G($X, $Y, $Z){ $X = hexbin($X); $Y = hexbin($Y); $Z = hexbin($Z); $calc = ($X & $Z) | ($Y & (~ $Z)) ; // X AND Z OR Y AND NOT Z $calc = bindec($calc); return $calc; } function H($X, $Y, $Z){ $X = hexbin($X); $Y = hexbin($Y); $Z = hexbin($Z); $calc = $X ^ $Y ^ $Z; // X XOR Y XOR Z $calc = bindec($calc); return $calc; } function I($X, $Y, $Z){ $X = hexbin($X); $Y = hexbin($Y); $Z = hexbin($Z); $calc = $Y ^ ($X | (~ $Z)) ; // Y XOR (X OR NOT Z) $calc = bindec($calc); return $calc; } /* MD5 round functions */ /* $A - hex, $B - hex, $C - hex, $D - hex (F - dec) $M - binary $s - decimal $t - hex */ function FF(&$A, $B, $C, $D, $M, $s, $t){ $A = hexdec($A); $t = hexdec($t); $M = bindec($M); $A = hexdec($B) + (($A + F($B, $C, $D) + $M + $t)); //decimal $A = rotate($A, $s); } function GG(&$A, $B, $C, $D, $M, $s, $t){ $A = hexdec($A); $t = hexdec($t); $M = bindec($M); $A = hexdec($B) + (($A + G($B, $C, $D) + $M + $t)); //decimal $A = rotate($A, $s); } function HH(&$A, $B, $C, $D, $M, $s, $t){ $A = hexdec($A); $t = hexdec($t); $M = bindec($M); $A = hexdec($B) + (($A + H($B, $C, $D) + $M + $t)); //decimal $A = rotate($A, $s); } function II(&$A, $B, $C, $D, $M, $s, $t){ $A = hexdec($A); $t = hexdec($t); $M = bindec($M); $A = hexdec($B) + (($A + I($B, $C, $D) + $M + $t)); //decimal $A = rotate($A, $s); } // shift function rotate($decimal, $bits) { //returns hex $binary = decbin($decimal); $shifted = substr($binary, $bits).substr($binary, 0, $bits); $hexshift = base_convert($shifted, 2, 16); return $hexshift; } function addVars(&$a, &$b, &$c, &$d, $A, $B, $C, $D){ $A = hexdec($A); $B = hexdec($B); $C = hexdec($C); $D = hexdec($D); $aa = hexdec($a); $bb = hexdec($b); $cc = hexdec($c); $dd = hexdec($d); $aa = $aa + $A; $bb = $bb + $A; $cc = $cc + $A; $dd = $dd + $A; $a = dechex($aa); $b = dechex($bb); $c = dechex($cc); $d = dechex($dd); } print MD('324');

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.70.0100.00618.55
8.3.60.0120.00318.43
8.3.50.0110.01021.99
8.3.40.0140.00718.96
8.3.30.0130.00618.92
8.3.20.0030.00618.90
8.3.10.0080.00021.08
8.3.00.0050.00323.70
8.2.180.0070.01016.88
8.2.170.0040.01222.96
8.2.160.0120.00320.60
8.2.150.0060.00324.18
8.2.140.0060.01324.66
8.2.130.0040.00426.16
8.2.120.0080.00021.05
8.2.110.0100.00020.77
8.2.100.0030.01018.28
8.2.90.0030.00619.65
8.2.80.0040.00417.97
8.2.70.0030.00617.88
8.2.60.0080.00018.30
8.2.50.0060.00618.07
8.2.40.0000.00818.59
8.2.30.0060.00619.71
8.2.20.0060.00317.95
8.2.10.0040.00418.05
8.2.00.0030.00518.09
8.1.280.0090.00625.92
8.1.270.0040.00423.99
8.1.260.0080.00026.35
8.1.250.0040.00428.09
8.1.240.0100.00022.59
8.1.230.0030.00921.10
8.1.220.0080.00018.77
8.1.210.0080.00019.21
8.1.200.0050.00517.61
8.1.190.0040.00417.43
8.1.180.0080.00018.10
8.1.170.0090.00318.72
8.1.160.0000.00819.01
8.1.150.0090.00018.85
8.1.140.0060.00317.68
8.1.130.0000.00718.05
8.1.120.0000.00817.66
8.1.110.0040.00417.64
8.1.100.0000.00817.63
8.1.90.0030.00617.59
8.1.80.0000.00817.70
8.1.70.0040.00417.58
8.1.60.0030.00617.78
8.1.50.0000.01017.57
8.1.40.0030.00517.66
8.1.30.0030.00517.86
8.1.20.0040.00417.84
8.1.10.0030.00617.72
8.1.00.0030.00717.73
8.0.300.0060.00320.23
8.0.290.0030.00617.30
8.0.280.0000.00818.65
8.0.270.0040.00417.55
8.0.260.0030.00616.98
8.0.250.0000.00817.26
8.0.240.0040.00417.14
8.0.230.0000.00717.22
8.0.220.0030.00517.16
8.0.210.0040.00417.21
8.0.200.0070.00017.13
8.0.190.0000.00917.13
8.0.180.0050.00417.13
8.0.170.0040.00417.16
8.0.160.0040.00417.23
8.0.150.0040.00417.19
8.0.140.0060.00317.11
8.0.130.0000.00713.70
8.0.120.0090.00017.03
8.0.110.0050.00316.98
8.0.100.0000.00817.18
8.0.90.0040.00417.26
8.0.80.0000.01717.18
8.0.70.0000.00916.99
8.0.60.0050.00317.08
8.0.50.0030.00617.21
8.0.30.0120.01017.16
8.0.20.0110.00917.40
8.0.10.0000.00917.17
8.0.00.0070.01217.12
7.4.330.0030.00316.67
7.4.320.0050.00316.73
7.4.300.0000.00716.84
7.4.290.0040.00416.72
7.4.280.0050.00516.66
7.4.270.0060.00316.74
7.4.260.0070.00013.57
7.4.250.0080.00016.78
7.4.240.0080.00016.74
7.4.230.0040.00416.63
7.4.220.0150.00916.82
7.4.210.0080.01116.73
7.4.200.0050.00316.71
7.4.190.0050.00216.70
7.4.160.0060.01216.80
7.4.150.0180.00317.40
7.4.140.0070.01217.86
7.4.130.0130.00816.76
7.4.120.0080.01216.69
7.4.110.0120.00916.73
7.4.100.0150.00916.75
7.4.90.0060.01616.91
7.4.80.0120.00619.39
7.4.70.0040.01416.74
7.4.60.0110.00816.87
7.4.50.0090.00016.89
7.4.40.0120.00622.77
7.4.30.0060.01416.83
7.4.00.0070.00915.21
7.3.330.0000.00513.42
7.3.320.0030.00313.41
7.3.310.0000.00916.41
7.3.300.0000.00716.55
7.3.290.0100.00716.56
7.3.280.0090.01016.59
7.3.270.0120.00617.40
7.3.260.0110.00918.24
7.3.250.0080.01216.58
7.3.240.0120.00616.87
7.3.230.0080.00916.61
7.3.210.0110.00716.88
7.3.200.0060.01619.39
7.3.190.0160.00816.75
7.3.180.0040.01316.78
7.3.170.0140.00716.87
7.3.160.0090.00916.55
7.3.120.0030.01614.95
7.3.110.0140.00314.77
7.3.100.0060.00915.07
7.3.90.0110.00314.80
7.3.80.0040.01514.98
7.3.70.0100.00315.05
7.3.60.0120.00815.06
7.3.50.0080.00415.04
7.3.40.0040.00814.88
7.3.30.0030.00915.18
7.3.20.0040.01216.88
7.3.10.0060.01316.70
7.3.00.0050.01016.61
7.2.330.0030.01616.80
7.2.320.0070.01617.02
7.2.310.0120.01217.01
7.2.300.0090.01817.14
7.2.290.0150.00317.03
7.2.250.0060.01315.09
7.2.240.0070.01415.18
7.2.230.0000.01015.19
7.2.220.0090.00615.48
7.2.210.0100.01315.40
7.2.200.0060.01015.42
7.2.190.0000.01915.27
7.2.180.0030.01315.46
7.2.170.0030.01215.28
7.2.130.0060.00616.88
7.2.120.0040.01116.76
7.2.110.0130.00016.80
7.2.100.0030.01016.98
7.2.90.0060.00616.63
7.2.80.0000.01216.80
7.2.70.0000.01117.00
7.2.60.0060.01017.01
7.2.50.0100.00717.04
7.2.40.0130.00317.07
7.2.30.0060.00916.80
7.2.20.0040.00817.08
7.2.10.0000.01416.83
7.2.00.0030.01018.21
7.1.330.0000.01415.70
7.1.320.0080.00815.94
7.1.310.0090.01315.95
7.1.300.0000.01916.00
7.1.290.0080.00415.87
7.1.280.0030.01415.87
7.1.270.0070.01115.80
7.1.260.0130.00015.93
7.1.250.0070.00716.02
7.1.240.0060.00615.57
7.1.230.0030.01015.82
7.1.220.0060.00915.85
7.1.210.0030.00915.90
7.1.200.0000.01315.84
7.1.190.0060.01215.88
7.1.180.0000.01015.55
7.1.170.0080.00415.83
7.1.160.0000.01015.79
7.1.150.0060.00615.77
7.1.140.0030.01015.80
7.1.130.0000.01015.48
7.1.120.0030.01115.80
7.1.110.0030.01015.57
7.1.100.0010.01116.70
7.1.90.0080.00316.00
7.1.80.0120.00315.77
7.1.70.0060.00916.65
7.1.60.0040.00716.60
7.1.50.0070.00916.43
7.1.40.0070.00715.49
7.1.30.0040.01215.73
7.1.20.0040.00715.73
7.1.10.0060.00315.36
7.1.00.0040.02419.05
7.0.330.0100.00315.36
7.0.320.0060.00615.44
7.0.310.0000.00915.38
7.0.300.0060.00615.29
7.0.290.0000.01015.38
7.0.280.0080.00315.41
7.0.270.0060.00915.26
7.0.260.0000.01015.19
7.0.250.0090.00615.68
7.0.240.0000.01315.67
7.0.230.0070.00715.56
7.0.220.0060.01215.38
7.0.210.0070.00715.50
7.0.200.0020.01316.15
7.0.190.0030.00915.42
7.0.180.0000.01315.44
7.0.170.0000.01215.33
7.0.160.0000.00915.43
7.0.150.0080.00315.29
7.0.140.0090.04018.82
7.0.130.0070.00415.36
7.0.120.0070.01015.18
7.0.110.0030.00715.30
7.0.100.0150.03817.78
7.0.90.0050.04717.63
7.0.80.0030.04617.65
7.0.70.0040.04317.84
7.0.60.0050.04717.69
7.0.50.0030.04718.11
7.0.40.0110.04016.87
7.0.30.0050.04616.78
7.0.20.0030.03816.78
7.0.10.0050.03716.88
7.0.00.0070.04316.75
5.6.380.0000.01414.42
5.6.370.0000.01114.40
5.6.360.0030.01114.54
5.6.350.0030.01414.34
5.6.340.0040.01214.69
5.6.330.0000.01414.41
5.6.320.0090.00914.45
5.6.310.0080.00814.45
5.6.300.0000.01614.06
5.6.290.0070.01014.50
5.6.280.0110.03617.88
5.6.270.0030.01014.50
5.6.260.0030.01013.94
5.6.250.0100.04517.62
5.6.240.0070.04617.57
5.6.230.0090.04317.44
5.6.220.0050.04017.59
5.6.210.0050.04517.59
5.6.200.0100.03417.72
5.6.190.0080.02817.88
5.6.180.0120.03417.74
5.6.170.0050.02917.79
5.6.160.0090.04717.68
5.6.150.0090.04417.77
5.6.140.0040.04717.78
5.6.130.0080.04317.88
5.6.120.0070.02817.74
5.6.110.0060.04517.83
5.6.100.0050.03017.84
5.6.90.0070.03217.83
5.6.80.0140.03017.49
5.6.70.0120.04017.35
5.6.60.0070.04417.47
5.6.50.0060.04417.36
5.6.40.0070.04917.36
5.6.30.0120.04017.47
5.6.20.0090.04117.49
5.6.10.0070.04717.32
5.6.00.0070.04117.31
5.5.380.0090.04615.86
5.5.370.0090.03715.74
5.5.360.0080.03015.85
5.5.350.0070.04015.98
5.5.340.0050.04016.06
5.5.330.0070.03916.10
5.5.320.0020.04816.29
5.5.310.0050.04115.97
5.5.300.0080.04116.03
5.5.290.0080.04816.04
5.5.280.0020.04715.90
5.5.270.0030.04016.20
5.5.260.0060.04316.14
5.5.250.0020.04915.93
5.5.240.0070.03515.88
5.5.230.0030.04715.82
5.5.220.0000.04215.77
5.5.210.0030.04615.84
5.5.200.0100.04115.63
5.5.190.0070.04115.51
5.5.180.0040.02915.59
5.5.170.0000.01211.17
5.5.160.0110.03315.64
5.5.150.0050.03715.74
5.5.140.0050.03515.62
5.5.130.0030.04715.59
5.5.120.0090.04215.63
5.5.110.0070.04415.67
5.5.100.0070.03915.55
5.5.90.0070.03915.74
5.5.80.0070.04115.73
5.5.70.0040.04815.55
5.5.60.0110.03215.54
5.5.50.0030.04215.83
5.5.40.0100.03215.76
5.5.30.0060.02815.73
5.5.20.0090.03115.63
5.5.10.0120.04215.74
5.5.00.0070.04215.74
5.4.450.0050.04315.47
5.4.440.0090.04215.32
5.4.430.0030.02915.29
5.4.420.0050.04315.25
5.4.410.0080.03815.32
5.4.400.0030.04015.06
5.4.390.0100.03815.18
5.4.380.0080.04515.18
5.4.370.0070.04515.06
5.4.360.0050.04115.07
5.4.350.0030.02615.03
5.4.340.0050.04015.06
5.4.330.0070.01110.90
5.4.320.0110.02515.02
5.4.310.0080.03115.01
5.4.300.0040.03914.98
5.4.290.0100.03815.06
5.4.280.0050.04615.02
5.4.270.0080.03215.13
5.4.260.0080.04214.96
5.4.250.0070.04014.91
5.4.240.0050.02415.15
5.4.230.0040.03115.10
5.4.220.0030.04715.01
5.4.210.0050.04115.02
5.4.200.0070.02614.91
5.4.190.0020.04715.16
5.4.180.0030.04415.15
5.4.170.0080.03615.12
5.4.160.0060.04415.00
5.4.150.0040.04715.02
5.4.140.0070.03813.90
5.4.130.0070.04013.72
5.4.120.0080.03813.72
5.4.110.0030.04413.95
5.4.100.0070.04013.73
5.4.90.0030.04113.86
5.4.80.0070.04213.71
5.4.70.0050.04013.81
5.4.60.0050.03713.93
5.4.50.0020.04313.85
5.4.40.0080.03813.78
5.4.30.0020.04013.74
5.4.20.0000.04413.66
5.4.10.0070.04013.92
5.4.00.0080.03313.55
5.3.290.0000.04612.85
5.3.280.0040.04712.91
5.3.270.0020.04912.86
5.3.260.0060.04212.86
5.3.250.0060.04112.91
5.3.240.0050.04212.85
5.3.230.0030.04112.92
5.3.220.0050.03912.85
5.3.210.0020.03212.89
5.3.200.0080.04212.89
5.3.190.0100.03112.86
5.3.180.0050.04112.89
5.3.170.0060.04112.83
5.3.160.0030.04512.87
5.3.150.0070.04212.90
5.3.140.0050.04212.87
5.3.130.0090.04212.88
5.3.120.0050.04512.84
5.3.110.0120.03512.82
5.3.100.0080.03712.55
5.3.90.0060.04012.57
5.3.80.0050.03012.55
5.3.70.0070.04012.58
5.3.60.0030.03012.56
5.3.50.0050.04112.58
5.3.40.0020.04412.60
5.3.30.0050.03912.53
5.3.20.0070.04212.46
5.3.10.0060.03812.40
5.3.00.0030.04412.31

preferences:
51.47 ms | 401 KiB | 5 Q