3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * @package dompdf * @link http://dompdf.github.com/ * @author Benj Carson <benjcarson@digitaljunkies.ca> * @author Helmut Tischer <htischer@weihenstephan.org> * @author Fabien Ménager <fabien.menager@gmail.com> * @autho Brian Sweeney <eclecticgeek@gmail.com> * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ if ( class_exists( 'DOMPDF' , false ) ) { return; } PHP_VERSION >= 5.0 or die("DOMPDF requires PHP 5.0+"); /** * The root of your DOMPDF installation */ define("DOMPDF_DIR", str_replace(DIRECTORY_SEPARATOR, '/', realpath(dirname(__FILE__)))); /** * The location of the DOMPDF include directory */ define("DOMPDF_INC_DIR", DOMPDF_DIR . "/include"); /** * The location of the DOMPDF lib directory */ define("DOMPDF_LIB_DIR", DOMPDF_DIR . "/lib"); /** * Some installations don't have $_SERVER['DOCUMENT_ROOT'] * http://fyneworks.blogspot.com/2007/08/php-documentroot-in-iis-windows-servers.html */ if( !isset($_SERVER['DOCUMENT_ROOT']) ) { $path = ""; if ( isset($_SERVER['SCRIPT_FILENAME']) ) $path = $_SERVER['SCRIPT_FILENAME']; elseif ( isset($_SERVER['PATH_TRANSLATED']) ) $path = str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']); $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($path, 0, 0-strlen($_SERVER['PHP_SELF']))); } /** Include the custom config file if it exists */ if ( file_exists(DOMPDF_DIR . "/dompdf_config.custom.inc.php") ){ require_once(DOMPDF_DIR . "/dompdf_config.custom.inc.php"); } //FIXME: Some function definitions rely on the constants defined by DOMPDF. However, might this location prove problematic? require_once(DOMPDF_INC_DIR . "/functions.inc.php"); /** * Username and password used by the configuration utility in www/ */ def("DOMPDF_ADMIN_USERNAME", "user"); def("DOMPDF_ADMIN_PASSWORD", "password"); /** * The location of the DOMPDF font directory * * The location of the directory where DOMPDF will store fonts and font metrics * Note: This directory must exist and be writable by the webserver process. * *Please note the trailing slash.* * * Notes regarding fonts: * Additional .afm font metrics can be added by executing load_font.php from command line. * * Only the original "Base 14 fonts" are present on all pdf viewers. Additional fonts must * be embedded in the pdf file or the PDF may not display correctly. This can significantly * increase file size unless font subsetting is enabled. Before embedding a font please * review your rights under the font license. * * Any font specification in the source HTML is translated to the closest font available * in the font directory. * * The pdf standard "Base 14 fonts" are: * Courier, Courier-Bold, Courier-BoldOblique, Courier-Oblique, * Helvetica, Helvetica-Bold, Helvetica-BoldOblique, Helvetica-Oblique, * Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic, * Symbol, ZapfDingbats. */ def("DOMPDF_FONT_DIR", DOMPDF_DIR . "/lib/fonts/"); /** * The location of the DOMPDF font cache directory * * This directory contains the cached font metrics for the fonts used by DOMPDF. * This directory can be the same as DOMPDF_FONT_DIR * * Note: This directory must exist and be writable by the webserver process. */ def("DOMPDF_FONT_CACHE", DOMPDF_FONT_DIR); /** * The location of a temporary directory. * * The directory specified must be writeable by the webserver process. * The temporary directory is required to download remote images and when * using the PFDLib back end. */ def("DOMPDF_TEMP_DIR", sys_get_temp_dir()); /** * ==== IMPORTANT ==== * * dompdf's "chroot": Prevents dompdf from accessing system files or other * files on the webserver. All local files opened by dompdf must be in a * subdirectory of this directory. DO NOT set it to '/' since this could * allow an attacker to use dompdf to read any files on the server. This * should be an absolute path. * This is only checked on command line call by dompdf.php, but not by * direct class use like: * $dompdf = new DOMPDF(); $dompdf->load_html($htmldata); $dompdf->render(); $pdfdata = $dompdf->output(); */ def("DOMPDF_CHROOT", realpath(DOMPDF_DIR)); /** * Whether to use Unicode fonts or not. * * When set to true the PDF backend must be set to "CPDF" and fonts must be * loaded via load_font.php. * * When enabled, dompdf can support all Unicode glyphs. Any glyphs used in a * document must be present in your fonts, however. */ def("DOMPDF_UNICODE_ENABLED", true); /** * Whether to enable font subsetting or not. */ def("DOMPDF_ENABLE_FONTSUBSETTING", false); /** * The PDF rendering backend to use * * Valid settings are 'PDFLib', 'CPDF' (the bundled R&OS PDF class), 'GD' and * 'auto'. 'auto' will look for PDFLib and use it if found, or if not it will * fall back on CPDF. 'GD' renders PDFs to graphic files. {@link * Canvas_Factory} ultimately determines which rendering class to instantiate * based on this setting. * * Both PDFLib & CPDF rendering backends provide sufficient rendering * capabilities for dompdf, however additional features (e.g. object, * image and font support, etc.) differ between backends. Please see * {@link PDFLib_Adapter} for more information on the PDFLib backend * and {@link CPDF_Adapter} and lib/class.pdf.php for more information * on CPDF. Also see the documentation for each backend at the links * below. * * The GD rendering backend is a little different than PDFLib and * CPDF. Several features of CPDF and PDFLib are not supported or do * not make any sense when creating image files. For example, * multiple pages are not supported, nor are PDF 'objects'. Have a * look at {@link GD_Adapter} for more information. GD support is * experimental, so use it at your own risk. * * @link http://www.pdflib.com * @link http://www.ros.co.nz/pdf * @link http://www.php.net/image */ def("DOMPDF_PDF_BACKEND", "CPDF"); /** * PDFlib license key * * If you are using a licensed, commercial version of PDFlib, specify * your license key here. If you are using PDFlib-Lite or are evaluating * the commercial version of PDFlib, comment out this setting. * * @link http://www.pdflib.com * * If pdflib present in web server and auto or selected explicitely above, * a real license code must exist! */ //def("DOMPDF_PDFLIB_LICENSE", "your license key here"); /** * html target media view which should be rendered into pdf. * List of types and parsing rules for future extensions: * http://www.w3.org/TR/REC-html40/types.html * screen, tty, tv, projection, handheld, print, braille, aural, all * Note: aural is deprecated in CSS 2.1 because it is replaced by speech in CSS 3. * Note, even though the generated pdf file is intended for print output, * the desired content might be different (e.g. screen or projection view of html file). * Therefore allow specification of content here. */ def("DOMPDF_DEFAULT_MEDIA_TYPE", "screen"); /** * The default paper size. * * North America standard is "letter"; other countries generally "a4" * * @see CPDF_Adapter::PAPER_SIZES for valid sizes */ def("DOMPDF_DEFAULT_PAPER_SIZE", "letter"); /** * The default font family * * Used if no suitable fonts can be found. This must exist in the font folder. * @var string */ def("DOMPDF_DEFAULT_FONT", "serif"); /** * Image DPI setting * * This setting determines the default DPI setting for images and fonts. The * DPI may be overridden for inline images by explictly setting the * image's width & height style attributes (i.e. if the image's native * width is 600 pixels and you specify the image's width as 72 points, * the image will have a DPI of 600 in the rendered PDF. The DPI of * background images can not be overridden and is controlled entirely * via this parameter. * * For the purposes of DOMPDF, pixels per inch (PPI) = dots per inch (DPI). * If a size in html is given as px (or without unit as image size), * this tells the corresponding size in pt at 72 DPI. * This adjusts the relative sizes to be similar to the rendering of the * html page in a reference browser. * * In pdf, always 1 pt = 1/72 inch * * Rendering resolution of various browsers in px per inch: * Windows Firefox and Internet Explorer: * SystemControl->Display properties->FontResolution: Default:96, largefonts:120, custom:? * Linux Firefox: * about:config *resolution: Default:96 * (xorg screen dimension in mm and Desktop font dpi settings are ignored) * * Take care about extra font/image zoom factor of browser. * * In images, <img> size in pixel attribute, img css style, are overriding * the real image dimension in px for rendering. * * @var int */ def("DOMPDF_DPI", 96); /** * Enable inline PHP * * If this setting is set to true then DOMPDF will automatically evaluate * inline PHP contained within <script type="text/php"> ... </script> tags. * * Enabling this for documents you do not trust (e.g. arbitrary remote html * pages) is a security risk. Set this option to false if you wish to process * untrusted documents. * * @var bool */ def("DOMPDF_ENABLE_PHP", false); /** * Enable inline Javascript * * If this setting is set to true then DOMPDF will automatically insert * JavaScript code contained within <script type="text/javascript"> ... </script> tags. * * @var bool */ def("DOMPDF_ENABLE_JAVASCRIPT", true); /** * Enable remote file access * * If this setting is set to true, DOMPDF will access remote sites for * images and CSS files as required. * This is required for part of test case www/test/image_variants.html through www/examples.php * * Attention! * This can be a security risk, in particular in combination with DOMPDF_ENABLE_PHP and * allowing remote access to dompdf.php or on allowing remote html code to be passed to * $dompdf = new DOMPDF(); $dompdf->load_html(...); * This allows anonymous users to download legally doubtful internet content which on * tracing back appears to being downloaded by your server, or allows malicious php code * in remote html pages to be executed by your server with your account privileges. * * @var bool */ def("DOMPDF_ENABLE_REMOTE", false); /** * The debug output log * @var string */ def("DOMPDF_LOG_OUTPUT_FILE", DOMPDF_FONT_DIR."log.htm"); /** * A ratio applied to the fonts height to be more like browsers' line height */ def("DOMPDF_FONT_HEIGHT_RATIO", 1.1); /** * Enable CSS float * * Allows people to disabled CSS float support * @var bool */ def("DOMPDF_ENABLE_CSS_FLOAT", false); /** * Enable the built in DOMPDF autoloader * * @var bool */ def("DOMPDF_ENABLE_AUTOLOAD", true); /** * Prepend the DOMPDF autoload function to the spl_autoload stack * * @var bool */ def("DOMPDF_AUTOLOAD_PREPEND", false); /** * Use the more-than-experimental HTML5 Lib parser */ def("DOMPDF_ENABLE_HTML5PARSER", false); require_once(DOMPDF_LIB_DIR . "/html5lib/Parser.php"); // ### End of user-configurable options ### /** * Load autoloader */ if (DOMPDF_ENABLE_AUTOLOAD) { require_once(DOMPDF_INC_DIR . "/autoload.inc.php"); require_once(DOMPDF_LIB_DIR . "/php-font-lib/classes/Font.php"); } /** * Ensure that PHP is working with text internally using UTF8 character encoding. */ mb_internal_encoding('UTF-8'); /** * Global array of warnings generated by DomDocument parser and * stylesheet class * * @var array */ global $_dompdf_warnings; $_dompdf_warnings = array(); /** * If true, $_dompdf_warnings is dumped on script termination when using * dompdf/dompdf.php or after rendering when using the DOMPDF class. * When using the class, setting this value to true will prevent you from * streaming the PDF. * * @var bool */ global $_dompdf_show_warnings; $_dompdf_show_warnings = false; /** * If true, the entire tree is dumped to stdout in dompdf.cls.php. * Setting this value to true will prevent you from streaming the PDF. * * @var bool */ global $_dompdf_debug; $_dompdf_debug = false; /** * Array of enabled debug message types * * @var array */ global $_DOMPDF_DEBUG_TYPES; $_DOMPDF_DEBUG_TYPES = array(); //array("page-break" => 1); /* Optionally enable different classes of debug output before the pdf content. * Visible if displaying pdf as text, * E.g. on repeated display of same pdf in browser when pdf is not taken out of * the browser cache and the premature output prevents setting of the mime type. */ def('DEBUGPNG', false); def('DEBUGKEEPTEMP', false); def('DEBUGCSS', false); /* Layout debugging. Will display rectangles around different block levels. * Visible in the PDF itself. */ def('DEBUG_LAYOUT', false); def('DEBUG_LAYOUT_LINES', true); def('DEBUG_LAYOUT_BLOCKS', true); def('DEBUG_LAYOUT_INLINE', true); def('DEBUG_LAYOUT_PADDINGBOX', true);

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.40.0090.00918.90
8.3.30.0110.00419.13
8.3.20.0030.00520.45
8.3.10.0000.00822.00
8.3.00.0040.00422.47
8.2.170.0110.00722.96
8.2.160.0140.00420.77
8.2.150.0000.00824.18
8.2.140.0080.00024.66
8.2.130.0050.00326.16
8.2.120.0120.00317.88
8.2.110.0090.00020.60
8.2.100.0090.00318.16
8.2.90.0040.00417.75
8.2.80.0060.00319.09
8.2.70.0060.00317.88
8.2.60.0040.00417.88
8.2.50.0000.00818.18
8.2.40.0040.00418.18
8.2.30.0000.00919.84
8.2.20.0060.00317.93
8.2.10.0080.00017.84
8.2.00.0080.00017.87
8.1.270.0080.00022.30
8.1.260.0040.00726.35
8.1.250.0130.00628.09
8.1.240.0000.00922.27
8.1.230.0080.00422.23
8.1.220.0040.00418.80
8.1.210.0050.00318.77
8.1.200.0030.00617.48
8.1.190.0070.00317.47
8.1.180.0050.00318.10
8.1.170.0020.00717.62
8.1.160.0050.00318.96
8.1.150.0050.00518.83
8.1.140.0080.00017.54
8.1.130.0030.00317.82
8.1.120.0040.00417.56
8.1.110.0000.00717.55
8.1.100.0040.00417.45
8.1.90.0000.00717.46
8.1.80.0000.00817.49
8.1.70.0000.00717.51
8.1.60.0040.00417.75
8.1.50.0030.00617.72
8.1.40.0030.00517.55
8.1.30.0080.00017.84
8.1.20.0030.00517.82
8.1.10.0060.00317.71
8.1.00.0000.00817.66
8.0.300.0040.00420.05
8.0.290.0040.00417.00
8.0.280.0020.00518.65
8.0.270.0040.00417.42
8.0.260.0070.00017.09
8.0.250.0070.00017.26
8.0.240.0000.00817.30
8.0.230.0000.00817.23
8.0.220.0030.00317.07
8.0.210.0070.00017.26
8.0.200.0000.00717.24
8.0.190.0040.00417.23
8.0.180.0050.00217.22
8.0.170.0030.00617.16
8.0.160.0000.00817.17
8.0.150.0000.00717.08
8.0.140.0070.00017.04
8.0.130.0050.00013.62
8.0.120.0050.00515.37
8.0.110.0060.00415.36
8.0.100.0060.00415.35
8.0.90.0080.00215.38
8.0.80.0120.00615.37
8.0.70.0020.00815.26
8.0.60.0100.00015.30
8.0.50.0080.00315.30
8.0.30.0100.00715.94
8.0.20.0130.00416.13
8.0.10.0060.00415.34
8.0.00.0060.01115.85
7.4.330.0050.00015.14
7.4.320.0070.00016.66
7.4.300.0040.00416.68
7.4.290.0080.00016.75
7.4.280.0000.00716.77
7.4.270.0040.00416.74
7.4.260.0030.00316.64
7.4.250.0020.00615.04
7.4.240.0080.00315.59
7.4.230.0090.00214.97
7.4.220.0130.00314.93
7.4.210.0070.00715.91
7.4.200.0080.00214.88
7.4.190.0080.00215.18
7.4.180.0070.00013.39
7.4.160.0070.00515.25
7.4.150.0060.00615.44
7.4.140.0090.00716.37
7.4.130.0060.00915.64
7.4.120.0110.00515.57
7.4.110.0070.00815.04
7.4.100.0050.00715.07
7.4.90.0040.00714.95
7.4.80.0080.00515.14
7.4.70.0080.00514.93
7.4.60.0050.00915.00
7.4.50.0040.00514.88
7.4.40.0050.00917.99
7.4.30.0030.01114.82
7.4.20.0050.00913.32
7.4.10.0140.00013.30
7.4.00.0070.00614.22
7.3.330.0050.00013.45
7.3.320.0030.00313.32
7.3.310.0080.00214.89
7.3.300.0090.00214.86
7.3.290.0070.00614.88
7.3.280.0060.01015.79
7.3.270.0080.00815.41
7.3.260.0130.00415.01
7.3.250.0110.00515.58
7.3.240.0050.01014.89
7.3.230.0120.00615.04
7.3.220.0080.00413.28
7.3.210.0100.00614.87
7.3.200.0150.00316.41
7.3.190.0140.00314.83
7.3.180.0060.01015.02
7.3.170.0120.00414.84
7.3.160.0090.00414.96
7.3.150.0000.00813.36
7.3.140.0000.00513.20
7.3.130.0050.00013.30
7.3.120.0000.01014.12
7.3.110.0060.00013.11
7.3.100.0030.00313.26
7.3.90.0030.00313.48
7.3.80.0020.00413.38
7.3.70.0030.00313.13
7.3.60.0050.00013.18
7.3.50.0000.00613.32
7.3.40.0000.00513.21
7.3.30.0050.00013.16
7.3.20.0030.00314.88
7.3.10.0060.00115.81
7.3.00.0020.00615.77
7.2.340.0100.00313.23
7.2.330.0130.00314.92
7.2.320.0070.00915.05
7.2.310.0070.00914.93
7.2.300.0070.00915.01
7.2.290.0090.00815.04
7.2.280.0080.00413.23
7.2.270.0090.00313.21
7.2.260.0130.00013.21
7.2.250.0040.00813.36
7.2.240.0130.00013.18
7.2.230.0080.00413.38
7.2.220.0070.00713.38
7.2.210.0100.00313.41
7.2.200.0100.00313.45
7.2.190.0140.00013.44
7.2.180.0090.00513.39
7.2.170.0120.00013.36
7.2.160.0090.00413.45
7.2.150.0130.00015.20
7.2.140.0040.00815.18
7.2.130.0060.00716.03
7.2.120.0100.00415.92
7.2.110.0070.00616.07
7.2.100.0080.00516.03
7.2.90.0050.00816.10
7.2.80.0090.00316.16
7.2.70.0050.00716.05
7.2.60.0090.00516.13
7.2.50.0110.00316.04
7.2.40.0060.00515.96
7.2.30.0090.00516.10
7.2.20.0040.01116.07
7.2.10.0100.00416.04
7.2.00.0080.00416.17
7.1.330.0100.00313.97
7.1.320.0040.00913.98
7.1.310.0090.00314.00
7.1.300.0090.00314.23
7.1.290.0120.00014.18
7.1.280.0080.00414.05
7.1.270.0130.00014.05
7.1.260.0120.00013.99
7.1.250.0040.00714.79
7.1.240.0110.00214.01
7.1.230.0120.00013.98
7.1.220.0090.00314.11
7.1.210.0090.00314.10
7.1.200.0080.00614.83
7.1.190.0040.00914.00
7.1.180.0080.00414.04
7.1.170.0040.00814.03
7.1.160.0070.00513.92
7.1.150.0000.01214.10
7.1.140.0130.00013.92
7.1.130.0100.00214.01
7.1.120.0090.00314.06
7.1.110.0120.00014.05
7.1.100.0040.00814.06
7.1.90.0090.00314.18
7.1.80.0130.00013.93
7.1.70.0080.00315.34
7.1.60.0120.00716.88
7.1.50.0060.01115.37
7.1.40.0080.00514.24
7.1.30.0070.00714.09
7.1.20.0080.00413.91
7.1.10.0000.01313.95
7.1.00.0060.04018.19
7.0.330.0130.00014.09
7.0.320.0060.00614.00
7.0.310.0100.00214.09
7.0.300.0080.00413.98
7.0.290.0060.00614.03
7.0.280.0080.00413.89
7.0.270.0060.00613.96
7.0.260.0090.00313.90
7.0.250.0100.00313.98
7.0.240.0090.00314.01
7.0.230.0080.00413.96
7.0.220.0070.00513.89
7.0.210.0060.00613.92
7.0.200.0070.00415.33
7.0.190.0090.00314.01
7.0.180.0060.00613.91
7.0.170.0070.00713.98
7.0.160.0120.00014.01
7.0.150.0090.00313.83
7.0.140.0090.03417.97
7.0.130.0120.00314.10
7.0.120.0110.00013.94
7.0.110.0080.00313.98
7.0.100.0000.01213.86
7.0.90.0090.00413.80
7.0.80.0060.00613.95
7.0.70.0100.00313.86
7.0.60.0080.02017.03
7.0.50.0100.04115.81
7.0.40.0050.02617.04
7.0.30.0260.03017.07
7.0.20.0200.03017.09
7.0.10.0090.04517.06
7.0.00.0060.02416.97
5.6.400.0080.00412.79
5.6.390.0090.00212.68
5.6.380.0080.00412.89
5.6.370.0120.00012.55
5.6.360.0090.00412.53
5.6.350.0130.00012.70
5.6.340.0040.00812.88
5.6.330.0000.01112.82
5.6.320.0080.00512.70
5.6.310.0040.00812.55
5.6.300.0120.00012.45
5.6.290.0130.00012.57
5.6.280.0070.03716.94
5.6.270.0110.00012.81
5.6.260.0090.00312.60
5.6.250.0060.00612.59
5.6.240.0090.00412.57
5.6.230.0080.00412.96
5.6.220.0100.00212.75
5.6.210.0060.03516.61
5.6.200.0140.03715.49
5.6.190.0070.04516.66
5.6.180.0230.02516.54
5.6.170.0170.04516.53
5.6.160.0050.02716.50
5.6.150.0130.04015.40
5.6.140.0080.03815.42
5.6.130.0090.03815.50
5.6.120.0090.02216.86
5.6.110.0080.04116.79
5.6.100.0100.02816.77
5.6.90.0080.02016.74
5.6.80.0110.03016.53
5.6.70.0110.00012.77
5.6.60.0090.00412.88
5.6.50.0120.00012.63
5.6.40.0120.00012.56
5.6.30.0070.00512.73
5.6.20.0040.00812.62
5.6.10.0100.00012.52
5.6.00.0000.01312.59
5.5.380.0050.00812.68
5.5.370.0120.00012.71
5.5.360.0120.00012.52
5.5.350.0100.03516.43
5.5.340.0090.04215.19
5.5.330.0130.02816.44
5.5.320.0180.04016.40
5.5.310.0170.03016.40
5.5.300.0100.03015.32
5.5.290.0100.04215.25
5.5.280.0080.02316.74
5.5.270.0100.02616.67
5.5.260.0090.02116.73
5.5.250.0070.04416.79
5.5.240.0090.04016.38
5.5.230.0070.00512.62
5.5.220.0130.00012.66
5.5.210.0070.00412.72
5.5.200.0040.00912.48
5.5.190.0040.00412.68
5.5.180.0000.00812.38
5.5.170.0070.00312.52
5.5.160.0060.00312.38
5.5.150.0080.00412.48
5.5.140.0080.00412.55
5.5.130.0090.00312.25
5.5.120.0000.00712.39
5.5.110.0050.00212.55
5.5.100.0000.00812.81
5.5.90.0090.00012.48
5.5.80.0080.00312.52
5.5.70.0110.00012.60
5.5.60.0040.00812.50
5.5.50.0000.00612.50
5.5.40.0060.00012.73
5.5.30.0060.00012.80
5.5.20.0000.00512.62
5.5.10.0020.00212.55
5.5.00.0060.00612.58
5.4.450.0260.03316.01
5.4.440.0100.02915.77
5.4.430.0120.02815.85
5.4.420.0050.03016.13
5.4.410.0060.03115.72
5.4.400.0100.02315.66
5.4.390.0050.02915.64
5.4.380.0140.03215.56
5.4.370.0060.03315.56
5.4.360.0140.02915.60
5.4.350.0080.03015.64
5.4.340.0100.02715.52
5.4.330.0040.00212.64
5.4.320.0050.01912.64
5.4.310.0030.02712.51
5.4.300.0070.02312.55
5.4.290.0080.02612.49
5.4.280.0060.02312.50
5.4.270.0050.02112.41
5.4.260.0060.02312.38
5.4.250.0050.02612.54
5.4.240.0070.01712.38
5.4.230.0030.02112.39
5.4.220.0070.02012.38
5.4.210.0070.01912.38
5.4.200.0090.01912.32
5.4.190.0070.01812.40
5.4.180.0060.01912.45
5.4.170.0050.02212.40
5.4.160.0050.02012.43
5.4.150.0080.02112.43
5.4.140.0070.02012.30
5.4.130.0050.02212.25
5.4.120.0070.02212.32
5.4.110.0080.02012.41
5.4.100.0080.02212.31
5.4.90.0080.01912.40
5.4.80.0050.02112.36
5.4.70.0080.01812.36
5.4.60.0030.02212.36
5.4.50.0090.01712.27
5.4.40.0070.01812.30
5.4.30.0080.01812.36
5.4.20.0060.01912.28
5.4.10.0070.01812.29
5.4.00.0070.01911.86
5.3.290.0060.02312.88
5.3.280.0060.02112.88
5.3.270.0040.02512.98
5.3.260.0080.02112.81
5.3.250.0050.02312.84
5.3.240.0090.01812.75
5.3.230.0060.02112.72
5.3.220.0090.01812.89
5.3.210.0050.02312.88
5.3.200.0050.02212.88
5.3.190.0070.02012.79
5.3.180.0090.01912.78
5.3.170.0090.02512.96
5.3.160.0050.02912.82
5.3.150.0070.02312.79
5.3.140.0100.02612.78
5.3.130.0080.02712.77
5.3.120.0070.02112.81
5.3.110.0080.02012.83
5.3.100.0060.02112.66
5.3.90.0080.01912.65
5.3.80.0080.01912.56
5.3.70.0040.02212.42
5.3.60.0060.02212.47
5.3.50.0050.02212.54
5.3.40.0100.01712.49
5.3.30.0050.02112.41
5.3.20.0070.01912.23
5.3.10.0070.01912.33
5.3.00.0090.01612.29
5.2.170.0070.01510.69
5.2.160.0040.01810.56
5.2.150.0080.01410.65
5.2.140.0040.01810.52
5.2.130.0060.01510.63
5.2.120.0050.01510.64
5.2.110.0060.01510.64
5.2.100.0050.01610.62
5.2.90.0050.01610.61
5.2.80.0070.02010.44
5.2.70.0060.01510.48
5.2.60.0040.01810.38
5.2.50.0070.01510.46
5.2.40.0070.01410.58
5.2.30.0060.01510.44
5.2.20.0060.01610.38
5.2.10.0050.01710.27
5.2.00.0060.01710.29
5.1.60.0070.0109.49
5.1.50.0050.0139.51
5.1.40.0050.0159.54
5.1.30.0050.0149.90
5.1.20.0040.0169.77
5.1.10.0040.0159.61
5.1.00.0030.0179.55
5.0.50.0020.0178.58
5.0.40.0040.0128.51
5.0.30.0020.0188.41
5.0.20.0040.0108.41
5.0.10.0030.0118.40
5.0.00.0020.0198.39
4.4.90.0020.0097.63
4.4.80.0050.0067.62
4.4.70.0020.0097.62
4.4.60.0020.0097.62
4.4.50.0020.0097.63
4.4.40.0040.0167.60
4.4.30.0020.0097.63
4.4.20.0010.0117.67
4.4.10.0030.0107.67
4.4.00.0010.0167.63
4.3.110.0030.0097.58
4.3.100.0020.0097.58
4.3.90.0030.0077.56
4.3.80.0020.0147.54
4.3.70.0020.0097.56
4.3.60.0010.0117.56
4.3.50.0020.0107.56
4.3.40.0020.0147.52
4.3.30.0010.0126.92
4.3.20.0020.0096.91
4.3.10.0010.0106.89
4.3.00.0080.0158.88

preferences:
42.51 ms | 400 KiB | 5 Q