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
AssertionError: assert   
    CREATE MAPPING TRUSTED_AUTH_7046 USING PLUGIN
    CREATE OR ALTER GLOBAL MAPPING TRUSTED_AUTH_7046 USING PLUGIN
  - COMMENT ON VIEW V_MAP_INFO IS 'լոռեմ իպսում դոլոռ սիթ ամեթ, աթ քուիս քուոդ իուս, սանծթուս լաբոռամուս սենթենթիաե վել ութ. եսթ եի թալե ոմիթթամ սծռիպսեռիթ, սեա հինծ ծիբո ծոնգուե իդ. վոլուպթաթում ռեպռեհենդունթ եամ իդ, եի վեռո նոբիս ծում. ին մեի իլլում ֆածեռ ելիգենդի, եի գռաեծե լաոռեեթ ոֆֆիծիիս եսթ. եոս ծոնգուե ծեթեռոս թե, սաեպե սանծթուս մինիմում նո նամ, իդ նամ սաեպե եուռիպիդիս. եսթ մոդո իուսթո եխ';
  + COMMENT ON VIEW PUBLIC.V_MAP_INFO IS 'լոռեմ իպսում դոլոռ սիթ ամեթ, աթ քուիս քուոդ իուս, սանծթուս լաբոռամուս սենթենթիաե վել ութ. եսթ եի թալե ոմիթթամ սծռիպսեռիթ, սեա հինծ ծիբո ծոնգուե իդ. վոլուպթաթում ռեպռեհենդունթ եամ իդ, եի վեռո նոբիս ծում. ին մեի իլլում ֆածեռ ելիգենդի, եի գռաեծե լաոռեեթ ոֆֆիծիիս եսթ. եոս ծոնգուե ծեթեռոս թե, սաեպե սանծթուս մինիմում նո նամ, իդ նամ սաեպե եուռիպիդիս. եսթ մոդո իուսթո եխ';
    COMMENT ON MAPPING TRUSTED_AUTH_7046 IS 'विभाजन स्वतंत्रता वर्ष बाटते चाहे शीघ्र अत्यंत सार्वजनिक ध्येय सार्वजनिक विश्वव्यापि रखते विवरन भारतीय स्थापित बदले मुख्य कैसे ब्रौशर हुएआदि सामूहिक मजबुत पेदा सार्वजनिक प्राधिकरन बीसबतेबोध बहुत होसके खरिदने उदेशीत विकेन्द्रियकरण मेमत दौरान प्रमान असक्षम नीचे कुशलता और्४५० बिन्दुओ विकास';
    COMMENT ON GLOBAL MAPPING TRUSTED_AUTH_7046 IS 'विभाजन स्वतंत्रता वर्ष बाटते चाहे शीघ्र अत्यंत सार्वजनिक ध्येय सार्वजनिक विश्वव्यापि रखते विवरन भारतीय स्थापित बदले मुख्य कैसे ब्रौशर हुएआदि सामूहिक मजबुत पेदा सार्वजनिक प्राधिकरन बीसबतेबोध बहुत होसके खरिदने उदेशीत विकेन्द्रियकरण मेमत दौरान प्रमान असक्षम नीचे कुशलता और्४५० बिन्दुओ विकास';

LOG DETAILS:

2025-07-01 06:36:21.489
2025-07-01 06:36:21.489 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-01 06:36:21.489 tmp_file = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11512/tmp_gh_7046-ddl.sql')
2025-07-01 06:36:21.489 fn_meta_log = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11512/tmp_gh_7046-meta.log')
2025-07-01 06:36:21.489 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-07-01 06:36:21.489
2025-07-01 06:36:21.489     @pytest.mark.version('>=5.0')
2025-07-01 06:36:21.489     def test_1(act: Action, tmp_file: Path, fn_meta_log: Path, capsys):
2025-07-01 06:36:21.489
2025-07-01 06:36:21.489         # Scan line-by-line through databases.conf, find line starting with REQUIRED_ALIAS and extract name of file that
2025-07-01 06:36:21.489         # must be created in the $(dir_sampleDb)/qa/ folder. This name will be used further as target database (tmp_fdb).
2025-07-01 06:36:21.489         # NOTE: we have to SKIP lines which are commented out, i.e. if they starts with '#':
2025-07-01 06:36:21.489         p_required_alias_ptn =  re.compile( '^(?!#)((^|\\s+)' + REQUIRED_ALIAS + ')\\s*=\\s*\\$\\(dir_sampleDb\\)/qa/', re.IGNORECASE )
2025-07-01 06:36:21.489         fname_in_dbconf = None
2025-07-01 06:36:21.489
2025-07-01 06:36:21.489         with open(act.home_dir/'databases.conf', 'r') as f:
2025-07-01 06:36:21.489             for line in f:
2025-07-01 06:36:21.490                 if p_required_alias_ptn.search(line):
2025-07-01 06:36:21.490                     # If databases.conf contains line like this:
2025-07-01 06:36:21.490                     #     tmp_7046_alias = $(dir_sampleDb)/qa/tmp_gh_7046.fdb
2025-07-01 06:36:21.490                     # - then we extract filename: 'tmp_gh_7046.fdb' (see below):
2025-07-01 06:36:21.490                     fname_in_dbconf = Path(line.split('=')[1].strip()).name
2025-07-01 06:36:21.490                     break
2025-07-01 06:36:21.490
2025-07-01 06:36:21.490         # if 'fname_in_dbconf' remains undefined here then propably REQUIRED_ALIAS not equals to specified in the databases.conf!
2025-07-01 06:36:21.490         #
2025-07-01 06:36:21.490         assert fname_in_dbconf
2025-07-01 06:36:21.490
2025-07-01 06:36:21.490         # Full path + filename of database to which we will try to connect:
2025-07-01 06:36:21.490         #
2025-07-01 06:36:21.490         tmp_fdb = Path( act.vars['sample_dir'], 'qa', fname_in_dbconf )
2025-07-01 06:36:21.490
2025-07-01 06:36:21.490         PLUGIN_FOR_MAPPING = 'Srp'
2025-07-01 06:36:21.490         MAPPING_NAME = 'trusted_auth_7046'.upper()
2025-07-01 06:36:21.490
2025-07-01 06:36:21.490         # UnicodeEncodeError: charmap codec cant encode characters in position 601-605: character maps to <undefined>
2025-07-01 06:36:21.491         MAPPING_COMMENT = u'\u0935\u093f\u092d\u093e\u091c\u0928 \u0938\u094d\u0935\u0924\u0902\u0924\u094d\u0930\u0924\u093e \u0935\u0930\u094d\u0937 \u092c\u093e\u091f\u0924\u0947 \u091a\u093e\u0939\u0947 \u0936\u0940\u0918\u094d\u0930 \u0905\u0924\u094d\u092f\u0902\u0924 \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u0927\u094d\u092f\u0947\u092f \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u0935\u093f\u0936\u094d\u0935\u0935\u094d\u092f\u093e\u092a\u093f \u0930\u0916\u0924\u0947 \u0935\u093f\u0935\u0930\u0928 \u092d\u093e\u0930\u0924\u0940\u092f \u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u092c\u0926\u0932\u0947 \u092e\u0941\u0916\u094d\u092f \u0915\u0948\u0938\u0947 \u092c\u094d\u0930\u094c\u0936\u0930 \u0939\u0941\u090f\u0906\u0926\u093f \u0938\u093e\u092e\u0942\u0939\u093f\u0915 \u092e\u091c\u092c\u0941\u0924 \u092a\u0947\u0926\u093e \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u092a\u094d\u0930\u093e\u0927\u093f\u0915\u0930\u0928 \u092c\u0940\u0938\u092c\u0924\u0947\u092c\u094b\u0927 \u092c\u0939\u0941\u0924 \u0939\u094b\u0938\u0915\u0947 \u0916\u0930\u093f\u0926\u0928\u0947 \u0909\u0926\u0947\u0936\u0940\u0924 \u0935\u093f\u0915\u0947\u0928\u094d\u0926\u094d\u0930\u093f\u092f\u0915\u0930\u0923 \u092e\u0947\u092e\u0924 \u0926\u094c\u0930\u093e\u0928 \u092a\u094d\u0930\u092e\u093e\u0928 \u0905\u0938\u0915\u094d\u0937\u092e \u0928\u0940\u091a\u0947 \u0915\u0941\u0936\u0932\u0924\u093e \u0914\u0930\u094d\u096a\u096b\u0966 \u092c\u093f\u0928\u094d\u0926\u0941\u0913 \u0935\u093f\u0915\u093e\u0938'
2025-07-01 06:36:21.491         VIEW_COMMENT = '\u056c\u0578\u057c\u0565\u0574 \u056b\u057a\u057d\u0578\u0582\u0574 \u0564\u0578\u056c\u0578\u057c \u057d\u056b\u0569 \u0561\u0574\u0565\u0569, \u0561\u0569 \u0584\u0578\u0582\u056b\u057d \u0584\u0578\u0582\u0578\u0564 \u056b\u0578\u0582\u057d, \u057d\u0561\u0576\u056e\u0569\u0578\u0582\u057d \u056c\u0561\u0562\u0578\u057c\u0561\u0574\u0578\u0582\u057d \u057d\u0565\u0576\u0569\u0565\u0576\u0569\u056b\u0561\u0565 \u057e\u0565\u056c \u0578\u0582\u0569. \u0565\u057d\u0569 \u0565\u056b \u0569\u0561\u056c\u0565 \u0578\u0574\u056b\u0569\u0569\u0561\u0574 \u057d\u056e\u057c\u056b\u057a\u057d\u0565\u057c\u056b\u0569, \u057d\u0565\u0561 \u0570\u056b\u0576\u056e \u056e\u056b\u0562\u0578 \u056e\u0578\u0576\u0563\u0578\u0582\u0565 \u056b\u0564. \u057e\u0578\u056c\u0578\u0582\u057a\u0569\u0561\u0569\u0578\u0582\u0574 \u057c\u0565\u057a\u057c\u0565\u0570\u0565\u0576\u0564\u0578\u0582\u0576\u0569 \u0565\u0561\u0574 \u056b\u0564, \u0565\u056b \u057e\u0565\u057c\u0578 \u0576\u0578\u0562\u056b\u057d \u056e\u0578\u0582\u0574. \u056b\u0576 \u0574\u0565\u056b \u056b\u056c\u056c\u0578\u0582\u0574 \u0586\u0561\u056e\u0565\u057c \u0565\u056c\u056b\u0563\u0565\u0576\u0564\u056b, \u0565\u056b \u0563\u057c\u0561\u0565\u056e\u0565 \u056c\u0561\u0578\u057c\u0565\u0565\u0569 \u0578\u0586\u0586\u056b\u056e\u056b\u056b\u057d \u0565\u057d\u0569. \u0565\u0578\u057d \u056e\u0578\u0576\u0563\u0578\u0582\u0565 \u056e\u0565\u0569\u0565\u057c\u0578\u057d \u0569\u0565, \u057d\u0561\u0565\u057a\u0565 \u057d\u0561\u0576\u056e\u0569\u0578\u0582\u057d \u0574\u056b\u0576\u056b\u0574\u0578\u0582\u0574 \u0576\u0578 \u0576\u0561\u0574, \u056b\u0564 \u0576\u0561\u0574 \u057d\u0561\u0565\u057a\u0565 \u0565\u0578\u0582\u057c\u056b\u057a\u056b\u0564\u056b\u057d. \u0565\u057d\u0569 \u0574\u0578\u0564\u0578 \u056b\u0578\u0582\u057d\u0569\u0578 \u0565\u056d'
2025-07-01 06:36:21.491
2025-07-01 06:36:21.491         sql_txt = f'''
2025-07-01 06:36:21.491             set bail on;
2025-07-01 06:36:21.491             set names utf8;
2025-07-01 06:36:21.491             set list on;
2025-07-01 06:36:21.491             set blob all;
2025-07-01 06:36:21.491             create database '{REQUIRED_ALIAS}' user {act.db.user};
2025-07-01 06:36:21.491             select
2025-07-01 06:36:21.491                 m.mon$sec_database as mon_sec_db
2025-07-01 06:36:21.491             from mon$database m;
2025-07-01 06:36:21.491             commit;
2025-07-01 06:36:21.491
2025-07-01 06:36:21.491             create or alter global mapping {MAPPING_NAME} using plugin {PLUGIN_FOR_MAPPING} from any user to user;
2025-07-01 06:36:21.491             commit;
2025-07-01 06:36:21.491             comment on mapping {MAPPING_NAME} is '{MAPPING_COMMENT}';
2025-07-01 06:36:21.492             commit;
2025-07-01 06:36:21.492
2025-07-01 06:36:21.492
2025-07-01 06:36:21.492             recreate view v_map_info as
2025-07-01 06:36:21.492             select
2025-07-01 06:36:21.492                 map_name
2025-07-01 06:36:21.492                ,map_type
2025-07-01 06:36:21.492                -- ,map_plugin
2025-07-01 06:36:21.492                ,from_type
2025-07-01 06:36:21.492                ,map_from
2025-07-01 06:36:21.492                ,to_type
2025-07-01 06:36:21.492                ,map_to
2025-07-01 06:36:21.492                ,map_comment_blob_id
2025-07-01 06:36:21.492             from
2025-07-01 06:36:21.492             (
2025-07-01 06:36:21.492                 select
2025-07-01 06:36:21.492                      'LOCAL'           as map_type
2025-07-01 06:36:21.492                     ,rdb$map_name      as map_name
2025-07-01 06:36:21.492                     ,rdb$map_plugin    as map_plugin
2025-07-01 06:36:21.492                     ,rdb$map_from_type as from_type
2025-07-01 06:36:21.492                     ,rdb$map_from      as map_from
2025-07-01 06:36:21.493                     ,rdb$map_to_type   as to_type
2025-07-01 06:36:21.493                     ,rdb$map_to        as map_to
2025-07-01 06:36:21.493                     ,rdb$description   as map_comment_blob_id
2025-07-01 06:36:21.493                 from rdb$auth_mapping
2025-07-01 06:36:21.493                 UNION ALL
2025-07-01 06:36:21.493                 select
2025-07-01 06:36:21.493                      'GLOBAL'
2025-07-01 06:36:21.493                     ,sec$map_name
2025-07-01 06:36:21.493                     ,sec$map_plugin
2025-07-01 06:36:21.493                     ,sec$map_from_type
2025-07-01 06:36:21.493                     ,sec$map_from
2025-07-01 06:36:21.493                     ,sec$map_to_type
2025-07-01 06:36:21.493                     ,sec$map_to
2025-07-01 06:36:21.493                     ,sec$description
2025-07-01 06:36:21.493                 from sec$global_auth_mapping
2025-07-01 06:36:21.493             ) t
2025-07-01 06:36:21.493             where
2025-07-01 06:36:21.493                 t.map_name = upper('{MAPPING_NAME}')
2025-07-01 06:36:21.493                 and upper(t.map_plugin) = upper('{PLUGIN_FOR_MAPPING}')
2025-07-01 06:36:21.494             ;
2025-07-01 06:36:21.494             commit;
2025-07-01 06:36:21.494             comment on view v_map_info is '{VIEW_COMMENT}';
2025-07-01 06:36:21.494             commit;
2025-07-01 06:36:21.494
2025-07-01 06:36:21.494             set count on;
2025-07-01 06:36:21.494             select * from v_map_info;
2025-07-01 06:36:21.494             quit;
2025-07-01 06:36:21.494         '''
2025-07-01 06:36:21.494         tmp_file.write_bytes(sql_txt.encode('utf8'))
2025-07-01 06:36:21.494
2025-07-01 06:36:21.494         expected_stdout_isql = u'''
2025-07-01 06:36:21.494             MON_SEC_DB Self
2025-07-01 06:36:21.494
2025-07-01 06:36:21.494             MAP_NAME TRUSTED_AUTH_7046
2025-07-01 06:36:21.494             MAP_TYPE LOCAL
2025-07-01 06:36:21.494             FROM_TYPE USER
2025-07-01 06:36:21.494             MAP_FROM *
2025-07-01 06:36:21.494             TO_TYPE 0
2025-07-01 06:36:21.494             MAP_TO <null>
2025-07-01 06:36:21.494             MAP_COMMENT_BLOB_ID 2d:1e0
2025-07-01 06:36:21.495             %(MAPPING_COMMENT)s
2025-07-01 06:36:21.495
2025-07-01 06:36:21.495             MAP_NAME TRUSTED_AUTH_7046
2025-07-01 06:36:21.495             MAP_TYPE GLOBAL
2025-07-01 06:36:21.495             FROM_TYPE USER
2025-07-01 06:36:21.495             MAP_FROM *
2025-07-01 06:36:21.495             TO_TYPE 0
2025-07-01 06:36:21.495             MAP_TO <null>
2025-07-01 06:36:21.495             MAP_COMMENT_BLOB_ID 0:2
2025-07-01 06:36:21.495             %(MAPPING_COMMENT)s
2025-07-01 06:36:21.495
2025-07-01 06:36:21.495             Records affected: 2
2025-07-01 06:36:21.495         ''' % locals()
2025-07-01 06:36:21.495
2025-07-01 06:36:21.495         try:
2025-07-01 06:36:21.495             act.expected_stdout = expected_stdout_isql
2025-07-01 06:36:21.495             act.isql(switches = ['-q'], input_file=tmp_file, connect_db=False, credentials = False, combine_output = True, io_enc = 'utf8', charset = 'utf8')
2025-07-01 06:36:21.495
2025-07-01 06:36:21.495             assert act.clean_stdout == act.clean_expected_stdout
2025-07-01 06:36:21.495             act.reset()
2025-07-01 06:36:21.495
2025-07-01 06:36:21.496
2025-07-01 06:36:21.496             with fn_meta_log.open(mode='w') as meta_out:
2025-07-01 06:36:21.496                 # could not find how properly call act.extract_meta with ANOTHER database (different from currently created).
2025-07-01 06:36:21.496                 subprocess.call( [ act.vars['isql'],'-ch', 'utf8', '-x', '-user', act.db.user, '-pas', act.db.password, REQUIRED_ALIAS ],
2025-07-01 06:36:21.496                                  stdout = meta_out,
2025-07-01 06:36:21.496                                  stderr = subprocess.STDOUT
2025-07-01 06:36:21.496                                )
2025-07-01 06:36:21.496
2025-07-01 06:36:21.496             with codecs.open(fn_meta_log, 'r', encoding='utf8') as f:
2025-07-01 06:36:21.496                 for line in f:
2025-07-01 06:36:21.496                     if line.split():
2025-07-01 06:36:21.496                         if ' MAPPING ' in line or 'COMMENT ON ' in line:
2025-07-01 06:36:21.496                             print(u'%(line)s' % locals())
2025-07-01 06:36:21.496                         elif 'SQLSTATE' in line:
2025-07-01 06:36:21.496                             print('UNEXPECTED ERROR: ',line)
2025-07-01 06:36:21.496
2025-07-01 06:36:21.496             act.expected_stdout = u"""
2025-07-01 06:36:21.496                 CREATE MAPPING %(MAPPING_NAME)s USING PLUGIN
2025-07-01 06:36:21.496                 CREATE OR ALTER GLOBAL MAPPING %(MAPPING_NAME)s USING PLUGIN
2025-07-01 06:36:21.497                 COMMENT ON VIEW V_MAP_INFO IS '%(VIEW_COMMENT)s';
2025-07-01 06:36:21.497                 COMMENT ON MAPPING TRUSTED_AUTH_7046 IS '%(MAPPING_COMMENT)s';
2025-07-01 06:36:21.497                 COMMENT ON GLOBAL MAPPING TRUSTED_AUTH_7046 IS '%(MAPPING_COMMENT)s';
2025-07-01 06:36:21.497             """ % locals()
2025-07-01 06:36:21.497
2025-07-01 06:36:21.497
2025-07-01 06:36:21.497         finally:
2025-07-01 06:36:21.497             tmp_fdb.unlink()
2025-07-01 06:36:21.497
2025-07-01 06:36:21.497         act.stdout = capsys.readouterr().out
2025-07-01 06:36:21.497 >       assert act.clean_stdout == act.clean_expected_stdout
2025-07-01 06:36:21.497 E       AssertionError: assert
2025-07-01 06:36:21.497 E           CREATE MAPPING TRUSTED_AUTH_7046 USING PLUGIN
2025-07-01 06:36:21.497 E           CREATE OR ALTER GLOBAL MAPPING TRUSTED_AUTH_7046 USING PLUGIN
2025-07-01 06:36:21.497 E         - COMMENT ON VIEW V_MAP_INFO IS '\u056c\u0578\u057c\u0565\u0574 \u056b\u057a\u057d\u0578\u0582\u0574 \u0564\u0578\u056c\u0578\u057c \u057d\u056b\u0569 \u0561\u0574\u0565\u0569, \u0561\u0569 \u0584\u0578\u0582\u056b\u057d \u0584\u0578\u0582\u0578\u0564 \u056b\u0578\u0582\u057d, \u057d\u0561\u0576\u056e\u0569\u0578\u0582\u057d \u056c\u0561\u0562\u0578\u057c\u0561\u0574\u0578\u0582\u057d \u057d\u0565\u0576\u0569\u0565\u0576\u0569\u056b\u0561\u0565 \u057e\u0565\u056c \u0578\u0582\u0569. \u0565\u057d\u0569 \u0565\u056b \u0569\u0561\u056c\u0565 \u0578\u0574\u056b\u0569\u0569\u0561\u0574 \u057d\u056e\u057c\u056b\u057a\u057d\u0565\u057c\u056b\u0569, \u057d\u0565\u0561 \u0570\u056b\u0576\u056e \u056e\u056b\u0562\u0578 \u056e\u0578\u0576\u0563\u0578\u0582\u0565 \u056b\u0564. \u057e\u0578\u056c\u0578\u0582\u057a\u0569\u0561\u0569\u0578\u0582\u0574 \u057c\u0565\u057a\u057c\u0565\u0570\u0565\u0576\u0564\u0578\u0582\u0576\u0569 \u0565\u0561\u0574 \u056b\u0564, \u0565\u056b \u057e\u0565\u057c\u0578 \u0576\u0578\u0562\u056b\u057d \u056e\u0578\u0582\u0574. \u056b\u0576 \u0574\u0565\u056b \u056b\u056c\u056c\u0578\u0582\u0574 \u0586\u0561\u056e\u0565\u057c \u0565\u056c\u056b\u0563\u0565\u0576\u0564\u056b, \u0565\u056b \u0563\u057c\u0561\u0565\u056e\u0565 \u056c\u0561\u0578\u057c\u0565\u0565\u0569 \u0578\u0586\u0586\u056b\u056e\u056b\u056b\u057d \u0565\u057d\u0569. \u0565\u0578\u057d \u056e\u0578\u0576\u0563\u0578\u0582\u0565 \u056e\u0565\u0569\u0565\u057c\u0578\u057d \u0569\u0565, \u057d\u0561\u0565\u057a\u0565 \u057d\u0561\u0576\u056e\u0569\u0578\u0582\u057d \u0574\u056b\u0576\u056b\u0574\u0578\u0582\u0574 \u0576\u0578 \u0576\u0561\u0574, \u056b\u0564 \u0576\u0561\u0574 \u057d\u0561\u0565\u057a\u0565 \u0565\u0578\u0582\u057c\u056b\u057a\u056b\u0564\u056b\u057d. \u0565\u057d\u0569 \u0574\u0578\u0564\u0578 \u056b\u0578\u0582\u057d\u0569\u0578 \u0565\u056d';
2025-07-01 06:36:21.497 E         + COMMENT ON VIEW PUBLIC.V_MAP_INFO IS '\u056c\u0578\u057c\u0565\u0574 \u056b\u057a\u057d\u0578\u0582\u0574 \u0564\u0578\u056c\u0578\u057c \u057d\u056b\u0569 \u0561\u0574\u0565\u0569, \u0561\u0569 \u0584\u0578\u0582\u056b\u057d \u0584\u0578\u0582\u0578\u0564 \u056b\u0578\u0582\u057d, \u057d\u0561\u0576\u056e\u0569\u0578\u0582\u057d \u056c\u0561\u0562\u0578\u057c\u0561\u0574\u0578\u0582\u057d \u057d\u0565\u0576\u0569\u0565\u0576\u0569\u056b\u0561\u0565 \u057e\u0565\u056c \u0578\u0582\u0569. \u0565\u057d\u0569 \u0565\u056b \u0569\u0561\u056c\u0565 \u0578\u0574\u056b\u0569\u0569\u0561\u0574 \u057d\u056e\u057c\u056b\u057a\u057d\u0565\u057c\u056b\u0569, \u057d\u0565\u0561 \u0570\u056b\u0576\u056e \u056e\u056b\u0562\u0578 \u056e\u0578\u0576\u0563\u0578\u0582\u0565 \u056b\u0564. \u057e\u0578\u056c\u0578\u0582\u057a\u0569\u0561\u0569\u0578\u0582\u0574 \u057c\u0565\u057a\u057c\u0565\u0570\u0565\u0576\u0564\u0578\u0582\u0576\u0569 \u0565\u0561\u0574 \u056b\u0564, \u0565\u056b \u057e\u0565\u057c\u0578 \u0576\u0578\u0562\u056b\u057d \u056e\u0578\u0582\u0574. \u056b\u0576 \u0574\u0565\u056b \u056b\u056c\u056c\u0578\u0582\u0574 \u0586\u0561\u056e\u0565\u057c \u0565\u056c\u056b\u0563\u0565\u0576\u0564\u056b, \u0565\u056b \u0563\u057c\u0561\u0565\u056e\u0565 \u056c\u0561\u0578\u057c\u0565\u0565\u0569 \u0578\u0586\u0586\u056b\u056e\u056b\u056b\u057d \u0565\u057d\u0569. \u0565\u0578\u057d \u056e\u0578\u0576\u0563\u0578\u0582\u0565 \u056e\u0565\u0569\u0565\u057c\u0578\u057d \u0569\u0565, \u057d\u0561\u0565\u057a\u0565 \u057d\u0561\u0576\u056e\u0569\u0578\u0582\u057d \u0574\u056b\u0576\u056b\u0574\u0578\u0582\u0574 \u0576\u0578 \u0576\u0561\u0574, \u056b\u0564 \u0576\u0561\u0574 \u057d\u0561\u0565\u057a\u0565 \u0565\u0578\u0582\u057c\u056b\u057a\u056b\u0564\u056b\u057d. \u0565\u057d\u0569 \u0574\u0578\u0564\u0578 \u056b\u0578\u0582\u057d\u0569\u0578 \u0565\u056d';
2025-07-01 06:36:21.498 E           COMMENT ON MAPPING TRUSTED_AUTH_7046 IS '\u0935\u093f\u092d\u093e\u091c\u0928 \u0938\u094d\u0935\u0924\u0902\u0924\u094d\u0930\u0924\u093e \u0935\u0930\u094d\u0937 \u092c\u093e\u091f\u0924\u0947 \u091a\u093e\u0939\u0947 \u0936\u0940\u0918\u094d\u0930 \u0905\u0924\u094d\u092f\u0902\u0924 \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u0927\u094d\u092f\u0947\u092f \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u0935\u093f\u0936\u094d\u0935\u0935\u094d\u092f\u093e\u092a\u093f \u0930\u0916\u0924\u0947 \u0935\u093f\u0935\u0930\u0928 \u092d\u093e\u0930\u0924\u0940\u092f \u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u092c\u0926\u0932\u0947 \u092e\u0941\u0916\u094d\u092f \u0915\u0948\u0938\u0947 \u092c\u094d\u0930\u094c\u0936\u0930 \u0939\u0941\u090f\u0906\u0926\u093f \u0938\u093e\u092e\u0942\u0939\u093f\u0915 \u092e\u091c\u092c\u0941\u0924 \u092a\u0947\u0926\u093e \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u092a\u094d\u0930\u093e\u0927\u093f\u0915\u0930\u0928 \u092c\u0940\u0938\u092c\u0924\u0947\u092c\u094b\u0927 \u092c\u0939\u0941\u0924 \u0939\u094b\u0938\u0915\u0947 \u0916\u0930\u093f\u0926\u0928\u0947 \u0909\u0926\u0947\u0936\u0940\u0924 \u0935\u093f\u0915\u0947\u0928\u094d\u0926\u094d\u0930\u093f\u092f\u0915\u0930\u0923 \u092e\u0947\u092e\u0924 \u0926\u094c\u0930\u093e\u0928 \u092a\u094d\u0930\u092e\u093e\u0928 \u0905\u0938\u0915\u094d\u0937\u092e \u0928\u0940\u091a\u0947 \u0915\u0941\u0936\u0932\u0924\u093e \u0914\u0930\u094d\u096a\u096b\u0966 \u092c\u093f\u0928\u094d\u0926\u0941\u0913 \u0935\u093f\u0915\u093e\u0938';
2025-07-01 06:36:21.498 E           COMMENT ON GLOBAL MAPPING TRUSTED_AUTH_7046 IS '\u0935\u093f\u092d\u093e\u091c\u0928 \u0938\u094d\u0935\u0924\u0902\u0924\u094d\u0930\u0924\u093e \u0935\u0930\u094d\u0937 \u092c\u093e\u091f\u0924\u0947 \u091a\u093e\u0939\u0947 \u0936\u0940\u0918\u094d\u0930 \u0905\u0924\u094d\u092f\u0902\u0924 \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u0927\u094d\u092f\u0947\u092f \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u0935\u093f\u0936\u094d\u0935\u0935\u094d\u092f\u093e\u092a\u093f \u0930\u0916\u0924\u0947 \u0935\u093f\u0935\u0930\u0928 \u092d\u093e\u0930\u0924\u0940\u092f \u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u092c\u0926\u0932\u0947 \u092e\u0941\u0916\u094d\u092f \u0915\u0948\u0938\u0947 \u092c\u094d\u0930\u094c\u0936\u0930 \u0939\u0941\u090f\u0906\u0926\u093f \u0938\u093e\u092e\u0942\u0939\u093f\u0915 \u092e\u091c\u092c\u0941\u0924 \u092a\u0947\u0926\u093e \u0938\u093e\u0930\u094d\u0935\u091c\u0928\u093f\u0915 \u092a\u094d\u0930\u093e\u0927\u093f\u0915\u0930\u0928 \u092c\u0940\u0938\u092c\u0924\u0947\u092c\u094b\u0927 \u092c\u0939\u0941\u0924 \u0939\u094b\u0938\u0915\u0947 \u0916\u0930\u093f\u0926\u0928\u0947 \u0909\u0926\u0947\u0936\u0940\u0924 \u0935\u093f\u0915\u0947\u0928\u094d\u0926\u094d\u0930\u093f\u092f\u0915\u0930\u0923 \u092e\u0947\u092e\u0924 \u0926\u094c\u0930\u093e\u0928 \u092a\u094d\u0930\u092e\u093e\u0928 \u0905\u0938\u0915\u094d\u0937\u092e \u0928\u0940\u091a\u0947 \u0915\u0941\u0936\u0932\u0924\u093e \u0914\u0930\u094d\u096a\u096b\u0966 \u092c\u093f\u0928\u094d\u0926\u0941\u0913 \u0935\u093f\u0915\u093e\u0938';
2025-07-01 06:36:21.498
2025-07-01 06:36:21.498 tests\bugs\gh_7046_test.py:219: AssertionError
2025-07-01 06:36:21.498 ---------------------------- Captured stdout setup ----------------------------
2025-07-01 06:36:21.498 Creating db: localhost:H:\QA\temp\qa2024.tmp\fbqa\test_11512\test.fdb [page_size=None, sql_dialect=None, charset='UTF8', user=SYSDBA, password=masterkey]
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_file = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11512/tmp_gh_7046-ddl.sql')
fn_meta_log = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11512/tmp_gh_7046-meta.log')
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.version('>=5.0')
    def test_1(act: Action, tmp_file: Path, fn_meta_log: Path, capsys):
    
        # Scan line-by-line through databases.conf, find line starting with REQUIRED_ALIAS and extract name of file that
        # must be created in the $(dir_sampleDb)/qa/ folder. This name will be used further as target database (tmp_fdb).
        # NOTE: we have to SKIP lines which are commented out, i.e. if they starts with '#':
        p_required_alias_ptn =  re.compile( '^(?!#)((^|\\s+)' + REQUIRED_ALIAS + ')\\s*=\\s*\\$\\(dir_sampleDb\\)/qa/', re.IGNORECASE )
        fname_in_dbconf = None
    
        with open(act.home_dir/'databases.conf', 'r') as f:
            for line in f:
                if p_required_alias_ptn.search(line):
                    # If databases.conf contains line like this:
                    #     tmp_7046_alias = $(dir_sampleDb)/qa/tmp_gh_7046.fdb
                    # - then we extract filename: 'tmp_gh_7046.fdb' (see below):
                    fname_in_dbconf = Path(line.split('=')[1].strip()).name
                    break
    
        # if 'fname_in_dbconf' remains undefined here then propably REQUIRED_ALIAS not equals to specified in the databases.conf!
        #
        assert fname_in_dbconf
    
        # Full path + filename of database to which we will try to connect:
        #
        tmp_fdb = Path( act.vars['sample_dir'], 'qa', fname_in_dbconf )
    
        PLUGIN_FOR_MAPPING = 'Srp'
        MAPPING_NAME = 'trusted_auth_7046'.upper()
    
        # UnicodeEncodeError: charmap codec cant encode characters in position 601-605: character maps to <undefined>
        MAPPING_COMMENT = u'विभाजन स्वतंत्रता वर्ष बाटते चाहे शीघ्र अत्यंत सार्वजनिक ध्येय सार्वजनिक विश्वव्यापि रखते विवरन भारतीय स्थापित बदले मुख्य कैसे ब्रौशर हुएआदि सामूहिक मजबुत पेदा सार्वजनिक प्राधिकरन बीसबतेबोध बहुत होसके खरिदने उदेशीत विकेन्द्रियकरण मेमत दौरान प्रमान असक्षम नीचे कुशलता और्४५० बिन्दुओ विकास'
        VIEW_COMMENT = 'լոռեմ իպսում դոլոռ սիթ ամեթ, աթ քուիս քուոդ իուս, սանծթուս լաբոռամուս սենթենթիաե վել ութ. եսթ եի թալե ոմիթթամ սծռիպսեռիթ, սեա հինծ ծիբո ծոնգուե իդ. վոլուպթաթում ռեպռեհենդունթ եամ իդ, եի վեռո նոբիս ծում. ին մեի իլլում ֆածեռ ելիգենդի, եի գռաեծե լաոռեեթ ոֆֆիծիիս եսթ. եոս ծոնգուե ծեթեռոս թե, սաեպե սանծթուս մինիմում նո նամ, իդ նամ սաեպե եուռիպիդիս. եսթ մոդո իուսթո եխ'
    
        sql_txt = f'''
            set bail on;
            set names utf8;
            set list on;
            set blob all;
            create database '{REQUIRED_ALIAS}' user {act.db.user};
            select
                m.mon$sec_database as mon_sec_db
            from mon$database m;
            commit;
    
            create or alter global mapping {MAPPING_NAME} using plugin {PLUGIN_FOR_MAPPING} from any user to user;
            commit;
            comment on mapping {MAPPING_NAME} is '{MAPPING_COMMENT}';
            commit;
    
    
            recreate view v_map_info as
            select
                map_name
               ,map_type
               -- ,map_plugin
               ,from_type
               ,map_from
               ,to_type
               ,map_to
               ,map_comment_blob_id
            from
            (
                select
                     'LOCAL'           as map_type
                    ,rdb$map_name      as map_name
                    ,rdb$map_plugin    as map_plugin
                    ,rdb$map_from_type as from_type
                    ,rdb$map_from      as map_from
                    ,rdb$map_to_type   as to_type
                    ,rdb$map_to        as map_to
                    ,rdb$description   as map_comment_blob_id
                from rdb$auth_mapping
                UNION ALL
                select
                     'GLOBAL'
                    ,sec$map_name
                    ,sec$map_plugin
                    ,sec$map_from_type
                    ,sec$map_from
                    ,sec$map_to_type
                    ,sec$map_to
                    ,sec$description
                from sec$global_auth_mapping
            ) t
            where
                t.map_name = upper('{MAPPING_NAME}')
                and upper(t.map_plugin) = upper('{PLUGIN_FOR_MAPPING}')
            ;
            commit;
            comment on view v_map_info is '{VIEW_COMMENT}';
            commit;
    
            set count on;
            select * from v_map_info;
            quit;
        '''
        tmp_file.write_bytes(sql_txt.encode('utf8'))
    
        expected_stdout_isql = u'''
            MON_SEC_DB Self
    
            MAP_NAME TRUSTED_AUTH_7046
            MAP_TYPE LOCAL
            FROM_TYPE USER
            MAP_FROM *
            TO_TYPE 0
            MAP_TO <null>
            MAP_COMMENT_BLOB_ID 2d:1e0
            %(MAPPING_COMMENT)s
    
            MAP_NAME TRUSTED_AUTH_7046
            MAP_TYPE GLOBAL
            FROM_TYPE USER
            MAP_FROM *
            TO_TYPE 0
            MAP_TO <null>
            MAP_COMMENT_BLOB_ID 0:2
            %(MAPPING_COMMENT)s
    
            Records affected: 2
        ''' % locals()
    
        try:
            act.expected_stdout = expected_stdout_isql
            act.isql(switches = ['-q'], input_file=tmp_file, connect_db=False, credentials = False, combine_output = True, io_enc = 'utf8', charset = 'utf8')
    
            assert act.clean_stdout == act.clean_expected_stdout
            act.reset()
    
    
            with fn_meta_log.open(mode='w') as meta_out:
                # could not find how properly call act.extract_meta with ANOTHER database (different from currently created).
                subprocess.call( [ act.vars['isql'],'-ch', 'utf8', '-x', '-user', act.db.user, '-pas', act.db.password, REQUIRED_ALIAS ],
                                 stdout = meta_out,
                                 stderr = subprocess.STDOUT
                               )
    
            with codecs.open(fn_meta_log, 'r', encoding='utf8') as f:
                for line in f:
                    if line.split():
                        if ' MAPPING ' in line or 'COMMENT ON ' in line:
                            print(u'%(line)s' % locals())
                        elif 'SQLSTATE' in line:
                            print('UNEXPECTED ERROR: ',line)
    
            act.expected_stdout = u"""
                CREATE MAPPING %(MAPPING_NAME)s USING PLUGIN
                CREATE OR ALTER GLOBAL MAPPING %(MAPPING_NAME)s USING PLUGIN
                COMMENT ON VIEW V_MAP_INFO IS '%(VIEW_COMMENT)s';
                COMMENT ON MAPPING TRUSTED_AUTH_7046 IS '%(MAPPING_COMMENT)s';
                COMMENT ON GLOBAL MAPPING TRUSTED_AUTH_7046 IS '%(MAPPING_COMMENT)s';
            """ % locals()
    
    
        finally:
            tmp_fdb.unlink()
    
        act.stdout = capsys.readouterr().out
>       assert act.clean_stdout == act.clean_expected_stdout
E       AssertionError: assert   
E           CREATE MAPPING TRUSTED_AUTH_7046 USING PLUGIN
E           CREATE OR ALTER GLOBAL MAPPING TRUSTED_AUTH_7046 USING PLUGIN
E         - COMMENT ON VIEW V_MAP_INFO IS 'լոռեմ իպսում դոլոռ սիթ ամեթ, աթ քուիս քուոդ իուս, սանծթուս լաբոռամուս սենթենթիաե վել ութ. եսթ եի թալե ոմիթթամ սծռիպսեռիթ, սեա հինծ ծիբո ծոնգուե իդ. վոլուպթաթում ռեպռեհենդունթ եամ իդ, եի վեռո նոբիս ծում. ին մեի իլլում ֆածեռ ելիգենդի, եի գռաեծե լաոռեեթ ոֆֆիծիիս եսթ. եոս ծոնգուե ծեթեռոս թե, սաեպե սանծթուս մինիմում նո նամ, իդ նամ սաեպե եուռիպիդիս. եսթ մոդո իուսթո եխ';
E         + COMMENT ON VIEW PUBLIC.V_MAP_INFO IS 'լոռեմ իպսում դոլոռ սիթ ամեթ, աթ քուիս քուոդ իուս, սանծթուս լաբոռամուս սենթենթիաե վել ութ. եսթ եի թալե ոմիթթամ սծռիպսեռիթ, սեա հինծ ծիբո ծոնգուե իդ. վոլուպթաթում ռեպռեհենդունթ եամ իդ, եի վեռո նոբիս ծում. ին մեի իլլում ֆածեռ ելիգենդի, եի գռաեծե լաոռեեթ ոֆֆիծիիս եսթ. եոս ծոնգուե ծեթեռոս թե, սաեպե սանծթուս մինիմում նո նամ, իդ նամ սաեպե եուռիպիդիս. եսթ մոդո իուսթո եխ';
E           COMMENT ON MAPPING TRUSTED_AUTH_7046 IS 'विभाजन स्वतंत्रता वर्ष बाटते चाहे शीघ्र अत्यंत सार्वजनिक ध्येय सार्वजनिक विश्वव्यापि रखते विवरन भारतीय स्थापित बदले मुख्य कैसे ब्रौशर हुएआदि सामूहिक मजबुत पेदा सार्वजनिक प्राधिकरन बीसबतेबोध बहुत होसके खरिदने उदेशीत विकेन्द्रियकरण मेमत दौरान प्रमान असक्षम नीचे कुशलता और्४५० बिन्दुओ विकास';
E           COMMENT ON GLOBAL MAPPING TRUSTED_AUTH_7046 IS 'विभाजन स्वतंत्रता वर्ष बाटते चाहे शीघ्र अत्यंत सार्वजनिक ध्येय सार्वजनिक विश्वव्यापि रखते विवरन भारतीय स्थापित बदले मुख्य कैसे ब्रौशर हुएआदि सामूहिक मजबुत पेदा सार्वजनिक प्राधिकरन बीसबतेबोध बहुत होसके खरिदने उदेशीत विकेन्द्रियकरण मेमत दौरान प्रमान असक्षम नीचे कुशलता और्४५० बिन्दुओ विकास';

tests\bugs\gh_7046_test.py:219: AssertionError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 6.0.0.892 2025.07.03 af84a F F 772 512 2025.07.03 12:38:24.530 2025.07.03 12:38:25.302 2025.07.03 10:57:54.301 2025.07.03 10:57:54.813
2 6.0.0.892 2025.07.02 10f7d F F 747 528 2025.07.03 03:09:12.132 2025.07.03 03:09:12.879 2025.07.03 01:25:35.605 2025.07.03 01:25:36.133
3 6.0.0.889 2025.07.02 4b4e6 F F 736 512 2025.07.02 11:06:44.509 2025.07.02 11:06:45.245 2025.07.02 09:26:09.303 2025.07.02 09:26:09.815
4 6.0.0.889 2025.07.01 969ac F F 707 519 2025.07.02 03:12:16.707 2025.07.02 03:12:17.414 2025.07.02 01:28:26.612 2025.07.02 01:28:27.131
5 6.0.0.881 2025.06.27 7035d F F 711 523 2025.07.01 03:06:08.713 2025.07.01 03:06:09.424 2025.07.01 01:25:19.047 2025.07.01 01:25:19.570
6 6.0.0.877 2025.06.26 8e38f F F 726 518 2025.06.27 03:07:29.086 2025.06.27 03:07:29.812 2025.06.27 01:26:05.643 2025.06.27 01:26:06.161
7 6.0.0.876 2025.06.25 b1bec F F 737 814 2025.06.26 03:12:46.370 2025.06.26 03:12:47.107 2025.06.26 01:31:39.439 2025.06.26 01:31:40.253
8 6.0.0.863 2025.06.24 c3c20 F F 598 404 2025.06.25 07:56:57.364 2025.06.25 07:56:57.962 2025.06.25 01:25:45.638 2025.06.25 01:25:46.042
9 6.0.0.858 2025.06.24 cbbbf F F 608 391 2025.06.24 17:39:29.057 2025.06.24 17:39:29.665 2025.06.24 15:57:41.878 2025.06.24 15:57:42.269
10 6.0.0.858 2025.06.23 d377c F F 603 400 2025.06.24 08:51:27.966 2025.06.24 08:51:28.569 2025.06.24 07:10:02.674 2025.06.24 07:10:03.074
11 6.0.0.854 2025.06.23 10b58 F F 570 386 2025.06.23 15:32:22.016 2025.06.23 15:32:22.586 2025.06.23 13:49:35.482 2025.06.23 13:49:35.868
12 6.0.0.849 2025.06.20 7b79c F F 588 421 2025.06.21 03:10:43.662 2025.06.21 03:10:44.250 2025.06.21 01:26:11.853 2025.06.21 01:26:12.274
13 6.0.0.848 2025.06.19 c483c F F 577 417 2025.06.20 03:10:20.228 2025.06.20 03:10:20.805 2025.06.20 01:26:00.902 2025.06.20 01:26:01.319
14 6.0.0.845 2025.06.18 20191 F F 573 400 2025.06.19 03:09:55.507 2025.06.19 03:09:56.080 2025.06.19 01:25:45.257 2025.06.19 01:25:45.657
15 6.0.0.843 2025.06.16 995f4 F F 608 419 2025.06.18 03:09:43.558 2025.06.18 03:09:44.166 2025.06.18 01:25:32.433 2025.06.18 01:25:32.852
16 6.0.0.840 2025.06.14 29bca F F 580 451 2025.06.15 03:18:07.783 2025.06.15 03:18:08.363 2025.06.15 01:28:29.889 2025.06.15 01:28:30.340
17 6.0.0.838 2025.06.13 0e28a F F 588 424 2025.06.14 03:15:55.433 2025.06.14 03:15:56.021 2025.06.14 01:26:52.383 2025.06.14 01:26:52.807
18 6.0.0.834 2025.06.11 e889f F F 594 404 2025.06.12 03:13:29.399 2025.06.12 03:13:29.993 2025.06.12 01:27:25.032 2025.06.12 01:27:25.436
19 6.0.0.800 2025.06.10 1f226 P P 638 461 2025.06.11 01:58:10.427 2025.06.11 01:58:11.065 2025.06.11 00:50:48.574 2025.06.11 00:50:49.035
20 6.0.0.799 2025.06.07 be644 P P 633 416 2025.06.10 01:57:45.904 2025.06.10 01:57:46.537 2025.06.10 00:50:24.692 2025.06.10 00:50:25.108
21 6.0.0.797 2025.06.06 303e8 P P 633 432 2025.06.07 01:56:40.428 2025.06.07 01:56:41.061 2025.06.07 00:50:13.328 2025.06.07 00:50:13.760
22 6.0.0.795 2025.05.29 7a71a P P 631 440 2025.06.06 01:56:32.887 2025.06.06 01:56:33.518 2025.06.06 00:50:12.018 2025.06.06 00:50:12.458
23 6.0.0.792 2025.05.28 ee5a8 P P 621 434 2025.05.29 01:55:38.473 2025.05.29 01:55:39.094 2025.05.29 00:50:18.934 2025.05.29 00:50:19.368
24 6.0.0.791 2025.05.27 02db8 P P 678 461 2025.05.28 01:56:03.786 2025.05.28 01:56:04.464 2025.05.28 00:50:01.142 2025.05.28 00:50:01.603
25 6.0.0.789 2025.05.21 64051 P P 641 469 2025.05.25 01:55:51.469 2025.05.25 01:55:52.110 2025.05.25 00:50:17.026 2025.05.25 00:50:17.495
26 6.0.0.787 2025.05.20 230ad P P 662 448 2025.05.21 01:54:46.212 2025.05.21 01:54:46.874 2025.05.21 00:49:33.713 2025.05.21 00:49:34.161
27 6.0.0.783 2025.05.12 37320 P P 627 427 2025.05.19 01:54:35.145 2025.05.19 01:54:35.772 2025.05.19 00:49:46.140 2025.05.19 00:49:46.567
28 6.0.0.779 2025.05.11 136fa P P 638 460 2025.05.12 01:56:48.361 2025.05.12 01:56:48.999 2025.05.12 00:50:29.143 2025.05.12 00:50:29.603
29 6.0.0.778 2025.05.07 d735e P P 631 445 2025.05.11 01:56:12.761 2025.05.11 01:56:13.392 2025.05.11 00:50:42.301 2025.05.11 00:50:42.746
30 6.0.0.776 2025.05.06 007cd P P 643 452 2025.05.07 01:55:28.999 2025.05.07 01:55:29.642 2025.05.07 00:50:17.359 2025.05.07 00:50:17.811
31 6.0.0.770 2025.05.05 82c4a P P 623 472 2025.05.06 01:55:48.248 2025.05.06 01:55:48.871 2025.05.06 00:50:23.783 2025.05.06 00:50:24.255
32 6.0.0.767 2025.05.01 cdd29 P P 649 435 2025.05.02 01:56:23.593 2025.05.02 01:56:24.242 2025.05.02 00:51:17.757 2025.05.02 00:51:18.192
33 6.0.0.762 2025.04.30 5cb15 P P 628 456 2025.05.01 01:54:51.447 2025.05.01 01:54:52.075 2025.05.01 00:50:39.795 2025.05.01 00:50:40.251
34 6.0.0.755 2025.04.29 739c6 P P 619 447 2025.04.30 01:55:04.946 2025.04.30 01:55:05.565 2025.04.30 00:50:23.182 2025.04.30 00:50:23.629
35 6.0.0.753 2025.04.27 29ab3 P P 677 429 2025.04.29 01:55:15.016 2025.04.29 01:55:15.693 2025.04.29 00:50:25.213 2025.04.29 00:50:25.642
36 6.0.0.745 2025.04.21 78ad8 P P 641 453 2025.04.26 01:56:34.133 2025.04.26 01:56:34.774 2025.04.26 00:50:37.421 2025.04.26 00:50:37.874
37 6.0.0.744 2025.04.19 e883a P P 671 454 2025.04.20 01:56:01.125 2025.04.20 01:56:01.796 2025.04.20 00:50:34.983 2025.04.20 00:50:35.437
38 6.0.0.742 2025.04.17 abc3b P P 632 433 2025.04.19 01:55:29.767 2025.04.19 01:55:30.399 2025.04.19 00:50:06.771 2025.04.19 00:50:07.204
39 6.0.0.737 2025.04.16 fe52b P P 628 440 2025.04.17 01:55:58.629 2025.04.17 01:55:59.257 2025.04.17 00:50:24.417 2025.04.17 00:50:24.857
40 6.0.0.736 2025.04.14 3e6be P P 653 514 2025.04.15 01:56:49.854 2025.04.15 01:56:50.507 2025.04.15 00:50:41.629 2025.04.15 00:50:42.143
41 6.0.0.735 2025.04.13 6635c P P 635 434 2025.04.14 01:56:03.962 2025.04.14 01:56:04.597 2025.04.14 00:50:56.964 2025.04.14 00:50:57.398
42 6.0.0.734 2025.04.12 e2fd1 P P 610 422 2025.04.13 01:54:03.874 2025.04.13 01:54:04.484 2025.04.13 00:50:00.591 2025.04.13 00:50:01.013
43 6.0.0.730 2025.04.11 240b8 P P 725 439 2025.04.12 02:00:24.954 2025.04.12 02:00:25.679 2025.04.12 00:51:22.617 2025.04.12 00:51:23.056
44 6.0.0.726 2025.04.10 d79c6 P P 687 450 2025.04.11 02:00:40.828 2025.04.11 02:00:41.515 2025.04.11 00:51:10.714 2025.04.11 00:51:11.164
45 6.0.0.725 2025.04.09 a2b05 P P 638 438 2025.04.10 01:59:59.440 2025.04.10 02:00:00.078 2025.04.10 00:51:04.963 2025.04.10 00:51:05.401
46 6.0.0.722 2025.04.08 a8b86 P P 642 468 2025.04.09 01:56:34.352 2025.04.09 01:56:34.994 2025.04.09 00:50:44.021 2025.04.09 00:50:44.489
47 6.0.0.719 2025.04.06 90fd9 P P 630 451 2025.04.08 01:56:34.151 2025.04.08 01:56:34.781 2025.04.08 00:50:35.754 2025.04.08 00:50:36.205
48 6.0.0.717 2025.04.04 53d70 P P 643 457 2025.04.05 01:56:38.889 2025.04.05 01:56:39.532 2025.04.05 00:50:47.085 2025.04.05 00:50:47.542
49 6.0.0.716 2025.04.03 fc636 P P 653 496 2025.04.04 01:56:37.940 2025.04.04 01:56:38.593 2025.04.04 00:50:50.334 2025.04.04 00:50:50.830
50 6.0.0.715 2025.04.02 907ed P P 637 457 2025.04.03 01:56:34.772 2025.04.03 01:56:35.409 2025.04.03 00:50:38.691 2025.04.03 00:50:39.148
51 6.0.0.710 2025.04.01 40651 P P 636 462 2025.04.02 01:56:50.960 2025.04.02 01:56:51.596 2025.04.02 00:51:24.102 2025.04.02 00:51:24.564
52 6.0.0.708 2025.03.31 cb069 P P 643 457 2025.04.01 01:56:08.293 2025.04.01 01:56:08.936 2025.04.01 00:50:41.342 2025.04.01 00:50:41.799
53 6.0.0.707 2025.03.28 4bd4f P P 705 449 2025.03.31 01:56:31.287 2025.03.31 01:56:31.992 2025.03.31 00:50:38.784 2025.03.31 00:50:39.233
54 6.0.0.702 2025.03.27 86f4d P P 661 533 2025.03.28 02:13:39.887 2025.03.28 02:13:40.548 2025.03.28 00:51:42.430 2025.03.28 00:51:42.963
55 6.0.0.698 2025.03.26 d72a7 P P 741 488 2025.03.27 15:39:42.437 2025.03.27 15:39:43.178 2025.03.27 14:31:59.882 2025.03.27 14:32:00.370
56 6.0.0.693 2025.03.25 8aac2 P P 687 485 2025.03.26 02:00:22.702 2025.03.26 02:00:23.389 2025.03.26 00:52:21.311 2025.03.26 00:52:21.796
57 6.0.0.693 2025.03.24 0b559 P P 675 462 2025.03.25 02:00:58.543 2025.03.25 02:00:59.218 2025.03.25 00:52:25.473 2025.03.25 00:52:25.935
58 6.0.0.687 2025.03.22 730aa P P 683 452 2025.03.24 02:00:44.817 2025.03.24 02:00:45.500 2025.03.24 00:52:46.580 2025.03.24 00:52:47.032
59 6.0.0.686 2025.03.20 71bf6 P P 635 477 2025.03.21 01:57:19.239 2025.03.21 01:57:19.874 2025.03.21 00:51:18.558 2025.03.21 00:51:19.035
60 6.0.0.685 2025.03.19 a8577 P P 647 460 2025.03.20 01:57:34.846 2025.03.20 01:57:35.493 2025.03.20 00:51:49.675 2025.03.20 00:51:50.135
61 6.0.0.680 2025.03.18 90d29 P P 630 465 2025.03.19 01:57:54.849 2025.03.19 01:57:55.479 2025.03.19 00:51:55.756 2025.03.19 00:51:56.221
62 6.0.0.677 2025.03.16 c0a60 P P 660 451 2025.03.18 01:56:05.891 2025.03.18 01:56:06.551 2025.03.18 00:51:36.925 2025.03.18 00:51:37.376
63 6.0.0.676 2025.03.15 11cfb P P 694 448 2025.03.16 01:55:24.119 2025.03.16 01:55:24.813 2025.03.16 00:50:57.553 2025.03.16 00:50:58.001
64 6.0.0.674 2025.03.14 7d82c P P 644 483 2025.03.15 01:53:52.025 2025.03.15 01:53:52.669 2025.03.15 00:51:23.096 2025.03.15 00:51:23.579
65 6.0.0.673 2025.03.13 40f5b P P 657 422 2025.03.14 14:25:12.630 2025.03.14 14:25:13.287 2025.03.14 13:21:14.907 2025.03.14 13:21:15.329
66 6.0.0.671 2025.03.12 a4fff P P 677 481 2025.03.13 01:59:22.603 2025.03.13 01:59:23.280 2025.03.13 00:52:46.909 2025.03.13 00:52:47.390
67 6.0.0.663 2025.03.11 65970 P P 676 489 2025.03.12 01:58:54.213 2025.03.12 01:58:54.889 2025.03.12 00:52:38.359 2025.03.12 00:52:38.848
68 6.0.0.661 2025.03.07 b9869 P P 676 465 2025.03.11 01:59:08.355 2025.03.11 01:59:09.031 2025.03.11 00:52:43.611 2025.03.11 00:52:44.076
69 6.0.0.660 2025.03.04 a6700 P P 691 510 2025.03.06 01:59:18.202 2025.03.06 01:59:18.893 2025.03.06 00:52:29.641 2025.03.06 00:52:30.151
70 6.0.0.658 2025.03.03 f15f8 P P 657 490 2025.03.04 01:56:06.973 2025.03.04 01:56:07.630 2025.03.04 00:51:43.756 2025.03.04 00:51:44.246
71 6.0.0.656 2025.02.27 25fb4 P P 645 489 2025.03.03 01:56:23.013 2025.03.03 01:56:23.658 2025.03.03 00:51:45.332 2025.03.03 00:51:45.821
72 6.0.0.655 2025.02.25 6e3e0 P P 702 481 2025.02.27 01:57:47.010 2025.02.27 01:57:47.712 2025.02.27 00:52:23.422 2025.02.27 00:52:23.903
73 6.0.0.654 2025.02.24 b7141 P P 673 443 2025.02.25 01:54:43.164 2025.02.25 01:54:43.837 2025.02.25 00:51:18.272 2025.02.25 00:51:18.715
74 6.0.0.652 2025.02.22 22662 P P 684 476 2025.02.24 01:54:01.186 2025.02.24 01:54:01.870 2025.02.24 00:50:53.138 2025.02.24 00:50:53.614
75 6.0.0.647 2025.02.21 9fccb P P 629 464 2025.02.22 01:53:12.174 2025.02.22 01:53:12.803 2025.02.22 00:50:31.828 2025.02.22 00:50:32.292
76 6.0.0.640 2025.02.19 9b8ac P P 636 441 2025.02.20 01:54:39.820 2025.02.20 01:54:40.456 2025.02.20 00:51:02.761 2025.02.20 00:51:03.202
77 6.0.0.639 2025.02.18 201a4 P P 679 440 2025.02.19 01:55:20.818 2025.02.19 01:55:21.497 2025.02.19 00:51:43.468 2025.02.19 00:51:43.908
78 6.0.0.637 2025.02.12 6d0f5 P P 640 466 2025.02.14 01:56:07.926 2025.02.14 01:56:08.566 2025.02.14 00:51:50.548 2025.02.14 00:51:51.014
79 6.0.0.636 2025.02.11 0424f P P 655 469 2025.02.12 01:55:36.879 2025.02.12 01:55:37.534 2025.02.12 00:51:29.764 2025.02.12 00:51:30.233
80 6.0.0.635 2025.02.10 f640f P P 634 488 2025.02.11 01:55:04.606 2025.02.11 01:55:05.240 2025.02.11 00:51:19.221 2025.02.11 00:51:19.709
81 6.0.0.629 2025.02.07 194f9 P P 647 489 2025.02.08 01:55:00.698 2025.02.08 01:55:01.345 2025.02.08 00:51:15.668 2025.02.08 00:51:16.157
82 6.0.0.628 2025.02.06 859d5 P P 649 449 2025.02.07 10:58:39.664 2025.02.07 10:58:40.313 2025.02.07 09:48:33.595 2025.02.07 09:48:34.044
83 6.0.0.621 2025.02.05 34fe7 P P 632 446 2025.02.07 02:08:41.185 2025.02.07 02:08:41.817 2025.02.07 00:58:15.356 2025.02.07 00:58:15.802
84 6.0.0.609 2025.02.04 76d57 P P 643 452 2025.02.05 02:08:30.656 2025.02.05 02:08:31.299 2025.02.05 00:58:22.888 2025.02.05 00:58:23.340
85 6.0.0.607 2025.02.03 1985b P P 646 458 2025.02.04 02:08:21.892 2025.02.04 02:08:22.538 2025.02.04 00:57:58.730 2025.02.04 00:57:59.188
86 6.0.0.601 2025.02.01 6af07 P P 661 476 2025.02.02 01:54:49.360 2025.02.02 01:54:50.021 2025.02.02 00:51:21.196 2025.02.02 00:51:21.672
87 6.0.0.600 2025.01.27 188de P P 659 447 2025.01.28 01:54:51.212 2025.01.28 01:54:51.871 2025.01.28 00:51:02.745 2025.01.28 00:51:03.192
88 6.0.0.599 2025.01.25 ba588 P P 693 452 2025.01.26 01:54:32.692 2025.01.26 01:54:33.385 2025.01.26 00:51:02.405 2025.01.26 00:51:02.857
89 6.0.0.598 2025.01.23 ddbc3 P P 672 456 2025.01.25 11:43:07.632 2025.01.25 11:43:08.304 2025.01.25 10:39:04.458 2025.01.25 10:39:04.914
90 6.0.0.595 2025.01.22 e62f3 P P 687 487 2025.01.23 01:55:02.874 2025.01.23 01:55:03.561 2025.01.23 00:51:05.059 2025.01.23 00:51:05.546
91 6.0.0.594 2025.01.21 47fb6 P P 647 471 2025.01.22 01:54:30.970 2025.01.22 01:54:31.617 2025.01.22 00:51:05.988 2025.01.22 00:51:06.459
92 6.0.0.590 2025.01.20 3d7c0 P P 637 444 2025.01.21 01:54:52.043 2025.01.21 01:54:52.680 2025.01.21 00:51:04.173 2025.01.21 00:51:04.617
93 6.0.0.588 2025.01.19 b1c4e P P 633 458 2025.01.20 01:54:13.503 2025.01.20 01:54:14.136 2025.01.20 00:50:58.573 2025.01.20 00:50:59.031
94 6.0.0.587 2025.01.18 63e6e P P 639 449 2025.01.19 01:53:55.465 2025.01.19 01:53:56.104 2025.01.19 00:50:55.036 2025.01.19 00:50:55.485
95 6.0.0.585 2025.01.16 2d6bb P P 594 438 2025.01.18 01:52:58.032 2025.01.18 01:52:58.626 2025.01.18 00:51:31.927 2025.01.18 00:51:32.365
96 6.0.0.584 2025.01.15 a0aa2 P P 692 490 2025.01.16 01:56:15.219 2025.01.16 01:56:15.911 2025.01.16 00:52:03.295 2025.01.16 00:52:03.785
97 6.0.0.581 2025.01.15 69690 P P 637 453 2025.01.15 18:06:08.840 2025.01.15 18:06:09.477 2025.01.15 17:00:51.486 2025.01.15 17:00:51.939
98 6.0.0.581 2025.01.14 21e9e P P 647 454 2025.01.15 01:55:35.578 2025.01.15 01:55:36.225 2025.01.15 00:51:37.412 2025.01.15 00:51:37.866
99 6.0.0.577 2025.01.14 91dce P P 672 441 2025.01.14 17:16:39.574 2025.01.14 17:16:40.246 2025.01.14 16:12:50.058 2025.01.14 16:12:50.499
100 6.0.0.577 2025.01.13 7e293 P P 649 455 2025.01.14 11:39:25.182 2025.01.14 11:39:25.831 2025.01.14 10:36:03.947 2025.01.14 10:36:04.402
101 6.0.0.576 2025.01.12 05898 P P 661 482 2025.01.13 01:56:46.182 2025.01.13 01:56:46.843 2025.01.13 00:52:05.698 2025.01.13 00:52:06.180
102 6.0.0.573 2025.01.10 c20f3 P P 656 491 2025.01.11 01:56:42.958 2025.01.11 01:56:43.614 2025.01.11 00:52:11.367 2025.01.11 00:52:11.858
103 6.0.0.571 2024.12.31 81bba P P 664 454 2025.01.01 01:55:28.133 2025.01.01 01:55:28.797 2025.01.01 00:51:39.836 2025.01.01 00:51:40.290
104 6.0.0.570 2024.12.30 c3c8d P P 643 470 2024.12.31 01:55:40.654 2024.12.31 01:55:41.297 2024.12.31 00:52:10.096 2024.12.31 00:52:10.566
105 6.0.0.565 2024.12.28 5fc59 P P 648 453 2024.12.29 17:50:54.965 2024.12.29 17:50:55.613 2024.12.29 16:47:07.737 2024.12.29 16:47:08.190
106 6.0.0.564 2024.12.26 12514 P P 667 451 2024.12.27 01:55:06.340 2024.12.27 01:55:07.007 2024.12.27 00:51:32.506 2024.12.27 00:51:32.957
107 6.0.0.560 2024.12.25 fa83e P P 640 505 2024.12.26 01:55:10.873 2024.12.26 01:55:11.513 2024.12.26 00:51:36.119 2024.12.26 00:51:36.624
108 6.0.0.559 2024.12.23 cc800 P P 645 456 2024.12.25 01:55:07.070 2024.12.25 01:55:07.715 2024.12.25 00:51:30.327 2024.12.25 00:51:30.783
109 6.0.0.556 2024.12.22 a0404 P P 646 455 2024.12.23 01:55:01.132 2024.12.23 01:55:01.778 2024.12.23 00:51:20.229 2024.12.23 00:51:20.684
110 6.0.0.555 2024.12.19 6990a P P 637 454 2024.12.21 12:49:50.565 2024.12.21 12:49:51.202 2024.12.21 11:45:35.964 2024.12.21 11:45:36.418
111 6.0.0.553 2024.12.17 d1f8a P P 665 450 2024.12.18 01:54:16.524 2024.12.18 01:54:17.189 2024.12.18 00:51:13.508 2024.12.18 00:51:13.958
112 6.0.0.552 2024.12.11 85e25 P P 669 449 2024.12.16 01:53:42.254 2024.12.16 01:53:42.923 2024.12.16 00:51:03.011 2024.12.16 00:51:03.460
113 6.0.0.550 2024.12.10 b37ac P P 703 453 2024.12.11 01:57:09.499 2024.12.11 01:57:10.202 2024.12.11 00:51:35.401 2024.12.11 00:51:35.854
114 6.0.0.548 2024.12.08 2cc77 P P 976 466 2024.12.09 01:59:52.955 2024.12.09 01:59:53.931 2024.12.09 00:54:57.394 2024.12.09 00:54:57.860
115 6.0.0.544 2024.12.05 96943 P P 642 452 2024.12.06 01:54:31.659 2024.12.06 01:54:32.301 2024.12.06 00:51:51.282 2024.12.06 00:51:51.734
116 6.0.0.543 2024.12.03 30b77 P P 667 459 2024.12.04 01:54:26.615 2024.12.04 01:54:27.282 2024.12.04 00:52:28.436 2024.12.04 00:52:28.895
117 6.0.0.540 2024.12.02 4a1f4 P P 652 457 2024.12.03 01:53:54.909 2024.12.03 01:53:55.561 2024.12.03 00:51:46.192 2024.12.03 00:51:46.649
118 6.0.0.539 2024.11.28 1f283 P P 656 477 2024.11.30 01:53:14.007 2024.11.30 01:53:14.663 2024.11.30 00:51:34.007 2024.11.30 00:51:34.484
119 6.0.0.535 2024.11.27 6551a P P 651 459 2024.11.28 01:51:56.872 2024.11.28 01:51:57.523 2024.11.28 00:50:56.472 2024.11.28 00:50:56.931
120 6.0.0.535 2024.11.26 77b95 P P 653 469 2024.11.27 01:52:18.360 2024.11.27 01:52:19.013 2024.11.27 00:51:12.778 2024.11.27 00:51:13.247
121 6.0.0.534 2024.11.25 e9584 P P 642 447 2024.11.26 01:52:27.540 2024.11.26 01:52:28.182 2024.11.26 00:50:59.389 2024.11.26 00:50:59.836
122 6.0.0.533 2024.11.17 933ac P P 726 488 2024.11.22 01:53:08.567 2024.11.22 01:53:09.293 2024.11.22 00:51:24.360 2024.11.22 00:51:24.848
123 6.0.0.532 2024.11.17 1a471 P P 643 448 2024.11.17 14:26:58.435 2024.11.17 14:26:59.078 2024.11.17 13:25:55.592 2024.11.17 13:25:56.040
124 6.0.0.532 2024.11.16 9e263 P P 640 448 2024.11.17 01:51:37.552 2024.11.17 01:51:38.192 2024.11.17 00:50:44.885 2024.11.17 00:50:45.333
125 6.0.0.530 2024.11.15 49804 P P 625 407 2024.11.16 01:50:06.508 2024.11.16 01:50:07.133 2024.11.16 00:50:34.954 2024.11.16 00:50:35.361
126 6.0.0.528 2024.11.14 9625b P P 652 486 2024.11.15 01:54:25.170 2024.11.15 01:54:25.822 2024.11.15 00:52:10.062 2024.11.15 00:52:10.548
127 6.0.0.526 2024.11.12 65b80 P P 647 484 2024.11.14 01:53:33.905 2024.11.14 01:53:34.552 2024.11.14 00:51:31.511 2024.11.14 00:51:31.995
128 6.0.0.523 2024.11.08 8ca23 P P 671 454 2024.11.11 01:51:49.354 2024.11.11 01:51:50.025 2024.11.11 00:50:51.487 2024.11.11 00:50:51.941
129 6.0.0.520 2024.11.08 52657 P P 626 422 2024.11.08 18:25:50.108 2024.11.08 18:25:50.734 2024.11.08 17:25:53.501 2024.11.08 17:25:53.923
130 6.0.0.520 2024.11.07 4eefa P P 648 463 2024.11.08 01:50:57.475 2024.11.08 01:50:58.123 2024.11.08 00:50:59.963 2024.11.08 00:51:00.426
131 6.0.0.516 2024.11.04 b0c36 P P 644 443 2024.11.05 01:52:05.307 2024.11.05 01:52:05.951 2024.11.05 00:50:53.857 2024.11.05 00:50:54.300
132 6.0.0.515 2024.10.30 d53f3 P P 660 460 2024.11.04 01:51:39.119 2024.11.04 01:51:39.779 2024.11.04 00:50:59.500 2024.11.04 00:50:59.960
133 6.0.0.512 2024.10.29 833ef P P 639 439 2024.10.30 01:54:02.940 2024.10.30 01:54:03.579 2024.10.30 00:51:55.723 2024.10.30 00:51:56.162
134 6.0.0.511 2024.10.26 c4bc9 P P 648 519 2024.10.29 01:53:48.280 2024.10.29 01:53:48.928 2024.10.29 00:51:35.480 2024.10.29 00:51:35.999
135 6.0.0.508 2024.10.24 a8f5b P P 657 487 2024.10.26 10:00:49.694 2024.10.26 10:00:50.351 2024.10.26 08:58:02.509 2024.10.26 08:58:02.996
136 6.0.0.502 2024.10.22 6bfd7 P P 687 489 2024.10.23 01:53:31.383 2024.10.23 01:53:32.070 2024.10.23 00:51:26.532 2024.10.23 00:51:27.021
137 6.0.0.500 2024.10.21 be565 P P 648 474 2024.10.22 01:53:55.076 2024.10.22 01:53:55.724 2024.10.22 00:51:41.689 2024.10.22 00:51:42.163
138 6.0.0.499 2024.10.19 6214b P P 665 461 2024.10.20 01:52:57.353 2024.10.20 01:52:58.018 2024.10.20 00:51:28.791 2024.10.20 00:51:29.252
139 6.0.0.498 2024.10.18 591a7 P P 646 468 2024.10.19 01:52:19.796 2024.10.19 01:52:20.442 2024.10.19 00:50:56.359 2024.10.19 00:50:56.827
140 6.0.0.494 2024.10.17 042ce P P 671 450 2024.10.18 01:52:58.784 2024.10.18 01:52:59.455 2024.10.18 00:51:06.901 2024.10.18 00:51:07.351
141 6.0.0.491 2024.10.14 dc5fb P P 648 456 2024.10.15 01:52:38.428 2024.10.15 01:52:39.076 2024.10.15 00:50:53.869 2024.10.15 00:50:54.325
142 6.0.0.489 2024.10.11 2ba59 P P 685 459 2024.10.12 01:52:06.268 2024.10.12 01:52:06.953 2024.10.12 00:50:41.909 2024.10.12 00:50:42.368
143 6.0.0.488 2024.10.09 1c93e P P 668 445 2024.10.10 01:51:57.757 2024.10.10 01:51:58.425 2024.10.10 00:51:06.077 2024.10.10 00:51:06.522
144 6.0.0.487 2024.10.06 065a3 P P 640 454 2024.10.07 01:53:19.791 2024.10.07 01:53:20.431 2024.10.07 00:51:40.395 2024.10.07 00:51:40.849
145 6.0.0.485 2024.10.05 9f5f7 P P 644 673 2024.10.06 01:52:56.717 2024.10.06 01:52:57.361 2024.10.06 00:51:19.403 2024.10.06 00:51:20.076
146 6.0.0.485 2024.10.04 e95c1 P P 680 457 2024.10.05 01:52:28.761 2024.10.05 01:52:29.441 2024.10.05 00:51:01.441 2024.10.05 00:51:01.898
147 6.0.0.483 2024.10.02 5e5ae P P 733 454 2024.10.03 01:53:59.043 2024.10.03 01:53:59.776 2024.10.03 00:51:45.270 2024.10.03 00:51:45.724
148 6.0.0.478 2024.09.30 b5010 P P 641 455 2024.10.01 01:53:00.761 2024.10.01 01:53:01.402 2024.10.01 00:51:10.443 2024.10.01 00:51:10.898
149 6.0.0.474 2024.09.26 e4efb P P 650 459 2024.09.30 01:52:35.377 2024.09.30 01:52:36.027 2024.09.30 00:51:09.551 2024.09.30 00:51:10.010
150 6.0.0.471 2024.09.25 dab71 P P 647 458 2024.09.26 01:52:42.799 2024.09.26 01:52:43.446 2024.09.26 00:51:24.859 2024.09.26 00:51:25.317
151 6.0.0.471 2024.09.24 01b51 P P 652 478 2024.09.25 01:53:33.163 2024.09.25 01:53:33.815 2024.09.25 00:51:47.299 2024.09.25 00:51:47.777
152 6.0.0.470 2024.09.23 77cc0 P P 638 447 2024.09.24 01:52:42.991 2024.09.24 01:52:43.629 2024.09.24 00:51:32.718 2024.09.24 00:51:33.165
153 6.0.0.467 2024.09.21 ea0b8 P P 669 453 2024.09.23 01:53:55.594 2024.09.23 01:53:56.263 2024.09.23 00:52:15.351 2024.09.23 00:52:15.804
154 6.0.0.466 2024.09.20 32dc6 P P 665 450 2024.09.21 01:52:13.439 2024.09.21 01:52:14.104 2024.09.21 00:51:11.105 2024.09.21 00:51:11.555
155 6.0.0.461 2024.09.17 2c895 P P 637 450 2024.09.18 01:51:34.219 2024.09.18 01:51:34.856 2024.09.18 00:50:21.116 2024.09.18 00:50:21.566
156 6.0.0.460 2024.09.11 3c253 P P 649 464 2024.09.17 01:51:34.763 2024.09.17 01:51:35.412 2024.09.17 00:50:46.681 2024.09.17 00:50:47.145
157 6.0.0.457 2024.09.09 fdc6f P P 651 497 2024.09.10 01:52:23.312 2024.09.10 01:52:23.963 2024.09.10 00:50:58.824 2024.09.10 00:50:59.321
158 6.0.0.455 2024.09.07 500d8 P P 662 460 2024.09.08 01:52:45.214 2024.09.08 01:52:45.876 2024.09.08 00:51:32.407 2024.09.08 00:51:32.867
159 6.0.0.454 2024.09.05 4d70f P P 646 453 2024.09.06 01:52:55.930 2024.09.06 01:52:56.576 2024.09.06 00:51:08.181 2024.09.06 00:51:08.634
160 6.0.0.452 2024.09.04 9ff9c P P 642 457 2024.09.05 01:52:28.360 2024.09.05 01:52:29.002 2024.09.05 00:51:13.577 2024.09.05 00:51:14.034
161 6.0.0.450 2024.09.02 27124 P P 640 461 2024.09.04 01:52:56.410 2024.09.04 01:52:57.050 2024.09.04 00:51:13.876 2024.09.04 00:51:14.337
162 6.0.0.447 2024.09.01 901b4 P P 721 471 2024.09.02 01:43:05.915 2024.09.02 01:43:06.636 2024.09.02 00:41:17.081 2024.09.02 00:41:17.552
163 6.0.0.446 2024.08.30 fe1b2 P P 642 455 2024.09.01 01:41:40.795 2024.09.01 01:41:41.437 2024.09.01 00:41:12.893 2024.09.01 00:41:13.348
164 6.0.0.444 2024.08.28 785d4 P P 653 470 2024.08.30 01:42:02.114 2024.08.30 01:42:02.767 2024.08.30 00:41:32.375 2024.08.30 00:41:32.845
165 6.0.0.442 2024.08.21 4a68f P P 656 461 2024.08.28 01:41:45.765 2024.08.28 01:41:46.421 2024.08.28 00:41:16.257 2024.08.28 00:41:16.718
166 6.0.0.441 2024.08.20 75042 P P 764 456 2024.08.21 01:40:29.528 2024.08.21 01:40:30.292 2024.08.21 00:40:42.267 2024.08.21 00:40:42.723
167 6.0.0.438 2024.08.16 088b5 P P 822 557 2024.08.19 01:43:01.947 2024.08.19 01:43:02.769 2024.08.19 00:41:26.402 2024.08.19 00:41:26.959
168 6.0.0.437 2024.08.14 3c88b P P 857 587 2024.08.16 01:46:06.230 2024.08.16 01:46:07.087 2024.08.16 00:42:18.696 2024.08.16 00:42:19.283
169 6.0.0.436 2024.08.13 b8e75 P P 894 592 2024.08.14 01:45:02.859 2024.08.14 01:45:03.753 2024.08.14 00:41:55.564 2024.08.14 00:41:56.156
170 6.0.0.432 2024.08.11 e82ac P P 847 572 2024.08.13 01:43:38.740 2024.08.13 01:43:39.587 2024.08.13 00:41:29.158 2024.08.13 00:41:29.730
171 6.0.0.431 2024.08.11 16bb1 P P 850 553 2024.08.11 17:48:52.778 2024.08.11 17:48:53.628 2024.08.11 16:46:38.124 2024.08.11 16:46:38.677
172 6.0.0.431 2024.08.09 de5a7 P P 829 553 2024.08.10 17:22:31.449 2024.08.10 17:22:32.278 2024.08.10 16:20:49.320 2024.08.10 16:20:49.873
173 6.0.0.428 2024.08.08 9191b P P 852 553 2024.08.10 01:43:01.946 2024.08.10 01:43:02.798 2024.08.10 00:41:30.308 2024.08.10 00:41:30.861
174 6.0.0.423 2024.08.07 33b41 P P 846 548 2024.08.08 08:42:19.498 2024.08.08 08:42:20.344 2024.08.08 07:40:47.342 2024.08.08 07:40:47.890
175 6.0.0.421 2024.08.06 ed60d P P 741 461 2024.08.07 01:39:01.346 2024.08.07 01:39:02.087 2024.08.07 00:40:14.635 2024.08.07 00:40:15.096
176 6.0.0.419 2024.08.05 3505a P P 795 486 2024.08.06 01:37:14.747 2024.08.06 01:37:15.542 2024.08.06 00:39:57.272 2024.08.06 00:39:57.758
177 6.0.0.409 2024.08.02 ec18f P P 703 459 2024.08.05 01:36:30.598 2024.08.05 01:36:31.301 2024.08.05 00:39:24.477 2024.08.05 00:39:24.936
178 6.0.0.406 2024.08.01 b20be P P 702 445 2024.08.02 01:35:02.095 2024.08.02 01:35:02.797 2024.08.02 00:38:45.379 2024.08.02 00:38:45.824
179 6.0.0.405 2024.07.31 a62ac P P 752 564 2024.08.01 01:42:56.381 2024.08.01 01:42:57.133 2024.08.01 00:43:17.239 2024.08.01 00:43:17.803
180 6.0.0.403 2024.07.29 30f03 P P 743 449 2024.07.30 01:38:11.206 2024.07.30 01:38:11.949 2024.07.30 00:40:00.142 2024.07.30 00:40:00.591
181 6.0.0.401 2024.07.26 24e41 P P 690 435 2024.07.27 01:37:29.555 2024.07.27 01:37:30.245 2024.07.27 00:39:36.333 2024.07.27 00:39:36.768
182 6.0.0.400 2024.07.24 5bb78 P P 682 457 2024.07.25 01:38:14.949 2024.07.25 01:38:15.631 2024.07.25 00:39:44.101 2024.07.25 00:39:44.558
183 6.0.0.398 2024.07.23 85b18 P E 723 2224 2024.07.24 02:01:24.867 2024.07.24 02:01:25.590 2024.07.24 00:38:41.234 2024.07.24 00:38:43.458
184 6.0.0.397 2024.07.22 c734c P P 702 448 2024.07.23 01:38:02.012 2024.07.23 01:38:02.714 2024.07.23 00:39:50.494 2024.07.23 00:39:50.942
185 6.0.0.396 2024.07.13 cf952 P P 747 440 2024.07.22 01:38:14.579 2024.07.22 01:38:15.326 2024.07.22 00:39:56.998 2024.07.22 00:39:57.438
186 6.0.0.395 2024.07.10 845f4 P P 656 406 2024.07.13 01:36:21.701 2024.07.13 01:36:22.357 2024.07.13 00:39:05.732 2024.07.13 00:39:06.138
187 6.0.0.392 2024.07.09 ea301 P P 730 446 2024.07.10 01:44:11.723 2024.07.10 01:44:12.453 2024.07.10 00:40:17.930 2024.07.10 00:40:18.376
188 6.0.0.391 2024.07.08 7d50c P P 689 455 2024.07.09 01:40:42.141 2024.07.09 01:40:42.830 2024.07.09 00:40:23.225 2024.07.09 00:40:23.680
189 6.0.0.389 2024.07.05 cc71c P P 694 448 2024.07.06 01:41:12.292 2024.07.06 01:41:12.986 2024.07.06 00:40:45.109 2024.07.06 00:40:45.557
190 6.0.0.388 2024.06.30 e5700 P P 714 462 2024.07.01 01:41:17.828 2024.07.01 01:41:18.542 2024.07.01 00:40:37.454 2024.07.01 00:40:37.916
191 6.0.0.387 2024.06.27 7c28a P P 925 438 2024.06.28 01:40:58.149 2024.06.28 01:40:59.074 2024.06.28 00:40:55.831 2024.06.28 00:40:56.269
192 6.0.0.386 2024.06.23 7c57f P P 685 446 2024.06.24 01:38:09.566 2024.06.24 01:38:10.251 2024.06.24 00:40:07.143 2024.06.24 00:40:07.589
193 6.0.0.384 2024.06.21 24d99 P P 685 481 2024.06.22 01:35:10.786 2024.06.22 01:35:11.471 2024.06.22 00:39:13.162 2024.06.22 00:39:13.643
194 6.0.0.374 2024.06.13 0097d P P 691 461 2024.06.21 18:22:04.386 2024.06.21 18:22:05.077 2024.06.21 17:25:39.016 2024.06.21 17:25:39.477
195 6.0.0.373 2024.06.09 363f0 P P 750 469 2024.06.12 23:37:25.934 2024.06.12 23:37:26.684 2024.06.12 22:45:02.067 2024.06.12 22:45:02.536
196 6.0.0.372 2024.06.08 9e7f2 P P 547 359 2024.06.09 19:03:49.834 2024.06.09 19:03:50.381 2024.06.09 18:13:52.867 2024.06.09 18:13:53.226
197 6.0.0.368 2024.06.03 25f3e P P 704 438 2024.06.15 11:58:10.728 2024.06.15 11:58:11.432 2024.06.15 11:03:15.954 2024.06.15 11:03:16.392
198 6.0.0.366 2024.05.28 8e46f P P 531 375 2024.06.10 19:57:51.176 2024.06.10 19:57:51.707 2024.06.10 19:07:42.961 2024.06.10 19:07:43.336
199 6.0.0.363 2024.05.28 95442 P P 531 359 2024.06.10 16:18:00.951 2024.06.10 16:18:01.482 2024.06.10 15:27:52.827 2024.06.10 15:27:53.186
200 6.0.0.363 2024.05.28 40d0b P P 546 360 2024.06.10 18:11:19.955 2024.06.10 18:11:20.501 2024.06.10 17:21:14.176 2024.06.10 17:21:14.536
201 6.0.0.362 2024.05.24 ecc49 P P 750 485 2024.05.24 23:37:21.223 2024.05.24 23:37:21.973 2024.05.24 22:45:03.231 2024.05.24 22:45:03.716
202 6.0.0.359 2024.05.23 9cb11 P P 750 453 2024.05.23 23:37:59.880 2024.05.23 23:38:00.630 2024.05.23 22:45:28.237 2024.05.23 22:45:28.690
203 6.0.0.358 2024.05.21 995dd P P 1750 469 2024.05.22 23:37:47.470 2024.05.22 23:37:49.220 2024.05.22 22:45:03.937 2024.05.22 22:45:04.406
204 6.0.0.357 2024.05.18 bf6c4 P P 750 468 2024.05.20 23:37:01.651 2024.05.20 23:37:02.401 2024.05.20 22:45:02.401 2024.05.20 22:45:02.869
205 6.0.0.356 2024.05.17 eab06 P P 750 469 2024.05.17 23:36:57.369 2024.05.17 23:36:58.119 2024.05.17 22:45:12.944 2024.05.17 22:45:13.413
206 6.0.0.355 2024.05.16 8dd6e P P 766 484 2024.05.16 23:36:57.942 2024.05.16 23:36:58.708 2024.05.16 22:44:59.750 2024.05.16 22:45:00.234
207 6.0.0.354 2024.05.15 d3adc P P 750 469 2024.05.15 23:37:06.703 2024.05.15 23:37:07.453 2024.05.15 22:45:12.777 2024.05.15 22:45:13.246
208 6.0.0.351 2024.05.14 2e3e0 P P 766 469 2024.05.14 23:36:32.884 2024.05.14 23:36:33.650 2024.05.14 22:44:51.616 2024.05.14 22:44:52.085
209 6.0.0.348 2024.05.08 e1ec4 P P 750 469 2024.05.13 23:37:01.824 2024.05.13 23:37:02.574 2024.05.13 22:45:13.024 2024.05.13 22:45:13.493
210 6.0.0.346 2024.05.07 9d7de P P 750 485 2024.05.07 23:37:10.952 2024.05.07 23:37:11.702 2024.05.07 22:45:12.692 2024.05.07 22:45:13.177
211 6.0.0.345 2024.05.06 154a0 P P 750 484 2024.05.06 23:36:47.051 2024.05.06 23:36:47.801 2024.05.06 22:44:56.208 2024.05.06 22:44:56.692
212 6.0.0.344 2024.05.02 b49d8 P P 750 469 2024.05.02 23:35:58.106 2024.05.02 23:35:58.856 2024.05.02 22:44:32.699 2024.05.02 22:44:33.168
213 6.0.0.342 2024.04.29 e6247 P P 750 453 2024.04.29 23:36:07.133 2024.04.29 23:36:07.883 2024.04.29 22:44:55.611 2024.04.29 22:44:56.064
214 6.0.0.339 2024.04.28 0bcba P P 750 468 2024.04.28 23:35:57.615 2024.04.28 23:35:58.365 2024.04.28 22:44:32.645 2024.04.28 22:44:33.113
215 6.0.0.336 2024.04.24 7d2ac P P 750 469 2024.04.26 23:36:01.845 2024.04.26 23:36:02.595 2024.04.26 22:44:37.070 2024.04.26 22:44:37.539
216 6.0.0.333 2024.04.23 85d98 P P 750 469 2024.04.23 23:36:35.931 2024.04.23 23:36:36.681 2024.04.23 22:44:58.130 2024.04.23 22:44:58.599
217 6.0.0.328 2024.04.22 485d0 P P 750 485 2024.04.22 23:36:16.807 2024.04.22 23:36:17.557 2024.04.22 22:44:38.755 2024.04.22 22:44:39.240
218 6.0.0.327 2024.04.19 eeed9 P P 750 469 2024.04.21 23:36:35.759 2024.04.21 23:36:36.509 2024.04.21 22:45:00.306 2024.04.21 22:45:00.775
219 6.0.0.325 2024.04.18 f5930 P P 750 469 2024.04.18 23:36:23.457 2024.04.18 23:36:24.207 2024.04.18 22:44:38.151 2024.04.18 22:44:38.620
220 6.0.0.324 2024.04.17 84ac9 P P 751 468 2024.04.17 23:37:01.112 2024.04.17 23:37:01.863 2024.04.17 22:44:59.701 2024.04.17 22:45:00.169
221 6.0.0.321 2024.04.16 eba22 P P 782 484 2024.04.16 23:35:54.410 2024.04.16 23:35:55.192 2024.04.16 22:44:37.600 2024.04.16 22:44:38.084
222 6.0.0.315 2024.04.15 4e80d P P 750 469 2024.04.15 23:36:21.318 2024.04.15 23:36:22.068 2024.04.15 22:44:57.887 2024.04.15 22:44:58.356
223 6.0.0.313 2024.04.14 b6eab P P 516 344 2024.04.14 23:33:30.074 2024.04.14 23:33:30.590 2024.04.14 22:44:53.659 2024.04.14 22:44:54.003
224 6.0.0.313 2024.04.12 aaf5f P P 515 328 2024.04.12 23:33:06.482 2024.04.12 23:33:06.997 2024.04.12 22:44:31.664 2024.04.12 22:44:31.992
225 6.0.0.312 2024.04.12 ff9f0 P P 531 328 2024.04.12 10:20:07.701 2024.04.12 10:20:08.232 2024.04.12 09:31:44.179 2024.04.12 09:31:44.507
226 6.0.0.312 2024.04.04 3496c P P 484 344 2024.04.09 23:33:12.778 2024.04.09 23:33:13.262 2024.04.09 22:45:37.176 2024.04.09 22:45:37.520
227 6.0.0.310 2024.04.03 e93f6 P P 500 328 2024.04.04 09:44:17.638 2024.04.04 09:44:18.138 2024.04.04 08:57:52.595 2024.04.04 08:57:52.923
228 6.0.0.308 2024.04.03 fa979 P P 516 328 2024.04.03 16:57:57.204 2024.04.03 16:57:57.720 2024.04.03 16:11:35.418 2024.04.03 16:11:35.746
229 6.0.0.308 2024.04.02 65562 P P 484 313 2024.04.03 00:37:58.540 2024.04.03 00:37:59.024 2024.04.02 23:52:30.164 2024.04.02 23:52:30.477
230 6.0.0.305 2024.04.01 8a4f6 P P 500 344 2024.04.02 08:50:23.759 2024.04.02 08:50:24.259 2024.04.02 08:04:49.379 2024.04.02 08:04:49.723
231 6.0.0.303 2024.03.31 ecb39 P P 483 312 2024.04.01 08:56:20.898 2024.04.01 08:56:21.381 2024.04.01 05:31:55.986 2024.04.01 05:31:56.298
232 6.0.0.301 2024.03.25 69d0a P P 483 311 2024.03.28 22:54:38.668 2024.03.28 22:54:39.151 2024.03.28 22:09:15.391 2024.03.28 22:09:15.702
233 6.0.0.299 2024.03.22 b1ba8 P P 483 312 2024.03.24 00:24:26.990 2024.03.24 00:24:27.473 2024.03.23 23:38:04.472 2024.03.23 23:38:04.784
234 6.0.0.295 2024.03.22 ef66a P P 483 296 2024.03.22 13:15:15.229 2024.03.22 13:15:15.712 2024.03.22 12:28:59.660 2024.03.22 12:28:59.956
235 6.0.0.295 2024.03.21 bf5ab P P 484 311 2024.03.21 22:35:16.851 2024.03.21 22:35:17.335 2024.03.21 21:48:55.175 2024.03.21 21:48:55.486
236 6.0.0.294 2024.03.20 bd00d P P 483 311 2024.03.21 01:38:05.332 2024.03.21 01:38:05.815 2024.03.21 00:51:51.618 2024.03.21 00:51:51.929
237 6.0.0.293 2024.03.20 fb994 P P 468 389 2024.03.20 18:10:40.915 2024.03.20 18:10:41.383 2024.03.20 17:24:15.943 2024.03.20 17:24:16.332

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):