3v4l.org

run code in 300+ PHP versions simultaneously
<?php foreach ($funcionarios as $func) { $valorDissidio = Configuracao::retrieveByPk("VALOR_DISSIDIO"); $ajusteSalarial = ($func->getAjusteSalarial())?$func->getAjusteSalarial():0; $salarioReajustado[$func->getMes()] = PessoaFuncionario::calcularSalario($func->getSalarioBase(), $func->getMes(), $valorDissidio->getConfValor(), $ajusteSalarial); $salarioReajustadoRevisao[$func->getMes()] = PessoaFuncionario::calcularSalario($func->getSalarioBaseRevisao(), $func->getMes(), $valorDissidio->getConfValor(), $ajusteSalarial); $horaExtra[$func->getMes()] = $func->getHoraExtra(); $anuenioTrienio[$func->getMes()] = PessoaFuncionario::calcularAnuenioTrienio($func->getMes(), $func->getAdmissao()); $valorAnuenioTrienio[$func->getMes()] = $salarioReajustado[$func->getMes()] * ($anuenioTrienio[$func->getMes()] / 100); $remuneracao[$func->getMes()] = PessoaFuncionario::calcularRemuneracao($salarioReajustado[$func->getMes()], $valorAnuenioTrienio[$func->getMes()], $horaExtra[$func->getMes()], $func->getOutroGanho()); $decimoTerceiro[$func->getMes()] = PessoaFuncionario::calcularDecimoTerceiro($func->getMes(), $salarioReajustado, $horaExtra); $ferias[$func->getMes()] = PessoaFuncionario::calcularFerias($func->getMes(), $salarioReajustado); $salarioB += $salarioReajustado[$func->getMes()]; $salarioR += $salarioReajustadoRevisao[$func->getMes()]; $salarioD += $salarioR - $salarioB; $decimoB += $decimoTerceiro[$func->getMes()]; $decimoR += $decimoB; $decimoD = $decimoR - $decimoB; $feriasB += $ferias[$func->getMes()]; $feriasR += $feriasB; $feriasD = $feriasR - $feriasB; $fgtsB += PessoaFuncionario::calcularFGTS($remuneracao[$func->getMes()], $ferias[$func->getMes()], $decimoTerceiro[$func->getMes()]); $fgtsR += $fgtsB; $fgtsD = $feriasR - $fgtsB; } foreach ($resultados as $resutl){ $contaResult[$resutl->getContaCodigo()]['revisao'] += $resutl->getRevisao(); $contaResult[$resutl->getContaCodigo()]['base'] += $resutl->getBase(); $contaResult[$resutl->getContaCodigo()]['dif'] += $resutl->getBase() - $resutl->getRevisao(); foreach ($contasGastosGerais as $gastos) { if($resutl->getContaCodigo() == $gastos->getCodigo()){ $contaResult['gastosBase'] += $resutl->getBase(); $contaResult['gastosRevisao'] += $resutl->getRevisao(); } } foreach ($contasFolhas as $folhas) { if($resutl->getContaCodigo() == $folhas->getCodigo()){ $contaResult['folhasBase'] += $resutl->getBase() + $feriasB + $fgtsB + $decimoB + $salarioB; $contaResult['folhasRevisao'] += $resutl->getRevisao() + $feriasR + $fgtsR + $decimoR + $salarioR; } } foreach ($contasCursos as $cursos) { foreach ($contasAdministrativas as $adm) { if( $cursos->getCodigo() == $adm->getCodigo()){ $contaResult['receitaBase'] += $resutl->getBase(); $contaResult['receitaRevisao'] += $resutl->getRevisao(); } } } $contaResult['resultadoBase'] += $resutl->getBase() + $feriasB + $fgtsB + $decimoB + $salarioB; $contaResult['resultadoRevisao'] += $resutl->getRevisao() + $feriasR + $fgtsR + $decimoR + $salarioR; } $statusAprovacao = $acesso->getObjetoUr()->getStatusAprovacaoCodigo(); $acessoPessoa = $acesso->getTipoAcessoCodigo(); $nomeStatusAprovacao = $acesso->getObjetoUr()->getStatusAprovacao()->getNome(); $tipoAcesso = $acesso->getTipoAcesso()->getNome(); ?> <div style="margin-top:50px;"> <div class="tableInf"> <h1 >Sumário</h1> <table class="tableInf"> <thead> <tr> <th>#</th> <th>Nome</th> <th>Codigo</th> <th>Tipo</th> <th>Acesso</th> <th>Status</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">1</td> <td style="text-align: left;"><?= $urDefault->getNome()?></td> <td style="text-align: left;"><?= $urDefault->getCodigo()?></td> <td style="text-align: left;"><?= $urDefault->getTipo()?></td> <td style="text-align: left;"><?= $tipoAcesso?></td> <td style="text-align: left;"><?= $nomeStatusAprovacao?></td> </tr> </tbody> </table> </div> <div style="width: 100%; margin-top:50px; "> <div style="width:50%; margin: auto;" class='tableInf'> <h1 >COMPARATIVO</h1> <table class='tableInf'> <thead> <tr> <th>#</th> <th>Base Atual</th> <th>Revisão</th> <th>Dif</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">Receita</td> <td><?= NumberUtils::format($contaResult['receitaBase']);?></td> <td><?= NumberUtils::format($contaResult['receitaRevisao']);?></td> <td><?= NumberUtils::format($contaResult['receitaRevisao'] - $contaResult['receitaBase']);?></td> </tr> <tr> <td style="text-align: left;">Folha</td> <td><?= NumberUtils::format($contaResult['folhasBase']);?></td> <td><?= NumberUtils::format($contaResult['folhasRevisao']);?></td> <td><?= NumberUtils::format($contaResult['folhasRevisao'] - $contaResult['folhasBase']);?></td> </tr> <tr> <td style="text-align: left;">Gastos Gerais</td> <td><?= NumberUtils::format($contaResult['gastosBase']);?></td> <td><?= NumberUtils::format($contaResult['gastosRevisao']);?></td> <td><?= NumberUtils::format($contaResult['gastosRevisao'] - $contaResult['gastosBase']);?></td> </tr> <tr> <td style="text-align: left;">Resultado</td> <td><?= NumberUtils::format($contaResult['resultadoBase']);?></td> <td><?= NumberUtils::format($contaResult['resultadoRevisao']);?></td> <td><?= NumberUtils::format($contaResult['resultadoRevisao'] - $contaResult['resultadoBase']);?></td> </tr> </tbody> </table> </div> </div> <div style="width: 47%; margin-top:50px; float: left;" class='tableInf'> <h1>PLANILHA ORÇAMENTÁRIA DE GASTOS GERAIS</h1> <table class='tableInf'> <thead> <tr> <th>Descrição Conta</th> <th>Conta</th> <th>Após Revisão</th> <th>Base Inicial</th> <th>Dif</th> </tr> </thead> <tbody> <?php foreach ($contasGastosGerais as $gerais) {?> <tr> <td style="text-align: left;"><?= $gerais->getNome(); ?></td> <td><?= $gerais->getCodigo(); ?></td> <td><?= NumberUtils::format($contaResult[$gerais->getCodigo()]['revisao']) ?></td> <td><?= NumberUtils::format($contaResult[$gerais->getCodigo()]['base'])?></td> <td><?= NumberUtils::format($contaResult[$gerais->getCodigo()]['dif'])?></td> </tr> <?php }?> </tbody> </table> </div> <?php if($strictoMenu || $graduacaoMenu || $cauMenu || $eadMenu || $nelleMenu){?> <div style="width: 47%; margin-top:50px; float: right;" class='tableInf'> <h1>PLANILHA ORÇAMENTÁRIA DE FOLHAS</h1> <table class='tableInf'> <thead> <tr> <th>Descrição Conta</th> <th>Conta</th> <th>Após Revisão</th> <th>Base Inicial</th> <th>Dif</th> </tr> </thead> <tbody> <?php foreach ($contasFolhas as $folhas) { switch ($folhas->getCodigo()){ case 312101: $contaResult[$folhas->getCodigo()]['revisao'] += $salarioR; $contaResult[$folhas->getCodigo()]['base'] += $salarioB; $contaResult[$folhas->getCodigo()]['dif'] += $salarioD; break; case 312103: $contaResult[$folhas->getCodigo()]['revisao'] += $decimoR; $contaResult[$folhas->getCodigo()]['base'] += $decimoB; $contaResult[$folhas->getCodigo()]['dif'] += $decimoD; break; case 312104: $contaResult[$folhas->getCodigo()]['revisao'] += $feriasR; $contaResult[$folhas->getCodigo()]['base'] += $feriasB; $contaResult[$folhas->getCodigo()]['dif'] += $feriasD; break; case 312105: $contaResult[$folhas->getCodigo()]['revisao'] += $fgtsR; $contaResult[$folhas->getCodigo()]['base'] += $fgtsB; $contaResult[$folhas->getCodigo()]['dif'] += $fgtsD; break; } ?> <tr> <td style="text-align: left;"><?= $folhas->getNome(); ?></td> <td><?= $folhas->getCodigo(); ?></td> <td><?= NumberUtils::format($contaResult[$folhas->getCodigo()]['revisao'])?></td> <td><?= NumberUtils::format($contaResult[$folhas->getCodigo()]['base'])?></td> <td><?= NumberUtils::format($contaResult[$folhas->getCodigo()]['dif'])?></td> </tr> <?php }?> </tbody> </table> </div> <div style="width: 47%; margin-top:50px; float: right;" class='tableInf'> <h1>PLANILHA ORÇAMENTÁRIA DE CURSOS</h1> <table class='tableInf'> <thead> <tr> <th>Descrição Conta</th> <th>Conta</th> <th>Após Revisão</th> <th>Base Inicial</th> <th>Dif</th> </tr> </thead> <tbody> <?php foreach ($contasCursos as $cursos) {?> <tr> <td style="text-align: left;"><?= $cursos->getNome(); ?></td> <td><?= $cursos->getCodigo(); ?></td> <td><?= NumberUtils::format($contaResult[$cursos->getCodigo()]['revisao']) ?></td> <td><?= NumberUtils::format($contaResult[$cursos->getCodigo()]['base'])?></td> <td><?= NumberUtils::format($contaResult[$cursos->getCodigo()]['dif'])?></td> </tr> <?php }?> </tbody> </table> </div> <?php }?> <div style="width: 47%; margin-top:50px; float: right;" class='tableInf'> <h1>PLANILHA ORÇAMENTÁRIA DE ADMINISTRATIVO</h1> <table class='tableInf'> <thead> <tr> <th>Descrição Conta</th> <th>Conta</th> <th>Após Revisão</th> <th>Base Inicial</th> <th>Dif</th> </tr> </thead> <tbody> <?php foreach ($contasAdministrativas as $adimistrativo) {?> <tr> <td style="text-align: left;"><?= $adimistrativo->getNome(); ?></td> <td><?= $adimistrativo->getCodigo(); ?></td> <td><?= NumberUtils::format($contaResult[$adimistrativo->getCodigo()]['revisao']) ?></td> <td><?= NumberUtils::format($contaResult[$adimistrativo->getCodigo()]['base'])?></td> <td><?= NumberUtils::format($contaResult[$adimistrativo->getCodigo()]['dif'])?></td> </tr> <?php }?> </tbody> </table> </div> </div> <br class="clear" /> <div> <div id="divBotoes" class="left" style="margin-top: 50px;"> <div class="left button_space"> <div> <a href="index"> <input type="button" size="25" class="botao" style="float: left;" value="Voltar"> </a> </div> </div> <br clear="all"> </div> <div class="right"> <?php if($statusAprovacao == 1){ ?> <div id="divBotoes" class="left" style="margin-top: 50px;"> <div class="left button_space"> <div> <input type="button" size="25" class="botao" style="float: left;" value="Enviar para Aprovação" id="aprovar"> </div> </div> <br /> </div> <?php } ?> <?php if($statusAprovacao > 1 && $statusAprovacao < 4 && $statusAprovacao <= $acessoPessoa){ ?> <div id="divBotoes" class="right" style="margin-top: 50px;"> <div class="left button_space"> <div style="width: 200px;"> <input type="button" size="25" class="botao" style="float: right;" value="Aprovar" id="aprovar"> <input type="button" size="25" class="botao" style="float: left;" value="Reprovar" id="reprovar"> </div> </div> <br /> </div> <?php } ?> </div> <br /><br /><br /> </div> <div id="form-justificativa" title="Justificativa" hidden="true"> <textarea rows="8" name="texto-justificativa" id="texto-justificativa"></textarea> </div> <script type="text/javascript"> $('#aprovar').click(function() { $("#form-justificativa").dialog({ width: 700, height: 200, modal: true, buttons: { "Salvar": function() { $("#texto-justificativa").val(); $(this).dialog("close"); salvarJustificativaAprovar($("#texto-justificativa").val()); }, "Cancelar": function() { $(this).dialog("close"); $("#texto-justificativa").val(''); } } }); moverCursorFinalTexto($('#texto-justificativa')); }); $('#reprovar').click(function() { $("#form-justificativa").dialog({ width: 700, height: 200, modal: true, buttons: { "Salvar": function() { $("#texto-justificativa").val(); $(this).dialog("close"); salvarJustificativaReprovar($("#texto-justificativa").val()); }, "Cancelar": function() { $(this).dialog("close"); $("#texto-justificativa").val(''); } } }); moverCursorFinalTexto($('#texto-justificativa')); }); function salvarJustificativaReprovar(nome, valor) { $.ajax({ url: "resumo/rejeitaOrAprova/status/rejeitar/ur/<?=$ur; ?>", type: "POST", async: true, data: {name: nome, valor: valor}, success: function(data){ window.location = "../index"; } }); } function salvarJustificativaAprovar(valor) { $.ajax({ url: "resumo/rejeitaOrAprova/status/aprovar/ur/<?=$ur; ?>", type: "POST", async: true, data: {valor: valor}, success: function(data){ window.location = "../index"; } }); } </script>

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.0080.00818.43
8.3.50.0130.00821.92
8.3.40.0120.00619.11
8.3.30.0070.00719.17
8.3.20.0030.00520.25
8.3.10.0120.00322.02
8.3.00.0050.00322.43
8.2.180.0160.00918.29
8.2.170.0090.00622.96
8.2.160.0070.00720.77
8.2.150.0050.00324.18
8.2.140.0080.00024.66
8.2.130.0030.00626.16
8.2.120.0100.00019.17
8.2.110.0070.00322.30
8.2.100.0080.00418.03
8.2.90.0000.00819.36
8.2.80.0000.00817.97
8.2.70.0050.00317.88
8.2.60.0070.00418.18
8.2.50.0030.00518.07
8.2.40.0080.00018.28
8.2.30.0040.00418.13
8.2.20.0060.00317.96
8.2.10.0040.00417.88
8.2.00.0060.00317.98
8.1.280.0090.00625.92
8.1.270.0050.00322.44
8.1.260.0050.00326.35
8.1.250.0000.00828.09
8.1.240.0030.00623.76
8.1.230.0000.01221.23
8.1.220.0000.00817.90
8.1.210.0090.00018.77
8.1.200.0030.00717.60
8.1.190.0040.00417.77
8.1.180.0030.00518.96
8.1.170.0040.00418.80
8.1.160.0040.00422.18
8.1.150.0040.00418.70
8.1.140.0030.00617.63
8.1.130.0000.00717.82
8.1.120.0020.00517.62
8.1.110.0060.00317.60
8.1.100.0070.00017.59
8.1.90.0000.00717.48
8.1.80.0000.00717.55
8.1.70.0040.00417.49
8.1.60.0080.00017.71
8.1.50.0060.00317.57
8.1.40.0000.00817.50
8.1.30.0060.00317.77
8.1.20.0090.00017.63
8.1.10.0000.00817.70
8.1.00.0000.00917.70
8.0.300.0050.00218.77
8.0.290.0040.00417.18
8.0.280.0070.00018.63
8.0.270.0050.00317.44
8.0.260.0070.00017.09
8.0.250.0000.00917.19
8.0.240.0040.00417.22
8.0.230.0070.00017.09
8.0.220.0000.00717.15
8.0.210.0000.00717.16
8.0.200.0090.00017.07
8.0.190.0040.00417.21
8.0.180.0000.00817.18
8.0.170.0030.00517.18
8.0.160.0040.00417.21
8.0.150.0000.00717.07
8.0.140.0050.00317.00
8.0.130.0030.00313.60
8.0.120.0040.00416.96
8.0.110.0080.00017.05
8.0.100.0080.00017.21
8.0.90.0040.00417.03
8.0.80.0090.01217.13
8.0.70.0030.00516.99
8.0.60.0000.00717.04
8.0.50.0060.00317.13
8.0.30.0100.01117.39
8.0.20.0090.01017.40
8.0.10.0050.00317.00
8.0.00.0110.00816.97
7.4.330.0050.00015.00
7.4.320.0000.00716.79
7.4.300.0000.00716.68
7.4.290.0030.00316.63
7.4.280.0030.00416.75
7.4.270.0000.00716.63
7.4.260.0000.00716.75
7.4.250.0030.00616.69
7.4.240.0050.00216.68
7.4.230.0040.00416.75
7.4.220.0140.01416.57
7.4.210.0080.01016.61
7.4.200.0000.00716.47
7.4.190.0050.00216.60
7.4.160.0050.01116.71
7.4.150.0070.01117.40
7.4.140.0150.00317.86
7.4.130.0100.00816.63
7.4.120.0090.00916.66
7.4.110.0090.00916.82
7.4.100.0120.00616.49
7.4.90.0090.01016.49
7.4.80.0130.00619.39
7.4.70.0130.01016.50
7.4.60.0040.01516.75
7.4.50.0030.00616.68
7.4.40.0040.01122.77
7.4.30.0120.00416.76
7.4.00.0110.00515.26
7.3.330.0030.00513.34
7.3.320.0030.00313.42
7.3.310.0080.00016.34
7.3.300.0000.00716.48
7.3.290.0120.00916.54
7.3.280.0130.00616.48
7.3.270.0120.00617.40
7.3.260.0130.00916.72
7.3.250.0120.01216.53
7.3.240.0120.00616.45
7.3.230.0140.01116.75
7.3.210.0030.01616.68
7.3.200.0110.00619.39
7.3.190.0130.00716.65
7.3.180.0100.01416.68
7.3.170.0130.00316.40
7.3.160.0140.00916.70
7.3.120.0050.01014.79
7.3.110.0070.01114.96
7.3.100.0060.00615.11
7.3.90.0150.00314.89
7.3.80.0070.01015.23
7.3.70.0070.00715.08
7.3.60.0090.00015.08
7.3.50.0090.00615.08
7.3.40.0000.01315.13
7.3.30.0080.00815.13
7.3.20.0100.00716.59
7.3.10.0040.01116.58
7.3.00.0070.00716.67
7.2.330.0090.01116.58
7.2.320.0130.00616.86
7.2.310.0080.00816.75
7.2.300.0030.01816.45
7.2.290.0060.01116.71
7.2.250.0000.01915.15
7.2.240.0060.01315.24
7.2.230.0070.00415.26
7.2.220.0000.01515.40
7.2.210.0150.00315.37
7.2.200.0100.00715.04
7.2.190.0030.01314.74
7.2.180.0040.00715.18
7.2.170.0130.00615.18
7.2.130.0000.01316.84
7.2.120.0070.01016.87
7.2.110.0060.00616.89
7.2.100.0000.01616.92
7.2.90.0060.00616.86
7.2.80.0070.00716.77
7.2.70.0040.00716.94
7.2.60.0070.00816.84
7.2.50.0080.00716.74
7.2.40.0060.01016.66
7.2.30.0070.00716.60
7.2.20.0060.00316.58
7.2.10.0030.01316.82
7.2.00.0070.00518.17
7.1.330.0070.01015.65
7.1.320.0040.01115.65
7.1.310.0030.01015.64
7.1.300.0040.01115.54
7.1.290.0030.00715.41
7.1.280.0030.01315.34
7.1.270.0060.00915.67
7.1.260.0070.01115.74
7.1.250.0110.00015.63
7.1.240.0030.01015.61
7.1.230.0100.00715.68
7.1.220.0000.00815.66
7.1.210.0070.00715.61
7.1.200.0040.00915.52
7.1.190.0000.01315.35
7.1.180.0070.00715.75
7.1.170.0100.00615.50
7.1.160.0000.00915.73
7.1.150.0030.00615.70
7.1.140.0090.00615.29
7.1.130.0040.01215.72
7.1.120.0130.00015.53
7.1.110.0060.00915.71
7.1.100.0000.01216.87
7.1.90.0000.00915.81
7.1.80.0110.00615.64
7.1.70.0040.00416.29
7.1.60.0100.00517.65
7.1.50.0060.00716.03
7.1.40.0060.00615.72
7.1.30.0000.01715.51
7.1.20.0110.00415.42
7.1.10.0090.00615.76
7.1.00.0050.04718.98
7.0.330.0030.01115.17
7.0.320.0060.00615.08
7.0.310.0060.00915.36
7.0.300.0060.01015.14
7.0.290.0110.00415.22
7.0.280.0000.01415.02
7.0.270.0060.00615.23
7.0.260.0000.01615.28
7.0.250.0070.00715.31
7.0.240.0090.00615.40
7.0.230.0070.00715.13
7.0.220.0040.01415.32
7.0.210.0000.01515.12
7.0.200.0040.00616.02
7.0.190.0120.00315.11
7.0.180.0030.00915.36
7.0.170.0070.00315.24
7.0.160.0030.00715.01
7.0.150.0040.01115.09
7.0.140.0030.04218.57
7.0.130.0090.00015.27
7.0.120.0080.03418.74
7.0.110.0060.02218.61
7.0.100.0030.04718.70
7.0.90.0050.03818.67
7.0.80.0030.03918.64
7.0.70.0050.02218.70
7.0.60.0060.02418.54
7.0.50.0050.02818.64
7.0.40.0100.02216.82
7.0.30.0050.02016.62
7.0.20.0040.01916.55
7.0.10.0020.02316.60
7.0.00.0020.02216.61
5.6.380.0030.01013.97
5.6.370.0120.00013.78
5.6.360.0090.00014.02
5.6.350.0030.01014.50
5.6.340.0040.01114.05
5.6.330.0070.01014.14
5.6.320.0090.00613.90
5.6.310.0110.00713.98
5.6.300.0110.00514.11
5.6.290.0130.00214.24
5.6.280.0050.04017.82
5.6.270.0020.03417.82
5.6.260.0050.02217.70
5.6.250.0070.03717.56
5.6.240.0030.02317.74
5.6.230.0030.02517.55
5.6.220.0050.02317.63
5.6.210.0030.02517.63
5.6.200.0070.02417.64
5.6.190.0070.02717.55
5.6.180.0100.01517.44
5.6.170.0050.01817.48
5.6.160.0050.02017.55
5.6.150.0070.01817.58
5.6.140.0060.01717.46
5.6.130.0050.02317.62
5.6.120.0090.01717.53
5.6.110.0020.02317.73
5.6.100.0070.01817.61
5.6.90.0030.02217.46
5.6.80.0040.01717.11
5.6.70.0000.02617.31
5.6.60.0060.01617.31
5.6.50.0030.02817.11
5.6.40.0030.02117.15
5.6.30.0050.02217.21
5.6.20.0030.02017.23
5.6.10.0060.01617.22
5.6.00.0030.01817.21
5.5.380.0040.03014.37
5.5.370.0020.02914.38
5.5.360.0000.02414.38
5.5.350.0020.02614.40
5.5.340.0030.02514.67
5.5.330.0020.02214.62
5.5.320.0030.02614.69
5.5.310.0000.02614.58
5.5.300.0000.02214.67
5.5.290.0000.02014.68
5.5.280.0040.01914.60
5.5.270.0040.01714.64
5.5.260.0060.01514.71
5.5.250.0020.01914.49
5.5.240.0060.01514.36
5.5.230.0040.01714.26
5.5.220.0020.02014.26
5.5.210.0030.01714.28
5.5.200.0020.02214.35
5.5.190.0020.01814.26
5.5.180.0030.01814.36
5.5.170.0040.00711.18
5.5.160.0020.01914.36
5.5.150.0030.01714.41
5.5.140.0050.02014.37
5.5.130.0040.02214.25
5.5.120.0040.01714.36
5.5.110.0020.02814.34
5.5.100.0030.02114.20
5.5.90.0040.01614.20
5.5.80.0050.03514.35
5.5.70.0020.02314.24
5.5.60.0070.01814.33
5.5.50.0010.03814.29
5.5.40.0000.03614.30
5.5.30.0030.03814.31
5.5.20.0040.03014.35
5.5.10.0040.03514.28
5.5.00.0020.04314.20
5.4.450.0000.02315.24
5.4.440.0040.01915.27
5.4.430.0030.01815.30
5.4.420.0020.02215.26
5.4.410.0050.01715.14
5.4.400.0010.02115.08
5.4.390.0030.02015.23
5.4.380.0020.02015.15
5.4.370.0030.02115.15
5.4.360.0030.01815.08
5.4.350.0040.01915.11
5.4.340.0020.02015.08
5.4.330.0040.00411.18
5.4.320.0000.02315.10
5.4.310.0060.01815.19
5.4.300.0020.01715.08
5.4.290.0030.02015.08
5.4.280.0000.02015.15
5.4.270.0040.01615.06
5.4.260.0070.01515.19
5.4.250.0050.03015.14
5.4.240.0030.02415.09
5.4.230.0000.02215.14
5.4.220.0040.02215.04
5.4.210.0020.02415.03
5.4.200.0030.03715.11
5.4.190.0020.02115.14
5.4.180.0030.03615.06
5.4.170.0030.02115.11
5.4.160.0060.03115.07
5.4.150.0050.03015.12
5.4.140.0000.03013.78
5.4.130.0060.01813.83
5.4.120.0040.01813.85
5.4.110.0050.03813.84
5.4.100.0030.02713.73
5.4.90.0030.03113.70
5.4.80.0040.02013.84
5.4.70.0070.02913.84
5.4.60.0060.01813.73
5.4.50.0030.04113.68
5.4.40.0030.04113.83
5.4.30.0050.03513.78
5.4.20.0050.01813.77
5.4.10.0030.03413.83
5.4.00.0030.02713.55
5.3.290.0020.02212.95
5.3.280.0030.01812.92
5.3.270.0010.03812.84
5.3.260.0010.02112.89
5.3.250.0030.02312.84
5.3.240.0000.03112.93
5.3.230.0030.01812.96
5.3.220.0000.02112.83
5.3.210.0040.02212.85
5.3.200.0020.03312.94
5.3.190.0030.04012.85
5.3.180.0000.02712.95
5.3.170.0050.02112.93
5.3.160.0030.01812.94
5.3.150.0030.02512.87
5.3.140.0020.02312.84
5.3.130.0020.03912.93
5.3.120.0020.04112.84
5.3.110.0020.02012.82
5.3.100.0080.04012.68
5.3.90.0010.02112.58
5.3.80.0050.01712.52
5.3.70.0040.03612.59
5.3.60.0080.03312.56
5.3.50.0040.03712.54
5.3.40.0000.02112.56
5.3.30.0070.01912.50
5.3.20.0030.03712.39
5.3.10.0030.03812.36
5.3.00.0030.02512.45

preferences:
47.86 ms | 401 KiB | 5 Q