3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Custom FileInfo wrapper. * * PHP version 5 * * Copyright (C) 2013 Nathan Bishop * * LICENSE: This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * @author Nathan Bishop <nbish11@hotmail.com> * @version 0.1.1 * @copyright 2013 Nathan Bishop * @license GPLv2 * @link https://github.com/nbish11/FileInfo */ class FileInfo{ /** * If a mimetype was NOT found this will be returned; which in * most cases is more than sufficient. * */ const DEFAULT_MIMETYPE = 'application/octet-stream'; /** * The file to check for. * * @var string $file */ private $file; /** * Constructor * * @param string $file Path to file. * @param boolean $exists Check if file exists. * * @return void */ public function __construct($file, $exists = false) { if ( ! is_string($file)) { throw new InvalidArgumentException('FileInfo expects a string.'); } if ($exists && !file_exists($file)) { throw new Exception('The file was not found at the following location: ' . $file); } $this->file = $file; } /** * The path to the file. * * @return string */ public function getDirectory() { return dirname($this->file); } /** * The filename and the extension. * * @return string */ public function getBaseName() { return basename($this->file); } /** * The extension of the file. * * @return string */ public function getExtension() { return substr(strrchr($this->getBasename(), '.'), 1); } /** * The basename without the extension. * * @return string */ public function getFileName() { return basename($this->file, '.' . $this->getExtension()); } /** * The content-type/mimetype of the file. * * @return string */ public function getMimeType() { $ext = $this->getExtension(); $mimes = $this->getMimeTypes(); return isset($mimes[$ext]) ? $mimes[$ext] : self::DEFAULT_MIMETYPE; } /** * Determines if a an arbitrary class property exists. Used * in conjunction with __get(). * * @param string $key * * @return boolean */ public function __isset($key) { $allowed = array( 'directory', 'basename', 'extension', 'filename', 'mimetype' ); return in_array(strtolower($key), $allowed); } /** * Arbitrarily returns non-existent class properties. * * @param string $key * * @return string */ public function __get($key) { switch (strtolower($key)) { case 'directory': return $this->getDirectory(); case 'basename': return $this->getBaseName(); case 'extension': return $this->getExtension(); case 'filename': return $this->getFileName(); case 'mimetype': return $this->getMimeType(); default: return null; } } /** * Returns an array of all mimetypes currently defined. * * @return array */ private function getMimeTypes() { return array( '3dm' => 'x-world/x-3dmf', '3dmf' => 'x-world/x-3dmf', 'a' => 'application/octet-stream', 'aab' => 'application/x-authorware-bin', 'aam' => 'application/x-authorware-map', 'aas' => 'application/x-authorware-seg', 'abc' => 'text/vnd.abc', 'acgi' => 'text/html', 'afl' => 'video/animaflex', 'ai' => 'application/postscript', 'aif' => 'audio/aiff', 'aifc' => 'audio/aiff', 'aiff' => 'audio/aiff', 'aim' => 'application/x-aim', 'aip' => 'text/x-audiosoft-intra', 'ani' => 'application/x-navi-animation', 'aos' => 'application/x-nokia-9000-communicator-add-on-software', 'aps' => 'application/mime', 'arc' => 'application/octet-stream', 'arj' => 'application/arj', 'art' => 'image/x-jg', 'asf' => 'video/x-ms-asf', 'asm' => 'text/x-asm', 'asp' => 'text/asp', 'asx' => 'application/x-mplayer2', 'au' => 'audio/basic', 'avi' => 'video/msvideo', 'avs' => 'video/avs-video', 'bcpio' => 'application/x-bcpio', 'bin' => 'application/octet-stream', 'bm' => 'image/bmp', 'bmp' => 'image/bmp', 'boo' => 'application/book', 'book' => 'application/book', 'boz' => 'application/x-bzip2', 'bsh' => 'application/x-bsh', 'bz' => 'application/x-bzip', 'bz2' => 'application/x-bzip2', 'c' => 'text/plain', 'c++' => 'text/plain', 'cat' => 'application/vnd.ms-pki.seccat', 'cc' => 'text/plain', 'ccad' => 'application/clariscad', 'cco' => 'application/x-cocoa', 'cdf' => 'application/cdf', 'cer' => 'application/pkix-cert', 'cha' => 'application/x-chat', 'chat' => 'application/x-chat', 'class' => 'application/java', 'com' => 'application/octet-stream', 'conf' => 'text/plain', 'cpio' => 'application/x-cpio', 'cpp' => 'text/x-c', 'cpt' => 'application/mac-compactpro', 'crl' => 'application/pkcs-crl', 'crt' => 'application/pkix-cert', 'csh' => 'application/x-csh', 'css' => 'text/css', 'cxx' => 'text/plain', 'dcr' => 'application/x-director', 'deepv' => 'application/x-deepv', 'def' => 'text/plain', 'der' => 'application/x-x509-ca-cert', 'dif' => 'video/x-dv', 'dir' => 'application/x-director', 'dl' => 'video/dl', 'doc' => 'application/msword', 'dot' => 'application/msword', 'dp' => 'application/commonground', 'drw' => 'application/drafting', 'dump' => 'application/octet-stream', 'dv' => 'video/x-dv', 'dvi' => 'application/x-dvi', 'dwf' => 'model/vnd.dwf', 'dwg' => 'application/acad', 'dxf' => 'image/x-dwg', 'dxr' => 'application/x-director', 'el' => 'text/x-script.elisp', 'elc' => 'application/x-elc', 'eml' => 'message/rfc822', 'env' => 'application/x-envoy', 'eps' => 'application/postscript', 'es' => 'application/x-esrehber', 'esp' => 'text/html', 'etx' => 'text/x-setext', 'evy' => 'application/envoy', 'exe' => 'application/octet-stream', 'f' => 'text/plain', 'f77' => 'text/x-fortran', 'f90' => 'text/plain', 'f90' => 'text/x-fortran', 'fdf' => 'application/vnd.fdf', 'fif' => 'image/fif', 'fli' => 'video/fli', 'flo' => 'image/florian', 'flx' => 'text/vnd.fmi.flexstor', 'fmf' => 'video/x-atomic3d-feature', 'for' => 'text/plain', 'fpx' => 'image/vnd.fpx', 'frl' => 'application/freeloader', 'funk' => 'audio/make', 'g' => 'text/plain', 'g3' => 'image/g3fax', 'gif' => 'image/gif', 'gl' => 'video/gl', 'gl' => 'video/x-gl', 'gsd' => 'audio/x-gsm', 'gsm' => 'audio/x-gsm', 'gsp' => 'application/x-gsp', 'gss' => 'application/x-gss', 'gtar' => 'application/x-gtar', 'gz' => 'application/x-gzip', 'gzip' => 'application/x-gzip', 'h' => 'text/plain', 'hdf' => 'application/x-hdf', 'help' => 'application/x-helpfile', 'hgl' => 'application/vnd.hp-HPGL', 'hh' => 'text/plain', 'hlb' => 'text/x-script', 'hlp' => 'application/hlp', 'hpg' => 'application/vnd.hp-HPGL', 'hpgl' => 'application/vnd.hp-HPGL', 'hqx' => 'application/binhex', 'hta' => 'application/hta', 'htc' => 'text/x-component', 'htm' => 'text/html', 'html' => 'text/html', 'htmls' => 'text/html', 'htt' => 'text/webviewhtml', 'htx' => 'text/html', 'ice' => 'x-conference/x-cooltalk', 'ico' => 'image/x-icon', 'idc' => 'text/plain', 'ief' => 'image/ief', 'iefs' => 'image/ief', 'iges' => 'application/iges', 'igs' => 'application/iges', 'ima' => 'application/x-ima', 'imap' => 'application/x-httpd-imap', 'inf' => 'application/inf', 'ins' => 'application/x-internett-signup', 'ip' => 'application/x-ip2', 'isu' => 'video/x-isvideo', 'it' => 'audio/it', 'iv' => 'application/x-inventor', 'ivr' => 'i-world/i-vrml', 'ivy' => 'application/x-livescreen', 'jam' => 'audio/x-jam', 'jav' => 'text/plain', 'java' => 'text/plain', 'jcm' => 'application/x-java-commerce', 'jfif' => 'image/jpeg', 'jfif-tbnl' => 'image/jpeg', 'jpe' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'jpg' => 'image/jpeg', 'jps' => 'image/x-jps', 'js' => 'application/x-javascript', 'jsp' => 'text/html', 'jut' => 'image/jutvision', 'kar' => 'audio/midi', 'ksh' => 'application/x-ksh', 'la' => 'audio/nspaudio', 'lam' => 'audio/x-liveaudio', 'latex' => 'application/x-latex', 'lha' => 'application/octet-stream', 'lhx' => 'application/octet-stream', 'list' => 'text/plain', 'lma' => 'audio/nspaudio', 'log' => 'text/plain', 'lsp' => 'application/x-lisp', 'lst' => 'text/plain', 'lsx' => 'text/x-la-asf', 'ltx' => 'application/x-latex', 'lzh' => 'application/octet-stream', 'lzx' => 'application/octet-stream', 'm' => 'text/plain', 'm' => 'text/x-m', 'm1v' => 'video/mpeg', 'm2a' => 'audio/mpeg', 'm2v' => 'video/mpeg', 'm3u' => 'audio/x-mpequrl', 'man' => 'application/x-troff-man', 'map' => 'application/x-navimap', 'mar' => 'text/plain', 'mbd' => 'application/mbedlet', 'mc$' => 'application/x-magic-cap-package-1.0', 'mcd' => 'application/mcad', 'mcf' => 'text/mcf', 'mcp' => 'application/netmc', 'me' => 'application/x-troff-me', 'mht' => 'message/rfc822', 'mhtml' => 'message/rfc822', 'mid' => 'audio/midi', 'midi' => 'audio/midi', 'mif' => 'application/x-frame', 'mime' => 'message/rfc822', 'mjf' => 'audio/x-vnd.AudioExplosion.MjuiceMediaFile', 'mjpg' => 'video/x-motion-jpeg', 'mm' => 'application/base64', 'mme' => 'application/base64', 'mod' => 'audio/mod', 'moov' => 'video/quicktime', 'mov' => 'video/quicktime', 'movie' => 'video/x-sgi-movie', 'mp2' => 'audio/mpeg', 'mp3' => 'audio/mpeg3', 'mpa' => 'audio/mpeg', 'mpc' => 'application/x-project', 'mpe' => 'video/mpeg', 'mpeg' => 'video/mpeg', 'mpg' => 'audio/mpeg', 'mpga' => 'audio/mpeg', 'mpp' => 'application/vnd.ms-project', 'mpt' => 'application/x-project', 'mpv' => 'application/x-project', 'mpx' => 'application/x-project', 'mrc' => 'application/marc', 'ms' => 'application/x-troff-ms', 'mv' => 'video/x-sgi-movie', 'my' => 'audio/make', 'mzz' => 'application/x-vnd.AudioExplosion.mzz', 'nap' => 'image/naplps', 'naplps'=> 'image/naplps', 'nc' => 'application/x-netcdf', 'ncm' => 'application/vnd.nokia.configuration-message', 'nif' => 'image/x-niff', 'niff' => 'image/x-niff', 'nix' => 'application/x-mix-transfer', 'nsc' => 'application/x-conference', 'nvd' => 'application/x-navidoc', 'o' => 'application/octet-stream', 'oda' => 'application/oda', 'omc' => 'application/x-omc', 'omcd' => 'application/x-omcdatamaker', 'omcr' => 'application/x-omcregerator', 'p' => 'text/x-pascal', 'p10' => 'application/pkcs10', 'p12' => 'application/pkcs-12', 'p7a' => 'application/x-pkcs7-signature', 'p7c' => 'application/pkcs7-mime', 'p7m' => 'application/pkcs7-mime', 'p7r' => 'application/x-pkcs7-certreqresp', 'p7s' => 'application/pkcs7-signature', 'part' => 'application/pro_eng', 'pas' => 'text/pascal', 'pbm' => 'image/x-portable-bitmap', 'pcl' => 'application/x-pcl', 'pct' => 'image/x-pict', 'pcx' => 'image/x-pcx', 'pdb' => 'chemical/x-pdb', 'pdf' => 'application/pdf', 'pfunk' => 'audio/make', 'pgm' => 'image/x-portable-greymap', 'php' => 'application/x-httpd-php', 'php3' => 'text/html', 'php4' => 'text/html', 'phps' => 'text/html', 'phtml' => 'text/html', 'pic' => 'image/pict', 'pict' => 'image/pict', 'pkg' => 'application/x-newton-compatible-pkg', 'pko' => 'application/vnd.ms-pki.pko', 'pl' => 'text/plain', 'plx' => 'application/x-PiXCLscript', 'pm' => 'image/x-xpixmap', 'pm4' => 'application/x-pagemaker', 'pm5' => 'application/x-pagemaker', 'png' => 'image/png', 'pnm' => 'application/x-portable-anymap', 'pot' => 'application/mspowerpoint', 'pov' => 'model/x-pov', 'ppa' => 'application/vnd.ms-powerpoint', 'ppm' => 'image/x-portable-pixmap', 'pps' => 'application/mspowerpoint', 'ppt' => 'application/mspowerpoint', 'ppz' => 'application/mspowerpoint', 'pre' => 'application/x-freelance', 'prt' => 'application/pro_eng', 'ps' => 'application/postscript', 'psd' => 'application/octet-stream', 'pvu' => 'paleovu/x-pv', 'pwz' => 'application/vnd.ms-powerpoint', 'py' => 'text/x-script.phyton', 'pyc' => 'applicaiton/x-bytecode.python', 'qcp' => 'audio/vnd.qcelp', 'qd3' => 'x-world/x-3dmf', 'qd3d' => 'x-world/x-3dmf', 'qif' => 'image/x-quicktime', 'qt' => 'video/quicktime', 'qtc' => 'video/x-qtc', 'qti' => 'image/x-quicktime', 'qtif' => 'image/x-quicktime', 'ra' => 'audio/x-realaudio', 'ram' => 'audio/x-pn-realaudio', 'ras' => 'image/cmu-raster', 'rast' => 'image/cmu-raster', 'rex' => 'text/x-script.rexx', 'rexx' => 'text/x-script.rexx', 'rf' => 'image/vnd.rn-realflash', 'rgb' => 'image/x-rgb', 'rm' => 'audio/x-pn-realaudio', 'rmi' => 'audio/mid', 'rmm' => 'audio/x-pn-realaudio', 'rmp' => 'audio/x-pn-realaudio', 'rng' => 'application/ringing-tones', 'rng' => 'application/vnd.nokia.ringing-tone', 'rnx' => 'application/vnd.rn-realplayer', 'roff' => 'application/x-troff', 'rp' => 'image/vnd.rn-realpix', 'rpm' => 'audio/x-pn-realaudio-plugin', 'rt' => 'text/richtext', 'rtf' => 'application/rtf', 'rtx' => 'application/rtf', 'rv' => 'video/vnd.rn-realvideo', 's' => 'text/x-asm', 's3m' => 'audio/s3m', 'saveme'=> 'application/octet-stream', 'sbk' => 'application/x-tbook', 'scm' => 'application/x-lotusscreencam', 'sdml' => 'text/plain', 'sdp' => 'application/sdp', 'sdr' => 'application/sounder', 'sea' => 'application/sea', 'sea' => 'application/x-sea', 'set' => 'application/set', 'sgm' => 'text/sgml', 'sgml' => 'text/sgml', 'sh' => 'application/x-sh', 'shar' => 'application/x-shar', 'shtml' => 'text/html', 'sid' => 'audio/x-psid', 'sit' => 'application/x-stuffit', 'skd' => 'application/x-koan', 'skm' => 'application/x-koan', 'skp' => 'application/x-koan', 'skt' => 'application/x-koan', 'sl' => 'application/x-seelogo', 'smi' => 'application/smil', 'smil' => 'application/smil', 'snd' => 'audio/basic', 'sol' => 'application/solids', 'spc' => 'text/x-speech', 'spl' => 'application/futuresplash', 'spr' => 'application/x-sprite', 'sprite'=> 'application/x-sprite', 'src' => 'application/x-wais-source', 'ssi' => 'text/x-server-parsed-html', 'ssm' => 'application/streamingmedia', 'sst' => 'application/vnd.ms-pki.certstore', 'step' => 'application/step', 'stl' => 'application/sla', 'stp' => 'application/step', 'sv4cpio'=> 'application/x-sv4cpio', 'sv4crc' => 'application/x-sv4crc', 'svf' => 'image/vnd.dwg', 'svr' => 'application/x-world', 'swf' => 'application/x-shockwave-flash', 't' => 'application/x-troff', 'talk' => 'text/x-speech', 'tar' => 'application/x-tar', 'tbk' => 'application/toolbook', 'tcl' => 'application/x-tcl', 'tcsh' => 'text/x-script.tcsh', 'tex' => 'application/x-tex', 'texi' => 'application/x-texinfo', 'texinfo' => 'application/x-texinfo', 'text' => 'text/plain', 'tgz' => 'application/x-compressed', 'tif' => 'image/tiff', 'tiff' => 'image/tiff', 'tr' => 'application/x-troff', 'tsi' => 'audio/tsp-audio', 'tsp' => 'audio/tsplayer', 'tsv' => 'text/tab-separated-values', 'turbot'=> 'image/florian', 'txt' => 'text/plain', 'uil' => 'text/x-uil', 'uni' => 'text/uri-list', 'unis' => 'text/uri-list', 'unv' => 'application/i-deas', 'uri' => 'text/uri-list', 'uris' => 'text/uri-list', 'ustar' => 'application/x-ustar', 'uu' => 'application/octet-stream', 'uue' => 'text/x-uuencode', 'vcd' => 'application/x-cdlink', 'vcs' => 'text/x-vCalendar', 'vda' => 'application/vda', 'vdo' => 'video/vdo', 'vew' => 'application/groupwise', 'viv' => 'video/vivo', 'vivo' => 'video/vivo', 'vmd' => 'application/vocaltec-media-desc', 'vmf' => 'application/vocaltec-media-file', 'voc' => 'audio/voc', 'vos' => 'video/vosaic', 'vox' => 'audio/voxware', 'vqe' => 'audio/x-twinvq-plugin', 'vqf' => 'audio/x-twinvq', 'vql' => 'audio/x-twinvq-plugin', 'vrml' => 'application/x-vrml', 'vrt' => 'x-world/x-vrt', 'vsd' => 'application/x-visio', 'vst' => 'application/x-visio', 'vsw' => 'application/x-visio', 'w60' => 'application/wordperfect6.0', 'w61' => 'application/wordperfect6.1', 'w6w' => 'application/msword', 'wav' => 'audio/wav', 'wb1' => 'application/x-qpro', 'wbmp' => 'image/vnd.wap.wbmp', 'web' => 'application/vnd.xara', 'wiz' => 'application/msword', 'wk1' => 'application/x-123', 'wmf' => 'windows/metafile', 'wml' => 'text/vnd.wap.wml', 'wmlc' => 'application/vnd.wap.wmlc', 'wmls' => 'text/vnd.wap.wmlscript', 'wmlsc' => 'application/vnd.wap.wmlscriptc', 'word' => 'application/msword', 'wp' => 'application/wordperfect', 'wp5' => 'application/wordperfect', 'wp6' => 'application/wordperfect', 'wpd' => 'application/wordperfect', 'wq1' => 'application/x-lotus', 'wri' => 'application/mswrite', 'wrl' => 'model/vrml', 'wrz' => 'model/vrml', 'wsc' => 'text/scriplet', 'wsrc' => 'application/x-wais-source', 'wtk' => 'application/x-wintalk', 'xbm' => 'image/xbm', 'xdr' => 'video/x-amt-demorun', 'xgz' => 'xgl/drawing', 'xif' => 'image/vnd.xiff', 'xl' => 'application/excel', 'xla' => 'application/excel', 'xlb' => 'application/excel', 'xlc' => 'application/excel', 'xld' => 'application/excel', 'xlk' => 'application/excel', 'xll' => 'application/excel', 'xlm' => 'application/excel', 'xls' => 'application/excel', 'xlt' => 'application/excel', 'xlv' => 'application/excel', 'xlw' => 'application/excel', 'xlw' => 'application/x-excel', 'xm' => 'audio/xm', 'xml' => 'text/xml', 'xmz' => 'xgl/movie', 'xpix' => 'application/x-vnd.ls-xpix', 'xpm' => 'image/xpm', 'x-png' => 'image/png', 'xsr' => 'video/x-amt-showrun', 'xwd' => 'image/x-xwd', 'xyz' => 'chemical/x-pdb', 'z' => 'application/x-compress', 'zip' => 'application/zip', 'zoo' => 'application/octet-stream', 'zsh' => 'text/x-script.zsh' ); }}

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.0150.00718.43
8.3.60.0110.00718.20
8.3.50.0130.00921.92
8.3.40.0000.01518.90
8.3.30.0030.01719.07
8.3.20.0000.00820.30
8.3.10.0030.00523.60
8.3.00.0030.00717.63
8.2.180.0130.00616.63
8.2.170.0150.00022.96
8.2.160.0110.00320.65
8.2.150.0060.00324.18
8.2.140.0000.00824.66
8.2.130.0040.00426.16
8.2.120.0040.00422.27
8.2.110.0030.00620.42
8.2.100.0040.00818.03
8.2.90.0000.00819.09
8.2.80.0040.00417.97
8.2.70.0030.00617.63
8.2.60.0080.00017.93
8.2.50.0030.00618.07
8.2.40.0050.00319.76
8.2.30.0000.00718.11
8.2.20.0050.00317.78
8.2.10.0000.00818.15
8.2.00.0060.00617.72
8.1.280.0140.00725.92
8.1.270.0100.00623.97
8.1.260.0050.00326.35
8.1.250.0050.00328.09
8.1.240.0090.00023.96
8.1.230.0070.00419.35
8.1.220.0000.00817.74
8.1.210.0040.00418.77
8.1.200.0060.00317.23
8.1.190.0040.00417.35
8.1.180.0000.00818.10
8.1.170.0080.00018.58
8.1.160.0040.00422.16
8.1.150.0030.00518.98
8.1.140.0000.00717.47
8.1.130.0070.00017.97
8.1.120.0000.00717.52
8.1.110.0030.00617.44
8.1.100.0050.00317.52
8.1.90.0000.00917.46
8.1.80.0040.00417.45
8.1.70.0070.00017.45
8.1.60.0030.00617.58
8.1.50.0050.00317.63
8.1.40.0030.00617.59
8.1.30.0060.00317.68
8.1.20.0040.00417.73
8.1.10.0030.00517.48
8.1.00.0030.00617.50
8.0.300.0000.00818.77
8.0.290.0030.00516.88
8.0.280.0000.00718.49
8.0.270.0040.00417.42
8.0.260.0060.00017.22
8.0.250.0000.00716.98
8.0.240.0070.00017.05
8.0.230.0040.00416.86
8.0.220.0000.00716.89
8.0.210.0070.00016.88
8.0.200.0070.00016.94
8.0.190.0040.00417.00
8.0.180.0030.00616.90
8.0.170.0030.00616.97
8.0.160.0040.00417.02
8.0.150.0000.00716.91
8.0.140.0080.00016.89
8.0.130.0060.00013.39
8.0.120.0050.00115.13
8.0.110.0050.00215.11
8.0.100.0040.00315.13
8.0.90.0000.00715.18
8.0.80.0070.00415.12
8.0.70.0010.00615.09
8.0.60.0020.00515.05
8.0.50.0050.00215.14
8.0.30.0080.00816.02
8.0.20.0090.00916.05
8.0.10.0030.00315.26
8.0.00.0110.00315.64
7.4.330.0020.00215.00
7.4.320.0000.00616.57
7.4.300.0000.00716.54
7.4.290.0000.00716.56
7.4.280.0080.00016.43
7.4.270.0030.00316.64
7.4.260.0040.00716.45
7.4.250.0050.00114.91
7.4.240.0020.00515.47
7.4.230.0050.00215.03
7.4.220.0060.00814.92
7.4.210.0070.00314.94
7.4.200.0070.00214.88
7.4.190.0080.00413.48
7.4.180.0070.00013.35
7.4.160.0020.01014.98
7.4.150.0090.00315.31
7.4.140.0090.00616.29
7.4.130.0080.00614.80
7.4.120.0030.01215.38
7.4.110.0070.00814.73
7.4.100.0060.00714.98
7.4.90.0030.01114.81
7.4.80.0040.00816.30
7.4.70.0090.00314.77
7.4.60.0080.00514.82
7.4.50.0040.00414.81
7.4.40.0050.00914.80
7.4.30.0020.01014.75
7.4.20.0070.00313.13
7.4.10.0050.00513.12
7.4.00.0070.00514.02
7.3.330.0030.00313.10
7.3.320.0000.00513.12
7.3.310.0010.00614.82
7.3.300.0040.00414.73
7.3.290.0100.00314.79
7.3.280.0060.01115.53
7.3.270.0060.00815.30
7.3.260.0080.00514.70
7.3.250.0020.00513.30
7.3.240.0070.00714.84
7.3.230.0050.00814.82
7.3.220.0030.00313.09
7.3.210.0080.00314.84
7.3.200.0050.00916.23
7.3.190.0080.00614.70
7.3.180.0090.00314.77
7.3.170.0050.00714.85
7.3.160.0060.00614.88
7.3.150.0070.00313.18
7.3.140.0070.00013.32
7.3.130.0070.00013.17
7.3.120.0000.00613.02
7.3.110.0000.00713.19
7.3.100.0040.00413.17
7.3.90.0030.00313.52
7.3.80.0000.00613.28
7.3.70.0040.00413.31
7.3.60.0070.00013.30
7.3.50.0040.00213.41
7.3.40.0030.00313.43
7.3.30.0030.00313.36
7.3.20.0030.00315.04
7.3.10.0060.00014.98
7.3.00.0030.00314.99
7.2.340.0090.00413.07
7.2.330.0110.00514.79
7.2.320.0090.00714.90
7.2.310.0120.00514.99
7.2.300.0080.00915.00
7.2.290.0100.00714.93
7.2.280.0100.00313.10
7.2.270.0090.00313.36
7.2.260.0090.00313.27
7.2.250.0090.00413.11
7.2.240.0110.00213.28
7.2.230.0070.00513.25
7.2.220.0100.00313.14
7.2.210.0080.00513.25
7.2.200.0090.00513.24
7.2.190.0050.00813.37
7.2.180.0110.00013.40
7.2.170.0100.00313.51
7.2.160.0080.00413.30
7.2.150.0100.00315.07
7.2.140.0060.00615.18
7.2.130.0100.00315.13
7.2.120.0090.00415.16
7.2.110.0060.00615.18
7.2.100.0080.00415.22
7.2.90.0130.00015.03
7.2.80.0090.00315.14
7.2.70.0090.00415.01
7.2.60.0080.00615.84
7.2.50.0140.00015.13
7.2.40.0130.00015.04
7.2.30.0070.00615.13
7.2.20.0080.00515.25
7.2.10.0130.00015.03
7.2.00.0100.00217.18
7.1.330.0060.00613.93
7.1.320.0080.00514.16
7.1.310.0090.00314.01
7.1.300.0130.00014.03
7.1.290.0120.00014.03
7.1.280.0100.00214.07
7.1.270.0060.00514.23
7.1.260.0120.00013.97
7.1.250.0100.00314.11
7.1.240.0070.00514.09
7.1.230.0070.00513.99
7.1.220.0090.00313.98
7.1.210.0130.00014.19
7.1.200.0110.00214.95
7.1.190.0060.00614.25
7.1.180.0090.00414.14
7.1.170.0080.00414.12
7.1.160.0110.00214.07
7.1.150.0120.00014.14
7.1.140.0100.00314.11
7.1.130.0050.00814.25
7.1.120.0060.00614.14
7.1.110.0120.00014.07
7.1.100.0060.00516.04
7.1.90.0120.00013.92
7.1.80.0080.00414.09
7.1.70.0060.00415.51
7.1.60.0090.00916.74
7.1.50.0070.01015.41
7.1.40.0060.00614.20
7.1.30.0070.00714.07
7.1.20.0080.00413.91
7.1.10.0120.00014.09
7.1.00.0050.04118.17
7.0.330.0060.00613.99
7.0.320.0040.00813.81
7.0.310.0080.00313.97
7.0.300.0060.00613.88
7.0.290.0040.00914.00
7.0.280.0100.00214.03
7.0.270.0060.00614.02
7.0.260.0060.00613.88
7.0.250.0090.00314.02
7.0.240.0080.00414.01
7.0.230.0000.01214.06
7.0.220.0100.00313.89
7.0.210.0080.00414.08
7.0.200.0060.00415.36
7.0.190.0060.00614.12
7.0.180.0120.00014.10
7.0.170.0080.00414.12
7.0.160.0100.00313.97
7.0.150.0070.00513.84
7.0.140.0090.03518.05
7.0.130.0090.00313.95
7.0.120.0110.00013.96
7.0.110.0060.00613.99
7.0.100.0090.00314.08
7.0.90.0080.00413.93
7.0.80.0120.00013.88
7.0.70.0090.00313.98
7.0.60.0060.04516.90
7.0.50.0040.04515.94
7.0.40.0050.02417.02
7.0.30.0290.01817.08
7.0.20.0140.04117.04
7.0.10.0080.03917.05
7.0.00.0110.04117.08
5.6.400.0060.00612.63
5.6.390.0060.00612.65
5.6.380.0120.00012.70
5.6.370.0070.00612.59
5.6.360.0120.00012.53
5.6.350.0120.00012.59
5.6.340.0080.00312.53
5.6.330.0080.00412.59
5.6.320.0110.00012.52
5.6.310.0060.00612.64
5.6.300.0080.00412.32
5.6.290.0080.00412.64
5.6.280.0060.03916.86
5.6.270.0060.00612.74
5.6.260.0090.00312.61
5.6.250.0060.00612.51
5.6.240.0080.00412.73
5.6.230.0040.00812.62
5.6.220.0100.00212.59
5.6.210.0050.04116.86
5.6.200.0090.02015.61
5.6.190.0100.01916.62
5.6.180.0210.03416.77
5.6.170.0180.04016.67
5.6.160.0090.04516.59
5.6.150.0060.02315.62
5.6.140.0130.03015.53
5.6.130.0060.02815.52
5.6.120.0100.04416.95
5.6.110.0040.02616.94
5.6.100.0090.04316.91
5.6.90.0110.04216.94
5.6.80.0090.03016.59
5.6.70.0090.00412.84
5.6.60.0110.00012.76
5.6.50.0060.00612.69
5.6.40.0090.00212.64
5.6.30.0110.00012.63
5.6.20.0000.01112.40
5.6.10.0070.00412.43
5.6.00.0110.00012.66
5.5.380.0120.00012.70
5.5.370.0040.00712.84
5.5.360.0080.00412.40
5.5.350.0100.04216.48
5.5.340.0080.04115.45
5.5.330.0060.02216.45
5.5.320.0180.02516.50
5.5.310.0180.03116.39
5.5.300.0060.04515.35
5.5.290.0110.03815.29
5.5.280.0110.04016.64
5.5.270.0000.05316.68
5.5.260.0070.04516.71
5.5.250.0080.04516.60
5.5.240.0130.04116.50
5.5.230.0080.00312.66
5.5.220.0060.00612.68
5.5.210.0110.00012.77
5.5.200.0080.00412.37
5.5.190.0120.00012.51
5.5.180.0060.00612.54
5.5.170.0080.00412.52
5.5.160.0110.00012.29
5.5.150.0070.00512.31
5.5.140.0080.00512.25
5.5.130.0060.00612.25
5.5.120.0090.00212.36
5.5.110.0100.00212.25
5.5.100.0080.00312.59
5.5.90.0060.00612.68
5.5.80.0060.00612.42
5.5.70.0040.00812.48
5.5.60.0080.00312.58
5.5.50.0050.00512.65
5.5.40.0070.00412.66
5.5.30.0120.00012.72
5.5.20.0030.00812.64
5.5.10.0070.00412.36
5.5.00.0080.00312.56
5.4.450.0410.02516.13
5.4.440.0200.03016.06
5.4.430.0440.03415.97
5.4.420.0370.00216.03
5.4.410.0350.00315.90
5.4.400.0370.00015.99
5.4.390.0370.00015.78
5.4.380.0350.00315.85
5.4.370.0340.00215.83
5.4.360.0400.00315.78
5.4.350.0340.00115.86
5.4.340.0040.02212.33
5.4.330.0080.00412.64
5.4.320.0070.02012.61
5.4.310.0060.02312.68
5.4.300.0090.01812.68
5.4.290.0070.02112.61
5.4.280.0070.02112.63
5.4.270.0070.02112.62
5.4.260.0080.02012.50
5.4.250.0050.02312.59
5.4.240.0040.02312.51
5.4.230.0060.02112.41
5.4.220.0050.02212.38
5.4.210.0060.02912.42
5.4.200.0080.02812.47
5.4.190.0100.02512.50
5.4.180.0080.02012.46
5.4.170.0080.02012.45
5.4.160.0040.03012.53
5.4.150.0060.02112.52
5.4.140.0080.02112.41
5.4.130.0080.01812.37
5.4.120.0070.02112.37
5.4.110.0090.02112.39
5.4.100.0100.02412.36
5.4.90.0090.02412.34
5.4.80.0100.02212.43
5.4.70.0100.02212.39
5.4.60.0060.02012.45
5.4.50.0080.02212.41
5.4.40.0040.02212.38
5.4.30.0080.01912.32
5.4.20.0050.02212.44
5.4.10.0060.02012.38
5.4.00.0070.02012.08
5.3.290.0060.02812.97
5.3.280.0100.01812.74
5.3.270.0100.02212.79
5.3.260.0040.03312.81
5.3.250.0090.02012.79
5.3.240.0040.02312.85
5.3.230.0070.02312.75
5.3.220.0070.02012.72
5.3.210.0070.02112.86
5.3.200.0080.01912.85
5.3.190.0090.01912.86
5.3.180.0070.02012.79
5.3.170.0070.01912.84
5.3.160.0100.01812.95
5.3.150.0090.01712.91
5.3.140.0080.02212.79
5.3.130.0120.02512.75
5.3.120.0080.02512.77
5.3.110.0090.02212.78
5.3.100.0100.02112.57
5.3.90.0030.02512.50
5.3.80.0060.02612.44
5.3.70.0060.02112.48
5.3.60.0060.02312.60
5.3.50.0090.02112.49
5.3.40.0080.02112.38
5.3.30.0080.02312.46
5.3.20.0070.03012.40
5.3.10.0090.02512.18
5.3.00.0060.02212.17
5.2.170.0080.02010.59
5.2.160.0080.01410.65
5.2.150.0040.01910.61
5.2.140.0090.01410.66
5.2.130.0060.01510.60
5.2.120.0060.01610.55
5.2.110.0050.02210.53
5.2.100.0050.01910.53
5.2.90.0050.01710.63
5.2.80.0060.01610.57
5.2.70.0060.01610.47
5.2.60.0060.01710.52
5.2.50.0050.01810.46
5.2.40.0060.01710.46
5.2.30.0040.02010.43
5.2.20.0040.02310.49
5.2.10.0050.01910.41
5.2.00.0040.02010.19
5.1.60.0030.0209.48
5.1.50.0070.0179.48
5.1.40.0050.0199.55
5.1.30.0070.0159.76
5.1.20.0030.0209.83
5.1.10.0050.0219.73
5.1.00.0080.0169.52
5.0.50.0080.0148.63
5.0.40.0060.0128.56
5.0.30.0050.0338.47
5.0.20.0050.0148.46
5.0.10.0060.0138.44
5.0.00.0050.0208.44
4.4.90.0040.0137.63
4.4.80.0020.0097.63
4.4.70.0030.0097.62
4.4.60.0050.0077.62
4.4.50.0030.0147.63
4.4.40.0010.0247.60
4.4.30.0020.0127.63
4.4.20.0030.0097.67
4.4.10.0040.0077.67
4.4.00.0030.0167.63
4.3.110.0040.0087.58
4.3.100.0010.0127.58
4.3.90.0070.0137.56
4.3.80.0050.0197.54
4.3.70.0030.0107.56
4.3.60.0020.0127.56
4.3.50.0030.0117.56
4.3.40.0030.0137.51
4.3.30.0020.0086.90
4.3.20.0020.0096.89
4.3.10.0030.0096.87
4.3.00.0080.0158.76

preferences:
69.65 ms | 401 KiB | 5 Q