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   
  + Statement failed, SQLSTATE  42S02
  + unsuccessful metadata update
  + -CREATE VIEW "PUBLIC"."VP_REC_STATS" failed
  + -Dynamic SQL Error
  + -SQL error code  -204
  + -Table unknown
  + -"PLG$PROF_RECORD_SOURCE_STATS_VIEW"
  + -At line 10, column 14
  + Statement failed, SQLSTATE  42S02
  + Dynamic SQL Error
  + -SQL error code  -204
  + -Table unknown
  + -"VP_REC_STATS"
  + -At line 10, column 18
  - #Select Expression
  - #    -> Filter (preliminary)
  - #        -> Nested Loop Join (inner)
  - #            -> Table "TMAIN" as "V_TEST M4" Full Scan
  - #            -> Filter
  - #                -> Table "TDETL" as "V_TEST D4 DX" Access By ID
  - #                    -> Bitmap And
  - #                        -> Bitmap And
  - #                            -> Bitmap
  - #                                -> Index "TDETL_Z" Range Scan (lower bound: 1/1)
  - #                            -> Bitmap
  - #
  - #Sub-query (invariant)
  - #    -> Filter
  - #        -> Aggregate
  - #            -> Table "TDETL" as "V_TEST DY" Access By ID
  - #                -> Index "TDETL_FK" Full Scan
  - Records affected: 10

LOG DETAILS:

2025-06-30 05:40:40.877
2025-06-30 05:40:40.884 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-30 05:40:40.892 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-30 05:40:40.905
2025-06-30 05:40:40.912 @pytest.mark.version('>=5.0')
2025-06-30 05:40:40.922 def test_1(act: Action, capsys):
2025-06-30 05:40:40.934
2025-06-30 05:40:40.946 test_sql = f"""
2025-06-30 05:40:40.958 recreate table tdetl(id int);
2025-06-30 05:40:40.970 recreate table tmain(id int primary key using index tmain_pk, x int);
2025-06-30 05:40:40.984 recreate table tdetl(id int primary key using index tdetl_pk, pid int references tmain using index tdetl_fk, y int, z int);
2025-06-30 05:40:40.996
2025-06-30 05:40:41.008 insert into tmain(id,x)
2025-06-30 05:40:41.020 select i, -100 + mod(i,200) from (select row_number()over() i from rdb$types rows 200);
2025-06-30 05:40:41.033
2025-06-30 05:40:41.045 insert into tdetl(id, pid, y,z)
2025-06-30 05:40:41.055 select i, 1+mod(i,10), mod(i,30), mod(i,70) from (select row_number()over() i from rdb$types,rdb$types rows 1000);
2025-06-30 05:40:41.064 commit;
2025-06-30 05:40:41.072
2025-06-30 05:40:41.079 create index tmain_x on tmain(x);
2025-06-30 05:40:41.086 create index tdetl_y on tdetl(y);
2025-06-30 05:40:41.095 create index tdetl_z on tdetl(z);
2025-06-30 05:40:41.106
2025-06-30 05:40:41.114 set statistics index tdetl_fk;
2025-06-30 05:40:41.123 commit;
2025-06-30 05:40:41.132
2025-06-30 05:40:41.139 out {os.devnull};
2025-06-30 05:40:41.147 -- This is needed in order to create view based on snapshot 'plg$prof_*' tables:
2025-06-30 05:40:41.161 select rdb$profiler.start_session('profile session 0') from rdb$database;
2025-06-30 05:40:41.172 out;
2025-06-30 05:40:41.187
2025-06-30 05:40:41.198 create view vp_rec_stats as
2025-06-30 05:40:41.207 select
2025-06-30 05:40:41.215 cast(t.statement_id as smallint) as sttm_id
2025-06-30 05:40:41.222 ,cast(t.level as smallint) as level
2025-06-30 05:40:41.231 ,cast(t.record_source_id as smallint) as  rec_id
2025-06-30 05:40:41.243 ,cast(t.parent_record_source_id as smallint) as par_id
2025-06-30 05:40:41.253 ,substring('#' || lpad('', 4*t.level,' ') || replace( replace(t.access_path, ascii_char(13), ''), ascii_char(10), ascii_char(10) || '#' || lpad('', 4*t.level,' ') ) from 1 for 320) as acc_path
2025-06-30 05:40:41.263 ,substring( cast(t.sql_text as varchar(255)) from 1 for 50 ) as sql_text
2025-06-30 05:40:41.272 ,dense_rank()over(order by t.level) as ranked_level
2025-06-30 05:40:41.281 from plg$prof_record_source_stats_view t
2025-06-30 05:40:41.289 join plg$prof_sessions s
2025-06-30 05:40:41.299 on s.profile_id = t.profile_id and
2025-06-30 05:40:41.307 s.description = 'profile session 1'
2025-06-30 05:40:41.315 ;
2025-06-30 05:40:41.323 execute procedure rdb$profiler.finish_session(true);
2025-06-30 05:40:41.331 commit;
2025-06-30 05:40:41.338
2025-06-30 05:40:41.352
2025-06-30 05:40:41.364 create view v_test as
2025-06-30 05:40:41.377 select m4.id, d4.y, d4.z
2025-06-30 05:40:41.386 from tmain m4
2025-06-30 05:40:41.393 cross join lateral (
2025-06-30 05:40:41.402 select y, z
2025-06-30 05:40:41.415 from tdetl dx
2025-06-30 05:40:41.429 where
2025-06-30 05:40:41.440 dx.pid = m4.id
2025-06-30 05:40:41.452 and m4.x between dx.y and dx.z
2025-06-30 05:40:41.461 ) d4
2025-06-30 05:40:41.474 where exists(select count(*) from tdetl dy group by dy.pid having count(*) > 2);
2025-06-30 05:40:41.485
2025-06-30 05:40:41.498 out {os.devnull};
2025-06-30 05:40:41.512 select rdb$profiler.start_session('profile session 1') from rdb$database;
2025-06-30 05:40:41.522 -- Test query for which we want to see data in the profiler tables:
2025-06-30 05:40:41.530 -- ##########
2025-06-30 05:40:41.540 select * from v_test;
2025-06-30 05:40:41.554 out;
2025-06-30 05:40:41.565 execute procedure rdb$profiler.finish_session(true);
2025-06-30 05:40:41.578 commit;
2025-06-30 05:40:41.588
2025-06-30 05:40:41.597 set transaction read committed;
2025-06-30 05:40:41.608 set count on;
2025-06-30 05:40:41.619 set list on;
2025-06-30 05:40:41.628
2025-06-30 05:40:41.635 -- ##############################################
2025-06-30 05:40:41.642 -- Output data from profiler.
2025-06-30 05:40:41.649 -- NB-1: each line is prefixed with '#' character in order to see indents.
2025-06-30 05:40:41.656 -- NB-2: 'level' column can not be used for joining in recursive part because of 'gaps'!
2025-06-30 05:40:41.664 --       Instead, 'ranked_level' is used fo this:
2025-06-30 05:40:41.672 -- ##############################################
2025-06-30 05:40:41.681 with recursive
2025-06-30 05:40:41.693 r as (
2025-06-30 05:40:41.706 select sttm_id, level, t.ranked_level, rec_id, par_id, acc_path --, sql_text
2025-06-30 05:40:41.713 from vp_rec_stats t
2025-06-30 05:40:41.720 where
2025-06-30 05:40:41.726 t.par_id is null and t.sql_text not containing 'rdb$profiler.start_session'
2025-06-30 05:40:41.731
2025-06-30 05:40:41.737 UNION ALL
2025-06-30 05:40:41.749
2025-06-30 05:40:41.762 select t.sttm_id, t.level, t.ranked_level, t.rec_id, t.par_id, t.acc_path --, t.sql_text
2025-06-30 05:40:41.773 from vp_rec_stats t
2025-06-30 05:40:41.785 join r on t.sttm_id = r.sttm_id and t.ranked_level = r.ranked_level  + 1 and r.rec_id = t.par_id
2025-06-30 05:40:41.798 )
2025-06-30 05:40:41.810 select acc_path as access_path_blob_id from r;
2025-06-30 05:40:41.823 """
2025-06-30 05:40:41.832
2025-06-30 05:40:41.841 act.expected_stdout = f"""
2025-06-30 05:40:41.848 #Select Expression
2025-06-30 05:40:41.854 #    -> Filter (preliminary)
2025-06-30 05:40:41.860 #        -> Nested Loop Join (inner)
2025-06-30 05:40:41.867 #            -> Table "TMAIN" as "V_TEST M4" Full Scan
2025-06-30 05:40:41.874 #            -> Filter
2025-06-30 05:40:41.884 #                -> Table "TDETL" as "V_TEST D4 DX" Access By ID
2025-06-30 05:40:41.895 #                    -> Bitmap And
2025-06-30 05:40:41.905 #                        -> Bitmap And
2025-06-30 05:40:41.917 #                            -> Bitmap
2025-06-30 05:40:41.926 #                                -> Index "TDETL_Z" Range Scan (lower bound: 1/1)
2025-06-30 05:40:41.935 #                            -> Bitmap
2025-06-30 05:40:41.943 #
2025-06-30 05:40:41.951 #Sub-query (invariant)
2025-06-30 05:40:41.962 #    -> Filter
2025-06-30 05:40:41.970 #        -> Aggregate
2025-06-30 05:40:41.977 #            -> Table "TDETL" as "V_TEST DY" Access By ID
2025-06-30 05:40:41.984 #                -> Index "TDETL_FK" Full Scan
2025-06-30 05:40:41.991 Records affected: 10
2025-06-30 05:40:41.999 """
2025-06-30 05:40:42.006 act.isql(input = test_sql, combine_output = True)
2025-06-30 05:40:42.015 >       assert act.clean_stdout == act.clean_expected_stdout
2025-06-30 05:40:42.023 E       assert
2025-06-30 05:40:42.032 E         + Statement failed, SQLSTATE  42S02
2025-06-30 05:40:42.039 E         + unsuccessful metadata update
2025-06-30 05:40:42.046 E         + -CREATE VIEW "PUBLIC"."VP_REC_STATS" failed
2025-06-30 05:40:42.053 E         + -Dynamic SQL Error
2025-06-30 05:40:42.060 E         + -SQL error code  -204
2025-06-30 05:40:42.067 E         + -Table unknown
2025-06-30 05:40:42.074 E         + -"PLG$PROF_RECORD_SOURCE_STATS_VIEW"
2025-06-30 05:40:42.082 E         + -At line 10, column 14
2025-06-30 05:40:42.091 E         + Statement failed, SQLSTATE  42S02
2025-06-30 05:40:42.103 E         + Dynamic SQL Error
2025-06-30 05:40:42.112 E         + -SQL error code  -204
2025-06-30 05:40:42.119 E         + -Table unknown
2025-06-30 05:40:42.127 E         + -"VP_REC_STATS"
2025-06-30 05:40:42.136 E         + -At line 10, column 18
2025-06-30 05:40:42.147 E         - #Select Expression
2025-06-30 05:40:42.155 E         - #    -> Filter (preliminary)
2025-06-30 05:40:42.163 E         - #        -> Nested Loop Join (inner)
2025-06-30 05:40:42.171 E         - #            -> Table "TMAIN" as "V_TEST M4" Full Scan
2025-06-30 05:40:42.180 E         - #            -> Filter
2025-06-30 05:40:42.189 E         - #                -> Table "TDETL" as "V_TEST D4 DX" Access By ID
2025-06-30 05:40:42.202 E         - #                    -> Bitmap And
2025-06-30 05:40:42.211 E         - #                        -> Bitmap And
2025-06-30 05:40:42.218 E         - #                            -> Bitmap
2025-06-30 05:40:42.225 E         - #                                -> Index "TDETL_Z" Range Scan (lower bound: 1/1)
2025-06-30 05:40:42.231 E         - #                            -> Bitmap
2025-06-30 05:40:42.241 E         - #
2025-06-30 05:40:42.246 E         - #Sub-query (invariant)
2025-06-30 05:40:42.258 E         - #    -> Filter
2025-06-30 05:40:42.269 E         - #        -> Aggregate
2025-06-30 05:40:42.277 E         - #            -> Table "TDETL" as "V_TEST DY" Access By ID
2025-06-30 05:40:42.290 E         - #                -> Index "TDETL_FK" Full Scan
2025-06-30 05:40:42.299 E         - Records affected: 10
2025-06-30 05:40:42.310
2025-06-30 05:40:42.320 tests/bugs/gh_7687_test.py:183: AssertionError
2025-06-30 05:40:42.329 ---------------------------- Captured stdout setup -----------------------------
2025-06-30 05:40:42.339 Creating db: localhost:/var/tmp/qa_2024/test_11605/test.fdb [page_size=None, 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.version('>=5.0')
    def test_1(act: Action, capsys):
    
        test_sql = f"""
            recreate table tdetl(id int);
            recreate table tmain(id int primary key using index tmain_pk, x int);
            recreate table tdetl(id int primary key using index tdetl_pk, pid int references tmain using index tdetl_fk, y int, z int);
    
            insert into tmain(id,x)
            select i, -100 + mod(i,200) from (select row_number()over() i from rdb$types rows 200);
    
            insert into tdetl(id, pid, y,z)
            select i, 1+mod(i,10), mod(i,30), mod(i,70) from (select row_number()over() i from rdb$types,rdb$types rows 1000);
            commit;
    
            create index tmain_x on tmain(x);
            create index tdetl_y on tdetl(y);
            create index tdetl_z on tdetl(z);
    
            set statistics index tdetl_fk;
            commit;
    
            out {os.devnull};
            -- This is needed in order to create view based on snapshot 'plg$prof_*' tables:
            select rdb$profiler.start_session('profile session 0') from rdb$database;
            out;
    
            create view vp_rec_stats as
            select
                cast(t.statement_id as smallint) as sttm_id
               ,cast(t.level as smallint) as level
               ,cast(t.record_source_id as smallint) as  rec_id
               ,cast(t.parent_record_source_id as smallint) as par_id
               ,substring('#' || lpad('', 4*t.level,' ') || replace( replace(t.access_path, ascii_char(13), ''), ascii_char(10), ascii_char(10) || '#' || lpad('', 4*t.level,' ') ) from 1 for 320) as acc_path
               ,substring( cast(t.sql_text as varchar(255)) from 1 for 50 ) as sql_text
               ,dense_rank()over(order by t.level) as ranked_level
            from plg$prof_record_source_stats_view t
            join plg$prof_sessions s
                on s.profile_id = t.profile_id and
                   s.description = 'profile session 1'
            ;
            execute procedure rdb$profiler.finish_session(true);
            commit;
    
    
            create view v_test as
            select m4.id, d4.y, d4.z
            from tmain m4
            cross join lateral (
                select y, z
                from tdetl dx
                where
                    dx.pid = m4.id
                    and m4.x between dx.y and dx.z
            ) d4
            where exists(select count(*) from tdetl dy group by dy.pid having count(*) > 2);
    
            out {os.devnull};
            select rdb$profiler.start_session('profile session 1') from rdb$database;
            -- Test query for which we want to see data in the profiler tables:
            -- ##########
            select * from v_test;
            out;
            execute procedure rdb$profiler.finish_session(true);
            commit;
    
            set transaction read committed;
            set count on;
            set list on;
    
            -- ##############################################
            -- Output data from profiler.
            -- NB-1: each line is prefixed with '#' character in order to see indents.
            -- NB-2: 'level' column can not be used for joining in recursive part because of 'gaps'!
            --       Instead, 'ranked_level' is used fo this:
            -- ##############################################
            with recursive
            r as (
                select sttm_id, level, t.ranked_level, rec_id, par_id, acc_path --, sql_text
                from vp_rec_stats t
                where
                   t.par_id is null and t.sql_text not containing 'rdb$profiler.start_session'
    
                UNION ALL
    
                select t.sttm_id, t.level, t.ranked_level, t.rec_id, t.par_id, t.acc_path --, t.sql_text
                from vp_rec_stats t
                join r on t.sttm_id = r.sttm_id and t.ranked_level = r.ranked_level  + 1 and r.rec_id = t.par_id
            )
            select acc_path as access_path_blob_id from r;
        """
    
        act.expected_stdout = f"""
            #Select Expression
            #    -> Filter (preliminary)
            #        -> Nested Loop Join (inner)
            #            -> Table "TMAIN" as "V_TEST M4" Full Scan
            #            -> Filter
            #                -> Table "TDETL" as "V_TEST D4 DX" Access By ID
            #                    -> Bitmap And
            #                        -> Bitmap And
            #                            -> Bitmap
            #                                -> Index "TDETL_Z" Range Scan (lower bound: 1/1)
            #                            -> Bitmap
            #
            #Sub-query (invariant)
            #    -> Filter
            #        -> Aggregate
            #            -> Table "TDETL" as "V_TEST DY" Access By ID
            #                -> Index "TDETL_FK" Full Scan
            Records affected: 10
        """
        act.isql(input = test_sql, combine_output = True)
>       assert act.clean_stdout == act.clean_expected_stdout
E       assert   
E         + Statement failed, SQLSTATE  42S02
E         + unsuccessful metadata update
E         + -CREATE VIEW "PUBLIC"."VP_REC_STATS" failed
E         + -Dynamic SQL Error
E         + -SQL error code  -204
E         + -Table unknown
E         + -"PLG$PROF_RECORD_SOURCE_STATS_VIEW"
E         + -At line 10, column 14
E         + Statement failed, SQLSTATE  42S02
E         + Dynamic SQL Error
E         + -SQL error code  -204
E         + -Table unknown
E         + -"VP_REC_STATS"
E         + -At line 10, column 18
E         - #Select Expression
E         - #    -> Filter (preliminary)
E         - #        -> Nested Loop Join (inner)
E         - #            -> Table "TMAIN" as "V_TEST M4" Full Scan
E         - #            -> Filter
E         - #                -> Table "TDETL" as "V_TEST D4 DX" Access By ID
E         - #                    -> Bitmap And
E         - #                        -> Bitmap And
E         - #                            -> Bitmap
E         - #                                -> Index "TDETL_Z" Range Scan (lower bound: 1/1)
E         - #                            -> Bitmap
E         - #
E         - #Sub-query (invariant)
E         - #    -> Filter
E         - #        -> Aggregate
E         - #            -> Table "TDETL" as "V_TEST DY" Access By ID
E         - #                -> Index "TDETL_FK" Full Scan
E         - Records affected: 10

tests/bugs/gh_7687_test.py:183: 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.881 2025.06.27 7035d F F 1238 890 2025.06.30 02:00:39.382 2025.06.30 02:00:40.620 2025.06.29 23:15:34.121 2025.06.29 23:15:35.011
2 6.0.0.877 2025.06.26 8e38f F F 1391 981 2025.06.27 01:39:54.839 2025.06.27 01:39:56.230 2025.06.26 23:06:49.562 2025.06.26 23:06:50.543
3 6.0.0.876 2025.06.25 b1bec F F 1135 705 2025.06.26 01:43:44.633 2025.06.26 01:43:45.768 2025.06.25 23:08:38.994 2025.06.25 23:08:39.699
4 6.0.0.863 2025.06.24 c3c20 F F 1191 1000 2025.06.25 01:44:03.011 2025.06.25 01:44:04.202 2025.06.24 23:08:25.702 2025.06.24 23:08:26.702
5 6.0.0.858 2025.06.23 8d6f7 F F 1306 653 2025.06.24 01:44:24.281 2025.06.24 01:44:25.587 2025.06.23 23:08:34.145 2025.06.23 23:08:34.798
6 6.0.0.849 2025.06.20 7b79c F F 1198 1152 2025.06.21 01:55:55.073 2025.06.21 01:55:56.271 2025.06.20 23:17:32.590 2025.06.20 23:17:33.742
7 6.0.0.848 2025.06.19 c483c F F 1253 980 2025.06.20 01:52:17.201 2025.06.20 01:52:18.454 2025.06.19 23:14:25.066 2025.06.19 23:14:26.046
8 6.0.0.845 2025.06.18 22b12 F F 1213 1023 2025.06.19 02:00:54.632 2025.06.19 02:00:55.845 2025.06.18 23:17:29.156 2025.06.18 23:17:30.179
9 6.0.0.843 2025.06.16 995f4 F F 1317 1050 2025.06.18 01:59:08.661 2025.06.18 01:59:09.978 2025.06.17 23:20:14.026 2025.06.17 23:20:15.076
10 6.0.0.840 2025.06.14 29bca F F 1275 1064 2025.06.16 01:50:55.956 2025.06.16 01:50:57.231 2025.06.15 23:11:51.689 2025.06.15 23:11:52.753
11 6.0.0.838 2025.06.13 0e28a F F 1257 1180 2025.06.14 02:03:55.457 2025.06.14 02:03:56.714 2025.06.13 23:19:25.110 2025.06.13 23:19:26.290
12 6.0.0.835 2025.06.12 2cf29 F F 1217 575 2025.06.13 02:04:00.768 2025.06.13 02:04:01.985 2025.06.12 23:24:35.656 2025.06.12 23:24:36.231
13 6.0.0.834 2025.06.11 e889f F F 1280 1485 2025.06.12 01:59:07.484 2025.06.12 01:59:08.764 2025.06.11 23:19:50.218 2025.06.11 23:19:51.703
14 6.0.0.800 2025.06.10 1f226 P P 1131 767 2025.06.11 00:26:02.717 2025.06.11 00:26:03.848 2025.06.10 22:18:41.244 2025.06.10 22:18:42.011
15 6.0.0.799 2025.06.07 be644 P P 1972 604 2025.06.10 00:27:28.117 2025.06.10 00:27:30.089 2025.06.09 22:18:15.036 2025.06.09 22:18:15.640
16 6.0.0.797 2025.06.06 303e8 P P 1158 624 2025.06.07 00:31:02.026 2025.06.07 00:31:03.184 2025.06.06 22:17:59.591 2025.06.06 22:18:00.215
17 6.0.0.795 2025.05.29 7a71a P P 1114 691 2025.06.06 00:26:28.357 2025.06.06 00:26:29.471 2025.06.05 22:17:27.195 2025.06.05 22:17:27.886
18 6.0.0.792 2025.05.28 b4327 P P 1316 612 2025.05.29 00:39:50.763 2025.05.29 00:39:52.079 2025.05.28 22:19:31.963 2025.05.28 22:19:32.575
19 6.0.0.791 2025.05.27 02db8 P P 1179 662 2025.05.28 00:37:15.509 2025.05.28 00:37:16.688 2025.05.27 22:18:57.176 2025.05.27 22:18:57.838
20 6.0.0.789 2025.05.21 64051 P P 2005 653 2025.05.25 00:30:04.707 2025.05.25 00:30:06.712 2025.05.24 22:18:18.513 2025.05.24 22:18:19.166
21 6.0.0.787 2025.05.20 230ad P P 1275 1180 2025.05.21 00:27:16.742 2025.05.21 00:27:18.017 2025.05.20 22:17:10.495 2025.05.20 22:17:11.675
22 6.0.0.783 2025.05.12 37320 P P 1390 685 2025.05.19 12:00:46.482 2025.05.19 12:00:47.872 2025.05.19 10:05:56.836 2025.05.19 10:05:57.521
23 6.0.0.779 2025.05.11 136fa P P 1553 1071 2025.05.12 00:22:54.374 2025.05.12 00:22:55.927 2025.05.11 22:16:57.276 2025.05.11 22:16:58.347
24 6.0.0.778 2025.05.07 d735e P P 1183 799 2025.05.08 00:24:58.020 2025.05.08 00:24:59.203 2025.05.07 22:15:42.008 2025.05.07 22:15:42.807
25 6.0.0.776 2025.05.06 007cd P P 1215 603 2025.05.07 00:18:58.847 2025.05.07 00:19:00.062 2025.05.06 22:15:27.690 2025.05.06 22:15:28.293
26 6.0.0.770 2025.05.05 82c4a P P 1249 707 2025.05.06 00:18:11.538 2025.05.06 00:18:12.787 2025.05.05 22:14:38.312 2025.05.05 22:14:39.019
27 6.0.0.767 2025.05.01 cdd29 P P 1404 789 2025.05.02 00:15:57.885 2025.05.02 00:15:59.289 2025.05.01 22:14:12.179 2025.05.01 22:14:12.968
28 6.0.0.762 2025.04.30 5cb15 P P 1155 1077 2025.05.01 00:11:54.975 2025.05.01 00:11:56.130 2025.04.30 22:12:52.675 2025.04.30 22:12:53.752
29 6.0.0.755 2025.04.29 739c6 P P 1924 1184 2025.04.30 00:14:07.026 2025.04.30 00:14:08.950 2025.04.29 22:14:12.979 2025.04.29 22:14:14.163
30 6.0.0.753 2025.04.27 29ab3 P P 1183 1222 2025.04.28 00:16:21.332 2025.04.28 00:16:22.515 2025.04.27 22:13:37.275 2025.04.27 22:13:38.497
31 6.0.0.745 2025.04.21 78ad8 P P 1840 1041 2025.04.26 00:12:39.677 2025.04.26 00:12:41.517 2025.04.25 22:15:27.228 2025.04.25 22:15:28.269
32 6.0.0.744 2025.04.19 e883a P P 1955 1079 2025.04.20 00:14:15.823 2025.04.20 00:14:17.778 2025.04.19 22:14:29.543 2025.04.19 22:14:30.622
33 6.0.0.742 2025.04.17 abc3b P P 1931 1124 2025.04.19 00:16:20.023 2025.04.19 00:16:21.954 2025.04.18 22:14:52.186 2025.04.18 22:14:53.310
34 6.0.0.737 2025.04.16 fe52b P P 1191 1020 2025.04.17 00:13:08.708 2025.04.17 00:13:09.899 2025.04.16 22:14:50.107 2025.04.16 22:14:51.127
35 6.0.0.736 2025.04.14 3e6be P P 999 549 2025.04.14 23:54:50.719 2025.04.14 23:54:51.718 2025.04.14 22:06:34.005 2025.04.14 22:06:34.554
36 6.0.0.735 2025.04.13 6635c P P 1756 692 2025.04.13 23:58:08.862 2025.04.13 23:58:10.618 2025.04.13 22:07:39.594 2025.04.13 22:07:40.286
37 6.0.0.734 2025.04.12 12f3f P P 1003 943 2025.04.12 23:55:44.071 2025.04.12 23:55:45.074 2025.04.12 22:06:56.667 2025.04.12 22:06:57.610
38 6.0.0.730 2025.04.11 240b8 P P 1110 555 2025.04.11 23:57:40.682 2025.04.11 23:57:41.792 2025.04.11 22:06:31.406 2025.04.11 22:06:31.961
39 6.0.0.726 2025.04.10 d79c6 P P 1976 529 2025.04.10 23:57:16.617 2025.04.10 23:57:18.593 2025.04.10 22:06:35.202 2025.04.10 22:06:35.731
40 6.0.0.725 2025.04.09 a2b05 P P 1795 991 2025.04.09 23:58:24.362 2025.04.09 23:58:26.157 2025.04.09 22:08:14.718 2025.04.09 22:08:15.709
41 6.0.0.722 2025.04.08 a8b86 P P 1877 1076 2025.04.09 00:14:12.087 2025.04.09 00:14:13.964 2025.04.08 22:14:15.530 2025.04.08 22:14:16.606
42 6.0.0.719 2025.04.06 90fd9 P P 1788 1017 2025.04.07 00:11:54.282 2025.04.07 00:11:56.070 2025.04.06 22:12:50.706 2025.04.06 22:12:51.723
43 6.0.0.717 2025.04.04 53d70 P P 1756 856 2025.04.05 00:06:18.942 2025.04.05 00:06:20.698 2025.04.04 22:12:16.435 2025.04.04 22:12:17.291
44 6.0.0.716 2025.04.03 fc636 P P 1119 1172 2025.04.04 00:11:06.563 2025.04.04 00:11:07.682 2025.04.03 22:13:45.366 2025.04.03 22:13:46.538
45 6.0.0.715 2025.04.02 907ed P P 2232 1148 2025.04.03 00:11:08.117 2025.04.03 00:11:10.349 2025.04.02 22:13:52.851 2025.04.02 22:13:53.999
46 6.0.0.710 2025.04.01 40651 P P 1121 982 2025.04.02 00:09:31.306 2025.04.02 00:09:32.427 2025.04.01 22:12:57.715 2025.04.01 22:12:58.697
47 6.0.0.708 2025.03.31 cb069 P P 1610 1067 2025.04.01 00:00:32.890 2025.04.01 00:00:34.500 2025.03.31 22:07:41.473 2025.03.31 22:07:42.540
48 6.0.0.707 2025.03.28 4bd4f P P 1174 1084 2025.03.31 00:00:32.521 2025.03.31 00:00:33.695 2025.03.30 22:08:17.130 2025.03.30 22:08:18.214
49 6.0.0.698 2025.03.26 d72a7 P P 1424 1022 2025.03.28 00:22:27.331 2025.03.28 00:22:28.755 2025.03.27 22:14:10.482 2025.03.27 22:14:11.504
50 6.0.0.693 2025.03.24 0b559 P P 1944 924 2025.03.25 00:09:26.466 2025.03.25 00:09:28.410 2025.03.24 22:10:54.406 2025.03.24 22:10:55.330
51 6.0.0.687 2025.03.22 730aa P P 1188 627 2025.03.24 00:19:59.303 2025.03.24 00:20:00.491 2025.03.23 22:17:25.300 2025.03.23 22:17:25.927
52 6.0.0.686 2025.03.20 71bf6 P P 1111 1139 2025.03.21 00:25:49.547 2025.03.21 00:25:50.658 2025.03.20 22:19:08.247 2025.03.20 22:19:09.386
53 6.0.0.685 2025.03.19 a8577 P P 2215 638 2025.03.20 00:28:26.439 2025.03.20 00:28:28.654 2025.03.19 22:17:42.244 2025.03.19 22:17:42.882
54 6.0.0.680 2025.03.18 90d29 P P 1517 799 2025.03.19 10:48:49.766 2025.03.19 10:48:51.283 2025.03.19 09:03:55.863 2025.03.19 09:03:56.662
55 6.0.0.677 2025.03.16 c0a60 P P 2512 706 2025.03.17 00:17:44.494 2025.03.17 00:17:47.006 2025.03.16 22:17:20.484 2025.03.16 22:17:21.190
56 6.0.0.676 2025.03.15 3034f P P 1584 925 2025.03.16 15:50:42.768 2025.03.16 15:50:44.352 2025.03.16 14:08:39.493 2025.03.16 14:08:40.418
57 6.0.0.673 2025.03.13 40f5b P P 1351 636 2025.03.14 00:16:16.020 2025.03.14 00:16:17.371 2025.03.13 22:16:29.465 2025.03.13 22:16:30.101
58 6.0.0.671 2025.03.12 a4fff P P 2090 634 2025.03.13 00:20:20.778 2025.03.13 00:20:22.868 2025.03.12 22:18:42.537 2025.03.12 22:18:43.171
59 6.0.0.663 2025.03.11 daad2 P P 2346 654 2025.03.12 00:18:33.746 2025.03.12 00:18:36.092 2025.03.11 22:18:11.336 2025.03.11 22:18:11.990
60 6.0.0.661 2025.03.07 b9869 P P 2164 1164 2025.03.10 23:57:45.015 2025.03.10 23:57:47.179 2025.03.10 22:10:15.797 2025.03.10 22:10:16.961
61 6.0.0.660 2025.03.04 a6700 P P 1279 1246 2025.03.07 00:06:48.600 2025.03.07 00:06:49.879 2025.03.06 22:13:50.946 2025.03.06 22:13:52.192
62 6.0.0.658 2025.03.03 f15f8 P P 2401 1151 2025.03.04 00:01:04.206 2025.03.04 00:01:06.607 2025.03.03 22:10:26.470 2025.03.03 22:10:27.621
63 6.0.0.656 2025.02.27 25fb4 P P 2524 1224 2025.03.03 00:28:56.051 2025.03.03 00:28:58.575 2025.03.02 22:19:57.703 2025.03.02 22:19:58.927
64 6.0.0.655 2025.02.25 6e3e0 P P 1598 1168 2025.02.27 00:05:53.669 2025.02.27 00:05:55.267 2025.02.26 22:12:20.113 2025.02.26 22:12:21.281
65 6.0.0.654 2025.02.24 b7141 P P 1309 1129 2025.02.25 00:08:09.918 2025.02.25 00:08:11.227 2025.02.24 22:13:48.359 2025.02.24 22:13:49.488
66 6.0.0.652 2025.02.22 22662 P P 1743 1014 2025.02.24 07:26:00.453 2025.02.24 07:26:02.196 2025.02.24 00:27:16.786 2025.02.24 00:27:17.800
67 6.0.0.647 2025.02.21 9fccb P P 1296 593 2025.02.22 00:09:43.238 2025.02.22 00:09:44.534 2025.02.21 22:17:20.526 2025.02.21 22:17:21.119
68 6.0.0.640 2025.02.19 9b8ac P P 1385 1216 2025.02.20 00:08:05.459 2025.02.20 00:08:06.844 2025.02.19 22:12:11.282 2025.02.19 22:12:12.498
69 6.0.0.639 2025.02.18 201a4 P P 2295 1037 2025.02.19 00:00:22.149 2025.02.19 00:00:24.444 2025.02.18 22:11:25.574 2025.02.18 22:11:26.611
70 6.0.0.637 2025.02.12 6d0f5 P P 2429 644 2025.02.14 00:17:03.082 2025.02.14 00:17:05.511 2025.02.13 22:17:25.590 2025.02.13 22:17:26.234
71 6.0.0.636 2025.02.11 0424f P P 1854 1051 2025.02.12 00:15:32.605 2025.02.12 00:15:34.459 2025.02.11 22:17:05.151 2025.02.11 22:17:06.202
72 6.0.0.635 2025.02.10 f640f P P 1333 616 2025.02.11 00:13:14.434 2025.02.11 00:13:15.767 2025.02.10 22:17:28.230 2025.02.10 22:17:28.846
73 6.0.0.629 2025.02.07 194f9 P P 1240 1177 2025.02.08 00:12:42.314 2025.02.08 00:12:43.554 2025.02.07 22:16:13.890 2025.02.07 22:16:15.067
74 6.0.0.628 2025.02.06 859d5 P P 2567 1206 2025.02.07 00:28:51.370 2025.02.07 00:28:53.937 2025.02.06 22:23:20.881 2025.02.06 22:23:22.087
75 6.0.0.621 2025.02.05 34fe7 P P 2332 976 2025.02.06 00:25:50.062 2025.02.06 00:25:52.394 2025.02.05 22:23:54.595 2025.02.05 22:23:55.571
76 6.0.0.609 2025.02.04 76d57 P P 1286 1075 2025.02.05 00:18:13.507 2025.02.05 00:18:14.793 2025.02.04 22:21:16.476 2025.02.04 22:21:17.551
77 6.0.0.607 2025.02.03 1985b P P 2313 1063 2025.02.04 00:17:26.129 2025.02.04 00:17:28.442 2025.02.03 22:21:40.591 2025.02.03 22:21:41.654
78 6.0.0.601 2025.02.01 6af07 P P 1410 1181 2025.02.02 00:10:31.056 2025.02.02 00:10:32.466 2025.02.01 22:15:31.659 2025.02.01 22:15:32.840
79 6.0.0.600 2025.01.27 188de P P 1305 1022 2025.01.28 00:17:36.215 2025.01.28 00:17:37.520 2025.01.27 22:17:13.779 2025.01.27 22:17:14.801
80 6.0.0.599 2025.01.25 ba588 P P 1233 734 2025.01.26 00:17:52.384 2025.01.26 00:17:53.617 2025.01.25 22:17:38.945 2025.01.25 22:17:39.679
81 6.0.0.598 2025.01.23 ddbc3 P P 1424 930 2025.01.25 00:18:18.811 2025.01.25 00:18:20.235 2025.01.24 22:16:23.857 2025.01.24 22:16:24.787
82 6.0.0.595 2025.01.22 e62f3 P P 1412 948 2025.01.23 00:09:52.771 2025.01.23 00:09:54.183 2025.01.22 22:13:40.886 2025.01.22 22:13:41.834
83 6.0.0.594 2025.01.21 47fb6 P P 1265 1011 2025.01.22 00:05:40.948 2025.01.22 00:05:42.213 2025.01.21 22:13:06.954 2025.01.21 22:13:07.965
84 6.0.0.590 2025.01.20 9dc1e P P 1221 1232 2025.01.21 00:12:26.965 2025.01.21 00:12:28.186 2025.01.20 22:16:46.290 2025.01.20 22:16:47.522
85 6.0.0.588 2025.01.19 b1c4e P P 1243 1103 2025.01.20 00:09:39.262 2025.01.20 00:09:40.505 2025.01.19 22:15:16.295 2025.01.19 22:15:17.398
86 6.0.0.587 2025.01.18 63e6e P P 2166 984 2025.01.19 00:14:19.701 2025.01.19 00:14:21.867 2025.01.18 22:16:53.694 2025.01.18 22:16:54.678
87 6.0.0.585 2025.01.16 2d6bb P P 1330 572 2025.01.18 00:06:50.496 2025.01.18 00:06:51.826 2025.01.17 22:14:27.697 2025.01.17 22:14:28.269
88 6.0.0.584 2025.01.15 a0aa2 P P 1200 1195 2025.01.16 00:12:20.028 2025.01.16 00:12:21.228 2025.01.15 22:16:44.408 2025.01.15 22:16:45.603
89 6.0.0.581 2025.01.14 21e9e P P 1211 964 2025.01.15 00:13:18.398 2025.01.15 00:13:19.609 2025.01.14 22:15:41.217 2025.01.14 22:15:42.181
90 6.0.0.577 2025.01.13 7e293 P P 1550 960 2025.01.14 00:13:55.894 2025.01.14 00:13:57.444 2025.01.13 22:15:54.861 2025.01.13 22:15:55.821
91 6.0.0.576 2025.01.12 05898 P P 1276 699 2025.01.13 00:09:25.051 2025.01.13 00:09:26.327 2025.01.12 22:14:19.846 2025.01.12 22:14:20.545
92 6.0.0.573 2025.01.10 c20f3 P P 1253 599 2025.01.11 00:11:18.365 2025.01.11 00:11:19.618 2025.01.10 22:15:29.834 2025.01.10 22:15:30.433
93 6.0.0.571 2024.12.31 81bba P P 2057 579 2024.12.31 23:48:08.195 2024.12.31 23:48:10.252 2024.12.31 21:59:36.509 2024.12.31 21:59:37.088
94 6.0.0.570 2024.12.30 c3c8d P P 1092 571 2024.12.30 23:47:11.234 2024.12.30 23:47:12.326 2024.12.30 21:59:33.738 2024.12.30 21:59:34.309
95 6.0.0.565 2024.12.28 5fc59 P P 1144 605 2024.12.30 12:23:46.923 2024.12.30 12:23:48.067 2024.12.30 11:08:22.931 2024.12.30 11:08:23.536
96 6.0.0.564 2024.12.26 12514 P P 2019 585 2024.12.26 23:48:40.603 2024.12.26 23:48:42.622 2024.12.26 21:59:38.498 2024.12.26 21:59:39.083
97 6.0.0.560 2024.12.25 fa83e P P 1047 589 2024.12.25 23:40:37.824 2024.12.25 23:40:38.871 2024.12.25 21:59:35.957 2024.12.25 21:59:36.546
98 6.0.0.559 2024.12.23 cc800 P P 1057 585 2024.12.24 23:41:58.823 2024.12.24 23:41:59.880 2024.12.24 22:00:01.624 2024.12.24 22:00:02.209
99 6.0.0.556 2024.12.22 a0404 P P 1080 575 2024.12.22 23:48:32.872 2024.12.22 23:48:33.952 2024.12.22 21:59:26.883 2024.12.22 21:59:27.458
100 6.0.0.555 2024.12.19 6990a P P 1177 558 2024.12.21 12:59:14.735 2024.12.21 12:59:15.912 2024.12.21 11:44:11.497 2024.12.21 11:44:12.055
101 6.0.0.553 2024.12.17 d1f8a P P 1682 572 2024.12.17 23:42:38.130 2024.12.17 23:42:39.812 2024.12.17 22:00:07.404 2024.12.17 22:00:07.976
102 6.0.0.552 2024.12.11 85e25 P P 1195 623 2024.12.15 23:48:10.832 2024.12.15 23:48:12.027 2024.12.15 21:59:49.264 2024.12.15 21:59:49.887
103 6.0.0.550 2024.12.10 b37ac P P 1166 633 2024.12.10 23:43:28.755 2024.12.10 23:43:29.921 2024.12.10 22:00:56.893 2024.12.10 22:00:57.526
104 6.0.0.548 2024.12.08 2cc77 P P 1057 577 2024.12.08 23:39:03.032 2024.12.08 23:39:04.089 2024.12.08 21:58:49.552 2024.12.08 21:58:50.129
105 6.0.0.544 2024.12.05 96943 P P 1076 625 2024.12.05 23:42:05.366 2024.12.05 23:42:06.442 2024.12.05 22:02:12.477 2024.12.05 22:02:13.102
106 6.0.0.543 2024.12.03 30b77 P P 1986 610 2024.12.03 23:43:23.408 2024.12.03 23:43:25.394 2024.12.03 22:00:44.909 2024.12.03 22:00:45.519
107 6.0.0.540 2024.12.02 4a1f4 P P 1148 603 2024.12.02 23:39:57.932 2024.12.02 23:39:59.080 2024.12.02 22:00:03.699 2024.12.02 22:00:04.302
108 6.0.0.539 2024.11.28 1f283 P P 1067 590 2024.11.29 23:51:41.824 2024.11.29 23:51:42.891 2024.11.29 22:00:29.118 2024.11.29 22:00:29.708
109 6.0.0.535 2024.11.26 77b95 P P 2028 570 2024.11.26 23:34:28.551 2024.11.26 23:34:30.579 2024.11.26 21:58:09.239 2024.11.26 21:58:09.809
110 6.0.0.534 2024.11.25 e9584 P P 2032 562 2024.11.25 23:35:46.619 2024.11.25 23:35:48.651 2024.11.25 21:58:55.530 2024.11.25 21:58:56.092
111 6.0.0.533 2024.11.17 933ac P P 1172 644 2024.11.22 09:41:03.819 2024.11.22 09:41:04.991 2024.11.22 08:28:23.270 2024.11.22 08:28:23.914
112 6.0.0.532 2024.11.16 9e263 P P 1017 610 2024.11.16 23:23:49.562 2024.11.16 23:23:50.579 2024.11.16 21:58:52.502 2024.11.16 21:58:53.112
113 6.0.0.530 2024.11.15 49804 P P 1992 605 2024.11.16 01:33:53.229 2024.11.16 01:33:55.221 2024.11.15 23:58:14.610 2024.11.15 23:58:15.215
114 6.0.0.528 2024.11.14 9625b P P 1069 666 2024.11.15 01:37:04.102 2024.11.15 01:37:05.171 2024.11.14 23:59:33.508 2024.11.14 23:59:34.174
115 6.0.0.526 2024.11.12 65b80 P P 2110 619 2024.11.14 01:36:13.892 2024.11.14 01:36:16.002 2024.11.13 23:59:05.069 2024.11.13 23:59:05.688
116 6.0.0.523 2024.11.08 8ca23 P P 2078 649 2024.11.11 01:32:52.586 2024.11.11 01:32:54.664 2024.11.10 23:58:01.373 2024.11.10 23:58:02.022
117 6.0.0.520 2024.11.07 4eefa P P 2038 547 2024.11.08 01:30:11.133 2024.11.08 01:30:13.171 2024.11.07 23:57:39.946 2024.11.07 23:57:40.493
118 6.0.0.516 2024.11.04 b0c36 P P 1989 595 2024.11.05 01:29:17.407 2024.11.05 01:29:19.396 2024.11.04 23:57:20.174 2024.11.04 23:57:20.769
119 6.0.0.515 2024.10.30 d53f3 P P 1920 565 2024.11.04 01:31:49.558 2024.11.04 01:31:51.478 2024.11.03 23:57:51.231 2024.11.03 23:57:51.796
120 6.0.0.512 2024.10.29 833ef P P 1949 589 2024.10.30 01:34:12.559 2024.10.30 01:34:14.508 2024.10.29 23:59:12.186 2024.10.29 23:59:12.775
121 6.0.0.511 2024.10.26 c4bc9 P P 2079 635 2024.10.29 01:34:30.105 2024.10.29 01:34:32.184 2024.10.28 23:58:50.875 2024.10.28 23:58:51.510
122 6.0.0.509 2024.10.25 3aedb P P 1115 650 2024.10.26 01:44:10.129 2024.10.26 01:44:11.244 2024.10.26 00:01:32.855 2024.10.26 00:01:33.505
123 6.0.0.508 2024.10.24 a8f5b P P 2139 668 2024.10.25 01:38:27.777 2024.10.25 01:38:29.916 2024.10.24 23:59:58.512 2024.10.24 23:59:59.180
124 6.0.0.502 2024.10.22 6bfd7 P P 2066 647 2024.10.23 01:37:57.518 2024.10.23 01:37:59.584 2024.10.22 23:59:37.984 2024.10.22 23:59:38.631
125 6.0.0.500 2024.10.21 be565 P P 1250 627 2024.10.22 17:44:03.724 2024.10.22 17:44:04.974 2024.10.22 16:29:16.855 2024.10.22 16:29:17.482
126 6.0.0.499 2024.10.19 6214b P P 2022 623 2024.10.20 01:39:20.606 2024.10.20 01:39:22.628 2024.10.20 00:00:38.556 2024.10.20 00:00:39.179
127 6.0.0.498 2024.10.18 591a7 P P 2099 643 2024.10.19 01:36:30.917 2024.10.19 01:36:33.016 2024.10.18 23:59:04.751 2024.10.18 23:59:05.394
128 6.0.0.494 2024.10.17 cf5a4 P P 1692 636 2024.10.18 01:37:27.053 2024.10.18 01:37:28.745 2024.10.18 00:00:24.701 2024.10.18 00:00:25.337
129 6.0.0.491 2024.10.14 dc5fb P P 2016 643 2024.10.15 01:33:37.285 2024.10.15 01:33:39.301 2024.10.14 23:58:19.089 2024.10.14 23:58:19.732
130 6.0.0.489 2024.10.11 2ba59 P P 1991 635 2024.10.12 01:40:12.606 2024.10.12 01:40:14.597 2024.10.12 00:00:15.542 2024.10.12 00:00:16.177
131 6.0.0.488 2024.10.09 1c93e P P 2116 601 2024.10.10 01:48:43.433 2024.10.10 01:48:45.549 2024.10.10 00:02:49.758 2024.10.10 00:02:50.359
132 6.0.0.487 2024.10.06 065a3 P P 2360 659 2024.10.07 01:47:42.686 2024.10.07 01:47:45.046 2024.10.07 00:02:43.207 2024.10.07 00:02:43.866
133 6.0.0.485 2024.10.04 e95c1 P P 1285 615 2024.10.05 01:49:53.156 2024.10.05 01:49:54.441 2024.10.05 00:02:35.993 2024.10.05 00:02:36.608
134 6.0.0.483 2024.10.02 5e5ae P P 1146 619 2024.10.03 01:44:58.427 2024.10.03 01:44:59.573 2024.10.03 00:02:04.441 2024.10.03 00:02:05.060
135 6.0.0.478 2024.09.30 b5010 P P 2002 696 2024.10.01 01:40:07.461 2024.10.01 01:40:09.463 2024.10.01 00:01:32.615 2024.10.01 00:01:33.311
136 6.0.0.474 2024.09.26 e4efb P P 2068 620 2024.09.30 01:40:27.809 2024.09.30 01:40:29.877 2024.09.30 00:00:31.549 2024.09.30 00:00:32.169
137 6.0.0.471 2024.09.24 01b51 P P 2148 600 2024.09.25 23:43:45.125 2024.09.25 23:43:47.273 2024.09.25 22:01:00.732 2024.09.25 22:01:01.332
138 6.0.0.470 2024.09.23 77cc0 P P 2132 632 2024.09.23 23:42:28.909 2024.09.23 23:42:31.041 2024.09.23 22:01:16.233 2024.09.23 22:01:16.865
139 6.0.0.467 2024.09.21 ea0b8 P P 2161 627 2024.09.22 23:40:44.305 2024.09.22 23:40:46.466 2024.09.22 22:00:30.875 2024.09.22 22:00:31.502
140 6.0.0.466 2024.09.20 32dc6 P P 2166 646 2024.09.20 23:39:17.904 2024.09.20 23:39:20.070 2024.09.20 22:00:15.239 2024.09.20 22:00:15.885
141 6.0.0.461 2024.09.17 2c895 P P 1681 986 2024.09.18 00:12:14.319 2024.09.18 00:12:16.000 2024.09.17 22:19:53.728 2024.09.17 22:19:54.714
142 6.0.0.460 2024.09.11 3c253 P P 1740 1018 2024.09.17 00:13:20.641 2024.09.17 00:13:22.381 2024.09.16 22:21:13.401 2024.09.16 22:21:14.419
143 6.0.0.457 2024.09.09 fdc6f P P 1715 1317 2024.09.10 00:35:55.770 2024.09.10 00:35:57.485 2024.09.09 22:30:04.374 2024.09.09 22:30:05.691
144 6.0.0.455 2024.09.07 500d8 P P 2686 1112 2024.09.08 00:31:58.589 2024.09.08 00:32:01.275 2024.09.07 22:28:08.113 2024.09.07 22:28:09.225
145 6.0.0.454 2024.09.05 4d70f P P 2273 1027 2024.09.06 00:15:27.828 2024.09.06 00:15:30.101 2024.09.05 22:23:30.016 2024.09.05 22:23:31.043
146 6.0.0.452 2024.09.04 9ff9c P P 2445 1259 2024.09.05 00:12:54.413 2024.09.05 00:12:56.858 2024.09.04 22:21:35.633 2024.09.04 22:21:36.892
147 6.0.0.450 2024.09.02 27124 P P 2444 1057 2024.09.04 01:21:17.077 2024.09.04 01:21:19.521 2024.09.03 22:48:09.193 2024.09.03 22:48:10.250
148 6.0.0.447 2024.09.01 056ec P P 1794 1171 2024.09.02 00:36:44.500 2024.09.02 00:36:46.294 2024.09.01 22:27:45.285 2024.09.01 22:27:46.456
149 6.0.0.446 2024.08.30 fe1b2 P P 1772 1057 2024.09.01 00:42:41.233 2024.09.01 00:42:43.005 2024.08.31 22:39:19.648 2024.08.31 22:39:20.705
150 6.0.0.444 2024.08.28 785d4 P P 2550 1665 2024.08.30 00:54:47.762 2024.08.30 00:54:50.312 2024.08.29 22:48:07.308 2024.08.29 22:48:08.973
151 6.0.0.442 2024.08.21 4a68f P P 3631 970 2024.08.28 02:34:49.574 2024.08.28 02:34:53.205 2024.08.27 23:39:54.795 2024.08.27 23:39:55.765
152 6.0.0.441 2024.08.20 75042 P P 1815 1092 2024.08.21 00:27:10.971 2024.08.21 00:27:12.786 2024.08.20 22:28:34.797 2024.08.20 22:28:35.889
153 6.0.0.438 2024.08.16 088b5 P P 1239 1027 2024.08.18 23:43:16.809 2024.08.18 23:43:18.048 2024.08.18 22:06:45.833 2024.08.18 22:06:46.860
154 6.0.0.437 2024.08.14 3c88b P P 1180 593 2024.08.15 23:41:12.593 2024.08.15 23:41:13.773 2024.08.15 22:05:54.856 2024.08.15 22:05:55.449
155 6.0.0.432 2024.08.11 e82ac P P 1194 608 2024.08.12 23:40:25.543 2024.08.12 23:40:26.737 2024.08.12 22:05:05.113 2024.08.12 22:05:05.721
156 6.0.0.431 2024.08.09 de5a7 P P 1201 700 2024.08.09 23:41:58.707 2024.08.09 23:41:59.908 2024.08.09 22:05:58.061 2024.08.09 22:05:58.761
157 6.0.0.428 2024.08.08 9191b P P 1198 986 2024.08.08 23:41:08.104 2024.08.08 23:41:09.302 2024.08.08 22:05:34.736 2024.08.08 22:05:35.722
158 6.0.0.423 2024.08.07 33b41 P P 1477 845 2024.08.08 09:30:06.753 2024.08.08 09:30:08.230 2024.08.08 08:13:09.523 2024.08.08 08:13:10.368
159 6.0.0.421 2024.08.06 ed60d P P 1891 734 2024.08.06 23:23:56.049 2024.08.06 23:23:57.940 2024.08.06 22:01:23.631 2024.08.06 22:01:24.365
160 6.0.0.419 2024.08.05 3505a P P 1827 675 2024.08.05 23:26:05.218 2024.08.05 23:26:07.045 2024.08.05 22:01:23.498 2024.08.05 22:01:24.173
161 6.0.0.409 2024.08.02 ec18f P P 1958 806 2024.08.04 23:30:27.077 2024.08.04 23:30:29.035 2024.08.04 22:02:13.765 2024.08.04 22:02:14.571
162 6.0.0.406 2024.08.01 b20be P P 1967 741 2024.08.01 23:29:09.686 2024.08.01 23:29:11.653 2024.08.01 22:01:39.445 2024.08.01 22:01:40.186
163 6.0.0.405 2024.07.31 a62ac P P 2019 743 2024.07.31 23:27:40.272 2024.07.31 23:27:42.291 2024.07.31 22:01:23.979 2024.07.31 22:01:24.722
164 6.0.0.403 2024.07.29 30f03 P P 2004 709 2024.07.29 23:27:14.061 2024.07.29 23:27:16.065 2024.07.29 22:01:11.473 2024.07.29 22:01:12.182
165 6.0.0.401 2024.07.26 24e41 P P 2110 729 2024.07.26 23:23:43.231 2024.07.26 23:23:45.341 2024.07.26 22:01:05.062 2024.07.26 22:01:05.791
166 6.0.0.400 2024.07.24 5bb78 P P 2032 780 2024.07.24 23:23:24.845 2024.07.24 23:23:26.877 2024.07.24 22:01:20.906 2024.07.24 22:01:21.686
167 6.0.0.398 2024.07.23 85b18 P P 1877 469 2024.07.23 23:31:32.636 2024.07.23 23:31:34.513 2024.07.23 22:06:23.248 2024.07.23 22:06:23.717
168 6.0.0.397 2024.07.22 c734c P P 2017 684 2024.07.22 23:23:28.148 2024.07.22 23:23:30.165 2024.07.22 22:01:17.553 2024.07.22 22:01:18.237
169 6.0.0.396 2024.07.13 cf952 P P 1909 687 2024.07.21 23:24:20.037 2024.07.21 23:24:21.946 2024.07.21 22:01:02.516 2024.07.21 22:01:03.203
170 6.0.0.395 2024.07.10 845f4 P P 1006 719 2024.07.12 23:24:51.891 2024.07.12 23:24:52.897 2024.07.12 22:00:13.624 2024.07.12 22:00:14.343
171 6.0.0.392 2024.07.09 ea301 P P 2009 633 2024.07.09 23:20:51.621 2024.07.09 23:20:53.630 2024.07.09 21:59:47.068 2024.07.09 21:59:47.701
172 6.0.0.391 2024.07.08 7d50c P P 2088 644 2024.07.08 23:22:09.261 2024.07.08 23:22:11.349 2024.07.08 22:00:41.081 2024.07.08 22:00:41.725
173 6.0.0.389 2024.07.05 cc71c P P 1937 708 2024.07.05 23:25:42.609 2024.07.05 23:25:44.546 2024.07.05 22:00:32.261 2024.07.05 22:00:32.969
174 6.0.0.388 2024.06.30 e5700 P P 1916 694 2024.06.30 23:22:26.061 2024.06.30 23:22:27.977 2024.06.30 22:01:03.260 2024.06.30 22:01:03.954
175 6.0.0.387 2024.06.27 7c28a P P 1793 699 2024.06.27 23:21:29.369 2024.06.27 23:21:31.162 2024.06.27 22:00:47.473 2024.06.27 22:00:48.172
176 6.0.0.386 2024.06.23 7c57f P P 1846 686 2024.06.23 23:18:52.828 2024.06.23 23:18:54.674 2024.06.23 21:59:31.850 2024.06.23 21:59:32.536
177 6.0.0.384 2024.06.21 24d99 P P 1880 697 2024.06.21 23:23:11.889 2024.06.21 23:23:13.769 2024.06.21 22:00:32.935 2024.06.21 22:00:33.632
178 6.0.0.374 2024.06.13 0097d P P 1857 726 2024.06.20 23:21:14.869 2024.06.20 23:21:16.726 2024.06.20 21:59:59.016 2024.06.20 21:59:59.742
179 6.0.0.373 2024.06.09 363f0 P P 1244 742 2024.06.13 13:32:48.986 2024.06.13 13:32:50.230 2024.06.13 12:23:41.305 2024.06.13 12:23:42.047
180 6.0.0.371 2024.06.08 f7130 P P 1131 468 2024.06.11 22:19:43.700 2024.06.11 22:19:44.831 2024.06.11 21:17:58.961 2024.06.11 21:17:59.429
181 6.0.0.366 2024.05.30 ab2c9 P P 2093 481 2024.06.12 09:28:08.897 2024.06.12 09:28:10.990 2024.06.12 07:52:34.734 2024.06.12 07:52:35.215
182 6.0.0.363 2024.05.27 06703 P P 1205 543 2024.06.12 14:26:13.678 2024.06.12 14:26:14.883 2024.06.12 13:21:26.875 2024.06.12 13:21:27.418
183 6.0.0.359 2024.05.23 9cb11 P P 1231 552 2024.06.12 12:18:22.121 2024.06.12 12:18:23.352 2024.06.12 11:13:41.321 2024.06.12 11:13:41.873
184 6.0.0.358 2024.05.21 995dd P P 1114 662 2024.06.12 17:01:32.269 2024.06.12 17:01:33.383 2024.06.12 15:58:17.019 2024.06.12 15:58:17.681
185 6.0.0.357 2024.05.18 bf6c4 P P 1297 620 2024.06.12 21:37:55.285 2024.06.12 21:37:56.582 2024.06.12 20:34:23.290 2024.06.12 20:34:23.910
186 6.0.0.356 2024.05.17 eab06 P P 1178 680 2024.06.13 05:44:19.167 2024.06.13 05:44:20.345 2024.06.13 04:40:58.347 2024.06.13 04:40:59.027
187 6.0.0.355 2024.05.16 8dd6e P P 1177 675 2024.06.13 07:51:42.158 2024.06.13 07:51:43.335 2024.06.13 06:48:55.373 2024.06.13 06:48:56.048
188 6.0.0.354 2024.05.15 d3adc P P 1175 662 2024.06.13 10:57:37.593 2024.06.13 10:57:38.768 2024.06.13 09:49:06.123 2024.06.13 09:49:06.785
189 6.0.0.351 2024.05.14 2e3e0 P P 1206 627 2024.06.13 16:11:26.305 2024.06.13 16:11:27.511 2024.06.13 15:01:59.795 2024.06.13 15:02:00.422

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):