Page MenuHomePhabricator

'renameuser' logs for a global rename use actor ID from metawiki instead of the local one when created by the fixStuckGlobalRename.php script
Open, MediumPublicPRODUCTION ERROR

Description

Error
message
MediaWiki\User\UserIdentityValue::__construct(): Argument #2 ($name) must be of type string, null given, called in /srv/mediawiki/php-1.45.0-wmf.7/extensions/CheckUser/src/CheckUser/Pagers/CheckUserGetActionsPager.php on line 662
trace
from /srv/mediawiki/php-1.45.0-wmf.7/includes/user/UserIdentityValue.php(59)
#0 /srv/mediawiki/php-1.45.0-wmf.7/extensions/CheckUser/src/CheckUser/Pagers/CheckUserGetActionsPager.php(662): MediaWiki\User\UserIdentityValue->__construct(int, null)
#1 /srv/mediawiki/php-1.45.0-wmf.7/includes/pager/IndexPager.php(297): MediaWiki\CheckUser\CheckUser\Pagers\CheckUserGetActionsPager->preprocessResults(Wikimedia\Rdbms\FakeResultWrapper)
#2 /srv/mediawiki/php-1.45.0-wmf.7/includes/pager/IndexPager.php(578): MediaWiki\Pager\IndexPager->doQuery()
#3 /srv/mediawiki/php-1.45.0-wmf.7/extensions/CheckUser/src/CheckUser/SpecialCheckUser.php(311): MediaWiki\Pager\IndexPager->getBody()
#4 /srv/mediawiki/php-1.45.0-wmf.7/includes/specialpage/SpecialPage.php(732): MediaWiki\CheckUser\CheckUser\SpecialCheckUser->execute(null)
#5 /srv/mediawiki/php-1.45.0-wmf.7/includes/specialpage/SpecialPageFactory.php(1722): MediaWiki\SpecialPage\SpecialPage->run(null)
#6 /srv/mediawiki/php-1.45.0-wmf.7/includes/actions/ActionEntryPoint.php(499): MediaWiki\SpecialPage\SpecialPageFactory->executePath(string, MediaWiki\Context\RequestContext)
#7 /srv/mediawiki/php-1.45.0-wmf.7/includes/actions/ActionEntryPoint.php(143): MediaWiki\Actions\ActionEntryPoint->performRequest()
#8 /srv/mediawiki/php-1.45.0-wmf.7/includes/MediaWikiEntryPoint.php(198): MediaWiki\Actions\ActionEntryPoint->execute()
#9 /srv/mediawiki/php-1.45.0-wmf.7/index.php(58): MediaWiki\MediaWikiEntryPoint->run()
#10 /srv/mediawiki/w/index.php(3): require(string)
#11 {main}

Cause

The Account-Vanishing code appears to use the actor ID from metawiki when log events are created for the global vanish of the user on enwiki:

(enwiki)> select * from actor where actor_id = 63725087;
Empty set (0.001 sec)

(enwiki)> select rc_actor, comment_text from recentchanges join comment on comment_id = rc_comment_id where rc_actor = 63725087;
+----------+-----------------------------------------------------------+
| rc_actor | comment_text                                              |
+----------+-----------------------------------------------------------+
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
| 63725087 | This user vanish request has been automatically approved. |
+----------+-----------------------------------------------------------+
11 rows in set (0.002 sec)

(enwiki)> select cupe_actor, comment_text from cu_private_event join comment on comment_id = cupe_comment_id where cupe_actor = 63725087;
+------------+-----------------------------------------------------------+
| cupe_actor | comment_text                                              |
+------------+-----------------------------------------------------------+
|   63725087 | This user vanish request has been automatically approved. |
+------------+-----------------------------------------------------------+
1 row in set (0.001 sec)

(metawiki)> select * from actor where actor_id = 63725087;
+----------+------------+-----------------------+
| actor_id | actor_user | actor_name            |
+----------+------------+-----------------------+
| 63725087 |   40383635 | AccountVanishRequests |
+----------+------------+-----------------------+
1 row in set (0.000 sec)

This means any fix will need to be in MediaWiki-extensions-CentralAuth and the problem identified in the ticket here is a symptom of the MediaWiki-extensions-CentralAuth issue.

Details

Request URL
https://en.wikipedia.org/w/index.php?title=Special:CheckUser&user=X
Related Changes in Gerrit:
SubjectRepoBranchLines +/-
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.24+7 -3
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.23+7 -3
mediawiki/extensions/CentralAuthmaster+7 -3
mediawiki/extensions/CentralAuthmaster+2 -0
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.20+2 -0
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.20+72 -32
mediawiki/extensions/CentralAuthmaster+72 -32
mediawiki/coremaster+25 -12
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.16+7 -0
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.16+146 -75
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.16+4 -0
mediawiki/extensions/CentralAuthmaster+146 -75
mediawiki/extensions/CentralAuthmaster+1 K -0
mediawiki/extensions/CentralAuthmaster+7 -0
mediawiki/extensions/CentralAuthmaster+19 -5
mediawiki/extensions/CentralAuthmaster+4 -0
mediawiki/extensions/CentralAuthmaster+2 -2
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.16+19 -5
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.16+2 -2
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.15+19 -5
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.15+2 -2
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.15+166 -0
mediawiki/extensions/CentralAuthmaster+166 -0
mediawiki/extensions/CentralAuthwmf/1.45.0-wmf.12+3 -1
mediawiki/extensions/CentralAuthmaster+3 -1
Show related patches Customize query in gerrit

Related Objects

Mentioned In
T407855: jawiki: Add ipblock-exempt to the accountcreator user group
T403387: SQL query did not specify the caller (guessed caller: {caller}): {sql}
T403002: Unpurged renameuser rows in recentchanges causing isDenseTagFilter to return true inappropriately
T402602: Storing objects in session data causes unnecessary session writes, and emits spurious warnings with $wgPHPSessionHandling = 'warn'
T261260: Strange secondary error "Class 'WebRequest' not found" in logs after errors like "extension.json is not a valid JSON file"
T313900: Renaming a user doubles their edit count according to CentralAuthUser::getGlobalEditCount() / global_edit_count.gec_count field
T400249: SessionBackend should save sessions at the end of the request (and only there)
T400974: Unblock stuck global rename of Renamed user 5401aafa5557bf5c36b752af3b938b14
Mentioned Here
T395893: growthexperiments-deleteoldsurveys OOMKilled during June 1st run
T404804: GrowthExperiments:graduateEligibleMentees.php maintenance scripts OoMs for eswiki
P84615 T398177 (dry run)
T407855: jawiki: Add ipblock-exempt to the accountcreator user group
P83481 T398177 (dry run)
P82366 T398177 (dry run, output without “User has existed, but no local log entry for global” lines
T403387: SQL query did not specify the caller (guessed caller: {caller}): {sql}
T346971: Uncaught ConfigException: Failed to load configuration from etcd
P81825 (An Untitled Masterwork)
T402602: Storing objects in session data causes unnecessary session writes, and emits spurious warnings with $wgPHPSessionHandling = 'warn'
P81741 (An Untitled Masterwork)
T261260: Strange secondary error "Class 'WebRequest' not found" in logs after errors like "extension.json is not a valid JSON file"
P81302 (An Untitled Masterwork)
T400862: Unblock stuck global rename of Renamed user f74bdbce92f61493475fa5230c4922b0
T400974: Unblock stuck global rename of Renamed user 5401aafa5557bf5c36b752af3b938b14
T313900: Renaming a user doubles their edit count according to CentralAuthUser::getGlobalEditCount() / global_edit_count.gec_count field
T400249: SessionBackend should save sessions at the end of the request (and only there)
T393372: Unblock stuck global rename of Renamed_user_a71c8354dc822ea0d3aab24d1ce886f02c25fe91
T400618: Unblock stuck global rename of Socks
T382078: Unblock stuck global rename of Norberto Luis Amoroso Jacquet and Roggenwolf
T387445: Unblock stuck global rename of Renamed_user_93d5fcb2f4862bda0383cf97a6cfeb7f
T396054: Unblock stuck global rename of Renamed user 5f7280e72219276c1352eb80f69489b0
T397218: Unblock stuck global rename of Renamed user fc26ace47276834fd507d19dab11aed6
T380527: AccountVanishRequest locks should always be done on Meta-Wiki

Event Timeline

There are a very large number of changes, so older changes are hidden. Show Older Changes

End-of-day update: so far, the script has reached afwiki. (mwscript-k8s is running on deploy1003 in lucaswerkmeister-wmde’s “CentralAuth-maint” tmux session. Output is available via kube_env mw-script eqiad && kubectl logs mw-script.eqiad.vl951qet-kqtf6 mediawiki-vl951qet-app.)

At this rate it would take a week or more, so I spent a few hours to optimize it, and run the queries in a more efficient way. The results should be the same, the only drawback is making the script more complex; I tested that it gives the same results on the beta cluster. I hope this cuts the runtime down to a few hours. (On the beta cluster, it goes from 40 seconds to 20 seconds, but the beta cluster has very little data.)

it turns out we're also re-assigning some renames that were logged as performed by 'Global rename script' to their actual performers. I guess this is fine.

These are not the actual performers.

I also made a patch to avoid changing any rows that are logged as performed by 'Global rename script'. You're right that we should avoid modifying historical data (even if the change is in some ways correct).

The mwscript-k8s command seemingly quit for no apparent reason overnight:

angwiktionary More than one matching local log entry for global #49889177
angwiktionary Dry run done, would correct 0 actor IDs
-----------------------------------------------------------------
annwiki
-----------------------------------------------------------------
lucaswerkmeister-wmde@deploy1003 ~ $

Fortunately the script itself is alive and well:

lucaswerkmeister-wmde@deploy1003 ~ $ kubectl get job mw-script.eqiad.vl951qet
NAME                       COMPLETIONS   DURATION   AGE
mw-script.eqiad.vl951qet   0/1           17h        17h
lucaswerkmeister-wmde@deploy1003 ~ $ kubectl get pod mw-script.eqiad.vl951qet-kqtf6 
NAME                             READY   STATUS    RESTARTS   AGE
mw-script.eqiad.vl951qet-kqtf6   3/3     Running   0          17h
lucaswerkmeister-wmde@deploy1003 ~ $ kubectl logs --tail=10 mw-script.eqiad.vl951qet-kqtf6 mediawiki-vl951qet-app
bswiktionary User has existed, but no local log entry for global #11001507
bswiktionary User has existed, but no local log entry for global #11157516
bswiktionary User has existed, but no local log entry for global #11176535
bswiktionary More than one matching local log entry for global #49888569
bswiktionary More than one matching local log entry for global #49888600
bswiktionary Global performer Lentokonefani does not exist locally
bswiktionary Dry run done, would correct 0 actor IDs
-----------------------------------------------------------------
btmwiki
-----------------------------------------------------------------

Though it doesn’t seem to have gotten any faster, so it’s probably not worth trying to run it all the way through without those performance improvements.

Overall, it would correct 169 actor IDs so far:

lucaswerkmeister-wmde@deploy1003 ~ $ kubectl logs mw-script.eqiad.vl951qet-kqtf6 mediawiki-vl951qet-app | grep -F 'Dry run done, would correct' | awk '{ sum += $7 } END { print sum }'
169

Change #1182239 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Improve finding local log entries

https://gerrit.wikimedia.org/r/1182239

Another update just before the weekend: the script has made it through the C wikis and dagwiki and is now working its way through dawiki. I’ll let it run through the weekend – while it’s inefficient, I doubt it’s bad enough to cause serious problems anywhere, and the output might still be useful. (But if it does cause problems, anyone should feel absolutely free to kill the mw-script.eqiad.vl951qet job.)

Edit:

lucaswerkmeister-wmde@deploy1003 ~ $ kubectl logs mw-script.eqiad.vl951qet-kqtf6 mediawiki-vl951qet-app | grep -F 'Dry run done, would correct' | awk '{ sum += $7 } END { print sum }'
318

About a third of that is commonswiki (would correct 117 actor IDs).

Change #1182956 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Batch more queries to speed up the script

https://gerrit.wikimedia.org/r/1182956

Change #1182957 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Skip rows where the performer is 'Global rename script'

https://gerrit.wikimedia.org/r/1182957

Change #1183249 had a related patch set uploaded (by Harsh_Kushwaha07; author: Harsh_Kushwaha07):

[mediawiki/extensions/CentralAuth@master] component: MediaWiki-extensions-CentralAuth

https://gerrit.wikimedia.org/r/1183249

Change #1183249 abandoned by Gergő Tisza:

[mediawiki/extensions/CentralAuth@master] component: MediaWiki-extensions-CentralAuth

Reason:

please don't spam :(

https://gerrit.wikimedia.org/r/1183249

The script died:

lucaswerkmeister-wmde@deploy1003 ~ $ kubectl logs --tail=15 --follow mw-script.eqiad.vl951qet-kqtf6 mediawiki-vl951qet-app
fawikiquote User has existed, but no local log entry for global #11188443
fawikiquote User has existed, but no local log entry for global #11192865
fawikiquote User has existed, but no local log entry for global #11206495
fawikiquote User has existed, but no local log entry for global #11282077
fawikiquote User has existed, but no local log entry for global #11335785
fawikiquote MediaWiki\Config\ConfigException from line 233 of /srv/mediawiki/php-1.45.0-wmf.16/includes/config/EtcdConfig.php: Failed to load configuration from etcd: (curl error: 28) Timeout was reached
fawikiquote #0 /srv/mediawiki/php-1.45.0-wmf.16/includes/config/EtcdConfig.php(146): MediaWiki\Config\EtcdConfig->load()
fawikiquote #1 /srv/mediawiki/wmf-config/CommonSettings.php(226): MediaWiki\Config\EtcdConfig->get('eqiad/dbconfig')
fawikiquote #2 /srv/mediawiki/php-1.45.0-wmf.16/includes/libs/rdbms/lbfactory/LBFactory.php(189): {closure}()
fawikiquote #3 /srv/mediawiki/php-1.45.0-wmf.16/maintenance/includes/Maintenance.php(1348): Wikimedia\Rdbms\LBFactory->autoReconfigure()
fawikiquote #4 /srv/mediawiki/php-1.45.0-wmf.16/extensions/CentralAuth/maintenance/FixRenameUserLocalLogs.php(110): MediaWiki\Maintenance\Maintenance->commitTransactionRound('MediaWiki\\Exten...')
fawikiquote #5 /srv/mediawiki/php-1.45.0-wmf.16/maintenance/includes/MaintenanceRunner.php(696): MediaWiki\Extension\CentralAuth\Maintenance\FixRenameUserLocalLogs->execute()
fawikiquote #6 /srv/mediawiki/php-1.45.0-wmf.16/maintenance/run.php(53): MediaWiki\Maintenance\MaintenanceRunner->run()
fawikiquote #7 /srv/mediawiki/multiversion/MWScript.php(221): require_once('/srv/mediawiki/...')
fawikiquote #8 {main}
lucaswerkmeister-wmde@deploy1003 ~ $ kubectl get pods mw-script.eqiad.vl951qet-kqtf6
NAME                             READY   STATUS   RESTARTS   AGE
mw-script.eqiad.vl951qet-kqtf6   0/3     Error    0          3d17h

Change #1183614 had a related patch set uploaded (by Lucas Werkmeister (WMDE); author: Lucas Werkmeister (WMDE)):

[mediawiki/core@master] maintenance: Try to keep going after ConfigException

https://gerrit.wikimedia.org/r/1183614

That error is probably T346971; I uploaded a semi-WIP patch that might help with it, but also I think we can just try to run the script with the optimizations in place and hope that it finishes before running into this rare error again.

Change #1183640 had a related patch set uploaded (by D3r1ck01; author: Lucas Werkmeister (WMDE)):

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.16] Add caller to maintenance script SQL queries

https://gerrit.wikimedia.org/r/1183640

Change #1183653 had a related patch set uploaded (by Bartosz Dziewoński; author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.16] FixRenameUserLocalLogs: Batch more queries to speed up the script

https://gerrit.wikimedia.org/r/1183653

Change #1183654 had a related patch set uploaded (by Bartosz Dziewoński; author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.16] FixRenameUserLocalLogs: Skip rows where the performer is 'Global rename script'

https://gerrit.wikimedia.org/r/1183654

Change #1183640 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.16] Add caller to maintenance script SQL queries

https://gerrit.wikimedia.org/r/1183640

Change #1183653 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.16] FixRenameUserLocalLogs: Batch more queries to speed up the script

https://gerrit.wikimedia.org/r/1183653

Change #1183654 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.16] FixRenameUserLocalLogs: Skip rows where the performer is 'Global rename script'

https://gerrit.wikimedia.org/r/1183654

Mentioned in SAL (#wikimedia-operations) [2025-09-01T13:30:39Z] <lucaswerkmeister-wmde@deploy1003> Started scap sync-world: Backport for [[gerrit:1183640|Add caller to maintenance script SQL queries (T313900 T398177 T403387)]], [[gerrit:1183653|FixRenameUserLocalLogs: Batch more queries to speed up the script (T398177)]], [[gerrit:1183654|FixRenameUserLocalLogs: Skip rows where the performer is 'Global rename script' (T398177)]]

Mentioned in SAL (#wikimedia-operations) [2025-09-01T13:36:43Z] <lucaswerkmeister-wmde@deploy1003> lucaswerkmeister-wmde, matmarex, d3r1ck01: Backport for [[gerrit:1183640|Add caller to maintenance script SQL queries (T313900 T398177 T403387)]], [[gerrit:1183653|FixRenameUserLocalLogs: Batch more queries to speed up the script (T398177)]], [[gerrit:1183654|FixRenameUserLocalLogs: Skip rows where the performer is 'Global rename script' (T398177)]] synced to the testservers (see http

Mentioned in SAL (#wikimedia-operations) [2025-09-01T13:42:27Z] <lucaswerkmeister-wmde@deploy1003> Finished scap sync-world: Backport for [[gerrit:1183640|Add caller to maintenance script SQL queries (T313900 T398177 T403387)]], [[gerrit:1183653|FixRenameUserLocalLogs: Batch more queries to speed up the script (T398177)]], [[gerrit:1183654|FixRenameUserLocalLogs: Skip rows where the performer is 'Global rename script' (T398177)]] (duration: 11m 48s)

Mentioned in SAL (#wikimedia-operations) [2025-09-01T13:42:47Z] <lucaswerkmeister-wmde@deploy1003> mwscript-k8s job started: foreachwikiindblist sul CentralAuth:FixRenameUserLocalLogs --logwiki=metawiki # T398177 (dry run)

Mentioned in SAL (#wikimedia-operations) [2025-09-01T13:42:47Z] <lucaswerkmeister-wmde@deploy1003> mwscript-k8s job started: foreachwikiindblist sul CentralAuth:FixRenameUserLocalLogs --logwiki=metawiki # T398177 (dry run)

End-of-dey update for this script run: it’s running as the mw-script.eqiad.ngnakllv-4552z pod in the mw-script.eqiad.ngnakllv job; use kube_env mw-script eqiad && kubectl logs mw-script.eqiad.ngnakllv-4552z mediawiki-ngnakllv-app to see the logs. It’s currently reached cebwiki, which is ca. 14% of the sul dblist if I’m not mistaken.

Change #1183614 merged by jenkins-bot:

[mediawiki/core@master] maintenance: Try to keep going after ConfigException

https://gerrit.wikimedia.org/r/1183614

The script finished! Its full script output is unfortunately too long for a paste; here’s a zstd-compressed version:


And here’s just the output without the “User has existed, but no local log entry for global” lines:
1CentralAuth:FixRenameUserLocalLogs: Running on sul
2-----------------------------------------------------------------
3aawiki
4-----------------------------------------------------------------
5aawiki Dry run done, would correct 0 actor IDs
6-----------------------------------------------------------------
7aawikibooks
8-----------------------------------------------------------------
9aawikibooks Dry run done, would correct 0 actor IDs
10-----------------------------------------------------------------
11aawiktionary
12-----------------------------------------------------------------
13aawiktionary Dry run done, would correct 0 actor IDs
14-----------------------------------------------------------------
15abwiki
16-----------------------------------------------------------------
17abwiki More than one matching local log entry for global #49888569
18abwiki More than one matching local log entry for global #49888600
19abwiki More than one matching local log entry for global #49889177
20abwiki Dry run done, would correct 0 actor IDs
21-----------------------------------------------------------------
22abwiktionary
23-----------------------------------------------------------------
24abwiktionary Dry run done, would correct 0 actor IDs
25-----------------------------------------------------------------
26acewiki
27-----------------------------------------------------------------
28acewiki More than one matching local log entry for global #49888569
29acewiki More than one matching local log entry for global #49888600
30acewiki More than one matching local log entry for global #49889177
31acewiki Dry run done, would correct 0 actor IDs
32-----------------------------------------------------------------
33advisorywiki
34-----------------------------------------------------------------
35advisorywiki Dry run done, would correct 0 actor IDs
36-----------------------------------------------------------------
37adywiki
38-----------------------------------------------------------------
39adywiki More than one matching local log entry for global #49888569
40adywiki More than one matching local log entry for global #49888600
41adywiki More than one matching local log entry for global #49889177
42adywiki Dry run done, would correct 0 actor IDs
43-----------------------------------------------------------------
44afwiki
45-----------------------------------------------------------------
46afwiki Would update performer for local #135068 based on global #15237384 from 'Cyberpower678' to 'Maire'
47afwiki More than one matching local log entry for global #49888569
48afwiki More than one matching local log entry for global #49888600
49afwiki More than one matching local log entry for global #49889177
50afwiki Would update performer for local #541139 based on global #51515035 from '<INVALID>' to 'MemicznyJanusz'
51afwiki Would update performer for local #541140 based on global #51516514 from '<INVALID>' to 'Nihonjoe'
52afwiki More than one matching local log entry for global #55036871
53afwiki Dry run done, would correct 3 actor IDs
54-----------------------------------------------------------------
55afwikibooks
56-----------------------------------------------------------------
57afwikibooks More than one matching local log entry for global #49888569
58afwikibooks More than one matching local log entry for global #49888600
59afwikibooks More than one matching local log entry for global #49889177
60afwikibooks Dry run done, would correct 0 actor IDs
61-----------------------------------------------------------------
62afwikiquote
63-----------------------------------------------------------------
64afwikiquote More than one matching local log entry for global #49888569
65afwikiquote More than one matching local log entry for global #49888600
66afwikiquote More than one matching local log entry for global #49889177
67afwikiquote Dry run done, would correct 0 actor IDs
68-----------------------------------------------------------------
69afwiktionary
70-----------------------------------------------------------------
71afwiktionary More than one matching local log entry for global #49888569
72afwiktionary More than one matching local log entry for global #49888600
73afwiktionary More than one matching local log entry for global #49889177
74afwiktionary Dry run done, would correct 0 actor IDs
75-----------------------------------------------------------------
76akwiki
77-----------------------------------------------------------------
78akwiki More than one matching local log entry for global #49888569
79akwiki More than one matching local log entry for global #49888600
80akwiki More than one matching local log entry for global #49889177
81akwiki Dry run done, would correct 0 actor IDs
82-----------------------------------------------------------------
83akwikibooks
84-----------------------------------------------------------------
85akwikibooks Dry run done, would correct 0 actor IDs
86-----------------------------------------------------------------
87akwiktionary
88-----------------------------------------------------------------
89akwiktionary Dry run done, would correct 0 actor IDs
90-----------------------------------------------------------------
91alswiki
92-----------------------------------------------------------------
93alswiki More than one matching local log entry for global #49888569
94alswiki More than one matching local log entry for global #49888600
95alswiki More than one matching local log entry for global #49889177
96alswiki Would update performer for local #1221489 based on global #56924661 from '<INVALID>' to 'AccountVanishRequests'
97alswiki Would update performer for local #1221615 based on global #56963083 from '<INVALID>' to 'AccountVanishRequests'
98alswiki Dry run done, would correct 2 actor IDs
99-----------------------------------------------------------------
100altwiki
101-----------------------------------------------------------------
102altwiki Dry run done, would correct 0 actor IDs
103-----------------------------------------------------------------
104amiwiki
105-----------------------------------------------------------------
106amiwiki Dry run done, would correct 0 actor IDs
107-----------------------------------------------------------------
108amwiki
109-----------------------------------------------------------------
110amwiki More than one matching local log entry for global #49888569
111amwiki More than one matching local log entry for global #49888600
112amwiki More than one matching local log entry for global #49889177
113amwiki Would update performer for local #91018 based on global #53154686 from '<INVALID>' to 'Mys 721tx'
114amwiki Would update performer for local #101754 based on global #59763297 from 'Nahomnata' to 'J ansari'
115amwiki Dry run done, would correct 2 actor IDs
116-----------------------------------------------------------------
117amwikiquote
118-----------------------------------------------------------------
119amwikiquote Dry run done, would correct 0 actor IDs
120-----------------------------------------------------------------
121amwiktionary
122-----------------------------------------------------------------
123amwiktionary More than one matching local log entry for global #49888569
124amwiktionary More than one matching local log entry for global #49888600
125amwiktionary More than one matching local log entry for global #49889177
126amwiktionary Dry run done, would correct 0 actor IDs
127-----------------------------------------------------------------
128angwiki
129-----------------------------------------------------------------
130angwiki More than one matching local log entry for global #49888569
131angwiki More than one matching local log entry for global #49888600
132angwiki More than one matching local log entry for global #49889177
133angwiki Dry run done, would correct 0 actor IDs
134-----------------------------------------------------------------
135angwikibooks
136-----------------------------------------------------------------
137angwikibooks Dry run done, would correct 0 actor IDs
138-----------------------------------------------------------------
139angwikiquote
140-----------------------------------------------------------------
141angwikiquote Dry run done, would correct 0 actor IDs
142-----------------------------------------------------------------
143angwikisource
144-----------------------------------------------------------------
145angwikisource Dry run done, would correct 0 actor IDs
146-----------------------------------------------------------------
147angwiktionary
148-----------------------------------------------------------------
149angwiktionary More than one matching local log entry for global #49888569
150angwiktionary More than one matching local log entry for global #49888600
151angwiktionary More than one matching local log entry for global #49889177
152angwiktionary Dry run done, would correct 0 actor IDs
153-----------------------------------------------------------------
154annwiki
155-----------------------------------------------------------------
156annwiki Dry run done, would correct 0 actor IDs
157-----------------------------------------------------------------
158anpwiki
159-----------------------------------------------------------------
160anpwiki Dry run done, would correct 0 actor IDs
161-----------------------------------------------------------------
162anwiki
163-----------------------------------------------------------------
164anwiki More than one matching local log entry for global #49888569
165anwiki More than one matching local log entry for global #49888600
166anwiki More than one matching local log entry for global #49889177
167anwiki Would update performer for local #246312 based on global #56957712 from '<INVALID>' to 'AccountVanishRequests'
168anwiki Dry run done, would correct 1 actor IDs
169-----------------------------------------------------------------
170anwiktionary
171-----------------------------------------------------------------
172anwiktionary More than one matching local log entry for global #49888569
173anwiktionary More than one matching local log entry for global #49888600
174anwiktionary More than one matching local log entry for global #49889177
175anwiktionary Dry run done, would correct 0 actor IDs
176-----------------------------------------------------------------
177apiportalwiki
178-----------------------------------------------------------------
179apiportalwiki Dry run done, would correct 0 actor IDs
180-----------------------------------------------------------------
181arcwiki
182-----------------------------------------------------------------
183arcwiki More than one matching local log entry for global #49888569
184arcwiki More than one matching local log entry for global #49888600
185arcwiki More than one matching local log entry for global #49889177
186arcwiki Dry run done, would correct 0 actor IDs
187-----------------------------------------------------------------
188arwiki
189-----------------------------------------------------------------
190arwiki Would update performer for local #10218606 based on global #15237384 from 'Cyberpower678' to 'Maire'
191arwiki More than one matching local log entry for global #34168996
192arwiki More than one matching local log entry for global #34177005
193arwiki More than one matching local log entry for global #49888569
194arwiki More than one matching local log entry for global #49888600
195arwiki More than one matching local log entry for global #49889177
196arwiki Would update performer for local #44934111 based on global #51516554 from 'حسن الاهدل' to 'Nihonjoe'
197arwiki Would update performer for local #45444353 based on global #53087861 from 'Mohsen.anvaari' to 'Ajwaan'
198arwiki Local log entry #45469366 has an invalid user name
199arwiki More than one matching local log entry for global #55036871
200arwiki Would update performer for local #46383941 based on global #56919172 from '<INVALID>' to 'AccountVanishRequests'
201arwiki Would update performer for local #46383834 based on global #56926747 from '<INVALID>' to 'AccountVanishRequests'
202arwiki Would update performer for local #46383857 based on global #56931262 from '<INVALID>' to 'AccountVanishRequests'
203arwiki Would update performer for local #46384011 based on global #56939731 from '<INVALID>' to 'AccountVanishRequests'
204arwiki Would update performer for local #46384021 based on global #56942232 from '<INVALID>' to 'AccountVanishRequests'
205arwiki Would update performer for local #46392048 based on global #56951977 from '<INVALID>' to 'AccountVanishRequests'
206arwiki Would update performer for local #46391928 based on global #56953350 from '<INVALID>' to 'AccountVanishRequests'
207arwiki Would update performer for local #46391933 based on global #56954951 from '<INVALID>' to 'AccountVanishRequests'
208arwiki Would update performer for local #46391984 based on global #56955726 from '<INVALID>' to 'AccountVanishRequests'
209arwiki Would update performer for local #46392068 based on global #56956854 from '<INVALID>' to 'AccountVanishRequests'
210arwiki Would update performer for local #46392102 based on global #56958955 from '<INVALID>' to 'AccountVanishRequests'
211arwiki Would update performer for local #46392058 based on global #56962990 from '<INVALID>' to 'AccountVanishRequests'
212arwiki Would update performer for local #46392072 based on global #56973591 from '<INVALID>' to 'AccountVanishRequests'
213arwiki Would update performer for local #46391937 based on global #56983529 from '<INVALID>' to 'AccountVanishRequests'
214arwiki Would update performer for local #46392053 based on global #56988504 from '<INVALID>' to 'AccountVanishRequests'
215arwiki Dry run done, would correct 18 actor IDs
216-----------------------------------------------------------------
217arwikibooks
218-----------------------------------------------------------------
219arwikibooks More than one matching local log entry for global #49888569
220arwikibooks More than one matching local log entry for global #49888600
221arwikibooks More than one matching local log entry for global #49889177
222arwikibooks Dry run done, would correct 0 actor IDs
223-----------------------------------------------------------------
224arwikimedia
225-----------------------------------------------------------------
226arwikimedia More than one matching local log entry for global #49888569
227arwikimedia More than one matching local log entry for global #49888600
228arwikimedia More than one matching local log entry for global #49889177
229arwikimedia Dry run done, would correct 0 actor IDs
230-----------------------------------------------------------------
231arwikinews
232-----------------------------------------------------------------
233arwikinews More than one matching local log entry for global #49888569
234arwikinews More than one matching local log entry for global #49888600
235arwikinews More than one matching local log entry for global #49889177
236arwikinews Dry run done, would correct 0 actor IDs
237-----------------------------------------------------------------
238arwikiquote
239-----------------------------------------------------------------
240arwikiquote More than one matching local log entry for global #49888569
241arwikiquote More than one matching local log entry for global #49888600
242arwikiquote More than one matching local log entry for global #49889177
243arwikiquote Dry run done, would correct 0 actor IDs
244-----------------------------------------------------------------
245arwikisource
246-----------------------------------------------------------------
247arwikisource More than one matching local log entry for global #49888569
248arwikisource More than one matching local log entry for global #49888600
249arwikisource More than one matching local log entry for global #49889177
250arwikisource Dry run done, would correct 0 actor IDs
251-----------------------------------------------------------------
252arwikiversity
253-----------------------------------------------------------------
254arwikiversity More than one matching local log entry for global #16147923
255arwikiversity More than one matching local log entry for global #49888569
256arwikiversity More than one matching local log entry for global #49888600
257arwikiversity More than one matching local log entry for global #49889177
258arwikiversity Dry run done, would correct 0 actor IDs
259-----------------------------------------------------------------
260arwiktionary
261-----------------------------------------------------------------
262arwiktionary More than one matching local log entry for global #49888569
263arwiktionary More than one matching local log entry for global #49888600
264arwiktionary More than one matching local log entry for global #49889177
265arwiktionary Dry run done, would correct 0 actor IDs
266-----------------------------------------------------------------
267arywiki
268-----------------------------------------------------------------
269arywiki Dry run done, would correct 0 actor IDs
270-----------------------------------------------------------------
271arzwiki
272-----------------------------------------------------------------
273arzwiki Would update performer for local #231316 based on global #15237384 from 'Cyberpower678' to 'Maire'
274arzwiki More than one matching local log entry for global #49888569
275arzwiki More than one matching local log entry for global #49888600
276arzwiki More than one matching local log entry for global #49889177
277arzwiki Dry run done, would correct 1 actor IDs
278-----------------------------------------------------------------
279astwiki
280-----------------------------------------------------------------
281astwiki More than one matching local log entry for global #49888569
282astwiki More than one matching local log entry for global #49888600
283astwiki More than one matching local log entry for global #49889177
284astwiki Dry run done, would correct 0 actor IDs
285-----------------------------------------------------------------
286astwikibooks
287-----------------------------------------------------------------
288astwikibooks Dry run done, would correct 0 actor IDs
289-----------------------------------------------------------------
290astwikiquote
291-----------------------------------------------------------------
292astwikiquote Dry run done, would correct 0 actor IDs
293-----------------------------------------------------------------
294astwiktionary
295-----------------------------------------------------------------
296astwiktionary More than one matching local log entry for global #49888569
297astwiktionary More than one matching local log entry for global #49888600
298astwiktionary More than one matching local log entry for global #49889177
299astwiktionary Dry run done, would correct 0 actor IDs
300-----------------------------------------------------------------
301aswiki
302-----------------------------------------------------------------
303aswiki More than one matching local log entry for global #49888569
304aswiki More than one matching local log entry for global #49888600
305aswiki More than one matching local log entry for global #49889177
306aswiki Dry run done, would correct 0 actor IDs
307-----------------------------------------------------------------
308aswikibooks
309-----------------------------------------------------------------
310aswikibooks Dry run done, would correct 0 actor IDs
311-----------------------------------------------------------------
312aswikiquote
313-----------------------------------------------------------------
314aswikiquote Dry run done, would correct 0 actor IDs
315-----------------------------------------------------------------
316aswikisource
317-----------------------------------------------------------------
318aswikisource More than one matching local log entry for global #49888569
319aswikisource More than one matching local log entry for global #49888600
320aswikisource More than one matching local log entry for global #49889177
321aswikisource Dry run done, would correct 0 actor IDs
322-----------------------------------------------------------------
323aswiktionary
324-----------------------------------------------------------------
325aswiktionary Dry run done, would correct 0 actor IDs
326-----------------------------------------------------------------
327atjwiki
328-----------------------------------------------------------------
329atjwiki Dry run done, would correct 0 actor IDs
330-----------------------------------------------------------------
331avkwiki
332-----------------------------------------------------------------
333avkwiki Dry run done, would correct 0 actor IDs
334-----------------------------------------------------------------
335avwiki
336-----------------------------------------------------------------
337avwiki More than one matching local log entry for global #49888569
338avwiki More than one matching local log entry for global #49888600
339avwiki More than one matching local log entry for global #49889177
340avwiki Dry run done, would correct 0 actor IDs
341-----------------------------------------------------------------
342avwiktionary
343-----------------------------------------------------------------
344avwiktionary Dry run done, would correct 0 actor IDs
345-----------------------------------------------------------------
346awawiki
347-----------------------------------------------------------------
348awawiki Dry run done, would correct 0 actor IDs
349-----------------------------------------------------------------
350aywiki
351-----------------------------------------------------------------
352aywiki Would update performer for local #13909 based on global #15237384 from 'Cyberpower678' to 'Maire'
353aywiki More than one matching local log entry for global #49888569
354aywiki More than one matching local log entry for global #49888600
355aywiki More than one matching local log entry for global #49889177
356aywiki Dry run done, would correct 1 actor IDs
357-----------------------------------------------------------------
358aywikibooks
359-----------------------------------------------------------------
360aywikibooks Dry run done, would correct 0 actor IDs
361-----------------------------------------------------------------
362aywiktionary
363-----------------------------------------------------------------
364aywiktionary More than one matching local log entry for global #49888569
365aywiktionary More than one matching local log entry for global #49888600
366aywiktionary More than one matching local log entry for global #49889177
367aywiktionary Dry run done, would correct 0 actor IDs
368-----------------------------------------------------------------
369azbwiki
370-----------------------------------------------------------------
371azbwiki More than one matching local log entry for global #49888569
372azbwiki More than one matching local log entry for global #49888600
373azbwiki More than one matching local log entry for global #49889177
374azbwiki Would update performer for local #760978 based on global #53063041 from '<INVALID>' to 'Vladimir Solovjev'
375azbwiki Dry run done, would correct 1 actor IDs
376-----------------------------------------------------------------
377azwiki
378-----------------------------------------------------------------
379azwiki Would update performer for local #556509 based on global #15237384 from 'Cyberpower678' to 'Maire'
380azwiki More than one matching local log entry for global #49888569
381azwiki More than one matching local log entry for global #49888600
382azwiki More than one matching local log entry for global #49889177
383azwiki Would update performer for local #1534075 based on global #56920842 from '<INVALID>' to 'AccountVanishRequests'
384azwiki More than one matching local log entry for global #59609932
385azwiki More than one matching local log entry for global #59619180
386azwiki Dry run done, would correct 2 actor IDs
387-----------------------------------------------------------------
388azwikibooks
389-----------------------------------------------------------------
390azwikibooks More than one matching local log entry for global #49888569
391azwikibooks More than one matching local log entry for global #49888600
392azwikibooks More than one matching local log entry for global #49889177
393azwikibooks Dry run done, would correct 0 actor IDs
394-----------------------------------------------------------------
395azwikiquote
396-----------------------------------------------------------------
397azwikiquote More than one matching local log entry for global #49888569
398azwikiquote More than one matching local log entry for global #49888600
399azwikiquote More than one matching local log entry for global #49889177
400azwikiquote Dry run done, would correct 0 actor IDs
401-----------------------------------------------------------------
402azwikisource
403-----------------------------------------------------------------
404azwikisource More than one matching local log entry for global #49888569
405azwikisource More than one matching local log entry for global #49888600
406azwikisource More than one matching local log entry for global #49889177
407azwikisource Dry run done, would correct 0 actor IDs
408-----------------------------------------------------------------
409azwiktionary
410-----------------------------------------------------------------
411azwiktionary More than one matching local log entry for global #49888569
412azwiktionary More than one matching local log entry for global #49888600
413azwiktionary More than one matching local log entry for global #49889177
414azwiktionary Dry run done, would correct 0 actor IDs
415-----------------------------------------------------------------
416banwiki
417-----------------------------------------------------------------
418banwiki More than one matching local log entry for global #55036871
419banwiki Would update performer for local #92347 based on global #56954159 from '<INVALID>' to 'AccountVanishRequests'
420banwiki Dry run done, would correct 1 actor IDs
421-----------------------------------------------------------------
422banwikisource
423-----------------------------------------------------------------
424banwikisource Dry run done, would correct 0 actor IDs
425-----------------------------------------------------------------
426barwiki
427-----------------------------------------------------------------
428barwiki Would update performer for local #97249 based on global #15237384 from 'Cyberpower678' to 'Maire'
429barwiki More than one matching local log entry for global #49888569
430barwiki More than one matching local log entry for global #49888600
431barwiki More than one matching local log entry for global #49889177
432barwiki Dry run done, would correct 1 actor IDs
433-----------------------------------------------------------------
434bat_smgwiki
435-----------------------------------------------------------------
436bat_smgwiki More than one matching local log entry for global #49888569
437bat_smgwiki More than one matching local log entry for global #49888600
438bat_smgwiki More than one matching local log entry for global #49889177
439bat_smgwiki Dry run done, would correct 0 actor IDs
440-----------------------------------------------------------------
441bawiki
442-----------------------------------------------------------------
443bawiki More than one matching local log entry for global #49888569
444bawiki More than one matching local log entry for global #49888600
445bawiki More than one matching local log entry for global #49889177
446bawiki Would update performer for local #246894 based on global #58954435 from '<INVALID>' to 'Qədir'
447bawiki Dry run done, would correct 1 actor IDs
448-----------------------------------------------------------------
449bawikibooks
450-----------------------------------------------------------------
451bawikibooks Dry run done, would correct 0 actor IDs
452-----------------------------------------------------------------
453bbcwiki
454-----------------------------------------------------------------
455bbcwiki Dry run done, would correct 0 actor IDs
456-----------------------------------------------------------------
457bclwiki
458-----------------------------------------------------------------
459bclwiki More than one matching local log entry for global #49888569
460bclwiki More than one matching local log entry for global #49888600
461bclwiki More than one matching local log entry for global #49889177
462bclwiki Would update performer for local #79757 based on global #56937302 from '<INVALID>' to 'AccountVanishRequests'
463bclwiki Dry run done, would correct 1 actor IDs
464-----------------------------------------------------------------
465bclwikiquote
466-----------------------------------------------------------------
467bclwikiquote Dry run done, would correct 0 actor IDs
468-----------------------------------------------------------------
469bclwikisource
470-----------------------------------------------------------------
471bclwikisource Dry run done, would correct 0 actor IDs
472-----------------------------------------------------------------
473bclwiktionary
474-----------------------------------------------------------------
475bclwiktionary Dry run done, would correct 0 actor IDs
476-----------------------------------------------------------------
477bdrwiki
478-----------------------------------------------------------------
479bdrwiki Dry run done, would correct 0 actor IDs
480-----------------------------------------------------------------
481bdwikimedia
482-----------------------------------------------------------------
483bdwikimedia More than one matching local log entry for global #49888569
484bdwikimedia More than one matching local log entry for global #49888600
485bdwikimedia More than one matching local log entry for global #49889177
486bdwikimedia Dry run done, would correct 0 actor IDs
487-----------------------------------------------------------------
488be_x_oldwiki
489-----------------------------------------------------------------
490be_x_oldwiki More than one matching local log entry for global #49888569
491be_x_oldwiki More than one matching local log entry for global #49888600
492be_x_oldwiki More than one matching local log entry for global #49889177
493be_x_oldwiki Dry run done, would correct 0 actor IDs
494-----------------------------------------------------------------
495betawikiversity
496-----------------------------------------------------------------
497betawikiversity More than one matching local log entry for global #49888569
498betawikiversity More than one matching local log entry for global #49888600
499betawikiversity More than one matching local log entry for global #49889177
500betawikiversity More than one matching local log entry for global #59609932
501betawikiversity More than one matching local log entry for global #59619180
502betawikiversity Dry run done, would correct 0 actor IDs
503-----------------------------------------------------------------
504bewiki
505-----------------------------------------------------------------
506bewiki More than one matching local log entry for global #49888569
507bewiki More than one matching local log entry for global #49888600
508bewiki More than one matching local log entry for global #49889177
509bewiki Would update performer for local #3974200 based on global #59150161 from '<INVALID>' to 'Kızıl'
510bewiki Dry run done, would correct 1 actor IDs
511-----------------------------------------------------------------
512bewikibooks
513-----------------------------------------------------------------
514bewikibooks More than one matching local log entry for global #49888569
515bewikibooks More than one matching local log entry for global #49888600
516bewikibooks More than one matching local log entry for global #49889177
517bewikibooks Dry run done, would correct 0 actor IDs
518-----------------------------------------------------------------
519bewikimedia
520-----------------------------------------------------------------
521bewikimedia More than one matching local log entry for global #49888569
522bewikimedia More than one matching local log entry for global #49888600
523bewikimedia More than one matching local log entry for global #49889177
524bewikimedia Dry run done, would correct 0 actor IDs
525-----------------------------------------------------------------
526bewikiquote
527-----------------------------------------------------------------
528bewikiquote More than one matching local log entry for global #49888569
529bewikiquote More than one matching local log entry for global #49888600
530bewikiquote More than one matching local log entry for global #49889177
531bewikiquote Dry run done, would correct 0 actor IDs
532-----------------------------------------------------------------
533bewikisource
534-----------------------------------------------------------------
535bewikisource More than one matching local log entry for global #49888569
536bewikisource More than one matching local log entry for global #49888600
537bewikisource More than one matching local log entry for global #49889177
538bewikisource Dry run done, would correct 0 actor IDs
539-----------------------------------------------------------------
540bewiktionary
541-----------------------------------------------------------------
542bewiktionary More than one matching local log entry for global #49888569
543bewiktionary More than one matching local log entry for global #49888600
544bewiktionary More than one matching local log entry for global #49889177
545bewiktionary Dry run done, would correct 0 actor IDs
546-----------------------------------------------------------------
547bewwiki
548-----------------------------------------------------------------
549bewwiki Dry run done, would correct 0 actor IDs
550-----------------------------------------------------------------
551bewwiktionary
552-----------------------------------------------------------------
553bewwiktionary Dry run done, would correct 0 actor IDs
554-----------------------------------------------------------------
555bgwiki
556-----------------------------------------------------------------
557bgwiki Would update performer for local #3852030 based on global #15237384 from 'Cyberpower678' to 'Maire'
558bgwiki More than one matching local log entry for global #34168996
559bgwiki More than one matching local log entry for global #34177005
560bgwiki More than one matching local log entry for global #49888569
561bgwiki More than one matching local log entry for global #49888600
562bgwiki More than one matching local log entry for global #49889177
563bgwiki More than one matching local log entry for global #55036871
564bgwiki Would update performer for local #6439607 based on global #59897430 from '<INVALID>' to 'Iming'
565bgwiki Dry run done, would correct 2 actor IDs
566-----------------------------------------------------------------
567bgwikibooks
568-----------------------------------------------------------------
569bgwikibooks More than one matching local log entry for global #49888569
570bgwikibooks More than one matching local log entry for global #49888600
571bgwikibooks More than one matching local log entry for global #49889177
572bgwikibooks Dry run done, would correct 0 actor IDs
573-----------------------------------------------------------------
574bgwikinews
575-----------------------------------------------------------------
576bgwikinews More than one matching local log entry for global #49888569
577bgwikinews More than one matching local log entry for global #49888600
578bgwikinews More than one matching local log entry for global #49889177
579bgwikinews Dry run done, would correct 0 actor IDs
580-----------------------------------------------------------------
581bgwikiquote
582-----------------------------------------------------------------
583bgwikiquote More than one matching local log entry for global #49888569
584bgwikiquote More than one matching local log entry for global #49888600
585bgwikiquote More than one matching local log entry for global #49889177
586bgwikiquote Dry run done, would correct 0 actor IDs
587-----------------------------------------------------------------
588bgwikisource
589-----------------------------------------------------------------
590bgwikisource More than one matching local log entry for global #49888569
591bgwikisource More than one matching local log entry for global #49888600
592bgwikisource More than one matching local log entry for global #49889177
593bgwikisource Dry run done, would correct 0 actor IDs
594-----------------------------------------------------------------
595bgwiktionary
596-----------------------------------------------------------------
597bgwiktionary More than one matching local log entry for global #49888569
598bgwiktionary More than one matching local log entry for global #49888600
599bgwiktionary More than one matching local log entry for global #49889177
600bgwiktionary Dry run done, would correct 0 actor IDs
601-----------------------------------------------------------------
602bhwiki
603-----------------------------------------------------------------
604bhwiki More than one matching local log entry for global #49888569
605bhwiki More than one matching local log entry for global #49888600
606bhwiki More than one matching local log entry for global #49889177
607bhwiki Would update performer for local #136809 based on global #56947320 from '<INVALID>' to 'AccountVanishRequests'
608bhwiki Would update performer for local #137584 based on global #57325140 from '<INVALID>' to 'AccountVanishRequests'
609bhwiki Dry run done, would correct 2 actor IDs
610-----------------------------------------------------------------
611bhwiktionary
612-----------------------------------------------------------------
613bhwiktionary Dry run done, would correct 0 actor IDs
614-----------------------------------------------------------------
615biwiki
616-----------------------------------------------------------------
617biwiki More than one matching local log entry for global #49888569
618biwiki More than one matching local log entry for global #49888600
619biwiki More than one matching local log entry for global #49889177
620biwiki Dry run done, would correct 0 actor IDs
621-----------------------------------------------------------------
622biwikibooks
623-----------------------------------------------------------------
624biwikibooks Dry run done, would correct 0 actor IDs
625-----------------------------------------------------------------
626biwiktionary
627-----------------------------------------------------------------
628biwiktionary Dry run done, would correct 0 actor IDs
629-----------------------------------------------------------------
630bjnwiki
631-----------------------------------------------------------------
632bjnwiki More than one matching local log entry for global #49888569
633bjnwiki More than one matching local log entry for global #49888600
634bjnwiki More than one matching local log entry for global #49889177
635bjnwiki Dry run done, would correct 0 actor IDs
636-----------------------------------------------------------------
637bjnwikiquote
638-----------------------------------------------------------------
639bjnwikiquote Dry run done, would correct 0 actor IDs
640-----------------------------------------------------------------
641bjnwiktionary
642-----------------------------------------------------------------
643bjnwiktionary Dry run done, would correct 0 actor IDs
644-----------------------------------------------------------------
645blkwiki
646-----------------------------------------------------------------
647blkwiki Dry run done, would correct 0 actor IDs
648-----------------------------------------------------------------
649blkwiktionary
650-----------------------------------------------------------------
651blkwiktionary Dry run done, would correct 0 actor IDs
652-----------------------------------------------------------------
653bmwiki
654-----------------------------------------------------------------
655bmwiki More than one matching local log entry for global #49888569
656bmwiki More than one matching local log entry for global #49888600
657bmwiki More than one matching local log entry for global #49889177
658bmwiki Dry run done, would correct 0 actor IDs
659-----------------------------------------------------------------
660bmwikibooks
661-----------------------------------------------------------------
662bmwikibooks Dry run done, would correct 0 actor IDs
663-----------------------------------------------------------------
664bmwikiquote
665-----------------------------------------------------------------
666bmwikiquote Dry run done, would correct 0 actor IDs
667-----------------------------------------------------------------
668bmwiktionary
669-----------------------------------------------------------------
670bmwiktionary Dry run done, would correct 0 actor IDs
671-----------------------------------------------------------------
672bnwiki
673-----------------------------------------------------------------
674bnwiki Would update performer for local #1474198 based on global #15237384 from 'Cyberpower678' to 'Maire'
675bnwiki More than one matching local log entry for global #49888569
676bnwiki More than one matching local log entry for global #49888600
677bnwiki More than one matching local log entry for global #49889177
678bnwiki More than one matching local log entry for global #55036871
679bnwiki Would update performer for local #3869379 based on global #56929000 from '<INVALID>' to 'AccountVanishRequests'
680bnwiki Would update performer for local #3869359 based on global #56932177 from '<INVALID>' to 'AccountVanishRequests'
681bnwiki Would update performer for local #3872338 based on global #56960917 from '<INVALID>' to 'AccountVanishRequests'
682bnwiki Would update performer for local #3872348 based on global #56962604 from '<INVALID>' to 'AccountVanishRequests'
683bnwiki Would update performer for local #3872372 based on global #56983010 from '<INVALID>' to 'AccountVanishRequests'
684bnwiki Would update performer for local #3943072 based on global #58312594 from '<INVALID>' to 'Qədir'
685bnwiki Dry run done, would correct 7 actor IDs
686-----------------------------------------------------------------
687bnwikibooks
688-----------------------------------------------------------------
689bnwikibooks More than one matching local log entry for global #49888569
690bnwikibooks More than one matching local log entry for global #49888600
691bnwikibooks More than one matching local log entry for global #49889177
692bnwikibooks Dry run done, would correct 0 actor IDs
693-----------------------------------------------------------------
694bnwikiquote
695-----------------------------------------------------------------
696bnwikiquote Dry run done, would correct 0 actor IDs
697-----------------------------------------------------------------
698bnwikisource
699-----------------------------------------------------------------
700bnwikisource More than one matching local log entry for global #49888569
701bnwikisource More than one matching local log entry for global #49888600
702bnwikisource More than one matching local log entry for global #49889177
703bnwikisource Dry run done, would correct 0 actor IDs
704-----------------------------------------------------------------
705bnwikivoyage
706-----------------------------------------------------------------
707bnwikivoyage Would update performer for local #14374 based on global #59118753 from '<INVALID>' to 'MdsShakil'
708bnwikivoyage Dry run done, would correct 1 actor IDs
709-----------------------------------------------------------------
710bnwiktionary
711-----------------------------------------------------------------
712bnwiktionary More than one matching local log entry for global #49888569
713bnwiktionary More than one matching local log entry for global #49888600
714bnwiktionary More than one matching local log entry for global #49889177
715bnwiktionary More than one matching local log entry for global #60720302
716bnwiktionary Dry run done, would correct 0 actor IDs
717-----------------------------------------------------------------
718bowiki
719-----------------------------------------------------------------
720bowiki More than one matching local log entry for global #49888569
721bowiki More than one matching local log entry for global #49888600
722bowiki More than one matching local log entry for global #49889177
723bowiki More than one matching local log entry for global #55036871
724bowiki Dry run done, would correct 0 actor IDs
725-----------------------------------------------------------------
726bowikibooks
727-----------------------------------------------------------------
728bowikibooks Dry run done, would correct 0 actor IDs
729-----------------------------------------------------------------
730bowiktionary
731-----------------------------------------------------------------
732bowiktionary Dry run done, would correct 0 actor IDs
733-----------------------------------------------------------------
734bpywiki
735-----------------------------------------------------------------
736bpywiki More than one matching local log entry for global #49888569
737bpywiki More than one matching local log entry for global #49888600
738bpywiki More than one matching local log entry for global #49889177
739bpywiki Dry run done, would correct 0 actor IDs
740-----------------------------------------------------------------
741brwiki
742-----------------------------------------------------------------
743brwiki More than one matching local log entry for global #49888569
744brwiki More than one matching local log entry for global #49888600
745brwiki More than one matching local log entry for global #49889177
746brwiki Dry run done, would correct 0 actor IDs
747-----------------------------------------------------------------
748brwikimedia
749-----------------------------------------------------------------
750brwikimedia Local log entry #32497 has an invalid user name
751brwikimedia Would update performer for local #41263 based on global #12646819 from 'Steinsplitter' to 'Céréales Killer'
752brwikimedia More than one matching local log entry for global #49888569
753brwikimedia More than one matching local log entry for global #49888600
754brwikimedia More than one matching local log entry for global #49889177
755brwikimedia Would update performer for local #59743 based on global #53065373 from '<INVALID>' to 'Albertoleoncio'
756brwikimedia Dry run done, would correct 2 actor IDs
757-----------------------------------------------------------------
758brwikiquote
759-----------------------------------------------------------------
760brwikiquote More than one matching local log entry for global #49888569
761brwikiquote More than one matching local log entry for global #49888600
762brwikiquote More than one matching local log entry for global #49889177
763brwikiquote Dry run done, would correct 0 actor IDs
764-----------------------------------------------------------------
765brwikisource
766-----------------------------------------------------------------
767brwikisource More than one matching local log entry for global #49888569
768brwikisource More than one matching local log entry for global #49888600
769brwikisource More than one matching local log entry for global #49889177
770brwikisource Dry run done, would correct 0 actor IDs
771-----------------------------------------------------------------
772brwiktionary
773-----------------------------------------------------------------
774brwiktionary More than one matching local log entry for global #49888569
775brwiktionary More than one matching local log entry for global #49888600
776brwiktionary More than one matching local log entry for global #49889177
777brwiktionary Dry run done, would correct 0 actor IDs
778-----------------------------------------------------------------
779bswiki
780-----------------------------------------------------------------
781bswiki More than one matching local log entry for global #49888569
782bswiki More than one matching local log entry for global #49888600
783bswiki More than one matching local log entry for global #49889177
784bswiki Dry run done, would correct 0 actor IDs
785-----------------------------------------------------------------
786bswikibooks
787-----------------------------------------------------------------
788bswikibooks More than one matching local log entry for global #49888569
789bswikibooks More than one matching local log entry for global #49888600
790bswikibooks More than one matching local log entry for global #49889177
791bswikibooks Dry run done, would correct 0 actor IDs
792-----------------------------------------------------------------
793bswikinews
794-----------------------------------------------------------------
795bswikinews More than one matching local log entry for global #49888569
796bswikinews More than one matching local log entry for global #49888600
797bswikinews More than one matching local log entry for global #49889177
798bswikinews Dry run done, would correct 0 actor IDs
799-----------------------------------------------------------------
800bswikiquote
801-----------------------------------------------------------------
802bswikiquote More than one matching local log entry for global #49888569
803bswikiquote More than one matching local log entry for global #49888600
804bswikiquote More than one matching local log entry for global #49889177
805bswikiquote Dry run done, would correct 0 actor IDs
806-----------------------------------------------------------------
807bswikisource
808-----------------------------------------------------------------
809bswikisource More than one matching local log entry for global #16147923
810bswikisource More than one matching local log entry for global #49888569
811bswikisource More than one matching local log entry for global #49888600
812bswikisource More than one matching local log entry for global #49889177
813bswikisource Dry run done, would correct 0 actor IDs
814-----------------------------------------------------------------
815bswiktionary
816-----------------------------------------------------------------
817bswiktionary More than one matching local log entry for global #49888569
818bswiktionary More than one matching local log entry for global #49888600
819bswiktionary More than one matching local log entry for global #49889177
820bswiktionary Dry run done, would correct 0 actor IDs
821-----------------------------------------------------------------
822btmwiki
823-----------------------------------------------------------------
824btmwiki Dry run done, would correct 0 actor IDs
825-----------------------------------------------------------------
826btmwiktionary
827-----------------------------------------------------------------
828btmwiktionary Dry run done, would correct 0 actor IDs
829-----------------------------------------------------------------
830bugwiki
831-----------------------------------------------------------------
832bugwiki More than one matching local log entry for global #49888569
833bugwiki More than one matching local log entry for global #49888600
834bugwiki More than one matching local log entry for global #49889177
835bugwiki More than one matching local log entry for global #55036871
836bugwiki Dry run done, would correct 0 actor IDs
837-----------------------------------------------------------------
838bxrwiki
839-----------------------------------------------------------------
840bxrwiki More than one matching local log entry for global #49888569
841bxrwiki More than one matching local log entry for global #49888600
842bxrwiki More than one matching local log entry for global #49889177
843bxrwiki Dry run done, would correct 0 actor IDs
844-----------------------------------------------------------------
845cawiki
846-----------------------------------------------------------------
847cawiki More than one matching local log entry for global #9449225
848cawiki Would update performer for local #13866721 based on global #24523612 from 'MBq' to 'Masti'
849cawiki Would update performer for local #15200634 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
850cawiki More than one matching local log entry for global #49888569
851cawiki More than one matching local log entry for global #49888600
852cawiki More than one matching local log entry for global #49889177
853cawiki Dry run done, would correct 2 actor IDs
854-----------------------------------------------------------------
855cawikibooks
856-----------------------------------------------------------------
857cawikibooks More than one matching local log entry for global #49888569
858cawikibooks More than one matching local log entry for global #49888600
859cawikibooks More than one matching local log entry for global #49889177
860cawikibooks Dry run done, would correct 0 actor IDs
861-----------------------------------------------------------------
862cawikimedia
863-----------------------------------------------------------------
864cawikimedia Dry run done, would correct 0 actor IDs
865-----------------------------------------------------------------
866cawikinews
867-----------------------------------------------------------------
868cawikinews More than one matching local log entry for global #49888569
869cawikinews More than one matching local log entry for global #49888600
870cawikinews More than one matching local log entry for global #49889177
871cawikinews Dry run done, would correct 0 actor IDs
872-----------------------------------------------------------------
873cawikiquote
874-----------------------------------------------------------------
875cawikiquote More than one matching local log entry for global #49888569
876cawikiquote More than one matching local log entry for global #49888600
877cawikiquote More than one matching local log entry for global #49889177
878cawikiquote Dry run done, would correct 0 actor IDs
879-----------------------------------------------------------------
880cawikisource
881-----------------------------------------------------------------
882cawikisource More than one matching local log entry for global #49888569
883cawikisource More than one matching local log entry for global #49888600
884cawikisource More than one matching local log entry for global #49889177
885cawikisource Dry run done, would correct 0 actor IDs
886-----------------------------------------------------------------
887cawiktionary
888-----------------------------------------------------------------
889cawiktionary More than one matching local log entry for global #49888569
890cawiktionary More than one matching local log entry for global #49888600
891cawiktionary More than one matching local log entry for global #49889177
892cawiktionary Would update performer for local #605179 based on global #59072747 from '<INVALID>' to 'Turkmen'
893cawiktionary Dry run done, would correct 1 actor IDs
894-----------------------------------------------------------------
895cbk_zamwiki
896-----------------------------------------------------------------
897cbk_zamwiki More than one matching local log entry for global #49888569
898cbk_zamwiki More than one matching local log entry for global #49888600
899cbk_zamwiki More than one matching local log entry for global #49889177
900cbk_zamwiki Dry run done, would correct 0 actor IDs
901-----------------------------------------------------------------
902cdowiki
903-----------------------------------------------------------------
904cdowiki More than one matching local log entry for global #49888569
905cdowiki More than one matching local log entry for global #49888600
906cdowiki More than one matching local log entry for global #49889177
907cdowiki Dry run done, would correct 0 actor IDs
908-----------------------------------------------------------------
909cebwiki
910-----------------------------------------------------------------
911cebwiki More than one matching local log entry for global #49888569
912cebwiki More than one matching local log entry for global #49888600
913cebwiki More than one matching local log entry for global #49889177
914cebwiki More than one matching local log entry for global #59609932
915cebwiki More than one matching local log entry for global #59619180
916cebwiki Dry run done, would correct 0 actor IDs
917-----------------------------------------------------------------
918cewiki
919-----------------------------------------------------------------
920cewiki More than one matching local log entry for global #49888569
921cewiki More than one matching local log entry for global #49888600
922cewiki More than one matching local log entry for global #49889177
923cewiki Dry run done, would correct 0 actor IDs
924-----------------------------------------------------------------
925chowiki
926-----------------------------------------------------------------
927chowiki Dry run done, would correct 0 actor IDs
928-----------------------------------------------------------------
929chrwiki
930-----------------------------------------------------------------
931chrwiki More than one matching local log entry for global #49888569
932chrwiki More than one matching local log entry for global #49888600
933chrwiki More than one matching local log entry for global #49889177
934chrwiki Would update performer for local #36569 based on global #56962346 from '<INVALID>' to 'AccountVanishRequests'
935chrwiki Dry run done, would correct 1 actor IDs
936-----------------------------------------------------------------
937chrwiktionary
938-----------------------------------------------------------------
939chrwiktionary More than one matching local log entry for global #49888569
940chrwiktionary More than one matching local log entry for global #49888600
941chrwiktionary More than one matching local log entry for global #49889177
942chrwiktionary Dry run done, would correct 0 actor IDs
943-----------------------------------------------------------------
944chwiki
945-----------------------------------------------------------------
946chwiki More than one matching local log entry for global #49888569
947chwiki More than one matching local log entry for global #49888600
948chwiki More than one matching local log entry for global #49889177
949chwiki Dry run done, would correct 0 actor IDs
950-----------------------------------------------------------------
951chwikibooks
952-----------------------------------------------------------------
953chwikibooks Dry run done, would correct 0 actor IDs
954-----------------------------------------------------------------
955chwiktionary
956-----------------------------------------------------------------
957chwiktionary Dry run done, would correct 0 actor IDs
958-----------------------------------------------------------------
959chywiki
960-----------------------------------------------------------------
961chywiki More than one matching local log entry for global #49888569
962chywiki More than one matching local log entry for global #49888600
963chywiki More than one matching local log entry for global #49889177
964chywiki Dry run done, would correct 0 actor IDs
965-----------------------------------------------------------------
966ckbwiki
967-----------------------------------------------------------------
968ckbwiki More than one matching local log entry for global #49888569
969ckbwiki More than one matching local log entry for global #49888600
970ckbwiki More than one matching local log entry for global #49889177
971ckbwiki Dry run done, would correct 0 actor IDs
972-----------------------------------------------------------------
973ckbwiktionary
974-----------------------------------------------------------------
975ckbwiktionary Dry run done, would correct 0 actor IDs
976-----------------------------------------------------------------
977commonswiki
978-----------------------------------------------------------------
979commonswiki Would update performer for local #121605269 based on global #11613214 from 'Stryn' to 'Jianhui67'
980commonswiki Would update performer for local #129966483 based on global #12488259 from 'K6ka' to 'Jianhui67'
981commonswiki More than one matching local log entry for global #12646819
982commonswiki More than one matching local log entry for global #12649639
983commonswiki Would update performer for local #140460106 based on global #13997024 from 'K6ka' to 'MBisanz'
984commonswiki Would update performer for local #148541379 based on global #15237384 from 'Cyberpower678' to 'Maire'
985commonswiki Would update performer for local #174736424 based on global #18704008 from 'Unused user 481783812' to 'Céréales Killer'
986commonswiki Would update performer for local #240778157 based on global #24523612 from 'MBq' to 'Masti'
987commonswiki Would update performer for local #279371925 based on global #30473135 from 'Hunh0v3r~commonswiki' to 'MarcoAurelio'
988commonswiki More than one matching local log entry for global #31018521
989commonswiki More than one matching local log entry for global #34168996
990commonswiki More than one matching local log entry for global #34177005
991commonswiki More than one matching local log entry for global #40252809
992commonswiki More than one matching local log entry for global #40253191
993commonswiki Would update performer for local #319750357 based on global #44835257 from 'PhilKnight' to 'Cabayi'
994commonswiki More than one matching local log entry for global #46011965
995commonswiki More than one matching local log entry for global #48133703
996commonswiki More than one matching local log entry for global #48136210
997commonswiki Would update performer for local #330951589 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
998commonswiki More than one matching local log entry for global #49888569
999commonswiki More than one matching local log entry for global #49888600
1000commonswiki More than one matching local log entry for global #49889177
1001commonswiki Would update performer for local #336482292 based on global #51515042 from '<INVALID>' to 'MemicznyJanusz'
1002commonswiki Would update performer for local #336482512 based on global #51515053 from '<INVALID>' to 'MemicznyJanusz'
1003commonswiki Would update performer for local #336482457 based on global #51516519 from 'Figueiredopb' to 'Nihonjoe'
1004commonswiki Would update performer for local #342522030 based on global #53139742 from 'Mike HORNETS Today' to 'FlightTime'
1005commonswiki Would update performer for local #342521957 based on global #53175076 from 'FuzzyBot' to 'Squasher'
1006commonswiki More than one matching local log entry for global #54596312
1007commonswiki More than one matching local log entry for global #54596325
1008commonswiki More than one matching local log entry for global #55036871
1009commonswiki Would update performer for local #355990844 based on global #56464407 from '<INVALID>' to 'Neriah'
1010commonswiki Would update performer for local #356828475 based on global #56720730 from 'Figueiredopb' to 'Nihonjoe'
1011commonswiki Would update performer for local #357562326 based on global #56918831 from '<INVALID>' to 'AccountVanishRequests'
1012commonswiki Would update performer for local #357561460 based on global #56919636 from '<INVALID>' to 'AccountVanishRequests'
1013commonswiki Would update performer for local #357562905 based on global #56919706 from '<INVALID>' to 'AccountVanishRequests'
1014commonswiki Would update performer for local #357561885 based on global #56920554 from '<INVALID>' to 'AccountVanishRequests'
1015commonswiki Would update performer for local #357562474 based on global #56922278 from '<INVALID>' to 'AccountVanishRequests'
1016commonswiki Would update performer for local #357561512 based on global #56922547 from '<INVALID>' to 'AccountVanishRequests'
1017commonswiki Would update performer for local #357562523 based on global #56923634 from '<INVALID>' to 'AccountVanishRequests'
1018commonswiki Would update performer for local #357562817 based on global #56924031 from '<INVALID>' to 'AccountVanishRequests'
1019commonswiki Would update performer for local #357560971 based on global #56924944 from '<INVALID>' to 'AccountVanishRequests'
1020commonswiki Would update performer for local #357562361 based on global #56926192 from '<INVALID>' to 'AccountVanishRequests'
1021commonswiki Would update performer for local #357562006 based on global #56926576 from '<INVALID>' to 'AccountVanishRequests'
1022commonswiki Would update performer for local #357561673 based on global #56926781 from '<INVALID>' to 'AccountVanishRequests'
1023commonswiki Would update performer for local #357562690 based on global #56927377 from '<INVALID>' to 'AccountVanishRequests'
1024commonswiki Would update performer for local #357561076 based on global #56927414 from '<INVALID>' to 'AccountVanishRequests'
1025commonswiki Would update performer for local #357562155 based on global #56928730 from '<INVALID>' to 'AccountVanishRequests'
1026commonswiki Would update performer for local #357562219 based on global #56929750 from '<INVALID>' to 'AccountVanishRequests'
1027commonswiki Would update performer for local #357562257 based on global #56929929 from '<INVALID>' to 'AccountVanishRequests'
1028commonswiki Would update performer for local #357561232 based on global #56930095 from '<INVALID>' to 'AccountVanishRequests'
1029commonswiki Would update performer for local #357561847 based on global #56930664 from '<INVALID>' to 'AccountVanishRequests'
1030commonswiki Would update performer for local #357561417 based on global #56930919 from '<INVALID>' to 'AccountVanishRequests'
1031commonswiki Would update performer for local #357561634 based on global #56931132 from '<INVALID>' to 'AccountVanishRequests'
1032commonswiki Would update performer for local #357561026 based on global #56934930 from '<INVALID>' to 'AccountVanishRequests'
1033commonswiki Would update performer for local #357562577 based on global #56935000 from '<INVALID>' to 'AccountVanishRequests'
1034commonswiki Would update performer for local #357562092 based on global #56935201 from '<INVALID>' to 'AccountVanishRequests'
1035commonswiki Would update performer for local #357561711 based on global #56935258 from '<INVALID>' to 'AccountVanishRequests'
1036commonswiki Would update performer for local #357562953 based on global #56936443 from '<INVALID>' to 'AccountVanishRequests'
1037commonswiki Would update performer for local #357561131 based on global #56937634 from '<INVALID>' to 'AccountVanishRequests'
1038commonswiki Would update performer for local #357562789 based on global #56937717 from '<INVALID>' to 'AccountVanishRequests'
1039commonswiki Would update performer for local #357561742 based on global #56937792 from '<INVALID>' to 'AccountVanishRequests'
1040commonswiki Would update performer for local #357564810 based on global #56939862 from '<INVALID>' to 'AccountVanishRequests'
1041commonswiki Would update performer for local #357564872 based on global #56939897 from '<INVALID>' to 'AccountVanishRequests'
1042commonswiki Would update performer for local #357564838 based on global #56940747 from '<INVALID>' to 'AccountVanishRequests'
1043commonswiki Would update performer for local #357565020 based on global #56940974 from '<INVALID>' to 'AccountVanishRequests'
1044commonswiki Would update performer for local #357564685 based on global #56941545 from '<INVALID>' to 'AccountVanishRequests'
1045commonswiki Would update performer for local #357564742 based on global #56941627 from '<INVALID>' to 'AccountVanishRequests'
1046commonswiki Would update performer for local #357564964 based on global #56943297 from '<INVALID>' to 'AccountVanishRequests'
1047commonswiki Would update performer for local #357707153 based on global #56944401 from '<INVALID>' to 'AccountVanishRequests'
1048commonswiki Would update performer for local #357711575 based on global #56944519 from '<INVALID>' to 'AccountVanishRequests'
1049commonswiki Would update performer for local #357710041 based on global #56946163 from '<INVALID>' to 'AccountVanishRequests'
1050commonswiki Would update performer for local #357707912 based on global #56946625 from '<INVALID>' to 'AccountVanishRequests'
1051commonswiki Would update performer for local #357708160 based on global #56946774 from '<INVALID>' to 'AccountVanishRequests'
1052commonswiki Would update performer for local #357709387 based on global #56947635 from '<INVALID>' to 'AccountVanishRequests'
1053commonswiki Would update performer for local #357711046 based on global #56948268 from '<INVALID>' to 'AccountVanishRequests'
1054commonswiki Would update performer for local #357707976 based on global #56949926 from '<INVALID>' to 'AccountVanishRequests'
1055commonswiki Would update performer for local #357708201 based on global #56949979 from '<INVALID>' to 'AccountVanishRequests'
1056commonswiki Would update performer for local #357707881 based on global #56950399 from '<INVALID>' to 'AccountVanishRequests'
1057commonswiki Would update performer for local #357708243 based on global #56950508 from '<INVALID>' to 'AccountVanishRequests'
1058commonswiki Would update performer for local #357711705 based on global #56950535 from '<INVALID>' to 'AccountVanishRequests'
1059commonswiki Would update performer for local #357707897 based on global #56951598 from '<INVALID>' to 'AccountVanishRequests'
1060commonswiki Would update performer for local #357707669 based on global #56952363 from '<INVALID>' to 'AccountVanishRequests'
1061commonswiki Would update performer for local #357710900 based on global #56952722 from '<INVALID>' to 'AccountVanishRequests'
1062commonswiki Would update performer for local #357707103 based on global #56954058 from '<INVALID>' to 'AccountVanishRequests'
1063commonswiki Would update performer for local #357709717 based on global #56954720 from '<INVALID>' to 'AccountVanishRequests'
1064commonswiki Would update performer for local #357711079 based on global #56955469 from '<INVALID>' to 'AccountVanishRequests'
1065commonswiki Would update performer for local #357711674 based on global #56956485 from '<INVALID>' to 'AccountVanishRequests'
1066commonswiki Would update performer for local #357707268 based on global #56961407 from '<INVALID>' to 'AccountVanishRequests'
1067commonswiki Would update performer for local #357710867 based on global #56961574 from '<INVALID>' to 'AccountVanishRequests'
1068commonswiki Would update performer for local #357710268 based on global #56961967 from '<INVALID>' to 'AccountVanishRequests'
1069commonswiki Would update performer for local #357711646 based on global #56963446 from '<INVALID>' to 'AccountVanishRequests'
1070commonswiki Would update performer for local #357709025 based on global #56964976 from '<INVALID>' to 'AccountVanishRequests'
1071commonswiki Would update performer for local #357711613 based on global #56966108 from '<INVALID>' to 'AccountVanishRequests'
1072commonswiki Would update performer for local #357708971 based on global #56966614 from '<INVALID>' to 'AccountVanishRequests'
1073commonswiki Would update performer for local #357708046 based on global #56967216 from '<INVALID>' to 'AccountVanishRequests'
1074commonswiki Would update performer for local #357708003 based on global #56967831 from '<INVALID>' to 'AccountVanishRequests'
1075commonswiki Would update performer for local #357711141 based on global #56968676 from '<INVALID>' to 'AccountVanishRequests'
1076commonswiki Would update performer for local #357711002 based on global #56970138 from '<INVALID>' to 'AccountVanishRequests'
1077commonswiki Would update performer for local #357707208 based on global #56971162 from '<INVALID>' to 'AccountVanishRequests'
1078commonswiki Would update performer for local #357709618 based on global #56971519 from '<INVALID>' to 'AccountVanishRequests'
1079commonswiki Would update performer for local #357709225 based on global #56971628 from '<INVALID>' to 'AccountVanishRequests'
1080commonswiki Would update performer for local #357712859 based on global #56972542 from 'Mike HORNETS Today' to 'FlightTime'
1081commonswiki Would update performer for local #357710143 based on global #56972581 from '<INVALID>' to 'AccountVanishRequests'
1082commonswiki Would update performer for local #357709675 based on global #56973225 from '<INVALID>' to 'AccountVanishRequests'
1083commonswiki Would update performer for local #357711234 based on global #56973320 from '<INVALID>' to 'AccountVanishRequests'
1084commonswiki Would update performer for local #357708313 based on global #56973386 from '<INVALID>' to 'AccountVanishRequests'
1085commonswiki Would update performer for local #357711442 based on global #56973827 from '<INVALID>' to 'AccountVanishRequests'
1086commonswiki Would update performer for local #357708396 based on global #56974263 from '<INVALID>' to 'AccountVanishRequests'
1087commonswiki Would update performer for local #357709837 based on global #56974686 from '<INVALID>' to 'AccountVanishRequests'
1088commonswiki Would update performer for local #357708682 based on global #56977439 from '<INVALID>' to 'AccountVanishRequests'
1089commonswiki Would update performer for local #357707791 based on global #56977537 from '<INVALID>' to 'AccountVanishRequests'
1090commonswiki Would update performer for local #357708859 based on global #56977984 from '<INVALID>' to 'AccountVanishRequests'
1091commonswiki Would update performer for local #357707737 based on global #56978748 from '<INVALID>' to 'AccountVanishRequests'
1092commonswiki Would update performer for local #357707455 based on global #56978916 from '<INVALID>' to 'AccountVanishRequests'
1093commonswiki Would update performer for local #357709477 based on global #56980053 from '<INVALID>' to 'AccountVanishRequests'
1094commonswiki Would update performer for local #357711337 based on global #56980557 from '<INVALID>' to 'AccountVanishRequests'
1095commonswiki Would update performer for local #357707650 based on global #56981894 from '<INVALID>' to 'AccountVanishRequests'
1096commonswiki Would update performer for local #357708627 based on global #56981992 from '<INVALID>' to 'AccountVanishRequests'
1097commonswiki Would update performer for local #357708361 based on global #56982053 from '<INVALID>' to 'AccountVanishRequests'
1098commonswiki Would update performer for local #357711507 based on global #56982075 from '<INVALID>' to 'AccountVanishRequests'
1099commonswiki Would update performer for local #357708536 based on global #56982247 from '<INVALID>' to 'AccountVanishRequests'
1100commonswiki Would update performer for local #357708452 based on global #56982640 from '<INVALID>' to 'AccountVanishRequests'
1101commonswiki Would update performer for local #357710676 based on global #56985238 from '<INVALID>' to 'AccountVanishRequests'
1102commonswiki Would update performer for local #357711287 based on global #56985279 from '<INVALID>' to 'AccountVanishRequests'
1103commonswiki Would update performer for local #357711374 based on global #56985576 from '<INVALID>' to 'AccountVanishRequests'
1104commonswiki Would update performer for local #357707368 based on global #56985692 from '<INVALID>' to 'AccountVanishRequests'
1105commonswiki Would update performer for local #357709053 based on global #56987121 from '<INVALID>' to 'AccountVanishRequests'
1106commonswiki Would update performer for local #357709532 based on global #56987141 from '<INVALID>' to 'AccountVanishRequests'
1107commonswiki Would update performer for local #357709758 based on global #56987433 from '<INVALID>' to 'AccountVanishRequests'
1108commonswiki Would update performer for local #357711190 based on global #56987572 from '<INVALID>' to 'AccountVanishRequests'
1109commonswiki Would update performer for local #357709888 based on global #56987869 from '<INVALID>' to 'AccountVanishRequests'
1110commonswiki Would update performer for local #358750435 based on global #57245594 from 'Supergiu' to 'Civvì'
1111commonswiki Would update performer for local #359269572 based on global #57385365 from '<INVALID>' to 'DreamRimmer'
1112commonswiki Would update performer for local #367917654 based on global #58918018 from '<INVALID>' to 'AccountVanishRequests'
1113commonswiki More than one matching local log entry for global #59609932
1114commonswiki More than one matching local log entry for global #59619180
1115commonswiki Would update performer for local #374470120 based on global #60133231 from 'Jerry1SKI' to 'Cabayi'
1116commonswiki Would update performer for local #374660873 based on global #60162126 from '<INVALID>' to 'Qədir'
1117commonswiki Would update performer for local #375142064 based on global #60228110 from '<INVALID>' to 'Qədir'
1118commonswiki Dry run done, would correct 121 actor IDs
1119-----------------------------------------------------------------
1120cowiki
1121-----------------------------------------------------------------
1122cowiki More than one matching local log entry for global #49888569
1123cowiki More than one matching local log entry for global #49888600
1124cowiki More than one matching local log entry for global #49889177
1125cowiki Dry run done, would correct 0 actor IDs
1126-----------------------------------------------------------------
1127cowikibooks
1128-----------------------------------------------------------------
1129cowikibooks Dry run done, would correct 0 actor IDs
1130-----------------------------------------------------------------
1131cowikimedia
1132-----------------------------------------------------------------
1133cowikimedia More than one matching local log entry for global #49888569
1134cowikimedia More than one matching local log entry for global #49888600
1135cowikimedia More than one matching local log entry for global #49889177
1136cowikimedia Dry run done, would correct 0 actor IDs
1137-----------------------------------------------------------------
1138cowikiquote
1139-----------------------------------------------------------------
1140cowikiquote Dry run done, would correct 0 actor IDs
1141-----------------------------------------------------------------
1142cowiktionary
1143-----------------------------------------------------------------
1144cowiktionary More than one matching local log entry for global #49888569
1145cowiktionary More than one matching local log entry for global #49888600
1146cowiktionary More than one matching local log entry for global #49889177
1147cowiktionary Dry run done, would correct 0 actor IDs
1148-----------------------------------------------------------------
1149crhwiki
1150-----------------------------------------------------------------
1151crhwiki More than one matching local log entry for global #49888569
1152crhwiki More than one matching local log entry for global #49888600
1153crhwiki More than one matching local log entry for global #49889177
1154crhwiki More than one matching local log entry for global #55036871
1155crhwiki Dry run done, would correct 0 actor IDs
1156-----------------------------------------------------------------
1157crwiki
1158-----------------------------------------------------------------
1159crwiki More than one matching local log entry for global #49888569
1160crwiki More than one matching local log entry for global #49888600
1161crwiki More than one matching local log entry for global #49889177
1162crwiki Dry run done, would correct 0 actor IDs
1163-----------------------------------------------------------------
1164crwikiquote
1165-----------------------------------------------------------------
1166crwikiquote Dry run done, would correct 0 actor IDs
1167-----------------------------------------------------------------
1168crwiktionary
1169-----------------------------------------------------------------
1170crwiktionary Dry run done, would correct 0 actor IDs
1171-----------------------------------------------------------------
1172csbwiki
1173-----------------------------------------------------------------
1174csbwiki More than one matching local log entry for global #49888569
1175csbwiki More than one matching local log entry for global #49888600
1176csbwiki More than one matching local log entry for global #49889177
1177csbwiki Dry run done, would correct 0 actor IDs
1178-----------------------------------------------------------------
1179csbwiktionary
1180-----------------------------------------------------------------
1181csbwiktionary More than one matching local log entry for global #49888569
1182csbwiktionary More than one matching local log entry for global #49888600
1183csbwiktionary More than one matching local log entry for global #49889177
1184csbwiktionary Dry run done, would correct 0 actor IDs
1185-----------------------------------------------------------------
1186cswiki
1187-----------------------------------------------------------------
1188cswiki Would update performer for local #1090992 based on global #9882084 from 'Ajraddatz' to 'Savh'
1189cswiki Would update performer for local #1370288 based on global #15237384 from 'Cyberpower678' to 'Maire'
1190cswiki More than one matching local log entry for global #49888569
1191cswiki More than one matching local log entry for global #49888600
1192cswiki More than one matching local log entry for global #49889177
1193cswiki Would update performer for local #3584283 based on global #53189673 from 'Ranjith2103' to 'Martin Urbanec'
1194cswiki Dry run done, would correct 3 actor IDs
1195-----------------------------------------------------------------
1196cswikibooks
1197-----------------------------------------------------------------
1198cswikibooks More than one matching local log entry for global #49888569
1199cswikibooks More than one matching local log entry for global #49888600
1200cswikibooks More than one matching local log entry for global #49889177
1201cswikibooks Dry run done, would correct 0 actor IDs
1202-----------------------------------------------------------------
1203cswikinews
1204-----------------------------------------------------------------
1205cswikinews More than one matching local log entry for global #49888569
1206cswikinews More than one matching local log entry for global #49888600
1207cswikinews More than one matching local log entry for global #49889177
1208cswikinews Dry run done, would correct 0 actor IDs
1209-----------------------------------------------------------------
1210cswikiquote
1211-----------------------------------------------------------------
1212cswikiquote More than one matching local log entry for global #49888569
1213cswikiquote More than one matching local log entry for global #49888600
1214cswikiquote More than one matching local log entry for global #49889177
1215cswikiquote Dry run done, would correct 0 actor IDs
1216-----------------------------------------------------------------
1217cswikisource
1218-----------------------------------------------------------------
1219cswikisource More than one matching local log entry for global #49888569
1220cswikisource More than one matching local log entry for global #49888600
1221cswikisource More than one matching local log entry for global #49889177
1222cswikisource Dry run done, would correct 0 actor IDs
1223-----------------------------------------------------------------
1224cswikiversity
1225-----------------------------------------------------------------
1226cswikiversity More than one matching local log entry for global #49888569
1227cswikiversity More than one matching local log entry for global #49888600
1228cswikiversity More than one matching local log entry for global #49889177
1229cswikiversity Dry run done, would correct 0 actor IDs
1230-----------------------------------------------------------------
1231cswikivoyage
1232-----------------------------------------------------------------
1233cswikivoyage Dry run done, would correct 0 actor IDs
1234-----------------------------------------------------------------
1235cswiktionary
1236-----------------------------------------------------------------
1237cswiktionary More than one matching local log entry for global #49888569
1238cswiktionary More than one matching local log entry for global #49888600
1239cswiktionary More than one matching local log entry for global #49889177
1240cswiktionary Dry run done, would correct 0 actor IDs
1241-----------------------------------------------------------------
1242cuwiki
1243-----------------------------------------------------------------
1244cuwiki More than one matching local log entry for global #49888569
1245cuwiki More than one matching local log entry for global #49888600
1246cuwiki More than one matching local log entry for global #49889177
1247cuwiki Dry run done, would correct 0 actor IDs
1248-----------------------------------------------------------------
1249cvwiki
1250-----------------------------------------------------------------
1251cvwiki More than one matching local log entry for global #49888569
1252cvwiki More than one matching local log entry for global #49888600
1253cvwiki More than one matching local log entry for global #49889177
1254cvwiki Dry run done, would correct 0 actor IDs
1255-----------------------------------------------------------------
1256cvwikibooks
1257-----------------------------------------------------------------
1258cvwikibooks More than one matching local log entry for global #49888569
1259cvwikibooks More than one matching local log entry for global #49888600
1260cvwikibooks More than one matching local log entry for global #49889177
1261cvwikibooks Dry run done, would correct 0 actor IDs
1262-----------------------------------------------------------------
1263cywiki
1264-----------------------------------------------------------------
1265cywiki More than one matching local log entry for global #49888569
1266cywiki More than one matching local log entry for global #49888600
1267cywiki More than one matching local log entry for global #49889177
1268cywiki Dry run done, would correct 0 actor IDs
1269-----------------------------------------------------------------
1270cywikibooks
1271-----------------------------------------------------------------
1272cywikibooks More than one matching local log entry for global #49888569
1273cywikibooks More than one matching local log entry for global #49888600
1274cywikibooks More than one matching local log entry for global #49889177
1275cywikibooks Dry run done, would correct 0 actor IDs
1276-----------------------------------------------------------------
1277cywikiquote
1278-----------------------------------------------------------------
1279cywikiquote More than one matching local log entry for global #49888569
1280cywikiquote More than one matching local log entry for global #49888600
1281cywikiquote More than one matching local log entry for global #49889177
1282cywikiquote Dry run done, would correct 0 actor IDs
1283-----------------------------------------------------------------
1284cywikisource
1285-----------------------------------------------------------------
1286cywikisource More than one matching local log entry for global #49888569
1287cywikisource More than one matching local log entry for global #49888600
1288cywikisource More than one matching local log entry for global #49889177
1289cywikisource Dry run done, would correct 0 actor IDs
1290-----------------------------------------------------------------
1291cywiktionary
1292-----------------------------------------------------------------
1293cywiktionary More than one matching local log entry for global #49888569
1294cywiktionary More than one matching local log entry for global #49888600
1295cywiktionary More than one matching local log entry for global #49889177
1296cywiktionary Dry run done, would correct 0 actor IDs
1297-----------------------------------------------------------------
1298dagwiki
1299-----------------------------------------------------------------
1300dagwiki Dry run done, would correct 0 actor IDs
1301-----------------------------------------------------------------
1302dawiki
1303-----------------------------------------------------------------
1304dawiki More than one matching local log entry for global #49888569
1305dawiki More than one matching local log entry for global #49888600
1306dawiki More than one matching local log entry for global #49889177
1307dawiki Would update performer for local #8019313 based on global #54820836 from '<INVALID>' to 'Albertoleoncio'
1308dawiki Would update performer for local #8138250 based on global #58709693 from 'Veracious' to 'Céréales Killer'
1309dawiki Dry run done, would correct 2 actor IDs
1310-----------------------------------------------------------------
1311dawikibooks
1312-----------------------------------------------------------------
1313dawikibooks More than one matching local log entry for global #49888569
1314dawikibooks More than one matching local log entry for global #49888600
1315dawikibooks More than one matching local log entry for global #49889177
1316dawikibooks Dry run done, would correct 0 actor IDs
1317-----------------------------------------------------------------
1318dawikiquote
1319-----------------------------------------------------------------
1320dawikiquote More than one matching local log entry for global #49888569
1321dawikiquote More than one matching local log entry for global #49888600
1322dawikiquote More than one matching local log entry for global #49889177
1323dawikiquote Dry run done, would correct 0 actor IDs
1324-----------------------------------------------------------------
1325dawikisource
1326-----------------------------------------------------------------
1327dawikisource More than one matching local log entry for global #15473085
1328dawikisource More than one matching local log entry for global #49888569
1329dawikisource More than one matching local log entry for global #49888600
1330dawikisource More than one matching local log entry for global #49889177
1331dawikisource Dry run done, would correct 0 actor IDs
1332-----------------------------------------------------------------
1333dawiktionary
1334-----------------------------------------------------------------
1335dawiktionary More than one matching local log entry for global #49888569
1336dawiktionary More than one matching local log entry for global #49888600
1337dawiktionary More than one matching local log entry for global #49889177
1338dawiktionary Dry run done, would correct 0 actor IDs
1339-----------------------------------------------------------------
1340dewiki
1341-----------------------------------------------------------------
1342dewiki Would update performer for local #71117002 based on global #12646819 from 'Steinsplitter' to 'Céréales Killer'
1343dewiki Would update performer for local #77493097 based on global #15237384 from 'Cyberpower678' to 'Maire'
1344dewiki Would update performer for local #101528273 based on global #24523612 from 'MBq' to 'Masti'
1345dewiki More than one matching local log entry for global #31018521
1346dewiki More than one matching local log entry for global #34168996
1347dewiki More than one matching local log entry for global #34177005
1348dewiki More than one matching local log entry for global #39136830
1349dewiki More than one matching local log entry for global #39136939
1350dewiki More than one matching local log entry for global #40252809
1351dewiki More than one matching local log entry for global #40253191
1352dewiki Would update performer for local #135470496 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
1353dewiki More than one matching local log entry for global #49888569
1354dewiki More than one matching local log entry for global #49888600
1355dewiki More than one matching local log entry for global #49889177
1356dewiki Local log entry #137455735 has an invalid user name
1357dewiki More than one matching local log entry for global #55036871
1358dewiki Would update performer for local #138336257 based on global #56986290 from '<INVALID>' to 'AccountVanishRequests'
1359dewiki More than one matching local log entry for global #59609932
1360dewiki More than one matching local log entry for global #59619180
1361dewiki Would update performer for local #139835689 based on global #60606894 from '<INVALID>' to 'Svartava'
1362dewiki Dry run done, would correct 6 actor IDs
1363-----------------------------------------------------------------
1364dewikibooks
1365-----------------------------------------------------------------
1366dewikibooks More than one matching local log entry for global #49888569
1367dewikibooks More than one matching local log entry for global #49888600
1368dewikibooks More than one matching local log entry for global #49889177
1369dewikibooks Dry run done, would correct 0 actor IDs
1370-----------------------------------------------------------------
1371dewikinews
1372-----------------------------------------------------------------
1373dewikinews More than one matching local log entry for global #49888569
1374dewikinews More than one matching local log entry for global #49888600
1375dewikinews More than one matching local log entry for global #49889177
1376dewikinews Dry run done, would correct 0 actor IDs
1377-----------------------------------------------------------------
1378dewikiquote
1379-----------------------------------------------------------------
1380dewikiquote More than one matching local log entry for global #49888569
1381dewikiquote More than one matching local log entry for global #49888600
1382dewikiquote More than one matching local log entry for global #49889177
1383dewikiquote Dry run done, would correct 0 actor IDs
1384-----------------------------------------------------------------
1385dewikisource
1386-----------------------------------------------------------------
1387dewikisource More than one matching local log entry for global #49888569
1388dewikisource More than one matching local log entry for global #49888600
1389dewikisource More than one matching local log entry for global #49889177
1390dewikisource Dry run done, would correct 0 actor IDs
1391-----------------------------------------------------------------
1392dewikiversity
1393-----------------------------------------------------------------
1394dewikiversity More than one matching local log entry for global #49888569
1395dewikiversity More than one matching local log entry for global #49888600
1396dewikiversity More than one matching local log entry for global #49889177
1397dewikiversity Dry run done, would correct 0 actor IDs
1398-----------------------------------------------------------------
1399dewikivoyage
1400-----------------------------------------------------------------
1401dewikivoyage More than one matching local log entry for global #49888569
1402dewikivoyage More than one matching local log entry for global #49888600
1403dewikivoyage More than one matching local log entry for global #49889177
1404dewikivoyage Dry run done, would correct 0 actor IDs
1405-----------------------------------------------------------------
1406dewiktionary
1407-----------------------------------------------------------------
1408dewiktionary More than one matching local log entry for global #31018521
1409dewiktionary More than one matching local log entry for global #49888569
1410dewiktionary More than one matching local log entry for global #49888600
1411dewiktionary More than one matching local log entry for global #49889177
1412dewiktionary Would update performer for local #10673894 based on global #56770970 from '<INVALID>' to 'Kadı'
1413dewiktionary Dry run done, would correct 1 actor IDs
1414-----------------------------------------------------------------
1415dgawiki
1416-----------------------------------------------------------------
1417dgawiki Dry run done, would correct 0 actor IDs
1418-----------------------------------------------------------------
1419dinwiki
1420-----------------------------------------------------------------
1421dinwiki Dry run done, would correct 0 actor IDs
1422-----------------------------------------------------------------
1423diqwiki
1424-----------------------------------------------------------------
1425diqwiki More than one matching local log entry for global #49888569
1426diqwiki More than one matching local log entry for global #49888600
1427diqwiki More than one matching local log entry for global #49889177
1428diqwiki Dry run done, would correct 0 actor IDs
1429-----------------------------------------------------------------
1430diqwiktionary
1431-----------------------------------------------------------------
1432diqwiktionary Dry run done, would correct 0 actor IDs
1433-----------------------------------------------------------------
1434dkwikimedia
1435-----------------------------------------------------------------
1436dkwikimedia More than one matching local log entry for global #49888569
1437dkwikimedia More than one matching local log entry for global #49888600
1438dkwikimedia More than one matching local log entry for global #49889177
1439dkwikimedia Dry run done, would correct 0 actor IDs
1440-----------------------------------------------------------------
1441dsbwiki
1442-----------------------------------------------------------------
1443dsbwiki Dry run done, would correct 0 actor IDs
1444-----------------------------------------------------------------
1445dtpwiki
1446-----------------------------------------------------------------
1447dtpwiki Dry run done, would correct 0 actor IDs
1448-----------------------------------------------------------------
1449dtywiki
1450-----------------------------------------------------------------
1451dtywiki Dry run done, would correct 0 actor IDs
1452-----------------------------------------------------------------
1453dvwiki
1454-----------------------------------------------------------------
1455dvwiki Dry run done, would correct 0 actor IDs
1456-----------------------------------------------------------------
1457dvwiktionary
1458-----------------------------------------------------------------
1459dvwiktionary Dry run done, would correct 0 actor IDs
1460-----------------------------------------------------------------
1461dzwiki
1462-----------------------------------------------------------------
1463dzwiki More than one matching local log entry for global #49888569
1464dzwiki More than one matching local log entry for global #49888600
1465dzwiki More than one matching local log entry for global #49889177
1466dzwiki Dry run done, would correct 0 actor IDs
1467-----------------------------------------------------------------
1468dzwiktionary
1469-----------------------------------------------------------------
1470dzwiktionary Dry run done, would correct 0 actor IDs
1471-----------------------------------------------------------------
1472eewiki
1473-----------------------------------------------------------------
1474eewiki More than one matching local log entry for global #49888569
1475eewiki More than one matching local log entry for global #49888600
1476eewiki More than one matching local log entry for global #49889177
1477eewiki Dry run done, would correct 0 actor IDs
1478-----------------------------------------------------------------
1479elwiki
1480-----------------------------------------------------------------
1481elwiki More than one matching local log entry for global #49888569
1482elwiki More than one matching local log entry for global #49888600
1483elwiki More than one matching local log entry for global #49889177
1484elwiki More than one matching local log entry for global #55036871
1485elwiki Dry run done, would correct 0 actor IDs
1486-----------------------------------------------------------------
1487elwikibooks
1488-----------------------------------------------------------------
1489elwikibooks Dry run done, would correct 0 actor IDs
1490-----------------------------------------------------------------
1491elwikinews
1492-----------------------------------------------------------------
1493elwikinews Dry run done, would correct 0 actor IDs
1494-----------------------------------------------------------------
1495elwikiquote
1496-----------------------------------------------------------------
1497elwikiquote Dry run done, would correct 0 actor IDs
1498-----------------------------------------------------------------
1499elwikisource
1500-----------------------------------------------------------------
1501elwikisource Dry run done, would correct 0 actor IDs
1502-----------------------------------------------------------------
1503elwikiversity
1504-----------------------------------------------------------------
1505elwikiversity More than one matching local log entry for global #60720302
1506elwikiversity Dry run done, would correct 0 actor IDs
1507-----------------------------------------------------------------
1508elwikivoyage
1509-----------------------------------------------------------------
1510elwikivoyage Dry run done, would correct 0 actor IDs
1511-----------------------------------------------------------------
1512elwiktionary
1513-----------------------------------------------------------------
1514elwiktionary Dry run done, would correct 0 actor IDs
1515-----------------------------------------------------------------
1516emlwiki
1517-----------------------------------------------------------------
1518emlwiki Dry run done, would correct 0 actor IDs
1519-----------------------------------------------------------------
1520enwiki
1521-----------------------------------------------------------------
1522enwiki Would update performer for local #64431639 based on global #11613214 from 'Stryn' to 'Jianhui67'
1523enwiki Would update performer for local #65675997 based on global #11830959 from 'DerHexer' to 'Steinsplitter'
1524enwiki Would update performer for local #65681958 based on global #11833563 from 'Stryn' to 'DerHexer'
1525enwiki Would update performer for local #67693672 based on global #12488259 from 'K6ka' to 'Jianhui67'
1526enwiki More than one matching local log entry for global #12646819
1527enwiki More than one matching local log entry for global #12649639
1528enwiki Would update performer for local #69970266 based on global #13997024 from 'K6ka' to 'MBisanz'
1529enwiki Would update performer for local #71763383 based on global #15237384 from 'Cyberpower678' to 'Maire'
1530enwiki Would update performer for local #87052408 based on global #24523612 from 'MBq' to 'Masti'
1531enwiki More than one matching local log entry for global #29630176
1532enwiki More than one matching local log entry for global #29630188
1533enwiki More than one matching local log entry for global #29630200
1534enwiki More than one matching local log entry for global #29630562
1535enwiki More than one matching local log entry for global #31018521
1536enwiki More than one matching local log entry for global #34168996
1537enwiki More than one matching local log entry for global #34177005
1538enwiki More than one matching local log entry for global #37314299
1539enwiki More than one matching local log entry for global #37314306
1540enwiki More than one matching local log entry for global #39136830
1541enwiki More than one matching local log entry for global #39136939
1542enwiki More than one matching local log entry for global #40252809
1543enwiki More than one matching local log entry for global #40253191
1544enwiki More than one matching local log entry for global #42044645
1545enwiki More than one matching local log entry for global #42044662
1546enwiki Would update performer for local #125177696 based on global #44835257 from 'PhilKnight' to 'Cabayi'
1547enwiki More than one matching local log entry for global #46011965
1548enwiki More than one matching local log entry for global #48133703
1549enwiki More than one matching local log entry for global #48136210
1550enwiki Would update performer for local #137591360 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
1551enwiki More than one matching local log entry for global #49888569
1552enwiki More than one matching local log entry for global #49888600
1553enwiki More than one matching local log entry for global #49889177
1554enwiki Would update performer for local #143899366 based on global #51515001 from 'Easer777' to 'MemicznyJanusz'
1555enwiki Would update performer for local #143899460 based on global #51515008 from 'Easer777' to 'MemicznyJanusz'
1556enwiki Local log entry #143899295 has an invalid user name
1557enwiki Would update performer for local #150608120 based on global #53180812 from '<INVALID>' to 'Neriah'
1558enwiki More than one matching local log entry for global #54596312
1559enwiki More than one matching local log entry for global #54596325
1560enwiki More than one matching local log entry for global #55036871
1561enwiki Would update performer for local #163320607 based on global #56699986 from '<INVALID>' to 'AccountVanishRequests'
1562enwiki Would update performer for local #163320485 based on global #56699988 from '<INVALID>' to 'AccountVanishRequests'
1563enwiki Would update performer for local #163320352 based on global #56699992 from '<INVALID>' to 'AccountVanishRequests'
1564enwiki Would update performer for local #163319546 based on global #56699993 from '<INVALID>' to 'AccountVanishRequests'
1565enwiki Would update performer for local #163319470 based on global #56700001 from '<INVALID>' to 'AccountVanishRequests'
1566enwiki Would update performer for local #163320124 based on global #56700003 from '<INVALID>' to 'AccountVanishRequests'
1567enwiki Would update performer for local #163319959 based on global #56700013 from '<INVALID>' to 'AccountVanishRequests'
1568enwiki Would update performer for local #163319975 based on global #56700023 from '<INVALID>' to 'AccountVanishRequests'
1569enwiki Would update performer for local #163319653 based on global #56700036 from '<INVALID>' to 'AccountVanishRequests'
1570enwiki Would update performer for local #163320011 based on global #56700045 from '<INVALID>' to 'AccountVanishRequests'
1571enwiki Would update performer for local #163293705 based on global #56700073 from '<INVALID>' to 'AccountVanishRequests'
1572enwiki Would update performer for local #163319415 based on global #56700077 from '<INVALID>' to 'AccountVanishRequests'
1573enwiki Would update performer for local #163319908 based on global #56700078 from '<INVALID>' to 'AccountVanishRequests'
1574enwiki Would update performer for local #163320188 based on global #56700107 from '<INVALID>' to 'AccountVanishRequests'
1575enwiki Would update performer for local #163320700 based on global #56700114 from '<INVALID>' to 'AccountVanishRequests'
1576enwiki Would update performer for local #163319350 based on global #56700115 from '<INVALID>' to 'AccountVanishRequests'
1577enwiki Would update performer for local #163320287 based on global #56700117 from '<INVALID>' to 'AccountVanishRequests'
1578enwiki Would update performer for local #163320666 based on global #56700120 from '<INVALID>' to 'AccountVanishRequests'
1579enwiki Would update performer for local #163319777 based on global #56700126 from '<INVALID>' to 'AccountVanishRequests'
1580enwiki Would update performer for local #163320627 based on global #56700170 from '<INVALID>' to 'AccountVanishRequests'
1581enwiki Would update performer for local #163319341 based on global #56700171 from '<INVALID>' to 'AccountVanishRequests'
1582enwiki Would update performer for local #163319790 based on global #56700181 from '<INVALID>' to 'AccountVanishRequests'
1583enwiki Would update performer for local #163320733 based on global #56700214 from '<INVALID>' to 'AccountVanishRequests'
1584enwiki Would update performer for local #163320425 based on global #56700221 from '<INVALID>' to 'AccountVanishRequests'
1585enwiki Would update performer for local #163319670 based on global #56700222 from '<INVALID>' to 'AccountVanishRequests'
1586enwiki Would update performer for local #163293685 based on global #56700225 from '<INVALID>' to 'AccountVanishRequests'
1587enwiki Would update performer for local #163319524 based on global #56700226 from '<INVALID>' to 'AccountVanishRequests'
1588enwiki Would update performer for local #163319575 based on global #56700233 from '<INVALID>' to 'AccountVanishRequests'
1589enwiki Would update performer for local #163320203 based on global #56700236 from '<INVALID>' to 'AccountVanishRequests'
1590enwiki Would update performer for local #163320408 based on global #56700242 from '<INVALID>' to 'AccountVanishRequests'
1591enwiki Would update performer for local #163319427 based on global #56700244 from '<INVALID>' to 'AccountVanishRequests'
1592enwiki Would update performer for local #163293697 based on global #56700252 from '<INVALID>' to 'AccountVanishRequests'
1593enwiki Would update performer for local #163320106 based on global #56700253 from '<INVALID>' to 'AccountVanishRequests'
1594enwiki Would update performer for local #163320340 based on global #56700258 from '<INVALID>' to 'AccountVanishRequests'
1595enwiki Would update performer for local #163319609 based on global #56700263 from '<INVALID>' to 'AccountVanishRequests'
1596enwiki Would update performer for local #163320649 based on global #56700265 from '<INVALID>' to 'AccountVanishRequests'
1597enwiki Would update performer for local #163319516 based on global #56700266 from '<INVALID>' to 'AccountVanishRequests'
1598enwiki Would update performer for local #163320036 based on global #56700267 from '<INVALID>' to 'AccountVanishRequests'
1599enwiki Would update performer for local #163320262 based on global #56700269 from '<INVALID>' to 'AccountVanishRequests'
1600enwiki Would update performer for local #163319360 based on global #56700271 from '<INVALID>' to 'AccountVanishRequests'
1601enwiki Would update performer for local #163320508 based on global #56700273 from '<INVALID>' to 'AccountVanishRequests'
1602enwiki Would update performer for local #163320113 based on global #56700276 from '<INVALID>' to 'AccountVanishRequests'
1603enwiki Would update performer for local #163319627 based on global #56700277 from '<INVALID>' to 'AccountVanishRequests'
1604enwiki Would update performer for local #163319889 based on global #56700279 from '<INVALID>' to 'AccountVanishRequests'
1605enwiki Would update performer for local #163319602 based on global #56700280 from '<INVALID>' to 'AccountVanishRequests'
1606enwiki Would update performer for local #163319307 based on global #56700283 from '<INVALID>' to 'AccountVanishRequests'
1607enwiki Would update performer for local #163319405 based on global #56700285 from '<INVALID>' to 'AccountVanishRequests'
1608enwiki Would update performer for local #163320040 based on global #56700292 from '<INVALID>' to 'AccountVanishRequests'
1609enwiki Would update performer for local #163320518 based on global #56700293 from '<INVALID>' to 'AccountVanishRequests'
1610enwiki Would update performer for local #163319648 based on global #56700303 from '<INVALID>' to 'AccountVanishRequests'
1611enwiki Would update performer for local #163320197 based on global #56700309 from '<INVALID>' to 'AccountVanishRequests'
1612enwiki Would update performer for local #163320784 based on global #56700311 from '<INVALID>' to 'AccountVanishRequests'
1613enwiki Would update performer for local #163320740 based on global #56700315 from '<INVALID>' to 'AccountVanishRequests'
1614enwiki Would update performer for local #163320277 based on global #56700316 from '<INVALID>' to 'AccountVanishRequests'
1615enwiki Would update performer for local #163319711 based on global #56700318 from '<INVALID>' to 'AccountVanishRequests'
1616enwiki Would update performer for local #163319798 based on global #56700319 from '<INVALID>' to 'AccountVanishRequests'
1617enwiki Would update performer for local #163320358 based on global #56700322 from '<INVALID>' to 'AccountVanishRequests'
1618enwiki Would update performer for local #163319659 based on global #56700325 from '<INVALID>' to 'AccountVanishRequests'
1619enwiki Would update performer for local #163293681 based on global #56700328 from '<INVALID>' to 'AccountVanishRequests'
1620enwiki Would update performer for local #163319443 based on global #56700336 from '<INVALID>' to 'AccountVanishRequests'
1621enwiki Would update performer for local #163319633 based on global #56700337 from '<INVALID>' to 'AccountVanishRequests'
1622enwiki Would update performer for local #163319931 based on global #56700339 from '<INVALID>' to 'AccountVanishRequests'
1623enwiki Would update performer for local #163320269 based on global #56700357 from '<INVALID>' to 'AccountVanishRequests'
1624enwiki Would update performer for local #163320296 based on global #56700360 from '<INVALID>' to 'AccountVanishRequests'
1625enwiki Would update performer for local #163319301 based on global #56700362 from '<INVALID>' to 'AccountVanishRequests'
1626enwiki Would update performer for local #163319455 based on global #56700364 from '<INVALID>' to 'AccountVanishRequests'
1627enwiki Would update performer for local #163320168 based on global #56700365 from '<INVALID>' to 'AccountVanishRequests'
1628enwiki Would update performer for local #163320018 based on global #56700366 from '<INVALID>' to 'AccountVanishRequests'
1629enwiki Would update performer for local #163293710 based on global #56700370 from '<INVALID>' to 'AccountVanishRequests'
1630enwiki Would update performer for local #163319839 based on global #56700371 from '<INVALID>' to 'AccountVanishRequests'
1631enwiki Would update performer for local #163319936 based on global #56700372 from '<INVALID>' to 'AccountVanishRequests'
1632enwiki Would update performer for local #163320502 based on global #56700373 from '<INVALID>' to 'AccountVanishRequests'
1633enwiki Would update performer for local #163320383 based on global #56700374 from '<INVALID>' to 'AccountVanishRequests'
1634enwiki Would update performer for local #163319449 based on global #56700375 from '<INVALID>' to 'AccountVanishRequests'
1635enwiki Would update performer for local #163320178 based on global #56700378 from '<INVALID>' to 'AccountVanishRequests'
1636enwiki Would update performer for local #163319679 based on global #56700379 from '<INVALID>' to 'AccountVanishRequests'
1637enwiki Would update performer for local #163319704 based on global #56700380 from '<INVALID>' to 'AccountVanishRequests'
1638enwiki Would update performer for local #163320620 based on global #56700381 from '<INVALID>' to 'AccountVanishRequests'
1639enwiki Would update performer for local #163320366 based on global #56700384 from '<INVALID>' to 'AccountVanishRequests'
1640enwiki Would update performer for local #163319722 based on global #56700391 from '<INVALID>' to 'AccountVanishRequests'
1641enwiki Would update performer for local #163320376 based on global #56700394 from '<INVALID>' to 'AccountVanishRequests'
1642enwiki Would update performer for local #163320465 based on global #56700649 from '<INVALID>' to 'AccountVanishRequests'
1643enwiki Would update performer for local #163320198 based on global #56700663 from '<INVALID>' to 'AccountVanishRequests'
1644enwiki Would update performer for local #163320081 based on global #56700668 from '<INVALID>' to 'AccountVanishRequests'
1645enwiki Would update performer for local #163320688 based on global #56700672 from '<INVALID>' to 'AccountVanishRequests'
1646enwiki Would update performer for local #163320129 based on global #56700677 from '<INVALID>' to 'AccountVanishRequests'
1647enwiki Would update performer for local #163319853 based on global #56700681 from '<INVALID>' to 'AccountVanishRequests'
1648enwiki Would update performer for local #163320064 based on global #56700688 from '<INVALID>' to 'AccountVanishRequests'
1649enwiki Would update performer for local #163320222 based on global #56700691 from '<INVALID>' to 'AccountVanishRequests'
1650enwiki Would update performer for local #163320614 based on global #56700694 from '<INVALID>' to 'AccountVanishRequests'
1651enwiki Would update performer for local #163320446 based on global #56700699 from '<INVALID>' to 'AccountVanishRequests'
1652enwiki Would update performer for local #163293715 based on global #56700700 from '<INVALID>' to 'AccountVanishRequests'
1653enwiki Would update performer for local #163319756 based on global #56700733 from '<INVALID>' to 'AccountVanishRequests'
1654enwiki Would update performer for local #163320240 based on global #56700742 from '<INVALID>' to 'AccountVanishRequests'
1655enwiki Would update performer for local #163320494 based on global #56700744 from '<INVALID>' to 'AccountVanishRequests'
1656enwiki Would update performer for local #163319862 based on global #56700745 from '<INVALID>' to 'AccountVanishRequests'
1657enwiki Would update performer for local #163320049 based on global #56700746 from '<INVALID>' to 'AccountVanishRequests'
1658enwiki Would update performer for local #163319730 based on global #56700750 from '<INVALID>' to 'AccountVanishRequests'
1659enwiki Would update performer for local #163320030 based on global #56700754 from '<INVALID>' to 'AccountVanishRequests'
1660enwiki Would update performer for local #163319482 based on global #56700756 from '<INVALID>' to 'AccountVanishRequests'
1661enwiki Would update performer for local #163320416 based on global #56700758 from '<INVALID>' to 'AccountVanishRequests'
1662enwiki Would update performer for local #163320533 based on global #56700760 from '<INVALID>' to 'AccountVanishRequests'
1663enwiki Would update performer for local #163319563 based on global #56700766 from '<INVALID>' to 'AccountVanishRequests'
1664enwiki Would update performer for local #163320003 based on global #56700771 from '<INVALID>' to 'AccountVanishRequests'
1665enwiki Would update performer for local #163319616 based on global #56700779 from '<INVALID>' to 'AccountVanishRequests'
1666enwiki Would update performer for local #163320318 based on global #56700788 from '<INVALID>' to 'AccountVanishRequests'
1667enwiki Would update performer for local #163319748 based on global #56700792 from '<INVALID>' to 'AccountVanishRequests'
1668enwiki Would update performer for local #163320636 based on global #56700804 from '<INVALID>' to 'AccountVanishRequests'
1669enwiki Would update performer for local #163320309 based on global #56700807 from '<INVALID>' to 'AccountVanishRequests'
1670enwiki Would update performer for local #163320138 based on global #56700830 from '<INVALID>' to 'AccountVanishRequests'
1671enwiki Would update performer for local #163319294 based on global #56700842 from '<INVALID>' to 'AccountVanishRequests'
1672enwiki Would update performer for local #163320057 based on global #56700846 from '<INVALID>' to 'AccountVanishRequests'
1673enwiki Would update performer for local #163320461 based on global #56700847 from '<INVALID>' to 'AccountVanishRequests'
1674enwiki Would update performer for local #163320068 based on global #56700849 from '<INVALID>' to 'AccountVanishRequests'
1675enwiki Would update performer for local #163320570 based on global #56700853 from '<INVALID>' to 'AccountVanishRequests'
1676enwiki Would update performer for local #163320723 based on global #56700854 from '<INVALID>' to 'AccountVanishRequests'
1677enwiki Would update performer for local #163319316 based on global #56700859 from '<INVALID>' to 'AccountVanishRequests'
1678enwiki Would update performer for local #163319812 based on global #56700861 from '<INVALID>' to 'AccountVanishRequests'
1679enwiki Would update performer for local #163320304 based on global #56700864 from '<INVALID>' to 'AccountVanishRequests'
1680enwiki Would update performer for local #163320075 based on global #56700865 from '<INVALID>' to 'AccountVanishRequests'
1681enwiki Would update performer for local #163320256 based on global #56700866 from '<INVALID>' to 'AccountVanishRequests'
1682enwiki Would update performer for local #163319534 based on global #56700869 from '<INVALID>' to 'AccountVanishRequests'
1683enwiki Would update performer for local #163320797 based on global #56700885 from '<INVALID>' to 'AccountVanishRequests'
1684enwiki Would update performer for local #163293652 based on global #56700892 from '<INVALID>' to 'AccountVanishRequests'
1685enwiki Would update performer for local #163293343 based on global #56700894 from '<INVALID>' to 'AccountVanishRequests'
1686enwiki Would update performer for local #163319845 based on global #56700899 from '<INVALID>' to 'AccountVanishRequests'
1687enwiki Would update performer for local #163320441 based on global #56700903 from '<INVALID>' to 'AccountVanishRequests'
1688enwiki Would update performer for local #163319505 based on global #56700908 from '<INVALID>' to 'AccountVanishRequests'
1689enwiki Would update performer for local #163320479 based on global #56700909 from '<INVALID>' to 'AccountVanishRequests'
1690enwiki Would update performer for local #163319943 based on global #56700917 from '<INVALID>' to 'AccountVanishRequests'
1691enwiki Would update performer for local #163320391 based on global #56700929 from '<INVALID>' to 'AccountVanishRequests'
1692enwiki Would update performer for local #163319950 based on global #56700936 from '<INVALID>' to 'AccountVanishRequests'
1693enwiki Would update performer for local #163319809 based on global #56700956 from '<INVALID>' to 'AccountVanishRequests'
1694enwiki Would update performer for local #163293660 based on global #56700958 from '<INVALID>' to 'AccountVanishRequests'
1695enwiki Would update performer for local #163293645 based on global #56700959 from '<INVALID>' to 'AccountVanishRequests'
1696enwiki Would update performer for local #163320546 based on global #56700970 from '<INVALID>' to 'AccountVanishRequests'
1697enwiki Would update performer for local #163320773 based on global #56700973 from '<INVALID>' to 'AccountVanishRequests'
1698enwiki Would update performer for local #163319919 based on global #56700976 from '<INVALID>' to 'AccountVanishRequests'
1699enwiki Would update performer for local #163320213 based on global #56700979 from '<INVALID>' to 'AccountVanishRequests'
1700enwiki Would update performer for local #163319886 based on global #56700981 from '<INVALID>' to 'AccountVanishRequests'
1701enwiki Would update performer for local #163319594 based on global #56700982 from '<INVALID>' to 'AccountVanishRequests'
1702enwiki Would update performer for local #163320763 based on global #56700984 from '<INVALID>' to 'AccountVanishRequests'
1703enwiki Would update performer for local #163319994 based on global #56700985 from '<INVALID>' to 'AccountVanishRequests'
1704enwiki Would update performer for local #163320456 based on global #56700986 from '<INVALID>' to 'AccountVanishRequests'
1705enwiki Would update performer for local #163319435 based on global #56700987 from '<INVALID>' to 'AccountVanishRequests'
1706enwiki Would update performer for local #163319492 based on global #56700988 from '<INVALID>' to 'AccountVanishRequests'
1707enwiki Would update performer for local #163320328 based on global #56700991 from '<INVALID>' to 'AccountVanishRequests'
1708enwiki Would update performer for local #163319568 based on global #56700996 from '<INVALID>' to 'AccountVanishRequests'
1709enwiki Would update performer for local #163293667 based on global #56700998 from '<INVALID>' to 'AccountVanishRequests'
1710enwiki Would update performer for local #163319985 based on global #56701005 from '<INVALID>' to 'AccountVanishRequests'
1711enwiki Would update performer for local #163320656 based on global #56701008 from '<INVALID>' to 'AccountVanishRequests'
1712enwiki Would update performer for local #163293319 based on global #56701009 from '<INVALID>' to 'AccountVanishRequests'
1713enwiki Would update performer for local #163320432 based on global #56701011 from '<INVALID>' to 'AccountVanishRequests'
1714enwiki Would update performer for local #163320792 based on global #56701027 from '<INVALID>' to 'AccountVanishRequests'
1715enwiki Would update performer for local #163320471 based on global #56701048 from '<INVALID>' to 'AccountVanishRequests'
1716enwiki Would update performer for local #163320752 based on global #56701051 from '<INVALID>' to 'AccountVanishRequests'
1717enwiki Would update performer for local #163319383 based on global #56701052 from '<INVALID>' to 'AccountVanishRequests'
1718enwiki Would update performer for local #163320396 based on global #56701054 from '<INVALID>' to 'AccountVanishRequests'
1719enwiki Would update performer for local #163319966 based on global #56701055 from '<INVALID>' to 'AccountVanishRequests'
1720enwiki Would update performer for local #163320713 based on global #56701058 from '<INVALID>' to 'AccountVanishRequests'
1721enwiki Would update performer for local #163319392 based on global #56701061 from '<INVALID>' to 'AccountVanishRequests'
1722enwiki Would update performer for local #163320524 based on global #56701068 from '<INVALID>' to 'AccountVanishRequests'
1723enwiki Would update performer for local #163319882 based on global #56701070 from '<INVALID>' to 'AccountVanishRequests'
1724enwiki Would update performer for local #163319586 based on global #56701080 from '<INVALID>' to 'AccountVanishRequests'
1725enwiki Would update performer for local #163320450 based on global #56701090 from '<INVALID>' to 'AccountVanishRequests'
1726enwiki Would update performer for local #163320596 based on global #56701091 from '<INVALID>' to 'AccountVanishRequests'
1727enwiki Would update performer for local #163320094 based on global #56701093 from '<INVALID>' to 'AccountVanishRequests'
1728enwiki Would update performer for local #163320559 based on global #56701101 from '<INVALID>' to 'AccountVanishRequests'
1729enwiki Would update performer for local #163293693 based on global #56701109 from '<INVALID>' to 'AccountVanishRequests'
1730enwiki Would update performer for local #163320369 based on global #56701110 from '<INVALID>' to 'AccountVanishRequests'
1731enwiki Would update performer for local #163319697 based on global #56701114 from '<INVALID>' to 'AccountVanishRequests'
1732enwiki Would update performer for local #163319738 based on global #56701115 from '<INVALID>' to 'AccountVanishRequests'
1733enwiki Would update performer for local #163320235 based on global #56701117 from '<INVALID>' to 'AccountVanishRequests'
1734enwiki Would update performer for local #163320246 based on global #56701126 from '<INVALID>' to 'AccountVanishRequests'
1735enwiki Would update performer for local #163319689 based on global #56701131 from '<INVALID>' to 'AccountVanishRequests'
1736enwiki Would update performer for local #163319764 based on global #56701142 from '<INVALID>' to 'AccountVanishRequests'
1737enwiki Would update performer for local #163319982 based on global #56701144 from '<INVALID>' to 'AccountVanishRequests'
1738enwiki Would update performer for local #163319899 based on global #56701149 from '<INVALID>' to 'AccountVanishRequests'
1739enwiki Would update performer for local #163320681 based on global #56701157 from '<INVALID>' to 'AccountVanishRequests'
1740enwiki Would update performer for local #163319559 based on global #56701163 from '<INVALID>' to 'AccountVanishRequests'
1741enwiki Would update performer for local #163320578 based on global #56701165 from '<INVALID>' to 'AccountVanishRequests'
1742enwiki Would update performer for local #163319551 based on global #56701168 from '<INVALID>' to 'AccountVanishRequests'
1743enwiki Would update performer for local #163319636 based on global #56701185 from '<INVALID>' to 'AccountVanishRequests'
1744enwiki Would update performer for local #163319821 based on global #56701187 from '<INVALID>' to 'AccountVanishRequests'
1745enwiki Would update performer for local #163319329 based on global #56701196 from '<INVALID>' to 'AccountVanishRequests'
1746enwiki Would update performer for local #163319829 based on global #56701198 from '<INVALID>' to 'AccountVanishRequests'
1747enwiki Would update performer for local #163321715 based on global #56701719 from '<INVALID>' to 'A09'
1748enwiki Local log entry #163320583 has an invalid user name
1749enwiki Would update performer for local #163729677 based on global #56918760 from '<INVALID>' to 'AccountVanishRequests'
1750enwiki Would update performer for local #163730056 based on global #56923642 from '<INVALID>' to 'AccountVanishRequests'
1751enwiki Would update performer for local #163729973 based on global #56924221 from '<INVALID>' to 'AccountVanishRequests'
1752enwiki Would update performer for local #163730357 based on global #56929085 from '<INVALID>' to 'AccountVanishRequests'
1753enwiki Would update performer for local #163729322 based on global #56938057 from '<INVALID>' to 'AccountVanishRequests'
1754enwiki Would update performer for local #163837569 based on global #56975952 from '<INVALID>' to 'AccountVanishRequests'
1755enwiki Would update performer for local #163835542 based on global #56979265 from '<INVALID>' to 'AccountVanishRequests'
1756enwiki Would update performer for local #163837719 based on global #56987126 from '<INVALID>' to 'AccountVanishRequests'
1757enwiki Would update performer for local #164426027 based on global #57208710 from '<INVALID>' to 'AccountVanishRequests'
1758enwiki Would update performer for local #164426087 based on global #57256879 from 'Billmckern' to 'Itti'
1759enwiki Would update performer for local #164587407 based on global #57343750 from '<INVALID>' to 'AccountVanishRequests'
1760enwiki Local log entry #168281279 has an invalid user name
1761enwiki More than one matching local log entry for global #59609932
1762enwiki More than one matching local log entry for global #59619180
1763enwiki Local log entry #170098105 has an invalid user name
1764enwiki Would update performer for local #170222205 based on global #60110192 from '<INVALID>' to 'AccountVanishRequests'
1765enwiki Local log entry #170335642 has an invalid user name
1766enwiki Dry run done, would correct 211 actor IDs
1767-----------------------------------------------------------------
1768enwikibooks
1769-----------------------------------------------------------------
1770enwikibooks Would update performer for local #3409830 based on global #12488259 from 'K6ka' to 'Jianhui67'
1771enwikibooks More than one matching local log entry for global #12646819
1772enwikibooks More than one matching local log entry for global #12649639
1773enwikibooks Would update performer for local #3661302 based on global #13997024 from 'K6ka' to 'MBisanz'
1774enwikibooks Would update performer for local #3883927 based on global #15237384 from 'Cyberpower678' to 'Maire'
1775enwikibooks More than one matching local log entry for global #34168996
1776enwikibooks More than one matching local log entry for global #34177005
1777enwikibooks More than one matching local log entry for global #46011965
1778enwikibooks More than one matching local log entry for global #49888569
1779enwikibooks More than one matching local log entry for global #49888600
1780enwikibooks More than one matching local log entry for global #49889177
1781enwikibooks Would update performer for local #5252522 based on global #59710065 from 'Arnold Tshiamo' to 'Xaosflux'
1782enwikibooks Would update performer for local #5259173 based on global #60294321 from '<INVALID>' to 'A09'
1783enwikibooks Would update performer for local #5262439 based on global #60499326 from '<INVALID>' to 'Aqurs1'
1784enwikibooks Dry run done, would correct 6 actor IDs
1785-----------------------------------------------------------------
1786enwikinews
1787-----------------------------------------------------------------
1788enwikinews Would update performer for local #2922784 based on global #12488259 from 'K6ka' to 'Jianhui67'
1789enwikinews More than one matching local log entry for global #12646819
1790enwikinews More than one matching local log entry for global #12649639
1791enwikinews Would update performer for local #3164560 based on global #13997024 from 'K6ka' to 'MBisanz'
1792enwikinews Would update performer for local #3380700 based on global #15237384 from 'Cyberpower678' to 'Maire'
1793enwikinews More than one matching local log entry for global #34168996
1794enwikinews More than one matching local log entry for global #34177005
1795enwikinews More than one matching local log entry for global #46011965
1796enwikinews More than one matching local log entry for global #49888569
1797enwikinews More than one matching local log entry for global #49888600
1798enwikinews More than one matching local log entry for global #49889177
1799enwikinews More than one matching local log entry for global #55036871
1800enwikinews Dry run done, would correct 3 actor IDs
1801-----------------------------------------------------------------
1802enwikiquote
1803-----------------------------------------------------------------
1804enwikiquote Would update performer for local #2503013 based on global #12488259 from 'K6ka' to 'Jianhui67'
1805enwikiquote More than one matching local log entry for global #12646819
1806enwikiquote More than one matching local log entry for global #12649639
1807enwikiquote Would update performer for local #2728856 based on global #13997024 from 'K6ka' to 'MBisanz'
1808enwikiquote Would update performer for local #2930646 based on global #15237384 from 'Cyberpower678' to 'Maire'
1809enwikiquote More than one matching local log entry for global #34168996
1810enwikiquote More than one matching local log entry for global #34177005
1811enwikiquote More than one matching local log entry for global #46011965
1812enwikiquote More than one matching local log entry for global #49888569
1813enwikiquote More than one matching local log entry for global #49888600
1814enwikiquote More than one matching local log entry for global #49889177
1815enwikiquote More than one matching local log entry for global #55036871
1816enwikiquote More than one matching local log entry for global #59609932
1817enwikiquote More than one matching local log entry for global #59619180
1818enwikiquote Would update performer for local #3560670 based on global #60251799 from '<INVALID>' to 'Ontzak'
1819enwikiquote Dry run done, would correct 4 actor IDs
1820-----------------------------------------------------------------
1821enwikisource
1822-----------------------------------------------------------------
1823enwikisource Would update performer for local #6936342 based on global #12488259 from 'K6ka' to 'Jianhui67'
1824enwikisource More than one matching local log entry for global #12646819
1825enwikisource More than one matching local log entry for global #12649639
1826enwikisource Would update performer for local #7401540 based on global #13997024 from 'K6ka' to 'MBisanz'
1827enwikisource Would update performer for local #7884812 based on global #15237384 from 'Cyberpower678' to 'Maire'
1828enwikisource More than one matching local log entry for global #34168996
1829enwikisource More than one matching local log entry for global #34177005
1830enwikisource More than one matching local log entry for global #46011965
1831enwikisource More than one matching local log entry for global #49888569
1832enwikisource More than one matching local log entry for global #49888600
1833enwikisource More than one matching local log entry for global #49889177
1834enwikisource More than one matching local log entry for global #55036871
1835enwikisource Dry run done, would correct 3 actor IDs
1836-----------------------------------------------------------------
1837enwikiversity
1838-----------------------------------------------------------------
1839enwikiversity Would update performer for local #2484036 based on global #12488259 from 'K6ka' to 'Jianhui67'
1840enwikiversity More than one matching local log entry for global #12646819
1841enwikiversity More than one matching local log entry for global #12649639
1842enwikiversity Would update performer for local #2709001 based on global #13997024 from 'K6ka' to 'MBisanz'
1843enwikiversity Would update performer for local #2912047 based on global #15237384 from 'Cyberpower678' to 'Maire'
1844enwikiversity More than one matching local log entry for global #34168996
1845enwikiversity More than one matching local log entry for global #34177005
1846enwikiversity More than one matching local log entry for global #46011965
1847enwikiversity More than one matching local log entry for global #49888569
1848enwikiversity More than one matching local log entry for global #49888600
1849enwikiversity More than one matching local log entry for global #49889177
1850enwikiversity More than one matching local log entry for global #55036871
1851enwikiversity Dry run done, would correct 3 actor IDs
1852-----------------------------------------------------------------
1853enwikivoyage
1854-----------------------------------------------------------------
1855enwikivoyage Would update performer for local #2159563 based on global #11613214 from 'Stryn' to 'Jianhui67'
1856enwikivoyage Would update performer for local #2433490 based on global #12488259 from 'K6ka' to 'Jianhui67'
1857enwikivoyage More than one matching local log entry for global #12646819
1858enwikivoyage More than one matching local log entry for global #12649639
1859enwikivoyage Would update performer for local #2689155 based on global #13997024 from 'K6ka' to 'MBisanz'
1860enwikivoyage Would update performer for local #2908438 based on global #15237384 from 'Cyberpower678' to 'Maire'
1861enwikivoyage More than one matching local log entry for global #34168996
1862enwikivoyage More than one matching local log entry for global #34177005
1863enwikivoyage More than one matching local log entry for global #46011965
1864enwikivoyage More than one matching local log entry for global #49888569
1865enwikivoyage More than one matching local log entry for global #49888600
1866enwikivoyage More than one matching local log entry for global #49889177
1867enwikivoyage Would update performer for local #3881779 based on global #59648559 from '<INVALID>' to 'Aqurs1'
1868enwikivoyage Dry run done, would correct 5 actor IDs
1869-----------------------------------------------------------------
1870enwiktionary
1871-----------------------------------------------------------------
1872enwiktionary Would update performer for local #31581041 based on global #12488259 from 'K6ka' to 'Jianhui67'
1873enwiktionary More than one matching local log entry for global #12646819
1874enwiktionary More than one matching local log entry for global #12649639
1875enwiktionary Would update performer for local #33256659 based on global #13997024 from 'K6ka' to 'MBisanz'
1876enwiktionary Would update performer for local #34747209 based on global #15237384 from 'Cyberpower678' to 'Maire'
1877enwiktionary More than one matching local log entry for global #34168996
1878enwiktionary More than one matching local log entry for global #34177005
1879enwiktionary More than one matching local log entry for global #46011965
1880enwiktionary More than one matching local log entry for global #49888569
1881enwiktionary More than one matching local log entry for global #49888600
1882enwiktionary More than one matching local log entry for global #49889177
1883enwiktionary More than one matching local log entry for global #55036871
1884enwiktionary Would update performer for local #53074695 based on global #56626868 from 'Lalasf11' to 'Jules*'
1885enwiktionary Would update performer for local #53869890 based on global #59563510 from '<INVALID>' to 'Hide on Rosé'
1886enwiktionary More than one matching local log entry for global #59609932
1887enwiktionary More than one matching local log entry for global #59619180
1888enwiktionary Dry run done, would correct 5 actor IDs
1889-----------------------------------------------------------------
1890eowiki
1891-----------------------------------------------------------------
1892eowiki More than one matching local log entry for global #49888569
1893eowiki More than one matching local log entry for global #49888600
1894eowiki More than one matching local log entry for global #49889177
1895eowiki Would update performer for local #4218186 based on global #55799514 from 'NuevoNMD2' to 'JJMC89'
1896eowiki Dry run done, would correct 1 actor IDs
1897-----------------------------------------------------------------
1898eowikibooks
1899-----------------------------------------------------------------
1900eowikibooks Dry run done, would correct 0 actor IDs
1901-----------------------------------------------------------------
1902eowikinews
1903-----------------------------------------------------------------
1904eowikinews Dry run done, would correct 0 actor IDs
1905-----------------------------------------------------------------
1906eowikiquote
1907-----------------------------------------------------------------
1908eowikiquote Dry run done, would correct 0 actor IDs
1909-----------------------------------------------------------------
1910eowikisource
1911-----------------------------------------------------------------
1912eowikisource Dry run done, would correct 0 actor IDs
1913-----------------------------------------------------------------
1914eowikivoyage
1915-----------------------------------------------------------------
1916eowikivoyage Dry run done, would correct 0 actor IDs
1917-----------------------------------------------------------------
1918eowiktionary
1919-----------------------------------------------------------------
1920eowiktionary Dry run done, would correct 0 actor IDs
1921-----------------------------------------------------------------
1922eswiki
1923-----------------------------------------------------------------
1924eswiki Would update performer for local #9026709 based on global #11767002 from 'Jmvkrecords' to 'Shanmugamp7'
1925eswiki Would update performer for local #9824828 based on global #15237384 from 'Cyberpower678' to 'Maire'
1926eswiki Would update performer for local #11551001 based on global #24523612 from 'MBq' to 'Masti'
1927eswiki Would update performer for local #20339008 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
1928eswiki More than one matching local log entry for global #49888569
1929eswiki More than one matching local log entry for global #49888600
1930eswiki More than one matching local log entry for global #49889177
1931eswiki More than one matching local log entry for global #55036871
1932eswiki Would update performer for local #26437688 based on global #56130159 from 'Recaman' to 'Ontzak'
1933eswiki Would update performer for local #26592392 based on global #56701719 from '<INVALID>' to 'A09'
1934eswiki Would update performer for local #26632153 based on global #56921682 from '<INVALID>' to 'AccountVanishRequests'
1935eswiki Would update performer for local #27422776 based on global #60225079 from '<INVALID>' to 'Hide on Rosé'
1936eswiki Would update performer for local #27524464 based on global #60517493 from '<INVALID>' to 'A09'
1937eswiki Dry run done, would correct 9 actor IDs
1938-----------------------------------------------------------------
1939eswikibooks
1940-----------------------------------------------------------------
1941eswikibooks Dry run done, would correct 0 actor IDs
1942-----------------------------------------------------------------
1943eswikinews
1944-----------------------------------------------------------------
1945eswikinews Dry run done, would correct 0 actor IDs
1946-----------------------------------------------------------------
1947eswikiquote
1948-----------------------------------------------------------------
1949eswikiquote Dry run done, would correct 0 actor IDs
1950-----------------------------------------------------------------
1951eswikisource
1952-----------------------------------------------------------------
1953eswikisource Dry run done, would correct 0 actor IDs
1954-----------------------------------------------------------------
1955eswikiversity
1956-----------------------------------------------------------------
1957eswikiversity Dry run done, would correct 0 actor IDs
1958-----------------------------------------------------------------
1959eswikivoyage
1960-----------------------------------------------------------------
1961eswikivoyage More than one matching local log entry for global #16455928
1962eswikivoyage Dry run done, would correct 0 actor IDs
1963-----------------------------------------------------------------
1964eswiktionary
1965-----------------------------------------------------------------
1966eswiktionary Dry run done, would correct 0 actor IDs
1967-----------------------------------------------------------------
1968etwiki
1969-----------------------------------------------------------------
1970etwiki Would update performer for local #328027 based on global #15237384 from 'Cyberpower678' to 'Maire'
1971etwiki More than one matching local log entry for global #49888569
1972etwiki More than one matching local log entry for global #49888600
1973etwiki More than one matching local log entry for global #49889177
1974etwiki Dry run done, would correct 1 actor IDs
1975-----------------------------------------------------------------
1976etwikibooks
1977-----------------------------------------------------------------
1978etwikibooks More than one matching local log entry for global #15473085
1979etwikibooks Dry run done, would correct 0 actor IDs
1980-----------------------------------------------------------------
1981etwikimedia
1982-----------------------------------------------------------------
1983etwikimedia Dry run done, would correct 0 actor IDs
1984-----------------------------------------------------------------
1985etwikiquote
1986-----------------------------------------------------------------
1987etwikiquote Dry run done, would correct 0 actor IDs
1988-----------------------------------------------------------------
1989etwikisource
1990-----------------------------------------------------------------
1991etwikisource Dry run done, would correct 0 actor IDs
1992-----------------------------------------------------------------
1993etwiktionary
1994-----------------------------------------------------------------
1995etwiktionary Dry run done, would correct 0 actor IDs
1996-----------------------------------------------------------------
1997euwiki
1998-----------------------------------------------------------------
1999euwiki More than one matching local log entry for global #49888569
2000euwiki More than one matching local log entry for global #49888600
2001euwiki More than one matching local log entry for global #49889177
2002euwiki More than one matching local log entry for global #55036871
2003euwiki Dry run done, would correct 0 actor IDs
2004-----------------------------------------------------------------
2005euwikibooks
2006-----------------------------------------------------------------
2007euwikibooks Dry run done, would correct 0 actor IDs
2008-----------------------------------------------------------------
2009euwikiquote
2010-----------------------------------------------------------------
2011euwikiquote Dry run done, would correct 0 actor IDs
2012-----------------------------------------------------------------
2013euwikisource
2014-----------------------------------------------------------------
2015euwikisource Dry run done, would correct 0 actor IDs
2016-----------------------------------------------------------------
2017euwiktionary
2018-----------------------------------------------------------------
2019euwiktionary Dry run done, would correct 0 actor IDs
2020-----------------------------------------------------------------
2021extwiki
2022-----------------------------------------------------------------
2023extwiki Dry run done, would correct 0 actor IDs
2024-----------------------------------------------------------------
2025fatwiki
2026-----------------------------------------------------------------
2027fatwiki Dry run done, would correct 0 actor IDs
2028-----------------------------------------------------------------
2029fawiki
2030-----------------------------------------------------------------
2031fawiki More than one matching local log entry for global #9868169
2032fawiki More than one matching local log entry for global #49888569
2033fawiki More than one matching local log entry for global #49888600
2034fawiki More than one matching local log entry for global #49889177
2035fawiki More than one matching local log entry for global #59609932
2036fawiki More than one matching local log entry for global #59619180
2037fawiki Would update performer for local #18970640 based on global #59932392 from '<INVALID>' to 'Iming'
2038fawiki Dry run done, would correct 1 actor IDs
2039-----------------------------------------------------------------
2040fawikibooks
2041-----------------------------------------------------------------
2042fawikibooks Dry run done, would correct 0 actor IDs
2043-----------------------------------------------------------------
2044fawikinews
2045-----------------------------------------------------------------
2046fawikinews Dry run done, would correct 0 actor IDs
2047-----------------------------------------------------------------
2048fawikiquote
2049-----------------------------------------------------------------
2050fawikiquote Dry run done, would correct 0 actor IDs
2051-----------------------------------------------------------------
2052fawikisource
2053-----------------------------------------------------------------
2054fawikisource Dry run done, would correct 0 actor IDs
2055-----------------------------------------------------------------
2056fawikivoyage
2057-----------------------------------------------------------------
2058fawikivoyage Dry run done, would correct 0 actor IDs
2059-----------------------------------------------------------------
2060fawiktionary
2061-----------------------------------------------------------------
2062fawiktionary Dry run done, would correct 0 actor IDs
2063-----------------------------------------------------------------
2064ffwiki
2065-----------------------------------------------------------------
2066ffwiki More than one matching local log entry for global #49888569
2067ffwiki More than one matching local log entry for global #49888600
2068ffwiki More than one matching local log entry for global #49889177
2069ffwiki Dry run done, would correct 0 actor IDs
2070-----------------------------------------------------------------
2071fiu_vrowiki
2072-----------------------------------------------------------------
2073fiu_vrowiki More than one matching local log entry for global #49888569
2074fiu_vrowiki More than one matching local log entry for global #49888600
2075fiu_vrowiki More than one matching local log entry for global #49889177
2076fiu_vrowiki Dry run done, would correct 0 actor IDs
2077-----------------------------------------------------------------
2078fiwiki
2079-----------------------------------------------------------------
2080fiwiki Would update performer for local #7743349 based on global #15237384 from 'Cyberpower678' to 'Maire'
2081fiwiki More than one matching local log entry for global #29630176
2082fiwiki More than one matching local log entry for global #29630188
2083fiwiki More than one matching local log entry for global #29630200
2084fiwiki More than one matching local log entry for global #29630562
2085fiwiki More than one matching local log entry for global #49888569
2086fiwiki More than one matching local log entry for global #49888600
2087fiwiki More than one matching local log entry for global #49889177
2088fiwiki More than one matching local log entry for global #55036871
2089fiwiki More than one matching local log entry for global #59609932
2090fiwiki More than one matching local log entry for global #59619180
2091fiwiki Local log entry #13427865 has an invalid user name
2092fiwiki Dry run done, would correct 1 actor IDs
2093-----------------------------------------------------------------
2094fiwikibooks
2095-----------------------------------------------------------------
2096fiwikibooks Dry run done, would correct 0 actor IDs
2097-----------------------------------------------------------------
2098fiwikimedia
2099-----------------------------------------------------------------
2100fiwikimedia Dry run done, would correct 0 actor IDs
2101-----------------------------------------------------------------
2102fiwikinews
2103-----------------------------------------------------------------
2104fiwikinews Dry run done, would correct 0 actor IDs
2105-----------------------------------------------------------------
2106fiwikiquote
2107-----------------------------------------------------------------
2108fiwikiquote Dry run done, would correct 0 actor IDs
2109-----------------------------------------------------------------
2110fiwikisource
2111-----------------------------------------------------------------
2112fiwikisource Dry run done, would correct 0 actor IDs
2113-----------------------------------------------------------------
2114fiwikiversity
2115-----------------------------------------------------------------
2116fiwikiversity Dry run done, would correct 0 actor IDs
2117-----------------------------------------------------------------
2118fiwikivoyage
2119-----------------------------------------------------------------
2120fiwikivoyage Dry run done, would correct 0 actor IDs
2121-----------------------------------------------------------------
2122fiwiktionary
2123-----------------------------------------------------------------
2124fiwiktionary Dry run done, would correct 0 actor IDs
2125-----------------------------------------------------------------
2126fjwiki
2127-----------------------------------------------------------------
2128fjwiki More than one matching local log entry for global #49888569
2129fjwiki More than one matching local log entry for global #49888600
2130fjwiki More than one matching local log entry for global #49889177
2131fjwiki Dry run done, would correct 0 actor IDs
2132-----------------------------------------------------------------
2133fjwiktionary
2134-----------------------------------------------------------------
2135fjwiktionary Dry run done, would correct 0 actor IDs
2136-----------------------------------------------------------------
2137fonwiki
2138-----------------------------------------------------------------
2139fonwiki Dry run done, would correct 0 actor IDs
2140-----------------------------------------------------------------
2141foundationwiki
2142-----------------------------------------------------------------
2143foundationwiki Would update performer for local #19778 based on global #9583714 from 'Jalexander' to 'Jalexander-WMF'
2144foundationwiki Would update performer for local #19826 based on global #9654335 from 'Jalexander' to 'Jalexander-WMF'
2145foundationwiki Would update performer for local #19829 based on global #9654694 from 'Jalexander' to 'Jalexander-WMF'
2146foundationwiki Would update performer for local #19849 based on global #9658834 from 'Jalexander' to 'Jalexander-WMF'
2147foundationwiki Would update performer for local #20517 based on global #9722211 from 'Jalexander' to 'Jalexander-WMF'
2148foundationwiki Would update performer for local #20608 based on global #9723251 from 'Jalexander' to 'Jalexander-WMF'
2149foundationwiki Would update performer for local #20619 based on global #9733879 from 'Jalexander' to 'Jalexander-WMF'
2150foundationwiki Would update performer for local #20625 based on global #9734044 from 'Jalexander' to 'Jalexander-WMF'
2151foundationwiki Would update performer for local #20627 based on global #9734155 from 'Jalexander' to 'Jalexander-WMF'
2152foundationwiki Would update performer for local #20635 based on global #9734547 from 'Jalexander' to 'Jalexander-WMF'
2153foundationwiki Would update performer for local #20765 based on global #9748302 from 'Jalexander' to 'Jalexander-WMF'
2154foundationwiki Would update performer for local #20771 based on global #9748928 from 'Jalexander' to 'Jalexander-WMF'
2155foundationwiki Would update performer for local #20804 based on global #9770204 from 'Jalexander' to 'Jalexander-WMF'
2156foundationwiki Would update performer for local #20826 based on global #9780560 from 'Jalexander' to 'Jalexander-WMF'
2157foundationwiki Would update performer for local #23725 based on global #17815393 from 'Jalexander' to 'Jalexander-WMF'
2158foundationwiki Would update performer for local #23729 based on global #17819998 from 'Jalexander' to 'Jalexander-WMF'
2159foundationwiki Would update performer for local #27163 based on global #21787086 from 'Jalexander' to 'JSutherland (WMF)'
2160foundationwiki More than one matching local log entry for global #55036871
2161foundationwiki Dry run done, would correct 17 actor IDs
2162-----------------------------------------------------------------
2163fowiki
2164-----------------------------------------------------------------
2165fowiki More than one matching local log entry for global #49888569
2166fowiki More than one matching local log entry for global #49888600
2167fowiki More than one matching local log entry for global #49889177
2168fowiki Dry run done, would correct 0 actor IDs
2169-----------------------------------------------------------------
2170fowikisource
2171-----------------------------------------------------------------
2172fowikisource Dry run done, would correct 0 actor IDs
2173-----------------------------------------------------------------
2174fowiktionary
2175-----------------------------------------------------------------
2176fowiktionary Dry run done, would correct 0 actor IDs
2177-----------------------------------------------------------------
2178frpwiki
2179-----------------------------------------------------------------
2180frpwiki Dry run done, would correct 0 actor IDs
2181-----------------------------------------------------------------
2182frrwiki
2183-----------------------------------------------------------------
2184frrwiki Dry run done, would correct 0 actor IDs
2185-----------------------------------------------------------------
2186frwiki
2187-----------------------------------------------------------------
2188frwiki Would update performer for local #70817731 based on global #11613214 from 'Stryn' to 'Jianhui67'
2189frwiki Would update performer for local #71351207 based on global #11770497 from 'Shanmugamp7' to 'Steinsplitter'
2190frwiki Would update performer for local #78443932 based on global #15237384 from 'Cyberpower678' to 'Maire'
2191frwiki Would update performer for local #107502461 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
2192frwiki More than one matching local log entry for global #49888569
2193frwiki More than one matching local log entry for global #49888600
2194frwiki More than one matching local log entry for global #49889177
2195frwiki More than one matching local log entry for global #55036871
2196frwiki Would update performer for local #110500572 based on global #56701765 from '<INVALID>' to 'A09'
2197frwiki More than one matching local log entry for global #57343750
2198frwiki Dry run done, would correct 5 actor IDs
2199-----------------------------------------------------------------
2200frwikibooks
2201-----------------------------------------------------------------
2202frwikibooks Would update performer for local #248831 based on global #11649566 from 'APPER' to 'Jmvkrecords'
2203frwikibooks Dry run done, would correct 1 actor IDs
2204-----------------------------------------------------------------
2205frwikinews
2206-----------------------------------------------------------------
2207frwikinews Dry run done, would correct 0 actor IDs
2208-----------------------------------------------------------------
2209frwikiquote
2210-----------------------------------------------------------------
2211frwikiquote Dry run done, would correct 0 actor IDs
2212-----------------------------------------------------------------
2213frwikisource
2214-----------------------------------------------------------------
2215frwikisource Dry run done, would correct 0 actor IDs
2216-----------------------------------------------------------------
2217frwikiversity
2218-----------------------------------------------------------------
2219frwikiversity Dry run done, would correct 0 actor IDs
2220-----------------------------------------------------------------
2221frwikivoyage
2222-----------------------------------------------------------------
2223frwikivoyage Dry run done, would correct 0 actor IDs
2224-----------------------------------------------------------------
2225frwiktionary
2226-----------------------------------------------------------------
2227frwiktionary Local log entry #20271248 has an invalid user name
2228frwiktionary Dry run done, would correct 0 actor IDs
2229-----------------------------------------------------------------
2230furwiki
2231-----------------------------------------------------------------
2232furwiki Dry run done, would correct 0 actor IDs
2233-----------------------------------------------------------------
2234fywiki
2235-----------------------------------------------------------------
2236fywiki Dry run done, would correct 0 actor IDs
2237-----------------------------------------------------------------
2238fywikibooks
2239-----------------------------------------------------------------
2240fywikibooks Dry run done, would correct 0 actor IDs
2241-----------------------------------------------------------------
2242fywiktionary
2243-----------------------------------------------------------------
2244fywiktionary Dry run done, would correct 0 actor IDs
2245-----------------------------------------------------------------
2246gagwiki
2247-----------------------------------------------------------------
2248gagwiki Dry run done, would correct 0 actor IDs
2249-----------------------------------------------------------------
2250ganwiki
2251-----------------------------------------------------------------
2252ganwiki Would update performer for local #48184 based on global #15237384 from 'Cyberpower678' to 'Maire'
2253ganwiki More than one matching local log entry for global #55036871
2254ganwiki Dry run done, would correct 1 actor IDs
2255-----------------------------------------------------------------
2256gawiki
2257-----------------------------------------------------------------
2258gawiki More than one matching local log entry for global #49888569
2259gawiki More than one matching local log entry for global #49888600
2260gawiki More than one matching local log entry for global #49889177
2261gawiki More than one matching local log entry for global #60720302
2262gawiki Dry run done, would correct 0 actor IDs
2263-----------------------------------------------------------------
2264gawikibooks
2265-----------------------------------------------------------------
2266gawikibooks Dry run done, would correct 0 actor IDs
2267-----------------------------------------------------------------
2268gawikiquote
2269-----------------------------------------------------------------
2270gawikiquote Dry run done, would correct 0 actor IDs
2271-----------------------------------------------------------------
2272gawiktionary
2273-----------------------------------------------------------------
2274gawiktionary Dry run done, would correct 0 actor IDs
2275-----------------------------------------------------------------
2276gcrwiki
2277-----------------------------------------------------------------
2278gcrwiki Dry run done, would correct 0 actor IDs
2279-----------------------------------------------------------------
2280gdwiki
2281-----------------------------------------------------------------
2282gdwiki Dry run done, would correct 0 actor IDs
2283-----------------------------------------------------------------
2284gdwiktionary
2285-----------------------------------------------------------------
2286gdwiktionary Dry run done, would correct 0 actor IDs
2287-----------------------------------------------------------------
2288glkwiki
2289-----------------------------------------------------------------
2290glkwiki Dry run done, would correct 0 actor IDs
2291-----------------------------------------------------------------
2292glwiki
2293-----------------------------------------------------------------
2294glwiki More than one matching local log entry for global #49888569
2295glwiki More than one matching local log entry for global #49888600
2296glwiki More than one matching local log entry for global #49889177
2297glwiki Dry run done, would correct 0 actor IDs
2298-----------------------------------------------------------------
2299glwikibooks
2300-----------------------------------------------------------------
2301glwikibooks More than one matching local log entry for global #60720302
2302glwikibooks Dry run done, would correct 0 actor IDs
2303-----------------------------------------------------------------
2304glwikiquote
2305-----------------------------------------------------------------
2306glwikiquote Dry run done, would correct 0 actor IDs
2307-----------------------------------------------------------------
2308glwikisource
2309-----------------------------------------------------------------
2310glwikisource Dry run done, would correct 0 actor IDs
2311-----------------------------------------------------------------
2312glwiktionary
2313-----------------------------------------------------------------
2314glwiktionary Dry run done, would correct 0 actor IDs
2315-----------------------------------------------------------------
2316gnwiki
2317-----------------------------------------------------------------
2318gnwiki Would update performer for local #14556 based on global #15237384 from 'Cyberpower678' to 'Maire'
2319gnwiki Dry run done, would correct 1 actor IDs
2320-----------------------------------------------------------------
2321gnwikibooks
2322-----------------------------------------------------------------
2323gnwikibooks Dry run done, would correct 0 actor IDs
2324-----------------------------------------------------------------
2325gnwiktionary
2326-----------------------------------------------------------------
2327gnwiktionary Dry run done, would correct 0 actor IDs
2328-----------------------------------------------------------------
2329gomwiki
2330-----------------------------------------------------------------
2331gomwiki Dry run done, would correct 0 actor IDs
2332-----------------------------------------------------------------
2333gomwiktionary
2334-----------------------------------------------------------------
2335gomwiktionary Dry run done, would correct 0 actor IDs
2336-----------------------------------------------------------------
2337gorwiki
2338-----------------------------------------------------------------
2339gorwiki Dry run done, would correct 0 actor IDs
2340-----------------------------------------------------------------
2341gorwikiquote
2342-----------------------------------------------------------------
2343gorwikiquote Dry run done, would correct 0 actor IDs
2344-----------------------------------------------------------------
2345gorwiktionary
2346-----------------------------------------------------------------
2347gorwiktionary Dry run done, would correct 0 actor IDs
2348-----------------------------------------------------------------
2349gotwiki
2350-----------------------------------------------------------------
2351gotwiki More than one matching local log entry for global #49888569
2352gotwiki More than one matching local log entry for global #49888600
2353gotwiki More than one matching local log entry for global #49889177
2354gotwiki Dry run done, would correct 0 actor IDs
2355-----------------------------------------------------------------
2356gotwikibooks
2357-----------------------------------------------------------------
2358gotwikibooks Dry run done, would correct 0 actor IDs
2359-----------------------------------------------------------------
2360gpewiki
2361-----------------------------------------------------------------
2362gpewiki Dry run done, would correct 0 actor IDs
2363-----------------------------------------------------------------
2364gucwiki
2365-----------------------------------------------------------------
2366gucwiki Dry run done, would correct 0 actor IDs
2367-----------------------------------------------------------------
2368gurwiki
2369-----------------------------------------------------------------
2370gurwiki Dry run done, would correct 0 actor IDs
2371-----------------------------------------------------------------
2372guwiki
2373-----------------------------------------------------------------
2374guwiki More than one matching local log entry for global #49888569
2375guwiki More than one matching local log entry for global #49888600
2376guwiki More than one matching local log entry for global #49889177
2377guwiki Dry run done, would correct 0 actor IDs
2378-----------------------------------------------------------------
2379guwikibooks
2380-----------------------------------------------------------------
2381guwikibooks Dry run done, would correct 0 actor IDs
2382-----------------------------------------------------------------
2383guwikiquote
2384-----------------------------------------------------------------
2385guwikiquote Dry run done, would correct 0 actor IDs
2386-----------------------------------------------------------------
2387guwikisource
2388-----------------------------------------------------------------
2389guwikisource Dry run done, would correct 0 actor IDs
2390-----------------------------------------------------------------
2391guwiktionary
2392-----------------------------------------------------------------
2393guwiktionary Dry run done, would correct 0 actor IDs
2394-----------------------------------------------------------------
2395guwwiki
2396-----------------------------------------------------------------
2397guwwiki More than one matching local log entry for global #60720302
2398guwwiki Dry run done, would correct 0 actor IDs
2399-----------------------------------------------------------------
2400guwwikinews
2401-----------------------------------------------------------------
2402guwwikinews Dry run done, would correct 0 actor IDs
2403-----------------------------------------------------------------
2404guwwikiquote
2405-----------------------------------------------------------------
2406guwwikiquote Dry run done, would correct 0 actor IDs
2407-----------------------------------------------------------------
2408guwwiktionary
2409-----------------------------------------------------------------
2410guwwiktionary Dry run done, would correct 0 actor IDs
2411-----------------------------------------------------------------
2412gvwiki
2413-----------------------------------------------------------------
2414gvwiki Dry run done, would correct 0 actor IDs
2415-----------------------------------------------------------------
2416gvwiktionary
2417-----------------------------------------------------------------
2418gvwiktionary Dry run done, would correct 0 actor IDs
2419-----------------------------------------------------------------
2420hakwiki
2421-----------------------------------------------------------------
2422hakwiki Dry run done, would correct 0 actor IDs
2423-----------------------------------------------------------------
2424hawiki
2425-----------------------------------------------------------------
2426hawiki Dry run done, would correct 0 actor IDs
2427-----------------------------------------------------------------
2428hawiktionary
2429-----------------------------------------------------------------
2430hawiktionary Dry run done, would correct 0 actor IDs
2431-----------------------------------------------------------------
2432hawwiki
2433-----------------------------------------------------------------
2434hawwiki Dry run done, would correct 0 actor IDs
2435-----------------------------------------------------------------
2436hewiki
2437-----------------------------------------------------------------
2438hewiki Would update performer for local #8556189 based on global #9140345 from 'ערן' to 'Matanya'
2439hewiki More than one matching local log entry for global #49888569
2440hewiki More than one matching local log entry for global #49888600
2441hewiki More than one matching local log entry for global #49889177
2442hewiki More than one matching local log entry for global #55036871
2443hewiki More than one matching local log entry for global #59609932
2444hewiki More than one matching local log entry for global #59619180
2445hewiki Dry run done, would correct 1 actor IDs
2446-----------------------------------------------------------------
2447hewikibooks
2448-----------------------------------------------------------------
2449hewikibooks Dry run done, would correct 0 actor IDs
2450-----------------------------------------------------------------
2451hewikinews
2452-----------------------------------------------------------------
2453hewikinews Dry run done, would correct 0 actor IDs
2454-----------------------------------------------------------------
2455hewikiquote
2456-----------------------------------------------------------------
2457hewikiquote Dry run done, would correct 0 actor IDs
2458-----------------------------------------------------------------
2459hewikisource
2460-----------------------------------------------------------------
2461hewikisource Dry run done, would correct 0 actor IDs
2462-----------------------------------------------------------------
2463hewikivoyage
2464-----------------------------------------------------------------
2465hewikivoyage Dry run done, would correct 0 actor IDs
2466-----------------------------------------------------------------
2467hewiktionary
2468-----------------------------------------------------------------
2469hewiktionary Dry run done, would correct 0 actor IDs
2470-----------------------------------------------------------------
2471hifwiki
2472-----------------------------------------------------------------
2473hifwiki Dry run done, would correct 0 actor IDs
2474-----------------------------------------------------------------
2475hifwiktionary
2476-----------------------------------------------------------------
2477hifwiktionary Dry run done, would correct 0 actor IDs
2478-----------------------------------------------------------------
2479hiwiki
2480-----------------------------------------------------------------
2481hiwiki More than one matching local log entry for global #49888569
2482hiwiki More than one matching local log entry for global #49888600
2483hiwiki More than one matching local log entry for global #49889177
2484hiwiki Dry run done, would correct 0 actor IDs
2485-----------------------------------------------------------------
2486hiwikibooks
2487-----------------------------------------------------------------
2488hiwikibooks Dry run done, would correct 0 actor IDs
2489-----------------------------------------------------------------
2490hiwikiquote
2491-----------------------------------------------------------------
2492hiwikiquote Dry run done, would correct 0 actor IDs
2493-----------------------------------------------------------------
2494hiwikisource
2495-----------------------------------------------------------------
2496hiwikisource Dry run done, would correct 0 actor IDs
2497-----------------------------------------------------------------
2498hiwikiversity
2499-----------------------------------------------------------------
2500hiwikiversity Dry run done, would correct 0 actor IDs
2501-----------------------------------------------------------------
2502hiwikivoyage
2503-----------------------------------------------------------------
2504hiwikivoyage Dry run done, would correct 0 actor IDs
2505-----------------------------------------------------------------
2506hiwiktionary
2507-----------------------------------------------------------------
2508hiwiktionary More than one matching local log entry for global #49888569
2509hiwiktionary More than one matching local log entry for global #49888600
2510hiwiktionary More than one matching local log entry for global #49889177
2511hiwiktionary Dry run done, would correct 0 actor IDs
2512-----------------------------------------------------------------
2513howiki
2514-----------------------------------------------------------------
2515howiki Dry run done, would correct 0 actor IDs
2516-----------------------------------------------------------------
2517hrwiki
2518-----------------------------------------------------------------
2519hrwiki More than one matching local log entry for global #49888569
2520hrwiki More than one matching local log entry for global #49888600
2521hrwiki More than one matching local log entry for global #49889177
2522hrwiki Dry run done, would correct 0 actor IDs
2523-----------------------------------------------------------------
2524hrwikibooks
2525-----------------------------------------------------------------
2526hrwikibooks Dry run done, would correct 0 actor IDs
2527-----------------------------------------------------------------
2528hrwikiquote
2529-----------------------------------------------------------------
2530hrwikiquote Dry run done, would correct 0 actor IDs
2531-----------------------------------------------------------------
2532hrwikisource
2533-----------------------------------------------------------------
2534hrwikisource Dry run done, would correct 0 actor IDs
2535-----------------------------------------------------------------
2536hrwiktionary
2537-----------------------------------------------------------------
2538hrwiktionary Dry run done, would correct 0 actor IDs
2539-----------------------------------------------------------------
2540hsbwiki
2541-----------------------------------------------------------------
2542hsbwiki Dry run done, would correct 0 actor IDs
2543-----------------------------------------------------------------
2544hsbwiktionary
2545-----------------------------------------------------------------
2546hsbwiktionary Dry run done, would correct 0 actor IDs
2547-----------------------------------------------------------------
2548htwiki
2549-----------------------------------------------------------------
2550htwiki Dry run done, would correct 0 actor IDs
2551-----------------------------------------------------------------
2552htwikisource
2553-----------------------------------------------------------------
2554htwikisource Dry run done, would correct 0 actor IDs
2555-----------------------------------------------------------------
2556huwiki
2557-----------------------------------------------------------------
2558huwiki More than one matching local log entry for global #49888569
2559huwiki More than one matching local log entry for global #49888600
2560huwiki More than one matching local log entry for global #49889177
2561huwiki Dry run done, would correct 0 actor IDs
2562-----------------------------------------------------------------
2563huwikibooks
2564-----------------------------------------------------------------
2565huwikibooks Dry run done, would correct 0 actor IDs
2566-----------------------------------------------------------------
2567huwikinews
2568-----------------------------------------------------------------
2569huwikinews Dry run done, would correct 0 actor IDs
2570-----------------------------------------------------------------
2571huwikiquote
2572-----------------------------------------------------------------
2573huwikiquote Dry run done, would correct 0 actor IDs
2574-----------------------------------------------------------------
2575huwikisource
2576-----------------------------------------------------------------
2577huwikisource Dry run done, would correct 0 actor IDs
2578-----------------------------------------------------------------
2579huwiktionary
2580-----------------------------------------------------------------
2581huwiktionary Dry run done, would correct 0 actor IDs
2582-----------------------------------------------------------------
2583hywiki
2584-----------------------------------------------------------------
2585hywiki More than one matching local log entry for global #49888569
2586hywiki More than one matching local log entry for global #49888600
2587hywiki More than one matching local log entry for global #49889177
2588hywiki More than one matching local log entry for global #55036871
2589hywiki Dry run done, would correct 0 actor IDs
2590-----------------------------------------------------------------
2591hywikibooks
2592-----------------------------------------------------------------
2593hywikibooks Dry run done, would correct 0 actor IDs
2594-----------------------------------------------------------------
2595hywikiquote
2596-----------------------------------------------------------------
2597hywikiquote Dry run done, would correct 0 actor IDs
2598-----------------------------------------------------------------
2599hywikisource
2600-----------------------------------------------------------------
2601hywikisource Dry run done, would correct 0 actor IDs
2602-----------------------------------------------------------------
2603hywiktionary
2604-----------------------------------------------------------------
2605hywiktionary Would update performer for local #106223 based on global #58522910 from '<INVALID>' to 'Wüstenspringmaus'
2606hywiktionary Dry run done, would correct 1 actor IDs
2607-----------------------------------------------------------------
2608hywwiki
2609-----------------------------------------------------------------
2610hywwiki Dry run done, would correct 0 actor IDs
2611-----------------------------------------------------------------
2612hzwiki
2613-----------------------------------------------------------------
2614hzwiki Dry run done, would correct 0 actor IDs
2615-----------------------------------------------------------------
2616iawiki
2617-----------------------------------------------------------------
2618iawiki More than one matching local log entry for global #29630176
2619iawiki More than one matching local log entry for global #29630188
2620iawiki More than one matching local log entry for global #29630200
2621iawiki More than one matching local log entry for global #29630562
2622iawiki More than one matching local log entry for global #55036871
2623iawiki Dry run done, would correct 0 actor IDs
2624-----------------------------------------------------------------
2625iawikibooks
2626-----------------------------------------------------------------
2627iawikibooks Dry run done, would correct 0 actor IDs
2628-----------------------------------------------------------------
2629iawiktionary
2630-----------------------------------------------------------------
2631iawiktionary Dry run done, would correct 0 actor IDs
2632-----------------------------------------------------------------
2633ibawiki
2634-----------------------------------------------------------------
2635ibawiki Dry run done, would correct 0 actor IDs
2636-----------------------------------------------------------------
2637idwiki
2638-----------------------------------------------------------------
2639idwiki Would update performer for local #7852030 based on global #15237384 from 'Cyberpower678' to 'Maire'
2640idwiki More than one matching local log entry for global #49888569
2641idwiki More than one matching local log entry for global #49888600
2642idwiki More than one matching local log entry for global #49889177
2643idwiki More than one matching local log entry for global #55036871
2644idwiki Dry run done, would correct 1 actor IDs
2645-----------------------------------------------------------------
2646idwikibooks
2647-----------------------------------------------------------------
2648idwikibooks Would update performer for local #80030 based on global #59815486 from 'Kakuturi' to 'J ansari'
2649idwikibooks Would update performer for local #80570 based on global #60277186 from 'Kakuturi' to 'J ansari'
2650idwikibooks Dry run done, would correct 2 actor IDs
2651-----------------------------------------------------------------
2652idwikiquote
2653-----------------------------------------------------------------
2654idwikiquote Dry run done, would correct 0 actor IDs
2655-----------------------------------------------------------------
2656idwikisource
2657-----------------------------------------------------------------
2658idwikisource Dry run done, would correct 0 actor IDs
2659-----------------------------------------------------------------
2660idwikivoyage
2661-----------------------------------------------------------------
2662idwikivoyage Dry run done, would correct 0 actor IDs
2663-----------------------------------------------------------------
2664idwiktionary
2665-----------------------------------------------------------------
2666idwiktionary Would update performer for local #292478 based on global #59966973 from '<INVALID>' to 'Nihonjoe'
2667idwiktionary Dry run done, would correct 1 actor IDs
2668-----------------------------------------------------------------
2669iewiki
2670-----------------------------------------------------------------
2671iewiki Dry run done, would correct 0 actor IDs
2672-----------------------------------------------------------------
2673iewikibooks
2674-----------------------------------------------------------------
2675iewikibooks Dry run done, would correct 0 actor IDs
2676-----------------------------------------------------------------
2677iewiktionary
2678-----------------------------------------------------------------
2679iewiktionary Dry run done, would correct 0 actor IDs
2680-----------------------------------------------------------------
2681iglwiki
2682-----------------------------------------------------------------
2683iglwiki Dry run done, would correct 0 actor IDs
2684-----------------------------------------------------------------
2685igwiki
2686-----------------------------------------------------------------
2687igwiki Dry run done, would correct 0 actor IDs
2688-----------------------------------------------------------------
2689igwikiquote
2690-----------------------------------------------------------------
2691igwikiquote Dry run done, would correct 0 actor IDs
2692-----------------------------------------------------------------
2693igwiktionary
2694-----------------------------------------------------------------
2695igwiktionary Dry run done, would correct 0 actor IDs
2696-----------------------------------------------------------------
2697iiwiki
2698-----------------------------------------------------------------
2699iiwiki Dry run done, would correct 0 actor IDs
2700-----------------------------------------------------------------
2701ikwiki
2702-----------------------------------------------------------------
2703ikwiki More than one matching local log entry for global #49888569
2704ikwiki More than one matching local log entry for global #49888600
2705ikwiki More than one matching local log entry for global #49889177
2706ikwiki Dry run done, would correct 0 actor IDs
2707-----------------------------------------------------------------
2708ikwiktionary
2709-----------------------------------------------------------------
2710ikwiktionary Dry run done, would correct 0 actor IDs
2711-----------------------------------------------------------------
2712ilowiki
2713-----------------------------------------------------------------
2714ilowiki Dry run done, would correct 0 actor IDs
2715-----------------------------------------------------------------
2716incubatorwiki
2717-----------------------------------------------------------------
2718incubatorwiki Would update performer for local #1930090 based on global #11613214 from 'Stryn' to 'Jianhui67'
2719incubatorwiki Would update performer for local #2197652 based on global #12488259 from 'K6ka' to 'Jianhui67'
2720incubatorwiki More than one matching local log entry for global #12646819
2721incubatorwiki More than one matching local log entry for global #12649639
2722incubatorwiki Would update performer for local #2447324 based on global #13997024 from 'K6ka' to 'MBisanz'
2723incubatorwiki Would update performer for local #2650231 based on global #15237384 from 'Cyberpower678' to 'Maire'
2724incubatorwiki More than one matching local log entry for global #34168996
2725incubatorwiki More than one matching local log entry for global #34177005
2726incubatorwiki More than one matching local log entry for global #46011965
2727incubatorwiki More than one matching local log entry for global #49888569
2728incubatorwiki More than one matching local log entry for global #49888600
2729incubatorwiki More than one matching local log entry for global #49889177
2730incubatorwiki More than one matching local log entry for global #59609932
2731incubatorwiki More than one matching local log entry for global #59619180
2732incubatorwiki Dry run done, would correct 4 actor IDs
2733-----------------------------------------------------------------
2734inhwiki
2735-----------------------------------------------------------------
2736inhwiki Dry run done, would correct 0 actor IDs
2737-----------------------------------------------------------------
2738iowiki
2739-----------------------------------------------------------------
2740iowiki Dry run done, would correct 0 actor IDs
2741-----------------------------------------------------------------
2742iowiktionary
2743-----------------------------------------------------------------
2744iowiktionary Dry run done, would correct 0 actor IDs
2745-----------------------------------------------------------------
2746iswiki
2747-----------------------------------------------------------------
2748iswiki Would update performer for local #114952 based on global #15237384 from 'Cyberpower678' to 'Maire'
2749iswiki Dry run done, would correct 1 actor IDs
2750-----------------------------------------------------------------
2751iswikibooks
2752-----------------------------------------------------------------
2753iswikibooks Dry run done, would correct 0 actor IDs
2754-----------------------------------------------------------------
2755iswikiquote
2756-----------------------------------------------------------------
2757iswikiquote Dry run done, would correct 0 actor IDs
2758-----------------------------------------------------------------
2759iswikisource
2760-----------------------------------------------------------------
2761iswikisource Dry run done, would correct 0 actor IDs
2762-----------------------------------------------------------------
2763iswiktionary
2764-----------------------------------------------------------------
2765iswiktionary Dry run done, would correct 0 actor IDs
2766-----------------------------------------------------------------
2767itwiki
2768-----------------------------------------------------------------
2769itwiki Would update performer for local #36932642 based on global #15237384 from 'Cyberpower678' to 'Maire'
2770itwiki More than one matching local log entry for global #49888569
2771itwiki More than one matching local log entry for global #49888600
2772itwiki More than one matching local log entry for global #49889177
2773itwiki Dry run done, would correct 1 actor IDs
2774-----------------------------------------------------------------
2775itwikibooks
2776-----------------------------------------------------------------
2777itwikibooks Dry run done, would correct 0 actor IDs
2778-----------------------------------------------------------------
2779itwikinews
2780-----------------------------------------------------------------
2781itwikinews Dry run done, would correct 0 actor IDs
2782-----------------------------------------------------------------
2783itwikiquote
2784-----------------------------------------------------------------
2785itwikiquote Dry run done, would correct 0 actor IDs
2786-----------------------------------------------------------------
2787itwikisource
2788-----------------------------------------------------------------
2789itwikisource Dry run done, would correct 0 actor IDs
2790-----------------------------------------------------------------
2791itwikiversity
2792-----------------------------------------------------------------
2793itwikiversity Dry run done, would correct 0 actor IDs
2794-----------------------------------------------------------------
2795itwikivoyage
2796-----------------------------------------------------------------
2797itwikivoyage Dry run done, would correct 0 actor IDs
2798-----------------------------------------------------------------
2799itwiktionary
2800-----------------------------------------------------------------
2801itwiktionary Dry run done, would correct 0 actor IDs
2802-----------------------------------------------------------------
2803iuwiki
2804-----------------------------------------------------------------
2805iuwiki More than one matching local log entry for global #49888569
2806iuwiki More than one matching local log entry for global #49888600
2807iuwiki More than one matching local log entry for global #49889177
2808iuwiki Dry run done, would correct 0 actor IDs
2809-----------------------------------------------------------------
2810iuwiktionary
2811-----------------------------------------------------------------
2812iuwiktionary Dry run done, would correct 0 actor IDs
2813-----------------------------------------------------------------
2814jamwiki
2815-----------------------------------------------------------------
2816jamwiki Dry run done, would correct 0 actor IDs
2817-----------------------------------------------------------------
2818jawiki
2819-----------------------------------------------------------------
2820jawiki More than one matching local log entry for global #39136830
2821jawiki More than one matching local log entry for global #39136939
2822jawiki More than one matching local log entry for global #49888569
2823jawiki More than one matching local log entry for global #49888600
2824jawiki More than one matching local log entry for global #49889177
2825jawiki Would update performer for local #6385124 based on global #51516528 from 'Jkhkghhfhgv' to 'Nihonjoe'
2826jawiki More than one matching local log entry for global #55036871
2827jawiki Would update performer for local #7469260 based on global #60233833 from '<INVALID>' to 'AccountVanishRequests'
2828jawiki Dry run done, would correct 2 actor IDs
2829-----------------------------------------------------------------
2830jawikibooks
2831-----------------------------------------------------------------
2832jawikibooks Dry run done, would correct 0 actor IDs
2833-----------------------------------------------------------------
2834jawikinews
2835-----------------------------------------------------------------
2836jawikinews Dry run done, would correct 0 actor IDs
2837-----------------------------------------------------------------
2838jawikiquote
2839-----------------------------------------------------------------
2840jawikiquote Dry run done, would correct 0 actor IDs
2841-----------------------------------------------------------------
2842jawikisource
2843-----------------------------------------------------------------
2844jawikisource Dry run done, would correct 0 actor IDs
2845-----------------------------------------------------------------
2846jawikiversity
2847-----------------------------------------------------------------
2848jawikiversity Dry run done, would correct 0 actor IDs
2849-----------------------------------------------------------------
2850jawikivoyage
2851-----------------------------------------------------------------
2852jawikivoyage Dry run done, would correct 0 actor IDs
2853-----------------------------------------------------------------
2854jawiktionary
2855-----------------------------------------------------------------
2856jawiktionary More than one matching local log entry for global #55036871
2857jawiktionary Dry run done, would correct 0 actor IDs
2858-----------------------------------------------------------------
2859jbowiki
2860-----------------------------------------------------------------
2861jbowiki Global performer Maire does not exist locally
2862jbowiki More than one matching local log entry for global #16147923
2863jbowiki Dry run done, would correct 0 actor IDs
2864-----------------------------------------------------------------
2865jbowiktionary
2866-----------------------------------------------------------------
2867jbowiktionary Dry run done, would correct 0 actor IDs
2868-----------------------------------------------------------------
2869jvwiki
2870-----------------------------------------------------------------
2871jvwiki Would update performer for local #110644 based on global #15237384 from 'Cyberpower678' to 'Maire'
2872jvwiki Dry run done, would correct 1 actor IDs
2873-----------------------------------------------------------------
2874jvwikisource
2875-----------------------------------------------------------------
2876jvwikisource Dry run done, would correct 0 actor IDs
2877-----------------------------------------------------------------
2878jvwiktionary
2879-----------------------------------------------------------------
2880jvwiktionary Dry run done, would correct 0 actor IDs
2881-----------------------------------------------------------------
2882kaawiki
2883-----------------------------------------------------------------
2884kaawiki Dry run done, would correct 0 actor IDs
2885-----------------------------------------------------------------
2886kaawiktionary
2887-----------------------------------------------------------------
2888kaawiktionary Dry run done, would correct 0 actor IDs
2889-----------------------------------------------------------------
2890kabwiki
2891-----------------------------------------------------------------
2892kabwiki Dry run done, would correct 0 actor IDs
2893-----------------------------------------------------------------
2894kawiki
2895-----------------------------------------------------------------
2896kawiki More than one matching local log entry for global #49888569
2897kawiki More than one matching local log entry for global #49888600
2898kawiki More than one matching local log entry for global #49889177
2899kawiki Dry run done, would correct 0 actor IDs
2900-----------------------------------------------------------------
2901kawikibooks
2902-----------------------------------------------------------------
2903kawikibooks Dry run done, would correct 0 actor IDs
2904-----------------------------------------------------------------
2905kawikiquote
2906-----------------------------------------------------------------
2907kawikiquote Dry run done, would correct 0 actor IDs
2908-----------------------------------------------------------------
2909kawikisource
2910-----------------------------------------------------------------
2911kawikisource Dry run done, would correct 0 actor IDs
2912-----------------------------------------------------------------
2913kawiktionary
2914-----------------------------------------------------------------
2915kawiktionary Dry run done, would correct 0 actor IDs
2916-----------------------------------------------------------------
2917kbdwiki
2918-----------------------------------------------------------------
2919kbdwiki Would update performer for local #7823 based on global #11644844 from 'Érico Júnior Wouters' to 'Érico'
2920kbdwiki More than one matching local log entry for global #59609932
2921kbdwiki More than one matching local log entry for global #59619180
2922kbdwiki Dry run done, would correct 1 actor IDs
2923-----------------------------------------------------------------
2924kbdwiktionary
2925-----------------------------------------------------------------
2926kbdwiktionary Dry run done, would correct 0 actor IDs
2927-----------------------------------------------------------------
2928kbpwiki
2929-----------------------------------------------------------------
2930kbpwiki Dry run done, would correct 0 actor IDs
2931-----------------------------------------------------------------
2932kcgwiki
2933-----------------------------------------------------------------
2934kcgwiki Dry run done, would correct 0 actor IDs
2935-----------------------------------------------------------------
2936kcgwiktionary
2937-----------------------------------------------------------------
2938kcgwiktionary Dry run done, would correct 0 actor IDs
2939-----------------------------------------------------------------
2940kgewiki
2941-----------------------------------------------------------------
2942kgewiki Dry run done, would correct 0 actor IDs
2943-----------------------------------------------------------------
2944kgwiki
2945-----------------------------------------------------------------
2946kgwiki Would update performer for local #8306 based on global #11644844 from 'Érico Júnior Wouters' to 'Érico'
2947kgwiki Dry run done, would correct 1 actor IDs
2948-----------------------------------------------------------------
2949kiwiki
2950-----------------------------------------------------------------
2951kiwiki Dry run done, would correct 0 actor IDs
2952-----------------------------------------------------------------
2953kjwiki
2954-----------------------------------------------------------------
2955kjwiki Dry run done, would correct 0 actor IDs
2956-----------------------------------------------------------------
2957kkwiki
2958-----------------------------------------------------------------
2959kkwiki More than one matching local log entry for global #49888569
2960kkwiki More than one matching local log entry for global #49888600
2961kkwiki More than one matching local log entry for global #49889177
2962kkwiki More than one matching local log entry for global #55036871
2963kkwiki Dry run done, would correct 0 actor IDs
2964-----------------------------------------------------------------
2965kkwikibooks
2966-----------------------------------------------------------------
2967kkwikibooks Dry run done, would correct 0 actor IDs
2968-----------------------------------------------------------------
2969kkwikiquote
2970-----------------------------------------------------------------
2971kkwikiquote Dry run done, would correct 0 actor IDs
2972-----------------------------------------------------------------
2973kkwiktionary
2974-----------------------------------------------------------------
2975kkwiktionary Dry run done, would correct 0 actor IDs
2976-----------------------------------------------------------------
2977klwiki
2978-----------------------------------------------------------------
2979klwiki Dry run done, would correct 0 actor IDs
2980-----------------------------------------------------------------
2981klwiktionary
2982-----------------------------------------------------------------
2983klwiktionary Would update performer for local #4160 based on global #11644844 from 'Érico Júnior Wouters' to 'Érico'
2984klwiktionary Dry run done, would correct 1 actor IDs
2985-----------------------------------------------------------------
2986kmwiki
2987-----------------------------------------------------------------
2988kmwiki Dry run done, would correct 0 actor IDs
2989-----------------------------------------------------------------
2990kmwikibooks
2991-----------------------------------------------------------------
2992kmwikibooks Dry run done, would correct 0 actor IDs
2993-----------------------------------------------------------------
2994kmwiktionary
2995-----------------------------------------------------------------
2996kmwiktionary Dry run done, would correct 0 actor IDs
2997-----------------------------------------------------------------
2998kncwiki
2999-----------------------------------------------------------------
3000kncwiki Dry run done, would correct 0 actor IDs
3001-----------------------------------------------------------------
3002knwiki
3003-----------------------------------------------------------------
3004knwiki Dry run done, would correct 0 actor IDs
3005-----------------------------------------------------------------
3006knwikibooks
3007-----------------------------------------------------------------
3008knwikibooks Dry run done, would correct 0 actor IDs
3009-----------------------------------------------------------------
3010knwikiquote
3011-----------------------------------------------------------------
3012knwikiquote Would update performer for local #5292 based on global #59664396 from '<INVALID>' to 'J ansari'
3013knwikiquote Dry run done, would correct 1 actor IDs
3014-----------------------------------------------------------------
3015knwikisource
3016-----------------------------------------------------------------
3017knwikisource Dry run done, would correct 0 actor IDs
3018-----------------------------------------------------------------
3019knwiktionary
3020-----------------------------------------------------------------
3021knwiktionary Dry run done, would correct 0 actor IDs
3022-----------------------------------------------------------------
3023koiwiki
3024-----------------------------------------------------------------
3025koiwiki Dry run done, would correct 0 actor IDs
3026-----------------------------------------------------------------
3027kowiki
3028-----------------------------------------------------------------
3029kowiki Would update performer for local #692398 based on global #9314413 from 'Sotiale' to 'Savh'
3030kowiki Would update performer for local #692401 based on global #9314417 from 'Sotiale' to 'Savh'
3031kowiki Would update performer for local #961378 based on global #15237384 from 'Cyberpower678' to 'Maire'
3032kowiki More than one matching local log entry for global #49888569
3033kowiki More than one matching local log entry for global #49888600
3034kowiki More than one matching local log entry for global #49889177
3035kowiki More than one matching local log entry for global #55036871
3036kowiki Dry run done, would correct 3 actor IDs
3037-----------------------------------------------------------------
3038kowikibooks
3039-----------------------------------------------------------------
3040kowikibooks Dry run done, would correct 0 actor IDs
3041-----------------------------------------------------------------
3042kowikinews
3043-----------------------------------------------------------------
3044kowikinews Dry run done, would correct 0 actor IDs
3045-----------------------------------------------------------------
3046kowikiquote
3047-----------------------------------------------------------------
3048kowikiquote Dry run done, would correct 0 actor IDs
3049-----------------------------------------------------------------
3050kowikisource
3051-----------------------------------------------------------------
3052kowikisource Dry run done, would correct 0 actor IDs
3053-----------------------------------------------------------------
3054kowikiversity
3055-----------------------------------------------------------------
3056kowikiversity Dry run done, would correct 0 actor IDs
3057-----------------------------------------------------------------
3058kowiktionary
3059-----------------------------------------------------------------
3060kowiktionary Dry run done, would correct 0 actor IDs
3061-----------------------------------------------------------------
3062krcwiki
3063-----------------------------------------------------------------
3064krcwiki Dry run done, would correct 0 actor IDs
3065-----------------------------------------------------------------
3066krwiki
3067-----------------------------------------------------------------
3068krwiki Dry run done, would correct 0 actor IDs
3069-----------------------------------------------------------------
3070krwikiquote
3071-----------------------------------------------------------------
3072krwikiquote Dry run done, would correct 0 actor IDs
3073-----------------------------------------------------------------
3074kshwiki
3075-----------------------------------------------------------------
3076kshwiki Dry run done, would correct 0 actor IDs
3077-----------------------------------------------------------------
3078kswiki
3079-----------------------------------------------------------------
3080kswiki More than one matching local log entry for global #49888569
3081kswiki More than one matching local log entry for global #49888600
3082kswiki More than one matching local log entry for global #49889177
3083kswiki Dry run done, would correct 0 actor IDs
3084-----------------------------------------------------------------
3085kswikibooks
3086-----------------------------------------------------------------
3087kswikibooks Dry run done, would correct 0 actor IDs
3088-----------------------------------------------------------------
3089kswikiquote
3090-----------------------------------------------------------------
3091kswikiquote Dry run done, would correct 0 actor IDs
3092-----------------------------------------------------------------
3093kswiktionary
3094-----------------------------------------------------------------
3095kswiktionary Dry run done, would correct 0 actor IDs
3096-----------------------------------------------------------------
3097kuswiki
3098-----------------------------------------------------------------
3099kuswiki Dry run done, would correct 0 actor IDs
3100-----------------------------------------------------------------
3101kuwiki
3102-----------------------------------------------------------------
3103kuwiki Would update performer for local #69000 based on global #15237384 from 'Cyberpower678' to 'Maire'
3104kuwiki More than one matching local log entry for global #55036871
3105kuwiki Dry run done, would correct 1 actor IDs
3106-----------------------------------------------------------------
3107kuwikibooks
3108-----------------------------------------------------------------
3109kuwikibooks Dry run done, would correct 0 actor IDs
3110-----------------------------------------------------------------
3111kuwikiquote
3112-----------------------------------------------------------------
3113kuwikiquote Dry run done, would correct 0 actor IDs
3114-----------------------------------------------------------------
3115kuwiktionary
3116-----------------------------------------------------------------
3117kuwiktionary Dry run done, would correct 0 actor IDs
3118-----------------------------------------------------------------
3119kvwiki
3120-----------------------------------------------------------------
3121kvwiki Dry run done, would correct 0 actor IDs
3122-----------------------------------------------------------------
3123kwwiki
3124-----------------------------------------------------------------
3125kwwiki Dry run done, would correct 0 actor IDs
3126-----------------------------------------------------------------
3127kwwikiquote
3128-----------------------------------------------------------------
3129kwwikiquote Dry run done, would correct 0 actor IDs
3130-----------------------------------------------------------------
3131kwwiktionary
3132-----------------------------------------------------------------
3133kwwiktionary Dry run done, would correct 0 actor IDs
3134-----------------------------------------------------------------
3135kywiki
3136-----------------------------------------------------------------
3137kywiki Dry run done, would correct 0 actor IDs
3138-----------------------------------------------------------------
3139kywikibooks
3140-----------------------------------------------------------------
3141kywikibooks Dry run done, would correct 0 actor IDs
3142-----------------------------------------------------------------
3143kywikiquote
3144-----------------------------------------------------------------
3145kywikiquote Dry run done, would correct 0 actor IDs
3146-----------------------------------------------------------------
3147kywiktionary
3148-----------------------------------------------------------------
3149kywiktionary Dry run done, would correct 0 actor IDs
3150-----------------------------------------------------------------
3151labswiki
3152-----------------------------------------------------------------
3153labswiki Dry run done, would correct 0 actor IDs
3154-----------------------------------------------------------------
3155ladwiki
3156-----------------------------------------------------------------
3157ladwiki Dry run done, would correct 0 actor IDs
3158-----------------------------------------------------------------
3159lawiki
3160-----------------------------------------------------------------
3161lawiki More than one matching local log entry for global #49888569
3162lawiki More than one matching local log entry for global #49888600
3163lawiki More than one matching local log entry for global #49889177
3164lawiki Dry run done, would correct 0 actor IDs
3165-----------------------------------------------------------------
3166lawikibooks
3167-----------------------------------------------------------------
3168lawikibooks Dry run done, would correct 0 actor IDs
3169-----------------------------------------------------------------
3170lawikiquote
3171-----------------------------------------------------------------
3172lawikiquote Dry run done, would correct 0 actor IDs
3173-----------------------------------------------------------------
3174lawikisource
3175-----------------------------------------------------------------
3176lawikisource More than one matching local log entry for global #16147923
3177lawikisource Dry run done, would correct 0 actor IDs
3178-----------------------------------------------------------------
3179lawiktionary
3180-----------------------------------------------------------------
3181lawiktionary Dry run done, would correct 0 actor IDs
3182-----------------------------------------------------------------
3183lbewiki
3184-----------------------------------------------------------------
3185lbewiki Dry run done, would correct 0 actor IDs
3186-----------------------------------------------------------------
3187lbwiki
3188-----------------------------------------------------------------
3189lbwiki More than one matching local log entry for global #49888569
3190lbwiki More than one matching local log entry for global #49888600
3191lbwiki More than one matching local log entry for global #49889177
3192lbwiki Dry run done, would correct 0 actor IDs
3193-----------------------------------------------------------------
3194lbwikibooks
3195-----------------------------------------------------------------
3196lbwikibooks Dry run done, would correct 0 actor IDs
3197-----------------------------------------------------------------
3198lbwikiquote
3199-----------------------------------------------------------------
3200lbwikiquote Dry run done, would correct 0 actor IDs
3201-----------------------------------------------------------------
3202lbwiktionary
3203-----------------------------------------------------------------
3204lbwiktionary Dry run done, would correct 0 actor IDs
3205-----------------------------------------------------------------
3206lezwiki
3207-----------------------------------------------------------------
3208lezwiki Dry run done, would correct 0 actor IDs
3209-----------------------------------------------------------------
3210lfnwiki
3211-----------------------------------------------------------------
3212lfnwiki Dry run done, would correct 0 actor IDs
3213-----------------------------------------------------------------
3214lgwiki
3215-----------------------------------------------------------------
3216lgwiki More than one matching local log entry for global #49888569
3217lgwiki More than one matching local log entry for global #49888600
3218lgwiki More than one matching local log entry for global #49889177
3219lgwiki Dry run done, would correct 0 actor IDs
3220-----------------------------------------------------------------
3221lijwiki
3222-----------------------------------------------------------------
3223lijwiki Dry run done, would correct 0 actor IDs
3224-----------------------------------------------------------------
3225lijwikisource
3226-----------------------------------------------------------------
3227lijwikisource Dry run done, would correct 0 actor IDs
3228-----------------------------------------------------------------
3229liwiki
3230-----------------------------------------------------------------
3231liwiki More than one matching local log entry for global #49888569
3232liwiki More than one matching local log entry for global #49888600
3233liwiki More than one matching local log entry for global #49889177
3234liwiki Dry run done, would correct 0 actor IDs
3235-----------------------------------------------------------------
3236liwikibooks
3237-----------------------------------------------------------------
3238liwikibooks Dry run done, would correct 0 actor IDs
3239-----------------------------------------------------------------
3240liwikinews
3241-----------------------------------------------------------------
3242liwikinews Dry run done, would correct 0 actor IDs
3243-----------------------------------------------------------------
3244liwikiquote
3245-----------------------------------------------------------------
3246liwikiquote Dry run done, would correct 0 actor IDs
3247-----------------------------------------------------------------
3248liwikisource
3249-----------------------------------------------------------------
3250liwikisource Dry run done, would correct 0 actor IDs
3251-----------------------------------------------------------------
3252liwiktionary
3253-----------------------------------------------------------------
3254liwiktionary Dry run done, would correct 0 actor IDs
3255-----------------------------------------------------------------
3256lldwiki
3257-----------------------------------------------------------------
3258lldwiki Dry run done, would correct 0 actor IDs
3259-----------------------------------------------------------------
3260lmowiki
3261-----------------------------------------------------------------
3262lmowiki Dry run done, would correct 0 actor IDs
3263-----------------------------------------------------------------
3264lmowiktionary
3265-----------------------------------------------------------------
3266lmowiktionary Dry run done, would correct 0 actor IDs
3267-----------------------------------------------------------------
3268lnwiki
3269-----------------------------------------------------------------
3270lnwiki Dry run done, would correct 0 actor IDs
3271-----------------------------------------------------------------
3272lnwikibooks
3273-----------------------------------------------------------------
3274lnwikibooks Dry run done, would correct 0 actor IDs
3275-----------------------------------------------------------------
3276lnwiktionary
3277-----------------------------------------------------------------
3278lnwiktionary Dry run done, would correct 0 actor IDs
3279-----------------------------------------------------------------
3280loginwiki
3281-----------------------------------------------------------------
3282loginwiki Would update performer for local #7302580 based on global #11613214 from 'Stryn' to 'Jianhui67'
3283loginwiki Would update performer for local #7359306 based on global #11767002 from 'Jmvkrecords' to 'Shanmugamp7'
3284loginwiki Would update performer for local #7362994 based on global #11770497 from 'Shanmugamp7' to 'Steinsplitter'
3285loginwiki Would update performer for local #7378767 based on global #11830959 from 'DerHexer' to 'Steinsplitter'
3286loginwiki Would update performer for local #7381567 based on global #11833563 from 'Stryn' to 'DerHexer'
3287loginwiki Would update performer for local #8198424 based on global #12488259 from 'K6ka' to 'Jianhui67'
3288loginwiki More than one matching local log entry for global #12646819
3289loginwiki More than one matching local log entry for global #12649639
3290loginwiki Would update performer for local #9484996 based on global #13997024 from 'K6ka' to 'MBisanz'
3291loginwiki Would update performer for local #10543227 based on global #15237384 from 'Cyberpower678' to 'Maire'
3292loginwiki Would update performer for local #17949133 based on global #24523612 from 'MBq' to 'Masti'
3293loginwiki More than one matching local log entry for global #29630176
3294loginwiki More than one matching local log entry for global #29630188
3295loginwiki More than one matching local log entry for global #29630200
3296loginwiki More than one matching local log entry for global #29630562
3297loginwiki More than one matching local log entry for global #31018521
3298loginwiki More than one matching local log entry for global #34168996
3299loginwiki More than one matching local log entry for global #34177005
3300loginwiki More than one matching local log entry for global #39136830
3301loginwiki More than one matching local log entry for global #39136939
3302loginwiki More than one matching local log entry for global #40252809
3303loginwiki More than one matching local log entry for global #40253191
3304loginwiki More than one matching local log entry for global #42044645
3305loginwiki More than one matching local log entry for global #42044662
3306loginwiki Would update performer for local #34457063 based on global #44835257 from 'PhilKnight' to 'Cabayi'
3307loginwiki More than one matching local log entry for global #46011965
3308loginwiki More than one matching local log entry for global #48133703
3309loginwiki More than one matching local log entry for global #48136210
3310loginwiki Would update performer for local #36912930 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
3311loginwiki More than one matching local log entry for global #49888569
3312loginwiki More than one matching local log entry for global #49888600
3313loginwiki More than one matching local log entry for global #49889177
3314loginwiki More than one matching local log entry for global #54596312
3315loginwiki More than one matching local log entry for global #54596325
3316loginwiki More than one matching local log entry for global #55036871
3317loginwiki Would update performer for local #42232764 based on global #56701765 from '<INVALID>' to 'A09'
3318loginwiki Would update performer for local #42323920 based on global #56875341 from 'Saurabhtri' to 'Nadzik'
3319loginwiki Would update performer for local #42323916 based on global #56878518 from 'Ich glaube, mein Vollgas knackst' to 'Ternarius'
3320loginwiki Would update performer for local #42397727 based on global #56951327 from '<INVALID>' to 'AccountVanishRequests'
3321loginwiki Would update performer for local #42656730 based on global #57343750 from '<INVALID>' to 'AccountVanishRequests'
3322loginwiki Would update performer for local #43547594 based on global #58509058 from 'Ich glaube, mein Vollgas knackst' to 'Ternarius'
3323loginwiki Would update performer for local #43756764 based on global #58774996 from 'Wakeinmountain' to 'Cabayi'
3324loginwiki More than one matching local log entry for global #59609932
3325loginwiki More than one matching local log entry for global #59619180
3326loginwiki Would update performer for local #44430321 based on global #59850892 from 'Ich glaube, mein Vollgas knackst' to 'Ternarius'
3327loginwiki Would update performer for local #44590636 based on global #60139847 from 'Rodoerg' to 'Malarz pl'
3328loginwiki Would update performer for local #44854916 based on global #60397278 from '<INVALID>' to 'Kadı'
3329loginwiki Would update performer for local #44948588 based on global #60479237 from 'Wakeinmountain' to 'Cabayi'
3330loginwiki Would update performer for local #44988007 based on global #60506837 from '<INVALID>' to 'DreamRimmer'
3331loginwiki Dry run done, would correct 23 actor IDs
3332-----------------------------------------------------------------
3333lowiki
3334-----------------------------------------------------------------
3335lowiki More than one matching local log entry for global #49888569
3336lowiki More than one matching local log entry for global #49888600
3337lowiki More than one matching local log entry for global #49889177
3338lowiki Dry run done, would correct 0 actor IDs
3339-----------------------------------------------------------------
3340lowiktionary
3341-----------------------------------------------------------------
3342lowiktionary Dry run done, would correct 0 actor IDs
3343-----------------------------------------------------------------
3344lrcwiki
3345-----------------------------------------------------------------
3346lrcwiki Dry run done, would correct 0 actor IDs
3347-----------------------------------------------------------------
3348ltgwiki
3349-----------------------------------------------------------------
3350ltgwiki More than one matching local log entry for global #49888569
3351ltgwiki More than one matching local log entry for global #49888600
3352ltgwiki More than one matching local log entry for global #49889177
3353ltgwiki Dry run done, would correct 0 actor IDs
3354-----------------------------------------------------------------
3355ltwiki
3356-----------------------------------------------------------------
3357ltwiki More than one matching local log entry for global #49888569
3358ltwiki More than one matching local log entry for global #49888600
3359ltwiki More than one matching local log entry for global #49889177
3360ltwiki Dry run done, would correct 0 actor IDs
3361-----------------------------------------------------------------
3362ltwikibooks
3363-----------------------------------------------------------------
3364ltwikibooks Dry run done, would correct 0 actor IDs
3365-----------------------------------------------------------------
3366ltwikiquote
3367-----------------------------------------------------------------
3368ltwikiquote Dry run done, would correct 0 actor IDs
3369-----------------------------------------------------------------
3370ltwikisource
3371-----------------------------------------------------------------
3372ltwikisource Dry run done, would correct 0 actor IDs
3373-----------------------------------------------------------------
3374ltwiktionary
3375-----------------------------------------------------------------
3376ltwiktionary Dry run done, would correct 0 actor IDs
3377-----------------------------------------------------------------
3378lvwiki
3379-----------------------------------------------------------------
3380lvwiki More than one matching local log entry for global #49888569
3381lvwiki More than one matching local log entry for global #49888600
3382lvwiki More than one matching local log entry for global #49889177
3383lvwiki Dry run done, would correct 0 actor IDs
3384-----------------------------------------------------------------
3385lvwikibooks
3386-----------------------------------------------------------------
3387lvwikibooks Dry run done, would correct 0 actor IDs
3388-----------------------------------------------------------------
3389lvwiktionary
3390-----------------------------------------------------------------
3391lvwiktionary Dry run done, would correct 0 actor IDs
3392-----------------------------------------------------------------
3393madwiki
3394-----------------------------------------------------------------
3395madwiki Dry run done, would correct 0 actor IDs
3396-----------------------------------------------------------------
3397madwikisource
3398-----------------------------------------------------------------
3399madwikisource Dry run done, would correct 0 actor IDs
3400-----------------------------------------------------------------
3401madwiktionary
3402-----------------------------------------------------------------
3403madwiktionary Dry run done, would correct 0 actor IDs
3404-----------------------------------------------------------------
3405maiwiki
3406-----------------------------------------------------------------
3407maiwiki Dry run done, would correct 0 actor IDs
3408-----------------------------------------------------------------
3409map_bmswiki
3410-----------------------------------------------------------------
3411map_bmswiki Dry run done, would correct 0 actor IDs
3412-----------------------------------------------------------------
3413mdfwiki
3414-----------------------------------------------------------------
3415mdfwiki More than one matching local log entry for global #49888569
3416mdfwiki More than one matching local log entry for global #49888600
3417mdfwiki More than one matching local log entry for global #49889177
3418mdfwiki Dry run done, would correct 0 actor IDs
3419-----------------------------------------------------------------
3420mediawikiwiki
3421-----------------------------------------------------------------
3422mediawikiwiki Would update performer for local #3539680 based on global #12488259 from 'K6ka' to 'Jianhui67'
3423mediawikiwiki More than one matching local log entry for global #12646819
3424mediawikiwiki More than one matching local log entry for global #12649639
3425mediawikiwiki Would update performer for local #4912061 based on global #13997024 from 'K6ka' to 'MBisanz'
3426mediawikiwiki Would update performer for local #6016977 based on global #15237384 from 'Cyberpower678' to 'Maire'
3427mediawikiwiki Would update performer for local #8748288 based on global #18515716 from 'Shakonike' to 'Savh'
3428mediawikiwiki Would update performer for local #8748284 based on global #18515722 from 'Shakonike' to 'Savh'
3429mediawikiwiki Would update performer for local #8748296 based on global #18515724 from 'Shakonike' to 'Savh'
3430mediawikiwiki Would update performer for local #8748142 based on global #18516017 from 'Maur316' to 'K6ka'
3431mediawikiwiki Would update performer for local #8748303 based on global #18521882 from 'Bigpindahouse' to 'Kegns'
3432mediawikiwiki More than one matching local log entry for global #29630176
3433mediawikiwiki More than one matching local log entry for global #29630188
3434mediawikiwiki More than one matching local log entry for global #29630200
3435mediawikiwiki More than one matching local log entry for global #29630562
3436mediawikiwiki More than one matching local log entry for global #31018521
3437mediawikiwiki More than one matching local log entry for global #34168996
3438mediawikiwiki More than one matching local log entry for global #34177005
3439mediawikiwiki More than one matching local log entry for global #40252809
3440mediawikiwiki More than one matching local log entry for global #40253191
3441mediawikiwiki More than one matching local log entry for global #46011965
3442mediawikiwiki More than one matching local log entry for global #49888569
3443mediawikiwiki More than one matching local log entry for global #49888600
3444mediawikiwiki More than one matching local log entry for global #49889177
3445mediawikiwiki More than one matching local log entry for global #55036871
3446mediawikiwiki Would update performer for local #21942137 based on global #59113940 from '<INVALID>' to 'Wüstenspringmaus'
3447mediawikiwiki More than one matching local log entry for global #59609932
3448mediawikiwiki More than one matching local log entry for global #59619180
3449mediawikiwiki Dry run done, would correct 9 actor IDs
3450-----------------------------------------------------------------
3451metawiki
3452-----------------------------------------------------------------
3453metawiki Would update performer for local #11613213 based on global #11613214 from 'Stryn' to 'Jianhui67'
3454metawiki Would update performer for local #11767003 based on global #11767002 from 'Jmvkrecords' to 'Shanmugamp7'
3455metawiki Would update performer for local #12486257 based on global #12488259 from 'K6ka' to 'Jianhui67'
3456metawiki More than one matching local log entry for global #12646819
3457metawiki More than one matching local log entry for global #12649639
3458metawiki Would update performer for local #13996396 based on global #13997024 from 'K6ka' to 'MBisanz'
3459metawiki Would update performer for local #15286397 based on global #15237384 from 'Cyberpower678' to 'Maire'
3460metawiki Would update performer for local #24523048 based on global #24523612 from 'MBq' to 'Masti'
3461metawiki More than one matching local log entry for global #29630176
3462metawiki More than one matching local log entry for global #29630188
3463metawiki More than one matching local log entry for global #29630200
3464metawiki More than one matching local log entry for global #29630562
3465metawiki More than one matching local log entry for global #31018521
3466metawiki More than one matching local log entry for global #34168996
3467metawiki More than one matching local log entry for global #34177005
3468metawiki More than one matching local log entry for global #39136830
3469metawiki More than one matching local log entry for global #39136939
3470metawiki More than one matching local log entry for global #40252809
3471metawiki More than one matching local log entry for global #40253191
3472metawiki More than one matching local log entry for global #42044645
3473metawiki More than one matching local log entry for global #42044662
3474metawiki Would update performer for local #44835024 based on global #44835257 from 'PhilKnight' to 'Cabayi'
3475metawiki More than one matching local log entry for global #46011965
3476metawiki More than one matching local log entry for global #48133703
3477metawiki More than one matching local log entry for global #48136210
3478metawiki Would update performer for local #49693991 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
3479metawiki More than one matching local log entry for global #49888569
3480metawiki More than one matching local log entry for global #49888600
3481metawiki More than one matching local log entry for global #49889177
3482metawiki More than one matching local log entry for global #54596312
3483metawiki More than one matching local log entry for global #54596325
3484metawiki More than one matching local log entry for global #55036871
3485metawiki More than one matching local log entry for global #59609932
3486metawiki More than one matching local log entry for global #59619180
3487metawiki Dry run done, would correct 8 actor IDs
3488-----------------------------------------------------------------
3489mgwiki
3490-----------------------------------------------------------------
3491mgwiki More than one matching local log entry for global #49888569
3492mgwiki More than one matching local log entry for global #49888600
3493mgwiki More than one matching local log entry for global #49889177
3494mgwiki Dry run done, would correct 0 actor IDs
3495-----------------------------------------------------------------
3496mgwikibooks
3497-----------------------------------------------------------------
3498mgwikibooks Dry run done, would correct 0 actor IDs
3499-----------------------------------------------------------------
3500mgwiktionary
3501-----------------------------------------------------------------
3502mgwiktionary Dry run done, would correct 0 actor IDs
3503-----------------------------------------------------------------
3504mhrwiki
3505-----------------------------------------------------------------
3506mhrwiki Dry run done, would correct 0 actor IDs
3507-----------------------------------------------------------------
3508mhwiki
3509-----------------------------------------------------------------
3510mhwiki Dry run done, would correct 0 actor IDs
3511-----------------------------------------------------------------
3512mhwiktionary
3513-----------------------------------------------------------------
3514mhwiktionary Dry run done, would correct 0 actor IDs
3515-----------------------------------------------------------------
3516minwiki
3517-----------------------------------------------------------------
3518minwiki More than one matching local log entry for global #49888569
3519minwiki More than one matching local log entry for global #49888600
3520minwiki More than one matching local log entry for global #49889177
3521minwiki Dry run done, would correct 0 actor IDs
3522-----------------------------------------------------------------
3523minwikibooks
3524-----------------------------------------------------------------
3525minwikibooks Dry run done, would correct 0 actor IDs
3526-----------------------------------------------------------------
3527minwiktionary
3528-----------------------------------------------------------------
3529minwiktionary Dry run done, would correct 0 actor IDs
3530-----------------------------------------------------------------
3531miwiki
3532-----------------------------------------------------------------
3533miwiki Dry run done, would correct 0 actor IDs
3534-----------------------------------------------------------------
3535miwikibooks
3536-----------------------------------------------------------------
3537miwikibooks Dry run done, would correct 0 actor IDs
3538-----------------------------------------------------------------
3539miwiktionary
3540-----------------------------------------------------------------
3541miwiktionary Dry run done, would correct 0 actor IDs
3542-----------------------------------------------------------------
3543mkwiki
3544-----------------------------------------------------------------
3545mkwiki Would update performer for local #2026749 based on global #11644844 from 'Érico Júnior Wouters' to 'Érico'
3546mkwiki More than one matching local log entry for global #49888569
3547mkwiki More than one matching local log entry for global #49888600
3548mkwiki More than one matching local log entry for global #49889177
3549mkwiki Would update performer for local #4245542 based on global #55104956 from '<INVALID>' to 'MdsShakil'
3550mkwiki Dry run done, would correct 2 actor IDs
3551-----------------------------------------------------------------
3552mkwikibooks
3553-----------------------------------------------------------------
3554mkwikibooks Dry run done, would correct 0 actor IDs
3555-----------------------------------------------------------------
3556mkwikimedia
3557-----------------------------------------------------------------
3558mkwikimedia Dry run done, would correct 0 actor IDs
3559-----------------------------------------------------------------
3560mkwikisource
3561-----------------------------------------------------------------
3562mkwikisource Dry run done, would correct 0 actor IDs
3563-----------------------------------------------------------------
3564mkwiktionary
3565-----------------------------------------------------------------
3566mkwiktionary Dry run done, would correct 0 actor IDs
3567-----------------------------------------------------------------
3568mlwiki
3569-----------------------------------------------------------------
3570mlwiki More than one matching local log entry for global #49888569
3571mlwiki More than one matching local log entry for global #49888600
3572mlwiki More than one matching local log entry for global #49889177
3573mlwiki Dry run done, would correct 0 actor IDs
3574-----------------------------------------------------------------
3575mlwikibooks
3576-----------------------------------------------------------------
3577mlwikibooks Dry run done, would correct 0 actor IDs
3578-----------------------------------------------------------------
3579mlwikiquote
3580-----------------------------------------------------------------
3581mlwikiquote Dry run done, would correct 0 actor IDs
3582-----------------------------------------------------------------
3583mlwikisource
3584-----------------------------------------------------------------
3585mlwikisource Dry run done, would correct 0 actor IDs
3586-----------------------------------------------------------------
3587mlwiktionary
3588-----------------------------------------------------------------
3589mlwiktionary Dry run done, would correct 0 actor IDs
3590-----------------------------------------------------------------
3591mniwiki
3592-----------------------------------------------------------------
3593mniwiki More than one matching local log entry for global #55036871
3594mniwiki Dry run done, would correct 0 actor IDs
3595-----------------------------------------------------------------
3596mniwiktionary
3597-----------------------------------------------------------------
3598mniwiktionary Dry run done, would correct 0 actor IDs
3599-----------------------------------------------------------------
3600mnwiki
3601-----------------------------------------------------------------
3602mnwiki More than one matching local log entry for global #55036871
3603mnwiki Dry run done, would correct 0 actor IDs
3604-----------------------------------------------------------------
3605mnwikibooks
3606-----------------------------------------------------------------
3607mnwikibooks Dry run done, would correct 0 actor IDs
3608-----------------------------------------------------------------
3609mnwiktionary
3610-----------------------------------------------------------------
3611mnwiktionary Dry run done, would correct 0 actor IDs
3612-----------------------------------------------------------------
3613mnwwiki
3614-----------------------------------------------------------------
3615mnwwiki Dry run done, would correct 0 actor IDs
3616-----------------------------------------------------------------
3617mnwwiktionary
3618-----------------------------------------------------------------
3619mnwwiktionary Dry run done, would correct 0 actor IDs
3620-----------------------------------------------------------------
3621moswiki
3622-----------------------------------------------------------------
3623moswiki Dry run done, would correct 0 actor IDs
3624-----------------------------------------------------------------
3625mrjwiki
3626-----------------------------------------------------------------
3627mrjwiki Dry run done, would correct 0 actor IDs
3628-----------------------------------------------------------------
3629mrwiki
3630-----------------------------------------------------------------
3631mrwiki More than one matching local log entry for global #49888569
3632mrwiki More than one matching local log entry for global #49888600
3633mrwiki More than one matching local log entry for global #49889177
3634mrwiki Dry run done, would correct 0 actor IDs
3635-----------------------------------------------------------------
3636mrwikibooks
3637-----------------------------------------------------------------
3638mrwikibooks Dry run done, would correct 0 actor IDs
3639-----------------------------------------------------------------
3640mrwikiquote
3641-----------------------------------------------------------------
3642mrwikiquote Dry run done, would correct 0 actor IDs
3643-----------------------------------------------------------------
3644mrwikisource
3645-----------------------------------------------------------------
3646mrwikisource Dry run done, would correct 0 actor IDs
3647-----------------------------------------------------------------
3648mrwiktionary
3649-----------------------------------------------------------------
3650mrwiktionary Dry run done, would correct 0 actor IDs
3651-----------------------------------------------------------------
3652mswiki
3653-----------------------------------------------------------------
3654mswiki Would update performer for local #851017 based on global #15237384 from 'Cyberpower678' to 'Maire'
3655mswiki More than one matching local log entry for global #55036871
3656mswiki Dry run done, would correct 1 actor IDs
3657-----------------------------------------------------------------
3658mswikibooks
3659-----------------------------------------------------------------
3660mswikibooks Dry run done, would correct 0 actor IDs
3661-----------------------------------------------------------------
3662mswikisource
3663-----------------------------------------------------------------
3664mswikisource Dry run done, would correct 0 actor IDs
3665-----------------------------------------------------------------
3666mswiktionary
3667-----------------------------------------------------------------
3668mswiktionary Dry run done, would correct 0 actor IDs
3669-----------------------------------------------------------------
3670mtwiki
3671-----------------------------------------------------------------
3672mtwiki Would update performer for local #28450 based on global #15237384 from 'Cyberpower678' to 'Maire'
3673mtwiki Dry run done, would correct 1 actor IDs
3674-----------------------------------------------------------------
3675mtwiktionary
3676-----------------------------------------------------------------
3677mtwiktionary Dry run done, would correct 0 actor IDs
3678-----------------------------------------------------------------
3679muswiki
3680-----------------------------------------------------------------
3681muswiki Dry run done, would correct 0 actor IDs
3682-----------------------------------------------------------------
3683mwlwiki
3684-----------------------------------------------------------------
3685mwlwiki Dry run done, would correct 0 actor IDs
3686-----------------------------------------------------------------
3687mxwikimedia
3688-----------------------------------------------------------------
3689mxwikimedia Dry run done, would correct 0 actor IDs
3690-----------------------------------------------------------------
3691myvwiki
3692-----------------------------------------------------------------
3693myvwiki Dry run done, would correct 0 actor IDs
3694-----------------------------------------------------------------
3695mywiki
3696-----------------------------------------------------------------
3697mywiki More than one matching local log entry for global #49888569
3698mywiki More than one matching local log entry for global #49888600
3699mywiki More than one matching local log entry for global #49889177
3700mywiki Dry run done, would correct 0 actor IDs
3701-----------------------------------------------------------------
3702mywikibooks
3703-----------------------------------------------------------------
3704mywikibooks Dry run done, would correct 0 actor IDs
3705-----------------------------------------------------------------
3706mywikisource
3707-----------------------------------------------------------------
3708mywikisource Dry run done, would correct 0 actor IDs
3709-----------------------------------------------------------------
3710mywiktionary
3711-----------------------------------------------------------------
3712mywiktionary Dry run done, would correct 0 actor IDs
3713-----------------------------------------------------------------
3714mznwiki
3715-----------------------------------------------------------------
3716mznwiki Dry run done, would correct 0 actor IDs
3717-----------------------------------------------------------------
3718nahwiki
3719-----------------------------------------------------------------
3720nahwiki Dry run done, would correct 0 actor IDs
3721-----------------------------------------------------------------
3722nahwikibooks
3723-----------------------------------------------------------------
3724nahwikibooks Dry run done, would correct 0 actor IDs
3725-----------------------------------------------------------------
3726nahwiktionary
3727-----------------------------------------------------------------
3728nahwiktionary Dry run done, would correct 0 actor IDs
3729-----------------------------------------------------------------
3730napwiki
3731-----------------------------------------------------------------
3732napwiki Dry run done, would correct 0 actor IDs
3733-----------------------------------------------------------------
3734napwikisource
3735-----------------------------------------------------------------
3736napwikisource Dry run done, would correct 0 actor IDs
3737-----------------------------------------------------------------
3738nawiki
3739-----------------------------------------------------------------
3740nawiki Dry run done, would correct 0 actor IDs
3741-----------------------------------------------------------------
3742nawikibooks
3743-----------------------------------------------------------------
3744nawikibooks Dry run done, would correct 0 actor IDs
3745-----------------------------------------------------------------
3746nawikiquote
3747-----------------------------------------------------------------
3748nawikiquote Dry run done, would correct 0 actor IDs
3749-----------------------------------------------------------------
3750nawiktionary
3751-----------------------------------------------------------------
3752nawiktionary Dry run done, would correct 0 actor IDs
3753-----------------------------------------------------------------
3754nds_nlwiki
3755-----------------------------------------------------------------
3756nds_nlwiki Dry run done, would correct 0 actor IDs
3757-----------------------------------------------------------------
3758ndswiki
3759-----------------------------------------------------------------
3760ndswiki Dry run done, would correct 0 actor IDs
3761-----------------------------------------------------------------
3762ndswikibooks
3763-----------------------------------------------------------------
3764ndswikibooks Dry run done, would correct 0 actor IDs
3765-----------------------------------------------------------------
3766ndswikiquote
3767-----------------------------------------------------------------
3768ndswikiquote Dry run done, would correct 0 actor IDs
3769-----------------------------------------------------------------
3770ndswiktionary
3771-----------------------------------------------------------------
3772ndswiktionary Dry run done, would correct 0 actor IDs
3773-----------------------------------------------------------------
3774newiki
3775-----------------------------------------------------------------
3776newiki More than one matching local log entry for global #49888569
3777newiki More than one matching local log entry for global #49888600
3778newiki More than one matching local log entry for global #49889177
3779newiki Local log entry #229410 has an invalid user name
3780newiki Would update performer for local #229411 based on global #58691153 from 'Sharat kumar sahoo' to 'J ansari'
3781newiki Dry run done, would correct 1 actor IDs
3782-----------------------------------------------------------------
3783newikibooks
3784-----------------------------------------------------------------
3785newikibooks Dry run done, would correct 0 actor IDs
3786-----------------------------------------------------------------
3787newiktionary
3788-----------------------------------------------------------------
3789newiktionary Dry run done, would correct 0 actor IDs
3790-----------------------------------------------------------------
3791newwiki
3792-----------------------------------------------------------------
3793newwiki More than one matching local log entry for global #49888569
3794newwiki More than one matching local log entry for global #49888600
3795newwiki More than one matching local log entry for global #49889177
3796newwiki Dry run done, would correct 0 actor IDs
3797-----------------------------------------------------------------
3798ngwiki
3799-----------------------------------------------------------------
3800ngwiki Dry run done, would correct 0 actor IDs
3801-----------------------------------------------------------------
3802niawiki
3803-----------------------------------------------------------------
3804niawiki Dry run done, would correct 0 actor IDs
3805-----------------------------------------------------------------
3806niawiktionary
3807-----------------------------------------------------------------
3808niawiktionary Dry run done, would correct 0 actor IDs
3809-----------------------------------------------------------------
3810nlwiki
3811-----------------------------------------------------------------
3812nlwiki Would update performer for local #25133885 based on global #15237384 from 'Cyberpower678' to 'Maire'
3813nlwiki Would update performer for local #26060482 based on global #18521882 from 'Ielavsaam' to 'Kegns'
3814nlwiki More than one matching local log entry for global #29630176
3815nlwiki More than one matching local log entry for global #29630188
3816nlwiki More than one matching local log entry for global #29630200
3817nlwiki More than one matching local log entry for global #29630562
3818nlwiki More than one matching local log entry for global #49888569
3819nlwiki More than one matching local log entry for global #49888600
3820nlwiki More than one matching local log entry for global #49889177
3821nlwiki Would update performer for local #33745529 based on global #60163698 from 'Andre80~nlwiki' to 'Malarz pl'
3822nlwiki Dry run done, would correct 3 actor IDs
3823-----------------------------------------------------------------
3824nlwikibooks
3825-----------------------------------------------------------------
3826nlwikibooks Dry run done, would correct 0 actor IDs
3827-----------------------------------------------------------------
3828nlwikimedia
3829-----------------------------------------------------------------
3830nlwikimedia Dry run done, would correct 0 actor IDs
3831-----------------------------------------------------------------
3832nlwikinews
3833-----------------------------------------------------------------
3834nlwikinews Dry run done, would correct 0 actor IDs
3835-----------------------------------------------------------------
3836nlwikiquote
3837-----------------------------------------------------------------
3838nlwikiquote Dry run done, would correct 0 actor IDs
3839-----------------------------------------------------------------
3840nlwikisource
3841-----------------------------------------------------------------
3842nlwikisource Dry run done, would correct 0 actor IDs
3843-----------------------------------------------------------------
3844nlwikivoyage
3845-----------------------------------------------------------------
3846nlwikivoyage Local log entry #66274 has an invalid user name
3847nlwikivoyage Dry run done, would correct 0 actor IDs
3848-----------------------------------------------------------------
3849nlwiktionary
3850-----------------------------------------------------------------
3851nlwiktionary Would update performer for local #1077220 based on global #58837405 from '<INVALID>' to 'CptViraj'
3852nlwiktionary Dry run done, would correct 1 actor IDs
3853-----------------------------------------------------------------
3854nnwiki
3855-----------------------------------------------------------------
3856nnwiki More than one matching local log entry for global #49888569
3857nnwiki More than one matching local log entry for global #49888600
3858nnwiki More than one matching local log entry for global #49889177
3859nnwiki Dry run done, would correct 0 actor IDs
3860-----------------------------------------------------------------
3861nnwikiquote
3862-----------------------------------------------------------------
3863nnwikiquote Dry run done, would correct 0 actor IDs
3864-----------------------------------------------------------------
3865nnwiktionary
3866-----------------------------------------------------------------
3867nnwiktionary Dry run done, would correct 0 actor IDs
3868-----------------------------------------------------------------
3869novwiki
3870-----------------------------------------------------------------
3871novwiki Dry run done, would correct 0 actor IDs
3872-----------------------------------------------------------------
3873nowiki
3874-----------------------------------------------------------------
3875nowiki Would update performer for local #12015942 based on global #15237384 from 'Cyberpower678' to 'Maire'
3876nowiki More than one matching local log entry for global #49888569
3877nowiki More than one matching local log entry for global #49888600
3878nowiki More than one matching local log entry for global #49889177
3879nowiki Dry run done, would correct 1 actor IDs
3880-----------------------------------------------------------------
3881nowikibooks
3882-----------------------------------------------------------------
3883nowikibooks Dry run done, would correct 0 actor IDs
3884-----------------------------------------------------------------
3885nowikimedia
3886-----------------------------------------------------------------
3887nowikimedia Dry run done, would correct 0 actor IDs
3888-----------------------------------------------------------------
3889nowikinews
3890-----------------------------------------------------------------
3891nowikinews More than one matching local log entry for global #15473085
3892nowikinews Dry run done, would correct 0 actor IDs
3893-----------------------------------------------------------------
3894nowikiquote
3895-----------------------------------------------------------------
3896nowikiquote Dry run done, would correct 0 actor IDs
3897-----------------------------------------------------------------
3898nowikisource
3899-----------------------------------------------------------------
3900nowikisource Dry run done, would correct 0 actor IDs
3901-----------------------------------------------------------------
3902nowiktionary
3903-----------------------------------------------------------------
3904nowiktionary Dry run done, would correct 0 actor IDs
3905-----------------------------------------------------------------
3906nqowiki
3907-----------------------------------------------------------------
3908nqowiki Dry run done, would correct 0 actor IDs
3909-----------------------------------------------------------------
3910nrmwiki
3911-----------------------------------------------------------------
3912nrmwiki Dry run done, would correct 0 actor IDs
3913-----------------------------------------------------------------
3914nrwiki
3915-----------------------------------------------------------------
3916nrwiki Dry run done, would correct 0 actor IDs
3917-----------------------------------------------------------------
3918nsowiki
3919-----------------------------------------------------------------
3920nsowiki Would update performer for local #3794 based on global #12292689 from 'Ruy Pugliesi' to 'RadiX'
3921nsowiki Dry run done, would correct 1 actor IDs
3922-----------------------------------------------------------------
3923nupwiki
3924-----------------------------------------------------------------
3925nupwiki Dry run done, would correct 0 actor IDs
3926-----------------------------------------------------------------
3927nvwiki
3928-----------------------------------------------------------------
3929nvwiki More than one matching local log entry for global #49888569
3930nvwiki More than one matching local log entry for global #49888600
3931nvwiki More than one matching local log entry for global #49889177
3932nvwiki Dry run done, would correct 0 actor IDs
3933-----------------------------------------------------------------
3934nycwikimedia
3935-----------------------------------------------------------------
3936nycwikimedia Dry run done, would correct 0 actor IDs
3937-----------------------------------------------------------------
3938nywiki
3939-----------------------------------------------------------------
3940nywiki More than one matching local log entry for global #49888569
3941nywiki More than one matching local log entry for global #49888600
3942nywiki More than one matching local log entry for global #49889177
3943nywiki Dry run done, would correct 0 actor IDs
3944-----------------------------------------------------------------
3945nzwikimedia
3946-----------------------------------------------------------------
3947nzwikimedia Dry run done, would correct 0 actor IDs
3948-----------------------------------------------------------------
3949ocwiki
3950-----------------------------------------------------------------
3951ocwiki More than one matching local log entry for global #49888569
3952ocwiki More than one matching local log entry for global #49888600
3953ocwiki More than one matching local log entry for global #49889177
3954ocwiki Dry run done, would correct 0 actor IDs
3955-----------------------------------------------------------------
3956ocwikibooks
3957-----------------------------------------------------------------
3958ocwikibooks Dry run done, would correct 0 actor IDs
3959-----------------------------------------------------------------
3960ocwiktionary
3961-----------------------------------------------------------------
3962ocwiktionary Dry run done, would correct 0 actor IDs
3963-----------------------------------------------------------------
3964olowiki
3965-----------------------------------------------------------------
3966olowiki More than one matching local log entry for global #49888569
3967olowiki More than one matching local log entry for global #49888600
3968olowiki More than one matching local log entry for global #49889177
3969olowiki Dry run done, would correct 0 actor IDs
3970-----------------------------------------------------------------
3971omwiki
3972-----------------------------------------------------------------
3973omwiki More than one matching local log entry for global #49888569
3974omwiki More than one matching local log entry for global #49888600
3975omwiki More than one matching local log entry for global #49889177
3976omwiki Dry run done, would correct 0 actor IDs
3977-----------------------------------------------------------------
3978omwiktionary
3979-----------------------------------------------------------------
3980omwiktionary Dry run done, would correct 0 actor IDs
3981-----------------------------------------------------------------
3982orwiki
3983-----------------------------------------------------------------
3984orwiki Dry run done, would correct 0 actor IDs
3985-----------------------------------------------------------------
3986orwikisource
3987-----------------------------------------------------------------
3988orwikisource Dry run done, would correct 0 actor IDs
3989-----------------------------------------------------------------
3990orwiktionary
3991-----------------------------------------------------------------
3992orwiktionary Dry run done, would correct 0 actor IDs
3993-----------------------------------------------------------------
3994oswiki
3995-----------------------------------------------------------------
3996oswiki Dry run done, would correct 0 actor IDs
3997-----------------------------------------------------------------
3998outreachwiki
3999-----------------------------------------------------------------
4000outreachwiki Dry run done, would correct 0 actor IDs
4001-----------------------------------------------------------------
4002pa_uswikimedia
4003-----------------------------------------------------------------
4004pa_uswikimedia Dry run done, would correct 0 actor IDs
4005-----------------------------------------------------------------
4006pagwiki
4007-----------------------------------------------------------------
4008pagwiki Dry run done, would correct 0 actor IDs
4009-----------------------------------------------------------------
4010pamwiki
4011-----------------------------------------------------------------
4012pamwiki Dry run done, would correct 0 actor IDs
4013-----------------------------------------------------------------
4014papwiki
4015-----------------------------------------------------------------
4016papwiki Dry run done, would correct 0 actor IDs
4017-----------------------------------------------------------------
4018pawiki
4019-----------------------------------------------------------------
4020pawiki Dry run done, would correct 0 actor IDs
4021-----------------------------------------------------------------
4022pawikibooks
4023-----------------------------------------------------------------
4024pawikibooks Dry run done, would correct 0 actor IDs
4025-----------------------------------------------------------------
4026pawikisource
4027-----------------------------------------------------------------
4028pawikisource Dry run done, would correct 0 actor IDs
4029-----------------------------------------------------------------
4030pawiktionary
4031-----------------------------------------------------------------
4032pawiktionary Dry run done, would correct 0 actor IDs
4033-----------------------------------------------------------------
4034pcdwiki
4035-----------------------------------------------------------------
4036pcdwiki Dry run done, would correct 0 actor IDs
4037-----------------------------------------------------------------
4038pcmwiki
4039-----------------------------------------------------------------
4040pcmwiki Dry run done, would correct 0 actor IDs
4041-----------------------------------------------------------------
4042pdcwiki
4043-----------------------------------------------------------------
4044pdcwiki Dry run done, would correct 0 actor IDs
4045-----------------------------------------------------------------
4046pflwiki
4047-----------------------------------------------------------------
4048pflwiki Dry run done, would correct 0 actor IDs
4049-----------------------------------------------------------------
4050pihwiki
4051-----------------------------------------------------------------
4052pihwiki More than one matching local log entry for global #49888569
4053pihwiki More than one matching local log entry for global #49888600
4054pihwiki More than one matching local log entry for global #49889177
4055pihwiki Dry run done, would correct 0 actor IDs
4056-----------------------------------------------------------------
4057piwiki
4058-----------------------------------------------------------------
4059piwiki Dry run done, would correct 0 actor IDs
4060-----------------------------------------------------------------
4061piwiktionary
4062-----------------------------------------------------------------
4063piwiktionary Dry run done, would correct 0 actor IDs
4064-----------------------------------------------------------------
4065plwiki
4066-----------------------------------------------------------------
4067plwiki Would update performer for local #29897829 based on global #18521882 from 'Ryszard Szulc' to 'Kegns'
4068plwiki More than one matching local log entry for global #49888569
4069plwiki More than one matching local log entry for global #49888600
4070plwiki More than one matching local log entry for global #49889177
4071plwiki More than one matching local log entry for global #55036871
4072plwiki Dry run done, would correct 1 actor IDs
4073-----------------------------------------------------------------
4074plwikibooks
4075-----------------------------------------------------------------
4076plwikibooks Dry run done, would correct 0 actor IDs
4077-----------------------------------------------------------------
4078plwikimedia
4079-----------------------------------------------------------------
4080plwikimedia Dry run done, would correct 0 actor IDs
4081-----------------------------------------------------------------
4082plwikinews
4083-----------------------------------------------------------------
4084plwikinews Dry run done, would correct 0 actor IDs
4085-----------------------------------------------------------------
4086plwikiquote
4087-----------------------------------------------------------------
4088plwikiquote Dry run done, would correct 0 actor IDs
4089-----------------------------------------------------------------
4090plwikisource
4091-----------------------------------------------------------------
4092plwikisource Dry run done, would correct 0 actor IDs
4093-----------------------------------------------------------------
4094plwikivoyage
4095-----------------------------------------------------------------
4096plwikivoyage Dry run done, would correct 0 actor IDs
4097-----------------------------------------------------------------
4098plwiktionary
4099-----------------------------------------------------------------
4100plwiktionary Dry run done, would correct 0 actor IDs
4101-----------------------------------------------------------------
4102pmswiki
4103-----------------------------------------------------------------
4104pmswiki Dry run done, would correct 0 actor IDs
4105-----------------------------------------------------------------
4106pmswikisource
4107-----------------------------------------------------------------
4108pmswikisource Dry run done, would correct 0 actor IDs
4109-----------------------------------------------------------------
4110pnbwiki
4111-----------------------------------------------------------------
4112pnbwiki More than one matching local log entry for global #55036871
4113pnbwiki Dry run done, would correct 0 actor IDs
4114-----------------------------------------------------------------
4115pnbwiktionary
4116-----------------------------------------------------------------
4117pnbwiktionary Dry run done, would correct 0 actor IDs
4118-----------------------------------------------------------------
4119pntwiki
4120-----------------------------------------------------------------
4121pntwiki More than one matching local log entry for global #49888569
4122pntwiki More than one matching local log entry for global #49888600
4123pntwiki More than one matching local log entry for global #49889177
4124pntwiki Dry run done, would correct 0 actor IDs
4125-----------------------------------------------------------------
4126pswiki
4127-----------------------------------------------------------------
4128pswiki Dry run done, would correct 0 actor IDs
4129-----------------------------------------------------------------
4130pswikibooks
4131-----------------------------------------------------------------
4132pswikibooks Dry run done, would correct 0 actor IDs
4133-----------------------------------------------------------------
4134pswikivoyage
4135-----------------------------------------------------------------
4136pswikivoyage Dry run done, would correct 0 actor IDs
4137-----------------------------------------------------------------
4138pswiktionary
4139-----------------------------------------------------------------
4140pswiktionary Dry run done, would correct 0 actor IDs
4141-----------------------------------------------------------------
4142ptwiki
4143-----------------------------------------------------------------
4144ptwiki More than one matching local log entry for global #12646819
4145ptwiki More than one matching local log entry for global #12649639
4146ptwiki Would update performer for local #22909391 based on global #18515724 from 'Brazuka13' to 'Savh'
4147ptwiki Would update performer for local #22909398 based on global #18521882 from 'Vanessa artur' to 'Kegns'
4148ptwiki Would update performer for local #23043959 based on global #18832611 from 'Djc~ptwiki' to 'Masti'
4149ptwiki More than one matching local log entry for global #49888569
4150ptwiki More than one matching local log entry for global #49888600
4151ptwiki More than one matching local log entry for global #49889177
4152ptwiki More than one matching local log entry for global #55036871
4153ptwiki Would update performer for local #31012358 based on global #56130169 from '<INVALID>' to 'Ontzak'
4154ptwiki Would update performer for local #31675529 based on global #59562853 from 'Triunfoesmeraldino' to 'Jules*'
4155ptwiki Dry run done, would correct 5 actor IDs
4156-----------------------------------------------------------------
4157ptwikibooks
4158-----------------------------------------------------------------
4159ptwikibooks Dry run done, would correct 0 actor IDs
4160-----------------------------------------------------------------
4161ptwikimedia
4162-----------------------------------------------------------------
4163ptwikimedia Dry run done, would correct 0 actor IDs
4164-----------------------------------------------------------------
4165ptwikinews
4166-----------------------------------------------------------------
4167ptwikinews Dry run done, would correct 0 actor IDs
4168-----------------------------------------------------------------
4169ptwikiquote
4170-----------------------------------------------------------------
4171ptwikiquote More than one matching local log entry for global #12646819
4172ptwikiquote More than one matching local log entry for global #12649639
4173ptwikiquote Dry run done, would correct 0 actor IDs
4174-----------------------------------------------------------------
4175ptwikisource
4176-----------------------------------------------------------------
4177ptwikisource Dry run done, would correct 0 actor IDs
4178-----------------------------------------------------------------
4179ptwikiversity
4180-----------------------------------------------------------------
4181ptwikiversity Dry run done, would correct 0 actor IDs
4182-----------------------------------------------------------------
4183ptwikivoyage
4184-----------------------------------------------------------------
4185ptwikivoyage Dry run done, would correct 0 actor IDs
4186-----------------------------------------------------------------
4187ptwiktionary
4188-----------------------------------------------------------------
4189ptwiktionary More than one matching local log entry for global #12646819
4190ptwiktionary More than one matching local log entry for global #12649639
4191ptwiktionary Dry run done, would correct 0 actor IDs
4192-----------------------------------------------------------------
4193pwnwiki
4194-----------------------------------------------------------------
4195pwnwiki Dry run done, would correct 0 actor IDs
4196-----------------------------------------------------------------
4197qualitywiki
4198-----------------------------------------------------------------
4199qualitywiki Dry run done, would correct 0 actor IDs
4200-----------------------------------------------------------------
4201quwiki
4202-----------------------------------------------------------------
4203quwiki Dry run done, would correct 0 actor IDs
4204-----------------------------------------------------------------
4205quwikibooks
4206-----------------------------------------------------------------
4207quwikibooks Dry run done, would correct 0 actor IDs
4208-----------------------------------------------------------------
4209quwikiquote
4210-----------------------------------------------------------------
4211quwikiquote Dry run done, would correct 0 actor IDs
4212-----------------------------------------------------------------
4213quwiktionary
4214-----------------------------------------------------------------
4215quwiktionary Dry run done, would correct 0 actor IDs
4216-----------------------------------------------------------------
4217rkiwiki
4218-----------------------------------------------------------------
4219rkiwiki Dry run done, would correct 0 actor IDs
4220-----------------------------------------------------------------
4221rmwiki
4222-----------------------------------------------------------------
4223rmwiki Dry run done, would correct 0 actor IDs
4224-----------------------------------------------------------------
4225rmwikibooks
4226-----------------------------------------------------------------
4227rmwikibooks Dry run done, would correct 0 actor IDs
4228-----------------------------------------------------------------
4229rmwiktionary
4230-----------------------------------------------------------------
4231rmwiktionary Dry run done, would correct 0 actor IDs
4232-----------------------------------------------------------------
4233rmywiki
4234-----------------------------------------------------------------
4235rmywiki More than one matching local log entry for global #49888569
4236rmywiki More than one matching local log entry for global #49888600
4237rmywiki More than one matching local log entry for global #49889177
4238rmywiki Dry run done, would correct 0 actor IDs
4239-----------------------------------------------------------------
4240rnwiki
4241-----------------------------------------------------------------
4242rnwiki More than one matching local log entry for global #49888569
4243rnwiki More than one matching local log entry for global #49888600
4244rnwiki More than one matching local log entry for global #49889177
4245rnwiki More than one matching local log entry for global #55036871
4246rnwiki Dry run done, would correct 0 actor IDs
4247-----------------------------------------------------------------
4248rnwiktionary
4249-----------------------------------------------------------------
4250rnwiktionary Dry run done, would correct 0 actor IDs
4251-----------------------------------------------------------------
4252roa_rupwiki
4253-----------------------------------------------------------------
4254roa_rupwiki Dry run done, would correct 0 actor IDs
4255-----------------------------------------------------------------
4256roa_rupwiktionary
4257-----------------------------------------------------------------
4258roa_rupwiktionary Dry run done, would correct 0 actor IDs
4259-----------------------------------------------------------------
4260roa_tarawiki
4261-----------------------------------------------------------------
4262roa_tarawiki Dry run done, would correct 0 actor IDs
4263-----------------------------------------------------------------
4264rowiki
4265-----------------------------------------------------------------
4266rowiki More than one matching local log entry for global #49888569
4267rowiki More than one matching local log entry for global #49888600
4268rowiki More than one matching local log entry for global #49889177
4269rowiki Would update performer for local #8081221 based on global #56422129 from '<INVALID>' to 'מקף'
4270rowiki Dry run done, would correct 1 actor IDs
4271-----------------------------------------------------------------
4272rowikibooks
4273-----------------------------------------------------------------
4274rowikibooks Dry run done, would correct 0 actor IDs
4275-----------------------------------------------------------------
4276rowikinews
4277-----------------------------------------------------------------
4278rowikinews Dry run done, would correct 0 actor IDs
4279-----------------------------------------------------------------
4280rowikiquote
4281-----------------------------------------------------------------
4282rowikiquote Dry run done, would correct 0 actor IDs
4283-----------------------------------------------------------------
4284rowikisource
4285-----------------------------------------------------------------
4286rowikisource Dry run done, would correct 0 actor IDs
4287-----------------------------------------------------------------
4288rowikivoyage
4289-----------------------------------------------------------------
4290rowikivoyage Dry run done, would correct 0 actor IDs
4291-----------------------------------------------------------------
4292rowiktionary
4293-----------------------------------------------------------------
4294rowiktionary Dry run done, would correct 0 actor IDs
4295-----------------------------------------------------------------
4296rskwiki
4297-----------------------------------------------------------------
4298rskwiki Dry run done, would correct 0 actor IDs
4299-----------------------------------------------------------------
4300ruewiki
4301-----------------------------------------------------------------
4302ruewiki Dry run done, would correct 0 actor IDs
4303-----------------------------------------------------------------
4304ruwiki
4305-----------------------------------------------------------------
4306ruwiki Would update performer for local #44233504 based on global #18521882 from 'MVH~ruwiki' to 'Kegns'
4307ruwiki More than one matching local log entry for global #29630176
4308ruwiki More than one matching local log entry for global #29630188
4309ruwiki More than one matching local log entry for global #29630200
4310ruwiki More than one matching local log entry for global #29630562
4311ruwiki More than one matching local log entry for global #49888569
4312ruwiki More than one matching local log entry for global #49888600
4313ruwiki More than one matching local log entry for global #49889177
4314ruwiki More than one matching local log entry for global #55036871
4315ruwiki More than one matching local log entry for global #59609932
4316ruwiki More than one matching local log entry for global #59619180
4317ruwiki Dry run done, would correct 1 actor IDs
4318-----------------------------------------------------------------
4319ruwikibooks
4320-----------------------------------------------------------------
4321ruwikibooks Dry run done, would correct 0 actor IDs
4322-----------------------------------------------------------------
4323ruwikimedia
4324-----------------------------------------------------------------
4325ruwikimedia Dry run done, would correct 0 actor IDs
4326-----------------------------------------------------------------
4327ruwikinews
4328-----------------------------------------------------------------
4329ruwikinews Dry run done, would correct 0 actor IDs
4330-----------------------------------------------------------------
4331ruwikiquote
4332-----------------------------------------------------------------
4333ruwikiquote Dry run done, would correct 0 actor IDs
4334-----------------------------------------------------------------
4335ruwikisource
4336-----------------------------------------------------------------
4337ruwikisource Dry run done, would correct 0 actor IDs
4338-----------------------------------------------------------------
4339ruwikiversity
4340-----------------------------------------------------------------
4341ruwikiversity Dry run done, would correct 0 actor IDs
4342-----------------------------------------------------------------
4343ruwikivoyage
4344-----------------------------------------------------------------
4345ruwikivoyage Dry run done, would correct 0 actor IDs
4346-----------------------------------------------------------------
4347ruwiktionary
4348-----------------------------------------------------------------
4349ruwiktionary Would update performer for local #3068560 based on global #18521882 from 'Alexander simply' to 'Kegns'
4350ruwiktionary Dry run done, would correct 1 actor IDs
4351-----------------------------------------------------------------
4352rwwiki
4353-----------------------------------------------------------------
4354rwwiki Dry run done, would correct 0 actor IDs
4355-----------------------------------------------------------------
4356rwwiktionary
4357-----------------------------------------------------------------
4358rwwiktionary Dry run done, would correct 0 actor IDs
4359-----------------------------------------------------------------
4360sahwiki
4361-----------------------------------------------------------------
4362sahwiki Would update performer for local #69256 based on global #60524415 from 'Przeszka' to 'J ansari'
4363sahwiki Dry run done, would correct 1 actor IDs
4364-----------------------------------------------------------------
4365sahwikiquote
4366-----------------------------------------------------------------
4367sahwikiquote Dry run done, would correct 0 actor IDs
4368-----------------------------------------------------------------
4369sahwikisource
4370-----------------------------------------------------------------
4371sahwikisource More than one matching local log entry for global #15473085
4372sahwikisource Dry run done, would correct 0 actor IDs
4373-----------------------------------------------------------------
4374satwiki
4375-----------------------------------------------------------------
4376satwiki Dry run done, would correct 0 actor IDs
4377-----------------------------------------------------------------
4378satwiktionary
4379-----------------------------------------------------------------
4380satwiktionary Dry run done, would correct 0 actor IDs
4381-----------------------------------------------------------------
4382sawiki
4383-----------------------------------------------------------------
4384sawiki Dry run done, would correct 0 actor IDs
4385-----------------------------------------------------------------
4386sawikibooks
4387-----------------------------------------------------------------
4388sawikibooks Dry run done, would correct 0 actor IDs
4389-----------------------------------------------------------------
4390sawikiquote
4391-----------------------------------------------------------------
4392sawikiquote Dry run done, would correct 0 actor IDs
4393-----------------------------------------------------------------
4394sawikisource
4395-----------------------------------------------------------------
4396sawikisource Dry run done, would correct 0 actor IDs
4397-----------------------------------------------------------------
4398sawiktionary
4399-----------------------------------------------------------------
4400sawiktionary Dry run done, would correct 0 actor IDs
4401-----------------------------------------------------------------
4402scnwiki
4403-----------------------------------------------------------------
4404scnwiki Dry run done, would correct 0 actor IDs
4405-----------------------------------------------------------------
4406scnwiktionary
4407-----------------------------------------------------------------
4408scnwiktionary Dry run done, would correct 0 actor IDs
4409-----------------------------------------------------------------
4410scowiki
4411-----------------------------------------------------------------
4412scowiki More than one matching local log entry for global #49888569
4413scowiki More than one matching local log entry for global #49888600
4414scowiki More than one matching local log entry for global #49889177
4415scowiki Would update performer for local #394012 based on global #54885161 from 'Antoni Salvà' to 'Céréales Killer'
4416scowiki Dry run done, would correct 1 actor IDs
4417-----------------------------------------------------------------
4418scwiki
4419-----------------------------------------------------------------
4420scwiki Dry run done, would correct 0 actor IDs
4421-----------------------------------------------------------------
4422scwiktionary
4423-----------------------------------------------------------------
4424scwiktionary Dry run done, would correct 0 actor IDs
4425-----------------------------------------------------------------
4426sdwiki
4427-----------------------------------------------------------------
4428sdwiki Dry run done, would correct 0 actor IDs
4429-----------------------------------------------------------------
4430sdwikinews
4431-----------------------------------------------------------------
4432sdwikinews Dry run done, would correct 0 actor IDs
4433-----------------------------------------------------------------
4434sdwiktionary
4435-----------------------------------------------------------------
4436sdwiktionary Dry run done, would correct 0 actor IDs
4437-----------------------------------------------------------------
4438sewiki
4439-----------------------------------------------------------------
4440sewiki Dry run done, would correct 0 actor IDs
4441-----------------------------------------------------------------
4442sewikibooks
4443-----------------------------------------------------------------
4444sewikibooks Dry run done, would correct 0 actor IDs
4445-----------------------------------------------------------------
4446sewikimedia
4447-----------------------------------------------------------------
4448sewikimedia Dry run done, would correct 0 actor IDs
4449-----------------------------------------------------------------
4450sgwiki
4451-----------------------------------------------------------------
4452sgwiki More than one matching local log entry for global #49888569
4453sgwiki More than one matching local log entry for global #49888600
4454sgwiki More than one matching local log entry for global #49889177
4455sgwiki Dry run done, would correct 0 actor IDs
4456-----------------------------------------------------------------
4457sgwiktionary
4458-----------------------------------------------------------------
4459sgwiktionary Dry run done, would correct 0 actor IDs
4460-----------------------------------------------------------------
4461shiwiki
4462-----------------------------------------------------------------
4463shiwiki Dry run done, would correct 0 actor IDs
4464-----------------------------------------------------------------
4465shnwiki
4466-----------------------------------------------------------------
4467shnwiki Dry run done, would correct 0 actor IDs
4468-----------------------------------------------------------------
4469shnwikibooks
4470-----------------------------------------------------------------
4471shnwikibooks Dry run done, would correct 0 actor IDs
4472-----------------------------------------------------------------
4473shnwikinews
4474-----------------------------------------------------------------
4475shnwikinews Dry run done, would correct 0 actor IDs
4476-----------------------------------------------------------------
4477shnwikivoyage
4478-----------------------------------------------------------------
4479shnwikivoyage Dry run done, would correct 0 actor IDs
4480-----------------------------------------------------------------
4481shnwiktionary
4482-----------------------------------------------------------------
4483shnwiktionary Dry run done, would correct 0 actor IDs
4484-----------------------------------------------------------------
4485shwiki
4486-----------------------------------------------------------------
4487shwiki Would update performer for local #37730953 based on global #18521882 from 'Blythwood' to 'Kegns'
4488shwiki More than one matching local log entry for global #49888569
4489shwiki More than one matching local log entry for global #49888600
4490shwiki More than one matching local log entry for global #49889177
4491shwiki More than one matching local log entry for global #55036871
4492shwiki Dry run done, would correct 1 actor IDs
4493-----------------------------------------------------------------
4494shwiktionary
4495-----------------------------------------------------------------
4496shwiktionary Dry run done, would correct 0 actor IDs
4497-----------------------------------------------------------------
4498shywiktionary
4499-----------------------------------------------------------------
4500shywiktionary Dry run done, would correct 0 actor IDs
4501-----------------------------------------------------------------
4502simplewiki
4503-----------------------------------------------------------------
4504simplewiki More than one matching local log entry for global #15473085
4505simplewiki Would update performer for local #1020774 based on global #18521882 from 'Martille' to 'Kegns'
4506simplewiki More than one matching local log entry for global #49888569
4507simplewiki More than one matching local log entry for global #49888600
4508simplewiki More than one matching local log entry for global #49889177
4509simplewiki Would update performer for local #2999138 based on global #59763297 from 'YesICare' to 'J ansari'
4510simplewiki Dry run done, would correct 2 actor IDs
4511-----------------------------------------------------------------
4512simplewikibooks
4513-----------------------------------------------------------------
4514simplewikibooks Dry run done, would correct 0 actor IDs
4515-----------------------------------------------------------------
4516simplewikiquote
4517-----------------------------------------------------------------
4518simplewikiquote Dry run done, would correct 0 actor IDs
4519-----------------------------------------------------------------
4520simplewiktionary
4521-----------------------------------------------------------------
4522simplewiktionary Dry run done, would correct 0 actor IDs
4523-----------------------------------------------------------------
4524siwiki
4525-----------------------------------------------------------------
4526siwiki Dry run done, would correct 0 actor IDs
4527-----------------------------------------------------------------
4528siwikibooks
4529-----------------------------------------------------------------
4530siwikibooks Dry run done, would correct 0 actor IDs
4531-----------------------------------------------------------------
4532siwiktionary
4533-----------------------------------------------------------------
4534siwiktionary Dry run done, would correct 0 actor IDs
4535-----------------------------------------------------------------
4536skrwiki
4537-----------------------------------------------------------------
4538skrwiki Dry run done, would correct 0 actor IDs
4539-----------------------------------------------------------------
4540skrwiktionary
4541-----------------------------------------------------------------
4542skrwiktionary Dry run done, would correct 0 actor IDs
4543-----------------------------------------------------------------
4544skwiki
4545-----------------------------------------------------------------
4546skwiki More than one matching local log entry for global #49888569
4547skwiki More than one matching local log entry for global #49888600
4548skwiki More than one matching local log entry for global #49889177
4549skwiki Dry run done, would correct 0 actor IDs
4550-----------------------------------------------------------------
4551skwikibooks
4552-----------------------------------------------------------------
4553skwikibooks Dry run done, would correct 0 actor IDs
4554-----------------------------------------------------------------
4555skwikiquote
4556-----------------------------------------------------------------
4557skwikiquote Dry run done, would correct 0 actor IDs
4558-----------------------------------------------------------------
4559skwikisource
4560-----------------------------------------------------------------
4561skwikisource Dry run done, would correct 0 actor IDs
4562-----------------------------------------------------------------
4563skwiktionary
4564-----------------------------------------------------------------
4565skwiktionary Dry run done, would correct 0 actor IDs
4566-----------------------------------------------------------------
4567slwiki
4568-----------------------------------------------------------------
4569slwiki More than one matching local log entry for global #49888569
4570slwiki More than one matching local log entry for global #49888600
4571slwiki More than one matching local log entry for global #49889177
4572slwiki Dry run done, would correct 0 actor IDs
4573-----------------------------------------------------------------
4574slwikibooks
4575-----------------------------------------------------------------
4576slwikibooks Dry run done, would correct 0 actor IDs
4577-----------------------------------------------------------------
4578slwikiquote
4579-----------------------------------------------------------------
4580slwikiquote Dry run done, would correct 0 actor IDs
4581-----------------------------------------------------------------
4582slwikisource
4583-----------------------------------------------------------------
4584slwikisource Dry run done, would correct 0 actor IDs
4585-----------------------------------------------------------------
4586slwikiversity
4587-----------------------------------------------------------------
4588slwikiversity Dry run done, would correct 0 actor IDs
4589-----------------------------------------------------------------
4590slwiktionary
4591-----------------------------------------------------------------
4592slwiktionary Dry run done, would correct 0 actor IDs
4593-----------------------------------------------------------------
4594smnwiki
4595-----------------------------------------------------------------
4596smnwiki Dry run done, would correct 0 actor IDs
4597-----------------------------------------------------------------
4598smwiki
4599-----------------------------------------------------------------
4600smwiki Dry run done, would correct 0 actor IDs
4601-----------------------------------------------------------------
4602smwiktionary
4603-----------------------------------------------------------------
4604smwiktionary Dry run done, would correct 0 actor IDs
4605-----------------------------------------------------------------
4606snwiki
4607-----------------------------------------------------------------
4608snwiki More than one matching local log entry for global #49888569
4609snwiki More than one matching local log entry for global #49888600
4610snwiki More than one matching local log entry for global #49889177
4611snwiki Dry run done, would correct 0 actor IDs
4612-----------------------------------------------------------------
4613snwiktionary
4614-----------------------------------------------------------------
4615snwiktionary Dry run done, would correct 0 actor IDs
4616-----------------------------------------------------------------
4617sourceswiki
4618-----------------------------------------------------------------
4619sourceswiki Would update performer for local #217239 based on global #12646819 from 'Steinsplitter' to 'Céréales Killer'
4620sourceswiki Dry run done, would correct 1 actor IDs
4621-----------------------------------------------------------------
4622sowiki
4623-----------------------------------------------------------------
4624sowiki Dry run done, would correct 0 actor IDs
4625-----------------------------------------------------------------
4626sowiktionary
4627-----------------------------------------------------------------
4628sowiktionary Dry run done, would correct 0 actor IDs
4629-----------------------------------------------------------------
4630specieswiki
4631-----------------------------------------------------------------
4632specieswiki Would update performer for local #2347585 based on global #11613214 from 'Stryn' to 'Jianhui67'
4633specieswiki Would update performer for local #2682457 based on global #12488259 from 'K6ka' to 'Jianhui67'
4634specieswiki More than one matching local log entry for global #12646819
4635specieswiki More than one matching local log entry for global #12649639
4636specieswiki Would update performer for local #2984563 based on global #13997024 from 'K6ka' to 'MBisanz'
4637specieswiki Would update performer for local #3337440 based on global #15237384 from 'Cyberpower678' to 'Maire'
4638specieswiki Would update performer for local #3655945 based on global #18516017 from 'Chpoliansky' to 'K6ka'
4639specieswiki Would update performer for local #3655949 based on global #18521882 from 'Cdcamp' to 'Kegns'
4640specieswiki More than one matching local log entry for global #34168996
4641specieswiki More than one matching local log entry for global #34177005
4642specieswiki More than one matching local log entry for global #46011965
4643specieswiki More than one matching local log entry for global #59609932
4644specieswiki More than one matching local log entry for global #59619180
4645specieswiki Dry run done, would correct 6 actor IDs
4646-----------------------------------------------------------------
4647sqwiki
4648-----------------------------------------------------------------
4649sqwiki Dry run done, would correct 0 actor IDs
4650-----------------------------------------------------------------
4651sqwikibooks
4652-----------------------------------------------------------------
4653sqwikibooks Dry run done, would correct 0 actor IDs
4654-----------------------------------------------------------------
4655sqwikinews
4656-----------------------------------------------------------------
4657sqwikinews More than one matching local log entry for global #16147923
4658sqwikinews Dry run done, would correct 0 actor IDs
4659-----------------------------------------------------------------
4660sqwikiquote
4661-----------------------------------------------------------------
4662sqwikiquote Dry run done, would correct 0 actor IDs
4663-----------------------------------------------------------------
4664sqwiktionary
4665-----------------------------------------------------------------
4666sqwiktionary Dry run done, would correct 0 actor IDs
4667-----------------------------------------------------------------
4668srnwiki
4669-----------------------------------------------------------------
4670srnwiki More than one matching local log entry for global #49888569
4671srnwiki More than one matching local log entry for global #49888600
4672srnwiki More than one matching local log entry for global #49889177
4673srnwiki Dry run done, would correct 0 actor IDs
4674-----------------------------------------------------------------
4675srwiki
4676-----------------------------------------------------------------
4677srwiki Would update performer for local #10396420 based on global #18521882 from 'Sgt bilko' to 'Kegns'
4678srwiki More than one matching local log entry for global #49888569
4679srwiki More than one matching local log entry for global #49888600
4680srwiki More than one matching local log entry for global #49889177
4681srwiki More than one matching local log entry for global #55036871
4682srwiki Dry run done, would correct 1 actor IDs
4683-----------------------------------------------------------------
4684srwikibooks
4685-----------------------------------------------------------------
4686srwikibooks Dry run done, would correct 0 actor IDs
4687-----------------------------------------------------------------
4688srwikinews
4689-----------------------------------------------------------------
4690srwikinews More than one matching local log entry for global #16147923
4691srwikinews Dry run done, would correct 0 actor IDs
4692-----------------------------------------------------------------
4693srwikiquote
4694-----------------------------------------------------------------
4695srwikiquote Dry run done, would correct 0 actor IDs
4696-----------------------------------------------------------------
4697srwikisource
4698-----------------------------------------------------------------
4699srwikisource Dry run done, would correct 0 actor IDs
4700-----------------------------------------------------------------
4701srwiktionary
4702-----------------------------------------------------------------
4703srwiktionary Dry run done, would correct 0 actor IDs
4704-----------------------------------------------------------------
4705sswiki
4706-----------------------------------------------------------------
4707sswiki More than one matching local log entry for global #49888569
4708sswiki More than one matching local log entry for global #49888600
4709sswiki More than one matching local log entry for global #49889177
4710sswiki Dry run done, would correct 0 actor IDs
4711-----------------------------------------------------------------
4712sswiktionary
4713-----------------------------------------------------------------
4714sswiktionary Dry run done, would correct 0 actor IDs
4715-----------------------------------------------------------------
4716stqwiki
4717-----------------------------------------------------------------
4718stqwiki Dry run done, would correct 0 actor IDs
4719-----------------------------------------------------------------
4720strategywiki
4721-----------------------------------------------------------------
4722strategywiki Dry run done, would correct 0 actor IDs
4723-----------------------------------------------------------------
4724stwiki
4725-----------------------------------------------------------------
4726stwiki More than one matching local log entry for global #49888569
4727stwiki More than one matching local log entry for global #49888600
4728stwiki More than one matching local log entry for global #49889177
4729stwiki Dry run done, would correct 0 actor IDs
4730-----------------------------------------------------------------
4731stwiktionary
4732-----------------------------------------------------------------
4733stwiktionary Dry run done, would correct 0 actor IDs
4734-----------------------------------------------------------------
4735suwiki
4736-----------------------------------------------------------------
4737suwiki Would update performer for local #29838 based on global #15237384 from 'Cyberpower678' to 'Maire'
4738suwiki Dry run done, would correct 1 actor IDs
4739-----------------------------------------------------------------
4740suwikibooks
4741-----------------------------------------------------------------
4742suwikibooks Dry run done, would correct 0 actor IDs
4743-----------------------------------------------------------------
4744suwikiquote
4745-----------------------------------------------------------------
4746suwikiquote Dry run done, would correct 0 actor IDs
4747-----------------------------------------------------------------
4748suwikisource
4749-----------------------------------------------------------------
4750suwikisource Dry run done, would correct 0 actor IDs
4751-----------------------------------------------------------------
4752suwiktionary
4753-----------------------------------------------------------------
4754suwiktionary Dry run done, would correct 0 actor IDs
4755-----------------------------------------------------------------
4756svwiki
4757-----------------------------------------------------------------
4758svwiki Would update performer for local #4777218 based on global #11613214 from 'Stryn' to 'Jianhui67'
4759svwiki Would update performer for local #7437995 based on global #18521882 from 'Lovejosefin' to 'Kegns'
4760svwiki More than one matching local log entry for global #49888569
4761svwiki More than one matching local log entry for global #49888600
4762svwiki More than one matching local log entry for global #49889177
4763svwiki More than one matching local log entry for global #55036871
4764svwiki Dry run done, would correct 2 actor IDs
4765-----------------------------------------------------------------
4766svwikibooks
4767-----------------------------------------------------------------
4768svwikibooks Dry run done, would correct 0 actor IDs
4769-----------------------------------------------------------------
4770svwikinews
4771-----------------------------------------------------------------
4772svwikinews Dry run done, would correct 0 actor IDs
4773-----------------------------------------------------------------
4774svwikiquote
4775-----------------------------------------------------------------
4776svwikiquote Dry run done, would correct 0 actor IDs
4777-----------------------------------------------------------------
4778svwikisource
4779-----------------------------------------------------------------
4780svwikisource Dry run done, would correct 0 actor IDs
4781-----------------------------------------------------------------
4782svwikiversity
4783-----------------------------------------------------------------
4784svwikiversity Dry run done, would correct 0 actor IDs
4785-----------------------------------------------------------------
4786svwikivoyage
4787-----------------------------------------------------------------
4788svwikivoyage Dry run done, would correct 0 actor IDs
4789-----------------------------------------------------------------
4790svwiktionary
4791-----------------------------------------------------------------
4792svwiktionary Dry run done, would correct 0 actor IDs
4793-----------------------------------------------------------------
4794swwiki
4795-----------------------------------------------------------------
4796swwiki Dry run done, would correct 0 actor IDs
4797-----------------------------------------------------------------
4798swwikibooks
4799-----------------------------------------------------------------
4800swwikibooks Dry run done, would correct 0 actor IDs
4801-----------------------------------------------------------------
4802swwiktionary
4803-----------------------------------------------------------------
4804swwiktionary Dry run done, would correct 0 actor IDs
4805-----------------------------------------------------------------
4806sylwiki
4807-----------------------------------------------------------------
4808sylwiki Dry run done, would correct 0 actor IDs
4809-----------------------------------------------------------------
4810szlwiki
4811-----------------------------------------------------------------
4812szlwiki Dry run done, would correct 0 actor IDs
4813-----------------------------------------------------------------
4814szywiki
4815-----------------------------------------------------------------
4816szywiki Dry run done, would correct 0 actor IDs
4817-----------------------------------------------------------------
4818tawiki
4819-----------------------------------------------------------------
4820tawiki More than one matching local log entry for global #49888569
4821tawiki More than one matching local log entry for global #49888600
4822tawiki More than one matching local log entry for global #49889177
4823tawiki Dry run done, would correct 0 actor IDs
4824-----------------------------------------------------------------
4825tawikibooks
4826-----------------------------------------------------------------
4827tawikibooks Dry run done, would correct 0 actor IDs
4828-----------------------------------------------------------------
4829tawikinews
4830-----------------------------------------------------------------
4831tawikinews More than one matching local log entry for global #16147923
4832tawikinews Dry run done, would correct 0 actor IDs
4833-----------------------------------------------------------------
4834tawikiquote
4835-----------------------------------------------------------------
4836tawikiquote Dry run done, would correct 0 actor IDs
4837-----------------------------------------------------------------
4838tawikisource
4839-----------------------------------------------------------------
4840tawikisource Dry run done, would correct 0 actor IDs
4841-----------------------------------------------------------------
4842tawiktionary
4843-----------------------------------------------------------------
4844tawiktionary Dry run done, would correct 0 actor IDs
4845-----------------------------------------------------------------
4846taywiki
4847-----------------------------------------------------------------
4848taywiki Dry run done, would correct 0 actor IDs
4849-----------------------------------------------------------------
4850tcywiki
4851-----------------------------------------------------------------
4852tcywiki More than one matching local log entry for global #49888569
4853tcywiki More than one matching local log entry for global #49888600
4854tcywiki More than one matching local log entry for global #49889177
4855tcywiki Dry run done, would correct 0 actor IDs
4856-----------------------------------------------------------------
4857tcywikisource
4858-----------------------------------------------------------------
4859tcywikisource Dry run done, would correct 0 actor IDs
4860-----------------------------------------------------------------
4861tcywiktionary
4862-----------------------------------------------------------------
4863tcywiktionary Dry run done, would correct 0 actor IDs
4864-----------------------------------------------------------------
4865tddwiki
4866-----------------------------------------------------------------
4867tddwiki Dry run done, would correct 0 actor IDs
4868-----------------------------------------------------------------
4869tenwiki
4870-----------------------------------------------------------------
4871tenwiki Dry run done, would correct 0 actor IDs
4872-----------------------------------------------------------------
4873test2wiki
4874-----------------------------------------------------------------
4875test2wiki Dry run done, would correct 0 actor IDs
4876-----------------------------------------------------------------
4877testcommonswiki
4878-----------------------------------------------------------------
4879testcommonswiki Dry run done, would correct 0 actor IDs
4880-----------------------------------------------------------------
4881testwiki
4882-----------------------------------------------------------------
4883testwiki Dry run done, would correct 0 actor IDs
4884-----------------------------------------------------------------
4885testwikidatawiki
4886-----------------------------------------------------------------
4887testwikidatawiki Dry run done, would correct 0 actor IDs
4888-----------------------------------------------------------------
4889tetwiki
4890-----------------------------------------------------------------
4891tetwiki More than one matching local log entry for global #16425100
4892tetwiki Dry run done, would correct 0 actor IDs
4893-----------------------------------------------------------------
4894tewiki
4895-----------------------------------------------------------------
4896tewiki More than one matching local log entry for global #54596312
4897tewiki More than one matching local log entry for global #54596325
4898tewiki Dry run done, would correct 0 actor IDs
4899-----------------------------------------------------------------
4900tewikibooks
4901-----------------------------------------------------------------
4902tewikibooks More than one matching local log entry for global #15473085
4903tewikibooks Dry run done, would correct 0 actor IDs
4904-----------------------------------------------------------------
4905tewikiquote
4906-----------------------------------------------------------------
4907tewikiquote Dry run done, would correct 0 actor IDs
4908-----------------------------------------------------------------
4909tewikisource
4910-----------------------------------------------------------------
4911tewikisource Dry run done, would correct 0 actor IDs
4912-----------------------------------------------------------------
4913tewiktionary
4914-----------------------------------------------------------------
4915tewiktionary Dry run done, would correct 0 actor IDs
4916-----------------------------------------------------------------
4917tgwiki
4918-----------------------------------------------------------------
4919tgwiki More than one matching local log entry for global #55036871
4920tgwiki Dry run done, would correct 0 actor IDs
4921-----------------------------------------------------------------
4922tgwikibooks
4923-----------------------------------------------------------------
4924tgwikibooks Dry run done, would correct 0 actor IDs
4925-----------------------------------------------------------------
4926tgwiktionary
4927-----------------------------------------------------------------
4928tgwiktionary Dry run done, would correct 0 actor IDs
4929-----------------------------------------------------------------
4930thwiki
4931-----------------------------------------------------------------
4932thwiki Would update performer for local #788623 based on global #18521882 from 'Waranus' to 'Kegns'
4933thwiki More than one matching local log entry for global #29630176
4934thwiki More than one matching local log entry for global #29630188
4935thwiki More than one matching local log entry for global #29630200
4936thwiki More than one matching local log entry for global #29630562
4937thwiki More than one matching local log entry for global #49888569
4938thwiki More than one matching local log entry for global #49888600
4939thwiki More than one matching local log entry for global #49889177
4940thwiki More than one matching local log entry for global #55036871
4941thwiki Dry run done, would correct 1 actor IDs
4942-----------------------------------------------------------------
4943thwikibooks
4944-----------------------------------------------------------------
4945thwikibooks Dry run done, would correct 0 actor IDs
4946-----------------------------------------------------------------
4947thwikinews
4948-----------------------------------------------------------------
4949thwikinews Dry run done, would correct 0 actor IDs
4950-----------------------------------------------------------------
4951thwikiquote
4952-----------------------------------------------------------------
4953thwikiquote Dry run done, would correct 0 actor IDs
4954-----------------------------------------------------------------
4955thwikisource
4956-----------------------------------------------------------------
4957thwikisource Dry run done, would correct 0 actor IDs
4958-----------------------------------------------------------------
4959thwiktionary
4960-----------------------------------------------------------------
4961thwiktionary Dry run done, would correct 0 actor IDs
4962-----------------------------------------------------------------
4963tigwiki
4964-----------------------------------------------------------------
4965tigwiki Dry run done, would correct 0 actor IDs
4966-----------------------------------------------------------------
4967tiwiki
4968-----------------------------------------------------------------
4969tiwiki More than one matching local log entry for global #49888569
4970tiwiki More than one matching local log entry for global #49888600
4971tiwiki More than one matching local log entry for global #49889177
4972tiwiki Dry run done, would correct 0 actor IDs
4973-----------------------------------------------------------------
4974tiwiktionary
4975-----------------------------------------------------------------
4976tiwiktionary Dry run done, would correct 0 actor IDs
4977-----------------------------------------------------------------
4978tkwiki
4979-----------------------------------------------------------------
4980tkwiki Dry run done, would correct 0 actor IDs
4981-----------------------------------------------------------------
4982tkwikibooks
4983-----------------------------------------------------------------
4984tkwikibooks Dry run done, would correct 0 actor IDs
4985-----------------------------------------------------------------
4986tkwikiquote
4987-----------------------------------------------------------------
4988tkwikiquote Dry run done, would correct 0 actor IDs
4989-----------------------------------------------------------------
4990tkwiktionary
4991-----------------------------------------------------------------
4992tkwiktionary Dry run done, would correct 0 actor IDs
4993-----------------------------------------------------------------
4994tlwiki
4995-----------------------------------------------------------------
4996tlwiki Would update performer for local #228272 based on global #15237384 from 'Cyberpower678' to 'Maire'
4997tlwiki More than one matching local log entry for global #40252809
4998tlwiki More than one matching local log entry for global #40253191
4999tlwiki Dry run done, would correct 1 actor IDs
5000-----------------------------------------------------------------
5001tlwikibooks
5002-----------------------------------------------------------------
5003tlwikibooks Dry run done, would correct 0 actor IDs
5004-----------------------------------------------------------------
5005tlwikiquote
5006-----------------------------------------------------------------
5007tlwikiquote Dry run done, would correct 0 actor IDs
5008-----------------------------------------------------------------
5009tlwikisource
5010-----------------------------------------------------------------
5011tlwikisource Dry run done, would correct 0 actor IDs
5012-----------------------------------------------------------------
5013tlwiktionary
5014-----------------------------------------------------------------
5015tlwiktionary Dry run done, would correct 0 actor IDs
5016-----------------------------------------------------------------
5017tlywiki
5018-----------------------------------------------------------------
5019tlywiki Dry run done, would correct 0 actor IDs
5020-----------------------------------------------------------------
5021tnwiki
5022-----------------------------------------------------------------
5023tnwiki Dry run done, would correct 0 actor IDs
5024-----------------------------------------------------------------
5025tnwiktionary
5026-----------------------------------------------------------------
5027tnwiktionary Dry run done, would correct 0 actor IDs
5028-----------------------------------------------------------------
5029towiki
5030-----------------------------------------------------------------
5031towiki Dry run done, would correct 0 actor IDs
5032-----------------------------------------------------------------
5033towiktionary
5034-----------------------------------------------------------------
5035towiktionary Dry run done, would correct 0 actor IDs
5036-----------------------------------------------------------------
5037tpiwiki
5038-----------------------------------------------------------------
5039tpiwiki More than one matching local log entry for global #16147923
5040tpiwiki Dry run done, would correct 0 actor IDs
5041-----------------------------------------------------------------
5042tpiwiktionary
5043-----------------------------------------------------------------
5044tpiwiktionary Dry run done, would correct 0 actor IDs
5045-----------------------------------------------------------------
5046trvwiki
5047-----------------------------------------------------------------
5048trvwiki Dry run done, would correct 0 actor IDs
5049-----------------------------------------------------------------
5050trwiki
5051-----------------------------------------------------------------
5052trwiki Would update performer for local #6567994 based on global #15237384 from 'Cyberpower678' to 'Maire'
5053trwiki Would update performer for local #7919323 based on global #18521882 from 'Berkhans' to 'Kegns'
5054trwiki Would update performer for local #11882232 based on global #31996106 from 'Wasser11' to 'Ajraddatz'
5055trwiki More than one matching local log entry for global #46011965
5056trwiki More than one matching local log entry for global #49888569
5057trwiki More than one matching local log entry for global #49888600
5058trwiki More than one matching local log entry for global #49889177
5059trwiki More than one matching local log entry for global #50131924
5060trwiki More than one matching local log entry for global #50144477
5061trwiki More than one matching local log entry for global #55036871
5062trwiki Would update performer for local #18784953 based on global #57650362 from '<INVALID>' to 'TenWhile6'
5063trwiki More than one matching local log entry for global #59609929
5064trwiki More than one matching local log entry for global #59609932
5065trwiki More than one matching local log entry for global #59619177
5066trwiki More than one matching local log entry for global #59619180
5067trwiki Dry run done, would correct 4 actor IDs
5068-----------------------------------------------------------------
5069trwikibooks
5070-----------------------------------------------------------------
5071trwikibooks More than one matching local log entry for global #59609932
5072trwikibooks More than one matching local log entry for global #59619180
5073trwikibooks Dry run done, would correct 0 actor IDs
5074-----------------------------------------------------------------
5075trwikimedia
5076-----------------------------------------------------------------
5077trwikimedia More than one matching local log entry for global #59609932
5078trwikimedia More than one matching local log entry for global #59619180
5079trwikimedia Dry run done, would correct 0 actor IDs
5080-----------------------------------------------------------------
5081trwikinews
5082-----------------------------------------------------------------
5083trwikinews Dry run done, would correct 0 actor IDs
5084-----------------------------------------------------------------
5085trwikiquote
5086-----------------------------------------------------------------
5087trwikiquote Would update performer for local #71879 based on global #15237384 from 'Cyberpower678' to 'Maire'
5088trwikiquote Would update performer for local #143874 based on global #58161538 from 'Urho Navalnyi' to 'Teles'
5089trwikiquote More than one matching local log entry for global #59609932
5090trwikiquote More than one matching local log entry for global #59619180
5091trwikiquote Dry run done, would correct 2 actor IDs
5092-----------------------------------------------------------------
5093trwikisource
5094-----------------------------------------------------------------
5095trwikisource Would update performer for local #24355 based on global #15237384 from 'Cyberpower678' to 'Maire'
5096trwikisource More than one matching local log entry for global #59609932
5097trwikisource More than one matching local log entry for global #59619180
5098trwikisource Dry run done, would correct 1 actor IDs
5099-----------------------------------------------------------------
5100trwikivoyage
5101-----------------------------------------------------------------
5102trwikivoyage More than one matching local log entry for global #59609932
5103trwikivoyage More than one matching local log entry for global #59619180
5104trwikivoyage Dry run done, would correct 0 actor IDs
5105-----------------------------------------------------------------
5106trwiktionary
5107-----------------------------------------------------------------
5108trwiktionary More than one matching local log entry for global #59609932
5109trwiktionary More than one matching local log entry for global #59619180
5110trwiktionary Dry run done, would correct 0 actor IDs
5111-----------------------------------------------------------------
5112tswiki
5113-----------------------------------------------------------------
5114tswiki More than one matching local log entry for global #49888569
5115tswiki More than one matching local log entry for global #49888600
5116tswiki More than one matching local log entry for global #49889177
5117tswiki Dry run done, would correct 0 actor IDs
5118-----------------------------------------------------------------
5119tswiktionary
5120-----------------------------------------------------------------
5121tswiktionary Dry run done, would correct 0 actor IDs
5122-----------------------------------------------------------------
5123ttwiki
5124-----------------------------------------------------------------
5125ttwiki More than one matching local log entry for global #49888569
5126ttwiki More than one matching local log entry for global #49888600
5127ttwiki More than one matching local log entry for global #49889177
5128ttwiki Dry run done, would correct 0 actor IDs
5129-----------------------------------------------------------------
5130ttwikibooks
5131-----------------------------------------------------------------
5132ttwikibooks Dry run done, would correct 0 actor IDs
5133-----------------------------------------------------------------
5134ttwikiquote
5135-----------------------------------------------------------------
5136ttwikiquote Dry run done, would correct 0 actor IDs
5137-----------------------------------------------------------------
5138ttwiktionary
5139-----------------------------------------------------------------
5140ttwiktionary Dry run done, would correct 0 actor IDs
5141-----------------------------------------------------------------
5142tumwiki
5143-----------------------------------------------------------------
5144tumwiki Dry run done, would correct 0 actor IDs
5145-----------------------------------------------------------------
5146twwiki
5147-----------------------------------------------------------------
5148twwiki More than one matching local log entry for global #16147923
5149twwiki More than one matching local log entry for global #49888569
5150twwiki More than one matching local log entry for global #49888600
5151twwiki More than one matching local log entry for global #49889177
5152twwiki Dry run done, would correct 0 actor IDs
5153-----------------------------------------------------------------
5154twwiktionary
5155-----------------------------------------------------------------
5156twwiktionary Dry run done, would correct 0 actor IDs
5157-----------------------------------------------------------------
5158tyvwiki
5159-----------------------------------------------------------------
5160tyvwiki Dry run done, would correct 0 actor IDs
5161-----------------------------------------------------------------
5162tywiki
5163-----------------------------------------------------------------
5164tywiki Would update performer for local #10522 based on global #26762949 from 'Alice P. G.' to 'Céréales Killer'
5165tywiki Dry run done, would correct 1 actor IDs
5166-----------------------------------------------------------------
5167uawikimedia
5168-----------------------------------------------------------------
5169uawikimedia Dry run done, would correct 0 actor IDs
5170-----------------------------------------------------------------
5171udmwiki
5172-----------------------------------------------------------------
5173udmwiki Dry run done, would correct 0 actor IDs
5174-----------------------------------------------------------------
5175ugwiki
5176-----------------------------------------------------------------
5177ugwiki More than one matching local log entry for global #49888569
5178ugwiki More than one matching local log entry for global #49888600
5179ugwiki More than one matching local log entry for global #49889177
5180ugwiki Dry run done, would correct 0 actor IDs
5181-----------------------------------------------------------------
5182ugwikibooks
5183-----------------------------------------------------------------
5184ugwikibooks Dry run done, would correct 0 actor IDs
5185-----------------------------------------------------------------
5186ugwikiquote
5187-----------------------------------------------------------------
5188ugwikiquote Dry run done, would correct 0 actor IDs
5189-----------------------------------------------------------------
5190ugwiktionary
5191-----------------------------------------------------------------
5192ugwiktionary Dry run done, would correct 0 actor IDs
5193-----------------------------------------------------------------
5194ukwiki
5195-----------------------------------------------------------------
5196ukwiki More than one matching local log entry for global #29630176
5197ukwiki More than one matching local log entry for global #29630188
5198ukwiki More than one matching local log entry for global #29630200
5199ukwiki More than one matching local log entry for global #29630562
5200ukwiki More than one matching local log entry for global #49888569
5201ukwiki More than one matching local log entry for global #49888600
5202ukwiki More than one matching local log entry for global #49889177
5203ukwiki Would update performer for local #20050136 based on global #56134949 from 'Madyan10' to 'Nihonjoe'
5204ukwiki More than one matching local log entry for global #59609932
5205ukwiki More than one matching local log entry for global #59619180
5206ukwiki Dry run done, would correct 1 actor IDs
5207-----------------------------------------------------------------
5208ukwikibooks
5209-----------------------------------------------------------------
5210ukwikibooks Dry run done, would correct 0 actor IDs
5211-----------------------------------------------------------------
5212ukwikinews
5213-----------------------------------------------------------------
5214ukwikinews Dry run done, would correct 0 actor IDs
5215-----------------------------------------------------------------
5216ukwikiquote
5217-----------------------------------------------------------------
5218ukwikiquote Dry run done, would correct 0 actor IDs
5219-----------------------------------------------------------------
5220ukwikisource
5221-----------------------------------------------------------------
5222ukwikisource Dry run done, would correct 0 actor IDs
5223-----------------------------------------------------------------
5224ukwikivoyage
5225-----------------------------------------------------------------
5226ukwikivoyage Dry run done, would correct 0 actor IDs
5227-----------------------------------------------------------------
5228ukwiktionary
5229-----------------------------------------------------------------
5230ukwiktionary Dry run done, would correct 0 actor IDs
5231-----------------------------------------------------------------
5232urwiki
5233-----------------------------------------------------------------
5234urwiki More than one matching local log entry for global #49888569
5235urwiki More than one matching local log entry for global #49888600
5236urwiki More than one matching local log entry for global #49889177
5237urwiki More than one matching local log entry for global #55036871
5238urwiki Dry run done, would correct 0 actor IDs
5239-----------------------------------------------------------------
5240urwikibooks
5241-----------------------------------------------------------------
5242urwikibooks Dry run done, would correct 0 actor IDs
5243-----------------------------------------------------------------
5244urwikiquote
5245-----------------------------------------------------------------
5246urwikiquote Dry run done, would correct 0 actor IDs
5247-----------------------------------------------------------------
5248urwiktionary
5249-----------------------------------------------------------------
5250urwiktionary Dry run done, would correct 0 actor IDs
5251-----------------------------------------------------------------
5252usabilitywiki
5253-----------------------------------------------------------------
5254usabilitywiki Dry run done, would correct 0 actor IDs
5255-----------------------------------------------------------------
5256uzwiki
5257-----------------------------------------------------------------
5258uzwiki More than one matching local log entry for global #49888569
5259uzwiki More than one matching local log entry for global #49888600
5260uzwiki More than one matching local log entry for global #49889177
5261uzwiki More than one matching local log entry for global #55036871
5262uzwiki Dry run done, would correct 0 actor IDs
5263-----------------------------------------------------------------
5264uzwikibooks
5265-----------------------------------------------------------------
5266uzwikibooks Dry run done, would correct 0 actor IDs
5267-----------------------------------------------------------------
5268uzwikiquote
5269-----------------------------------------------------------------
5270uzwikiquote Dry run done, would correct 0 actor IDs
5271-----------------------------------------------------------------
5272uzwiktionary
5273-----------------------------------------------------------------
5274uzwiktionary Dry run done, would correct 0 actor IDs
5275-----------------------------------------------------------------
5276vecwiki
5277-----------------------------------------------------------------
5278vecwiki More than one matching local log entry for global #49888569
5279vecwiki More than one matching local log entry for global #49888600
5280vecwiki More than one matching local log entry for global #49889177
5281vecwiki Dry run done, would correct 0 actor IDs
5282-----------------------------------------------------------------
5283vecwikisource
5284-----------------------------------------------------------------
5285vecwikisource Dry run done, would correct 0 actor IDs
5286-----------------------------------------------------------------
5287vecwiktionary
5288-----------------------------------------------------------------
5289vecwiktionary Dry run done, would correct 0 actor IDs
5290-----------------------------------------------------------------
5291vepwiki
5292-----------------------------------------------------------------
5293vepwiki More than one matching local log entry for global #49888569
5294vepwiki More than one matching local log entry for global #49888600
5295vepwiki More than one matching local log entry for global #49889177
5296vepwiki Dry run done, would correct 0 actor IDs
5297-----------------------------------------------------------------
5298vewiki
5299-----------------------------------------------------------------
5300vewiki More than one matching local log entry for global #49888569
5301vewiki More than one matching local log entry for global #49888600
5302vewiki More than one matching local log entry for global #49889177
5303vewiki Dry run done, would correct 0 actor IDs
5304-----------------------------------------------------------------
5305viwiki
5306-----------------------------------------------------------------
5307viwiki More than one matching local log entry for global #49888569
5308viwiki More than one matching local log entry for global #49888600
5309viwiki More than one matching local log entry for global #49889177
5310viwiki More than one matching local log entry for global #55036871
5311viwiki Dry run done, would correct 0 actor IDs
5312-----------------------------------------------------------------
5313viwikibooks
5314-----------------------------------------------------------------
5315viwikibooks Would update performer for local #155839 based on global #59354363 from '<INVALID>' to 'Hide on Rosé'
5316viwikibooks Dry run done, would correct 1 actor IDs
5317-----------------------------------------------------------------
5318viwikiquote
5319-----------------------------------------------------------------
5320viwikiquote Dry run done, would correct 0 actor IDs
5321-----------------------------------------------------------------
5322viwikisource
5323-----------------------------------------------------------------
5324viwikisource More than one matching local log entry for global #55036871
5325viwikisource Dry run done, would correct 0 actor IDs
5326-----------------------------------------------------------------
5327viwikivoyage
5328-----------------------------------------------------------------
5329viwikivoyage Would update performer for local #76659 based on global #59354363 from '<INVALID>' to 'Hide on Rosé'
5330viwikivoyage Dry run done, would correct 1 actor IDs
5331-----------------------------------------------------------------
5332viwiktionary
5333-----------------------------------------------------------------
5334viwiktionary More than one matching local log entry for global #49888569
5335viwiktionary More than one matching local log entry for global #49888600
5336viwiktionary More than one matching local log entry for global #49889177
5337viwiktionary More than one matching local log entry for global #55036871
5338viwiktionary More than one matching local log entry for global #60720302
5339viwiktionary Dry run done, would correct 0 actor IDs
5340-----------------------------------------------------------------
5341vlswiki
5342-----------------------------------------------------------------
5343vlswiki More than one matching local log entry for global #49888569
5344vlswiki More than one matching local log entry for global #49888600
5345vlswiki More than one matching local log entry for global #49889177
5346vlswiki Dry run done, would correct 0 actor IDs
5347-----------------------------------------------------------------
5348vowiki
5349-----------------------------------------------------------------
5350vowiki More than one matching local log entry for global #49888569
5351vowiki More than one matching local log entry for global #49888600
5352vowiki More than one matching local log entry for global #49889177
5353vowiki Dry run done, would correct 0 actor IDs
5354-----------------------------------------------------------------
5355vowikibooks
5356-----------------------------------------------------------------
5357vowikibooks Dry run done, would correct 0 actor IDs
5358-----------------------------------------------------------------
5359vowikiquote
5360-----------------------------------------------------------------
5361vowikiquote Dry run done, would correct 0 actor IDs
5362-----------------------------------------------------------------
5363vowiktionary
5364-----------------------------------------------------------------
5365vowiktionary More than one matching local log entry for global #49888569
5366vowiktionary More than one matching local log entry for global #49888600
5367vowiktionary More than one matching local log entry for global #49889177
5368vowiktionary Dry run done, would correct 0 actor IDs
5369-----------------------------------------------------------------
5370warwiki
5371-----------------------------------------------------------------
5372warwiki More than one matching local log entry for global #49888569
5373warwiki More than one matching local log entry for global #49888600
5374warwiki More than one matching local log entry for global #49889177
5375warwiki Dry run done, would correct 0 actor IDs
5376-----------------------------------------------------------------
5377wawiki
5378-----------------------------------------------------------------
5379wawiki More than one matching local log entry for global #49888569
5380wawiki More than one matching local log entry for global #49888600
5381wawiki More than one matching local log entry for global #49889177
5382wawiki Dry run done, would correct 0 actor IDs
5383-----------------------------------------------------------------
5384wawikibooks
5385-----------------------------------------------------------------
5386wawikibooks Dry run done, would correct 0 actor IDs
5387-----------------------------------------------------------------
5388wawikisource
5389-----------------------------------------------------------------
5390wawikisource Dry run done, would correct 0 actor IDs
5391-----------------------------------------------------------------
5392wawiktionary
5393-----------------------------------------------------------------
5394wawiktionary More than one matching local log entry for global #49888569
5395wawiktionary More than one matching local log entry for global #49888600
5396wawiktionary More than one matching local log entry for global #49889177
5397wawiktionary Dry run done, would correct 0 actor IDs
5398-----------------------------------------------------------------
5399wikidatawiki
5400-----------------------------------------------------------------
5401wikidatawiki Would update performer for local #229585852 based on global #12488259 from 'K6ka' to 'Jianhui67'
5402wikidatawiki More than one matching local log entry for global #12646819
5403wikidatawiki More than one matching local log entry for global #12649639
5404wikidatawiki Would update performer for local #260867687 based on global #13997024 from 'K6ka' to 'MBisanz'
5405wikidatawiki Would update performer for local #376428551 based on global #18515722 from 'Anisislam is' to 'Savh'
5406wikidatawiki Would update performer for local #376428429 based on global #18516017 from 'J3850929' to 'K6ka'
5407wikidatawiki Would update performer for local #376429408 based on global #18521882 from 'Sui generis1984' to 'Kegns'
5408wikidatawiki Would update performer for local #594760500 based on global #24523612 from 'MBq' to 'Masti'
5409wikidatawiki Would update performer for local #642717811 based on global #25939764 from 'Bakytjan' to 'Maxim'
5410wikidatawiki More than one matching local log entry for global #31018521
5411wikidatawiki More than one matching local log entry for global #34168996
5412wikidatawiki More than one matching local log entry for global #34177005
5413wikidatawiki More than one matching local log entry for global #40252809
5414wikidatawiki More than one matching local log entry for global #40253191
5415wikidatawiki More than one matching local log entry for global #46011965
5416wikidatawiki Would update performer for local #666872957 based on global #49694004 from 'Nihonjoe' to 'Cabayi'
5417wikidatawiki More than one matching local log entry for global #49888569
5418wikidatawiki More than one matching local log entry for global #49888600
5419wikidatawiki More than one matching local log entry for global #49889177
5420wikidatawiki More than one matching local log entry for global #54596312
5421wikidatawiki More than one matching local log entry for global #54596325
5422wikidatawiki More than one matching local log entry for global #55036871
5423wikidatawiki Would update performer for local #668660990 based on global #55638068 from 'Mihir bhuiyan' to 'Jules*'
5424wikidatawiki Would update performer for local #669194505 based on global #57343750 from '<INVALID>' to 'AccountVanishRequests'
5425wikidatawiki More than one matching local log entry for global #59609932
5426wikidatawiki More than one matching local log entry for global #59619180
5427wikidatawiki Dry run done, would correct 10 actor IDs
5428-----------------------------------------------------------------
5429wikifunctionswiki
5430-----------------------------------------------------------------
5431wikifunctionswiki More than one matching local log entry for global #59609932
5432wikifunctionswiki More than one matching local log entry for global #59619180
5433wikifunctionswiki Dry run done, would correct 0 actor IDs
5434-----------------------------------------------------------------
5435wikimania2005wiki
5436-----------------------------------------------------------------
5437wikimania2005wiki Dry run done, would correct 0 actor IDs
5438-----------------------------------------------------------------
5439wikimania2006wiki
5440-----------------------------------------------------------------
5441wikimania2006wiki Dry run done, would correct 0 actor IDs
5442-----------------------------------------------------------------
5443wikimania2007wiki
5444-----------------------------------------------------------------
5445wikimania2007wiki Dry run done, would correct 0 actor IDs
5446-----------------------------------------------------------------
5447wikimania2008wiki
5448-----------------------------------------------------------------
5449wikimania2008wiki Dry run done, would correct 0 actor IDs
5450-----------------------------------------------------------------
5451wikimania2009wiki
5452-----------------------------------------------------------------
5453wikimania2009wiki Dry run done, would correct 0 actor IDs
5454-----------------------------------------------------------------
5455wikimania2010wiki
5456-----------------------------------------------------------------
5457wikimania2010wiki Dry run done, would correct 0 actor IDs
5458-----------------------------------------------------------------
5459wikimania2011wiki
5460-----------------------------------------------------------------
5461wikimania2011wiki Dry run done, would correct 0 actor IDs
5462-----------------------------------------------------------------
5463wikimania2012wiki
5464-----------------------------------------------------------------
5465wikimania2012wiki Dry run done, would correct 0 actor IDs
5466-----------------------------------------------------------------
5467wikimania2013wiki
5468-----------------------------------------------------------------
5469wikimania2013wiki Dry run done, would correct 0 actor IDs
5470-----------------------------------------------------------------
5471wikimania2014wiki
5472-----------------------------------------------------------------
5473wikimania2014wiki Dry run done, would correct 0 actor IDs
5474-----------------------------------------------------------------
5475wikimania2015wiki
5476-----------------------------------------------------------------
5477wikimania2015wiki Dry run done, would correct 0 actor IDs
5478-----------------------------------------------------------------
5479wikimania2016wiki
5480-----------------------------------------------------------------
5481wikimania2016wiki More than one matching local log entry for global #49888569
5482wikimania2016wiki More than one matching local log entry for global #49888600
5483wikimania2016wiki More than one matching local log entry for global #49889177
5484wikimania2016wiki Dry run done, would correct 0 actor IDs
5485-----------------------------------------------------------------
5486wikimania2017wiki
5487-----------------------------------------------------------------
5488wikimania2017wiki More than one matching local log entry for global #49888569
5489wikimania2017wiki More than one matching local log entry for global #49888600
5490wikimania2017wiki More than one matching local log entry for global #49889177
5491wikimania2017wiki Dry run done, would correct 0 actor IDs
5492-----------------------------------------------------------------
5493wikimania2018wiki
5494-----------------------------------------------------------------
5495wikimania2018wiki Dry run done, would correct 0 actor IDs
5496-----------------------------------------------------------------
5497wikimaniawiki
5498-----------------------------------------------------------------
5499wikimaniawiki More than one matching local log entry for global #55036871
5500wikimaniawiki Dry run done, would correct 0 actor IDs
5501-----------------------------------------------------------------
5502wowiki
5503-----------------------------------------------------------------
5504wowiki More than one matching local log entry for global #49888569
5505wowiki More than one matching local log entry for global #49888600
5506wowiki More than one matching local log entry for global #49889177
5507wowiki Dry run done, would correct 0 actor IDs
5508-----------------------------------------------------------------
5509wowikiquote
5510-----------------------------------------------------------------
5511wowikiquote More than one matching local log entry for global #49888569
5512wowikiquote More than one matching local log entry for global #49888600
5513wowikiquote More than one matching local log entry for global #49889177
5514wowikiquote Dry run done, would correct 0 actor IDs
5515-----------------------------------------------------------------
5516wowiktionary
5517-----------------------------------------------------------------
5518wowiktionary More than one matching local log entry for global #49888569
5519wowiktionary More than one matching local log entry for global #49888600
5520wowiktionary More than one matching local log entry for global #49889177
5521wowiktionary Dry run done, would correct 0 actor IDs
5522-----------------------------------------------------------------
5523wuuwiki
5524-----------------------------------------------------------------
5525wuuwiki More than one matching local log entry for global #49888569
5526wuuwiki More than one matching local log entry for global #49888600
5527wuuwiki More than one matching local log entry for global #49889177
5528wuuwiki More than one matching local log entry for global #55036871
5529wuuwiki Dry run done, would correct 0 actor IDs
5530-----------------------------------------------------------------
5531xalwiki
5532-----------------------------------------------------------------
5533xalwiki More than one matching local log entry for global #49888569
5534xalwiki More than one matching local log entry for global #49888600
5535xalwiki More than one matching local log entry for global #49889177
5536xalwiki Dry run done, would correct 0 actor IDs
5537-----------------------------------------------------------------
5538xhwiki
5539-----------------------------------------------------------------
5540xhwiki More than one matching local log entry for global #49888569
5541xhwiki More than one matching local log entry for global #49888600
5542xhwiki More than one matching local log entry for global #49889177
5543xhwiki Dry run done, would correct 0 actor IDs
5544-----------------------------------------------------------------
5545xhwikibooks
5546-----------------------------------------------------------------
5547xhwikibooks Dry run done, would correct 0 actor IDs
5548-----------------------------------------------------------------
5549xhwiktionary
5550-----------------------------------------------------------------
5551xhwiktionary Dry run done, would correct 0 actor IDs
5552-----------------------------------------------------------------
5553xmfwiki
5554-----------------------------------------------------------------
5555xmfwiki More than one matching local log entry for global #49888569
5556xmfwiki More than one matching local log entry for global #49888600
5557xmfwiki More than one matching local log entry for global #49889177
5558xmfwiki Dry run done, would correct 0 actor IDs
5559-----------------------------------------------------------------
5560yiwiki
5561-----------------------------------------------------------------
5562yiwiki Would update performer for local #49839 based on global #15237384 from 'Cyberpower678' to 'Maire'
5563yiwiki More than one matching local log entry for global #49888569
5564yiwiki More than one matching local log entry for global #49888600
5565yiwiki More than one matching local log entry for global #49889177
5566yiwiki Dry run done, would correct 1 actor IDs
5567-----------------------------------------------------------------
5568yiwikisource
5569-----------------------------------------------------------------
5570yiwikisource More than one matching local log entry for global #49888569
5571yiwikisource More than one matching local log entry for global #49888600
5572yiwikisource More than one matching local log entry for global #49889177
5573yiwikisource Dry run done, would correct 0 actor IDs
5574-----------------------------------------------------------------
5575yiwiktionary
5576-----------------------------------------------------------------
5577yiwiktionary More than one matching local log entry for global #49888569
5578yiwiktionary More than one matching local log entry for global #49888600
5579yiwiktionary More than one matching local log entry for global #49889177
5580yiwiktionary Dry run done, would correct 0 actor IDs
5581-----------------------------------------------------------------
5582yowiki
5583-----------------------------------------------------------------
5584yowiki More than one matching local log entry for global #49888569
5585yowiki More than one matching local log entry for global #49888600
5586yowiki More than one matching local log entry for global #49889177
5587yowiki Dry run done, would correct 0 actor IDs
5588-----------------------------------------------------------------
5589yowikibooks
5590-----------------------------------------------------------------
5591yowikibooks Dry run done, would correct 0 actor IDs
5592-----------------------------------------------------------------
5593yowiktionary
5594-----------------------------------------------------------------
5595yowiktionary Dry run done, would correct 0 actor IDs
5596-----------------------------------------------------------------
5597yuewiktionary
5598-----------------------------------------------------------------
5599yuewiktionary Dry run done, would correct 0 actor IDs
5600-----------------------------------------------------------------
5601zawiki
5602-----------------------------------------------------------------
5603zawiki Dry run done, would correct 0 actor IDs
5604-----------------------------------------------------------------
5605zawikibooks
5606-----------------------------------------------------------------
5607zawikibooks Dry run done, would correct 0 actor IDs
5608-----------------------------------------------------------------
5609zawikiquote
5610-----------------------------------------------------------------
5611zawikiquote Dry run done, would correct 0 actor IDs
5612-----------------------------------------------------------------
5613zawiktionary
5614-----------------------------------------------------------------
5615zawiktionary Dry run done, would correct 0 actor IDs
5616-----------------------------------------------------------------
5617zeawiki
5618-----------------------------------------------------------------
5619zeawiki Dry run done, would correct 0 actor IDs
5620-----------------------------------------------------------------
5621zghwiki
5622-----------------------------------------------------------------
5623zghwiki Dry run done, would correct 0 actor IDs
5624-----------------------------------------------------------------
5625zghwiktionary
5626-----------------------------------------------------------------
5627zghwiktionary Dry run done, would correct 0 actor IDs
5628-----------------------------------------------------------------
5629zh_classicalwiki
5630-----------------------------------------------------------------
5631zh_classicalwiki Dry run done, would correct 0 actor IDs
5632-----------------------------------------------------------------
5633zh_min_nanwiki
5634-----------------------------------------------------------------
5635zh_min_nanwiki Dry run done, would correct 0 actor IDs
5636-----------------------------------------------------------------
5637zh_min_nanwikibooks
5638-----------------------------------------------------------------
5639zh_min_nanwikibooks Dry run done, would correct 0 actor IDs
5640-----------------------------------------------------------------
5641zh_min_nanwikiquote
5642-----------------------------------------------------------------
5643zh_min_nanwikiquote Dry run done, would correct 0 actor IDs
5644-----------------------------------------------------------------
5645zh_min_nanwikisource
5646-----------------------------------------------------------------
5647zh_min_nanwikisource Dry run done, would correct 0 actor IDs
5648-----------------------------------------------------------------
5649zh_min_nanwiktionary
5650-----------------------------------------------------------------
5651zh_min_nanwiktionary More than one matching local log entry for global #55036871
5652zh_min_nanwiktionary Dry run done, would correct 0 actor IDs
5653-----------------------------------------------------------------
5654zh_yuewiki
5655-----------------------------------------------------------------
5656zh_yuewiki Would update performer for local #188764 based on global #18521882 from 'Jtrkid' to 'Kegns'
5657zh_yuewiki More than one matching local log entry for global #42044645
5658zh_yuewiki More than one matching local log entry for global #42044662
5659zh_yuewiki More than one matching local log entry for global #55036871
5660zh_yuewiki Dry run done, would correct 1 actor IDs
5661-----------------------------------------------------------------
5662zhwiki
5663-----------------------------------------------------------------
5664zhwiki Would update performer for local #6516810 based on global #15237384 from 'Cyberpower678' to 'Maire'
5665zhwiki Would update performer for local #6872037 based on global #18521882 from 'Kitano~zhwiki' to 'Kegns'
5666zhwiki More than one matching local log entry for global #40252809
5667zhwiki More than one matching local log entry for global #40253191
5668zhwiki More than one matching local log entry for global #42044645
5669zhwiki More than one matching local log entry for global #42044662
5670zhwiki More than one matching local log entry for global #55036871
5671zhwiki Would update performer for local #15072310 based on global #59134395 from 'Chaoyi~zhwiki' to 'Civvì'
5672zhwiki More than one matching local log entry for global #59609932
5673zhwiki More than one matching local log entry for global #59619180
5674zhwiki Dry run done, would correct 3 actor IDs
5675-----------------------------------------------------------------
5676zhwikibooks
5677-----------------------------------------------------------------
5678zhwikibooks Dry run done, would correct 0 actor IDs
5679-----------------------------------------------------------------
5680zhwikinews
5681-----------------------------------------------------------------
5682zhwikinews Dry run done, would correct 0 actor IDs
5683-----------------------------------------------------------------
5684zhwikiquote
5685-----------------------------------------------------------------
5686zhwikiquote Dry run done, would correct 0 actor IDs
5687-----------------------------------------------------------------
5688zhwikisource
5689-----------------------------------------------------------------
5690zhwikisource Dry run done, would correct 0 actor IDs
5691-----------------------------------------------------------------
5692zhwikiversity
5693-----------------------------------------------------------------
5694zhwikiversity Dry run done, would correct 0 actor IDs
5695-----------------------------------------------------------------
5696zhwikivoyage
5697-----------------------------------------------------------------
5698zhwikivoyage Dry run done, would correct 0 actor IDs
5699-----------------------------------------------------------------
5700zhwiktionary
5701-----------------------------------------------------------------
5702zhwiktionary More than one matching local log entry for global #55036871
5703zhwiktionary Dry run done, would correct 0 actor IDs
5704-----------------------------------------------------------------
5705zuwiki
5706-----------------------------------------------------------------
5707zuwiki More than one matching local log entry for global #55036871
5708zuwiki Dry run done, would correct 0 actor IDs
5709-----------------------------------------------------------------
5710zuwikibooks
5711-----------------------------------------------------------------
5712zuwikibooks Dry run done, would correct 0 actor IDs
5713-----------------------------------------------------------------
5714zuwiktionary
5715-----------------------------------------------------------------
5716zuwiktionary Dry run done, would correct 0 actor IDs

In total, it would correct 592 actor IDs, mostly on enwiki and commonswiki:

lucaswerkmeister-wmde@deploy1003 ~ $ kubectl logs mw-script.eqiad.ngnakllv-4552z mediawiki-ngnakllv-app | grep -F 'Dry run done, would correct' | awk '{ sum += $7 } END { print sum }'
592
lucaswerkmeister-wmde@deploy1003 ~ $ kubectl logs mw-script.eqiad.ngnakllv-4552z mediawiki-ngnakllv-app | grep -F 'Dry run done, would correct' | sort -rnk7 | head
enwiki Dry run done, would correct 211 actor IDs
commonswiki Dry run done, would correct 121 actor IDs
loginwiki Dry run done, would correct 23 actor IDs
arwiki Dry run done, would correct 18 actor IDs
foundationwiki Dry run done, would correct 17 actor IDs
wikidatawiki Dry run done, would correct 10 actor IDs
mediawikiwiki Dry run done, would correct 9 actor IDs
eswiki Dry run done, would correct 9 actor IDs
metawiki Dry run done, would correct 8 actor IDs
bnwiki Dry run done, would correct 7 actor IDs

Actually, the script only does something on ca. 10% of SUL wikis:

lucaswerkmeister-wmde@deploy1003 ~ $ kubectl logs mw-script.eqiad.ngnakllv-4552z mediawiki-ngnakllv-app | grep -Fc 'Dry run done, would correct 0 actor IDs'
897
lucaswerkmeister-wmde@deploy1003 ~ $ kubectl logs mw-script.eqiad.ngnakllv-4552z mediawiki-ngnakllv-app | grep -F 'Dry run done, would correct' | grep -vFc 'correct 0 actor IDs'
99

That’s almost enough to make me want to run the “proper” run only on those 10% of wikis… but putting together that dblist would be a bit tedious.

Oh, and it took ca. 17 hours overall (from 2025-09-01T13:42:43 to 2025-09-02T06:41:28 UTC).

Thanks. I reviewed the logs and I noticed two problems:


1. A lot more messages like "User has existed, but no local log entry…" than I would expect. I picked one at random:

plwiki User has existed, but no local log entry for global #12027060

(that's https://meta.wikimedia.org/w/index.php?title=Special:Log&logid=12027060) …and I found the corresponding local log entry on plwiki: https://pl.wikipedia.org/w/index.php?title=Specjalna:Rejestr&logid=23854886

I examined the details in the database:

mysql:research@dbstore1007.eqiad.wmnet [plwiki]> select * from logging where log_id=23854886;
+----------+------------+------------+----------------+---------------+-----------+----------------+---------------------------------------------------------------------------------------------------------+-------------+-----------+----------+
| log_id   | log_type   | log_action | log_timestamp  | log_namespace | log_title | log_comment_id | log_params                                                                                              | log_deleted | log_actor | log_page |
+----------+------------+------------+----------------+---------------+-----------+----------------+---------------------------------------------------------------------------------------------------------+-------------+-----------+----------+
| 23854886 | renameuser | renameuser | 20150513182737 |             2 | K175      |       20715258 | a:3:{s:10:"4::olduser";s:15:"Adriaan Joubert";s:10:"5::newuser";s:11:"Beaumont877";s:8:"6::edits";i:0;} |           0 |      5380 |        0 |
+----------+------------+------------+----------------+---------------+-----------+----------------+---------------------------------------------------------------------------------------------------------+-------------+-----------+----------+

It turns out that it's not matching because log_title is different from the user's old username, while the script expects them to match.

The reason for that is because another person registered the same username later (we prevent this now, but we didn't at the time), and then that user was renamed too, and the rename process updates the log_title for all log entries about that user, including previous rename logs from the same username. We'll need to account for that. Luckily log_params are not updated.


2. Some messages like "Would update performer…" with two valid usernames (both stewards or global renamers). For example, these:

dewiki Would update performer for local #71117002 based on global #12646819 from 'Steinsplitter' to 'Céréales Killer'
dewiki Would update performer for local #77493097 based on global #15237384 from 'Cyberpower678' to 'Maire'

In these cases the user was renamed back-and-forth. They should have failed with "More than one matching local log entry…" instead, but only one of the local log entries was found, probably due to the previous problem.

Change #1184803 had a related patch set uploaded (by Bartosz Dziewoński; author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Improve matching for users renamed multiple times

https://gerrit.wikimedia.org/r/1184803

Change #1184803 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Improve matching for users renamed multiple times

https://gerrit.wikimedia.org/r/1184803

Change #1191495 had a related patch set uploaded (by Bartosz Dziewoński; author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.20] FixRenameUserLocalLogs: Improve matching for users renamed multiple times

https://gerrit.wikimedia.org/r/1191495

Change #1192128 had a related patch set uploaded (by Lucas Werkmeister (WMDE); author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Ensure field subquery returns just 1 result

https://gerrit.wikimedia.org/r/1192128

Change #1192130 had a related patch set uploaded (by Bartosz Dziewoński; author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.20] FixRenameUserLocalLogs: Ensure field subquery returns just 1 result

https://gerrit.wikimedia.org/r/1192130

Change #1191495 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.20] FixRenameUserLocalLogs: Improve matching for users renamed multiple times

https://gerrit.wikimedia.org/r/1191495

Change #1192130 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.20] FixRenameUserLocalLogs: Ensure field subquery returns just 1 result

https://gerrit.wikimedia.org/r/1192130

Mentioned in SAL (#wikimedia-operations) [2025-09-29T13:35:37Z] <lucaswerkmeister-wmde@deploy2002> Started scap sync-world: Backport for [[gerrit:1191495|FixRenameUserLocalLogs: Improve matching for users renamed multiple times (T398177)]], [[gerrit:1192130|FixRenameUserLocalLogs: Ensure field subquery returns just 1 result (T398177)]]

Change #1192128 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Ensure field subquery returns just 1 result

https://gerrit.wikimedia.org/r/1192128

Mentioned in SAL (#wikimedia-operations) [2025-09-29T13:41:36Z] <lucaswerkmeister-wmde@deploy2002> matmarex, lucaswerkmeister-wmde: Backport for [[gerrit:1191495|FixRenameUserLocalLogs: Improve matching for users renamed multiple times (T398177)]], [[gerrit:1192130|FixRenameUserLocalLogs: Ensure field subquery returns just 1 result (T398177)]] synced to the testservers (see https://wikitech.wikimedia.org/wiki/Mwdebug). Changes can now be verified there.

Mentioned in SAL (#wikimedia-operations) [2025-09-29T13:47:01Z] <lucaswerkmeister-wmde@deploy2002> Finished scap sync-world: Backport for [[gerrit:1191495|FixRenameUserLocalLogs: Improve matching for users renamed multiple times (T398177)]], [[gerrit:1192130|FixRenameUserLocalLogs: Ensure field subquery returns just 1 result (T398177)]] (duration: 11m 24s)

Mentioned in SAL (#wikimedia-operations) [2025-09-29T13:48:03Z] <lucaswerkmeister-wmde@deploy2002> mwscript-k8s job started: foreachwikiindblist sul CentralAuth:FixRenameUserLocalLogs --logwiki=metawiki # T398177 (dry run)

Mentioned in SAL (#wikimedia-operations) [2025-09-29T13:48:03Z] <lucaswerkmeister-wmde@deploy2002> mwscript-k8s job started: foreachwikiindblist sul CentralAuth:FixRenameUserLocalLogs --logwiki=metawiki # T398177 (dry run)

Unfortunately this maintenance script run died with an out-of-memory error without any other error message:

lucaswerkmeister-wmde@deploy2002 ~ $ kubectl get pods -l job-name=mw-script.codfw.4rlstrgm
NAME                             READY   STATUS      RESTARTS   AGE
mw-script.codfw.4rlstrgm-k9tdn   0/3     OOMKilled   0          18h
lucaswerkmeister-wmde@deploy2002 ~ $ kubectl logs --tail=5 mw-script.codfw.4rlstrgm-k9tdn
Defaulted container "mediawiki-4rlstrgm-app" out of: mediawiki-4rlstrgm-app, mediawiki-4rlstrgm-tls-proxy, mediawiki-4rlstrgm-rsyslog
enwiki User has existed, but no local log entry for global #11438884
enwiki User has existed, but no local log entry for global #11438895
enwiki User has existed, but no local log entry for global #11439384
enwiki User has existed, but no local log entry for global #11439678
enwiki User has existed, but no local log entry for global #11496517

On the plus side, that means the output is short enough for an uncompressed paste: P83481

Oh, and that script ran for a bit over four hours (from 2025-09-29T13:48:03Z to 2025-09-29T18:09:07Z).

Oh come on.

I found some logs and dashboards to help understand this.

Memory usage has been spiky, and comparing the time of these spikes to the timestamped logs, it looks like they happened when processing large wikis – arwiki around 14:30, commonswiki around 16:50, dewiki around 17:35. When the script was killed around 18:00, it was processing enwiki – there is no spike on the chart, but maybe it was shut down before it managed to record the spike. There are also corresponding spikes in network usage.

image.png (847×1 px, 153 KB)
image.png (847×1 px, 172 KB)

The previous (successful) attempt did not have any such spikes:

image.png (847×1 px, 91 KB)
image.png (864×1 px, 231 KB)

I don't know why this is. I don't see anything in the code changes since the last time that could cause this. Maybe I made some mistake in one of the queries and it's fetching way more data than intended?

Maybe we can run it with --batch-size=25 (default is 100) and see if that helps.

Is that a PHP out of memory error (in which case we should have a stack trace) or the OOM killer? Maybe the difference between the PHP max memory and the other memory settings is too small? Shutdown handlers still run after a PHP OOM and might increase the memory use somewhat, right? Or was that only the case in older versions of PHP?

Anyway, I reviewed the partial log.

These entries look incorrect:

commonswiki Would update performer for local #121605269 based on global #11613214 from 'Stryn' to 'Jianhui67'
cswiki Would update performer for local #1090992 based on global #9882084 from 'Ajraddatz' to 'Savh'
enwiki Would update performer for local #59149797 based on global #9882084 from 'Ajraddatz' to 'Savh'

I don't know what exactly happened there, but it looks like two different renamers have contributed to renaming those users across wikis. I'll add another check to verify that the actor_id values match.


I also had a look at the "User has existed, but no local log entry" entries. Most of them are quite old, and I won't bother investigating what happened there.

select left(log_timestamp, 4) as year, count(*) as count from (select log_timestamp from logging where log_id in (9055921,9056142,9078326,9084652,9086285,9103873,9118582,9123881,9123979,9124256,9128686,9140345,9144325,9146802,9157809,9157873,9157918,9161408,9163375,9177476,9182758,9185620,9202377,9218181,9224070,9225980,9226175,9226259,9226593,9228517,9232720,9235101,9235138,9235200,9235233,9242640,9253316,9259138,9272544,9273075,9285306,9287175,9300816,9306104,9311171,9314357,9314413,9314417,9316007,9317743,9319557,9329585,9349288,9350752,9367417,9379656,9382125,9384949,9397128,9405597,9406556,9414845,9418169,9421028,9421031,9427080,9427086,9431809,9432273,9439520,9440767,9440875,9446098,9446888,9447648,9448367,9448440,9448470,9448535,9448630,9448651,9448656,9448799,9448817,9449310,9449335,9450063,9450074,9450093,9450099,9450103,9450112,9450136,9450150,9450153,9450592,9451666,9451669,9454260,9454558,9454572,9455293,9455385,9455541,9459720,9460229,9460386,9460573,9460708,9462029,9472514,9485168,9485176,9487417,9487434,9487441,9488412,9488447,9488714,9492047,9492054,9494889,9496515,9497498,9497508,9497530,9505988,9506013,9506046,9506591,9508028,9511322,9512759,9519606,9519615,9520389,9522938,9526389,9526401,9527690,9534725,9534815,9537704,9537711,9538684,9539070,9539783,9543199,9546249,9547322,9547390,9550207,9551570,9551601,9553569,9553570,9553577,9553600,9554916,9554931,9554952,9556702,9564547,9564556,9566427,9568324,9569760,9569770,9569800,9569819,9569837,9570471,9571737,9574083,9578370,9578377,9578395,9578512,9578528,9578806,9578909,9579994,9579996,9580176,9583714,9583837,9585275,9590479,9597971,9600577,9600586,9600596,9600620,9600653,9600688,9600709,9600728,9600763,9600866,9600880,9600937,9601100,9601148,9601780,9603404,9603430,9606429,9609508,9609516,9609596,9609601,9613432,9616131,9618480,9619227,9622823,9622838,9623715,9623896,9625898,9626665,9631178,9632722,9639802,9639811,9640992,9642151,9642199,9642211,9644032,9644046,9644049,9645336,9645618,9645918,9647698,9647704,9647708,9650319,9650483,9650608,9651350,9651359,9651933,9653748,9653780,9653947,9653985,9653989,9654151,9654226,9654335,9654694,9655027,9655117,9655123,9656741,9657472,9658074,9658086,9658114,9658135,9658178,9658548,9658834,9661091,9661585,9661589,9663230,9664208,9664212,9664221,9664928,9666552,9667253,9667465,9668928,9669087,9669985,9669990,9670789,9670820,9670922,9670979,9672468,9675028,9675377,9676565,9676825,9680157,9681263,9682992,9684471,9684475,9684712,9688358,9688360,9688819,9688911,9689057,9690838,9690865,9696104,9696340,9696468,9697348,9698259,9698271,9700080,9700844,9702410,9704757,9704765,9709600,9710186,9710244,9710370,9710375,9712990,9713260,9713264,9714584,9715515,9718681,9718695,9719893,9722211,9723251,9725270,9726643,9727703,9727707,9727709,9727712,9727922,9728018,9729111,9730575,9730592,9733236,9733746,9733879,9734044,9734191,9734220,9734412,9734547,9736699,9740380,9740383,9740388,9741209,9743219,9745389,9745462,9745484,9745506,9745638,9746341,9746390,9746446,9746604,9747037,9747303,9747519,9748428,9748439,9748881,9748928,9751175,9753087,9753915,9755319,9756025,9756854,9757435,9757963,9759403,9759409,9761486,9762372,9762474,9763232,9764535,9766524,9766543,9768666,9769448,9770204,9770239,9770277,9770288,9770310,9770314,9773004,9773421,9774564,9775808,9776126,9776967,9777134,9777846,9778136,9778151,9778156,9778568,9779005,9779940,9780472,9780560,9780929,9782165,9782168,9782461,9782470,9784608,9785987,9786484,9786796,9786938,9787710,9788904,9788925,9789036,9793074,9797140,9797150,9797153,9797167,9798391,9798787,9801395,9802188,9802203,9803772,9803776,9803874,9803896,9804197,9804583,9806160,9806337,9808011,9808837,9808840,9808848,9809149,9809749,9810079,9810324,9811744,9812288,9812370,9812508,9812665,9816420,9816436,9816456,9817111,9819802,9821854,9821859,9821862,9822369,9822901,9823820,9823836,9825633,9828157,9829534,9831977,9832654,9832744,9834118,9839497,9844857,9844870,9846255,9846391,9846776,9848817,9848821,9850799,9851801,9851813,9853285,9853354,9853849,9854304,9861734,9863317,9864239,9868169,9868276,9868312,9868373,9868475,9868792,9868881,9868941,9870720,9875118,9876040,9877840,9878091,9878364,9878370,9878374,9878685,9879395,9880104,9880106,9881062,9881648,9882084,9886472,9886475,9886488,9886495,9886498,9886500,9888938,9888947,9888949,9889502,9890554,9890709,9890712,9890716,9890717,9892322,9894993,9895930,9896491,9896495,9897661,9897985,9899574,9899773,9899849,9900322,9901309,9901334,9902027,9903750,9903752,9905718,9907250,9907839,9908215,9908587,9908614,9908860,9909041,9910037,9910056,9910590,9912095,9913137,9914103,9914431,9916429,9916701,9917032,9917189,9918273,9918639,9918799,9919491,9919534,9920787,9920789,9921513,9921752,9921764,9921766,9921777,9921792,9921805,9923331,9923370,9924312,9924428,9924653,9924929,9925037,9925606,9927284,9929584,9931840,9934202,9934229,9936664,9936997,9937072,9937424,9938686,9939526,9940389,9940449,9944915,9945922,9946155,9946430,9949329,9949511,9949531,9949882,9950841,9950859,9951411,9951568,9951579,9953147,9953598,9953618,9953682,9955200,9955591,9956770,9957107,9957112,9957115,9957119,9957131,9957134,9957942,9958256,9958542,9958553,9959869,9959944,9961005,9961393,9961956,9963757,9965502,9965628,9965630,9965635,9965639,9965967,9966010,9966860,9966862,9967801,9969188,9969859,9971021,9971111,9972500,9972510,9974945,9975740,9975767,9977061,9978389,9978391,9979603,9980489,9984304,9985591,9985899,9986556,9988335,9989258,9992183,9993776,9993788,9993857,9993875,9995180,9996148,9996644,9996646,9997891,9998432,9999878,10002602,10002624,10004721,10004725,10005261,10005364,10005372,10006074,10006913,10007683,10010940,10010945,10010954,10015976,10016505,10016510,10016513,10016521,10017508,10017816,10018243,10018532,10019478,10019718,10020583,10020740,10021643,10026217,10026219,10026716,10026723,10028269,10029358,10029656,10029837,10029868,10036167,10037272,10037278,10037284,10037298,10037303,10038838,10045801,10047236,10049225,10049230,10049233,10049236,10049240,10049242,10049245,10049246,10049936,10052084,10052094,10052119,10052123,10053784,10054384,10056673,10056721,10059640,10059917,10063397,10064192,10065963,10067541,10067546,10067590,10067816,10070231,10073286,10073654,10073899,10073903,10073906,10073910,10073914,10073917,10073919,10075147,10076328,10076491,10077108,10077112,10077136,10077236,10077400,10082384,10083534,10083550,10083566,10083589,10083604,10083621,10083632,10084555,10084606,10084629,10084912,10085227,10086321,10089659,10089666,10089686,10092248,10093269,10093334,10094105,10095347,10095885,10097070,10097102,10098953,10098963,10098977,10099679,10103880,10103884,10103887,10103892,10103896,10103964,10105724,10105930,10106038,10106399,10109210,10109213,10109380,10109775,10109786,10113425,10113479,10113486,10113489,10113917,10114960,10116084,10116298,10116632,10116654,10119463,10120379,10123182,10123660,10123661,10123665,10123668,10123672,10125126,10125145,10126851,10129236,10129358,10129372,10129681,10129682,10129695,10129696,10132626,10135234,10135898,10135911,10136052,10136852,10136863,10138418,10138442,10138792,10138813,10138839,10139149,10141219,10141227,10142009,10142022,10144653,10146544,10146572,10146638,10146975,10148237,10149176,10149298,10149299,10150251,10150257,10150343,10150380,10151479,10151530,10155014,10155032,10155040,10155800,10155806,10159187,10159520,10161393,10161574,10161901,10161911,10162199,10162470,10164744,10164866,10164876,10166278,10166305,10169104,10169366,10169374,10169434,10169566,10169858,10171784,10171789,10171921,10172694,10173920,10178474,10178490,10180187,10180782,10182413,10186345,10186351,10186361,10186476,10188663,10188943,10192024,10192032,10192075,10192085,10195899,10195933,10195939,10195944,10196118,10196810,10196844,10197079,10197264,10197298,10197645,10198823,10199618,10199668,10199745,10203861,10204175,10204179,10207605,10208577,10212902,10213701,10215340,10215349,10215353,10216156,10216924,10216938,10217629,10217640,10217858,10217959,10218046,10219337,10221784,10222132,10223090,10223820,10224047,10224250,10225821,10228630,10228640,10228659,10229502,10230705,10230729,10230734,10230764,10235266,10237444,10238539,10240202,10241763,10241789,10243753,10243757,10244281,10244893,10245288,10248465,10249531,10249562,10249687,10250325,10250943,10255969,10255975,10257068,10257073,10257084,10257116,10261948,10262811,10266634,10267338,10267347,10267594,10269563,10271568,10275820,10276647,10277506,10277522,10277527,10277539,10277602,10279787,10280256,10280909,10281322,10281948,10281955,10281988,10282511,10282611,10286773,10288157,10289375,10290089,10290273,10291873,10292421,10292429,10292431,10293244,10293266,10293269,10293928,10295203,10295398,10296240,10298030,10300590,10301167,10301169,10301295,10301779,10301851,10304512,10305494,10305521,10306174,10306181,10306198,10306329,10306499,10306522,10307509,10307564,10309264,10309414,10309433,10309463,10310840,10311433,10314324,10314937,10314940,10315430,10315438,10315544,10318722,10318949,10319137,10320223,10320245,10321906,10322879,10323366,10323482,10325365,10325375,10325621,10325627,10327048,10327535,10328610,10332236,10332256,10332258,10333037,10333233,10334940,10334943,10337768,10339425,10341542,10343792,10345057,10345116,10346545,10346606,10346917,10347543,10347991,10348408,10348427,10350855,10350868,10350889,10351265,10351364,10351963,10352456,10352502,10352670,10352902,10356232,10356276,10357224,10358645,10360416,10363946,10363962,10364341,10368084,10368360,10368369,10370124,10371228,10372620,10372818,10372827,10372863,10372864,10372990,10373567,10374033,10374177,10376911,10376925,10381188,10381191,10381197,10381205,10381208,10381214,10381217,10381221,10382143,10382187,10382374,10382716,10384680,10385105,10385254,10386312,10390158,10390173,10390237,10390806,10391923,10392567,10392573,10392593,10393565,10393584,10393812,10394876,10395749,10398165,10400913,10401623,10401700,10402258,10402478,10402592,10402691,10402692,10402722,10404226,10404500,10406564,10408262,10408265,10408602,10409817,10411302,10411310,10411378,10412554,10412982,10414030,10414591,10416283,10418563,10419369,10419730,10419733,10420474,10421235,10421273,10421275,10421280,10421691,10421916,10421935,10422050,10422311,10423403,10427387,10427483,10428272,10429195,10430422,10430575,10430622,10433364,10433384,10433685,10434061,10434408,10434550,10436338,10436687,10437183,10437612,10439612,10440124,10440442,10440486,10441152,10441254,10441624,10442391,10442759,10443497,10444320,10444324,10444544,10444699,10446998,10447295,10447421,10448373,10451297,10451924,10451940,10451943,10453424,10453443,10454113,10454453,10455416,10455807,10455824,10460244,10460281,10460668,10460675,10460767,10461352,10462662,10462705,10466235,10466284,10467435,10468020,10469169,10471234,10471547,10472297,10472607,10473215,10473346,10476933,10477545,10477561,10477565,10477856,10478765,10478769,10479596,10480541,10485899,10485964,10486002,10486040,10486072,10486102,10486121,10487860,10487863,10493091,10493343,10493810,10497663,10497670,10498122,10498125,10498658,10498895,10499999,10500003,10500256,10500297,10500300,10501387,10503384,10506386,10506879,10506895,10506900,10506906,10507088,10507171,10507246,10507742,10508192,10508922,10510948,10510953,10512820,10512835,10512843,10513965,10514552,10514561,10514569,10514584,10514767,10516020,10516263,10516269,10516279,10516287,10516290,10516294,10516690,10516796,10517138,10518826,10518834,10521989,10522050,10522066,10522070,10522289,10522628,10524258,10524356,10524381,10525668,10525866,10525891,10526594,10526709,10526738,10526779,10526786,10526791,10527171,10527178,10527389,10527511,10528921,10528946,10528953,10529374,10529384,10529415,10529626,10530983,10531701,10531777,10532301,10532850,10532852,10532889,10532945,10532957,10533451,10533556,10533558,10533969,10534000,10534005,10534056,10534288,10534325,10534519,10534946,10534947,10534985,10537338,10538106,10538323,10538762,10538992,10539053,10539937,10540168,10540556,10540665,10541309,10541710,10541808,10541926,10542716,10542718,10544345,10544357,10544620,10544813,10545061,10545065,10545071,10545568,10545855,10546157,10546221,10547262,10548395,10548665,10548780,10548904,10549018,10549812,10550131,10550591,10550604,10550754,10550871,10550873,10552027,10552824,10552918,10553754,10554166,10556653,10556659,10556764,10556778,10557702,10558548,10558652,10560007,10560010,10560233,10561944,10562390,10562420,10562717,10562842,10564019,10564024,10564182,10564185,10564186,10564189,10564358,10564414,10564468,10564473,10564960,10566810,10566813,10566850,10567809,10568042,10568270,10568347,10568631,10568670,10568683,10569333,10569372,10569373,10569580,10571190,10571423,10571593,10573115,10573132,10573176,10573657,10574269,10574751,10574757,10574761,10576015,10576272,10577307,10577310,10578846,10578871,10578891,10578947,10579129,10579188,10580274,10580875,10580996,10581404,10581546,10581548,10581550,10582514,10585057,10585067,10585483,10585546,10586797,10586803,10586826,10586841,10586850,10586862,10587600,10587605,10587726,10588169,10588172,10588425,10588599,10588705,10590416,10590704,10590729,10590750,10591425,10591430,10591479,10591785,10591845,10592206,10592216,10593031,10593035,10593798,10593810,10593946,10594564,10594831,10594833,10594883,10595862,10595867,10595888,10596095,10596097,10596355,10596693,10596923,10597102,10598255,10598406,10598422,10598425,10598648,10598771,10598883,10599197,10600527,10600728,10600729,10600975,10600977,10602740,10602846,10603954,10604704,10604708,10604712,10604718,10605832,10606058,10606740,10607065,10607068,10607442,10608339,10608348,10608369,10608539,10608815,10609875,10610881,10611205,10612900,10613965,10614368,10614474,10614952,10615380,10615385,10615700,10615701,10616031,10617133,10617592,10617612,10617842,10617869,10618283,10618295,10618529,10618542,10619780,10619794,10620519,10620521,10620824,10621272,10621627,10621985,10621987,10622318,10622526,10622901,10623886,10623926,10624647,10624651,10624653,10624817,10625945,10626328,10627050,10628140,10628970,10629389,10630558,10630693,10631105,10633133,10633499,10633653,10634721,10638040,10638505,10638530,10638863,10639052,10639073,10639359,10641511,10644362,10647020,10648285,10649415,10649456,10650206,10651567,10651576,10653039,10653483,10653537,10654287,10655368,10655556,10655806,10656963,10657553,10657558,10657857,10657943,10658412,10658802,10659034,10659087,10659889,10662349,10662352,10663509,10664327,10664525,10666904,10667893,10667966,10668379,10668586,10669432,10671791,10671794,10672147,10672358,10672658,10673019,10673021,10673551,10673838,10673842,10674803,10676753,10676866,10676982,10677575,10677584,10677619,10678386,10678507,10678518,10678522,10678545,10679079,10681181,10681920,10682116,10682317,10682484,10683120,10683136,10683382,10684421,10684996,10685987,10686390,10686601,10686617,10687614,10687714,10687726,10689796,10690496,10690603,10690610,10690730,10692308,10693209,10693214,10693286,10694418,10695218,10695682,10696000,10696744,10696760,10697737,10697819,10697823,10698343,10698559,10699283,10699491,10699678,10700124,10700139,10700250,10700894,10701613,10701664,10703539,10705005,10706964,10707268,10708268,10709108,10709208,10709228,10709601,10709693,10709843,10710259,10710282,10710284,10710482,10710588,10710658,10712479,10713202,10713375,10713834,10714783,10714940,10715636,10716457,10716535,10716998,10717215,10717877,10717888,10717902,10717903,10718806,10720639,10720685,10721027,10721435,10722431,10722825,10724068,10724267,10724633,10724639,10724693,10725101,10726015,10726484,10729354,10729395,10729411,10729445,10731450,10733199,10733989,10735303,10735366,10735813,10736079,10737857,10737861,10738166,10738623,10739275,10740063,10740555,10741130,10741234,10741262,10741285,10741404,10741512,10741934,10742137,10742517,10742858,10743100,10744002,10744376,10745142,10745160,10745319,10745533,10745674,10745712,10746935,10747556,10747559,10747561,10747564,10748542,10749512,10749848,10752874,10754309,10754527,10754531,10754537,10754542,10756466,10759778,10759783,10759793,10759805,10760056,10760070,10760910,10761356,10762907,10763691,10764202,10765119,10765136,10765268,10765635,10766138,10766808,10766839,10767345,10767786,10767840,10767842,10767854,10767859,10767869,10767872,10767946,10768140,10768635,10768639,10768958,10768977,10769047,10769504,10770966,10771397,10772421,10772871,10773054,10773058,10775426,10778094,10778485,10778988,10779231,10780508,10781108,10781734,10782523,10784150,10784750,10785422,10785488,10785495,10785718,10785725,10785759,10785878,10787266,10788159,10788352,10788627,10788629,10788872,10789246,10789482,10789971,10790097,10790100,10790101,10790535,10790551,10793584,10793588,10793590,10794325,10795054,10795062,10795126,10795849,10796204,10796216,10797092,10797248,10797307,10797818,10798030,10798031,10798109,10798556,10798822,10800754,10801800,10801804,10801808,10801854,10802957,10806653,10806730,10806949,10807807,10808887,10808957,10810989,10811024,10811676,10812540,10812543,10812736,10812785,10814266,10814743,10819441,10819445,10820795,10820952,10822035,10822518,10823070,10823146,10823155,10823168,10827230,10827273,10828696,10828698,10828708,10828838,10829148,10829154,10831165,10831196,10832637,10833149,10833190,10833235,10833248,10833259,10833410,10833415,10833489,10833662,10833665,10834272,10835073,10835126,10836574,10838140,10838567,10839163,10839537,10840258,10840261,10841598,10841616,10841860,10841866,10842342,10842486,10842992,10844028,10844658,10847894,10847900,10848240,10848244,10848278,10849155,10850166,10851533,10852075,10852448,10853485,10853977,10855039,10855506,10857922,10858552,10858572,10859344,10859521,10860396,10860922,10861037,10861051,10862391,10863865,10864057,10866082,10869505,10870383,10870755,10872997,10874266,10874269,10874284,10874559,10875182,10876351,10876592,10876615,10877081,10878689,10878696,10880661,10884856,10886523,10888363,10888504,10889371,10889507,10891569,10893083,10893717,10893719,10894627,10894637,10894754,10894796,10896538,10897451,10898229,10898243,10898485,10898840,10899840,10899841,10900068,10901609,10901663,10902533,10903239,10903571,10905479,10905913,10905925,10906003,10906959,10906989,10907304,10908042,10908528,10909520,10910698,10911075,10911986,10912069,10914656,10915901,10915915,10915991,10916019,10917029,10917030,10918120,10918152,10918332,10921384,10921390,10921402,10921415,10922227,10923047,10923844,10923880,10924086,10924092,10924484,10925705,10925733,10925782,10926421,10926439,10926682,10927442,10927478,10928268,10928846,10929203,10929309,10929465,10929470,10931185,10931190,10933051,10933108,10937075,10938123,10938739,10938750,10938770,10938820,10939495,10940012,10940253,10940903,10942815,10942822,10942825,10942893,10942898,10942908,10943599,10944902,10947666,10948043,10948422,10948723,10948756,10949181,10949187,10950483,10951321,10951330,10951477,10951926,10951932,10951971,10954292,10954388,10954392,10954862,10954865,10954887,10955387,10955392,10956328,10958712,10958740,10958766,10958887,10959457,10959673,10959676,10959947,10961372,10962425,10962876,10962880,10963332,10964206,10964450,10965138,10966683,10967370,10968027,10968380,10969479,10969482,10970074,10970322,10974011,10974392,10975479,10975487,10975490,10975491,10975948,10975951,10978169,10979915,10983229,10984359,10984394,10986681,10987054,10987339,10987431,10988495,10989017,10990275,10991558,10991590,10992404,10992552,10992571,10992581,10993928,10994977,10995189,10995466,10995560,10995693,10995700,10995785,10995788,10995819,10995923,10996337,10996349,10997116,10998525,11000006,11000007,11000556,11001161,11001507,11003402,11004923,11005203,11005213,11005220,11005240,11005256,11005265,11005282,11005812,11005935,11006181,11006195,11006653,11006684,11006936,11008057,11008061,11008064,11008066,11008160,11008337,11009113,11009854,11010018,11010879,11011405,11011646,11012322,11012325,11012721,11013312,11013314,11014484,11014492,11014644,11014720,11014757,11016054,11017784,11017808,11018535,11018542,11018546,11019235,11020107,11020122,11020301,11020565,11020569,11020573,11021195,11021235,11021488,11021570,11022699,11022721,11024434,11024695,11024710,11024712,11024777,11024985,11024999,11026007,11026234,11026493,11026716,11027909,11029847,11030845,11030848,11031921,11032053,11032068,11032081,11032896,11032928,11033541,11038100,11038147,11041081,11041335,11041445,11043720,11044814,11045232,11045242,11046030,11046608,11047351,11048681,11049024,11049408,11051382,11053979,11054062,11055800,11056299,11057493,11058010,11058130,11058918,11058956,11060380,11061723,11061756,11061763,11061776,11061783,11063891,11064321,11064528,11064585,11064688,11066097,11066127,11066960,11067794,11068305,11068724,11068758,11068929,11069707,11070120,11070743,11071973,11072302,11073858,11073882,11074215,11074244,11075670,11075679,11077020,11077886,11078142,11079965,11080440,11081527,11081536,11082317,11082884,11083174,11084735,11084742,11085115,11086292,11086355,11086464,11087391,11091436,11092298,11092505,11093592,11094880,11096444,11096448,11097573,11098352,11098675,11099079,11100466,11100643,11101288,11101407,11101416,11102354,11103004,11103166,11103528,11107392,11108678,11108682,11108693,11108702,11109945,11111910,11111977,11111981,11112053,11112054,11112056,11112184,11112217,11114336,11115355,11115371,11115982,11115989,11115995,11116362,11116996,11117218,11117224,11117227,11118448,11118855,11120947,11120956,11124043,11124063,11124170,11124175,11124899,11124906,11126211,11127615,11128718,11130276,11130926,11130931,11131425,11131429,11131676,11133938,11134002,11134008,11134012,11134017,11134461,11136403,11136972,11138138,11138825,11139356,11139366,11139589,11140830,11140896,11142552,11143937,11143983,11143985,11147233,11147263,11147275,11148112,11148118,11149669,11151514,11151733,11152049,11152081,11153223,11153640,11153704,11154587,11154607,11156110,11157489,11157516,11157551,11162247,11162261,11162476,11162529,11162806,11162827,11165172,11166495,11166711,11166982,11167341,11167370,11167914,11168548,11168553,11168556,11168557,11168765,11169346,11170309,11171032,11171494,11174025,11174032,11175831,11176535,11176608,11176757,11177523,11177528,11177532,11177560,11178438,11178806,11179293,11183346,11183647,11184176,11184682,11188443,11188727,11188737,11189272,11189279,11190119,11190129,11190141,11192865,11193113,11193765,11194202,11194245,11194258,11194536,11194766,11194770,11194777,11194785,11194788,11194792,11195053,11195201,11195208,11195798,11195817,11198204,11198585,11199872,11199990,11200020,11200878,11201868,11201879,11202636,11202648,11202658,11202661,11204328,11204344,11206495,11206537,11206562,11206631,11206648,11206654,11209029,11209075,11210124,11210946,11211174,11211462,11211486,11211995,11212003,11212006,11212029,11212050,11215926,11217833,11218261,11221162,11221703,11221705,11221708,11221715,11221848,11222150,11222165,11222175,11223215,11223283,11223743,11225306,11225773,11226151,11226747,11226982,11229602,11229657,11231212,11234236,11234675,11235529,11235538,11236545,11237011,11237016,11237017,11237309,11238149,11240501,11242461,11242769,11244088,11244836,11245120,11245427,11245522,11245779,11245935,11246006,11248006,11248338,11250489,11250926,11251279,11251432,11251756,11252929,11253633,11254052,11254228,11254229,11254366,11255003,11255447,11255463,11256267,11257696,11258312,11258315,11258318,11258425,11258548,11259565,11260138,11260541,11260735,11260739,11262813,11262950,11262958,11264549,11266456,11268783,11268788,11268790,11268793,11268797,11268830,11269550,11269582,11270731,11271385,11272818,11272904,11273269,11274361,11274433,11275116,11275184,11275786,11276023,11276982,11276984,11277026,11277029,11277404,11277719,11278982,11280154,11280175,11280217,11281156,11281445,11282077,11283212,11283483,11284214,11284756,11284759,11285715,11285731,11290406,11291493,11291786,11291795,11291898,11293041,11295269,11295277,11295846,11296907,11297140,11297898,11297912,11297913,11298024,11298026,11298029,11298042,11298048,11298059,11298073,11298077,11298171,11298672,11301095,11301384,11301388,11302062,11302071,11302282,11302906,11304765,11304850,11306833,11306843,11306866,11307475,11307479,11307480,11308373,11308378,11309682,11310332,11310510,11311107,11312514,11312876,11313974,11314045,11314053,11314400,11316185,11316187,11316214,11316219,11316588,11317010,11317422,11317461,11317815,11318722,11318738,11318742,11318745,11318749,11320061,11320067,11320289,11320752,11321206,11323446,11325734,11325741,11326323,11327828,11329438,11329447,11329461,11329467,11330626,11331237,11331298,11331304,11331306,11331317,11331328,11333018,11335774,11335785,11335995,11336243,11336621,11337074,11337913,11338278,11338283,11338288,11338343,11338845,11338866,11340299,11340309,11340312,11340499,11341515,11342048,11342282,11342352,11343070,11343410,11343680,11343916,11344361,11344698,11345179,11346859,11346899,11347589,11348295,11348387,11348391,11348393,11348397,11348684,11348723,11351259,11352110,11352518,11352520,11352523,11352524,11352531,11352836,11352849,11352857,11354212,11354962,11355105,11355414,11357312,11357579,11357856,11360030,11360056,11360240,11360248,11360252,11360327,11361073,11362059,11362095,11362101,11362114,11362152,11362169,11362473,11362475,11363640,11363827,11363852,11363910,11365021,11365658,11365679,11365693,11367026,11367028,11367042,11367045,11367523,11368458,11368508,11368598,11368687,11369115,11369156,11369160,11369649,11370595,11371402,11372588,11372590,11374001,11374007,11374331,11376719,11376723,11376729,11376846,11377374,11377452,11377493,11377508,11377556,11377580,11378217,11378268,11378277,11378286,11378291,11378298,11378319,11378347,11378361,11378372,11378379,11378382,11378395,11378400,11378409,11378415,11378418,11378423,11378433,11378437,11378459,11378465,11378475,11378479,11378483,11378485,11378486,11378493,11378494,11378498,11378504,11378541,11378545,11378559,11378711,11378863,11426655,11426878,11426887,11426893,11427504,11427824,11427853,11427855,11427973,11428079,11428616,11428617,11428646,11428651,11428659,11428672,11428686,11428688,11428706,11429035,11429038,11429086,11429272,11429342,11429552,11429557,11429899,11430171,11430442,11430793,11430874,11430903,11431093,11431991,11431997,11432124,11432126,11432436,11432494,11432730,11432760,11432766,11433362,11435170,11435760,11435907,11436406,11436519,11437271,11437473,11437694,11437712,11437724,11437726,11437810,11438101,11438167,11438187,11438222,11438367,11438383,11438878,11438884,11438895,11439384,11439388,11439678,11496517,11920701,12348986,12488259,13997024,16786239,17396416,17476083,17510569,19349968,19607906,23381659,24523612,28109254,29537839,32702430,35671322,36216645,36980333,37363264,41007954,43606681,43868742,44835257,46012002,49326204,49901531,50131936,59609963)) t group by 1
yearcount
20141757
20151246
20166
20172
20182
20191
20204
20214
20224
20251

I manually checked the ones from 2021-2025, and all of them belong to usernames that were renamed more than once, so the warning message makes sense.

Change #1192659 had a related patch set uploaded (by Bartosz Dziewoński; author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Check for same log_actor between local and global log entry

https://gerrit.wikimedia.org/r/1192659

Is that a PHP out of memory error (in which case we should have a stack trace) or the OOM killer? Maybe the difference between the PHP max memory and the other memory settings is too small? Shutdown handlers still run after a PHP OOM and might increase the memory use somewhat, right? Or was that only the case in older versions of PHP?

To me it feels like the OOM killer; there’s no error message in the output nor in logstash, and the OOMKilled status seen by k8s also sounds like that to me (unless the PHP OOM handler kills itself with that same error at the end?).

No, for PHP that should be a normal fatal error.
I think I confused it with timeout settings where we have this matryoshka config of X second for PHP, X+1 for Apache, X+2 for ATS and so on. We don't have that for memory limits. But still, getting OOM-killed is not ideal - I wonder if the system configuration can be improved somehow to avoid that.

Change #1192659 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@master] FixRenameUserLocalLogs: Check for same log_actor between local and global log entry

https://gerrit.wikimedia.org/r/1192659

Change #1198119 had a related patch set uploaded (by Bartosz Dziewoński; author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.23] FixRenameUserLocalLogs: Check for same log_actor between local and global log entry

https://gerrit.wikimedia.org/r/1198119

Change #1198120 had a related patch set uploaded (by Bartosz Dziewoński; author: Bartosz Dziewoński):

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.24] FixRenameUserLocalLogs: Check for same log_actor between local and global log entry

https://gerrit.wikimedia.org/r/1198120

Change #1198119 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.23] FixRenameUserLocalLogs: Check for same log_actor between local and global log entry

https://gerrit.wikimedia.org/r/1198119

Change #1198120 merged by jenkins-bot:

[mediawiki/extensions/CentralAuth@wmf/1.45.0-wmf.24] FixRenameUserLocalLogs: Check for same log_actor between local and global log entry

https://gerrit.wikimedia.org/r/1198120

Mentioned in SAL (#wikimedia-operations) [2025-10-23T13:17:51Z] <lucaswerkmeister-wmde@deploy2002> Started scap sync-world: Backport for [[gerrit:1198119|FixRenameUserLocalLogs: Check for same log_actor between local and global log entry (T398177)]], [[gerrit:1198120|FixRenameUserLocalLogs: Check for same log_actor between local and global log entry (T398177)]], [[gerrit:1198217|jawiki: Add ipblock-exempt to the accountcreator user group (T407855)]], [[gerrit:1198283|cswiktionary:

Mentioned in SAL (#wikimedia-operations) [2025-10-23T13:22:16Z] <lucaswerkmeister-wmde@deploy2002> asmartkitten, lucaswerkmeister-wmde, matmarex, dragoniez: Backport for [[gerrit:1198119|FixRenameUserLocalLogs: Check for same log_actor between local and global log entry (T398177)]], [[gerrit:1198120|FixRenameUserLocalLogs: Check for same log_actor between local and global log entry (T398177)]], [[gerrit:1198217|jawiki: Add ipblock-exempt to the accountcreator user group (T407855)]]

Mentioned in SAL (#wikimedia-operations) [2025-10-23T13:27:32Z] <lucaswerkmeister-wmde@deploy2002> Finished scap sync-world: Backport for [[gerrit:1198119|FixRenameUserLocalLogs: Check for same log_actor between local and global log entry (T398177)]], [[gerrit:1198120|FixRenameUserLocalLogs: Check for same log_actor between local and global log entry (T398177)]], [[gerrit:1198217|jawiki: Add ipblock-exempt to the accountcreator user group (T407855)]], [[gerrit:1198283|cswiktionary:

Mentioned in SAL (#wikimedia-operations) [2025-10-23T13:32:14Z] <lucaswerkmeister-wmde@deploy2002> mwscript-k8s job started: foreachwikiindblist sul CentralAuth:FixRenameUserLocalLogs --logwiki=metawiki --batch-size=25 # T398177 (dry run)

Mentioned in SAL (#wikimedia-operations) [2025-10-23T13:32:14Z] <lucaswerkmeister-wmde@deploy2002> mwscript-k8s job started: foreachwikiindblist sul CentralAuth:FixRenameUserLocalLogs --logwiki=metawiki --batch-size=25 # T398177 (dry run)

This is running in lucaswerkmeister-wmde’s T398177 tmux session on deploy2002. (Currently at abwiki.) Edit: the job is mw-script.codfw.mc5skdgt (in kube_env mw-script codfw), logs at kubectl logs job/mw-script.codfw.mc5skdgt mediawiki-mc5skdgt-app.

The script has only reached aswikisource so far, so it doesn’t look like I’ll be able to report its result before I’m back from {E1910}. Anyone with production SSH access can check on the progress with commands like:

K8S_CLUSTER=codfw KUBECONFIG=/etc/kubernetes/mw-script-codfw.config kubectl get job mw-script.codfw.mc5skdgt # print job status (Running/Complete/Failed)
K8S_CLUSTER=codfw KUBECONFIG=/etc/kubernetes/mw-script-codfw.config kubectl logs job/mw-script.codfw.mc5skdgt mediawiki-mc5skdgt-app # print job logs (add -f/--follow to taste)

Welp.

lucaswerkmeister-wmde@deploy2002 ~ $ K8S_CLUSTER=codfw KUBECONFIG=/etc/kubernetes/mw-script-codfw.config kubectl get job mw-script.codfw.mc5skdgt # print job status (Running/Complete/Failed)
Error from server (NotFound): jobs.batch "mw-script.codfw.mc5skdgt" not found
lucaswerkmeister-wmde@deploy2002 ~ $ K8S_CLUSTER=codfw KUBECONFIG=/etc/kubernetes/mw-script-codfw.config kubectl logs job/mw-script.codfw.mc5skdgt mediawiki-mc5skdgt-app # print job logs (add -f/--follow to taste)
Error from server (NotFound): jobs.batch "mw-script.codfw.mc5skdgt" not found
lucaswerkmeister-wmde@deploy2002 ~ $ kube_env mw-script codfw 
lucaswerkmeister-wmde@deploy2002 ~ $ kubectl get job -l username=lucaswerkmeister-wmde -L script
No resources found in mw-script namespace.

So I guess that dry run is lost to the mists of time? ~lucaswerkmeister-wmde/T398177-run5.dry has partial output, but only up to bewikibooks (and it cuts off with no error message, nor the ---- separator line that would indicate it’s done with that wiki).

I thought finished jobs were kept for a couple of weeks (enough time for me to report on it after vacation), but apparently it’s actually only one week.

So I guess that dry run is lost to the mists of time?

Not so! @Clement_Goubert pointed me to two more sources of information (IRC logs):

  • Logstash. Kubernetes Events tells us that the script died ca. 00:20:02 UTC on Friday 24 October, i.e. within half a day of starting it; unfortunately the failure reason doesn’t seem to be recorded (just a “Readiness probe failed” from the tls-proxy container followed by a BackoffLimitExceeded “Job has reached the specified backoff limit” on the whole job). And even better, App Logs (Kubernetes) has the full output! It seemingly died partway through enwiki, without a visible error.
  • Grafana. Kubernetes Pod Details shows the resource usage of the job; the app container shows some concerning memory spikes earlier, but nothing before the moment the script died. It’s possible that memory usage spiked quickly enough that it died before any increased memory usage could be reported to monitoring, but it’s hardly certain.

Suggested next course of action: try a dry run just on enwiki and see if that goes through or dies on its own as well.

Output from Logstash, with the caveats that entails (lines that were logged closely together, especially the foreachwikiindblist headers/separators, aren’t fully in the right order; there are also a handful of rsyslogd lines): P84615

Suggested next course of action: try a dry run just on enwiki and see if that goes through or dies on its own as well.

Note that this, or any other future runs, would be affected by Maintenance scripts launched with mwscript-k8s will soon migrate to PHP 8.3. (Also, just for the record, I’m not planning to do that dry run until @matmarex says so :))

Other people are also struggling with OOM errors in maintenance scripts (T395893, T404804). Since this is low priority for us, let's see if someone else can fix the problem first, and I will come back to this after that.