Check firebird.log [no messages found for interval when this test was running]
Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
assert   
  - Check ratio_fetches_to_datapages_for_GTT_DELETE_ROWS: OK
  - Check ratio_fetches_to_datapages_for_GTT_PRESERVE_ROWS: OK
  - Check ratio_fetches_to_row_count_for_GTT_DELETE_ROWS: OK
  + Check ratio_fetches_to_datapages_for_GTT_DELETE_ROWS: value 0.008561643835616438 not in range 0.00634 +/-5.0%
  + Check ratio_fetches_to_datapages_for_GTT_PRESERVE_ROWS: value 391.21232876712327 not in range 209.776 +/-5.0%
  + Check ratio_fetches_to_row_count_for_GTT_DELETE_ROWS: value 0.00011111111111111112 not in range 0.00015 +/-5.0%
    Check ratio_fetches_to_row_count_for_GTT_PRESERVE_ROWS: OK
  - Check ratio_marks_to_datapages_for_GTT_DELETE_ROWS: OK
  - Check ratio_marks_to_datapages_for_GTT_PRESERVE_ROWS: OK
  - Check ratio_marks_to_row_count_for_GTT_DELETE_ROWS: OK
  + Check ratio_marks_to_datapages_for_GTT_DELETE_ROWS: value 0.005136986301369863 not in range 0.00362 +/-5.0%
  + Check ratio_marks_to_datapages_for_GTT_PRESERVE_ROWS: value 156.21061643835617 not in range 83.6358 +/-5.0%
  + Check ratio_marks_to_row_count_for_GTT_DELETE_ROWS: value 6.666666666666667e-05 not in range 8.9e-05 +/-5.0%
    Check ratio_marks_to_row_count_for_GTT_PRESERVE_ROWS: OK

LOG DETAILS:

2025-06-30 05:37:50.122
2025-06-30 05:37:50.133 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-30 05:37:50.144 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-30 05:37:50.156
2025-06-30 05:37:50.168 @pytest.mark.trace
2025-06-30 05:37:50.178 @pytest.mark.version('>=3')
2025-06-30 05:37:50.187 def test_1(act: Action, capsys):
2025-06-30 05:37:50.195 NUM_ROWS_TO_BE_ADDED = 45000
2025-06-30 05:37:50.202 # Make initial data filling into PERMANENT table for retrieving later number of data pages
2025-06-30 05:37:50.211 # (it should be the same for any kind of tables, including GTTs):
2025-06-30 05:37:50.220 with act.db.connect() as con:
2025-06-30 05:37:50.234 c = con.cursor()
2025-06-30 05:37:50.244 c.call_procedure('sp_fill_fix_tab', [NUM_ROWS_TO_BE_ADDED])
2025-06-30 05:37:50.252 con.commit()
2025-06-30 05:37:50.260 #
2025-06-30 05:37:50.267 with act.trace(db_events=trace):
2025-06-30 05:37:50.273 with act.db.connect() as con1:
2025-06-30 05:37:50.279 c = con1.cursor()
2025-06-30 05:37:50.286 c.call_procedure('sp_fill_gtt_sav_rows', [NUM_ROWS_TO_BE_ADDED])
2025-06-30 05:37:50.300 con1.rollback()
2025-06-30 05:37:50.310 with act.db.connect() as con2:
2025-06-30 05:37:50.316 c = con2.cursor()
2025-06-30 05:37:50.331 c.call_procedure('sp_fill_gtt_del_rows', [NUM_ROWS_TO_BE_ADDED])
2025-06-30 05:37:50.345 con2.rollback()
2025-06-30 05:37:50.355 # Obtain statistics for table T_FIX_TAB in order to estimate numberof data pages
2025-06-30 05:37:50.364 dp_cnt = 0
2025-06-30 05:37:50.370 act.gstat(switches=['-a','-t', 'T_FIX_TAB', '-u', act.db.user, '-p', act.db.password])
2025-06-30 05:37:50.378 for line in act.stdout.splitlines():
2025-06-30 05:37:50.386 if 'data pages' in line.lower():
2025-06-30 05:37:50.394 # Data pages: 1098, data page slots: 1098, average fill: 74% ==> 1098
2025-06-30 05:37:50.402 dp_cnt = int(line.replace(',', ' ').split()[2])
2025-06-30 05:37:50.409 #
2025-06-30 05:37:50.416 gtt_sav_fetches = -1
2025-06-30 05:37:50.422 gtt_sav_marks = -1
2025-06-30 05:37:50.429 gtt_del_fetches = -1
2025-06-30 05:37:50.439 gtt_del_marks = -1
2025-06-30 05:37:50.446 gtt_del_trace = ''
2025-06-30 05:37:50.451 gtt_sav_trace = ''
2025-06-30 05:37:50.457 for line in act.trace_log:
2025-06-30 05:37:50.463 if 'fetch' in line:
2025-06-30 05:37:50.471 # 2.5.7:
2025-06-30 05:37:50.483 # ['370', 'ms,', '1100', 'read(s),', '1358', 'write(s),', '410489', 'fetch(es),', '93294', 'mark(s)']
2025-06-30 05:37:50.491 # ['2', 'ms,', '1', 'read(s),', '257', 'write(s),', '1105', 'fetch(es),', '1102', 'mark(s)']
2025-06-30 05:37:50.499 # 3.0.2:
2025-06-30 05:37:50.506 # 618 ms, 1 read(s), 2210 write(s), 231593 fetch(es), 92334 mark(s)
2025-06-30 05:37:50.517 # 14 ms, 1109 write(s), 7 fetch(es), 4 mark(s)
2025-06-30 05:37:50.528 words = line.split()
2025-06-30 05:37:50.538 for k in range(len(words)):
2025-06-30 05:37:50.548 if words[k].startswith('fetch'):
2025-06-30 05:37:50.555 if gtt_sav_fetches == -1:
2025-06-30 05:37:50.562 gtt_sav_fetches = int(words[k-1])
2025-06-30 05:37:50.568 gtt_sav_trace = line.strip()
2025-06-30 05:37:50.574 else:
2025-06-30 05:37:50.582 gtt_del_fetches = int(words[k-1])
2025-06-30 05:37:50.594 gtt_del_trace = line.strip()
2025-06-30 05:37:50.604
2025-06-30 05:37:50.612 if words[k].startswith('mark'):
2025-06-30 05:37:50.619 if gtt_sav_marks==-1:
2025-06-30 05:37:50.626 gtt_sav_marks = int(words[k-1])
2025-06-30 05:37:50.634 else:
2025-06-30 05:37:50.642 gtt_del_marks = int(words[k-1])
2025-06-30 05:37:50.650 #
2025-06-30 05:37:50.656 check_data = {
2025-06-30 05:37:50.663 'ratio_fetches_to_row_count_for_GTT_PRESERVE_ROWS' : (1.00 * gtt_sav_fetches / NUM_ROWS_TO_BE_ADDED, 9.1219,  5.1465),
2025-06-30 05:37:50.673 'ratio_fetches_to_row_count_for_GTT_DELETE_ROWS' : (1.00 * gtt_del_fetches / NUM_ROWS_TO_BE_ADDED,   0.0245,  0.00015),
2025-06-30 05:37:50.686 'ratio_marks_to_row_count_for_GTT_PRESERVE_ROWS' : (1.00 * gtt_sav_marks / NUM_ROWS_TO_BE_ADDED,     2.0732,  2.05186),
2025-06-30 05:37:50.697 'ratio_marks_to_row_count_for_GTT_DELETE_ROWS' : (1.00 * gtt_del_marks / NUM_ROWS_TO_BE_ADDED,       0.0245,  0.000089),
2025-06-30 05:37:50.709 'ratio_fetches_to_datapages_for_GTT_PRESERVE_ROWS' : (1.00 * gtt_sav_fetches / dp_cnt,               373.85,  209.776),
2025-06-30 05:37:50.720 'ratio_fetches_to_datapages_for_GTT_DELETE_ROWS' : (1.00 * gtt_del_fetches / dp_cnt,                 1.0063,  0.00634),
2025-06-30 05:37:50.732 'ratio_marks_to_datapages_for_GTT_PRESERVE_ROWS' : (1.00 * gtt_sav_marks / dp_cnt,                   84.9672, 83.6358),
2025-06-30 05:37:50.746 'ratio_marks_to_datapages_for_GTT_DELETE_ROWS' : (1.00 * gtt_del_marks / dp_cnt,                     1.0036,  0.00362),
2025-06-30 05:37:50.757 }
2025-06-30 05:37:50.767 i = 2 #  FB 3+
2025-06-30 05:37:50.779 MAX_DIFF_PERCENT = 5.0
2025-06-30 05:37:50.791 # THRESHOLD
2025-06-30 05:37:50.804 failed_flag = False
2025-06-30 05:37:50.816 for k, v in sorted(check_data.items()):
2025-06-30 05:37:50.824 msg = ('Check ' + k + ': ' +
2025-06-30 05:37:50.832 ('OK' if v[i] * ((100 - MAX_DIFF_PERCENT)/100) <= v[0] <= v[i] * (100+MAX_DIFF_PERCENT) / 100
2025-06-30 05:37:50.839 else 'value '+str(v[0])+' not in range '+str( v[i] ) + ' +/-' + str(MAX_DIFF_PERCENT) + '%')
2025-06-30 05:37:50.847 )
2025-06-30 05:37:50.858 print(msg)
2025-06-30 05:37:50.871 failed_flag = 'not in range' in msg
2025-06-30 05:37:50.880
2025-06-30 05:37:50.887 if failed_flag:
2025-06-30 05:37:50.895 print('Trace for GTT PRESERVE rows: ' + gtt_sav_trace)
2025-06-30 05:37:50.903 print('Trace for GTT DELETE   rows: ' + gtt_del_trace)
2025-06-30 05:37:50.914 # Check
2025-06-30 05:37:50.925 act.expected_stdout = expected_stdout
2025-06-30 05:37:50.936 act.stdout = capsys.readouterr().out
2025-06-30 05:37:50.947 >       assert act.clean_stdout == act.clean_expected_stdout
2025-06-30 05:37:50.959 E       assert
2025-06-30 05:37:50.969 E         - Check ratio_fetches_to_datapages_for_GTT_DELETE_ROWS: OK
2025-06-30 05:37:50.980 E         - Check ratio_fetches_to_datapages_for_GTT_PRESERVE_ROWS: OK
2025-06-30 05:37:50.993 E         - Check ratio_fetches_to_row_count_for_GTT_DELETE_ROWS: OK
2025-06-30 05:37:51.003 E         + Check ratio_fetches_to_datapages_for_GTT_DELETE_ROWS: value 0.008561643835616438 not in range 0.00634 +/-5.0%
2025-06-30 05:37:51.011 E         + Check ratio_fetches_to_datapages_for_GTT_PRESERVE_ROWS: value 391.21232876712327 not in range 209.776 +/-5.0%
2025-06-30 05:37:51.018 E         + Check ratio_fetches_to_row_count_for_GTT_DELETE_ROWS: value 0.00011111111111111112 not in range 0.00015 +/-5.0%
2025-06-30 05:37:51.031 E           Check ratio_fetches_to_row_count_for_GTT_PRESERVE_ROWS: OK
2025-06-30 05:37:51.045 E         - Check ratio_marks_to_datapages_for_GTT_DELETE_ROWS: OK
2025-06-30 05:37:51.054 E         - Check ratio_marks_to_datapages_for_GTT_PRESERVE_ROWS: OK
2025-06-30 05:37:51.060 E         - Check ratio_marks_to_row_count_for_GTT_DELETE_ROWS: OK
2025-06-30 05:37:51.067 E         + Check ratio_marks_to_datapages_for_GTT_DELETE_ROWS: value 0.005136986301369863 not in range 0.00362 +/-5.0%
2025-06-30 05:37:51.073 E         + Check ratio_marks_to_datapages_for_GTT_PRESERVE_ROWS: value 156.21061643835617 not in range 83.6358 +/-5.0%
2025-06-30 05:37:51.079 E         + Check ratio_marks_to_row_count_for_GTT_DELETE_ROWS: value 6.666666666666667e-05 not in range 8.9e-05 +/-5.0%
2025-06-30 05:37:51.085 E           Check ratio_marks_to_row_count_for_GTT_PRESERVE_ROWS: OK
2025-06-30 05:37:51.092
2025-06-30 05:37:51.098 tests/bugs/core_3537_test.py:225: AssertionError
2025-06-30 05:37:51.106 ---------------------------- Captured stdout setup -----------------------------
2025-06-30 05:37:51.116 Creating db: localhost:/var/tmp/qa_2024/test_1629/test.fdb [page_size=4096, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.trace
    @pytest.mark.version('>=3')
    def test_1(act: Action, capsys):
        NUM_ROWS_TO_BE_ADDED = 45000
        # Make initial data filling into PERMANENT table for retrieving later number of data pages
        # (it should be the same for any kind of tables, including GTTs):
        with act.db.connect() as con:
            c = con.cursor()
            c.call_procedure('sp_fill_fix_tab', [NUM_ROWS_TO_BE_ADDED])
            con.commit()
        #
        with act.trace(db_events=trace):
            with act.db.connect() as con1:
                c = con1.cursor()
                c.call_procedure('sp_fill_gtt_sav_rows', [NUM_ROWS_TO_BE_ADDED])
                con1.rollback()
            with act.db.connect() as con2:
                c = con2.cursor()
                c.call_procedure('sp_fill_gtt_del_rows', [NUM_ROWS_TO_BE_ADDED])
                con2.rollback()
        # Obtain statistics for table T_FIX_TAB in order to estimate numberof data pages
        dp_cnt = 0
        act.gstat(switches=['-a','-t', 'T_FIX_TAB', '-u', act.db.user, '-p', act.db.password])
        for line in act.stdout.splitlines():
            if 'data pages' in line.lower():
                # Data pages: 1098, data page slots: 1098, average fill: 74% ==> 1098
                dp_cnt = int(line.replace(',', ' ').split()[2])
        #
        gtt_sav_fetches = -1
        gtt_sav_marks = -1
        gtt_del_fetches = -1
        gtt_del_marks = -1
        gtt_del_trace = ''
        gtt_sav_trace = ''
        for line in act.trace_log:
            if 'fetch' in line:
                # 2.5.7:
                # ['370', 'ms,', '1100', 'read(s),', '1358', 'write(s),', '410489', 'fetch(es),', '93294', 'mark(s)']
                # ['2', 'ms,', '1', 'read(s),', '257', 'write(s),', '1105', 'fetch(es),', '1102', 'mark(s)']
                # 3.0.2:
                # 618 ms, 1 read(s), 2210 write(s), 231593 fetch(es), 92334 mark(s)
                # 14 ms, 1109 write(s), 7 fetch(es), 4 mark(s)
                words = line.split()
                for k in range(len(words)):
                    if words[k].startswith('fetch'):
                        if gtt_sav_fetches == -1:
                            gtt_sav_fetches = int(words[k-1])
                            gtt_sav_trace = line.strip()
                        else:
                            gtt_del_fetches = int(words[k-1])
                            gtt_del_trace = line.strip()
    
                    if words[k].startswith('mark'):
                        if gtt_sav_marks==-1:
                            gtt_sav_marks = int(words[k-1])
                        else:
                            gtt_del_marks = int(words[k-1])
        #
        check_data = {
            'ratio_fetches_to_row_count_for_GTT_PRESERVE_ROWS' : (1.00 * gtt_sav_fetches / NUM_ROWS_TO_BE_ADDED, 9.1219,  5.1465),
            'ratio_fetches_to_row_count_for_GTT_DELETE_ROWS' : (1.00 * gtt_del_fetches / NUM_ROWS_TO_BE_ADDED,   0.0245,  0.00015),
            'ratio_marks_to_row_count_for_GTT_PRESERVE_ROWS' : (1.00 * gtt_sav_marks / NUM_ROWS_TO_BE_ADDED,     2.0732,  2.05186),
            'ratio_marks_to_row_count_for_GTT_DELETE_ROWS' : (1.00 * gtt_del_marks / NUM_ROWS_TO_BE_ADDED,       0.0245,  0.000089),
            'ratio_fetches_to_datapages_for_GTT_PRESERVE_ROWS' : (1.00 * gtt_sav_fetches / dp_cnt,               373.85,  209.776),
            'ratio_fetches_to_datapages_for_GTT_DELETE_ROWS' : (1.00 * gtt_del_fetches / dp_cnt,                 1.0063,  0.00634),
            'ratio_marks_to_datapages_for_GTT_PRESERVE_ROWS' : (1.00 * gtt_sav_marks / dp_cnt,                   84.9672, 83.6358),
            'ratio_marks_to_datapages_for_GTT_DELETE_ROWS' : (1.00 * gtt_del_marks / dp_cnt,                     1.0036,  0.00362),
        }
        i = 2 #  FB 3+
        MAX_DIFF_PERCENT = 5.0
        # THRESHOLD
        failed_flag = False
        for k, v in sorted(check_data.items()):
            msg = ('Check ' + k + ': ' +
                   ('OK' if v[i] * ((100 - MAX_DIFF_PERCENT)/100) <= v[0] <= v[i] * (100+MAX_DIFF_PERCENT) / 100
                    else 'value '+str(v[0])+' not in range '+str( v[i] ) + ' +/-' + str(MAX_DIFF_PERCENT) + '%')
                   )
            print(msg)
            failed_flag = 'not in range' in msg
    
        if failed_flag:
            print('Trace for GTT PRESERVE rows: ' + gtt_sav_trace)
            print('Trace for GTT DELETE   rows: ' + gtt_del_trace)
        # Check
        act.expected_stdout = expected_stdout
        act.stdout = capsys.readouterr().out
>       assert act.clean_stdout == act.clean_expected_stdout
E       assert   
E         - Check ratio_fetches_to_datapages_for_GTT_DELETE_ROWS: OK
E         - Check ratio_fetches_to_datapages_for_GTT_PRESERVE_ROWS: OK
E         - Check ratio_fetches_to_row_count_for_GTT_DELETE_ROWS: OK
E         + Check ratio_fetches_to_datapages_for_GTT_DELETE_ROWS: value 0.008561643835616438 not in range 0.00634 +/-5.0%
E         + Check ratio_fetches_to_datapages_for_GTT_PRESERVE_ROWS: value 391.21232876712327 not in range 209.776 +/-5.0%
E         + Check ratio_fetches_to_row_count_for_GTT_DELETE_ROWS: value 0.00011111111111111112 not in range 0.00015 +/-5.0%
E           Check ratio_fetches_to_row_count_for_GTT_PRESERVE_ROWS: OK
E         - Check ratio_marks_to_datapages_for_GTT_DELETE_ROWS: OK
E         - Check ratio_marks_to_datapages_for_GTT_PRESERVE_ROWS: OK
E         - Check ratio_marks_to_row_count_for_GTT_DELETE_ROWS: OK
E         + Check ratio_marks_to_datapages_for_GTT_DELETE_ROWS: value 0.005136986301369863 not in range 0.00362 +/-5.0%
E         + Check ratio_marks_to_datapages_for_GTT_PRESERVE_ROWS: value 156.21061643835617 not in range 83.6358 +/-5.0%
E         + Check ratio_marks_to_row_count_for_GTT_DELETE_ROWS: value 6.666666666666667e-05 not in range 8.9e-05 +/-5.0%
E           Check ratio_marks_to_row_count_for_GTT_PRESERVE_ROWS: OK

tests/bugs/core_3537_test.py:225: AssertionError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 6.0.0.892 2025.07.02 10f7d F F 4971 4347 2025.07.03 00:11:02.375 2025.07.03 00:11:07.346 2025.07.02 21:29:57.012 2025.07.02 21:30:01.359
2 6.0.0.889 2025.07.01 969ac F F 5115 4444 2025.07.02 00:37:07.194 2025.07.02 00:37:12.309 2025.07.01 21:34:55.097 2025.07.01 21:34:59.541
3 6.0.0.884 2025.06.30 f7e5f F F 5218 4525 2025.07.01 00:40:27.348 2025.07.01 00:40:32.566 2025.06.30 21:43:47.026 2025.06.30 21:43:51.551
4 6.0.0.881 2025.06.27 7035d F F 4974 4710 2025.06.30 00:26:02.999 2025.06.30 00:26:07.973 2025.06.29 21:31:19.823 2025.06.29 21:31:24.533
5 6.0.0.877 2025.06.26 8e38f F F 5079 4452 2025.06.27 00:09:55.341 2025.06.27 00:10:00.420 2025.06.26 21:29:52.491 2025.06.26 21:29:56.943
6 6.0.0.876 2025.06.25 b1bec F F 5174 4414 2025.06.26 00:13:48.214 2025.06.26 00:13:53.388 2025.06.25 21:30:35.150 2025.06.25 21:30:39.564
7 6.0.0.863 2025.06.24 c3c20 F F 5848 4538 2025.06.25 00:14:55.738 2025.06.25 00:15:01.586 2025.06.24 21:29:53.085 2025.06.24 21:29:57.623
8 6.0.0.858 2025.06.23 8d6f7 F F 4646 4362 2025.06.24 00:13:51.163 2025.06.24 00:13:55.809 2025.06.23 21:30:27.749 2025.06.23 21:30:32.111
9 6.0.0.849 2025.06.20 7b79c F F 6472 4664 2025.06.21 00:24:11.588 2025.06.21 00:24:18.060 2025.06.20 21:33:11.776 2025.06.20 21:33:16.440
10 6.0.0.848 2025.06.19 c483c F F 5026 5364 2025.06.20 00:20:22.333 2025.06.20 00:20:27.359 2025.06.19 21:32:11.342 2025.06.19 21:32:16.706
11 6.0.0.845 2025.06.18 22b12 F F 4985 4488 2025.06.19 00:26:27.100 2025.06.19 00:26:32.085 2025.06.18 21:31:25.071 2025.06.18 21:31:29.559
12 6.0.0.843 2025.06.16 995f4 F F 5135 4396 2025.06.18 00:28:37.807 2025.06.18 00:28:42.942 2025.06.17 21:33:34.594 2025.06.17 21:33:38.990
13 6.0.0.840 2025.06.14 29bca F F 4971 4487 2025.06.16 00:17:56.259 2025.06.16 00:18:01.230 2025.06.15 21:30:06.191 2025.06.15 21:30:10.678
14 6.0.0.838 2025.06.13 0e28a F F 6955 5455 2025.06.14 00:29:15.315 2025.06.14 00:29:22.270 2025.06.13 21:31:31.906 2025.06.13 21:31:37.361
15 6.0.0.835 2025.06.12 2cf29 F F 5168 4495 2025.06.13 00:30:49.052 2025.06.13 00:30:54.220 2025.06.12 21:37:13.839 2025.06.12 21:37:18.334
16 6.0.0.834 2025.06.11 e889f F F 5107 4418 2025.06.12 00:27:34.326 2025.06.12 00:27:39.433 2025.06.11 21:33:11.037 2025.06.11 21:33:15.455
17 6.0.0.800 2025.06.10 1f226 P P 7486 4826 2025.06.10 23:26:59.530 2025.06.10 23:27:07.016 2025.06.10 21:32:10.155 2025.06.10 21:32:14.981
18 6.0.0.799 2025.06.07 be644 P P 7529 5794 2025.06.09 23:26:18.617 2025.06.09 23:26:26.146 2025.06.09 21:32:03.958 2025.06.09 21:32:09.752
19 6.0.0.797 2025.06.06 303e8 P P 7381 5196 2025.06.06 23:27:21.921 2025.06.06 23:27:29.302 2025.06.06 21:29:01.328 2025.06.06 21:29:06.524
20 6.0.0.795 2025.05.29 7a71a P P 6984 5839 2025.06.05 23:24:17.666 2025.06.05 23:24:24.650 2025.06.05 21:28:45.322 2025.06.05 21:28:51.161
21 6.0.0.792 2025.05.28 b4327 P P 7926 5204 2025.05.28 23:32:15.317 2025.05.28 23:32:23.243 2025.05.28 21:29:44.441 2025.05.28 21:29:49.645
22 6.0.0.791 2025.05.27 02db8 P P 8180 5139 2025.05.27 23:30:23.534 2025.05.27 23:30:31.714 2025.05.27 21:29:17.344 2025.05.27 21:29:22.483
23 6.0.0.789 2025.05.21 64051 P P 7379 5107 2025.05.24 23:27:44.207 2025.05.24 23:27:51.586 2025.05.24 21:29:07.534 2025.05.24 21:29:12.641
24 6.0.0.787 2025.05.20 230ad P P 7112 5173 2025.05.20 23:25:02.570 2025.05.20 23:25:09.682 2025.05.20 21:28:53.744 2025.05.20 21:28:58.917
25 6.0.0.783 2025.05.12 37320 P P 5724 4815 2025.05.19 11:06:28.468 2025.05.19 11:06:34.192 2025.05.19 09:20:40.386 2025.05.19 09:20:45.201
26 6.0.0.779 2025.05.11 136fa P P 7447 4693 2025.05.11 23:22:21.181 2025.05.11 23:22:28.628 2025.05.11 21:28:33.201 2025.05.11 21:28:37.894
27 6.0.0.778 2025.05.07 d735e P P 7903 4806 2025.05.07 23:21:22.506 2025.05.07 23:21:30.409 2025.05.07 21:28:40.080 2025.05.07 21:28:44.886
28 6.0.0.776 2025.05.06 007cd P P 5427 5283 2025.05.06 23:14:38.594 2025.05.06 23:14:44.021 2025.05.06 21:28:34.312 2025.05.06 21:28:39.595
29 6.0.0.770 2025.05.05 82c4a P P 6753 5291 2025.05.05 23:13:46.506 2025.05.05 23:13:53.259 2025.05.05 21:28:20.646 2025.05.05 21:28:25.937
30 6.0.0.767 2025.05.01 cdd29 P P 7167 5027 2025.05.01 23:12:25.586 2025.05.01 23:12:32.753 2025.05.01 21:28:12.227 2025.05.01 21:28:17.254
31 6.0.0.762 2025.04.30 5cb15 P P 7540 4823 2025.04.30 23:09:49.493 2025.04.30 23:09:57.033 2025.04.30 21:28:11.420 2025.04.30 21:28:16.243
32 6.0.0.755 2025.04.29 739c6 P P 6127 5106 2025.04.29 23:12:04.338 2025.04.29 23:12:10.465 2025.04.29 21:28:19.886 2025.04.29 21:28:24.992
33 6.0.0.753 2025.04.27 29ab3 P P 5636 5055 2025.04.27 23:11:47.028 2025.04.27 23:11:52.664 2025.04.27 21:28:14.922 2025.04.27 21:28:19.977
34 6.0.0.745 2025.04.21 78ad8 P P 5277 4829 2025.04.25 23:11:14.729 2025.04.25 23:11:20.006 2025.04.25 21:29:25.989 2025.04.25 21:29:30.818
35 6.0.0.744 2025.04.19 e883a P P 5271 5083 2025.04.19 23:13:00.471 2025.04.19 23:13:05.742 2025.04.19 21:28:28.843 2025.04.19 21:28:33.926
36 6.0.0.742 2025.04.17 abc3b P P 5247 4941 2025.04.18 23:13:17.185 2025.04.18 23:13:22.432 2025.04.18 21:28:33.653 2025.04.18 21:28:38.594
37 6.0.0.737 2025.04.16 fe52b P P 5237 5120 2025.04.16 23:13:08.449 2025.04.16 23:13:13.686 2025.04.16 21:28:25.816 2025.04.16 21:28:30.936
38 6.0.0.736 2025.04.14 3e6be P P 4961 4716 2025.04.14 23:00:07.013 2025.04.14 23:00:11.974 2025.04.14 21:27:05.667 2025.04.14 21:27:10.383
39 6.0.0.735 2025.04.13 6635c P P 6850 4725 2025.04.13 23:01:16.776 2025.04.13 23:01:23.626 2025.04.13 21:27:38.171 2025.04.13 21:27:42.896
40 6.0.0.734 2025.04.12 12f3f P P 4965 4771 2025.04.12 23:00:24.578 2025.04.12 23:00:29.543 2025.04.12 21:27:14.878 2025.04.12 21:27:19.649
41 6.0.0.730 2025.04.11 240b8 P P 6824 4651 2025.04.11 23:01:25.149 2025.04.11 23:01:31.973 2025.04.11 21:27:12.474 2025.04.11 21:27:17.125
42 6.0.0.726 2025.04.10 d79c6 P P 5268 4960 2025.04.10 23:01:03.270 2025.04.10 23:01:08.538 2025.04.10 21:27:18.957 2025.04.10 21:27:23.917
43 6.0.0.725 2025.04.09 a2b05 P P 6568 4747 2025.04.09 23:01:01.866 2025.04.09 23:01:08.434 2025.04.09 21:27:32.554 2025.04.09 21:27:37.301
44 6.0.0.722 2025.04.08 a8b86 P P 7484 4998 2025.04.08 23:11:05.217 2025.04.08 23:11:12.701 2025.04.08 21:28:30.728 2025.04.08 21:28:35.726
45 6.0.0.719 2025.04.06 90fd9 P P 7279 5008 2025.04.06 23:09:04.354 2025.04.06 23:09:11.633 2025.04.06 21:28:38.209 2025.04.06 21:28:43.217
46 6.0.0.717 2025.04.04 53d70 P P 7074 5857 2025.04.04 23:06:42.499 2025.04.04 23:06:49.573 2025.04.04 21:28:06.573 2025.04.04 21:28:12.430
47 6.0.0.716 2025.04.03 fc636 P P 7142 4805 2025.04.03 23:10:09.756 2025.04.03 23:10:16.898 2025.04.03 21:28:20.718 2025.04.03 21:28:25.523
48 6.0.0.715 2025.04.02 907ed P P 5287 4987 2025.04.02 23:09:51.660 2025.04.02 23:09:56.947 2025.04.02 21:28:37.864 2025.04.02 21:28:42.851
49 6.0.0.710 2025.04.01 40651 P P 6419 5033 2025.04.01 23:08:59.688 2025.04.01 23:09:06.107 2025.04.01 21:28:16.736 2025.04.01 21:28:21.769
50 6.0.0.708 2025.03.31 cb069 P P 7552 4867 2025.03.31 23:02:18.098 2025.03.31 23:02:25.650 2025.03.31 21:27:40.515 2025.03.31 21:27:45.382
51 6.0.0.707 2025.03.28 4bd4f P P 7220 4737 2025.03.30 23:01:55.590 2025.03.30 23:02:02.810 2025.03.30 21:27:32.098 2025.03.30 21:27:36.835
52 6.0.0.698 2025.03.26 d72a7 P P 5666 5154 2025.03.27 23:13:38.311 2025.03.27 23:13:43.977 2025.03.27 21:28:46.747 2025.03.27 21:28:51.901
53 6.0.0.693 2025.03.24 0b559 P P 8127 4719 2025.03.24 23:06:32.090 2025.03.24 23:06:40.217 2025.03.24 21:28:55.096 2025.03.24 21:28:59.815
54 6.0.0.687 2025.03.22 730aa P P 5278 4932 2025.03.23 23:15:06.277 2025.03.23 23:15:11.555 2025.03.23 21:28:37.638 2025.03.23 21:28:42.570
55 6.0.0.686 2025.03.20 71bf6 P P 6462 5267 2025.03.20 23:18:42.709 2025.03.20 23:18:49.171 2025.03.20 21:29:02.051 2025.03.20 21:29:07.318
56 6.0.0.685 2025.03.19 a8577 P P 5658 5144 2025.03.19 23:17:15.101 2025.03.19 23:17:20.759 2025.03.19 21:28:44.524 2025.03.19 21:28:49.668
57 6.0.0.680 2025.03.18 90d29 P P 828 458 2025.03.19 09:53:35.914 2025.03.19 09:53:36.742 2025.03.19 08:18:29.705 2025.03.19 08:18:30.163
58 6.0.0.677 2025.03.16 c0a60 P P 726 500 2025.03.16 23:11:11.107 2025.03.16 23:11:11.833 2025.03.16 21:28:53.924 2025.03.16 21:28:54.424
59 6.0.0.676 2025.03.15 3034f P P 825 492 2025.03.16 14:55:28.194 2025.03.16 14:55:29.019 2025.03.16 13:24:16.809 2025.03.16 13:24:17.301
60 6.0.0.673 2025.03.13 40f5b P P 683 454 2025.03.13 23:10:23.768 2025.03.13 23:10:24.451 2025.03.13 21:28:29.562 2025.03.13 21:28:30.016
61 6.0.0.671 2025.03.12 a4fff P P 712 483 2025.03.12 23:14:05.336 2025.03.12 23:14:06.048 2025.03.12 21:29:09.644 2025.03.12 21:29:10.127
62 6.0.0.663 2025.03.11 daad2 P P 1233 557 2025.03.11 23:12:20.173 2025.03.11 23:12:21.406 2025.03.11 21:29:21.304 2025.03.11 21:29:21.861
63 6.0.0.661 2025.03.07 b9869 P P 1120 484 2025.03.10 22:59:19.878 2025.03.10 22:59:20.998 2025.03.10 21:27:33.584 2025.03.10 21:27:34.068
64 6.0.0.660 2025.03.04 a6700 P P 1210 476 2025.03.06 23:05:40.294 2025.03.06 23:05:41.504 2025.03.06 21:28:09.349 2025.03.06 21:28:09.825
65 6.0.0.658 2025.03.03 f15f8 P P 1184 482 2025.03.03 23:01:20.858 2025.03.03 23:01:22.042 2025.03.03 21:27:56.484 2025.03.03 21:27:56.966
66 6.0.0.656 2025.02.27 25fb4 P P 1571 496 2025.03.02 23:16:59.678 2025.03.02 23:17:01.249 2025.03.02 21:29:42.466 2025.03.02 21:29:42.962
67 6.0.0.655 2025.02.25 6e3e0 P P 1215 510 2025.02.26 23:02:58.969 2025.02.26 23:03:00.184 2025.02.26 21:27:59.964 2025.02.26 21:28:00.474
68 6.0.0.654 2025.02.24 b7141 P P 1343 470 2025.02.24 23:05:01.719 2025.02.24 23:05:03.062 2025.02.24 21:28:15.509 2025.02.24 21:28:15.979
69 6.0.0.652 2025.02.22 22662 P P 842 377 2025.02.24 06:29:06.455 2025.02.24 06:29:07.297 2025.02.23 23:44:50.657 2025.02.23 23:44:51.034
70 6.0.0.647 2025.02.21 9fccb P P 1240 407 2025.02.21 23:07:43.918 2025.02.21 23:07:45.158 2025.02.21 21:31:45.179 2025.02.21 21:31:45.586
71 6.0.0.640 2025.02.19 9b8ac P P 1184 497 2025.02.19 23:03:27.518 2025.02.19 23:03:28.702 2025.02.19 21:28:22.772 2025.02.19 21:28:23.269
72 6.0.0.639 2025.02.18 201a4 P P 1248 459 2025.02.18 23:00:01.777 2025.02.18 23:00:03.025 2025.02.18 21:27:58.440 2025.02.18 21:27:58.899
73 6.0.0.637 2025.02.12 6d0f5 P P 1237 484 2025.02.13 23:10:52.950 2025.02.13 23:10:54.187 2025.02.13 21:28:44.801 2025.02.13 21:28:45.285
74 6.0.0.636 2025.02.11 0424f P P 1208 455 2025.02.11 23:09:34.599 2025.02.11 23:09:35.807 2025.02.11 21:28:14.697 2025.02.11 21:28:15.152
75 6.0.0.635 2025.02.10 f640f P P 1051 467 2025.02.10 23:09:13.585 2025.02.10 23:09:14.636 2025.02.10 21:28:56.023 2025.02.10 21:28:56.490
76 6.0.0.629 2025.02.07 194f9 P P 1191 481 2025.02.07 23:07:51.937 2025.02.07 23:07:53.128 2025.02.07 21:28:32.392 2025.02.07 21:28:32.873
77 6.0.0.628 2025.02.06 859d5 P P 695 459 2025.02.06 23:13:27.647 2025.02.06 23:13:28.342 2025.02.06 21:28:18.135 2025.02.06 21:28:18.594
78 6.0.0.621 2025.02.05 34fe7 P P 659 447 2025.02.05 23:14:12.009 2025.02.05 23:14:12.668 2025.02.05 21:28:24.134 2025.02.05 21:28:24.581
79 6.0.0.609 2025.02.04 76d57 P P 1214 511 2025.02.04 23:08:46.597 2025.02.04 23:08:47.811 2025.02.04 21:28:21.832 2025.02.04 21:28:22.343
80 6.0.0.607 2025.02.03 1985b P P 1064 534 2025.02.03 23:09:42.463 2025.02.03 23:09:43.527 2025.02.03 21:28:43.424 2025.02.03 21:28:43.958
81 6.0.0.601 2025.02.01 6af07 P P 1127 443 2025.02.01 23:06:50.154 2025.02.01 23:06:51.281 2025.02.01 21:28:10.815 2025.02.01 21:28:11.258
82 6.0.0.600 2025.01.27 188de P P 1172 456 2025.01.27 23:10:24.802 2025.01.27 23:10:25.974 2025.01.27 21:28:27.241 2025.01.27 21:28:27.697
83 6.0.0.599 2025.01.25 ba588 P P 1273 477 2025.01.25 23:11:21.025 2025.01.25 23:11:22.298 2025.01.25 21:28:46.788 2025.01.25 21:28:47.265
84 6.0.0.598 2025.01.23 ddbc3 P P 1185 432 2025.01.24 23:10:26.713 2025.01.24 23:10:27.898 2025.01.24 21:28:28.616 2025.01.24 21:28:29.048
85 6.0.0.595 2025.01.22 e62f3 P P 1218 436 2025.01.22 23:04:11.573 2025.01.22 23:04:12.791 2025.01.22 21:28:12.879 2025.01.22 21:28:13.315
86 6.0.0.594 2025.01.21 47fb6 P P 1147 484 2025.01.21 23:03:42.022 2025.01.21 23:03:43.169 2025.01.21 21:28:04.824 2025.01.21 21:28:05.308
87 6.0.0.590 2025.01.20 9dc1e P P 1148 487 2025.01.20 23:09:34.562 2025.01.20 23:09:35.710 2025.01.20 21:28:17.963 2025.01.20 21:28:18.450
88 6.0.0.588 2025.01.19 b1c4e P P 1080 551 2025.01.19 23:06:11.793 2025.01.19 23:06:12.873 2025.01.19 21:28:27.591 2025.01.19 21:28:28.142
89 6.0.0.587 2025.01.18 63e6e P P 1191 486 2025.01.18 23:08:47.694 2025.01.18 23:08:48.885 2025.01.18 21:28:56.865 2025.01.18 21:28:57.351
90 6.0.0.585 2025.01.16 2d6bb P P 1128 434 2025.01.17 23:03:42.750 2025.01.17 23:03:43.878 2025.01.17 21:28:00.961 2025.01.17 21:28:01.395
91 6.0.0.584 2025.01.15 a0aa2 P P 1147 531 2025.01.15 23:07:52.978 2025.01.15 23:07:54.125 2025.01.15 21:28:18.679 2025.01.15 21:28:19.210
92 6.0.0.581 2025.01.14 21e9e P P 1104 453 2025.01.14 23:08:44.482 2025.01.14 23:08:45.586 2025.01.14 21:28:29.600 2025.01.14 21:28:30.053
93 6.0.0.577 2025.01.13 7e293 P P 1224 443 2025.01.13 23:09:26.862 2025.01.13 23:09:28.086 2025.01.13 21:28:36.223 2025.01.13 21:28:36.666
94 6.0.0.576 2025.01.12 05898 P P 1106 482 2025.01.12 23:06:40.869 2025.01.12 23:06:41.975 2025.01.12 21:28:06.506 2025.01.12 21:28:06.988
95 6.0.0.573 2025.01.10 c20f3 P P 1235 490 2025.01.10 23:07:24.491 2025.01.10 23:07:25.726 2025.01.10 21:28:20.489 2025.01.10 21:28:20.979
96 6.0.0.571 2024.12.31 81bba P P 1035 340 2024.12.31 22:43:29.231 2024.12.31 22:43:30.266 2024.12.31 21:25:36.772 2024.12.31 21:25:37.112
97 6.0.0.570 2024.12.30 c3c8d P P 897 387 2024.12.30 22:42:42.950 2024.12.30 22:42:43.847 2024.12.30 21:25:41.627 2024.12.30 21:25:42.014
98 6.0.0.565 2024.12.28 5fc59 P P 623 323 2024.12.30 11:42:07.303 2024.12.30 11:42:07.926 2024.12.30 10:33:59.858 2024.12.30 10:34:00.181
99 6.0.0.564 2024.12.26 12514 P P 903 334 2024.12.26 22:44:07.798 2024.12.26 22:44:08.701 2024.12.26 21:25:33.208 2024.12.26 21:25:33.542
100 6.0.0.560 2024.12.25 fa83e P P 1014 357 2024.12.25 22:43:51.246 2024.12.25 22:43:52.260 2024.12.25 21:25:41.039 2024.12.25 21:25:41.396
101 6.0.0.559 2024.12.23 cc800 P P 1021 350 2024.12.24 22:45:19.565 2024.12.24 22:45:20.586 2024.12.24 21:25:28.900 2024.12.24 21:25:29.250
102 6.0.0.556 2024.12.22 a0404 P P 1103 324 2024.12.22 22:44:01.110 2024.12.22 22:44:02.213 2024.12.22 21:25:24.239 2024.12.22 21:25:24.563
103 6.0.0.555 2024.12.19 6990a P P 577 325 2024.12.21 12:18:30.951 2024.12.21 12:18:31.528 2024.12.21 11:00:55.269 2024.12.21 11:00:55.594
104 6.0.0.553 2024.12.17 d1f8a P P 549 361 2024.12.17 22:45:06.474 2024.12.17 22:45:07.023 2024.12.17 21:25:59.891 2024.12.17 21:26:00.252
105 6.0.0.552 2024.12.11 85e25 P P 555 327 2024.12.15 22:44:28.235 2024.12.15 22:44:28.790 2024.12.15 21:25:37.706 2024.12.15 21:25:38.033
106 6.0.0.550 2024.12.10 b37ac P P 574 340 2024.12.10 22:47:00.283 2024.12.10 22:47:00.857 2024.12.10 21:25:52.613 2024.12.10 21:25:52.953
107 6.0.0.548 2024.12.08 2cc77 P P 1018 359 2024.12.08 22:41:44.194 2024.12.08 22:41:45.212 2024.12.08 21:25:32.203 2024.12.08 21:25:32.562
108 6.0.0.544 2024.12.05 96943 P P 832 365 2024.12.05 22:45:49.611 2024.12.05 22:45:50.443 2024.12.05 21:26:18.632 2024.12.05 21:26:18.997
109 6.0.0.543 2024.12.03 30b77 P P 1011 347 2024.12.03 22:46:21.643 2024.12.03 22:46:22.654 2024.12.03 21:25:52.213 2024.12.03 21:25:52.560
110 6.0.0.540 2024.12.02 4a1f4 P P 683 345 2024.12.02 22:39:30.904 2024.12.02 22:39:31.587 2024.12.02 21:25:37.871 2024.12.02 21:25:38.216
111 6.0.0.539 2024.11.28 1f283 P P 822 365 2024.11.29 22:45:22.385 2024.11.29 22:45:23.207 2024.11.29 21:25:49.163 2024.11.29 21:25:49.528
112 6.0.0.535 2024.11.26 77b95 P P 1067 342 2024.11.26 22:36:45.947 2024.11.26 22:36:47.014 2024.11.26 21:24:56.892 2024.11.26 21:24:57.234
113 6.0.0.534 2024.11.25 e9584 P P 1034 352 2024.11.25 22:37:58.491 2024.11.25 22:37:59.525 2024.11.25 21:24:55.438 2024.11.25 21:24:55.790
114 6.0.0.533 2024.11.17 933ac P P 636 348 2024.11.22 08:59:07.727 2024.11.22 08:59:08.363 2024.11.22 07:54:25.822 2024.11.22 07:54:26.170
115 6.0.0.532 2024.11.16 9e263 P P 568 327 2024.11.16 22:34:32.616 2024.11.16 22:34:33.184 2024.11.16 21:25:12.438 2024.11.16 21:25:12.765
116 6.0.0.530 2024.11.15 49804 P P 978 317 2024.11.16 00:37:39.710 2024.11.16 00:37:40.688 2024.11.15 23:25:01.620 2024.11.15 23:25:01.937
117 6.0.0.528 2024.11.14 9625b P P 1068 357 2024.11.15 00:39:21.758 2024.11.15 00:39:22.826 2024.11.14 23:25:19.776 2024.11.14 23:25:20.133
118 6.0.0.526 2024.11.12 65b80 P P 1047 358 2024.11.14 00:38:39.660 2024.11.14 00:38:40.707 2024.11.13 23:24:59.841 2024.11.13 23:25:00.199
119 6.0.0.523 2024.11.08 8ca23 P P 543 344 2024.11.11 00:36:28.856 2024.11.11 00:36:29.399 2024.11.10 23:24:42.207 2024.11.10 23:24:42.551
120 6.0.0.520 2024.11.07 4eefa P P 1033 339 2024.11.08 00:35:02.744 2024.11.08 00:35:03.777 2024.11.07 23:24:44.552 2024.11.07 23:24:44.891
121 6.0.0.516 2024.11.04 b0c36 P P 899 336 2024.11.05 00:34:37.435 2024.11.05 00:34:38.334 2024.11.04 23:24:41.416 2024.11.04 23:24:41.752
122 6.0.0.515 2024.10.30 d53f3 P P 1021 349 2024.11.04 00:35:57.632 2024.11.04 00:35:58.653 2024.11.03 23:24:44.924 2024.11.03 23:24:45.273
123 6.0.0.512 2024.10.29 833ef P P 989 351 2024.10.30 00:37:59.201 2024.10.30 00:38:00.190 2024.10.29 23:25:20.314 2024.10.29 23:25:20.665
124 6.0.0.511 2024.10.26 c4bc9 P P 994 362 2024.10.29 00:37:56.181 2024.10.29 00:37:57.175 2024.10.28 23:24:47.682 2024.10.28 23:24:48.044
125 6.0.0.509 2024.10.25 3aedb P P 1117 377 2024.10.26 00:43:52.432 2024.10.26 00:43:53.549 2024.10.25 23:25:46.753 2024.10.25 23:25:47.130
126 6.0.0.508 2024.10.24 a8f5b P P 1033 363 2024.10.25 00:39:56.220 2024.10.25 00:39:57.253 2024.10.24 23:25:32.713 2024.10.24 23:25:33.076
127 6.0.0.502 2024.10.22 6bfd7 P P 1008 378 2024.10.23 00:39:28.689 2024.10.23 00:39:29.697 2024.10.22 23:25:24.911 2024.10.22 23:25:25.289
128 6.0.0.500 2024.10.21 be565 P P 657 330 2024.10.22 17:01:22.711 2024.10.22 17:01:23.368 2024.10.22 15:54:33.489 2024.10.22 15:54:33.819
129 6.0.0.499 2024.10.19 6214b P P 1134 384 2024.10.20 00:40:40.157 2024.10.20 00:40:41.291 2024.10.19 23:25:51.970 2024.10.19 23:25:52.354
130 6.0.0.498 2024.10.18 591a7 P P 1016 377 2024.10.19 00:38:49.009 2024.10.19 00:38:50.025 2024.10.18 23:25:11.044 2024.10.18 23:25:11.421
131 6.0.0.494 2024.10.17 cf5a4 P P 1072 349 2024.10.18 00:39:53.665 2024.10.18 00:39:54.737 2024.10.17 23:25:55.765 2024.10.17 23:25:56.114
132 6.0.0.491 2024.10.14 dc5fb P P 1013 359 2024.10.15 00:36:44.774 2024.10.15 00:36:45.787 2024.10.14 23:24:55.425 2024.10.14 23:24:55.784
133 6.0.0.489 2024.10.11 2ba59 P P 1040 358 2024.10.12 00:41:05.797 2024.10.12 00:41:06.837 2024.10.11 23:25:26.669 2024.10.11 23:25:27.027
134 6.0.0.488 2024.10.09 1c93e P P 1072 325 2024.10.10 00:47:29.241 2024.10.10 00:47:30.313 2024.10.09 23:26:07.809 2024.10.09 23:26:08.134
135 6.0.0.487 2024.10.06 065a3 P P 1037 427 2024.10.07 00:46:35.495 2024.10.07 00:46:36.532 2024.10.06 23:26:19.193 2024.10.06 23:26:19.620
136 6.0.0.485 2024.10.04 e95c1 P P 1144 348 2024.10.05 00:48:27.725 2024.10.05 00:48:28.869 2024.10.04 23:26:05.678 2024.10.04 23:26:06.026
137 6.0.0.483 2024.10.02 5e5ae P P 1128 382 2024.10.03 00:45:39.544 2024.10.03 00:45:40.672 2024.10.02 23:25:54.407 2024.10.02 23:25:54.789
138 6.0.0.478 2024.09.30 b5010 P P 1067 348 2024.10.01 00:43:07.630 2024.10.01 00:43:08.697 2024.09.30 23:25:44.720 2024.09.30 23:25:45.068
139 6.0.0.474 2024.09.26 e4efb P P 959 359 2024.09.30 00:40:44.806 2024.09.30 00:40:45.765 2024.09.29 23:25:23.321 2024.09.29 23:25:23.680
140 6.0.0.471 2024.09.24 01b51 P P 1116 352 2024.09.25 22:42:55.517 2024.09.25 22:42:56.633 2024.09.25 21:25:28.641 2024.09.25 21:25:28.993
141 6.0.0.470 2024.09.23 77cc0 P P 1094 331 2024.09.23 22:42:32.139 2024.09.23 22:42:33.233 2024.09.23 21:25:42.163 2024.09.23 21:25:42.494
142 6.0.0.467 2024.09.21 ea0b8 P P 1018 360 2024.09.22 22:41:24.366 2024.09.22 22:41:25.384 2024.09.22 21:25:16.571 2024.09.22 21:25:16.931
143 6.0.0.466 2024.09.20 32dc6 P P 1024 324 2024.09.20 22:40:25.889 2024.09.20 22:40:26.913 2024.09.20 21:25:17.120 2024.09.20 21:25:17.444
144 6.0.0.461 2024.09.17 2c895 P P 1156 575 2024.09.17 23:07:32.122 2024.09.17 23:07:33.278 2024.09.17 21:29:52.964 2024.09.17 21:29:53.539
145 6.0.0.460 2024.09.11 3c253 P P 1007 655 2024.09.16 23:09:02.144 2024.09.16 23:09:03.151 2024.09.16 21:29:50.811 2024.09.16 21:29:51.466
146 6.0.0.457 2024.09.09 fdc6f P P 921 652 2024.09.09 23:23:29.385 2024.09.09 23:23:30.306 2024.09.09 21:31:01.313 2024.09.09 21:31:01.965
147 6.0.0.455 2024.09.07 500d8 P P 1274 602 2024.09.07 23:20:56.033 2024.09.07 23:20:57.307 2024.09.07 21:31:19.815 2024.09.07 21:31:20.417
148 6.0.0.454 2024.09.05 4d70f P P 1219 644 2024.09.05 23:09:15.242 2024.09.05 23:09:16.461 2024.09.05 21:30:25.868 2024.09.05 21:30:26.512
149 6.0.0.452 2024.09.04 9ff9c P P 1215 598 2024.09.04 23:08:27.038 2024.09.04 23:08:28.253 2024.09.04 21:30:01.864 2024.09.04 21:30:02.462
150 6.0.0.450 2024.09.02 27124 P P 1694 541 2024.09.03 23:48:57.932 2024.09.03 23:48:59.626 2024.09.03 21:41:14.389 2024.09.03 21:41:14.930
151 6.0.0.447 2024.09.01 056ec P P 1263 605 2024.09.01 23:21:30.133 2024.09.01 23:21:31.396 2024.09.01 21:29:45.813 2024.09.01 21:29:46.418
152 6.0.0.446 2024.08.30 fe1b2 P P 1035 623 2024.08.31 23:24:15.749 2024.08.31 23:24:16.784 2024.08.31 21:40:24.125 2024.08.31 21:40:24.748
153 6.0.0.444 2024.08.28 785d4 P P 832 546 2024.08.29 23:41:00.778 2024.08.29 23:41:01.610 2024.08.29 21:40:46.827 2024.08.29 21:40:47.373
154 6.0.0.442 2024.08.21 4a68f P P 1861 1422 2024.08.28 00:40:11.110 2024.08.28 00:40:12.971 2024.08.27 21:47:00.882 2024.08.27 21:47:02.304
155 6.0.0.441 2024.08.20 75042 P P 1217 585 2024.08.20 23:13:58.560 2024.08.20 23:13:59.777 2024.08.20 21:30:47.882 2024.08.20 21:30:48.467
156 6.0.0.438 2024.08.16 088b5 P P 631 544 2024.08.18 22:45:50.213 2024.08.18 22:45:50.844 2024.08.18 21:27:05.205 2024.08.18 21:27:05.749
157 6.0.0.437 2024.08.14 3c88b P P 656 545 2024.08.15 22:44:46.205 2024.08.15 22:44:46.861 2024.08.15 21:27:05.278 2024.08.15 21:27:05.823
158 6.0.0.432 2024.08.11 e82ac P P 652 465 2024.08.12 22:43:47.097 2024.08.12 22:43:47.749 2024.08.12 21:26:49.942 2024.08.12 21:26:50.407
159 6.0.0.431 2024.08.09 de5a7 P P 670 520 2024.08.09 22:44:35.059 2024.08.09 22:44:35.729 2024.08.09 21:27:17.620 2024.08.09 21:27:18.140
160 6.0.0.428 2024.08.08 9191b P P 1094 533 2024.08.08 22:43:45.985 2024.08.08 22:43:47.079 2024.08.08 21:27:09.855 2024.08.08 21:27:10.388
161 6.0.0.423 2024.08.07 33b41 P P 713 584 2024.08.08 08:44:06.635 2024.08.08 08:44:07.348 2024.08.08 07:34:43.907 2024.08.08 07:34:44.491
162 6.0.0.421 2024.08.06 ed60d P P 773 325 2024.08.06 22:33:15.141 2024.08.06 22:33:15.914 2024.08.06 21:25:28.565 2024.08.06 21:25:28.890
163 6.0.0.419 2024.08.05 3505a P P 400 317 2024.08.05 22:35:03.064 2024.08.05 22:35:03.464 2024.08.05 21:25:39.444 2024.08.05 21:25:39.761
164 6.0.0.409 2024.08.02 ec18f P P 809 307 2024.08.04 22:36:32.913 2024.08.04 22:36:33.722 2024.08.04 21:25:51.325 2024.08.04 21:25:51.632
165 6.0.0.406 2024.08.01 b20be P P 743 346 2024.08.01 22:35:34.155 2024.08.01 22:35:34.898 2024.08.01 21:25:35.601 2024.08.01 21:25:35.947
166 6.0.0.405 2024.07.31 a62ac P P 674 368 2024.07.31 22:35:12.953 2024.07.31 22:35:13.627 2024.07.31 21:25:41.349 2024.07.31 21:25:41.717
167 6.0.0.403 2024.07.29 30f03 P P 688 334 2024.07.29 22:34:52.052 2024.07.29 22:34:52.740 2024.07.29 21:25:25.007 2024.07.29 21:25:25.341
168 6.0.0.401 2024.07.26 24e41 P P 787 317 2024.07.26 22:32:57.613 2024.07.26 22:32:58.400 2024.07.26 21:25:23.765 2024.07.26 21:25:24.082
169 6.0.0.400 2024.07.24 5bb78 P P 780 335 2024.07.24 22:32:58.597 2024.07.24 22:32:59.377 2024.07.24 21:25:28.349 2024.07.24 21:25:28.684
170 6.0.0.398 2024.07.23 85b18 P P 791 326 2024.07.23 22:38:12.926 2024.07.23 22:38:13.717 2024.07.23 21:25:28.623 2024.07.23 21:25:28.949
171 6.0.0.397 2024.07.22 c734c P P 791 339 2024.07.22 22:32:48.152 2024.07.22 22:32:48.943 2024.07.22 21:25:24.817 2024.07.22 21:25:25.156
172 6.0.0.396 2024.07.13 cf952 P P 480 353 2024.07.21 22:32:43.129 2024.07.21 22:32:43.609 2024.07.21 21:25:10.584 2024.07.21 21:25:10.937
173 6.0.0.395 2024.07.10 845f4 P P 902 364 2024.07.12 22:32:31.247 2024.07.12 22:32:32.149 2024.07.12 21:25:02.081 2024.07.12 21:25:02.445
174 6.0.0.392 2024.07.09 ea301 P P 832 305 2024.07.09 22:30:28.541 2024.07.09 22:30:29.373 2024.07.09 21:25:00.640 2024.07.09 21:25:00.945
175 6.0.0.391 2024.07.08 7d50c P P 538 326 2024.07.08 22:31:44.649 2024.07.08 22:31:45.187 2024.07.08 21:25:15.681 2024.07.08 21:25:16.007
176 6.0.0.389 2024.07.05 cc71c P P 911 299 2024.07.05 22:32:16.858 2024.07.05 22:32:17.769 2024.07.05 21:25:10.595 2024.07.05 21:25:10.894
177 6.0.0.388 2024.06.30 e5700 P P 784 304 2024.06.30 22:31:38.581 2024.06.30 22:31:39.365 2024.06.30 21:25:15.706 2024.06.30 21:25:16.010
178 6.0.0.387 2024.06.27 7c28a P P 815 349 2024.06.27 22:31:44.717 2024.06.27 22:31:45.532 2024.06.27 21:25:22.164 2024.06.27 21:25:22.513
179 6.0.0.386 2024.06.23 7c57f P P 823 344 2024.06.23 22:29:35.497 2024.06.23 22:29:36.320 2024.06.23 21:24:55.185 2024.06.23 21:24:55.529
180 6.0.0.384 2024.06.21 24d99 P P 781 334 2024.06.21 22:32:10.093 2024.06.21 22:32:10.874 2024.06.21 21:24:54.770 2024.06.21 21:24:55.104
181 6.0.0.374 2024.06.13 0097d P P 960 300 2024.06.20 22:32:13.066 2024.06.20 22:32:14.026 2024.06.20 21:24:57.916 2024.06.20 21:24:58.216
182 6.0.0.373 2024.06.09 363f0 P P 596 310 2024.06.13 12:49:49.410 2024.06.13 12:49:50.006 2024.06.13 11:48:08.085 2024.06.13 11:48:08.395
183 6.0.0.371 2024.06.08 f7130 P P 488 277 2024.06.11 21:41:53.744 2024.06.11 21:41:54.232 2024.06.11 20:46:49.479 2024.06.11 20:46:49.756
184 6.0.0.366 2024.05.30 ab2c9 P P 704 362 2024.06.12 08:26:46.913 2024.06.12 08:26:47.617 2024.06.12 07:18:26.370 2024.06.12 07:18:26.732
185 6.0.0.363 2024.05.27 06703 P P 533 319 2024.06.12 13:47:16.274 2024.06.12 13:47:16.807 2024.06.12 12:50:04.482 2024.06.12 12:50:04.801
186 6.0.0.359 2024.05.23 9cb11 P P 467 336 2024.06.12 11:39:36.293 2024.06.12 11:39:36.760 2024.06.12 10:42:04.906 2024.06.12 10:42:05.242
187 6.0.0.358 2024.05.21 995dd P P 424 274 2024.06.12 16:23:47.070 2024.06.12 16:23:47.494 2024.06.12 15:27:17.001 2024.06.12 15:27:17.275
188 6.0.0.357 2024.05.18 bf6c4 P P 440 248 2024.06.12 20:59:57.905 2024.06.12 20:59:58.345 2024.06.12 20:03:44.163 2024.06.12 20:03:44.411
189 6.0.0.356 2024.05.17 eab06 P P 409 298 2024.06.13 05:06:39.227 2024.06.13 05:06:39.636 2024.06.13 04:09:51.262 2024.06.13 04:09:51.560
190 6.0.0.355 2024.05.16 8dd6e P P 455 242 2024.06.13 07:13:46.641 2024.06.13 07:13:47.096 2024.06.13 06:17:13.879 2024.06.13 06:17:14.121
191 6.0.0.354 2024.05.15 d3adc P P 710 324 2024.06.13 10:15:28.115 2024.06.13 10:15:28.825 2024.06.13 09:13:24.053 2024.06.13 09:13:24.377
192 6.0.0.351 2024.05.14 2e3e0 P P 552 404 2024.06.13 15:28:51.844 2024.06.13 15:28:52.396 2024.06.13 14:26:03.033 2024.06.13 14:26:03.437

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):