3v4l.org

run code in 300+ PHP versions simultaneously
<?php if ($_SERVER["REQUEST_METHOD"] == "POST") { if (empty($_POST["CLASS"])) { $CLASS_Err = "* Customer Class is required"; } else { $CLASS = test_input($_POST["CLASS"]); } if (empty($_POST["UNITS"])) { $UNITS_Err = "* Units is required"; } else { $UNITS = test_input($_POST["UNITS"]); } if (empty($_POST["PUMPZONE"])) { $PUMPZONE_Err = "* Pump Zone is required"; } else { $PUMPZONE = test_input($_POST["PUMPZONE"]); } if (empty($_POST["METERSIZE"])) { $METERSIZE_Err = "* Meter Size is required"; } else { $METERSIZE = test_input($_POST["METERSIZE"]); } } function test_input($data) { $data = trim($data); $data = stripslashes($data); $data = htmlspecialchars($data); return $data; } ?> <form name="GETRATES" action="http://wvwdrates.com/bill-estimator" method="post"> <table> <tr><td> <table> <tr><td width="50%">Customer Class:</td><td width="50%"> <SELECT NAME="CLASS"> <OPTION VALUE="">Select One...</OPTION> <OPTION VALUE="R" <?php if ($_POST['CLASS'] == "R") echo 'selected="selected" '; ?>>Residential</OPTION> <OPTION VALUE="M" <?php if ($_POST['CLASS'] == "M") echo 'selected="selected" '; ?>>Multi-Family</OPTION> <OPTION VALUE="C" <?php if ($_POST['CLASS'] == "C") echo 'selected="selected" '; ?>>Non-Residential</OPTION> <OPTION VALUE="RC" <?php if ($_POST['CLASS'] == "RC") echo 'selected="selected" '; ?>>Recycled</OPTION> </SELECT><span class="error"> <?php echo $CLASS_Err;?></span> </td></tr> <tr><td>Units:</td><td><input value="<?php echo $UNITS;?>" name="UNITS" type="text" size="10" maxlength="10" /><span class="error"> <?php echo $UNITS_Err;?></span></td></tr> <tr><td width="50%">Pump Zone:</td><td width="50%"> <SELECT NAME="PUMPZONE"> <OPTION VALUE="">Select One...</OPTION> <OPTION VALUE="1" <?php if ($_POST['PUMPZONE'] == "1") echo 'selected="selected" '; ?>>1</OPTION> <OPTION VALUE="2" <?php if ($_POST['PUMPZONE'] == "2") echo 'selected="selected" '; ?>>2</OPTION> <OPTION VALUE="3" <?php if ($_POST['PUMPZONE'] == "3") echo 'selected="selected" '; ?>>3</OPTION> </SELECT><span class="error"> <?php echo $PUMPZONE_Err;?></span> </td></tr> <tr><td width="50%">Meter Size:</td><td width="50%"> <SELECT NAME="METERSIZE"> <OPTION VALUE="">Select One...</OPTION> <OPTION VALUE="5/8" <?php if ($_POST['METERSIZE'] == "5/8") echo 'selected="selected" '; ?>>5/8</OPTION> <OPTION VALUE="3/4" <?php if ($_POST['METERSIZE'] == "3/4") echo 'selected="selected" '; ?>>3/4</OPTION> <OPTION VALUE="1" <?php if ($_POST['METERSIZE'] == "1") echo 'selected="selected" '; ?>>1</OPTION> <OPTION VALUE="1 1/2" <?php if ($_POST['METERSIZE'] == "1 1/2") echo 'selected="selected" '; ?>>1 1/2</OPTION> <OPTION VALUE="2" <?php if ($_POST['METERSIZE'] == "2") echo 'selected="selected" '; ?>>2</OPTION> <OPTION VALUE="3" <?php if ($_POST['METERSIZE'] == "3") echo 'selected="selected" '; ?>>3</OPTION> <OPTION VALUE="4" <?php if ($_POST['METERSIZE'] == "4") echo 'selected="selected" '; ?>>4</OPTION> <OPTION VALUE="6" <?php if ($_POST['METERSIZE'] == "6") echo 'selected="selected" '; ?>>6</OPTION> <OPTION VALUE="8" <?php if ($_POST['METERSIZE'] == "8") echo 'selected="selected" '; ?>>8</OPTION> </SELECT><span class="error"> <?php echo $METERSIZE_Err;?></span> </td></tr> <tr><td align="left"> <input type="image" style="border:0px;" value="" src="http://wvwdrates.com/calculate.png"> </form></td> <td align="right"> <form name="RESET" action="http://wvwdrates.com/bill-estimator" method="post"> <input type="hidden" name="CLASS" value=""> <input type="hidden" name="UNITS" value=""> <input type="hidden" name="PUMPZONE" value=""> <input type="hidden" name="METERSIZE" value=""> <input type="submit" value="CLEAR"> </form></td> </tr></table> </td> </tr> </table> <BR><BR><BR> <? ///////// FORM INPUT ///////////////// $CLASS = $_POST['CLASS']; $UNITS = $_POST['UNITS']; $PUMPZONE = $_POST['PUMPZONE']; $METERSIZE = $_POST['METERSIZE']; ///////// STATIC DATA ///////////////// $commodity_new_tier1 = 2.69; $commodity_new_tier2 = 3.08; $commodity_new_tier3 = 3.08; $commodity_new_multi = 2.89; $commodity_new_comm = 2.95; $commodity_new_rec = 1.56; $commodity_current_tier1 = 2.46; $commodity_current_tier2 = 3.08; $commodity_current_tier3 = 3.08; $commodity_current_multi = 2.77; $commodity_current_comm = 2.81; $commodity_current_rec = 1.49; $pumpzone_new_zone1 = 0; $pumpzone_new_zone2 = 0.19; $pumpzone_new_zone3 = 0.36; $pumpzone_current_zone1 = 0; $pumpzone_current_zone2 = 0.19; $pumpzone_current_zone3 = 0.35; $meter_new_58 = 18.29; $meter_new_34 = 18.29; $meter_new_1 = 23.04; $meter_new_112 = 54.43; $meter_new_2 = 71.07; $meter_new_3 = 145.53; $meter_new_4 = 229.30; $meter_new_6 = 435.87; $meter_new_8 = 671.11; $meter_new_10 = 0; $meter_current_58 = 17.08; $meter_current_34 = 17.08; $meter_current_1 = 21.60; $meter_current_112 = 46.18; $meter_current_2 = 70.73; $meter_current_3 = 128.92; $meter_current_4 = 211.86; $meter_current_6 = 414.54; $meter_current_8 = 658.34; $meter_current_10 = 0; ///////// FORMULAS ///////////////// if ( $UNITS<=12 && $UNITS>=0) { $tier1=$UNITS; $tier2='N/A'; $tier3='N/A'; } else { $tier1='N/A'; } if ( $UNITS<=39 && $UNITS>=0) { $tier1=$UNITS; $tier2=27; $tier3='N/A'; } else { $tier1='N/A'; } if( $UNITS >=12 && $UNITS <=40) { $tier1=12; $tier2 = $UNITS-12; $tier3='N/A'; } else { $tier2='N/A'; } if ( $UNITS>=39 ) { $tier1=12; $tier2=27; $tier3=$UNITS-39; } else { $tier3='N/A'; } if ($_POST['METERSIZE']=='5/8') { $baserate_new = 18.29; $baserate_current = 17.08; } if ($_POST['METERSIZE']=='3/4') { $baserate_new = 18.29; $baserate_current = 17.08; } if ($_POST['METERSIZE']=='1') { $baserate_new = 23.04; $baserate_current = 21.60; } if ($_POST['METERSIZE']=='1 1/2') { $baserate_new = 54.43; $baserate_current = 46.18; } if ($_POST['METERSIZE']=='2') { $baserate_new = 71.07; $baserate_current = 70.73; } if ($_POST['METERSIZE']=='3') { $baserate_new = 145.53; $baserate_current = 128.92; } if ($_POST['METERSIZE']=='4') { $baserate_new = 229.30; $baserate_current = 211.86; } if ($_POST['METERSIZE']=='6') { $baserate_new = 435.87; $baserate_current = 414.54; } if ($_POST['METERSIZE']=='8') { $baserate_new = 671.11; $baserate_current = 658.34; } if ($CLASS == "R") { $newrate_tier1 = $tier1 * $commodity_new_tier1; $newrate_tier2 = $tier2 * $commodity_new_tier2; $newrate_tier3 = $tier3 * $commodity_new_tier3; $current_tier1 = $tier1 * $commodity_current_tier1; $current_tier2 = $tier2 * $commodity_current_tier2; $current_tier3 = $tier3 * $commodity_current_tier3; } if ($CLASS == "M") { $newrate_tier1 = $UNITS * $commodity_new_multi; $current_tier1 = $UNITS * $commodity_current_multi; $newrate_tier2 = 0; $current_tier2 = 0; $newrate_tier3 = 0; $current_tier3 = 0; } if ($CLASS == "C") { $newrate_tier1 = $UNITS * $commodity_new_comm; $current_tier1 = $UNITS * $commodity_current_comm; $newrate_tier2 = 0; $current_tier2 = 0; $newrate_tier3 = 0; $current_tier3 = 0; } if ($CLASS == "RC") { $newrate_tier1 = $UNITS * $commodity_new_rec; $current_tier1 = $UNITS * $commodity_current_rec; $newrate_tier2 = 0; $current_tier2 = 0; $newrate_tier3 = 0; $current_tier3 = 0; } if (empty($PUMPZONE)) { $newrate_pumpzone = 0; $current_pumpzone = 0; } if ($PUMPZONE == "1") { $newrate_pumpzone = 0; $current_pumpzone = 0; } if ($PUMPZONE == "2") { $newrate_pumpzone = $UNITS * $pumpzone_new_zone2; $current_pumpzone = $UNITS * $pumpzone_current_zone2; } if ($PUMPZONE == "3") { $newrate_pumpzone = $UNITS * $pumpzone_new_zone3; $current_pumpzone = $UNITS * $pumpzone_current_zone3; } if ($current_tier1>0){ $diff_tier1 = $newrate_tier1 - $current_tier1; $percent_tier1 = ($diff_tier1 / $current_tier1) * 100; } if ($current_tier2>0) { $diff_tier2 = $newrate_tier2 - $current_tier2; $percent_tier2 = ($diff_tier2 / $current_tier2) * 100; } if ($current_tier3>0) { $diff_tier3 = $newrate_tier3 - $current_tier3; $percent_tier3 = ($diff_tier3 / $current_tier3) * 100; } $diff_pumpzone = $newrate_pumpzone - $current_pumpzone; $total_new = $newrate_tier1 + $newrate_tier2 + $newrate_tier3 + $newrate_pumpzone; $total_current = $current_tier1 + $current_tier2 + $current_tier3 + $current_pumpzone; $total_diff = $diff_tier1 + $diff_tier2 + $diff_tier3 + $diff_pumpzone; if ($total_percent>0) { $total_percent = ($total_diff / $total_current) * 100; } if ($current_pumpzone>0) { $percent_pumpzone = ($diff_pumpzone / $current_pumpzone) * 100; } if ($diff_pumpzone<=0) { $current_pumpzone=0; $percent_pumpzone=0; } if ($_POST['UNITS']>0 && $_POST['PUMPZONE']>0 && $_POST['METERSIZE']>0) { $baserate_diff = $baserate_new - $baserate_current; $baserate_percent = ($baserate_diff / $baserate_current) * 100; $monthly_new = $total_new + $baserate_new; $monthly_current = $total_current + $baserate_current; $monthly_diff = $total_diff + $baserate_diff; $monthly_percent = ($monthly_diff / $monthly_current) * 100; } else { $baserate_new = ''; $baserate_current = ''; } if ($CLASS == "R") {$CLASS = "Residential";} if ($CLASS == "M") {$CLASS = "Multi-Family";} if ($CLASS == "C") {$CLASS = "COMM, IND., GOV, IRR";} if ($CLASS == "RC") {$CLASS = "Recycled";} ?> <body> <table> <tr> <td> <table> <tr> <td style="background-color:#9eb3cb !important;">Estimated Monthly Bill</td> <td style="background-color:#9eb3cb !important;">New Rate</td> <td style="background-color:#9eb3cb !important;">Current Rate</td> <td style="background-color:#9eb3cb !important;">Difference</td> <td style="background-color:#9eb3cb !important;">%</td> </tr> <tr> <td>Tier I &nbsp;&nbsp;&nbsp;&nbsp;(0-12)</td> <td align=right><? if ($newrate_tier1>0){ echo"$"; echo number_format($newrate_tier1,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($current_tier1>0){ echo"$"; echo number_format($current_tier1,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($diff_tier1>0){ echo"$"; echo number_format($diff_tier1,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($percent_tier1>0){ echo number_format($percent_tier1,2,'.',',');echo"%"; } else {echo"-";} ?></td> </tr> <tr> <td>Tier II &nbsp;&nbsp;&nbsp;(13-39)</td> <td align=right><? if ($newrate_tier2>0){ echo"$"; echo number_format($newrate_tier2,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($current_tier2>0){ echo"$"; echo number_format($current_tier2,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($diff_tier2>0){ echo"$"; echo number_format($diff_tier2,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($percent_tier2>0){ echo number_format($percent_tier21,2,'.',',');echo"%"; } else {echo"-";} ?></td> <tr> <td >Tier III &nbsp;&nbsp;(40+)</td> <td align=right><? if ($newrate_tier3>0){ echo"$"; echo number_format($newrate_tier3,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($current_tier3>0){ echo"$"; echo number_format($current_tier3,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($diff_tier3>0){ echo"$"; echo number_format($diff_tier3,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($percent_tier3>0){ echo number_format($percent_tier3,2,'.',',');echo"%"; } else {echo"-";} ?></td> </tr> <tr> <td>Pump Zone</td> <td align=right><? if ($newrate_pumpzone>0){ echo"$"; echo number_format($newrate_pumpzone,2,'.',',');} else {$newrate_pumpzone='-';} ?></td> <td align=right><? if ($current_pumpzone){ echo"$"; echo number_format($current_pumpzone,2,'.',',');} else {$current_pumpzone='-';} ?></td> <td align=right><? if ($diff_pumpzone>0){ echo"$"; echo number_format($diff_pumpzone,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($percent_pumpzone>0){ echo number_format($percent_pumpzone,2,'.',',');echo"%"; } else {echo"-";} ?></td> </tr> <tr> <td>Total Commodity Charges</td> <td align=right><? if ($total_new>0){ echo"$"; echo number_format($total_new,2,'.',',');} else {$total_new='-';} ?></td> <td align=right><? if ($total_current>0){ echo"$"; echo number_format($total_current,2,'.',',');} else {$total_current='-';} ?></td> <td align=right><? if ($total_diff>0){ echo"$"; echo number_format($total_diff,2,'.',',');} else {$total_diff='-';} ?></td> <td align=right><? if ($total_percent>0){ echo number_format($total_percent,2,'.',',');echo"%"; } else {$total_percent='-';} ?></td> </tr> <tr> <td>Base Rate</td> <td align=right><? if ($baserate_new>0){ echo"$"; echo number_format($baserate_new,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($baserate_current>0){ echo"$"; echo number_format($baserate_current,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($baserate_diff>0){ echo"$"; echo number_format($baserate_diff,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($baserate_percent>0){ echo number_format($baserate_percent,2,'.',',');echo"%"; } else {echo"-";} ?></td> </tr> <tr> <td>Total Month Charges</td> <td align=right><? if ($monthly_new>0){ echo"$"; echo number_format($monthly_new,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($monthly_current>0){ echo"$"; echo number_format($monthly_current,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($monthly_diff>0){ echo"$"; echo number_format($monthly_diff,2,'.',',');} else {echo"-";} ?></td> <td align=right><? if ($monthly_percent>0){ echo number_format($monthly_percent,2,'.',',');echo"%"; } else {echo"-";} ?></td> </tr> </table> </td> </tr> </table>

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.0140.00416.75
8.3.60.0090.00918.40
8.3.50.0090.01122.00
8.3.40.0140.00418.88
8.3.30.0130.00319.27
8.3.20.0040.00420.29
8.3.10.0050.00320.70
8.3.00.0040.00419.56
8.2.180.0190.00416.97
8.2.170.0110.00422.96
8.2.160.0070.01420.56
8.2.150.0050.00324.18
8.2.140.0040.00424.66
8.2.130.0040.00426.16
8.2.120.0040.00422.23
8.2.110.0090.00020.66
8.2.100.0090.00318.28
8.2.90.0050.00319.22
8.2.80.0000.00917.97
8.2.70.0040.00417.75
8.2.60.0000.00818.05
8.2.50.0030.00618.07
8.2.40.0050.00318.34
8.2.30.0060.00319.40
8.2.20.0040.00417.92
8.2.10.0050.00518.09
8.2.00.0000.00817.73
8.1.280.0220.00025.92
8.1.270.0090.00022.27
8.1.260.0040.00426.35
8.1.250.0040.00428.09
8.1.240.0000.00923.91
8.1.230.0060.00619.23
8.1.220.0000.00817.74
8.1.210.0030.00618.77
8.1.200.0070.00717.25
8.1.190.0040.00417.35
8.1.180.0040.00418.10
8.1.170.0000.00818.71
8.1.160.0000.00822.11
8.1.150.0080.00019.01
8.1.140.0000.00717.37
8.1.130.0050.00317.91
8.1.120.0040.00417.54
8.1.110.0030.00617.54
8.1.100.0000.00717.48
8.1.90.0050.00317.50
8.1.80.0040.00417.49
8.1.70.0030.00317.39
8.1.60.0070.00417.64
8.1.50.0000.00817.63
8.1.40.0030.00617.57
8.1.30.0030.00517.65
8.1.20.0040.00417.69
8.1.10.0040.00417.66
8.1.00.0040.00417.46
8.0.300.0050.00318.77
8.0.290.0040.00416.75
8.0.280.0000.00718.50
8.0.270.0040.00417.37
8.0.260.0040.00417.25
8.0.250.0050.00217.09
8.0.240.0000.00717.08
8.0.230.0040.00416.94
8.0.220.0040.00417.07
8.0.210.0030.00517.02
8.0.200.0040.00417.01
8.0.190.0060.00316.93
8.0.180.0000.00717.03
8.0.170.0080.00017.02
8.0.160.0000.00816.90
8.0.150.0050.00216.84
8.0.140.0030.00616.96
8.0.130.0030.00313.64
8.0.120.0000.00816.97
8.0.110.0000.00816.98
8.0.100.0040.00417.06
8.0.90.0040.00416.80
8.0.80.0060.01517.03
8.0.70.0000.00717.00
8.0.60.0020.00516.96
8.0.50.0000.00816.80
8.0.30.0080.01417.30
8.0.20.0080.01117.40
8.0.10.0000.00817.18
8.0.00.0080.01016.92
7.4.330.0050.00015.02
7.4.320.0000.00616.45
7.4.300.0030.00316.47
7.4.290.0000.00716.54
7.4.280.0070.00016.47
7.4.270.0000.00716.58
7.4.260.0070.00016.43
7.4.250.0080.00016.41
7.4.240.0040.00316.57
7.4.230.0040.00416.55
7.4.220.0110.00716.57
7.4.210.0060.01216.58
7.4.200.0000.00816.53
7.4.160.0130.00816.48
7.4.150.0070.01117.40
7.4.140.0140.00517.86
7.4.130.0100.01016.53
7.4.120.0140.00516.72
7.4.110.0090.00916.76
7.4.100.0070.01016.53
7.4.90.0140.00716.42
7.4.80.0130.01016.66
7.4.70.0160.00016.58
7.4.60.0110.01116.59
7.4.50.0000.00816.72
7.4.40.0130.00316.44
7.4.30.0080.00816.84
7.4.00.0070.00615.29
7.3.330.0060.00013.63
7.3.320.0030.00313.61
7.3.310.0040.00416.43
7.3.300.0000.00716.39
7.3.290.0070.00716.53
7.3.280.0100.00716.49
7.3.270.0070.01117.40
7.3.260.0100.01016.52
7.3.250.0050.01316.68
7.3.240.0100.01016.50
7.3.230.0040.01516.64
7.3.210.0090.00916.44
7.3.200.0070.01119.39
7.3.190.0090.00916.52
7.3.180.0120.00316.47
7.3.170.0120.00616.60
7.3.160.0090.00616.54
7.3.10.0040.00916.71
7.3.00.0110.00316.61
7.2.330.0110.01416.69
7.2.320.0120.01216.83
7.2.310.0030.01416.50
7.2.300.0090.01016.68
7.2.290.0100.00716.68
7.2.130.0040.01517.03
7.2.120.0000.01316.78
7.2.110.0100.00716.82
7.2.100.0080.00816.88
7.2.90.0070.00716.93
7.2.80.0090.00916.87
7.2.70.0070.00416.83
7.2.60.0040.01316.77
7.2.50.0070.01117.03
7.2.40.0000.01516.99
7.2.30.0080.00316.86
7.2.20.0100.00716.89
7.2.10.0110.00316.85
7.2.00.0030.01016.68
7.1.250.0090.00915.84
7.1.200.0060.00315.61
7.1.70.0070.00317.23
7.1.60.0140.01119.32
7.1.50.0100.01316.74
7.1.00.0030.07322.46
7.0.200.0110.00716.89
7.0.140.0000.07722.18
7.0.100.0030.04320.16
7.0.90.0030.04720.15
7.0.80.0130.04320.14
7.0.70.0030.04320.14
7.0.60.0200.04720.09
7.0.50.0070.04020.55
7.0.40.0130.07320.04
7.0.30.0130.07720.07
7.0.20.0000.08720.06
7.0.10.0030.06020.18
7.0.00.0100.05020.02
5.6.280.0070.07021.23
5.6.250.0000.04720.73
5.6.240.0030.04320.85
5.6.230.0030.04720.84
5.6.220.0000.04720.68
5.6.210.0100.03720.55
5.6.200.0030.04321.19
5.6.190.0070.08321.16
5.6.180.0070.08321.23
5.6.170.0030.07721.14
5.6.160.0100.07321.27
5.6.150.0070.07021.11
5.6.140.0100.07721.14
5.6.130.0100.07721.13
5.6.120.0070.06021.14
5.6.110.0070.07021.20
5.6.100.0070.07721.12
5.6.90.0130.07021.10
5.6.80.0070.08320.62
5.6.70.0070.06320.59
5.6.60.0070.07720.40
5.6.50.0100.09320.56
5.6.40.0170.06320.53
5.6.30.0030.04320.50
5.6.20.0030.06720.40
5.6.10.0070.04020.50
5.6.00.0070.07320.43
5.5.380.0000.04020.54
5.5.370.0030.04720.52
5.5.360.0100.03320.54
5.5.350.0070.04020.46
5.5.340.0130.03320.88
5.5.330.0100.08320.98
5.5.320.0070.08320.74
5.5.310.0130.08020.95
5.5.300.0100.07020.81
5.5.290.0030.07321.02
5.5.280.0070.08320.98
5.5.270.0030.04320.96
5.5.260.0070.08020.99
5.5.250.0030.07320.81
5.5.240.0100.04720.21
5.5.230.0100.06320.25
5.5.220.0030.04320.40
5.5.210.0070.07720.23
5.5.200.0130.07320.29
5.5.190.0170.06020.27
5.5.180.0070.05020.34
5.5.160.0070.04320.37
5.5.150.0200.06320.34
5.5.140.0000.04720.23
5.5.130.0070.08320.33
5.5.120.0130.07320.36
5.5.110.0000.05020.32
5.5.100.0030.06720.18
5.5.90.0100.07320.11
5.5.80.0070.04020.17
5.5.70.0030.04320.19
5.5.60.0030.07020.23
5.5.50.0030.04720.10
5.5.40.0100.04020.16
5.5.30.0100.07720.13
5.5.20.0100.04320.15
5.5.10.0030.05320.21
5.5.00.0100.07320.21
5.4.450.0000.08019.45
5.4.440.0100.07019.39
5.4.430.0030.08719.39
5.4.420.0130.07319.39
5.4.410.0000.07719.12
5.4.400.0030.06718.88
5.4.390.0030.06718.92
5.4.380.0100.06018.90
5.4.370.0030.07018.88
5.4.360.0000.05719.16
5.4.350.0070.07319.14
5.4.340.0100.07019.16
5.4.320.0070.07719.24
5.4.310.0070.03719.14
5.4.300.0070.07319.23
5.4.290.0100.06719.23
5.4.280.0030.04019.13
5.4.270.0100.03319.04
5.4.260.0100.07319.24
5.4.250.0170.06718.92
5.4.240.0100.04318.99
5.4.230.0070.03719.06
5.4.220.0100.06018.97
5.4.210.0100.06318.97
5.4.200.0170.05318.91
5.4.190.0000.05318.97
5.4.180.0100.06719.24
5.4.170.0070.04719.13
5.4.160.0030.05319.22
5.4.150.0100.05718.86
5.4.140.0070.07316.51
5.4.130.0070.03716.42
5.4.120.0070.03716.58
5.4.110.0100.05716.54
5.4.100.0070.03716.58
5.4.90.0000.06716.59
5.4.80.0030.04316.53
5.4.70.0100.06016.56
5.4.60.0070.07716.34
5.4.50.0030.06316.55
5.4.40.0070.07016.38
5.4.30.0030.08016.51
5.4.20.0070.07016.54
5.4.10.0000.06316.52
5.4.00.0030.05715.78

preferences:
44.17 ms | 401 KiB | 5 Q