3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Random_* Compatibility Library * for using the new PHP 7 random_* API in PHP 5 projects * * The MIT License (MIT) * * Copyright (c) 2015 Paragon Initiative Enterprises * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ if (!defined('RANDOM_COMPAT_READ_BUFFER')) { define('RANDOM_COMPAT_READ_BUFFER', 8); } if (!function_exists('random_bytes')) { /** * PHP 5.2.0 - 5.6.x way to implement random_bytes() * * We use conditional statements here to define the function in accordance * to the operating environment. It's a micro-optimization. * * In order of preference: * 1. fread() /dev/urandom if available * 2. mcrypt_create_iv($bytes, MCRYPT_CREATE_IV) * 3. COM('CAPICOM.Utilities.1')->GetRandom() * 4. openssl_random_pseudo_bytes() * * See ERRATA.md for our reasoning behind this particular order */ if (!ini_get('open_basedir') && is_readable('/dev/urandom')) { /** * Unless open_basedir is enabled, use /dev/urandom for * random numbers in accordance with best practices * * Why we use /dev/urandom and not /dev/random * @ref http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers * * @param int $bytes * * @throws Exception * * @return string */ function random_bytes($bytes) { static $fp = null; /** * This block should only be run once */ if (empty($fp)) { /** * We use /dev/urandom if it is a char device. * We never fall back to /dev/random */ $fp = fopen('/dev/urandom', 'rb'); if (!empty($fp)) { $st = fstat($fp); if (($st['mode'] & 020000) === 0) { fclose($fp); $fp = false; } } /** * stream_set_read_buffer() does not exist in HHVM * * If we don't set the stream's read buffer to 0, PHP will * internally buffer 8192 bytes, which can waste entropy * * stream_set_read_buffer returns 0 on success */ if (!empty($fp) && function_exists('stream_set_read_buffer')) { stream_set_read_buffer($fp, RANDOM_COMPAT_READ_BUFFER); } } /** * This if() block only runs if we managed to open a file handle * * It does not belong in an else {} block, because the above * if (empty($fp)) line is logic that should only be run once per * page load. */ if (!empty($fp)) { $remaining = $bytes; $buf = ''; /** * We use fread() in a loop to protect against partial reads */ do { $read = fread($fp, $remaining); if ($read === false) { /** * We cannot safely read from the file. Exit the * do-while loop and trigger the exception condition */ $buf = false; break; } /** * Decrease the number of bytes returned from remaining */ $remaining -= RandomCompat_strlen($read); $buf .= $read; } while ($remaining > 0); /** * Is our result valid? */ if ($buf !== false) { if (RandomCompat_strlen($buf) === $bytes) { /** * Return our random entropy buffer here: */ return $buf; } } } /** * If we reach here, PHP has failed us. */ throw new Exception( 'PHP failed to generate random data.' ); } } elseif (function_exists('mcrypt_create_iv') && version_compare(PHP_VERSION, '5.3.7') >= 0) { /** * Powered by ext/mcrypt (and thankfully NOT libmcrypt) * * @ref https://bugs.php.net/bug.php?id=55169 * @ref https://github.com/php/php-src/blob/c568ffe5171d942161fc8dda066bce844bdef676/ext/mcrypt/mcrypt.c#L1321-L1386 * * @param int $bytes * * @throws Exception * * @return string */ function random_bytes($bytes) { if (!is_int($bytes)) { throw new Exception( 'Length must be an integer' ); } if ($bytes < 1) { throw new Exception( 'Length must be greater than 0' ); } $buf = mcrypt_create_iv($bytes, MCRYPT_DEV_URANDOM); if ($buf !== false) { if (RandomCompat_strlen($buf) === $bytes) { /** * Return our random entropy buffer here: */ return $buf; } } /** * If we reach here, PHP has failed us. */ throw new Exception( 'PHP failed to generate random data.' ); } } elseif (extension_loaded('com_dotnet')) { /** * Windows with PHP < 5.3.0 will not have the function * openssl_random_pseudo_bytes() available, so let's use * CAPICOM to work around this deficiency. * * @param int $bytes * * @throws Exception * * @return string */ function random_bytes($bytes) { $buf = ''; $util = new COM('CAPICOM.Utilities.1'); $execCount = 0; /** * Let's not let it loop forever. If we run N times and fail to * get N bytes of random data, then CAPICOM has failed us. */ do { $buf .= base64_decode($util->GetRandom($bytes, 0)); if (RandomCompat_strlen($buf) >= $bytes) { /** * Return our random entropy buffer here: */ return RandomCompat_substr($buf, 0, $bytes); } ++$execCount; } while ($execCount < $bytes); /** * If we reach here, PHP has failed us. */ throw new Exception( 'PHP failed to generate random data.' ); } } elseif (function_exists('openssl_random_pseudo_bytes')) { /** * Since openssl_random_pseudo_bytes() uses openssl's * RAND_pseudo_bytes() API, which has been marked as deprecated by the * OpenSSL team, this is our last resort before failure. * * @ref https://www.openssl.org/docs/crypto/RAND_bytes.html * * @param int $bytes * * @throws Exception * * @return string */ function random_bytes($bytes) { $secure = true; /** * $secure is passed by reference. If it's set to false, fail. Note * that this will only return false if this function fails to return * any data. * * @ref https://github.com/paragonie/random_compat/issues/6#issuecomment-119564973 */ $buf = openssl_random_pseudo_bytes($bytes, $secure); if ($buf !== false && $secure) { if (RandomCompat_strlen($buf) === $bytes) { return $buf; } } /** * If we reach here, PHP has failed us. */ throw new Exception( 'PHP failed to generate random data.' ); } } else { /** * We don't have any more options, so let's throw an exception right now * and hope the developer won't let it fail silently. */ throw new Exception( 'There is no suitable CSPRNG installed on your system' ); } } if (!function_exists('random_int')) { /** * Fetch a random integer between $min and $max inclusive * * @param int $min * @param int $max * * @throws Exception * * @return int */ function random_int($min, $max) { /** * Type and input logic checks */ if (!is_int($min)) { throw new Exception( 'random_int(): $min must be an integer' ); } if (!is_int($max)) { throw new Exception( 'random_int(): $max must be an integer' ); } if ($min > $max) { throw new Exception( 'Minimum value must be less than or equal to the maximum value' ); } if ($max === $min) { return $min; } /** * Initialize variables to 0 * * We want to store: * $bytes => the number of random bytes we need * $mask => an integer bitmask (for use with the &) operator * so we can minimize the number of discards */ $attempts = $bits = $bytes = $mask = $valueShift = 0; /** * At this point, $range is a positive number greater than 0. It might * overflow, however, if $max - $min > PHP_INT_MAX. PHP will cast it to * a float and we will lose some precision. */ $range = $max - $min; /** * Test for integer overflow: */ if (!is_int($range)) { /** * Still safely calculate wider ranges. * Provided by @CodesInChaos, @oittaa * * @ref https://gist.github.com/CodesInChaos/03f9ea0b58e8b2b8d435 * * We use ~0 as a mask in this case because it generates all 1s * * @ref https://eval.in/400356 (32-bit) * @ref http://3v4l.org/XX9r5 (64-bit) */ $bytes = PHP_INT_SIZE; $mask = ~0; } else { /** * $bits is effectively ceil(log($range, 2)) without dealing with * type juggling */ while ($range > 0) { if ($bits % 8 === 0) { ++$bytes; } ++$bits; $range >>= 1; $mask = $mask << 1 | 1; } $valueShift = $min; } /** * Now that we have our parameters set up, let's begin generating * random integers until one falls between $min and $max */ do { /** * The rejection probability is at most 0.5, so this corresponds * to a failure probability of 2^-128 for a working RNG */ if ($attempts > 128) { throw new Exception( 'random_int: RNG is broken - too many rejections' ); } /** * Let's grab the necessary number of random bytes */ $randomByteString = random_bytes($bytes); if ($randomByteString === false) { throw new Exception( 'Random number generator failure' ); } /** * Let's turn $randomByteString into an integer * * This uses bitwise operators (<< and |) to build an integer * out of the values extracted from ord() * * Example: [9F] | [6D] | [32] | [0C] => * 159 + 27904 + 3276800 + 201326592 => * 204631455 */ $val = 0; for ($i = 0; $i < $bytes; ++$i) { $val |= ord($randomByteString[$i]) << ($i * 8); } /** * Apply mask */ $val &= $mask; $val += $valueShift; ++$attempts; /** * If $val overflows to a floating point number, * ... or is larger than $max, * ... or smaller than $int, * then try again. */ } while (!is_int($val) || $val > $max || $val < $min); return (int) $val; } } if (!function_exists('RandomCompat_strlen')) { if (function_exists('mb_strlen')) { /** * strlen() implementation that isn't brittle to mbstring.func_overload * * This version uses mb_strlen() in '8bit' mode to treat strings as raw * binary rather than UTF-8, ISO-8859-1, etc * * @param string $binary_string * * @throws InvalidArgumentException * * @return int */ function RandomCompat_strlen($binary_string) { if (!is_string($binary_string)) { throw new InvalidArgumentException( 'RandomCompat_strlen() expects a string' ); } return mb_strlen($binary_string, '8bit'); } } else { /** * strlen() implementation that isn't brittle to mbstring.func_overload * * This version just used the default strlen() * * @param string $binary_string * * @throws InvalidArgumentException * * @return int */ function RandomCompat_strlen($binary_string) { if (!is_string($binary_string)) { throw new InvalidArgumentException( 'RandomCompat_strlen() expects a string' ); } return strlen($binary_string); } } } if (!function_exists('RandomCompat_substr')) { if (function_exists('mb_substr')) { /** * substr() implementation that isn't brittle to mbstring.func_overload * * This version uses mb_substr() in '8bit' mode to treat strings as raw * binary rather than UTF-8, ISO-8859-1, etc * * @param string $binary_string * @param int $start * @param int $length (optional) * * @throws InvalidArgumentException * * @return string */ function RandomCompat_substr($binary_string, $start, $length = null) { if (!is_string($binary_string)) { throw new InvalidArgumentException( 'RandomCompat_substr(): First argument should be a string' ); } if (!is_int($start)) { throw new InvalidArgumentException( 'RandomCompat_substr(): Second argument should be an integer' ); } if ($length === null) { /** * mb_substr($str, 0, NULL, '8bit') returns an empty string on * PHP 5.3, so we have to find the length ourselves. */ $length = RandomCompat_strlen($length) - $start; } elseif (!is_int($length)) { throw new InvalidArgumentException( 'RandomCompat_substr(): Third argument should be an integer, or omitted' ); } return mb_substr($binary_string, $start, $length, '8bit'); } } else { /** * substr() implementation that isn't brittle to mbstring.func_overload * * This version just uses the default substr() * * @param string $binary_string * @param int $start * @param int $length (optional) * * @throws InvalidArgumentException * * @return string */ function RandomCompat_substr($binary_string, $start, $length = null) { if (!is_string($binary_string)) { throw new InvalidArgumentException( 'RandomCompat_substr(): First argument should be a string' ); } if (!is_int($start)) { throw new InvalidArgumentException( 'RandomCompat_substr(): Second argument should be an integer' ); } if ($length !== null) { if (!is_int($length)) { throw new InvalidArgumentException( 'RandomCompat_substr(): Third argument should be an integer, or omitted' ); } return substr($binary_string, $start, $length); } return substr($binary_string, $start); } } } var_dump([ random_int(-PHP_INT_MAX, PHP_INT_MAX), random_int(-2147483648, 2147483647) ]);

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.2.90.0240.00917.63
8.2.80.0220.00917.25
8.2.70.0240.00617.50
8.2.60.0280.00317.63
8.2.50.0250.00617.38
8.2.40.0190.00817.38
8.2.30.0170.01017.25
8.2.20.0250.00517.63
8.2.10.0300.00217.25
8.2.00.0200.01017.38
8.1.220.0240.00417.36
8.1.210.0190.00817.13
8.1.200.0240.00317.35
8.1.190.0270.00017.13
8.1.180.0190.01117.13
8.1.170.0260.00417.25
8.1.160.0240.00317.38
8.1.150.0230.00617.00
8.1.140.0220.00617.38
8.1.130.0200.00717.13
8.1.120.0200.00717.25
8.1.110.0170.01017.22
8.1.100.0220.00417.13
8.1.90.0200.00717.38
8.1.80.0270.00017.25
8.1.70.0050.01017.40
8.1.60.0180.00417.41
8.1.50.0170.00617.25
8.1.40.0200.00217.36
8.1.30.0160.00617.65
8.1.20.0170.00517.57
8.1.10.0170.00517.27
8.1.00.0120.00917.27
8.0.300.0230.00616.80
8.0.290.0230.00816.80
8.0.280.0180.01116.80
8.0.270.0240.00416.80
8.0.260.0200.00816.80
8.0.250.0270.00016.80
8.0.240.0200.00716.80
8.0.230.0190.01016.80
8.0.220.0250.00316.80
8.0.210.0290.00016.80
8.0.200.0120.00616.83
8.0.190.0170.00316.87
8.0.180.0200.00216.86
8.0.170.0160.00316.90
8.0.160.0170.00316.82
8.0.150.0120.00716.83
8.0.140.0170.00316.88
8.0.130.0160.00416.76
8.0.120.0120.00716.83
8.0.110.0090.00316.94
8.0.100.0140.00516.82
8.0.90.0130.00616.86
8.0.80.0140.00516.88
8.0.70.0110.00716.78
8.0.60.0170.00216.81
8.0.50.0150.00616.85
8.0.30.0160.00616.87
8.0.20.0140.00816.92
8.0.10.0190.00416.94
8.0.00.0140.00317.07
7.4.330.0120.00816.80
7.4.320.0190.00616.80
7.4.300.0170.00416.55
7.4.290.0130.00616.66
7.4.280.0130.00416.61
7.4.270.0110.00616.61
7.4.260.0070.00616.58
7.4.250.0120.00616.56
7.4.240.0150.00216.66
7.4.230.0160.00416.64
7.4.220.0110.00716.59
7.4.210.0160.00216.66
7.4.200.0130.00616.60
7.4.190.0140.00516.64
7.4.180.0120.00616.63
7.4.160.0140.00516.60
7.4.150.0130.00616.56
7.4.140.0110.00716.52
7.4.130.0130.00516.58
7.4.120.0130.00516.54
7.4.110.0140.00416.56
7.4.100.0140.00316.58
7.4.90.0110.00616.53
7.4.80.0160.00316.57
7.4.70.0130.00616.50
7.4.60.0110.00716.58
7.4.50.0140.00316.52
7.4.40.0110.00716.48
7.4.30.0130.00516.53
7.4.20.0120.00516.52
7.4.10.0120.00616.57
7.4.00.0130.00516.58
7.3.330.0160.00216.43
7.3.320.0150.00416.46
7.3.310.0140.00416.49
7.3.300.0090.00816.40
7.3.290.0160.00216.51
7.3.280.0100.00816.50
7.3.270.0130.00516.53
7.3.260.0120.00616.40
7.3.250.0100.00816.44
7.3.240.0130.00416.41
7.3.230.0100.00816.41
7.3.220.0150.00416.43
7.3.210.0140.00416.32
7.3.200.0150.00316.40
7.3.190.0120.00916.39
7.3.180.0130.00616.41
7.3.170.0110.00716.38
7.3.160.0120.00616.40
7.3.150.0140.00316.37
7.3.140.0130.00616.43
7.3.130.0130.00616.41
7.3.120.0140.00416.43
7.3.110.0130.00616.35
7.3.100.0110.00716.46
7.3.90.0140.00416.49
7.3.80.0120.00616.07
7.3.70.0100.00816.05
7.3.60.0100.00716.13
7.3.50.0110.00816.10
7.3.40.0090.00916.05
7.3.30.0130.00616.11
7.3.20.0140.00817.09
7.3.10.0160.01016.92
7.3.00.0160.00716.79
7.2.340.0230.00616.58
7.2.330.0160.00816.51
7.2.320.0150.00916.65
7.2.310.0140.00916.54
7.2.300.0170.00616.55
7.2.290.0170.00616.62
7.2.280.0200.00616.61
7.2.270.0200.00316.47
7.2.260.0120.01016.51
7.2.250.0160.00716.54
7.2.240.0150.00516.43
7.2.230.0160.00616.52
7.2.220.0180.00416.49
7.2.210.0160.00616.25
7.2.200.0160.00916.26
7.2.190.0130.00916.32
7.2.180.0180.00416.28
7.2.170.0160.00616.38
7.2.160.0150.00816.57
7.2.150.0240.00617.32
7.2.140.0220.01017.16
7.2.130.0140.00817.20
7.2.120.0150.00717.18
7.2.110.0150.00917.31
7.2.100.0190.00817.33
7.2.90.0150.00717.25
7.2.80.0100.01117.26
7.2.70.0160.00817.29
7.2.60.0180.00417.22
7.2.50.0190.00617.30
7.2.40.0370.01017.29
7.2.30.0240.00617.24
7.2.20.0340.01117.21
7.2.10.0260.00917.32
7.2.00.0350.00717.25
7.1.330.0130.00816.69
7.1.320.0140.00716.78
7.1.310.0170.00616.15
7.1.300.0150.00616.12
7.1.290.0180.00516.10
7.1.280.0130.01016.15
7.1.270.0180.00916.15
7.1.260.0180.00716.13
7.1.250.0170.00516.00
7.1.240.0160.00616.01
7.1.230.0180.00416.05
7.1.220.0170.00616.08
7.1.210.0180.00516.01
7.1.200.0190.00716.01
7.1.190.0150.00516.06
7.1.180.0140.00616.02
7.1.170.0160.00516.09
7.1.160.0350.00816.07
7.1.150.0150.00716.10
7.1.140.0400.00516.10
7.1.130.0280.00516.06
7.1.120.0250.01016.08
7.1.110.0170.00816.09
7.1.100.0250.00616.08
7.1.90.0240.00715.98
7.1.80.0300.00516.03
7.1.70.0260.00715.93
7.1.60.0310.00919.98
7.1.50.0260.00719.92
7.1.40.0220.00719.69
7.1.30.0330.00819.82
7.1.20.0260.00719.80
7.1.10.0270.00815.79
7.1.00.0200.00915.76
7.0.330.0170.00615.68
7.0.320.0130.00715.77
7.0.310.0160.00515.74
7.0.300.0120.00915.75
7.0.290.0230.00615.85
7.0.280.0110.00815.79
7.0.270.0330.00715.83
7.0.260.0260.00715.83
7.0.250.0200.01015.84
7.0.240.0210.00615.83
7.0.230.0220.00715.78
7.0.220.0250.00515.79
7.0.210.0270.00415.52
7.0.200.0250.00715.71
7.0.190.0250.00815.67
7.0.180.0380.00815.59
7.0.170.0200.00715.51
7.0.160.0290.00715.57
7.0.150.0210.00915.57
7.0.140.0240.00715.54
7.0.130.0210.00815.63
7.0.120.0200.00715.67
7.0.110.0230.00815.53
7.0.100.0200.00615.50
7.0.90.0210.00615.49
7.0.80.0160.00815.54
7.0.70.0200.00615.54
7.0.60.0120.00815.47
7.0.50.0200.00715.54
7.0.40.0180.00715.26
7.0.30.0180.00715.23
7.0.20.0190.00615.19
7.0.10.0180.00615.27
7.0.00.0140.00715.16
5.6.400.0160.00715.60
5.6.390.0140.00815.58
5.6.380.0140.00615.51
5.6.370.0160.00615.48
5.6.360.0110.00815.49
5.6.350.0110.00915.51
5.6.340.0140.00915.37
5.6.330.0100.00915.50
5.6.320.0100.00915.45
5.6.310.0130.00515.53
5.6.300.0130.02517.29
5.6.290.0130.02817.28
5.6.280.0130.02217.28
5.6.270.0120.02717.34
5.6.260.0130.02317.31
5.6.250.0120.02417.34
5.6.240.0110.02517.28
5.6.230.0110.02417.27
5.6.220.0130.02217.31
5.6.210.0120.02217.27
5.6.200.0110.02517.36
5.6.190.0090.02617.33
5.6.180.0130.02417.31
5.6.170.0130.02017.36
5.6.160.0120.02617.26
5.6.150.0130.02617.30
5.6.140.0120.02517.28
5.6.130.0120.02217.29
5.6.120.0120.02317.31
5.6.110.0110.02417.27
5.6.100.0130.02517.24
5.6.90.0140.02017.30
5.6.80.0110.02317.04
5.6.70.0100.02417.08
5.6.60.0140.02017.01
5.6.50.0110.02217.00
5.6.40.0130.02117.06
5.6.30.0130.02317.06
5.6.20.0100.02217.07
5.6.10.0130.02417.01
5.6.00.0130.02516.99
5.5.380.0140.01915.82
5.5.370.0130.02115.83
5.5.360.0130.02315.73
5.5.350.0120.02315.83
5.5.340.0130.02715.99
5.5.330.0100.02715.95
5.5.320.0120.02215.95
5.5.310.0130.02215.96
5.5.300.0110.02316.00
5.5.290.0100.02415.98
5.5.280.0100.02515.94
5.5.270.0130.02115.94
5.5.260.0130.02316.00
5.5.250.0120.02415.90
5.5.240.0110.02615.78
5.5.230.0100.02315.82
5.5.220.0130.02215.74
5.5.210.0100.02115.79
5.5.200.0130.01915.62
5.5.190.0110.02215.79
5.5.180.0130.02115.69
5.5.170.0120.00714.73
5.5.160.0120.02515.68
5.5.150.0110.02415.73
5.5.140.0130.02415.72
5.5.130.0110.02315.72
5.5.120.0110.02515.72
5.5.110.0120.02815.70
5.5.100.0140.02415.78
5.5.90.0120.03115.71
5.5.80.0130.02015.75
5.5.70.0130.02715.68
5.5.60.0130.02315.65
5.5.50.0110.02615.69
5.5.40.0130.02815.62
5.5.30.0130.02515.74
5.5.20.0130.02115.64
5.5.10.0110.02315.71
5.5.00.0110.02415.74
5.4.450.0100.02415.14
5.4.440.0110.02115.09
5.4.430.0090.02415.15
5.4.420.0090.02215.04
5.4.410.0110.02515.06
5.4.400.0090.02214.93
5.4.390.0110.02114.96
5.4.380.0110.02114.98
5.4.370.0110.01714.99
5.4.360.0100.02214.93
5.4.350.0110.02014.98
5.4.340.0120.02014.95
5.4.330.0100.00512.92
5.4.320.0090.02214.94
5.4.310.0110.02414.98
5.4.300.0110.02114.93
5.4.290.0110.02015.00
5.4.280.0100.02114.99
5.4.270.0100.02515.03
5.4.260.0090.02215.01
5.4.250.0120.01914.92
5.4.240.0140.01914.97
5.4.230.0130.02114.94
5.4.220.0100.02614.88
5.4.210.0120.02214.89
5.4.200.0120.02314.89
5.4.190.0090.02314.91
5.4.180.0110.02314.92
5.4.170.0110.02114.89
5.4.160.0110.02014.98
5.4.150.0100.02314.93
5.4.140.0120.01814.14
5.4.130.0100.02314.17
5.4.120.0100.02014.18
5.4.110.0110.02014.27
5.4.100.0100.02014.14
5.4.90.0110.01814.20
5.4.80.0090.02214.26
5.4.70.0100.02114.21
5.4.60.0110.02314.14
5.4.50.0090.02114.19
5.4.40.0110.01914.26
5.4.30.0110.02014.15
5.4.20.0110.01914.25
5.4.10.0100.02014.25
5.4.00.0110.02113.91

preferences:
47.1 ms | 404 KiB | 6 Q