$setupAcumulado += $tempoSetup;
        $stopAcumulado += $tempoStop;
        $desligadoAcumulado += $tempoDesligado;
    }
    $porcentagemDesligado = calculaPorcentagem($tempoDesligado, $tempoTotal);
    $porcentagemSetup = calculaPorcentagem($tempoSetup, $tempoTotal);
    $porcentagemStop = calculaPorcentagem($tempoStop, $tempoTotal);
    $porcentagemRun = calculaPorcentagem($tempoRun, $tempoTotal);
    $porDesAcumulado += $porcentagemDesligado;
    $porRunAcumulado += $porcentagemRun;
    $porStopAcumulado += $porcentagemStop;
    $porSetupAcumulado += $porcentagemSetup;
    $tempoTotalAcumulado += $tempoTotal;
    $porTotalAcumulado += $porcentagemTotal;
    $quantCiclos = floor($quantCiclos / 2);
    imprimeEventos($numInjetora, $tempoDesligado, $tempoRun, $tempoRun, $tempoSetup, $tempoStop, $porcentagemDesligado, $porcentagemSetup, $porcentagemStop, $porcentagemRun, $tempoTotal, $porcentagemTotal);
    fclose($f);
}
echo "<tr>";
echo "<th>TOTAL</th>";
echo '<th>' . transformaTempo($runAcumulado) . '</th>';
echo '<th>' . transformaTempo($setupAcumulado) . '</th>';
echo '<th>' . transformaTempo($stopAcumulado) . '</th>';
echo '<th>' . transformaTempo($desligadoAcumulado) . '</th>';
echo "<th>{$porRunAcumulado} %</th>";
echo "<th>{$porSetupAcumulado} %</th>";
echo "<th>{$porStopAcumulado} %</th>";
echo "<th>{$porDesAcumulado} %</th>";
echo '<th>' . transformaTempo($tempoTotalAcumulado) . '</th>';
echo "<th>{$porTotalAcumulado} %</th>";
echo "</tr>";
                if ($eventoAnt == "SETUP") {
                    $tempoSetup += $tempoAcumulado;
                    $tempoAcumulado = 0;
                } else {
                    if ($eventoAnt == "STOP") {
                        $tempoStop += $tempoAcumulado;
                        $tempoAcumulado = 0;
                    } else {
                        if ($eventoAnt == "RUN") {
                            $tempoRun += $tempoAcumulado;
                            $tempoAcumulado = 0;
                        }
                    }
                }
            }
            $hora2 = $hora;
            echo "</tr>";
        }
    }
    $porcentagemDesligado = calculaPorcentagem($tempoDesligado, $tempoTotal);
    $porcentagemSetup = calculaPorcentagem($tempoSetup, $tempoTotal);
    $porcentagemStop = calculaPorcentagem($tempoStop, $tempoTotal);
    $porcentagemRun = calculaPorcentagem($tempoRun, $tempoTotal);
    $quantCiclos = floor($quantCiclos / 2);
    imprimeEventos($tempoDesligado, $tempoRun, $tempoRun, $tempoSetup, $tempoStop, $porcentagemDesligado, $porcentagemSetup, $porcentagemStop, $porcentagemRun, $quantCiclos);
    echo "</table>";
    fclose($f);
    $conn->Close();
    $conn = null;
    echo "</div>";
}
    for ($j = 1; $j <= $quantInjetoras; $j++) {
        $runAcumulado += $tempoRun[$j];
        $setupAcumulado += $tempoSetup[$j];
        $stopAcumulado += $tempoStop[$j];
        $desligadoAcumulado += $tempoDesligado[$j];
        $porcentagemDesligado[$j] = calculaPorcentagem($tempoDesligado[$j], $tempoTotal);
        $porcentagemSetup[$j] = calculaPorcentagem($tempoSetup[$j], $tempoTotal);
        $porcentagemStop[$j] = calculaPorcentagem($tempoStop[$j], $tempoTotal);
        $porcentagemRun[$j] = calculaPorcentagem($tempoRun[$j], $tempoTotal);
        $porDesAcumulado += $porcentagemDesligado[$j];
        $porRunAcumulado += $porcentagemRun[$j];
        $porStopAcumulado += $porcentagemStop[$j];
        $porSetupAcumulado += $porcentagemSetup[$j];
        $tempoTotalAcumulado += $tempoTotal;
        $porTotalAcumulado += $porcentagemTotal;
        imprimeEventos($j, $tempoDesligado[$j], $tempoRun[$j], $tempoRun[$j], $tempoSetup[$j], $tempoStop[$j], $porcentagemDesligado[$j], $porcentagemSetup[$j], $porcentagemStop[$j], $porcentagemRun[$j], $tempoTotal, $porcentagemTotal);
    }
    fclose($f);
}
echo "<tr>";
echo "<th>TOTAL</th>";
echo '<th>' . transformaTempo($runAcumulado) . '</th>';
echo '<th>' . transformaTempo($setupAcumulado) . '</th>';
echo '<th>' . transformaTempo($stopAcumulado) . '</th>';
echo '<th>' . transformaTempo($desligadoAcumulado) . '</th>';
echo "<th>{$porRunAcumulado} %</th>";
echo "<th>{$porSetupAcumulado} %</th>";
echo "<th>{$porStopAcumulado} %</th>";
echo "<th>{$porDesAcumulado} %</th>";
echo '<th>' . transformaTempo($tempoTotalAcumulado) . '</th>';
echo "<th>{$porTotalAcumulado} %</th>";