Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add command to reprocess playlist total scores to *old* standardised scores #136

Merged
merged 6 commits into from
Nov 9, 2023

Conversation

peppy
Copy link
Member

@peppy peppy commented Jul 11, 2023

This should not be merged without a new osu.Game release + #135.

PR is intended for review purposes. Hopefully this will only ever be run twice.

Comment on lines 77 to 114
private long ensureCorrectTotalScore(MultiplayerScore score, MultiplayerPlaylistItem playlistItem)
{
Ruleset ruleset = LegacyRulesetHelper.GetRulesetFromLegacyId(playlistItem.ruleset_id);

HitResult maxRulesetJudgement = ruleset.GetHitResults().First().result;

Dictionary<HitResult, int> statistics = JsonConvert.DeserializeObject<Dictionary<HitResult, int>>(score.statistics)!;

List<HitResult> allHits = statistics
.SelectMany(kvp => Enumerable.Repeat(kvp.Key, kvp.Value))
.ToList();

var maximumStatistics = new Dictionary<HitResult, int>();

foreach (var groupedStats in allHits
.Select(r => getMaxJudgementFor(r, maxRulesetJudgement))
.GroupBy(r => r))
{
maximumStatistics[groupedStats.Key] = groupedStats.Count();
}

APIMod[] roomMods = JsonConvert.DeserializeObject<APIMod[]>(playlistItem.required_mods)!;
APIMod[] scoreMods = JsonConvert.DeserializeObject<APIMod[]>(score.mods)!;

foreach (var m in roomMods)
Debug.Assert(scoreMods.Contains(m));

ScoreInfo scoreInfo = new ScoreInfo
{
Statistics = statistics,
MaximumStatistics = maximumStatistics,
Ruleset = ruleset.RulesetInfo,
MaxCombo = score.max_combo,
APIMods = scoreMods
};

return StandardisedScoreMigrationTools.GetOldStandardised(scoreInfo);
}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the main part I want eyes on. @smoogipoo

@peppy peppy requested a review from smoogipoo July 11, 2023 07:39
@peppy
Copy link
Member Author

peppy commented Jul 11, 2023

Sample run:

/Users/dean/Projects/osu-queue-score-statistics/osu.Server.Queues.ScorePump/bin/Debug/net6.0/osu.Server.Queues.ScorePump recalculate-playlist-scores 358750
Reprocessing score 6191970 from playlist 2708079
Score is correct
Reprocessing score 6192204 from playlist 2708079
Score is correct
Reprocessing score 6196086 from playlist 2708079
Score is correct
Reprocessing score 6197271 from playlist 2708079
Score is correct
Reprocessing score 6197311 from playlist 2708079
Score is correct
Reprocessing score 6197582 from playlist 2708079
Score is correct
Reprocessing score 6198237 from playlist 2708079
Score is correct
Reprocessing score 6198451 from playlist 2708079
Score is correct
Reprocessing score 6198490 from playlist 2708079
Score is correct
Reprocessing score 6198988 from playlist 2708079
Score is correct
Reprocessing score 6199057 from playlist 2708079
Score is correct
Reprocessing score 6199104 from playlist 2708079
Score is correct
Reprocessing score 6199350 from playlist 2708079
Score is correct
Reprocessing score 6199454 from playlist 2708079
Score is correct
Reprocessing score 6199493 from playlist 2708079
Score is correct
Reprocessing score 6199512 from playlist 2708079
Score is correct
Reprocessing score 6199643 from playlist 2708079
Score is correct
Reprocessing score 6199882 from playlist 2708079
Score is correct
Reprocessing score 6200318 from playlist 2708079
Score is correct
Reprocessing score 6200739 from playlist 2708079
Score is correct
Reprocessing score 6200775 from playlist 2708079
Score is correct
Reprocessing score 6202473 from playlist 2708079
Score is correct
Reprocessing score 6202575 from playlist 2708079
Score is correct
Reprocessing score 6204092 from playlist 2708079
Score is correct
Reprocessing score 6204284 from playlist 2708079
Score is correct
Reprocessing score 6204388 from playlist 2708079
Score is correct
Reprocessing score 6204418 from playlist 2708079
Score is correct
Reprocessing score 6204443 from playlist 2708079
Score is correct
Reprocessing score 6205889 from playlist 2708079
Score is correct
Reprocessing score 6207299 from playlist 2708079
Score is correct
Reprocessing score 6208641 from playlist 2708079
Score is correct
Reprocessing score 6208682 from playlist 2708079
Score is correct
Reprocessing score 6210146 from playlist 2708079
Score is correct
Reprocessing score 6210236 from playlist 2708079
Score is correct
Reprocessing score 6210354 from playlist 2708079
Score is correct
Reprocessing score 6210627 from playlist 2708079
Score is correct
Reprocessing score 6212333 from playlist 2708079
Score is correct
Reprocessing score 6212482 from playlist 2708079
Score is correct
Reprocessing score 6212835 from playlist 2708079
Score is correct
Reprocessing score 6214405 from playlist 2708079
Score is correct
Reprocessing score 6214949 from playlist 2708079
Score is correct
Reprocessing score 6215019 from playlist 2708079
Score is correct
Reprocessing score 6215554 from playlist 2708079
Score is correct
Reprocessing score 6215958 from playlist 2708079
Score is correct
Reprocessing score 6216453 from playlist 2708079
Score is correct
Reprocessing score 6217108 from playlist 2708079
Score is correct
Reprocessing score 6217384 from playlist 2708079
Score is correct
Reprocessing score 6217556 from playlist 2708079
Score is correct
Reprocessing score 6217654 from playlist 2708079
Score is correct
Reprocessing score 6217701 from playlist 2708079
Score is correct
Reprocessing score 6219038 from playlist 2708079
Score is correct
Reprocessing score 6219213 from playlist 2708079
Score is correct
Reprocessing score 6219382 from playlist 2708079
Score is correct
Reprocessing score 6219722 from playlist 2708079
Score is correct
Reprocessing score 6220502 from playlist 2708079
Score is correct
Reprocessing score 6223414 from playlist 2708079
Score is correct
Reprocessing score 6223579 from playlist 2708079
Score is correct
Reprocessing score 6224539 from playlist 2708079
Score is correct
Reprocessing score 6224696 from playlist 2708079
Score is correct
Reprocessing score 6224733 from playlist 2708079
Score is correct
Reprocessing score 6224867 from playlist 2708079
Score is correct
Reprocessing score 6225150 from playlist 2708079
Score requires update (883912 -> 988283)
Reprocessing score 6225381 from playlist 2708079
Score requires update (401318 -> 547914)
Reprocessing score 6225967 from playlist 2708079
Score requires update (88591 -> 383577)
Reprocessing score 6226668 from playlist 2708079
Score requires update (419781 -> 681262)
Reprocessing score 6226674 from playlist 2708079
Score requires update (268521 -> 580480)
Reprocessing score 6227029 from playlist 2708079
Score requires update (186292 -> 481965)
Reprocessing score 6227406 from playlist 2708079
Score requires update (442312 -> 634354)
Reprocessing score 6229366 from playlist 2708079
Score requires update (970118 -> 997481)
Reprocessing score 6229629 from playlist 2708079
Score requires update (939515 -> 994555)
Reprocessing score 6229659 from playlist 2708079
Score requires update (778954 -> 941653)
Reprocessing score 6229829 from playlist 2708079
Score requires update (659227 -> 873277)
Reprocessing score 6229959 from playlist 2708079
Score requires update (1002160 -> 1087014)
Reprocessing score 6230002 from playlist 2708079
Score requires update (1039969 -> 1097432)
Reprocessing score 6230084 from playlist 2708079
Score requires update (903642 -> 1021374)
Reprocessing score 6230379 from playlist 2708079
Score is correct
Reprocessing score 6231881 from playlist 2708079
Score requires update (63269 -> 316669)
Reprocessing score 6233550 from playlist 2708079
Score requires update (987199 -> 1092735)
Reprocessing score 6234057 from playlist 2708079
Score is correct
Reprocessing score 6235837 from playlist 2708079
Score requires update (976329 -> 997911)
Reprocessing score 6235946 from playlist 2708079
Score requires update (105424 -> 376656)
Reprocessing score 6239870 from playlist 2708079
Score requires update (1027400 -> 1057373)
Reprocessing score 6242572 from playlist 2708079
Score requires update (595207 -> 786733)
Reprocessing score 6243906 from playlist 2708079
Score requires update (294553 -> 520206)
Reprocessing score 6243960 from playlist 2708079
Score requires update (471387 -> 658105)
Reprocessing score 6244766 from playlist 2708079
Score requires update (411245 -> 687575)
Reprocessing score 6244933 from playlist 2708079
Score requires update (557415 -> 738069)
Reprocessing score 6245435 from playlist 2708079
Score is correct
Reprocessing score 6245762 from playlist 2708079
Score requires update (128563 -> 444379)
Reprocessing score 6247393 from playlist 2708079
Score requires update (160867 -> 412755)
Reprocessing score 6248329 from playlist 2708079
Score requires update (975094 -> 1034397)
Reprocessing score 6249981 from playlist 2708079
Score requires update (185273 -> 399167)
Reprocessing score 6250951 from playlist 2708079
Score requires update (77259 -> 333577)
Reprocessing score 6251338 from playlist 2708079
Score requires update (269018 -> 531008)
Reprocessing score 6251368 from playlist 2708079
Score requires update (394267 -> 586385)
Reprocessing score 6253360 from playlist 2708079
Score is correct
Reprocessing score 6254854 from playlist 2708079
Score is correct
Reprocessing score 6256156 from playlist 2708079
Score requires update (237382 -> 499151)
Reprocessing score 6258091 from playlist 2708079
Score requires update (1019612 -> 1056526)
Reprocessing score 6258448 from playlist 2708079
Score requires update (223919 -> 505693)
Reprocessing score 6261536 from playlist 2708079
Score requires update (452190 -> 626929)
Reprocessing score 6262005 from playlist 2708079
Score requires update (760753 -> 974211)
Reprocessing score 6262036 from playlist 2708079
Score requires update (518032 -> 692195)
Reprocessing score 6264481 from playlist 2708079
Score requires update (112648 -> 365329)
Reprocessing score 6266518 from playlist 2708079
Score requires update (856482 -> 1047513)
Reprocessing score 6266650 from playlist 2708079
Score requires update (998815 -> 1111632)
Reprocessing score 6267889 from playlist 2708079
Score requires update (845655 -> 948624)
Reprocessing score 6267943 from playlist 2708079
Score requires update (1054270 -> 1059566)
Reprocessing score 6271261 from playlist 2708079
Score is correct
Reprocessing score 6272948 from playlist 2708079
Score requires update (802 -> 8666)
Reprocessing score 6272969 from playlist 2708079
Score requires update (517 -> 7167)
Reprocessing score 6275176 from playlist 2708079
Score requires update (493432 -> 595876)
Reprocessing score 6275216 from playlist 2708079
Score requires update (926504 -> 993855)
Reprocessing score 6285444 from playlist 2708079
Score requires update (505511 -> 623889)
Reprocessing score 6285523 from playlist 2708079
Score requires update (82494 -> 350801)
Reprocessing score 6291546 from playlist 2708079
Score requires update (367281 -> 581259)
Reprocessing score 6292015 from playlist 2708079
Score requires update (79414 -> 346799)
Reprocessing score 6293947 from playlist 2708079
Score requires update (551082 -> 665762)
Reprocessing score 6296298 from playlist 2708079
Score requires update (227731 -> 541341)
Reprocessing score 6296302 from playlist 2708079
Score requires update (366668 -> 591525)
Reprocessing score 6297818 from playlist 2708079
Score requires update (942638 -> 994654)
Reprocessing score 6298617 from playlist 2708079
Score requires update (149085 -> 477456)
Reprocessing score 6302224 from playlist 2708079
Score requires update (512403 -> 790189)
Reprocessing score 6307213 from playlist 2708079
Score requires update (121221 -> 357470)
Reprocessing score 6308123 from playlist 2708079
Score requires update (895519 -> 1118466)
Reprocessing score 6308136 from playlist 2708079
Score requires update (1020098 -> 1133301)
Reprocessing score 6310803 from playlist 2708079
Score requires update (274570 -> 512880)
Reprocessing score 6312231 from playlist 2708079
Score requires update (292561 -> 563709)
Reprocessing score 6315579 from playlist 2708079
Score requires update (53209 -> 314265)
Reprocessing score 6317674 from playlist 2708079
Score requires update (206712 -> 417960)
Reprocessing score 6319013 from playlist 2708079
Score requires update (696428 -> 810657)
Reprocessing score 6319098 from playlist 2708079
Score requires update (786417 -> 992304)
Reprocessing score 6319120 from playlist 2708079
Score requires update (1066892 -> 1176865)
Reprocessing score 6319746 from playlist 2708079
Score requires update (1110938 -> 1181192)
Reprocessing score 6323966 from playlist 2708079
Score requires update (172570 -> 392939)
Reprocessing score 6326748 from playlist 2708079
Score requires update (943369 -> 1049556)
Reprocessing score 6336019 from playlist 2708079
Score requires update (738584 -> 877913)
Reprocessing score 6341665 from playlist 2708079
Score requires update (609893 -> 644961)
Reprocessing score 6341688 from playlist 2708079
Score requires update (788890 -> 930608)
Reprocessing score 6341708 from playlist 2708079
Score requires update (1042369 -> 1058632)
Reprocessing score 6342365 from playlist 2708079
Score requires update (1041599 -> 1097245)
Reprocessing score 6344930 from playlist 2708079
Score requires update (63864 -> 285194)
Reprocessing score 6345148 from playlist 2708079
Score requires update (153042 -> 379429)
Reprocessing score 6349179 from playlist 2708079
Score requires update (147024 -> 462653)
Reprocessing score 6350647 from playlist 2708079
Score requires update (11450 -> 100404)
Reprocessing score 6356824 from playlist 2708079
Score requires update (805864 -> 980234)
Reprocessing score 6361302 from playlist 2708079
Score requires update (416173 -> 628119)
Reprocessing score 6361687 from playlist 2708079
Score requires update (108460 -> 361569)
Reprocessing score 6363631 from playlist 2708079
Score requires update (505747 -> 576017)
Reprocessing score 6364783 from playlist 2708079
Score requires update (995909 -> 1054333)
Reprocessing score 6365933 from playlist 2708079
Score requires update (379075 -> 554192)
Reprocessing score 6366271 from playlist 2708079
Score requires update (237229 -> 465850)
Reprocessing score 6366568 from playlist 2708079
Score requires update (688193 -> 858390)
Reprocessing score 6366606 from playlist 2708079
Score requires update (841983 -> 1018178)
Reprocessing score 6368105 from playlist 2708079
Score requires update (462944 -> 679897)
Reprocessing score 6368106 from playlist 2708079
Score requires update (92043 -> 350099)
Reprocessing score 6368753 from playlist 2708079
Score requires update (103955 -> 407714)
Reprocessing score 6369684 from playlist 2708079
Score requires update (1007666 -> 1112967)
Reprocessing score 6372462 from playlist 2708079
Score requires update (922357 -> 1028713)
Reprocessing score 6372558 from playlist 2708079
Score requires update (917978 -> 1028901)
Reprocessing score 6372625 from playlist 2708079
Score requires update (901388 -> 1042672)
Reprocessing score 6372748 from playlist 2708079
Score requires update (1003231 -> 1055431)
Reprocessing score 6372898 from playlist 2708079
Score requires update (1029467 -> 1076956)
Reprocessing score 6373079 from playlist 2708079
Score requires update (1029701 -> 1076998)
Reprocessing score 6374598 from playlist 2708079
Score requires update (698357 -> 847749)
Reprocessing score 6374672 from playlist 2708079
Score requires update (1034891 -> 1096821)
Reprocessing score 6375002 from playlist 2708079
Score requires update (899328 -> 1017885)
Reprocessing score 6375035 from playlist 2708079
Score requires update (1026723 -> 1056939)
Reprocessing score 6379090 from playlist 2708079
Score requires update (52719 -> 281929)
Reprocessing score 6380378 from playlist 2708079
Score requires update (755773 -> 896206)
Reprocessing score 6380414 from playlist 2708079
Score requires update (1081521 -> 1139381)
Reprocessing score 6382275 from playlist 2708079
Score requires update (786545 -> 953571)
Reprocessing score 6382454 from playlist 2708079
Score requires update (269666 -> 454842)
Reprocessing score 6382476 from playlist 2708079
Score requires update (275064 -> 585051)
Reprocessing score 6383668 from playlist 2708079
Score requires update (158491 -> 392182)
Reprocessing score 6387602 from playlist 2708079
Score requires update (274331 -> 607232)
Reprocessing score 6389305 from playlist 2708079
Score requires update (852019 -> 986583)
Reprocessing score 6390307 from playlist 2708079
Score requires update (411130 -> 739507)
Reprocessing score 6396169 from playlist 2708079
Score requires update (851472 -> 985989)
Reprocessing score 6400931 from playlist 2708079
Score requires update (257830 -> 420687)
Reprocessing score 6409809 from playlist 2708079
Score requires update (108944 -> 337628)
Reprocessing score 6410871 from playlist 2708079
Score requires update (233238 -> 397968)
Reprocessing score 6413164 from playlist 2708079
Score requires update (1763 -> 21782)
Reprocessing score 6413895 from playlist 2708079
Score requires update (361096 -> 556348)
Reprocessing score 6417659 from playlist 2708079
Score requires update (685665 -> 912175)
Reprocessing score 6419864 from playlist 2708079
Score requires update (382836 -> 625311)
Reprocessing score 6424596 from playlist 2708079
Score requires update (165025 -> 414496)
Reprocessing score 6430724 from playlist 2708079
Score requires update (197247 -> 454003)
Reprocessing score 6433586 from playlist 2708079
Score requires update (171523 -> 468757)
Reprocessing score 6443532 from playlist 2708079
Score requires update (218190 -> 481065)
Reprocessing score 6446199 from playlist 2708079
Score requires update (931574 -> 994478)
Reprocessing score 6459924 from playlist 2708079
Score requires update (545408 -> 808415)
Reprocessing score 6461247 from playlist 2708079
Score requires update (160431 -> 450500)
Reprocessing score 6462123 from playlist 2708079
Score requires update (192216 -> 500665)
Reprocessing score 6469267 from playlist 2708079
Score requires update (897178 -> 1044606)
Reprocessing score 6470953 from playlist 2708079
Score requires update (820904 -> 936356)
Reprocessing score 6471090 from playlist 2708079
Score requires update (354537 -> 601308)
Reprocessing score 6474163 from playlist 2708079
Score requires update (540477 -> 854938)
Reprocessing score 6477320 from playlist 2708079
Score requires update (628127 -> 844478)
Reprocessing score 6480157 from playlist 2708079
Score requires update (208178 -> 419729)
Reprocessing score 6482401 from playlist 2708079
Score requires update (725843 -> 967165)
Reprocessing score 6482708 from playlist 2708079
Score requires update (898762 -> 991049)
Reprocessing score 6483584 from playlist 2708079
Score requires update (201328 -> 403061)
Reprocessing score 6484022 from playlist 2708079
Score requires update (137827 -> 399528)
Reprocessing score 6485326 from playlist 2708079
Score requires update (1005241 -> 1089935)
Reprocessing score 6485392 from playlist 2708079
Score requires update (1053986 -> 1098158)
Reprocessing score 6485416 from playlist 2708079
Score requires update (1056907 -> 1094644)
Reprocessing score 6485500 from playlist 2708079
Score requires update (1074909 -> 1100258)
Reprocessing score 6485501 from playlist 2708079
Score requires update (128290 -> 472398)
Reprocessing score 6488625 from playlist 2708079
Score requires update (349850 -> 539719)
Reprocessing score 6491182 from playlist 2708079
Score requires update (835005 -> 974732)
Reprocessing score 6494915 from playlist 2708079
Score requires update (127042 -> 429583)
Reprocessing score 6495056 from playlist 2708079
Score requires update (232618 -> 516249)
Reprocessing score 6495422 from playlist 2708079
Score requires update (154086 -> 398549)
Reprocessing score 6498099 from playlist 2708079
Score requires update (227815 -> 596325)
Reprocessing score 6498143 from playlist 2708079
Score requires update (334380 -> 595140)
Reprocessing score 6498196 from playlist 2708079
Score requires update (932762 -> 1048354)
Reprocessing score 6500066 from playlist 2708079
Score requires update (124930 -> 382286)
Reprocessing score 6501144 from playlist 2708079
Score requires update (830 -> 9238)
Reprocessing score 6504898 from playlist 2708079
Score requires update (530281 -> 739298)
Reprocessing score 6511076 from playlist 2708079
Score requires update (88847 -> 334199)
Reprocessing score 6516993 from playlist 2708079
Score requires update (87232 -> 369360)
Reprocessing score 6518513 from playlist 2708079
Score requires update (627462 -> 848570)
Reprocessing score 6520053 from playlist 2708079
Score requires update (605909 -> 706235)
Reprocessing score 6190937 from playlist 2708080
Score is correct
Reprocessing score 6192005 from playlist 2708080
Score is correct
Reprocessing score 6193360 from playlist 2708080
Score is correct
Reprocessing score 6193899 from playlist 2708080
Score is correct
Reprocessing score 6196171 from playlist 2708080
Score is correct
Reprocessing score 6197374 from playlist 2708080
Score is correct
Reprocessing score 6197599 from playlist 2708080
Score is correct
Reprocessing score 6197669 from playlist 2708080
Score is correct
Reprocessing score 6198072 from playlist 2708080
Score is correct
Reprocessing score 6198281 from playlist 2708080
Score is correct
Reprocessing score 6198529 from playlist 2708080
Score is correct
Reprocessing score 6198724 from playlist 2708080
Score is correct
Reprocessing score 6199043 from playlist 2708080
Score is correct
Reprocessing score 6199559 from playlist 2708080
Score is correct
Reprocessing score 6199692 from playlist 2708080
Score is correct
Reprocessing score 6199748 from playlist 2708080
Score is correct
Reprocessing score 6200039 from playlist 2708080
Score is correct
Reprocessing score 6200374 from playlist 2708080
Score is correct
Reprocessing score 6200677 from playlist 2708080
Score is correct
Reprocessing score 6200920 from playlist 2708080
Score is correct
Reprocessing score 6201018 from playlist 2708080
Score is correct
Reprocessing score 6201275 from playlist 2708080
Score is correct
Reprocessing score 6202758 from playlist 2708080
Score is correct
Reprocessing score 6202848 from playlist 2708080
Score is correct
Reprocessing score 6204133 from playlist 2708080
Score is correct
Reprocessing score 6204319 from playlist 2708080
Score is correct
Reprocessing score 6204494 from playlist 2708080
Score is correct
Reprocessing score 6204894 from playlist 2708080
Score is correct
Reprocessing score 6204982 from playlist 2708080
Score is correct
Reprocessing score 6205788 from playlist 2708080
Score is correct
Reprocessing score 6206130 from playlist 2708080
Score is correct
Reprocessing score 6207336 from playlist 2708080
Score is correct
Reprocessing score 6208767 from playlist 2708080
Score is correct
Reprocessing score 6209054 from playlist 2708080
Score is correct
Reprocessing score 6210297 from playlist 2708080
Score is correct
Reprocessing score 6210692 from playlist 2708080
Score is correct
Reprocessing score 6212889 from playlist 2708080
Score is correct
Reprocessing score 6213566 from playlist 2708080
Score is correct
Reprocessing score 6213910 from playlist 2708080
Score is correct
Reprocessing score 6215270 from playlist 2708080
Score is correct
Reprocessing score 6216077 from playlist 2708080
Score is correct
Reprocessing score 6216539 from playlist 2708080
Score is correct
Reprocessing score 6216803 from playlist 2708080
Score is correct
Reprocessing score 6217170 from playlist 2708080
Score is correct
Reprocessing score 6219096 from playlist 2708080
Score is correct
Reprocessing score 6219619 from playlist 2708080
Score is correct
Reprocessing score 6220524 from playlist 2708080
Score is correct
Reprocessing score 6224501 from playlist 2708080
Score is correct
Reprocessing score 6224780 from playlist 2708080
Score is correct
Reprocessing score 6224994 from playlist 2708080
Score is correct
Reprocessing score 6225272 from playlist 2708080
Score requires update (493585 -> 548824)
Reprocessing score 6225307 from playlist 2708080
Score requires update (996968 -> 999725)
Reprocessing score 6225418 from playlist 2708080
Score requires update (428238 -> 546478)
Reprocessing score 6225603 from playlist 2708080
Score requires update (389111 -> 583557)
Reprocessing score 6227564 from playlist 2708080
Score requires update (107292 -> 366128)
Reprocessing score 6228592 from playlist 2708080
Score requires update (94974 -> 324105)
Reprocessing score 6229707 from playlist 2708080
Score requires update (419645 -> 584087)
Reprocessing score 6230177 from playlist 2708080
Score requires update (397409 -> 508025)
Reprocessing score 6230275 from playlist 2708080
Score requires update (547162 -> 626374)
Reprocessing score 6230405 from playlist 2708080
Score requires update (606481 -> 798605)
Reprocessing score 6231553 from playlist 2708080
Score requires update (750358 -> 849823)
Reprocessing score 6231930 from playlist 2708080
Score requires update (27414 -> 241230)
Reprocessing score 6232697 from playlist 2708080
Score requires update (1035020 -> 1058058)
Reprocessing score 6235876 from playlist 2708080
Score requires update (519118 -> 713841)
Reprocessing score 6242474 from playlist 2708080
Score requires update (1034661 -> 1136085)
Reprocessing score 6242802 from playlist 2708080
Score requires update (304376 -> 484078)
Reprocessing score 6244139 from playlist 2708080
Score requires update (313777 -> 553643)
Reprocessing score 6245563 from playlist 2708080
Score requires update (290467 -> 499216)
Reprocessing score 6245807 from playlist 2708080
Score requires update (90376 -> 350895)
Reprocessing score 6247436 from playlist 2708080
Score requires update (157518 -> 367997)
Reprocessing score 6248300 from playlist 2708080
Score requires update (475882 -> 525273)
Reprocessing score 6251208 from playlist 2708080
Score requires update (539246 -> 784951)
Reprocessing score 6258475 from playlist 2708080
Score requires update (54233 -> 291208)
Reprocessing score 6261551 from playlist 2708080
Score requires update (375983 -> 555450)
Reprocessing score 6262063 from playlist 2708080
Score requires update (271904 -> 435166)
Reprocessing score 6264533 from playlist 2708080
Score requires update (23493 -> 227613)
Reprocessing score 6265794 from playlist 2708080
Score requires update (802265 -> 903155)
Reprocessing score 6265885 from playlist 2708080
Score requires update (1105973 -> 1122127)
Reprocessing score 6268362 from playlist 2708080
Score requires update (958687 -> 978859)
Reprocessing score 6271277 from playlist 2708080
Score is correct
Reprocessing score 6272995 from playlist 2708080
Score requires update (290 -> 4576)
Reprocessing score 6275248 from playlist 2708080
Score requires update (367990 -> 583978)
Reprocessing score 6285458 from playlist 2708080
Score requires update (246843 -> 446462)
Reprocessing score 6294003 from playlist 2708080
Score requires update (398978 -> 536516)
Reprocessing score 6296353 from playlist 2708080
Score requires update (74536 -> 307801)
Reprocessing score 6297837 from playlist 2708080
Score requires update (949347 -> 995531)
Reprocessing score 6302302 from playlist 2708080
Score requires update (284938 -> 499126)
Reprocessing score 6308075 from playlist 2708080
Score requires update (444253 -> 575503)
Reprocessing score 6308180 from playlist 2708080
Score requires update (730594 -> 907711)
Reprocessing score 6308215 from playlist 2708080
Score requires update (791056 -> 917838)
Reprocessing score 6308248 from playlist 2708080
Score requires update (983938 -> 1066643)
Reprocessing score 6308482 from playlist 2708080
Score requires update (971114 -> 1060914)
Reprocessing score 6308522 from playlist 2708080
Score requires update (998263 -> 1072970)
Reprocessing score 6312245 from playlist 2708080
Score requires update (94467 -> 333323)
Reprocessing score 6317614 from playlist 2708080
Score requires update (87203 -> 304456)
Reprocessing score 6319144 from playlist 2708080
Score requires update (773702 -> 922694)
Reprocessing score 6319161 from playlist 2708080
Score requires update (1056441 -> 1114613)
Reprocessing score 6319897 from playlist 2708080
Score requires update (1114049 -> 1122742)
Reprocessing score 6336918 from playlist 2708080
Score requires update (144913 -> 364860)
Reprocessing score 6341743 from playlist 2708080
Score requires update (443562 -> 602352)
Reprocessing score 6341774 from playlist 2708080
Score requires update (448014 -> 526816)
Reprocessing score 6341801 from playlist 2708080
Score requires update (997663 -> 1054707)
Reprocessing score 6350671 from playlist 2708080
Score requires update (3156 -> 48609)
Reprocessing score 6356873 from playlist 2708080
Score requires update (335831 -> 554998)
Reprocessing score 6364817 from playlist 2708080
Score requires update (406818 -> 505106)
Reprocessing score 6365964 from playlist 2708080
Score requires update (351062 -> 517889)
Reprocessing score 6366305 from playlist 2708080
Score requires update (555811 -> 762817)
Reprocessing score 6366648 from playlist 2708080
Score requires update (215369 -> 391733)
Reprocessing score 6368155 from playlist 2708080
Score requires update (253487 -> 454085)
Reprocessing score 6372438 from playlist 2708080
Score requires update (486855 -> 657736)
Reprocessing score 6372494 from playlist 2708080
Score requires update (555490 -> 786686)
Reprocessing score 6375064 from playlist 2708080
Score requires update (745039 -> 924584)
Reprocessing score 6375095 from playlist 2708080
Score requires update (714736 -> 889085)
Reprocessing score 6379139 from playlist 2708080
Score requires update (50323 -> 289691)
Reprocessing score 6380198 from playlist 2708080
Score requires update (1089598 -> 1120670)
Reprocessing score 6382309 from playlist 2708080
Score requires update (450389 -> 676254)
Reprocessing score 6382573 from playlist 2708080
Score requires update (524485 -> 679026)
Reprocessing score 6383994 from playlist 2708080
Score requires update (480929 -> 551523)
Reprocessing score 6384030 from playlist 2708080
Score requires update (1014680 -> 1056467)
Reprocessing score 6384094 from playlist 2708080
Score requires update (838317 -> 941408)
Reprocessing score 6384162 from playlist 2708080
Score requires update (962796 -> 1030875)
Reprocessing score 6384305 from playlist 2708080
Score requires update (1025152 -> 1057290)
Reprocessing score 6384776 from playlist 2708080
Score requires update (839503 -> 963778)
Reprocessing score 6384825 from playlist 2708080
Score requires update (1092158 -> 1121027)
Reprocessing score 6384899 from playlist 2708080
Score requires update (1094293 -> 1121313)
Reprocessing score 6385055 from playlist 2708080
Score requires update (1116036 -> 1123028)
Reprocessing score 6390348 from playlist 2708080
Score requires update (165484 -> 459513)
Reprocessing score 6395521 from playlist 2708080
Score requires update (402909 -> 525235)
Reprocessing score 6396241 from playlist 2708080
Score requires update (641850 -> 796662)
Reprocessing score 6407454 from playlist 2708080
Score requires update (248995 -> 451185)
Reprocessing score 6407490 from playlist 2708080
Score requires update (294748 -> 528577)
Reprocessing score 6413917 from playlist 2708080
Score requires update (171584 -> 361831)
Reprocessing score 6424614 from playlist 2708080
Score requires update (115256 -> 385388)
Reprocessing score 6433185 from playlist 2708080
Score requires update (109543 -> 383894)
Reprocessing score 6443560 from playlist 2708080
Score requires update (30761 -> 270848)
Reprocessing score 6454707 from playlist 2708080
Score requires update (71703 -> 313781)
Reprocessing score 6457792 from playlist 2708080
Score requires update (361322 -> 458904)
Reprocessing score 6459934 from playlist 2708080
Score requires update (413566 -> 656444)
Reprocessing score 6461277 from playlist 2708080
Score requires update (114988 -> 371602)
Reprocessing score 6471128 from playlist 2708080
Score requires update (245031 -> 382239)
Reprocessing score 6477388 from playlist 2708080
Score requires update (224174 -> 372727)
Reprocessing score 6480580 from playlist 2708080
Score requires update (113542 -> 371952)
Reprocessing score 6480637 from playlist 2708080
Score requires update (277095 -> 483783)
Reprocessing score 6482432 from playlist 2708080
Score requires update (326070 -> 593947)
Reprocessing score 6483600 from playlist 2708080
Score requires update (125906 -> 365906)
Reprocessing score 6488677 from playlist 2708080
Score requires update (198235 -> 360266)
Reprocessing score 6490355 from playlist 2708080
Score requires update (1089149 -> 1111126)
Reprocessing score 6490426 from playlist 2708080
Score requires update (1095966 -> 1121244)
Reprocessing score 6494932 from playlist 2708080
Score requires update (33240 -> 245706)
Reprocessing score 6495083 from playlist 2708080
Score requires update (61339 -> 294062)
Reprocessing score 6495131 from playlist 2708080
Score requires update (47052 -> 296096)
Reprocessing score 6495460 from playlist 2708080
Score requires update (157495 -> 395267)
Reprocessing score 6497991 from playlist 2708080
Score requires update (307208 -> 496808)
Reprocessing score 6498050 from playlist 2708080
Score requires update (262533 -> 417291)
Reprocessing score 6500956 from playlist 2708080
Score requires update (649893 -> 717273)
Reprocessing score 6500981 from playlist 2708080
Score requires update (1031206 -> 1077335)
Reprocessing score 6501311 from playlist 2708080
Score requires update (651785 -> 838575)
Reprocessing score 6501476 from playlist 2708080
Score requires update (612600 -> 768110)
Reprocessing score 6504879 from playlist 2708080
Score requires update (466431 -> 583315)
Reprocessing score 6507865 from playlist 2708080
Score requires update (432994 -> 542942)
Reprocessing score 6507965 from playlist 2708080
Score requires update (869956 -> 981967)
Reprocessing score 6508515 from playlist 2708080
Score requires update (579942 -> 748711)
Reprocessing score 6508607 from playlist 2708080
Score requires update (730551 -> 880329)
Reprocessing score 6517013 from playlist 2708080
Score requires update (75104 -> 373296)
Reprocessing score 6518534 from playlist 2708080
Score requires update (444773 -> 610027)
Reprocessing score 6518692 from playlist 2708080
Score requires update (677648 -> 769734)
Reprocessing score 6519835 from playlist 2708080
Score requires update (488504 -> 508617)
Reprocessing score 6192044 from playlist 2708081
Score is correct
Reprocessing score 6192441 from playlist 2708081
Score is correct
Reprocessing score 6193397 from playlist 2708081
Score is correct
Reprocessing score 6197378 from playlist 2708081
Score is correct
Reprocessing score 6197440 from playlist 2708081
Score is correct
Reprocessing score 6197819 from playlist 2708081
Score is correct
Reprocessing score 6198341 from playlist 2708081
Score is correct
Reprocessing score 6198580 from playlist 2708081
Score is correct
Reprocessing score 6198783 from playlist 2708081
Score is correct
Reprocessing score 6200427 from playlist 2708081
Score is correct
Reprocessing score 6201166 from playlist 2708081
Score is correct
Reprocessing score 6201383 from playlist 2708081
Score is correct
Reprocessing score 6202915 from playlist 2708081
Score is correct
Reprocessing score 6203000 from playlist 2708081
Score is correct
Reprocessing score 6203485 from playlist 2708081
Score is correct
Reprocessing score 6204167 from playlist 2708081
Score is correct
Reprocessing score 6204339 from playlist 2708081
Score is correct
Reprocessing score 6204647 from playlist 2708081
Score is correct
Reprocessing score 6204889 from playlist 2708081
Score is correct
Reprocessing score 6205180 from playlist 2708081
Score is correct
Reprocessing score 6205991 from playlist 2708081
Score is correct
Reprocessing score 6207387 from playlist 2708081
Score is correct
Reprocessing score 6208808 from playlist 2708081
Score is correct
Reprocessing score 6209018 from playlist 2708081
Score is correct
Reprocessing score 6210370 from playlist 2708081
Score is correct
Reprocessing score 6210553 from playlist 2708081
Score is correct
Reprocessing score 6210584 from playlist 2708081
Score is correct
Reprocessing score 6213311 from playlist 2708081
Score is correct
Reprocessing score 6213973 from playlist 2708081
Score is correct
Reprocessing score 6215496 from playlist 2708081
Score is correct
Reprocessing score 6216201 from playlist 2708081
Score is correct
Reprocessing score 6216606 from playlist 2708081
Score is correct
Reprocessing score 6216728 from playlist 2708081
Score is correct
Reprocessing score 6217265 from playlist 2708081
Score is correct
Reprocessing score 6217754 from playlist 2708081
Score is correct
Reprocessing score 6217811 from playlist 2708081
Score is correct
Reprocessing score 6217968 from playlist 2708081
Score is correct
Reprocessing score 6218062 from playlist 2708081
Score is correct
Reprocessing score 6219178 from playlist 2708081
Score is correct
Reprocessing score 6219449 from playlist 2708081
Score is correct
Reprocessing score 6219480 from playlist 2708081
Score is correct
Reprocessing score 6219965 from playlist 2708081
Score is correct
Reprocessing score 6220040 from playlist 2708081
Score is correct
Reprocessing score 6220058 from playlist 2708081
Score is correct
Reprocessing score 6220081 from playlist 2708081
Score is correct
Reprocessing score 6220858 from playlist 2708081
Score is correct
Reprocessing score 6223863 from playlist 2708081
Score is correct
Reprocessing score 6223928 from playlist 2708081
Score is correct
Reprocessing score 6224477 from playlist 2708081
Score is correct
Reprocessing score 6225380 from playlist 2708081
Score requires update (336098 -> 657594)
Reprocessing score 6225395 from playlist 2708081
Score requires update (442355 -> 600975)
Reprocessing score 6225421 from playlist 2708081
Score requires update (523363 -> 690056)
Reprocessing score 6225463 from playlist 2708081
Score requires update (216673 -> 463202)
Reprocessing score 6225587 from playlist 2708081
Score requires update (920689 -> 994615)
Reprocessing score 6225632 from playlist 2708081
Score requires update (74935 -> 416570)
Reprocessing score 6226707 from playlist 2708081
Score requires update (46535 -> 281411)
Reprocessing score 6226766 from playlist 2708081
Score requires update (71736 -> 321186)
Reprocessing score 6226794 from playlist 2708081
Score requires update (76865 -> 351425)
Reprocessing score 6232495 from playlist 2708081
Score requires update (928776 -> 993998)
Reprocessing score 6235901 from playlist 2708081
Score requires update (160381 -> 456994)
Reprocessing score 6244222 from playlist 2708081
Score requires update (196026 -> 550509)
Reprocessing score 6244286 from playlist 2708081
Score requires update (286794 -> 581605)
Reprocessing score 6244389 from playlist 2708081
Score requires update (234867 -> 538389)
Reprocessing score 6244496 from playlist 2708081
Score requires update (443019 -> 840381)
Reprocessing score 6244523 from playlist 2708081
Score requires update (438399 -> 831860)
Reprocessing score 6244816 from playlist 2708081
Score requires update (116415 -> 369909)
Reprocessing score 6244873 from playlist 2708081
Score requires update (257925 -> 546847)
Reprocessing score 6245619 from playlist 2708081
Score requires update (95152 -> 360477)
Reprocessing score 6245646 from playlist 2708081
Score requires update (160332 -> 465731)
Reprocessing score 6245843 from playlist 2708081
Score requires update (38535 -> 267845)
Reprocessing score 6247467 from playlist 2708081
Score requires update (43751 -> 276084)
Reprocessing score 6248289 from playlist 2708081
Score requires update (329076 -> 546118)
Reprocessing score 6250402 from playlist 2708081
Score requires update (43767 -> 277910)
Reprocessing score 6258500 from playlist 2708081
Score requires update (50715 -> 306566)
Reprocessing score 6261562 from playlist 2708081
Score requires update (155675 -> 371569)
Reprocessing score 6266080 from playlist 2708081
Score requires update (502814 -> 700523)
Reprocessing score 6266140 from playlist 2708081
Score requires update (625006 -> 854043)
Reprocessing score 6271298 from playlist 2708081
Score is correct
Reprocessing score 6275289 from playlist 2708081
Score requires update (146060 -> 389527)
Reprocessing score 6285475 from playlist 2708081
Score requires update (170478 -> 399418)
Reprocessing score 6296389 from playlist 2708081
Score requires update (40742 -> 263430)
Reprocessing score 6297872 from playlist 2708081
Score requires update (198469 -> 450967)
Reprocessing score 6298005 from playlist 2708081
Score requires update (489962 -> 694785)
Reprocessing score 6298077 from playlist 2708081
Score requires update (627932 -> 805725)
Reprocessing score 6308292 from playlist 2708081
Score requires update (840253 -> 1092609)
Reprocessing score 6308403 from playlist 2708081
Score requires update (967582 -> 1035285)
Reprocessing score 6308784 from playlist 2708081
Score requires update (827545 -> 983773)
Reprocessing score 6308871 from playlist 2708081
Score requires update (862899 -> 988082)
Reprocessing score 6319215 from playlist 2708081
Score requires update (377240 -> 548725)
Reprocessing score 6319264 from playlist 2708081
Score requires update (390173 -> 551466)
Reprocessing score 6319304 from playlist 2708081
Score requires update (424591 -> 638173)
Reprocessing score 6319322 from playlist 2708081
Score requires update (854860 -> 1009909)
Reprocessing score 6319374 from playlist 2708081
Score requires update (686586 -> 908107)
Reprocessing score 6319400 from playlist 2708081
Score requires update (925671 -> 1073433)
Reprocessing score 6319966 from playlist 2708081
Score requires update (973018 -> 1107723)
Reprocessing score 6327076 from playlist 2708081
Score requires update (749112 -> 988858)
Reprocessing score 6327128 from playlist 2708081
Score requires update (481846 -> 686522)
Reprocessing score 6327151 from playlist 2708081
Score requires update (565649 -> 829927)
Reprocessing score 6327173 from playlist 2708081
Score requires update (676937 -> 906281)
Reprocessing score 6327917 from playlist 2708081
Score requires update (457323 -> 777220)
Reprocessing score 6341837 from playlist 2708081
Score requires update (139570 -> 426069)
Reprocessing score 6341876 from playlist 2708081
Score requires update (188745 -> 463893)
Reprocessing score 6341899 from playlist 2708081
Score requires update (454862 -> 495984)
Reprocessing score 6342173 from playlist 2708081
Score requires update (512797 -> 520219)
Reprocessing score 6350695 from playlist 2708081
Score requires update (6151 -> 70040)
Reprocessing score 6358759 from playlist 2708081
Score requires update (119030 -> 428791)
Reprocessing score 6358916 from playlist 2708081
Score requires update (100508 -> 388291)
Reprocessing score 6366001 from playlist 2708081
Score requires update (174699 -> 463021)
Reprocessing score 6366363 from playlist 2708081
Score requires update (50694 -> 278751)
Reprocessing score 6366374 from playlist 2708081
Score requires update (155975 -> 405128)
Reprocessing score 6366693 from playlist 2708081
Score requires update (206430 -> 441301)
Reprocessing score 6368212 from playlist 2708081
Score requires update (136193 -> 366890)
Reprocessing score 6379922 from playlist 2708081
Score requires update (111532 -> 422059)
Reprocessing score 6382340 from playlist 2708081
Score requires update (106385 -> 357852)
Reprocessing score 6394974 from playlist 2708081
Score requires update (777315 -> 976012)
Reprocessing score 6395143 from playlist 2708081
Score requires update (834456 -> 984458)
Reprocessing score 6395209 from playlist 2708081
Score requires update (462124 -> 605517)
Reprocessing score 6395344 from playlist 2708081
Score requires update (933435 -> 1013178)
Reprocessing score 6396292 from playlist 2708081
Score requires update (253442 -> 580770)
Reprocessing score 6401169 from playlist 2708081
Score requires update (48898 -> 291549)
Reprocessing score 6413976 from playlist 2708081
Score requires update (151449 -> 401679)
Reprocessing score 6424644 from playlist 2708081
Score requires update (51025 -> 309068)
Reprocessing score 6440272 from playlist 2708081
Score requires update (915754 -> 1011895)
Reprocessing score 6443594 from playlist 2708081
Score requires update (31054 -> 230711)
Reprocessing score 6459941 from playlist 2708081
Score requires update (170750 -> 443867)
Reprocessing score 6470698 from playlist 2708081
Score requires update (291218 -> 431134)
Reprocessing score 6471237 from playlist 2708081
Score requires update (37260 -> 270044)
Reprocessing score 6480705 from playlist 2708081
Score requires update (24899 -> 220471)
Reprocessing score 6482479 from playlist 2708081
Score requires update (185548 -> 581181)
Reprocessing score 6483616 from playlist 2708081
Score requires update (127342 -> 409836)
Reprocessing score 6487279 from playlist 2708081
Score requires update (474464 -> 583194)
Reprocessing score 6487301 from playlist 2708081
Score requires update (947458 -> 996981)
Reprocessing score 6488722 from playlist 2708081
Score requires update (87718 -> 360298)
Reprocessing score 6494973 from playlist 2708081
Score requires update (44705 -> 281009)
Reprocessing score 6497840 from playlist 2708081
Score requires update (165813 -> 436162)
Reprocessing score 6497876 from playlist 2708081
Score requires update (196929 -> 564546)
Reprocessing score 6497894 from playlist 2708081
Score requires update (128973 -> 373843)
Reprocessing score 6498744 from playlist 2708081
Score requires update (462169 -> 493864)
Reprocessing score 6504630 from playlist 2708081
Score requires update (193450 -> 409340)
Reprocessing score 6508173 from playlist 2708081
Score requires update (88912 -> 346040)
Reprocessing score 6512375 from playlist 2708081
Score requires update (772085 -> 983911)
Reprocessing score 6514126 from playlist 2708081
Score requires update (485284 -> 711350)
Reprocessing score 6514141 from playlist 2708081
Score requires update (520490 -> 874444)
Reprocessing score 6514168 from playlist 2708081
Score requires update (833605 -> 1091244)
Reprocessing score 6517025 from playlist 2708081
Score requires update (44295 -> 258582)
Reprocessing score 6517037 from playlist 2708081
Score requires update (52298 -> 291884)
Reprocessing score 6518557 from playlist 2708081
Score requires update (482462 -> 808709)
Reprocessing score 6520288 from playlist 2708081
Score requires update (96113 -> 352661)
Reprocessing score 6192065 from playlist 2708082
Score is correct
Reprocessing score 6192376 from playlist 2708082
Score is correct
Reprocessing score 6193423 from playlist 2708082
Score is correct
Reprocessing score 6193848 from playlist 2708082
Score is correct
Reprocessing score 6194352 from playlist 2708082
Score is correct
Reprocessing score 6196233 from playlist 2708082
Score is correct
Reprocessing score 6197405 from playlist 2708082
Score is correct
Reprocessing score 6197471 from playlist 2708082
Score is correct
Reprocessing score 6197853 from playlist 2708082
Score is correct
Reprocessing score 6198383 from playlist 2708082
Score is correct
Reprocessing score 6198615 from playlist 2708082
Score is correct
Reprocessing score 6198862 from playlist 2708082
Score is correct
Reprocessing score 6200518 from playlist 2708082
Score is correct
Reprocessing score 6200878 from playlist 2708082
Score is correct
Reprocessing score 6201406 from playlist 2708082
Score is correct
Reprocessing score 6203042 from playlist 2708082
Score is correct
Reprocessing score 6203324 from playlist 2708082
Score is correct
Reprocessing score 6203532 from playlist 2708082
Score is correct
Reprocessing score 6203620 from playlist 2708082
Score is correct
Reprocessing score 6204198 from playlist 2708082
Score is correct
Reprocessing score 6204356 from playlist 2708082
Score is correct
Reprocessing score 6204738 from playlist 2708082
Score is correct
Reprocessing score 6206012 from playlist 2708082
Score is correct
Reprocessing score 6207405 from playlist 2708082
Score is correct
Reprocessing score 6208836 from playlist 2708082
Score is correct
Reprocessing score 6209087 from playlist 2708082
Score is correct
Reprocessing score 6210397 from playlist 2708082
Score is correct
Reprocessing score 6212948 from playlist 2708082
Score is correct
Reprocessing score 6213556 from playlist 2708082
Score is correct
Reprocessing score 6215073 from playlist 2708082
Score is correct
Reprocessing score 6215355 from playlist 2708082
Score is correct
Reprocessing score 6215364 from playlist 2708082
Score is correct
Reprocessing score 6216320 from playlist 2708082
Score is correct
Reprocessing score 6216658 from playlist 2708082
Score is correct
Reprocessing score 6216961 from playlist 2708082
Score is correct
Reprocessing score 6217293 from playlist 2708082
Score is correct
Reprocessing score 6219220 from playlist 2708082
Score is correct
Reprocessing score 6219845 from playlist 2708082
Score is correct
Reprocessing score 6220568 from playlist 2708082
Score is correct
Reprocessing score 6220737 from playlist 2708082
Score is correct
Reprocessing score 6224449 from playlist 2708082
Score is correct
Reprocessing score 6224852 from playlist 2708082
Score is correct
Reprocessing score 6225118 from playlist 2708082
Score is correct
Reprocessing score 6225373 from playlist 2708082
Score requires update (403921 -> 628183)
Reprocessing score 6225496 from playlist 2708082
Score requires update (468598 -> 645909)
Reprocessing score 6225608 from playlist 2708082
Score requires update (435880 -> 611479)
Reprocessing score 6225618 from playlist 2708082
Score requires update (763314 -> 916310)
Reprocessing score 6225673 from playlist 2708082
Score requires update (971264 -> 998470)
Reprocessing score 6225708 from playlist 2708082
Score requires update (436581 -> 578749)
Reprocessing score 6226830 from playlist 2708082
Score requires update (205756 -> 438812)
Reprocessing score 6229762 from playlist 2708082
Score requires update (490665 -> 573786)
Reprocessing score 6230279 from playlist 2708082
Score is correct
Reprocessing score 6232397 from playlist 2708082
Score requires update (944425 -> 1126533)
Reprocessing score 6233506 from playlist 2708082
Score requires update (214391 -> 524881)
Reprocessing score 6240420 from playlist 2708082
Score requires update (278639 -> 575243)
Reprocessing score 6242699 from playlist 2708082
Score requires update (342880 -> 472522)
Reprocessing score 6244815 from playlist 2708082
Score requires update (231794 -> 459281)
Reprocessing score 6244936 from playlist 2708082
Score requires update (898705 -> 991115)
Reprocessing score 6245702 from playlist 2708082
Score requires update (601903 -> 840419)
Reprocessing score 6245868 from playlist 2708082
Score requires update (96956 -> 373700)
Reprocessing score 6247484 from playlist 2708082
Score requires update (245717 -> 548395)
Reprocessing score 6248349 from playlist 2708082
Score requires update (278649 -> 515186)
Reprocessing score 6258510 from playlist 2708082
Score requires update (79246 -> 348267)
Reprocessing score 6261579 from playlist 2708082
Score requires update (360828 -> 526441)
Reprocessing score 6266215 from playlist 2708082
Score requires update (1004393 -> 1113168)
Reprocessing score 6271321 from playlist 2708082
Score is correct
Reprocessing score 6275327 from playlist 2708082
Score requires update (305867 -> 450223)
Reprocessing score 6285485 from playlist 2708082
Score requires update (318694 -> 573374)
Reprocessing score 6296417 from playlist 2708082
Score requires update (126420 -> 356222)
Reprocessing score 6297888 from playlist 2708082
Score requires update (589416 -> 716952)
Reprocessing score 6308633 from playlist 2708082
Score requires update (925037 -> 994287)
Reprocessing score 6315645 from playlist 2708082
Score requires update (24638 -> 231082)
Reprocessing score 6317530 from playlist 2708082
Score requires update (959249 -> 997287)
Reprocessing score 6317644 from playlist 2708082
Score requires update (94277 -> 336848)
Reprocessing score 6319572 from playlist 2708082
Score requires update (989870 -> 1133188)
Reprocessing score 6319782 from playlist 2708082
Score requires update (1051239 -> 1159546)
Reprocessing score 6341945 from playlist 2708082
Score requires update (897938 -> 991146)
Reprocessing score 6344991 from playlist 2708082
Score requires update (32080 -> 261314)
Reprocessing score 6345593 from playlist 2708082
Score requires update (116889 -> 350166)
Reprocessing score 6350707 from playlist 2708082
Score requires update (4592 -> 73579)
Reprocessing score 6357682 from playlist 2708082
Score requires update (351856 -> 560947)
Reprocessing score 6365741 from playlist 2708082
Score requires update (99144 -> 390905)
Reprocessing score 6366029 from playlist 2708082
Score requires update (642378 -> 930181)
Reprocessing score 6366419 from playlist 2708082
Score requires update (345176 -> 587166)
Reprocessing score 6368251 from playlist 2708082
Score requires update (300443 -> 614888)
Reprocessing score 6369614 from playlist 2708082
Score requires update (777644 -> 1020164)
Reprocessing score 6379954 from playlist 2708082
Score requires update (500682 -> 813039)
Reprocessing score 6379994 from playlist 2708082
Score requires update (807337 -> 1008565)
Reprocessing score 6380262 from playlist 2708082
Score requires update (520013 -> 558657)
Reprocessing score 6380338 from playlist 2708082
Score requires update (1063951 -> 1119415)
Reprocessing score 6382368 from playlist 2708082
Score requires update (377555 -> 643144)
Reprocessing score 6382520 from playlist 2708082
Score requires update (623964 -> 878825)
Reprocessing score 6385203 from playlist 2708082
Score requires update (1065938 -> 1080920)
Reprocessing score 6395441 from playlist 2708082
Score requires update (710445 -> 955375)
Reprocessing score 6395944 from playlist 2708082
Score requires update (948547 -> 1106868)
Reprocessing score 6396326 from playlist 2708082
Score requires update (394148 -> 564022)
Reprocessing score 6417505 from playlist 2708082
Score requires update (944958 -> 995141)
Reprocessing score 6417682 from playlist 2708082
Score requires update (966251 -> 998554)
Reprocessing score 6417712 from playlist 2708082
Score requires update (127540 -> 356625)
Reprocessing score 6417741 from playlist 2708082
Score requires update (992602 -> 1000659)
Reprocessing score 6418083 from playlist 2708082
Score requires update (846657 -> 990514)
Reprocessing score 6418148 from playlist 2708082
Score requires update (989365 -> 1053547)
Reprocessing score 6418242 from playlist 2708082
Score requires update (994996 -> 1055989)
Reprocessing score 6443612 from playlist 2708082
Score requires update (48406 -> 294543)
Reprocessing score 6459948 from playlist 2708082
Score requires update (757281 -> 923466)
Reprocessing score 6461301 from playlist 2708082
Score requires update (157994 -> 440670)
Reprocessing score 6471249 from playlist 2708082
Score requires update (480420 -> 705680)
Reprocessing score 6477442 from playlist 2708082
Score requires update (332362 -> 522059)
Reprocessing score 6477653 from playlist 2708082
Score requires update (53818 -> 300742)
Reprocessing score 6477712 from playlist 2708082
Score requires update (138110 -> 458888)
Reprocessing score 6480727 from playlist 2708082
Score requires update (262843 -> 537812)
Reprocessing score 6482503 from playlist 2708082
Score requires update (246944 -> 438936)
Reprocessing score 6483629 from playlist 2708082
Score requires update (144853 -> 368377)
Reprocessing score 6485637 from playlist 2708082
Score requires update (974759 -> 1054247)
Reprocessing score 6490481 from playlist 2708082
Score requires update (991376 -> 1111841)
Reprocessing score 6494991 from playlist 2708082
Score requires update (57282 -> 303221)
Reprocessing score 6495482 from playlist 2708082
Score requires update (301320 -> 557118)
Reprocessing score 6498265 from playlist 2708082
Score requires update (412769 -> 622009)
Reprocessing score 6498329 from playlist 2708082
Score requires update (326669 -> 484612)
Reprocessing score 6498389 from playlist 2708082
Score requires update (556507 -> 740589)
Reprocessing score 6498829 from playlist 2708082
Score requires update (473960 -> 615289)
Reprocessing score 6501335 from playlist 2708082
Score requires update (883497 -> 968713)
Reprocessing score 6504657 from playlist 2708082
Score requires update (382219 -> 580452)
Reprocessing score 6508196 from playlist 2708082
Score requires update (384488 -> 606966)
Reprocessing score 6508741 from playlist 2708082
Score requires update (992962 -> 1055891)
Reprocessing score 6508855 from playlist 2708082
Score requires update (979605 -> 1053441)
Reprocessing score 6508953 from playlist 2708082
Score requires update (996204 -> 1056063)
Reprocessing score 6510150 from playlist 2708082
Score requires update (65191 -> 314147)
Reprocessing score 6511140 from playlist 2708082
Score requires update (35268 -> 272533)
Reprocessing score 6517050 from playlist 2708082
Score requires update (99267 -> 374454)
Reprocessing score 6518572 from playlist 2708082
Score requires update (868819 -> 1003449)
Reprocessing score 6518742 from playlist 2708082
Score requires update (999982 -> 1037263)
Reprocessing score 6520256 from playlist 2708082
Score requires update (404683 -> 629810)
Reprocessing score 6524625 from playlist 2708082
Score requires update (964080 -> 1052229)
Reprocessing score 6192120 from playlist 2708083
Score is correct
Reprocessing score 6192340 from playlist 2708083
Score is correct
Reprocessing score 6193803 from playlist 2708083
Score is correct
Reprocessing score 6196323 from playlist 2708083
Score is correct
Reprocessing score 6197507 from playlist 2708083
Score is correct
Reprocessing score 6197560 from playlist 2708083
Score is correct
Reprocessing score 6197921 from playlist 2708083
Score is correct
Reprocessing score 6198434 from playlist 2708083
Score is correct
Reprocessing score 6198930 from playlist 2708083
Score requires update (588227 -> 577723)
Reprocessing score 6198987 from playlist 2708083
Score requires update (587387 -> 576898)
Reprocessing score 6199069 from playlist 2708083
Score requires update (1178670 -> 1157623)
Reprocessing score 6199434 from playlist 2708083
Score is correct
Reprocessing score 6199632 from playlist 2708083
Score is correct
Reprocessing score 6200219 from playlist 2708083
Score is correct
Reprocessing score 6200526 from playlist 2708083
Score is correct
Reprocessing score 6201485 from playlist 2708083
Score is correct
Reprocessing score 6203389 from playlist 2708083
Score is correct
Reprocessing score 6203585 from playlist 2708083
Score is correct
Reprocessing score 6204238 from playlist 2708083
Score is correct
Reprocessing score 6204389 from playlist 2708083
Score is correct
Reprocessing score 6204785 from playlist 2708083
Score is correct
Reprocessing score 6204844 from playlist 2708083
Score is correct
Reprocessing score 6206065 from playlist 2708083
Score is correct
Reprocessing score 6207478 from playlist 2708083
Score is correct
Reprocessing score 6208786 from playlist 2708083
Score is correct
Reprocessing score 6208885 from playlist 2708083
Score is correct
Reprocessing score 6208889 from playlist 2708083
Score is correct
Reprocessing score 6210412 from playlist 2708083
Score is correct
Reprocessing score 6210469 from playlist 2708083
Score is correct
Reprocessing score 6213498 from playlist 2708083
Score is correct
Reprocessing score 6215137 from playlist 2708083
Score is correct
Reprocessing score 6215190 from playlist 2708083
Score is correct
Reprocessing score 6216388 from playlist 2708083
Score is correct
Reprocessing score 6216752 from playlist 2708083
Score is correct
Reprocessing score 6217373 from playlist 2708083
Score is correct
Reprocessing score 6219299 from playlist 2708083
Score is correct
Reprocessing score 6219774 from playlist 2708083
Score is correct
Reprocessing score 6220621 from playlist 2708083
Score is correct
Reprocessing score 6222832 from playlist 2708083
Score is correct
Reprocessing score 6224417 from playlist 2708083
Score is correct
Reprocessing score 6224917 from playlist 2708083
Score is correct
Reprocessing score 6225068 from playlist 2708083
Score is correct
Reprocessing score 6225447 from playlist 2708083
Score requires update (369021 -> 634072)
Reprocessing score 6225547 from playlist 2708083
Score requires update (740961 -> 883569)
Reprocessing score 6225742 from playlist 2708083
Score requires update (991412 -> 999890)
Reprocessing score 6226889 from playlist 2708083
Score requires update (252931 -> 401040)
Reprocessing score 6229307 from playlist 2708083
Score requires update (974623 -> 998269)
Reprocessing score 6230233 from playlist 2708083
Score is correct
Reprocessing score 6235460 from playlist 2708083
Score requires update (654089 -> 832834)
Reprocessing score 6242441 from playlist 2708083
Score requires update (766181 -> 876810)
Reprocessing score 6242475 from playlist 2708083
Score requires update (917467 -> 993285)
Reprocessing score 6242534 from playlist 2708083
Score requires update (278985 -> 608148)
Reprocessing score 6242626 from playlist 2708083
Score requires update (1060565 -> 1158862)
Reprocessing score 6244736 from playlist 2708083
Score requires update (732661 -> 875689)
Reprocessing score 6244896 from playlist 2708083
Score requires update (719103 -> 877065)
Reprocessing score 6245765 from playlist 2708083
Score requires update (632308 -> 837763)
Reprocessing score 6245937 from playlist 2708083
Score requires update (135030 -> 436099)
Reprocessing score 6247533 from playlist 2708083
Score requires update (524341 -> 855526)
Reprocessing score 6248370 from playlist 2708083
Score requires update (1008461 -> 1037913)
Reprocessing score 6256191 from playlist 2708083
Score requires update (165022 -> 392121)
Reprocessing score 6258540 from playlist 2708083
Score requires update (113438 -> 385758)
Reprocessing score 6259095 from playlist 2708083
Score requires update (253134 -> 468012)
Reprocessing score 6259136 from playlist 2708083
Score requires update (514943 -> 703650)
Reprocessing score 6261655 from playlist 2708083
Score requires update (484052 -> 707065)
Reprocessing score 6266455 from playlist 2708083
Score requires update (852390 -> 1053144)
Reprocessing score 6266488 from playlist 2708083
Score requires update (1040667 -> 1116461)
Reprocessing score 6272309 from playlist 2708083
Score is correct
Reprocessing score 6275381 from playlist 2708083
Score requires update (635902 -> 722441)
Reprocessing score 6283756 from playlist 2708083
Score requires update (1029865 -> 1129893)
Reprocessing score 6284673 from playlist 2708083
Score requires update (1120883 -> 1163329)
Reprocessing score 6284866 from playlist 2708083
Score requires update (1125644 -> 1163678)
Reprocessing score 6285511 from playlist 2708083
Score requires update (449062 -> 626103)
Reprocessing score 6296452 from playlist 2708083
Score requires update (174512 -> 506385)
Reprocessing score 6297928 from playlist 2708083
Score requires update (775214 -> 887425)
Reprocessing score 6308457 from playlist 2708083
Score requires update (1083414 -> 1141071)
Reprocessing score 6308675 from playlist 2708083
Score requires update (729291 -> 879430)
Reprocessing score 6308691 from playlist 2708083
Score requires update (658821 -> 734698)
Reprocessing score 6308715 from playlist 2708083
Score requires update (987008 -> 999809)
Reprocessing score 6319661 from playlist 2708083
Score requires update (860652 -> 1021348)
Reprocessing score 6319693 from playlist 2708083
Score requires update (1152482 -> 1165945)
Reprocessing score 6326917 from playlist 2708083
Score requires update (1033744 -> 1058430)
Reprocessing score 6326980 from playlist 2708083
Score requires update (995226 -> 1093112)
Reprocessing score 6341994 from playlist 2708083
Score requires update (793820 -> 931252)
Reprocessing score 6342026 from playlist 2708083
Score requires update (700211 -> 831959)
Reprocessing score 6342065 from playlist 2708083
Score requires update (689727 -> 767352)
Reprocessing score 6342194 from playlist 2708083
Score requires update (711534 -> 828496)
Reprocessing score 6342335 from playlist 2708083
Score requires update (1010519 -> 1056331)
Reprocessing score 6345056 from playlist 2708083
Score requires update (67708 -> 312777)
Reprocessing score 6350725 from playlist 2708083
Score requires update (10714 -> 100138)
Reprocessing score 6357823 from playlist 2708083
Score requires update (332154 -> 660841)
Reprocessing score 6366071 from playlist 2708083
Score requires update (142228 -> 457108)
Reprocessing score 6366464 from playlist 2708083
Score requires update (166491 -> 459712)
Reprocessing score 6366484 from playlist 2708083
Score requires update (419492 -> 679574)
Reprocessing score 6368313 from playlist 2708083
Score requires update (471818 -> 741033)
Reprocessing score 6372601 from playlist 2708083
Score requires update (590698 -> 726512)
Reprocessing score 6375144 from playlist 2708083
Score requires update (957076 -> 1050973)
Reprocessing score 6380028 from playlist 2708083
Score requires update (502211 -> 662935)
Reprocessing score 6380067 from playlist 2708083
Score requires update (589707 -> 935166)
Reprocessing score 6380453 from playlist 2708083
Score requires update (1136617 -> 1144764)
Reprocessing score 6381610 from playlist 2708083
Score requires update (957806 -> 1108236)
Reprocessing score 6382424 from playlist 2708083
Score requires update (712589 -> 873617)
Reprocessing score 6385299 from playlist 2708083
Score requires update (809749 -> 924273)
Reprocessing score 6385346 from playlist 2708083
Score requires update (1110076 -> 1142786)
Reprocessing score 6385406 from playlist 2708083
Score requires update (1071091 -> 1118257)
Reprocessing score 6385483 from playlist 2708083
Score requires update (1118821 -> 1143623)
Reprocessing score 6385575 from playlist 2708083
Score requires update (1134420 -> 1144993)
Reprocessing score 6395629 from playlist 2708083
Score requires update (184456 -> 442255)
Reprocessing score 6401143 from playlist 2708083
Score requires update (255294 -> 430796)
Reprocessing score 6414594 from playlist 2708083
Score requires update (672656 -> 945555)
Reprocessing score 6417828 from playlist 2708083
Score requires update (972262 -> 998522)
Reprocessing score 6417920 from playlist 2708083
Score requires update (779672 -> 940433)
Reprocessing score 6417978 from playlist 2708083
Score requires update (1021456 -> 1057625)
Reprocessing score 6418903 from playlist 2708083
Score requires update (259776 -> 619456)
Reprocessing score 6424658 from playlist 2708083
Score requires update (502328 -> 712762)
Reprocessing score 6443644 from playlist 2708083
Score requires update (145074 -> 400010)
Reprocessing score 6459972 from playlist 2708083
Score requires update (939255 -> 994747)
Reprocessing score 6471175 from playlist 2708083
Score requires update (465552 -> 689882)
Reprocessing score 6477528 from playlist 2708083
Score requires update (449810 -> 554657)
Reprocessing score 6480787 from playlist 2708083
Score requires update (487763 -> 724768)
Reprocessing score 6482548 from playlist 2708083
Score requires update (873324 -> 987917)
Reprocessing score 6483647 from playlist 2708083
Score requires update (303437 -> 548232)
Reprocessing score 6485111 from playlist 2708083
Score requires update (968497 -> 997750)
Reprocessing score 6495027 from playlist 2708083
Score requires update (139317 -> 406441)
Reprocessing score 6496535 from playlist 2708083
Score requires update (436589 -> 554213)
Reprocessing score 6498560 from playlist 2708083
Score requires update (967509 -> 1051774)
Reprocessing score 6504865 from playlist 2708083
Score requires update (495421 -> 689927)
Reprocessing score 6508237 from playlist 2708083
Score requires update (738231 -> 886230)
Reprocessing score 6511107 from playlist 2708083
Score requires update (61849 -> 302210)
Reprocessing score 6513188 from playlist 2708083
Score requires update (59445 -> 303077)
Reprocessing score 6514089 from playlist 2708083
Score requires update (1003830 -> 1055958)
Reprocessing score 6515057 from playlist 2708083
Score requires update (427264 -> 508927)
Reprocessing score 6516109 from playlist 2708083
Score requires update (1177525 -> 1187697)
Reprocessing score 6518599 from playlist 2708083
Score requires update (782793 -> 923402)
Reprocessing score 6518633 from playlist 2708083
Score requires update (994443 -> 1055152)
Reprocessing score 6193471 from playlist 2708084
Score is correct
Reprocessing score 6193596 from playlist 2708084
Score is correct
Reprocessing score 6193748 from playlist 2708084
Score is correct
Reprocessing score 6193760 from playlist 2708084
Score is correct
Reprocessing score 6193937 from playlist 2708084
Score is correct
Reprocessing score 6196374 from playlist 2708084
Score is correct
Reprocessing score 6197550 from playlist 2708084
Score is correct
Reprocessing score 6197610 from playlist 2708084
Score is correct
Reprocessing score 6197646 from playlist 2708084
Score is correct
Reprocessing score 6197962 from playlist 2708084
Score is correct
Reprocessing score 6197972 from playlist 2708084
Score is correct
Reprocessing score 6198003 from playlist 2708084
Score is correct
Reprocessing score 6198019 from playlist 2708084
Score is correct
Reprocessing score 6198042 from playlist 2708084
Score is correct
Reprocessing score 6198454 from playlist 2708084
Score is correct
Reprocessing score 6198462 from playlist 2708084
Score is correct
Reprocessing score 6198621 from playlist 2708084
Score is correct
Reprocessing score 6198668 from playlist 2708084
Score is correct
Reprocessing score 6198859 from playlist 2708084
Score is correct
Reprocessing score 6198964 from playlist 2708084
Score is correct
Reprocessing score 6198986 from playlist 2708084
Score is correct
Reprocessing score 6199413 from playlist 2708084
Score is correct
Reprocessing score 6199682 from playlist 2708084
Score is correct
Reprocessing score 6200188 from playlist 2708084
Score is correct
Reprocessing score 6200599 from playlist 2708084
Score is correct
Reprocessing score 6201535 from playlist 2708084
Score is correct
Reprocessing score 6203227 from playlist 2708084
Score is correct
Reprocessing score 6204264 from playlist 2708084
Score is correct
Reprocessing score 6204424 from playlist 2708084
Score is correct
Reprocessing score 6204871 from playlist 2708084
Score is correct
Reprocessing score 6204877 from playlist 2708084
Score is correct
Reprocessing score 6204929 from playlist 2708084
Score is correct
Reprocessing score 6205253 from playlist 2708084
Score is correct
Reprocessing score 6206101 from playlist 2708084
Score is correct
Reprocessing score 6206154 from playlist 2708084
Score is correct
Reprocessing score 6206176 from playlist 2708084
Score is correct
Reprocessing score 6206208 from playlist 2708084
Score is correct
Reprocessing score 6207522 from playlist 2708084
Score is correct
Reprocessing score 6208906 from playlist 2708084
Score is correct
Reprocessing score 6208971 from playlist 2708084
Score is correct
Reprocessing score 6208987 from playlist 2708084
Score is correct
Reprocessing score 6208998 from playlist 2708084
Score is correct
Reprocessing score 6210526 from playlist 2708084
Score is correct
Reprocessing score 6213852 from playlist 2708084
Score is correct
Reprocessing score 6213870 from playlist 2708084
Score is correct
Reprocessing score 6213890 from playlist 2708084
Score is correct
Reprocessing score 6215101 from playlist 2708084
Score is correct
Reprocessing score 6215222 from playlist 2708084
Score is correct
Reprocessing score 6215623 from playlist 2708084
Score is correct
Reprocessing score 6216438 from playlist 2708084
Score is correct
Reprocessing score 6216449 from playlist 2708084
Score is correct
Reprocessing score 6216487 from playlist 2708084
Score is correct
Reprocessing score 6216533 from playlist 2708084
Score is correct
Reprocessing score 6217159 from playlist 2708084
Score is correct
Reprocessing score 6217243 from playlist 2708084
Score is correct
Reprocessing score 6218287 from playlist 2708084
Score is correct
Reprocessing score 6218342 from playlist 2708084
Score is correct
Reprocessing score 6218423 from playlist 2708084
Score is correct
Reprocessing score 6218578 from playlist 2708084
Score is correct
Reprocessing score 6218910 from playlist 2708084
Score is correct
Reprocessing score 6219029 from playlist 2708084
Score is correct
Reprocessing score 6219167 from playlist 2708084
Score is correct
Reprocessing score 6219350 from playlist 2708084
Score is correct
Reprocessing score 6219417 from playlist 2708084
Score is correct
Reprocessing score 6219499 from playlist 2708084
Score is correct
Reprocessing score 6219526 from playlist 2708084
Score is correct
Reprocessing score 6219533 from playlist 2708084
Score is correct
Reprocessing score 6219567 from playlist 2708084
Score is correct
Reprocessing score 6219581 from playlist 2708084
Score is correct
Reprocessing score 6219723 from playlist 2708084
Score is correct
Reprocessing score 6220661 from playlist 2708084
Score is correct
Reprocessing score 6220704 from playlist 2708084
Score is correct
Reprocessing score 6220717 from playlist 2708084
Score is correct
Reprocessing score 6224411 from playlist 2708084
Score is correct
Reprocessing score 6225051 from playlist 2708084
Score is correct
Reprocessing score 6225490 from playlist 2708084
Score requires update (300547 -> 472421)
Reprocessing score 6225585 from playlist 2708084
Score requires update (245513 -> 539555)
Reprocessing score 6225675 from playlist 2708084
Score requires update (269206 -> 490216)
Reprocessing score 6225769 from playlist 2708084
Score requires update (569089 -> 692886)
Reprocessing score 6225786 from playlist 2708084
Score requires update (550419 -> 621120)
Reprocessing score 6225812 from playlist 2708084
Score requires update (649689 -> 700603)
Reprocessing score 6225831 from playlist 2708084
Score requires update (886840 -> 988937)
Reprocessing score 6225878 from playlist 2708084
Score requires update (515705 -> 651062)
Reprocessing score 6225899 from playlist 2708084
Score requires update (550051 -> 663033)
Reprocessing score 6225909 from playlist 2708084
Score requires update (659802 -> 713203)
Reprocessing score 6225920 from playlist 2708084
Score requires update (981901 -> 998391)
Reprocessing score 6226936 from playlist 2708084
Score requires update (58587 -> 284053)
Reprocessing score 6229264 from playlist 2708084
Score requires update (475986 -> 549363)
Reprocessing score 6231606 from playlist 2708084
Score requires update (581464 -> 762421)
Reprocessing score 6232515 from playlist 2708084
Score requires update (323448 -> 479526)
Reprocessing score 6233458 from playlist 2708084
Score requires update (718517 -> 864191)
Reprocessing score 6234758 from playlist 2708084
Score requires update (102377 -> 367773)
Reprocessing score 6235449 from playlist 2708084
Score requires update (282129 -> 458837)
Reprocessing score 6240705 from playlist 2708084
Score requires update (92991 -> 381334)
Reprocessing score 6241185 from playlist 2708084
Score requires update (252558 -> 442969)
Reprocessing score 6242854 from playlist 2708084
Score requires update (134617 -> 370504)
Reprocessing score 6244956 from playlist 2708084
Score requires update (108849 -> 350226)
Reprocessing score 6245334 from playlist 2708084
Score is correct
Reprocessing score 6245347 from playlist 2708084
Score is correct
Reprocessing score 6245967 from playlist 2708084
Score requires update (48658 -> 261855)
Reprocessing score 6247558 from playlist 2708084
Score requires update (76439 -> 314553)
Reprocessing score 6248270 from playlist 2708084
Score requires update (532542 -> 588462)
Reprocessing score 6250425 from playlist 2708084
Score requires update (83806 -> 329724)
Reprocessing score 6250873 from playlist 2708084
Score is correct
Reprocessing score 6250897 from playlist 2708084
Score is correct
Reprocessing score 6250909 from playlist 2708084
Score is correct
Reprocessing score 6250947 from playlist 2708084
Score is correct
Reprocessing score 6258557 from playlist 2708084
Score requires update (52553 -> 291952)
Reprocessing score 6258878 from playlist 2708084
Score requires update (74937 -> 330857)
Reprocessing score 6259115 from playlist 2708084
Score requires update (81759 -> 322671)
Reprocessing score 6261662 from playlist 2708084
Score requires update (167179 -> 399828)
Reprocessing score 6266311 from playlist 2708084
Score requires update (581397 -> 700854)
Reprocessing score 6266324 from playlist 2708084
Score requires update (1000232 -> 1040679)
Reprocessing score 6272344 from playlist 2708084
Score is correct
Reprocessing score 6275457 from playlist 2708084
Score requires update (205213 -> 502496)
Reprocessing score 6284440 from playlist 2708084
Score requires update (304370 -> 452874)
Reprocessing score 6284616 from playlist 2708084
Score requires update (990945 -> 1111304)
Reprocessing score 6284639 from playlist 2708084
Score requires update (1072873 -> 1119718)
Reprocessing score 6285534 from playlist 2708084
Score requires update (140591 -> 421386)
Reprocessing score 6291602 from playlist 2708084
Score requires update (110281 -> 336548)
Reprocessing score 6296506 from playlist 2708084
Score requires update (54414 -> 279978)
Reprocessing score 6297955 from playlist 2708084
Score requires update (472299 -> 621459)
Reprocessing score 6302425 from playlist 2708084
Score requires update (71842 -> 290404)
Reprocessing score 6306399 from playlist 2708084
Score requires update (361355 -> 531865)
Reprocessing score 6308803 from playlist 2708084
Score requires update (394588 -> 572494)
Reprocessing score 6308808 from playlist 2708084
Score requires update (434310 -> 578146)
Reprocessing score 6308826 from playlist 2708084
Score requires update (667980 -> 822163)
Reprocessing score 6308845 from playlist 2708084
Score requires update (931567 -> 994200)
Reprocessing score 6319868 from playlist 2708084
Score requires update (1076510 -> 1119633)
Reprocessing score 6326798 from playlist 2708084
Score requires update (510609 -> 644876)
Reprocessing score 6326835 from playlist 2708084
Score requires update (526473 -> 635855)
Reprocessing score 6326870 from playlist 2708084
Score requires update (499153 -> 644422)
Reprocessing score 6326880 from playlist 2708084
Score requires update (948853 -> 995744)
Reprocessing score 6327944 from playlist 2708084
Score requires update (146916 -> 448397)
Reprocessing score 6327962 from playlist 2708084
Score requires update (24546 -> 131315)
Reprocessing score 6327997 from playlist 2708084
Score requires update (227553 -> 440914)
Reprocessing score 6328023 from playlist 2708084
Score requires update (330293 -> 520016)
Reprocessing score 6342061 from playlist 2708084
Score requires update (175818 -> 413638)
Reprocessing score 6342112 from playlist 2708084
Score requires update (100443 -> 355618)
Reprocessing score 6342129 from playlist 2708084
Score requires update (265537 -> 425572)
Reprocessing score 6342222 from playlist 2708084
Score requires update (321867 -> 462913)
Reprocessing score 6342246 from playlist 2708084
Score requires update (424906 -> 482189)
Reprocessing score 6342261 from playlist 2708084
Score requires update (522503 -> 629161)
Reprocessing score 6342272 from playlist 2708084
Score requires update (446471 -> 577325)
Reprocessing score 6342286 from playlist 2708084
Score requires update (506052 -> 655059)
Reprocessing score 6342307 from playlist 2708084
Score requires update (445544 -> 575099)
Reprocessing score 6342312 from playlist 2708084
Score requires update (765985 -> 797127)
Reprocessing score 6357790 from playlist 2708084
Score requires update (154171 -> 432855)
Reprocessing score 6366100 from playlist 2708084
Score requires update (232674 -> 485647)
Reprocessing score 6366509 from playlist 2708084
Score requires update (199600 -> 490779)
Reprocessing score 6366523 from playlist 2708084
Score requires update (237045 -> 489037)
Reprocessing score 6366540 from playlist 2708084
Score requires update (273233 -> 614243)
Reprocessing score 6369585 from playlist 2708084
Score requires update (239711 -> 488207)
Reprocessing score 6372705 from playlist 2708084
Score requires update (185017 -> 499085)
Reprocessing score 6372742 from playlist 2708084
Score requires update (221916 -> 556740)
Reprocessing score 6376285 from playlist 2708084
Score requires update (227767 -> 440352)
Reprocessing score 6378248 from playlist 2708084
Score requires update (131559 -> 444441)
Reprocessing score 6382455 from playlist 2708084
Score requires update (181485 -> 402692)
Reprocessing score 6395574 from playlist 2708084
Score requires update (237229 -> 483585)
Reprocessing score 6395596 from playlist 2708084
Score requires update (285558 -> 503692)
Reprocessing score 6396026 from playlist 2708084
Score requires update (330554 -> 540374)
Reprocessing score 6396056 from playlist 2708084
Score requires update (275377 -> 543279)
Reprocessing score 6396072 from playlist 2708084
Score requires update (458923 -> 684882)
Reprocessing score 6401193 from playlist 2708084
Score requires update (78651 -> 311739)
Reprocessing score 6408349 from playlist 2708084
Score requires update (214903 -> 486796)
Reprocessing score 6409795 from playlist 2708084
Score requires update (40530 -> 246234)
Reprocessing score 6410154 from playlist 2708084
Score requires update (232858 -> 439119)
Reprocessing score 6414515 from playlist 2708084
Score requires update (261873 -> 376400)
Reprocessing score 6418933 from playlist 2708084
Score requires update (46589 -> 282848)
Reprocessing score 6424581 from playlist 2708084
Score requires update (61096 -> 300897)
Reprocessing score 6428623 from playlist 2708084
Score requires update (273987 -> 496108)
Reprocessing score 6428638 from playlist 2708084
Score requires update (427234 -> 647363)
Reprocessing score 6428655 from playlist 2708084
Score requires update (436874 -> 645264)
Reprocessing score 6428713 from playlist 2708084
Score requires update (554298 -> 649979)
Reprocessing score 6428838 from playlist 2708084
Score requires update (868388 -> 987836)
Reprocessing score 6438988 from playlist 2708084
Score requires update (311045 -> 560497)
Reprocessing score 6439895 from playlist 2708084
Score requires update (638677 -> 818866)
Reprocessing score 6439931 from playlist 2708084
Score requires update (558987 -> 688003)
Reprocessing score 6439952 from playlist 2708084
Score requires update (903859 -> 991240)
Reprocessing score 6439983 from playlist 2708084
Score requires update (484322 -> 649673)
Reprocessing score 6440021 from playlist 2708084
Score requires update (907932 -> 991542)
Reprocessing score 6440156 from playlist 2708084
Score requires update (934928 -> 994568)
Reprocessing score 6443682 from playlist 2708084
Score requires update (47489 -> 271375)
Reprocessing score 6459994 from playlist 2708084
Score requires update (186250 -> 390811)
Reprocessing score 6461356 from playlist 2708084
Score requires update (52113 -> 291069)
Reprocessing score 6462365 from playlist 2708084
Score requires update (135897 -> 429592)
Reprocessing score 6471001 from playlist 2708084
Score requires update (311646 -> 474315)
Reprocessing score 6471054 from playlist 2708084
Score requires update (318320 -> 554849)
Reprocessing score 6471164 from playlist 2708084
Score requires update (132979 -> 378863)
Reprocessing score 6477568 from playlist 2708084
Score requires update (141103 -> 416510)
Reprocessing score 6480836 from playlist 2708084
Score requires update (191521 -> 435048)
Reprocessing score 6482567 from playlist 2708084
Score requires update (111668 -> 365710)
Reprocessing score 6483659 from playlist 2708084
Score requires update (61800 -> 300634)
Reprocessing score 6485083 from playlist 2708084
Score requires update (343242 -> 582942)
Reprocessing score 6485096 from playlist 2708084
Score requires update (512306 -> 621226)
Reprocessing score 6490555 from playlist 2708084
Score requires update (1068020 -> 1119151)
Reprocessing score 6494667 from playlist 2708084
Score requires update (163292 -> 274174)
Reprocessing score 6496520 from playlist 2708084
Score requires update (223397 -> 447361)
Reprocessing score 6498589 from playlist 2708084
Score requires update (90241 -> 371879)
Reprocessing score 6498609 from playlist 2708084
Score requires update (105214 -> 379989)
Reprocessing score 6498646 from playlist 2708084
Score requires update (104251 -> 333329)
Reprocessing score 6498661 from playlist 2708084
Score requires update (138712 -> 235113)
Reprocessing score 6498712 from playlist 2708084
Score requires update (196590 -> 267208)
Reprocessing score 6498725 from playlist 2708084
Score requires update (161896 -> 238042)
Reprocessing score 6504700 from playlist 2708084
Score requires update (146806 -> 391425)
Reprocessing score 6504856 from playlist 2708084
Score requires update (157572 -> 389624)
Reprocessing score 6508265 from playlist 2708084
Score requires update (252646 -> 483330)
Reprocessing score 6514074 from playlist 2708084
Score requires update (1006874 -> 1055435)
Reprocessing score 6515085 from playlist 2708084
Score requires update (256729 -> 444956)
Reprocessing score 6515097 from playlist 2708084
Score requires update (306127 -> 451945)
Reprocessing score 6515131 from playlist 2708084
Score requires update (356999 -> 479729)
Reprocessing score 6515140 from playlist 2708084
Score requires update (421239 -> 524526)
Reprocessing score 6518622 from playlist 2708084
Score requires update (352588 -> 551191)
Reprocessing score 6518657 from playlist 2708084
Score requires update (382365 -> 519130)
Reprocessing score 6518784 from playlist 2708084
Score requires update (338277 -> 504017)
Reprocessing score 6519884 from playlist 2708084
Score requires update (148011 -> 263322)
Finished.

Process finished with exit code 0.

@peppy peppy changed the title Reprocess playlist total scores Add command to reprocess playlist total scores to *old* standardised scores Jul 11, 2023
APIMod[] roomMods = JsonConvert.DeserializeObject<APIMod[]>(playlistItem.required_mods)!;
APIMod[] scoreMods = JsonConvert.DeserializeObject<APIMod[]>(score.mods)!;

foreach (var m in roomMods)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just a safety I added to be sure that the scores include any room mods, since it was easier to add this than check it's the case.

Copy link
Contributor

@smoogipoo smoogipoo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks fine to me

@peppy peppy merged commit 172e764 into ppy:master Nov 9, 2023
3 checks passed
@peppy peppy deleted the reprocess-playlist-total-scores branch November 9, 2023 04:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants