3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Uuid { const MD5 = 3; const SHA1 = 5; /** * 00001111 Clears all bits of version byte with AND * @var int */ const CLEAR_VER = 15; /** * 00111111 Clears all relevant bits of variant byte with AND * @var int */ const CLEAR_VAR = 63; /** * 11100000 Variant reserved for future use * @var int */ const VAR_RES = 224; /** * 11000000 Microsoft UUID variant * @var int */ const VAR_MS = 192; /** * 10000000 The RFC 4122 variant (this variant) * @var int */ const VAR_RFC = 128; /** * 00000000 The NCS compatibility variant * @var int */ const VAR_NCS = 0; /** * 00010000 * @var int */ const VERSION_1 = 16; /** * 00110000 * @var int */ const VERSION_3 = 48; /** * 01000000 * @var int */ const VERSION_4 = 64; /** * 01010000 * @var int */ const VERSION_5 = 80; /** * Time (in 100ns steps) between the start of the UTC and Unix epochs * @var int */ const INTERVAL = 0x01b21dd213814000; /** * @var string */ const NS_DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8'; /** * @var string */ const NS_URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'; /** * @var string */ const NS_OID = '6ba7b812-9dad-11d1-80b4-00c04fd430c8'; /** * @var string */ const NS_X500 = '6ba7b814-9dad-11d1-80b4-00c04fd430c8'; /** * @var string */ protected static $randomFunc = 'randomMcrypt'; protected $bytes; protected $hex; protected $string; protected $urn; protected $version; protected $variant; protected $node; protected $time; /** * @param string $uuid * @throws Exception */ protected function __construct($uuid) { if (!empty($uuid) && strlen($uuid) !== 16) { throw new Exception('Input must be a 128-bit integer.'); } $this->bytes = $uuid; // Optimize the most common use $this->string = bin2hex(substr($uuid, 0, 4)) . "-" . bin2hex(substr($uuid, 4, 2)) . "-" . bin2hex(substr($uuid, 6, 2)) . "-" . bin2hex(substr($uuid, 8, 2)) . "-" . bin2hex(substr($uuid, 10, 6)); } /** * @param int $ver * @param string $node * @param string $ns * @return Uuid * @throws Exception */ public static function generate($ver = 1, $node = null, $ns = null) { /* Create a new UUID based on provided data. */ switch ((int)$ver) { case 1: return new static(static::mintTime($node)); case 2: // Version 2 is not supported throw new \Exception('Version 2 is unsupported.'); case 3: return new static(static::mintName(static::MD5, $node, $ns)); case 4: return new static(static::mintRand()); case 5: return new static(static::mintName(static::SHA1, $node, $ns)); default: throw new \Exception('Selected version is invalid or unsupported.'); } } /** * Generates a Version 1 UUID. * These are derived from the time at which they were generated. * * @param string $node * @return string */ protected static function mintTime($node = null) { /** Get time since Gregorian calendar reform in 100ns intervals * This is exceedingly difficult because of PHP's (and pack()'s) * integer size limits. * Note that this will never be more accurate than to the microsecond. */ $time = microtime(1) * 10000000 + static::INTERVAL; // Convert to a string representation $time = sprintf("%F", $time); //strip decimal point preg_match("/^\d+/", $time, $time); // And now to a 64-bit binary representation $time = base_convert($time[0], 10, 16); $time = pack("H*", str_pad($time, 16, "0", STR_PAD_LEFT)); // Reorder bytes to their proper locations in the UUID // $uuid = $time[4] . $time[5] . $time[6] . $time[7] . $time[2] . $time[3] . $time[0] . $time[1]; $uuid = $time[0] . $time[1] . $time[2] . $time[3] . $time[4] . $time[5] . $time[6] . $time[7]; // Generate a random clock sequence $uuid .= static::randomBytes(2); // set variant $uuid[8] = chr(ord($uuid[8]) & static::CLEAR_VAR | static::VAR_RFC); // set version $uuid[6] = chr(ord($uuid[6]) & static::CLEAR_VER | static::VERSION_1); // Set the final 'node' parameter, a MAC address /* if (!is_null($node)) { $node = static::makeBin($node, 6); } //If no node was provided or if the node was invalid, generate a random MAC address and set the multicast bit if (is_null($node)) { $node = static::randomBytes(6); $node[0] = pack("C", ord($node[0]) | 1); } $uuid .= $node; */ //die($uuid); return $uuid .= ""; } /** * Randomness is returned as a string of bytes * * @param $bytes * @return string */ public static function randomBytes($bytes) { return call_user_func(array('static', static::initRandom()), $bytes); } /** * Trying for openSSL and Mcrypt random generators. Fallback to mt_rand * Since laravel 4.* and 5.0 requires Mcrypt and 5.1 requires OpenSSL the fallback should never be used. * * @throws Exception * @return string */ public static function initRandom() { if (function_exists('openssl_random_pseudo_bytes')) { return 'randomOpenSSL'; } elseif (function_exists('mcrypt_encrypt')) { return 'randomMcrypt'; } // This is not the best randomizer (using mt_rand)... return 'randomTwister'; } /** * Insure that an input string is either binary or hexadecimal. * Returns binary representation, or false on failure. * * @param string $str * @param integer $len * @return string|null */ protected static function makeBin($str, $len) { if ($str instanceof self) { return $str->bytes; } if (strlen($str) === $len) { return $str; } else { // strip URN scheme and namespace $str = preg_replace('/^urn:uuid:/is', '', $str); } // strip non-hex characters $str = preg_replace('/[^a-f0-9]/is', '', $str); if (strlen($str) !== ($len * 2)) { return null; } else { return pack("H*", $str); } } /** * Generates a Version 3 or Version 5 UUID. * These are derived from a hash of a name and its namespace, in binary form. * * @param string $ver * @param string $node * @param string $ns * @return string * @throws Exception */ protected static function mintName($ver, $node, $ns) { if (empty($node)) { throw new Exception('A name-string is required for Version 3 or 5 UUIDs.'); } // if the namespace UUID isn't binary, make it so $ns = static::makeBin($ns, 16); if (is_null($ns)) { throw new Exception('A binary namespace is required for Version 3 or 5 UUIDs.'); } $version = null; $uuid = null; switch ($ver) { case static::MD5: $version = static::VERSION_3; $uuid = md5($ns . $node, 1); break; case static::SHA1: $version = static::VERSION_5; $uuid = substr(sha1($ns . $node, 1), 0, 16); break; default: // no default really required here } // set variant $uuid[8] = chr(ord($uuid[8]) & static::CLEAR_VAR | static::VAR_RFC); // set version $uuid[6] = chr(ord($uuid[6]) & static::CLEAR_VER | $version); return ($uuid); } /** * Generate a Version 4 UUID. * These are derived solely from random numbers. * generate random fields * * @return string */ protected static function mintRand() { $uuid = static::randomBytes(16); // set variant $uuid[8] = chr(ord($uuid[8]) & static::CLEAR_VAR | static::VAR_RFC); // set version $uuid[6] = chr(ord($uuid[6]) & static::CLEAR_VER | static::VERSION_4); return $uuid; } /** * Import an existing UUID * * @param string $uuid * @return Uuid */ public static function import($uuid) { return new static(static::makeBin($uuid, 16)); } /** * Compares the binary representations of two UUIDs. * The comparison will return true if they are bit-exact, * or if neither is valid. * * @param string $a * @param string $b * @return string|string */ public static function compare($a, $b) { if (static::makeBin($a, 16) == static::makeBin($b, 16)) { return true; } else { return false; } } /** * Get the specified number of random bytes, using openssl_random_pseudo_bytes(). * Randomness is returned as a string of bytes. * * @param $bytes * @return mixed */ protected static function randomOpenSSL($bytes) { return openssl_random_pseudo_bytes($bytes); } /** * Get the specified number of random bytes, using mcrypt_create_iv(). * Randomness is returned as a string of bytes. * * @param $bytes * @return string */ protected static function randomMcrypt($bytes) { return mcrypt_create_iv($bytes, MCRYPT_DEV_URANDOM); } /** * Get the specified number of random bytes, using mt_rand(). * Randomness is returned as a string of bytes. * * @param integer $bytes * @return string */ protected static function randomTwister($bytes) { $rand = ""; for ($a = 0; $a < $bytes; $a++) { $rand .= chr(mt_rand(0, 255)); } return $rand; } /** * @param string $var * @return string|string|number|number|number|number|number|NULL|number|NULL|NULL */ public function __get($var) { switch ($var) { case "bytes": return $this->bytes; // no break case "hex": return bin2hex($this->bytes); // no break case "string": return $this->__toString(); // no break case "urn": return "urn:uuid:" . $this->__toString(); // no break case "version": return ord($this->bytes[6]) >> 4; // no break case "variant": $byte = ord($this->bytes[8]); if ($byte >= static::VAR_RES) { return 3; } elseif ($byte >= static::VAR_MS) { return 2; } elseif ($byte >= static::VAR_RFC) { return 1; } else { return 0; } // no break case "node": if (ord($this->bytes[6]) >> 4 == 1) { return bin2hex(substr($this->bytes, 10)); } else { return null; } // no break case "time": if (ord($this->bytes[6]) >> 4 == 1) { // Restore contiguous big-endian byte order $time = bin2hex($this->bytes[6] . $this->bytes[7] . $this->bytes[4] . $this->bytes[5] . $this->bytes[0] . $this->bytes[1] . $this->bytes[2] . $this->bytes[3]); // Clear version flag $time[0] = "0"; // Do some reverse arithmetic to get a Unix timestamp return (hexdec($time) - static::INTERVAL) / 10000000; } else { return null; } // no break default: return null; // no break } } /** * Return the UUID * * @return string */ public function __toString() { return $this->string; } } $uuid = Uuid::generate(); echo($uuid);
Output for 7.4.0
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x12 \x84O') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.12
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\xF0\x8D\xAF') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.11
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1D\x00\xA6\x8C') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.10
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x19P\xA9\xE4') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.9
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x18`\x91\x17') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.8
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x13\x10\x80O') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.7
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x15 \x8A{') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.6
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x14P\xA6\xEF') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.5
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x16\x90\x9A\x94') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.4
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x15\xE0\x82\\') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.3
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x13\xA0\xB1\xD1') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.2
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x13\xF0\xA4\t') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.1
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1F\x90\xAE\xD4') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.3.0
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1F\xC0\x8C\xC8') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.25
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1D\x90\x8E\xF6') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.24
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1E\xA0\xB7\xF1') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.23
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\xA0\xB2q') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.22
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\xB0\x82-') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.21
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1A\x00\xA9\xEC') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.20
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x14@\x97\x7F') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.19
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x12\xC0\xAD\x92') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.18
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x13P\x97\xC4') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.17
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x19\xF0\x9D\t') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.2.0
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1C\x90\x97\x10') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.33
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1Fp\x8D@') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.32
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x10`\x90\x00') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.31
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x13\x10\xA7\xD1') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.30
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x11\xE0\xBEb') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.29
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x16 \x9F\r') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.28
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x10\xC0\xA3y') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.27
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1D\xC0\xBC\xF0') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.26
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1F\x10\xA3\xB1') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.7
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x1C\xD0\xA3\xFC') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.6
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n-\x1D\xF0\x8F\r') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.5
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x11\xE0\xA0N') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.1.0
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x11 \x8C\x0F') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.20
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x18\xE0\xAE\xCF') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.10
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e`\x9A\x81') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.9
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1A\x90\xAA\xB8') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.8
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x10\xA0\xB6\x18') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.7
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x19\xC0\xA2A') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.6
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1F\xE0\xBBE') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.5
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1E0\x80s') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.4
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1F\xF0\x89\x06') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.3
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1D\x90\xB1x') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.2
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1A\x10\xB8\x1E') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.1
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x12\xF0\xA9\xA0') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 7.0.0
Fatal error: Uncaught Exception: Input must be a 128-bit integer. in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\xB0\xA8\xC2') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.28
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x10 \x817') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.25
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e \x8C\\') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.24
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x12P\x9E\xFB') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.23
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1E0\xAB\xB8') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.22
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x17@\xB6_') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.21
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1Ap\xA8q') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.20
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\xF0\xB3O') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.19
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1Dp\x86\x8B') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.18
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x19p\xA9\xE1') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.17
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x160\x99\xC3') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.16
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x15\x00\xB6%') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.15
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1D\xC0\x98\x7F') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.14
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x14\x00\x9B\xF1') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.13
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\x80\x97e') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.12
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\xD0\x85\xA3') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.11
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x17P\xA4a') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.10
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x15\xD0\x84\xCF') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.9
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x14`\x89[') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.8
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x14p\xAD\xA1') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.7
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x15\x10\xB5\xF0') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.6
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1C\x90\x84:') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.5
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x10\x90\xB9%') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.4
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x12\x80\x92Y') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.3
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x11\xE0\xB0|') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.2
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1A`\x83\x9D') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.1
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x10 \x96a') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.6.0
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x19\xD0\xB9]') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.38
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x12\x90\xA5\x1C') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.37
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1F\x10\x8B\xA6') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.36
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x1A\x80\xA1\x88') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.35
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x17\xF0\x99.') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.34
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x12\xE0\xA0o') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.33
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x16\xB0\x8F\xA8') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.32
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1D\xC0\xA4\xED') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.31
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x11\xA0\xBE\x16') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.30
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x16\x00\x80\xBD') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.29
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\xB0\xAC\xF8') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.28
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x1A\x90\xBA#') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.27
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x17@\x80\xE3') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.26
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1E`\xAD\xF5') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.25
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1Cp\x83\x80') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.24
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1C@\xAB\xB8') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.23
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1C \x98\xB5') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.22
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x15\x10\x9Ah') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.21
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x1A0\xA6I') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.20
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1E \x83F') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.19
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1E\x10\x9F\xE5') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.18
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x11\x80\x88\x92') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.16
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1F \xA2\x99') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.15
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n,\x1D\x80\x88;') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.14
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x15\xE0\x85\xAA') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.13
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1AP\x951') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.12
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x19\xE0\x9F\xDE') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.11
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x150\x8B{') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.0 - 5.4.1, 5.4.3 - 5.4.4, 5.4.6, 5.4.8, 5.4.10 - 5.4.14, 5.4.20 - 5.4.21, 5.4.26, 5.5.1, 5.5.3, 5.5.9 - 5.5.10
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+????') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.6, 5.5.8
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+?@??') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.7
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+? ?M') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.5
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???z') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.4
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+? ??') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.2
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???6') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.5.0
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???#') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.45
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1E\xF0\xA9\x07') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.44
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1E\x10\xAE7') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.43
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x14\x80\xA2\xA7') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.42
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1F0\xA1>') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.41
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1A\xF0\x83N') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.40
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x16\xF0\xB7?') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.39
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\e\xD0\x8EF') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.38
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1D\xA0\xA5}') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.37
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1C\xF0\x812') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.36
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x17\xE0\x83^') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.35
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x11\x10\x9A\xDA') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.34
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x1C \x83\xF0') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.32
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x13\x80\x9A\x18') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.31
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x13\xF0\xB17') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.30
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x17\xD0\x86H') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.29
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x15\x10\x99<') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.28
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x13\x00\xAA)') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.27
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('\x01\xE5f(\n+\x11\xB0\x9Fy') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.19, 5.4.25
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???F') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.24
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???=') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.23
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???]') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.22
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+?`??') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.18
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+?P?W') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.17
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+?`?g') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.16
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+?0?0') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.15
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+?p?K') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.9
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+? ?R') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.7
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???4') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.5
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???V') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.
Output for 5.4.2
Fatal error: Uncaught exception 'Exception' with message 'Input must be a 128-bit integer.' in /in/BgfYp:115 Stack trace: #0 /in/BgfYp(141): Uuid->__construct('??f(?+???I') #1 /in/BgfYp(480): Uuid::generate() #2 {main} thrown in /in/BgfYp on line 115
Process exited with code 255.

preferences:
149.35 ms | 401 KiB | 163 Q