3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * webconfig Helper * @author Danny Nunez 300development@gmail.com */ class WebConfig { /** * @Description - Provide a multi-demensional array to parse and create a web.config file. The base settings are from the web.config examples at https://github.com/h5bp/server-configs * @param Array - Mulit-Demensional $paths * EXAMPLE: * Old URL New URL * $redirects array = ('orgUrl' => 'http://example.com/oldurl' , 'redirect' => 'http://example.com/newurl' ); * */ public function create($paths) { $webConfig = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><configuration></configuration>'); // add 404 http error block // start <system.webServer> $_404 = $webConfig->addChild('system.webServer'); $error_mode = $_404->addChild('httpErrors'); $error_mode->addAttribute('errorMode', 'Custom'); $error_mode->addAttribute('existingResponse', 'Replace'); $remove = $error_mode->addChild('remove'); $remove->addAttribute('statusCode', '404'); $remove->addAttribute('subStatusCode', '-1'); $error = $error_mode->addChild('error'); $error->addAttribute('statusCode', '404'); $error->addAttribute('prefixLanguageFilePath', ''); $error->addAttribute('path', '/404.php'); $error->addAttribute('responseMode', 'ExecuteURL'); // add url rewrite to remove index.php $rewrite = $_404->addChild('rewrite'); $rules = $rewrite->addChild('rules'); $rule = $rules->addChild('rule'); $rule->addAttribute('name', 'Imported Rule 1'); $rule->addAttribute('stopProcessing', 'true'); $match = $rule->addChild('match'); $match->addAttribute('url', '^(.*)$'); $match->addAttribute('ignoreCase', 'false'); $conditions = $rule->addChild('conditions'); $conditions->addAttribute('logicalGrouping', 'MatchAll'); $add1 = $conditions->addChild('add'); $add1->addAttribute('input', '{REQUEST_FILENAME}'); $add1->addAttribute('matchType', 'IsFile'); $add1->addAttribute('ignoreCase', 'false'); $add1->addAttribute('negate', 'true'); $add2 = $conditions->addChild('add'); $add2->addAttribute('input', '{REQUEST_FILENAME}'); $add2->addAttribute('matchType', 'IsDirectory'); $add2->addAttribute('ignoreCase', 'false'); $add2->addAttribute('negate', 'true'); $action = $rule->addChild('action'); $action->addAttribute('type', 'Rewrite'); $action->addAttribute('url', 'index.php/{R:1}'); // http compression $httpCompression = $_404->addChild('httpCompression'); $httpCompression->addAttribute('directory', '%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files'); $scheme = $httpCompression->addChild('scheme'); $scheme->addAttribute('name', 'gzip'); $scheme->addAttribute('dll', '%Windir%\system32\inetsrv\gzip.dll'); // DynamicTypes unset($add1, $add2); $dynamicTypes = $httpCompression->addChild('dynamicTypes'); $add1 = $dynamicTypes->addChild('add'); $add1->addAttribute('mimeType', 'text/*'); $add1->addAttribute('enabled', 'true'); $add2 = $dynamicTypes->addChild('add'); $add2->addAttribute('mimeType', 'gzip'); $add2->addAttribute('enabled', 'true'); $add3 = $dynamicTypes->addChild('add'); $add3->addAttribute('mimeType', 'application/javascript'); $add3->addAttribute('enabled', 'true'); $add4 = $dynamicTypes->addChild('add'); $add4->addAttribute('mimeType', '*/*'); $add4->addAttribute('enabled', 'true'); // Static Types unset($add1, $add2, $add3, $add4); $staticTypes = $httpCompression->addChild('staticTypes'); $add1 = $staticTypes->addChild('add'); $add1->addAttribute('mimeType', 'text/*'); $add1->addAttribute('enabled', 'true'); $add2 = $dynamicTypes->addChild('add'); $add2->addAttribute('mimeType', 'gzip'); $add2->addAttribute('enabled', 'true'); $add3 = $dynamicTypes->addChild('add'); $add3->addAttribute('mimeType', 'application/javascript'); $add3->addAttribute('enabled', 'true'); $add4 = $dynamicTypes->addChild('add'); $add4->addAttribute('mimeType', '*/*'); $add4->addAttribute('enabled', 'true'); // url compression $urlCompression = $_404->addChild('urlCompression'); $urlCompression->addAttribute('doStaticCompression', 'true'); $urlCompression->addAttribute('doDynamicCompression', 'true'); // Static content $staticContent = $_404->addChild('staticContent'); $clientCache = $staticContent->addChild('clientCache'); $clientCache->addAttribute('cacheControlMode', 'UseMaxAge'); $clientCache->addAttribute('cacheControlMaxAge', '30.00:00:00'); // css $RemoveExt_css = $staticContent->addChild('remove'); $RemoveExt_css->addAttribute('fileExtension', '.css'); $mimeMap_css = $staticContent->addChild('mimeMap'); $mimeMap_css->addAttribute('fileExtension', '.css'); $mimeMap_css->addAttribute('mimeType', 'text/css'); // js $RemoveExt_js = $staticContent->addChild('remove'); $RemoveExt_js->addAttribute('fileExtension', '.js'); $mimeMap_js = $staticContent->addChild('mimeMap'); $mimeMap_js->addAttribute('fileExtension', '.js'); $mimeMap_js->addAttribute('mimeType', 'text/javascript'); // json $RemoveExt_json = $staticContent->addChild('remove'); $RemoveExt_json->addAttribute('fileExtension', '.json'); $mimeMap_json = $staticContent->addChild('mimeMap'); $mimeMap_json->addAttribute('fileExtension', '.json'); $mimeMap_json->addAttribute('mimeType', 'application/json'); // rss $RemoveExt_rss = $staticContent->addChild('remove'); $RemoveExt_rss->addAttribute('fileExtension', '.rss'); $mimeMap_rss = $staticContent->addChild('mimeMap'); $mimeMap_rss->addAttribute('fileExtension', '.rss'); $mimeMap_rss->addAttribute('mimeType', 'application/xml; charset=UTF-8'); // HTML5 Audio/Video mime types // mp3 $RemoveExt_mp3 = $staticContent->addChild('remove'); $RemoveExt_mp3->addAttribute('fileExtension', '.mp3'); $mimeMap_mp3 = $staticContent->addChild('mimeMap'); $mimeMap_mp3->addAttribute('fileExtension', '.mp3'); $mimeMap_mp3->addAttribute('mimeType', 'audio/mpeg'); // mp3 $RemoveExt_mp3 = $staticContent->addChild('remove'); $RemoveExt_mp3->addAttribute('fileExtension', '.mp3'); $mimeMap_mp3 = $staticContent->addChild('mimeMap'); $mimeMap_mp3->addAttribute('fileExtension', '.mp3'); $mimeMap_mp3->addAttribute('mimeType', 'audio/mpeg'); // mp4 $RemoveExt_mp4 = $staticContent->addChild('remove'); $RemoveExt_mp4->addAttribute('fileExtension', '.mp4'); $mimeMap_mp4 = $staticContent->addChild('mimeMap'); $mimeMap_mp4->addAttribute('fileExtension', '.mp4'); $mimeMap_mp4->addAttribute('mimeType', 'video/mp4'); // ogg $RemoveExt_ogg = $staticContent->addChild('remove'); $RemoveExt_ogg->addAttribute('fileExtension', '.ogg'); $mimeMap_ogg = $staticContent->addChild('mimeMap'); $mimeMap_ogg->addAttribute('fileExtension', '.ogg'); $mimeMap_ogg->addAttribute('mimeType', 'audio/ogg'); // ogv $RemoveExt_ogv = $staticContent->addChild('remove'); $RemoveExt_ogv->addAttribute('fileExtension', '.ogv'); $mimeMap_ogv = $staticContent->addChild('mimeMap'); $mimeMap_ogv->addAttribute('fileExtension', '.ogv'); $mimeMap_ogv->addAttribute('mimeType', 'video/ogg'); // webm $RemoveExt_webm = $staticContent->addChild('remove'); $RemoveExt_webm->addAttribute('fileExtension', '.webm'); $mimeMap_webm = $staticContent->addChild('mimeMap'); $mimeMap_webm->addAttribute('fileExtension', '.webm'); $mimeMap_webm->addAttribute('mimeType', 'video/webm'); // Proper svg serving. Required for svg webfonts on iPad // svg $RemoveExt_svg = $staticContent->addChild('remove'); $RemoveExt_svg->addAttribute('fileExtension', '.svg'); $mimeMap_svg = $staticContent->addChild('mimeMap'); $mimeMap_svg->addAttribute('fileExtension', '.svg'); $mimeMap_svg->addAttribute('mimeType', 'image/svg+xml'); //svgz $RemoveExt_svgz = $staticContent->addChild('remove'); $RemoveExt_svgz->addAttribute('fileExtension', '.svgz'); $mimeMap_svgz = $staticContent->addChild('mimeMap'); $mimeMap_svgz->addAttribute('fileExtension', '.svgz'); $mimeMap_svgz->addAttribute('mimeType', 'image/svg+xml'); // HTML4 Web font mime types // eot $RemoveExt_eot = $staticContent->addChild('remove'); $RemoveExt_eot->addAttribute('fileExtension', '.eot'); $mimeMap_eot = $staticContent->addChild('mimeMap'); $mimeMap_eot->addAttribute('fileExtension', '.eot'); $mimeMap_eot->addAttribute('mimeType', 'application/vnd.ms-fontobject'); // ttf $RemoveExt_ttf = $staticContent->addChild('remove'); $RemoveExt_ttf->addAttribute('fileExtension', '.ttf'); $mimeMap_ttf = $staticContent->addChild('mimeMap'); $mimeMap_ttf->addAttribute('fileExtension', '.ttf'); $mimeMap_ttf->addAttribute('mimeType', 'application/x-font-ttf'); // ttc $RemoveExt_ttc = $staticContent->addChild('remove'); $RemoveExt_ttc->addAttribute('fileExtension', '.ttc'); $mimeMap_ttc = $staticContent->addChild('mimeMap'); $mimeMap_ttc->addAttribute('fileExtension', '.ttc'); $mimeMap_ttc->addAttribute('mimeType', 'application/x-font-ttf'); // otf $RemoveExt_otf = $staticContent->addChild('remove'); $RemoveExt_otf->addAttribute('fileExtension', '.otf'); $mimeMap_otf = $staticContent->addChild('mimeMap'); $mimeMap_otf->addAttribute('fileExtension', '.otf'); $mimeMap_otf->addAttribute('mimeType', 'font/opentype'); // woff $RemoveExt_wotf = $staticContent->addChild('remove'); $RemoveExt_wotf->addAttribute('fileExtension', '.woff'); $mimeMap_wotf = $staticContent->addChild('mimeMap'); $mimeMap_wotf->addAttribute('fileExtension', '.woff'); $mimeMap_wotf->addAttribute('mimeType', 'application/font-woff'); // crx $RemoveExt_crx = $staticContent->addChild('remove'); $RemoveExt_crx->addAttribute('fileExtension', '.crx'); $mimeMap_crx = $staticContent->addChild('mimeMap'); $mimeMap_crx->addAttribute('fileExtension', '.crx'); $mimeMap_crx->addAttribute('mimeType', 'application/x-chrome-extension'); // xpi $RemoveExt_xpi = $staticContent->addChild('remove'); $RemoveExt_xpi->addAttribute('fileExtension', '.xpi'); $mimeMap_xpi = $staticContent->addChild('mimeMap'); $mimeMap_xpi->addAttribute('fileExtension', '.xpi'); $mimeMap_xpi->addAttribute('mimeType', 'application/x-xpinstall'); // xpi $RemoveExt_xpi = $staticContent->addChild('remove'); $RemoveExt_xpi->addAttribute('fileExtension', '.xpi'); $mimeMap_xpi = $staticContent->addChild('mimeMap'); $mimeMap_xpi->addAttribute('fileExtension', '.xpi'); $mimeMap_xpi->addAttribute('mimeType', 'application/x-xpinstall'); // safariextz $RemoveExt_safariextz = $staticContent->addChild('remove'); $RemoveExt_safariextz->addAttribute('fileExtension', '.safariextz'); $mimeMap_safariextz = $staticContent->addChild('mimeMap'); $mimeMap_safariextz->addAttribute('fileExtension', '.safariextz'); $mimeMap_safariextz->addAttribute('mimeType', 'application/octet-stream'); // Flash Video mime types // flv $RemoveExt_flv = $staticContent->addChild('remove'); $RemoveExt_flv->addAttribute('fileExtension', '.flv'); $mimeMap_flv = $staticContent->addChild('mimeMap'); $mimeMap_flv->addAttribute('fileExtension', '.flv'); $mimeMap_flv->addAttribute('mimeType', 'video/x-flv'); // fv4 $RemoveExt_f4v = $staticContent->addChild('remove'); $RemoveExt_f4v->addAttribute('fileExtension', '.f4v'); $mimeMap_f4v = $staticContent->addChild('mimeMap'); $mimeMap_f4v->addAttribute('fileExtension', '.f4v'); $mimeMap_f4v->addAttribute('mimeType', 'video/mp4'); // Asorted types // ico $RemoveExt_ico = $staticContent->addChild('remove'); $RemoveExt_ico->addAttribute('fileExtension', '.ico'); $mimeMap_ico = $staticContent->addChild('mimeMap'); $mimeMap_ico->addAttribute('fileExtension', '.ico'); $mimeMap_ico->addAttribute('mimeType', 'image/x-icon'); //webp $RemoveExt_webp = $staticContent->addChild('remove'); $RemoveExt_webp->addAttribute('fileExtension', '.webp'); $mimeMap_webp = $staticContent->addChild('mimeMap'); $mimeMap_webp->addAttribute('fileExtension', '.webp'); $mimeMap_webp->addAttribute('mimeType', 'image/webp'); //appcache $RemoveExt_appcache = $staticContent->addChild('remove'); $RemoveExt_appcache->addAttribute('fileExtension', '.appcache'); $mimeMap_appcache = $staticContent->addChild('mimeMap'); $mimeMap_appcache->addAttribute('fileExtension', '.appcache'); $mimeMap_appcache->addAttribute('mimeType', 'text/cache-manifest'); //appcache $RemoveExt_manifest = $staticContent->addChild('remove'); $RemoveExt_manifest->addAttribute('fileExtension', '.manifest'); $mimeMap_manifest = $staticContent->addChild('mimeMap'); $mimeMap_manifest->addAttribute('fileExtension', '.manifest'); $mimeMap_manifest->addAttribute('mimeType', 'text/cache-manifest'); // htc $RemoveExt_htc = $staticContent->addChild('remove'); $RemoveExt_htc->addAttribute('fileExtension', '.htc'); $mimeMap_htc = $staticContent->addChild('mimeMap'); $mimeMap_htc->addAttribute('fileExtension', '.htc'); $mimeMap_htc->addAttribute('mimeType', 'text/x-component'); // vcf $RemoveExt_vcf = $staticContent->addChild('remove'); $RemoveExt_vcf->addAttribute('fileExtension', '.vcf'); $mimeMap_vcf = $staticContent->addChild('mimeMap'); $mimeMap_vcf->addAttribute('fileExtension', '.vcf'); $mimeMap_vcf->addAttribute('mimeType', 'text/x-vcard'); // end </system.webServer> // add 404 custom error block // start <system.web> $_404 = $webConfig->addChild('system.web'); $error_mode = $_404->addChild('customErrors'); $error_mode->addAttribute('mode', 'on'); $error_mode->addAttribute('defaultRedirect', '/404.php'); $remove = $error_mode->addChild('error'); $remove->addAttribute('statusCode', '404'); $remove->addAttribute('redirect', '/404.php'); // end <system.web> // start all redirects // Old URL New URL // Example $redirects array = ('orgUrl' => 'http://example.com/oldurl' , 'redirect' => 'http://example.com/newurl' ); foreach ($redirects as $redirect) { $item = $webConfig->addChild('location'); $item->addAttribute('path', $redirect['orgUrl']); $webServer = $item->addChild('system.webServer'); $httpRedirect = $webServer->addChild('httpRedirect'); $httpRedirect->addAttribute('enabled', 'true'); $httpRedirect->addAttribute('destination', $redirect['redirect']); $httpRedirect->addAttribute('httpResponseStatus', 'Permanent'); } $webConfig->asXML('web.config'); return 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.60.0120.00318.16
8.3.50.0050.01222.05
8.3.40.0070.01118.84
8.3.30.0040.01219.04
8.3.20.0040.00420.48
8.3.10.0030.00522.10
8.3.00.0000.00822.51
8.2.180.0040.01116.75
8.2.170.0120.00922.96
8.2.160.0060.00919.22
8.2.150.0040.00424.18
8.2.140.0030.00524.66
8.2.130.0080.00026.16
8.2.120.0040.00419.11
8.2.110.0000.01022.11
8.2.100.0030.01017.91
8.2.90.0000.00819.28
8.2.80.0060.00317.97
8.2.70.0030.00617.63
8.2.60.0050.00518.05
8.2.50.0090.00018.07
8.2.40.0040.00418.28
8.2.30.0040.00418.29
8.2.20.0040.00417.80
8.2.10.0080.00017.90
8.2.00.0060.00317.78
8.1.280.0150.00325.92
8.1.270.0060.00322.50
8.1.260.0040.00426.35
8.1.250.0040.00428.09
8.1.240.0060.00320.80
8.1.230.0110.00017.64
8.1.220.0050.00317.74
8.1.210.0000.00818.77
8.1.200.0070.00317.48
8.1.190.0050.00317.63
8.1.180.0040.00418.71
8.1.170.0030.00518.91
8.1.160.0040.00422.21
8.1.150.0040.00418.70
8.1.140.0000.00917.50
8.1.130.0000.00717.95
8.1.120.0040.00417.62
8.1.110.0060.00317.55
8.1.100.0040.00417.61
8.1.90.0000.00817.64
8.1.80.0040.00417.50
8.1.70.0000.00817.57
8.1.60.0080.00017.62
8.1.50.0030.00617.68
8.1.40.0080.00017.54
8.1.30.0000.00917.82
8.1.20.0080.00017.70
8.1.10.0040.00417.55
8.1.00.0040.00417.51
8.0.300.0000.00918.77
8.0.290.0040.00416.75
8.0.280.0000.00718.53
8.0.270.0040.00417.41
8.0.260.0000.00716.93
8.0.250.0080.00017.10
8.0.240.0040.00417.13
8.0.230.0000.00717.11
8.0.220.0000.00717.09
8.0.210.0070.00017.10
8.0.200.0000.00617.09
8.0.190.0050.00217.13
8.0.180.0000.00717.07
8.0.170.0040.00417.04
8.0.160.0050.00317.02
8.0.150.0070.00016.99
8.0.140.0030.00616.97
8.0.130.0000.00613.57
8.0.120.0030.00616.89
8.0.110.0040.00417.05
8.0.100.0040.00416.98
8.0.90.0070.00016.94
8.0.80.0060.00917.10
8.0.70.0040.00417.16
8.0.60.0070.00016.87
8.0.50.0040.00416.87
8.0.30.0090.01017.24
8.0.20.0050.01517.44
8.0.10.0040.00417.22
8.0.00.0150.00716.84
7.4.330.0030.00315.00
7.4.320.0000.00616.74
7.4.300.0000.00816.67
7.4.290.0000.00816.74
7.4.280.0030.00516.77
7.4.270.0000.00716.67
7.4.260.0030.00716.73
7.4.250.0000.00816.48
7.4.240.0030.00416.69
7.4.230.0050.00216.73
7.4.220.0090.00916.60
7.4.210.0060.00916.83
7.4.200.0040.00416.78
7.4.190.0000.00916.81
7.4.160.0030.01316.82
7.4.150.0070.01017.40
7.4.140.0120.00817.86
7.4.130.0090.01516.60
7.4.120.0090.01016.75
7.4.110.0140.00316.72
7.4.100.0120.01216.68
7.4.90.0120.00616.50
7.4.80.0040.01519.39
7.4.70.0140.00916.56
7.4.60.0090.01516.69
7.4.50.0060.00016.39
7.4.40.0080.00422.77
7.4.30.0060.01316.80
7.4.00.0120.00314.80
7.3.330.0050.00013.45
7.3.320.0030.00313.42
7.3.310.0040.00416.33
7.3.300.0040.00416.31
7.3.290.0110.00616.50
7.3.280.0130.00316.40
7.3.270.0100.01317.40
7.3.260.0120.01216.49
7.3.250.0070.01116.55
7.3.240.0050.01316.48
7.3.230.0150.00316.64
7.3.210.0110.00716.69
7.3.200.0100.00719.39
7.3.190.0130.01016.79
7.3.180.0120.00416.53
7.3.170.0090.00916.44
7.3.160.0100.00616.45
7.3.120.0110.00415.18
7.2.330.0130.00716.81
7.2.320.0110.01116.79
7.2.310.0140.00616.41
7.2.300.0090.00916.72
7.2.290.0030.01316.77
7.2.60.0030.01216.60
7.1.200.0040.00815.55
7.1.70.0060.00617.05
7.1.60.0070.00719.82
7.1.50.0150.00416.90
7.1.00.0030.09022.42
7.0.200.0000.00716.79
7.0.140.0070.07322.19
7.0.100.0530.07720.16
7.0.90.0500.08720.17
7.0.80.0570.06720.23
7.0.70.0430.04720.25
7.0.60.0570.07320.20
7.0.50.0470.08320.62
7.0.40.0000.09020.14
7.0.30.0130.08020.11
7.0.20.0030.08720.18
7.0.10.0130.07320.10
7.0.00.0230.06720.10
5.6.280.0000.07721.13
5.6.250.0270.03320.71
5.6.240.0130.03720.66
5.6.230.0100.07720.81
5.6.220.0130.07720.77
5.6.210.0070.08320.70
5.6.200.0030.08321.17
5.6.190.0130.08021.09
5.6.180.0100.08021.20
5.6.170.0100.07321.20
5.6.160.0100.08321.08
5.6.150.0070.08021.18
5.6.140.0100.08321.15
5.6.130.0070.08321.22
5.6.120.0030.08721.19
5.6.110.0070.08321.02
5.6.100.0170.05721.23
5.6.90.0130.06021.23
5.6.80.0030.07020.53
5.6.70.0100.03320.60
5.6.60.0030.04020.63
5.6.50.0000.05020.65
5.6.40.0070.04020.61
5.6.30.0030.07720.53
5.6.20.0030.04320.52
5.6.10.0030.04020.54
5.6.00.0030.04020.59
5.5.380.0130.07720.51
5.5.370.0070.08020.54
5.5.360.0130.07720.54
5.5.350.0070.08320.54
5.5.340.0070.05320.93
5.5.330.0030.05721.05
5.5.320.0100.08020.95
5.5.310.0100.08021.05
5.5.300.0200.07321.03
5.5.290.0130.07720.98
5.5.280.0100.08321.06
5.5.270.0030.05720.93
5.5.260.0130.08021.05
5.5.250.0130.07320.83
5.5.240.0030.04720.36
5.5.230.0070.04720.34
5.5.220.0170.03320.25
5.5.210.0000.05720.43
5.5.200.0100.04020.28
5.5.190.0070.04720.39
5.5.180.0070.03720.30
5.5.160.0070.04720.33
5.5.150.0100.06020.25
5.5.140.0070.04320.41
5.5.130.0070.03720.23
5.5.120.0030.04020.32
5.5.110.0030.03720.29
5.5.100.0100.05320.22
5.5.90.0070.04020.30
5.5.80.0030.06320.21
5.5.70.0070.03720.21
5.5.60.0070.04020.21
5.5.50.0000.04320.30
5.5.40.0000.06320.19
5.5.30.0070.04720.23
5.5.20.0070.03720.07
5.5.10.0000.04320.19
5.5.00.0000.07020.05
5.4.450.0070.07719.62
5.4.440.0030.08319.43
5.4.430.0170.07019.35
5.4.420.0070.09019.22
5.4.410.0100.06319.29
5.4.400.0070.03719.03
5.4.390.0170.05318.93
5.4.380.0100.03318.96
5.4.370.0100.03319.03
5.4.360.0070.03719.04
5.4.350.0000.04319.18
5.4.340.0070.04019.25
5.4.320.0030.04019.03
5.4.310.0030.05019.29
5.4.300.0000.04019.19
5.4.290.0030.04019.11
5.4.280.0100.07319.18
5.4.270.0030.05319.12
5.4.260.0070.04319.19
5.4.250.0000.03719.05
5.4.240.0030.07319.25
5.4.230.0030.04019.11
5.4.220.0070.03319.08
5.4.210.0100.07319.10
5.4.200.0000.03719.10
5.4.190.0100.05319.25
5.4.180.0130.03319.10
5.4.170.0070.03318.91
5.4.160.0000.05719.08
5.4.150.0030.04018.95
5.4.140.0070.03316.53
5.4.130.0000.03716.31
5.4.120.0000.03716.53
5.4.110.0030.03316.50
5.4.100.0070.03316.48
5.4.90.0000.04016.59
5.4.80.0070.05716.49
5.4.70.0030.06016.55
5.4.60.0070.03716.43
5.4.50.0100.07016.43
5.4.40.0030.04716.51
5.4.30.0000.08016.52
5.4.20.0100.07016.39
5.4.10.0000.05316.56
5.4.00.0070.07015.83
5.3.290.0100.03714.93
5.3.280.0030.03714.71
5.3.270.0070.03314.69
5.3.260.0000.03714.84
5.3.250.0000.03714.66
5.3.240.0030.05714.77
5.3.230.0070.04314.86
5.3.220.0070.03714.77
5.3.210.0000.04014.84
5.3.200.0000.04314.73
5.3.190.0000.03714.68
5.3.180.0100.06014.72
5.3.170.0030.03714.76
5.3.160.0030.04014.68
5.3.150.0030.03314.82
5.3.140.0100.07314.61
5.3.130.0130.07014.66
5.3.120.0100.04714.73
5.3.110.0100.07314.71
5.3.100.0100.07314.18
5.3.90.0000.07714.26
5.3.80.0100.07314.24
5.3.70.0100.06014.20
5.3.60.0100.07014.25
5.3.50.0200.06713.99
5.3.40.0100.06313.99
5.3.30.0030.07014.02
5.3.20.0030.06713.84
5.3.10.0100.06013.78
5.3.00.0130.06313.75

preferences:
41.43 ms | 401 KiB | 5 Q