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   
  - Problem(s) detected:
  - out_prep:
  - Statement failed, SQLSTATE = HY000
  - ALTER CHARACTER SET "SYSTEM"."ISO8859_1" failed
  - -Cannot CREATE/ALTER/DROP CHARACTER SET in SYSTEM schema

LOG DETAILS:

2025-06-24 12:21:18.245
2025-06-24 12:21:18.245 act_db_main = <firebird.qa.plugin.Action object at [hex]>
2025-06-24 12:21:18.245 act_db_repl = <firebird.qa.plugin.Action object at [hex]>
2025-06-24 12:21:18.245 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-24 12:21:18.245
2025-06-24 12:21:18.245     @pytest.mark.replication
2025-06-24 12:21:18.245     @pytest.mark.version('>=4.0.1')
2025-06-24 12:21:18.245     def test_1(act_db_main: Action,  act_db_repl: Action, capsys):
2025-06-24 12:21:18.245
2025-06-24 12:21:18.245         out_prep, out_main, out_drop = '', '', ''
2025-06-24 12:21:18.245
2025-06-24 12:21:18.245         # Obtain full path + filename for DB_MAIN and DB_REPL aliases.
2025-06-24 12:21:18.246         # NOTE: we must NOT use 'a.db.db_path' for ALIASED databases!
2025-06-24 12:21:18.246         # It will return '.' rather than full path+filename.
2025-06-24 12:21:18.246         # Use only con.info.name for that!
2025-06-24 12:21:18.246         #
2025-06-24 12:21:18.246         db_main_file, db_repl_file = '', ''
2025-06-24 12:21:18.246         db_main_fw, db_repl_fw = DbWriteMode.ASYNC, DbWriteMode.ASYNC
2025-06-24 12:21:18.246
2025-06-24 12:21:18.246         with act_db_main.db.connect(no_db_triggers = True) as con:
2025-06-24 12:21:18.246             #if act_db_main.vars['server-arch'] == 'Classic' and os.name != 'nt':
2025-06-24 12:21:18.246             #    pytest.skip("Waiting for FIX: 'Engine is shutdown' in replication log for CS. Linux only.")
2025-06-24 12:21:18.246
2025-06-24 12:21:18.246             db_main_file = con.info.name
2025-06-24 12:21:18.246             db_main_fw = con.info.write_mode
2025-06-24 12:21:18.246
2025-06-24 12:21:18.246         with act_db_repl.db.connect(no_db_triggers = True) as con:
2025-06-24 12:21:18.246             db_repl_file = con.info.name
2025-06-24 12:21:18.246             db_repl_fw = con.info.write_mode
2025-06-24 12:21:18.246
2025-06-24 12:21:18.246         # ONLY FOR THIS test: forcedly change FW to OFF, without any condition.
2025-06-24 12:21:18.246         # Otherwise changes may not be delivered to replica for <MAX_TIME_FOR_WAIT_DATA_IN_REPLICA> seconds.
2025-06-24 12:21:18.250         #####################
2025-06-24 12:21:18.250         act_db_main.db.set_async_write()
2025-06-24 12:21:18.250         act_db_repl.db.set_async_write()
2025-06-24 12:21:18.250
2025-06-24 12:21:18.250
2025-06-24 12:21:18.250         # Must be EMPTY:
2025-06-24 12:21:18.250         out_prep = capsys.readouterr().out
2025-06-24 12:21:18.250
2025-06-24 12:21:18.250         sql_init = """
2025-06-24 12:21:18.250             set bail on;
2025-06-24 12:21:18.250
2025-06-24 12:21:18.250             recreate table log_ddl_triggers_activity (
2025-06-24 12:21:18.250                 id int generated by default as identity constraint pk_log_ddl_triggers_activity primary key
2025-06-24 12:21:18.250                 ,ddl_trigger_name varchar(64)
2025-06-24 12:21:18.250                 ,event_type varchar(25) not null
2025-06-24 12:21:18.250                 ,object_type varchar(25) not null
2025-06-24 12:21:18.251                 ,ddl_event varchar(25) not null
2025-06-24 12:21:18.251                 ,object_name varchar(64) not null
2025-06-24 12:21:18.251                 ,dts timestamp default 'now'
2025-06-24 12:21:18.251             );
2025-06-24 12:21:18.251
2025-06-24 12:21:18.251
2025-06-24 12:21:18.251             set term ^;
2025-06-24 12:21:18.251             execute block as
2025-06-24 12:21:18.251                 declare v_lf char(1) = x'0A';
2025-06-24 12:21:18.251             begin
2025-06-24 12:21:18.251                 rdb$set_context('USER_SESSION', 'SKIP_DDL_TRIGGER', '1');
2025-06-24 12:21:18.251
2025-06-24 12:21:18.251                 for
2025-06-24 12:21:18.251                     with
2025-06-24 12:21:18.251                     a as (
2025-06-24 12:21:18.251                         select 'ANY DDL STATEMENT' x from rdb$database union all
2025-06-24 12:21:18.251                         select 'CREATE TABLE' from rdb$database union all
2025-06-24 12:21:18.251                         select 'ALTER TABLE' from rdb$database union all
2025-06-24 12:21:18.251                         select 'DROP TABLE' from rdb$database union all
2025-06-24 12:21:18.252                         select 'CREATE PROCEDURE' from rdb$database union all
2025-06-24 12:21:18.252                         select 'ALTER PROCEDURE' from rdb$database union all
2025-06-24 12:21:18.252                         select 'DROP PROCEDURE' from rdb$database union all
2025-06-24 12:21:18.252                         select 'CREATE FUNCTION' from rdb$database union all
2025-06-24 12:21:18.252                         select 'ALTER FUNCTION' from rdb$database union all
2025-06-24 12:21:18.252                         select 'DROP FUNCTION' from rdb$database union all
2025-06-24 12:21:18.252                         select 'CREATE TRIGGER' from rdb$database union all
2025-06-24 12:21:18.252                         select 'ALTER TRIGGER' from rdb$database union all
2025-06-24 12:21:18.252                         select 'DROP TRIGGER' from rdb$database union all
2025-06-24 12:21:18.252                         select 'CREATE EXCEPTION' from rdb$database union all
2025-06-24 12:21:18.252                         select 'ALTER EXCEPTION' from rdb$database union all
2025-06-24 12:21:18.252                         select 'DROP EXCEPTION' from rdb$database union all
2025-06-24 12:21:18.252                         select 'CREATE VIEW' from rdb$database union all
2025-06-24 12:21:18.252                         select 'ALTER VIEW' from rdb$database union all
2025-06-24 12:21:18.252                         select 'DROP VIEW' from rdb$database union all
2025-06-24 12:21:18.252                         select 'CREATE DOMAIN' from rdb$database union all
2025-06-24 12:21:18.253                         select 'ALTER DOMAIN' from rdb$database union all
2025-06-24 12:21:18.253                         select 'DROP DOMAIN' from rdb$database union all
2025-06-24 12:21:18.253                         select 'CREATE ROLE' from rdb$database union all
2025-06-24 12:21:18.253                         select 'ALTER ROLE' from rdb$database union all
2025-06-24 12:21:18.253                         select 'DROP ROLE' from rdb$database union all
2025-06-24 12:21:18.253                         select 'CREATE SEQUENCE' from rdb$database union all
2025-06-24 12:21:18.253                         select 'ALTER SEQUENCE' from rdb$database union all
2025-06-24 12:21:18.253                         select 'DROP SEQUENCE' from rdb$database union all
2025-06-24 12:21:18.253                         select 'CREATE USER' from rdb$database union all
2025-06-24 12:21:18.253                         select 'ALTER USER' from rdb$database union all
2025-06-24 12:21:18.253                         select 'DROP USER' from rdb$database union all
2025-06-24 12:21:18.253                         select 'CREATE INDEX' from rdb$database union all
2025-06-24 12:21:18.253                         select 'ALTER INDEX' from rdb$database union all
2025-06-24 12:21:18.253                         select 'DROP INDEX' from rdb$database union all
2025-06-24 12:21:18.253                         select 'CREATE COLLATION' from rdb$database union all
2025-06-24 12:21:18.253                         select 'DROP COLLATION' from rdb$database union all
2025-06-24 12:21:18.253                         select 'ALTER CHARACTER SET' from rdb$database union all
2025-06-24 12:21:18.253                         select 'CREATE PACKAGE' from rdb$database union all
2025-06-24 12:21:18.253                         select 'ALTER PACKAGE' from rdb$database union all
2025-06-24 12:21:18.254                         select 'DROP PACKAGE' from rdb$database union all
2025-06-24 12:21:18.254                         select 'CREATE PACKAGE BODY' from rdb$database union all
2025-06-24 12:21:18.254                         select 'DROP PACKAGE BODY' from rdb$database
2025-06-24 12:21:18.254                     )
2025-06-24 12:21:18.254                     ,e as (
2025-06-24 12:21:18.254                         select 'before' w from rdb$database union all select 'after' from rdb$database
2025-06-24 12:21:18.254                     )
2025-06-24 12:21:18.254                     ,t as (
2025-06-24 12:21:18.254                         select upper(trim(replace(trim(a.x),' ','_')) || iif(e.w='before', '_before', '_after')) as trg_name, a.x, e.w
2025-06-24 12:21:18.254                         from e, a
2025-06-24 12:21:18.254                     )
2025-06-24 12:21:18.254
2025-06-24 12:21:18.254                     select
2025-06-24 12:21:18.254                            'create or alter trigger trg_' || t.trg_name
2025-06-24 12:21:18.254                         || ' active ' || t.w || ' ' || trim(t.x) || ' as '
2025-06-24 12:21:18.254                         || :v_lf
2025-06-24 12:21:18.254                         || 'begin'
2025-06-24 12:21:18.254                         || :v_lf
2025-06-24 12:21:18.254                         || q'{    if (rdb$get_context('USER_SESSION', 'SKIP_DDL_TRIGGER') is null) then}'
2025-06-24 12:21:18.254                         || :v_lf
2025-06-24 12:21:18.255                         || '        insert into log_ddl_triggers_activity(ddl_trigger_name, event_type, object_type, ddl_event, object_name) values('
2025-06-24 12:21:18.255                         || :v_lf
2025-06-24 12:21:18.255                         || q'{'}' || trim(t.trg_name) || q'{'}'
2025-06-24 12:21:18.255                         || :v_lf
2025-06-24 12:21:18.255                         || q'{, rdb$get_context('DDL_TRIGGER', 'EVENT_TYPE')}'
2025-06-24 12:21:18.255                         || :v_lf
2025-06-24 12:21:18.255                         || q'{, rdb$get_context('DDL_TRIGGER', 'OBJECT_TYPE')}'
2025-06-24 12:21:18.255                         || :v_lf
2025-06-24 12:21:18.255                         || q'{, rdb$get_context('DDL_TRIGGER', 'DDL_EVENT')}'
2025-06-24 12:21:18.255                         || :v_lf
2025-06-24 12:21:18.255                         || q'{, rdb$get_context('DDL_TRIGGER', 'OBJECT_NAME')}'
2025-06-24 12:21:18.255                         || :v_lf
2025-06-24 12:21:18.255                         || ');'
2025-06-24 12:21:18.255                         || :v_lf
2025-06-24 12:21:18.255                         || ' end'
2025-06-24 12:21:18.255                         as sttm
2025-06-24 12:21:18.255                     from t
2025-06-24 12:21:18.256                     as cursor c
2025-06-24 12:21:18.256                 do begin
2025-06-24 12:21:18.256                      execute statement(c.sttm) with autonomous transaction;
2025-06-24 12:21:18.256                 end
2025-06-24 12:21:18.256
2025-06-24 12:21:18.256                 rdb$set_context('USER_SESSION', 'SKIP_DDL_TRIGGER', null);
2025-06-24 12:21:18.256             end
2025-06-24 12:21:18.256             ^
2025-06-24 12:21:18.256             commit
2025-06-24 12:21:18.256             ^
2025-06-24 12:21:18.256
2025-06-24 12:21:18.256             create table test(id int not null, name varchar(10))
2025-06-24 12:21:18.256             ^
2025-06-24 12:21:18.256             alter table test add constraint test_pk primary key(id)
2025-06-24 12:21:18.256             ^
2025-06-24 12:21:18.256             ----------
2025-06-24 12:21:18.256             create procedure sp_test as begin end
2025-06-24 12:21:18.256             ^
2025-06-24 12:21:18.256             alter procedure sp_test as declare x int; begin x=1; end
2025-06-24 12:21:18.257             ^
2025-06-24 12:21:18.257             ----------
2025-06-24 12:21:18.257             create function fn_test(a_id int) returns bigint as
2025-06-24 12:21:18.257             begin
2025-06-24 12:21:18.257                 return a_id * a_id;
2025-06-24 12:21:18.257             end
2025-06-24 12:21:18.257             ^
2025-06-24 12:21:18.257             alter function fn_test(a_id int) returns int128 as
2025-06-24 12:21:18.257             begin
2025-06-24 12:21:18.257                 return a_id * a_id * a_id;
2025-06-24 12:21:18.257             end
2025-06-24 12:21:18.257             ^
2025-06-24 12:21:18.257             ----------
2025-06-24 12:21:18.257             create trigger trg_connect_test on connect as
2025-06-24 12:21:18.257             begin
2025-06-24 12:21:18.257             end
2025-06-24 12:21:18.257             ^
2025-06-24 12:21:18.257             alter trigger trg_connect_test as
2025-06-24 12:21:18.257                 declare x int;
2025-06-24 12:21:18.257             begin
2025-06-24 12:21:18.258                 x = 1;
2025-06-24 12:21:18.258             end
2025-06-24 12:21:18.258             ^
2025-06-24 12:21:18.258             ----------
2025-06-24 12:21:18.258             create exception exc_test 'Invalud value: @1'
2025-06-24 12:21:18.258             ^
2025-06-24 12:21:18.258             alter exception exc_test 'Bad values: @1 and @2'
2025-06-24 12:21:18.258             ^
2025-06-24 12:21:18.258             ----------
2025-06-24 12:21:18.258             create view v_test as select 1 x from rdb$database
2025-06-24 12:21:18.258             ^
2025-06-24 12:21:18.258             alter view v_test as select 1 x, 2 y from rdb$database
2025-06-24 12:21:18.258             ^
2025-06-24 12:21:18.258             ----------
2025-06-24 12:21:18.258             create domain dm_test int
2025-06-24 12:21:18.258             ^
2025-06-24 12:21:18.258             alter domain dm_test set not null
2025-06-24 12:21:18.258             ^
2025-06-24 12:21:18.258             ----------
2025-06-24 12:21:18.258             create role r_test
2025-06-24 12:21:18.259             ^
2025-06-24 12:21:18.259             alter role r_test set system privileges to use_gstat_utility, ignore_db_triggers
2025-06-24 12:21:18.259             ^
2025-06-24 12:21:18.259             ----------
2025-06-24 12:21:18.259             create sequence g_test
2025-06-24 12:21:18.259             ^
2025-06-24 12:21:18.259             alter sequence g_test restart with 123
2025-06-24 12:21:18.259             ^
2025-06-24 12:21:18.259             ----------
2025-06-24 12:21:18.259             /*
2025-06-24 12:21:18.259             create or alter user u_test password '123' using plugin Srp
2025-06-24 12:21:18.259             ^
2025-06-24 12:21:18.259             alter user u_test password '456'
2025-06-24 12:21:18.259             ^
2025-06-24 12:21:18.259             */
2025-06-24 12:21:18.259             ----------
2025-06-24 12:21:18.259             create index test_name on test(name)
2025-06-24 12:21:18.259             ^
2025-06-24 12:21:18.260             alter index test_name inactive
2025-06-24 12:21:18.260             ^
2025-06-24 12:21:18.260             ----------
2025-06-24 12:21:18.260             create collation name_coll for utf8 from unicode case insensitive
2025-06-24 12:21:18.260             ^
2025-06-24 12:21:18.260             ----------
2025-06-24 12:21:18.260             alter character set iso8859_1 set default collation pt_br
2025-06-24 12:21:18.260             ^
2025-06-24 12:21:18.260             ----------
2025-06-24 12:21:18.260             create or alter package pg_test as
2025-06-24 12:21:18.260             begin
2025-06-24 12:21:18.260                function pg_fn1 returns int;
2025-06-24 12:21:18.260             end
2025-06-24 12:21:18.260             ^
2025-06-24 12:21:18.260             alter package pg_test as
2025-06-24 12:21:18.260             begin
2025-06-24 12:21:18.260                function pg_fn1(a_x int) returns int128;
2025-06-24 12:21:18.260             end
2025-06-24 12:21:18.260             ^
2025-06-24 12:21:18.260
2025-06-24 12:21:18.261             create package body pg_test as
2025-06-24 12:21:18.261             begin
2025-06-24 12:21:18.261                function pg_fn1(a_x int) returns int128 as
2025-06-24 12:21:18.261                begin
2025-06-24 12:21:18.261                    return a_x * a_x * a_x;
2025-06-24 12:21:18.261                end
2025-06-24 12:21:18.261             end
2025-06-24 12:21:18.261             ^
2025-06-24 12:21:18.261             recreate table t_ddl_completed(id int primary key)
2025-06-24 12:21:18.261             ^
2025-06-24 12:21:18.261             commit
2025-06-24 12:21:18.261             ^
2025-06-24 12:21:18.261         """
2025-06-24 12:21:18.261
2025-06-24 12:21:18.261         act_db_main.isql(switches=['-q'], input = sql_init, combine_output = True)
2025-06-24 12:21:18.261         out_prep = act_db_main.clean_stdout
2025-06-24 12:21:18.261         act_db_main.reset()
2025-06-24 12:21:18.261
2025-06-24 12:21:18.261         if out_prep:
2025-06-24 12:21:18.262             # Init SQL raised error.
2025-06-24 12:21:18.262             pass
2025-06-24 12:21:18.262         else:
2025-06-24 12:21:18.262
2025-06-24 12:21:18.262             # Query to be used for check that all DB objects present in replica (after last DDL statement completed on master DB):
2025-06-24 12:21:18.262             ddl_ready_query = "select 1 from rdb$relations r where r.rdb$relation_name = upper('t_ddl_completed')"
2025-06-24 12:21:18.262             isql_check_script = ''
2025-06-24 12:21:18.262
2025-06-24 12:21:18.262             # DO NOT DELETE! To be used after #7547 will be fixed
2025-06-24 12:21:18.262             # (currently this query returns NOTHING on replica db)
2025-06-24 12:21:18.262             ######################################
2025-06-24 12:21:18.262             #isql_check_script = """
2025-06-24 12:21:18.262             #    set list on;
2025-06-24 12:21:18.262             #    set count on;
2025-06-24 12:21:18.262             #    select
2025-06-24 12:21:18.262             #         a.id
2025-06-24 12:21:18.262             #        ,a.ddl_trigger_name
2025-06-24 12:21:18.262             #        ,a.event_type
2025-06-24 12:21:18.262             #        ,a.object_type
2025-06-24 12:21:18.267             #        ,a.ddl_event
2025-06-24 12:21:18.267             #        ,a.object_name
2025-06-24 12:21:18.267             #    from log_ddl_triggers_activity a
2025-06-24 12:21:18.267             #    order by a.id;
2025-06-24 12:21:18.267             #"""
2025-06-24 12:21:18.267
2025-06-24 12:21:18.268             isql_expected_out = """
2025-06-24 12:21:18.268             """
2025-06-24 12:21:18.268
2025-06-24 12:21:18.268             ##############################################################################
2025-06-24 12:21:18.268             ###  W A I T   U N T I L    R E P L I C A    B E C O M E S   A C T U A L   ###
2025-06-24 12:21:18.268             ##############################################################################
2025-06-24 12:21:18.268             watch_replica( act_db_repl, MAX_TIME_FOR_WAIT_DATA_IN_REPLICA, ddl_ready_query, isql_check_script, isql_expected_out)
2025-06-24 12:21:18.268             # Must be EMPTY:
2025-06-24 12:21:18.268             out_main = capsys.readouterr().out
2025-06-24 12:21:18.268
2025-06-24 12:21:18.268
2025-06-24 12:21:18.268         drop_db_objects(act_db_main, act_db_repl, capsys)
2025-06-24 12:21:18.268
2025-06-24 12:21:18.268         # Return FW to initial values (if needed):
2025-06-24 12:21:18.268         if db_main_fw == DbWriteMode.SYNC:
2025-06-24 12:21:18.268             act_db_main.db.set_sync_write()
2025-06-24 12:21:18.268         if db_repl_fw == DbWriteMode.SYNC:
2025-06-24 12:21:18.268             act_db_repl.db.set_sync_write()
2025-06-24 12:21:18.268
2025-06-24 12:21:18.269         # Must be EMPTY:
2025-06-24 12:21:18.269         out_drop = capsys.readouterr().out
2025-06-24 12:21:18.269
2025-06-24 12:21:18.269         if [ x for x in (out_prep, out_main, out_drop) if x.strip() ]:
2025-06-24 12:21:18.269             # We have a problem either with DDL/DML or with dropping DB objects.
2025-06-24 12:21:18.269             # First, we have to RECREATE both master and slave databases
2025-06-24 12:21:18.269             # (otherwise further execution of this test or other replication-related tests most likely will fail):
2025-06-24 12:21:18.269             out_reset = reset_replication(act_db_main, act_db_repl, db_main_file, db_repl_file)
2025-06-24 12:21:18.269
2025-06-24 12:21:18.269             # Next, we display out_main, out_drop and out_reset:
2025-06-24 12:21:18.269             #
2025-06-24 12:21:18.269             print('Problem(s) detected:')
2025-06-24 12:21:18.269             if out_prep.strip():
2025-06-24 12:21:18.269                 print('out_prep:')
2025-06-24 12:21:18.269                 print(out_prep)
2025-06-24 12:21:18.269             if out_main.strip():
2025-06-24 12:21:18.269                 print('out_main:')
2025-06-24 12:21:18.269                 print(out_main)
2025-06-24 12:21:18.269             if out_drop.strip():
2025-06-24 12:21:18.269                 print('out_drop:')
2025-06-24 12:21:18.270                 print(out_drop)
2025-06-24 12:21:18.270             if out_reset.strip():
2025-06-24 12:21:18.270                 print('out_reset:')
2025-06-24 12:21:18.270                 print(out_reset)
2025-06-24 12:21:18.270
2025-06-24 12:21:18.270 >           assert '' == capsys.readouterr().out
2025-06-24 12:21:18.270 E           assert
2025-06-24 12:21:18.270 E             - Problem(s) detected:
2025-06-24 12:21:18.270 E             - out_prep:
2025-06-24 12:21:18.270 E             - Statement failed, SQLSTATE = HY000
2025-06-24 12:21:18.270 E             - ALTER CHARACTER SET "SYSTEM"."ISO8859_1" failed
2025-06-24 12:21:18.270 E             - -Cannot CREATE/ALTER/DROP CHARACTER SET in SYSTEM schema
2025-06-24 12:21:18.270
2025-06-24 12:21:18.270 tests\functional\replication\test_ddl_triggers_must_not_fire_on_replica.py:663: AssertionError
3 #text
act_db_main = <firebird.qa.plugin.Action pytest object at [hex]>
act_db_repl = <firebird.qa.plugin.Action pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.replication
    @pytest.mark.version('>=4.0.1')
    def test_1(act_db_main: Action,  act_db_repl: Action, capsys):
    
        out_prep, out_main, out_drop = '', '', ''
    
        # Obtain full path + filename for DB_MAIN and DB_REPL aliases.
        # NOTE: we must NOT use 'a.db.db_path' for ALIASED databases!
        # It will return '.' rather than full path+filename.
        # Use only con.info.name for that!
        #
        db_main_file, db_repl_file = '', ''
        db_main_fw, db_repl_fw = DbWriteMode.ASYNC, DbWriteMode.ASYNC
    
        with act_db_main.db.connect(no_db_triggers = True) as con:
            #if act_db_main.vars['server-arch'] == 'Classic' and os.name != 'nt':
            #    pytest.skip("Waiting for FIX: 'Engine is shutdown' in replication log for CS. Linux only.")
    
            db_main_file = con.info.name
            db_main_fw = con.info.write_mode
    
        with act_db_repl.db.connect(no_db_triggers = True) as con:
            db_repl_file = con.info.name
            db_repl_fw = con.info.write_mode
    
        # ONLY FOR THIS test: forcedly change FW to OFF, without any condition.
        # Otherwise changes may not be delivered to replica for <MAX_TIME_FOR_WAIT_DATA_IN_REPLICA> seconds.
        #####################
        act_db_main.db.set_async_write()
        act_db_repl.db.set_async_write()
    
    
        # Must be EMPTY:
        out_prep = capsys.readouterr().out
    
        sql_init = """
            set bail on;
    
            recreate table log_ddl_triggers_activity (
                id int generated by default as identity constraint pk_log_ddl_triggers_activity primary key
                ,ddl_trigger_name varchar(64)
                ,event_type varchar(25) not null
                ,object_type varchar(25) not null
                ,ddl_event varchar(25) not null
                ,object_name varchar(64) not null
                ,dts timestamp default 'now'
            );
    
    
            set term ^;
            execute block as
                declare v_lf char(1) = x'0A';
            begin
                rdb$set_context('USER_SESSION', 'SKIP_DDL_TRIGGER', '1');
    
                for
                    with
                    a as (
                        select 'ANY DDL STATEMENT' x from rdb$database union all
                        select 'CREATE TABLE' from rdb$database union all
                        select 'ALTER TABLE' from rdb$database union all
                        select 'DROP TABLE' from rdb$database union all
                        select 'CREATE PROCEDURE' from rdb$database union all
                        select 'ALTER PROCEDURE' from rdb$database union all
                        select 'DROP PROCEDURE' from rdb$database union all
                        select 'CREATE FUNCTION' from rdb$database union all
                        select 'ALTER FUNCTION' from rdb$database union all
                        select 'DROP FUNCTION' from rdb$database union all
                        select 'CREATE TRIGGER' from rdb$database union all
                        select 'ALTER TRIGGER' from rdb$database union all
                        select 'DROP TRIGGER' from rdb$database union all
                        select 'CREATE EXCEPTION' from rdb$database union all
                        select 'ALTER EXCEPTION' from rdb$database union all
                        select 'DROP EXCEPTION' from rdb$database union all
                        select 'CREATE VIEW' from rdb$database union all
                        select 'ALTER VIEW' from rdb$database union all
                        select 'DROP VIEW' from rdb$database union all
                        select 'CREATE DOMAIN' from rdb$database union all
                        select 'ALTER DOMAIN' from rdb$database union all
                        select 'DROP DOMAIN' from rdb$database union all
                        select 'CREATE ROLE' from rdb$database union all
                        select 'ALTER ROLE' from rdb$database union all
                        select 'DROP ROLE' from rdb$database union all
                        select 'CREATE SEQUENCE' from rdb$database union all
                        select 'ALTER SEQUENCE' from rdb$database union all
                        select 'DROP SEQUENCE' from rdb$database union all
                        select 'CREATE USER' from rdb$database union all
                        select 'ALTER USER' from rdb$database union all
                        select 'DROP USER' from rdb$database union all
                        select 'CREATE INDEX' from rdb$database union all
                        select 'ALTER INDEX' from rdb$database union all
                        select 'DROP INDEX' from rdb$database union all
                        select 'CREATE COLLATION' from rdb$database union all
                        select 'DROP COLLATION' from rdb$database union all
                        select 'ALTER CHARACTER SET' from rdb$database union all
                        select 'CREATE PACKAGE' from rdb$database union all
                        select 'ALTER PACKAGE' from rdb$database union all
                        select 'DROP PACKAGE' from rdb$database union all
                        select 'CREATE PACKAGE BODY' from rdb$database union all
                        select 'DROP PACKAGE BODY' from rdb$database
                    )
                    ,e as (
                        select 'before' w from rdb$database union all select 'after' from rdb$database
                    )
                    ,t as (
                        select upper(trim(replace(trim(a.x),' ','_')) || iif(e.w='before', '_before', '_after')) as trg_name, a.x, e.w
                        from e, a
                    )
    
                    select
                           'create or alter trigger trg_' || t.trg_name
                        || ' active ' || t.w || ' ' || trim(t.x) || ' as '
                        || :v_lf
                        || 'begin'
                        || :v_lf
                        || q'{    if (rdb$get_context('USER_SESSION', 'SKIP_DDL_TRIGGER') is null) then}'
                        || :v_lf
                        || '        insert into log_ddl_triggers_activity(ddl_trigger_name, event_type, object_type, ddl_event, object_name) values('
                        || :v_lf
                        || q'{'}' || trim(t.trg_name) || q'{'}'
                        || :v_lf
                        || q'{, rdb$get_context('DDL_TRIGGER', 'EVENT_TYPE')}'
                        || :v_lf
                        || q'{, rdb$get_context('DDL_TRIGGER', 'OBJECT_TYPE')}'
                        || :v_lf
                        || q'{, rdb$get_context('DDL_TRIGGER', 'DDL_EVENT')}'
                        || :v_lf
                        || q'{, rdb$get_context('DDL_TRIGGER', 'OBJECT_NAME')}'
                        || :v_lf
                        || ');'
                        || :v_lf
                        || ' end'
                        as sttm
                    from t
                    as cursor c
                do begin
                     execute statement(c.sttm) with autonomous transaction;
                end
    
                rdb$set_context('USER_SESSION', 'SKIP_DDL_TRIGGER', null);
            end
            ^
            commit
            ^
    
            create table test(id int not null, name varchar(10))
            ^
            alter table test add constraint test_pk primary key(id)
            ^
            ----------
            create procedure sp_test as begin end
            ^
            alter procedure sp_test as declare x int; begin x=1; end
            ^
            ----------
            create function fn_test(a_id int) returns bigint as
            begin
                return a_id * a_id;
            end
            ^
            alter function fn_test(a_id int) returns int128 as
            begin
                return a_id * a_id * a_id;
            end
            ^
            ----------
            create trigger trg_connect_test on connect as
            begin
            end
            ^
            alter trigger trg_connect_test as
                declare x int;
            begin
                x = 1;
            end
            ^
            ----------
            create exception exc_test 'Invalud value: @1'
            ^
            alter exception exc_test 'Bad values: @1 and @2'
            ^
            ----------
            create view v_test as select 1 x from rdb$database
            ^
            alter view v_test as select 1 x, 2 y from rdb$database
            ^
            ----------
            create domain dm_test int
            ^
            alter domain dm_test set not null
            ^
            ----------
            create role r_test
            ^
            alter role r_test set system privileges to use_gstat_utility, ignore_db_triggers
            ^
            ----------
            create sequence g_test
            ^
            alter sequence g_test restart with 123
            ^
            ----------
            /*
            create or alter user u_test password '123' using plugin Srp
            ^
            alter user u_test password '456'
            ^
            */
            ----------
            create index test_name on test(name)
            ^
            alter index test_name inactive
            ^
            ----------
            create collation name_coll for utf8 from unicode case insensitive
            ^
            ----------
            alter character set iso8859_1 set default collation pt_br
            ^
            ----------
            create or alter package pg_test as
            begin
               function pg_fn1 returns int;
            end
            ^
            alter package pg_test as
            begin
               function pg_fn1(a_x int) returns int128;
            end
            ^
    
            create package body pg_test as
            begin
               function pg_fn1(a_x int) returns int128 as
               begin
                   return a_x * a_x * a_x;
               end
            end
            ^
            recreate table t_ddl_completed(id int primary key)
            ^
            commit
            ^
        """
    
        act_db_main.isql(switches=['-q'], input = sql_init, combine_output = True)
        out_prep = act_db_main.clean_stdout
        act_db_main.reset()
    
        if out_prep:
            # Init SQL raised error.
            pass
        else:
    
            # Query to be used for check that all DB objects present in replica (after last DDL statement completed on master DB):
            ddl_ready_query = "select 1 from rdb$relations r where r.rdb$relation_name = upper('t_ddl_completed')"
            isql_check_script = ''
    
            # DO NOT DELETE! To be used after #7547 will be fixed
            # (currently this query returns NOTHING on replica db)
            ######################################
            #isql_check_script = """
            #    set list on;
            #    set count on;
            #    select
            #         a.id
            #        ,a.ddl_trigger_name
            #        ,a.event_type
            #        ,a.object_type
            #        ,a.ddl_event
            #        ,a.object_name
            #    from log_ddl_triggers_activity a
            #    order by a.id;
            #"""
    
            isql_expected_out = """
            """
    
            ##############################################################################
            ###  W A I T   U N T I L    R E P L I C A    B E C O M E S   A C T U A L   ###
            ##############################################################################
            watch_replica( act_db_repl, MAX_TIME_FOR_WAIT_DATA_IN_REPLICA, ddl_ready_query, isql_check_script, isql_expected_out)
            # Must be EMPTY:
            out_main = capsys.readouterr().out
    
    
        drop_db_objects(act_db_main, act_db_repl, capsys)
    
        # Return FW to initial values (if needed):
        if db_main_fw == DbWriteMode.SYNC:
            act_db_main.db.set_sync_write()
        if db_repl_fw == DbWriteMode.SYNC:
            act_db_repl.db.set_sync_write()
    
        # Must be EMPTY:
        out_drop = capsys.readouterr().out
    
        if [ x for x in (out_prep, out_main, out_drop) if x.strip() ]:
            # We have a problem either with DDL/DML or with dropping DB objects.
            # First, we have to RECREATE both master and slave databases
            # (otherwise further execution of this test or other replication-related tests most likely will fail):
            out_reset = reset_replication(act_db_main, act_db_repl, db_main_file, db_repl_file)
    
            # Next, we display out_main, out_drop and out_reset:
            #
            print('Problem(s) detected:')
            if out_prep.strip():
                print('out_prep:')
                print(out_prep)
            if out_main.strip():
                print('out_main:')
                print(out_main)
            if out_drop.strip():
                print('out_drop:')
                print(out_drop)
            if out_reset.strip():
                print('out_reset:')
                print(out_reset)
    
>           assert '' == capsys.readouterr().out
E           assert   
E             - Problem(s) detected:
E             - out_prep:
E             - Statement failed, SQLSTATE = HY000
E             - ALTER CHARACTER SET "SYSTEM"."ISO8859_1" failed
E             - -Cannot CREATE/ALTER/DROP CHARACTER SET in SYSTEM schema

tests\functional\replication\test_ddl_triggers_must_not_fire_on_replica.py:663: 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.877 2025.06.26 8e38f P P 5847 6339 2025.06.27 03:25:09.192 2025.06.27 03:25:15.039 2025.06.27 01:39:47.881 2025.06.27 01:39:54.220
2 6.0.0.876 2025.06.25 b1bec P P 6838 7361 2025.06.26 03:30:24.563 2025.06.26 03:30:31.401 2025.06.26 01:45:26.997 2025.06.26 01:45:34.358
3 6.0.0.863 2025.06.24 c3c20 P P 6786 6341 2025.06.25 08:14:37.027 2025.06.25 08:14:43.813 2025.06.25 01:39:28.999 2025.06.25 01:39:35.340
4 6.0.0.858 2025.06.24 cbbbf P P 6819 6416 2025.06.24 17:57:05.985 2025.06.24 17:57:12.804 2025.06.24 16:11:21.628 2025.06.24 16:11:28.044
5 6.0.0.858 2025.06.23 d377c F F 2472 1733 2025.06.24 09:09:10.080 2025.06.24 09:09:12.552 2025.06.24 07:23:39.764 2025.06.24 07:23:41.497
6 6.0.0.854 2025.06.23 10b58 F F 2461 1718 2025.06.23 15:49:58.030 2025.06.23 15:50:00.491 2025.06.23 14:03:29.601 2025.06.23 14:03:31.319
7 6.0.0.849 2025.06.20 7b79c F F 2348 1741 2025.06.21 03:28:22.394 2025.06.21 03:28:24.742 2025.06.21 01:40:09.861 2025.06.21 01:40:11.602
8 6.0.0.848 2025.06.19 c483c F F 2384 1743 2025.06.20 03:28:00.539 2025.06.20 03:28:02.923 2025.06.20 01:39:51.877 2025.06.20 01:39:53.620
9 6.0.0.845 2025.06.18 20191 F F 2500 1746 2025.06.19 03:27:28.434 2025.06.19 03:27:30.934 2025.06.19 01:39:37.040 2025.06.19 01:39:38.786
10 6.0.0.843 2025.06.16 995f4 F F 2399 1817 2025.06.18 03:27:16.246 2025.06.18 03:27:18.645 2025.06.18 01:39:08.957 2025.06.18 01:39:10.774
11 6.0.0.840 2025.06.14 29bca F F 2423 1887 2025.06.15 03:38:17.940 2025.06.15 03:38:20.363 2025.06.15 01:44:56.626 2025.06.15 01:44:58.513
12 6.0.0.838 2025.06.13 0e28a F F 2433 2280 2025.06.14 03:36:29.265 2025.06.14 03:36:31.698 2025.06.14 01:43:16.229 2025.06.14 01:43:18.509
13 6.0.0.834 2025.06.11 e889f F F 2411 1757 2025.06.12 03:32:13.866 2025.06.12 03:32:16.277 2025.06.12 01:42:31.806 2025.06.12 01:42:33.563
14 6.0.0.800 2025.06.10 1f226 P P 6665 7276 2025.06.11 02:16:47.144 2025.06.11 02:16:53.809 2025.06.11 01:05:12.884 2025.06.11 01:05:20.160
15 6.0.0.799 2025.06.07 be644 P P 6753 7265 2025.06.10 02:16:40.116 2025.06.10 02:16:46.869 2025.06.10 01:04:42.746 2025.06.10 01:04:50.011
16 6.0.0.797 2025.06.06 303e8 P P 6317 6277 2025.06.07 02:15:08.162 2025.06.07 02:15:14.479 2025.06.07 01:04:35.165 2025.06.07 01:04:41.442
17 6.0.0.795 2025.05.29 7a71a P P 6709 7274 2025.06.06 02:14:42.463 2025.06.06 02:14:49.172 2025.06.06 01:04:09.523 2025.06.06 01:04:16.797
18 6.0.0.792 2025.05.28 ee5a8 P P 6660 7315 2025.05.29 02:13:07.805 2025.05.29 02:13:14.465 2025.05.29 01:03:40.897 2025.05.29 01:03:48.212
19 6.0.0.791 2025.05.27 02db8 P P 6791 6285 2025.05.28 02:13:38.285 2025.05.28 02:13:45.076 2025.05.28 01:03:17.803 2025.05.28 01:03:24.088
20 6.0.0.789 2025.05.21 64051 P P 6784 6492 2025.05.25 02:13:19.069 2025.05.25 02:13:25.853 2025.05.25 01:04:01.128 2025.05.25 01:04:07.620
21 6.0.0.787 2025.05.20 230ad P P 6766 6335 2025.05.21 02:12:14.192 2025.05.21 02:12:20.958 2025.05.21 01:02:50.697 2025.05.21 01:02:57.032
22 6.0.0.783 2025.05.12 37320 P P 6674 6284 2025.05.19 02:11:50.133 2025.05.19 02:11:56.807 2025.05.19 01:02:57.853 2025.05.19 01:03:04.137
23 6.0.0.779 2025.05.11 136fa P P 6738 6281 2025.05.12 02:14:08.460 2025.05.12 02:14:15.198 2025.05.12 01:04:22.113 2025.05.12 01:04:28.394
24 6.0.0.778 2025.05.07 d735e P P 6724 7306 2025.05.11 02:13:33.742 2025.05.11 02:13:40.466 2025.05.11 01:03:49.073 2025.05.11 01:03:56.379
25 6.0.0.776 2025.05.06 007cd P P 6724 6303 2025.05.07 02:12:49.248 2025.05.07 02:12:55.972 2025.05.07 01:03:30.066 2025.05.07 01:03:36.369
26 6.0.0.770 2025.05.05 82c4a P P 6732 6432 2025.05.06 02:13:18.562 2025.05.06 02:13:25.294 2025.05.06 01:04:08.871 2025.05.06 01:04:15.303
27 6.0.0.767 2025.05.01 cdd29 P P 6733 6282 2025.05.02 02:13:45.770 2025.05.02 02:13:52.503 2025.05.02 01:04:29.342 2025.05.02 01:04:35.624
28 6.0.0.762 2025.04.30 5cb15 P P 6694 7244 2025.05.01 02:12:29.218 2025.05.01 02:12:35.912 2025.05.01 01:03:41.777 2025.05.01 01:03:49.021
29 6.0.0.755 2025.04.29 739c6 P P 6680 6300 2025.04.30 02:12:14.445 2025.04.30 02:12:21.125 2025.04.30 01:03:23.792 2025.04.30 01:03:30.092
30 6.0.0.753 2025.04.27 29ab3 P P 6705 6271 2025.04.29 02:12:24.078 2025.04.29 02:12:30.783 2025.04.29 01:03:43.911 2025.04.29 01:03:50.182
31 6.0.0.745 2025.04.21 78ad8 P P 6796 6288 2025.04.26 02:14:14.429 2025.04.26 02:14:21.225 2025.04.26 01:04:14.705 2025.04.26 01:04:20.993
32 6.0.0.744 2025.04.19 e883a P P 6782 6290 2025.04.20 02:13:27.020 2025.04.20 02:13:33.802 2025.04.20 01:03:52.062 2025.04.20 01:03:58.352
33 6.0.0.742 2025.04.17 abc3b P P 6719 7289 2025.04.19 02:13:03.450 2025.04.19 02:13:10.169 2025.04.19 01:03:36.970 2025.04.19 01:03:44.259
34 6.0.0.737 2025.04.16 fe52b P P 6669 6290 2025.04.17 02:13:21.555 2025.04.17 02:13:28.224 2025.04.17 01:04:03.048 2025.04.17 01:04:09.338
35 6.0.0.736 2025.04.14 3e6be P P 6708 6329 2025.04.15 02:14:16.067 2025.04.15 02:14:22.775 2025.04.15 01:04:04.501 2025.04.15 01:04:10.830
36 6.0.0.735 2025.04.13 6635c P P 6729 6287 2025.04.14 02:13:22.291 2025.04.14 02:13:29.020 2025.04.14 01:04:24.227 2025.04.14 01:04:30.514
37 6.0.0.734 2025.04.12 e2fd1 P P 5638 7255 2025.04.13 02:10:49.363 2025.04.13 02:10:55.001 2025.04.13 01:02:59.611 2025.04.13 01:03:06.866
38 6.0.0.730 2025.04.11 240b8 P P 6683 7296 2025.04.12 02:20:25.551 2025.04.12 02:20:32.234 2025.04.12 01:07:24.471 2025.04.12 01:07:31.767
39 6.0.0.726 2025.04.10 d79c6 P P 6711 6302 2025.04.11 02:20:54.642 2025.04.11 02:21:01.353 2025.04.11 01:07:16.919 2025.04.11 01:07:23.221
40 6.0.0.725 2025.04.09 a2b05 P P 6719 6385 2025.04.10 02:19:50.766 2025.04.10 02:19:57.485 2025.04.10 01:06:56.954 2025.04.10 01:07:03.339
41 6.0.0.722 2025.04.08 a8b86 P P 6809 6324 2025.04.09 02:13:45.238 2025.04.09 02:13:52.047 2025.04.09 01:03:48.616 2025.04.09 01:03:54.940
42 6.0.0.719 2025.04.06 90fd9 P P 6764 6294 2025.04.08 02:13:42.363 2025.04.08 02:13:49.127 2025.04.08 01:04:07.025 2025.04.08 01:04:13.319
43 6.0.0.717 2025.04.04 53d70 P P 6740 6312 2025.04.05 02:13:46.659 2025.04.05 02:13:53.399 2025.04.05 01:03:57.251 2025.04.05 01:04:03.563
44 6.0.0.716 2025.04.03 fc636 P P 6733 7315 2025.04.04 02:13:46.884 2025.04.04 02:13:53.617 2025.04.04 01:04:02.941 2025.04.04 01:04:10.256
45 6.0.0.715 2025.04.02 907ed P P 6740 6304 2025.04.03 02:13:59.222 2025.04.03 02:14:05.962 2025.04.03 01:04:07.609 2025.04.03 01:04:13.913
46 6.0.0.710 2025.04.01 40651 P P 6783 7413 2025.04.02 02:13:47.774 2025.04.02 02:13:54.557 2025.04.02 01:04:24.083 2025.04.02 01:04:31.496
47 6.0.0.708 2025.03.31 cb069 P P 6744 6295 2025.04.01 02:13:15.825 2025.04.01 02:13:22.569 2025.04.01 01:03:38.640 2025.04.01 01:03:44.935
48 6.0.0.707 2025.03.28 4bd4f P P 6723 6298 2025.03.31 02:13:47.952 2025.03.31 02:13:54.675 2025.03.31 01:03:44.943 2025.03.31 01:03:51.241
49 6.0.0.702 2025.03.27 86f4d P F 6775 2434 2025.03.28 02:31:09.556 2025.03.28 02:31:16.331 2025.03.28 01:19:23.213 2025.03.28 01:19:25.647
50 6.0.0.698 2025.03.26 d72a7 P P 6751 6355 2025.03.27 15:57:20.327 2025.03.27 15:57:27.078 2025.03.27 14:45:23.092 2025.03.27 14:45:29.447
51 6.0.0.693 2025.03.25 8aac2 P P 6836 7364 2025.03.26 02:18:00.668 2025.03.26 02:18:07.504 2025.03.26 01:05:51.361 2025.03.26 01:05:58.725
52 6.0.0.693 2025.03.24 0b559 P P 5873 7544 2025.03.25 02:18:27.241 2025.03.25 02:18:33.114 2025.03.25 01:05:56.326 2025.03.25 01:06:03.870
53 6.0.0.687 2025.03.22 730aa P P 6812 6351 2025.03.24 02:18:17.236 2025.03.24 02:18:24.048 2025.03.24 01:06:20.644 2025.03.24 01:06:26.995
54 6.0.0.686 2025.03.20 71bf6 P P 6716 7325 2025.03.21 02:14:21.514 2025.03.21 02:14:28.230 2025.03.21 01:04:24.375 2025.03.21 01:04:31.700
55 6.0.0.685 2025.03.19 a8577 P P 7785 6308 2025.03.20 02:14:38.419 2025.03.20 02:14:46.204 2025.03.20 01:04:50.591 2025.03.20 01:04:56.899
56 6.0.0.680 2025.03.18 90d29 P P 6738 6319 2025.03.19 02:14:52.986 2025.03.19 02:14:59.724 2025.03.19 01:04:52.240 2025.03.19 01:04:58.559
57 6.0.0.677 2025.03.16 c0a60 P P 6724 7305 2025.03.18 02:11:07.147 2025.03.18 02:11:13.871 2025.03.18 01:02:56.957 2025.03.18 01:03:04.262
58 6.0.0.676 2025.03.15 11cfb P P 6754 7304 2025.03.16 02:10:27.758 2025.03.16 02:10:34.512 2025.03.16 01:02:01.762 2025.03.16 01:02:09.066
59 6.0.0.674 2025.03.14 7d82c P P 6696 6307 2025.03.15 02:09:11.572 2025.03.15 02:09:18.268 2025.03.15 01:02:27.678 2025.03.15 01:02:33.985
60 6.0.0.673 2025.03.13 40f5b P P 6659 6273 2025.03.14 14:39:42.132 2025.03.14 14:39:48.791 2025.03.14 13:32:22.155 2025.03.14 13:32:28.428
61 6.0.0.671 2025.03.12 a4fff P P 6878 7359 2025.03.13 02:14:57.951 2025.03.13 02:15:04.829 2025.03.13 01:04:34.916 2025.03.13 01:04:42.275
62 6.0.0.663 2025.03.11 65970 P P 7254 7854 2025.03.12 02:14:22.464 2025.03.12 02:14:29.718 2025.03.12 01:04:17.875 2025.03.12 01:04:25.729
63 6.0.0.661 2025.03.07 b9869 P P 7281 7874 2025.03.11 02:14:44.868 2025.03.11 02:14:52.149 2025.03.11 01:04:19.008 2025.03.11 01:04:26.882
64 6.0.0.660 2025.03.04 a6700 P P 7002 6319 2025.03.06 02:14:41.972 2025.03.06 02:14:48.974 2025.03.06 01:04:10.326 2025.03.06 01:04:16.645
65 6.0.0.658 2025.03.03 f15f8 P P 6818 7318 2025.03.04 02:11:15.171 2025.03.04 02:11:21.989 2025.03.04 01:03:02.941 2025.03.04 01:03:10.259
66 6.0.0.656 2025.02.27 25fb4 P P 6751 6328 2025.03.03 02:11:27.562 2025.03.03 02:11:34.313 2025.03.03 01:03:11.234 2025.03.03 01:03:17.562
67 6.0.0.655 2025.02.25 6e3e0 P P 6848 6364 2025.02.27 02:12:45.545 2025.02.27 02:12:52.393 2025.02.27 01:03:27.032 2025.02.27 01:03:33.396
68 6.0.0.654 2025.02.24 b7141 P P 6736 6310 2025.02.25 02:09:13.199 2025.02.25 02:09:19.935 2025.02.25 01:01:54.610 2025.02.25 01:02:00.920
69 6.0.0.652 2025.02.22 22662 P P 6780 7364 2025.02.24 02:08:25.323 2025.02.24 02:08:32.103 2025.02.24 01:01:16.367 2025.02.24 01:01:23.731
70 6.0.0.647 2025.02.21 9fccb P P 6755 6278 2025.02.22 02:07:04.412 2025.02.22 02:07:11.167 2025.02.22 01:00:50.275 2025.02.22 01:00:56.553
71 6.0.0.640 2025.02.19 9b8ac P P 6757 7279 2025.02.20 02:08:33.820 2025.02.20 02:08:40.577 2025.02.20 01:01:22.756 2025.02.20 01:01:30.035
72 6.0.0.639 2025.02.18 201a4 P P 6729 6282 2025.02.19 02:09:22.363 2025.02.19 02:09:29.092 2025.02.19 01:02:04.333 2025.02.19 01:02:10.615
73 6.0.0.637 2025.02.12 6d0f5 P P 6714 6755 2025.02.14 02:10:06.071 2025.02.14 02:10:12.785 2025.02.14 01:02:37.097 2025.02.14 01:02:43.852
74 6.0.0.636 2025.02.11 0424f P P 6723 7287 2025.02.12 02:09:35.621 2025.02.12 02:09:42.344 2025.02.12 01:01:55.125 2025.02.12 01:02:02.412
75 6.0.0.635 2025.02.10 f640f P P 6715 7313 2025.02.11 02:09:03.450 2025.02.11 02:09:10.165 2025.02.11 01:01:43.620 2025.02.11 01:01:50.933
76 6.0.0.629 2025.02.07 194f9 P P 6748 7301 2025.02.08 02:08:56.421 2025.02.08 02:09:03.169 2025.02.08 01:01:42.234 2025.02.08 01:01:49.535
77 6.0.0.628 2025.02.06 859d5 P P 6798 6366 2025.02.07 11:12:40.773 2025.02.07 11:12:47.571 2025.02.07 09:59:05.623 2025.02.07 09:59:11.989
78 6.0.0.621 2025.02.05 34fe7 P P 6758 6382 2025.02.07 02:22:41.888 2025.02.07 02:22:48.646 2025.02.07 01:08:45.351 2025.02.07 01:08:51.733
79 6.0.0.609 2025.02.04 76d57 P P 6761 6364 2025.02.05 02:22:29.420 2025.02.05 02:22:36.181 2025.02.05 01:08:47.422 2025.02.05 01:08:53.786
80 6.0.0.607 2025.02.03 1985b P P 6747 7398 2025.02.04 02:22:21.941 2025.02.04 02:22:28.688 2025.02.04 01:08:28.049 2025.02.04 01:08:35.447
81 6.0.0.601 2025.02.01 6af07 P P 6785 6302 2025.02.02 02:08:46.124 2025.02.02 02:08:52.909 2025.02.02 01:01:52.314 2025.02.02 01:01:58.616
82 6.0.0.600 2025.01.27 188de P P 6778 6306 2025.01.28 02:08:45.130 2025.01.28 02:08:51.908 2025.01.28 01:01:27.288 2025.01.28 01:01:33.594
83 6.0.0.599 2025.01.25 ba588 P P 6703 7367 2025.01.26 02:08:30.905 2025.01.26 02:08:37.608 2025.01.26 01:01:29.675 2025.01.26 01:01:37.042
84 6.0.0.598 2025.01.23 ddbc3 P P 6714 6326 2025.01.25 11:57:04.452 2025.01.25 11:57:11.166 2025.01.25 10:49:28.628 2025.01.25 10:49:34.954
85 6.0.0.595 2025.01.22 e62f3 P P 6734 6336 2025.01.23 02:08:58.586 2025.01.23 02:09:05.320 2025.01.23 01:01:25.499 2025.01.23 01:01:31.835
86 6.0.0.594 2025.01.21 47fb6 P P 6753 7280 2025.01.22 02:08:22.732 2025.01.22 02:08:29.485 2025.01.22 01:01:21.110 2025.01.22 01:01:28.390
87 6.0.0.590 2025.01.20 3d7c0 P P 6719 6344 2025.01.21 02:08:37.936 2025.01.21 02:08:44.655 2025.01.21 01:01:20.624 2025.01.21 01:01:26.968
88 6.0.0.588 2025.01.19 b1c4e P P 6757 6334 2025.01.20 02:08:00.927 2025.01.20 02:08:07.684 2025.01.20 01:01:12.004 2025.01.20 01:01:18.338
89 6.0.0.587 2025.01.18 63e6e P P 6757 6734 2025.01.19 02:07:50.982 2025.01.19 02:07:57.739 2025.01.19 01:01:04.496 2025.01.19 01:01:11.230
90 6.0.0.585 2025.01.16 2d6bb P P 6634 6237 2025.01.18 02:06:07.781 2025.01.18 02:06:14.415 2025.01.18 01:01:26.943 2025.01.18 01:01:33.180
91 6.0.0.584 2025.01.15 a0aa2 P P 6791 6314 2025.01.16 02:10:15.670 2025.01.16 02:10:22.461 2025.01.16 01:02:27.737 2025.01.16 01:02:34.051
92 6.0.0.581 2025.01.15 69690 P P 6717 6250 2025.01.15 18:20:01.505 2025.01.15 18:20:08.222 2025.01.15 17:11:08.318 2025.01.15 17:11:14.568
93 6.0.0.581 2025.01.14 21e9e P P 6767 7347 2025.01.15 02:09:24.645 2025.01.15 02:09:31.412 2025.01.15 01:02:13.355 2025.01.15 01:02:20.702
94 6.0.0.577 2025.01.14 91dce P P 6820 6273 2025.01.14 17:30:34.611 2025.01.14 17:30:41.431 2025.01.14 16:23:06.533 2025.01.14 16:23:12.806
95 6.0.0.577 2025.01.13 7e293 P P 7817 6287 2025.01.14 11:53:13.648 2025.01.14 11:53:21.465 2025.01.14 10:46:18.388 2025.01.14 10:46:24.675
96 6.0.0.576 2025.01.12 05898 P P 6766 6312 2025.01.13 02:10:47.526 2025.01.13 02:10:54.292 2025.01.13 01:02:25.354 2025.01.13 01:02:31.666
97 6.0.0.573 2025.01.10 c20f3 P P 6790 7421 2025.01.11 02:10:43.268 2025.01.11 02:10:50.058 2025.01.11 01:02:34.104 2025.01.11 01:02:41.525
98 6.0.0.571 2024.12.31 81bba P P 6877 6440 2025.01.01 02:09:46.931 2025.01.01 02:09:53.808 2025.01.01 01:01:59.141 2025.01.01 01:02:05.581
99 6.0.0.570 2024.12.30 c3c8d P P 6742 7297 2024.12.31 02:09:16.898 2024.12.31 02:09:23.640 2024.12.31 01:02:16.813 2024.12.31 01:02:24.110
100 6.0.0.565 2024.12.28 5fc59 P P 6750 7852 2024.12.29 18:04:47.118 2024.12.29 18:04:53.868 2024.12.29 16:57:25.992 2024.12.29 16:57:33.844
101 6.0.0.564 2024.12.26 12514 P P 6764 6287 2024.12.27 02:08:57.847 2024.12.27 02:09:04.611 2024.12.27 01:01:49.538 2024.12.27 01:01:55.825
102 6.0.0.560 2024.12.25 fa83e P P 7030 7398 2024.12.26 02:09:39.546 2024.12.26 02:09:46.576 2024.12.26 01:01:54.160 2024.12.26 01:02:01.558
103 6.0.0.559 2024.12.23 cc800 P P 6749 7355 2024.12.25 02:08:58.256 2024.12.25 02:09:05.005 2024.12.25 01:01:53.881 2024.12.25 01:02:01.236
104 6.0.0.556 2024.12.22 a0404 P P 6765 6298 2024.12.23 02:08:54.201 2024.12.23 02:09:00.966 2024.12.23 01:01:36.712 2024.12.23 01:01:43.010
105 6.0.0.555 2024.12.19 6990a P P 6721 7271 2024.12.21 13:03:45.755 2024.12.21 13:03:52.476 2024.12.21 11:55:50.633 2024.12.21 11:55:57.904
106 6.0.0.553 2024.12.17 d1f8a P P 6792 6291 2024.12.18 02:08:05.956 2024.12.18 02:08:12.748 2024.12.18 01:01:23.152 2024.12.18 01:01:29.443
107 6.0.0.552 2024.12.11 85e25 P P 6807 7375 2024.12.16 02:07:27.470 2024.12.16 02:07:34.277 2024.12.16 01:01:11.046 2024.12.16 01:01:18.421
108 6.0.0.550 2024.12.10 b37ac P P 6761 6315 2024.12.11 02:11:08.922 2024.12.11 02:11:15.683 2024.12.11 01:01:50.179 2024.12.11 01:01:56.494
109 6.0.0.548 2024.12.08 2cc77 P P 5771 6626 2024.12.09 02:13:54.385 2024.12.09 02:14:00.156 2024.12.09 01:05:17.042 2024.12.09 01:05:23.668
110 6.0.0.544 2024.12.05 96943 P P 6853 6382 2024.12.06 02:08:23.417 2024.12.06 02:08:30.270 2024.12.06 01:02:03.955 2024.12.06 01:02:10.337
111 6.0.0.543 2024.12.03 30b77 P P 6794 6280 2024.12.04 02:08:21.353 2024.12.04 02:08:28.147 2024.12.04 01:02:43.657 2024.12.04 01:02:49.937
112 6.0.0.540 2024.12.02 4a1f4 P P 6731 6306 2024.12.03 02:07:39.862 2024.12.03 02:07:46.593 2024.12.03 01:01:58.967 2024.12.03 01:02:05.273
113 6.0.0.539 2024.11.28 1f283 P P 6729 6293 2024.11.30 02:07:04.519 2024.11.30 02:07:11.248 2024.11.30 01:01:47.621 2024.11.30 01:01:53.914
114 6.0.0.535 2024.11.27 6551a P P 6290 6307 2024.11.28 02:05:41.882 2024.11.28 02:05:48.172 2024.11.28 01:01:07.482 2024.11.28 01:01:13.789
115 6.0.0.535 2024.11.26 77b95 P P 6822 6281 2024.11.27 02:06:02.318 2024.11.27 02:06:09.140 2024.11.27 01:01:24.132 2024.11.27 01:01:30.413
116 6.0.0.534 2024.11.25 e9584 P P 6726 6276 2024.11.26 02:06:19.325 2024.11.26 02:06:26.051 2024.11.26 01:01:11.139 2024.11.26 01:01:17.415
117 6.0.0.533 2024.11.17 933ac P P 6748 6305 2024.11.22 02:06:57.986 2024.11.22 02:07:04.734 2024.11.22 01:01:37.985 2024.11.22 01:01:44.290
118 6.0.0.532 2024.11.17 1a471 P P 6849 6311 2024.11.17 14:40:41.730 2024.11.17 14:40:48.579 2024.11.17 13:36:04.219 2024.11.17 13:36:10.530
119 6.0.0.532 2024.11.16 9e263 P P 6817 6302 2024.11.17 02:05:34.634 2024.11.17 02:05:41.451 2024.11.17 01:00:49.585 2024.11.17 01:00:55.887
120 6.0.0.530 2024.11.15 49804 P P 6623 6272 2024.11.16 02:03:14.785 2024.11.16 02:03:21.408 2024.11.16 01:00:49.206 2024.11.16 01:00:55.478
121 6.0.0.528 2024.11.14 9625b P P 7747 6738 2024.11.15 02:08:12.652 2024.11.15 02:08:20.399 2024.11.15 01:02:29.938 2024.11.15 01:02:36.676
122 6.0.0.526 2024.11.12 65b80 P P 6861 6291 2024.11.14 02:07:16.299 2024.11.14 02:07:23.160 2024.11.14 01:01:49.170 2024.11.14 01:01:55.461
123 6.0.0.523 2024.11.08 8ca23 P P 6711 7297 2024.11.11 02:05:37.003 2024.11.11 02:05:43.714 2024.11.11 01:01:11.396 2024.11.11 01:01:18.693
124 6.0.0.520 2024.11.08 52657 P P 6641 6253 2024.11.08 18:39:03.240 2024.11.08 18:39:09.881 2024.11.08 17:35:43.573 2024.11.08 17:35:49.826
125 6.0.0.520 2024.11.07 4eefa P P 6715 6294 2024.11.08 02:04:40.487 2024.11.08 02:04:47.202 2024.11.08 01:01:10.218 2024.11.08 01:01:16.512
126 6.0.0.516 2024.11.04 b0c36 P P 6766 6306 2024.11.05 02:05:46.153 2024.11.05 02:05:52.919 2024.11.05 01:00:59.605 2024.11.05 01:01:05.911
127 6.0.0.515 2024.10.30 d53f3 P P 6725 6294 2024.11.04 02:05:20.359 2024.11.04 02:05:27.084 2024.11.04 01:01:01.475 2024.11.04 01:01:07.769
128 6.0.0.512 2024.10.29 833ef P P 6736 6301 2024.10.30 02:07:51.777 2024.10.30 02:07:58.513 2024.10.30 01:02:06.777 2024.10.30 01:02:13.078
129 6.0.0.511 2024.10.26 c4bc9 P P 6726 6414 2024.10.29 02:07:32.290 2024.10.29 02:07:39.016 2024.10.29 01:01:49.369 2024.10.29 01:01:55.783
130 6.0.0.508 2024.10.24 a8f5b P P 7854 6379 2024.10.26 10:16:11.587 2024.10.26 10:16:19.441 2024.10.26 09:08:16.116 2024.10.26 09:08:22.495
131 6.0.0.502 2024.10.22 6bfd7 P P 6759 6298 2024.10.23 02:07:21.241 2024.10.23 02:07:28.000 2024.10.23 01:01:29.419 2024.10.23 01:01:35.717
132 6.0.0.500 2024.10.21 be565 P P 6836 6295 2024.10.22 02:07:35.050 2024.10.22 02:07:41.886 2024.10.22 01:01:44.217 2024.10.22 01:01:50.512
133 6.0.0.499 2024.10.19 6214b P P 6817 7355 2024.10.20 02:06:32.484 2024.10.20 02:06:39.301 2024.10.20 01:01:28.511 2024.10.20 01:01:35.866
134 6.0.0.498 2024.10.18 591a7 P P 7206 6301 2024.10.19 02:06:20.139 2024.10.19 02:06:27.345 2024.10.19 01:00:54.261 2024.10.19 01:01:00.562
135 6.0.0.494 2024.10.17 042ce P P 6752 7600 2024.10.18 02:06:34.578 2024.10.18 02:06:41.330 2024.10.18 01:01:16.558 2024.10.18 01:01:24.158
136 6.0.0.491 2024.10.14 dc5fb P P 6775 6306 2024.10.15 02:06:11.354 2024.10.15 02:06:18.129 2024.10.15 01:00:55.978 2024.10.15 01:01:02.284
137 6.0.0.489 2024.10.11 2ba59 P P 6883 6295 2024.10.12 02:05:40.576 2024.10.12 02:05:47.459 2024.10.12 01:00:41.101 2024.10.12 01:00:47.396
138 6.0.0.488 2024.10.09 1c93e P P 6749 7283 2024.10.10 02:05:23.358 2024.10.10 02:05:30.107 2024.10.10 01:00:59.728 2024.10.10 01:01:07.011
139 6.0.0.487 2024.10.06 065a3 P P 6831 6295 2024.10.07 02:06:54.742 2024.10.07 02:07:01.573 2024.10.07 01:01:43.514 2024.10.07 01:01:49.809
140 6.0.0.485 2024.10.05 9f5f7 P P 6804 6349 2024.10.06 02:06:32.335 2024.10.06 02:06:39.139 2024.10.06 01:01:20.044 2024.10.06 01:01:26.393
141 6.0.0.485 2024.10.04 e95c1 P P 6809 7393 2024.10.05 02:06:24.141 2024.10.05 02:06:30.950 2024.10.05 01:00:59.590 2024.10.05 01:01:06.983
142 6.0.0.483 2024.10.02 5e5ae P P 6737 6309 2024.10.03 02:07:39.814 2024.10.03 02:07:46.551 2024.10.03 01:01:44.439 2024.10.03 01:01:50.748
143 6.0.0.478 2024.09.30 b5010 P P 7223 6305 2024.10.01 02:06:38.109 2024.10.01 02:06:45.332 2024.10.01 01:01:16.985 2024.10.01 01:01:23.290
144 6.0.0.474 2024.09.26 e4efb P P 6296 7371 2024.09.30 02:06:30.741 2024.09.30 02:06:37.037 2024.09.30 01:01:11.267 2024.09.30 01:01:18.638
145 6.0.0.471 2024.09.25 dab71 P P 6720 6295 2024.09.26 02:06:12.721 2024.09.26 02:06:19.441 2024.09.26 01:01:24.949 2024.09.26 01:01:31.244
146 6.0.0.471 2024.09.24 01b51 P P 6750 6292 2024.09.25 02:07:02.664 2024.09.25 02:07:09.414 2024.09.25 01:01:46.863 2024.09.25 01:01:53.155
147 6.0.0.470 2024.09.23 77cc0 P P 6729 6618 2024.09.24 02:06:14.351 2024.09.24 02:06:21.080 2024.09.24 01:01:31.004 2024.09.24 01:01:37.622
148 6.0.0.467 2024.09.21 ea0b8 P P 6736 7362 2024.09.23 02:07:25.654 2024.09.23 02:07:32.390 2024.09.23 01:02:27.635 2024.09.23 01:02:34.997
149 6.0.0.466 2024.09.20 32dc6 P P 6769 6299 2024.09.21 02:05:41.214 2024.09.21 02:05:47.983 2024.09.21 01:01:05.957 2024.09.21 01:01:12.256
150 6.0.0.461 2024.09.17 2c895 P P 6253 6280 2024.09.18 02:05:04.781 2024.09.18 02:05:11.034 2024.09.18 01:00:13.762 2024.09.18 01:00:20.042
151 6.0.0.460 2024.09.11 3c253 P P 6770 6273 2024.09.17 02:05:10.205 2024.09.17 02:05:16.975 2024.09.17 01:00:38.855 2024.09.17 01:00:45.128
152 6.0.0.457 2024.09.09 fdc6f P P 6765 6369 2024.09.10 02:06:00.179 2024.09.10 02:06:06.944 2024.09.10 01:00:52.025 2024.09.10 01:00:58.394
153 6.0.0.455 2024.09.07 500d8 P P 6723 6376 2024.09.08 02:06:14.231 2024.09.08 02:06:20.954 2024.09.08 01:01:27.983 2024.09.08 01:01:34.359
154 6.0.0.454 2024.09.05 4d70f P P 6735 6375 2024.09.06 02:06:24.343 2024.09.06 02:06:31.078 2024.09.06 01:01:25.558 2024.09.06 01:01:31.933
155 6.0.0.452 2024.09.04 9ff9c P P 6740 7328 2024.09.05 02:05:57.481 2024.09.05 02:06:04.221 2024.09.05 01:01:00.248 2024.09.05 01:01:07.576
156 6.0.0.450 2024.09.02 27124 P P 6759 7435 2024.09.04 02:06:21.363 2024.09.04 02:06:28.122 2024.09.04 01:01:15.417 2024.09.04 01:01:22.852
157 6.0.0.447 2024.09.01 901b4 P P 6751 6290 2024.09.02 01:56:33.513 2024.09.02 01:56:40.264 2024.09.02 00:50:56.012 2024.09.02 00:51:02.302
158 6.0.0.446 2024.08.30 fe1b2 P P 6817 6290 2024.09.01 01:55:07.010 2024.09.01 01:55:13.827 2024.09.01 00:50:53.945 2024.09.01 00:51:00.235
159 6.0.0.444 2024.08.28 785d4 P P 6753 6296 2024.08.30 01:55:30.595 2024.08.30 01:55:37.348 2024.08.30 00:51:12.496 2024.08.30 00:51:18.792
160 6.0.0.442 2024.08.21 4a68f P P 6773 6303 2024.08.28 01:55:11.603 2024.08.28 01:55:18.376 2024.08.28 00:50:54.719 2024.08.28 00:51:01.022
161 6.0.0.441 2024.08.20 75042 P P 7775 6304 2024.08.21 01:54:35.923 2024.08.21 01:54:43.698 2024.08.21 00:50:13.694 2024.08.21 00:50:19.998
162 6.0.0.438 2024.08.16 088b5 P P 6836 7287 2024.08.19 01:57:37.991 2024.08.19 01:57:44.827 2024.08.19 00:51:26.361 2024.08.19 00:51:33.648
163 6.0.0.437 2024.08.14 3c88b P P 6828 6302 2024.08.16 02:00:50.101 2024.08.16 02:00:56.929 2024.08.16 00:52:29.887 2024.08.16 00:52:36.189
164 6.0.0.436 2024.08.13 b8e75 P P 5852 6305 2024.08.14 01:59:27.821 2024.08.14 01:59:33.673 2024.08.14 00:51:46.539 2024.08.14 00:51:52.844
165 6.0.0.432 2024.08.11 e82ac P P 6827 6310 2024.08.13 01:57:57.936 2024.08.13 01:58:04.763 2024.08.13 00:51:19.137 2024.08.13 00:51:25.447
166 6.0.0.431 2024.08.11 16bb1 P P 6781 7356 2024.08.11 18:03:35.509 2024.08.11 18:03:42.290 2024.08.11 16:56:23.905 2024.08.11 16:56:31.261
167 6.0.0.431 2024.08.09 de5a7 P P 6854 6305 2024.08.10 17:35:55.100 2024.08.10 17:36:01.954 2024.08.10 16:30:06.512 2024.08.10 16:30:12.817
168 6.0.0.428 2024.08.08 9191b P P 6809 6318 2024.08.10 01:56:28.541 2024.08.10 01:56:35.350 2024.08.10 00:50:44.024 2024.08.10 00:50:50.342
169 6.0.0.423 2024.08.07 33b41 P P 6792 7341 2024.08.08 08:55:50.575 2024.08.08 08:55:57.367 2024.08.08 07:50:00.985 2024.08.08 07:50:08.326
170 6.0.0.421 2024.08.06 ed60d P P 6794 6327 2024.08.07 01:50:58.345 2024.08.07 01:51:05.139 2024.08.07 00:48:56.664 2024.08.07 00:49:02.991
171 6.0.0.419 2024.08.05 3505a P P 6910 7315 2024.08.06 01:48:57.024 2024.08.06 01:49:03.934 2024.08.06 00:48:08.294 2024.08.06 00:48:15.609
172 6.0.0.409 2024.08.02 ec18f P P 6829 7332 2024.08.05 01:48:07.891 2024.08.05 01:48:14.720 2024.08.05 00:47:26.271 2024.08.05 00:47:33.603
173 6.0.0.406 2024.08.01 b20be P P 7463 7298 2024.08.02 01:46:51.990 2024.08.02 01:46:59.453 2024.08.02 00:46:45.028 2024.08.02 00:46:52.326
174 6.0.0.405 2024.07.31 a62ac P P 6911 7339 2024.08.01 01:54:57.025 2024.08.01 01:55:03.936 2024.08.01 00:53:01.677 2024.08.01 00:53:09.016
175 6.0.0.403 2024.07.29 30f03 P P 6868 6344 2024.07.30 01:50:11.103 2024.07.30 01:50:17.971 2024.07.30 00:48:24.984 2024.07.30 00:48:31.328
176 6.0.0.401 2024.07.26 24e41 P P 7071 7354 2024.07.27 01:49:38.069 2024.07.27 01:49:45.140 2024.07.27 00:47:56.729 2024.07.27 00:48:04.083
177 6.0.0.400 2024.07.24 5bb78 P P 6897 6764 2024.07.25 01:50:11.193 2024.07.25 01:50:18.090 2024.07.25 00:48:25.924 2024.07.25 00:48:32.688
178 6.0.0.398 2024.07.23 85b18 P F 6931 2216 2024.07.24 02:13:29.163 2024.07.24 02:13:36.094 2024.07.24 01:07:43.501 2024.07.24 01:07:45.717
179 6.0.0.397 2024.07.22 c734c P P 6894 7426 2024.07.23 01:49:58.074 2024.07.23 01:50:04.968 2024.07.23 00:48:12.719 2024.07.23 00:48:20.145
180 6.0.0.396 2024.07.13 cf952 P P 5936 6371 2024.07.22 01:50:09.675 2024.07.22 01:50:15.611 2024.07.22 00:48:21.904 2024.07.22 00:48:28.275
181 6.0.0.395 2024.07.10 845f4 P P 6824 8336 2024.07.13 01:48:36.086 2024.07.13 01:48:42.910 2024.07.13 00:47:58.546 2024.07.13 00:48:06.882
182 6.0.0.392 2024.07.09 ea301 P P 6920 7425 2024.07.10 01:56:46.484 2024.07.10 01:56:53.404 2024.07.10 00:49:15.770 2024.07.10 00:49:23.195
183 6.0.0.391 2024.07.08 7d50c P P 6999 7505 2024.07.09 01:53:15.198 2024.07.09 01:53:22.197 2024.07.09 00:49:26.714 2024.07.09 00:49:34.219
184 6.0.0.389 2024.07.05 cc71c P P 6914 7476 2024.07.06 01:53:49.351 2024.07.06 01:53:56.265 2024.07.06 00:49:49.279 2024.07.06 00:49:56.755
185 6.0.0.388 2024.06.30 e5700 P P 6989 7424 2024.07.01 01:53:54.524 2024.07.01 01:54:01.513 2024.07.01 00:49:41.724 2024.07.01 00:49:49.148
186 6.0.0.387 2024.06.27 7c28a P P 6926 7385 2024.06.28 01:53:36.347 2024.06.28 01:53:43.273 2024.06.28 00:49:53.371 2024.06.28 00:50:00.756
187 6.0.0.386 2024.06.23 7c57f P P 6935 6335 2024.06.24 01:49:40.080 2024.06.24 01:49:47.015 2024.06.24 00:48:08.143 2024.06.24 00:48:14.478
188 6.0.0.384 2024.06.21 24d99 P P 7966 6318 2024.06.22 01:46:17.689 2024.06.22 01:46:25.655 2024.06.22 00:46:54.439 2024.06.22 00:47:00.757
189 6.0.0.374 2024.06.13 0097d P P 6895 7345 2024.06.21 18:33:13.964 2024.06.21 18:33:20.859 2024.06.21 17:33:33.312 2024.06.21 17:33:40.657
190 6.0.0.373 2024.06.09 363f0 P P 12440 9657 2024.06.12 23:47:18.407 2024.06.12 23:47:30.847 2024.06.12 22:51:22.299 2024.06.12 22:51:31.956
191 6.0.0.372 2024.06.08 9e7f2 P P 6641 6110 2024.06.09 19:13:00.644 2024.06.09 19:13:07.285 2024.06.09 18:20:11.096 2024.06.09 18:20:17.206
192 6.0.0.368 2024.06.03 25f3e P P 5839 6302 2024.06.15 12:08:55.884 2024.06.15 12:09:01.723 2024.06.15 11:10:31.010 2024.06.15 11:10:37.312
193 6.0.0.366 2024.05.28 8e46f P P 5673 6157 2024.06.10 20:07:07.689 2024.06.10 20:07:13.362 2024.06.10 19:13:59.353 2024.06.10 19:14:05.510
194 6.0.0.363 2024.05.28 95442 P P 6656 6126 2024.06.10 16:27:13.345 2024.06.10 16:27:20.001 2024.06.10 15:34:09.008 2024.06.10 15:34:15.134
195 6.0.0.363 2024.05.28 40d0b P P 6641 6141 2024.06.10 18:20:34.203 2024.06.10 18:20:40.844 2024.06.10 17:27:29.734 2024.06.10 17:27:35.875
196 6.0.0.362 2024.05.24 ecc49 P P 12330 9659 2024.05.24 23:47:07.430 2024.05.24 23:47:19.760 2024.05.24 22:51:14.573 2024.05.24 22:51:24.232
197 6.0.0.359 2024.05.23 9cb11 P P 10439 10705 2024.05.23 23:47:52.164 2024.05.23 23:48:02.603 2024.05.23 22:51:41.107 2024.05.23 22:51:51.812
198 6.0.0.358 2024.05.21 995dd P P 10502 12675 2024.05.22 23:47:42.991 2024.05.22 23:47:53.493 2024.05.22 22:51:16.996 2024.05.22 22:51:29.671
199 6.0.0.357 2024.05.18 bf6c4 P P 10423 9674 2024.05.20 23:46:42.652 2024.05.20 23:46:53.075 2024.05.20 22:51:13.879 2024.05.20 22:51:23.553
200 6.0.0.356 2024.05.17 eab06 P P 12315 10660 2024.05.17 23:46:38.073 2024.05.17 23:46:50.388 2024.05.17 22:51:24.829 2024.05.17 22:51:35.489
201 6.0.0.355 2024.05.16 8dd6e P P 12345 9690 2024.05.16 23:46:42.601 2024.05.16 23:46:54.946 2024.05.16 22:51:10.118 2024.05.16 22:51:19.808
202 6.0.0.354 2024.05.15 d3adc P P 12346 12658 2024.05.15 23:46:48.160 2024.05.15 23:47:00.506 2024.05.15 22:51:29.947 2024.05.15 22:51:42.605
203 6.0.0.351 2024.05.14 2e3e0 P P 12376 9673 2024.05.14 23:46:09.994 2024.05.14 23:46:22.370 2024.05.14 22:51:03.532 2024.05.14 22:51:13.205
204 6.0.0.348 2024.05.08 e1ec4 P P 10392 9642 2024.05.13 23:46:41.717 2024.05.13 23:46:52.109 2024.05.13 22:51:24.550 2024.05.13 22:51:34.192
205 6.0.0.346 2024.05.07 9d7de P P 10408 12659 2024.05.07 23:46:49.800 2024.05.07 23:47:00.208 2024.05.07 22:51:29.049 2024.05.07 22:51:41.708
206 6.0.0.345 2024.05.06 154a0 P P 12361 9644 2024.05.06 23:46:23.050 2024.05.06 23:46:35.411 2024.05.06 22:51:07.675 2024.05.06 22:51:17.319
207 6.0.0.344 2024.05.02 b49d8 P P 13332 9659 2024.05.02 23:45:30.049 2024.05.02 23:45:43.381 2024.05.02 22:50:42.553 2024.05.02 22:50:52.212
208 6.0.0.342 2024.04.29 e6247 P P 12347 10629 2024.04.29 23:45:38.404 2024.04.29 23:45:50.751 2024.04.29 22:51:04.515 2024.04.29 22:51:15.144
209 6.0.0.339 2024.04.28 0bcba P P 13363 9660 2024.04.28 23:45:34.543 2024.04.28 23:45:47.906 2024.04.28 22:50:42.439 2024.04.28 22:50:52.099
210 6.0.0.336 2024.04.24 7d2ac P P 12362 9658 2024.04.26 23:45:44.020 2024.04.26 23:45:56.382 2024.04.26 22:50:46.313 2024.04.26 22:50:55.971
211 6.0.0.333 2024.04.23 85d98 P P 12330 9673 2024.04.23 23:46:17.430 2024.04.23 23:46:29.760 2024.04.23 22:51:10.248 2024.04.23 22:51:19.921
212 6.0.0.328 2024.04.22 485d0 P P 10313 9642 2024.04.22 23:45:52.682 2024.04.22 23:46:02.995 2024.04.22 22:50:47.030 2024.04.22 22:50:56.672
213 6.0.0.327 2024.04.19 eeed9 P P 10423 12643 2024.04.21 23:46:10.071 2024.04.21 23:46:20.494 2024.04.21 22:51:09.565 2024.04.21 22:51:22.208
214 6.0.0.325 2024.04.18 f5930 P P 13345 9642 2024.04.18 23:46:05.035 2024.04.18 23:46:18.380 2024.04.18 22:50:48.583 2024.04.18 22:50:58.225
215 6.0.0.324 2024.04.17 84ac9 P P 12392 9688 2024.04.17 23:46:38.002 2024.04.17 23:46:50.394 2024.04.17 22:51:06.132 2024.04.17 22:51:15.820
216 6.0.0.321 2024.04.16 eba22 P P 13330 9673 2024.04.16 23:45:05.815 2024.04.16 23:45:19.145 2024.04.16 22:50:30.736 2024.04.16 22:50:40.409
217 6.0.0.315 2024.04.15 4e80d P P 10439 9673 2024.04.15 23:45:35.521 2024.04.15 23:45:45.960 2024.04.15 22:50:49.616 2024.04.15 22:50:59.289
218 6.0.0.313 2024.04.14 b6eab P P 12127 9642 2024.04.14 23:41:50.942 2024.04.14 23:42:03.069 2024.04.14 22:50:42.261 2024.04.14 22:50:51.903
219 6.0.0.313 2024.04.12 aaf5f P P 12142 9642 2024.04.12 23:41:29.598 2024.04.12 23:41:41.740 2024.04.12 22:50:19.077 2024.04.12 22:50:28.719
220 6.0.0.312 2024.04.12 ff9f0 P P 6595 6110 2024.04.12 10:28:25.192 2024.04.12 10:28:31.787 2024.04.12 09:37:29.124 2024.04.12 09:37:35.234
221 6.0.0.312 2024.04.04 3496c P P 10110 12610 2024.04.09 23:41:21.627 2024.04.09 23:41:31.737 2024.04.09 22:51:12.962 2024.04.09 22:51:25.572
222 6.0.0.310 2024.04.03 e93f6 P P 6595 7094 2024.04.04 09:52:25.884 2024.04.04 09:52:32.479 2024.04.04 09:03:24.475 2024.04.04 09:03:31.569
223 6.0.0.308 2024.04.03 fa979 P P 6594 6095 2024.04.03 17:06:06.542 2024.04.03 17:06:13.136 2024.04.03 16:17:05.105 2024.04.03 16:17:11.200
224 6.0.0.308 2024.04.02 65562 P P 6579 7078 2024.04.03 00:46:05.968 2024.04.03 00:46:12.547 2024.04.02 23:57:58.825 2024.04.02 23:58:05.903
225 6.0.0.305 2024.04.01 8a4f6 P P 6579 7079 2024.04.02 08:58:30.624 2024.04.02 08:58:37.203 2024.04.02 08:10:18.534 2024.04.02 08:10:25.613
226 6.0.0.303 2024.03.31 ecb39 P P 6594 10610 2024.04.01 09:04:25.450 2024.04.01 09:04:32.044 2024.04.01 05:37:24.141 2024.04.01 05:37:34.751
227 6.0.0.301 2024.03.25 69d0a P P 10125 12641 2024.03.28 23:02:46.485 2024.03.28 23:02:56.610 2024.03.28 22:14:47.379 2024.03.28 22:15:00.020
228 6.0.0.299 2024.03.22 b1ba8 P P 12141 9625 2024.03.24 00:33:36.956 2024.03.24 00:33:49.097 2024.03.23 23:44:37.499 2024.03.23 23:44:47.124
229 6.0.0.295 2024.03.22 ef66a P P 6593 6093 2024.03.22 13:24:20.334 2024.03.22 13:24:26.927 2024.03.22 12:35:29.907 2024.03.22 12:35:36.000
230 6.0.0.295 2024.03.21 bf5ab P P 10126 9609 2024.03.21 22:44:23.129 2024.03.21 22:44:33.255 2024.03.21 21:55:26.436 2024.03.21 21:55:36.045
231 6.0.0.294 2024.03.20 bd00d P P 10110 9593 2024.03.21 01:47:11.769 2024.03.21 01:47:21.879 2024.03.21 00:58:20.775 2024.03.21 00:58:30.368
232 6.0.0.293 2024.03.20 fb994 P P 6563 7046 2024.03.20 18:19:43.820 2024.03.20 18:19:50.383 2024.03.20 17:30:40.218 2024.03.20 17:30:47.264

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):